From 11dd5ba4853008f1aebd08d634512f626cd9bcfc Mon Sep 17 00:00:00 2001 From: MikeIsAStar <99037623+MikeIsAStar@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:26:00 -0500 Subject: [PATCH 001/296] MMU: Remove erroneous continue statement The updated behavior more closely emulates the functionality of physical hardware. --- Source/Core/Core/PowerPC/MMU.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/MMU.cpp b/Source/Core/Core/PowerPC/MMU.cpp index c43f58ab86..8e8282ed08 100644 --- a/Source/Core/Core/PowerPC/MMU.cpp +++ b/Source/Core/Core/PowerPC/MMU.cpp @@ -1546,7 +1546,6 @@ void MMU::UpdateBATs(BatTable& bat_table, u32 base_spr) // (input & ~BL_mask) == BEPI. For now, assume it's // implemented this way for invalid BATs as well. WARN_LOG_FMT(POWERPC, "Bad BAT setup: BEPI overlaps BL"); - continue; } if ((batl.BRPN & batu.BL) != 0) { From 1cb6ce6057f751d927e64e191072da0a96c8cb5b Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 21 Apr 2024 13:24:58 -0400 Subject: [PATCH 002/296] ScmRevGen: Refactor file configuration into a function --- CMake/ScmRevGen.cmake | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index 5ec3041134..928e9ac4e0 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -42,11 +42,15 @@ if(NOT DOLPHIN_WC_REVISION) set(DOLPHIN_WC_COMMITS_AHEAD_MASTER 0) endif() -configure_file( - "${PROJECT_SOURCE_DIR}/Source/Core/Common/scmrev.h.in" - "${PROJECT_BINARY_DIR}/Source/Core/Common/scmrev.h.tmp" -) +function(configure_source_file path) + configure_file( + "${PROJECT_SOURCE_DIR}/${path}.in" + "${PROJECT_BINARY_DIR}/${path}.tmp" + ) -execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different "${PROJECT_BINARY_DIR}/Source/Core/Common/scmrev.h.tmp" "${PROJECT_BINARY_DIR}/Source/Core/Common/scmrev.h") + execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different "${PROJECT_BINARY_DIR}/${path}.tmp" "${PROJECT_BINARY_DIR}/${path}") -file(REMOVE "${PROJECT_BINARY_DIR}/Source/Core/Common/scmrev.h.tmp") + file(REMOVE "${PROJECT_BINARY_DIR}/${path}.tmp") +endfunction() + +configure_source_file("Source/Core/Common/scmrev.h") From 3ad1037d7f72bd26884e84f0306a365a4f5b7c1b Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 10 Dec 2023 14:16:33 -0500 Subject: [PATCH 003/296] ScmRevGen: Generate Info.plist for DolphinQt --- CMake/ScmRevGen.cmake | 4 ++++ CMakeLists.txt | 11 +++++++++-- Source/Core/DolphinQt/CMakeLists.txt | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index 928e9ac4e0..712aa97387 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -54,3 +54,7 @@ function(configure_source_file path) endfunction() configure_source_file("Source/Core/Common/scmrev.h") + +if(APPLE) + configure_source_file("Source/Core/DolphinQt/Info.plist") +endif() diff --git a/CMakeLists.txt b/CMakeLists.txt index 869862eb75..00d7bbc4fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -782,14 +782,21 @@ if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/Common/scmrev.h) file(TOUCH ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/Common/scmrev.h) endif() +if(APPLE) + file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt) + if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist) + file(TOUCH ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist) + endif() +endif() + find_package(Git) if(NOT GIT_FOUND) set(GIT_EXECUTABLE "") endif() add_custom_target( dolphin_scmrev - ${CMAKE_COMMAND} -DPROJECT_SOURCE_DIR=${PROJECT_SOURCE_DIR} -DPROJECT_BINARY_DIR=${PROJECT_BINARY_DIR} -DDISTRIBUTOR=${DISTRIBUTOR} -DDOLPHIN_DEFAULT_UPDATE_TRACK=${DOLPHIN_DEFAULT_UPDATE_TRACK} -DGIT_FOUND=${GIT_FOUND} -DGIT_EXECUTABLE=${GIT_EXECUTABLE} -DDOLPHIN_WC_REVISION=${DOLPHIN_WC_REVISION} -DDOLPHIN_WC_DESCRIBE=${DOLPHIN_WC_DESCRIBE} -DDOLPHIN_WC_BRANCH=${DOLPHIN_WC_BRANCH} -P ${CMAKE_CURRENT_SOURCE_DIR}/CMake/ScmRevGen.cmake - BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/Common/scmrev.h + ${CMAKE_COMMAND} -DPROJECT_SOURCE_DIR=${PROJECT_SOURCE_DIR} -DPROJECT_BINARY_DIR=${PROJECT_BINARY_DIR} -DDISTRIBUTOR=${DISTRIBUTOR} -DDOLPHIN_DEFAULT_UPDATE_TRACK=${DOLPHIN_DEFAULT_UPDATE_TRACK} -DGIT_FOUND=${GIT_FOUND} -DGIT_EXECUTABLE=${GIT_EXECUTABLE} -DDOLPHIN_WC_REVISION=${DOLPHIN_WC_REVISION} -DDOLPHIN_WC_DESCRIBE=${DOLPHIN_WC_DESCRIBE} -DDOLPHIN_WC_BRANCH=${DOLPHIN_WC_BRANCH} -DCMAKE_OSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET} -P ${CMAKE_CURRENT_SOURCE_DIR}/CMake/ScmRevGen.cmake + BYPRODUCTS "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/Common/scmrev.h" "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist" VERBATIM ) diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 87bd9883d5..329998a99a 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -569,7 +569,7 @@ if(APPLE) # Ask for an application bundle. set_target_properties(dolphin-emu PROPERTIES MACOSX_BUNDLE true - MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in + MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/Info.plist" XCODE_ATTRIBUTE_CODE_SIGN_ENTITLEMENTS "${CMAKE_CURRENT_SOURCE_DIR}/DolphinEmu.entitlements" XCODE_ATTRIBUTE_OTHER_CODE_SIGN_FLAGS "--deep --options=runtime" OUTPUT_NAME Dolphin From c154134e28e334fc83ae267d92d69f9d74732bf4 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 10 Dec 2023 18:31:22 -0500 Subject: [PATCH 004/296] ScmRevGen: Generate Info.plist for MacUpdater --- CMake/ScmRevGen.cmake | 1 + CMakeLists.txt | 7 ++++++- Source/Core/MacUpdater/CMakeLists.txt | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index 712aa97387..65aa8c78c5 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -57,4 +57,5 @@ configure_source_file("Source/Core/Common/scmrev.h") if(APPLE) configure_source_file("Source/Core/DolphinQt/Info.plist") + configure_source_file("Source/Core/MacUpdater/Info.plist") endif() diff --git a/CMakeLists.txt b/CMakeLists.txt index 00d7bbc4fb..518f89aea1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -787,6 +787,11 @@ if(APPLE) if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist) file(TOUCH ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist) endif() + + file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/MacUpdater) + if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/MacUpdater/Info.plist) + file(TOUCH ${CMAKE_CURRENT_BINARY_DIR}/Source/Core/MacUpdater/Info.plist) + endif() endif() find_package(Git) @@ -796,7 +801,7 @@ endif() add_custom_target( dolphin_scmrev ${CMAKE_COMMAND} -DPROJECT_SOURCE_DIR=${PROJECT_SOURCE_DIR} -DPROJECT_BINARY_DIR=${PROJECT_BINARY_DIR} -DDISTRIBUTOR=${DISTRIBUTOR} -DDOLPHIN_DEFAULT_UPDATE_TRACK=${DOLPHIN_DEFAULT_UPDATE_TRACK} -DGIT_FOUND=${GIT_FOUND} -DGIT_EXECUTABLE=${GIT_EXECUTABLE} -DDOLPHIN_WC_REVISION=${DOLPHIN_WC_REVISION} -DDOLPHIN_WC_DESCRIBE=${DOLPHIN_WC_DESCRIBE} -DDOLPHIN_WC_BRANCH=${DOLPHIN_WC_BRANCH} -DCMAKE_OSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET} -P ${CMAKE_CURRENT_SOURCE_DIR}/CMake/ScmRevGen.cmake - BYPRODUCTS "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/Common/scmrev.h" "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist" + BYPRODUCTS "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/Common/scmrev.h" "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/DolphinQt/Info.plist" "${CMAKE_CURRENT_BINARY_DIR}/Source/Core/MacUpdater/Info.plist" VERBATIM ) diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt index 3a9a9b8d0e..7ce5a58a5f 100644 --- a/Source/Core/MacUpdater/CMakeLists.txt +++ b/Source/Core/MacUpdater/CMakeLists.txt @@ -16,9 +16,11 @@ set(MacUpdater_NAME "Dolphin Updater") set(MacUpdater_BIN_DIR ${CMAKE_BINARY_DIR}/Binaries) set(MacUpdater_BUNDLE_PATH ${MacUpdater_BIN_DIR}/${MacUpdater_NAME}.app) +add_dependencies(MacUpdater dolphin_scmrev) + set_target_properties(MacUpdater PROPERTIES MACOSX_BUNDLE true - MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in + MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/Info.plist" OUTPUT_NAME ${MacUpdater_NAME}) target_compile_options(MacUpdater PRIVATE -x objective-c++) From 9d28c371e71586bbbf88a401cb3a160a9f139842 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 20 Apr 2024 01:35:31 -0500 Subject: [PATCH 005/296] VideoCommon: allow custom shaders to set the alpha value for use when blending is enabled --- Source/Core/VideoCommon/PixelShaderGen.cpp | 42 +++++------- Source/Core/VideoCommon/ShaderGenCommon.cpp | 5 ++ Source/Core/VideoCommon/UberShaderPixel.cpp | 43 +++++------- docs/CustomPipelineGraphicsMod.md | 73 +++++++++++++-------- 4 files changed, 85 insertions(+), 78 deletions(-) diff --git a/Source/Core/VideoCommon/PixelShaderGen.cpp b/Source/Core/VideoCommon/PixelShaderGen.cpp index bf574b8fda..b5090b362b 100644 --- a/Source/Core/VideoCommon/PixelShaderGen.cpp +++ b/Source/Core/VideoCommon/PixelShaderGen.cpp @@ -1315,6 +1315,23 @@ ShaderCode GeneratePixelShaderCode(APIType api_type, const ShaderHostConfig& hos WriteFog(out, uid_data); + for (std::size_t i = 0; i < custom_details.shaders.size(); i++) + { + const auto& shader_details = custom_details.shaders[i]; + + if (!shader_details.custom_shader.empty()) + { + out.Write("\t{{\n"); + out.Write("\t\tcustom_data.final_color = float4(prev.r / 255.0, prev.g / 255.0, prev.b " + "/ 255.0, prev.a / 255.0);\n"); + out.Write("\t\tCustomShaderOutput custom_output = {}_{}(custom_data);\n", + CUSTOM_PIXELSHADER_COLOR_FUNC, i); + out.Write("\t\tprev = int4(custom_output.main_rt.r * 255, custom_output.main_rt.g * 255, " + "custom_output.main_rt.b * 255, custom_output.main_rt.a * 255);\n"); + out.Write("\t}}\n\n"); + } + } + if (uid_data->logic_op_enable) WriteLogicOp(out, uid_data); else if (uid_data->emulate_logic_op_with_blend) @@ -1325,31 +1342,6 @@ ShaderCode GeneratePixelShaderCode(APIType api_type, const ShaderHostConfig& hos const bool use_dual_source = !uid_data->no_dual_src || uid_data->blend_enable; WriteColor(out, api_type, uid_data, use_dual_source); - for (std::size_t i = 0; i < custom_details.shaders.size(); i++) - { - const auto& shader_details = custom_details.shaders[i]; - - if (!shader_details.custom_shader.empty()) - { - out.Write("\t{{\n"); - if (uid_data->uint_output) - { - out.Write("\t\tcustom_data.final_color = float4(ocol0.x / 255.0, ocol0.y / 255.0, ocol0.z " - "/ 255.0, ocol0.w / 255.0);\n"); - out.Write("\t\tfloat3 custom_output = {}_{}(custom_data).xyz;\n", - CUSTOM_PIXELSHADER_COLOR_FUNC, i); - out.Write("\t\tocol0.xyz = uint3(custom_output.x * 255, custom_output.y * 255, " - "custom_output.z * 255);\n"); - } - else - { - out.Write("\t\tcustom_data.final_color = ocol0;\n"); - out.Write("\t\tocol0.xyz = {}_{}(custom_data).xyz;\n", CUSTOM_PIXELSHADER_COLOR_FUNC, i); - } - out.Write("\t}}\n\n"); - } - } - if (uid_data->blend_enable) WriteBlend(out, uid_data); else if (use_framebuffer_fetch) diff --git a/Source/Core/VideoCommon/ShaderGenCommon.cpp b/Source/Core/VideoCommon/ShaderGenCommon.cpp index 57d9c4567f..d132847f14 100644 --- a/Source/Core/VideoCommon/ShaderGenCommon.cpp +++ b/Source/Core/VideoCommon/ShaderGenCommon.cpp @@ -379,6 +379,11 @@ void WriteCustomShaderStructDef(ShaderCode* out, u32 numtexgens) out->Write("const uint CUSTOM_SHADER_LIGHTING_ATTENUATION_TYPE_SPOT = {}u;\n", static_cast(AttenuationFunc::Spot)); + out->Write("struct CustomShaderOutput\n"); + out->Write("{{\n"); + out->Write("\tfloat4 main_rt;\n"); + out->Write("}};\n\n"); + out->Write("struct CustomShaderLightData\n"); out->Write("{{\n"); out->Write("\tfloat3 position;\n"); diff --git a/Source/Core/VideoCommon/UberShaderPixel.cpp b/Source/Core/VideoCommon/UberShaderPixel.cpp index ca7658140f..ca8f42ec8f 100644 --- a/Source/Core/VideoCommon/UberShaderPixel.cpp +++ b/Source/Core/VideoCommon/UberShaderPixel.cpp @@ -1506,6 +1506,24 @@ ShaderCode GenPixelShader(APIType api_type, const ShaderHostConfig& host_config, " }}\n" "\n"); + for (std::size_t i = 0; i < custom_details.shaders.size(); i++) + { + const auto& shader_details = custom_details.shaders[i]; + + if (!shader_details.custom_shader.empty()) + { + out.Write("\t{{\n"); + out.Write("\t\tcustom_data.final_color = float4(TevResult.r / 255.0, TevResult.g / 255.0, " + "TevResult.b / 255.0, TevResult.a / 255.0);\n"); + out.Write("\t\tCustomShaderOutput custom_output = {}_{}(custom_data);\n", + CUSTOM_PIXELSHADER_COLOR_FUNC, i); + out.Write( + "\t\tTevResult = int4(custom_output.main_rt.r * 255, custom_output.main_rt.g * 255, " + "custom_output.main_rt.b * 255, custom_output.main_rt.a * 255);\n"); + out.Write("\t}}\n\n"); + } + } + if (use_framebuffer_fetch) { static constexpr std::array logic_op_mode{ @@ -1594,31 +1612,6 @@ ShaderCode GenPixelShader(APIType api_type, const ShaderHostConfig& host_config, } } - for (std::size_t i = 0; i < custom_details.shaders.size(); i++) - { - const auto& shader_details = custom_details.shaders[i]; - - if (!shader_details.custom_shader.empty()) - { - out.Write("\t{{\n"); - if (uid_data->uint_output) - { - out.Write("\t\tcustom_data.final_color = float4(ocol0.x / 255.0, ocol0.y / 255.0, ocol0.z " - "/ 255.0, ocol0.w / 255.0);\n"); - out.Write("\t\tfloat3 custom_output = {}_{}(custom_data).xyz;\n", - CUSTOM_PIXELSHADER_COLOR_FUNC, i); - out.Write("\t\tocol0.xyz = uint3(custom_output.x * 255, custom_output.y * 255, " - "custom_output.z * 255);\n"); - } - else - { - out.Write("\t\tcustom_data.final_color = ocol0;\n"); - out.Write("\t\tocol0.xyz = {}_{}(custom_data).xyz;\n", CUSTOM_PIXELSHADER_COLOR_FUNC, i); - } - out.Write("\t}}\n\n"); - } - } - if (bounding_box) { out.Write(" if (bpmem_bounding_box) {{\n" diff --git a/docs/CustomPipelineGraphicsMod.md b/docs/CustomPipelineGraphicsMod.md index 373b0a93a8..20d77dd720 100644 --- a/docs/CustomPipelineGraphicsMod.md +++ b/docs/CustomPipelineGraphicsMod.md @@ -84,28 +84,34 @@ A full example is given below: The shaders are written in GLSL and converted to the target shader that the backend uses internally. The user is expected to provide an entrypoint with the following signature: ``` -vec4 custom_main( in CustomShaderData data ) +CustomShaderOutput custom_main( in CustomShaderData data ) ``` +`CustomShaderOutput` is used to denote the final output that Dolphin will process and is what is returned by the function. It has the following structure: + +|Name | Type | Since | Description | +|-------------------------|-------------------------|-------|-------------------------------------------------------------------------------------------------| +|``main_rt`` | vec4 | v1 | The main render target's output color | + `CustomShaderData` encompasses all the data that Dolphin will pass to the user (in addition to the `samp` variable outlined above which is how textures are accessed). It has the following structure: -|Name | Type | Since | Description | -|-----------------------------|-------------------------|-------|-----------------------------------------------------------------------------------------------| -|``position`` | vec3 | v1 | The position of this pixel in _view space_ | -|``normal`` | vec3 | v1 | The normal of this pixel in _view space_ | -|``texcoord`` | vec3[] | v1 | An array of texture coordinates, the amount available is specified by ``texcoord_count`` | -|``texcoord_count`` | uint | v1 | The count of texture coordinates | -|``texmap_to_texcoord_index`` | uint[] | v1 | An array of texture units to texture coordinate values | -|``lights_chan0_color`` | CustomShaderLightData[] | v1 | An array of color lights for channel 0, the amount is specified by ``light_chan0_color_count``| -|``lights_chan0_alpha`` | CustomShaderLightData[] | v1 | An array of alpha lights for channel 0, the amount is specified by ``light_chan0_alpha_count``| -|``lights_chan1_color`` | CustomShaderLightData[] | v1 | An array of color lights for channel 1, the amount is specified by ``light_chan1_color_count``| -|``lights_chan1_alpha`` | CustomShaderLightData[] | v1 | An array of alpha lights for channel 1, the amount is specified by ``light_chan1_alpha_count``| -|``ambient_lighting`` | vec4[] | v1 | An array of ambient lighting values. Count is two, one for each color channel | -|``base_material`` | vec4[] | v1 | An array of the base material values. Count is two, one for each color channel | -|``tev_stages`` | CustomShaderTevStage[] | v1 | An array of TEV stages, the amount is specified by ``tev_stage_count`` | -|``tev_stage_count`` | uint | v1 | The count of TEV stages | -|``final_color`` | vec4 | v1 | The final color generated by Dolphin after all TEV stages are executed | -|``time_ms`` | uint | v1 | The time that has passed in milliseconds, since the game was started. Useful for animating | +|Name | Type | Since | Description | +|-----------------------------|-------------------------|-------|----------------------------------------------------------------------------------------------------------------------| +|``position`` | vec3 | v1 | The position of this pixel in _view space_ | +|``normal`` | vec3 | v1 | The normal of this pixel in _view space_ | +|``texcoord`` | vec3[] | v1 | An array of texture coordinates, the amount available is specified by ``texcoord_count`` | +|``texcoord_count`` | uint | v1 | The count of texture coordinates | +|``texmap_to_texcoord_index`` | uint[] | v1 | An array of texture units to texture coordinate values | +|``lights_chan0_color`` | CustomShaderLightData[] | v1 | An array of color lights for channel 0, the amount is specified by ``light_chan0_color_count`` | +|``lights_chan0_alpha`` | CustomShaderLightData[] | v1 | An array of alpha lights for channel 0, the amount is specified by ``light_chan0_alpha_count`` | +|``lights_chan1_color`` | CustomShaderLightData[] | v1 | An array of color lights for channel 1, the amount is specified by ``light_chan1_color_count`` | +|``lights_chan1_alpha`` | CustomShaderLightData[] | v1 | An array of alpha lights for channel 1, the amount is specified by ``light_chan1_alpha_count`` | +|``ambient_lighting`` | vec4[] | v1 | An array of ambient lighting values. Count is two, one for each color channel | +|``base_material`` | vec4[] | v1 | An array of the base material values. Count is two, one for each color channel | +|``tev_stages`` | CustomShaderTevStage[] | v1 | An array of TEV stages, the amount is specified by ``tev_stage_count`` | +|``tev_stage_count`` | uint | v1 | The count of TEV stages | +|``final_color`` | vec4 | v1 | The final color generated by Dolphin after all TEV stages are executed | +|``time_ms`` | uint | v1 | The time that has passed in milliseconds, since the game was started. Useful for animating | `CustomShaderLightData` is used to denote lighting data the game is applying when rendering the specific draw call. It has the following structure: @@ -172,9 +178,11 @@ Below are a handful of examples. The following shader displays the color red on the screen: ```glsl -vec4 custom_main( in CustomShaderData data ) +CustomShaderOutput custom_main( in CustomShaderData data ) { - return vec4(1.0, 0.0, 0.0, 1.0); + CustomShaderOutput custom_output; + custom_output.main_rt = vec4(1.0, 0.0, 0.0, 1.0); + return custom_output; } ``` @@ -183,9 +191,11 @@ vec4 custom_main( in CustomShaderData data ) The following shader displays the normal on the screen: ```glsl -vec4 custom_main( in CustomShaderData data ) +CustomShaderOutput custom_main( in CustomShaderData data ) { - return vec4(data.normal * 0.5 + 0.5, 1); + CustomShaderOutput custom_output; + custom_output.main_rt = vec4(data.normal * 0.5 + 0.5, 1); + return custom_output; } ``` @@ -194,9 +204,11 @@ vec4 custom_main( in CustomShaderData data ) The following shader displays the contents of the texture denoted in the shader asset as `MY_TEX` with the first texture coordinate data: ```glsl -vec4 custom_main( in CustomShaderData data ) +CustomShaderOutput custom_main( in CustomShaderData data ) { - return texture(samp_MY_TEX, TEX_COORD0); + CustomShaderOutput custom_output; + custom_output.main_rt = texture(samp_MY_TEX, TEX_COORD0); + return custom_output; } ``` @@ -205,7 +217,7 @@ vec4 custom_main( in CustomShaderData data ) The following shader would display the contents of the first texture the game uses, ignoring any other operations. If no stages are available or none exist with a texture it would use the final color of all the staging operations: ```glsl -vec4 custom_main( in CustomShaderData data ) +CustomShaderOutput custom_main( in CustomShaderData data ) { vec4 final_color = data.final_color; uint texture_set = 0; @@ -222,7 +234,9 @@ vec4 custom_main( in CustomShaderData data ) } } - return final_color; + CustomShaderOutput custom_output; + custom_output.main_rt = final_color; + return custom_output; } ``` @@ -231,7 +245,7 @@ vec4 custom_main( in CustomShaderData data ) The following shader would apply the lighting for any point lights used during the draw for channel 0's color lights, using blue as a base color: ```glsl -vec4 custom_main( in CustomShaderData data ) +CustomShaderOutput custom_main( in CustomShaderData data ) { float total_diffuse = 0; for (int i = 0; i < data.light_chan0_color_count; i++) @@ -246,6 +260,9 @@ vec4 custom_main( in CustomShaderData data ) total_diffuse += attn * max(0.0, dot(normal, light_dir)); } } - return vec4(total_diffuse * vec3(0, 0, 1), 1); + + CustomShaderOutput custom_output; + custom_output.main_rt = vec4(total_diffuse * vec3(0, 0, 1), 1); + return custom_output; } ``` \ No newline at end of file From e3d483e7c59c1454d76c7c0980799993504c8fcb Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 2 May 2024 08:25:33 -0400 Subject: [PATCH 006/296] Show Achievements in Menu Bar always Previously the Achievements option would only show up if achievements were already enabled, requiring users to manually create a config file in the file system; this now makes it visible no matter what. --- Source/Core/DolphinQt/MenuBar.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 46bd68b6d4..2cb541961f 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -276,12 +276,9 @@ void MenuBar::AddToolsMenu() tools_menu->addSeparator(); #ifdef USE_RETRO_ACHIEVEMENTS - if (Config::Get(Config::RA_ENABLED)) - { - tools_menu->addAction(tr("Achievements"), this, [this] { emit ShowAchievementsWindow(); }); + tools_menu->addAction(tr("Achievements"), this, [this] { emit ShowAchievementsWindow(); }); - tools_menu->addSeparator(); - } + tools_menu->addSeparator(); #endif // USE_RETRO_ACHIEVEMENTS QMenu* gc_ipl = tools_menu->addMenu(tr("Load GameCube Main Menu")); From b9326918103b44dd8e1337d36f3e098dd65cf46c Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 18 May 2024 03:32:07 +0100 Subject: [PATCH 007/296] DSPHLE/Zelda: fix Pikmin 2 save sound (issue 8855) --- Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp index 6be1ef0ef9..f1472807a1 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp @@ -1407,12 +1407,13 @@ void ZeldaAudioRenderer::LoadInputSamples(MixingBuffer* buffer, VPB* vpb) else shift = 2; u32 mask = (1 << shift) - 1; + u32 ratio = vpb->resampling_ratio << (shift - 1); u32 pos = vpb->current_pos_frac << shift; for (s16& sample : *buffer) { sample = ((pos >> 16) & mask) ? 0xC000 : 0x4000; - pos += vpb->resampling_ratio; + pos += ratio; } vpb->current_pos_frac = (pos >> shift) & 0xFFFF; break; From e98a0859b99b4f4ad7544f1b70675bfb92cd5606 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 20 May 2024 22:13:43 -0700 Subject: [PATCH 008/296] CMake: update required compiler versions for std::bitcast support This is based on https://en.cppreference.com/w/cpp/compiler_support. I'm not actually entirely sure what the needed Xcode version is. --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f8e845d0f..ebaadef619 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,13 +47,13 @@ if (COMPILER STREQUAL "GNU") set(COMPILER "GCC") # perfer printing GCC instead of GNU endif() -# Enforce minimium compiler versions that support the c++20 features we use -set (GCC_min_version 10) -set (Clang_min_version 12) -set (AppleClang_min_version 13.0.0) -set (min_xcode_version "13.0") # corrosponding xcode version for AppleClang_min_version +# Enforce minimum compiler versions that support the c++20 features we use +set (GCC_min_version 11) +set (Clang_min_version 14) +set (AppleClang_min_version 14.0.3) +set (min_xcode_version "14.0") # corresponding xcode version for AppleClang_min_version set (MSVC_min_version 14.32) -set (min_vs_version "2022 17.2.3") # corrosponding Visual Studio version for MSVC_min_version +set (min_vs_version "2022 17.2.3") # corresponding Visual Studio version for MSVC_min_version message(STATUS "Using ${COMPILER} ${CMAKE_CXX_COMPILER_VERSION}") From 57963c87d81a6c27f207bfd8881492ae783fa3df Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Thu, 16 May 2024 23:52:33 -0400 Subject: [PATCH 009/296] Add OpenBSD/arm64 support. Fix building on OpenBSD/arm64 and add CPU feature detection. --- Source/Core/Common/ArmCPUDetect.cpp | 42 +++++++++++++++++++++++++---- Source/Core/Core/MachineContext.h | 5 ++++ 2 files changed, 42 insertions(+), 5 deletions(-) diff --git a/Source/Core/Common/ArmCPUDetect.cpp b/Source/Core/Common/ArmCPUDetect.cpp index b55952cf2b..84cf727695 100644 --- a/Source/Core/Common/ArmCPUDetect.cpp +++ b/Source/Core/Common/ArmCPUDetect.cpp @@ -15,11 +15,16 @@ #include #include #include "Common/WindowsRegistry.h" -#else -#ifndef __FreeBSD__ +#elif defined(__linux__) #include -#endif #include +#elif defined(__FreeBSD__) +#include +#elif defined(__OpenBSD__) +#include +#include +#include +#include #endif #include @@ -183,7 +188,7 @@ static bool Read_MIDR_EL1(u64* value) #endif -#ifndef __APPLE__ +#if defined(_WIN32) || defined(__linux__) || defined(__FreeBSD__) static std::string MIDRToString(u64 midr) { @@ -248,7 +253,7 @@ void CPUInfo::Detect() { cpu_id = MIDRToString(reg); } -#else +#elif defined(__linux__) || defined(__FreeBSD__) // Linux, Android, and FreeBSD #if defined(__FreeBSD__) @@ -277,6 +282,33 @@ void CPUInfo::Detect() { cpu_id = MIDRToString(midr); } +#elif defined(__OpenBSD__) + // OpenBSD + int mib[2]; + size_t len; + char hwmodel[256]; + uint64_t isar0; + + mib[0] = CTL_HW; + mib[1] = HW_MODEL; + len = std::size(hwmodel); + if (sysctl(mib, 2, &hwmodel, &len, nullptr, 0) != -1) + model_name = std::string(hwmodel, len - 1); + + mib[0] = CTL_MACHDEP; + mib[1] = CPU_ID_AA64ISAR0; + len = sizeof(isar0); + if (sysctl(mib, 2, &isar0, &len, nullptr, 0) != -1) + { + if (ID_AA64ISAR0_AES(isar0) >= ID_AA64ISAR0_AES_BASE) + bAES = true; + if (ID_AA64ISAR0_SHA1(isar0) >= ID_AA64ISAR0_SHA1_BASE) + bSHA1 = true; + if (ID_AA64ISAR0_SHA2(isar0) >= ID_AA64ISAR0_SHA2_BASE) + bSHA2 = true; + if (ID_AA64ISAR0_CRC32(isar0) >= ID_AA64ISAR0_CRC32_BASE) + bCRC32 = true; + } #endif model_name = ReplaceAll(model_name, ",", "_"); diff --git a/Source/Core/Core/MachineContext.h b/Source/Core/Core/MachineContext.h index 9d20c51ef3..8d93cf3f3f 100644 --- a/Source/Core/Core/MachineContext.h +++ b/Source/Core/Core/MachineContext.h @@ -157,6 +157,11 @@ typedef ucontext_t SContext; #define CTX_R14 sc_r14 #define CTX_R15 sc_r15 #define CTX_RIP sc_rip +#elif _M_ARM_64 +#define CTX_REG(x) sc_x[x] +#define CTX_LR sc_lr +#define CTX_SP sc_sp +#define CTX_PC sc_elr #else #error No context definition for architecture #endif From 564d4c3c2519b0c2cb5dd66d1411719dfb5f4551 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Wed, 22 May 2024 21:08:26 -0700 Subject: [PATCH 010/296] MainWindow: Initialize geometries before calling GetWindowSystemInfo. On Windows: wsi.render_window being set will set/save the initial geometry, which will cause sizing bugs until it's set again by the user resizing/repositioning. --- Source/Core/DolphinQt/MainWindow.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index c8e04a0fd0..95343b12f1 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -227,8 +227,6 @@ MainWindow::MainWindow(std::unique_ptr boot_parameters, setAcceptDrops(true); setAttribute(Qt::WA_NativeWindow); - InitControllers(); - CreateComponents(); ConnectGameList(); @@ -237,6 +235,13 @@ MainWindow::MainWindow(std::unique_ptr boot_parameters, ConnectRenderWidget(); ConnectStack(); ConnectMenuBar(); + + QSettings& settings = Settings::GetQSettings(); + restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray()); + restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray()); + show(); + + InitControllers(); ConnectHotkeys(); #if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) @@ -289,11 +294,6 @@ MainWindow::MainWindow(std::unique_ptr boot_parameters, m_state_slot = std::clamp(Settings::Instance().GetStateSlot(), 1, static_cast(State::NUM_STATES)); - QSettings& settings = Settings::GetQSettings(); - - restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray()); - restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray()); - m_render_widget_geometry = settings.value(QStringLiteral("renderwidget/geometry")).toByteArray(); // Restoring of window states can sometimes go wrong, resulting in widgets being visible when they From 75465f00ccf8694bbae37fccb106a7aaf233e3ac Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 8 May 2024 07:28:28 -0400 Subject: [PATCH 011/296] Remove Badges Enabled option from Achievements Was informed by the RetroAchievements team that this isn't an option in most emulators, and as the next commits will be to enable default icons, there will always be something to display. --- Source/Core/Core/AchievementManager.cpp | 37 +++++++------------ .../Core/Core/Config/AchievementSettings.cpp | 1 - Source/Core/Core/Config/AchievementSettings.h | 1 - .../DolphinQt/Achievements/AchievementBox.cpp | 2 +- .../Achievements/AchievementHeaderWidget.cpp | 4 +- .../AchievementSettingsWidget.cpp | 19 ---------- .../Achievements/AchievementSettingsWidget.h | 2 - 7 files changed, 17 insertions(+), 49 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index b1b63726b3..f9ae5fadb5 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -637,7 +637,7 @@ void AchievementManager::DisplayWelcomeMessage() m_display_welcome_message = false; const u32 color = rc_client_get_hardcore_enabled(m_client) ? OSD::Color::YELLOW : OSD::Color::CYAN; - if (Config::Get(Config::RA_BADGES_ENABLED) && !m_game_badge.name.empty()) + if (!m_game_badge.name.empty()) { OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, DecodeBadgeToOSDIcon(m_game_badge.badge)); @@ -677,11 +677,9 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_client_event_t (rc_client_get_hardcore_enabled(AchievementManager::GetInstance().m_client)) ? OSD::Color::YELLOW : OSD::Color::CYAN, - (Config::Get(Config::RA_BADGES_ENABLED)) ? - DecodeBadgeToOSDIcon(AchievementManager::GetInstance() - .m_unlocked_badges[client_event->achievement->id] - .badge) : - nullptr); + DecodeBadgeToOSDIcon(AchievementManager::GetInstance() + .m_unlocked_badges[client_event->achievement->id] + .badge)); } void AchievementManager::HandleLeaderboardStartedEvent(const rc_client_event_t* client_event) @@ -738,15 +736,12 @@ void AchievementManager::HandleLeaderboardTrackerHideEvent(const rc_client_event void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( const rc_client_event_t* client_event) { - if (Config::Get(Config::RA_BADGES_ENABLED)) + auto& unlocked_badges = AchievementManager::GetInstance().m_unlocked_badges; + if (const auto unlocked_iter = unlocked_badges.find(client_event->achievement->id); + unlocked_iter != unlocked_badges.end()) { - auto& unlocked_badges = AchievementManager::GetInstance().m_unlocked_badges; - if (const auto unlocked_iter = unlocked_badges.find(client_event->achievement->id); - unlocked_iter != unlocked_badges.end()) - { - AchievementManager::GetInstance().m_active_challenges[client_event->achievement->badge_name] = - DecodeBadgeToOSDIcon(unlocked_iter->second.badge); - } + AchievementManager::GetInstance().m_active_challenges[client_event->achievement->badge_name] = + DecodeBadgeToOSDIcon(unlocked_iter->second.badge); } } @@ -763,11 +758,9 @@ void AchievementManager::HandleAchievementProgressIndicatorShowEvent( OSD::AddMessage(fmt::format("{} {}", client_event->achievement->title, client_event->achievement->measured_progress), OSD::Duration::SHORT, OSD::Color::GREEN, - (Config::Get(Config::RA_BADGES_ENABLED)) ? - DecodeBadgeToOSDIcon(AchievementManager::GetInstance() - .m_unlocked_badges[client_event->achievement->id] - .badge) : - nullptr); + DecodeBadgeToOSDIcon(AchievementManager::GetInstance() + .m_unlocked_badges[client_event->achievement->id] + .badge)); } void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* client_event, @@ -784,9 +777,7 @@ void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* clien OSD::AddMessage(fmt::format("Congratulations! {} has {} {}", user_info->display_name, hardcore ? "mastered" : "completed", game_info->title), OSD::Duration::VERY_LONG, hardcore ? OSD::Color::YELLOW : OSD::Color::CYAN, - (Config::Get(Config::RA_BADGES_ENABLED)) ? - DecodeBadgeToOSDIcon(AchievementManager::GetInstance().m_game_badge.badge) : - nullptr); + DecodeBadgeToOSDIcon(AchievementManager::GetInstance().m_game_badge.badge)); } void AchievementManager::HandleResetEvent(const rc_client_event_t* client_event) @@ -880,7 +871,7 @@ void AchievementManager::FetchBadge(AchievementManager::BadgeStatus* badge, u32 const AchievementManager::BadgeNameFunction function, const UpdatedItems callback_data) { - if (!m_client || !HasAPIToken() || !Config::Get(Config::RA_BADGES_ENABLED)) + if (!m_client || !HasAPIToken()) { m_update_callback(callback_data); if (m_display_welcome_message && badge_type == RC_IMAGE_TYPE_GAME) diff --git a/Source/Core/Core/Config/AchievementSettings.cpp b/Source/Core/Core/Config/AchievementSettings.cpp index 1e20729bdd..63945777cb 100644 --- a/Source/Core/Core/Config/AchievementSettings.cpp +++ b/Source/Core/Core/Config/AchievementSettings.cpp @@ -26,7 +26,6 @@ const Info RA_DISCORD_PRESENCE_ENABLED{ {System::Achievements, "Achievements", "DiscordPresenceEnabled"}, false}; const Info RA_PROGRESS_ENABLED{{System::Achievements, "Achievements", "ProgressEnabled"}, false}; -const Info RA_BADGES_ENABLED{{System::Achievements, "Achievements", "BadgesEnabled"}, false}; } // namespace Config #endif // USE_RETRO_ACHIEVEMENTS diff --git a/Source/Core/Core/Config/AchievementSettings.h b/Source/Core/Core/Config/AchievementSettings.h index ae2ecbc8b6..f1552ec59c 100644 --- a/Source/Core/Core/Config/AchievementSettings.h +++ b/Source/Core/Core/Config/AchievementSettings.h @@ -20,7 +20,6 @@ extern const Info RA_ENCORE_ENABLED; extern const Info RA_SPECTATOR_ENABLED; extern const Info RA_DISCORD_PRESENCE_ENABLED; extern const Info RA_PROGRESS_ENABLED; -extern const Info RA_BADGES_ENABLED; } // namespace Config #endif // USE_RETRO_ACHIEVEMENTS diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 534b965d78..f563f9cfc9 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -61,7 +61,7 @@ void AchievementBox::UpdateData() color = AchievementManager::GOLD; else if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_SOFTCORE) color = AchievementManager::BLUE; - if (Config::Get(Config::RA_BADGES_ENABLED) && badge.name != "") + if (badge.name != "") { QImage i_badge{}; if (i_badge.loadFromData(&badge.badge.front(), static_cast(badge.badge.size()))) diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index c148714171..e2fc6addbc 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -74,7 +74,7 @@ void AchievementHeaderWidget::UpdateData() m_user_icon->setVisible(false); m_user_icon->clear(); m_user_icon->setText({}); - if (Config::Get(Config::RA_BADGES_ENABLED) && !player_badge.name.empty()) + if (!player_badge.name.empty()) { QImage i_user_icon{}; if (i_user_icon.loadFromData(&player_badge.badge.front(), (int)player_badge.badge.size())) @@ -95,7 +95,7 @@ void AchievementHeaderWidget::UpdateData() rc_client_user_game_summary_t game_summary; rc_client_get_user_game_summary(instance.GetClient(), &game_summary); - if (Config::Get(Config::RA_BADGES_ENABLED) && !game_badge.name.empty()) + if (!game_badge.name.empty()) { QImage i_game_icon{}; if (i_game_icon.loadFromData(&game_badge.badge.front(), (int)game_badge.badge.size())) diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index 62f6a1e0cb..5b8a07d24f 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -105,11 +105,6 @@ void AchievementSettingsWidget::CreateLayout() tr("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.")); - m_common_badges_enabled_input = new ToolTipCheckBox(tr("Enable Achievement Badges")); - m_common_badges_enabled_input->SetDescription( - tr("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.")); m_common_layout->addWidget(m_common_integration_enabled_input); m_common_layout->addWidget(m_common_username_label); @@ -129,7 +124,6 @@ void AchievementSettingsWidget::CreateLayout() m_common_layout->addWidget(m_common_discord_presence_enabled_input); #endif // USE_DISCORD_PRESENCE m_common_layout->addWidget(m_common_progress_enabled_input); - m_common_layout->addWidget(m_common_badges_enabled_input); m_common_layout->setAlignment(Qt::AlignTop); setLayout(m_common_layout); @@ -153,8 +147,6 @@ void AchievementSettingsWidget::ConnectWidgets() &AchievementSettingsWidget::ToggleDiscordPresence); connect(m_common_progress_enabled_input, &QCheckBox::toggled, this, &AchievementSettingsWidget::ToggleProgress); - connect(m_common_badges_enabled_input, &QCheckBox::toggled, this, - &AchievementSettingsWidget::ToggleBadges); } void AchievementSettingsWidget::OnControllerInterfaceConfigure() @@ -214,9 +206,6 @@ void AchievementSettingsWidget::LoadSettings() SignalBlocking(m_common_progress_enabled_input) ->setChecked(Config::Get(Config::RA_PROGRESS_ENABLED)); SignalBlocking(m_common_progress_enabled_input)->setEnabled(enabled); - - SignalBlocking(m_common_badges_enabled_input)->setChecked(Config::Get(Config::RA_BADGES_ENABLED)); - SignalBlocking(m_common_badges_enabled_input)->setEnabled(enabled); } void AchievementSettingsWidget::SaveSettings() @@ -235,7 +224,6 @@ void AchievementSettingsWidget::SaveSettings() m_common_discord_presence_enabled_input->isChecked()); Config::SetBaseOrCurrent(Config::RA_PROGRESS_ENABLED, m_common_progress_enabled_input->isChecked()); - Config::SetBaseOrCurrent(Config::RA_BADGES_ENABLED, m_common_badges_enabled_input->isChecked()); Config::Save(); } @@ -308,11 +296,4 @@ void AchievementSettingsWidget::ToggleProgress() SaveSettings(); } -void AchievementSettingsWidget::ToggleBadges() -{ - SaveSettings(); - AchievementManager::GetInstance().FetchPlayerBadge(); - AchievementManager::GetInstance().FetchGameBadges(); -} - #endif // USE_RETRO_ACHIEVEMENTS diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.h b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.h index b8e848c2d1..8d4aa03c2a 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.h +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.h @@ -38,7 +38,6 @@ private: void ToggleSpectator(); void ToggleDiscordPresence(); void ToggleProgress(); - void ToggleBadges(); QGroupBox* m_common_box; QVBoxLayout* m_common_layout; @@ -56,7 +55,6 @@ private: ToolTipCheckBox* m_common_spectator_enabled_input; ToolTipCheckBox* m_common_discord_presence_enabled_input; ToolTipCheckBox* m_common_progress_enabled_input; - ToolTipCheckBox* m_common_badges_enabled_input; }; #endif // USE_RETRO_ACHIEVEMENTS From dc8f3f6eaea51d054be6007713959426763b611d Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 13 May 2024 00:15:21 -0400 Subject: [PATCH 012/296] Refactored Achievement Badges into Texture Layers Achievement badges/icons are refactored into the type CustomTextureData::ArraySlice::Level as that is the data type images loaded from the filesystem will be. This includes everything that uses the badges in the Qt UI and OnScreenDisplay, and similarly removes the OSD::Icon type because Level already contains that information. --- Source/Core/Core/AchievementManager.cpp | 68 ++++++++----------- Source/Core/Core/AchievementManager.h | 16 ++--- .../DolphinQt/Achievements/AchievementBox.cpp | 16 ++--- .../Achievements/AchievementHeaderWidget.cpp | 42 ++++++------ .../VideoCommon/Assets/CustomTextureData.cpp | 8 +++ .../VideoCommon/Assets/CustomTextureData.h | 1 + Source/Core/VideoCommon/OnScreenDisplay.cpp | 17 +++-- Source/Core/VideoCommon/OnScreenDisplay.h | 14 ++-- Source/Core/VideoCommon/OnScreenUI.cpp | 2 +- 9 files changed, 83 insertions(+), 101 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index f9ae5fadb5..dd81a6e871 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -23,11 +23,10 @@ #include "Core/System.h" #include "DiscIO/Blob.h" #include "UICommon/DiscordPresence.h" +#include "VideoCommon/Assets/CustomTextureData.h" #include "VideoCommon/OnScreenDisplay.h" #include "VideoCommon/VideoEvents.h" -static std::unique_ptr DecodeBadgeToOSDIcon(const AchievementManager::Badge& badge); - AchievementManager& AchievementManager::GetInstance() { static AchievementManager s_instance; @@ -306,9 +305,9 @@ const AchievementManager::BadgeStatus& AchievementManager::GetGameBadge() const const AchievementManager::BadgeStatus& AchievementManager::GetAchievementBadge(AchievementId id, bool locked) const { - auto& badge_list = locked ? m_locked_badges : m_locked_badges; - auto itr = badge_list.find(id); - return (itr == badge_list.end()) ? m_default_badge : itr->second; + auto& badge_list = locked ? m_locked_badges : m_unlocked_badges; + // Brief regression - difficult to return a default BadgeStatus, will be fixed in later commit + return badge_list.find(id)->second; } const AchievementManager::LeaderboardStatus* @@ -330,7 +329,7 @@ AchievementManager::RichPresence AchievementManager::GetRichPresence() const return m_rich_presence; } -const AchievementManager::NamedIconMap& AchievementManager::GetChallengeIcons() const +const AchievementManager::NamedBadgeMap& AchievementManager::GetChallengeIcons() const { return m_active_challenges; } @@ -639,8 +638,7 @@ void AchievementManager::DisplayWelcomeMessage() rc_client_get_hardcore_enabled(m_client) ? OSD::Color::YELLOW : OSD::Color::CYAN; if (!m_game_badge.name.empty()) { - OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, - DecodeBadgeToOSDIcon(m_game_badge.badge)); + OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, &m_game_badge.badge); } auto info = rc_client_get_game_info(m_client); if (!info) @@ -671,15 +669,14 @@ void AchievementManager::DisplayWelcomeMessage() void AchievementManager::HandleAchievementTriggeredEvent(const rc_client_event_t* client_event) { - OSD::AddMessage(fmt::format("Unlocked: {} ({})", client_event->achievement->title, - client_event->achievement->points), - OSD::Duration::VERY_LONG, - (rc_client_get_hardcore_enabled(AchievementManager::GetInstance().m_client)) ? - OSD::Color::YELLOW : - OSD::Color::CYAN, - DecodeBadgeToOSDIcon(AchievementManager::GetInstance() - .m_unlocked_badges[client_event->achievement->id] - .badge)); + OSD::AddMessage( + fmt::format("Unlocked: {} ({})", client_event->achievement->title, + client_event->achievement->points), + OSD::Duration::VERY_LONG, + (rc_client_get_hardcore_enabled(AchievementManager::GetInstance().m_client)) ? + OSD::Color::YELLOW : + OSD::Color::CYAN, + &AchievementManager::GetInstance().m_unlocked_badges[client_event->achievement->id].badge); } void AchievementManager::HandleLeaderboardStartedEvent(const rc_client_event_t* client_event) @@ -741,7 +738,7 @@ void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( unlocked_iter != unlocked_badges.end()) { AchievementManager::GetInstance().m_active_challenges[client_event->achievement->badge_name] = - DecodeBadgeToOSDIcon(unlocked_iter->second.badge); + &unlocked_iter->second.badge; } } @@ -755,12 +752,11 @@ void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( void AchievementManager::HandleAchievementProgressIndicatorShowEvent( const rc_client_event_t* client_event) { - OSD::AddMessage(fmt::format("{} {}", client_event->achievement->title, - client_event->achievement->measured_progress), - OSD::Duration::SHORT, OSD::Color::GREEN, - DecodeBadgeToOSDIcon(AchievementManager::GetInstance() - .m_unlocked_badges[client_event->achievement->id] - .badge)); + OSD::AddMessage( + fmt::format("{} {}", client_event->achievement->title, + client_event->achievement->measured_progress), + OSD::Duration::SHORT, OSD::Color::GREEN, + &AchievementManager::GetInstance().m_unlocked_badges[client_event->achievement->id].badge); } void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* client_event, @@ -777,7 +773,7 @@ void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* clien OSD::AddMessage(fmt::format("Congratulations! {} has {} {}", user_info->display_name, hardcore ? "mastered" : "completed", game_info->title), OSD::Duration::VERY_LONG, hardcore ? OSD::Color::YELLOW : OSD::Color::CYAN, - DecodeBadgeToOSDIcon(AchievementManager::GetInstance().m_game_badge.badge)); + &AchievementManager::GetInstance().m_game_badge.badge); } void AchievementManager::HandleResetEvent(const rc_client_event_t* client_event) @@ -792,20 +788,6 @@ void AchievementManager::HandleServerErrorEvent(const rc_client_event_t* client_ client_event->server_error->api, client_event->server_error->error_message); } -static std::unique_ptr DecodeBadgeToOSDIcon(const AchievementManager::Badge& badge) -{ - if (badge.empty()) - return nullptr; - - auto icon = std::make_unique(); - if (!Common::LoadPNG(badge, &icon->rgba_data, &icon->width, &icon->height)) - { - ERROR_LOG_FMT(ACHIEVEMENTS, "Error decoding badge."); - return nullptr; - } - return icon; -} - void AchievementManager::Request(const rc_api_request_t* request, rc_client_server_callback_t callback, void* callback_data, rc_client_t* client) @@ -914,7 +896,6 @@ void AchievementManager::FetchBadge(AchievementManager::BadgeStatus* badge, u32 } rc_api_destroy_request(&api_request); - fetched_badge = std::move(*http_response); INFO_LOG_FMT(ACHIEVEMENTS, "Successfully downloaded badge id {}.", name_to_fetch); std::lock_guard lg{m_lock}; @@ -923,7 +904,12 @@ void AchievementManager::FetchBadge(AchievementManager::BadgeStatus* badge, u32 INFO_LOG_FMT(ACHIEVEMENTS, "Requested outdated badge id {}.", name_to_fetch); return; } - badge->badge = std::move(fetched_badge); + + if (!LoadPNGTexture(&badge->badge, *http_response)) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Default game badge '{}' failed to load", + DEFAULT_GAME_BADGE_FILENAME); + } badge->name = std::move(name_to_fetch); m_update_callback(callback_data); diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 5d133e023f..e7aaa672e3 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -22,6 +22,7 @@ #include "Common/HttpRequest.h" #include "Common/WorkQueueThread.h" #include "DiscIO/Volume.h" +#include "VideoCommon/Assets/CustomTextureData.h" namespace Core { @@ -29,11 +30,6 @@ class CPUThreadGuard; class System; } // namespace Core -namespace OSD -{ -struct Icon; -} - class AchievementManager { public: @@ -47,8 +43,8 @@ public: using LeaderboardRank = u32; static constexpr size_t RP_SIZE = 256; using RichPresence = std::array; - using Badge = std::vector; - using NamedIconMap = std::map, std::less<>>; + using Badge = VideoCommon::CustomTextureData::ArraySlice::Level; + using NamedBadgeMap = std::unordered_map; static constexpr size_t MAX_DISPLAYED_LBOARDS = 4; struct BadgeStatus @@ -116,7 +112,7 @@ public: const BadgeStatus& GetAchievementBadge(AchievementId id, bool locked) const; const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id); RichPresence GetRichPresence() const; - const NamedIconMap& GetChallengeIcons() const; + const NamedBadgeMap& GetChallengeIcons() const; std::vector GetActiveLeaderboards() const; void DoState(PointerWrap& p); @@ -134,8 +130,6 @@ private: std::unique_ptr volume; }; - const BadgeStatus m_default_badge; - static void* FilereaderOpenByFilepath(const char* path_utf8); static void* FilereaderOpenByVolume(const char* path_utf8); static void FilereaderSeek(void* file_handle, int64_t offset, int origin); @@ -200,7 +194,7 @@ private: std::chrono::steady_clock::time_point m_last_rp_time = std::chrono::steady_clock::now(); std::unordered_map m_leaderboard_map; - NamedIconMap m_active_challenges; + NamedBadgeMap m_active_challenges; std::vector m_active_leaderboards; Common::WorkQueueThread> m_queue; diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index f563f9cfc9..8b4bccbf31 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -63,15 +63,13 @@ void AchievementBox::UpdateData() color = AchievementManager::BLUE; if (badge.name != "") { - QImage i_badge{}; - if (i_badge.loadFromData(&badge.badge.front(), static_cast(badge.badge.size()))) - { - m_badge->setPixmap(QPixmap::fromImage(i_badge).scaled(64, 64, Qt::KeepAspectRatio, - Qt::SmoothTransformation)); - m_badge->adjustSize(); - m_badge->setStyleSheet( - QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); - } + QImage i_badge(&badge.badge.data.front(), badge.badge.width, badge.badge.height, + QImage::Format_RGBA8888); + m_badge->setPixmap( + QPixmap::fromImage(i_badge).scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_badge->adjustSize(); + m_badge->setStyleSheet( + QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); } else { diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index e2fc6addbc..ffa0bf35e0 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -76,15 +76,13 @@ void AchievementHeaderWidget::UpdateData() m_user_icon->setText({}); if (!player_badge.name.empty()) { - QImage i_user_icon{}; - if (i_user_icon.loadFromData(&player_badge.badge.front(), (int)player_badge.badge.size())) - { - m_user_icon->setPixmap(QPixmap::fromImage(i_user_icon) - .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - m_user_icon->adjustSize(); - m_user_icon->setStyleSheet(QStringLiteral("border: 4px solid transparent")); - m_user_icon->setVisible(true); - } + QImage i_user_icon(&player_badge.badge.data.front(), player_badge.badge.width, + player_badge.badge.height, QImage::Format_RGBA8888); + m_user_icon->setPixmap(QPixmap::fromImage(i_user_icon) + .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_user_icon->adjustSize(); + m_user_icon->setStyleSheet(QStringLiteral("border: 4px solid transparent")); + m_user_icon->setVisible(true); } m_game_icon->setVisible(false); m_game_icon->clear(); @@ -97,22 +95,20 @@ void AchievementHeaderWidget::UpdateData() if (!game_badge.name.empty()) { - QImage i_game_icon{}; - if (i_game_icon.loadFromData(&game_badge.badge.front(), (int)game_badge.badge.size())) + QImage i_game_icon(&game_badge.badge.data.front(), game_badge.badge.width, + game_badge.badge.height, QImage::Format_RGBA8888); + m_game_icon->setPixmap(QPixmap::fromImage(i_game_icon) + .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_game_icon->adjustSize(); + std::string_view color = AchievementManager::GRAY; + if (game_summary.num_core_achievements == game_summary.num_unlocked_achievements) { - m_game_icon->setPixmap(QPixmap::fromImage(i_game_icon) - .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - m_game_icon->adjustSize(); - std::string_view color = AchievementManager::GRAY; - if (game_summary.num_core_achievements == game_summary.num_unlocked_achievements) - { - color = - instance.IsHardcoreModeActive() ? AchievementManager::GOLD : AchievementManager::BLUE; - } - m_game_icon->setStyleSheet( - QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); - m_game_icon->setVisible(true); + color = + instance.IsHardcoreModeActive() ? AchievementManager::GOLD : AchievementManager::BLUE; } + m_game_icon->setStyleSheet( + QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); + m_game_icon->setVisible(true); } m_name->setText(tr("%1 is playing %2").arg(user_name).arg(game_name)); diff --git a/Source/Core/VideoCommon/Assets/CustomTextureData.cpp b/Source/Core/VideoCommon/Assets/CustomTextureData.cpp index 23af429d11..d30532142a 100644 --- a/Source/Core/VideoCommon/Assets/CustomTextureData.cpp +++ b/Source/Core/VideoCommon/Assets/CustomTextureData.cpp @@ -574,6 +574,14 @@ bool LoadPNGTexture(CustomTextureData::ArraySlice::Level* level, const std::stri std::vector buffer(file.GetSize()); file.ReadBytes(buffer.data(), file.GetSize()); + return LoadPNGTexture(level, buffer); +} + +bool LoadPNGTexture(CustomTextureData::ArraySlice::Level* level, const std::vector& buffer) +{ + if (!level) [[unlikely]] + return false; + if (!Common::LoadPNG(buffer, &level->data, &level->width, &level->height)) return false; diff --git a/Source/Core/VideoCommon/Assets/CustomTextureData.h b/Source/Core/VideoCommon/Assets/CustomTextureData.h index fe15c05eaa..32607f4e88 100644 --- a/Source/Core/VideoCommon/Assets/CustomTextureData.h +++ b/Source/Core/VideoCommon/Assets/CustomTextureData.h @@ -33,4 +33,5 @@ bool LoadDDSTexture(CustomTextureData* texture, const std::string& filename); bool LoadDDSTexture(CustomTextureData::ArraySlice::Level* level, const std::string& filename, u32 mip_level); bool LoadPNGTexture(CustomTextureData::ArraySlice::Level* level, const std::string& filename); +bool LoadPNGTexture(CustomTextureData::ArraySlice::Level* level, const std::vector& buffer); } // namespace VideoCommon diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp index bfa8bc5321..c24fee6538 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.cpp +++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp @@ -20,6 +20,7 @@ #include "VideoCommon/AbstractGfx.h" #include "VideoCommon/AbstractTexture.h" +#include "VideoCommon/Assets/CustomTextureData.h" #include "VideoCommon/TextureConfig.h" namespace OSD @@ -36,8 +37,9 @@ static std::atomic s_obscured_pixels_top = 0; struct Message { Message() = default; - Message(std::string text_, u32 duration_, u32 color_, std::unique_ptr icon_ = nullptr) - : text(std::move(text_)), duration(duration_), color(color_), icon(std::move(icon_)) + Message(std::string text_, u32 duration_, u32 color_, + const VideoCommon::CustomTextureData::ArraySlice::Level* icon_ = nullptr) + : text(std::move(text_)), duration(duration_), color(color_), icon(icon_) { timer.Start(); } @@ -48,7 +50,7 @@ struct Message bool ever_drawn = false; bool should_discard = false; u32 color = 0; - std::unique_ptr icon; + const VideoCommon::CustomTextureData::ArraySlice::Level* icon; std::unique_ptr texture; }; static std::multimap s_messages; @@ -95,13 +97,13 @@ static float DrawMessage(int index, Message& msg, const ImVec2& position, int ti msg.texture = g_gfx->CreateTexture(tex_config); if (msg.texture) { - msg.texture->Load(0, width, height, width, msg.icon->rgba_data.data(), + msg.texture->Load(0, width, height, width, msg.icon->data.data(), sizeof(u32) * width * height); } else { // don't try again next time - msg.icon.reset(); + msg.icon = nullptr; } } @@ -127,7 +129,7 @@ static float DrawMessage(int index, Message& msg, const ImVec2& position, int ti } void AddTypedMessage(MessageType type, std::string message, u32 ms, u32 argb, - std::unique_ptr icon) + const VideoCommon::CustomTextureData::ArraySlice::Level* icon) { std::lock_guard lock{s_messages_mutex}; @@ -141,7 +143,8 @@ void AddTypedMessage(MessageType type, std::string message, u32 ms, u32 argb, s_messages.emplace(type, Message(std::move(message), ms, argb, std::move(icon))); } -void AddMessage(std::string message, u32 ms, u32 argb, std::unique_ptr icon) +void AddMessage(std::string message, u32 ms, u32 argb, + const VideoCommon::CustomTextureData::ArraySlice::Level* icon) { std::lock_guard lock{s_messages_mutex}; s_messages.emplace(MessageType::Typeless, Message(std::move(message), ms, argb, std::move(icon))); diff --git a/Source/Core/VideoCommon/OnScreenDisplay.h b/Source/Core/VideoCommon/OnScreenDisplay.h index f566eb0bf1..33d8662744 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.h +++ b/Source/Core/VideoCommon/OnScreenDisplay.h @@ -10,6 +10,8 @@ #include "Common/CommonTypes.h" +#include "VideoCommon/Assets/CustomTextureData.h" + namespace OSD { enum class MessageType @@ -37,18 +39,12 @@ constexpr u32 NORMAL = 5000; constexpr u32 VERY_LONG = 10000; }; // namespace Duration -struct Icon -{ - std::vector rgba_data; - u32 width = 0; - u32 height = 0; -}; // struct Icon - // On-screen message display (colored yellow by default) void AddMessage(std::string message, u32 ms = Duration::SHORT, u32 argb = Color::YELLOW, - std::unique_ptr icon = nullptr); + const VideoCommon::CustomTextureData::ArraySlice::Level* icon = nullptr); void AddTypedMessage(MessageType type, std::string message, u32 ms = Duration::SHORT, - u32 argb = Color::YELLOW, std::unique_ptr icon = nullptr); + u32 argb = Color::YELLOW, + const VideoCommon::CustomTextureData::ArraySlice::Level* icon = nullptr); // Draw the current messages on the screen. Only call once per frame. void DrawMessages(); diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 8f85db85b0..1231851c9a 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -358,7 +358,7 @@ void OnScreenUI::DrawChallengesAndLeaderboards() TextureConfig tex_config(width, height, 1, 1, 1, AbstractTextureFormat::RGBA8, 0, AbstractTextureType::Texture_2DArray); auto res = m_challenge_texture_map.insert_or_assign(name, g_gfx->CreateTexture(tex_config)); - res.first->second->Load(0, width, height, width, icon->rgba_data.data(), + res.first->second->Load(0, width, height, width, icon->data.data(), sizeof(u32) * width * height); } for (auto& [name, texture] : m_challenge_texture_map) From 3b61b6d81690a715327c4cf7329538424b0df023 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 13 May 2024 18:53:06 -0400 Subject: [PATCH 013/296] Add Default Achievement Badges The defaults get loaded in by Dolphin at emulator start, and are used if the badge that would normally be displayed has not for whatever reason been downloaded yet. Badges attached to this PR are placeholders (MayIMilae is designing permanent badges) and reside in Sys\Load\RetroAchievements. --- Data/Sys/Resources/achievements_game.png | Bin 0 -> 460 bytes Data/Sys/Resources/achievements_locked.png | Bin 0 -> 235 bytes Data/Sys/Resources/achievements_player.png | Bin 0 -> 335 bytes Data/Sys/Resources/achievements_unlocked.png | Bin 0 -> 235 bytes Source/Core/Core/AchievementManager.cpp | 89 ++++++++++++++----- Source/Core/Core/AchievementManager.h | 9 ++ 6 files changed, 78 insertions(+), 20 deletions(-) create mode 100644 Data/Sys/Resources/achievements_game.png create mode 100644 Data/Sys/Resources/achievements_locked.png create mode 100644 Data/Sys/Resources/achievements_player.png create mode 100644 Data/Sys/Resources/achievements_unlocked.png diff --git a/Data/Sys/Resources/achievements_game.png b/Data/Sys/Resources/achievements_game.png new file mode 100644 index 0000000000000000000000000000000000000000..624c3a917d1b8bcb726ec283180320fc0bb1bf91 GIT binary patch literal 460 zcmeAS@N?(olHy`uVBq!ia0y~yU`POAMrH;Eh8tl|s~H#=*aCb)Tp1V`{{R2K^yd7# z3=E8oo-U3d7XE9mY|K4kz{B7mrFF$sSwne=&+U<>dGab;j&`2YX^(wp<| zGB7YK@N{tu(FoppaU<_x1p(Fz{TdpQje!!pZpk8U3zj&<{9y0Q(QFNV(z3L@R{e+3 z6OlUSqpLoMWT$9M@=%u&%yCHn5LsXpjwcv#+0k@4)_8!JO& zmiSF?=DGT~uXn%LvLg4uX&#v<>#ikzYZmQQTw8HHkyG~K#BFUGCckyA&{+16yP}6b zA=hI4Z>c+8_U|8Dd-1t4FWKGug-2S~E3u@BF87u{SUfwdC?v-v*OkvDQd23DJ#b6$ zBXKPqb)&6Y#Lnr2KYV&_!Rw1E#d5Vdy7OQ4vSogmwzQRv?`EThdBN{c(>wJo{hZr9 zFVAtDBKsl#^?{FePCB1oeLl3&)TMbl?>(X4b$ssET9p>OHPH{y=2*now30*2<25V$ qlQ!8`)5ZTVeDIz9#j3s|zVX+q_QP%aFETJNFnGH9xvXU<>dGas7Xi@Bjb*uE$Sy zFfcGI@N{tu(FoppaU<_x1p(Fz{TdpQje!!pZpk8U3zj&<{9y0Q(QFNV(z3L@R{e+3 z6OlUSqpLoMWT$9M@=%u&% #include +#include "Common/CommonPaths.h" +#include "Common/FileUtil.h" #include "Common/Image.h" #include "Common/Logging/Log.h" #include "Common/ScopeGuard.h" @@ -35,6 +37,7 @@ AchievementManager& AchievementManager::GetInstance() void AchievementManager::Init() { + LoadDefaultBadges(); if (!m_client && Config::Get(Config::RA_ENABLED)) { m_client = rc_client_create(MemoryPeeker, Request); @@ -499,6 +502,55 @@ void AchievementManager::FilereaderClose(void* file_handle) delete static_cast(file_handle); } +void AchievementManager::LoadDefaultBadges() +{ + std::lock_guard lg{m_lock}; + + std::string directory = File::GetSysDirectory() + DIR_SEP + RESOURCES_DIR + DIR_SEP; + + if (m_default_player_badge.data.empty()) + { + if (!LoadPNGTexture(&m_default_player_badge, + fmt::format("{}{}", directory, DEFAULT_PLAYER_BADGE_FILENAME))) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Default player badge '{}' failed to load", + DEFAULT_PLAYER_BADGE_FILENAME); + } + } + m_player_badge.badge = m_default_player_badge; + + if (m_default_game_badge.data.empty()) + { + if (!LoadPNGTexture(&m_default_game_badge, + fmt::format("{}{}", directory, DEFAULT_GAME_BADGE_FILENAME))) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Default game badge '{}' failed to load", + DEFAULT_GAME_BADGE_FILENAME); + } + } + m_game_badge.badge = m_default_game_badge; + + if (m_default_unlocked_badge.data.empty()) + { + if (!LoadPNGTexture(&m_default_unlocked_badge, + fmt::format("{}{}", directory, DEFAULT_UNLOCKED_BADGE_FILENAME))) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Default unlocked achievement badge '{}' failed to load", + DEFAULT_UNLOCKED_BADGE_FILENAME); + } + } + + if (m_default_locked_badge.data.empty()) + { + if (!LoadPNGTexture(&m_default_locked_badge, + fmt::format("{}{}", directory, DEFAULT_LOCKED_BADGE_FILENAME))) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Default locked achievement badge '{}' failed to load", + DEFAULT_LOCKED_BADGE_FILENAME); + } + } +} + void AchievementManager::LoginCallback(int result, const char* error_message, rc_client_t* client, void* userdata) { @@ -669,14 +721,13 @@ void AchievementManager::DisplayWelcomeMessage() void AchievementManager::HandleAchievementTriggeredEvent(const rc_client_event_t* client_event) { - OSD::AddMessage( - fmt::format("Unlocked: {} ({})", client_event->achievement->title, - client_event->achievement->points), - OSD::Duration::VERY_LONG, - (rc_client_get_hardcore_enabled(AchievementManager::GetInstance().m_client)) ? - OSD::Color::YELLOW : - OSD::Color::CYAN, - &AchievementManager::GetInstance().m_unlocked_badges[client_event->achievement->id].badge); + const auto& instance = AchievementManager::GetInstance(); + OSD::AddMessage(fmt::format("Unlocked: {} ({})", client_event->achievement->title, + client_event->achievement->points), + OSD::Duration::VERY_LONG, + (rc_client_get_hardcore_enabled(instance.m_client)) ? OSD::Color::YELLOW : + OSD::Color::CYAN, + &instance.GetAchievementBadge(client_event->achievement->id, false).badge); } void AchievementManager::HandleLeaderboardStartedEvent(const rc_client_event_t* client_event) @@ -733,13 +784,11 @@ void AchievementManager::HandleLeaderboardTrackerHideEvent(const rc_client_event void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( const rc_client_event_t* client_event) { - auto& unlocked_badges = AchievementManager::GetInstance().m_unlocked_badges; - if (const auto unlocked_iter = unlocked_badges.find(client_event->achievement->id); - unlocked_iter != unlocked_badges.end()) - { - AchievementManager::GetInstance().m_active_challenges[client_event->achievement->badge_name] = - &unlocked_iter->second.badge; - } + auto& instance = AchievementManager::GetInstance(); + instance.m_active_challenges[client_event->achievement->badge_name] = + &AchievementManager::GetInstance() + .GetAchievementBadge(client_event->achievement->id, false) + .badge; } void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( @@ -752,11 +801,11 @@ void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( void AchievementManager::HandleAchievementProgressIndicatorShowEvent( const rc_client_event_t* client_event) { - OSD::AddMessage( - fmt::format("{} {}", client_event->achievement->title, - client_event->achievement->measured_progress), - OSD::Duration::SHORT, OSD::Color::GREEN, - &AchievementManager::GetInstance().m_unlocked_badges[client_event->achievement->id].badge); + const auto& instance = AchievementManager::GetInstance(); + OSD::AddMessage(fmt::format("{} {}", client_event->achievement->title, + client_event->achievement->measured_progress), + OSD::Duration::SHORT, OSD::Color::GREEN, + &instance.GetAchievementBadge(client_event->achievement->id, false).badge); } void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* client_event, diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index e7aaa672e3..17abceeaa8 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -53,6 +53,10 @@ public: Badge badge{}; }; + static constexpr std::string_view DEFAULT_PLAYER_BADGE_FILENAME = "achievements_player.png"; + static constexpr std::string_view DEFAULT_GAME_BADGE_FILENAME = "achievements_game.png"; + static constexpr std::string_view DEFAULT_LOCKED_BADGE_FILENAME = "achievements_locked.png"; + static constexpr std::string_view DEFAULT_UNLOCKED_BADGE_FILENAME = "achievements_unlocked.png"; static constexpr std::string_view GRAY = "transparent"; static constexpr std::string_view GOLD = "#FFD700"; static constexpr std::string_view BLUE = "#0B71C1"; @@ -137,6 +141,7 @@ private: static size_t FilereaderRead(void* file_handle, void* buffer, size_t requested_bytes); static void FilereaderClose(void* file_handle); + void LoadDefaultBadges(); static void LoginCallback(int result, const char* error_message, rc_client_t* client, void* userdata); @@ -181,6 +186,10 @@ private: bool m_is_runtime_initialized = false; UpdateCallback m_update_callback = [](const UpdatedItems&) {}; std::unique_ptr m_loading_volume; + Badge m_default_player_badge; + Badge m_default_game_badge; + Badge m_default_unlocked_badge; + Badge m_default_locked_badge; BadgeStatus m_player_badge; Hash m_game_hash{}; u32 m_game_id = 0; From 1e9e0cd2d7cf1e28fcbc038e3d26a02ece549ec0 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 13 May 2024 19:21:55 -0400 Subject: [PATCH 014/296] Remove names from badge objects The names attached to the BadgeStatus object are obsolete and unneeded and are removed from everything that uses them. All BadgeStatus references are updated to just Badge. --- Source/Core/Core/AchievementManager.cpp | 47 +++++++++--------- Source/Core/Core/AchievementManager.h | 22 +++------ .../DolphinQt/Achievements/AchievementBox.cpp | 19 ++----- .../Achievements/AchievementHeaderWidget.cpp | 49 ++++++++----------- 4 files changed, 58 insertions(+), 79 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index dec365b290..360a332eb0 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -280,7 +280,7 @@ u32 AchievementManager::GetPlayerScore() const return user->score; } -const AchievementManager::BadgeStatus& AchievementManager::GetPlayerBadge() const +const AchievementManager::Badge& AchievementManager::GetPlayerBadge() const { return m_player_badge; } @@ -300,17 +300,19 @@ rc_api_fetch_game_data_response_t* AchievementManager::GetGameData() return &m_game_data; } -const AchievementManager::BadgeStatus& AchievementManager::GetGameBadge() const +const AchievementManager::Badge& AchievementManager::GetGameBadge() const { return m_game_badge; } -const AchievementManager::BadgeStatus& AchievementManager::GetAchievementBadge(AchievementId id, - bool locked) const +const AchievementManager::Badge& AchievementManager::GetAchievementBadge(AchievementId id, + bool locked) const { auto& badge_list = locked ? m_locked_badges : m_unlocked_badges; - // Brief regression - difficult to return a default BadgeStatus, will be fixed in later commit - return badge_list.find(id)->second; + auto itr = badge_list.find(id); + return (itr != badge_list.end() && itr->second.data.size() > 0) ? + itr->second : + (locked ? m_default_locked_badge : m_default_unlocked_badge); } const AchievementManager::LeaderboardStatus* @@ -395,7 +397,9 @@ void AchievementManager::CloseGame() { m_active_challenges.clear(); m_active_leaderboards.clear(); - m_game_badge.name.clear(); + m_game_badge.width = 0; + m_game_badge.height = 0; + m_game_badge.data.clear(); m_unlocked_badges.clear(); m_locked_badges.clear(); m_leaderboard_map.clear(); @@ -417,7 +421,9 @@ void AchievementManager::Logout() { std::lock_guard lg{m_lock}; CloseGame(); - m_player_badge.name.clear(); + m_player_badge.width = 0; + m_player_badge.height = 0; + m_player_badge.data.clear(); Config::SetBaseOrCurrent(Config::RA_API_TOKEN, ""); } @@ -517,7 +523,7 @@ void AchievementManager::LoadDefaultBadges() DEFAULT_PLAYER_BADGE_FILENAME); } } - m_player_badge.badge = m_default_player_badge; + m_player_badge = m_default_player_badge; if (m_default_game_badge.data.empty()) { @@ -528,7 +534,7 @@ void AchievementManager::LoadDefaultBadges() DEFAULT_GAME_BADGE_FILENAME); } } - m_game_badge.badge = m_default_game_badge; + m_game_badge = m_default_game_badge; if (m_default_unlocked_badge.data.empty()) { @@ -688,10 +694,8 @@ void AchievementManager::DisplayWelcomeMessage() m_display_welcome_message = false; const u32 color = rc_client_get_hardcore_enabled(m_client) ? OSD::Color::YELLOW : OSD::Color::CYAN; - if (!m_game_badge.name.empty()) - { - OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, &m_game_badge.badge); - } + + OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, &m_game_badge); auto info = rc_client_get_game_info(m_client); if (!info) { @@ -727,7 +731,7 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_client_event_t OSD::Duration::VERY_LONG, (rc_client_get_hardcore_enabled(instance.m_client)) ? OSD::Color::YELLOW : OSD::Color::CYAN, - &instance.GetAchievementBadge(client_event->achievement->id, false).badge); + &instance.GetAchievementBadge(client_event->achievement->id, false)); } void AchievementManager::HandleLeaderboardStartedEvent(const rc_client_event_t* client_event) @@ -786,9 +790,7 @@ void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( { auto& instance = AchievementManager::GetInstance(); instance.m_active_challenges[client_event->achievement->badge_name] = - &AchievementManager::GetInstance() - .GetAchievementBadge(client_event->achievement->id, false) - .badge; + &AchievementManager::GetInstance().GetAchievementBadge(client_event->achievement->id, false); } void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( @@ -805,7 +807,7 @@ void AchievementManager::HandleAchievementProgressIndicatorShowEvent( OSD::AddMessage(fmt::format("{} {}", client_event->achievement->title, client_event->achievement->measured_progress), OSD::Duration::SHORT, OSD::Color::GREEN, - &instance.GetAchievementBadge(client_event->achievement->id, false).badge); + &instance.GetAchievementBadge(client_event->achievement->id, false)); } void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* client_event, @@ -822,7 +824,7 @@ void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* clien OSD::AddMessage(fmt::format("Congratulations! {} has {} {}", user_info->display_name, hardcore ? "mastered" : "completed", game_info->title), OSD::Duration::VERY_LONG, hardcore ? OSD::Color::YELLOW : OSD::Color::CYAN, - &AchievementManager::GetInstance().m_game_badge.badge); + &AchievementManager::GetInstance().m_game_badge); } void AchievementManager::HandleResetEvent(const rc_client_event_t* client_event) @@ -898,7 +900,7 @@ u32 AchievementManager::MemoryPeeker(u32 address, u8* buffer, u32 num_bytes, rc_ return num_bytes; } -void AchievementManager::FetchBadge(AchievementManager::BadgeStatus* badge, u32 badge_type, +void AchievementManager::FetchBadge(AchievementManager::Badge* badge, u32 badge_type, const AchievementManager::BadgeNameFunction function, const UpdatedItems callback_data) { @@ -954,12 +956,11 @@ void AchievementManager::FetchBadge(AchievementManager::BadgeStatus* badge, u32 return; } - if (!LoadPNGTexture(&badge->badge, *http_response)) + if (!LoadPNGTexture(badge, *http_response)) { ERROR_LOG_FMT(ACHIEVEMENTS, "Default game badge '{}' failed to load", DEFAULT_GAME_BADGE_FILENAME); } - badge->name = std::move(name_to_fetch); m_update_callback(callback_data); }); diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 17abceeaa8..3fdb5b2591 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -47,12 +47,6 @@ public: using NamedBadgeMap = std::unordered_map; static constexpr size_t MAX_DISPLAYED_LBOARDS = 4; - struct BadgeStatus - { - std::string name = ""; - Badge badge{}; - }; - static constexpr std::string_view DEFAULT_PLAYER_BADGE_FILENAME = "achievements_player.png"; static constexpr std::string_view DEFAULT_GAME_BADGE_FILENAME = "achievements_game.png"; static constexpr std::string_view DEFAULT_LOCKED_BADGE_FILENAME = "achievements_locked.png"; @@ -108,12 +102,12 @@ public: void SetSpectatorMode(); std::string_view GetPlayerDisplayName() const; u32 GetPlayerScore() const; - const BadgeStatus& GetPlayerBadge() const; + const Badge& GetPlayerBadge() const; std::string_view GetGameDisplayName() const; rc_client_t* GetClient(); rc_api_fetch_game_data_response_t* GetGameData(); - const BadgeStatus& GetGameBadge() const; - const BadgeStatus& GetAchievementBadge(AchievementId id, bool locked) const; + const Badge& GetGameBadge() const; + const Badge& GetAchievementBadge(AchievementId id, bool locked) const; const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id); RichPresence GetRichPresence() const; const NamedBadgeMap& GetChallengeIcons() const; @@ -176,7 +170,7 @@ private: static void Request(const rc_api_request_t* request, rc_client_server_callback_t callback, void* callback_data, rc_client_t* client); static u32 MemoryPeeker(u32 address, u8* buffer, u32 num_bytes, rc_client_t* client); - void FetchBadge(BadgeStatus* badge, u32 badge_type, const BadgeNameFunction function, + void FetchBadge(Badge* badge, u32 badge_type, const BadgeNameFunction function, const UpdatedItems callback_data); static void EventHandler(const rc_client_event_t* event, rc_client_t* client); @@ -190,15 +184,15 @@ private: Badge m_default_game_badge; Badge m_default_unlocked_badge; Badge m_default_locked_badge; - BadgeStatus m_player_badge; + Badge m_player_badge; Hash m_game_hash{}; u32 m_game_id = 0; rc_api_fetch_game_data_response_t m_game_data{}; bool m_is_game_loaded = false; - BadgeStatus m_game_badge; + Badge m_game_badge; bool m_display_welcome_message = false; - std::unordered_map m_unlocked_badges; - std::unordered_map m_locked_badges; + std::unordered_map m_unlocked_badges; + std::unordered_map m_locked_badges; RichPresence m_rich_presence; std::chrono::steady_clock::time_point m_last_rp_time = std::chrono::steady_clock::now(); diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 8b4bccbf31..4b54851b39 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -61,20 +61,11 @@ void AchievementBox::UpdateData() color = AchievementManager::GOLD; else if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_SOFTCORE) color = AchievementManager::BLUE; - if (badge.name != "") - { - QImage i_badge(&badge.badge.data.front(), badge.badge.width, badge.badge.height, - QImage::Format_RGBA8888); - m_badge->setPixmap( - QPixmap::fromImage(i_badge).scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - m_badge->adjustSize(); - m_badge->setStyleSheet( - QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); - } - else - { - m_badge->setText({}); - } + QImage i_badge(&badge.data.front(), badge.width, badge.height, QImage::Format_RGBA8888); + m_badge->setPixmap( + QPixmap::fromImage(i_badge).scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_badge->adjustSize(); + m_badge->setStyleSheet(QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); if (m_achievement->state == RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED) { diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index ffa0bf35e0..c1976e2752 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -68,22 +68,20 @@ void AchievementHeaderWidget::UpdateData() QString user_name = QtUtils::FromStdString(instance.GetPlayerDisplayName()); QString game_name = QtUtils::FromStdString(instance.GetGameDisplayName()); - AchievementManager::BadgeStatus player_badge = instance.GetPlayerBadge(); - AchievementManager::BadgeStatus game_badge = instance.GetGameBadge(); + const AchievementManager::Badge& player_badge = instance.GetPlayerBadge(); + const AchievementManager::Badge& game_badge = instance.GetGameBadge(); m_user_icon->setVisible(false); m_user_icon->clear(); m_user_icon->setText({}); - if (!player_badge.name.empty()) - { - QImage i_user_icon(&player_badge.badge.data.front(), player_badge.badge.width, - player_badge.badge.height, QImage::Format_RGBA8888); - m_user_icon->setPixmap(QPixmap::fromImage(i_user_icon) - .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - m_user_icon->adjustSize(); - m_user_icon->setStyleSheet(QStringLiteral("border: 4px solid transparent")); - m_user_icon->setVisible(true); - } + QImage i_user_icon(&player_badge.data.front(), player_badge.width, player_badge.height, + QImage::Format_RGBA8888); + m_user_icon->setPixmap(QPixmap::fromImage(i_user_icon) + .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_user_icon->adjustSize(); + m_user_icon->setStyleSheet(QStringLiteral("border: 4px solid transparent")); + m_user_icon->setVisible(true); + m_game_icon->setVisible(false); m_game_icon->clear(); m_game_icon->setText({}); @@ -92,24 +90,19 @@ void AchievementHeaderWidget::UpdateData() { rc_client_user_game_summary_t game_summary; rc_client_get_user_game_summary(instance.GetClient(), &game_summary); - - if (!game_badge.name.empty()) + QImage i_game_icon(&game_badge.data.front(), game_badge.width, game_badge.height, + QImage::Format_RGBA8888); + m_game_icon->setPixmap(QPixmap::fromImage(i_game_icon) + .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_game_icon->adjustSize(); + std::string_view color = AchievementManager::GRAY; + if (game_summary.num_core_achievements == game_summary.num_unlocked_achievements) { - QImage i_game_icon(&game_badge.badge.data.front(), game_badge.badge.width, - game_badge.badge.height, QImage::Format_RGBA8888); - m_game_icon->setPixmap(QPixmap::fromImage(i_game_icon) - .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - m_game_icon->adjustSize(); - std::string_view color = AchievementManager::GRAY; - if (game_summary.num_core_achievements == game_summary.num_unlocked_achievements) - { - color = - instance.IsHardcoreModeActive() ? AchievementManager::GOLD : AchievementManager::BLUE; - } - m_game_icon->setStyleSheet( - QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); - m_game_icon->setVisible(true); + color = instance.IsHardcoreModeActive() ? AchievementManager::GOLD : AchievementManager::BLUE; } + m_game_icon->setStyleSheet( + QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); + m_game_icon->setVisible(true); m_name->setText(tr("%1 is playing %2").arg(user_name).arg(game_name)); m_points->setText(tr("%1 has unlocked %2/%3 achievements worth %4/%5 points") From f6aca69ea0d7e6dfc86373581eb8fee4c53331d5 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 24 May 2024 20:51:39 +0200 Subject: [PATCH 015/296] PPCAnalyst: Remove unused member isBranchTarget Branch targets always start a new block, so this variable isn't useful. --- Source/Core/Core/PowerPC/JitCommon/JitBase.cpp | 2 -- Source/Core/Core/PowerPC/PPCAnalyst.h | 1 - 2 files changed, 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp index 5ec9af3967..372a06008c 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp @@ -272,8 +272,6 @@ bool JitBase::CanMergeNextInstructions(int count) const { return false; } - if (js.op[i].isBranchTarget) - return false; } return true; } diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.h b/Source/Core/Core/PowerPC/PPCAnalyst.h index 4e665d8d42..ed0242498b 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.h +++ b/Source/Core/Core/PowerPC/PPCAnalyst.h @@ -38,7 +38,6 @@ struct CodeOp // 16B s8 fregOut = 0; BitSet8 crIn; BitSet8 crOut; - bool isBranchTarget = false; bool branchUsesCtr = false; bool branchIsIdleLoop = false; BitSet8 wantsCR; From 46dc406325726e32eb5f0d578b07baab30b3c4e0 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 24 May 2024 21:21:46 +0200 Subject: [PATCH 016/296] Interpreter: Fix GT when setting SO of CR This is the same fixup as in Jit64::FixGTBeforeSettingCRFieldBit. --- .../Core/PowerPC/Interpreter/Interpreter_Integer.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp index 3cf0be2178..d5bd50720b 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp @@ -16,6 +16,15 @@ void Interpreter::Helper_UpdateCR0(PowerPC::PowerPCState& ppc_state, u32 value) { const s64 sign_extended = s64{s32(value)}; u64 cr_val = u64(sign_extended); + + if (value == 0) + { + // GT is considered unset if cr_val is zero or if bit 63 of cr_val is set. + // If we're about to turn cr_val from zero to non-zero by setting the SO bit, + // we need to set bit 63 so we don't accidentally change GT. + cr_val |= 1ULL << 63; + } + cr_val = (cr_val & ~(1ULL << PowerPC::CR_EMU_SO_BIT)) | (u64{ppc_state.GetXER_SO()} << PowerPC::CR_EMU_SO_BIT); From ecce8e81c8482a36db92290a546c536e8824f8a9 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 15:42:04 -0700 Subject: [PATCH 017/296] BranchWatchDialog: Case-Insensitive Sorting --- Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index f68b6d5bbf..a5b6358e04 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -216,6 +216,7 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br m_table_proxy->setSourceModel( m_table_model = new BranchWatchTableModel(m_system, m_branch_watch, ppc_symbol_db)); m_table_proxy->setSortRole(UserRole::SortRole); + m_table_proxy->setSortCaseSensitivity(Qt::CaseInsensitive); m_table_model->setFont(ui_settings.GetDebugFont()); connect(&ui_settings, &Settings::DebugFontChanged, m_table_model, From 4a2ec86a9a5bfaeefa2bb108c8d3fd7158f22d69 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 15:44:49 -0700 Subject: [PATCH 018/296] Branch Watch Tool: Add Rule Of 5 And Remove Unnecessary Include --- Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp | 6 ++++++ Source/Core/DolphinQt/Debugger/BranchWatchDialog.h | 8 ++++++-- Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h | 7 +++++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index a5b6358e04..e35259d2d2 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -57,6 +57,12 @@ public: : QSortFilterProxyModel(parent), m_branch_watch(branch_watch) { } + ~BranchWatchProxyModel() override = default; + + BranchWatchProxyModel(const BranchWatchProxyModel&) = delete; + BranchWatchProxyModel(BranchWatchProxyModel&&) = delete; + BranchWatchProxyModel& operator=(const BranchWatchProxyModel&) = delete; + BranchWatchProxyModel& operator=(BranchWatchProxyModel&&) = delete; BranchWatchTableModel* sourceModel() const { diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h index dfeff8f4b3..b45f4c8563 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -9,12 +9,11 @@ #include #include -#include "Core/Core.h" - namespace Core { class BranchWatch; class CPUThreadGuard; +enum class State; class System; } // namespace Core class PPCSymbolDB; @@ -54,6 +53,11 @@ public: QWidget* parent = nullptr); ~BranchWatchDialog() override; + BranchWatchDialog(const BranchWatchDialog&) = delete; + BranchWatchDialog(BranchWatchDialog&&) = delete; + BranchWatchDialog& operator=(const BranchWatchDialog&) = delete; + BranchWatchDialog& operator=(BranchWatchDialog&&) = delete; + protected: void hideEvent(QHideEvent* event) override; void showEvent(QShowEvent* event) override; diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h index b91dba37d2..aad2fd783a 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h @@ -75,6 +75,13 @@ public: m_ppc_symbol_db(ppc_symbol_db) { } + ~BranchWatchTableModel() override = default; + + BranchWatchTableModel(const BranchWatchTableModel&) = delete; + BranchWatchTableModel(BranchWatchTableModel&&) = delete; + BranchWatchTableModel& operator=(const BranchWatchTableModel&) = delete; + BranchWatchTableModel& operator=(BranchWatchTableModel&&) = delete; + QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; From 3b214a4978129a96b136aa23ce9ca5843fb3e3f4 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 16:44:43 -0700 Subject: [PATCH 019/296] BranchWatchDialog: Resolve Linux FIXME This stopped being an issue for me with a recent package update, so I guess Qt6 was fixed upstream? --- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 16 +++++----------- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 1 + 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index e35259d2d2..c20b2e3c2d 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -207,7 +207,6 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br { setWindowTitle(tr("Branch Watch Tool")); setWindowFlags((windowFlags() | Qt::WindowMinMaxButtonsHint) & ~Qt::WindowContextHelpButtonHint); - SetQWidgetWindowDecorations(this); setLayout([this, &ppc_symbol_db]() { auto* main_layout = new QVBoxLayout; @@ -241,6 +240,11 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br table_view->setEditTriggers(QAbstractItemView::NoEditTriggers); table_view->setCornerButtonEnabled(false); table_view->verticalHeader()->hide(); + table_view->setColumnWidth(Column::Instruction, 50); + table_view->setColumnWidth(Column::Condition, 50); + table_view->setColumnWidth(Column::OriginSymbol, 250); + table_view->setColumnWidth(Column::DestinSymbol, 250); + // The default column width (100 units) is fine for the rest. QHeaderView* const horizontal_header = table_view->horizontalHeader(); horizontal_header->restoreState( // Restore column visibility state. @@ -502,16 +506,6 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br return main_layout; }()); - // FIXME: On Linux, Qt6 has recently been resetting column widths to their defaults in many - // unexpected ways. This affects all kinds of QTables in Dolphin's GUI, so to avoid it in - // this QTableView, I have deferred this operation. Any earlier, and this would be undone. - // SetQWidgetWindowDecorations was moved to before these operations for the same reason. - m_table_view->setColumnWidth(Column::Instruction, 50); - m_table_view->setColumnWidth(Column::Condition, 50); - m_table_view->setColumnWidth(Column::OriginSymbol, 250); - m_table_view->setColumnWidth(Column::DestinSymbol, 250); - // The default column width (100 units) is fine for the rest. - const auto& settings = Settings::GetQSettings(); restoreGeometry(settings.value(QStringLiteral("branchwatchdialog/geometry")).toByteArray()); } diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 15683c973d..e5dd96014b 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -206,6 +206,7 @@ void CodeWidget::OnBranchWatchDialog() m_branch_watch_dialog = new BranchWatchDialog(m_system, m_system.GetPowerPC().GetBranchWatch(), m_ppc_symbol_db, this, this); } + SetQWidgetWindowDecorations(m_branch_watch_dialog); m_branch_watch_dialog->show(); m_branch_watch_dialog->raise(); m_branch_watch_dialog->activateWindow(); From 30eff8e37c05e44e2a5c4d2b53de3348c00df3ee Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 25 May 2024 18:13:38 +0200 Subject: [PATCH 020/296] PPCAnalyst: Fix handling of FL_READ_CR_BI BI contains both the field and the flag (5 bits total), so we need to shift away the 2 flag bits to get the 3 field bits. (Same as the CRBA/CRBB handling in the code just below the BI code.) --- Source/Core/Core/PowerPC/PPCAnalyst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index a0addb56c6..917b0b27eb 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -590,7 +590,7 @@ void PPCAnalyzer::SetInstructionStats(CodeBlock* block, CodeOp* code, } else if (opinfo->flags & FL_READ_CR_BI) { - code->crIn[code->inst.BI] = true; + code->crIn[code->inst.BI >> 2] = true; } else if (opinfo->type == OpType::CR) { From 4619db2ae9b72ec2ab4faa32f53b9c985e94ba85 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 25 May 2024 20:13:11 +0100 Subject: [PATCH 021/296] DiscIO: drop unused Volume::CheckContentIntegrity() overload The offset-based overload hasn't been in use since f754a1a548f2e599e4cc2d1d799f2d21b520076f. --- Source/Core/DiscIO/Volume.h | 5 ----- Source/Core/DiscIO/VolumeWad.cpp | 9 --------- Source/Core/DiscIO/VolumeWad.h | 2 -- 3 files changed, 16 deletions(-) diff --git a/Source/Core/DiscIO/Volume.h b/Source/Core/DiscIO/Volume.h index 3747c4c250..e97762ab96 100644 --- a/Source/Core/DiscIO/Volume.h +++ b/Source/Core/DiscIO/Volume.h @@ -91,11 +91,6 @@ public: { return false; } - virtual bool CheckContentIntegrity(const IOS::ES::Content& content, u64 content_offset, - const IOS::ES::TicketReader& ticket) const - { - return false; - } virtual IOS::ES::TicketReader GetTicketWithFixedCommonKey() const { return {}; } // Returns a non-owning pointer. Returns nullptr if the file system couldn't be read. virtual const FileSystem* GetFileSystem(const Partition& partition) const = 0; diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index 4058497546..bc75e71b88 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -170,15 +170,6 @@ bool VolumeWAD::CheckContentIntegrity(const IOS::ES::Content& content, return Common::SHA1::CalculateDigest(decrypted_data.data(), content.size) == content.sha1; } -bool VolumeWAD::CheckContentIntegrity(const IOS::ES::Content& content, u64 content_offset, - const IOS::ES::TicketReader& ticket) const -{ - std::vector encrypted_data(Common::AlignUp(content.size, 0x40)); - if (!m_reader->Read(content_offset, encrypted_data.size(), encrypted_data.data())) - return false; - return CheckContentIntegrity(content, encrypted_data, ticket); -} - IOS::ES::TicketReader VolumeWAD::GetTicketWithFixedCommonKey() const { if (!m_ticket.IsValid() || !m_tmd.IsValid()) diff --git a/Source/Core/DiscIO/VolumeWad.h b/Source/Core/DiscIO/VolumeWad.h index 3b723b7ce9..91e8c5aba0 100644 --- a/Source/Core/DiscIO/VolumeWad.h +++ b/Source/Core/DiscIO/VolumeWad.h @@ -40,8 +40,6 @@ public: std::vector GetContentOffsets() const override; bool CheckContentIntegrity(const IOS::ES::Content& content, const std::vector& encrypted_data, const IOS::ES::TicketReader& ticket) const override; - bool CheckContentIntegrity(const IOS::ES::Content& content, u64 content_offset, - const IOS::ES::TicketReader& ticket) const override; IOS::ES::TicketReader GetTicketWithFixedCommonKey() const override; std::string GetGameID(const Partition& partition = PARTITION_NONE) const override; std::string GetGameTDBID(const Partition& partition = PARTITION_NONE) const override; From d96840f8086280eaac1e959d79ed3d8432127d90 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Tue, 14 May 2024 13:02:11 -0700 Subject: [PATCH 022/296] BreakpointWidget: Move delete to the context menu. Selecting rows will be removed, so select -> delete is hard to maintain. --- .../DolphinQt/Debugger/BreakpointWidget.cpp | 42 ++++--------------- .../DolphinQt/Debugger/BreakpointWidget.h | 2 - 2 files changed, 7 insertions(+), 37 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 8fba6d4066..955c134724 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -109,7 +109,6 @@ void BreakpointWidget::CreateWidgets() layout->setSpacing(0); m_new = m_toolbar->addAction(tr("New"), this, &BreakpointWidget::OnNewBreakpoint); - m_delete = m_toolbar->addAction(tr("Delete"), this, &BreakpointWidget::OnDelete); m_clear = m_toolbar->addAction(tr("Clear"), this, &BreakpointWidget::OnClear); m_load = m_toolbar->addAction(tr("Load"), this, &BreakpointWidget::OnLoad); @@ -128,7 +127,6 @@ void BreakpointWidget::CreateWidgets() void BreakpointWidget::UpdateIcons() { m_new->setIcon(Resources::GetThemeIcon("debugger_add_breakpoint")); - m_delete->setIcon(Resources::GetThemeIcon("debugger_delete")); m_clear->setIcon(Resources::GetThemeIcon("debugger_clear")); m_load->setIcon(Resources::GetThemeIcon("debugger_load")); m_save->setIcon(Resources::GetThemeIcon("debugger_save")); @@ -268,30 +266,6 @@ void BreakpointWidget::Update() } } -void BreakpointWidget::OnDelete() -{ - const auto selected_items = m_table->selectedItems(); - if (selected_items.empty()) - return; - - const auto item = selected_items.constFirst(); - const auto address = item->data(ADDRESS_ROLE).toUInt(); - const bool is_memcheck = item->data(IS_MEMCHECK_ROLE).toBool(); - - if (is_memcheck) - { - const QSignalBlocker blocker(Settings::Instance()); - m_system.GetPowerPC().GetMemChecks().Remove(address); - } - else - { - m_system.GetPowerPC().GetBreakPoints().Remove(address); - } - - emit BreakpointsChanged(); - Update(); -} - void BreakpointWidget::OnClear() { m_system.GetPowerPC().GetDebugInterface().ClearAllBreakpoints(); @@ -402,9 +376,9 @@ void BreakpointWidget::OnContextMenu() return; menu->addAction(tr("Show in Code"), [this, bp_address] { emit ShowCode(bp_address); }); - menu->addAction(bp_iter->is_enabled ? tr("Disable") : tr("Enable"), [this, &bp_address]() { - m_system.GetPowerPC().GetBreakPoints().ToggleBreakPoint(bp_address); - + menu->addAction(tr("Edit..."), [this, bp_address] { OnEditBreakpoint(bp_address, true); }); + menu->addAction(tr("Delete"), [this, &bp_address]() { + m_system.GetPowerPC().GetBreakPoints().Remove(bp_address); emit BreakpointsChanged(); Update(); }); @@ -419,16 +393,14 @@ void BreakpointWidget::OnContextMenu() return; menu->addAction(tr("Show in Memory"), [this, bp_address] { emit ShowMemory(bp_address); }); - menu->addAction(mb_iter->is_enabled ? tr("Disable") : tr("Enable"), [this, &bp_address]() { - m_system.GetPowerPC().GetMemChecks().ToggleBreakPoint(bp_address); - + menu->addAction(tr("Edit..."), [this, bp_address] { OnEditBreakpoint(bp_address, false); }); + menu->addAction(tr("Delete"), [this, &bp_address]() { + const QSignalBlocker blocker(Settings::Instance()); + m_system.GetPowerPC().GetMemChecks().Remove(bp_address); emit BreakpointsChanged(); Update(); }); } - menu->addAction(tr("Edit..."), [this, bp_address, is_memory_breakpoint] { - OnEditBreakpoint(bp_address, !is_memory_breakpoint); - }); menu->exec(QCursor::pos()); } diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h index 587366c1d0..2ef8359289 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h @@ -45,7 +45,6 @@ protected: private: void CreateWidgets(); - void OnDelete(); void OnClear(); void OnNewBreakpoint(); void OnEditBreakpoint(u32 address, bool is_instruction_bp); @@ -60,7 +59,6 @@ private: QToolBar* m_toolbar; QTableWidget* m_table; QAction* m_new; - QAction* m_delete; QAction* m_clear; QAction* m_load; QAction* m_save; From b7b0842d2faf9396e7f06bd6ad714289bff4876e Mon Sep 17 00:00:00 2001 From: TryTwo Date: Tue, 14 May 2024 13:07:17 -0700 Subject: [PATCH 023/296] BreakpointWidget: Fix Qt centering issues with a Custom Delegate --- .../DolphinQt/Debugger/BreakpointWidget.cpp | 38 +++++++++++++++++++ .../DolphinQt/Debugger/BreakpointWidget.h | 2 + 2 files changed, 40 insertions(+) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 955c134724..e0d34d74f8 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -3,9 +3,13 @@ #include "DolphinQt/Debugger/BreakpointWidget.h" +#include #include #include +#include #include +#include +#include #include #include #include @@ -36,6 +40,39 @@ enum CustomRole }; } +// Fix icons not centering properly in a QTableWidget. +class CustomDelegate : public QStyledItemDelegate +{ +public: + CustomDelegate(BreakpointWidget* parent) : QStyledItemDelegate(parent) {} + +private: + void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const + { + Q_ASSERT(index.isValid()); + + // Fetch normal drawing logic. + QStyleOptionViewItem opt = option; + initStyleOption(&opt, index); + + // Disable drawing icon the normal way. + opt.icon = QIcon(); + opt.decorationSize = QSize(0, 0); + + // Default draw command for paint. + QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, 0); + + // Draw pixmap at the center of the tablewidget cell + QPixmap pix = qvariant_cast(index.data(Qt::DecorationRole)); + if (!pix.isNull()) + { + const QRect r = option.rect; + const QPoint p = QPoint((r.width() - pix.width()) / 2, (r.height() - pix.height()) / 2); + painter->drawPixmap(r.topLeft() + p, pix); + } + } +}; + BreakpointWidget::BreakpointWidget(QWidget* parent) : QDockWidget(parent), m_system(Core::System::GetInstance()) { @@ -88,6 +125,7 @@ void BreakpointWidget::CreateWidgets() m_toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); m_table = new QTableWidget; + m_table->setItemDelegate(new CustomDelegate(this)); m_table->setTabKeyNavigation(false); m_table->setContentsMargins(0, 0, 0, 0); m_table->setColumnCount(6); diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h index 2ef8359289..b29bc8eb16 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h @@ -17,6 +17,8 @@ namespace Core class System; } +class CustomDelegate; + class BreakpointWidget : public QDockWidget { Q_OBJECT From 5a6fbc4c5777866186b98dcafb0dfd4df56536c3 Mon Sep 17 00:00:00 2001 From: TacoTheDank Date: Sat, 25 May 2024 21:56:19 -0400 Subject: [PATCH 024/296] Android: Clean up ProGuard --- Source/Android/app/proguard-rules.pro | 40 --------------------------- 1 file changed, 40 deletions(-) diff --git a/Source/Android/app/proguard-rules.pro b/Source/Android/app/proguard-rules.pro index 769f7016fb..8c7ecd1d08 100644 --- a/Source/Android/app/proguard-rules.pro +++ b/Source/Android/app/proguard-rules.pro @@ -2,46 +2,6 @@ # than the space savings obfuscation could give us -dontobfuscate -# -# Kotlin Serialization -# - -# Keep `Companion` object fields of serializable classes. -# This avoids serializer lookup through `getDeclaredClasses` as done for named companion objects. --if @kotlinx.serialization.Serializable class ** --keepclassmembers class <1> { - static <1>$Companion Companion; -} - -# Keep `serializer()` on companion objects (both default and named) of serializable classes. --if @kotlinx.serialization.Serializable class ** { - static **$* *; -} --keepclassmembers class <2>$<3> { - kotlinx.serialization.KSerializer serializer(...); -} - -# Keep `INSTANCE.serializer()` of serializable objects. --if @kotlinx.serialization.Serializable class ** { - public static ** INSTANCE; -} --keepclassmembers class <1> { - public static <1> INSTANCE; - kotlinx.serialization.KSerializer serializer(...); -} - -# @Serializable and @Polymorphic are used at runtime for polymorphic serialization. --keepattributes RuntimeVisibleAnnotations,AnnotationDefault - -# Don't print notes about potential mistakes or omissions in the configuration for kotlinx-serialization classes -# See also https://github.com/Kotlin/kotlinx.serialization/issues/1900 --dontnote kotlinx.serialization.** - -# Serialization core uses `java.lang.ClassValue` for caching inside these specified classes. -# If there is no `java.lang.ClassValue` (for example, in Android), then R8/ProGuard will print a warning. -# However, since in this case they will not be used, we can disable these warnings --dontwarn kotlinx.serialization.internal.ClassValueReferences - # Required for R8 full mode -dontwarn org.bouncycastle.jsse.BCSSLParameters -dontwarn org.bouncycastle.jsse.BCSSLSocket From 51f4dfabc21ba2f6070f9012acf34e3f42a76f84 Mon Sep 17 00:00:00 2001 From: TacoTheDank Date: Sat, 25 May 2024 22:13:25 -0400 Subject: [PATCH 025/296] Android: Fix Gradle deprecation --- Source/Android/app/build.gradle.kts | 5 ++--- Source/Android/gradle.properties | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index 7322b4b5b5..a191d9daa7 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -12,6 +12,7 @@ android { buildFeatures { viewBinding = true + buildConfig = true } compileOptions { @@ -116,12 +117,11 @@ android { } dependencies { - "baselineProfile"(project(":benchmark")) + baselineProfile(project(":benchmark")) coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4") implementation("androidx.core:core-ktx:1.13.0") implementation("androidx.appcompat:appcompat:1.6.1") - implementation("androidx.exifinterface:exifinterface:1.3.7") implementation("androidx.cardview:cardview:1.0.0") implementation("androidx.recyclerview:recyclerview:1.3.2") implementation("androidx.constraintlayout:constraintlayout:2.1.4") @@ -135,7 +135,6 @@ dependencies { // Kotlin extensions for lifecycle components implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0") - implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.7.0") // Android TV UI libraries. implementation("androidx.leanback:leanback:1.0.0") diff --git a/Source/Android/gradle.properties b/Source/Android/gradle.properties index ac3bc4bbd0..0f8bfbb671 100644 --- a/Source/Android/gradle.properties +++ b/Source/Android/gradle.properties @@ -14,6 +14,5 @@ android.enableJetifier=true android.useAndroidX=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official -android.defaults.buildfeatures.buildconfig=true android.nonTransitiveRClass=false android.nonFinalResIds=false From 921d711113ec6a4150dac15f77ac5e319d734194 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 26 May 2024 08:32:25 +0200 Subject: [PATCH 026/296] Jit: Clarify FixGTBeforeSettingCRFieldBit comment --- Source/Core/Core/PowerPC/Jit64/Jit_SystemRegisters.cpp | 7 ++++--- .../Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_SystemRegisters.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_SystemRegisters.cpp index 31794b9ba9..6331358359 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_SystemRegisters.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_SystemRegisters.cpp @@ -152,9 +152,10 @@ void Jit64::SetCRFieldBit(int field, int bit) void Jit64::FixGTBeforeSettingCRFieldBit(Gen::X64Reg reg) { - // Gross but necessary; if the input is totally zero and we set SO or LT, - // or even just add the (1<<32), GT will suddenly end up set without us - // intending to. This can break actual games, so fix it up. + // GT is considered unset if the internal representation is <= 0, or in other words, + // if the internal representation either has bit 63 set or has all bits set to zero. + // If all bits are zero and we set some bit that's unrelated to GT, we need to set bit 63 so GT + // doesn't accidentally become considered set. Gross but necessary; this can break actual games. TEST(64, R(reg), R(reg)); FixupBranch dont_clear_gt = J_CC(CC_NZ); BTS(64, R(reg), Imm8(63)); diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp index 58bb7c6c24..87f652d6d4 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_SystemRegisters.cpp @@ -44,9 +44,10 @@ FixupBranch JitArm64::JumpIfCRFieldBit(int field, int bit, bool jump_if_set) void JitArm64::FixGTBeforeSettingCRFieldBit(Arm64Gen::ARM64Reg reg) { - // Gross but necessary; if the input is totally zero and we set SO or LT, - // or even just add the (1<<32), GT will suddenly end up set without us - // intending to. This can break actual games, so fix it up. + // GT is considered unset if the internal representation is <= 0, or in other words, + // if the internal representation either has bit 63 set or has all bits set to zero. + // If all bits are zero and we set some bit that's unrelated to GT, we need to set bit 63 so GT + // doesn't accidentally become considered set. Gross but necessary; this can break actual games. ARM64Reg WA = gpr.GetReg(); ARM64Reg XA = EncodeRegTo64(WA); ORR(XA, reg, LogicalImm(1ULL << 63, GPRSize::B64)); From e88e641bc0a90cc28c3981b3444bfdd0af1358a9 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 26 May 2024 09:04:25 +0200 Subject: [PATCH 027/296] Jit64: Clean up the test_bit variable Using shifts and bit tests makes the code unnecessarily annoying to reason about. I'm replacing it with subtracting from 3 to translate the bit order from the PowerPC format to the usual format. --- .../Core/Core/PowerPC/Jit64/Jit_Integer.cpp | 43 +++++++++++-------- 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index 370ab5c671..65d2a4296b 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -16,6 +16,7 @@ #include "Common/x64Emitter.h" #include "Core/CoreTiming.h" +#include "Core/PowerPC/ConditionRegister.h" #include "Core/PowerPC/Interpreter/ExceptionUtils.h" #include "Core/PowerPC/Interpreter/Interpreter.h" #include "Core/PowerPC/Jit64/RegCache/JitRegCache.h" @@ -453,32 +454,31 @@ void Jit64::DoMergedBranchCondition() js.downcountAmount++; js.skipInstructions = 1; const UGeckoInstruction& next = js.op[1].inst; - int test_bit = 8 >> (next.BI & 3); + int test_bit = 3 - (next.BI & 3); bool condition = !!(next.BO & BO_BRANCH_IF_TRUE); const u32 nextPC = js.op[1].address; ASSERT(gpr.IsAllUnlocked()); FixupBranch pDontBranch; - if (test_bit & 8) + switch (test_bit) { + case PowerPC::CR_LT_BIT: // Test < 0, so jump over if >= 0. pDontBranch = J_CC(condition ? CC_GE : CC_L, Jump::Near); - } - else if (test_bit & 4) - { + break; + case PowerPC::CR_GT_BIT: // Test > 0, so jump over if <= 0. pDontBranch = J_CC(condition ? CC_LE : CC_G, Jump::Near); - } - else if (test_bit & 2) - { + break; + case PowerPC::CR_EQ_BIT: // Test = 0, so jump over if != 0. pDontBranch = J_CC(condition ? CC_NE : CC_E, Jump::Near); - } - else - { + break; + case PowerPC::CR_SO_BIT: // SO bit, do not branch (we don't emulate SO for cmp). pDontBranch = J(Jump::Near); + break; } { @@ -516,21 +516,28 @@ void Jit64::DoMergedBranchImmediate(s64 val) js.downcountAmount++; js.skipInstructions = 1; const UGeckoInstruction& next = js.op[1].inst; - int test_bit = 8 >> (next.BI & 3); + int test_bit = 3 - (next.BI & 3); bool condition = !!(next.BO & BO_BRANCH_IF_TRUE); const u32 nextPC = js.op[1].address; ASSERT(gpr.IsAllUnlocked()); - bool branch; - if (test_bit & 8) + bool branch = false; + switch (test_bit) + { + case PowerPC::CR_LT_BIT: branch = condition ? val < 0 : val >= 0; - else if (test_bit & 4) + break; + case PowerPC::CR_GT_BIT: branch = condition ? val > 0 : val <= 0; - else if (test_bit & 2) + break; + case PowerPC::CR_EQ_BIT: branch = condition ? val == 0 : val != 0; - else // SO bit, do not branch (we don't emulate SO for cmp). - branch = false; + break; + case PowerPC::CR_SO_BIT: + // SO bit, do not branch (we don't emulate SO for cmp). + break; + } if (branch) { From c0a1f5e123b8a85122a067dbf87980359d8b0c85 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 26 May 2024 11:14:18 +0200 Subject: [PATCH 028/296] PPCAnalyst: Refactor mtspr handling code Less magic numbers this way. No functional change. --- Source/Core/Core/PowerPC/PPCAnalyst.cpp | 44 ++++++++++++------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index 917b0b27eb..003dcc7b3f 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -202,21 +202,27 @@ static void AnalyzeFunction2(PPCSymbolDB* func_db, Common::Symbol* func) func->flags = flags; } +static bool IsMfspr(UGeckoInstruction inst) +{ + return inst.OPCD == 31 && inst.SUBOP10 == 339; +} + static bool IsMtspr(UGeckoInstruction inst) { return inst.OPCD == 31 && inst.SUBOP10 == 467; } -static bool IsSprInstructionUsingMmcr(UGeckoInstruction inst) +static u32 GetSPRIndex(UGeckoInstruction inst) { - const u32 index = (inst.SPRU << 5) | (inst.SPRL & 0x1F); - return index == SPR_MMCR0 || index == SPR_MMCR1; + DEBUG_ASSERT(IsMfspr(inst) || IsMtspr(inst)); + return (inst.SPRU << 5) | (inst.SPRL & 0x1F); } static bool InstructionCanEndBlock(const CodeOp& op) { return (op.opinfo->flags & FL_ENDBLOCK) && - (!IsMtspr(op.inst) || IsSprInstructionUsingMmcr(op.inst)); + (!IsMtspr(op.inst) || GetSPRIndex(op.inst) == SPR_MMCR0 || + GetSPRIndex(op.inst) == SPR_MMCR1); } bool PPCAnalyzer::CanSwapAdjacentOps(const CodeOp& a, const CodeOp& b) const @@ -637,10 +643,10 @@ void PPCAnalyzer::SetInstructionStats(CodeBlock* block, CodeOp* code, // mfspr/mtspr can affect/use XER, so be super careful here // we need to note specifically that mfspr needs CA in XER, not in the x86 carry flag - if (code->inst.OPCD == 31 && code->inst.SUBOP10 == 339) // mfspr - code->wantsCA = ((code->inst.SPRU << 5) | (code->inst.SPRL & 0x1F)) == SPR_XER; - if (code->inst.OPCD == 31 && code->inst.SUBOP10 == 467) // mtspr - code->outputCA = ((code->inst.SPRU << 5) | (code->inst.SPRL & 0x1F)) == SPR_XER; + if (IsMfspr(code->inst)) + code->wantsCA = GetSPRIndex(code->inst) == SPR_XER; + if (IsMtspr(code->inst)) + code->outputCA = GetSPRIndex(code->inst) == SPR_XER; code->regsIn = BitSet32(0); code->regsOut = BitSet32(0); @@ -892,7 +898,7 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, // Through it would be easy to track the upper level of call/return, // we can't guarantee the LR value. The PPC ABI forces all functions to push // the LR value on the stack as there are no spare registers. So we'd need - // to check all store instruction to not alias with the stack. + // to check all store instructions to not alias with the stack. follow = true; found_call = false; code[i].skip = true; @@ -901,16 +907,10 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, code[caller].skipLRStack = true; } } - else if (inst.OPCD == 31 && inst.SUBOP10 == 467) + else if (IsMtspr(inst) && GetSPRIndex(inst) == SPR_LR) { - // mtspr, skip CALL/RET merging as LR is overwritten. - const u32 index = (inst.SPRU << 5) | (inst.SPRL & 0x1F); - if (index == SPR_LR) - { - // We give up to follow the return address - // because we have to check the register usage. - found_call = false; - } + // LR has been overwritten, so we give up on following the return address. + found_call = false; } } @@ -962,8 +962,8 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, } if (conditional_continue) { - // If we skip any conditional branch, we can't garantee to get the matching CALL/RET pair. - // So we stop inling the RET here and let the BLR optitmization handle this case. + // If we skip any conditional branch, we can't guarantee to get the matching CALL/RET pair. + // So we stop inlining the RET here and let the BLR optimization handle this case. found_call = false; } } @@ -1142,9 +1142,9 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, gqrUsed[gqr] = true; } - if (op.inst.OPCD == 31 && op.inst.SUBOP10 == 467) // mtspr + if (IsMtspr(op.inst)) { - const int gqr = ((op.inst.SPRU << 5) | op.inst.SPRL) - SPR_GQR0; + const int gqr = GetSPRIndex(op.inst) - SPR_GQR0; if (gqr >= 0 && gqr <= 7) gqrModified[gqr] = true; } From 8e33a5778e26e99d30b7f5223937527a67066636 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 27 May 2024 17:52:13 -0400 Subject: [PATCH 029/296] Properly reset Discord presence after game close Also fixed an Achievement log that was reporting even when achievements were disabled. --- Source/Core/Core/AchievementManager.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 360a332eb0..b5d58f9c4f 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -403,17 +403,20 @@ void AchievementManager::CloseGame() m_unlocked_badges.clear(); m_locked_badges.clear(); m_leaderboard_map.clear(); + m_rich_presence.fill('\0'); rc_api_destroy_fetch_game_data_response(&m_game_data); m_game_data = {}; m_queue.Cancel(); m_image_queue.Cancel(); rc_client_unload_game(m_client); m_system = nullptr; + if (Config::Get(Config::RA_DISCORD_PRESENCE_ENABLED)) + Discord::UpdateDiscordPresence(); + INFO_LOG_FMT(ACHIEVEMENTS, "Game closed."); } } m_update_callback(UpdatedItems{.all = true}); - INFO_LOG_FMT(ACHIEVEMENTS, "Game closed."); } void AchievementManager::Logout() From 5255fe5f74268f0de798731bb0cace1b64393abc Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Tue, 28 May 2024 04:15:00 +0100 Subject: [PATCH 030/296] DolphinTool: support WAD verification --- Source/Core/DolphinTool/VerifyCommand.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinTool/VerifyCommand.cpp b/Source/Core/DolphinTool/VerifyCommand.cpp index b06f51cbac..13a041274d 100644 --- a/Source/Core/DolphinTool/VerifyCommand.cpp +++ b/Source/Core/DolphinTool/VerifyCommand.cpp @@ -12,7 +12,7 @@ #include #include "Common/StringUtil.h" -#include "DiscIO/VolumeDisc.h" +#include "DiscIO/Volume.h" #include "DiscIO/VolumeVerifier.h" #include "UICommon/UICommon.h" @@ -89,7 +89,7 @@ int VerifyCommand(const std::vector& args) parser.add_option("-i", "--input") .type("string") .action("store") - .help("Path to disc image FILE.") + .help("Path to input file.") .metavar("FILE"); parser.add_option("-a", "--algorithm") @@ -139,10 +139,10 @@ int VerifyCommand(const std::vector& args) } // Open the volume - const std::unique_ptr volume = DiscIO::CreateDisc(input_file_path); + const std::unique_ptr volume = DiscIO::CreateVolume(input_file_path); if (!volume) { - fmt::print(std::cerr, "Error: Unable to open disc image\n"); + fmt::print(std::cerr, "Error: Unable to open input file\n"); return EXIT_FAILURE; } From ae0914174fc9a91af108428107a961cd4ee0a870 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 4 Nov 2023 15:00:58 -0700 Subject: [PATCH 031/296] InterfacePane: Add BalloonTip to title database checkbox --- .../Core/DolphinQt/Settings/InterfacePane.cpp | 22 +++++++++++++------ .../Core/DolphinQt/Settings/InterfacePane.h | 5 +++-- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 3832113e02..50f1bb80bd 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -23,6 +23,7 @@ #include "Core/Config/MainSettings.h" #include "Core/Config/UISettings.h" +#include "DolphinQt/Config/ConfigControls/ConfigBool.h" #include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/SignalBlocking.h" @@ -97,6 +98,7 @@ void InterfacePane::CreateLayout() // Create layout here CreateUI(); CreateInGame(); + AddDescriptions(); m_main_layout->addStretch(1); setLayout(m_main_layout); @@ -153,7 +155,8 @@ void InterfacePane::CreateUI() } // Checkboxes - m_checkbox_use_builtin_title_database = new QCheckBox(tr("Use Built-In Database of Game Names")); + m_checkbox_use_builtin_title_database = new ConfigBool(tr("Use Built-In Database of Game Names"), + Config::MAIN_USE_BUILT_IN_TITLE_DATABASE); m_checkbox_use_covers = new QCheckBox(tr("Download Game Covers from GameTDB.com for Use in Grid Mode")); m_checkbox_show_debugging_ui = new ToolTipCheckBox(tr("Enable Debugging UI")); @@ -220,8 +223,8 @@ void InterfacePane::CreateInGame() void InterfacePane::ConnectLayout() { - connect(m_checkbox_use_builtin_title_database, &QCheckBox::toggled, this, - &InterfacePane::OnSaveConfig); + connect(m_checkbox_use_builtin_title_database, &QCheckBox::toggled, &Settings::Instance(), + &Settings::GameListRefreshRequested); connect(m_checkbox_use_covers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); @@ -250,8 +253,6 @@ void InterfacePane::ConnectLayout() void InterfacePane::LoadConfig() { - SignalBlocking(m_checkbox_use_builtin_title_database) - ->setChecked(Config::Get(Config::MAIN_USE_BUILT_IN_TITLE_DATABASE)); SignalBlocking(m_checkbox_show_debugging_ui) ->setChecked(Settings::Instance().IsDebugModeEnabled()); @@ -312,8 +313,6 @@ void InterfacePane::LoadConfig() void InterfacePane::OnSaveConfig() { - Config::SetBase(Config::MAIN_USE_BUILT_IN_TITLE_DATABASE, - m_checkbox_use_builtin_title_database->isChecked()); Settings::Instance().SetDebugModeEnabled(m_checkbox_show_debugging_ui->isChecked()); const auto selected_style = m_combobox_userstyle->currentData(); bool is_builtin_type = false; @@ -370,3 +369,12 @@ void InterfacePane::OnCursorVisibleAlways() { Settings::Instance().SetCursorVisibility(Config::ShowCursor::Constantly); } + +void InterfacePane::AddDescriptions() +{ + static constexpr char TR_TITLE_DATABASE_DESCRIPTION[] = QT_TR_NOOP( + "Uses Dolphin's database of properly formatted names in the Game List Title column." + "

If unsure, leave this checked."); + + m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); +} diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 22c1a2b4f3..ece9406bd0 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -5,6 +5,7 @@ #include +class ConfigBool; class QCheckBox; class QComboBox; class QLabel; @@ -22,6 +23,7 @@ private: void CreateLayout(); void CreateUI(); void CreateInGame(); + void AddDescriptions(); void ConnectLayout(); void LoadConfig(); void OnSaveConfig(); @@ -36,8 +38,7 @@ private: QComboBox* m_combobox_userstyle; QLabel* m_label_userstyle; QCheckBox* m_checkbox_top_window; - QCheckBox* m_checkbox_use_builtin_title_database; - QCheckBox* m_checkbox_use_userstyle; + ConfigBool* m_checkbox_use_builtin_title_database; ToolTipCheckBox* m_checkbox_show_debugging_ui; QCheckBox* m_checkbox_focused_hotkeys; QCheckBox* m_checkbox_use_covers; From 55aaa323ec6c42b065009eb5e272946372177070 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 4 Nov 2023 15:33:19 -0700 Subject: [PATCH 032/296] InterfacePane: Add BalloonTip to theme combobox --- .../Config/ConfigControls/ConfigChoice.cpp | 36 +++++++++++++++++++ .../Config/ConfigControls/ConfigChoice.h | 18 ++++++++++ Source/Core/DolphinQt/Settings.cpp | 3 +- Source/Core/DolphinQt/Settings.h | 2 +- .../Core/DolphinQt/Settings/InterfacePane.cpp | 34 +++++++++--------- .../Core/DolphinQt/Settings/InterfacePane.h | 3 +- 6 files changed, 76 insertions(+), 20 deletions(-) diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp index 205fd25898..060678f161 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp @@ -30,3 +30,39 @@ void ConfigChoice::Update(int choice) { Config::SetBaseOrCurrent(m_setting, choice); } + +ConfigStringChoice::ConfigStringChoice(const std::vector& options, + const Config::Info& setting) + : m_setting(setting) +{ + for (const auto& op : options) + addItem(QString::fromStdString(op)); + + Connect(); + Load(); +} + +void ConfigStringChoice::Connect() +{ + const auto on_config_changed = [this]() { + QFont bf = font(); + bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base); + setFont(bf); + + Load(); + }; + + connect(&Settings::Instance(), &Settings::ConfigChanged, this, on_config_changed); + connect(this, &QComboBox::currentIndexChanged, this, &ConfigStringChoice::Update); +} + +void ConfigStringChoice::Update(int index) +{ + Config::SetBaseOrCurrent(m_setting, itemText(index).toStdString()); +} + +void ConfigStringChoice::Load() +{ + const QSignalBlocker blocker(this); + setCurrentIndex(findText(QString::fromStdString(Config::Get(m_setting)))); +} diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h index 04d619ac4e..548ff515c9 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h @@ -3,6 +3,9 @@ #pragma once +#include +#include + #include "DolphinQt/Config/ToolTipControls/ToolTipComboBox.h" #include "Common/Config/Config.h" @@ -18,3 +21,18 @@ private: Config::Info m_setting; }; + +class ConfigStringChoice : public ToolTipComboBox +{ + Q_OBJECT +public: + ConfigStringChoice(const std::vector& options, + const Config::Info& setting); + +private: + void Connect(); + void Update(int index); + void Load(); + + Config::Info m_setting; +}; diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index fca24370b7..2afb243855 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -118,9 +118,8 @@ QSettings& Settings::GetQSettings() return settings; } -void Settings::SetThemeName(const QString& theme_name) +void Settings::TriggerThemeChanged() { - Config::SetBaseOrCurrent(Config::MAIN_THEME_NAME, theme_name.toStdString()); emit ThemeChanged(); } diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index 27325b141b..0f9519163a 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -51,7 +51,7 @@ public: static QSettings& GetQSettings(); // UI - void SetThemeName(const QString& theme_name); + void TriggerThemeChanged(); void InitDefaultPalette(); void UpdateSystemDark(); void SetSystemDark(bool dark); diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 50f1bb80bd..14b61ad56a 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -24,6 +24,7 @@ #include "Core/Config/UISettings.h" #include "DolphinQt/Config/ConfigControls/ConfigBool.h" +#include "DolphinQt/Config/ConfigControls/ConfigChoice.h" #include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/SignalBlocking.h" @@ -120,18 +121,17 @@ void InterfacePane::CreateUI() m_combobox_language = MakeLanguageComboBox(); combobox_layout->addRow(tr("&Language:"), m_combobox_language); - // Theme Combobox - m_combobox_theme = new QComboBox; - combobox_layout->addRow(tr("&Theme:"), m_combobox_theme); - // List avalable themes - auto theme_search_results = + auto theme_paths = Common::DoFileSearch({File::GetUserPath(D_THEMES_IDX), File::GetSysDirectory() + THEMES_DIR}); - for (const std::string& path : theme_search_results) - { - const QString qt_name = QString::fromStdString(PathToFileName(path)); - m_combobox_theme->addItem(qt_name); - } + std::vector theme_names; + theme_names.reserve(theme_paths.size()); + std::transform(theme_paths.cbegin(), theme_paths.cend(), std::back_inserter(theme_names), + PathToFileName); + + // Theme Combobox + m_combobox_theme = new ConfigStringChoice(theme_names, Config::MAIN_THEME_NAME); + combobox_layout->addRow(tr("&Theme:"), m_combobox_theme); // User Style Combobox m_combobox_userstyle = new QComboBox; @@ -229,9 +229,8 @@ void InterfacePane::ConnectLayout() connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_focused_hotkeys, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); - connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, [this](int index) { - Settings::Instance().SetThemeName(m_combobox_theme->itemText(index)); - }); + connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, + [this](int index) { Settings::Instance().TriggerThemeChanged(); }); connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this, &InterfacePane::OnSaveConfig); connect(m_combobox_language, &QComboBox::currentIndexChanged, this, &InterfacePane::OnSaveConfig); @@ -273,9 +272,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_language) ->setCurrentIndex(m_combobox_language->findData( QString::fromStdString(Config::Get(Config::MAIN_INTERFACE_LANGUAGE)))); - SignalBlocking(m_combobox_theme) - ->setCurrentIndex( - m_combobox_theme->findText(QString::fromStdString(Config::Get(Config::MAIN_THEME_NAME)))); const Settings::StyleType style_type = Settings::Instance().GetStyleType(); const QString userstyle = Settings::Instance().GetUserStyleName(); @@ -375,6 +371,12 @@ void InterfacePane::AddDescriptions() static constexpr char TR_TITLE_DATABASE_DESCRIPTION[] = QT_TR_NOOP( "Uses Dolphin's database of properly formatted names in the Game List Title column." "

If unsure, leave this checked."); + static constexpr char TR_THEME_DESCRIPTION[] = + QT_TR_NOOP("Changes the appearance and color of Dolphin's buttons." + "

If unsure, select Clean."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); + + m_combobox_theme->SetTitle(tr("Theme")); + m_combobox_theme->SetDescription(tr(TR_THEME_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index ece9406bd0..8363c56800 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -6,6 +6,7 @@ #include class ConfigBool; +class ConfigStringChoice; class QCheckBox; class QComboBox; class QLabel; @@ -34,7 +35,7 @@ private: QVBoxLayout* m_main_layout; QComboBox* m_combobox_language; - QComboBox* m_combobox_theme; + ConfigStringChoice* m_combobox_theme; QComboBox* m_combobox_userstyle; QLabel* m_label_userstyle; QCheckBox* m_checkbox_top_window; From 266bbeefc885d63dc5502a0790e95e1e742a1f1a Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 5 Nov 2023 11:45:56 -0800 Subject: [PATCH 033/296] InterfacePane: Add BalloonTip to top window checkbox --- Source/Core/DolphinQt/Settings.cpp | 1 - Source/Core/DolphinQt/Settings/InterfacePane.cpp | 13 ++++++++----- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 2afb243855..19af18d9d9 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -445,7 +445,6 @@ void Settings::SetKeepWindowOnTop(bool top) if (IsKeepWindowOnTopEnabled() == top) return; - Config::SetBaseOrCurrent(Config::MAIN_KEEP_WINDOW_ON_TOP, top); emit KeepWindowOnTopChanged(top); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 14b61ad56a..9f13dde8b6 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -177,7 +177,7 @@ void InterfacePane::CreateInGame() groupbox->setLayout(groupbox_layout); m_main_layout->addWidget(groupbox); - m_checkbox_top_window = new QCheckBox(tr("Keep Window on Top")); + m_checkbox_top_window = new ConfigBool(tr("Keep Window on Top"), Config::MAIN_KEEP_WINDOW_ON_TOP); m_checkbox_confirm_on_stop = new QCheckBox(tr("Confirm on Stop")); m_checkbox_use_panic_handlers = new QCheckBox(tr("Use Panic Handlers")); m_checkbox_enable_osd = new QCheckBox(tr("Show On-Screen Display Messages")); @@ -234,7 +234,8 @@ void InterfacePane::ConnectLayout() connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this, &InterfacePane::OnSaveConfig); connect(m_combobox_language, &QComboBox::currentIndexChanged, this, &InterfacePane::OnSaveConfig); - connect(m_checkbox_top_window, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); + connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), + &Settings::KeepWindowOnTopChanged); connect(m_checkbox_confirm_on_stop, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_use_panic_handlers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_active_title, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); @@ -283,8 +284,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); // Render Window Options - SignalBlocking(m_checkbox_top_window) - ->setChecked(Settings::Instance().IsKeepWindowOnTopEnabled()); SignalBlocking(m_checkbox_confirm_on_stop)->setChecked(Config::Get(Config::MAIN_CONFIRM_ON_STOP)); SignalBlocking(m_checkbox_use_panic_handlers) ->setChecked(Config::Get(Config::MAIN_USE_PANIC_HANDLERS)); @@ -321,7 +320,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().ApplyStyle(); // Render Window Options - Settings::Instance().SetKeepWindowOnTop(m_checkbox_top_window->isChecked()); Config::SetBase(Config::MAIN_CONFIRM_ON_STOP, m_checkbox_confirm_on_stop->isChecked()); Config::SetBase(Config::MAIN_USE_PANIC_HANDLERS, m_checkbox_use_panic_handlers->isChecked()); Config::SetBase(Config::MAIN_OSD_MESSAGES, m_checkbox_enable_osd->isChecked()); @@ -374,9 +372,14 @@ void InterfacePane::AddDescriptions() static constexpr char TR_THEME_DESCRIPTION[] = QT_TR_NOOP("Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean."); + static constexpr char TR_TOP_WINDOW_DESCRIPTION[] = + QT_TR_NOOP("Forces the render window to stay on top of other windows and applications." + "

If unsure, leave this unchecked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); m_combobox_theme->SetTitle(tr("Theme")); m_combobox_theme->SetDescription(tr(TR_THEME_DESCRIPTION)); + + m_checkbox_top_window->SetDescription(tr(TR_TOP_WINDOW_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 8363c56800..34da744bbd 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -38,7 +38,7 @@ private: ConfigStringChoice* m_combobox_theme; QComboBox* m_combobox_userstyle; QLabel* m_label_userstyle; - QCheckBox* m_checkbox_top_window; + ConfigBool* m_checkbox_top_window; ConfigBool* m_checkbox_use_builtin_title_database; ToolTipCheckBox* m_checkbox_show_debugging_ui; QCheckBox* m_checkbox_focused_hotkeys; From 7d704ca9caa4ab5045743f1cc584e6f329d24505 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 11 Nov 2023 14:02:08 -0800 Subject: [PATCH 034/296] InterfacePane: Add BalloonTip to language combobox --- .../Config/ConfigControls/ConfigChoice.cpp | 27 ++++- .../Config/ConfigControls/ConfigChoice.h | 4 + .../Core/DolphinQt/Settings/InterfacePane.cpp | 109 +++++++++--------- .../Core/DolphinQt/Settings/InterfacePane.h | 3 +- 4 files changed, 86 insertions(+), 57 deletions(-) diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp index 060678f161..ad65f0c96b 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.cpp @@ -33,7 +33,7 @@ void ConfigChoice::Update(int choice) ConfigStringChoice::ConfigStringChoice(const std::vector& options, const Config::Info& setting) - : m_setting(setting) + : m_setting(setting), m_text_is_data(true) { for (const auto& op : options) addItem(QString::fromStdString(op)); @@ -42,6 +42,17 @@ ConfigStringChoice::ConfigStringChoice(const std::vector& options, Load(); } +ConfigStringChoice::ConfigStringChoice(const std::vector>& options, + const Config::Info& setting) + : m_setting(setting), m_text_is_data(false) +{ + for (const auto& [option_text, option_data] : options) + addItem(option_text, option_data); + + Connect(); + Load(); +} + void ConfigStringChoice::Connect() { const auto on_config_changed = [this]() { @@ -58,11 +69,21 @@ void ConfigStringChoice::Connect() void ConfigStringChoice::Update(int index) { - Config::SetBaseOrCurrent(m_setting, itemText(index).toStdString()); + if (m_text_is_data) + { + Config::SetBaseOrCurrent(m_setting, itemText(index).toStdString()); + } + else + { + Config::SetBaseOrCurrent(m_setting, itemData(index).toString().toStdString()); + } } void ConfigStringChoice::Load() { + const QString setting_value = QString::fromStdString(Config::Get(m_setting)); + + const int index = m_text_is_data ? findText(setting_value) : findData(setting_value); const QSignalBlocker blocker(this); - setCurrentIndex(findText(QString::fromStdString(Config::Get(m_setting)))); + setCurrentIndex(index); } diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h index 548ff515c9..0082605604 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigChoice.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include #include "DolphinQt/Config/ToolTipControls/ToolTipComboBox.h" @@ -28,6 +29,8 @@ class ConfigStringChoice : public ToolTipComboBox public: ConfigStringChoice(const std::vector& options, const Config::Info& setting); + ConfigStringChoice(const std::vector>& options, + const Config::Info& setting); private: void Connect(); @@ -35,4 +38,5 @@ private: void Load(); Config::Info m_setting; + bool m_text_is_data = false; }; diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 9f13dde8b6..198d0810e8 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -32,48 +32,49 @@ #include "UICommon/GameFile.h" -static QComboBox* MakeLanguageComboBox() +static ConfigStringChoice* MakeLanguageComboBox() { - static const struct - { - const QString name; - const char* id; - } languages[] = { - {QStringLiteral(u"Bahasa Melayu"), "ms"}, // Malay - {QStringLiteral(u"Catal\u00E0"), "ca"}, // Catalan - {QStringLiteral(u"\u010Ce\u0161tina"), "cs"}, // Czech - {QStringLiteral(u"Dansk"), "da"}, // Danish - {QStringLiteral(u"Deutsch"), "de"}, // German - {QStringLiteral(u"English"), "en"}, // English - {QStringLiteral(u"Espa\u00F1ol"), "es"}, // Spanish - {QStringLiteral(u"Fran\u00E7ais"), "fr"}, // French - {QStringLiteral(u"Hrvatski"), "hr"}, // Croatian - {QStringLiteral(u"Italiano"), "it"}, // Italian - {QStringLiteral(u"Magyar"), "hu"}, // Hungarian - {QStringLiteral(u"Nederlands"), "nl"}, // Dutch - {QStringLiteral(u"Norsk bokm\u00E5l"), "nb"}, // Norwegian - {QStringLiteral(u"Polski"), "pl"}, // Polish - {QStringLiteral(u"Portugu\u00EAs"), "pt"}, // Portuguese - {QStringLiteral(u"Portugu\u00EAs (Brasil)"), "pt_BR"}, // Portuguese (Brazil) - {QStringLiteral(u"Rom\u00E2n\u0103"), "ro"}, // Romanian - {QStringLiteral(u"Srpski"), "sr"}, // Serbian - {QStringLiteral(u"Suomi"), "fi"}, // Finnish - {QStringLiteral(u"Svenska"), "sv"}, // Swedish - {QStringLiteral(u"T\u00FCrk\u00E7e"), "tr"}, // Turkish - {QStringLiteral(u"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"), "el"}, // Greek - {QStringLiteral(u"\u0420\u0443\u0441\u0441\u043A\u0438\u0439"), "ru"}, // Russian - {QStringLiteral(u"\u0627\u0644\u0639\u0631\u0628\u064A\u0629"), "ar"}, // Arabic - {QStringLiteral(u"\u0641\u0627\u0631\u0633\u06CC"), "fa"}, // Farsi - {QStringLiteral(u"\uD55C\uAD6D\uC5B4"), "ko"}, // Korean - {QStringLiteral(u"\u65E5\u672C\u8A9E"), "ja"}, // Japanese - {QStringLiteral(u"\u7B80\u4F53\u4E2D\u6587"), "zh_CN"}, // Simplified Chinese - {QStringLiteral(u"\u7E41\u9AD4\u4E2D\u6587"), "zh_TW"}, // Traditional Chinese + using QPair = std::pair; + std::vector languages = { + QPair{QObject::tr(""), QString{}}, + QPair{QStringLiteral(u"Bahasa Melayu"), QStringLiteral("ms")}, // Malay + QPair{QStringLiteral(u"Catal\u00E0"), QStringLiteral("ca")}, // Catalan + QPair{QStringLiteral(u"\u010Ce\u0161tina"), QStringLiteral("cs")}, // Czech + QPair{QStringLiteral(u"Dansk"), QStringLiteral("da")}, // Danish + QPair{QStringLiteral(u"Deutsch"), QStringLiteral("de")}, // German + QPair{QStringLiteral(u"English"), QStringLiteral("en")}, // English + QPair{QStringLiteral(u"Espa\u00F1ol"), QStringLiteral("es")}, // Spanish + QPair{QStringLiteral(u"Fran\u00E7ais"), QStringLiteral("fr")}, // French + QPair{QStringLiteral(u"Hrvatski"), QStringLiteral("hr")}, // Croatian + QPair{QStringLiteral(u"Italiano"), QStringLiteral("it")}, // Italian + QPair{QStringLiteral(u"Magyar"), QStringLiteral("hu")}, // Hungarian + QPair{QStringLiteral(u"Nederlands"), QStringLiteral("nl")}, // Dutch + QPair{QStringLiteral(u"Norsk bokm\u00E5l"), QStringLiteral("nb")}, // Norwegian + QPair{QStringLiteral(u"Polski"), QStringLiteral("pl")}, // Polish + QPair{QStringLiteral(u"Portugu\u00EAs"), QStringLiteral("pt")}, // Portuguese + QPair{QStringLiteral(u"Portugu\u00EAs (Brasil)"), + QStringLiteral("pt_BR")}, // Portuguese (Brazil) + QPair{QStringLiteral(u"Rom\u00E2n\u0103"), QStringLiteral("ro")}, // Romanian + QPair{QStringLiteral(u"Srpski"), QStringLiteral("sr")}, // Serbian + QPair{QStringLiteral(u"Suomi"), QStringLiteral("fi")}, // Finnish + QPair{QStringLiteral(u"Svenska"), QStringLiteral("sv")}, // Swedish + QPair{QStringLiteral(u"T\u00FCrk\u00E7e"), QStringLiteral("tr")}, // Turkish + QPair{QStringLiteral(u"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"), + QStringLiteral("el")}, // Greek + QPair{QStringLiteral(u"\u0420\u0443\u0441\u0441\u043A\u0438\u0439"), + QStringLiteral("ru")}, // Russian + QPair{QStringLiteral(u"\u0627\u0644\u0639\u0631\u0628\u064A\u0629"), + QStringLiteral("ar")}, // Arabic + QPair{QStringLiteral(u"\u0641\u0627\u0631\u0633\u06CC"), QStringLiteral("fa")}, // Farsi + QPair{QStringLiteral(u"\uD55C\uAD6D\uC5B4"), QStringLiteral("ko")}, // Korean + QPair{QStringLiteral(u"\u65E5\u672C\u8A9E"), QStringLiteral("ja")}, // Japanese + QPair{QStringLiteral(u"\u7B80\u4F53\u4E2D\u6587"), + QStringLiteral("zh_CN")}, // Simplified Chinese + QPair{QStringLiteral(u"\u7E41\u9AD4\u4E2D\u6587"), + QStringLiteral("zh_TW")}, // Traditional Chinese }; - auto* combobox = new QComboBox(); - combobox->addItem(QObject::tr(""), QString{}); - for (const auto& lang : languages) - combobox->addItem(lang.name, QString::fromLatin1(lang.id)); + auto* const combobox = new ConfigStringChoice(languages, Config::MAIN_INTERFACE_LANGUAGE); // The default, QComboBox::AdjustToContentsOnFirstShow, causes a noticeable pause when opening the // SettingWindow for the first time. The culprit seems to be non-Latin graphemes in the above @@ -233,7 +234,8 @@ void InterfacePane::ConnectLayout() [this](int index) { Settings::Instance().TriggerThemeChanged(); }); connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this, &InterfacePane::OnSaveConfig); - connect(m_combobox_language, &QComboBox::currentIndexChanged, this, &InterfacePane::OnSaveConfig); + connect(m_combobox_language, &QComboBox::currentIndexChanged, this, + [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); connect(m_checkbox_confirm_on_stop, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); @@ -270,10 +272,6 @@ void InterfacePane::LoadConfig() } #endif // USE_RETRO_ACHIEVEMENTS - SignalBlocking(m_combobox_language) - ->setCurrentIndex(m_combobox_language->findData( - QString::fromStdString(Config::Get(Config::MAIN_INTERFACE_LANGUAGE)))); - const Settings::StyleType style_type = Settings::Instance().GetStyleType(); const QString userstyle = Settings::Instance().GetUserStyleName(); const int index = style_type == Settings::StyleType::User ? @@ -326,15 +324,6 @@ void InterfacePane::OnSaveConfig() Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); - auto new_language = m_combobox_language->currentData().toString().toStdString(); - if (new_language != Config::Get(Config::MAIN_INTERFACE_LANGUAGE)) - { - Config::SetBase(Config::MAIN_INTERFACE_LANGUAGE, new_language); - ModalMessageBox::information( - this, tr("Restart Required"), - tr("You must restart Dolphin in order for the change to take effect.")); - } - const bool use_covers = m_checkbox_use_covers->isChecked(); if (use_covers != Config::Get(Config::MAIN_USE_GAME_COVERS)) @@ -364,6 +353,13 @@ void InterfacePane::OnCursorVisibleAlways() Settings::Instance().SetCursorVisibility(Config::ShowCursor::Constantly); } +void InterfacePane::OnLanguageChanged() +{ + ModalMessageBox::information( + this, tr("Restart Required"), + tr("You must restart Dolphin in order for the change to take effect.")); +} + void InterfacePane::AddDescriptions() { static constexpr char TR_TITLE_DATABASE_DESCRIPTION[] = QT_TR_NOOP( @@ -375,6 +371,10 @@ void InterfacePane::AddDescriptions() static constexpr char TR_TOP_WINDOW_DESCRIPTION[] = QT_TR_NOOP("Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked."); + static constexpr char TR_LANGUAGE_DESCRIPTION[] = QT_TR_NOOP( + "Sets the language displayed by Dolphin's User Interface." + "

Changes to this setting only take effect once Dolphin is restarted." + "

If unsure, select <System Language>."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -382,4 +382,7 @@ void InterfacePane::AddDescriptions() m_combobox_theme->SetDescription(tr(TR_THEME_DESCRIPTION)); m_checkbox_top_window->SetDescription(tr(TR_TOP_WINDOW_DESCRIPTION)); + + m_combobox_language->SetTitle(tr("Language")); + m_combobox_language->SetDescription(tr(TR_LANGUAGE_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 34da744bbd..2cdc9e1ebe 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -31,9 +31,10 @@ private: void OnCursorVisibleMovement(); void OnCursorVisibleNever(); void OnCursorVisibleAlways(); + void OnLanguageChanged(); QVBoxLayout* m_main_layout; - QComboBox* m_combobox_language; + ConfigStringChoice* m_combobox_language; ConfigStringChoice* m_combobox_theme; QComboBox* m_combobox_userstyle; From afe5bfd5127cda889dac46907c3b94b9641cfbee Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 11 Nov 2023 16:04:50 -0800 Subject: [PATCH 035/296] InterfacePane: Add BalloonTip to debugging enabled checkbox --- .../Core/DolphinQt/Settings/InterfacePane.cpp | 29 ++++++++++++++----- .../Core/DolphinQt/Settings/InterfacePane.h | 1 + 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 198d0810e8..603e7a8447 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -91,7 +91,7 @@ InterfacePane::InterfacePane(QWidget* parent) : QWidget(parent) ConnectLayout(); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, - &InterfacePane::LoadConfig); + &InterfacePane::UpdateShowDebuggingCheckbox); } void InterfacePane::CreateLayout() @@ -228,7 +228,8 @@ void InterfacePane::ConnectLayout() &Settings::GameListRefreshRequested); connect(m_checkbox_use_covers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); - connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); + connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(), + &Settings::SetDebugModeEnabled); connect(m_checkbox_focused_hotkeys, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, [this](int index) { Settings::Instance().TriggerThemeChanged(); }); @@ -253,24 +254,39 @@ void InterfacePane::ConnectLayout() &Settings::SetLockCursor); } -void InterfacePane::LoadConfig() +void InterfacePane::UpdateShowDebuggingCheckbox() { SignalBlocking(m_checkbox_show_debugging_ui) ->setChecked(Settings::Instance().IsDebugModeEnabled()); + static constexpr char TR_SHOW_DEBUGGING_UI_DESCRIPTION[] = QT_TR_NOOP( + "Shows Dolphin's debugging User Interface. This lets you view and modify a game's code and " + "memory contents, set debugging breakpoints, examine network requests, and more." + "

If unsure, leave this unchecked."); + static constexpr char TR_DISABLED_IN_HARDCORE_DESCRIPTION[] = + QT_TR_NOOP("Disabled in Hardcore Mode."); + #ifdef USE_RETRO_ACHIEVEMENTS bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); SignalBlocking(m_checkbox_show_debugging_ui)->setEnabled(!hardcore); if (hardcore) { - m_checkbox_show_debugging_ui->SetDescription( - tr("Disabled in Hardcore Mode.")); + m_checkbox_show_debugging_ui->SetDescription(tr("%1

%2") + .arg(tr(TR_SHOW_DEBUGGING_UI_DESCRIPTION)) + .arg(tr(TR_DISABLED_IN_HARDCORE_DESCRIPTION))); } else { - m_checkbox_show_debugging_ui->SetDescription({}); + m_checkbox_show_debugging_ui->SetDescription(tr(TR_SHOW_DEBUGGING_UI_DESCRIPTION)); } +#else + m_checkbox_show_debugging_ui->SetDescription(tr(TR_SHOW_DEBUGGING_UI_DESCRIPTION)); #endif // USE_RETRO_ACHIEVEMENTS +} + +void InterfacePane::LoadConfig() +{ + UpdateShowDebuggingCheckbox(); const Settings::StyleType style_type = Settings::Instance().GetStyleType(); const QString userstyle = Settings::Instance().GetUserStyleName(); @@ -306,7 +322,6 @@ void InterfacePane::LoadConfig() void InterfacePane::OnSaveConfig() { - Settings::Instance().SetDebugModeEnabled(m_checkbox_show_debugging_ui->isChecked()); const auto selected_style = m_combobox_userstyle->currentData(); bool is_builtin_type = false; const int style_type_int = selected_style.toInt(&is_builtin_type); diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 2cdc9e1ebe..b1d0f11c2d 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -26,6 +26,7 @@ private: void CreateInGame(); void AddDescriptions(); void ConnectLayout(); + void UpdateShowDebuggingCheckbox(); void LoadConfig(); void OnSaveConfig(); void OnCursorVisibleMovement(); From 78ab53a6e49a8a9324a36e14d11f5524a04380d3 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 11 Nov 2023 16:13:55 -0800 Subject: [PATCH 036/296] InterfacePane: Add BalloonTip to focused hotkeys checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 11 +++++++---- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 603e7a8447..3adcdc997f 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -161,7 +161,8 @@ void InterfacePane::CreateUI() m_checkbox_use_covers = new QCheckBox(tr("Download Game Covers from GameTDB.com for Use in Grid Mode")); m_checkbox_show_debugging_ui = new ToolTipCheckBox(tr("Enable Debugging UI")); - m_checkbox_focused_hotkeys = new QCheckBox(tr("Hotkeys Require Window Focus")); + m_checkbox_focused_hotkeys = + new ConfigBool(tr("Hotkeys Require Window Focus"), Config::MAIN_FOCUSED_HOTKEYS); m_checkbox_disable_screensaver = new QCheckBox(tr("Inhibit Screensaver During Emulation")); groupbox_layout->addWidget(m_checkbox_use_builtin_title_database); @@ -230,7 +231,6 @@ void InterfacePane::ConnectLayout() connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(), &Settings::SetDebugModeEnabled); - connect(m_checkbox_focused_hotkeys, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, [this](int index) { Settings::Instance().TriggerThemeChanged(); }); connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this, @@ -307,7 +307,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_checkbox_pause_on_focus_lost) ->setChecked(Config::Get(Config::MAIN_PAUSE_ON_FOCUS_LOST)); SignalBlocking(m_checkbox_use_covers)->setChecked(Config::Get(Config::MAIN_USE_GAME_COVERS)); - SignalBlocking(m_checkbox_focused_hotkeys)->setChecked(Config::Get(Config::MAIN_FOCUSED_HOTKEYS)); SignalBlocking(m_radio_cursor_visible_movement) ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::OnMovement); SignalBlocking(m_radio_cursor_visible_always) @@ -347,7 +346,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().RefreshMetadata(); } - Config::SetBase(Config::MAIN_FOCUSED_HOTKEYS, m_checkbox_focused_hotkeys->isChecked()); Config::SetBase(Config::MAIN_DISABLE_SCREENSAVER, m_checkbox_disable_screensaver->isChecked()); Config::Save(); @@ -390,6 +388,9 @@ void InterfacePane::AddDescriptions() "Sets the language displayed by Dolphin's User Interface." "

Changes to this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>."); + static constexpr char TR_FOCUSED_HOTKEYS_DESCRIPTION[] = + QT_TR_NOOP("Requires the render window to be focused for hotkeys to take effect." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -400,4 +401,6 @@ void InterfacePane::AddDescriptions() m_combobox_language->SetTitle(tr("Language")); m_combobox_language->SetDescription(tr(TR_LANGUAGE_DESCRIPTION)); + + m_checkbox_focused_hotkeys->SetDescription(tr(TR_FOCUSED_HOTKEYS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index b1d0f11c2d..bf5ef9cb11 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -43,7 +43,7 @@ private: ConfigBool* m_checkbox_top_window; ConfigBool* m_checkbox_use_builtin_title_database; ToolTipCheckBox* m_checkbox_show_debugging_ui; - QCheckBox* m_checkbox_focused_hotkeys; + ConfigBool* m_checkbox_focused_hotkeys; QCheckBox* m_checkbox_use_covers; QCheckBox* m_checkbox_disable_screensaver; From 26758716ae6d570edd93030ee6a0a99409c7daae Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 11 Nov 2023 22:55:12 -0800 Subject: [PATCH 037/296] InterfacePane: Add BalloonTip to use covers checkbox --- .../Core/DolphinQt/Settings/InterfacePane.cpp | 25 ++++++++++--------- .../Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 3adcdc997f..209ff336b6 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -159,7 +159,8 @@ void InterfacePane::CreateUI() m_checkbox_use_builtin_title_database = new ConfigBool(tr("Use Built-In Database of Game Names"), Config::MAIN_USE_BUILT_IN_TITLE_DATABASE); m_checkbox_use_covers = - new QCheckBox(tr("Download Game Covers from GameTDB.com for Use in Grid Mode")); + new ConfigBool(tr("Download Game Covers from GameTDB.com for Use in Grid Mode"), + Config::MAIN_USE_GAME_COVERS); m_checkbox_show_debugging_ui = new ToolTipCheckBox(tr("Enable Debugging UI")); m_checkbox_focused_hotkeys = new ConfigBool(tr("Hotkeys Require Window Focus"), Config::MAIN_FOCUSED_HOTKEYS); @@ -227,7 +228,8 @@ void InterfacePane::ConnectLayout() { connect(m_checkbox_use_builtin_title_database, &QCheckBox::toggled, &Settings::Instance(), &Settings::GameListRefreshRequested); - connect(m_checkbox_use_covers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); + connect(m_checkbox_use_covers, &QCheckBox::toggled, &Settings::Instance(), + &Settings::RefreshMetadata); connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(), &Settings::SetDebugModeEnabled); @@ -306,7 +308,6 @@ void InterfacePane::LoadConfig() ->setChecked(Config::Get(Config::MAIN_SHOW_ACTIVE_TITLE)); SignalBlocking(m_checkbox_pause_on_focus_lost) ->setChecked(Config::Get(Config::MAIN_PAUSE_ON_FOCUS_LOST)); - SignalBlocking(m_checkbox_use_covers)->setChecked(Config::Get(Config::MAIN_USE_GAME_COVERS)); SignalBlocking(m_radio_cursor_visible_movement) ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::OnMovement); SignalBlocking(m_radio_cursor_visible_always) @@ -337,15 +338,6 @@ void InterfacePane::OnSaveConfig() Config::SetBase(Config::MAIN_OSD_MESSAGES, m_checkbox_enable_osd->isChecked()); Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); - - const bool use_covers = m_checkbox_use_covers->isChecked(); - - if (use_covers != Config::Get(Config::MAIN_USE_GAME_COVERS)) - { - Config::SetBase(Config::MAIN_USE_GAME_COVERS, use_covers); - Settings::Instance().RefreshMetadata(); - } - Config::SetBase(Config::MAIN_DISABLE_SCREENSAVER, m_checkbox_disable_screensaver->isChecked()); Config::Save(); @@ -391,6 +383,13 @@ void InterfacePane::AddDescriptions() static constexpr char TR_FOCUSED_HOTKEYS_DESCRIPTION[] = QT_TR_NOOP("Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked."); + static constexpr char TR_USE_COVERS_DESCRIPTION[] = + QT_TR_NOOP("Downloads full game covers from GameTDB.com to display in the Game List's Grid " + "View. If this setting is unchecked the Game List displays a banner generated " + "from the game's save files, and if the game has no save file displays a generic " + "banner instead." + "

List View will always use the save file banners." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -403,4 +402,6 @@ void InterfacePane::AddDescriptions() m_combobox_language->SetDescription(tr(TR_LANGUAGE_DESCRIPTION)); m_checkbox_focused_hotkeys->SetDescription(tr(TR_FOCUSED_HOTKEYS_DESCRIPTION)); + + m_checkbox_use_covers->SetDescription(tr(TR_USE_COVERS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index bf5ef9cb11..e251b1157a 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -44,7 +44,7 @@ private: ConfigBool* m_checkbox_use_builtin_title_database; ToolTipCheckBox* m_checkbox_show_debugging_ui; ConfigBool* m_checkbox_focused_hotkeys; - QCheckBox* m_checkbox_use_covers; + ConfigBool* m_checkbox_use_covers; QCheckBox* m_checkbox_disable_screensaver; QCheckBox* m_checkbox_confirm_on_stop; From d1ac66824ef332da5a71652d01cd559898cc0690 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 11 Nov 2023 23:29:16 -0800 Subject: [PATCH 038/296] InterfacePane: Add BalloonTip to disable screensaver checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 12 +++++++----- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 209ff336b6..8f522a50fe 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -164,7 +164,8 @@ void InterfacePane::CreateUI() m_checkbox_show_debugging_ui = new ToolTipCheckBox(tr("Enable Debugging UI")); m_checkbox_focused_hotkeys = new ConfigBool(tr("Hotkeys Require Window Focus"), Config::MAIN_FOCUSED_HOTKEYS); - m_checkbox_disable_screensaver = new QCheckBox(tr("Inhibit Screensaver During Emulation")); + m_checkbox_disable_screensaver = + new ConfigBool(tr("Inhibit Screensaver During Emulation"), Config::MAIN_DISABLE_SCREENSAVER); groupbox_layout->addWidget(m_checkbox_use_builtin_title_database); groupbox_layout->addWidget(m_checkbox_use_covers); @@ -230,7 +231,6 @@ void InterfacePane::ConnectLayout() &Settings::GameListRefreshRequested); connect(m_checkbox_use_covers, &QCheckBox::toggled, &Settings::Instance(), &Settings::RefreshMetadata); - connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(), &Settings::SetDebugModeEnabled); connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, @@ -316,8 +316,6 @@ void InterfacePane::LoadConfig() ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::Never); SignalBlocking(m_checkbox_lock_mouse)->setChecked(Settings::Instance().GetLockCursor()); - SignalBlocking(m_checkbox_disable_screensaver) - ->setChecked(Config::Get(Config::MAIN_DISABLE_SCREENSAVER)); } void InterfacePane::OnSaveConfig() @@ -338,7 +336,6 @@ void InterfacePane::OnSaveConfig() Config::SetBase(Config::MAIN_OSD_MESSAGES, m_checkbox_enable_osd->isChecked()); Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); - Config::SetBase(Config::MAIN_DISABLE_SCREENSAVER, m_checkbox_disable_screensaver->isChecked()); Config::Save(); } @@ -390,6 +387,9 @@ void InterfacePane::AddDescriptions() "banner instead." "

List View will always use the save file banners." "

If unsure, leave this checked."); + static constexpr char TR_DISABLE_SCREENSAVER_DESCRIPTION[] = + QT_TR_NOOP("Disables your screensaver while running a game." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -404,4 +404,6 @@ void InterfacePane::AddDescriptions() m_checkbox_focused_hotkeys->SetDescription(tr(TR_FOCUSED_HOTKEYS_DESCRIPTION)); m_checkbox_use_covers->SetDescription(tr(TR_USE_COVERS_DESCRIPTION)); + + m_checkbox_disable_screensaver->SetDescription(tr(TR_DISABLE_SCREENSAVER_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index e251b1157a..29e56ae049 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -45,7 +45,7 @@ private: ToolTipCheckBox* m_checkbox_show_debugging_ui; ConfigBool* m_checkbox_focused_hotkeys; ConfigBool* m_checkbox_use_covers; - QCheckBox* m_checkbox_disable_screensaver; + ConfigBool* m_checkbox_disable_screensaver; QCheckBox* m_checkbox_confirm_on_stop; QCheckBox* m_checkbox_use_panic_handlers; From dc15a555c92b09269d2b3602f868780309c9b4c9 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 11 Nov 2023 23:41:39 -0800 Subject: [PATCH 039/296] InterfacePane: Add BalloonTip to confirm on stop checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 10 ++++++---- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 8f522a50fe..554d55d386 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -182,7 +182,7 @@ void InterfacePane::CreateInGame() m_main_layout->addWidget(groupbox); m_checkbox_top_window = new ConfigBool(tr("Keep Window on Top"), Config::MAIN_KEEP_WINDOW_ON_TOP); - m_checkbox_confirm_on_stop = new QCheckBox(tr("Confirm on Stop")); + m_checkbox_confirm_on_stop = new ConfigBool(tr("Confirm on Stop"), Config::MAIN_CONFIRM_ON_STOP); m_checkbox_use_panic_handlers = new QCheckBox(tr("Use Panic Handlers")); m_checkbox_enable_osd = new QCheckBox(tr("Show On-Screen Display Messages")); m_checkbox_show_active_title = new QCheckBox(tr("Show Active Title in Window Title")); @@ -241,7 +241,6 @@ void InterfacePane::ConnectLayout() [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); - connect(m_checkbox_confirm_on_stop, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_use_panic_handlers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_active_title, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_enable_osd, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); @@ -300,7 +299,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); // Render Window Options - SignalBlocking(m_checkbox_confirm_on_stop)->setChecked(Config::Get(Config::MAIN_CONFIRM_ON_STOP)); SignalBlocking(m_checkbox_use_panic_handlers) ->setChecked(Config::Get(Config::MAIN_USE_PANIC_HANDLERS)); SignalBlocking(m_checkbox_enable_osd)->setChecked(Config::Get(Config::MAIN_OSD_MESSAGES)); @@ -331,7 +329,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().ApplyStyle(); // Render Window Options - Config::SetBase(Config::MAIN_CONFIRM_ON_STOP, m_checkbox_confirm_on_stop->isChecked()); Config::SetBase(Config::MAIN_USE_PANIC_HANDLERS, m_checkbox_use_panic_handlers->isChecked()); Config::SetBase(Config::MAIN_OSD_MESSAGES, m_checkbox_enable_osd->isChecked()); Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); @@ -390,6 +387,9 @@ void InterfacePane::AddDescriptions() static constexpr char TR_DISABLE_SCREENSAVER_DESCRIPTION[] = QT_TR_NOOP("Disables your screensaver while running a game." "

If unsure, leave this checked."); + static constexpr char TR_CONFIRM_ON_STOP_DESCRIPTION[] = + QT_TR_NOOP("Prompts you to confirm that you want to end emulation when you press Stop." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -406,4 +406,6 @@ void InterfacePane::AddDescriptions() m_checkbox_use_covers->SetDescription(tr(TR_USE_COVERS_DESCRIPTION)); m_checkbox_disable_screensaver->SetDescription(tr(TR_DISABLE_SCREENSAVER_DESCRIPTION)); + + m_checkbox_confirm_on_stop->SetDescription(tr(TR_CONFIRM_ON_STOP_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 29e56ae049..761dae880a 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -47,7 +47,7 @@ private: ConfigBool* m_checkbox_use_covers; ConfigBool* m_checkbox_disable_screensaver; - QCheckBox* m_checkbox_confirm_on_stop; + ConfigBool* m_checkbox_confirm_on_stop; QCheckBox* m_checkbox_use_panic_handlers; QCheckBox* m_checkbox_enable_osd; QCheckBox* m_checkbox_show_active_title; From 16cdd0a96132e410dd08b7a2afdc2a94e6252e8f Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 12 Nov 2023 00:03:00 -0800 Subject: [PATCH 040/296] InterfacePane: Add BalloonTip to use panic handlers checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 14 +++++++++----- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 554d55d386..dfd49f4946 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -183,7 +183,8 @@ void InterfacePane::CreateInGame() m_checkbox_top_window = new ConfigBool(tr("Keep Window on Top"), Config::MAIN_KEEP_WINDOW_ON_TOP); m_checkbox_confirm_on_stop = new ConfigBool(tr("Confirm on Stop"), Config::MAIN_CONFIRM_ON_STOP); - m_checkbox_use_panic_handlers = new QCheckBox(tr("Use Panic Handlers")); + m_checkbox_use_panic_handlers = + new ConfigBool(tr("Use Panic Handlers"), Config::MAIN_USE_PANIC_HANDLERS); m_checkbox_enable_osd = new QCheckBox(tr("Show On-Screen Display Messages")); m_checkbox_show_active_title = new QCheckBox(tr("Show Active Title in Window Title")); m_checkbox_pause_on_focus_lost = new QCheckBox(tr("Pause on Focus Loss")); @@ -241,7 +242,6 @@ void InterfacePane::ConnectLayout() [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); - connect(m_checkbox_use_panic_handlers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_show_active_title, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_enable_osd, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_pause_on_focus_lost, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); @@ -299,8 +299,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); // Render Window Options - SignalBlocking(m_checkbox_use_panic_handlers) - ->setChecked(Config::Get(Config::MAIN_USE_PANIC_HANDLERS)); SignalBlocking(m_checkbox_enable_osd)->setChecked(Config::Get(Config::MAIN_OSD_MESSAGES)); SignalBlocking(m_checkbox_show_active_title) ->setChecked(Config::Get(Config::MAIN_SHOW_ACTIVE_TITLE)); @@ -329,7 +327,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().ApplyStyle(); // Render Window Options - Config::SetBase(Config::MAIN_USE_PANIC_HANDLERS, m_checkbox_use_panic_handlers->isChecked()); Config::SetBase(Config::MAIN_OSD_MESSAGES, m_checkbox_enable_osd->isChecked()); Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); @@ -390,6 +387,11 @@ void InterfacePane::AddDescriptions() static constexpr char TR_CONFIRM_ON_STOP_DESCRIPTION[] = QT_TR_NOOP("Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked."); + static constexpr char TR_USE_PANIC_HANDLERS_DESCRIPTION[] = + QT_TR_NOOP("In the event of an error, Dolphin will halt to inform you of the error and " + "present choices on how to proceed. With this option disabled, Dolphin will " + "\"ignore\" all errors. Emulation will not be halted and you will not be notified." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -408,4 +410,6 @@ void InterfacePane::AddDescriptions() m_checkbox_disable_screensaver->SetDescription(tr(TR_DISABLE_SCREENSAVER_DESCRIPTION)); m_checkbox_confirm_on_stop->SetDescription(tr(TR_CONFIRM_ON_STOP_DESCRIPTION)); + + m_checkbox_use_panic_handlers->SetDescription(tr(TR_USE_PANIC_HANDLERS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 761dae880a..38bea683af 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -48,7 +48,7 @@ private: ConfigBool* m_checkbox_disable_screensaver; ConfigBool* m_checkbox_confirm_on_stop; - QCheckBox* m_checkbox_use_panic_handlers; + ConfigBool* m_checkbox_use_panic_handlers; QCheckBox* m_checkbox_enable_osd; QCheckBox* m_checkbox_show_active_title; QCheckBox* m_checkbox_pause_on_focus_lost; From c5532b19e6485ba81a636c9df5e9635fd432001d Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 12 Nov 2023 00:18:02 -0800 Subject: [PATCH 041/296] InterfacePane: Add BalloonTip to enable on-screen display checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 12 ++++++++---- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index dfd49f4946..c284bc8a08 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -185,7 +185,8 @@ void InterfacePane::CreateInGame() m_checkbox_confirm_on_stop = new ConfigBool(tr("Confirm on Stop"), Config::MAIN_CONFIRM_ON_STOP); m_checkbox_use_panic_handlers = new ConfigBool(tr("Use Panic Handlers"), Config::MAIN_USE_PANIC_HANDLERS); - m_checkbox_enable_osd = new QCheckBox(tr("Show On-Screen Display Messages")); + m_checkbox_enable_osd = + new ConfigBool(tr("Show On-Screen Display Messages"), Config::MAIN_OSD_MESSAGES); m_checkbox_show_active_title = new QCheckBox(tr("Show Active Title in Window Title")); m_checkbox_pause_on_focus_lost = new QCheckBox(tr("Pause on Focus Loss")); @@ -243,7 +244,6 @@ void InterfacePane::ConnectLayout() connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); connect(m_checkbox_show_active_title, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); - connect(m_checkbox_enable_osd, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_pause_on_focus_lost, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_radio_cursor_visible_movement, &QRadioButton::toggled, this, &InterfacePane::OnCursorVisibleMovement); @@ -299,7 +299,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); // Render Window Options - SignalBlocking(m_checkbox_enable_osd)->setChecked(Config::Get(Config::MAIN_OSD_MESSAGES)); SignalBlocking(m_checkbox_show_active_title) ->setChecked(Config::Get(Config::MAIN_SHOW_ACTIVE_TITLE)); SignalBlocking(m_checkbox_pause_on_focus_lost) @@ -327,7 +326,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().ApplyStyle(); // Render Window Options - Config::SetBase(Config::MAIN_OSD_MESSAGES, m_checkbox_enable_osd->isChecked()); Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); @@ -392,6 +390,10 @@ void InterfacePane::AddDescriptions() "present choices on how to proceed. With this option disabled, Dolphin will " "\"ignore\" all errors. Emulation will not be halted and you will not be notified." "

If unsure, leave this checked."); + static constexpr char TR_ENABLE_OSD_DESCRIPTION[] = + QT_TR_NOOP("Shows on-screen display messages over the render window. These messages " + "disappear after several seconds." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -412,4 +414,6 @@ void InterfacePane::AddDescriptions() m_checkbox_confirm_on_stop->SetDescription(tr(TR_CONFIRM_ON_STOP_DESCRIPTION)); m_checkbox_use_panic_handlers->SetDescription(tr(TR_USE_PANIC_HANDLERS_DESCRIPTION)); + + m_checkbox_enable_osd->SetDescription(tr(TR_ENABLE_OSD_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 38bea683af..50c025b8d3 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -49,7 +49,7 @@ private: ConfigBool* m_checkbox_confirm_on_stop; ConfigBool* m_checkbox_use_panic_handlers; - QCheckBox* m_checkbox_enable_osd; + ConfigBool* m_checkbox_enable_osd; QCheckBox* m_checkbox_show_active_title; QCheckBox* m_checkbox_pause_on_focus_lost; QRadioButton* m_radio_cursor_visible_movement; From 14f01bb12cdee58a4ce46e6f11e6b133ce0f2b35 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 12 Nov 2023 00:29:52 -0800 Subject: [PATCH 042/296] InterfacePane: Add BalloonTip to show active title checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 12 +++++++----- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index c284bc8a08..ecf8447aa8 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -187,7 +187,8 @@ void InterfacePane::CreateInGame() new ConfigBool(tr("Use Panic Handlers"), Config::MAIN_USE_PANIC_HANDLERS); m_checkbox_enable_osd = new ConfigBool(tr("Show On-Screen Display Messages"), Config::MAIN_OSD_MESSAGES); - m_checkbox_show_active_title = new QCheckBox(tr("Show Active Title in Window Title")); + m_checkbox_show_active_title = + new ConfigBool(tr("Show Active Title in Window Title"), Config::MAIN_SHOW_ACTIVE_TITLE); m_checkbox_pause_on_focus_lost = new QCheckBox(tr("Pause on Focus Loss")); auto* mouse_groupbox = new QGroupBox(tr("Mouse Cursor Visibility")); @@ -243,7 +244,6 @@ void InterfacePane::ConnectLayout() [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); - connect(m_checkbox_show_active_title, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_pause_on_focus_lost, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_radio_cursor_visible_movement, &QRadioButton::toggled, this, &InterfacePane::OnCursorVisibleMovement); @@ -299,8 +299,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); // Render Window Options - SignalBlocking(m_checkbox_show_active_title) - ->setChecked(Config::Get(Config::MAIN_SHOW_ACTIVE_TITLE)); SignalBlocking(m_checkbox_pause_on_focus_lost) ->setChecked(Config::Get(Config::MAIN_PAUSE_ON_FOCUS_LOST)); SignalBlocking(m_radio_cursor_visible_movement) @@ -326,7 +324,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().ApplyStyle(); // Render Window Options - Config::SetBase(Config::MAIN_SHOW_ACTIVE_TITLE, m_checkbox_show_active_title->isChecked()); Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); Config::Save(); @@ -394,6 +391,9 @@ void InterfacePane::AddDescriptions() QT_TR_NOOP("Shows on-screen display messages over the render window. These messages " "disappear after several seconds." "

If unsure, leave this checked."); + static constexpr char TR_SHOW_ACTIVE_TITLE_DESCRIPTION[] = + QT_TR_NOOP("Shows the active game title in the render window's title bar." + "

If unsure, leave this checked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -416,4 +416,6 @@ void InterfacePane::AddDescriptions() m_checkbox_use_panic_handlers->SetDescription(tr(TR_USE_PANIC_HANDLERS_DESCRIPTION)); m_checkbox_enable_osd->SetDescription(tr(TR_ENABLE_OSD_DESCRIPTION)); + + m_checkbox_show_active_title->SetDescription(tr(TR_SHOW_ACTIVE_TITLE_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 50c025b8d3..94935b8867 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -50,7 +50,7 @@ private: ConfigBool* m_checkbox_confirm_on_stop; ConfigBool* m_checkbox_use_panic_handlers; ConfigBool* m_checkbox_enable_osd; - QCheckBox* m_checkbox_show_active_title; + ConfigBool* m_checkbox_show_active_title; QCheckBox* m_checkbox_pause_on_focus_lost; QRadioButton* m_radio_cursor_visible_movement; QRadioButton* m_radio_cursor_visible_never; From 9ed1688d09f3e749005a765380f600c0f8d6ee21 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 12 Nov 2023 00:38:54 -0800 Subject: [PATCH 043/296] InterfacePane: Add BalloonTip to pause on focus lost checkbox --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 14 +++++++------- Source/Core/DolphinQt/Settings/InterfacePane.h | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index ecf8447aa8..64ce31c1eb 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -189,7 +189,8 @@ void InterfacePane::CreateInGame() new ConfigBool(tr("Show On-Screen Display Messages"), Config::MAIN_OSD_MESSAGES); m_checkbox_show_active_title = new ConfigBool(tr("Show Active Title in Window Title"), Config::MAIN_SHOW_ACTIVE_TITLE); - m_checkbox_pause_on_focus_lost = new QCheckBox(tr("Pause on Focus Loss")); + m_checkbox_pause_on_focus_lost = + new ConfigBool(tr("Pause on Focus Loss"), Config::MAIN_PAUSE_ON_FOCUS_LOST); auto* mouse_groupbox = new QGroupBox(tr("Mouse Cursor Visibility")); auto* m_vboxlayout_hide_mouse = new QVBoxLayout; @@ -244,7 +245,6 @@ void InterfacePane::ConnectLayout() [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); - connect(m_checkbox_pause_on_focus_lost, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_radio_cursor_visible_movement, &QRadioButton::toggled, this, &InterfacePane::OnCursorVisibleMovement); connect(m_radio_cursor_visible_never, &QRadioButton::toggled, this, @@ -299,8 +299,6 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); // Render Window Options - SignalBlocking(m_checkbox_pause_on_focus_lost) - ->setChecked(Config::Get(Config::MAIN_PAUSE_ON_FOCUS_LOST)); SignalBlocking(m_radio_cursor_visible_movement) ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::OnMovement); SignalBlocking(m_radio_cursor_visible_always) @@ -323,9 +321,6 @@ void InterfacePane::OnSaveConfig() Settings::Instance().SetUserStyleName(selected_style.toString()); Settings::Instance().ApplyStyle(); - // Render Window Options - Config::SetBase(Config::MAIN_PAUSE_ON_FOCUS_LOST, m_checkbox_pause_on_focus_lost->isChecked()); - Config::Save(); } @@ -394,6 +389,9 @@ void InterfacePane::AddDescriptions() static constexpr char TR_SHOW_ACTIVE_TITLE_DESCRIPTION[] = QT_TR_NOOP("Shows the active game title in the render window's title bar." "

If unsure, leave this checked."); + static constexpr char TR_PAUSE_ON_FOCUS_LOST_DESCRIPTION[] = + QT_TR_NOOP("Pauses the game whenever the render window isn't focused." + "

If unsure, leave this unchecked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -418,4 +416,6 @@ void InterfacePane::AddDescriptions() m_checkbox_enable_osd->SetDescription(tr(TR_ENABLE_OSD_DESCRIPTION)); m_checkbox_show_active_title->SetDescription(tr(TR_SHOW_ACTIVE_TITLE_DESCRIPTION)); + + m_checkbox_pause_on_focus_lost->SetDescription(tr(TR_PAUSE_ON_FOCUS_LOST_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 94935b8867..4a9518d1cd 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -51,7 +51,7 @@ private: ConfigBool* m_checkbox_use_panic_handlers; ConfigBool* m_checkbox_enable_osd; ConfigBool* m_checkbox_show_active_title; - QCheckBox* m_checkbox_pause_on_focus_lost; + ConfigBool* m_checkbox_pause_on_focus_lost; QRadioButton* m_radio_cursor_visible_movement; QRadioButton* m_radio_cursor_visible_never; QRadioButton* m_radio_cursor_visible_always; From a581fa2bfa9bd4e6ff3b3626eefc01226d52c58a Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 12 Nov 2023 01:32:03 -0800 Subject: [PATCH 044/296] InterfacePane: Add BalloonTip to lock mouse checkbox --- Source/Core/DolphinQt/Settings.cpp | 6 ------ Source/Core/DolphinQt/Settings.h | 1 - Source/Core/DolphinQt/Settings/InterfacePane.cpp | 15 +++++++++------ Source/Core/DolphinQt/Settings/InterfacePane.h | 3 +-- 4 files changed, 10 insertions(+), 15 deletions(-) diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 19af18d9d9..2a4a62741a 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -429,12 +429,6 @@ Config::ShowCursor Settings::GetCursorVisibility() const return Config::Get(Config::MAIN_SHOW_CURSOR); } -void Settings::SetLockCursor(bool lock_cursor) -{ - Config::SetBaseOrCurrent(Config::MAIN_LOCK_CURSOR, lock_cursor); - emit LockCursorChanged(); -} - bool Settings::GetLockCursor() const { return Config::Get(Config::MAIN_LOCK_CURSOR); diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index 0f9519163a..03c805da5b 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -124,7 +124,6 @@ public: // Graphics void SetCursorVisibility(Config::ShowCursor hideCursor); Config::ShowCursor GetCursorVisibility() const; - void SetLockCursor(bool lock_cursor); bool GetLockCursor() const; void SetKeepWindowOnTop(bool top); bool IsKeepWindowOnTopEnabled() const; diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 64ce31c1eb..70f4badf61 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -209,10 +209,9 @@ void InterfacePane::CreateInGame() m_vboxlayout_hide_mouse->addWidget(m_radio_cursor_visible_never); m_vboxlayout_hide_mouse->addWidget(m_radio_cursor_visible_always); + m_checkbox_lock_mouse = new ConfigBool(tr("Lock Mouse Cursor"), Config::MAIN_LOCK_CURSOR); // this ends up not being managed unless _WIN32, so lets not leak - m_checkbox_lock_mouse = new QCheckBox(tr("Lock Mouse Cursor"), this); - m_checkbox_lock_mouse->setToolTip(tr("Will lock the Mouse Cursor to the Render Widget as long as " - "it has focus. You can set a hotkey to unlock it.")); + m_checkbox_lock_mouse->setParent(this); mouse_groupbox->setLayout(m_vboxlayout_hide_mouse); groupbox_layout->addWidget(m_checkbox_top_window); @@ -252,7 +251,7 @@ void InterfacePane::ConnectLayout() connect(m_radio_cursor_visible_always, &QRadioButton::toggled, this, &InterfacePane::OnCursorVisibleAlways); connect(m_checkbox_lock_mouse, &QCheckBox::toggled, &Settings::Instance(), - &Settings::SetLockCursor); + [this]() { Settings::Instance().LockCursorChanged(); }); } void InterfacePane::UpdateShowDebuggingCheckbox() @@ -305,8 +304,6 @@ void InterfacePane::LoadConfig() ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::Constantly); SignalBlocking(m_radio_cursor_visible_never) ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::Never); - - SignalBlocking(m_checkbox_lock_mouse)->setChecked(Settings::Instance().GetLockCursor()); } void InterfacePane::OnSaveConfig() @@ -392,6 +389,10 @@ void InterfacePane::AddDescriptions() static constexpr char TR_PAUSE_ON_FOCUS_LOST_DESCRIPTION[] = QT_TR_NOOP("Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked."); + static constexpr char TR_LOCK_MOUSE_DESCRIPTION[] = + QT_TR_NOOP("Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " + "set a hotkey to unlock it." + "

If unsure, leave this unchecked."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -418,4 +419,6 @@ void InterfacePane::AddDescriptions() m_checkbox_show_active_title->SetDescription(tr(TR_SHOW_ACTIVE_TITLE_DESCRIPTION)); m_checkbox_pause_on_focus_lost->SetDescription(tr(TR_PAUSE_ON_FOCUS_LOST_DESCRIPTION)); + + m_checkbox_lock_mouse->SetDescription(tr(TR_LOCK_MOUSE_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 4a9518d1cd..90cd75e3af 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -7,7 +7,6 @@ class ConfigBool; class ConfigStringChoice; -class QCheckBox; class QComboBox; class QLabel; class QRadioButton; @@ -55,5 +54,5 @@ private: QRadioButton* m_radio_cursor_visible_movement; QRadioButton* m_radio_cursor_visible_never; QRadioButton* m_radio_cursor_visible_always; - QCheckBox* m_checkbox_lock_mouse; + ConfigBool* m_checkbox_lock_mouse; }; From 33b64d6c915793cb1068f5122c25f678b7accbc3 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 13 Nov 2023 15:04:12 -0800 Subject: [PATCH 045/296] InterfacePane: Add BalloonTip to cursor visible radio buttons --- .../Config/ConfigControls/ConfigRadio.cpp | 13 ++-- .../Config/ConfigControls/ConfigRadio.h | 6 ++ Source/Core/DolphinQt/Settings.cpp | 6 -- Source/Core/DolphinQt/Settings.h | 1 - .../Core/DolphinQt/Settings/InterfacePane.cpp | 67 +++++++++---------- .../Core/DolphinQt/Settings/InterfacePane.h | 11 ++- 6 files changed, 49 insertions(+), 55 deletions(-) diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.cpp b/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.cpp index 98977dfdc9..11a049d910 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.cpp +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.cpp @@ -27,8 +27,13 @@ ConfigRadioInt::ConfigRadioInt(const QString& label, const Config::Info& se void ConfigRadioInt::Update() { - if (!isChecked()) - return; - - Config::SetBaseOrCurrent(m_setting, m_value); + if (isChecked()) + { + Config::SetBaseOrCurrent(m_setting, m_value); + emit OnSelected(m_value); + } + else + { + emit OnDeselected(m_value); + } } diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.h b/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.h index d3f5c7e258..147c6391f9 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.h +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigRadio.h @@ -13,6 +13,12 @@ class ConfigRadioInt : public ToolTipRadioButton public: ConfigRadioInt(const QString& label, const Config::Info& setting, int value); +signals: + // Since selecting a new radio button deselects the old one, ::toggled will generate two signals. + // These are convenience functions so you can receive only one signal if desired. + void OnSelected(int new_value); + void OnDeselected(int old_value); + private: void Update(); diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 2a4a62741a..0ffdadb119 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -418,12 +418,6 @@ void Settings::SetStateSlot(int slot) GetQSettings().setValue(QStringLiteral("Emulation/StateSlot"), slot); } -void Settings::SetCursorVisibility(Config::ShowCursor hideCursor) -{ - Config::SetBaseOrCurrent(Config::MAIN_SHOW_CURSOR, hideCursor); - emit CursorVisibilityChanged(); -} - Config::ShowCursor Settings::GetCursorVisibility() const { return Config::Get(Config::MAIN_SHOW_CURSOR); diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index 03c805da5b..479d723e59 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -122,7 +122,6 @@ public: void SetUSBKeyboardConnected(bool connected); // Graphics - void SetCursorVisibility(Config::ShowCursor hideCursor); Config::ShowCursor GetCursorVisibility() const; bool GetLockCursor() const; void SetKeepWindowOnTop(bool top); diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 70f4badf61..b7774cfd81 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -25,6 +25,7 @@ #include "DolphinQt/Config/ConfigControls/ConfigBool.h" #include "DolphinQt/Config/ConfigControls/ConfigChoice.h" +#include "DolphinQt/Config/ConfigControls/ConfigRadio.h" #include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/SignalBlocking.h" @@ -196,14 +197,13 @@ void InterfacePane::CreateInGame() auto* m_vboxlayout_hide_mouse = new QVBoxLayout; mouse_groupbox->setLayout(m_vboxlayout_hide_mouse); - m_radio_cursor_visible_movement = new QRadioButton(tr("On Movement")); - m_radio_cursor_visible_movement->setToolTip( - tr("Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement.")); - m_radio_cursor_visible_never = new QRadioButton(tr("Never")); - m_radio_cursor_visible_never->setToolTip( - tr("Mouse Cursor will never be visible while a game is running.")); - m_radio_cursor_visible_always = new QRadioButton(tr("Always")); - m_radio_cursor_visible_always->setToolTip(tr("Mouse Cursor will always be visible.")); + m_radio_cursor_visible_movement = + new ConfigRadioInt(tr("On Movement"), Config::MAIN_SHOW_CURSOR, + static_cast(Config::ShowCursor::OnMovement)); + m_radio_cursor_visible_never = new ConfigRadioInt(tr("Never"), Config::MAIN_SHOW_CURSOR, + static_cast(Config::ShowCursor::Never)); + m_radio_cursor_visible_always = new ConfigRadioInt( + tr("Always"), Config::MAIN_SHOW_CURSOR, static_cast(Config::ShowCursor::Constantly)); m_vboxlayout_hide_mouse->addWidget(m_radio_cursor_visible_movement); m_vboxlayout_hide_mouse->addWidget(m_radio_cursor_visible_never); @@ -244,12 +244,12 @@ void InterfacePane::ConnectLayout() [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); - connect(m_radio_cursor_visible_movement, &QRadioButton::toggled, this, - &InterfacePane::OnCursorVisibleMovement); - connect(m_radio_cursor_visible_never, &QRadioButton::toggled, this, - &InterfacePane::OnCursorVisibleNever); - connect(m_radio_cursor_visible_always, &QRadioButton::toggled, this, - &InterfacePane::OnCursorVisibleAlways); + connect(m_radio_cursor_visible_movement, &ConfigRadioInt::OnSelected, &Settings::Instance(), + &Settings::CursorVisibilityChanged); + connect(m_radio_cursor_visible_never, &ConfigRadioInt::OnSelected, &Settings::Instance(), + &Settings::CursorVisibilityChanged); + connect(m_radio_cursor_visible_always, &ConfigRadioInt::OnSelected, &Settings::Instance(), + &Settings::CursorVisibilityChanged); connect(m_checkbox_lock_mouse, &QCheckBox::toggled, &Settings::Instance(), [this]() { Settings::Instance().LockCursorChanged(); }); } @@ -296,14 +296,6 @@ void InterfacePane::LoadConfig() if (index > 0) SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); - - // Render Window Options - SignalBlocking(m_radio_cursor_visible_movement) - ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::OnMovement); - SignalBlocking(m_radio_cursor_visible_always) - ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::Constantly); - SignalBlocking(m_radio_cursor_visible_never) - ->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::Never); } void InterfacePane::OnSaveConfig() @@ -321,21 +313,6 @@ void InterfacePane::OnSaveConfig() Config::Save(); } -void InterfacePane::OnCursorVisibleMovement() -{ - Settings::Instance().SetCursorVisibility(Config::ShowCursor::OnMovement); -} - -void InterfacePane::OnCursorVisibleNever() -{ - Settings::Instance().SetCursorVisibility(Config::ShowCursor::Never); -} - -void InterfacePane::OnCursorVisibleAlways() -{ - Settings::Instance().SetCursorVisibility(Config::ShowCursor::Constantly); -} - void InterfacePane::OnLanguageChanged() { ModalMessageBox::information( @@ -393,6 +370,16 @@ void InterfacePane::AddDescriptions() QT_TR_NOOP("Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it." "

If unsure, leave this unchecked."); + static constexpr char TR_CURSOR_VISIBLE_MOVEMENT_DESCRIPTION[] = + QT_TR_NOOP("Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." + "

If unsure, select this mode."); + static constexpr char TR_CURSOR_VISIBLE_NEVER_DESCRIPTION[] = QT_TR_NOOP( + "Hides the Mouse Cursor whenever it is inside the render window and the render window is " + "focused." + "

If unsure, select "On Movement"."); + static constexpr char TR_CURSOR_VISIBLE_ALWAYS_DESCRIPTION[] = QT_TR_NOOP( + "Shows the Mouse Cursor at all times." + "

If unsure, select "On Movement"."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -421,4 +408,10 @@ void InterfacePane::AddDescriptions() m_checkbox_pause_on_focus_lost->SetDescription(tr(TR_PAUSE_ON_FOCUS_LOST_DESCRIPTION)); m_checkbox_lock_mouse->SetDescription(tr(TR_LOCK_MOUSE_DESCRIPTION)); + + m_radio_cursor_visible_movement->SetDescription(tr(TR_CURSOR_VISIBLE_MOVEMENT_DESCRIPTION)); + + m_radio_cursor_visible_never->SetDescription(tr(TR_CURSOR_VISIBLE_NEVER_DESCRIPTION)); + + m_radio_cursor_visible_always->SetDescription(tr(TR_CURSOR_VISIBLE_ALWAYS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 90cd75e3af..17be1377d6 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -6,10 +6,10 @@ #include class ConfigBool; +class ConfigRadioInt; class ConfigStringChoice; class QComboBox; class QLabel; -class QRadioButton; class QVBoxLayout; class ToolTipCheckBox; @@ -28,9 +28,6 @@ private: void UpdateShowDebuggingCheckbox(); void LoadConfig(); void OnSaveConfig(); - void OnCursorVisibleMovement(); - void OnCursorVisibleNever(); - void OnCursorVisibleAlways(); void OnLanguageChanged(); QVBoxLayout* m_main_layout; @@ -51,8 +48,8 @@ private: ConfigBool* m_checkbox_enable_osd; ConfigBool* m_checkbox_show_active_title; ConfigBool* m_checkbox_pause_on_focus_lost; - QRadioButton* m_radio_cursor_visible_movement; - QRadioButton* m_radio_cursor_visible_never; - QRadioButton* m_radio_cursor_visible_always; + ConfigRadioInt* m_radio_cursor_visible_movement; + ConfigRadioInt* m_radio_cursor_visible_never; + ConfigRadioInt* m_radio_cursor_visible_always; ConfigBool* m_checkbox_lock_mouse; }; From de9326bd53702317b1e89d1fbfe00b6d7e4d6731 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 13 Nov 2023 15:08:09 -0800 Subject: [PATCH 046/296] InterfacePane: Add BalloonTip to user style combobox --- .../Core/DolphinQt/Settings/InterfacePane.cpp | 23 +++++++++++-------- .../Core/DolphinQt/Settings/InterfacePane.h | 8 +++---- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index b7774cfd81..9d19a1e2c0 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -27,6 +27,7 @@ #include "DolphinQt/Config/ConfigControls/ConfigChoice.h" #include "DolphinQt/Config/ConfigControls/ConfigRadio.h" #include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" +#include "DolphinQt/Config/ToolTipControls/ToolTipComboBox.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/SignalBlocking.h" #include "DolphinQt/Settings.h" @@ -88,7 +89,8 @@ static ConfigStringChoice* MakeLanguageComboBox() InterfacePane::InterfacePane(QWidget* parent) : QWidget(parent) { CreateLayout(); - LoadConfig(); + UpdateShowDebuggingCheckbox(); + LoadUserStyle(); ConnectLayout(); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, @@ -136,7 +138,7 @@ void InterfacePane::CreateUI() combobox_layout->addRow(tr("&Theme:"), m_combobox_theme); // User Style Combobox - m_combobox_userstyle = new QComboBox; + m_combobox_userstyle = new ToolTipComboBox; m_label_userstyle = new QLabel(tr("Style:")); combobox_layout->addRow(m_label_userstyle, m_combobox_userstyle); @@ -239,7 +241,7 @@ void InterfacePane::ConnectLayout() connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, [this](int index) { Settings::Instance().TriggerThemeChanged(); }); connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this, - &InterfacePane::OnSaveConfig); + &InterfacePane::OnUserStyleChanged); connect(m_combobox_language, &QComboBox::currentIndexChanged, this, [this]() { OnLanguageChanged(); }); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), @@ -284,10 +286,8 @@ void InterfacePane::UpdateShowDebuggingCheckbox() #endif // USE_RETRO_ACHIEVEMENTS } -void InterfacePane::LoadConfig() +void InterfacePane::LoadUserStyle() { - UpdateShowDebuggingCheckbox(); - const Settings::StyleType style_type = Settings::Instance().GetStyleType(); const QString userstyle = Settings::Instance().GetUserStyleName(); const int index = style_type == Settings::StyleType::User ? @@ -298,7 +298,7 @@ void InterfacePane::LoadConfig() SignalBlocking(m_combobox_userstyle)->setCurrentIndex(index); } -void InterfacePane::OnSaveConfig() +void InterfacePane::OnUserStyleChanged() { const auto selected_style = m_combobox_userstyle->currentData(); bool is_builtin_type = false; @@ -309,8 +309,6 @@ void InterfacePane::OnSaveConfig() if (!is_builtin_type) Settings::Instance().SetUserStyleName(selected_style.toString()); Settings::Instance().ApplyStyle(); - - Config::Save(); } void InterfacePane::OnLanguageChanged() @@ -380,6 +378,10 @@ void InterfacePane::AddDescriptions() static constexpr char TR_CURSOR_VISIBLE_ALWAYS_DESCRIPTION[] = QT_TR_NOOP( "Shows the Mouse Cursor at all times." "

If unsure, select "On Movement"."); + static constexpr char TR_USER_STYLE_DESCRIPTION[] = + QT_TR_NOOP("Sets the style of Dolphin's User Interface. Any Custom User Styles that you have " + "loaded will be presented here, allowing you to switch to them." + "

If unsure, select (System)."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); @@ -414,4 +416,7 @@ void InterfacePane::AddDescriptions() m_radio_cursor_visible_never->SetDescription(tr(TR_CURSOR_VISIBLE_NEVER_DESCRIPTION)); m_radio_cursor_visible_always->SetDescription(tr(TR_CURSOR_VISIBLE_ALWAYS_DESCRIPTION)); + + m_combobox_userstyle->SetTitle(tr("Style")); + m_combobox_userstyle->SetDescription(tr(TR_USER_STYLE_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.h b/Source/Core/DolphinQt/Settings/InterfacePane.h index 17be1377d6..90a81d2114 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.h +++ b/Source/Core/DolphinQt/Settings/InterfacePane.h @@ -8,10 +8,10 @@ class ConfigBool; class ConfigRadioInt; class ConfigStringChoice; -class QComboBox; class QLabel; class QVBoxLayout; class ToolTipCheckBox; +class ToolTipComboBox; class InterfacePane final : public QWidget { @@ -26,15 +26,15 @@ private: void AddDescriptions(); void ConnectLayout(); void UpdateShowDebuggingCheckbox(); - void LoadConfig(); - void OnSaveConfig(); + void LoadUserStyle(); + void OnUserStyleChanged(); void OnLanguageChanged(); QVBoxLayout* m_main_layout; ConfigStringChoice* m_combobox_language; ConfigStringChoice* m_combobox_theme; - QComboBox* m_combobox_userstyle; + ToolTipComboBox* m_combobox_userstyle; QLabel* m_label_userstyle; ConfigBool* m_checkbox_top_window; ConfigBool* m_checkbox_use_builtin_title_database; From c3bdd05d2a7d5c0a5b513481ab929cef66e5249b Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 26 May 2024 16:50:12 -0700 Subject: [PATCH 047/296] TAS Input: Enable hotkeys and controller input when Input has focus Enable emulator hotkeys and controller input (when that option is enabled) when a TAS Input window has focus, as if it was the render window instead. This allows TASers to use frame advance and the like without having to switch the focused window or disabling Hotkeys Require Window Focus which also picks up keypresses while other apps are active. Cursor updates are disabled when the TAS Input window has focus, as otherwise the Wii IR widget (and anything else controlled by the mouse) becomes unusable. The cursor continues to work normally when the render window has focus. --- Source/Android/jni/MainAndroid.cpp | 5 +++++ Source/Core/Core/Core.cpp | 3 ++- Source/Core/Core/Host.h | 1 + Source/Core/DolphinNoGUI/MainNoGUI.cpp | 5 +++++ Source/Core/DolphinQt/Host.cpp | 15 +++++++++++++++ Source/Core/DolphinQt/Host.h | 3 +++ Source/Core/DolphinQt/TAS/TASInputWindow.cpp | 16 ++++++++++++++++ Source/Core/DolphinQt/TAS/TASInputWindow.h | 3 +++ Source/Core/DolphinTool/ToolHeadlessPlatform.cpp | 5 +++++ .../DInput/DInputKeyboardMouse.cpp | 12 +++++++++++- .../Quartz/QuartzKeyboardAndMouse.mm | 10 ++++++++-- .../ControllerInterface/Xlib/XInput2.cpp | 13 ++++++++++--- Source/DSPTool/StubHost.cpp | 4 ++++ Source/UnitTests/StubHost.cpp | 4 ++++ 14 files changed, 92 insertions(+), 7 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 9fcf1b33a3..cb1a252d3c 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -173,6 +173,11 @@ bool Host_RendererIsFullscreen() return false; } +bool Host_TASInputHasFocus() +{ + return false; +} + void Host_YieldToUI() { } diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 5c60b3b02f..bae5b15258 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -1073,7 +1073,8 @@ void UpdateInputGate(bool require_focus, bool require_full_focus) { // If the user accepts background input, controls should pass even if an on screen interface is on const bool focus_passes = - !require_focus || (Host_RendererHasFocus() && !Host_UIBlocksControllerState()); + !require_focus || + ((Host_RendererHasFocus() || Host_TASInputHasFocus()) && !Host_UIBlocksControllerState()); // Ignore full focus if we don't require basic focus const bool full_focus_passes = !require_focus || !require_full_focus || (focus_passes && Host_RendererHasFullFocus()); diff --git a/Source/Core/Core/Host.h b/Source/Core/Core/Host.h index 8d22e9d59a..66a5e2d78e 100644 --- a/Source/Core/Core/Host.h +++ b/Source/Core/Core/Host.h @@ -53,6 +53,7 @@ bool Host_UIBlocksControllerState(); bool Host_RendererHasFocus(); bool Host_RendererHasFullFocus(); bool Host_RendererIsFullscreen(); +bool Host_TASInputHasFocus(); void Host_Message(HostMessageID id); void Host_PPCSymbolsChanged(); diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 6cbb2750d2..40145e6e4c 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -111,6 +111,11 @@ bool Host_RendererIsFullscreen() return s_platform->IsWindowFullscreen(); } +bool Host_TASInputHasFocus() +{ + return false; +} + void Host_YieldToUI() { } diff --git a/Source/Core/DolphinQt/Host.cpp b/Source/Core/DolphinQt/Host.cpp index fe339364ab..bb912a7ab2 100644 --- a/Source/Core/DolphinQt/Host.cpp +++ b/Source/Core/DolphinQt/Host.cpp @@ -162,6 +162,11 @@ bool Host::GetGBAFocus() #endif } +bool Host::GetTASInputFocus() const +{ + return m_tas_input_focus; +} + bool Host::GetRenderFullscreen() { return m_render_fullscreen; @@ -177,6 +182,11 @@ void Host::SetRenderFullscreen(bool fullscreen) } } +void Host::SetTASInputFocus(const bool focus) +{ + m_tas_input_focus = focus; +} + void Host::ResizeSurface(int new_width, int new_height) { if (g_presenter) @@ -228,6 +238,11 @@ bool Host_RendererIsFullscreen() return Host::GetInstance()->GetRenderFullscreen(); } +bool Host_TASInputHasFocus() +{ + return Host::GetInstance()->GetTASInputFocus(); +} + void Host_YieldToUI() { qApp->processEvents(QEventLoop::ExcludeUserInputEvents); diff --git a/Source/Core/DolphinQt/Host.h b/Source/Core/DolphinQt/Host.h index 645c4bd54d..b7f21190da 100644 --- a/Source/Core/DolphinQt/Host.h +++ b/Source/Core/DolphinQt/Host.h @@ -25,12 +25,14 @@ public: bool GetRenderFullFocus(); bool GetRenderFullscreen(); bool GetGBAFocus(); + bool GetTASInputFocus() const; void SetMainWindowHandle(void* handle); void SetRenderHandle(void* handle); void SetRenderFocus(bool focus); void SetRenderFullFocus(bool focus); void SetRenderFullscreen(bool fullscreen); + void SetTASInputFocus(bool focus); void ResizeSurface(int new_width, int new_height); signals: @@ -49,4 +51,5 @@ private: std::atomic m_render_focus{false}; std::atomic m_render_full_focus{false}; std::atomic m_render_fullscreen{false}; + std::atomic m_tas_input_focus{false}; }; diff --git a/Source/Core/DolphinQt/TAS/TASInputWindow.cpp b/Source/Core/DolphinQt/TAS/TASInputWindow.cpp index 604a564991..d3dc078375 100644 --- a/Source/Core/DolphinQt/TAS/TASInputWindow.cpp +++ b/Source/Core/DolphinQt/TAS/TASInputWindow.cpp @@ -6,7 +6,9 @@ #include #include +#include #include +#include #include #include #include @@ -17,6 +19,7 @@ #include "Common/CommonTypes.h" +#include "DolphinQt/Host.h" #include "DolphinQt/QtUtils/AspectRatioWidget.h" #include "DolphinQt/QtUtils/QueueOnObject.h" #include "DolphinQt/Resources.h" @@ -268,3 +271,16 @@ std::optional TASInputWindow::GetSpinBox(TASSpinBox* spin, int zer return (spin->GetValue() - zero) / scale; } + +void TASInputWindow::changeEvent(QEvent* const event) +{ + if (event->type() == QEvent::ActivationChange) + { + const bool active_window_is_tas_input = + qobject_cast(QApplication::activeWindow()) != nullptr; + + // Switching between TAS Input windows will call SetTASInputFocus(true) twice, but that's fine. + Host::GetInstance()->SetTASInputFocus(active_window_is_tas_input); + } + QDialog::changeEvent(event); +} diff --git a/Source/Core/DolphinQt/TAS/TASInputWindow.h b/Source/Core/DolphinQt/TAS/TASInputWindow.h index 34cc843633..924e53ac87 100644 --- a/Source/Core/DolphinQt/TAS/TASInputWindow.h +++ b/Source/Core/DolphinQt/TAS/TASInputWindow.h @@ -18,6 +18,7 @@ class QBoxLayout; class QCheckBox; class QDialog; +class QEvent; class QGroupBox; class QSpinBox; class QString; @@ -68,6 +69,8 @@ protected: QKeySequence shortcut_key_sequence, Qt::Orientation orientation, QWidget* shortcut_widget); + void changeEvent(QEvent* event) override; + QGroupBox* m_settings_box; QCheckBox* m_use_controller; QSpinBox* m_turbo_press_frames; diff --git a/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp b/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp index 8c1772406f..0b04cbfa19 100644 --- a/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp +++ b/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp @@ -84,6 +84,11 @@ bool Host_RendererIsFullscreen() return false; } +bool Host_TASInputHasFocus() +{ + return false; +} + void Host_YieldToUI() { } diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp index 3c6a82dcd8..8d7f7c7ada 100644 --- a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp +++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp @@ -179,7 +179,8 @@ void KeyboardMouse::UpdateCursorInput() const auto win_height = std::max(rect.bottom - rect.top, 1l); POINT point = {}; - if (g_controller_interface.IsMouseCenteringRequested() && Host_RendererHasFocus()) + if (g_controller_interface.IsMouseCenteringRequested() && + (Host_RendererHasFocus() || Host_TASInputHasFocus())) { point.x = win_width / 2; point.y = win_height / 2; @@ -189,6 +190,15 @@ void KeyboardMouse::UpdateCursorInput() SetCursorPos(screen_point.x, screen_point.y); g_controller_interface.SetMouseCenteringRequested(false); } + else if (Host_TASInputHasFocus()) + { + // When a TAS Input window has focus and "Enable Controller Input" is checked most types of + // input should be read normally as if the render window had focus instead. The cursor is an + // exception, as otherwise using the mouse to set any control in the TAS Input window will also + // update the Wii IR value (or any other input controlled by the cursor). + + return; + } else { GetCursorPos(&point); diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm index 55f212900d..9a8ddfc6df 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm @@ -244,7 +244,8 @@ Core::DeviceRemoval KeyboardAndMouse::UpdateInput() const double window_width = std::max(bounds.size.width, 1.0); const double window_height = std::max(bounds.size.height, 1.0); - if (g_controller_interface.IsMouseCenteringRequested() && Host_RendererHasFocus()) + if (g_controller_interface.IsMouseCenteringRequested() && + (Host_RendererHasFocus() || Host_TASInputHasFocus())) { m_cursor.x = 0; m_cursor.y = 0; @@ -258,8 +259,13 @@ Core::DeviceRemoval KeyboardAndMouse::UpdateInput() g_controller_interface.SetMouseCenteringRequested(false); } - else + else if (!Host_TASInputHasFocus()) { + // When a TAS Input window has focus and "Enable Controller Input" is checked most types of + // input should be read normally as if the render window had focus instead. The cursor is an + // exception, as otherwise using the mouse to set any control in the TAS Input window will also + // update the Wii IR value (or any other input controlled by the cursor). + NSPoint loc = [NSEvent mouseLocation]; const auto window_scale = g_controller_interface.GetWindowInputScale(); diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp index e4b717e3af..057d774c5b 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp @@ -391,9 +391,16 @@ Core::DeviceRemoval KeyboardMouse::UpdateInput() m_state.axis.z += delta_z; m_state.axis.z /= SCROLL_AXIS_DECAY; - const bool should_center_mouse = - g_controller_interface.IsMouseCenteringRequested() && Host_RendererHasFocus(); - if (update_mouse || should_center_mouse) + const bool should_center_mouse = g_controller_interface.IsMouseCenteringRequested() && + (Host_RendererHasFocus() || Host_TASInputHasFocus()); + + // When a TAS Input window has focus and "Enable Controller Input" is checked most types of + // input should be read normally as if the render window had focus instead. The cursor is an + // exception, as otherwise using the mouse to set any control in the TAS Input window will also + // update the Wii IR value (or any other input controlled by the cursor). + const bool should_update_mouse = update_mouse && !Host_TASInputHasFocus(); + + if (should_update_mouse || should_center_mouse) UpdateCursor(should_center_mouse); if (update_keyboard) diff --git a/Source/DSPTool/StubHost.cpp b/Source/DSPTool/StubHost.cpp index d32346a457..e270acb23a 100644 --- a/Source/DSPTool/StubHost.cpp +++ b/Source/DSPTool/StubHost.cpp @@ -59,6 +59,10 @@ bool Host_RendererIsFullscreen() { return false; } +bool Host_TASInputHasFocus() +{ + return false; +} void Host_YieldToUI() { } diff --git a/Source/UnitTests/StubHost.cpp b/Source/UnitTests/StubHost.cpp index 47200bd40c..dc7dfe2277 100644 --- a/Source/UnitTests/StubHost.cpp +++ b/Source/UnitTests/StubHost.cpp @@ -63,6 +63,10 @@ bool Host_RendererIsFullscreen() { return false; } +bool Host_TASInputHasFocus() +{ + return false; +} void Host_YieldToUI() { } From b7406717921c96ab59f72bf71bccebab9f0a3b55 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Tue, 14 May 2024 13:22:43 -0700 Subject: [PATCH 048/296] BreakpointWidget: Make buttons, removing selecting row on clicking, and fix OnContextMenu which relied on select rows. Add functions to edit breakpoints. --- .../DolphinQt/Debugger/BreakpointWidget.cpp | 243 ++++++++++++++---- .../DolphinQt/Debugger/BreakpointWidget.h | 13 +- 2 files changed, 208 insertions(+), 48 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index e0d34d74f8..8df7eb76e7 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -38,7 +39,21 @@ enum CustomRole ADDRESS_ROLE = Qt::UserRole, IS_MEMCHECK_ROLE }; -} + +enum TableColumns +{ + ENABLED_COLUMN = 0, + TYPE_COLUMN = 1, + SYMBOL_COLUMN = 2, + ADDRESS_COLUMN = 3, + END_ADDRESS_COLUMN = 4, + BREAK_COLUMN = 5, + LOG_COLUMN = 6, + READ_COLUMN = 7, + WRITE_COLUMN = 8, + CONDITION_COLUMN = 9, +}; +} // namespace // Fix icons not centering properly in a QTableWidget. class CustomDelegate : public QStyledItemDelegate @@ -128,12 +143,11 @@ void BreakpointWidget::CreateWidgets() m_table->setItemDelegate(new CustomDelegate(this)); m_table->setTabKeyNavigation(false); m_table->setContentsMargins(0, 0, 0, 0); - m_table->setColumnCount(6); - m_table->setSelectionMode(QAbstractItemView::SingleSelection); - m_table->setSelectionBehavior(QAbstractItemView::SelectRows); - m_table->setEditTriggers(QAbstractItemView::NoEditTriggers); + m_table->setColumnCount(10); + m_table->setSelectionMode(QAbstractItemView::NoSelection); m_table->verticalHeader()->hide(); + connect(m_table, &QTableWidget::itemClicked, this, &BreakpointWidget::OnClicked); connect(m_table, &QTableWidget::customContextMenuRequested, this, &BreakpointWidget::OnContextMenu); @@ -181,6 +195,34 @@ void BreakpointWidget::showEvent(QShowEvent* event) Update(); } +void BreakpointWidget::OnClicked(QTableWidgetItem* item) +{ + if (!item) + return; + + if (item->column() == ADDRESS_COLUMN || item->column() == END_ADDRESS_COLUMN) + return; + + const u32 address = static_cast(m_table->item(item->row(), 0)->data(ADDRESS_ROLE).toUInt()); + + if (item->column() == ENABLED_COLUMN) + { + if (item->data(IS_MEMCHECK_ROLE).toBool()) + m_system.GetPowerPC().GetMemChecks().ToggleBreakPoint(address); + else + m_system.GetPowerPC().GetBreakPoints().ToggleBreakPoint(address); + + emit BreakpointsChanged(); + Update(); + return; + } + + if (m_table->item(item->row(), 0)->data(IS_MEMCHECK_ROLE).toBool()) + EditMBP(address, item->column()); + else + EditBreakpoint(address, item->column()); +} + void BreakpointWidget::UpdateButtonsEnabled() { if (!isVisible()) @@ -198,12 +240,20 @@ void BreakpointWidget::Update() return; m_table->clear(); + m_table->setHorizontalHeaderLabels({tr("Active"), tr("Type"), tr("Function"), tr("Address"), + tr("End Addr"), tr("Break"), tr("Log"), tr("Read"), + tr("Write"), tr("Condition")}); + m_table->horizontalHeader()->setStretchLastSection(true); - m_table->setHorizontalHeaderLabels( - {tr("Active"), tr("Type"), tr("Function"), tr("Address"), tr("Flags"), tr("Condition")}); + // Get row height for icons + m_table->setRowCount(1); + const int height = m_table->rowHeight(0); + m_table->setRowCount(0); - int i = 0; - m_table->setRowCount(i); + // Create icon based on row height, downscaled for whitespace padding. + const int downscale = static_cast(0.8 * height); + QPixmap enabled_icon = + Resources::GetThemeIcon("debugger_breakpoint").pixmap(QSize(downscale, downscale)); const auto create_item = [](const QString& string = {}) { QTableWidgetItem* item = new QTableWidgetItem(string); @@ -211,46 +261,50 @@ void BreakpointWidget::Update() return item; }; + QTableWidgetItem empty_item = QTableWidgetItem(); + empty_item.setFlags(Qt::NoItemFlags); + QTableWidgetItem icon_item = QTableWidgetItem(); + icon_item.setData(Qt::DecorationRole, enabled_icon); + auto& power_pc = m_system.GetPowerPC(); auto& breakpoints = power_pc.GetBreakPoints(); auto& memchecks = power_pc.GetMemChecks(); auto& ppc_symbol_db = power_pc.GetSymbolDB(); + int i = 0; + // Breakpoints for (const auto& bp : breakpoints.GetBreakPoints()) { m_table->setRowCount(i + 1); - auto* active = create_item(bp.is_enabled ? tr("on") : tr("off")); + auto* active = create_item(); active->setData(ADDRESS_ROLE, bp.address); active->setData(IS_MEMCHECK_ROLE, false); + if (bp.is_enabled) + active->setData(Qt::DecorationRole, enabled_icon); - m_table->setItem(i, 0, active); - m_table->setItem(i, 1, create_item(QStringLiteral("BP"))); + m_table->setItem(i, ENABLED_COLUMN, active); + m_table->setItem(i, TYPE_COLUMN, create_item(QStringLiteral("BP"))); if (const Common::Symbol* const symbol = ppc_symbol_db.GetSymbolFromAddr(bp.address)) - m_table->setItem(i, 2, create_item(QString::fromStdString(symbol->name))); + m_table->setItem(i, SYMBOL_COLUMN, create_item(QString::fromStdString(symbol->name))); - m_table->setItem(i, 3, + m_table->setItem(i, ADDRESS_COLUMN, create_item(QStringLiteral("%1").arg(bp.address, 8, 16, QLatin1Char('0')))); - QString flags; - - if (bp.break_on_hit) - flags.append(QLatin1Char{'b'}); - - if (bp.log_on_hit) - flags.append(QLatin1Char{'l'}); - - m_table->setItem(i, 4, create_item(flags)); + m_table->setItem(i, BREAK_COLUMN, bp.break_on_hit ? icon_item.clone() : empty_item.clone()); + m_table->setItem(i, LOG_COLUMN, bp.log_on_hit ? icon_item.clone() : empty_item.clone()); + m_table->setItem(i, READ_COLUMN, empty_item.clone()); + m_table->setItem(i, WRITE_COLUMN, empty_item.clone()); QString condition; if (bp.condition) condition = QString::fromStdString(bp.condition->GetText()); - m_table->setItem(i, 5, create_item(condition)); + m_table->setItem(i, CONDITION_COLUMN, create_item(condition)); i++; } @@ -259,20 +313,21 @@ void BreakpointWidget::Update() for (const auto& mbp : memchecks.GetMemChecks()) { m_table->setRowCount(i + 1); - auto* active = - create_item(mbp.is_enabled && (mbp.break_on_hit || mbp.log_on_hit) ? tr("on") : tr("off")); + auto* active = create_item(); active->setData(ADDRESS_ROLE, mbp.start_address); active->setData(IS_MEMCHECK_ROLE, true); + if (mbp.is_enabled) + active->setData(Qt::DecorationRole, enabled_icon); - m_table->setItem(i, 0, active); - m_table->setItem(i, 1, create_item(QStringLiteral("MBP"))); + m_table->setItem(i, ENABLED_COLUMN, active); + m_table->setItem(i, TYPE_COLUMN, create_item(QStringLiteral("MBP"))); if (const Common::Symbol* const symbol = ppc_symbol_db.GetSymbolFromAddr(mbp.start_address)) - m_table->setItem(i, 2, create_item(QString::fromStdString(symbol->name))); + m_table->setItem(i, SYMBOL_COLUMN, create_item(QString::fromStdString(symbol->name))); if (mbp.is_ranged) { - m_table->setItem(i, 3, + m_table->setItem(i, ADDRESS_COLUMN, create_item(QStringLiteral("%1 - %2") .arg(mbp.start_address, 8, 16, QLatin1Char('0')) .arg(mbp.end_address, 8, 16, QLatin1Char('0')))); @@ -280,28 +335,31 @@ void BreakpointWidget::Update() else { m_table->setItem( - i, 3, create_item(QStringLiteral("%1").arg(mbp.start_address, 8, 16, QLatin1Char('0')))); + i, ADDRESS_COLUMN, + create_item(QStringLiteral("%1").arg(mbp.start_address, 8, 16, QLatin1Char('0')))); } - QString flags; - - if (mbp.is_break_on_read) - flags.append(QLatin1Char{'r'}); - - if (mbp.is_break_on_write) - flags.append(QLatin1Char{'w'}); - - m_table->setItem(i, 4, create_item(flags)); + m_table->setItem(i, BREAK_COLUMN, mbp.break_on_hit ? icon_item.clone() : empty_item.clone()); + m_table->setItem(i, LOG_COLUMN, mbp.log_on_hit ? icon_item.clone() : empty_item.clone()); + m_table->setItem(i, READ_COLUMN, mbp.is_break_on_read ? icon_item.clone() : empty_item.clone()); + m_table->setItem(i, WRITE_COLUMN, + mbp.is_break_on_write ? icon_item.clone() : empty_item.clone()); QString condition; if (mbp.condition) condition = QString::fromStdString(mbp.condition->GetText()); - m_table->setItem(i, 5, create_item(condition)); + m_table->setItem(i, CONDITION_COLUMN, create_item(condition)); i++; } + + m_table->resizeColumnToContents(ENABLED_COLUMN); + m_table->resizeColumnToContents(BREAK_COLUMN); + m_table->resizeColumnToContents(LOG_COLUMN); + m_table->resizeColumnToContents(READ_COLUMN); + m_table->resizeColumnToContents(WRITE_COLUMN); } void BreakpointWidget::OnClear() @@ -389,15 +447,13 @@ void BreakpointWidget::OnSave() ini.Save(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetGameID() + ".ini"); } -void BreakpointWidget::OnContextMenu() +void BreakpointWidget::OnContextMenu(const QPoint& pos) { - const auto& selected_items = m_table->selectedItems(); - if (selected_items.isEmpty()) - { + const auto row = m_table->rowAt(pos.y()); + const auto& selected_item = m_table->item(row, 0); + if (selected_item == nullptr) return; - } - const auto& selected_item = selected_items.constFirst(); const auto bp_address = static_cast(selected_item->data(ADDRESS_ROLE).toUInt()); const auto is_memory_breakpoint = selected_item->data(IS_MEMCHECK_ROLE).toBool(); @@ -459,6 +515,41 @@ void BreakpointWidget::AddBP(u32 addr, bool temp, bool break_on_hit, bool log_on Update(); } +void BreakpointWidget::EditBreakpoint(u32 address, int edit, std::optional string) +{ + TBreakPoint bp; + const TBreakPoint* old_bp = m_system.GetPowerPC().GetBreakPoints().GetBreakpoint(address); + bp.is_enabled = edit == ENABLED_COLUMN ? !old_bp->is_enabled : old_bp->is_enabled; + bp.log_on_hit = edit == LOG_COLUMN ? !old_bp->log_on_hit : old_bp->log_on_hit; + bp.break_on_hit = edit == BREAK_COLUMN ? !old_bp->break_on_hit : old_bp->break_on_hit; + + if (edit == ADDRESS_COLUMN && string.has_value()) + { + bool ok; + const u32 new_address = string.value().toUInt(&ok, 16); + if (!ok) + return; + + bp.address = new_address; + } + else + { + bp.address = address; + } + + if (edit == CONDITION_COLUMN && string.has_value()) + bp.condition = Expression::TryParse(string.value().toUtf8().constData()); + else if (old_bp->condition.has_value() && edit != CONDITION_COLUMN) + bp.condition = Expression::TryParse(old_bp->condition.value().GetText()); + + // Unlike MBPs it Add() for TBreakpoint doesn't check to see if it already exists. + m_system.GetPowerPC().GetBreakPoints().Remove(address); + m_system.GetPowerPC().GetBreakPoints().Add(std::move(bp)); + + emit BreakpointsChanged(); + Update(); +} + void BreakpointWidget::AddAddressMBP(u32 addr, bool on_read, bool on_write, bool do_log, bool do_break, const QString& condition) { @@ -504,3 +595,61 @@ void BreakpointWidget::AddRangedMBP(u32 from, u32 to, bool on_read, bool on_writ emit BreakpointsChanged(); Update(); } + +void BreakpointWidget::EditMBP(u32 address, int edit, std::optional string) +{ + bool address_changed = false; + + TMemCheck mbp; + const TMemCheck* old_mbp = m_system.GetPowerPC().GetMemChecks().GetMemCheck(address); + mbp.is_enabled = edit == ENABLED_COLUMN ? !old_mbp->is_enabled : old_mbp->is_enabled; + mbp.log_on_hit = edit == LOG_COLUMN ? !old_mbp->log_on_hit : old_mbp->log_on_hit; + mbp.break_on_hit = edit == BREAK_COLUMN ? !old_mbp->break_on_hit : old_mbp->break_on_hit; + mbp.is_break_on_read = + edit == READ_COLUMN ? !old_mbp->is_break_on_read : old_mbp->is_break_on_read; + mbp.is_break_on_write = + edit == WRITE_COLUMN ? !old_mbp->is_break_on_write : old_mbp->is_break_on_write; + + if ((edit == ADDRESS_COLUMN || edit == END_ADDRESS_COLUMN) && string.has_value()) + { + bool ok; + const u32 new_address = string.value().toUInt(&ok, 16); + if (!ok) + return; + + if (edit == ADDRESS_COLUMN) + { + mbp.start_address = new_address; + mbp.end_address = old_mbp->end_address; + address_changed = true; + } + else if (edit == END_ADDRESS_COLUMN) + { + // Will update existing mbp, so does not use address_changed bool. + mbp.start_address = old_mbp->start_address; + mbp.end_address = new_address; + } + } + else + { + mbp.start_address = old_mbp->start_address; + mbp.end_address = old_mbp->end_address; + } + + mbp.is_ranged = mbp.start_address != mbp.end_address; + + if (edit == CONDITION_COLUMN && string.has_value()) + mbp.condition = Expression::TryParse(string.value().toUtf8().constData()); + else if (old_mbp->condition.has_value() && edit != CONDITION_COLUMN) + mbp.condition = Expression::TryParse(old_mbp->condition.value().GetText()); + + { + const QSignalBlocker blocker(Settings::Instance()); + m_system.GetPowerPC().GetMemChecks().Add(std::move(mbp)); + if (address_changed) + m_system.GetPowerPC().GetMemChecks().Remove(address); + } + + emit BreakpointsChanged(); + Update(); +} diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h index b29bc8eb16..f6f0ff4f65 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h @@ -3,15 +3,22 @@ #pragma once +#include + #include +#include #include "Common/CommonTypes.h" class QAction; class QCloseEvent; +class QPoint; class QShowEvent; class QTableWidget; +class QTableWidgetItem; class QToolBar; +class QWidget; + namespace Core { class System; @@ -47,12 +54,16 @@ protected: private: void CreateWidgets(); + void EditBreakpoint(u32 address, int edit, std::optional = std::nullopt); + void EditMBP(u32 address, int edit, std::optional = std::nullopt); + void OnClear(); + void OnClicked(QTableWidgetItem* item); void OnNewBreakpoint(); void OnEditBreakpoint(u32 address, bool is_instruction_bp); void OnLoad(); void OnSave(); - void OnContextMenu(); + void OnContextMenu(const QPoint& pos); void UpdateIcons(); From e52b814eb2119f51a68285aa3a7581f0350f6fbd Mon Sep 17 00:00:00 2001 From: TryTwo Date: Tue, 14 May 2024 13:40:11 -0700 Subject: [PATCH 049/296] BreakpointWidget: Direct editing of address cells. Prevent symbol cells from being affected. --- .../DolphinQt/Debugger/BreakpointWidget.cpp | 95 +++++++++++++++---- .../DolphinQt/Debugger/BreakpointWidget.h | 2 +- 2 files changed, 80 insertions(+), 17 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 8df7eb76e7..95932182fb 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -114,6 +114,8 @@ BreakpointWidget::BreakpointWidget(QWidget* parent) Update(); }); + connect(m_table, &QTableWidget::itemChanged, this, &BreakpointWidget::OnItemChanged); + connect(&Settings::Instance(), &Settings::BreakpointsVisibilityChanged, this, [this](bool visible) { setHidden(!visible); }); @@ -239,6 +241,8 @@ void BreakpointWidget::Update() if (!isVisible()) return; + const QSignalBlocker blocker(m_table); + m_table->clear(); m_table->setHorizontalHeaderLabels({tr("Active"), tr("Type"), tr("Function"), tr("Address"), tr("End Addr"), tr("Break"), tr("Log"), tr("Read"), @@ -288,12 +292,19 @@ void BreakpointWidget::Update() m_table->setItem(i, ENABLED_COLUMN, active); m_table->setItem(i, TYPE_COLUMN, create_item(QStringLiteral("BP"))); + auto* symbol_item = create_item(); + if (const Common::Symbol* const symbol = ppc_symbol_db.GetSymbolFromAddr(bp.address)) - m_table->setItem(i, SYMBOL_COLUMN, create_item(QString::fromStdString(symbol->name))); + symbol_item->setText( + QString::fromStdString(symbol->name).simplified().remove(QStringLiteral(" "))); - m_table->setItem(i, ADDRESS_COLUMN, - create_item(QStringLiteral("%1").arg(bp.address, 8, 16, QLatin1Char('0')))); + m_table->setItem(i, SYMBOL_COLUMN, symbol_item); + auto* address_item = create_item(QStringLiteral("%1").arg(bp.address, 8, 16, QLatin1Char('0'))); + address_item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable); + + m_table->setItem(i, ADDRESS_COLUMN, address_item); + m_table->setItem(i, END_ADDRESS_COLUMN, empty_item.clone()); m_table->setItem(i, BREAK_COLUMN, bp.break_on_hit ? icon_item.clone() : empty_item.clone()); m_table->setItem(i, LOG_COLUMN, bp.log_on_hit ? icon_item.clone() : empty_item.clone()); m_table->setItem(i, READ_COLUMN, empty_item.clone()); @@ -322,23 +333,29 @@ void BreakpointWidget::Update() m_table->setItem(i, ENABLED_COLUMN, active); m_table->setItem(i, TYPE_COLUMN, create_item(QStringLiteral("MBP"))); - if (const Common::Symbol* const symbol = ppc_symbol_db.GetSymbolFromAddr(mbp.start_address)) - m_table->setItem(i, SYMBOL_COLUMN, create_item(QString::fromStdString(symbol->name))); + auto* symbol_item = create_item(); - if (mbp.is_ranged) + if (const Common::Symbol* const symbol = ppc_symbol_db.GetSymbolFromAddr(mbp.start_address)) { - m_table->setItem(i, ADDRESS_COLUMN, - create_item(QStringLiteral("%1 - %2") - .arg(mbp.start_address, 8, 16, QLatin1Char('0')) - .arg(mbp.end_address, 8, 16, QLatin1Char('0')))); - } - else - { - m_table->setItem( - i, ADDRESS_COLUMN, - create_item(QStringLiteral("%1").arg(mbp.start_address, 8, 16, QLatin1Char('0')))); + symbol_item->setText( + QString::fromStdString(symbol->name).simplified().remove(QStringLiteral(" "))); } + m_table->setItem(i, SYMBOL_COLUMN, symbol_item); + + auto* start_address_item = + create_item(QStringLiteral("%1").arg(mbp.start_address, 8, 16, QLatin1Char('0'))); + start_address_item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable); + + m_table->setItem(i, ADDRESS_COLUMN, start_address_item); + + auto* end_address_item = + create_item(QStringLiteral("%1").arg(mbp.end_address, 8, 16, QLatin1Char('0'))); + end_address_item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable); + end_address_item->setData(ADDRESS_ROLE, mbp.end_address); + + m_table->setItem(i, END_ADDRESS_COLUMN, end_address_item); + m_table->setItem(i, BREAK_COLUMN, mbp.break_on_hit ? icon_item.clone() : empty_item.clone()); m_table->setItem(i, LOG_COLUMN, mbp.log_on_hit ? icon_item.clone() : empty_item.clone()); m_table->setItem(i, READ_COLUMN, mbp.is_break_on_read ? icon_item.clone() : empty_item.clone()); @@ -499,6 +516,52 @@ void BreakpointWidget::OnContextMenu(const QPoint& pos) menu->exec(QCursor::pos()); } +void BreakpointWidget::OnItemChanged(QTableWidgetItem* item) +{ + if (item->column() != ADDRESS_COLUMN && item->column() != END_ADDRESS_COLUMN) + return; + + bool ok; + const u32 new_address = item->text().toUInt(&ok, 16); + if (!ok) + return; + + const bool is_code_bp = !m_table->item(item->row(), 0)->data(IS_MEMCHECK_ROLE).toBool(); + const u32 base_address = + static_cast(m_table->item(item->row(), 0)->data(ADDRESS_ROLE).toUInt()); + + if (is_code_bp) + { + if (item->column() != ADDRESS_COLUMN || new_address == base_address) + return; + + EditBreakpoint(base_address, item->column(), item->text()); + } + else + { + const u32 end_address = static_cast( + m_table->item(item->row(), END_ADDRESS_COLUMN)->data(ADDRESS_ROLE).toUInt()); + + // Need to check that the start/base address is always <= end_address. + if ((item->column() == ADDRESS_COLUMN && new_address == base_address) || + (item->column() == END_ADDRESS_COLUMN && new_address == end_address)) + { + return; + } + + if ((item->column() == ADDRESS_COLUMN && new_address <= end_address) || + (item->column() == END_ADDRESS_COLUMN && new_address >= base_address)) + { + EditMBP(base_address, item->column(), item->text()); + } + else + { + // Removes invalid text from cell. + Update(); + } + } +} + void BreakpointWidget::AddBP(u32 addr) { AddBP(addr, false, true, true, {}); diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h index f6f0ff4f65..3e204b41c1 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h @@ -64,7 +64,7 @@ private: void OnLoad(); void OnSave(); void OnContextMenu(const QPoint& pos); - + void OnItemChanged(QTableWidgetItem* item); void UpdateIcons(); Core::System& m_system; From 1396e927c72095a6dfd1e95c36ef594e8bd7b63e Mon Sep 17 00:00:00 2001 From: TryTwo Date: Tue, 14 May 2024 13:49:00 -0700 Subject: [PATCH 050/296] BreakpointWidget: Give conditionals a popup text entry on click. --- .../DolphinQt/Debugger/BreakpointWidget.cpp | 39 ++++++++++++------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 95932182fb..cfceac3ef8 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -5,6 +5,7 @@ #include #include +#include #include #include #include @@ -219,10 +220,26 @@ void BreakpointWidget::OnClicked(QTableWidgetItem* item) return; } + std::optional string = std::nullopt; + + if (item->column() == CONDITION_COLUMN) + { + bool ok; + QString new_text = QInputDialog::getMultiLineText( + this, tr("Edit Conditional"), tr("Edit conditional expression"), item->text(), &ok); + + if (!ok || item->text() == new_text) + return; + + // If new_text is empty, leaving string as nullopt will clear the conditional. + if (!new_text.isEmpty()) + string = new_text; + } + if (m_table->item(item->row(), 0)->data(IS_MEMCHECK_ROLE).toBool()) - EditMBP(address, item->column()); + EditMBP(address, item->column(), string); else - EditBreakpoint(address, item->column()); + EditBreakpoint(address, item->column(), string); } void BreakpointWidget::UpdateButtonsEnabled() @@ -310,12 +327,9 @@ void BreakpointWidget::Update() m_table->setItem(i, READ_COLUMN, empty_item.clone()); m_table->setItem(i, WRITE_COLUMN, empty_item.clone()); - QString condition; - - if (bp.condition) - condition = QString::fromStdString(bp.condition->GetText()); - - m_table->setItem(i, CONDITION_COLUMN, create_item(condition)); + m_table->setItem( + i, CONDITION_COLUMN, + create_item(bp.condition ? QString::fromStdString(bp.condition->GetText()) : QString())); i++; } @@ -362,12 +376,9 @@ void BreakpointWidget::Update() m_table->setItem(i, WRITE_COLUMN, mbp.is_break_on_write ? icon_item.clone() : empty_item.clone()); - QString condition; - - if (mbp.condition) - condition = QString::fromStdString(mbp.condition->GetText()); - - m_table->setItem(i, CONDITION_COLUMN, create_item(condition)); + m_table->setItem( + i, CONDITION_COLUMN, + create_item(mbp.condition ? QString::fromStdString(mbp.condition->GetText()) : QString())); i++; } From 3526f3cd9f7aa1389b9b596de4be7fbefb0e827d Mon Sep 17 00:00:00 2001 From: TryTwo Date: Fri, 17 May 2024 14:49:15 -0700 Subject: [PATCH 051/296] Color unused cells and disabled rows. (bug?) Does not update on dark/light style change, as no signals are sent. --- .../DolphinQt/Debugger/BreakpointWidget.cpp | 41 +++++++++++++++---- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index cfceac3ef8..130e68e860 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -124,7 +124,11 @@ BreakpointWidget::BreakpointWidget(QWidget* parent) setHidden(!enabled || !Settings::Instance().IsBreakpointsVisible()); }); - connect(&Settings::Instance(), &Settings::ThemeChanged, this, &BreakpointWidget::UpdateIcons); + connect(&Settings::Instance(), &Settings::ThemeChanged, this, [this]() { + UpdateIcons(); + Update(); + }); + UpdateIcons(); } @@ -269,7 +273,9 @@ void BreakpointWidget::Update() // Get row height for icons m_table->setRowCount(1); const int height = m_table->rowHeight(0); - m_table->setRowCount(0); + + int i = 0; + m_table->setRowCount(i); // Create icon based on row height, downscaled for whitespace padding. const int downscale = static_cast(0.8 * height); @@ -286,14 +292,18 @@ void BreakpointWidget::Update() empty_item.setFlags(Qt::NoItemFlags); QTableWidgetItem icon_item = QTableWidgetItem(); icon_item.setData(Qt::DecorationRole, enabled_icon); + QTableWidgetItem disabled_item = QTableWidgetItem(); + disabled_item.setFlags(Qt::NoItemFlags); + + const QColor disabled_color = + Settings::Instance().IsThemeDark() ? QColor(75, 75, 75) : QColor(225, 225, 225); + disabled_item.setBackground(disabled_color); auto& power_pc = m_system.GetPowerPC(); auto& breakpoints = power_pc.GetBreakPoints(); auto& memchecks = power_pc.GetMemChecks(); auto& ppc_symbol_db = power_pc.GetSymbolDB(); - int i = 0; - // Breakpoints for (const auto& bp : breakpoints.GetBreakPoints()) { @@ -321,16 +331,24 @@ void BreakpointWidget::Update() address_item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable); m_table->setItem(i, ADDRESS_COLUMN, address_item); - m_table->setItem(i, END_ADDRESS_COLUMN, empty_item.clone()); m_table->setItem(i, BREAK_COLUMN, bp.break_on_hit ? icon_item.clone() : empty_item.clone()); m_table->setItem(i, LOG_COLUMN, bp.log_on_hit ? icon_item.clone() : empty_item.clone()); - m_table->setItem(i, READ_COLUMN, empty_item.clone()); - m_table->setItem(i, WRITE_COLUMN, empty_item.clone()); + + m_table->setItem(i, END_ADDRESS_COLUMN, disabled_item.clone()); + m_table->setItem(i, READ_COLUMN, disabled_item.clone()); + m_table->setItem(i, WRITE_COLUMN, disabled_item.clone()); m_table->setItem( i, CONDITION_COLUMN, create_item(bp.condition ? QString::fromStdString(bp.condition->GetText()) : QString())); + // Color rows that are effectively disabled. + if (!bp.is_enabled || (!bp.log_on_hit && !bp.break_on_hit)) + { + for (int col = 0; col < m_table->columnCount(); col++) + m_table->item(i, col)->setBackground(disabled_color); + } + i++; } @@ -380,10 +398,19 @@ void BreakpointWidget::Update() i, CONDITION_COLUMN, create_item(mbp.condition ? QString::fromStdString(mbp.condition->GetText()) : QString())); + // Color rows that are effectively disabled. + if (!mbp.is_enabled || (!mbp.is_break_on_write && !mbp.is_break_on_read) || + (!mbp.break_on_hit && !mbp.log_on_hit)) + { + for (int col = 0; col < m_table->columnCount(); col++) + m_table->item(i, col)->setBackground(disabled_color); + } + i++; } m_table->resizeColumnToContents(ENABLED_COLUMN); + m_table->resizeColumnToContents(TYPE_COLUMN); m_table->resizeColumnToContents(BREAK_COLUMN); m_table->resizeColumnToContents(LOG_COLUMN); m_table->resizeColumnToContents(READ_COLUMN); From 51b69bb3399544d9d5c271e719975c41ff200d46 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 22:31:54 -0500 Subject: [PATCH 052/296] VideoCommon: use imgui mouse position event when the mouse position changes --- Source/Core/VideoCommon/OnScreenUI.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 1231851c9a..a7ecb263b4 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -472,8 +472,7 @@ void OnScreenUI::SetMousePos(float x, float y) { auto lock = GetImGuiLock(); - ImGui::GetIO().MousePos.x = x; - ImGui::GetIO().MousePos.y = y; + ImGui::GetIO().AddMousePosEvent(x, y); } void OnScreenUI::SetMousePress(u32 button_mask) From 1d4f758b14f26bb8d0344399d838faadcbfd8ab2 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 22:36:12 -0500 Subject: [PATCH 053/296] Common: add file serialization/deserialization functions for JSON --- Source/Core/Common/JsonUtil.cpp | 28 ++++++++++++++++++++++++++++ Source/Core/Common/JsonUtil.h | 3 +++ 2 files changed, 31 insertions(+) diff --git a/Source/Core/Common/JsonUtil.cpp b/Source/Core/Common/JsonUtil.cpp index 3e842c5c18..fa9b8a73c9 100644 --- a/Source/Core/Common/JsonUtil.cpp +++ b/Source/Core/Common/JsonUtil.cpp @@ -3,6 +3,10 @@ #include "Common/JsonUtil.h" +#include + +#include "Common/FileUtil.h" + picojson::object ToJsonObject(const Common::Vec3& vec) { picojson::object obj; @@ -38,3 +42,27 @@ std::optional ReadBoolFromJson(const picojson::object& obj, const std::str return std::nullopt; return it->second.get(); } + +bool JsonToFile(const std::string& filename, const picojson::value& root, bool prettify) +{ + std::ofstream json_stream; + File::OpenFStream(json_stream, filename, std::ios_base::out); + if (!json_stream.is_open()) + { + return false; + } + json_stream << root.serialize(prettify); + return true; +} + +bool JsonFromFile(const std::string& filename, picojson::value* root, std::string* error) +{ + std::string json_data; + if (!File::ReadFileToString(filename, json_data)) + { + return false; + } + + *error = picojson::parse(*root, json_data); + return error->empty(); +} diff --git a/Source/Core/Common/JsonUtil.h b/Source/Core/Common/JsonUtil.h index eec836d507..309f32f4b4 100644 --- a/Source/Core/Common/JsonUtil.h +++ b/Source/Core/Common/JsonUtil.h @@ -56,3 +56,6 @@ std::optional ReadBoolFromJson(const picojson::object& obj, const std::str picojson::object ToJsonObject(const Common::Vec3& vec); void FromJson(const picojson::object& obj, Common::Vec3& vec); + +bool JsonToFile(const std::string& filename, const picojson::value& root, bool prettify = false); +bool JsonFromFile(const std::string& filename, picojson::value* root, std::string* error); From d494059164ef1ac47c1efc899cd2c571e42ef6a0 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 23:08:05 -0500 Subject: [PATCH 054/296] Common: update json util function for converting to numeric value to use a static_cast. As discussed, a Saturating cast doesn't make sense when converting a double to a float --- Source/Core/Common/JsonUtil.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/Common/JsonUtil.h b/Source/Core/Common/JsonUtil.h index 309f32f4b4..c830d777a4 100644 --- a/Source/Core/Common/JsonUtil.h +++ b/Source/Core/Common/JsonUtil.h @@ -9,7 +9,6 @@ #include -#include "Common/MathUtil.h" #include "Common/Matrix.h" // Ideally this would use a concept like, 'template ' to constrain it, @@ -47,7 +46,7 @@ std::optional ReadNumericFromJson(const picojson::object& obj, const std:: return std::nullopt; if (!it->second.is()) return std::nullopt; - return MathUtil::SaturatingCast(it->second.get()); + return static_cast(it->second.get()); } std::optional ReadStringFromJson(const picojson::object& obj, const std::string& key); From e92f59e2d4c79f2391d775be6fd735de153fbf3b Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 23:08:39 -0500 Subject: [PATCH 055/296] Common: add JsonUtil cpp which was missed initially --- Source/Core/Common/CMakeLists.txt | 1 + Source/Core/DolphinLib.props | 1 + 2 files changed, 2 insertions(+) diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index af48ba7e13..dd71f8b967 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -87,6 +87,7 @@ add_library(common JitRegister.cpp JitRegister.h JsonUtil.h + JsonUtil.cpp Lazy.h LinearDiskCache.h Logging/ConsoleListener.h diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index beec3e9a2d..e18d83375b 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -813,6 +813,7 @@ + From 50b95bbea998f0e677edf0c10b3e1e535f510782 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 23:13:25 -0500 Subject: [PATCH 056/296] InputCommon / VideoCommon: update to use new JsonFromFile function --- .../DynamicInputTextures/DITConfiguration.cpp | 14 +---- .../Assets/DirectFilesystemAssetLibrary.cpp | 62 ++++++------------- .../GraphicsModSystem/Config/GraphicsMod.cpp | 13 +--- .../Config/GraphicsModGroup.cpp | 13 +--- 4 files changed, 29 insertions(+), 73 deletions(-) diff --git a/Source/Core/InputCommon/DynamicInputTextures/DITConfiguration.cpp b/Source/Core/InputCommon/DynamicInputTextures/DITConfiguration.cpp index 89aa00c8d3..870dbf9bba 100644 --- a/Source/Core/InputCommon/DynamicInputTextures/DITConfiguration.cpp +++ b/Source/Core/InputCommon/DynamicInputTextures/DITConfiguration.cpp @@ -12,6 +12,7 @@ #include "Common/CommonPaths.h" #include "Common/FileUtil.h" #include "Common/IniFile.h" +#include "Common/JsonUtil.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" #include "Core/ConfigManager.h" @@ -23,18 +24,9 @@ namespace InputCommon::DynamicInputTextures { Configuration::Configuration(const std::string& json_path) { - std::string json_data; - if (!File::ReadFileToString(json_path, json_data)) - { - ERROR_LOG_FMT(VIDEO, "Failed to load dynamic input json file '{}'", json_path); - m_valid = false; - return; - } - picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(json_path, &root, &error)) { ERROR_LOG_FMT(VIDEO, "Failed to load dynamic input json file '{}' due to parse error: {}", json_path, error); diff --git a/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp b/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp index be5159b448..90d77d8ec9 100644 --- a/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp +++ b/Source/Core/VideoCommon/Assets/DirectFilesystemAssetLibrary.cpp @@ -10,6 +10,7 @@ #include "Common/FileUtil.h" #include "Common/IOFile.h" +#include "Common/JsonUtil.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" #include "VideoCommon/Assets/MaterialAsset.h" @@ -133,24 +134,16 @@ CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadPixelShader(const return {}; } - std::string json_data; - if (!File::ReadFileToString(PathToString(metadata->second), json_data)) - { - ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the json file '{}',", asset_id, - PathToString(metadata->second)); - return {}; - } - picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(PathToString(metadata->second), &root, &error)) { ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the json file '{}', due to parse error: {}", asset_id, PathToString(metadata->second), error); return {}; } + if (!root.is()) { ERROR_LOG_FMT( @@ -181,18 +174,21 @@ CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadMaterial(const As } const auto& asset_path = asset_map.begin()->second; - std::string json_data; - if (!File::ReadFileToString(PathToString(asset_path), json_data)) + std::size_t metadata_size; { - ERROR_LOG_FMT(VIDEO, "Asset '{}' error - material failed to load the json file '{}',", - asset_id, PathToString(asset_path)); - return {}; + std::error_code ec; + metadata_size = std::filesystem::file_size(asset_path, ec); + if (ec) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to get material file size with error '{}'!", + asset_id, ec); + return {}; + } } picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(PathToString(asset_path), &root, &error)) { ERROR_LOG_FMT( VIDEO, @@ -220,7 +216,7 @@ CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadMaterial(const As return {}; } - return LoadInfo{json_data.size(), GetLastAssetWriteTime(asset_id)}; + return LoadInfo{metadata_size, GetLastAssetWriteTime(asset_id)}; } CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadMesh(const AssetID& asset_id, @@ -292,18 +288,9 @@ CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadMesh(const AssetI return {}; } - std::string json_data; - if (!File::ReadFileToString(PathToString(metadata->second), json_data)) - { - ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the json file '{}'!", asset_id, - PathToString(metadata->second)); - return {}; - } - picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(PathToString(metadata->second), &root, &error)) { ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the json file '{}', due to parse error: {}", @@ -362,18 +349,9 @@ CustomAssetLibrary::LoadInfo DirectFilesystemAssetLibrary::LoadTexture(const Ass return {}; } - std::string json_data; - if (!File::ReadFileToString(PathToString(metadata->second), json_data)) - { - ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the json file '{}',", asset_id, - PathToString(metadata->second)); - return {}; - } - picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(PathToString(metadata->second), &root, &error)) { ERROR_LOG_FMT(VIDEO, "Asset '{}' error - failed to load the json file '{}', due to parse error: {}", diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsMod.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsMod.cpp index 62586202b5..76d1ad6af6 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsMod.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsMod.cpp @@ -7,6 +7,7 @@ #include "Common/CommonPaths.h" #include "Common/FileUtil.h" +#include "Common/JsonUtil.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" @@ -15,17 +16,9 @@ std::optional GraphicsModConfig::Create(const std::string& file_path, Source source) { - std::string json_data; - if (!File::ReadFileToString(file_path, json_data)) - { - ERROR_LOG_FMT(VIDEO, "Failed to load graphics mod json file '{}'", file_path); - return std::nullopt; - } - picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(file_path, &root, &error)) { ERROR_LOG_FMT(VIDEO, "Failed to load graphics mod json file '{}' due to parse error: {}", file_path, error); diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsModGroup.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsModGroup.cpp index 0873c09e91..5fa2c011b6 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsModGroup.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Config/GraphicsModGroup.cpp @@ -12,6 +12,7 @@ #include "Common/CommonPaths.h" #include "Common/FileSearch.h" #include "Common/FileUtil.h" +#include "Common/JsonUtil.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" #include "Core/ConfigManager.h" @@ -42,17 +43,9 @@ void GraphicsModGroupConfig::Load() std::set known_paths; if (File::Exists(file_path)) { - std::string json_data; - if (!File::ReadFileToString(file_path, json_data)) - { - ERROR_LOG_FMT(VIDEO, "Failed to load graphics mod group json file '{}'", file_path); - return; - } - picojson::value root; - const auto error = picojson::parse(root, json_data); - - if (!error.empty()) + std::string error; + if (!JsonFromFile(file_path, &root, &error)) { ERROR_LOG_FMT(VIDEO, "Failed to load graphics mod group json file '{}' due to parse error: {}", From 11c37de69568ad1de4b82aa130ea445b10f42695 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 23:19:51 -0500 Subject: [PATCH 057/296] VideoCommon: update custom pipeline to use a a texture's sampler if the texture is in use --- .../Runtime/CustomPipeline.cpp | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.cpp index 46ca20cc38..473cc06690 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.cpp @@ -306,7 +306,7 @@ void CustomPipeline::UpdatePixelData( if (texture_asset->m_texture) { g_gfx->SetTexture(sampler_index, texture_asset->m_texture.get()); - g_gfx->SetSamplerState(sampler_index, RenderState::GetLinearSamplerState()); + g_gfx->SetSamplerState(sampler_index, texture_data->m_sampler); } else { @@ -336,17 +336,20 @@ void CustomPipeline::UpdatePixelData( first_slice.m_levels[0].format, 0, texture_type); texture_asset->m_texture = g_gfx->CreateTexture( texture_config, fmt::format("Custom shader texture '{}'", property.m_code_name)); - for (std::size_t slice_index = 0; slice_index < texture_data->m_texture.m_slices.size(); - slice_index++) + if (texture_asset->m_texture) { - auto& slice = texture_data->m_texture.m_slices[slice_index]; - for (u32 level_index = 0; level_index < static_cast(slice.m_levels.size()); - ++level_index) + for (std::size_t slice_index = 0; slice_index < texture_data->m_texture.m_slices.size(); + slice_index++) { - auto& level = slice.m_levels[level_index]; - texture_asset->m_texture->Load(level_index, level.width, level.height, - level.row_length, level.data.data(), level.data.size(), - static_cast(slice_index)); + auto& slice = texture_data->m_texture.m_slices[slice_index]; + for (u32 level_index = 0; level_index < static_cast(slice.m_levels.size()); + ++level_index) + { + auto& level = slice.m_levels[level_index]; + texture_asset->m_texture->Load(level_index, level.width, level.height, + level.row_length, level.data.data(), + level.data.size(), static_cast(slice_index)); + } } } } From 9bc8ea6d6f5ee3e8f277eb93c724180a2ff8ebd7 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 31 May 2024 10:00:50 +0100 Subject: [PATCH 058/296] IOS/STM: sort ioctl numbers (NFC) --- Source/Core/Core/IOS/STM/STM.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/IOS/STM/STM.h b/Source/Core/Core/IOS/STM/STM.h index e5eb750cd8..ae2068b792 100644 --- a/Source/Core/Core/IOS/STM/STM.h +++ b/Source/Core/Core/IOS/STM/STM.h @@ -15,20 +15,23 @@ namespace IOS::HLE { enum { + // /dev/stm/eventhook IOCTL_STM_EVENTHOOK = 0x1000, - IOCTL_STM_GET_IDLEMODE = 0x3001, - IOCTL_STM_RELEASE_EH = 0x3002, + + // /dev/stm/immediate IOCTL_STM_HOTRESET = 0x2001, IOCTL_STM_HOTRESET_FOR_PD = 0x2002, IOCTL_STM_SHUTDOWN = 0x2003, IOCTL_STM_IDLE = 0x2004, IOCTL_STM_WAKEUP = 0x2005, + IOCTL_STM_GET_IDLEMODE = 0x3001, + IOCTL_STM_RELEASE_EH = 0x3002, + IOCTL_STM_READDDRREG = 0x4001, + IOCTL_STM_READDDRREG2 = 0x4002, IOCTL_STM_VIDIMMING = 0x5001, IOCTL_STM_LEDFLASH = 0x6001, IOCTL_STM_LEDMODE = 0x6002, IOCTL_STM_READVER = 0x7001, - IOCTL_STM_READDDRREG = 0x4001, - IOCTL_STM_READDDRREG2 = 0x4002, }; enum From 96e2f5eef68bd12c27d9414303ed1458abb9d0ab Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 31 May 2024 10:21:59 +0100 Subject: [PATCH 059/296] IOS/STM: fix IPC reply for unknown ioctl requests --- Source/Core/Core/IOS/Device.h | 1 + Source/Core/Core/IOS/STM/STM.cpp | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/Device.h b/Source/Core/Core/IOS/Device.h index 64d14adf3f..d393dcd239 100644 --- a/Source/Core/Core/IOS/Device.h +++ b/Source/Core/Core/IOS/Device.h @@ -29,6 +29,7 @@ enum ReturnCode : s32 IPC_EMAX = -5, // Too many file descriptors open IPC_ENOENT = -6, // File not found IPC_EQUEUEFULL = -8, // Queue full + IPC_UNKNOWN = -9, // Unknown IPC_EIO = -12, // ECC error IPC_ENOMEM = -22, // Alloc failed during request FS_EINVAL = -101, // Invalid path diff --git a/Source/Core/Core/IOS/STM/STM.cpp b/Source/Core/Core/IOS/STM/STM.cpp index 0b0e1bbbda..06571b4ae3 100644 --- a/Source/Core/Core/IOS/STM/STM.cpp +++ b/Source/Core/Core/IOS/STM/STM.cpp @@ -58,8 +58,20 @@ std::optional STMImmediateDevice::IOCtl(const IOCtlRequest& request) INFO_LOG_FMT(IOS_STM, " IOCTL_STM_LEDMODE"); break; + case IOCTL_STM_HOTRESET_FOR_PD: + case IOCTL_STM_WAKEUP: + case IOCTL_STM_GET_IDLEMODE: + case IOCTL_STM_READDDRREG: + case IOCTL_STM_READDDRREG2: + case IOCTL_STM_LEDFLASH: + case IOCTL_STM_READVER: + ERROR_LOG_FMT(IOS_STM, "{} - Unimplemented IOCtl: {}", GetDeviceName(), request.request); + break; + default: request.DumpUnknown(GetSystem(), GetDeviceName(), Common::Log::LogType::IOS_STM); + return_value = IPC_UNKNOWN; + break; } return IPCReply(return_value); @@ -73,7 +85,7 @@ STMEventHookDevice::~STMEventHookDevice() std::optional STMEventHookDevice::IOCtl(const IOCtlRequest& request) { if (request.request != IOCTL_STM_EVENTHOOK) - return IPCReply(IPC_EINVAL); + return IPCReply(IPC_UNKNOWN); if (s_event_hook_request) return IPCReply(IPC_EEXIST); From cf6a392979cab265a28f39810e3a1c545e58b5bf Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 17:26:14 -0700 Subject: [PATCH 060/296] Branch Watch Tool: Smarter Context Menu Also, right-clicking the table's scroll area when all columns are hidden will show the column visibility menu. --- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 217 ++++++++++-------- .../DolphinQt/Debugger/BranchWatchDialog.h | 18 +- .../Debugger/BranchWatchTableModel.cpp | 12 - .../Debugger/BranchWatchTableModel.h | 1 - 4 files changed, 130 insertions(+), 118 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index c20b2e3c2d..810c13cc9c 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -99,7 +100,6 @@ public: this->*member = std::nullopt; invalidateRowsFilter(); } - void OnDelete(QModelIndexList index_list); bool IsBranchTypeAllowed(UGeckoInstruction inst) const; void SetInspected(const QModelIndex& index); @@ -155,13 +155,6 @@ bool BranchWatchProxyModel::filterAcceptsRow(int source_row, const QModelIndex&) return true; } -void BranchWatchProxyModel::OnDelete(QModelIndexList index_list) -{ - std::transform(index_list.begin(), index_list.end(), index_list.begin(), - [this](const QModelIndex& index) { return mapToSource(index); }); - sourceModel()->OnDelete(std::move(index_list)); -} - static constexpr bool BranchSavesLR(UGeckoInstruction inst) { DEBUG_ASSERT(inst.OPCD == 18 || inst.OPCD == 16 || @@ -801,68 +794,18 @@ void BranchWatchDialog::OnTableClicked(const QModelIndex& index) void BranchWatchDialog::OnTableContextMenu(const QPoint& pos) { + if (m_table_view->horizontalHeader()->hiddenSectionCount() == Column::NumberOfColumns) + { + m_mnu_column_visibility->exec(m_table_view->viewport()->mapToGlobal(pos)); + return; + } const QModelIndex index = m_table_view->indexAt(pos); if (!index.isValid()) return; - QModelIndexList index_list = m_table_view->selectionModel()->selectedRows(index.column()); - - QMenu* const menu = new QMenu; - menu->setAttribute(Qt::WA_DeleteOnClose, true); - - menu->addAction(tr("&Delete"), [this, index_list]() { OnTableDelete(std::move(index_list)); }); - switch (index.column()) - { - case Column::Origin: - { - QAction* const action = menu->addAction(tr("Insert &NOP")); - if (Core::GetState(m_system) != Core::State::Uninitialized) - connect(action, &QAction::triggered, - [this, index_list]() { OnTableSetNOP(std::move(index_list)); }); - else - action->setEnabled(false); - menu->addAction(tr("&Copy Address"), [this, index_list = std::move(index_list)]() { - OnTableCopyAddress(std::move(index_list)); - }); - break; - } - case Column::Destination: - { - QAction* const action = menu->addAction(tr("Insert &BLR")); - const bool enable_action = - Core::GetState(m_system) != Core::State::Uninitialized && - std::all_of(index_list.begin(), index_list.end(), [this](const QModelIndex& idx) { - const QModelIndex sibling = idx.siblingAtColumn(Column::Instruction); - return BranchSavesLR(m_table_proxy->data(sibling, UserRole::ClickRole).value()); - }); - if (enable_action) - connect(action, &QAction::triggered, - [this, index_list]() { OnTableSetBLR(std::move(index_list)); }); - else - action->setEnabled(false); - menu->addAction(tr("&Copy Address"), [this, index_list = std::move(index_list)]() { - OnTableCopyAddress(std::move(index_list)); - }); - break; - } - case Column::OriginSymbol: - case Column::DestinSymbol: - { - QAction* const action = menu->addAction(tr("Insert &BLR at start")); - const bool enable_action = - Core::GetState(m_system) != Core::State::Uninitialized && - std::all_of(index_list.begin(), index_list.end(), [this](const QModelIndex& idx) { - return m_table_proxy->data(idx, UserRole::ClickRole).isValid(); - }); - if (enable_action) - connect(action, &QAction::triggered, [this, index_list = std::move(index_list)]() { - OnTableSetBLR(std::move(index_list)); - }); - else - action->setEnabled(false); - break; - } - } - menu->exec(m_table_view->viewport()->mapToGlobal(pos)); + m_index_list_temp = m_table_view->selectionModel()->selectedRows(index.column()); + GetTableContextMenu(index)->exec(m_table_view->viewport()->mapToGlobal(pos)); + m_index_list_temp.clear(); + m_index_list_temp.shrink_to_fit(); } void BranchWatchDialog::OnTableHeaderContextMenu(const QPoint& pos) @@ -870,61 +813,51 @@ void BranchWatchDialog::OnTableHeaderContextMenu(const QPoint& pos) m_mnu_column_visibility->exec(m_table_view->horizontalHeader()->mapToGlobal(pos)); } -void BranchWatchDialog::OnTableDelete(QModelIndexList index_list) +void BranchWatchDialog::OnTableDelete() { - m_table_proxy->OnDelete(std::move(index_list)); + std::ranges::transform( + m_index_list_temp, m_index_list_temp.begin(), + [this](const QModelIndex& index) { return m_table_proxy->mapToSource(index); }); + std::ranges::sort(m_index_list_temp, std::less{}); + for (const auto& index : std::ranges::reverse_view{m_index_list_temp}) + { + if (!index.isValid()) + continue; + m_table_model->removeRow(index.row()); + } UpdateStatus(); } void BranchWatchDialog::OnTableDeleteKeypress() { - OnTableDelete(m_table_view->selectionModel()->selectedRows()); + m_index_list_temp = m_table_view->selectionModel()->selectedRows(); + OnTableDelete(); + m_index_list_temp.clear(); + m_index_list_temp.shrink_to_fit(); } -void BranchWatchDialog::OnTableSetBLR(QModelIndexList index_list) +void BranchWatchDialog::OnTableSetBLR() { - for (const QModelIndex& index : index_list) - { - m_system.GetPowerPC().GetDebugInterface().SetPatch( - Core::CPUThreadGuard{m_system}, - m_table_proxy->data(index, UserRole::ClickRole).value(), 0x4e800020); - m_table_proxy->SetInspected(index); - } - // TODO: This is not ideal. What I need is a signal for when memory has been changed by the GUI, - // but I cannot find one. UpdateDisasmDialog comes close, but does too much in one signal. For - // example, CodeViewWidget will scroll to the current PC when UpdateDisasmDialog is signaled. This - // seems like a pervasive issue. For example, modifying an instruction in the CodeViewWidget will - // not reflect in the MemoryViewWidget, and vice versa. Neither of these widgets changing memory - // will reflect in the JITWidget, either. At the very least, we can make sure the CodeWidget - // is updated in an acceptable way. - m_code_widget->Update(); + SetStubPatches(0x4e800020); } -void BranchWatchDialog::OnTableSetNOP(QModelIndexList index_list) +void BranchWatchDialog::OnTableSetNOP() { - for (const QModelIndex& index : index_list) - { - m_system.GetPowerPC().GetDebugInterface().SetPatch( - Core::CPUThreadGuard{m_system}, - m_table_proxy->data(index, UserRole::ClickRole).value(), 0x60000000); - m_table_proxy->SetInspected(index); - } - // Same issue as OnSetBLR. - m_code_widget->Update(); + SetStubPatches(0x60000000); } -void BranchWatchDialog::OnTableCopyAddress(QModelIndexList index_list) +void BranchWatchDialog::OnTableCopyAddress() { - auto iter = index_list.begin(); - if (iter == index_list.end()) + auto iter = m_index_list_temp.begin(); + if (iter == m_index_list_temp.end()) return; QString text; - text.reserve(index_list.size() * 9 - 1); + text.reserve(m_index_list_temp.size() * 9 - 1); while (true) { text.append(QString::number(m_table_proxy->data(*iter, UserRole::ClickRole).value(), 16)); - if (++iter == index_list.end()) + if (++iter == m_index_list_temp.end()) break; text.append(QChar::fromLatin1('\n')); } @@ -1019,3 +952,85 @@ void BranchWatchDialog::AutoSave(const Core::CPUThreadGuard& guard) return; Save(guard, m_autosave_filepath ? m_autosave_filepath.value() : GetSnapshotDefaultFilepath()); } + +void BranchWatchDialog::SetStubPatches(u32 value) const +{ + auto& debug_interface = m_system.GetPowerPC().GetDebugInterface(); + for (const Core::CPUThreadGuard guard(m_system); const QModelIndex& index : m_index_list_temp) + { + debug_interface.SetPatch(guard, m_table_proxy->data(index, UserRole::ClickRole).value(), + value); + m_table_proxy->SetInspected(index); + } + // TODO: This is not ideal. What I need is a signal for when memory has been changed by the GUI, + // but I cannot find one. UpdateDisasmDialog comes close, but does too much in one signal. For + // example, CodeViewWidget will scroll to the current PC when UpdateDisasmDialog is signaled. This + // seems like a pervasive issue. For example, modifying an instruction in the CodeViewWidget will + // not reflect in the MemoryViewWidget, and vice versa. Neither of these widgets changing memory + // will reflect in the JITWidget, either. At the very least, we can make sure the CodeWidget + // is updated in an acceptable way. + m_code_widget->Update(); +} + +QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) +{ + if (m_mnu_table_context == nullptr) + { + m_mnu_table_context = new QMenu(this); + m_mnu_table_context->addAction(tr("&Delete"), this, &BranchWatchDialog::OnTableDelete); + m_act_insert_nop = + m_mnu_table_context->addAction(tr("Insert &NOP"), this, &BranchWatchDialog::OnTableSetNOP); + m_act_insert_blr = + m_mnu_table_context->addAction(tr("Insert &BLR"), this, &BranchWatchDialog::OnTableSetBLR); + m_act_copy_address = m_mnu_table_context->addAction(tr("&Copy Address"), this, + &BranchWatchDialog::OnTableCopyAddress); + } + + bool supported_column = true; + switch (index.column()) + { + case Column::Origin: + m_act_insert_blr->setVisible(false); + m_act_insert_nop->setVisible(true); + m_act_insert_nop->setEnabled(Core::GetState(m_system) != Core::State::Uninitialized); + m_act_copy_address->setEnabled(true); + break; + case Column::Destination: + { + m_act_insert_nop->setVisible(false); + m_act_insert_blr->setVisible(true); + const bool all_branches_save_lr = + Core::GetState(m_system) != Core::State::Uninitialized && + std::all_of( + m_index_list_temp.begin(), m_index_list_temp.end(), [this](const QModelIndex& idx) { + const QModelIndex sibling = idx.siblingAtColumn(Column::Instruction); + return BranchSavesLR(m_table_proxy->data(sibling, UserRole::ClickRole).value()); + }); + m_act_insert_blr->setEnabled(all_branches_save_lr); + m_act_copy_address->setEnabled(true); + break; + } + case Column::OriginSymbol: + case Column::DestinSymbol: + { + m_act_insert_nop->setVisible(false); + m_act_insert_blr->setVisible(true); + const bool all_symbols_valid = + Core::GetState(m_system) != Core::State::Uninitialized && + std::all_of(m_index_list_temp.begin(), m_index_list_temp.end(), + [this](const QModelIndex& idx) { + return m_table_proxy->data(idx, UserRole::ClickRole).isValid(); + }); + m_act_insert_blr->setEnabled(all_symbols_valid); + m_act_copy_address->setEnabled(all_symbols_valid); + break; + } + default: + m_act_insert_nop->setVisible(false); + m_act_insert_blr->setVisible(false); + supported_column = false; + break; + } + m_act_copy_address->setVisible(supported_column); + return m_mnu_table_context; +} diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h index b45f4c8563..b4dcc8812d 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -9,6 +9,8 @@ #include #include +#include "Common/CommonTypes.h" + namespace Core { class BranchWatch; @@ -85,11 +87,11 @@ private: void OnTableClicked(const QModelIndex& index); void OnTableContextMenu(const QPoint& pos); void OnTableHeaderContextMenu(const QPoint& pos); - void OnTableDelete(QModelIndexList index_list); + void OnTableDelete(); void OnTableDeleteKeypress(); - void OnTableSetBLR(QModelIndexList index_list); - void OnTableSetNOP(QModelIndexList index_list); - void OnTableCopyAddress(QModelIndexList index_list); + void OnTableSetBLR(); + void OnTableSetNOP(); + void OnTableCopyAddress(); void SaveSettings(); @@ -102,6 +104,9 @@ private: void Save(const Core::CPUThreadGuard& guard, const std::string& filepath); void Load(const Core::CPUThreadGuard& guard, const std::string& filepath); void AutoSave(const Core::CPUThreadGuard& guard); + void SetStubPatches(u32 value) const; + + [[nodiscard]] QMenu* GetTableContextMenu(const QModelIndex& index); Core::System& m_system; Core::BranchWatch& m_branch_watch; @@ -110,6 +115,10 @@ private: QPushButton *m_btn_start_pause, *m_btn_clear_watch, *m_btn_path_was_taken, *m_btn_path_not_taken, *m_btn_was_overwritten, *m_btn_not_overwritten, *m_btn_wipe_recent_hits; QAction* m_act_autosave; + QAction* m_act_insert_nop; + QAction* m_act_insert_blr; + QAction* m_act_copy_address; + QMenu* m_mnu_table_context = nullptr; QMenu* m_mnu_column_visibility; QToolBar* m_control_toolbar; @@ -119,5 +128,6 @@ private: QStatusBar* m_status_bar; QTimer* m_timer; + QModelIndexList m_index_list_temp; std::optional m_autosave_filepath; }; diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp index 08d7ae021d..488530b34b 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp @@ -144,18 +144,6 @@ void BranchWatchTableModel::OnWipeInspection() roles); } -void BranchWatchTableModel::OnDelete(QModelIndexList index_list) -{ - std::sort(index_list.begin(), index_list.end()); - // TODO C++20: std::ranges::reverse_view - for (auto iter = index_list.rbegin(); iter != index_list.rend(); ++iter) - { - if (!iter->isValid()) - continue; - removeRow(iter->row()); - } -} - void BranchWatchTableModel::Save(const Core::CPUThreadGuard& guard, std::FILE* file) const { m_branch_watch.Save(guard, file); diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h index aad2fd783a..500a8ca53c 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.h @@ -97,7 +97,6 @@ public: void OnBranchNotOverwritten(const Core::CPUThreadGuard& guard); void OnWipeRecentHits(); void OnWipeInspection(); - void OnDelete(QModelIndexList index_list); void Save(const Core::CPUThreadGuard& guard, std::FILE* file) const; void Load(const Core::CPUThreadGuard& guard, std::FILE* file); From b9e11a3a35c1bdf9eaa27e8314b7ec58d3b68ca6 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 1 Jun 2024 17:36:20 +0200 Subject: [PATCH 061/296] Android: Adopt a new versionCode scheme Right now, we assign a versionCode to each Android build of Dolphin by counting the total number of git commits made. This has worked fine so far, but it won't work as-is for the new release process. Let's say we're currently on commit 20000. If we want to create a release under the new release process, we would create a release branch, add a new commit on it that updates the release name in CMake files and so on, and create a tag for that commit. The Android build of this release commit would get the version code 20001. However, the master branch is also going to get a commit with the version code 20001 sooner or later, and this commit would be an entirely different commit than commit 20001 on the release branch. This isn't much of a problem for people downloading Dolphin from dolphin-emu.org, but it's a big problem for Google Play, as Google Play doesn't allow us to upload two builds with the same version code. This commit makes us calculate the Android version code in a new way: The number of commits times two, and if the current build isn't a release build, plus 1. (We check whether the current build is a release build by checking whether there's a tag for the current commit.) With this new version code scheme, the release commit described in my example would get the version code 40002, and the master commit would get the version code 40003. This lets us upload both corresponding builds to Google Play, and also lets the user switch from the release build to the development build if they would like to. (Under normal circumstances, Android forbids installing a build with an older version code than the currently installed build. Therefore, whether the 1 is added for release builds or for development builds is a decision with consequences.) --- Source/Android/app/build.gradle.kts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index a191d9daa7..851ac51ae9 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -170,7 +170,7 @@ fun getGitVersion(): String { fun getBuildVersionCode(): Int { try { - return Integer.valueOf( + val commitCount = Integer.valueOf( ProcessBuilder("git", "rev-list", "--first-parent", "--count", "HEAD") .directory(project.rootDir) .redirectOutput(ProcessBuilder.Redirect.PIPE) @@ -178,6 +178,15 @@ fun getBuildVersionCode(): Int { .start().inputStream.bufferedReader().use { it.readText() } .trim() ) + + val isRelease = ProcessBuilder("git", "describe", "--exact-match", "HEAD") + .directory(project.rootDir) + .redirectOutput(ProcessBuilder.Redirect.PIPE) + .redirectError(ProcessBuilder.Redirect.PIPE) + .start() + .waitFor() == 0 + + return commitCount * 2 + (if (isRelease) 0 else 1) } catch (e: Exception) { logger.error("Cannot find git, defaulting to dummy version code") } From c2bc2ccd23cfabc2a6d8ac0295fef7b669206e28 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 1 Jun 2024 23:21:04 -0500 Subject: [PATCH 062/296] VideoCommon: pull texture sampler out of texture cache so that it can be used in other places in the future --- Source/Core/VideoCommon/TextureCacheBase.cpp | 17 ++++++++--------- Source/Core/VideoCommon/TextureCacheBase.h | 7 ++++++- Source/Core/VideoCommon/VertexManagerBase.cpp | 14 ++++++++++++-- 3 files changed, 26 insertions(+), 12 deletions(-) diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index 7184ea725e..5ef7d3fc98 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -1012,8 +1012,8 @@ static bool IsAnisostropicEnhancementSafe(const TexMode0& tm0) return !(tm0.min_filter == FilterMode::Near && tm0.mag_filter == FilterMode::Near); } -static void SetSamplerState(u32 index, float custom_tex_scale, bool custom_tex, - bool has_arbitrary_mips) +SamplerState TextureCacheBase::GetSamplerState(u32 index, float custom_tex_scale, bool custom_tex, + bool has_arbitrary_mips) { const TexMode0& tm0 = bpmem.tex.GetUnit(index).texMode0; @@ -1073,13 +1073,11 @@ static void SetSamplerState(u32 index, float custom_tex_scale, bool custom_tex, state.tm0.anisotropic_filtering = false; } - g_gfx->SetSamplerState(index, state); - auto& system = Core::System::GetInstance(); - auto& pixel_shader_manager = system.GetPixelShaderManager(); - pixel_shader_manager.SetSamplerState(index, state.tm0.hex, state.tm1.hex); + return state; } -void TextureCacheBase::BindTextures(BitSet32 used_textures) +void TextureCacheBase::BindTextures(BitSet32 used_textures, + const std::array& samplers) { auto& system = Core::System::GetInstance(); auto& pixel_shader_manager = system.GetPixelShaderManager(); @@ -1091,8 +1089,9 @@ void TextureCacheBase::BindTextures(BitSet32 used_textures) g_gfx->SetTexture(i, tentry->texture.get()); pixel_shader_manager.SetTexDims(i, tentry->native_width, tentry->native_height); - const float custom_tex_scale = tentry->GetWidth() / float(tentry->native_width); - SetSamplerState(i, custom_tex_scale, tentry->is_custom_tex, tentry->has_arbitrary_mips); + auto& state = samplers[i]; + g_gfx->SetSamplerState(i, state); + pixel_shader_manager.SetSamplerState(i, state.tm0.hex, state.tm1.hex); } } diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h index 998ff446d9..1a06fa671a 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.h +++ b/Source/Core/VideoCommon/TextureCacheBase.h @@ -33,6 +33,7 @@ class AbstractFramebuffer; class AbstractStagingTexture; class PointerWrap; +struct SamplerState; struct VideoConfig; namespace VideoCommon @@ -282,7 +283,7 @@ public: RcTcacheEntry GetXFBTexture(u32 address, u32 width, u32 height, u32 stride, MathUtil::Rectangle* display_rect); - virtual void BindTextures(BitSet32 used_textures); + virtual void BindTextures(BitSet32 used_textures, const std::array& samplers); void CopyRenderTargetToTexture(u32 dstAddr, EFBCopyFormat dstFormat, u32 width, u32 height, u32 dstStride, bool is_depth_copy, const MathUtil::Rectangle& srcRect, bool isIntensity, @@ -308,6 +309,10 @@ public: static bool AllCopyFilterCoefsNeeded(const std::array& coefficients); static bool CopyFilterCanOverflow(const std::array& coefficients); + // Get a new sampler state + static SamplerState GetSamplerState(u32 index, float custom_tex_scale, bool custom_tex, + bool has_arbitrary_mips); + protected: // Decodes the specified data to the GPU texture specified by entry. // Returns false if the configuration is not supported. diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index b51cfa19e0..02edb56d35 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -563,13 +563,19 @@ void VertexManagerBase::Flush() const auto used_textures = UsedTextures(); std::vector texture_names; Common::SmallVector texture_units; + std::array samplers; if (!m_cull_all) { if (!g_ActiveConfig.bGraphicMods) { for (const u32 i : used_textures) { - g_texture_cache->Load(TextureInfo::FromStage(i)); + const auto cache_entry = g_texture_cache->Load(TextureInfo::FromStage(i)); + if (!cache_entry) + continue; + const float custom_tex_scale = cache_entry->GetWidth() / float(cache_entry->native_width); + samplers[i] = TextureCacheBase::GetSamplerState( + i, custom_tex_scale, cache_entry->is_custom_tex, cache_entry->has_arbitrary_mips); } } else @@ -585,6 +591,10 @@ void VertexManagerBase::Flush() texture_names.push_back(cache_entry->texture_info_name); texture_units.push_back(i); } + + const float custom_tex_scale = cache_entry->GetWidth() / float(cache_entry->native_width); + samplers[i] = TextureCacheBase::GetSamplerState( + i, custom_tex_scale, cache_entry->is_custom_tex, cache_entry->has_arbitrary_mips); } } } @@ -633,7 +643,7 @@ void VertexManagerBase::Flush() // Texture loading can cause palettes to be applied (-> uniforms -> draws). // Palette application does not use vertices, only a full-screen quad, so this is okay. // Same with GPU texture decoding, which uses compute shaders. - g_texture_cache->BindTextures(used_textures); + g_texture_cache->BindTextures(used_textures, samplers); if (PerfQueryBase::ShouldEmulate()) g_perf_query->EnableQuery(bpmem.zcontrol.early_ztest ? PQG_ZCOMP_ZCOMPLOC : PQG_ZCOMP); From ea325023abe5a329bca769b1e28503468a9102b9 Mon Sep 17 00:00:00 2001 From: MayImilae Date: Sun, 2 Jun 2024 07:42:40 -0700 Subject: [PATCH 063/296] Replaces the temporary Retroachievement default badges. --- Data/Sys/Resources/achievements_game.png | Bin 460 -> 1234 bytes Data/Sys/Resources/achievements_locked.png | Bin 235 -> 560 bytes Data/Sys/Resources/achievements_player.png | Bin 335 -> 1164 bytes Data/Sys/Resources/achievements_unlocked.png | Bin 235 -> 583 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Data/Sys/Resources/achievements_game.png b/Data/Sys/Resources/achievements_game.png index 624c3a917d1b8bcb726ec283180320fc0bb1bf91..dc8fb7767de00e0fcdf92d42aaad937da99c604d 100644 GIT binary patch delta 1226 zcmX@Ze2H^{L_G&H0|UcVw{|WD1_sFz*NBqf{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^ z!jq{s3=9l`0X`wFB_$FEUp1(}(dg@uK=xw-lI`8hc`Sy@?md3n{<)wQ*?MfF8RX=!N<4Gqx&A7U67Sj0VD z978H@y_tEl?6Cq*+s(6&RQ;q5)c$9eOP~f2W-x z(G9O}PGfEfbv?gD<={zIuORs}ZLNj}TJsv09Tt3k%qmoIM*!mwulFj^=i^!gPOf$F zH*1=~a(iF48Iz|PZ}^Fo6Bz4TG`pLH4=t=s6lY6*(5p7vCm4*>!!1Z@Xu)MxDirTho39 zeu;jTyFBu{ul@A>zgOhWOw_T~JA6^%-1S)`pLciP>*bf#>i5m4VrLMvnG^iiM!F;H;QB26cX8YM z-dF$io!9hX`vMhqMOKCu-UNTPB}G_k*<)&T%eK`>}l51Lso$iyIrl zuG;9|nW9!7`B3V0-nH(;-h`-Qg)vNjnN(CYZ|Xj?Zf!mslWc#JQSoxhpR~PBu}2g= z)nyLM|7<^Z!cvwU&wVT!&Q7w7%rRtH*JR5z!E@{L7e(jHAKthtb$hn`^7(yJzjdpc zPUpC*a=aqM%WY+FW5`PHt4(YhLpL>tBu_87ySv>hYvnT|#d@WLoI6T0&NRCo3<=wP z=~7Kh-(!=dGv`cO+?_l5O^Uo;_Oe576oor4C3CPV*=Y(tYG=4B&v#xV?Q&0Xth1}< zs@muCv~|~Cy?9X4F6dq7<4l|({9~y6lGvwVDNPHb6Mw<&;$VEDkI1M delta 446 zcmcb_d4_p{L_H%j0|Ud2u&31w3=C`mJ|V6Q3=IGO|6h7@{#^zJ#zs#U#}EtuwO2Og z9x>oyaFEiv;;O8nyu@dDsF9P|1o`{w+Aqy7a%hDL1bKLESz9CSQejiTZ|`||$-;QP zKawZsI55;JFiN;GTNN%c`s32r@IcLC+L7cBs-kRC|0DNt?5HoiVau^9HAVfzq`CD< zOAa_F->|IAzwI!6Gq>B%`<)k6BDPx!1zgDCYEeE zQ%$7PteIIgZ6Z$@bBPi;r4A(2JI-d~thjGd#dRDU^ zeY)*(tIMCO;rxmDo!{A1>zS&wERNbR($n>>T`9As=ibQT(EVv`MBvT_ZiW5 zOwWHyp8Z;PvbbsYxd%==&E7SK?Nyj}BXtKySk-~}!V>nS+V1z&dXzFB|Fros(dOZ@ z{)zoRdq2LYtm<1B(84G={T2Hvd$*phv;|6Yl5eK!Yz>mUv5)u7dFOpS|2IjPKiy?? z+Gy*>#UCpfuV0a>QWZRN6Vp?JQWH}u z3s0unFfcIq1^9%xrl+UZ*49>4Rb^#m6&Dwml$6xe)a2*qmzI|1<>h5&W>!~M7Znxd zWi#@Gx9(F*~^RR_o9I^0Et$?^?8Qo4)b0rBfG&b1V?7<71n1Af7!SgW2>l z(|x9Zo8cNg>{1&RH>inuyw$m6@!*+$lGC)MB4_09Br&Xs-5zi5d$%B~hau+Q10$LE zITtQ5#_-%)&T_J$zTokEvz;~^Mgh8;-|Y&R$as0K?sDHv*+wY`mads&HdSwJ%7N6L zOWW90_867sYR%ijYLXLid`%~N*UK=CMU7j3xF4`(xzowO&Dg`H^7rS-&-q4qH`xu^ zFHUf`|95lNW4;NRGoIwIm9(5PV_5mzGoB$fLz3y!(=}@uuRUXI2xhF8lWAJS;8myJ zSts@Lnn}^0e@?#+1bury^{Rl&0$xU4UJXSS2T!IT>7FSpB8dwYFl3lBaULkaQzYs@KFj&1_55O?}PM1vk#g zOpsl9ZFl<;yO4LM_wv1|)Bo`2k4%~sqthQQ1BQwx_1hwESv+81U|{fc^>bP0l+XkK Dvu^I5 delta 219 zcmdnM@|tmiL_H%j0|Uc^<&WnwFfgzM_=LDJFfjc8|9|Pt`F9x@7#4WCIEH8hZ@svY z_ppKh>xF&|4avqp30}8k5w`_P9AbX3cjjoe20v+8+Fq;v!{~`fo%7LEA4IZKG$whd zO9|$89AdxoQTN6P#uFcuT-VJAJMyBor;0H%=SjfaMV|^5F$RVhHY}N8pzimT-R9f* zjQlGF0e>9JiuT{waN~vE^0|kmuh7`|bFNA0_RXiy+3{X?+Wu$Pfpey1KgC-=#D9Eg c`ISXqRJ$v;z#()70|Nttr>mdKI;Vst05scSQ2+n{ diff --git a/Data/Sys/Resources/achievements_player.png b/Data/Sys/Resources/achievements_player.png index d99412b839e7c00a51d8fa97ae88ad1dfdac2eec..2cb01b8739261048a8d79dd70be037971a3004c9 100644 GIT binary patch delta 1155 zcmX@l)WbPJqMn19fq~(wTRRs61A}CVYeY$Kep*R+Vo@rCV@iHfs)A>3VtQ&&YGO)d z;mK4R1_p+}0G|-o`uh6x^z^#Ax~#0M{QUfkjEt(Ps^a3}%*@P^l9Jrq+?tx2ii(Py zoScG!g38Lu($doG?Cjdw+Un}+!otGx^768>vb?;!qWYquw6wH_hKBU5pF63_DF#q2dFRUO){FPc@W*sE~irBV~y)#m6QT8j=$y4j|*>%puw zmlX~a91OiOCuZ&Gh{vw^pSCx=-1BtmYMDz74zt@<$0qbIo3*`tV%?2nm;OX2J?}Ak zq7={gLg8~o>XZW?oC>rn=2K2VowJtx=GWbK zR;RWyg>CyJGcBW6&R;i~Q`+{C= z*mRW3;af`19gfNhnVDS?j&GjkvR&ZI^h)@nrs-3j_Vd@N+@q5v0~Ys&nmm2vvSam< z^Fea{*E!kJAM@Xna;oy)<@5M#k$IBNjNd2X80vRFJeebX-Ddjf>6e0*?Bn9KTduHn zy7PXaO+BR{TbMtq&n;&?^vi1HN8Jo#=Bjpsi1_KEvo@pzzN@(XuJKrPx5^gd1a;-7 zZanfo-E~ei3&k%^JFu?L{pPYgBE0!qHV7EJ(hlEv`w>^dL z$}S7wzc^vb$1PkBGU8@kKh|0MYQ^3AJ$~vUp+}5oF;(F;ZLZ~wOIdK>W-KF`v=!v ze6Gw(cK3eak=FG}ENP<4z2y%U&kidJ$#Kbb<#UPDRLW!z+*15VTuVpYXzLcSb2{M< zpPpOr`l3p)Ty2i-{8znfnO~+YZDr%T*{ES&@H^D>PJK&1=XTG_a~!A0e#n1);G>h5%c+JZGq)qnKbn!n7AADzj dv8wNgZ~XPD{czja>QWZRN6Vp?JQWH}u z3s0unFfcIq1^9%xrl+UZ*49>4Rb^#m6&Dwml$6xe)a2*qmzI|1<>h5$WaQ-JR99DL zW@Z)@71h_*=jP^CR#p}i6qJ{jS5#D#m6g@i)n#XAr`4yWH8eDcT|c70z`)q=>Eakt zaqG?Xmy?9RAoJIsQh=~I)Cl5+FkR|oCC|(%rrB#TkCmX zk1pqe(uRM+2VDQ#O*pwtt83NNo8AuU^VTb0RAqj#EZ<~0#~iLGPP++=vP=bE|8X`f zPCj5-WE(rPp@XrBJ>~Gvo9FN6+}XsRz`IznzwVIwrem@TObkxm)hmh z48Jy5v0XVG8O_}BibG*%Ll57<0*1x+rynusEy|Ws-B+*p_fQbu(}P(WY6X3a>2enw zcpBPRpNRC%VclWzz=GkDn*#HXnamqDRmFvSa!;&mxGLnk;&wnBpXzhnkUhH0JFHhO z?|=T`OV-PGnepi?U12NsoUe`uGJbYo-pVfyl_{66?pJxcFn0F6*9Y=Cm0zE~R&KtJ bRf2)lrS2KC^IcsA1_lOCS3j3^P6xF&|4avqp30}8k5w`_P9AbX3cjjoe20v+8+Fq;v!{~`fo%7LEA4IZKG$whd zO9|$89AdxoQTN6P#uFcuT-VJAJMyBor;0H%=SjfaMV|^5F$RVhHY}N8pzimT-R9f* zjQlGF0e>9JiuT{waN~vE^0|kmuh7`|bFNA0_RXiy+3{X?+Wu$Pfpey1KgC-=#D9Eg c`ISXqRJ$v;z#()70|Nttr>mdKI;Vst06K_bp#T5? From 9499e142094bcdaa374d51e758ac889b859a2297 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 24 Apr 2024 07:09:43 -0400 Subject: [PATCH 064/296] Add user agent to headers for all RetroAchievements server calls Requested agent syntax is "Dolphin/5.0-23456" --- Source/Core/Common/Version.cpp | 12 ++++- Source/Core/Common/Version.h | 1 + Source/Core/Core/AchievementManager.cpp | 72 +++++++++++++------------ 3 files changed, 48 insertions(+), 37 deletions(-) diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 25c678f061..618d000b9f 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -9,6 +9,8 @@ namespace Common { +#define EMULATOR_NAME "Dolphin" + #ifdef _DEBUG #define BUILD_TYPE_STR "Debug " #elif defined DEBUGFAST @@ -19,10 +21,10 @@ namespace Common const std::string& GetScmRevStr() { - static const std::string scm_rev_str = "Dolphin " + static const std::string scm_rev_str = EMULATOR_NAME " " // Note this macro can be empty if the master branch does not exist. #if 1 - SCM_COMMITS_AHEAD_MASTER - 1 != 0 - "[" SCM_BRANCH_STR "] " + "[" SCM_BRANCH_STR "] " #endif #ifdef __INTEL_COMPILER @@ -51,6 +53,12 @@ const std::string& GetScmBranchStr() return scm_branch_str; } +const std::string& GetUserAgentStr() +{ + static const std::string user_agent_str = EMULATOR_NAME "/" SCM_DESC_STR; + return user_agent_str; +} + const std::string& GetScmDistributorStr() { static const std::string scm_distributor_str = SCM_DISTRIBUTOR_STR; diff --git a/Source/Core/Common/Version.h b/Source/Core/Common/Version.h index 72f34541ec..a141ecb898 100644 --- a/Source/Core/Common/Version.h +++ b/Source/Core/Common/Version.h @@ -11,6 +11,7 @@ const std::string& GetScmDescStr(); const std::string& GetScmBranchStr(); const std::string& GetScmRevStr(); const std::string& GetScmRevGitStr(); +const std::string& GetUserAgentStr(); const std::string& GetScmDistributorStr(); const std::string& GetScmUpdateTrackStr(); const std::string& GetNetplayDolphinVer(); diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 360a332eb0..aa73bc6b2d 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -18,6 +18,7 @@ #include "Common/Image.h" #include "Common/Logging/Log.h" #include "Common/ScopeGuard.h" +#include "Common/Version.h" #include "Common/WorkQueueThread.h" #include "Core/Config/AchievementSettings.h" #include "Core/Core.h" @@ -29,6 +30,9 @@ #include "VideoCommon/OnScreenDisplay.h" #include "VideoCommon/VideoEvents.h" +static const Common::HttpRequest::Headers USER_AGENT_HEADER = { + {"User-Agent", Common::GetUserAgentStr()}}; + AchievementManager& AchievementManager::GetInstance() { static AchievementManager s_instance; @@ -845,42 +849,39 @@ void AchievementManager::Request(const rc_api_request_t* request, { std::string url = request->url; std::string post_data = request->post_data; - AchievementManager::GetInstance().m_queue.EmplaceItem([url = std::move(url), - post_data = std::move(post_data), - callback = std::move(callback), - callback_data = std::move(callback_data)] { - const Common::HttpRequest::Headers USER_AGENT_HEADER = {{"User-Agent", "Dolphin/Placeholder"}}; + AchievementManager::GetInstance().m_queue.EmplaceItem( + [url = std::move(url), post_data = std::move(post_data), callback = std::move(callback), + callback_data = std::move(callback_data)] { + Common::HttpRequest http_request; + Common::HttpRequest::Response http_response; + if (!post_data.empty()) + { + http_response = http_request.Post(url, post_data, USER_AGENT_HEADER, + Common::HttpRequest::AllowedReturnCodes::All); + } + else + { + http_response = http_request.Get(url, USER_AGENT_HEADER, + Common::HttpRequest::AllowedReturnCodes::All); + } - Common::HttpRequest http_request; - Common::HttpRequest::Response http_response; - if (!post_data.empty()) - { - http_response = http_request.Post(url, post_data, USER_AGENT_HEADER, - Common::HttpRequest::AllowedReturnCodes::All); - } - else - { - http_response = - http_request.Get(url, USER_AGENT_HEADER, Common::HttpRequest::AllowedReturnCodes::All); - } + rc_api_server_response_t server_response; + if (http_response.has_value() && http_response->size() > 0) + { + server_response.body = reinterpret_cast(http_response->data()); + server_response.body_length = http_response->size(); + server_response.http_status_code = http_request.GetLastResponseCode(); + } + else + { + constexpr char error_message[] = "Failed HTTP request."; + server_response.body = error_message; + server_response.body_length = sizeof(error_message); + server_response.http_status_code = RC_API_SERVER_RESPONSE_RETRYABLE_CLIENT_ERROR; + } - rc_api_server_response_t server_response; - if (http_response.has_value() && http_response->size() > 0) - { - server_response.body = reinterpret_cast(http_response->data()); - server_response.body_length = http_response->size(); - server_response.http_status_code = http_request.GetLastResponseCode(); - } - else - { - constexpr char error_message[] = "Failed HTTP request."; - server_response.body = error_message; - server_response.body_length = sizeof(error_message); - server_response.http_status_code = RC_API_SERVER_RESPONSE_RETRYABLE_CLIENT_ERROR; - } - - callback(&server_response, callback_data); - }); + callback(&server_response, callback_data); + }); } u32 AchievementManager::MemoryPeeker(u32 address, u8* buffer, u32 num_bytes, rc_client_t* client) @@ -936,7 +937,8 @@ void AchievementManager::FetchBadge(AchievementManager::Badge* badge, u32 badge_ ERROR_LOG_FMT(ACHIEVEMENTS, "Invalid request for image {}.", name_to_fetch); return; } - auto http_response = http_request.Get(api_request.url); + auto http_response = http_request.Get(api_request.url, USER_AGENT_HEADER, + Common::HttpRequest::AllowedReturnCodes::All); if (http_response.has_value() && http_response->size() <= 0) { WARN_LOG_FMT(ACHIEVEMENTS, "RetroAchievements connection failed on image request.\n URL: {}", From fa00728d3ec23626be03698afa71e56596f23ee3 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Tue, 4 Jun 2024 00:26:04 -0700 Subject: [PATCH 065/296] MainWindow: Check for batch mode before show(). --- Source/Core/DolphinQt/MainWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 95343b12f1..ddeaf6b196 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -239,7 +239,8 @@ MainWindow::MainWindow(std::unique_ptr boot_parameters, QSettings& settings = Settings::GetQSettings(); restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray()); restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray()); - show(); + if (!Settings::Instance().IsBatchModeEnabled()) + show(); InitControllers(); ConnectHotkeys(); From a3c23353c05c6455e47889dc5338fe6ee494d813 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 4 Jun 2024 19:32:04 +0200 Subject: [PATCH 066/296] Android: Implement OpenSLESStream::SetRunning --- Source/Core/AudioCommon/OpenSLESStream.cpp | 6 ++++++ Source/Core/AudioCommon/OpenSLESStream.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/OpenSLESStream.cpp b/Source/Core/AudioCommon/OpenSLESStream.cpp index a35b981017..a3f6308187 100644 --- a/Source/Core/AudioCommon/OpenSLESStream.cpp +++ b/Source/Core/AudioCommon/OpenSLESStream.cpp @@ -137,6 +137,12 @@ OpenSLESStream::~OpenSLESStream() } } +bool OpenSLESStream::SetRunning(bool running) +{ + SLuint32 new_state = running ? SL_PLAYSTATE_PLAYING : SL_PLAYSTATE_PAUSED; + return (*bqPlayerPlay)->SetPlayState(bqPlayerPlay, new_state) == SL_RESULT_SUCCESS; +} + void OpenSLESStream::SetVolume(int volume) { const SLmillibel attenuation = diff --git a/Source/Core/AudioCommon/OpenSLESStream.h b/Source/Core/AudioCommon/OpenSLESStream.h index 0aae560ce6..f22aaf9a0f 100644 --- a/Source/Core/AudioCommon/OpenSLESStream.h +++ b/Source/Core/AudioCommon/OpenSLESStream.h @@ -14,7 +14,7 @@ class OpenSLESStream final : public SoundStream public: ~OpenSLESStream() override; bool Init() override; - bool SetRunning(bool running) override { return true; } + bool SetRunning(bool running) override; void SetVolume(int volume) override; static bool IsValid() { return true; } From 98e6a95e8708e67db44bb6d5bd91ddb32af74e80 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Tue, 4 Jun 2024 15:14:32 -0500 Subject: [PATCH 067/296] FatFsUtil: Generate a non-partitioned image in our folder-to-sdcard conversion. --- Source/Core/Common/FatFsUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/FatFsUtil.cpp b/Source/Core/Common/FatFsUtil.cpp index 88d746e8ea..ffac0fc6c9 100644 --- a/Source/Core/Common/FatFsUtil.cpp +++ b/Source/Core/Common/FatFsUtil.cpp @@ -553,7 +553,7 @@ bool SyncSDFolderToSDImage(const std::function& cancelled, bool determin } MKFS_PARM options = {}; - options.fmt = FM_FAT32; + options.fmt = FM_FAT32 | FM_SFD; options.n_fat = 0; // Number of FATs: automatic options.align = 1; // Alignment of the data region (in sectors) options.n_root = 0; // Number of root directory entries: automatic (and unused for FAT32) From 7dc0bdd5dfaa7aa8f6902126c1e05b0ee23d45a9 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 17:05:14 -0700 Subject: [PATCH 068/296] BranchWatchProxyModel: Avoid String Copies In filterAcceptsRow --- Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index c20b2e3c2d..e6c3e7341e 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -141,15 +141,15 @@ bool BranchWatchProxyModel::filterAcceptsRow(int source_row, const QModelIndex&) if (!m_origin_symbol_name.isEmpty()) { if (const QVariant& symbol_name_v = sourceModel()->GetSymbolList()[source_row].origin_name; - !symbol_name_v.isValid() || - !symbol_name_v.value().contains(m_origin_symbol_name, Qt::CaseInsensitive)) + !symbol_name_v.isValid() || !static_cast(symbol_name_v.data()) + ->contains(m_origin_symbol_name, Qt::CaseInsensitive)) return false; } if (!m_destin_symbol_name.isEmpty()) { if (const QVariant& symbol_name_v = sourceModel()->GetSymbolList()[source_row].destin_name; - !symbol_name_v.isValid() || - !symbol_name_v.value().contains(m_destin_symbol_name, Qt::CaseInsensitive)) + !symbol_name_v.isValid() || !static_cast(symbol_name_v.data()) + ->contains(m_destin_symbol_name, Qt::CaseInsensitive)) return false; } return true; From 8050760fe928db8a3f7eed25c5e4372af6f2bc24 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 17:47:25 -0700 Subject: [PATCH 069/296] BranchWatchTableModel: Assume Unreachable Code Truly Is --- Source/Core/Common/CMakeLists.txt | 1 + Source/Core/Common/Unreachable.h | 21 +++++++++++++++++++ Source/Core/DolphinLib.props | 1 + .../Debugger/BranchWatchTableModel.cpp | 10 ++++++--- 4 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 Source/Core/Common/Unreachable.h diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index af48ba7e13..fd2b04a721 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -143,6 +143,7 @@ add_library(common TraversalClient.h TraversalProto.h TypeUtils.h + Unreachable.h UPnP.cpp UPnP.h VariantUtil.h diff --git a/Source/Core/Common/Unreachable.h b/Source/Core/Common/Unreachable.h new file mode 100644 index 0000000000..a01810a239 --- /dev/null +++ b/Source/Core/Common/Unreachable.h @@ -0,0 +1,21 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "Common/CommonFuncs.h" + +namespace Common +{ +// TODO C++23: Replace with std::unreachable. +[[noreturn]] inline void Unreachable() +{ +#ifdef _DEBUG + Crash(); +#elif defined(_MSC_VER) && !defined(__clang__) + __assume(false); +#else + __builtin_unreachable(); +#endif +} +} // namespace Common diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index beec3e9a2d..56484070d0 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -165,6 +165,7 @@ + diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp index 08d7ae021d..e4d8dd21a2 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp @@ -11,6 +11,7 @@ #include "Common/Assert.h" #include "Common/GekkoDisassembler.h" +#include "Common/Unreachable.h" #include "Core/Debugger/BranchWatch.h" #include "Core/PowerPC/PPCSymbolDB.h" @@ -355,7 +356,8 @@ QVariant BranchWatchTableModel::DisplayRoleData(const QModelIndex& index) const case Column::TotalHits: return QString::number(kv->second.total_hits); } - return QVariant(); + static_assert(Column::NumberOfColumns == 8); + Common::Unreachable(); } QVariant BranchWatchTableModel::FontRoleData(const QModelIndex& index) const @@ -400,7 +402,8 @@ QVariant BranchWatchTableModel::TextAlignmentRoleData(const QModelIndex& index) case Column::DestinSymbol: return QVariant::fromValue(Qt::AlignLeft | Qt::AlignVCenter); } - return QVariant(); + static_assert(Column::NumberOfColumns == 8); + Common::Unreachable(); } QVariant BranchWatchTableModel::ForegroundRoleData(const QModelIndex& index) const @@ -498,5 +501,6 @@ QVariant BranchWatchTableModel::SortRoleData(const QModelIndex& index) const case Column::TotalHits: return qulonglong{kv->second.total_hits}; } - return QVariant(); + static_assert(Column::NumberOfColumns == 8); + Common::Unreachable(); } From 22aa88109f5a5964e1b66d31221647cafab7f0f5 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 4 Jun 2024 16:20:20 +0200 Subject: [PATCH 070/296] Use a stub AchivementManager when USE_RETRO_ACHIEVEMENTS isn't defined This lets us reduce the number of USE_RETRO_ACHIEVEMENTS ifdefs in the code base, reducing visual clutter. In particular, needing an ifdef for each call to IsHardcodeModeActive was annoying to me. This also reduces the risk that someone writes code that accidentally fails to compile with USE_RETRO_ACHIEVEMENTS disabled. We could cut down on ifdefs even further by making HardcodeWarningWidget always exist, but that would result in non-trivial code ending up in the binary even with USE_RETRO_ACHIEVEMENTS disabled, so I'm leaving it out of this PR. It's not a lot of code though, so I might end up revisiting it at some point. --- Source/Core/Core/AchievementManager.h | 33 +++++++++++++++++++ Source/Core/Core/Boot/Boot.cpp | 2 -- Source/Core/Core/BootManager.cpp | 2 -- Source/Core/Core/CheatSearch.cpp | 6 ---- Source/Core/Core/CheatSearch.h | 2 -- Source/Core/Core/Config/MainSettings.cpp | 8 ----- Source/Core/Core/ConfigManager.cpp | 7 ++-- Source/Core/Core/Core.cpp | 6 ---- Source/Core/Core/CoreTiming.cpp | 2 -- .../Core/Core/Debugger/PPCDebugInterface.cpp | 3 +- Source/Core/Core/FreeLookConfig.cpp | 4 --- Source/Core/Core/HW/DVD/DVDInterface.cpp | 2 -- Source/Core/Core/IOS/ES/ES.cpp | 2 -- Source/Core/Core/Movie.cpp | 2 -- Source/Core/Core/PatchEngine.cpp | 6 ++-- Source/Core/Core/State.cpp | 4 --- Source/Core/DiscIO/RiivolutionPatcher.cpp | 2 -- Source/Core/DolphinQt/HotkeyScheduler.cpp | 5 +-- Source/Core/DolphinQt/MenuBar.cpp | 9 ----- Source/Core/DolphinQt/Settings.cpp | 2 -- .../Core/DolphinQt/Settings/GeneralPane.cpp | 6 +--- .../Core/DolphinQt/Settings/InterfacePane.cpp | 4 --- Source/Core/VideoCommon/OnScreenUI.cpp | 6 ++-- Source/Core/VideoCommon/OnScreenUI.h | 2 -- 24 files changed, 42 insertions(+), 85 deletions(-) diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 3fdb5b2591..f538832ade 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -5,19 +5,25 @@ #ifdef USE_RETRO_ACHIEVEMENTS #include +#include #include #include #include +#include #include +#include #include +#include #include #include +#include #include #include #include #include +#include "Common/CommonTypes.h" #include "Common/Event.h" #include "Common/HttpRequest.h" #include "Common/WorkQueueThread.h" @@ -206,4 +212,31 @@ private: std::recursive_mutex m_filereader_lock; }; // class AchievementManager +#else // USE_RETRO_ACHIEVEMENTS + +#include + +namespace DiscIO +{ +class Volume; +} + +class AchievementManager +{ +public: + static AchievementManager& GetInstance() + { + static AchievementManager s_instance; + return s_instance; + } + + constexpr bool IsHardcoreModeActive() { return false; } + + constexpr void LoadGame(const std::string&, const DiscIO::Volume*) {} + + constexpr void DoFrame() {} + + constexpr void CloseGame() {} +}; + #endif // USE_RETRO_ACHIEVEMENTS diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index d57f4e74bb..7e866604ed 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -575,9 +575,7 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, SetupGCMemory(system, guard); } -#ifdef USE_RETRO_ACHIEVEMENTS AchievementManager::GetInstance().LoadGame(executable.path, nullptr); -#endif // USE_RETRO_ACHIEVEMENTS if (!executable.reader->LoadIntoMemory(system)) { diff --git a/Source/Core/Core/BootManager.cpp b/Source/Core/Core/BootManager.cpp index 6f7681fd30..81192b4821 100644 --- a/Source/Core/Core/BootManager.cpp +++ b/Source/Core/Core/BootManager.cpp @@ -166,9 +166,7 @@ bool BootCore(Core::System& system, std::unique_ptr boot, } } -#ifdef USE_RETRO_ACHIEVEMENTS AchievementManager::GetInstance().CloseGame(); -#endif // USE_RETRO_ACHIEVEMENTS const bool load_ipl = !system.IsWii() && !Config::Get(Config::MAIN_SKIP_IPL) && std::holds_alternative(boot->parameters); diff --git a/Source/Core/Core/CheatSearch.cpp b/Source/Core/Core/CheatSearch.cpp index 1af09e0ee3..a3bd123e0c 100644 --- a/Source/Core/Core/CheatSearch.cpp +++ b/Source/Core/Core/CheatSearch.cpp @@ -207,10 +207,8 @@ Cheats::NewSearch(const Core::CPUThreadGuard& guard, PowerPC::RequestedAddressSpace address_space, bool aligned, const std::function& validator) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return Cheats::SearchErrorCode::DisabledInHardcoreMode; -#endif // USE_RETRO_ACHIEVEMENTS auto& system = guard.GetSystem(); std::vector> results; const Core::State core_state = Core::GetState(system); @@ -262,10 +260,8 @@ Cheats::NextSearch(const Core::CPUThreadGuard& guard, PowerPC::RequestedAddressSpace address_space, const std::function& validator) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return Cheats::SearchErrorCode::DisabledInHardcoreMode; -#endif // USE_RETRO_ACHIEVEMENTS auto& system = guard.GetSystem(); std::vector> results; const Core::State core_state = Core::GetState(system); @@ -429,10 +425,8 @@ MakeCompareFunctionForLastValue(Cheats::CompareType op) template Cheats::SearchErrorCode Cheats::CheatSearchSession::RunSearch(const Core::CPUThreadGuard& guard) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return Cheats::SearchErrorCode::DisabledInHardcoreMode; -#endif // USE_RETRO_ACHIEVEMENTS Common::Result>> result = Cheats::SearchErrorCode::InvalidParameters; if (m_filter_type == FilterType::CompareAgainstSpecificValue) diff --git a/Source/Core/Core/CheatSearch.h b/Source/Core/Core/CheatSearch.h index 4a3d54a897..d5c990186f 100644 --- a/Source/Core/Core/CheatSearch.h +++ b/Source/Core/Core/CheatSearch.h @@ -100,10 +100,8 @@ enum class SearchErrorCode // currently off in the emulated game. VirtualAddressesCurrentlyNotAccessible, -#ifdef USE_RETRO_ACHIEVEMENTS // Cheats and memory reading are disabled in RetroAchievements hardcore mode. DisabledInHardcoreMode, -#endif // USE_RETRO_ACHIEVEMENTS }; // Returns the corresponding DataType enum for the value currently held by the given SearchValue. diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index 3e5864586c..a45c014262 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -749,22 +749,14 @@ bool IsDefaultGCIFolderPathConfigured(ExpansionInterface::Slot slot) bool AreCheatsEnabled() { -#ifdef USE_RETRO_ACHIEVEMENTS return Config::Get(::Config::MAIN_ENABLE_CHEATS) && !AchievementManager::GetInstance().IsHardcoreModeActive(); -#else // USE_RETRO_ACHIEVEMENTS - return Config::Get(::Config::MAIN_ENABLE_CHEATS); -#endif // USE_RETRO_ACHIEVEMENTS } bool IsDebuggingEnabled() { -#ifdef USE_RETRO_ACHIEVEMENTS return Config::Get(::Config::MAIN_ENABLE_DEBUGGING) && !AchievementManager::GetInstance().IsHardcoreModeActive(); -#else // USE_RETRO_ACHIEVEMENTS - return Config::Get(::Config::MAIN_ENABLE_DEBUGGING); -#endif // USE_RETRO_ACHIEVEMENTS } } // namespace Config diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index c27f135e0e..e3c1ec1d15 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -169,11 +169,6 @@ void SConfig::SetRunningGameMetadata(const std::string& game_id, const std::stri if (!was_changed) return; -#ifdef USE_RETRO_ACHIEVEMENTS - if (game_id != "00000000") - AchievementManager::GetInstance().CloseGame(); -#endif // USE_RETRO_ACHIEVEMENTS - if (game_id == "00000000") { m_title_name.clear(); @@ -181,6 +176,8 @@ void SConfig::SetRunningGameMetadata(const std::string& game_id, const std::stri return; } + AchievementManager::GetInstance().CloseGame(); + const Core::TitleDatabase title_database; auto& system = Core::System::GetInstance(); const DiscIO::Language language = GetLanguageAdjustedForRegion(system.IsWii(), region); diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 5c60b3b02f..f28a41f836 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -287,9 +287,7 @@ void Stop(Core::System& system) // - Hammertime! return; } -#ifdef USE_RETRO_ACHIEVEMENTS AchievementManager::GetInstance().CloseGame(); -#endif // USE_RETRO_ACHIEVEMENTS s_is_stopping = true; @@ -908,9 +906,7 @@ void Callback_NewField(Core::System& system) } } -#ifdef USE_RETRO_ACHIEVEMENTS AchievementManager::GetInstance().DoFrame(); -#endif // USE_RETRO_ACHIEVEMENTS } void UpdateTitle(Core::System& system) @@ -1048,13 +1044,11 @@ void HostDispatchJobs(Core::System& system) // NOTE: Host Thread void DoFrameStep(Core::System& system) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) { OSD::AddMessage("Frame stepping is disabled in RetroAchievements hardcore mode"); return; } -#endif // USE_RETRO_ACHIEVEMENTS if (GetState(system) == State::Paused) { // if already paused, frame advance for 1 frame diff --git a/Source/Core/Core/CoreTiming.cpp b/Source/Core/Core/CoreTiming.cpp index 627f14cbce..b304ff2fa6 100644 --- a/Source/Core/Core/CoreTiming.cpp +++ b/Source/Core/Core/CoreTiming.cpp @@ -138,7 +138,6 @@ void CoreTimingManager::RefreshConfig() m_max_variance = std::chrono::duration_cast
(DT_ms(Config::Get(Config::MAIN_TIMING_VARIANCE))); -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive() && Config::Get(Config::MAIN_EMULATION_SPEED) < 1.0f && Config::Get(Config::MAIN_EMULATION_SPEED) > 0.0f) @@ -147,7 +146,6 @@ void CoreTimingManager::RefreshConfig() m_emulation_speed = 1.0f; OSD::AddMessage("Minimum speed is 100% in Hardcore Mode"); } -#endif // USE_RETRO_ACHIEVEMENTS m_emulation_speed = Config::Get(Config::MAIN_EMULATION_SPEED); } diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index 20ff94c537..a003e98156 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -30,10 +30,9 @@ void ApplyMemoryPatch(const Core::CPUThreadGuard& guard, Common::Debug::MemoryPatch& patch, bool store_existing_value) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return; -#endif // USE_RETRO_ACHIEVEMENTS + if (patch.value.empty()) return; diff --git a/Source/Core/Core/FreeLookConfig.cpp b/Source/Core/Core/FreeLookConfig.cpp index c1a2f16473..a74b492f7d 100644 --- a/Source/Core/Core/FreeLookConfig.cpp +++ b/Source/Core/Core/FreeLookConfig.cpp @@ -46,11 +46,7 @@ void Config::Refresh() } camera_config.control_type = ::Config::Get(::Config::FL1_CONTROL_TYPE); -#ifdef USE_RETRO_ACHIEVEMENTS enabled = ::Config::Get(::Config::FREE_LOOK_ENABLED) && !AchievementManager::GetInstance().IsHardcoreModeActive(); -#else // USE_RETRO_ACHIEVEMENTS - enabled = ::Config::Get(::Config::FREE_LOOK_ENABLED); -#endif // USE_RETRO_ACHIEVEMENTS } } // namespace FreeLook diff --git a/Source/Core/Core/HW/DVD/DVDInterface.cpp b/Source/Core/Core/HW/DVD/DVDInterface.cpp index fefa5f2d2d..79081bee47 100644 --- a/Source/Core/Core/HW/DVD/DVDInterface.cpp +++ b/Source/Core/Core/HW/DVD/DVDInterface.cpp @@ -398,9 +398,7 @@ void DVDInterface::SetDisc(std::unique_ptr disc, m_auto_disc_change_index = 0; } -#ifdef USE_RETRO_ACHIEVEMENTS AchievementManager::GetInstance().LoadGame("", disc.get()); -#endif // USE_RETRO_ACHIEVEMENTS // Assume that inserting a disc requires having an empty disc before if (had_disc != has_disc) diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 8eb35f3db9..6bd894dd27 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -478,11 +478,9 @@ bool ESDevice::LaunchPPCTitle(u64 title_id) if (!Core::IsRunningAndStarted()) return BootstrapPPC(); -#ifdef USE_RETRO_ACHIEVEMENTS INFO_LOG_FMT(ACHIEVEMENTS, "WAD and NAND formats not currently supported by Achievement Manager."); AchievementManager::GetInstance().CloseGame(); -#endif // USE_RETRO_ACHIEVEMENTS core_timing.RemoveEvent(s_bootstrap_ppc_for_launch_event); core_timing.ScheduleEvent(ticks, s_bootstrap_ppc_for_launch_event); diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index 3d05b7b6af..47ad3c8c97 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -941,10 +941,8 @@ bool MovieManager::PlayInput(const std::string& movie_path, ReadHeader(); -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return false; -#endif // USE_RETRO_ACHIEVEMENTS m_total_frames = m_temp_header.frameCount; m_total_lag_count = m_temp_header.lagCount; diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index bbc9847b3e..8aac8f1397 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -233,10 +233,9 @@ void LoadPatches() static void ApplyPatches(const Core::CPUThreadGuard& guard, const std::vector& patches) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return; -#endif // USE_RETRO_ACHIEVEMENTS + for (const Patch& patch : patches) { if (patch.enabled) @@ -278,10 +277,9 @@ static void ApplyPatches(const Core::CPUThreadGuard& guard, const std::vector memory_patch_indices) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return; -#endif // USE_RETRO_ACHIEVEMENTS + std::lock_guard lock(s_on_frame_memory_mutex); for (std::size_t index : memory_patch_indices) { diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 56b9035cb6..adc1cbd57a 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -212,13 +212,11 @@ void LoadFromBuffer(Core::System& system, std::vector& buffer) return; } -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) { OSD::AddMessage("Loading savestates is disabled in RetroAchievements hardcore mode"); return; } -#endif // USE_RETRO_ACHIEVEMENTS Core::RunOnCPUThread( system, @@ -865,13 +863,11 @@ void LoadAs(Core::System& system, const std::string& filename) return; } -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) { OSD::AddMessage("Loading savestates is disabled in RetroAchievements hardcore mode"); return; } -#endif // USE_RETRO_ACHIEVEMENTS std::unique_lock lk(s_load_or_save_in_progress_mutex, std::try_to_lock); if (!lk) diff --git a/Source/Core/DiscIO/RiivolutionPatcher.cpp b/Source/Core/DiscIO/RiivolutionPatcher.cpp index 7dc245d27b..8c54968c35 100644 --- a/Source/Core/DiscIO/RiivolutionPatcher.cpp +++ b/Source/Core/DiscIO/RiivolutionPatcher.cpp @@ -524,10 +524,8 @@ static bool MemoryMatchesAt(const Core::CPUThreadGuard& guard, u32 offset, static void ApplyMemoryPatch(const Core::CPUThreadGuard& guard, u32 offset, std::span value, std::span original) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) return; -#endif // USE_RETRO_ACHIEVEMENTS if (value.empty()) return; diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index c02303ed5c..10f7540ca7 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -589,15 +589,12 @@ void HotkeyScheduler::Run() { const bool new_value = !Config::Get(Config::FREE_LOOK_ENABLED); Config::SetCurrent(Config::FREE_LOOK_ENABLED, new_value); -#ifdef USE_RETRO_ACHIEVEMENTS + const bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); if (hardcore) OSD::AddMessage("Free Look is Disabled in Hardcore Mode"); else OSD::AddMessage(fmt::format("Free Look: {}", new_value ? "Enabled" : "Disabled")); -#else // USE_RETRO_ACHIEVEMENTS - OSD::AddMessage(fmt::format("Free Look: {}", new_value ? "Enabled" : "Disabled")); -#endif // USE_RETRO_ACHIEVEMENTS } // Savestates diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index fc94065624..75b279db67 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -127,14 +127,9 @@ void MenuBar::OnEmulationStateChanged(Core::State state) m_screenshot_action->setEnabled(running); m_state_save_menu->setEnabled(running); -#ifdef USE_RETRO_ACHIEVEMENTS const bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); m_state_load_menu->setEnabled(running && !hardcore); m_frame_advance_action->setEnabled(running && !hardcore); -#else // USE_RETRO_ACHIEVEMENTS - m_state_load_menu->setEnabled(running); - m_frame_advance_action->setEnabled(running); -#endif // USE_RETRO_ACHIEVEMENTS // Movie m_recording_read_only->setEnabled(running); @@ -144,11 +139,7 @@ void MenuBar::OnEmulationStateChanged(Core::State state) m_recording_export->setEnabled(false); } m_recording_play->setEnabled(m_game_selected && !running); -#ifdef USE_RETRO_ACHIEVEMENTS m_recording_play->setEnabled(m_game_selected && !running && !hardcore); -#else // USE_RETRO_ACHIEVEMENTS - m_recording_play->setEnabled(m_game_selected && !running); -#endif // USE_RETRO_ACHIEVEMENTS m_recording_start->setEnabled((m_game_selected || running) && !Core::System::GetInstance().GetMovie().IsPlayingInput()); diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 0ffdadb119..9cc1a1a5ab 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -550,10 +550,8 @@ void Settings::SetCheatsEnabled(bool enabled) void Settings::SetDebugModeEnabled(bool enabled) { -#ifdef USE_RETRO_ACHIEVEMENTS if (AchievementManager::GetInstance().IsHardcoreModeActive()) enabled = false; -#endif // USE_RETRO_ACHIEVEMENTS if (IsDebugModeEnabled() != enabled) { Config::SetBaseOrCurrent(Config::MAIN_ENABLE_DEBUGGING, enabled); diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 114a5846a8..a2eda20e9d 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -84,14 +84,10 @@ void GeneralPane::CreateLayout() void GeneralPane::OnEmulationStateChanged(Core::State state) { const bool running = state != Core::State::Uninitialized; + const bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); m_checkbox_dualcore->setEnabled(!running); -#ifdef USE_RETRO_ACHIEVEMENTS - bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); m_checkbox_cheats->setEnabled(!running && !hardcore); -#else // USE_RETRO_ACHIEVEMENTS - m_checkbox_cheats->setEnabled(!running); -#endif // USE_RETRO_ACHIEVEMENTS m_checkbox_override_region_settings->setEnabled(!running); #ifdef USE_DISCORD_PRESENCE m_checkbox_discord_presence->setEnabled(!running); diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 9d19a1e2c0..c375214bd3 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -268,7 +268,6 @@ void InterfacePane::UpdateShowDebuggingCheckbox() static constexpr char TR_DISABLED_IN_HARDCORE_DESCRIPTION[] = QT_TR_NOOP("Disabled in Hardcore Mode."); -#ifdef USE_RETRO_ACHIEVEMENTS bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); SignalBlocking(m_checkbox_show_debugging_ui)->setEnabled(!hardcore); if (hardcore) @@ -281,9 +280,6 @@ void InterfacePane::UpdateShowDebuggingCheckbox() { m_checkbox_show_debugging_ui->SetDescription(tr(TR_SHOW_DEBUGGING_UI_DESCRIPTION)); } -#else - m_checkbox_show_debugging_ui->SetDescription(tr(TR_SHOW_DEBUGGING_UI_DESCRIPTION)); -#endif // USE_RETRO_ACHIEVEMENTS } void InterfacePane::LoadUserStyle() diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 1231851c9a..423cb5cb19 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -331,9 +331,9 @@ void OnScreenUI::DrawDebugText() ImGui::TextUnformatted(profile_output.c_str()); } -#ifdef USE_RETRO_ACHIEVEMENTS void OnScreenUI::DrawChallengesAndLeaderboards() { +#ifdef USE_RETRO_ACHIEVEMENTS std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; const auto& challenge_icons = AchievementManager::GetInstance().GetChallengeIcons(); const auto& leaderboard_progress = AchievementManager::GetInstance().GetActiveLeaderboards(); @@ -396,8 +396,8 @@ void OnScreenUI::DrawChallengesAndLeaderboards() } ImGui::End(); } -} #endif // USE_RETRO_ACHIEVEMENTS +} void OnScreenUI::Finalize() { @@ -406,9 +406,7 @@ void OnScreenUI::Finalize() g_perf_metrics.DrawImGuiStats(m_backbuffer_scale); DrawDebugText(); OSD::DrawMessages(); -#ifdef USE_RETRO_ACHIEVEMENTS DrawChallengesAndLeaderboards(); -#endif // USE_RETRO_ACHIEVEMENTS ImGui::Render(); } diff --git a/Source/Core/VideoCommon/OnScreenUI.h b/Source/Core/VideoCommon/OnScreenUI.h index 1acef96901..76fdcee19a 100644 --- a/Source/Core/VideoCommon/OnScreenUI.h +++ b/Source/Core/VideoCommon/OnScreenUI.h @@ -61,9 +61,7 @@ public: private: void DrawDebugText(); -#ifdef USE_RETRO_ACHIEVEMENTS void DrawChallengesAndLeaderboards(); -#endif // USE_RETRO_ACHIEVEMENTS // ImGui resources. std::unique_ptr m_imgui_vertex_format; From f404edb4dce935adfa3d41070d30a109df3f236c Mon Sep 17 00:00:00 2001 From: JosJuice Date: Thu, 6 Jun 2024 18:56:37 +0200 Subject: [PATCH 071/296] CMake: Put all unit tests in one binary We currently have 32 different binaries containing unit tests. At least when I build for Android, each one takes up over 200 MiB, and linking them all increases my incremental build times by over a minute. I'd like to change this for the sake of my productivity and disk space. For reference, MSBuild is already putting all tests in a single binary. --- Source/UnitTests/CMakeLists.txt | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/Source/UnitTests/CMakeLists.txt b/Source/UnitTests/CMakeLists.txt index c5f1b966d1..158b523cbe 100644 --- a/Source/UnitTests/CMakeLists.txt +++ b/Source/UnitTests/CMakeLists.txt @@ -4,24 +4,16 @@ add_custom_command(TARGET unittests POST_BUILD COMMAND ${CMAKE_CTEST_COMMAND} "- string(APPEND CMAKE_RUNTIME_OUTPUT_DIRECTORY "/Tests") -add_library(unittests_main OBJECT UnitTestsMain.cpp) - -target_link_libraries(unittests_main PUBLIC fmt::fmt gtest::gtest) -# Since this is a Core dependency, it can't be linked as a normal library. -# Otherwise CMake inserts the library after core, but before other core -# dependencies like videocommon which also use Host_ functions, which makes the -# GNU linker complain. -add_library(unittests_stubhost OBJECT StubHost.cpp) +add_executable(tests EXCLUDE_FROM_ALL UnitTestsMain.cpp StubHost.cpp) +set_target_properties(tests PROPERTIES FOLDER Tests) +target_link_libraries(tests PRIVATE fmt::fmt gtest::gtest core uicommon) +add_test(NAME tests COMMAND tests) +add_dependencies(unittests tests) macro(add_dolphin_test target) - add_executable(${target} EXCLUDE_FROM_ALL - ${ARGN} - $ - ) - set_target_properties(${target} PROPERTIES FOLDER Tests) - target_link_libraries(${target} PRIVATE core uicommon unittests_main) - add_dependencies(unittests ${target}) - add_test(NAME ${target} COMMAND ${target}) + add_library(${target} OBJECT ${ARGN}) + target_link_libraries(${target} PUBLIC fmt::fmt gtest::gtest PRIVATE core uicommon) + target_link_libraries(tests PRIVATE ${target}) endmacro() add_subdirectory(Common) From 8f03d9e8cac0a635212b5a2c99c85030c7368ac7 Mon Sep 17 00:00:00 2001 From: VampireFlower Date: Mon, 3 Jun 2024 22:14:40 -0600 Subject: [PATCH 072/296] handle sp and rtoc as GPR aliases Co-Authored-By: mitaclaw <140017135+mitaclaw@users.noreply.github.com> --- Source/Core/Common/Assembler/GekkoLexer.cpp | 33 ++++++++++----------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/Source/Core/Common/Assembler/GekkoLexer.cpp b/Source/Core/Common/Assembler/GekkoLexer.cpp index 8947802ecb..edc400ed9d 100644 --- a/Source/Core/Common/Assembler/GekkoLexer.cpp +++ b/Source/Core/Common/Assembler/GekkoLexer.cpp @@ -4,6 +4,7 @@ #include "Common/Assembler/GekkoLexer.h" #include "Common/Assert.h" +#include "Common/StringUtil.h" #include #include @@ -181,6 +182,11 @@ std::optional EvalIntegral(TokenType tp, std::string_view val) case TokenType::BinaryLit: return std::accumulate(val.begin() + 2, val.end(), T{0}, bin_step); case TokenType::GPR: + if (CaseInsensitiveEquals(val, "sp")) + return T{1}; + if (CaseInsensitiveEquals(val, "rtoc")) + return T{2}; + [[fallthrough]]; case TokenType::FPR: return std::accumulate(val.begin() + 1, val.end(), T{0}, dec_step); case TokenType::CRField: @@ -649,44 +655,37 @@ TokenType Lexer::ClassifyAlnum() const return false; }; - constexpr auto eq_nocase = [](std::string_view str, std::string_view lwr) { - auto it_l = str.cbegin(), it_r = lwr.cbegin(); - for (; it_l != str.cend() && it_r != lwr.cend(); it_l++, it_r++) - { - if (std::tolower(*it_l) != *it_r) - { - return false; - } - } - return it_l == str.end() && it_r == lwr.end(); - }; if (std::tolower(alnum[0]) == 'r' && valid_regnum(alnum.substr(1))) { return TokenType::GPR; } + else if ((CaseInsensitiveEquals(alnum, "sp")) || (CaseInsensitiveEquals(alnum, "rtoc"))) + { + return TokenType::GPR; + } else if (std::tolower(alnum[0]) == 'f' && valid_regnum(alnum.substr(1))) { return TokenType::FPR; } - else if (alnum.length() == 3 && eq_nocase(alnum.substr(0, 2), "cr") && alnum[2] >= '0' && - alnum[2] <= '7') + else if (alnum.length() == 3 && CaseInsensitiveEquals(alnum.substr(0, 2), "cr") && + alnum[2] >= '0' && alnum[2] <= '7') { return TokenType::CRField; } - else if (eq_nocase(alnum, "lt")) + else if (CaseInsensitiveEquals(alnum, "lt")) { return TokenType::Lt; } - else if (eq_nocase(alnum, "gt")) + else if (CaseInsensitiveEquals(alnum, "gt")) { return TokenType::Gt; } - else if (eq_nocase(alnum, "eq")) + else if (CaseInsensitiveEquals(alnum, "eq")) { return TokenType::Eq; } - else if (eq_nocase(alnum, "so")) + else if (CaseInsensitiveEquals(alnum, "so")) { return TokenType::So; } From 473db6882dc09fc6c7be16afee1752908cf40dd5 Mon Sep 17 00:00:00 2001 From: VampireFlower Date: Wed, 5 Jun 2024 05:38:19 -0600 Subject: [PATCH 073/296] r32 doesn't exist --- Source/Core/Common/Assembler/GekkoLexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Assembler/GekkoLexer.cpp b/Source/Core/Common/Assembler/GekkoLexer.cpp index edc400ed9d..f9cd9cd035 100644 --- a/Source/Core/Common/Assembler/GekkoLexer.cpp +++ b/Source/Core/Common/Assembler/GekkoLexer.cpp @@ -649,7 +649,7 @@ TokenType Lexer::ClassifyAlnum() const if (rn[0] == '3') { - return rn[1] <= '2'; + return rn[1] < '2'; } } From 896bb509ab96e351986052207506457e33dfcf25 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 6 Jun 2024 17:55:59 -0400 Subject: [PATCH 074/296] Suppress extract success message when quiet flag is set --- Source/Core/DolphinTool/ExtractCommand.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinTool/ExtractCommand.cpp b/Source/Core/DolphinTool/ExtractCommand.cpp index 1d9d24b8d4..1dfe849869 100644 --- a/Source/Core/DolphinTool/ExtractCommand.cpp +++ b/Source/Core/DolphinTool/ExtractCommand.cpp @@ -355,7 +355,8 @@ int Extract(const std::vector& args) return EXIT_FAILURE; } - fmt::println(std::cerr, "Finished Successfully!"); + if (!quiet) + fmt::println(std::cerr, "Finished Successfully!"); return EXIT_SUCCESS; } } // namespace DolphinTool From f910678dd48ad536cf662bb64287bffc64e44c5a Mon Sep 17 00:00:00 2001 From: icup321 Date: Thu, 6 Jun 2024 09:06:20 -0400 Subject: [PATCH 075/296] GameINI: Ubisoft updates Update several INI GameSettings for Ubisoft games Undo name changes --- Data/Sys/GameSettings/RGW.ini | 7 ++++++- Data/Sys/GameSettings/RRB.ini | 4 ++++ Data/Sys/GameSettings/RY2.ini | 16 ++++++++++++++++ Data/Sys/GameSettings/RY3.ini | 15 ++++++++++++++- Data/Sys/GameSettings/SOJ.ini | 19 +++++++++++++++++++ Data/Sys/GameSettings/SR4.ini | 16 ++++++++++++++++ Data/Sys/GameSettings/SR5.ini | 19 +++++++++++++++++++ Data/Sys/GameSettings/WR2.ini | 24 ++++++++++++++++++++++++ 8 files changed, 118 insertions(+), 2 deletions(-) create mode 100644 Data/Sys/GameSettings/SOJ.ini create mode 100644 Data/Sys/GameSettings/SR4.ini create mode 100644 Data/Sys/GameSettings/WR2.ini diff --git a/Data/Sys/GameSettings/RGW.ini b/Data/Sys/GameSettings/RGW.ini index 9a9603b40f..273898bf3c 100644 --- a/Data/Sys/GameSettings/RGW.ini +++ b/Data/Sys/GameSettings/RGW.ini @@ -12,8 +12,13 @@ [ActionReplay] # Add action replay cheats here. +[Video_Enhancements] +ForceTextureFiltering = False + [Video_Settings] -SafeTextureCacheColorSamples = 512 +SafeTextureCacheColorSamples = 0 [Video_Hacks] +# Fixes visible lines in air vents/fans. +VertexRounding = True ImmediateXFBEnable = False diff --git a/Data/Sys/GameSettings/RRB.ini b/Data/Sys/GameSettings/RRB.ini index fcfdfd06c7..b5f3ee31d9 100644 --- a/Data/Sys/GameSettings/RRB.ini +++ b/Data/Sys/GameSettings/RRB.ini @@ -13,5 +13,9 @@ CPUThread = False [ActionReplay] # Add action replay cheats here. +[Video_Enhancements] +ForceTextureFiltering = False + [Video_Settings] SuggestedAspectRatio = 2 +SafeTextureCacheColorSamples = 512 diff --git a/Data/Sys/GameSettings/RY2.ini b/Data/Sys/GameSettings/RY2.ini index 0610ab3981..9cc28b190f 100644 --- a/Data/Sys/GameSettings/RY2.ini +++ b/Data/Sys/GameSettings/RY2.ini @@ -1,4 +1,20 @@ # RY2E41, RY2J41, RY2K41, RY2P41, RY2R41 - Rayman Raving Rabbids 2 +[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. + +[Video_Enhancements] +ForceTextureFiltering = False + [Video_Settings] SuggestedAspectRatio = 2 +SafeTextureCacheColorSamples = 512 diff --git a/Data/Sys/GameSettings/RY3.ini b/Data/Sys/GameSettings/RY3.ini index fb092ab7b4..b368aeaae1 100644 --- a/Data/Sys/GameSettings/RY3.ini +++ b/Data/Sys/GameSettings/RY3.ini @@ -1,4 +1,17 @@ -# RY3E41, RY3J41, RY3K41, RY3P41 - Rayman Raving Rabbids TV Party +# RY3E41, RY3J41, RY3K41, RY3P41 - Rayman Raving Rabbids: TV Party + +[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. [Video_Settings] SuggestedAspectRatio = 2 +SafeTextureCacheColorSamples = 512 diff --git a/Data/Sys/GameSettings/SOJ.ini b/Data/Sys/GameSettings/SOJ.ini new file mode 100644 index 0000000000..0a9ced4bfc --- /dev/null +++ b/Data/Sys/GameSettings/SOJ.ini @@ -0,0 +1,19 @@ +# SOJE41, SOJP41 - Rayman Origins + +[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. + +[Video_Enhancements] +ForceTextureFiltering = False + +[Video_Hacks] +ImmediateXFBEnable = False diff --git a/Data/Sys/GameSettings/SR4.ini b/Data/Sys/GameSettings/SR4.ini new file mode 100644 index 0000000000..534bde3a25 --- /dev/null +++ b/Data/Sys/GameSettings/SR4.ini @@ -0,0 +1,16 @@ +# SR4E41, SR4J41, SR4P41 - Raving Rabbids: Travel in Time + +[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. + +[Video_Enhancements] +ForceTextureFiltering = False diff --git a/Data/Sys/GameSettings/SR5.ini b/Data/Sys/GameSettings/SR5.ini index 0a4ff2825e..ff6d5e85aa 100644 --- a/Data/Sys/GameSettings/SR5.ini +++ b/Data/Sys/GameSettings/SR5.ini @@ -1,4 +1,23 @@ # SR5E41, SR5P41 - Raving Rabbids Party Collection +[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. + +[Video_Enhancements] +ForceTextureFiltering = False + [Video_Settings] SuggestedAspectRatio = 2 +SafeTextureCacheColorSamples = 512 + +[Video_Hacks] +ImmediateXFBEnable = False diff --git a/Data/Sys/GameSettings/WR2.ini b/Data/Sys/GameSettings/WR2.ini new file mode 100644 index 0000000000..0e11e711da --- /dev/null +++ b/Data/Sys/GameSettings/WR2.ini @@ -0,0 +1,24 @@ +# WR2E41, WR2P41 - Rabbids Lab + +[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. + +[Video_Enhancements] +ForceTextureFiltering = False + +[Video_Settings] +SafeTextureCacheColorSamples = 0 + +[Video_Hacks] +# Fixes visible lines in air vents/fans. +VertexRounding = True +ImmediateXFBEnable = False From f91413db8f27043ce89a62d5fd5fdad87ba57be5 Mon Sep 17 00:00:00 2001 From: Neui Date: Sat, 8 Jun 2024 16:05:14 +0200 Subject: [PATCH 076/296] CMake: Fix CCache support when already using _LAUNCHER The official ccache documentation[1] recommends to set `CMAKE_C(XX)_COMPILER_LAUNCHER` to ccache to enable ccache. These also work as envionment variables (supported by CMake itself). However, using these instructions generates the following error during building: ccache: error: Recursive invocation (the name of the ccache binary must be "ccache") This is because Dolphin adds an additional command ccache layer (ccache ccache compiler ...). This fixes that issue by checking for `CMAKE_C(XX)_COMPILER_LAUNCHER` before inserting our own. Also, use `CMAKE_C(XX)_COMPILER_LAUNCHER` to add ccache because the CMake docs discourages the use of `RULE_LAUNCH_COMPILE` in favour of `CMAKE_C(XX)_COMPILER_LAUNCHER`. [1]: https://github.com/ccache/ccache/wiki/CMake --- CMake/CCache.cmake | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/CMake/CCache.cmake b/CMake/CCache.cmake index 775256cd3b..5cd4c9c478 100644 --- a/CMake/CCache.cmake +++ b/CMake/CCache.cmake @@ -1,10 +1,19 @@ find_program(CCACHE_BIN NAMES ccache sccache) if(CCACHE_BIN) - set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE_BIN}) + # Official ccache recommendation is to set CMAKE_C(XX)_COMPILER_LAUNCHER + if (NOT CMAKE_C_COMPILER_LAUNCHER MATCHES "ccache") + list(INSERT CMAKE_C_COMPILER_LAUNCHER 0 "${CCACHE_BIN}") + # ccache uses -I when compiling without preprocessor, which makes clang complain. + if("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics") + endif() + endif() - # ccache uses -I when compiling without preprocessor, which makes clang complain. - if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Qunused-arguments -fcolor-diagnostics") - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics") + if (NOT CMAKE_CXX_COMPILER_LAUNCHER MATCHES "ccache") + list(INSERT CMAKE_CXX_COMPILER_LAUNCHER 0 "${CCACHE_BIN}") + # ccache uses -I when compiling without preprocessor, which makes clang complain. + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics") + endif() endif() endif() From fa5a6547c6ee13decc20162320d914dc5723c499 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 8 Jun 2024 14:28:11 -0500 Subject: [PATCH 077/296] VideoCommon: add texture type to texture config comparison --- Source/Core/VideoCommon/TextureConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/TextureConfig.cpp b/Source/Core/VideoCommon/TextureConfig.cpp index 34fd9324df..3d25eac017 100644 --- a/Source/Core/VideoCommon/TextureConfig.cpp +++ b/Source/Core/VideoCommon/TextureConfig.cpp @@ -9,8 +9,8 @@ bool TextureConfig::operator==(const TextureConfig& o) const { - return std::tie(width, height, levels, layers, samples, format, flags) == - std::tie(o.width, o.height, o.levels, o.layers, o.samples, o.format, o.flags); + return std::tie(width, height, levels, layers, samples, format, flags, type) == + std::tie(o.width, o.height, o.levels, o.layers, o.samples, o.format, o.flags, o.type); } bool TextureConfig::operator!=(const TextureConfig& o) const From 28c28623a8ce2950824f8f1a6dabac23d5592a62 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Fri, 7 Jun 2024 03:58:00 -0700 Subject: [PATCH 078/296] MainWindow: Don't save UI geometry in batch mode. Batch mode was erasing the UI geometry for the sessions where batch mode is off. Render widget is still saved. --- Source/Core/DolphinQt/MainWindow.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index ddeaf6b196..67860c464a 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -346,8 +346,11 @@ MainWindow::~MainWindow() QSettings& settings = Settings::GetQSettings(); - settings.setValue(QStringLiteral("mainwindow/state"), saveState()); - settings.setValue(QStringLiteral("mainwindow/geometry"), saveGeometry()); + if (!Settings::Instance().IsBatchModeEnabled()) + { + settings.setValue(QStringLiteral("mainwindow/state"), saveState()); + settings.setValue(QStringLiteral("mainwindow/geometry"), saveGeometry()); + } settings.setValue(QStringLiteral("renderwidget/geometry"), m_render_widget_geometry); From 9b0dcc83d1d623e04928640770103e06a94c7f6f Mon Sep 17 00:00:00 2001 From: Niel Lebeck Date: Sun, 2 Jun 2024 12:32:38 -0700 Subject: [PATCH 079/296] Add some unit tests for the `Rectangle` class --- Source/UnitTests/Common/MathUtilTest.cpp | 122 +++++++++++++++++++++++ 1 file changed, 122 insertions(+) diff --git a/Source/UnitTests/Common/MathUtilTest.cpp b/Source/UnitTests/Common/MathUtilTest.cpp index 78416772a9..7758bb5d7f 100644 --- a/Source/UnitTests/Common/MathUtilTest.cpp +++ b/Source/UnitTests/Common/MathUtilTest.cpp @@ -67,3 +67,125 @@ TEST(MathUtil, SaturatingCast) EXPECT_EQ(16777216, MathUtil::SaturatingCast(float(16777216))); EXPECT_EQ(16777216, MathUtil::SaturatingCast(float(16777217))); } + +TEST(MathUtil, RectangleEquality) +{ + MathUtil::Rectangle rect_a(1, 1, 4, 7); + MathUtil::Rectangle rect_b(1, 1, 4, 7); + EXPECT_EQ(rect_a, rect_b); + + // Left not equal + MathUtil::Rectangle rect_c(0, 1, 4, 7); + EXPECT_NE(rect_a, rect_c); + + // Top not equal + MathUtil::Rectangle rect_d(1, 3, 4, 7); + EXPECT_NE(rect_a, rect_d); + + // Right not equal + MathUtil::Rectangle rect_e(1, 1, 2, 7); + EXPECT_NE(rect_a, rect_e); + + // Bottom not equal + MathUtil::Rectangle rect_f(1, 1, 4, 9); + EXPECT_NE(rect_a, rect_f); + + // No coordinates equal + MathUtil::Rectangle rect_g(0, 3, 2, 9); + EXPECT_NE(rect_a, rect_g); +} + +TEST(MathUtil, RectangleGetWidthSigned) +{ + // left < right + MathUtil::Rectangle rect_a(2, 1, 3, 2); + EXPECT_EQ(rect_a.GetWidth(), 1); + + // left > right + MathUtil::Rectangle rect_b(3, 1, 1, 2); + EXPECT_EQ(rect_b.GetWidth(), 2); + + // left == right + MathUtil::Rectangle rect_c(3, 1, 3, 2); + EXPECT_EQ(rect_c.GetWidth(), 0); + + // Most significant bit differs, left < right + MathUtil::Rectangle rect_d(-9, 1, 1, 2); + EXPECT_EQ(rect_d.GetWidth(), 10); + + // Most significant bit differs, left > right + MathUtil::Rectangle rect_e(1, 1, -6, 2); + EXPECT_EQ(rect_e.GetWidth(), 7); +} + +TEST(MathUtil, RectangleGetWidthUnsigned) +{ + // left < right + MathUtil::Rectangle rect_a(1, 1, 6, 2); + EXPECT_EQ(rect_a.GetWidth(), u32{5}); + + // left > right + MathUtil::Rectangle rect_b(5, 1, 1, 2); + EXPECT_EQ(rect_b.GetWidth(), u32{4}); + + // left == right + MathUtil::Rectangle rect_c(1, 2, 1, 2); + EXPECT_EQ(rect_c.GetWidth(), u32{0}); + + // Most significant bit differs, left < right + MathUtil::Rectangle rect_d(2, 1, 0xFFFFFFF5, 2); + EXPECT_EQ(rect_d.GetWidth(), u32{0xFFFFFFF3}); + + // Most significant bit differs, left > right + MathUtil::Rectangle rect_e(0xFFFFFFF7, 1, 1, 2); + EXPECT_EQ(rect_e.GetWidth(), u32{0xFFFFFFF6}); +} + +TEST(MathUtil, RectangleGetHeightSigned) +{ + // top < bottom + MathUtil::Rectangle rect_a(1, 1, 2, 3); + EXPECT_EQ(rect_a.GetHeight(), 2); + + // top > bottom + MathUtil::Rectangle rect_b(1, 4, 2, 0); + EXPECT_EQ(rect_b.GetHeight(), 4); + + // top == bottom + MathUtil::Rectangle rect_c(1, 3, 2, 3); + EXPECT_EQ(rect_c.GetHeight(), 0); + + // Most significant bit differs, top < bottom + MathUtil::Rectangle rect_d(1, -2, 2, 1); + EXPECT_EQ(rect_d.GetHeight(), 3); + + // Most significant bit differs, top > bottom + MathUtil::Rectangle rect_e(1, 0, 2, -1); + EXPECT_EQ(rect_e.GetHeight(), 1); +} + +TEST(MathUtil, RectangleGetHeightUnsigned) +{ + // top < bottom + MathUtil::Rectangle rect_a(1, 1, 2, 2); + EXPECT_EQ(rect_a.GetHeight(), u32{1}); + + // top > bottom + MathUtil::Rectangle rect_b(1, 4, 2, 2); + EXPECT_EQ(rect_b.GetHeight(), u32{2}); + + // top == bottom + MathUtil::Rectangle rect_c(1, 1, 2, 1); + EXPECT_EQ(rect_c.GetHeight(), u32{0}); + + // Most significant bit differs, top < bottom + MathUtil::Rectangle rect_d(1, 2, 2, 0xFFFFFFFB); + EXPECT_EQ(rect_d.GetHeight(), u32{0xFFFFFFF9}); + + // Most significant bit differs, top > bottom + MathUtil::Rectangle rect_e(1, 0xFFFFFFF9, 2, 1); + EXPECT_EQ(rect_e.GetHeight(), u32{0xFFFFFFF8}); +} + +// TODO: Add unit test coverage for `Rectangle::ClampUL`. (And consider removing +// `Rectangle::ClampLL`, which does not have any callers.) From a1c54063d0d8271a316915b73f839e82cafef5ed Mon Sep 17 00:00:00 2001 From: Neui Date: Mon, 10 Jun 2024 23:41:49 +0200 Subject: [PATCH 080/296] CMake: CCache: Always make clang happy When we are using ccache anyway, always add the flags to make clang happy. Also, fix copy-paste error regarding what variable to modify for it. --- CMake/CCache.cmake | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/CMake/CCache.cmake b/CMake/CCache.cmake index 5cd4c9c478..a8ee5da473 100644 --- a/CMake/CCache.cmake +++ b/CMake/CCache.cmake @@ -3,17 +3,15 @@ if(CCACHE_BIN) # Official ccache recommendation is to set CMAKE_C(XX)_COMPILER_LAUNCHER if (NOT CMAKE_C_COMPILER_LAUNCHER MATCHES "ccache") list(INSERT CMAKE_C_COMPILER_LAUNCHER 0 "${CCACHE_BIN}") - # ccache uses -I when compiling without preprocessor, which makes clang complain. - if("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics") - endif() endif() if (NOT CMAKE_CXX_COMPILER_LAUNCHER MATCHES "ccache") list(INSERT CMAKE_CXX_COMPILER_LAUNCHER 0 "${CCACHE_BIN}") - # ccache uses -I when compiling without preprocessor, which makes clang complain. - if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics") - endif() + endif() + + # ccache uses -I when compiling without preprocessor, which makes clang complain. + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics") + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Qunused-arguments -fcolor-diagnostics") endif() endif() From 44028cbbb144e97315f8653323b81efbe0947934 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Thu, 6 Jun 2024 21:40:05 +0400 Subject: [PATCH 081/296] Socket: Fix connect issues when using ReShade --- Source/Core/Common/SocketContext.cpp | 21 ++++++++++++++++++++- Source/Core/Core/IOS/Network/Socket.cpp | 13 ++++++++++++- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/SocketContext.cpp b/Source/Core/Common/SocketContext.cpp index 15f9fd9010..f9c630c434 100644 --- a/Source/Core/Common/SocketContext.cpp +++ b/Source/Core/Common/SocketContext.cpp @@ -3,6 +3,9 @@ #include "Common/SocketContext.h" +#include "Common/Logging/Log.h" +#include "Common/Network.h" + namespace Common { #ifdef _WIN32 @@ -11,7 +14,23 @@ SocketContext::SocketContext() std::lock_guard g(s_lock); if (s_num_objects == 0) { - static_cast(WSAStartup(MAKEWORD(2, 2), &s_data)); + const int ret = WSAStartup(MAKEWORD(2, 2), &s_data); + if (ret == 0) + { + INFO_LOG_FMT(COMMON, "WSAStartup succeeded, wVersion={}.{}, wHighVersion={}.{}", + int(LOBYTE(s_data.wVersion)), int(HIBYTE(s_data.wVersion)), + int(LOBYTE(s_data.wHighVersion)), int(HIBYTE(s_data.wHighVersion))); + } + else + { + // The WSAStartup function directly returns the extended error code in the return value. + // A call to the WSAGetLastError function is not needed and should not be used. + // + // Source: + // https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-wsastartup + ERROR_LOG_FMT(COMMON, "WSAStartup failed with error {}: {}", ret, + Common::DecodeNetworkError(ret)); + } } s_num_objects++; } diff --git a/Source/Core/Core/IOS/Network/Socket.cpp b/Source/Core/Core/IOS/Network/Socket.cpp index 4b7c2e2c8a..59f8e31814 100644 --- a/Source/Core/Core/IOS/Network/Socket.cpp +++ b/Source/Core/Core/IOS/Network/Socket.cpp @@ -97,6 +97,17 @@ s32 WiiSockMan::GetNetErrorCode(s32 ret, std::string_view caller, bool is_rw) { #ifdef _WIN32 s32 error_code = WSAGetLastError(); + // Some programs might hijack WinSock2 (e.g. ReShade) and alter the expected return value. + if (error_code == WSAEINVAL && caller == "SO_CONNECT") + { + // Note: + // In order to preserve backward compatibility, this error is reported as WSAEINVAL to Windows + // Sockets 1.1 applications that link to either Winsock.dll or Wsock32.dll. + // + // Source: + // https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-connect + error_code = WSAEALREADY; + } #else s32 error_code = errno; #endif @@ -292,7 +303,7 @@ void WiiSocket::Update(bool read, bool write, bool except) memory.CopyFromEmu(&addr, ioctl.buffer_in + 8, sizeof(WiiSockAddrIn)); sockaddr_in local_name = WiiSockMan::ToNativeAddrIn(addr); - int ret = connect(fd, (sockaddr*)&local_name, sizeof(local_name)); + const int ret = connect(fd, (sockaddr*)&local_name, sizeof(local_name)); ReturnValue = m_socket_manager.GetNetErrorCode(ret, "SO_CONNECT", false); UpdateConnectingState(ReturnValue); From d18dc1785de8fb12df88c571b4a1fbfd8b556f9c Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 11 Jun 2024 07:03:17 -0400 Subject: [PATCH 082/296] Release Achievement Manager Loaded Volume AchievementManager maintains a unique pointer to a copy of the current volume so it can asynchronously hash that volume. It is not needed otherwise, so I can release that pointer when hashing is complete. This change fixes a bug whereby changing discs in a game and then changing to a different game would result in the loaded volume pointer still being loaded with and hashing to the previous game. --- Source/Core/Core/AchievementManager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 360a332eb0..682620b900 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -642,6 +642,7 @@ void AchievementManager::LeaderboardEntriesCallback(int result, const char* erro void AchievementManager::LoadGameCallback(int result, const char* error_message, rc_client_t* client, void* userdata) { + AchievementManager::GetInstance().m_loading_volume.reset(nullptr); if (result != RC_OK) { WARN_LOG_FMT(ACHIEVEMENTS, "Failed to load data for current game."); @@ -672,6 +673,7 @@ void AchievementManager::LoadGameCallback(int result, const char* error_message, void AchievementManager::ChangeMediaCallback(int result, const char* error_message, rc_client_t* client, void* userdata) { + AchievementManager::GetInstance().m_loading_volume.reset(nullptr); if (result == RC_OK) return; From 12467ffcfa8c6dfceb9e150f765cce312ea354ef Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 12 Jun 2024 06:25:26 -0400 Subject: [PATCH 083/296] Improved Achievement Progress Label Label now appears atop the progress bar and reports the progress as the formatted text returned by rcheevos instead of a simple percentage. --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 9 +++++++++ Source/Core/DolphinQt/Achievements/AchievementBox.h | 1 + 2 files changed, 10 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 4b54851b39..6ecd87b8c7 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -18,6 +18,8 @@ #include "DolphinQt/QtUtils/FromStdString.h" +static constexpr size_t PROGRESS_LENGTH = 24; + AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achievement) : QGroupBox(parent), m_achievement(achievement) { @@ -35,6 +37,8 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve QSizePolicy sp_retain = m_progress_bar->sizePolicy(); sp_retain.setRetainSizeWhenHidden(true); m_progress_bar->setSizePolicy(sp_retain); + m_progress_label = new QLabel(); + m_progress_label->setAlignment(Qt::AlignCenter); QVBoxLayout* a_col_right = new QVBoxLayout(); a_col_right->addWidget(title); @@ -42,6 +46,9 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve a_col_right->addWidget(points); a_col_right->addWidget(m_status); a_col_right->addWidget(m_progress_bar); + QVBoxLayout* a_prog_layout = new QVBoxLayout(m_progress_bar); + a_prog_layout->setContentsMargins(0, 0, 0, 0); + a_prog_layout->addWidget(m_progress_label); QHBoxLayout* a_total = new QHBoxLayout(); a_total->addWidget(m_badge); a_total->addLayout(a_col_right); @@ -82,6 +89,8 @@ void AchievementBox::UpdateData() { m_progress_bar->setRange(0, 100); m_progress_bar->setValue(m_achievement->measured_percent); + m_progress_bar->setTextVisible(false); + m_progress_label->setText(QString::fromUtf8(m_achievement->measured_progress, PROGRESS_LENGTH)); m_progress_bar->setVisible(true); } else diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.h b/Source/Core/DolphinQt/Achievements/AchievementBox.h index 1bb7ce56ad..596893b148 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.h +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.h @@ -25,6 +25,7 @@ private: QLabel* m_badge; QLabel* m_status; QProgressBar* m_progress_bar; + QLabel* m_progress_label; rc_client_achievement_t* m_achievement; }; From fe517ad2c6e28e4e2f3b400016fbc679efc2b9e0 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 12 Jun 2024 05:28:43 -0400 Subject: [PATCH 084/296] Remove Extra Speed Limit Message Prior to this change, attempting to decrease the speed limit below 100% in hardmode would display the new attempted speed and then warn that the speed can not be decreased below 100%; this disables that first message under those conditions. --- Source/Core/DolphinQt/HotkeyScheduler.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 10f7540ca7..09410ebc7f 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -472,9 +472,14 @@ void HotkeyScheduler::Run() auto ShowEmulationSpeed = []() { const float emulation_speed = Config::Get(Config::MAIN_EMULATION_SPEED); - OSD::AddMessage(emulation_speed <= 0 ? - "Speed Limit: Unlimited" : - fmt::format("Speed Limit: {}%", std::lround(emulation_speed * 100.f))); + if (!AchievementManager::GetInstance().IsHardcoreModeActive() || + Config::Get(Config::MAIN_EMULATION_SPEED) >= 1.0f || + Config::Get(Config::MAIN_EMULATION_SPEED) <= 0.0f) + { + OSD::AddMessage(emulation_speed <= 0 ? "Speed Limit: Unlimited" : + fmt::format("Speed Limit: {}%", + std::lround(emulation_speed * 100.f))); + } }; if (IsHotkey(HK_DECREASE_EMULATION_SPEED)) From 7eec723f3ff5cd8525bb47b1e27297c0c73eec79 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 14 Jun 2024 00:19:45 -0400 Subject: [PATCH 085/296] Hide Challenge Icons when OSD Messages Disabled --- Source/Core/VideoCommon/OnScreenUI.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 1d5a432d8a..e1693b814f 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -333,6 +333,8 @@ void OnScreenUI::DrawDebugText() void OnScreenUI::DrawChallengesAndLeaderboards() { + if (!Config::Get(Config::MAIN_OSD_MESSAGES)) + return; #ifdef USE_RETRO_ACHIEVEMENTS std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; const auto& challenge_icons = AchievementManager::GetInstance().GetChallengeIcons(); From cb05ed29fe84fd8d26d4f25073676a1c60203cad Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 14 Jun 2024 00:37:45 -0400 Subject: [PATCH 086/296] Only Display One Progress At A Time Add a two second timer to Achievement Progress Indicators to wait until two seconds after the previous message (when it should have decayed out automatically) before posting any new ones. --- Source/Core/Core/AchievementManager.cpp | 7 ++++++- Source/Core/Core/AchievementManager.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index a91daa4fce..c4cd632221 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -812,11 +812,16 @@ void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( void AchievementManager::HandleAchievementProgressIndicatorShowEvent( const rc_client_event_t* client_event) { - const auto& instance = AchievementManager::GetInstance(); + auto& instance = AchievementManager::GetInstance(); + auto current_time = std::chrono::steady_clock::now(); + const auto message_wait_time = std::chrono::milliseconds{OSD::Duration::SHORT}; + if (current_time - instance.m_last_progress_message < message_wait_time) + return; OSD::AddMessage(fmt::format("{} {}", client_event->achievement->title, client_event->achievement->measured_progress), OSD::Duration::SHORT, OSD::Color::GREEN, &instance.GetAchievementBadge(client_event->achievement->id, false)); + instance.m_last_progress_message = current_time; } void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* client_event, diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index f538832ade..a86abeab13 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -201,6 +201,7 @@ private: std::unordered_map m_locked_badges; RichPresence m_rich_presence; std::chrono::steady_clock::time_point m_last_rp_time = std::chrono::steady_clock::now(); + std::chrono::steady_clock::time_point m_last_progress_message = std::chrono::steady_clock::now(); std::unordered_map m_leaderboard_map; NamedBadgeMap m_active_challenges; From 3d5a1f7d335105862a9d86d12806bebdb33db12e Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 13 Jun 2024 00:03:46 -0400 Subject: [PATCH 087/296] Refactored Challenge Icons to handle icon updates If an icon is displayed on screen before it downloads, it was displaying a default icon but it would fail to load the actual icon even after it was downloaded. This fixes that. --- Source/Core/Core/AchievementManager.cpp | 29 +++++++++++--- Source/Core/Core/AchievementManager.h | 9 +++-- Source/Core/VideoCommon/OnScreenUI.cpp | 51 ++++++++++++------------- Source/Core/VideoCommon/OnScreenUI.h | 2 +- 4 files changed, 55 insertions(+), 36 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 6904b3e7a9..ae95cc370e 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -338,7 +338,18 @@ AchievementManager::RichPresence AchievementManager::GetRichPresence() const return m_rich_presence; } -const AchievementManager::NamedBadgeMap& AchievementManager::GetChallengeIcons() const +const bool AchievementManager::AreChallengesUpdated() const +{ + return m_challenges_updated; +} + +void AchievementManager::ResetChallengesUpdated() +{ + m_challenges_updated = false; +} + +const std::unordered_set& +AchievementManager::GetActiveChallenges() const { return m_active_challenges; } @@ -796,15 +807,18 @@ void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( const rc_client_event_t* client_event) { auto& instance = AchievementManager::GetInstance(); - instance.m_active_challenges[client_event->achievement->badge_name] = - &AchievementManager::GetInstance().GetAchievementBadge(client_event->achievement->id, false); + const auto [iter, inserted] = instance.m_active_challenges.insert(client_event->achievement->id); + if (inserted) + instance.m_challenges_updated = true; } void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( const rc_client_event_t* client_event) { - AchievementManager::GetInstance().m_active_challenges.erase( - client_event->achievement->badge_name); + auto& instance = AchievementManager::GetInstance(); + const auto removed = instance.m_active_challenges.erase(client_event->achievement->id); + if (removed > 0) + instance.m_challenges_updated = true; } void AchievementManager::HandleAchievementProgressIndicatorShowEvent( @@ -968,6 +982,11 @@ void AchievementManager::FetchBadge(AchievementManager::Badge* badge, u32 badge_ } m_update_callback(callback_data); + if (badge_type == RC_IMAGE_TYPE_ACHIEVEMENT && + m_active_challenges.contains(*callback_data.achievements.begin())) + { + m_challenges_updated = true; + } }); } diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index f538832ade..94fa2a6025 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -16,6 +16,7 @@ #include #include #include +#include #include #include @@ -50,7 +51,6 @@ public: static constexpr size_t RP_SIZE = 256; using RichPresence = std::array; using Badge = VideoCommon::CustomTextureData::ArraySlice::Level; - using NamedBadgeMap = std::unordered_map; static constexpr size_t MAX_DISPLAYED_LBOARDS = 4; static constexpr std::string_view DEFAULT_PLAYER_BADGE_FILENAME = "achievements_player.png"; @@ -116,7 +116,9 @@ public: const Badge& GetAchievementBadge(AchievementId id, bool locked) const; const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id); RichPresence GetRichPresence() const; - const NamedBadgeMap& GetChallengeIcons() const; + const bool AreChallengesUpdated() const; + void ResetChallengesUpdated(); + const std::unordered_set& GetActiveChallenges() const; std::vector GetActiveLeaderboards() const; void DoState(PointerWrap& p); @@ -203,7 +205,8 @@ private: std::chrono::steady_clock::time_point m_last_rp_time = std::chrono::steady_clock::now(); std::unordered_map m_leaderboard_map; - NamedBadgeMap m_active_challenges; + bool m_challenges_updated = false; + std::unordered_set m_active_challenges; std::vector m_active_leaderboards; Common::WorkQueueThread> m_queue; diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 1d5a432d8a..d3a3c7397d 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -334,11 +334,28 @@ void OnScreenUI::DrawDebugText() void OnScreenUI::DrawChallengesAndLeaderboards() { #ifdef USE_RETRO_ACHIEVEMENTS - std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; - const auto& challenge_icons = AchievementManager::GetInstance().GetChallengeIcons(); - const auto& leaderboard_progress = AchievementManager::GetInstance().GetActiveLeaderboards(); + auto& instance = AchievementManager::GetInstance(); + std::lock_guard lg{instance.GetLock()}; + if (instance.AreChallengesUpdated()) + { + instance.ResetChallengesUpdated(); + const auto& challenges = instance.GetActiveChallenges(); + m_challenge_texture_map.clear(); + for (const auto& name : challenges) + { + const auto& icon = instance.GetAchievementBadge(name, false); + const u32 width = icon.width; + const u32 height = icon.height; + TextureConfig tex_config(width, height, 1, 1, 1, AbstractTextureFormat::RGBA8, 0, + AbstractTextureType::Texture_2DArray); + auto res = m_challenge_texture_map.insert_or_assign(name, g_gfx->CreateTexture(tex_config)); + res.first->second->Load(0, width, height, width, icon.data.data(), + sizeof(u32) * width * height); + } + } + float leaderboard_y = ImGui::GetIO().DisplaySize.y; - if (!challenge_icons.empty()) + if (!m_challenge_texture_map.empty()) { ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x, ImGui::GetIO().DisplaySize.y), 0, ImVec2(1.0, 1.0)); @@ -349,37 +366,17 @@ void OnScreenUI::DrawChallengesAndLeaderboards() ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoNav | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoFocusOnAppearing)) { - for (const auto& [name, icon] : challenge_icons) - { - if (m_challenge_texture_map.find(name) != m_challenge_texture_map.end()) - continue; - const u32 width = icon->width; - const u32 height = icon->height; - TextureConfig tex_config(width, height, 1, 1, 1, AbstractTextureFormat::RGBA8, 0, - AbstractTextureType::Texture_2DArray); - auto res = m_challenge_texture_map.insert_or_assign(name, g_gfx->CreateTexture(tex_config)); - res.first->second->Load(0, width, height, width, icon->data.data(), - sizeof(u32) * width * height); - } for (auto& [name, texture] : m_challenge_texture_map) { - auto icon_itr = challenge_icons.find(name); - if (icon_itr == challenge_icons.end()) - { - m_challenge_texture_map.erase(name); - continue; - } - if (texture) - { - ImGui::Image(texture.get(), ImVec2(static_cast(icon_itr->second->width), - static_cast(icon_itr->second->height))); - } + ImGui::Image(texture.get(), ImVec2(static_cast(texture->GetWidth()), + static_cast(texture->GetHeight()))); } leaderboard_y -= ImGui::GetWindowHeight(); } ImGui::End(); } + const auto& leaderboard_progress = instance.GetActiveLeaderboards(); if (!leaderboard_progress.empty()) { ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x, leaderboard_y), 0, diff --git a/Source/Core/VideoCommon/OnScreenUI.h b/Source/Core/VideoCommon/OnScreenUI.h index 76fdcee19a..28749807be 100644 --- a/Source/Core/VideoCommon/OnScreenUI.h +++ b/Source/Core/VideoCommon/OnScreenUI.h @@ -76,7 +76,7 @@ private: float m_backbuffer_scale = 1.0; #ifdef USE_RETRO_ACHIEVEMENTS - std::map, std::less<>> m_challenge_texture_map; + std::map, std::less<>> m_challenge_texture_map; #endif // USE_RETRO_ACHIEVEMENTS bool m_ready = false; From cee3d9126be2bd9ca536ebe0df08f03ad0e7eb98 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 12 Jun 2024 06:34:46 -0400 Subject: [PATCH 088/296] Added missing dialog updates to achievement events Now should properly update the Achievements dialog whenever the displayed state of an achievement/leaderboard changes. --- Source/Core/Core/AchievementManager.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c4cd632221..2ad653f6ba 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -741,6 +741,8 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_client_event_t (rc_client_get_hardcore_enabled(instance.m_client)) ? OSD::Color::YELLOW : OSD::Color::CYAN, &instance.GetAchievementBadge(client_event->achievement->id, false)); + AchievementManager::GetInstance().m_update_callback( + UpdatedItems{.achievements = {client_event->achievement->id}}); } void AchievementManager::HandleLeaderboardStartedEvent(const rc_client_event_t* client_event) @@ -765,6 +767,8 @@ void AchievementManager::HandleLeaderboardSubmittedEvent(const rc_client_event_t client_event->leaderboard->title), OSD::Duration::VERY_LONG, OSD::Color::YELLOW); AchievementManager::GetInstance().FetchBoardInfo(client_event->leaderboard->id); + AchievementManager::GetInstance().m_update_callback( + UpdatedItems{.leaderboards = {client_event->leaderboard->id}}); } void AchievementManager::HandleLeaderboardTrackerUpdateEvent(const rc_client_event_t* client_event) @@ -822,6 +826,8 @@ void AchievementManager::HandleAchievementProgressIndicatorShowEvent( OSD::Duration::SHORT, OSD::Color::GREEN, &instance.GetAchievementBadge(client_event->achievement->id, false)); instance.m_last_progress_message = current_time; + AchievementManager::GetInstance().m_update_callback( + UpdatedItems{.achievements = {client_event->achievement->id}}); } void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* client_event, From e1ed19d48a0e8e09e68887bfdc22aaeab680ec07 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sat, 15 Jun 2024 10:22:32 -0400 Subject: [PATCH 089/296] Add word wrap to Achievement Dialog text --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 2 ++ Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp | 3 +++ .../DolphinQt/Achievements/AchievementLeaderboardWidget.cpp | 2 ++ 3 files changed, 7 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 4b54851b39..c21ed362fe 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -27,8 +27,10 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve m_badge = new QLabel(); QLabel* title = new QLabel(QString::fromUtf8(achievement->title, strlen(achievement->title))); + title->setWordWrap(true); QLabel* description = new QLabel(QString::fromUtf8(achievement->description, strlen(achievement->description))); + description->setWordWrap(true); QLabel* points = new QLabel(tr("%1 points").arg(achievement->points)); m_status = new QLabel(); m_progress_bar = new QProgressBar(); diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index c1976e2752..eeaae09b47 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -29,6 +29,9 @@ AchievementHeaderWidget::AchievementHeaderWidget(QWidget* parent) : QWidget(pare m_game_progress = new QProgressBar(); m_rich_presence = new QLabel(); + m_name->setWordWrap(true); + m_points->setWordWrap(true); + m_rich_presence->setWordWrap(true); QSizePolicy sp_retain = m_game_progress->sizePolicy(); sp_retain.setRetainSizeWhenHidden(true); m_game_progress->setSizePolicy(sp_retain); diff --git a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp index d2a52970f8..c3ae860205 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp @@ -55,7 +55,9 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all) const auto* leaderboard = leaderboard_bucket.leaderboards[board]; m_leaderboard_order[leaderboard->id] = row; QLabel* a_title = new QLabel(QString::fromUtf8(leaderboard->title)); + a_title->setWordWrap(true); QLabel* a_description = new QLabel(QString::fromUtf8(leaderboard->description)); + a_description->setWordWrap(true); QVBoxLayout* a_col_left = new QVBoxLayout(); a_col_left->addWidget(a_title); a_col_left->addWidget(a_description); From 42e73547eb9135ca9a93399e7300f49a5a0620f1 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Tue, 11 Jun 2024 19:13:54 -0500 Subject: [PATCH 090/296] ControllerInterface: Adjust sort priorities to ensure default keyboard-mouse device is first. --- Source/Core/InputCommon/ControllerInterface/CoreDevice.h | 2 ++ .../ControllerInterface/DInput/DInputKeyboardMouse.cpp | 2 +- .../ControllerInterface/Quartz/QuartzKeyboardAndMouse.h | 1 + .../ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm | 5 +++++ Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp | 5 +++++ Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h | 1 + 6 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h index 5c7a8ed568..8dbbccf4b5 100644 --- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h +++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include #include #include @@ -147,6 +148,7 @@ public: // A higher priority means it will be one of the first ones (smaller index), making it more // likely to be index 0, which is automatically set as the default device when there isn't one. // Every platform should have at least one device with priority >= 0. + static constexpr int DEFAULT_DEVICE_SORT_PRIORITY = std::numeric_limits::max(); virtual int GetSortPriority() const { return 0; } const std::vector& Inputs() const { return m_inputs; } diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp index 3c6a82dcd8..ac6406509b 100644 --- a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp +++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.cpp @@ -271,7 +271,7 @@ std::string KeyboardMouse::GetSource() const // Give this device a higher priority to make sure it shows first int KeyboardMouse::GetSortPriority() const { - return 5; + return DEFAULT_DEVICE_SORT_PRIORITY; } bool KeyboardMouse::IsVirtualDevice() const diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h index 07292f9039..7f526a07dd 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h @@ -69,6 +69,7 @@ public: std::string GetName() const override; std::string GetSource() const override; + int GetSortPriority() const override; private: void MainThreadInitialization(void* view); diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm index 55f212900d..f36cc86245 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm @@ -283,6 +283,11 @@ std::string KeyboardAndMouse::GetSource() const return Quartz::GetSourceName(); } +int KeyboardAndMouse::GetSortPriority() const +{ + return DEFAULT_DEVICE_SORT_PRIORITY; +} + ControlState KeyboardAndMouse::Cursor::GetState() const { return std::max(0.0, ControlState(m_axis) / (m_positive ? 1.0 : -1.0)); diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp index e4b717e3af..383dd66f1c 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp @@ -414,6 +414,11 @@ std::string KeyboardMouse::GetSource() const return std::string(SOURCE_NAME); } +int KeyboardMouse::GetSortPriority() const +{ + return DEFAULT_DEVICE_SORT_PRIORITY; +} + KeyboardMouse::Key::Key(Display* const display, KeyCode keycode, const char* keyboard) : m_display(display), m_keyboard(keyboard), m_keycode(keycode) { diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h index 427c81b18a..f6fc108e10 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h @@ -120,6 +120,7 @@ public: std::string GetName() const override; std::string GetSource() const override; + int GetSortPriority() const override; private: Window m_window; From c5a030e7ab0089a7b5c018c0686273bff139231f Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sat, 15 Jun 2024 23:12:12 +0200 Subject: [PATCH 091/296] VideoCommon: Fix format string injection vulnerability from leaderboards --- Source/Core/VideoCommon/OnScreenUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index d3a3c7397d..15e90df60f 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -389,7 +389,7 @@ void OnScreenUI::DrawChallengesAndLeaderboards() ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoFocusOnAppearing)) { for (const auto& value : leaderboard_progress) - ImGui::Text(value.data()); + ImGui::TextUnformatted(value.c_str()); } ImGui::End(); } From 693607f1d38e90189bc973bb705498afbf41c15a Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sat, 15 Jun 2024 22:56:12 +0200 Subject: [PATCH 092/296] CMake: Let UICommon depend on Core This is already the case implicitly by UICommon including several headers from Core, so just make it explicit --- Source/Core/UICommon/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/UICommon/CMakeLists.txt b/Source/Core/UICommon/CMakeLists.txt index 99db3a4eb8..beb5e16e3f 100644 --- a/Source/Core/UICommon/CMakeLists.txt +++ b/Source/Core/UICommon/CMakeLists.txt @@ -28,6 +28,7 @@ add_library(uicommon target_link_libraries(uicommon PUBLIC common + core cpp-optparse minizip::minizip pugixml From b8381bfa7cc6e4f7764bf193a8b824533038c4bc Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sat, 15 Jun 2024 22:58:04 +0200 Subject: [PATCH 093/296] CMake: Make the rcheevos dependency public Since rcheevos headers are included in AchievementManager.h, and everyone that depends on Core can include that, we must also pass on the include directory and defines to those dependencies --- Source/Core/Core/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 535e687475..54a2e18db5 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -779,7 +779,7 @@ if(MSVC) endif() if(USE_RETRO_ACHIEVEMENTS) - target_link_libraries(core PRIVATE rcheevos) - target_compile_definitions(core PRIVATE -DUSE_RETRO_ACHIEVEMENTS) - target_compile_definitions(core PRIVATE -DRC_CLIENT_SUPPORTS_HASH) + target_link_libraries(core PUBLIC rcheevos) + target_compile_definitions(core PUBLIC -DUSE_RETRO_ACHIEVEMENTS) + target_compile_definitions(core PUBLIC -DRC_CLIENT_SUPPORTS_HASH) endif() From 1b00b4e3d87e3cd3da90d35bf52741e50f66a3b0 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 13 Jun 2024 21:46:07 -0400 Subject: [PATCH 094/296] OSD messages display horizontally OSD messages with an icon and text will display the text to the right of the icon instead of below it. --- Source/Core/VideoCommon/OnScreenDisplay.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp index c24fee6538..5d9d90b95b 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.cpp +++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp @@ -111,6 +111,7 @@ static float DrawMessage(int index, Message& msg, const ImVec2& position, int ti { ImGui::Image(msg.texture.get(), ImVec2(static_cast(msg.icon->width), static_cast(msg.icon->height))); + ImGui::SameLine(); } } From a79f4289722784452e0322cf46aa058bc4180d5f Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 13 Jun 2024 22:09:15 -0400 Subject: [PATCH 095/296] Fix margins on icon-only messages Messages with an icon and no text (such as in the game start sequence) had an oversized margin due to ImGui adding padding for an empty string. --- Source/Core/VideoCommon/OnScreenDisplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp index 5d9d90b95b..cc7fa6e22b 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.cpp +++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp @@ -116,7 +116,8 @@ static float DrawMessage(int index, Message& msg, const ImVec2& position, int ti } // Use %s in case message contains %. - ImGui::TextColored(ARGBToImVec4(msg.color), "%s", msg.text.c_str()); + if (msg.text.size() > 0) + ImGui::TextColored(ARGBToImVec4(msg.color), "%s", msg.text.c_str()); window_height = ImGui::GetWindowSize().y + (WINDOW_PADDING * ImGui::GetIO().DisplayFramebufferScale.y); } From 9e1f5ed4b566df704b2041012944bbbd605a9592 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 13 Jun 2024 23:39:46 -0400 Subject: [PATCH 096/296] Stack Challenge Icons Horizontally --- Source/Core/VideoCommon/OnScreenUI.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index d3a3c7397d..61e59484e4 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -357,9 +357,9 @@ void OnScreenUI::DrawChallengesAndLeaderboards() float leaderboard_y = ImGui::GetIO().DisplaySize.y; if (!m_challenge_texture_map.empty()) { + ImGui::SetNextWindowSize(ImVec2(0, 0)); ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x, ImGui::GetIO().DisplaySize.y), 0, - ImVec2(1.0, 1.0)); - ImGui::SetNextWindowSize(ImVec2(0.0f, 0.0f)); + ImVec2(1, 1)); if (ImGui::Begin("Challenges", nullptr, ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoSavedSettings | @@ -370,9 +370,10 @@ void OnScreenUI::DrawChallengesAndLeaderboards() { ImGui::Image(texture.get(), ImVec2(static_cast(texture->GetWidth()), static_cast(texture->GetHeight()))); + ImGui::SameLine(); } - leaderboard_y -= ImGui::GetWindowHeight(); } + leaderboard_y -= ImGui::GetWindowHeight(); ImGui::End(); } From eb26937a937c923c06733e90d822a53a354c58c9 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 24 May 2024 17:31:54 -0700 Subject: [PATCH 097/296] Branch Watch Tool: Add Set Breakpoints Submenu --- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 128 ++++++++++++++++-- .../DolphinQt/Debugger/BranchWatchDialog.h | 13 ++ 2 files changed, 129 insertions(+), 12 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index 810c13cc9c..6d80451026 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -47,6 +47,7 @@ #include "DolphinQt/QtUtils/DolphinFileDialog.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" +#include "DolphinQt/Resources.h" #include "DolphinQt/Settings.h" class BranchWatchProxyModel final : public QSortFilterProxyModel @@ -490,9 +491,13 @@ BranchWatchDialog::BranchWatchDialog(Core::System& system, Core::BranchWatch& br return group_box; }()); + UpdateIcons(); + connect(m_timer = new QTimer, &QTimer::timeout, this, &BranchWatchDialog::OnTimeout); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, &BranchWatchDialog::OnEmulationStateChanged); + connect(&Settings::Instance(), &Settings::ThemeChanged, this, + &BranchWatchDialog::OnThemeChanged); connect(m_table_proxy, &BranchWatchProxyModel::layoutChanged, this, &BranchWatchDialog::UpdateStatus); @@ -694,13 +699,19 @@ void BranchWatchDialog::OnEmulationStateChanged(Core::State new_state) Update(); } +void BranchWatchDialog::OnThemeChanged() +{ + UpdateIcons(); +} + void BranchWatchDialog::OnHelp() { ModalMessageBox::information( this, tr("Branch Watch Tool Help (1/4)"), tr("Branch Watch is a code-searching tool that can isolate branches tracked by the emulated " "CPU by testing candidate branches with simple criteria. If you are familiar with Cheat " - "Engine's Ultimap, Branch Watch is similar to that.\n\n" + "Engine's Ultimap, Branch Watch is similar to that." + "\n\n" "Press the \"Start Branch Watch\" button to activate Branch Watch. Branch Watch persists " "across emulation sessions, and a snapshot of your progress can be saved to and loaded " "from the User Directory to persist after Dolphin Emulator is closed. \"Save As...\" and " @@ -723,7 +734,8 @@ void BranchWatchDialog::OnHelp() "taken since the last time it was checked. It is also possible to reduce the candidates " "by determining whether a branch instruction has or has not been overwritten since it was " "first hit. Filter the candidates by branch kind, branch condition, origin or destination " - "address, and origin or destination symbol name.\n\n" + "address, and origin or destination symbol name." + "\n\n" "After enough passes and experimentation, you may be able to find function calls and " "conditional code paths that are only taken when an action is performed in the emulated " "software.")); @@ -731,17 +743,27 @@ void BranchWatchDialog::OnHelp() this, tr("Branch Watch Tool Help (4/4)"), tr("Rows in the table can be left-clicked on the origin, destination, and symbol columns to " "view the associated address in Code View. Right-clicking the selected row(s) will bring " - "up a context menu.\n\n" + "up a context menu." + "\n\n" + "If the origin, destination, or symbol columns are right-clicked, an action copy the " + "relevant address(es) to the clipboard will be available, and an action to set a " + "breakpoint at the relevant address(es) will be available. Note that, for the origin / " + "destination symbol columns, these actions will only be enabled if every row in the " + "selection has a symbol." + "\n\n" "If the origin column of a row selection is right-clicked, an action to replace the " - "branch instruction at the origin(s) with a NOP instruction (No Operation), and an action " - "to copy the address(es) to the clipboard will be available.\n\n" + "branch instruction at the origin(s) with a NOP instruction (No Operation) will be " + "available." + "\n\n" "If the destination column of a row selection is right-clicked, an action to replace the " "instruction at the destination(s) with a BLR instruction (Branch to Link Register) will " - "be available, but only if the branch instruction at every origin saves the link " - "register, and an action to copy the address(es) to the clipboard will be available.\n\n" + "be available, but will only be enabled if the branch instruction at every origin updates " + "the link register." + "\n\n" "If the origin / destination symbol column of a row selection is right-clicked, an action " - "to replace the instruction(s) at the start of the symbol with a BLR instruction will be " - "available, but only if every origin / destination symbol is found.\n\n" + "to replace the instruction at the start of the symbol(s) with a BLR instruction will be " + "available, but will only be enabled if every row in the selection has a symbol." + "\n\n" "All context menus have the action to delete the selected row(s) from the candidates.")); } @@ -864,6 +886,21 @@ void BranchWatchDialog::OnTableCopyAddress() QApplication::clipboard()->setText(text); } +void BranchWatchDialog::OnTableSetBreakpointBreak() +{ + SetBreakpoints(true, false); +} + +void BranchWatchDialog::OnTableSetBreakpointLog() +{ + SetBreakpoints(false, true); +} + +void BranchWatchDialog::OnTableSetBreakpointBoth() +{ + SetBreakpoints(true, true); +} + void BranchWatchDialog::SaveSettings() { auto& settings = Settings::GetQSettings(); @@ -916,6 +953,12 @@ void BranchWatchDialog::UpdateStatus() } } +void BranchWatchDialog::UpdateIcons() +{ + m_icn_full = Resources::GetThemeIcon("debugger_breakpoint"); + m_icn_partial = Resources::GetThemeIcon("stop"); +} + void BranchWatchDialog::Save(const Core::CPUThreadGuard& guard, const std::string& filepath) { File::IOFile file(filepath, "w"); @@ -972,6 +1015,18 @@ void BranchWatchDialog::SetStubPatches(u32 value) const m_code_widget->Update(); } +void BranchWatchDialog::SetBreakpoints(bool break_on_hit, bool log_on_hit) const +{ + auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); + for (const QModelIndex& index : m_index_list_temp) + { + const u32 address = m_table_proxy->data(index, UserRole::ClickRole).value(); + breakpoints.Add(address, false, break_on_hit, log_on_hit, {}); + } + emit m_code_widget->BreakpointsChanged(); + m_code_widget->Update(); +} + QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) { if (m_mnu_table_context == nullptr) @@ -984,23 +1039,35 @@ QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) m_mnu_table_context->addAction(tr("Insert &BLR"), this, &BranchWatchDialog::OnTableSetBLR); m_act_copy_address = m_mnu_table_context->addAction(tr("&Copy Address"), this, &BranchWatchDialog::OnTableCopyAddress); + + m_mnu_set_breakpoint = new QMenu(tr("Set Brea&kpoint")); + m_act_break_on_hit = m_mnu_set_breakpoint->addAction( + tr("&Break On Hit"), this, &BranchWatchDialog::OnTableSetBreakpointBreak); + m_act_log_on_hit = m_mnu_set_breakpoint->addAction(tr("&Log On Hit"), this, + &BranchWatchDialog::OnTableSetBreakpointLog); + m_act_both_on_hit = m_mnu_set_breakpoint->addAction( + tr("Break &And Log On Hit"), this, &BranchWatchDialog::OnTableSetBreakpointBoth); + m_mnu_table_context->addMenu(m_mnu_set_breakpoint); } + const bool core_initialized = Core::GetState(m_system) != Core::State::Uninitialized; + bool supported_column = true; switch (index.column()) { case Column::Origin: m_act_insert_blr->setVisible(false); m_act_insert_nop->setVisible(true); - m_act_insert_nop->setEnabled(Core::GetState(m_system) != Core::State::Uninitialized); + m_act_insert_nop->setEnabled(core_initialized); m_act_copy_address->setEnabled(true); + m_mnu_set_breakpoint->setEnabled(true); break; case Column::Destination: { m_act_insert_nop->setVisible(false); m_act_insert_blr->setVisible(true); const bool all_branches_save_lr = - Core::GetState(m_system) != Core::State::Uninitialized && + core_initialized && std::all_of( m_index_list_temp.begin(), m_index_list_temp.end(), [this](const QModelIndex& idx) { const QModelIndex sibling = idx.siblingAtColumn(Column::Instruction); @@ -1008,6 +1075,7 @@ QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) }); m_act_insert_blr->setEnabled(all_branches_save_lr); m_act_copy_address->setEnabled(true); + m_mnu_set_breakpoint->setEnabled(true); break; } case Column::OriginSymbol: @@ -1016,13 +1084,14 @@ QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) m_act_insert_nop->setVisible(false); m_act_insert_blr->setVisible(true); const bool all_symbols_valid = - Core::GetState(m_system) != Core::State::Uninitialized && + core_initialized && std::all_of(m_index_list_temp.begin(), m_index_list_temp.end(), [this](const QModelIndex& idx) { return m_table_proxy->data(idx, UserRole::ClickRole).isValid(); }); m_act_insert_blr->setEnabled(all_symbols_valid); m_act_copy_address->setEnabled(all_symbols_valid); + m_mnu_set_breakpoint->setEnabled(all_symbols_valid); break; } default: @@ -1032,5 +1101,40 @@ QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) break; } m_act_copy_address->setVisible(supported_column); + m_mnu_set_breakpoint->menuAction()->setVisible(supported_column); + // Setting breakpoints while nothing is being emulated is discouraged in the UI. + m_mnu_set_breakpoint->setEnabled(core_initialized); + + if (core_initialized && supported_column) + { + qsizetype bp_break_count = 0, bp_log_count = 0, bp_both_count = 0; + for (auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); + const QModelIndex& idx : m_index_list_temp) + { + if (const TBreakPoint* bp = + breakpoints.GetBreakpoint(m_table_proxy->data(idx, UserRole::ClickRole).value())) + { + if (bp->is_temporary) + continue; + if (bp->break_on_hit && bp->log_on_hit) + { + bp_both_count += 1; + continue; + } + bp_break_count += bp->break_on_hit; + bp_log_count += bp->log_on_hit; + } + } + m_act_break_on_hit->setIconVisibleInMenu(bp_break_count != 0); + m_act_break_on_hit->setIcon(bp_break_count == m_index_list_temp.size() ? m_icn_full : + m_icn_partial); + m_act_log_on_hit->setIconVisibleInMenu(bp_log_count != 0); + m_act_log_on_hit->setIcon(bp_log_count == m_index_list_temp.size() ? m_icn_full : + m_icn_partial); + m_act_both_on_hit->setIconVisibleInMenu(bp_both_count != 0); + m_act_both_on_hit->setIcon(bp_both_count == m_index_list_temp.size() ? m_icn_full : + m_icn_partial); + } + return m_mnu_table_context; } diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h index b4dcc8812d..05a8c82432 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.h @@ -7,6 +7,7 @@ #include #include +#include #include #include "Common/CommonTypes.h" @@ -79,6 +80,7 @@ private: void OnWipeInspection(); void OnTimeout(); void OnEmulationStateChanged(Core::State new_state); + void OnThemeChanged(); void OnHelp(); void OnToggleAutoSave(bool checked); void OnHideShowControls(bool checked); @@ -92,6 +94,9 @@ private: void OnTableSetBLR(); void OnTableSetNOP(); void OnTableCopyAddress(); + void OnTableSetBreakpointBreak(); + void OnTableSetBreakpointLog(); + void OnTableSetBreakpointBoth(); void SaveSettings(); @@ -101,10 +106,12 @@ public: private: void UpdateStatus(); + void UpdateIcons(); void Save(const Core::CPUThreadGuard& guard, const std::string& filepath); void Load(const Core::CPUThreadGuard& guard, const std::string& filepath); void AutoSave(const Core::CPUThreadGuard& guard); void SetStubPatches(u32 value) const; + void SetBreakpoints(bool break_on_hit, bool log_on_hit) const; [[nodiscard]] QMenu* GetTableContextMenu(const QModelIndex& index); @@ -118,6 +125,10 @@ private: QAction* m_act_insert_nop; QAction* m_act_insert_blr; QAction* m_act_copy_address; + QMenu* m_mnu_set_breakpoint; + QAction* m_act_break_on_hit; + QAction* m_act_log_on_hit; + QAction* m_act_both_on_hit; QMenu* m_mnu_table_context = nullptr; QMenu* m_mnu_column_visibility; @@ -128,6 +139,8 @@ private: QStatusBar* m_status_bar; QTimer* m_timer; + QIcon m_icn_full, m_icn_partial; + QModelIndexList m_index_list_temp; std::optional m_autosave_filepath; }; From ff25403e0e3a69115c821bc45aba2d4e3980e8d4 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 17 Jun 2024 01:03:34 -0400 Subject: [PATCH 098/296] Disable GDB Stub in Hardcore Mode --- Source/Core/Core/Core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index dcc766febc..fe4bd4079d 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -398,7 +398,7 @@ static void CpuThread(Core::System& system, const std::optional& sa { #ifndef _WIN32 std::string gdb_socket = Config::Get(Config::MAIN_GDB_SOCKET); - if (!gdb_socket.empty()) + if (!gdb_socket.empty() && !AchievementManager::GetInstance().IsHardcoreModeActive()) { GDBStub::InitLocal(gdb_socket.data()); CPUSetInitialExecutionState(true); @@ -407,7 +407,7 @@ static void CpuThread(Core::System& system, const std::optional& sa #endif { int gdb_port = Config::Get(Config::MAIN_GDB_PORT); - if (gdb_port > 0) + if (gdb_port > 0 && !AchievementManager::GetInstance().IsHardcoreModeActive()) { GDBStub::Init(gdb_port); CPUSetInitialExecutionState(true); From b6bd882258356704b6268951a154db822ee09f9f Mon Sep 17 00:00:00 2001 From: luiscondesdi Date: Tue, 18 Jun 2024 07:52:19 +0200 Subject: [PATCH 099/296] Update VulkanMemoryAllocator to v3.1.0 --- Externals/VulkanMemoryAllocator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Externals/VulkanMemoryAllocator b/Externals/VulkanMemoryAllocator index 498e20dfd1..009ecd192c 160000 --- a/Externals/VulkanMemoryAllocator +++ b/Externals/VulkanMemoryAllocator @@ -1 +1 @@ -Subproject commit 498e20dfd1343d99b9115201034bb0219801cdec +Subproject commit 009ecd192c1289c7529bff248a16cfe896254816 From 6b3a9a0bcd13d91b0f0263b0e6f6524d1a2e23cd Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 18 Jun 2024 08:19:17 -0400 Subject: [PATCH 100/296] Add Sorting to Achievements Dialog rc_client provides basic sorting buckets as a possible option when retrieving the list of achievements or leaderboards; this enables them and labels them in the dialog. --- .../DolphinQt/Achievements/AchievementLeaderboardWidget.cpp | 3 ++- .../Core/DolphinQt/Achievements/AchievementProgressWidget.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp index c3ae860205..7ded150a09 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp @@ -44,12 +44,13 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all) return; auto* client = instance.GetClient(); auto* leaderboard_list = - rc_client_create_leaderboard_list(client, RC_CLIENT_LEADERBOARD_LIST_GROUPING_NONE); + rc_client_create_leaderboard_list(client, RC_CLIENT_LEADERBOARD_LIST_GROUPING_TRACKING); u32 row = 0; for (u32 bucket = 0; bucket < leaderboard_list->num_buckets; bucket++) { const auto& leaderboard_bucket = leaderboard_list->buckets[bucket]; + m_common_layout->addWidget(new QLabel(tr(leaderboard_bucket.label))); for (u32 board = 0; board < leaderboard_bucket.num_leaderboards; board++) { const auto* leaderboard = leaderboard_bucket.leaderboards[board]; diff --git a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp index 0164ee6a78..741cb61227 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp @@ -49,9 +49,10 @@ void AchievementProgressWidget::UpdateData(bool clean_all) auto* client = instance.GetClient(); auto* achievement_list = rc_client_create_achievement_list( client, RC_CLIENT_ACHIEVEMENT_CATEGORY_CORE_AND_UNOFFICIAL, - RC_CLIENT_ACHIEVEMENT_LIST_GROUPING_LOCK_STATE); + RC_CLIENT_ACHIEVEMENT_LIST_GROUPING_PROGRESS); for (u32 ix = 0; ix < achievement_list->num_buckets; ix++) { + m_common_layout->addWidget(new QLabel(tr(achievement_list->buckets[ix].label))); for (u32 jx = 0; jx < achievement_list->buckets[ix].num_achievements; jx++) { auto* achievement = achievement_list->buckets[ix].achievements[jx]; From b0fb6ffff3188844568bcd5c70f6ee31b569ae51 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 18 Jun 2024 08:42:21 -0400 Subject: [PATCH 101/296] Update rcheevos submodule to newest master --- Externals/rcheevos/rcheevos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Externals/rcheevos/rcheevos b/Externals/rcheevos/rcheevos index a6cdbb4a52..d54cf8f105 160000 --- a/Externals/rcheevos/rcheevos +++ b/Externals/rcheevos/rcheevos @@ -1 +1 @@ -Subproject commit a6cdbb4a529d85b74777597fcff037dde7bef66b +Subproject commit d54cf8f1059cebc90a6f5ecdf03df69259f22054 From 55ba014fedfa80301d15d4c742a9bfbae5e86cc1 Mon Sep 17 00:00:00 2001 From: dreamsyntax Date: Tue, 18 Jun 2024 18:36:04 -0700 Subject: [PATCH 102/296] DolphinQt: Adjust CPU Clock Override slider CPU Clock Override slider now increments 1% in the UI, with the new lower limit being 1% instead of 6%. Prior implementation made it impossible to set exactly 150% in the GUI. 147% -> 152%. Now users can set exact clock % without needing to edit INIs. --- Source/Core/DolphinQt/Settings/AdvancedPane.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/AdvancedPane.cpp b/Source/Core/DolphinQt/Settings/AdvancedPane.cpp index 9aaef7be2d..cfcc3bba81 100644 --- a/Source/Core/DolphinQt/Settings/AdvancedPane.cpp +++ b/Source/Core/DolphinQt/Settings/AdvancedPane.cpp @@ -100,7 +100,7 @@ void AdvancedPane::CreateLayout() clock_override_layout->addLayout(cpu_clock_override_slider_layout); m_cpu_clock_override_slider = new QSlider(Qt::Horizontal); - m_cpu_clock_override_slider->setRange(0, 150); + m_cpu_clock_override_slider->setRange(1, 400); cpu_clock_override_slider_layout->addWidget(m_cpu_clock_override_slider); m_cpu_clock_override_slider_label = new QLabel(); @@ -203,8 +203,7 @@ void AdvancedPane::ConnectLayout() }); connect(m_cpu_clock_override_slider, &QSlider::valueChanged, [this](int oc_factor) { - // Vaguely exponential scaling? - const float factor = std::exp2f((m_cpu_clock_override_slider->value() - 100.f) / 25.f); + const float factor = m_cpu_clock_override_slider->value() / 100.f; Config::SetBaseOrCurrent(Config::MAIN_OVERCLOCK, factor); Update(); }); @@ -271,8 +270,8 @@ void AdvancedPane::Update() { const QSignalBlocker blocker(m_cpu_clock_override_slider); - m_cpu_clock_override_slider->setValue(static_cast( - std::round(std::log2f(Config::Get(Config::MAIN_OVERCLOCK)) * 25.f + 100.f))); + m_cpu_clock_override_slider->setValue( + static_cast(std::round(Config::Get(Config::MAIN_OVERCLOCK) * 100.f))); } m_cpu_clock_override_slider_label->setText([] { From 45563a872cce3a06badf9466c29bab953e611e45 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 14 Jun 2024 00:01:21 -0400 Subject: [PATCH 103/296] Scale challenge icons based on screen height --- Source/Core/VideoCommon/OnScreenUI.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index e7c5d6959f..c247b139bf 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -359,6 +359,7 @@ void OnScreenUI::DrawChallengesAndLeaderboards() float leaderboard_y = ImGui::GetIO().DisplaySize.y; if (!m_challenge_texture_map.empty()) { + float scale = ImGui::GetIO().DisplaySize.y / 1024.0; ImGui::SetNextWindowSize(ImVec2(0, 0)); ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x, ImGui::GetIO().DisplaySize.y), 0, ImVec2(1, 1)); @@ -370,8 +371,8 @@ void OnScreenUI::DrawChallengesAndLeaderboards() { for (auto& [name, texture] : m_challenge_texture_map) { - ImGui::Image(texture.get(), ImVec2(static_cast(texture->GetWidth()), - static_cast(texture->GetHeight()))); + ImGui::Image(texture.get(), ImVec2(static_cast(texture->GetWidth()) * scale, + static_cast(texture->GetHeight()) * scale)); ImGui::SameLine(); } } From 1d8b1715ab9ba7ac028ccf06859f4ca15f955351 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 25 May 2024 02:19:40 +0100 Subject: [PATCH 104/296] AudioCommon: unlock mutex explicitly to avoid -Wunused-result warning --- Source/Core/AudioCommon/AlsaSoundStream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/AudioCommon/AlsaSoundStream.cpp b/Source/Core/AudioCommon/AlsaSoundStream.cpp index 5645efa58b..b9e817331c 100644 --- a/Source/Core/AudioCommon/AlsaSoundStream.cpp +++ b/Source/Core/AudioCommon/AlsaSoundStream.cpp @@ -20,7 +20,7 @@ AlsaSound::~AlsaSound() m_thread_status.store(ALSAThreadStatus::STOPPING); // Immediately lock and unlock mutex to prevent cv race. - std::unique_lock{cv_m}; + std::unique_lock{cv_m}.unlock(); // Give the opportunity to the audio thread // to realize we are stopping the emulation @@ -82,7 +82,7 @@ bool AlsaSound::SetRunning(bool running) m_thread_status.store(running ? ALSAThreadStatus::RUNNING : ALSAThreadStatus::PAUSED); // Immediately lock and unlock mutex to prevent cv race. - std::unique_lock{cv_m}; + std::unique_lock{cv_m}.unlock(); // Notify thread that status has changed cv.notify_one(); From 75c2360aeacefddddd83cb585f69f9a822a614e7 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 19 Jun 2024 22:12:30 -0400 Subject: [PATCH 105/296] Split AchievementBox UpdateData AchievementBox now has UpdateData and UpdateProgress, which is called from UpdateData, but may be called elsewhere to update just the progress measurement of the achievement. --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 5 +++++ Source/Core/DolphinQt/Achievements/AchievementBox.h | 1 + 2 files changed, 6 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index a14936171d..d4d92e9965 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -87,6 +87,11 @@ void AchievementBox::UpdateData() m_status->setText(tr("Locked")); } + UpdateProgress(); +} + +void AchievementBox::UpdateProgress() +{ if (m_achievement->measured_percent > 0.000) { m_progress_bar->setRange(0, 100); diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.h b/Source/Core/DolphinQt/Achievements/AchievementBox.h index 596893b148..92b1e75878 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.h +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.h @@ -20,6 +20,7 @@ class AchievementBox final : public QGroupBox public: explicit AchievementBox(QWidget* parent, rc_client_achievement_t* achievement); void UpdateData(); + void UpdateProgress(); private: QLabel* m_badge; From a87ea694a9f69d3c2397d4766fcde6e19508c6e0 Mon Sep 17 00:00:00 2001 From: deReeperJosh Date: Sat, 11 May 2024 17:10:15 +0100 Subject: [PATCH 106/296] Add 2 More Slots for Power Discs on Emulated Base --- .../activities/EmulationActivity.kt | 44 +++++++++---------- .../infinitybase/ui/FigureSlotAdapter.kt | 5 +++ .../app/src/main/res/values/strings.xml | 2 + .../Core/Core/IOS/USB/Emulated/Infinity.cpp | 40 +++++++++++++---- Source/Core/Core/IOS/USB/Emulated/Infinity.h | 2 +- .../InfinityBase/InfinityBaseWindow.cpp | 19 +++++--- .../InfinityBase/InfinityBaseWindow.h | 2 +- 7 files changed, 74 insertions(+), 40 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.kt index 4735b506dd..cb2b0f89c9 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.kt @@ -80,7 +80,6 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { private var infinityFigureData = Figure(-1, "Position") private var skylanderSlot = -1 private var infinityPosition = -1 - private var infinityListPosition = -1 private lateinit var skylandersBinding: DialogNfcFiguresManagerBinding private lateinit var infinityBinding: DialogNfcFiguresManagerBinding @@ -140,12 +139,14 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { if (infinityFigures.isEmpty()) { infinityFigures.apply { add(FigureSlot(getString(R.string.infinity_hexagon_label), 0)) - add(FigureSlot(getString(R.string.infinity_p1_label), 1)) - add(FigureSlot(getString(R.string.infinity_p1a1_label), 3)) + add(FigureSlot(getString(R.string.infinity_power_hex_two_label), 1)) + add(FigureSlot(getString(R.string.infinity_power_hex_three_label), 2)) + add(FigureSlot(getString(R.string.infinity_p1_label), 3)) + add(FigureSlot(getString(R.string.infinity_p1a1_label), 4)) add(FigureSlot(getString(R.string.infinity_p1a2_label), 5)) - add(FigureSlot(getString(R.string.infinity_p2_label), 2)) - add(FigureSlot(getString(R.string.infinity_p2a1_label), 4)) - add(FigureSlot(getString(R.string.infinity_p2a2_label), 6)) + add(FigureSlot(getString(R.string.infinity_p2_label), 6)) + add(FigureSlot(getString(R.string.infinity_p2a1_label), 7)) + add(FigureSlot(getString(R.string.infinity_p2a2_label), 8)) } } } @@ -164,7 +165,6 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { putInt(EXTRA_SKYLANDER_VAR, skylanderData.variant) putString(EXTRA_SKYLANDER_NAME, skylanderData.name) putInt(EXTRA_INFINITY_POSITION, infinityPosition) - putInt(EXTRA_INFINITY_LIST_POSITION, infinityListPosition) putLong(EXTRA_INFINITY_NUM, infinityFigureData.number) putString(EXTRA_INFINITY_NAME, infinityFigureData.name) } @@ -183,7 +183,6 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { savedInstanceState.getString(EXTRA_SKYLANDER_NAME)!! ) infinityPosition = savedInstanceState.getInt(EXTRA_INFINITY_POSITION) - infinityListPosition = savedInstanceState.getInt(EXTRA_INFINITY_LIST_POSITION) infinityFigureData = Figure( savedInstanceState.getLong(EXTRA_INFINITY_NUM), savedInstanceState.getString(EXTRA_INFINITY_NAME)!! @@ -297,11 +296,10 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { } else if (requestCode == REQUEST_INFINITY_FIGURE_FILE) { val label = InfinityConfig.loadFigure(infinityPosition, result!!.data.toString()) if (label != null && label != "Unknown Figure") { - clearInfinityFigure(infinityListPosition) - infinityFigures[infinityListPosition].label = label - infinityBinding.figureManager.adapter?.notifyItemChanged(infinityListPosition) + clearInfinityFigure(infinityPosition) + infinityFigures[infinityPosition].label = label + infinityBinding.figureManager.adapter?.notifyItemChanged(infinityPosition) infinityPosition = -1 - infinityListPosition = -1 infinityFigureData = Figure.BLANK_FIGURE } else { MaterialAlertDialogBuilder(this) @@ -317,11 +315,10 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { result!!.data.toString(), infinityPosition ) - clearInfinityFigure(infinityListPosition) - infinityFigures[infinityListPosition].label = label!! - infinityBinding.figureManager.adapter?.notifyItemChanged(infinityListPosition) + clearInfinityFigure(infinityPosition) + infinityFigures[infinityPosition].label = label!! + infinityBinding.figureManager.adapter?.notifyItemChanged(infinityPosition) infinityPosition = -1 - infinityListPosition = -1 infinityFigureData = Figure.BLANK_FIGURE } } @@ -906,18 +903,19 @@ class EmulationActivity : AppCompatActivity(), ThemeProvider { fun setInfinityFigureData(num: Long, name: String, position: Int, listPosition: Int) { infinityFigureData = Figure(num, name) infinityPosition = position - infinityListPosition = listPosition } fun clearInfinityFigure(position: Int) { when (position) { 0 -> infinityFigures[position].label = getString(R.string.infinity_hexagon_label) - 1 -> infinityFigures[position].label = getString(R.string.infinity_p1_label) - 2 -> infinityFigures[position].label = getString(R.string.infinity_p1a1_label) - 3 -> infinityFigures[position].label = getString(R.string.infinity_p1a2_label) - 4 -> infinityFigures[position].label = getString(R.string.infinity_p2_label) - 5 -> infinityFigures[position].label = getString(R.string.infinity_p2a1_label) - 6 -> infinityFigures[position].label = getString(R.string.infinity_p2a2_label) + 1 -> infinityFigures[position].label = getString(R.string.infinity_power_hex_two_label) + 2 -> infinityFigures[position].label = getString(R.string.infinity_power_hex_three_label) + 3 -> infinityFigures[position].label = getString(R.string.infinity_p1_label) + 4 -> infinityFigures[position].label = getString(R.string.infinity_p1a1_label) + 5 -> infinityFigures[position].label = getString(R.string.infinity_p1a2_label) + 6 -> infinityFigures[position].label = getString(R.string.infinity_p2_label) + 7 -> infinityFigures[position].label = getString(R.string.infinity_p2a1_label) + 8 -> infinityFigures[position].label = getString(R.string.infinity_p2a2_label) } infinityBinding.figureManager.adapter?.notifyItemChanged(position) } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/infinitybase/ui/FigureSlotAdapter.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/infinitybase/ui/FigureSlotAdapter.kt index 8d88c37ccb..512019388c 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/infinitybase/ui/FigureSlotAdapter.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/infinitybase/ui/FigureSlotAdapter.kt @@ -75,6 +75,11 @@ class FigureSlotAdapter( } 1, 2 -> { + // Hexagon Power Discs + validFigures.filter { (_, value) -> value in 4000000..4999999 } + } + + 3, 6 -> { // Characters validFigures.filter { (_, value) -> value in 1000000..1999999 } } diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 360e5006a0..0726d9b40d 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -914,6 +914,8 @@ It can efficiently compress both junk data and encrypted Wii data. Figure Number Invalid Figure Selection Power Disc/Play Set + Power Disc Two + Power Disc Three Player One Player Two P1 Ability One diff --git a/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp b/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp index 89b5caafab..892eb21324 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp @@ -628,6 +628,11 @@ InfinityBase::LoadFigure(const std::array figure_change_response = {0xab, 0x04, position, 0x09, order_added, 0x00}; figure_change_response[6] = GenerateChecksum(figure_change_response, 6); @@ -649,9 +654,14 @@ void InfinityBase::RemoveFigure(u8 position) if (figure.present) { - figure.present = false; - position = DeriveFigurePosition(position); + if (position == 0) + { + ERROR_LOG_FMT(IOS_USB, "Invalid Position for Infinity Figure"); + return; + } + + figure.present = false; std::array figure_change_response = {0xab, 0x04, position, 0x09, figure.order_added, 0x01}; @@ -744,14 +754,28 @@ std::string InfinityBase::FindFigure(u32 number) const u8 InfinityBase::DeriveFigurePosition(u8 position) { // In the added/removed response, position needs to be 1 for the hexagon, 2 for Player 1 and - // Player 1's abilities, and 3 for Player 2 and Player 2's abilities. Abilities are in positions - // > 2 in the UI (3/5 for player 1, 4/6 for player 2) so decrement the position until < 2. + // Player 1's abilities, and 3 for Player 2 and Player 2's abilities. In the UI, positions 0, 1 + // and 2 represent the hexagon slot, 3, 4 and 5 represent Player 1's slot and 6, 7 and 8 represent + // Player 2's slot. - while (position > 2) - position -= 2; + switch (position) + { + case 0: + case 1: + case 2: + return 1; + case 3: + case 4: + case 5: + return 2; + case 6: + case 7: + case 8: + return 3; - position++; - return position; + default: + return 0; + } } InfinityFigure& InfinityBase::GetFigureByOrder(u8 order_added) diff --git a/Source/Core/Core/IOS/USB/Emulated/Infinity.h b/Source/Core/Core/IOS/USB/Emulated/Infinity.h index 7d5ae4a8f7..d4f585ca40 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Infinity.h +++ b/Source/Core/Core/IOS/USB/Emulated/Infinity.h @@ -89,7 +89,7 @@ public: protected: std::mutex m_infinity_mutex; - std::array m_figures; + std::array m_figures; private: InfinityFigure& GetFigureByOrder(u8 order_added); diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index bba4b7d4f8..1519dd62f4 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -79,17 +79,21 @@ void InfinityBaseWindow::CreateMainWindow() AddFigureSlot(vbox_group, tr("Play Set/Power Disc"), 0); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player One"), 1); + AddFigureSlot(vbox_group, tr("Power Disc Two"), 1); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player One Ability One"), 3); + AddFigureSlot(vbox_group, tr("Power Disc Three"), 2); + add_line(vbox_group); + AddFigureSlot(vbox_group, tr("Player One"), 3); + add_line(vbox_group); + AddFigureSlot(vbox_group, tr("Player One Ability One"), 4); add_line(vbox_group); AddFigureSlot(vbox_group, tr("Player One Ability Two"), 5); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player Two"), 2); + AddFigureSlot(vbox_group, tr("Player Two"), 6); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player Two Ability One"), 4); + AddFigureSlot(vbox_group, tr("Player Two Ability One"), 7); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player Two Ability Two"), 6); + AddFigureSlot(vbox_group, tr("Player Two Ability Two"), 8); m_group_figures->setLayout(vbox_group); scroll_area->setWidget(m_group_figures); @@ -203,8 +207,9 @@ CreateFigureDialog::CreateFigureDialog(QWidget* parent, u8 slot) : QDialog(paren // Only display entry if it is a piece appropriate for the slot if ((slot == 0 && ((figure > 0x1E8480 && figure < 0x2DC6BF) || (figure > 0x3D0900 && figure < 0x4C4B3F))) || - ((slot == 1 || slot == 2) && figure < 0x1E847F) || - ((slot == 3 || slot == 4 || slot == 5 || slot == 6) && + ((slot == 1 || slot == 2) && (figure > 0x3D0900 && figure < 0x4C4B3F)) || + ((slot == 3 || slot == 6) && figure < 0x1E847F) || + ((slot == 4 || slot == 5 || slot == 7 || slot == 8) && (figure > 0x2DC6C0 && figure < 0x3D08FF))) { const auto figure_name = QString::fromStdString(entry.first); diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h index b66e17d0f6..e619e9b903 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h @@ -28,7 +28,7 @@ public: ~InfinityBaseWindow() override; protected: - std::array m_edit_figures; + std::array m_edit_figures; private: void CreateMainWindow(); From 29f1b82f5e4662662dce1a51e111483e6431d359 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 20 Jun 2024 07:59:59 -0400 Subject: [PATCH 107/296] Decouple Hardcore from EmulationStateChanged Rerendering the entire Achievements dialog every EmulationStateChanged signal is far too often when it turns out that signal fires multiple times to confirm game close, for example. This change results in only the settings changing on EmulationStateChanged, and having the Hardcore mode toggle (which DOES require redrawing the entire dialog) emit its own signal alongside EmulationStateChanged. --- .../Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp | 4 ++++ Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp | 2 ++ Source/Core/DolphinQt/Settings.h | 1 + 3 files changed, 7 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index 5b8a07d24f..fe83fe9146 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -237,7 +237,10 @@ void AchievementSettingsWidget::ToggleRAIntegration() else instance.Shutdown(); if (Config::Get(Config::RA_HARDCORE_ENABLED)) + { emit Settings::Instance().EmulationStateChanged(Core::GetState(Core::System::GetInstance())); + emit Settings::Instance().HardcoreStateChanged(); + } } void AchievementSettingsWidget::Login() @@ -267,6 +270,7 @@ void AchievementSettingsWidget::ToggleHardcore() Settings::Instance().SetDebugModeEnabled(false); } emit Settings::Instance().EmulationStateChanged(Core::GetState(Core::System::GetInstance())); + emit Settings::Instance().HardcoreStateChanged(); } void AchievementSettingsWidget::ToggleUnofficial() diff --git a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp index b796b9dc3e..a0e750c4ba 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp @@ -34,6 +34,8 @@ AchievementsWindow::AchievementsWindow(QWidget* parent) : QDialog(parent) }); }); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, + [this] { m_settings_widget->UpdateData(); }); + connect(&Settings::Instance(), &Settings::HardcoreStateChanged, this, [this] { AchievementsWindow::UpdateData({.all = true}); }); } diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index 479d723e59..591be0b88a 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -224,6 +224,7 @@ signals: void SDCardInsertionChanged(bool inserted); void USBKeyboardConnectionChanged(bool connected); void EnableGfxModsChanged(bool enabled); + void HardcoreStateChanged(); private: Settings(); From 9b9e6c4582446181effebd9d391b1d409a96dde6 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 19 Jun 2024 22:54:24 -0400 Subject: [PATCH 108/296] Refactored AchievementProgress UpdateData to Re-Sort When AchievementProgress::UpdateData(false) is called, it will now empty itself and reinsert all existing boxes, re-sorted into their current buckets, and call UpdateProgress on them all. --- .../DolphinQt/Achievements/AchievementBox.cpp | 8 +++ .../AchievementProgressWidget.cpp | 56 ++++++++++++------- 2 files changed, 43 insertions(+), 21 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index d4d92e9965..edfcf6fdf9 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -62,6 +62,9 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve void AchievementBox::UpdateData() { std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; + // rc_client guarantees m_achievement will be valid as long as the game is loaded + if (!AchievementManager::GetInstance().IsGameLoaded()) + return; const auto& badge = AchievementManager::GetInstance().GetAchievementBadge( m_achievement->id, m_achievement->state != RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED); @@ -92,6 +95,11 @@ void AchievementBox::UpdateData() void AchievementBox::UpdateProgress() { + std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; + // rc_client guarantees m_achievement will be valid as long as the game is loaded + if (!AchievementManager::GetInstance().IsGameLoaded()) + return; + if (m_achievement->measured_percent > 0.000) { m_progress_bar->setRange(0, 100); diff --git a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp index 741cb61227..352645c5db 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp @@ -42,33 +42,47 @@ void AchievementProgressWidget::UpdateData(bool clean_all) { m_achievement_boxes.clear(); ClearLayoutRecursively(m_common_layout); - - auto& instance = AchievementManager::GetInstance(); - if (!instance.IsGameLoaded()) - return; - auto* client = instance.GetClient(); - auto* achievement_list = rc_client_create_achievement_list( - client, RC_CLIENT_ACHIEVEMENT_CATEGORY_CORE_AND_UNOFFICIAL, - RC_CLIENT_ACHIEVEMENT_LIST_GROUPING_PROGRESS); - for (u32 ix = 0; ix < achievement_list->num_buckets; ix++) - { - m_common_layout->addWidget(new QLabel(tr(achievement_list->buckets[ix].label))); - for (u32 jx = 0; jx < achievement_list->buckets[ix].num_achievements; jx++) - { - auto* achievement = achievement_list->buckets[ix].achievements[jx]; - m_achievement_boxes[achievement->id] = std::make_shared(this, achievement); - m_common_layout->addWidget(m_achievement_boxes[achievement->id].get()); - } - } - rc_client_destroy_achievement_list(achievement_list); } else { - for (auto box : m_achievement_boxes) + while (auto* item = m_common_layout->takeAt(0)) { - box.second->UpdateData(); + auto* widget = item->widget(); + m_common_layout->removeWidget(widget); + if (std::strcmp(widget->metaObject()->className(), "QLabel") == 0) + { + delete widget; + delete item; + } } } + + auto& instance = AchievementManager::GetInstance(); + if (!instance.IsGameLoaded()) + return; + auto* client = instance.GetClient(); + auto* achievement_list = + rc_client_create_achievement_list(client, RC_CLIENT_ACHIEVEMENT_CATEGORY_CORE_AND_UNOFFICIAL, + RC_CLIENT_ACHIEVEMENT_LIST_GROUPING_PROGRESS); + for (u32 ix = 0; ix < achievement_list->num_buckets; ix++) + { + m_common_layout->addWidget(new QLabel(tr(achievement_list->buckets[ix].label))); + for (u32 jx = 0; jx < achievement_list->buckets[ix].num_achievements; jx++) + { + auto* achievement = achievement_list->buckets[ix].achievements[jx]; + auto box_itr = m_achievement_boxes.find(achievement->id); + if (box_itr == m_achievement_boxes.end()) + { + m_achievement_boxes[achievement->id] = std::make_shared(this, achievement); + } + else + { + box_itr->second->UpdateProgress(); + } + m_common_layout->addWidget(m_achievement_boxes[achievement->id].get()); + } + } + rc_client_destroy_achievement_list(achievement_list); } void AchievementProgressWidget::UpdateData( From d50407d800dbafdb0e2864c2bc4007993f65d7d4 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 21 Jun 2024 07:17:05 -0400 Subject: [PATCH 109/296] Make achievement progress text label transparent This field was completely hiding the progress bar in dark mode without this. --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index a14936171d..645beb7613 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -40,6 +40,7 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve sp_retain.setRetainSizeWhenHidden(true); m_progress_bar->setSizePolicy(sp_retain); m_progress_label = new QLabel(); + m_progress_label->setStyleSheet(QStringLiteral("background-color:transparent;")); m_progress_label->setAlignment(Qt::AlignCenter); QVBoxLayout* a_col_right = new QVBoxLayout(); From 962230f91e06a60b2395de6f0974fdd213854d4c Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 2 Jun 2024 15:10:25 +0200 Subject: [PATCH 110/296] Core: Store current state in less places Core::GetState reads from four different pieces of state: s_is_stopping, s_hardware_initialized, s_is_booting, and CPUManager::IsStepping. I'm keeping that last one as is for now because there's code in Dolphin that sets it directly, but we can unify the other three to make things easier to reason about. This commit also gets rid of s_is_started. This was previously used in Core::IsRunningAndStarted to ensure true wouldn't be returned until the CPU thread was started, but it wasn't used in Core::GetState, so Core::GetState would happily return State::Running after we had initialized the hardware but before we had initialized the CPU thread. As far as I know, there are no callers that have any real need to know whether the boot process is currently initializing the hardware or the CPU thread. Perhaps once upon a time there was a desire to make the apploader debuggable, but a long time has passed without anyone stepping up to implement it, and the way CBoot::RunApploader is implemented makes it rather difficult. So this commit makes all the functions in Core.cpp consider the core to still be starting until the CPU thread is started. --- Source/Android/jni/MainAndroid.cpp | 2 +- Source/Core/Core/ConfigManager.cpp | 10 +-- Source/Core/Core/Core.cpp | 90 ++++++++----------- Source/Core/Core/Core.h | 4 +- .../Core/Core/Debugger/PPCDebugInterface.cpp | 2 +- Source/Core/Core/IOS/ES/ES.cpp | 8 +- Source/Core/Core/IOS/IOS.cpp | 2 +- Source/Core/Core/Movie.cpp | 6 +- Source/Core/Core/State.cpp | 2 +- Source/Core/DolphinQt/HotkeyScheduler.cpp | 5 +- Source/Core/DolphinQt/MainWindow.cpp | 2 +- Source/Core/DolphinQt/RenderWidget.cpp | 2 +- Source/Core/VideoCommon/VideoConfig.cpp | 2 +- 13 files changed, 61 insertions(+), 76 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 9fcf1b33a3..66a0694a94 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -279,7 +279,7 @@ JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunnin JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunningAndStarted(JNIEnv*, jclass) { - return static_cast(Core::IsRunningAndStarted()); + return static_cast(Core::IsRunning(Core::System::GetInstance())); } JNIEXPORT jboolean JNICALL diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index e3c1ec1d15..8882076daa 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -185,22 +185,22 @@ void SConfig::SetRunningGameMetadata(const std::string& game_id, const std::stri m_title_description = title_database.Describe(m_gametdb_id, language); NOTICE_LOG_FMT(CORE, "Active title: {}", m_title_description); Host_TitleChanged(); - if (Core::IsRunning(system)) - { + + const bool is_running_or_starting = Core::IsRunningOrStarting(system); + if (is_running_or_starting) Core::UpdateTitle(system); - } Config::AddLayer(ConfigLoaders::GenerateGlobalGameConfigLoader(game_id, revision)); Config::AddLayer(ConfigLoaders::GenerateLocalGameConfigLoader(game_id, revision)); - if (Core::IsRunning(system)) + if (is_running_or_starting) DolphinAnalytics::Instance().ReportGameStart(); } void SConfig::OnNewTitleLoad(const Core::CPUThreadGuard& guard) { auto& system = guard.GetSystem(); - if (!Core::IsRunning(system)) + if (!Core::IsRunningOrStarting(system)) return; auto& ppc_symbol_db = system.GetPPCSymbolDB(); diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index f28a41f836..58423377be 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -101,10 +101,6 @@ namespace Core static bool s_wants_determinism; // Declarations and definitions -static bool s_is_stopping = false; -static bool s_hardware_initialized = false; -static bool s_is_started = false; -static Common::Flag s_is_booting; static std::thread s_emu_thread; static std::vector s_on_state_changed_callbacks; @@ -114,6 +110,10 @@ static std::atomic s_last_actual_emulation_speed{1.0}; static bool s_frame_step = false; static std::atomic s_stop_frame_step; +// The value Paused is never stored in this variable. The core is considered to be in +// the Paused state if this variable is Running and the CPU reports that it's stepping. +static std::atomic s_state = State::Uninitialized; + #ifdef USE_MEMORYWATCHER static std::unique_ptr s_memory_watcher; #endif @@ -190,7 +190,7 @@ std::string StopMessage(bool main_thread, std::string_view message) void DisplayMessage(std::string message, int time_in_ms) { - if (!IsRunning(Core::System::GetInstance())) + if (!IsRunningOrStarting(Core::System::GetInstance())) return; // Actually displaying non-ASCII could cause things to go pear-shaped @@ -202,12 +202,13 @@ void DisplayMessage(std::string message, int time_in_ms) bool IsRunning(Core::System& system) { - return (GetState(system) != State::Uninitialized || s_hardware_initialized) && !s_is_stopping; + return s_state.load() == State::Running; } -bool IsRunningAndStarted() +bool IsRunningOrStarting(Core::System& system) { - return s_is_started && !s_is_stopping; + const State state = s_state.load(); + return state == State::Running || state == State::Starting; } bool IsCPUThread() @@ -262,7 +263,7 @@ bool Init(Core::System& system, std::unique_ptr boot, const Wind g_video_backend->PrepareWindow(prepared_wsi); // Start the emu thread - s_is_booting.Set(); + s_state.store(State::Starting); s_emu_thread = std::thread(EmuThread, std::ref(system), std::move(boot), prepared_wsi); return true; } @@ -281,15 +282,13 @@ static void ResetRumble() // Called from GUI thread void Stop(Core::System& system) // - Hammertime! { - if (const State state = GetState(system); - state == State::Stopping || state == State::Uninitialized) - { + const State state = s_state.load(); + if (state == State::Stopping || state == State::Uninitialized) return; - } AchievementManager::GetInstance().CloseGame(); - s_is_stopping = true; + s_state.store(State::Stopping); CallOnStateChangedCallbacks(State::Stopping); @@ -394,7 +393,11 @@ static void CpuThread(Core::System& system, const std::optional& sa File::Delete(*savestate_path); } - s_is_started = true; + // If s_state is Starting, change it to Running. But if it's already been set to Stopping + // by the host thread, don't change it. + State expected = State::Starting; + s_state.compare_exchange_strong(expected, State::Running); + { #ifndef _WIN32 std::string gdb_socket = Config::Get(Config::MAIN_GDB_SOCKET); @@ -426,8 +429,6 @@ static void CpuThread(Core::System& system, const std::optional& sa s_memory_watcher.reset(); #endif - s_is_started = false; - if (exception_handler) EMM::UninstallExceptionHandler(); @@ -453,12 +454,15 @@ static void FifoPlayerThread(Core::System& system, const std::optional boot { CallOnStateChangedCallbacks(State::Starting); Common::ScopeGuard flag_guard{[] { - s_is_booting.Clear(); - s_is_started = false; - s_is_stopping = false; - s_wants_determinism = false; + s_state.store(State::Uninitialized); CallOnStateChangedCallbacks(State::Uninitialized); @@ -557,8 +558,6 @@ static void EmuThread(Core::System& system, std::unique_ptr boot NetPlay::IsNetPlayRunning() ? &(boot_session_data.GetNetplaySettings()->sram) : nullptr); Common::ScopeGuard hw_guard{[&system] { - // We must set up this flag before executing HW::Shutdown() - s_hardware_initialized = false; INFO_LOG_FMT(CONSOLE, "{}", StopMessage(false, "Shutting down HW")); HW::Shutdown(system); INFO_LOG_FMT(CONSOLE, "{}", StopMessage(false, "HW shutdown")); @@ -602,10 +601,6 @@ static void EmuThread(Core::System& system, std::unique_ptr boot AudioCommon::PostInitSoundStream(system); - // The hardware is initialized. - s_hardware_initialized = true; - s_is_booting.Clear(); - // Set execution state to known values (CPU/FIFO/Audio Paused) system.GetCPU().Break(); @@ -701,7 +696,7 @@ static void EmuThread(Core::System& system, std::unique_ptr boot void SetState(Core::System& system, State state, bool report_state_change) { // State cannot be controlled until the CPU Thread is operational - if (!IsRunningAndStarted()) + if (s_state.load() != State::Running) return; switch (state) @@ -732,21 +727,11 @@ void SetState(Core::System& system, State state, bool report_state_change) State GetState(Core::System& system) { - if (s_is_stopping) - return State::Stopping; - - if (s_hardware_initialized) - { - if (system.GetCPU().IsStepping()) - return State::Paused; - - return State::Running; - } - - if (s_is_booting.IsSet()) - return State::Starting; - - return State::Uninitialized; + const State state = s_state.load(); + if (state == State::Running && system.GetCPU().IsStepping()) + return State::Paused; + else + return state; } static std::string GenerateScreenshotFolderPath() @@ -800,7 +785,7 @@ static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unl { // WARNING: PauseAndLock is not fully threadsafe so is only valid on the Host Thread - if (!IsRunningAndStarted()) + if (!IsRunning(system)) return true; bool was_unpaused = true; @@ -1027,13 +1012,12 @@ void HostDispatchJobs(Core::System& system) HostJob job = std::move(s_host_jobs_queue.front()); s_host_jobs_queue.pop(); - // NOTE: Memory ordering is important. The booting flag needs to be - // checked first because the state transition is: - // Core::State::Uninitialized: s_is_booting -> s_hardware_initialized - // We need to check variables in the same order as the state - // transition, otherwise we race and get transient failures. - if (!job.run_after_stop && !s_is_booting.IsSet() && !IsRunning(system)) - continue; + if (!job.run_after_stop) + { + const State state = s_state.load(); + if (state == State::Stopping || state == State::Uninitialized) + continue; + } guard.unlock(); job.job(system); diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index 980d336750..e6c440566c 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -135,8 +135,8 @@ void UndeclareAsHostThread(); std::string StopMessage(bool main_thread, std::string_view message); bool IsRunning(Core::System& system); -bool IsRunningAndStarted(); // is running and the CPU loop has been entered -bool IsCPUThread(); // this tells us whether we are the CPU thread. +bool IsRunningOrStarting(Core::System& system); +bool IsCPUThread(); // this tells us whether we are the CPU thread. bool IsGPUThread(); bool IsHostThread(); diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index a003e98156..9389fe76d8 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -349,7 +349,7 @@ u32 PPCDebugInterface::ReadInstruction(const Core::CPUThreadGuard& guard, u32 ad bool PPCDebugInterface::IsAlive() const { - return Core::IsRunningAndStarted(); + return Core::IsRunning(m_system); } bool PPCDebugInterface::IsBreakpoint(u32 address) const diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 6bd894dd27..d04a3ef889 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -112,9 +112,9 @@ ESCore::~ESCore() = default; ESDevice::ESDevice(EmulationKernel& ios, ESCore& core, const std::string& device_name) : EmulationDevice(ios, device_name), m_core(core) { - if (Core::IsRunningAndStarted()) + auto& system = ios.GetSystem(); + if (Core::IsRunning(system)) { - auto& system = ios.GetSystem(); auto& core_timing = system.GetCoreTiming(); core_timing.RemoveEvent(s_finish_init_event); core_timing.ScheduleEvent(GetESBootTicks(ios.GetVersion()), s_finish_init_event); @@ -446,7 +446,7 @@ bool ESDevice::LaunchPPCTitle(u64 title_id) } const u64 required_ios = tmd.GetIOSId(); - if (!Core::IsRunningAndStarted()) + if (!Core::IsRunning(system)) return LaunchTitle(required_ios, HangPPC::Yes); core_timing.RemoveEvent(s_reload_ios_for_ppc_launch_event); core_timing.ScheduleEvent(ticks, s_reload_ios_for_ppc_launch_event, required_ios); @@ -475,7 +475,7 @@ bool ESDevice::LaunchPPCTitle(u64 title_id) return false; m_pending_ppc_boot_content_path = m_core.GetContentPath(tmd.GetTitleId(), content); - if (!Core::IsRunningAndStarted()) + if (!Core::IsRunning(system)) return BootstrapPPC(); INFO_LOG_FMT(ACHIEVEMENTS, diff --git a/Source/Core/Core/IOS/IOS.cpp b/Source/Core/Core/IOS/IOS.cpp index 0e046b8534..d15eb9317d 100644 --- a/Source/Core/Core/IOS/IOS.cpp +++ b/Source/Core/Core/IOS/IOS.cpp @@ -518,7 +518,7 @@ bool EmulationKernel::BootIOS(const u64 ios_title_id, HangPPC hang_ppc, if (hang_ppc == HangPPC::Yes) ResetAndPausePPC(m_system); - if (Core::IsRunningAndStarted()) + if (Core::IsRunning(m_system)) { m_system.GetCoreTiming().ScheduleEvent(GetIOSBootTicks(GetVersion()), s_event_finish_ios_boot, ios_title_id); diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index 47ad3c8c97..325381f0e9 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -536,7 +536,7 @@ bool MovieManager::BeginRecordingInput(const ControllerTypeArray& controllers, m_bongos |= (1 << i); } - if (Core::IsRunningAndStarted()) + if (Core::IsRunning(m_system)) { const std::string save_path = File::GetUserPath(D_STATESAVES_IDX) + "dtm.sav"; if (File::Exists(save_path)) @@ -551,7 +551,7 @@ bool MovieManager::BeginRecordingInput(const ControllerTypeArray& controllers, } // Wiimotes cause desync issues if they're not reset before launching the game - if (!Core::IsRunningAndStarted()) + if (!Core::IsRunning(m_system)) { // This will also reset the Wiimotes for GameCube games, but that shouldn't do anything Wiimote::ResetAllWiimotes(); @@ -1339,7 +1339,7 @@ void MovieManager::EndPlayInput(bool cont) { // We can be called by EmuThread during boot (CPU::State::PowerDown) auto& cpu = m_system.GetCPU(); - const bool was_running = Core::IsRunningAndStarted() && !cpu.IsStepping(); + const bool was_running = Core::IsRunning(m_system) && !cpu.IsStepping(); if (was_running && Config::Get(Config::MAIN_MOVIE_PAUSE_MOVIE)) cpu.Break(); m_rerecords = 0; diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index adc1cbd57a..11c8e9660e 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -854,7 +854,7 @@ static void LoadFileStateData(const std::string& filename, std::vector& ret_ void LoadAs(Core::System& system, const std::string& filename) { - if (!Core::IsRunning(system)) + if (!Core::IsRunningOrStarting(system)) return; if (NetPlay::IsNetPlayRunning()) diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 10f7540ca7..0a6d13e6c0 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -159,7 +159,8 @@ void HotkeyScheduler::Run() if (!HotkeyManagerEmu::IsEnabled()) continue; - if (Core::GetState(Core::System::GetInstance()) != Core::State::Stopping) + Core::System& system = Core::System::GetInstance(); + if (Core::GetState(system) != Core::State::Stopping) { // Obey window focus (config permitting) before checking hotkeys. Core::UpdateInputGate(Config::Get(Config::MAIN_FOCUSED_HOTKEYS)); @@ -187,7 +188,7 @@ void HotkeyScheduler::Run() if (IsHotkey(HK_EXIT)) emit ExitHotkey(); - if (!Core::IsRunningAndStarted()) + if (!Core::IsRunning(system)) { // Only check for Play Recording hotkey when no game is running if (IsHotkey(HK_PLAY_RECORDING)) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 67860c464a..f62a7496e7 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1882,7 +1882,7 @@ void MainWindow::OnStartRecording() { auto& system = Core::System::GetInstance(); auto& movie = system.GetMovie(); - if ((!Core::IsRunningAndStarted() && Core::IsRunning(system)) || movie.IsRecordingInput() || + if (Core::GetState(system) == Core::State::Starting || movie.IsRecordingInput() || movie.IsPlayingInput()) { return; diff --git a/Source/Core/DolphinQt/RenderWidget.cpp b/Source/Core/DolphinQt/RenderWidget.cpp index 597ac78e6c..d88a17e3d3 100644 --- a/Source/Core/DolphinQt/RenderWidget.cpp +++ b/Source/Core/DolphinQt/RenderWidget.cpp @@ -513,7 +513,7 @@ bool RenderWidget::event(QEvent* event) void RenderWidget::PassEventToPresenter(const QEvent* event) { - if (!Core::IsRunningAndStarted()) + if (!Core::IsRunning(Core::System::GetInstance())) return; switch (event->type()) diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 0266cb9c19..efa159795c 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -66,7 +66,7 @@ void VideoConfig::Refresh() CPUThreadConfigCallback::AddConfigChangedCallback([]() { auto& system = Core::System::GetInstance(); - const bool lock_gpu_thread = Core::IsRunningAndStarted(); + const bool lock_gpu_thread = Core::IsRunning(system); if (lock_gpu_thread) system.GetFifo().PauseAndLock(true, false); From 72cf2bdb87f09deff22e1085de3290126aa4ad05 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 2 Jun 2024 16:45:30 +0200 Subject: [PATCH 111/296] Audit uses of IsRunning and GetState Some pieces of code are calling IsRunning because there's some particular action that only makes sense when emulation is running, for instance showing the state of the emulated CPU. IsRunning is appropriate to use for this. Then there are pieces of code that are calling IsRunning because there's some particular thing they must avoid doing e.g. when the CPU thread is running or IOS is running. IsRunning isn't quite appropriate for this. Such code should also be checking for the states Starting and Stopping. Keep in mind that: * When the state is Starting, the state can asynchronously change to Running at any time. * When we try to stop the core, the state gets set to Stopping before we take any action to actually stop things. This commit adds a new method Core::IsUninitialized, and changes all callers of IsRunning and GetState that look to me like they should be changed. --- .../dolphinemu/dolphinemu/NativeLibrary.java | 10 +++- .../features/settings/model/Settings.kt | 2 +- .../settings/model/view/RunRunnable.kt | 2 +- .../settings/model/view/SettingsItem.kt | 2 +- .../settings/ui/SettingsFragmentPresenter.kt | 4 +- .../dolphinemu/fragments/EmulationFragment.kt | 8 +-- .../dolphinemu/overlay/InputOverlay.kt | 2 +- Source/Android/jni/MainAndroid.cpp | 17 +++--- .../Core/ConfigLoaders/BaseConfigLoader.cpp | 4 +- Source/Core/Core/Core.cpp | 7 ++- Source/Core/Core/Core.h | 5 ++ .../AchievementSettingsWidget.cpp | 11 ++-- .../DolphinQt/CheatSearchFactoryWidget.cpp | 3 +- Source/Core/DolphinQt/CheatsManager.cpp | 5 +- .../DolphinQt/Config/CheatWarningWidget.cpp | 5 +- .../Config/Graphics/AdvancedWidget.cpp | 3 +- .../Config/Graphics/GeneralWidget.cpp | 6 +-- .../DolphinQt/Debugger/AssemblerWidget.cpp | 2 +- .../DolphinQt/Debugger/BreakpointWidget.cpp | 2 +- .../DolphinQt/Debugger/CodeViewWidget.cpp | 2 +- .../Core/DolphinQt/Debugger/ThreadWidget.cpp | 2 +- .../Core/DolphinQt/Debugger/WatchWidget.cpp | 5 +- .../Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp | 27 ++++++---- Source/Core/DolphinQt/GameList/GameList.cpp | 12 ++--- Source/Core/DolphinQt/HotkeyScheduler.cpp | 2 +- Source/Core/DolphinQt/MainWindow.cpp | 15 +++--- Source/Core/DolphinQt/MenuBar.cpp | 54 +++++++++++-------- Source/Core/DolphinQt/MenuBar.h | 2 +- .../Core/DolphinQt/NetPlay/NetPlayDialog.cpp | 2 + .../Core/DolphinQt/Settings/AdvancedPane.cpp | 2 +- Source/Core/DolphinQt/Settings/AudioPane.cpp | 3 +- Source/Core/DolphinQt/Settings/WiiPane.cpp | 3 +- Source/Core/VideoCommon/VideoConfig.cpp | 7 +-- 33 files changed, 133 insertions(+), 105 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java index 43880bd0ba..1cdd9fa473 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java @@ -381,10 +381,16 @@ public final class NativeLibrary */ public static native boolean IsRunning(); - public static native boolean IsRunningAndStarted(); - + /** + * Returns true if emulation is running and not paused. + */ public static native boolean IsRunningAndUnpaused(); + /** + * Returns true if emulation is fully shut down. + */ + public static native boolean IsUninitialized(); + /** * Writes out the JitBlock Cache log dump */ diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt index c5c1851e5d..eedc1405ff 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt @@ -36,7 +36,7 @@ class Settings : Closeable { if (isGameSpecific) { // Loading game INIs while the core is running will mess with the game INIs loaded by the core - check(!NativeLibrary.IsRunning()) { "Attempted to load game INI while emulating" } + check(NativeLibrary.IsUninitialized()) { "Attempted to load game INI while emulating" } NativeConfig.loadGameInis(gameId, revision) } } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt index f9d5786e22..c52964ff0b 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt @@ -20,5 +20,5 @@ class RunRunnable( override val setting: AbstractSetting? = null override val isEditable: Boolean - get() = worksDuringEmulation || !NativeLibrary.IsRunning() + get() = worksDuringEmulation || NativeLibrary.IsUninitialized() } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt index 3209400ff6..01c4796e68 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt @@ -54,7 +54,7 @@ abstract class SettingsItem { open val isEditable: Boolean get() { - if (!NativeLibrary.IsRunning()) return true + if (NativeLibrary.IsUninitialized()) return true val setting = setting return setting != null && setting.isRuntimeEditable } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt index 6de39ed1e9..1573b6408c 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt @@ -69,7 +69,7 @@ class SettingsFragmentPresenter( } else if ( menuTag == MenuTag.GRAPHICS && this.gameId.isNullOrEmpty() - && !NativeLibrary.IsRunning() + && NativeLibrary.IsUninitialized() && GpuDriverHelper.supportsCustomDriverLoading() ) { this.gpuDriver = @@ -1303,7 +1303,7 @@ class SettingsFragmentPresenter( if ( this.gpuDriver != null && this.gameId.isNullOrEmpty() - && !NativeLibrary.IsRunning() + && NativeLibrary.IsUninitialized() && GpuDriverHelper.supportsCustomDriverLoading() ) { sl.add( diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt index 637f4fb924..eeb223c3db 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt @@ -180,11 +180,11 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback { private fun run(isActivityRecreated: Boolean) { if (isActivityRecreated) { - if (NativeLibrary.IsRunning()) { + if (NativeLibrary.IsUninitialized()) { + loadPreviousTemporaryState = true + } else { loadPreviousTemporaryState = false deleteFile(temporaryStateFilePath) - } else { - loadPreviousTemporaryState = true } } else { Log.debug("[EmulationFragment] activity resumed or fresh start") @@ -203,7 +203,7 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback { private fun runWithValidSurface() { runWhenSurfaceIsValid = false - if (!NativeLibrary.IsRunning()) { + if (NativeLibrary.IsUninitialized()) { NativeLibrary.SetIsBooting() val emulationThread = Thread({ if (loadPreviousTemporaryState) { diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt index dfe557e712..7964cc1ebc 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt @@ -83,7 +83,7 @@ class InputOverlay(context: Context?, attrs: AttributeSet?) : SurfaceView(contex fun initTouchPointer() { // Check if we have all the data we need yet - val aspectRatioAvailable = NativeLibrary.IsRunningAndStarted() + val aspectRatioAvailable = NativeLibrary.IsRunning() if (!aspectRatioAvailable || surfacePosition == null) return diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 66a0694a94..8febc6f633 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -118,8 +118,7 @@ void Host_Message(HostMessageID id) } else if (id == HostMessageID::WMUserStop) { - if (Core::IsRunning(Core::System::GetInstance())) - Core::QueueHostJob(&Core::Stop); + Core::QueueHostJob(&Core::Stop); } } @@ -271,13 +270,6 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetIsBooting } JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunning(JNIEnv*, jclass) -{ - return s_is_booting.IsSet() || - static_cast(Core::IsRunning(Core::System::GetInstance())); -} - -JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunningAndStarted(JNIEnv*, - jclass) { return static_cast(Core::IsRunning(Core::System::GetInstance())); } @@ -288,6 +280,13 @@ Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunningAndUnpaused(JNIEnv*, jclas return static_cast(Core::GetState(Core::System::GetInstance()) == Core::State::Running); } +JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsUninitialized(JNIEnv*, + jclass) +{ + return static_cast(Core::IsUninitialized(Core::System::GetInstance()) && + !s_is_booting.IsSet()); +} + JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetVersionString(JNIEnv* env, jclass) { diff --git a/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp b/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp index 88fa7c0696..81e373b422 100644 --- a/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp +++ b/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp @@ -33,7 +33,7 @@ namespace ConfigLoaders { void SaveToSYSCONF(Config::LayerType layer, std::function predicate) { - if (Core::IsRunning(Core::System::GetInstance())) + if (!Core::IsUninitialized(Core::System::GetInstance())) return; IOS::HLE::Kernel ios; @@ -183,7 +183,7 @@ public: private: void LoadFromSYSCONF(Config::Layer* layer) { - if (Core::IsRunning(Core::System::GetInstance())) + if (!Core::IsUninitialized(Core::System::GetInstance())) return; IOS::HLE::Kernel ios; diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 58423377be..90d90c9d18 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -211,6 +211,11 @@ bool IsRunningOrStarting(Core::System& system) return state == State::Running || state == State::Starting; } +bool IsUninitialized(Core::System& system) +{ + return s_state.load() == State::Uninitialized; +} + bool IsCPUThread() { return tls_is_cpu_thread; @@ -237,7 +242,7 @@ bool Init(Core::System& system, std::unique_ptr boot, const Wind { if (s_emu_thread.joinable()) { - if (IsRunning(system)) + if (!IsUninitialized(system)) { PanicAlertFmtT("Emu Thread already running"); return false; diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index e6c440566c..cf30cf3866 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -134,8 +134,13 @@ void UndeclareAsHostThread(); std::string StopMessage(bool main_thread, std::string_view message); +// Returns true when GetState returns Running or Paused. bool IsRunning(Core::System& system); +// Returns true when GetState returns Starting, Running or Paused. bool IsRunningOrStarting(Core::System& system); +// Returns true when GetState returns Uninitialized. +bool IsUninitialized(Core::System& system); + bool IsCPUThread(); // this tells us whether we are the CPU thread. bool IsGPUThread(); bool IsHostThread(); diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index 5b8a07d24f..c3bbd350f8 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -159,6 +159,8 @@ void AchievementSettingsWidget::OnControllerInterfaceConfigure() void AchievementSettingsWidget::LoadSettings() { + Core::System& system = Core::System::GetInstance(); + bool enabled = Config::Get(Config::RA_ENABLED); bool hardcore_enabled = Config::Get(Config::RA_HARDCORE_ENABLED); bool logged_out = Config::Get(Config::RA_API_TOKEN).empty(); @@ -174,18 +176,15 @@ void AchievementSettingsWidget::LoadSettings() SignalBlocking(m_common_password_input)->setVisible(logged_out); SignalBlocking(m_common_password_input)->setEnabled(enabled); SignalBlocking(m_common_login_button)->setVisible(logged_out); - SignalBlocking(m_common_login_button) - ->setEnabled(enabled && !Core::IsRunning(Core::System::GetInstance())); + SignalBlocking(m_common_login_button)->setEnabled(enabled && Core::IsUninitialized(system)); SignalBlocking(m_common_logout_button)->setVisible(!logged_out); SignalBlocking(m_common_logout_button)->setEnabled(enabled); SignalBlocking(m_common_hardcore_enabled_input) ->setChecked(Config::Get(Config::RA_HARDCORE_ENABLED)); - auto& system = Core::System::GetInstance(); SignalBlocking(m_common_hardcore_enabled_input) - ->setEnabled(enabled && - (hardcore_enabled || (Core::GetState(system) == Core::State::Uninitialized && - !system.GetMovie().IsPlayingInput()))); + ->setEnabled(enabled && (hardcore_enabled || (Core::IsUninitialized(system) && + !system.GetMovie().IsPlayingInput()))); SignalBlocking(m_common_unofficial_enabled_input) ->setChecked(Config::Get(Config::RA_UNOFFICIAL_ENABLED)); diff --git a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp index e1970dacc5..fd713b6695 100644 --- a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp @@ -159,8 +159,7 @@ void CheatSearchFactoryWidget::OnNewSearchClicked() if (m_standard_address_space->isChecked()) { auto& system = Core::System::GetInstance(); - const Core::State core_state = Core::GetState(system); - if (core_state != Core::State::Running && core_state != Core::State::Paused) + if (!Core::IsRunning(system)) { ModalMessageBox::warning( this, tr("No game running."), diff --git a/Source/Core/DolphinQt/CheatsManager.cpp b/Source/Core/DolphinQt/CheatsManager.cpp index 53f051785c..4fea9120b4 100644 --- a/Source/Core/DolphinQt/CheatsManager.cpp +++ b/Source/Core/DolphinQt/CheatsManager.cpp @@ -104,8 +104,9 @@ void CheatsManager::RefreshCodeTabs(Core::State state, bool force) if (!force && (state == Core::State::Starting || state == Core::State::Stopping)) return; - const auto& game_id = - state != Core::State::Uninitialized ? SConfig::GetInstance().GetGameID() : std::string(); + const auto& game_id = state == Core::State::Running || state == Core::State::Paused ? + SConfig::GetInstance().GetGameID() : + std::string(); const auto& game_tdb_id = SConfig::GetInstance().GetGameTDBID(); const u16 revision = SConfig::GetInstance().GetRevision(); diff --git a/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp b/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp index ee52bf9662..6c3b9638da 100644 --- a/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp +++ b/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp @@ -24,8 +24,9 @@ CheatWarningWidget::CheatWarningWidget(const std::string& game_id, bool restart_ connect(&Settings::Instance(), &Settings::EnableCheatsChanged, this, [this] { Update(Core::IsRunning(Core::System::GetInstance())); }); - connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, - [this](Core::State state) { Update(state == Core::State::Running); }); + connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { + Update(state == Core::State::Running || state == Core::State::Paused); + }); Update(Core::IsRunning(Core::System::GetInstance())); } diff --git a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp index 0d93614021..ccc63fe326 100644 --- a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp @@ -43,8 +43,7 @@ AdvancedWidget::AdvancedWidget(GraphicsWindow* parent) }); OnBackendChanged(); - OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != - Core::State::Uninitialized); + OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); } void AdvancedWidget::CreateWidgets() diff --git a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp index 52f09a6f41..3574e6893a 100644 --- a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp @@ -44,8 +44,7 @@ GeneralWidget::GeneralWidget(GraphicsWindow* parent) connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { OnEmulationStateChanged(state != Core::State::Uninitialized); }); - OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != - Core::State::Uninitialized); + OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); } void GeneralWidget::CreateWidgets() @@ -361,7 +360,8 @@ void GeneralWidget::OnBackendChanged(const QString& backend_name) const bool supports_adapters = !adapters.empty(); m_adapter_combo->setCurrentIndex(g_Config.iAdapter); - m_adapter_combo->setEnabled(supports_adapters && !Core::IsRunning(Core::System::GetInstance())); + m_adapter_combo->setEnabled(supports_adapters && + Core::IsUninitialized(Core::System::GetInstance())); static constexpr char TR_ADAPTER_AVAILABLE_DESCRIPTION[] = QT_TR_NOOP("Selects a hardware adapter to use.

" diff --git a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp index 8dba286c01..fc78b5b613 100644 --- a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp @@ -791,7 +791,7 @@ bool AssemblerWidget::SaveEditor(AsmEditor* editor) void AssemblerWidget::OnEmulationStateChanged(Core::State state) { - m_inject->setEnabled(state != Core::State::Uninitialized); + m_inject->setEnabled(state == Core::State::Running || state == Core::State::Paused); } void AssemblerWidget::OnTabClose(int index) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 130e68e860..1b74cd8ee9 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -251,7 +251,7 @@ void BreakpointWidget::UpdateButtonsEnabled() if (!isVisible()) return; - const bool is_initialised = Core::GetState(m_system) != Core::State::Uninitialized; + const bool is_initialised = Core::IsRunning(m_system); m_new->setEnabled(is_initialised); m_load->setEnabled(is_initialised); m_save->setEnabled(is_initialised); diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 51f2814d9b..7f0e50db74 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -560,7 +560,7 @@ void CodeViewWidget::OnContextMenu() QMenu* menu = new QMenu(this); menu->setAttribute(Qt::WA_DeleteOnClose, true); - const bool running = Core::GetState(m_system) != Core::State::Uninitialized; + const bool running = Core::IsRunning(m_system); const bool paused = Core::GetState(m_system) == Core::State::Paused; const u32 addr = GetContextAddress(); diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp index e48097d0e4..55704e31ad 100644 --- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp @@ -258,7 +258,7 @@ void ThreadWidget::Update() auto& system = Core::System::GetInstance(); const auto emu_state = Core::GetState(system); - if (emu_state == Core::State::Stopping) + if (emu_state == Core::State::Stopping || emu_state == Core::State::Uninitialized) { m_thread_table->setRowCount(0); UpdateThreadContext({}); diff --git a/Source/Core/DolphinQt/Debugger/WatchWidget.cpp b/Source/Core/DolphinQt/Debugger/WatchWidget.cpp index 75d3f13ee6..170bfcc792 100644 --- a/Source/Core/DolphinQt/Debugger/WatchWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/WatchWidget.cpp @@ -195,10 +195,11 @@ void WatchWidget::Update() QBrush brush = QPalette().brush(QPalette::Text); - if (!Core::IsRunning(m_system) || !PowerPC::MMU::HostIsRAMAddress(guard, entry.address)) + const bool core_is_running = Core::IsRunning(m_system); + if (!core_is_running || !PowerPC::MMU::HostIsRAMAddress(guard, entry.address)) brush.setColor(Qt::red); - if (Core::IsRunning(m_system)) + if (core_is_running) { if (PowerPC::MMU::HostIsRAMAddress(guard, entry.address)) { diff --git a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp index 4d2cadb6ca..30c4b44a86 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp +++ b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp @@ -59,11 +59,14 @@ FIFOPlayerWindow::FIFOPlayerWindow(FifoPlayer& fifo_player, FifoRecorder& fifo_r }); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { - if (state == Core::State::Running && m_emu_state != Core::State::Paused) - OnEmulationStarted(); - else if (state == Core::State::Uninitialized) - OnEmulationStopped(); - m_emu_state = state; + if (state != m_emu_state) + { + if (state == Core::State::Running && m_emu_state != Core::State::Paused) + OnEmulationStarted(); + else if (state == Core::State::Uninitialized) + OnEmulationStopped(); + m_emu_state = state; + } }); installEventFilter(this); @@ -376,9 +379,11 @@ void FIFOPlayerWindow::UpdateLimits() void FIFOPlayerWindow::UpdateControls() { - bool running = Core::IsRunning(Core::System::GetInstance()); - bool is_recording = m_fifo_recorder.IsRecording(); - bool is_playing = m_fifo_player.IsPlaying(); + Core::System& system = Core::System::GetInstance(); + const bool core_is_uninitialized = Core::IsUninitialized(system); + const bool core_is_running = Core::IsRunning(system); + const bool is_recording = m_fifo_recorder.IsRecording(); + const bool is_playing = m_fifo_player.IsPlaying(); m_frame_range_from->setEnabled(is_playing); m_frame_range_from_label->setEnabled(is_playing); @@ -394,10 +399,10 @@ void FIFOPlayerWindow::UpdateControls() m_frame_record_count_label->setEnabled(enable_frame_record_count); m_frame_record_count->setEnabled(enable_frame_record_count); - m_load->setEnabled(!running); - m_record->setEnabled(running && !is_playing); + m_load->setEnabled(core_is_uninitialized); + m_record->setEnabled(core_is_running && !is_playing); - m_stop->setVisible(running && is_recording); + m_stop->setVisible(core_is_running && is_recording); m_record->setVisible(!m_stop->isVisible()); m_save->setEnabled(m_fifo_recorder.IsRecordingDone()); diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 1003cff599..05ca541ef3 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -438,7 +438,7 @@ void GameList::ShowContextMenu(const QPoint&) // system menu, trigger a refresh. Settings::Instance().NANDRefresh(); }); - perform_disc_update->setEnabled(!Core::IsRunning(system) || !system.IsWii()); + perform_disc_update->setEnabled(Core::IsUninitialized(system) || !system.IsWii()); } if (!is_mod_descriptor && platform == DiscIO::Platform::WiiWAD) @@ -451,10 +451,10 @@ void GameList::ShowContextMenu(const QPoint&) for (QAction* a : {wad_install_action, wad_uninstall_action}) { - a->setEnabled(!Core::IsRunning(system)); + a->setEnabled(Core::IsUninitialized(system)); menu->addAction(a); } - if (!Core::IsRunning(system)) + if (Core::IsUninitialized(system)) wad_uninstall_action->setEnabled(WiiUtils::IsTitleInstalled(game->GetTitleID())); connect(&Settings::Instance(), &Settings::EmulationStateChanged, menu, @@ -475,8 +475,8 @@ void GameList::ShowContextMenu(const QPoint&) QAction* export_wii_save = menu->addAction(tr("Export Wii Save"), this, &GameList::ExportWiiSave); - open_wii_save_folder->setEnabled(!Core::IsRunning(system)); - export_wii_save->setEnabled(!Core::IsRunning(system)); + open_wii_save_folder->setEnabled(Core::IsUninitialized(system)); + export_wii_save->setEnabled(Core::IsUninitialized(system)); menu->addSeparator(); } @@ -533,7 +533,7 @@ void GameList::ShowContextMenu(const QPoint&) connect(&Settings::Instance(), &Settings::EmulationStateChanged, menu, [=](Core::State state) { netplay_host->setEnabled(state == Core::State::Uninitialized); }); - netplay_host->setEnabled(!Core::IsRunning(system)); + netplay_host->setEnabled(Core::IsUninitialized(system)); menu->addAction(netplay_host); } diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 0a6d13e6c0..91ee3c5455 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -188,7 +188,7 @@ void HotkeyScheduler::Run() if (IsHotkey(HK_EXIT)) emit ExitHotkey(); - if (!Core::IsRunning(system)) + if (Core::IsUninitialized(system)) { // Only check for Play Recording hotkey when no game is running if (IsHotkey(HK_PLAY_RECORDING)) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index f62a7496e7..0bef377f07 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -905,7 +905,7 @@ void MainWindow::OnStopComplete() bool MainWindow::RequestStop() { - if (!Core::IsRunning(Core::System::GetInstance())) + if (Core::IsUninitialized(Core::System::GetInstance())) { Core::QueueHostJob([this](Core::System&) { OnStopComplete(); }, true); return true; @@ -1112,7 +1112,7 @@ void MainWindow::StartGame(std::unique_ptr&& parameters) } // If we're running, only start a new game once we've stopped the last. - if (Core::GetState(Core::System::GetInstance()) != Core::State::Uninitialized) + if (!Core::IsUninitialized(Core::System::GetInstance())) { if (!RequestStop()) return; @@ -1536,7 +1536,7 @@ void MainWindow::NetPlayInit() bool MainWindow::NetPlayJoin() { - if (Core::IsRunning(Core::System::GetInstance())) + if (!Core::IsUninitialized(Core::System::GetInstance())) { ModalMessageBox::critical(nullptr, tr("Error"), tr("Can't start a NetPlay Session while a game is still running!")); @@ -1603,7 +1603,7 @@ bool MainWindow::NetPlayJoin() bool MainWindow::NetPlayHost(const UICommon::GameFile& game) { - if (Core::IsRunning(Core::System::GetInstance())) + if (!Core::IsUninitialized(Core::System::GetInstance())) { ModalMessageBox::critical(nullptr, tr("Error"), tr("Can't start a NetPlay Session while a game is still running!")); @@ -1850,7 +1850,7 @@ void MainWindow::OnImportNANDBackup() result.wait(); - m_menu_bar->UpdateToolsMenu(Core::IsRunning(Core::System::GetInstance())); + m_menu_bar->UpdateToolsMenu(Core::State::Uninitialized); } void MainWindow::OnPlayRecording() @@ -1882,7 +1882,8 @@ void MainWindow::OnStartRecording() { auto& system = Core::System::GetInstance(); auto& movie = system.GetMovie(); - if (Core::GetState(system) == Core::State::Starting || movie.IsRecordingInput() || + if (Core::GetState(system) == Core::State::Starting || + Core::GetState(system) == Core::State::Stopping || movie.IsRecordingInput() || movie.IsPlayingInput()) { return; @@ -1914,7 +1915,7 @@ void MainWindow::OnStartRecording() { emit RecordingStatusChanged(true); - if (!Core::IsRunning(system)) + if (Core::IsUninitialized(system)) Play(); } } diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 75b279db67..b7528272a6 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -138,9 +138,11 @@ void MenuBar::OnEmulationStateChanged(Core::State state) m_recording_stop->setEnabled(false); m_recording_export->setEnabled(false); } - m_recording_play->setEnabled(m_game_selected && !running); - m_recording_play->setEnabled(m_game_selected && !running && !hardcore); - m_recording_start->setEnabled((m_game_selected || running) && + const bool can_start_from_boot = m_game_selected && state == Core::State::Uninitialized; + const bool can_start_from_savestate = + state == Core::State::Running || state == Core::State::Paused; + m_recording_play->setEnabled(can_start_from_boot && !hardcore); + m_recording_start->setEnabled((can_start_from_boot || can_start_from_savestate) && !Core::System::GetInstance().GetMovie().IsPlayingInput()); // JIT @@ -159,7 +161,7 @@ void MenuBar::OnEmulationStateChanged(Core::State state) m_symbols->setEnabled(running); UpdateStateSlotMenu(); - UpdateToolsMenu(running); + UpdateToolsMenu(state); OnDebugModeToggled(Settings::Instance().IsDebugModeEnabled()); } @@ -300,7 +302,8 @@ void MenuBar::AddToolsMenu() m_boot_sysmenu->setEnabled(false); - connect(&Settings::Instance(), &Settings::NANDRefresh, this, [this] { UpdateToolsMenu(false); }); + connect(&Settings::Instance(), &Settings::NANDRefresh, this, + [this] { UpdateToolsMenu(Core::State::Uninitialized); }); m_perform_online_update_menu = tools_menu->addMenu(tr("Perform Online System Update")); m_perform_online_update_for_current_region = m_perform_online_update_menu->addAction( @@ -1050,20 +1053,23 @@ void MenuBar::AddSymbolsMenu() m_symbols->addAction(tr("&Patch HLE Functions"), this, &MenuBar::PatchHLEFunctions); } -void MenuBar::UpdateToolsMenu(bool emulation_started) +void MenuBar::UpdateToolsMenu(Core::State state) { - m_boot_sysmenu->setEnabled(!emulation_started); - m_perform_online_update_menu->setEnabled(!emulation_started); - m_ntscj_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(JAP_DIR))); - m_ntscu_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(USA_DIR))); - m_pal_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(EUR_DIR))); - m_wad_install_action->setEnabled(!emulation_started); - m_import_backup->setEnabled(!emulation_started); - m_check_nand->setEnabled(!emulation_started); - m_import_wii_save->setEnabled(!emulation_started); - m_export_wii_saves->setEnabled(!emulation_started); + const bool is_uninitialized = state == Core::State::Uninitialized; + const bool is_running = state == Core::State::Running || state == Core::State::Paused; - if (!emulation_started) + m_boot_sysmenu->setEnabled(is_uninitialized); + m_perform_online_update_menu->setEnabled(is_uninitialized); + m_ntscj_ipl->setEnabled(is_uninitialized && File::Exists(Config::GetBootROMPath(JAP_DIR))); + m_ntscu_ipl->setEnabled(is_uninitialized && File::Exists(Config::GetBootROMPath(USA_DIR))); + m_pal_ipl->setEnabled(is_uninitialized && File::Exists(Config::GetBootROMPath(EUR_DIR))); + m_wad_install_action->setEnabled(is_uninitialized); + m_import_backup->setEnabled(is_uninitialized); + m_check_nand->setEnabled(is_uninitialized); + m_import_wii_save->setEnabled(is_uninitialized); + m_export_wii_saves->setEnabled(is_uninitialized); + + if (is_uninitialized) { IOS::HLE::Kernel ios; const auto tmd = ios.GetESCore().FindInstalledTMD(Titles::SYSTEM_MENU); @@ -1086,7 +1092,7 @@ void MenuBar::UpdateToolsMenu(bool emulation_started) } const auto bt = WiiUtils::GetBluetoothEmuDevice(); - const bool enable_wiimotes = emulation_started && bt != nullptr; + const bool enable_wiimotes = is_running && bt != nullptr; for (std::size_t i = 0; i < m_wii_remotes.size(); i++) { @@ -1257,16 +1263,20 @@ void MenuBar::OnSelectionChanged(std::shared_ptr game_ m_game_selected = !!game_file; auto& system = Core::System::GetInstance(); - const bool core_is_running = Core::IsRunning(system); - m_recording_play->setEnabled(m_game_selected && !core_is_running); - m_recording_start->setEnabled((m_game_selected || core_is_running) && + const bool can_start_from_boot = m_game_selected && Core::IsUninitialized(system); + const bool can_start_from_savestate = Core::IsRunning(system); + m_recording_play->setEnabled(can_start_from_boot); + m_recording_start->setEnabled((can_start_from_boot || can_start_from_savestate) && !system.GetMovie().IsPlayingInput()); } void MenuBar::OnRecordingStatusChanged(bool recording) { auto& system = Core::System::GetInstance(); - m_recording_start->setEnabled(!recording && (m_game_selected || Core::IsRunning(system))); + const bool can_start_from_boot = m_game_selected && Core::IsUninitialized(system); + const bool can_start_from_savestate = Core::IsRunning(system); + + m_recording_start->setEnabled(!recording && (can_start_from_boot || can_start_from_savestate)); m_recording_stop->setEnabled(recording); m_recording_export->setEnabled(recording); } diff --git a/Source/Core/DolphinQt/MenuBar.h b/Source/Core/DolphinQt/MenuBar.h index b6620291d2..538ca29bb5 100644 --- a/Source/Core/DolphinQt/MenuBar.h +++ b/Source/Core/DolphinQt/MenuBar.h @@ -43,7 +43,7 @@ public: explicit MenuBar(QWidget* parent = nullptr); - void UpdateToolsMenu(bool emulation_started); + void UpdateToolsMenu(Core::State state); QMenu* GetListColumnsMenu() const { return m_cols_menu; } diff --git a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp index 4ae4b5f315..2bbf52d11d 100644 --- a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp @@ -804,9 +804,11 @@ void NetPlayDialog::DisplayMessage(const QString& msg, const std::string& color, QColor c(color.empty() ? QStringLiteral("white") : QString::fromStdString(color)); if (g_ActiveConfig.bShowNetPlayMessages && Core::IsRunning(Core::System::GetInstance())) + { g_netplay_chat_ui->AppendChat(msg.toStdString(), {static_cast(c.redF()), static_cast(c.greenF()), static_cast(c.blueF())}); + } } void NetPlayDialog::AppendChat(const std::string& msg) diff --git a/Source/Core/DolphinQt/Settings/AdvancedPane.cpp b/Source/Core/DolphinQt/Settings/AdvancedPane.cpp index 9aaef7be2d..2f4c163674 100644 --- a/Source/Core/DolphinQt/Settings/AdvancedPane.cpp +++ b/Source/Core/DolphinQt/Settings/AdvancedPane.cpp @@ -240,7 +240,7 @@ void AdvancedPane::ConnectLayout() void AdvancedPane::Update() { - const bool running = Core::GetState(Core::System::GetInstance()) != Core::State::Uninitialized; + const bool running = !Core::IsUninitialized(Core::System::GetInstance()); const bool enable_cpu_clock_override_widgets = Config::Get(Config::MAIN_OVERCLOCK_ENABLE); const bool enable_ram_override_widgets = Config::Get(Config::MAIN_RAM_OVERRIDE_ENABLE); const bool enable_custom_rtc_widgets = Config::Get(Config::MAIN_CUSTOM_RTC_ENABLE) && !running; diff --git a/Source/Core/DolphinQt/Settings/AudioPane.cpp b/Source/Core/DolphinQt/Settings/AudioPane.cpp index 289dc28e7d..d2290025ed 100644 --- a/Source/Core/DolphinQt/Settings/AudioPane.cpp +++ b/Source/Core/DolphinQt/Settings/AudioPane.cpp @@ -40,8 +40,7 @@ AudioPane::AudioPane() OnEmulationStateChanged(state != Core::State::Uninitialized); }); - OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != - Core::State::Uninitialized); + OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); } void AudioPane::CreateWidgets() diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp index b6ad36654f..0e432855af 100644 --- a/Source/Core/DolphinQt/Settings/WiiPane.cpp +++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp @@ -93,8 +93,7 @@ WiiPane::WiiPane(QWidget* parent) : QWidget(parent) LoadConfig(); ConnectLayout(); ValidateSelectionState(); - OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != - Core::State::Uninitialized); + OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); } void WiiPane::CreateLayout() diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index efa159795c..0e2e3566ea 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -66,15 +66,12 @@ void VideoConfig::Refresh() CPUThreadConfigCallback::AddConfigChangedCallback([]() { auto& system = Core::System::GetInstance(); - const bool lock_gpu_thread = Core::IsRunning(system); - if (lock_gpu_thread) - system.GetFifo().PauseAndLock(true, false); + system.GetFifo().PauseAndLock(true, false); g_Config.Refresh(); g_Config.VerifyValidity(); - if (lock_gpu_thread) - system.GetFifo().PauseAndLock(false, true); + system.GetFifo().PauseAndLock(false, true); }); s_has_registered_callback = true; } From 2584a200ef627392742ce4ca7245ac57817667bb Mon Sep 17 00:00:00 2001 From: dreamsyntax Date: Fri, 21 Jun 2024 11:52:15 -0700 Subject: [PATCH 112/296] GameINI: Shadow The Hedgehog widescreen heuristic Adjusts widescreen heuristic values to work properly for both the original game and the widescreen hack versions of Shadow the Hedgehog (all regions), Game ID GUP. Credit to Billiard for determining values. --- Data/Sys/GameSettings/GUP.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Data/Sys/GameSettings/GUP.ini b/Data/Sys/GameSettings/GUP.ini index 23fffab20e..1739114aaa 100644 --- a/Data/Sys/GameSettings/GUP.ini +++ b/Data/Sys/GameSettings/GUP.ini @@ -15,5 +15,10 @@ [Video_Hacks] VertexRounding = True +[Video_Settings] +WidescreenHeuristicStandardRatio = 0.91 +WidescreenHeuristicWidescreenRatio = 1.21 +WidescreenHeuristicAspectRatioSlop = 0.15 + [Video_Stereoscopy] StereoConvergence = 1 From e1a8dc65ce6276449e25d181704bf1b4121400e5 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sat, 22 Jun 2024 00:26:52 -0400 Subject: [PATCH 113/296] Fix cut off text in Achievements dialog --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 3 +++ .../DolphinQt/Achievements/AchievementLeaderboardWidget.cpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 645beb7613..02326d3716 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -8,6 +8,7 @@ #include #include #include +#include #include #include @@ -30,9 +31,11 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve m_badge = new QLabel(); QLabel* title = new QLabel(QString::fromUtf8(achievement->title, strlen(achievement->title))); title->setWordWrap(true); + title->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); QLabel* description = new QLabel(QString::fromUtf8(achievement->description, strlen(achievement->description))); description->setWordWrap(true); + description->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); QLabel* points = new QLabel(tr("%1 points").arg(achievement->points)); m_status = new QLabel(); m_progress_bar = new QProgressBar(); diff --git a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp index 7ded150a09..e7578a31e9 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp @@ -57,8 +57,10 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all) m_leaderboard_order[leaderboard->id] = row; QLabel* a_title = new QLabel(QString::fromUtf8(leaderboard->title)); a_title->setWordWrap(true); + a_title->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); QLabel* a_description = new QLabel(QString::fromUtf8(leaderboard->description)); a_description->setWordWrap(true); + a_description->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); QVBoxLayout* a_col_left = new QVBoxLayout(); a_col_left->addWidget(a_title); a_col_left->addWidget(a_description); From 3f64031cbb2d8d0dad474acfc89faa54cf8678ea Mon Sep 17 00:00:00 2001 From: Luis Condes Diaz Date: Wed, 19 Jun 2024 08:18:29 +0200 Subject: [PATCH 114/296] Migrate Vulkan-Headers to submodule and update to v1.3.288 --- .gitmodules | 3 + Externals/Vulkan-Headers | 1 + Externals/Vulkan/Include/vulkan/vk_icd.h | 245 - Externals/Vulkan/Include/vulkan/vk_layer.h | 210 - Externals/Vulkan/Include/vulkan/vk_platform.h | 84 - .../Vulkan/Include/vulkan/vk_sdk_platform.h | 69 - Externals/Vulkan/Include/vulkan/vulkan.h | 92 - Externals/Vulkan/Include/vulkan/vulkan.hpp | 14823 --- .../Vulkan/Include/vulkan/vulkan_android.h | 125 - Externals/Vulkan/Include/vulkan/vulkan_beta.h | 933 - Externals/Vulkan/Include/vulkan/vulkan_core.h | 14315 -- .../Vulkan/Include/vulkan/vulkan_directfb.h | 54 - .../Vulkan/Include/vulkan/vulkan_enums.hpp | 18755 --- .../Vulkan/Include/vulkan/vulkan_fuchsia.h | 258 - .../Vulkan/Include/vulkan/vulkan_funcs.hpp | 20957 --- Externals/Vulkan/Include/vulkan/vulkan_ggp.h | 58 - .../Vulkan/Include/vulkan/vulkan_handles.hpp | 14971 --- .../Vulkan/Include/vulkan/vulkan_hash.hpp | 13191 -- Externals/Vulkan/Include/vulkan/vulkan_ios.h | 47 - .../Vulkan/Include/vulkan/vulkan_macos.h | 47 - .../Vulkan/Include/vulkan/vulkan_metal.h | 54 - .../Vulkan/Include/vulkan/vulkan_raii.hpp | 18669 --- .../Vulkan/Include/vulkan/vulkan_screen.h | 54 - .../Vulkan/Include/vulkan/vulkan_structs.hpp | 102190 --------------- Externals/Vulkan/Include/vulkan/vulkan_vi.h | 47 - .../Vulkan/Include/vulkan/vulkan_wayland.h | 54 - .../Vulkan/Include/vulkan/vulkan_win32.h | 315 - Externals/Vulkan/Include/vulkan/vulkan_xcb.h | 55 - Externals/Vulkan/Include/vulkan/vulkan_xlib.h | 55 - .../Include/vulkan/vulkan_xlib_xrandr.h | 45 - .../Core/VideoBackends/Vulkan/CMakeLists.txt | 2 +- .../Core/VideoBackends/Vulkan/VulkanLoader.h | 3 + Source/VSProps/Base.Dolphin.props | 2 +- 33 files changed, 9 insertions(+), 220774 deletions(-) create mode 160000 Externals/Vulkan-Headers delete mode 100644 Externals/Vulkan/Include/vulkan/vk_icd.h delete mode 100644 Externals/Vulkan/Include/vulkan/vk_layer.h delete mode 100644 Externals/Vulkan/Include/vulkan/vk_platform.h delete mode 100644 Externals/Vulkan/Include/vulkan/vk_sdk_platform.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_android.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_beta.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_core.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_directfb.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_enums.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_fuchsia.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_funcs.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_ggp.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_handles.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_hash.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_ios.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_macos.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_metal.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_raii.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_screen.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_structs.hpp delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_vi.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_wayland.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_win32.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_xcb.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_xlib.h delete mode 100644 Externals/Vulkan/Include/vulkan/vulkan_xlib_xrandr.h diff --git a/.gitmodules b/.gitmodules index fcfd956d21..64995f1c31 100644 --- a/.gitmodules +++ b/.gitmodules @@ -81,3 +81,6 @@ [submodule "Externals/minizip-ng/minizip-ng"] path = Externals/minizip-ng/minizip-ng url = https://github.com/zlib-ng/minizip-ng +[submodule "Externals/Vulkan-Headers"] + path = Externals/Vulkan-Headers + url = https://github.com/KhronosGroup/Vulkan-Headers.git diff --git a/Externals/Vulkan-Headers b/Externals/Vulkan-Headers new file mode 160000 index 0000000000..05fe2cc910 --- /dev/null +++ b/Externals/Vulkan-Headers @@ -0,0 +1 @@ +Subproject commit 05fe2cc910a68c9ba5dac07db46ef78573acee72 diff --git a/Externals/Vulkan/Include/vulkan/vk_icd.h b/Externals/Vulkan/Include/vulkan/vk_icd.h deleted file mode 100644 index 41989ee354..0000000000 --- a/Externals/Vulkan/Include/vulkan/vk_icd.h +++ /dev/null @@ -1,245 +0,0 @@ -// -// File: vk_icd.h -// -/* - * Copyright (c) 2015-2016 The Khronos Group Inc. - * Copyright (c) 2015-2016 Valve Corporation - * Copyright (c) 2015-2016 LunarG, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -#ifndef VKICD_H -#define VKICD_H - -#include "vulkan.h" -#include - -// Loader-ICD version negotiation API. Versions add the following features: -// Version 0 - Initial. Doesn't support vk_icdGetInstanceProcAddr -// or vk_icdNegotiateLoaderICDInterfaceVersion. -// Version 1 - Add support for vk_icdGetInstanceProcAddr. -// Version 2 - Add Loader/ICD Interface version negotiation -// via vk_icdNegotiateLoaderICDInterfaceVersion. -// Version 3 - Add ICD creation/destruction of KHR_surface objects. -// Version 4 - Add unknown physical device extension querying via -// vk_icdGetPhysicalDeviceProcAddr. -// Version 5 - Tells ICDs that the loader is now paying attention to the -// application version of Vulkan passed into the ApplicationInfo -// structure during vkCreateInstance. This will tell the ICD -// that if the loader is older, it should automatically fail a -// call for any API version > 1.0. Otherwise, the loader will -// manually determine if it can support the expected version. -// Version 6 - Add support for vk_icdEnumerateAdapterPhysicalDevices. -#define CURRENT_LOADER_ICD_INTERFACE_VERSION 6 -#define MIN_SUPPORTED_LOADER_ICD_INTERFACE_VERSION 0 -#define MIN_PHYS_DEV_EXTENSION_ICD_INTERFACE_VERSION 4 - -// Old typedefs that don't follow a proper naming convention but are preserved for compatibility -typedef VkResult(VKAPI_PTR *PFN_vkNegotiateLoaderICDInterfaceVersion)(uint32_t *pVersion); -// This is defined in vk_layer.h which will be found by the loader, but if an ICD is building against this -// file directly, it won't be found. -#ifndef PFN_GetPhysicalDeviceProcAddr -typedef PFN_vkVoidFunction(VKAPI_PTR *PFN_GetPhysicalDeviceProcAddr)(VkInstance instance, const char *pName); -#endif - -// Typedefs for loader/ICD interface -typedef VkResult (VKAPI_PTR *PFN_vk_icdNegotiateLoaderICDInterfaceVersion)(uint32_t* pVersion); -typedef PFN_vkVoidFunction (VKAPI_PTR *PFN_vk_icdGetInstanceProcAddr)(VkInstance instance, const char* pName); -typedef PFN_vkVoidFunction (VKAPI_PTR *PFN_vk_icdGetPhysicalDeviceProcAddr)(VkInstance instance, const char* pName); -#if defined(VK_USE_PLATFORM_WIN32_KHR) -typedef VkResult (VKAPI_PTR *PFN_vk_icdEnumerateAdapterPhysicalDevices)(VkInstance instance, LUID adapterLUID, - uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices); -#endif - -// Prototypes for loader/ICD interface -#if !defined(VK_NO_PROTOTYPES) -#ifdef __cplusplus -extern "C" { -#endif - VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t* pVersion); - VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vk_icdGetInstanceProcAddr(VkInstance instance, const char* pName); - VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vk_icdGetPhysicalDeviceProcAddr(VkInstance isntance, const char* pName); -#if defined(VK_USE_PLATFORM_WIN32_KHR) - VKAPI_ATTR VkResult VKAPI_CALL vk_icdEnumerateAdapterPhysicalDevices(VkInstance instance, LUID adapterLUID, - uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices); -#endif -#ifdef __cplusplus -} -#endif -#endif - -/* - * The ICD must reserve space for a pointer for the loader's dispatch - * table, at the start of . - * The ICD must initialize this variable using the SET_LOADER_MAGIC_VALUE macro. - */ - -#define ICD_LOADER_MAGIC 0x01CDC0DE - -typedef union { - uintptr_t loaderMagic; - void *loaderData; -} VK_LOADER_DATA; - -static inline void set_loader_magic_value(void *pNewObject) { - VK_LOADER_DATA *loader_info = (VK_LOADER_DATA *)pNewObject; - loader_info->loaderMagic = ICD_LOADER_MAGIC; -} - -static inline bool valid_loader_magic_value(void *pNewObject) { - const VK_LOADER_DATA *loader_info = (VK_LOADER_DATA *)pNewObject; - return (loader_info->loaderMagic & 0xffffffff) == ICD_LOADER_MAGIC; -} - -/* - * Windows and Linux ICDs will treat VkSurfaceKHR as a pointer to a struct that - * contains the platform-specific connection and surface information. - */ -typedef enum { - VK_ICD_WSI_PLATFORM_MIR, - VK_ICD_WSI_PLATFORM_WAYLAND, - VK_ICD_WSI_PLATFORM_WIN32, - VK_ICD_WSI_PLATFORM_XCB, - VK_ICD_WSI_PLATFORM_XLIB, - VK_ICD_WSI_PLATFORM_ANDROID, - VK_ICD_WSI_PLATFORM_MACOS, - VK_ICD_WSI_PLATFORM_IOS, - VK_ICD_WSI_PLATFORM_DISPLAY, - VK_ICD_WSI_PLATFORM_HEADLESS, - VK_ICD_WSI_PLATFORM_METAL, - VK_ICD_WSI_PLATFORM_DIRECTFB, - VK_ICD_WSI_PLATFORM_VI, - VK_ICD_WSI_PLATFORM_GGP, - VK_ICD_WSI_PLATFORM_SCREEN, -} VkIcdWsiPlatform; - -typedef struct { - VkIcdWsiPlatform platform; -} VkIcdSurfaceBase; - -#ifdef VK_USE_PLATFORM_MIR_KHR -typedef struct { - VkIcdSurfaceBase base; - MirConnection *connection; - MirSurface *mirSurface; -} VkIcdSurfaceMir; -#endif // VK_USE_PLATFORM_MIR_KHR - -#ifdef VK_USE_PLATFORM_WAYLAND_KHR -typedef struct { - VkIcdSurfaceBase base; - struct wl_display *display; - struct wl_surface *surface; -} VkIcdSurfaceWayland; -#endif // VK_USE_PLATFORM_WAYLAND_KHR - -#ifdef VK_USE_PLATFORM_WIN32_KHR -typedef struct { - VkIcdSurfaceBase base; - HINSTANCE hinstance; - HWND hwnd; -} VkIcdSurfaceWin32; -#endif // VK_USE_PLATFORM_WIN32_KHR - -#ifdef VK_USE_PLATFORM_XCB_KHR -typedef struct { - VkIcdSurfaceBase base; - xcb_connection_t *connection; - xcb_window_t window; -} VkIcdSurfaceXcb; -#endif // VK_USE_PLATFORM_XCB_KHR - -#ifdef VK_USE_PLATFORM_XLIB_KHR -typedef struct { - VkIcdSurfaceBase base; - Display *dpy; - Window window; -} VkIcdSurfaceXlib; -#endif // VK_USE_PLATFORM_XLIB_KHR - -#ifdef VK_USE_PLATFORM_DIRECTFB_EXT -typedef struct { - VkIcdSurfaceBase base; - IDirectFB *dfb; - IDirectFBSurface *surface; -} VkIcdSurfaceDirectFB; -#endif // VK_USE_PLATFORM_DIRECTFB_EXT - -#ifdef VK_USE_PLATFORM_ANDROID_KHR -typedef struct { - VkIcdSurfaceBase base; - struct ANativeWindow *window; -} VkIcdSurfaceAndroid; -#endif // VK_USE_PLATFORM_ANDROID_KHR - -#ifdef VK_USE_PLATFORM_MACOS_MVK -typedef struct { - VkIcdSurfaceBase base; - const void *pView; -} VkIcdSurfaceMacOS; -#endif // VK_USE_PLATFORM_MACOS_MVK - -#ifdef VK_USE_PLATFORM_IOS_MVK -typedef struct { - VkIcdSurfaceBase base; - const void *pView; -} VkIcdSurfaceIOS; -#endif // VK_USE_PLATFORM_IOS_MVK - -#ifdef VK_USE_PLATFORM_GGP -typedef struct { - VkIcdSurfaceBase base; - GgpStreamDescriptor streamDescriptor; -} VkIcdSurfaceGgp; -#endif // VK_USE_PLATFORM_GGP - -typedef struct { - VkIcdSurfaceBase base; - VkDisplayModeKHR displayMode; - uint32_t planeIndex; - uint32_t planeStackIndex; - VkSurfaceTransformFlagBitsKHR transform; - float globalAlpha; - VkDisplayPlaneAlphaFlagBitsKHR alphaMode; - VkExtent2D imageExtent; -} VkIcdSurfaceDisplay; - -typedef struct { - VkIcdSurfaceBase base; -} VkIcdSurfaceHeadless; - -#ifdef VK_USE_PLATFORM_METAL_EXT -typedef struct { - VkIcdSurfaceBase base; - const CAMetalLayer *pLayer; -} VkIcdSurfaceMetal; -#endif // VK_USE_PLATFORM_METAL_EXT - -#ifdef VK_USE_PLATFORM_VI_NN -typedef struct { - VkIcdSurfaceBase base; - void *window; -} VkIcdSurfaceVi; -#endif // VK_USE_PLATFORM_VI_NN - -#ifdef VK_USE_PLATFORM_SCREEN_QNX -typedef struct { - VkIcdSurfaceBase base; - struct _screen_context *context; - struct _screen_window *window; -} VkIcdSurfaceScreen; -#endif // VK_USE_PLATFORM_SCREEN_QNX - -#endif // VKICD_H diff --git a/Externals/Vulkan/Include/vulkan/vk_layer.h b/Externals/Vulkan/Include/vulkan/vk_layer.h deleted file mode 100644 index 0651870c70..0000000000 --- a/Externals/Vulkan/Include/vulkan/vk_layer.h +++ /dev/null @@ -1,210 +0,0 @@ -// -// File: vk_layer.h -// -/* - * Copyright (c) 2015-2017 The Khronos Group Inc. - * Copyright (c) 2015-2017 Valve Corporation - * Copyright (c) 2015-2017 LunarG, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -/* Need to define dispatch table - * Core struct can then have ptr to dispatch table at the top - * Along with object ptrs for current and next OBJ - */ -#pragma once - -#include "vulkan.h" -#if defined(__GNUC__) && __GNUC__ >= 4 -#define VK_LAYER_EXPORT __attribute__((visibility("default"))) -#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590) -#define VK_LAYER_EXPORT __attribute__((visibility("default"))) -#else -#define VK_LAYER_EXPORT -#endif - -#define MAX_NUM_UNKNOWN_EXTS 250 - - // Loader-Layer version negotiation API. Versions add the following features: - // Versions 0/1 - Initial. Doesn't support vk_layerGetPhysicalDeviceProcAddr - // or vk_icdNegotiateLoaderLayerInterfaceVersion. - // Version 2 - Add support for vk_layerGetPhysicalDeviceProcAddr and - // vk_icdNegotiateLoaderLayerInterfaceVersion. -#define CURRENT_LOADER_LAYER_INTERFACE_VERSION 2 -#define MIN_SUPPORTED_LOADER_LAYER_INTERFACE_VERSION 1 - -#define VK_CURRENT_CHAIN_VERSION 1 - -// Typedef for use in the interfaces below -typedef PFN_vkVoidFunction (VKAPI_PTR *PFN_GetPhysicalDeviceProcAddr)(VkInstance instance, const char* pName); - -// Version negotiation values -typedef enum VkNegotiateLayerStructType { - LAYER_NEGOTIATE_UNINTIALIZED = 0, - LAYER_NEGOTIATE_INTERFACE_STRUCT = 1, -} VkNegotiateLayerStructType; - -// Version negotiation structures -typedef struct VkNegotiateLayerInterface { - VkNegotiateLayerStructType sType; - void *pNext; - uint32_t loaderLayerInterfaceVersion; - PFN_vkGetInstanceProcAddr pfnGetInstanceProcAddr; - PFN_vkGetDeviceProcAddr pfnGetDeviceProcAddr; - PFN_GetPhysicalDeviceProcAddr pfnGetPhysicalDeviceProcAddr; -} VkNegotiateLayerInterface; - -// Version negotiation functions -typedef VkResult (VKAPI_PTR *PFN_vkNegotiateLoaderLayerInterfaceVersion)(VkNegotiateLayerInterface *pVersionStruct); - -// Function prototype for unknown physical device extension command -typedef VkResult(VKAPI_PTR *PFN_PhysDevExt)(VkPhysicalDevice phys_device); - -// ------------------------------------------------------------------------------------------------ -// CreateInstance and CreateDevice support structures - -/* Sub type of structure for instance and device loader ext of CreateInfo. - * When sType == VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO - * or sType == VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO - * then VkLayerFunction indicates struct type pointed to by pNext - */ -typedef enum VkLayerFunction_ { - VK_LAYER_LINK_INFO = 0, - VK_LOADER_DATA_CALLBACK = 1, - VK_LOADER_LAYER_CREATE_DEVICE_CALLBACK = 2, - VK_LOADER_FEATURES = 3, -} VkLayerFunction; - -typedef struct VkLayerInstanceLink_ { - struct VkLayerInstanceLink_ *pNext; - PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr; - PFN_GetPhysicalDeviceProcAddr pfnNextGetPhysicalDeviceProcAddr; -} VkLayerInstanceLink; - -/* - * When creating the device chain the loader needs to pass - * down information about it's device structure needed at - * the end of the chain. Passing the data via the - * VkLayerDeviceInfo avoids issues with finding the - * exact instance being used. - */ -typedef struct VkLayerDeviceInfo_ { - void *device_info; - PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr; -} VkLayerDeviceInfo; - -typedef VkResult (VKAPI_PTR *PFN_vkSetInstanceLoaderData)(VkInstance instance, - void *object); -typedef VkResult (VKAPI_PTR *PFN_vkSetDeviceLoaderData)(VkDevice device, - void *object); -typedef VkResult (VKAPI_PTR *PFN_vkLayerCreateDevice)(VkInstance instance, VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo *pCreateInfo, - const VkAllocationCallbacks *pAllocator, VkDevice *pDevice, PFN_vkGetInstanceProcAddr layerGIPA, PFN_vkGetDeviceProcAddr *nextGDPA); -typedef void (VKAPI_PTR *PFN_vkLayerDestroyDevice)(VkDevice physicalDevice, const VkAllocationCallbacks *pAllocator, PFN_vkDestroyDevice destroyFunction); - -typedef enum VkLoaderFeastureFlagBits { - VK_LOADER_FEATURE_PHYSICAL_DEVICE_SORTING = 0x00000001, -} VkLoaderFlagBits; -typedef VkFlags VkLoaderFeatureFlags; - -typedef struct { - VkStructureType sType; // VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO - const void *pNext; - VkLayerFunction function; - union { - VkLayerInstanceLink *pLayerInfo; - PFN_vkSetInstanceLoaderData pfnSetInstanceLoaderData; - struct { - PFN_vkLayerCreateDevice pfnLayerCreateDevice; - PFN_vkLayerDestroyDevice pfnLayerDestroyDevice; - } layerDevice; - VkLoaderFeatureFlags loaderFeatures; - } u; -} VkLayerInstanceCreateInfo; - -typedef struct VkLayerDeviceLink_ { - struct VkLayerDeviceLink_ *pNext; - PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr; - PFN_vkGetDeviceProcAddr pfnNextGetDeviceProcAddr; -} VkLayerDeviceLink; - -typedef struct { - VkStructureType sType; // VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO - const void *pNext; - VkLayerFunction function; - union { - VkLayerDeviceLink *pLayerInfo; - PFN_vkSetDeviceLoaderData pfnSetDeviceLoaderData; - } u; -} VkLayerDeviceCreateInfo; - -#ifdef __cplusplus -extern "C" { -#endif - -VKAPI_ATTR VkResult VKAPI_CALL vkNegotiateLoaderLayerInterfaceVersion(VkNegotiateLayerInterface *pVersionStruct); - -typedef enum VkChainType { - VK_CHAIN_TYPE_UNKNOWN = 0, - VK_CHAIN_TYPE_ENUMERATE_INSTANCE_EXTENSION_PROPERTIES = 1, - VK_CHAIN_TYPE_ENUMERATE_INSTANCE_LAYER_PROPERTIES = 2, - VK_CHAIN_TYPE_ENUMERATE_INSTANCE_VERSION = 3, -} VkChainType; - -typedef struct VkChainHeader { - VkChainType type; - uint32_t version; - uint32_t size; -} VkChainHeader; - -typedef struct VkEnumerateInstanceExtensionPropertiesChain { - VkChainHeader header; - VkResult(VKAPI_PTR *pfnNextLayer)(const struct VkEnumerateInstanceExtensionPropertiesChain *, const char *, uint32_t *, - VkExtensionProperties *); - const struct VkEnumerateInstanceExtensionPropertiesChain *pNextLink; - -#if defined(__cplusplus) - inline VkResult CallDown(const char *pLayerName, uint32_t *pPropertyCount, VkExtensionProperties *pProperties) const { - return pfnNextLayer(pNextLink, pLayerName, pPropertyCount, pProperties); - } -#endif -} VkEnumerateInstanceExtensionPropertiesChain; - -typedef struct VkEnumerateInstanceLayerPropertiesChain { - VkChainHeader header; - VkResult(VKAPI_PTR *pfnNextLayer)(const struct VkEnumerateInstanceLayerPropertiesChain *, uint32_t *, VkLayerProperties *); - const struct VkEnumerateInstanceLayerPropertiesChain *pNextLink; - -#if defined(__cplusplus) - inline VkResult CallDown(uint32_t *pPropertyCount, VkLayerProperties *pProperties) const { - return pfnNextLayer(pNextLink, pPropertyCount, pProperties); - } -#endif -} VkEnumerateInstanceLayerPropertiesChain; - -typedef struct VkEnumerateInstanceVersionChain { - VkChainHeader header; - VkResult(VKAPI_PTR *pfnNextLayer)(const struct VkEnumerateInstanceVersionChain *, uint32_t *); - const struct VkEnumerateInstanceVersionChain *pNextLink; - -#if defined(__cplusplus) - inline VkResult CallDown(uint32_t *pApiVersion) const { - return pfnNextLayer(pNextLink, pApiVersion); - } -#endif -} VkEnumerateInstanceVersionChain; - -#ifdef __cplusplus -} -#endif diff --git a/Externals/Vulkan/Include/vulkan/vk_platform.h b/Externals/Vulkan/Include/vulkan/vk_platform.h deleted file mode 100644 index 3ff8c5d146..0000000000 --- a/Externals/Vulkan/Include/vulkan/vk_platform.h +++ /dev/null @@ -1,84 +0,0 @@ -// -// File: vk_platform.h -// -/* -** Copyright 2014-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - - -#ifndef VK_PLATFORM_H_ -#define VK_PLATFORM_H_ - -#ifdef __cplusplus -extern "C" -{ -#endif // __cplusplus - -/* -*************************************************************************************************** -* Platform-specific directives and type declarations -*************************************************************************************************** -*/ - -/* Platform-specific calling convention macros. - * - * Platforms should define these so that Vulkan clients call Vulkan commands - * with the same calling conventions that the Vulkan implementation expects. - * - * VKAPI_ATTR - Placed before the return type in function declarations. - * Useful for C++11 and GCC/Clang-style function attribute syntax. - * VKAPI_CALL - Placed after the return type in function declarations. - * Useful for MSVC-style calling convention syntax. - * VKAPI_PTR - Placed between the '(' and '*' in function pointer types. - * - * Function declaration: VKAPI_ATTR void VKAPI_CALL vkCommand(void); - * Function pointer type: typedef void (VKAPI_PTR *PFN_vkCommand)(void); - */ -#if defined(_WIN32) - // On Windows, Vulkan commands use the stdcall convention - #define VKAPI_ATTR - #define VKAPI_CALL __stdcall - #define VKAPI_PTR VKAPI_CALL -#elif defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH < 7 - #error "Vulkan is not supported for the 'armeabi' NDK ABI" -#elif defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7 && defined(__ARM_32BIT_STATE) - // On Android 32-bit ARM targets, Vulkan functions use the "hardfloat" - // calling convention, i.e. float parameters are passed in registers. This - // is true even if the rest of the application passes floats on the stack, - // as it does by default when compiling for the armeabi-v7a NDK ABI. - #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp"))) - #define VKAPI_CALL - #define VKAPI_PTR VKAPI_ATTR -#else - // On other platforms, use the default calling convention - #define VKAPI_ATTR - #define VKAPI_CALL - #define VKAPI_PTR -#endif - -#if !defined(VK_NO_STDDEF_H) - #include -#endif // !defined(VK_NO_STDDEF_H) - -#if !defined(VK_NO_STDINT_H) - #if defined(_MSC_VER) && (_MSC_VER < 1600) - typedef signed __int8 int8_t; - typedef unsigned __int8 uint8_t; - typedef signed __int16 int16_t; - typedef unsigned __int16 uint16_t; - typedef signed __int32 int32_t; - typedef unsigned __int32 uint32_t; - typedef signed __int64 int64_t; - typedef unsigned __int64 uint64_t; - #else - #include - #endif -#endif // !defined(VK_NO_STDINT_H) - -#ifdef __cplusplus -} // extern "C" -#endif // __cplusplus - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vk_sdk_platform.h b/Externals/Vulkan/Include/vulkan/vk_sdk_platform.h deleted file mode 100644 index 96d8676949..0000000000 --- a/Externals/Vulkan/Include/vulkan/vk_sdk_platform.h +++ /dev/null @@ -1,69 +0,0 @@ -// -// File: vk_sdk_platform.h -// -/* - * Copyright (c) 2015-2016 The Khronos Group Inc. - * Copyright (c) 2015-2016 Valve Corporation - * Copyright (c) 2015-2016 LunarG, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef VK_SDK_PLATFORM_H -#define VK_SDK_PLATFORM_H - -#if defined(_WIN32) -#define NOMINMAX -#ifndef __cplusplus -#undef inline -#define inline __inline -#endif // __cplusplus - -#if (defined(_MSC_VER) && _MSC_VER < 1900 /*vs2015*/) -// C99: -// Microsoft didn't implement C99 in Visual Studio; but started adding it with -// VS2013. However, VS2013 still didn't have snprintf(). The following is a -// work-around (Note: The _CRT_SECURE_NO_WARNINGS macro must be set in the -// "CMakeLists.txt" file). -// NOTE: This is fixed in Visual Studio 2015. -#define snprintf _snprintf -#endif - -#define strdup _strdup - -#endif // _WIN32 - -// Check for noexcept support using clang, with fallback to Windows or GCC version numbers -#ifndef NOEXCEPT -#if defined(__clang__) -#if __has_feature(cxx_noexcept) -#define HAS_NOEXCEPT -#endif -#else -#if defined(__GXX_EXPERIMENTAL_CXX0X__) && __GNUC__ * 10 + __GNUC_MINOR__ >= 46 -#define HAS_NOEXCEPT -#else -#if defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 190023026 && defined(_HAS_EXCEPTIONS) && _HAS_EXCEPTIONS -#define HAS_NOEXCEPT -#endif -#endif -#endif - -#ifdef HAS_NOEXCEPT -#define NOEXCEPT noexcept -#else -#define NOEXCEPT -#endif -#endif - -#endif // VK_SDK_PLATFORM_H diff --git a/Externals/Vulkan/Include/vulkan/vulkan.h b/Externals/Vulkan/Include/vulkan/vulkan.h deleted file mode 100644 index 004fa70952..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan.h +++ /dev/null @@ -1,92 +0,0 @@ -#ifndef VULKAN_H_ -#define VULKAN_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -#include "vk_platform.h" -#include "vulkan_core.h" - -#ifdef VK_USE_PLATFORM_ANDROID_KHR -#include "vulkan_android.h" -#endif - -#ifdef VK_USE_PLATFORM_FUCHSIA -#include -#include "vulkan_fuchsia.h" -#endif - -#ifdef VK_USE_PLATFORM_IOS_MVK -#include "vulkan_ios.h" -#endif - - -#ifdef VK_USE_PLATFORM_MACOS_MVK -#include "vulkan_macos.h" -#endif - -#ifdef VK_USE_PLATFORM_METAL_EXT -#include "vulkan_metal.h" -#endif - -#ifdef VK_USE_PLATFORM_VI_NN -#include "vulkan_vi.h" -#endif - - -#ifdef VK_USE_PLATFORM_WAYLAND_KHR -#include -#include "vulkan_wayland.h" -#endif - - -#ifdef VK_USE_PLATFORM_WIN32_KHR -#include -#include "vulkan_win32.h" -#endif - - -#ifdef VK_USE_PLATFORM_XCB_KHR -#include -#include "vulkan_xcb.h" -#endif - - -#ifdef VK_USE_PLATFORM_XLIB_KHR -#include -#include "vulkan_xlib.h" -#endif - - -#ifdef VK_USE_PLATFORM_DIRECTFB_EXT -#include -#include "vulkan_directfb.h" -#endif - - -#ifdef VK_USE_PLATFORM_XLIB_XRANDR_EXT -#include -#include -#include "vulkan_xlib_xrandr.h" -#endif - - -#ifdef VK_USE_PLATFORM_GGP -#include -#include "vulkan_ggp.h" -#endif - - -#ifdef VK_USE_PLATFORM_SCREEN_QNX -#include -#include "vulkan_screen.h" -#endif - -#ifdef VK_ENABLE_BETA_EXTENSIONS -#include "vulkan_beta.h" -#endif - -#endif // VULKAN_H_ diff --git a/Externals/Vulkan/Include/vulkan/vulkan.hpp b/Externals/Vulkan/Include/vulkan/vulkan.hpp deleted file mode 100644 index 400bdbe94b..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan.hpp +++ /dev/null @@ -1,14823 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_HPP -#define VULKAN_HPP - -#if defined( _MSVC_LANG ) -# define VULKAN_HPP_CPLUSPLUS _MSVC_LANG -#else -# define VULKAN_HPP_CPLUSPLUS __cplusplus -#endif - -#if 201703L < VULKAN_HPP_CPLUSPLUS -# define VULKAN_HPP_CPP_VERSION 20 -#elif 201402L < VULKAN_HPP_CPLUSPLUS -# define VULKAN_HPP_CPP_VERSION 17 -#elif 201103L < VULKAN_HPP_CPLUSPLUS -# define VULKAN_HPP_CPP_VERSION 14 -#elif 199711L < VULKAN_HPP_CPLUSPLUS -# define VULKAN_HPP_CPP_VERSION 11 -#else -# error "vulkan.hpp needs at least c++ standard version 11" -#endif - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#if 17 <= VULKAN_HPP_CPP_VERSION -# include -#endif - -#if defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) -# if !defined( VULKAN_HPP_NO_SMART_HANDLE ) -# define VULKAN_HPP_NO_SMART_HANDLE -# endif -#else -# include -# include -#endif - -#if defined( VULKAN_HPP_NO_CONSTRUCTORS ) -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) -# define VULKAN_HPP_NO_STRUCT_CONSTRUCTORS -# endif -# if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) -# define VULKAN_HPP_NO_UNION_CONSTRUCTORS -# endif -#endif - -#if defined( VULKAN_HPP_NO_SETTERS ) -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) -# define VULKAN_HPP_NO_STRUCT_SETTERS -# endif -# if !defined( VULKAN_HPP_NO_UNION_SETTERS ) -# define VULKAN_HPP_NO_UNION_SETTERS -# endif -#endif - -#if !defined( VULKAN_HPP_ASSERT ) -# include -# define VULKAN_HPP_ASSERT assert -#endif - -#if !defined( VULKAN_HPP_ASSERT_ON_RESULT ) -# define VULKAN_HPP_ASSERT_ON_RESULT VULKAN_HPP_ASSERT -#endif - -#if !defined( VULKAN_HPP_STATIC_ASSERT ) -# define VULKAN_HPP_STATIC_ASSERT static_assert -#endif - -#if !defined( VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL ) -# define VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL 1 -#endif - -#if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL == 1 -# if defined( __unix__ ) || defined( __APPLE__ ) || defined( __QNXNTO__ ) || defined( __Fuchsia__ ) -# include -# elif defined( _WIN32 ) -typedef struct HINSTANCE__ * HINSTANCE; -# if defined( _WIN64 ) -typedef int64_t( __stdcall * FARPROC )(); -# else -typedef int( __stdcall * FARPROC )(); -# endif -extern "C" __declspec( dllimport ) HINSTANCE __stdcall LoadLibraryA( char const * lpLibFileName ); -extern "C" __declspec( dllimport ) int __stdcall FreeLibrary( HINSTANCE hLibModule ); -extern "C" __declspec( dllimport ) FARPROC __stdcall GetProcAddress( HINSTANCE hModule, const char * lpProcName ); -# endif -#endif - -#if !defined( __has_include ) -# define __has_include( x ) false -#endif - -#if ( 201711 <= __cpp_impl_three_way_comparison ) && __has_include( ) && !defined( VULKAN_HPP_NO_SPACESHIP_OPERATOR ) -# define VULKAN_HPP_HAS_SPACESHIP_OPERATOR -#endif -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) -# include -#endif - -#if ( 201803 <= __cpp_lib_span ) -# define VULKAN_HPP_SUPPORT_SPAN -# include -#endif - -static_assert( VK_HEADER_VERSION == 204, "Wrong VK_HEADER_VERSION!" ); - -// 32-bit vulkan is not typesafe for handles, so don't allow copy constructors on this platform by default. -// To enable this feature on 32-bit platforms please define VULKAN_HPP_TYPESAFE_CONVERSION -#if ( VK_USE_64_BIT_PTR_DEFINES == 1 ) -# if !defined( VULKAN_HPP_TYPESAFE_CONVERSION ) -# define VULKAN_HPP_TYPESAFE_CONVERSION -# endif -#endif - -// includes through some other header -// this results in major(x) being resolved to gnu_dev_major(x) -// which is an expression in a constructor initializer list. -#if defined( major ) -# undef major -#endif -#if defined( minor ) -# undef minor -#endif - -// Windows defines MemoryBarrier which is deprecated and collides -// with the VULKAN_HPP_NAMESPACE::MemoryBarrier struct. -#if defined( MemoryBarrier ) -# undef MemoryBarrier -#endif - -#if !defined( VULKAN_HPP_HAS_UNRESTRICTED_UNIONS ) -# if defined( __clang__ ) -# if __has_feature( cxx_unrestricted_unions ) -# define VULKAN_HPP_HAS_UNRESTRICTED_UNIONS -# endif -# elif defined( __GNUC__ ) -# define GCC_VERSION ( __GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__ ) -# if 40600 <= GCC_VERSION -# define VULKAN_HPP_HAS_UNRESTRICTED_UNIONS -# endif -# elif defined( _MSC_VER ) -# if 1900 <= _MSC_VER -# define VULKAN_HPP_HAS_UNRESTRICTED_UNIONS -# endif -# endif -#endif - -#if !defined( VULKAN_HPP_INLINE ) -# if defined( __clang__ ) -# if __has_attribute( always_inline ) -# define VULKAN_HPP_INLINE __attribute__( ( always_inline ) ) __inline__ -# else -# define VULKAN_HPP_INLINE inline -# endif -# elif defined( __GNUC__ ) -# define VULKAN_HPP_INLINE __attribute__( ( always_inline ) ) __inline__ -# elif defined( _MSC_VER ) -# define VULKAN_HPP_INLINE inline -# else -# define VULKAN_HPP_INLINE inline -# endif -#endif - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) -# define VULKAN_HPP_TYPESAFE_EXPLICIT -#else -# define VULKAN_HPP_TYPESAFE_EXPLICIT explicit -#endif - -#if defined( __cpp_constexpr ) -# define VULKAN_HPP_CONSTEXPR constexpr -# if __cpp_constexpr >= 201304 -# define VULKAN_HPP_CONSTEXPR_14 constexpr -# else -# define VULKAN_HPP_CONSTEXPR_14 -# endif -# define VULKAN_HPP_CONST_OR_CONSTEXPR constexpr -#else -# define VULKAN_HPP_CONSTEXPR -# define VULKAN_HPP_CONSTEXPR_14 -# define VULKAN_HPP_CONST_OR_CONSTEXPR const -#endif - -#if !defined( VULKAN_HPP_NOEXCEPT ) -# if defined( _MSC_VER ) && ( _MSC_VER <= 1800 ) -# define VULKAN_HPP_NOEXCEPT -# else -# define VULKAN_HPP_NOEXCEPT noexcept -# define VULKAN_HPP_HAS_NOEXCEPT 1 -# if defined( VULKAN_HPP_NO_EXCEPTIONS ) -# define VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS noexcept -# else -# define VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS -# endif -# endif -#endif - -#if 14 <= VULKAN_HPP_CPP_VERSION -# define VULKAN_HPP_DEPRECATED( msg ) [[deprecated( msg )]] -#else -# define VULKAN_HPP_DEPRECATED( msg ) -#endif - -#if ( 17 <= VULKAN_HPP_CPP_VERSION ) && !defined( VULKAN_HPP_NO_NODISCARD_WARNINGS ) -# define VULKAN_HPP_NODISCARD [[nodiscard]] -# if defined( VULKAN_HPP_NO_EXCEPTIONS ) -# define VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS [[nodiscard]] -# else -# define VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS -# endif -#else -# define VULKAN_HPP_NODISCARD -# define VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS -#endif - -#if !defined( VULKAN_HPP_NAMESPACE ) -# define VULKAN_HPP_NAMESPACE vk -#endif - -#define VULKAN_HPP_STRINGIFY2( text ) #text -#define VULKAN_HPP_STRINGIFY( text ) VULKAN_HPP_STRINGIFY2( text ) -#define VULKAN_HPP_NAMESPACE_STRING VULKAN_HPP_STRINGIFY( VULKAN_HPP_NAMESPACE ) - -namespace VULKAN_HPP_NAMESPACE -{ -#if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - class ArrayProxy - { - public: - VULKAN_HPP_CONSTEXPR ArrayProxy() VULKAN_HPP_NOEXCEPT - : m_count( 0 ) - , m_ptr( nullptr ) - {} - - VULKAN_HPP_CONSTEXPR ArrayProxy( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - : m_count( 0 ) - , m_ptr( nullptr ) - {} - - ArrayProxy( T & value ) VULKAN_HPP_NOEXCEPT - : m_count( 1 ) - , m_ptr( &value ) - {} - - template ::value, int>::type = 0> - ArrayProxy( typename std::remove_const::type & value ) VULKAN_HPP_NOEXCEPT - : m_count( 1 ) - , m_ptr( &value ) - {} - - ArrayProxy( uint32_t count, T * ptr ) VULKAN_HPP_NOEXCEPT - : m_count( count ) - , m_ptr( ptr ) - {} - - template ::value, int>::type = 0> - ArrayProxy( uint32_t count, typename std::remove_const::type * ptr ) VULKAN_HPP_NOEXCEPT - : m_count( count ) - , m_ptr( ptr ) - {} - -# if __GNUC__ >= 9 -# pragma GCC diagnostic push -# pragma GCC diagnostic ignored "-Winit-list-lifetime" -# endif - - ArrayProxy( std::initializer_list const & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - template ::value, int>::type = 0> - ArrayProxy( std::initializer_list::type> const & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - ArrayProxy( std::initializer_list & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - template ::value, int>::type = 0> - ArrayProxy( std::initializer_list::type> & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - -# if __GNUC__ >= 9 -# pragma GCC diagnostic pop -# endif - - // Any type with a .data() return type implicitly convertible to T*, and a .size() return type implicitly - // convertible to size_t. The const version can capture temporaries, with lifetime ending at end of statement. - template ().data() ), T *>::value && - std::is_convertible().size() ), std::size_t>::value>::type * = nullptr> - ArrayProxy( V const & v ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( v.size() ) ) - , m_ptr( v.data() ) - {} - - template ().data() ), T *>::value && - std::is_convertible().size() ), std::size_t>::value>::type * = nullptr> - ArrayProxy( V & v ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( v.size() ) ) - , m_ptr( v.data() ) - {} - - const T * begin() const VULKAN_HPP_NOEXCEPT - { - return m_ptr; - } - - const T * end() const VULKAN_HPP_NOEXCEPT - { - return m_ptr + m_count; - } - - const T & front() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_count && m_ptr ); - return *m_ptr; - } - - const T & back() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_count && m_ptr ); - return *( m_ptr + m_count - 1 ); - } - - bool empty() const VULKAN_HPP_NOEXCEPT - { - return ( m_count == 0 ); - } - - uint32_t size() const VULKAN_HPP_NOEXCEPT - { - return m_count; - } - - T * data() const VULKAN_HPP_NOEXCEPT - { - return m_ptr; - } - - private: - uint32_t m_count; - T * m_ptr; - }; - - template - class ArrayProxyNoTemporaries - { - public: - VULKAN_HPP_CONSTEXPR ArrayProxyNoTemporaries() VULKAN_HPP_NOEXCEPT - : m_count( 0 ) - , m_ptr( nullptr ) - {} - - VULKAN_HPP_CONSTEXPR ArrayProxyNoTemporaries( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - : m_count( 0 ) - , m_ptr( nullptr ) - {} - - ArrayProxyNoTemporaries( T & value ) VULKAN_HPP_NOEXCEPT - : m_count( 1 ) - , m_ptr( &value ) - {} - - template - ArrayProxyNoTemporaries( V && value ) = delete; - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( typename std::remove_const::type & value ) VULKAN_HPP_NOEXCEPT - : m_count( 1 ) - , m_ptr( &value ) - {} - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( typename std::remove_const::type && value ) = delete; - - ArrayProxyNoTemporaries( uint32_t count, T * ptr ) VULKAN_HPP_NOEXCEPT - : m_count( count ) - , m_ptr( ptr ) - {} - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( uint32_t count, typename std::remove_const::type * ptr ) VULKAN_HPP_NOEXCEPT - : m_count( count ) - , m_ptr( ptr ) - {} - - ArrayProxyNoTemporaries( std::initializer_list const & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - ArrayProxyNoTemporaries( std::initializer_list const && list ) = delete; - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( std::initializer_list::type> const & list ) - VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( std::initializer_list::type> const && list ) = delete; - - ArrayProxyNoTemporaries( std::initializer_list & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - ArrayProxyNoTemporaries( std::initializer_list && list ) = delete; - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( std::initializer_list::type> & list ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( list.size() ) ) - , m_ptr( list.begin() ) - {} - - template ::value, int>::type = 0> - ArrayProxyNoTemporaries( std::initializer_list::type> && list ) = delete; - - // Any type with a .data() return type implicitly convertible to T*, and a // .size() return type implicitly - // convertible to size_t. - template ().data() ), T *>::value && - std::is_convertible().size() ), std::size_t>::value>::type * = nullptr> - ArrayProxyNoTemporaries( V & v ) VULKAN_HPP_NOEXCEPT - : m_count( static_cast( v.size() ) ) - , m_ptr( v.data() ) - {} - - const T * begin() const VULKAN_HPP_NOEXCEPT - { - return m_ptr; - } - - const T * end() const VULKAN_HPP_NOEXCEPT - { - return m_ptr + m_count; - } - - const T & front() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_count && m_ptr ); - return *m_ptr; - } - - const T & back() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_count && m_ptr ); - return *( m_ptr + m_count - 1 ); - } - - bool empty() const VULKAN_HPP_NOEXCEPT - { - return ( m_count == 0 ); - } - - uint32_t size() const VULKAN_HPP_NOEXCEPT - { - return m_count; - } - - T * data() const VULKAN_HPP_NOEXCEPT - { - return m_ptr; - } - - private: - uint32_t m_count; - T * m_ptr; - }; -#endif - - template - class ArrayWrapper1D : public std::array - { - public: - VULKAN_HPP_CONSTEXPR ArrayWrapper1D() VULKAN_HPP_NOEXCEPT : std::array() {} - - VULKAN_HPP_CONSTEXPR ArrayWrapper1D( std::array const & data ) VULKAN_HPP_NOEXCEPT : std::array( data ) - {} - -#if ( VK_USE_64_BIT_PTR_DEFINES == 0 ) - // on 32 bit compiles, needs overloads on index type int to resolve ambiguities - VULKAN_HPP_CONSTEXPR T const & operator[]( int index ) const VULKAN_HPP_NOEXCEPT - { - return std::array::operator[]( index ); - } - - T & operator[]( int index ) VULKAN_HPP_NOEXCEPT - { - return std::array::operator[]( index ); - } -#endif - - operator T const *() const VULKAN_HPP_NOEXCEPT - { - return this->data(); - } - - operator T *() VULKAN_HPP_NOEXCEPT - { - return this->data(); - } - - template ::value, int>::type = 0> - operator std::string() const - { - return std::string( this->data() ); - } - -#if 17 <= VULKAN_HPP_CPP_VERSION - template ::value, int>::type = 0> - operator std::string_view() const - { - return std::string_view( this->data() ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - template ::value, int>::type = 0> - std::strong_ordering operator<=>( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) <=> *static_cast const *>( &rhs ); - } -#else - template ::value, int>::type = 0> - bool operator<( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) < *static_cast const *>( &rhs ); - } - - template ::value, int>::type = 0> - bool operator<=( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) <= *static_cast const *>( &rhs ); - } - - template ::value, int>::type = 0> - bool operator>( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) > *static_cast const *>( &rhs ); - } - - template ::value, int>::type = 0> - bool operator>=( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) >= *static_cast const *>( &rhs ); - } -#endif - - template ::value, int>::type = 0> - bool operator==( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) == *static_cast const *>( &rhs ); - } - - template ::value, int>::type = 0> - bool operator!=( ArrayWrapper1D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return *static_cast const *>( this ) != *static_cast const *>( &rhs ); - } - }; - - // specialization of relational operators between std::string and arrays of chars - template - bool operator<( std::string const & lhs, ArrayWrapper1D const & rhs ) VULKAN_HPP_NOEXCEPT - { - return lhs < rhs.data(); - } - - template - bool operator<=( std::string const & lhs, ArrayWrapper1D const & rhs ) VULKAN_HPP_NOEXCEPT - { - return lhs <= rhs.data(); - } - - template - bool operator>( std::string const & lhs, ArrayWrapper1D const & rhs ) VULKAN_HPP_NOEXCEPT - { - return lhs > rhs.data(); - } - - template - bool operator>=( std::string const & lhs, ArrayWrapper1D const & rhs ) VULKAN_HPP_NOEXCEPT - { - return lhs >= rhs.data(); - } - - template - bool operator==( std::string const & lhs, ArrayWrapper1D const & rhs ) VULKAN_HPP_NOEXCEPT - { - return lhs == rhs.data(); - } - - template - bool operator!=( std::string const & lhs, ArrayWrapper1D const & rhs ) VULKAN_HPP_NOEXCEPT - { - return lhs != rhs.data(); - } - - template - class ArrayWrapper2D : public std::array, N> - { - public: - VULKAN_HPP_CONSTEXPR ArrayWrapper2D() VULKAN_HPP_NOEXCEPT : std::array, N>() {} - - VULKAN_HPP_CONSTEXPR ArrayWrapper2D( std::array, N> const & data ) VULKAN_HPP_NOEXCEPT - : std::array, N>( *reinterpret_cast, N> const *>( &data ) ) - {} - }; - - template - struct FlagTraits - { - enum - { - allFlags = 0 - }; - }; - - template - class Flags - { - public: - using MaskType = typename std::underlying_type::type; - - // constructors - VULKAN_HPP_CONSTEXPR Flags() VULKAN_HPP_NOEXCEPT : m_mask( 0 ) {} - - VULKAN_HPP_CONSTEXPR Flags( BitType bit ) VULKAN_HPP_NOEXCEPT : m_mask( static_cast( bit ) ) {} - - VULKAN_HPP_CONSTEXPR Flags( Flags const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VULKAN_HPP_CONSTEXPR explicit Flags( MaskType flags ) VULKAN_HPP_NOEXCEPT : m_mask( flags ) {} - - // relational operators -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Flags const & ) const = default; -#else - VULKAN_HPP_CONSTEXPR bool operator<( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_mask < rhs.m_mask; - } - - VULKAN_HPP_CONSTEXPR bool operator<=( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_mask <= rhs.m_mask; - } - - VULKAN_HPP_CONSTEXPR bool operator>( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_mask > rhs.m_mask; - } - - VULKAN_HPP_CONSTEXPR bool operator>=( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_mask >= rhs.m_mask; - } - - VULKAN_HPP_CONSTEXPR bool operator==( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_mask == rhs.m_mask; - } - - VULKAN_HPP_CONSTEXPR bool operator!=( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_mask != rhs.m_mask; - } -#endif - - // logical operator - VULKAN_HPP_CONSTEXPR bool operator!() const VULKAN_HPP_NOEXCEPT - { - return !m_mask; - } - - // bitwise operators - VULKAN_HPP_CONSTEXPR Flags operator&( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return Flags( m_mask & rhs.m_mask ); - } - - VULKAN_HPP_CONSTEXPR Flags operator|( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return Flags( m_mask | rhs.m_mask ); - } - - VULKAN_HPP_CONSTEXPR Flags operator^( Flags const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return Flags( m_mask ^ rhs.m_mask ); - } - - VULKAN_HPP_CONSTEXPR Flags operator~() const VULKAN_HPP_NOEXCEPT - { - return Flags( m_mask ^ FlagTraits::allFlags ); - } - - // assignment operators - VULKAN_HPP_CONSTEXPR_14 Flags & operator=( Flags const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VULKAN_HPP_CONSTEXPR_14 Flags & operator|=( Flags const & rhs ) VULKAN_HPP_NOEXCEPT - { - m_mask |= rhs.m_mask; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Flags & operator&=( Flags const & rhs ) VULKAN_HPP_NOEXCEPT - { - m_mask &= rhs.m_mask; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Flags & operator^=( Flags const & rhs ) VULKAN_HPP_NOEXCEPT - { - m_mask ^= rhs.m_mask; - return *this; - } - - // cast operators - explicit VULKAN_HPP_CONSTEXPR operator bool() const VULKAN_HPP_NOEXCEPT - { - return !!m_mask; - } - - explicit VULKAN_HPP_CONSTEXPR operator MaskType() const VULKAN_HPP_NOEXCEPT - { - return m_mask; - } - -#if defined( VULKAN_HPP_FLAGS_MASK_TYPE_AS_PUBLIC ) - public: -#else - private: -#endif - MaskType m_mask; - }; - -#if !defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - // relational operators only needed for pre C++20 - template - VULKAN_HPP_CONSTEXPR bool operator<( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator>( bit ); - } - - template - VULKAN_HPP_CONSTEXPR bool operator<=( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator>=( bit ); - } - - template - VULKAN_HPP_CONSTEXPR bool operator>( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator<( bit ); - } - - template - VULKAN_HPP_CONSTEXPR bool operator>=( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator<=( bit ); - } - - template - VULKAN_HPP_CONSTEXPR bool operator==( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator==( bit ); - } - - template - VULKAN_HPP_CONSTEXPR bool operator!=( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator!=( bit ); - } -#endif - - // bitwise operators - template - VULKAN_HPP_CONSTEXPR Flags operator&( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator&( bit ); - } - - template - VULKAN_HPP_CONSTEXPR Flags operator|( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator|( bit ); - } - - template - VULKAN_HPP_CONSTEXPR Flags operator^( BitType bit, Flags const & flags ) VULKAN_HPP_NOEXCEPT - { - return flags.operator^( bit ); - } - - template - class Optional - { - public: - Optional( RefType & reference ) VULKAN_HPP_NOEXCEPT - { - m_ptr = &reference; - } - Optional( RefType * ptr ) VULKAN_HPP_NOEXCEPT - { - m_ptr = ptr; - } - Optional( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_ptr = nullptr; - } - - operator RefType *() const VULKAN_HPP_NOEXCEPT - { - return m_ptr; - } - RefType const * operator->() const VULKAN_HPP_NOEXCEPT - { - return m_ptr; - } - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return !!m_ptr; - } - - private: - RefType * m_ptr; - }; - - template - struct StructExtends - { - enum - { - value = false - }; - }; - - template - struct IsPartOfStructureChain - { - static const bool valid = false; - }; - - template - struct IsPartOfStructureChain - { - static const bool valid = std::is_same::value || IsPartOfStructureChain::valid; - }; - - template - struct StructureChainContains - { - static const bool value = - std::is_same>::type>::value || - StructureChainContains::value; - }; - - template - struct StructureChainContains<0, T, ChainElements...> - { - static const bool value = - std::is_same>::type>::value; - }; - - template - struct StructureChainValidation - { - using TestType = typename std::tuple_element>::type; - static const bool valid = - StructExtends>::type>::value && - ( TestType::allowDuplicate || !StructureChainContains::value ) && - StructureChainValidation::valid; - }; - - template - struct StructureChainValidation<0, ChainElements...> - { - static const bool valid = true; - }; - - template - class StructureChain : public std::tuple - { - public: - StructureChain() VULKAN_HPP_NOEXCEPT - { - static_assert( StructureChainValidation::valid, - "The structure chain is not valid!" ); - link(); - } - - StructureChain( StructureChain const & rhs ) VULKAN_HPP_NOEXCEPT : std::tuple( rhs ) - { - static_assert( StructureChainValidation::valid, - "The structure chain is not valid!" ); - link( &std::get<0>( *this ), - &std::get<0>( rhs ), - reinterpret_cast( &std::get<0>( *this ) ), - reinterpret_cast( &std::get<0>( rhs ) ) ); - } - - StructureChain( StructureChain && rhs ) VULKAN_HPP_NOEXCEPT - : std::tuple( std::forward>( rhs ) ) - { - static_assert( StructureChainValidation::valid, - "The structure chain is not valid!" ); - link( &std::get<0>( *this ), - &std::get<0>( rhs ), - reinterpret_cast( &std::get<0>( *this ) ), - reinterpret_cast( &std::get<0>( rhs ) ) ); - } - - StructureChain( ChainElements const &... elems ) VULKAN_HPP_NOEXCEPT : std::tuple( elems... ) - { - static_assert( StructureChainValidation::valid, - "The structure chain is not valid!" ); - link(); - } - - StructureChain & operator=( StructureChain const & rhs ) VULKAN_HPP_NOEXCEPT - { - std::tuple::operator=( rhs ); - link( &std::get<0>( *this ), - &std::get<0>( rhs ), - reinterpret_cast( &std::get<0>( *this ) ), - reinterpret_cast( &std::get<0>( rhs ) ) ); - return *this; - } - - StructureChain & operator=( StructureChain && rhs ) = delete; - - template >::type, size_t Which = 0> - T & get() VULKAN_HPP_NOEXCEPT - { - return std::get::value>( - static_cast &>( *this ) ); - } - - template >::type, size_t Which = 0> - T const & get() const VULKAN_HPP_NOEXCEPT - { - return std::get::value>( - static_cast const &>( *this ) ); - } - - template - std::tuple get() VULKAN_HPP_NOEXCEPT - { - return std::tie( get(), get(), get()... ); - } - - template - std::tuple get() const VULKAN_HPP_NOEXCEPT - { - return std::tie( get(), get(), get()... ); - } - - template - typename std::enable_if< - std::is_same>::type>::value && - ( Which == 0 ), - bool>::type - isLinked() const VULKAN_HPP_NOEXCEPT - { - return true; - } - - template - typename std::enable_if< - !std::is_same>::type>::value || - ( Which != 0 ), - bool>::type - isLinked() const VULKAN_HPP_NOEXCEPT - { - static_assert( IsPartOfStructureChain::valid, - "Can't unlink Structure that's not part of this StructureChain!" ); - return isLinked( reinterpret_cast( &get() ) ); - } - - template - typename std::enable_if< - !std::is_same>::type>::value || - ( Which != 0 ), - void>::type - relink() VULKAN_HPP_NOEXCEPT - { - static_assert( IsPartOfStructureChain::valid, - "Can't relink Structure that's not part of this StructureChain!" ); - auto pNext = reinterpret_cast( &get() ); - VULKAN_HPP_ASSERT( !isLinked( pNext ) ); - auto & headElement = std::get<0>( static_cast &>( *this ) ); - pNext->pNext = reinterpret_cast( headElement.pNext ); - headElement.pNext = pNext; - } - - template - typename std::enable_if< - !std::is_same>::type>::value || - ( Which != 0 ), - void>::type - unlink() VULKAN_HPP_NOEXCEPT - { - static_assert( IsPartOfStructureChain::valid, - "Can't unlink Structure that's not part of this StructureChain!" ); - unlink( reinterpret_cast( &get() ) ); - } - - private: - template - struct ChainElementIndex : ChainElementIndex - {}; - - template - struct ChainElementIndex::value, void>::type, - First, - Types...> : ChainElementIndex - {}; - - template - struct ChainElementIndex::value, void>::type, - First, - Types...> : ChainElementIndex - {}; - - template - struct ChainElementIndex::value, void>::type, - First, - Types...> : std::integral_constant - {}; - - bool isLinked( VkBaseInStructure const * pNext ) const VULKAN_HPP_NOEXCEPT - { - VkBaseInStructure const * elementPtr = reinterpret_cast( - &std::get<0>( static_cast const &>( *this ) ) ); - while ( elementPtr ) - { - if ( elementPtr->pNext == pNext ) - { - return true; - } - elementPtr = elementPtr->pNext; - } - return false; - } - - template - typename std::enable_if::type link() VULKAN_HPP_NOEXCEPT - { - auto & x = std::get( static_cast &>( *this ) ); - x.pNext = &std::get( static_cast &>( *this ) ); - link(); - } - - template - typename std::enable_if::type link() VULKAN_HPP_NOEXCEPT - {} - - void link( void * dstBase, void const * srcBase, VkBaseOutStructure * dst, VkBaseInStructure const * src ) - { - while ( src->pNext ) - { - std::ptrdiff_t offset = - reinterpret_cast( src->pNext ) - reinterpret_cast( srcBase ); - dst->pNext = reinterpret_cast( reinterpret_cast( dstBase ) + offset ); - dst = dst->pNext; - src = src->pNext; - } - dst->pNext = nullptr; - } - - void unlink( VkBaseOutStructure const * pNext ) VULKAN_HPP_NOEXCEPT - { - VkBaseOutStructure * elementPtr = - reinterpret_cast( &std::get<0>( static_cast &>( *this ) ) ); - while ( elementPtr && ( elementPtr->pNext != pNext ) ) - { - elementPtr = elementPtr->pNext; - } - if ( elementPtr ) - { - elementPtr->pNext = pNext->pNext; - } - else - { - VULKAN_HPP_ASSERT( false ); // fires, if the ClassType member has already been unlinked ! - } - } - }; - -#if !defined( VULKAN_HPP_NO_SMART_HANDLE ) - template - class UniqueHandleTraits; - - template - class UniqueHandle : public UniqueHandleTraits::deleter - { - private: - using Deleter = typename UniqueHandleTraits::deleter; - - public: - using element_type = Type; - - UniqueHandle() : Deleter(), m_value() {} - - explicit UniqueHandle( Type const & value, Deleter const & deleter = Deleter() ) VULKAN_HPP_NOEXCEPT - : Deleter( deleter ) - , m_value( value ) - {} - - UniqueHandle( UniqueHandle const & ) = delete; - - UniqueHandle( UniqueHandle && other ) VULKAN_HPP_NOEXCEPT - : Deleter( std::move( static_cast( other ) ) ) - , m_value( other.release() ) - {} - - ~UniqueHandle() VULKAN_HPP_NOEXCEPT - { - if ( m_value ) - { - this->destroy( m_value ); - } - } - - UniqueHandle & operator=( UniqueHandle const & ) = delete; - - UniqueHandle & operator=( UniqueHandle && other ) VULKAN_HPP_NOEXCEPT - { - reset( other.release() ); - *static_cast( this ) = std::move( static_cast( other ) ); - return *this; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_value.operator bool(); - } - - Type const * operator->() const VULKAN_HPP_NOEXCEPT - { - return &m_value; - } - - Type * operator->() VULKAN_HPP_NOEXCEPT - { - return &m_value; - } - - Type const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_value; - } - - Type & operator*() VULKAN_HPP_NOEXCEPT - { - return m_value; - } - - const Type & get() const VULKAN_HPP_NOEXCEPT - { - return m_value; - } - - Type & get() VULKAN_HPP_NOEXCEPT - { - return m_value; - } - - void reset( Type const & value = Type() ) VULKAN_HPP_NOEXCEPT - { - if ( m_value != value ) - { - if ( m_value ) - { - this->destroy( m_value ); - } - m_value = value; - } - } - - Type release() VULKAN_HPP_NOEXCEPT - { - Type value = m_value; - m_value = nullptr; - return value; - } - - void swap( UniqueHandle & rhs ) VULKAN_HPP_NOEXCEPT - { - std::swap( m_value, rhs.m_value ); - std::swap( static_cast( *this ), static_cast( rhs ) ); - } - - private: - Type m_value; - }; - - template - VULKAN_HPP_INLINE std::vector - uniqueToRaw( std::vector const & handles ) - { - std::vector newBuffer( handles.size() ); - std::transform( - handles.begin(), handles.end(), newBuffer.begin(), []( UniqueType const & handle ) { return handle.get(); } ); - return newBuffer; - } - - template - VULKAN_HPP_INLINE void swap( UniqueHandle & lhs, - UniqueHandle & rhs ) VULKAN_HPP_NOEXCEPT - { - lhs.swap( rhs ); - } -#endif - - class DispatchLoaderBase - { - public: - DispatchLoaderBase() = default; - DispatchLoaderBase( std::nullptr_t ) -#if !defined( NDEBUG ) - : m_valid( false ) -#endif - {} - -#if !defined( NDEBUG ) - size_t getVkHeaderVersion() const - { - VULKAN_HPP_ASSERT( m_valid ); - return vkHeaderVersion; - } - - private: - size_t vkHeaderVersion = VK_HEADER_VERSION; - bool m_valid = true; -#endif - }; - -#if !defined( VK_NO_PROTOTYPES ) - class DispatchLoaderStatic : public DispatchLoaderBase - { - public: - //=== VK_VERSION_1_0 === - - VkResult vkCreateInstance( const VkInstanceCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkInstance * pInstance ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateInstance( pCreateInfo, pAllocator, pInstance ); - } - - void vkDestroyInstance( VkInstance instance, const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyInstance( instance, pAllocator ); - } - - VkResult vkEnumeratePhysicalDevices( VkInstance instance, - uint32_t * pPhysicalDeviceCount, - VkPhysicalDevice * pPhysicalDevices ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumeratePhysicalDevices( instance, pPhysicalDeviceCount, pPhysicalDevices ); - } - - void vkGetPhysicalDeviceFeatures( VkPhysicalDevice physicalDevice, - VkPhysicalDeviceFeatures * pFeatures ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFeatures( physicalDevice, pFeatures ); - } - - void vkGetPhysicalDeviceFormatProperties( VkPhysicalDevice physicalDevice, - VkFormat format, - VkFormatProperties * pFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFormatProperties( physicalDevice, format, pFormatProperties ); - } - - VkResult vkGetPhysicalDeviceImageFormatProperties( VkPhysicalDevice physicalDevice, - VkFormat format, - VkImageType type, - VkImageTiling tiling, - VkImageUsageFlags usage, - VkImageCreateFlags flags, - VkImageFormatProperties * pImageFormatProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceImageFormatProperties( - physicalDevice, format, type, tiling, usage, flags, pImageFormatProperties ); - } - - void vkGetPhysicalDeviceProperties( VkPhysicalDevice physicalDevice, - VkPhysicalDeviceProperties * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceProperties( physicalDevice, pProperties ); - } - - void vkGetPhysicalDeviceQueueFamilyProperties( VkPhysicalDevice physicalDevice, - uint32_t * pQueueFamilyPropertyCount, - VkQueueFamilyProperties * pQueueFamilyProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceQueueFamilyProperties( - physicalDevice, pQueueFamilyPropertyCount, pQueueFamilyProperties ); - } - - void vkGetPhysicalDeviceMemoryProperties( - VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties * pMemoryProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceMemoryProperties( physicalDevice, pMemoryProperties ); - } - - PFN_vkVoidFunction vkGetInstanceProcAddr( VkInstance instance, const char * pName ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetInstanceProcAddr( instance, pName ); - } - - PFN_vkVoidFunction vkGetDeviceProcAddr( VkDevice device, const char * pName ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceProcAddr( device, pName ); - } - - VkResult vkCreateDevice( VkPhysicalDevice physicalDevice, - const VkDeviceCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDevice * pDevice ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDevice( physicalDevice, pCreateInfo, pAllocator, pDevice ); - } - - void vkDestroyDevice( VkDevice device, const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDevice( device, pAllocator ); - } - - VkResult vkEnumerateInstanceExtensionProperties( const char * pLayerName, - uint32_t * pPropertyCount, - VkExtensionProperties * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumerateInstanceExtensionProperties( pLayerName, pPropertyCount, pProperties ); - } - - VkResult vkEnumerateDeviceExtensionProperties( VkPhysicalDevice physicalDevice, - const char * pLayerName, - uint32_t * pPropertyCount, - VkExtensionProperties * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumerateDeviceExtensionProperties( physicalDevice, pLayerName, pPropertyCount, pProperties ); - } - - VkResult vkEnumerateInstanceLayerProperties( uint32_t * pPropertyCount, - VkLayerProperties * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumerateInstanceLayerProperties( pPropertyCount, pProperties ); - } - - VkResult vkEnumerateDeviceLayerProperties( VkPhysicalDevice physicalDevice, - uint32_t * pPropertyCount, - VkLayerProperties * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumerateDeviceLayerProperties( physicalDevice, pPropertyCount, pProperties ); - } - - void vkGetDeviceQueue( VkDevice device, - uint32_t queueFamilyIndex, - uint32_t queueIndex, - VkQueue * pQueue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceQueue( device, queueFamilyIndex, queueIndex, pQueue ); - } - - VkResult vkQueueSubmit( VkQueue queue, - uint32_t submitCount, - const VkSubmitInfo * pSubmits, - VkFence fence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueSubmit( queue, submitCount, pSubmits, fence ); - } - - VkResult vkQueueWaitIdle( VkQueue queue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueWaitIdle( queue ); - } - - VkResult vkDeviceWaitIdle( VkDevice device ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDeviceWaitIdle( device ); - } - - VkResult vkAllocateMemory( VkDevice device, - const VkMemoryAllocateInfo * pAllocateInfo, - const VkAllocationCallbacks * pAllocator, - VkDeviceMemory * pMemory ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAllocateMemory( device, pAllocateInfo, pAllocator, pMemory ); - } - - void vkFreeMemory( VkDevice device, - VkDeviceMemory memory, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkFreeMemory( device, memory, pAllocator ); - } - - VkResult vkMapMemory( VkDevice device, - VkDeviceMemory memory, - VkDeviceSize offset, - VkDeviceSize size, - VkMemoryMapFlags flags, - void ** ppData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkMapMemory( device, memory, offset, size, flags, ppData ); - } - - void vkUnmapMemory( VkDevice device, VkDeviceMemory memory ) const VULKAN_HPP_NOEXCEPT - { - return ::vkUnmapMemory( device, memory ); - } - - VkResult vkFlushMappedMemoryRanges( VkDevice device, - uint32_t memoryRangeCount, - const VkMappedMemoryRange * pMemoryRanges ) const VULKAN_HPP_NOEXCEPT - { - return ::vkFlushMappedMemoryRanges( device, memoryRangeCount, pMemoryRanges ); - } - - VkResult vkInvalidateMappedMemoryRanges( VkDevice device, - uint32_t memoryRangeCount, - const VkMappedMemoryRange * pMemoryRanges ) const VULKAN_HPP_NOEXCEPT - { - return ::vkInvalidateMappedMemoryRanges( device, memoryRangeCount, pMemoryRanges ); - } - - void vkGetDeviceMemoryCommitment( VkDevice device, - VkDeviceMemory memory, - VkDeviceSize * pCommittedMemoryInBytes ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceMemoryCommitment( device, memory, pCommittedMemoryInBytes ); - } - - VkResult vkBindBufferMemory( VkDevice device, - VkBuffer buffer, - VkDeviceMemory memory, - VkDeviceSize memoryOffset ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindBufferMemory( device, buffer, memory, memoryOffset ); - } - - VkResult vkBindImageMemory( VkDevice device, - VkImage image, - VkDeviceMemory memory, - VkDeviceSize memoryOffset ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindImageMemory( device, image, memory, memoryOffset ); - } - - void vkGetBufferMemoryRequirements( VkDevice device, - VkBuffer buffer, - VkMemoryRequirements * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferMemoryRequirements( device, buffer, pMemoryRequirements ); - } - - void vkGetImageMemoryRequirements( VkDevice device, - VkImage image, - VkMemoryRequirements * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageMemoryRequirements( device, image, pMemoryRequirements ); - } - - void vkGetImageSparseMemoryRequirements( VkDevice device, - VkImage image, - uint32_t * pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements * pSparseMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageSparseMemoryRequirements( - device, image, pSparseMemoryRequirementCount, pSparseMemoryRequirements ); - } - - void vkGetPhysicalDeviceSparseImageFormatProperties( VkPhysicalDevice physicalDevice, - VkFormat format, - VkImageType type, - VkSampleCountFlagBits samples, - VkImageUsageFlags usage, - VkImageTiling tiling, - uint32_t * pPropertyCount, - VkSparseImageFormatProperties * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSparseImageFormatProperties( - physicalDevice, format, type, samples, usage, tiling, pPropertyCount, pProperties ); - } - - VkResult vkQueueBindSparse( VkQueue queue, - uint32_t bindInfoCount, - const VkBindSparseInfo * pBindInfo, - VkFence fence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueBindSparse( queue, bindInfoCount, pBindInfo, fence ); - } - - VkResult vkCreateFence( VkDevice device, - const VkFenceCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkFence * pFence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateFence( device, pCreateInfo, pAllocator, pFence ); - } - - void vkDestroyFence( VkDevice device, - VkFence fence, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyFence( device, fence, pAllocator ); - } - - VkResult vkResetFences( VkDevice device, uint32_t fenceCount, const VkFence * pFences ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetFences( device, fenceCount, pFences ); - } - - VkResult vkGetFenceStatus( VkDevice device, VkFence fence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetFenceStatus( device, fence ); - } - - VkResult vkWaitForFences( VkDevice device, - uint32_t fenceCount, - const VkFence * pFences, - VkBool32 waitAll, - uint64_t timeout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkWaitForFences( device, fenceCount, pFences, waitAll, timeout ); - } - - VkResult vkCreateSemaphore( VkDevice device, - const VkSemaphoreCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSemaphore * pSemaphore ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateSemaphore( device, pCreateInfo, pAllocator, pSemaphore ); - } - - void vkDestroySemaphore( VkDevice device, - VkSemaphore semaphore, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroySemaphore( device, semaphore, pAllocator ); - } - - VkResult vkCreateEvent( VkDevice device, - const VkEventCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkEvent * pEvent ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateEvent( device, pCreateInfo, pAllocator, pEvent ); - } - - void vkDestroyEvent( VkDevice device, - VkEvent event, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyEvent( device, event, pAllocator ); - } - - VkResult vkGetEventStatus( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetEventStatus( device, event ); - } - - VkResult vkSetEvent( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetEvent( device, event ); - } - - VkResult vkResetEvent( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetEvent( device, event ); - } - - VkResult vkCreateQueryPool( VkDevice device, - const VkQueryPoolCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkQueryPool * pQueryPool ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateQueryPool( device, pCreateInfo, pAllocator, pQueryPool ); - } - - void vkDestroyQueryPool( VkDevice device, - VkQueryPool queryPool, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyQueryPool( device, queryPool, pAllocator ); - } - - VkResult vkGetQueryPoolResults( VkDevice device, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - void * pData, - VkDeviceSize stride, - VkQueryResultFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetQueryPoolResults( device, queryPool, firstQuery, queryCount, dataSize, pData, stride, flags ); - } - - VkResult vkCreateBuffer( VkDevice device, - const VkBufferCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkBuffer * pBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateBuffer( device, pCreateInfo, pAllocator, pBuffer ); - } - - void vkDestroyBuffer( VkDevice device, - VkBuffer buffer, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyBuffer( device, buffer, pAllocator ); - } - - VkResult vkCreateBufferView( VkDevice device, - const VkBufferViewCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkBufferView * pView ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateBufferView( device, pCreateInfo, pAllocator, pView ); - } - - void vkDestroyBufferView( VkDevice device, - VkBufferView bufferView, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyBufferView( device, bufferView, pAllocator ); - } - - VkResult vkCreateImage( VkDevice device, - const VkImageCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkImage * pImage ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateImage( device, pCreateInfo, pAllocator, pImage ); - } - - void vkDestroyImage( VkDevice device, - VkImage image, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyImage( device, image, pAllocator ); - } - - void vkGetImageSubresourceLayout( VkDevice device, - VkImage image, - const VkImageSubresource * pSubresource, - VkSubresourceLayout * pLayout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageSubresourceLayout( device, image, pSubresource, pLayout ); - } - - VkResult vkCreateImageView( VkDevice device, - const VkImageViewCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkImageView * pView ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateImageView( device, pCreateInfo, pAllocator, pView ); - } - - void vkDestroyImageView( VkDevice device, - VkImageView imageView, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyImageView( device, imageView, pAllocator ); - } - - VkResult vkCreateShaderModule( VkDevice device, - const VkShaderModuleCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkShaderModule * pShaderModule ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateShaderModule( device, pCreateInfo, pAllocator, pShaderModule ); - } - - void vkDestroyShaderModule( VkDevice device, - VkShaderModule shaderModule, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyShaderModule( device, shaderModule, pAllocator ); - } - - VkResult vkCreatePipelineCache( VkDevice device, - const VkPipelineCacheCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkPipelineCache * pPipelineCache ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreatePipelineCache( device, pCreateInfo, pAllocator, pPipelineCache ); - } - - void vkDestroyPipelineCache( VkDevice device, - VkPipelineCache pipelineCache, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyPipelineCache( device, pipelineCache, pAllocator ); - } - - VkResult vkGetPipelineCacheData( VkDevice device, - VkPipelineCache pipelineCache, - size_t * pDataSize, - void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPipelineCacheData( device, pipelineCache, pDataSize, pData ); - } - - VkResult vkMergePipelineCaches( VkDevice device, - VkPipelineCache dstCache, - uint32_t srcCacheCount, - const VkPipelineCache * pSrcCaches ) const VULKAN_HPP_NOEXCEPT - { - return ::vkMergePipelineCaches( device, dstCache, srcCacheCount, pSrcCaches ); - } - - VkResult vkCreateGraphicsPipelines( VkDevice device, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkGraphicsPipelineCreateInfo * pCreateInfos, - const VkAllocationCallbacks * pAllocator, - VkPipeline * pPipelines ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateGraphicsPipelines( - device, pipelineCache, createInfoCount, pCreateInfos, pAllocator, pPipelines ); - } - - VkResult vkCreateComputePipelines( VkDevice device, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkComputePipelineCreateInfo * pCreateInfos, - const VkAllocationCallbacks * pAllocator, - VkPipeline * pPipelines ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateComputePipelines( device, pipelineCache, createInfoCount, pCreateInfos, pAllocator, pPipelines ); - } - - void vkDestroyPipeline( VkDevice device, - VkPipeline pipeline, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyPipeline( device, pipeline, pAllocator ); - } - - VkResult vkCreatePipelineLayout( VkDevice device, - const VkPipelineLayoutCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkPipelineLayout * pPipelineLayout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreatePipelineLayout( device, pCreateInfo, pAllocator, pPipelineLayout ); - } - - void vkDestroyPipelineLayout( VkDevice device, - VkPipelineLayout pipelineLayout, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyPipelineLayout( device, pipelineLayout, pAllocator ); - } - - VkResult vkCreateSampler( VkDevice device, - const VkSamplerCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSampler * pSampler ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateSampler( device, pCreateInfo, pAllocator, pSampler ); - } - - void vkDestroySampler( VkDevice device, - VkSampler sampler, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroySampler( device, sampler, pAllocator ); - } - - VkResult vkCreateDescriptorSetLayout( VkDevice device, - const VkDescriptorSetLayoutCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDescriptorSetLayout * pSetLayout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDescriptorSetLayout( device, pCreateInfo, pAllocator, pSetLayout ); - } - - void vkDestroyDescriptorSetLayout( VkDevice device, - VkDescriptorSetLayout descriptorSetLayout, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDescriptorSetLayout( device, descriptorSetLayout, pAllocator ); - } - - VkResult vkCreateDescriptorPool( VkDevice device, - const VkDescriptorPoolCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDescriptorPool * pDescriptorPool ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDescriptorPool( device, pCreateInfo, pAllocator, pDescriptorPool ); - } - - void vkDestroyDescriptorPool( VkDevice device, - VkDescriptorPool descriptorPool, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDescriptorPool( device, descriptorPool, pAllocator ); - } - - VkResult vkResetDescriptorPool( VkDevice device, - VkDescriptorPool descriptorPool, - VkDescriptorPoolResetFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetDescriptorPool( device, descriptorPool, flags ); - } - - VkResult vkAllocateDescriptorSets( VkDevice device, - const VkDescriptorSetAllocateInfo * pAllocateInfo, - VkDescriptorSet * pDescriptorSets ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAllocateDescriptorSets( device, pAllocateInfo, pDescriptorSets ); - } - - VkResult vkFreeDescriptorSets( VkDevice device, - VkDescriptorPool descriptorPool, - uint32_t descriptorSetCount, - const VkDescriptorSet * pDescriptorSets ) const VULKAN_HPP_NOEXCEPT - { - return ::vkFreeDescriptorSets( device, descriptorPool, descriptorSetCount, pDescriptorSets ); - } - - void vkUpdateDescriptorSets( VkDevice device, - uint32_t descriptorWriteCount, - const VkWriteDescriptorSet * pDescriptorWrites, - uint32_t descriptorCopyCount, - const VkCopyDescriptorSet * pDescriptorCopies ) const VULKAN_HPP_NOEXCEPT - { - return ::vkUpdateDescriptorSets( - device, descriptorWriteCount, pDescriptorWrites, descriptorCopyCount, pDescriptorCopies ); - } - - VkResult vkCreateFramebuffer( VkDevice device, - const VkFramebufferCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkFramebuffer * pFramebuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateFramebuffer( device, pCreateInfo, pAllocator, pFramebuffer ); - } - - void vkDestroyFramebuffer( VkDevice device, - VkFramebuffer framebuffer, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyFramebuffer( device, framebuffer, pAllocator ); - } - - VkResult vkCreateRenderPass( VkDevice device, - const VkRenderPassCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkRenderPass * pRenderPass ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateRenderPass( device, pCreateInfo, pAllocator, pRenderPass ); - } - - void vkDestroyRenderPass( VkDevice device, - VkRenderPass renderPass, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyRenderPass( device, renderPass, pAllocator ); - } - - void vkGetRenderAreaGranularity( VkDevice device, - VkRenderPass renderPass, - VkExtent2D * pGranularity ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetRenderAreaGranularity( device, renderPass, pGranularity ); - } - - VkResult vkCreateCommandPool( VkDevice device, - const VkCommandPoolCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkCommandPool * pCommandPool ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateCommandPool( device, pCreateInfo, pAllocator, pCommandPool ); - } - - void vkDestroyCommandPool( VkDevice device, - VkCommandPool commandPool, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyCommandPool( device, commandPool, pAllocator ); - } - - VkResult vkResetCommandPool( VkDevice device, - VkCommandPool commandPool, - VkCommandPoolResetFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetCommandPool( device, commandPool, flags ); - } - - VkResult vkAllocateCommandBuffers( VkDevice device, - const VkCommandBufferAllocateInfo * pAllocateInfo, - VkCommandBuffer * pCommandBuffers ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAllocateCommandBuffers( device, pAllocateInfo, pCommandBuffers ); - } - - void vkFreeCommandBuffers( VkDevice device, - VkCommandPool commandPool, - uint32_t commandBufferCount, - const VkCommandBuffer * pCommandBuffers ) const VULKAN_HPP_NOEXCEPT - { - return ::vkFreeCommandBuffers( device, commandPool, commandBufferCount, pCommandBuffers ); - } - - VkResult vkBeginCommandBuffer( VkCommandBuffer commandBuffer, - const VkCommandBufferBeginInfo * pBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBeginCommandBuffer( commandBuffer, pBeginInfo ); - } - - VkResult vkEndCommandBuffer( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEndCommandBuffer( commandBuffer ); - } - - VkResult vkResetCommandBuffer( VkCommandBuffer commandBuffer, - VkCommandBufferResetFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetCommandBuffer( commandBuffer, flags ); - } - - void vkCmdBindPipeline( VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipeline pipeline ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindPipeline( commandBuffer, pipelineBindPoint, pipeline ); - } - - void vkCmdSetViewport( VkCommandBuffer commandBuffer, - uint32_t firstViewport, - uint32_t viewportCount, - const VkViewport * pViewports ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetViewport( commandBuffer, firstViewport, viewportCount, pViewports ); - } - - void vkCmdSetScissor( VkCommandBuffer commandBuffer, - uint32_t firstScissor, - uint32_t scissorCount, - const VkRect2D * pScissors ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetScissor( commandBuffer, firstScissor, scissorCount, pScissors ); - } - - void vkCmdSetLineWidth( VkCommandBuffer commandBuffer, float lineWidth ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetLineWidth( commandBuffer, lineWidth ); - } - - void vkCmdSetDepthBias( VkCommandBuffer commandBuffer, - float depthBiasConstantFactor, - float depthBiasClamp, - float depthBiasSlopeFactor ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthBias( commandBuffer, depthBiasConstantFactor, depthBiasClamp, depthBiasSlopeFactor ); - } - - void vkCmdSetBlendConstants( VkCommandBuffer commandBuffer, - const float blendConstants[4] ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetBlendConstants( commandBuffer, blendConstants ); - } - - void vkCmdSetDepthBounds( VkCommandBuffer commandBuffer, - float minDepthBounds, - float maxDepthBounds ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthBounds( commandBuffer, minDepthBounds, maxDepthBounds ); - } - - void vkCmdSetStencilCompareMask( VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - uint32_t compareMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilCompareMask( commandBuffer, faceMask, compareMask ); - } - - void vkCmdSetStencilWriteMask( VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - uint32_t writeMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilWriteMask( commandBuffer, faceMask, writeMask ); - } - - void vkCmdSetStencilReference( VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - uint32_t reference ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilReference( commandBuffer, faceMask, reference ); - } - - void vkCmdBindDescriptorSets( VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipelineLayout layout, - uint32_t firstSet, - uint32_t descriptorSetCount, - const VkDescriptorSet * pDescriptorSets, - uint32_t dynamicOffsetCount, - const uint32_t * pDynamicOffsets ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindDescriptorSets( commandBuffer, - pipelineBindPoint, - layout, - firstSet, - descriptorSetCount, - pDescriptorSets, - dynamicOffsetCount, - pDynamicOffsets ); - } - - void vkCmdBindIndexBuffer( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkIndexType indexType ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindIndexBuffer( commandBuffer, buffer, offset, indexType ); - } - - void vkCmdBindVertexBuffers( VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer * pBuffers, - const VkDeviceSize * pOffsets ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindVertexBuffers( commandBuffer, firstBinding, bindingCount, pBuffers, pOffsets ); - } - - void vkCmdDraw( VkCommandBuffer commandBuffer, - uint32_t vertexCount, - uint32_t instanceCount, - uint32_t firstVertex, - uint32_t firstInstance ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDraw( commandBuffer, vertexCount, instanceCount, firstVertex, firstInstance ); - } - - void vkCmdDrawIndexed( VkCommandBuffer commandBuffer, - uint32_t indexCount, - uint32_t instanceCount, - uint32_t firstIndex, - int32_t vertexOffset, - uint32_t firstInstance ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndexed( commandBuffer, indexCount, instanceCount, firstIndex, vertexOffset, firstInstance ); - } - - void vkCmdDrawIndirect( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndirect( commandBuffer, buffer, offset, drawCount, stride ); - } - - void vkCmdDrawIndexedIndirect( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndexedIndirect( commandBuffer, buffer, offset, drawCount, stride ); - } - - void vkCmdDispatch( VkCommandBuffer commandBuffer, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDispatch( commandBuffer, groupCountX, groupCountY, groupCountZ ); - } - - void vkCmdDispatchIndirect( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDispatchIndirect( commandBuffer, buffer, offset ); - } - - void vkCmdCopyBuffer( VkCommandBuffer commandBuffer, - VkBuffer srcBuffer, - VkBuffer dstBuffer, - uint32_t regionCount, - const VkBufferCopy * pRegions ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyBuffer( commandBuffer, srcBuffer, dstBuffer, regionCount, pRegions ); - } - - void vkCmdCopyImage( VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkImageCopy * pRegions ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyImage( - commandBuffer, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions ); - } - - void vkCmdBlitImage( VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkImageBlit * pRegions, - VkFilter filter ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBlitImage( - commandBuffer, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions, filter ); - } - - void vkCmdCopyBufferToImage( VkCommandBuffer commandBuffer, - VkBuffer srcBuffer, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkBufferImageCopy * pRegions ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyBufferToImage( commandBuffer, srcBuffer, dstImage, dstImageLayout, regionCount, pRegions ); - } - - void vkCmdCopyImageToBuffer( VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkBuffer dstBuffer, - uint32_t regionCount, - const VkBufferImageCopy * pRegions ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyImageToBuffer( commandBuffer, srcImage, srcImageLayout, dstBuffer, regionCount, pRegions ); - } - - void vkCmdUpdateBuffer( VkCommandBuffer commandBuffer, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - VkDeviceSize dataSize, - const void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdUpdateBuffer( commandBuffer, dstBuffer, dstOffset, dataSize, pData ); - } - - void vkCmdFillBuffer( VkCommandBuffer commandBuffer, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - VkDeviceSize size, - uint32_t data ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdFillBuffer( commandBuffer, dstBuffer, dstOffset, size, data ); - } - - void vkCmdClearColorImage( VkCommandBuffer commandBuffer, - VkImage image, - VkImageLayout imageLayout, - const VkClearColorValue * pColor, - uint32_t rangeCount, - const VkImageSubresourceRange * pRanges ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdClearColorImage( commandBuffer, image, imageLayout, pColor, rangeCount, pRanges ); - } - - void vkCmdClearDepthStencilImage( VkCommandBuffer commandBuffer, - VkImage image, - VkImageLayout imageLayout, - const VkClearDepthStencilValue * pDepthStencil, - uint32_t rangeCount, - const VkImageSubresourceRange * pRanges ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdClearDepthStencilImage( commandBuffer, image, imageLayout, pDepthStencil, rangeCount, pRanges ); - } - - void vkCmdClearAttachments( VkCommandBuffer commandBuffer, - uint32_t attachmentCount, - const VkClearAttachment * pAttachments, - uint32_t rectCount, - const VkClearRect * pRects ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdClearAttachments( commandBuffer, attachmentCount, pAttachments, rectCount, pRects ); - } - - void vkCmdResolveImage( VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkImageResolve * pRegions ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResolveImage( - commandBuffer, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions ); - } - - void vkCmdSetEvent( VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags stageMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetEvent( commandBuffer, event, stageMask ); - } - - void vkCmdResetEvent( VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags stageMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResetEvent( commandBuffer, event, stageMask ); - } - - void vkCmdWaitEvents( VkCommandBuffer commandBuffer, - uint32_t eventCount, - const VkEvent * pEvents, - VkPipelineStageFlags srcStageMask, - VkPipelineStageFlags dstStageMask, - uint32_t memoryBarrierCount, - const VkMemoryBarrier * pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VkBufferMemoryBarrier * pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VkImageMemoryBarrier * pImageMemoryBarriers ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWaitEvents( commandBuffer, - eventCount, - pEvents, - srcStageMask, - dstStageMask, - memoryBarrierCount, - pMemoryBarriers, - bufferMemoryBarrierCount, - pBufferMemoryBarriers, - imageMemoryBarrierCount, - pImageMemoryBarriers ); - } - - void vkCmdPipelineBarrier( VkCommandBuffer commandBuffer, - VkPipelineStageFlags srcStageMask, - VkPipelineStageFlags dstStageMask, - VkDependencyFlags dependencyFlags, - uint32_t memoryBarrierCount, - const VkMemoryBarrier * pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VkBufferMemoryBarrier * pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VkImageMemoryBarrier * pImageMemoryBarriers ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPipelineBarrier( commandBuffer, - srcStageMask, - dstStageMask, - dependencyFlags, - memoryBarrierCount, - pMemoryBarriers, - bufferMemoryBarrierCount, - pBufferMemoryBarriers, - imageMemoryBarrierCount, - pImageMemoryBarriers ); - } - - void vkCmdBeginQuery( VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query, - VkQueryControlFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginQuery( commandBuffer, queryPool, query, flags ); - } - - void vkCmdEndQuery( VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndQuery( commandBuffer, queryPool, query ); - } - - void vkCmdResetQueryPool( VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResetQueryPool( commandBuffer, queryPool, firstQuery, queryCount ); - } - - void vkCmdWriteTimestamp( VkCommandBuffer commandBuffer, - VkPipelineStageFlagBits pipelineStage, - VkQueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteTimestamp( commandBuffer, pipelineStage, queryPool, query ); - } - - void vkCmdCopyQueryPoolResults( VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - VkDeviceSize stride, - VkQueryResultFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyQueryPoolResults( - commandBuffer, queryPool, firstQuery, queryCount, dstBuffer, dstOffset, stride, flags ); - } - - void vkCmdPushConstants( VkCommandBuffer commandBuffer, - VkPipelineLayout layout, - VkShaderStageFlags stageFlags, - uint32_t offset, - uint32_t size, - const void * pValues ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPushConstants( commandBuffer, layout, stageFlags, offset, size, pValues ); - } - - void vkCmdBeginRenderPass( VkCommandBuffer commandBuffer, - const VkRenderPassBeginInfo * pRenderPassBegin, - VkSubpassContents contents ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginRenderPass( commandBuffer, pRenderPassBegin, contents ); - } - - void vkCmdNextSubpass( VkCommandBuffer commandBuffer, VkSubpassContents contents ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdNextSubpass( commandBuffer, contents ); - } - - void vkCmdEndRenderPass( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndRenderPass( commandBuffer ); - } - - void vkCmdExecuteCommands( VkCommandBuffer commandBuffer, - uint32_t commandBufferCount, - const VkCommandBuffer * pCommandBuffers ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdExecuteCommands( commandBuffer, commandBufferCount, pCommandBuffers ); - } - - //=== VK_VERSION_1_1 === - - VkResult vkEnumerateInstanceVersion( uint32_t * pApiVersion ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumerateInstanceVersion( pApiVersion ); - } - - VkResult vkBindBufferMemory2( VkDevice device, - uint32_t bindInfoCount, - const VkBindBufferMemoryInfo * pBindInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindBufferMemory2( device, bindInfoCount, pBindInfos ); - } - - VkResult vkBindImageMemory2( VkDevice device, - uint32_t bindInfoCount, - const VkBindImageMemoryInfo * pBindInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindImageMemory2( device, bindInfoCount, pBindInfos ); - } - - void vkGetDeviceGroupPeerMemoryFeatures( VkDevice device, - uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VkPeerMemoryFeatureFlags * pPeerMemoryFeatures ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceGroupPeerMemoryFeatures( - device, heapIndex, localDeviceIndex, remoteDeviceIndex, pPeerMemoryFeatures ); - } - - void vkCmdSetDeviceMask( VkCommandBuffer commandBuffer, uint32_t deviceMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDeviceMask( commandBuffer, deviceMask ); - } - - void vkCmdDispatchBase( VkCommandBuffer commandBuffer, - uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDispatchBase( - commandBuffer, baseGroupX, baseGroupY, baseGroupZ, groupCountX, groupCountY, groupCountZ ); - } - - VkResult vkEnumeratePhysicalDeviceGroups( VkInstance instance, - uint32_t * pPhysicalDeviceGroupCount, - VkPhysicalDeviceGroupProperties * pPhysicalDeviceGroupProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkEnumeratePhysicalDeviceGroups( instance, pPhysicalDeviceGroupCount, pPhysicalDeviceGroupProperties ); - } - - void vkGetImageMemoryRequirements2( VkDevice device, - const VkImageMemoryRequirementsInfo2 * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageMemoryRequirements2( device, pInfo, pMemoryRequirements ); - } - - void vkGetBufferMemoryRequirements2( VkDevice device, - const VkBufferMemoryRequirementsInfo2 * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferMemoryRequirements2( device, pInfo, pMemoryRequirements ); - } - - void vkGetImageSparseMemoryRequirements2( VkDevice device, - const VkImageSparseMemoryRequirementsInfo2 * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2 * pSparseMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageSparseMemoryRequirements2( - device, pInfo, pSparseMemoryRequirementCount, pSparseMemoryRequirements ); - } - - void vkGetPhysicalDeviceFeatures2( VkPhysicalDevice physicalDevice, - VkPhysicalDeviceFeatures2 * pFeatures ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFeatures2( physicalDevice, pFeatures ); - } - - void vkGetPhysicalDeviceProperties2( VkPhysicalDevice physicalDevice, - VkPhysicalDeviceProperties2 * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceProperties2( physicalDevice, pProperties ); - } - - void vkGetPhysicalDeviceFormatProperties2( VkPhysicalDevice physicalDevice, - VkFormat format, - VkFormatProperties2 * pFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFormatProperties2( physicalDevice, format, pFormatProperties ); - } - - VkResult vkGetPhysicalDeviceImageFormatProperties2( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceImageFormatInfo2 * pImageFormatInfo, - VkImageFormatProperties2 * pImageFormatProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceImageFormatProperties2( physicalDevice, pImageFormatInfo, pImageFormatProperties ); - } - - void vkGetPhysicalDeviceQueueFamilyProperties2( VkPhysicalDevice physicalDevice, - uint32_t * pQueueFamilyPropertyCount, - VkQueueFamilyProperties2 * pQueueFamilyProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceQueueFamilyProperties2( - physicalDevice, pQueueFamilyPropertyCount, pQueueFamilyProperties ); - } - - void vkGetPhysicalDeviceMemoryProperties2( - VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2 * pMemoryProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceMemoryProperties2( physicalDevice, pMemoryProperties ); - } - - void vkGetPhysicalDeviceSparseImageFormatProperties2( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSparseImageFormatInfo2 * pFormatInfo, - uint32_t * pPropertyCount, - VkSparseImageFormatProperties2 * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSparseImageFormatProperties2( - physicalDevice, pFormatInfo, pPropertyCount, pProperties ); - } - - void vkTrimCommandPool( VkDevice device, - VkCommandPool commandPool, - VkCommandPoolTrimFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkTrimCommandPool( device, commandPool, flags ); - } - - void vkGetDeviceQueue2( VkDevice device, - const VkDeviceQueueInfo2 * pQueueInfo, - VkQueue * pQueue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceQueue2( device, pQueueInfo, pQueue ); - } - - VkResult vkCreateSamplerYcbcrConversion( VkDevice device, - const VkSamplerYcbcrConversionCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSamplerYcbcrConversion * pYcbcrConversion ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateSamplerYcbcrConversion( device, pCreateInfo, pAllocator, pYcbcrConversion ); - } - - void vkDestroySamplerYcbcrConversion( VkDevice device, - VkSamplerYcbcrConversion ycbcrConversion, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroySamplerYcbcrConversion( device, ycbcrConversion, pAllocator ); - } - - VkResult vkCreateDescriptorUpdateTemplate( VkDevice device, - const VkDescriptorUpdateTemplateCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDescriptorUpdateTemplate * pDescriptorUpdateTemplate ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDescriptorUpdateTemplate( device, pCreateInfo, pAllocator, pDescriptorUpdateTemplate ); - } - - void vkDestroyDescriptorUpdateTemplate( VkDevice device, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDescriptorUpdateTemplate( device, descriptorUpdateTemplate, pAllocator ); - } - - void vkUpdateDescriptorSetWithTemplate( VkDevice device, - VkDescriptorSet descriptorSet, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkUpdateDescriptorSetWithTemplate( device, descriptorSet, descriptorUpdateTemplate, pData ); - } - - void vkGetPhysicalDeviceExternalBufferProperties( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalBufferInfo * pExternalBufferInfo, - VkExternalBufferProperties * pExternalBufferProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalBufferProperties( - physicalDevice, pExternalBufferInfo, pExternalBufferProperties ); - } - - void vkGetPhysicalDeviceExternalFenceProperties( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalFenceInfo * pExternalFenceInfo, - VkExternalFenceProperties * pExternalFenceProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalFenceProperties( - physicalDevice, pExternalFenceInfo, pExternalFenceProperties ); - } - - void vkGetPhysicalDeviceExternalSemaphoreProperties( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalSemaphoreInfo * pExternalSemaphoreInfo, - VkExternalSemaphoreProperties * pExternalSemaphoreProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalSemaphoreProperties( - physicalDevice, pExternalSemaphoreInfo, pExternalSemaphoreProperties ); - } - - void vkGetDescriptorSetLayoutSupport( VkDevice device, - const VkDescriptorSetLayoutCreateInfo * pCreateInfo, - VkDescriptorSetLayoutSupport * pSupport ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDescriptorSetLayoutSupport( device, pCreateInfo, pSupport ); - } - - //=== VK_VERSION_1_2 === - - void vkCmdDrawIndirectCount( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndirectCount( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - void vkCmdDrawIndexedIndirectCount( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndexedIndirectCount( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - VkResult vkCreateRenderPass2( VkDevice device, - const VkRenderPassCreateInfo2 * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkRenderPass * pRenderPass ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateRenderPass2( device, pCreateInfo, pAllocator, pRenderPass ); - } - - void vkCmdBeginRenderPass2( VkCommandBuffer commandBuffer, - const VkRenderPassBeginInfo * pRenderPassBegin, - const VkSubpassBeginInfo * pSubpassBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginRenderPass2( commandBuffer, pRenderPassBegin, pSubpassBeginInfo ); - } - - void vkCmdNextSubpass2( VkCommandBuffer commandBuffer, - const VkSubpassBeginInfo * pSubpassBeginInfo, - const VkSubpassEndInfo * pSubpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdNextSubpass2( commandBuffer, pSubpassBeginInfo, pSubpassEndInfo ); - } - - void vkCmdEndRenderPass2( VkCommandBuffer commandBuffer, - const VkSubpassEndInfo * pSubpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndRenderPass2( commandBuffer, pSubpassEndInfo ); - } - - void vkResetQueryPool( VkDevice device, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetQueryPool( device, queryPool, firstQuery, queryCount ); - } - - VkResult - vkGetSemaphoreCounterValue( VkDevice device, VkSemaphore semaphore, uint64_t * pValue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSemaphoreCounterValue( device, semaphore, pValue ); - } - - VkResult vkWaitSemaphores( VkDevice device, - const VkSemaphoreWaitInfo * pWaitInfo, - uint64_t timeout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkWaitSemaphores( device, pWaitInfo, timeout ); - } - - VkResult vkSignalSemaphore( VkDevice device, const VkSemaphoreSignalInfo * pSignalInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSignalSemaphore( device, pSignalInfo ); - } - - VkDeviceAddress vkGetBufferDeviceAddress( VkDevice device, - const VkBufferDeviceAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferDeviceAddress( device, pInfo ); - } - - uint64_t vkGetBufferOpaqueCaptureAddress( VkDevice device, - const VkBufferDeviceAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferOpaqueCaptureAddress( device, pInfo ); - } - - uint64_t vkGetDeviceMemoryOpaqueCaptureAddress( - VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceMemoryOpaqueCaptureAddress( device, pInfo ); - } - - //=== VK_VERSION_1_3 === - - VkResult - vkGetPhysicalDeviceToolProperties( VkPhysicalDevice physicalDevice, - uint32_t * pToolCount, - VkPhysicalDeviceToolProperties * pToolProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceToolProperties( physicalDevice, pToolCount, pToolProperties ); - } - - VkResult vkCreatePrivateDataSlot( VkDevice device, - const VkPrivateDataSlotCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkPrivateDataSlot * pPrivateDataSlot ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreatePrivateDataSlot( device, pCreateInfo, pAllocator, pPrivateDataSlot ); - } - - void vkDestroyPrivateDataSlot( VkDevice device, - VkPrivateDataSlot privateDataSlot, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyPrivateDataSlot( device, privateDataSlot, pAllocator ); - } - - VkResult vkSetPrivateData( VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t data ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetPrivateData( device, objectType, objectHandle, privateDataSlot, data ); - } - - void vkGetPrivateData( VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPrivateData( device, objectType, objectHandle, privateDataSlot, pData ); - } - - void vkCmdSetEvent2( VkCommandBuffer commandBuffer, - VkEvent event, - const VkDependencyInfo * pDependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetEvent2( commandBuffer, event, pDependencyInfo ); - } - - void vkCmdResetEvent2( VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags2 stageMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResetEvent2( commandBuffer, event, stageMask ); - } - - void vkCmdWaitEvents2( VkCommandBuffer commandBuffer, - uint32_t eventCount, - const VkEvent * pEvents, - const VkDependencyInfo * pDependencyInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWaitEvents2( commandBuffer, eventCount, pEvents, pDependencyInfos ); - } - - void vkCmdPipelineBarrier2( VkCommandBuffer commandBuffer, - const VkDependencyInfo * pDependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPipelineBarrier2( commandBuffer, pDependencyInfo ); - } - - void vkCmdWriteTimestamp2( VkCommandBuffer commandBuffer, - VkPipelineStageFlags2 stage, - VkQueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteTimestamp2( commandBuffer, stage, queryPool, query ); - } - - VkResult vkQueueSubmit2( VkQueue queue, - uint32_t submitCount, - const VkSubmitInfo2 * pSubmits, - VkFence fence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueSubmit2( queue, submitCount, pSubmits, fence ); - } - - void vkCmdCopyBuffer2( VkCommandBuffer commandBuffer, - const VkCopyBufferInfo2 * pCopyBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyBuffer2( commandBuffer, pCopyBufferInfo ); - } - - void vkCmdCopyImage2( VkCommandBuffer commandBuffer, - const VkCopyImageInfo2 * pCopyImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyImage2( commandBuffer, pCopyImageInfo ); - } - - void vkCmdCopyBufferToImage2( VkCommandBuffer commandBuffer, - const VkCopyBufferToImageInfo2 * pCopyBufferToImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyBufferToImage2( commandBuffer, pCopyBufferToImageInfo ); - } - - void vkCmdCopyImageToBuffer2( VkCommandBuffer commandBuffer, - const VkCopyImageToBufferInfo2 * pCopyImageToBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyImageToBuffer2( commandBuffer, pCopyImageToBufferInfo ); - } - - void vkCmdBlitImage2( VkCommandBuffer commandBuffer, - const VkBlitImageInfo2 * pBlitImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBlitImage2( commandBuffer, pBlitImageInfo ); - } - - void vkCmdResolveImage2( VkCommandBuffer commandBuffer, - const VkResolveImageInfo2 * pResolveImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResolveImage2( commandBuffer, pResolveImageInfo ); - } - - void vkCmdBeginRendering( VkCommandBuffer commandBuffer, - const VkRenderingInfo * pRenderingInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginRendering( commandBuffer, pRenderingInfo ); - } - - void vkCmdEndRendering( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndRendering( commandBuffer ); - } - - void vkCmdSetCullMode( VkCommandBuffer commandBuffer, VkCullModeFlags cullMode ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetCullMode( commandBuffer, cullMode ); - } - - void vkCmdSetFrontFace( VkCommandBuffer commandBuffer, VkFrontFace frontFace ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetFrontFace( commandBuffer, frontFace ); - } - - void vkCmdSetPrimitiveTopology( VkCommandBuffer commandBuffer, - VkPrimitiveTopology primitiveTopology ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPrimitiveTopology( commandBuffer, primitiveTopology ); - } - - void vkCmdSetViewportWithCount( VkCommandBuffer commandBuffer, - uint32_t viewportCount, - const VkViewport * pViewports ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetViewportWithCount( commandBuffer, viewportCount, pViewports ); - } - - void vkCmdSetScissorWithCount( VkCommandBuffer commandBuffer, - uint32_t scissorCount, - const VkRect2D * pScissors ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetScissorWithCount( commandBuffer, scissorCount, pScissors ); - } - - void vkCmdBindVertexBuffers2( VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer * pBuffers, - const VkDeviceSize * pOffsets, - const VkDeviceSize * pSizes, - const VkDeviceSize * pStrides ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindVertexBuffers2( - commandBuffer, firstBinding, bindingCount, pBuffers, pOffsets, pSizes, pStrides ); - } - - void vkCmdSetDepthTestEnable( VkCommandBuffer commandBuffer, VkBool32 depthTestEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthTestEnable( commandBuffer, depthTestEnable ); - } - - void vkCmdSetDepthWriteEnable( VkCommandBuffer commandBuffer, VkBool32 depthWriteEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthWriteEnable( commandBuffer, depthWriteEnable ); - } - - void vkCmdSetDepthCompareOp( VkCommandBuffer commandBuffer, VkCompareOp depthCompareOp ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthCompareOp( commandBuffer, depthCompareOp ); - } - - void vkCmdSetDepthBoundsTestEnable( VkCommandBuffer commandBuffer, - VkBool32 depthBoundsTestEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthBoundsTestEnable( commandBuffer, depthBoundsTestEnable ); - } - - void vkCmdSetStencilTestEnable( VkCommandBuffer commandBuffer, - VkBool32 stencilTestEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilTestEnable( commandBuffer, stencilTestEnable ); - } - - void vkCmdSetStencilOp( VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - VkStencilOp failOp, - VkStencilOp passOp, - VkStencilOp depthFailOp, - VkCompareOp compareOp ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilOp( commandBuffer, faceMask, failOp, passOp, depthFailOp, compareOp ); - } - - void vkCmdSetRasterizerDiscardEnable( VkCommandBuffer commandBuffer, - VkBool32 rasterizerDiscardEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetRasterizerDiscardEnable( commandBuffer, rasterizerDiscardEnable ); - } - - void vkCmdSetDepthBiasEnable( VkCommandBuffer commandBuffer, VkBool32 depthBiasEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthBiasEnable( commandBuffer, depthBiasEnable ); - } - - void vkCmdSetPrimitiveRestartEnable( VkCommandBuffer commandBuffer, - VkBool32 primitiveRestartEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPrimitiveRestartEnable( commandBuffer, primitiveRestartEnable ); - } - - void vkGetDeviceBufferMemoryRequirements( VkDevice device, - const VkDeviceBufferMemoryRequirements * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceBufferMemoryRequirements( device, pInfo, pMemoryRequirements ); - } - - void vkGetDeviceImageMemoryRequirements( VkDevice device, - const VkDeviceImageMemoryRequirements * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceImageMemoryRequirements( device, pInfo, pMemoryRequirements ); - } - - void vkGetDeviceImageSparseMemoryRequirements( VkDevice device, - const VkDeviceImageMemoryRequirements * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2 * pSparseMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceImageSparseMemoryRequirements( - device, pInfo, pSparseMemoryRequirementCount, pSparseMemoryRequirements ); - } - - //=== VK_KHR_surface === - - void vkDestroySurfaceKHR( VkInstance instance, - VkSurfaceKHR surface, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroySurfaceKHR( instance, surface, pAllocator ); - } - - VkResult vkGetPhysicalDeviceSurfaceSupportKHR( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - VkSurfaceKHR surface, - VkBool32 * pSupported ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfaceSupportKHR( physicalDevice, queueFamilyIndex, surface, pSupported ); - } - - VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR( VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - VkSurfaceCapabilitiesKHR * pSurfaceCapabilities ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfaceCapabilitiesKHR( physicalDevice, surface, pSurfaceCapabilities ); - } - - VkResult vkGetPhysicalDeviceSurfaceFormatsKHR( VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - uint32_t * pSurfaceFormatCount, - VkSurfaceFormatKHR * pSurfaceFormats ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfaceFormatsKHR( physicalDevice, surface, pSurfaceFormatCount, pSurfaceFormats ); - } - - VkResult vkGetPhysicalDeviceSurfacePresentModesKHR( VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - uint32_t * pPresentModeCount, - VkPresentModeKHR * pPresentModes ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfacePresentModesKHR( physicalDevice, surface, pPresentModeCount, pPresentModes ); - } - - //=== VK_KHR_swapchain === - - VkResult vkCreateSwapchainKHR( VkDevice device, - const VkSwapchainCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSwapchainKHR * pSwapchain ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateSwapchainKHR( device, pCreateInfo, pAllocator, pSwapchain ); - } - - void vkDestroySwapchainKHR( VkDevice device, - VkSwapchainKHR swapchain, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroySwapchainKHR( device, swapchain, pAllocator ); - } - - VkResult vkGetSwapchainImagesKHR( VkDevice device, - VkSwapchainKHR swapchain, - uint32_t * pSwapchainImageCount, - VkImage * pSwapchainImages ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSwapchainImagesKHR( device, swapchain, pSwapchainImageCount, pSwapchainImages ); - } - - VkResult vkAcquireNextImageKHR( VkDevice device, - VkSwapchainKHR swapchain, - uint64_t timeout, - VkSemaphore semaphore, - VkFence fence, - uint32_t * pImageIndex ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireNextImageKHR( device, swapchain, timeout, semaphore, fence, pImageIndex ); - } - - VkResult vkQueuePresentKHR( VkQueue queue, const VkPresentInfoKHR * pPresentInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueuePresentKHR( queue, pPresentInfo ); - } - - VkResult vkGetDeviceGroupPresentCapabilitiesKHR( - VkDevice device, VkDeviceGroupPresentCapabilitiesKHR * pDeviceGroupPresentCapabilities ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceGroupPresentCapabilitiesKHR( device, pDeviceGroupPresentCapabilities ); - } - - VkResult vkGetDeviceGroupSurfacePresentModesKHR( - VkDevice device, VkSurfaceKHR surface, VkDeviceGroupPresentModeFlagsKHR * pModes ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceGroupSurfacePresentModesKHR( device, surface, pModes ); - } - - VkResult vkGetPhysicalDevicePresentRectanglesKHR( VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - uint32_t * pRectCount, - VkRect2D * pRects ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDevicePresentRectanglesKHR( physicalDevice, surface, pRectCount, pRects ); - } - - VkResult vkAcquireNextImage2KHR( VkDevice device, - const VkAcquireNextImageInfoKHR * pAcquireInfo, - uint32_t * pImageIndex ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireNextImage2KHR( device, pAcquireInfo, pImageIndex ); - } - - //=== VK_KHR_display === - - VkResult vkGetPhysicalDeviceDisplayPropertiesKHR( VkPhysicalDevice physicalDevice, - uint32_t * pPropertyCount, - VkDisplayPropertiesKHR * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceDisplayPropertiesKHR( physicalDevice, pPropertyCount, pProperties ); - } - - VkResult vkGetPhysicalDeviceDisplayPlanePropertiesKHR( VkPhysicalDevice physicalDevice, - uint32_t * pPropertyCount, - VkDisplayPlanePropertiesKHR * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceDisplayPlanePropertiesKHR( physicalDevice, pPropertyCount, pProperties ); - } - - VkResult vkGetDisplayPlaneSupportedDisplaysKHR( VkPhysicalDevice physicalDevice, - uint32_t planeIndex, - uint32_t * pDisplayCount, - VkDisplayKHR * pDisplays ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDisplayPlaneSupportedDisplaysKHR( physicalDevice, planeIndex, pDisplayCount, pDisplays ); - } - - VkResult vkGetDisplayModePropertiesKHR( VkPhysicalDevice physicalDevice, - VkDisplayKHR display, - uint32_t * pPropertyCount, - VkDisplayModePropertiesKHR * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDisplayModePropertiesKHR( physicalDevice, display, pPropertyCount, pProperties ); - } - - VkResult vkCreateDisplayModeKHR( VkPhysicalDevice physicalDevice, - VkDisplayKHR display, - const VkDisplayModeCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDisplayModeKHR * pMode ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDisplayModeKHR( physicalDevice, display, pCreateInfo, pAllocator, pMode ); - } - - VkResult vkGetDisplayPlaneCapabilitiesKHR( VkPhysicalDevice physicalDevice, - VkDisplayModeKHR mode, - uint32_t planeIndex, - VkDisplayPlaneCapabilitiesKHR * pCapabilities ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDisplayPlaneCapabilitiesKHR( physicalDevice, mode, planeIndex, pCapabilities ); - } - - VkResult vkCreateDisplayPlaneSurfaceKHR( VkInstance instance, - const VkDisplaySurfaceCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDisplayPlaneSurfaceKHR( instance, pCreateInfo, pAllocator, pSurface ); - } - - //=== VK_KHR_display_swapchain === - - VkResult vkCreateSharedSwapchainsKHR( VkDevice device, - uint32_t swapchainCount, - const VkSwapchainCreateInfoKHR * pCreateInfos, - const VkAllocationCallbacks * pAllocator, - VkSwapchainKHR * pSwapchains ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateSharedSwapchainsKHR( device, swapchainCount, pCreateInfos, pAllocator, pSwapchains ); - } - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - VkResult vkCreateXlibSurfaceKHR( VkInstance instance, - const VkXlibSurfaceCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateXlibSurfaceKHR( instance, pCreateInfo, pAllocator, pSurface ); - } - - VkBool32 vkGetPhysicalDeviceXlibPresentationSupportKHR( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - Display * dpy, - VisualID visualID ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceXlibPresentationSupportKHR( physicalDevice, queueFamilyIndex, dpy, visualID ); - } -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - VkResult vkCreateXcbSurfaceKHR( VkInstance instance, - const VkXcbSurfaceCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateXcbSurfaceKHR( instance, pCreateInfo, pAllocator, pSurface ); - } - - VkBool32 vkGetPhysicalDeviceXcbPresentationSupportKHR( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - xcb_connection_t * connection, - xcb_visualid_t visual_id ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceXcbPresentationSupportKHR( physicalDevice, queueFamilyIndex, connection, visual_id ); - } -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - VkResult vkCreateWaylandSurfaceKHR( VkInstance instance, - const VkWaylandSurfaceCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateWaylandSurfaceKHR( instance, pCreateInfo, pAllocator, pSurface ); - } - - VkBool32 vkGetPhysicalDeviceWaylandPresentationSupportKHR( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - struct wl_display * display ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceWaylandPresentationSupportKHR( physicalDevice, queueFamilyIndex, display ); - } -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - VkResult vkCreateAndroidSurfaceKHR( VkInstance instance, - const VkAndroidSurfaceCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateAndroidSurfaceKHR( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - VkResult vkCreateWin32SurfaceKHR( VkInstance instance, - const VkWin32SurfaceCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateWin32SurfaceKHR( instance, pCreateInfo, pAllocator, pSurface ); - } - - VkBool32 vkGetPhysicalDeviceWin32PresentationSupportKHR( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceWin32PresentationSupportKHR( physicalDevice, queueFamilyIndex ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - VkResult vkCreateDebugReportCallbackEXT( VkInstance instance, - const VkDebugReportCallbackCreateInfoEXT * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDebugReportCallbackEXT * pCallback ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDebugReportCallbackEXT( instance, pCreateInfo, pAllocator, pCallback ); - } - - void vkDestroyDebugReportCallbackEXT( VkInstance instance, - VkDebugReportCallbackEXT callback, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDebugReportCallbackEXT( instance, callback, pAllocator ); - } - - void vkDebugReportMessageEXT( VkInstance instance, - VkDebugReportFlagsEXT flags, - VkDebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const char * pLayerPrefix, - const char * pMessage ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDebugReportMessageEXT( - instance, flags, objectType, object, location, messageCode, pLayerPrefix, pMessage ); - } - - //=== VK_EXT_debug_marker === - - VkResult vkDebugMarkerSetObjectTagEXT( VkDevice device, - const VkDebugMarkerObjectTagInfoEXT * pTagInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDebugMarkerSetObjectTagEXT( device, pTagInfo ); - } - - VkResult vkDebugMarkerSetObjectNameEXT( VkDevice device, - const VkDebugMarkerObjectNameInfoEXT * pNameInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDebugMarkerSetObjectNameEXT( device, pNameInfo ); - } - - void vkCmdDebugMarkerBeginEXT( VkCommandBuffer commandBuffer, - const VkDebugMarkerMarkerInfoEXT * pMarkerInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDebugMarkerBeginEXT( commandBuffer, pMarkerInfo ); - } - - void vkCmdDebugMarkerEndEXT( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDebugMarkerEndEXT( commandBuffer ); - } - - void vkCmdDebugMarkerInsertEXT( VkCommandBuffer commandBuffer, - const VkDebugMarkerMarkerInfoEXT * pMarkerInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDebugMarkerInsertEXT( commandBuffer, pMarkerInfo ); - } - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - VkResult vkGetPhysicalDeviceVideoCapabilitiesKHR( VkPhysicalDevice physicalDevice, - const VkVideoProfileKHR * pVideoProfile, - VkVideoCapabilitiesKHR * pCapabilities ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceVideoCapabilitiesKHR( physicalDevice, pVideoProfile, pCapabilities ); - } - - VkResult vkGetPhysicalDeviceVideoFormatPropertiesKHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceVideoFormatInfoKHR * pVideoFormatInfo, - uint32_t * pVideoFormatPropertyCount, - VkVideoFormatPropertiesKHR * pVideoFormatProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceVideoFormatPropertiesKHR( - physicalDevice, pVideoFormatInfo, pVideoFormatPropertyCount, pVideoFormatProperties ); - } - - VkResult vkCreateVideoSessionKHR( VkDevice device, - const VkVideoSessionCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkVideoSessionKHR * pVideoSession ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateVideoSessionKHR( device, pCreateInfo, pAllocator, pVideoSession ); - } - - void vkDestroyVideoSessionKHR( VkDevice device, - VkVideoSessionKHR videoSession, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyVideoSessionKHR( device, videoSession, pAllocator ); - } - - VkResult vkGetVideoSessionMemoryRequirementsKHR( - VkDevice device, - VkVideoSessionKHR videoSession, - uint32_t * pVideoSessionMemoryRequirementsCount, - VkVideoGetMemoryPropertiesKHR * pVideoSessionMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetVideoSessionMemoryRequirementsKHR( - device, videoSession, pVideoSessionMemoryRequirementsCount, pVideoSessionMemoryRequirements ); - } - - VkResult - vkBindVideoSessionMemoryKHR( VkDevice device, - VkVideoSessionKHR videoSession, - uint32_t videoSessionBindMemoryCount, - const VkVideoBindMemoryKHR * pVideoSessionBindMemories ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindVideoSessionMemoryKHR( - device, videoSession, videoSessionBindMemoryCount, pVideoSessionBindMemories ); - } - - VkResult vkCreateVideoSessionParametersKHR( VkDevice device, - const VkVideoSessionParametersCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkVideoSessionParametersKHR * pVideoSessionParameters ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCreateVideoSessionParametersKHR( device, pCreateInfo, pAllocator, pVideoSessionParameters ); - } - - VkResult vkUpdateVideoSessionParametersKHR( VkDevice device, - VkVideoSessionParametersKHR videoSessionParameters, - const VkVideoSessionParametersUpdateInfoKHR * pUpdateInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkUpdateVideoSessionParametersKHR( device, videoSessionParameters, pUpdateInfo ); - } - - void vkDestroyVideoSessionParametersKHR( VkDevice device, - VkVideoSessionParametersKHR videoSessionParameters, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyVideoSessionParametersKHR( device, videoSessionParameters, pAllocator ); - } - - void vkCmdBeginVideoCodingKHR( VkCommandBuffer commandBuffer, - const VkVideoBeginCodingInfoKHR * pBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginVideoCodingKHR( commandBuffer, pBeginInfo ); - } - - void vkCmdEndVideoCodingKHR( VkCommandBuffer commandBuffer, - const VkVideoEndCodingInfoKHR * pEndCodingInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndVideoCodingKHR( commandBuffer, pEndCodingInfo ); - } - - void vkCmdControlVideoCodingKHR( VkCommandBuffer commandBuffer, - const VkVideoCodingControlInfoKHR * pCodingControlInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdControlVideoCodingKHR( commandBuffer, pCodingControlInfo ); - } -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - void vkCmdDecodeVideoKHR( VkCommandBuffer commandBuffer, - const VkVideoDecodeInfoKHR * pFrameInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDecodeVideoKHR( commandBuffer, pFrameInfo ); - } -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - void vkCmdBindTransformFeedbackBuffersEXT( VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer * pBuffers, - const VkDeviceSize * pOffsets, - const VkDeviceSize * pSizes ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindTransformFeedbackBuffersEXT( - commandBuffer, firstBinding, bindingCount, pBuffers, pOffsets, pSizes ); - } - - void vkCmdBeginTransformFeedbackEXT( VkCommandBuffer commandBuffer, - uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VkBuffer * pCounterBuffers, - const VkDeviceSize * pCounterBufferOffsets ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginTransformFeedbackEXT( - commandBuffer, firstCounterBuffer, counterBufferCount, pCounterBuffers, pCounterBufferOffsets ); - } - - void vkCmdEndTransformFeedbackEXT( VkCommandBuffer commandBuffer, - uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VkBuffer * pCounterBuffers, - const VkDeviceSize * pCounterBufferOffsets ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndTransformFeedbackEXT( - commandBuffer, firstCounterBuffer, counterBufferCount, pCounterBuffers, pCounterBufferOffsets ); - } - - void vkCmdBeginQueryIndexedEXT( VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query, - VkQueryControlFlags flags, - uint32_t index ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginQueryIndexedEXT( commandBuffer, queryPool, query, flags, index ); - } - - void vkCmdEndQueryIndexedEXT( VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query, - uint32_t index ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndQueryIndexedEXT( commandBuffer, queryPool, query, index ); - } - - void vkCmdDrawIndirectByteCountEXT( VkCommandBuffer commandBuffer, - uint32_t instanceCount, - uint32_t firstInstance, - VkBuffer counterBuffer, - VkDeviceSize counterBufferOffset, - uint32_t counterOffset, - uint32_t vertexStride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndirectByteCountEXT( - commandBuffer, instanceCount, firstInstance, counterBuffer, counterBufferOffset, counterOffset, vertexStride ); - } - - //=== VK_NVX_binary_import === - - VkResult vkCreateCuModuleNVX( VkDevice device, - const VkCuModuleCreateInfoNVX * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkCuModuleNVX * pModule ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateCuModuleNVX( device, pCreateInfo, pAllocator, pModule ); - } - - VkResult vkCreateCuFunctionNVX( VkDevice device, - const VkCuFunctionCreateInfoNVX * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkCuFunctionNVX * pFunction ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateCuFunctionNVX( device, pCreateInfo, pAllocator, pFunction ); - } - - void vkDestroyCuModuleNVX( VkDevice device, - VkCuModuleNVX module, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyCuModuleNVX( device, module, pAllocator ); - } - - void vkDestroyCuFunctionNVX( VkDevice device, - VkCuFunctionNVX function, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyCuFunctionNVX( device, function, pAllocator ); - } - - void vkCmdCuLaunchKernelNVX( VkCommandBuffer commandBuffer, - const VkCuLaunchInfoNVX * pLaunchInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCuLaunchKernelNVX( commandBuffer, pLaunchInfo ); - } - - //=== VK_NVX_image_view_handle === - - uint32_t vkGetImageViewHandleNVX( VkDevice device, - const VkImageViewHandleInfoNVX * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageViewHandleNVX( device, pInfo ); - } - - VkResult vkGetImageViewAddressNVX( VkDevice device, - VkImageView imageView, - VkImageViewAddressPropertiesNVX * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageViewAddressNVX( device, imageView, pProperties ); - } - - //=== VK_AMD_draw_indirect_count === - - void vkCmdDrawIndirectCountAMD( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndirectCountAMD( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - void vkCmdDrawIndexedIndirectCountAMD( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndexedIndirectCountAMD( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - //=== VK_AMD_shader_info === - - VkResult vkGetShaderInfoAMD( VkDevice device, - VkPipeline pipeline, - VkShaderStageFlagBits shaderStage, - VkShaderInfoTypeAMD infoType, - size_t * pInfoSize, - void * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetShaderInfoAMD( device, pipeline, shaderStage, infoType, pInfoSize, pInfo ); - } - - //=== VK_KHR_dynamic_rendering === - - void vkCmdBeginRenderingKHR( VkCommandBuffer commandBuffer, - const VkRenderingInfo * pRenderingInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginRenderingKHR( commandBuffer, pRenderingInfo ); - } - - void vkCmdEndRenderingKHR( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndRenderingKHR( commandBuffer ); - } - -# if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - VkResult vkCreateStreamDescriptorSurfaceGGP( VkInstance instance, - const VkStreamDescriptorSurfaceCreateInfoGGP * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateStreamDescriptorSurfaceGGP( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - - VkResult vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkImageType type, - VkImageTiling tiling, - VkImageUsageFlags usage, - VkImageCreateFlags flags, - VkExternalMemoryHandleTypeFlagsNV externalHandleType, - VkExternalImageFormatPropertiesNV * pExternalImageFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - physicalDevice, format, type, tiling, usage, flags, externalHandleType, pExternalImageFormatProperties ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - - VkResult vkGetMemoryWin32HandleNV( VkDevice device, - VkDeviceMemory memory, - VkExternalMemoryHandleTypeFlagsNV handleType, - HANDLE * pHandle ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryWin32HandleNV( device, memory, handleType, pHandle ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_get_physical_device_properties2 === - - void vkGetPhysicalDeviceFeatures2KHR( VkPhysicalDevice physicalDevice, - VkPhysicalDeviceFeatures2 * pFeatures ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFeatures2KHR( physicalDevice, pFeatures ); - } - - void vkGetPhysicalDeviceProperties2KHR( VkPhysicalDevice physicalDevice, - VkPhysicalDeviceProperties2 * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceProperties2KHR( physicalDevice, pProperties ); - } - - void vkGetPhysicalDeviceFormatProperties2KHR( VkPhysicalDevice physicalDevice, - VkFormat format, - VkFormatProperties2 * pFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFormatProperties2KHR( physicalDevice, format, pFormatProperties ); - } - - VkResult vkGetPhysicalDeviceImageFormatProperties2KHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceImageFormatInfo2 * pImageFormatInfo, - VkImageFormatProperties2 * pImageFormatProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceImageFormatProperties2KHR( physicalDevice, pImageFormatInfo, pImageFormatProperties ); - } - - void vkGetPhysicalDeviceQueueFamilyProperties2KHR( VkPhysicalDevice physicalDevice, - uint32_t * pQueueFamilyPropertyCount, - VkQueueFamilyProperties2 * pQueueFamilyProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceQueueFamilyProperties2KHR( - physicalDevice, pQueueFamilyPropertyCount, pQueueFamilyProperties ); - } - - void vkGetPhysicalDeviceMemoryProperties2KHR( - VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2 * pMemoryProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceMemoryProperties2KHR( physicalDevice, pMemoryProperties ); - } - - void vkGetPhysicalDeviceSparseImageFormatProperties2KHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSparseImageFormatInfo2 * pFormatInfo, - uint32_t * pPropertyCount, - VkSparseImageFormatProperties2 * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - physicalDevice, pFormatInfo, pPropertyCount, pProperties ); - } - - //=== VK_KHR_device_group === - - void - vkGetDeviceGroupPeerMemoryFeaturesKHR( VkDevice device, - uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VkPeerMemoryFeatureFlags * pPeerMemoryFeatures ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceGroupPeerMemoryFeaturesKHR( - device, heapIndex, localDeviceIndex, remoteDeviceIndex, pPeerMemoryFeatures ); - } - - void vkCmdSetDeviceMaskKHR( VkCommandBuffer commandBuffer, uint32_t deviceMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDeviceMaskKHR( commandBuffer, deviceMask ); - } - - void vkCmdDispatchBaseKHR( VkCommandBuffer commandBuffer, - uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDispatchBaseKHR( - commandBuffer, baseGroupX, baseGroupY, baseGroupZ, groupCountX, groupCountY, groupCountZ ); - } - -# if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - VkResult vkCreateViSurfaceNN( VkInstance instance, - const VkViSurfaceCreateInfoNN * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateViSurfaceNN( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_maintenance1 === - - void vkTrimCommandPoolKHR( VkDevice device, - VkCommandPool commandPool, - VkCommandPoolTrimFlags flags ) const VULKAN_HPP_NOEXCEPT - { - return ::vkTrimCommandPoolKHR( device, commandPool, flags ); - } - - //=== VK_KHR_device_group_creation === - - VkResult vkEnumeratePhysicalDeviceGroupsKHR( - VkInstance instance, - uint32_t * pPhysicalDeviceGroupCount, - VkPhysicalDeviceGroupProperties * pPhysicalDeviceGroupProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumeratePhysicalDeviceGroupsKHR( - instance, pPhysicalDeviceGroupCount, pPhysicalDeviceGroupProperties ); - } - - //=== VK_KHR_external_memory_capabilities === - - void vkGetPhysicalDeviceExternalBufferPropertiesKHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalBufferInfo * pExternalBufferInfo, - VkExternalBufferProperties * pExternalBufferProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalBufferPropertiesKHR( - physicalDevice, pExternalBufferInfo, pExternalBufferProperties ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - - VkResult vkGetMemoryWin32HandleKHR( VkDevice device, - const VkMemoryGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryWin32HandleKHR( device, pGetWin32HandleInfo, pHandle ); - } - - VkResult vkGetMemoryWin32HandlePropertiesKHR( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle, - VkMemoryWin32HandlePropertiesKHR * pMemoryWin32HandleProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryWin32HandlePropertiesKHR( device, handleType, handle, pMemoryWin32HandleProperties ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - - VkResult - vkGetMemoryFdKHR( VkDevice device, const VkMemoryGetFdInfoKHR * pGetFdInfo, int * pFd ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryFdKHR( device, pGetFdInfo, pFd ); - } - - VkResult vkGetMemoryFdPropertiesKHR( VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - int fd, - VkMemoryFdPropertiesKHR * pMemoryFdProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryFdPropertiesKHR( device, handleType, fd, pMemoryFdProperties ); - } - - //=== VK_KHR_external_semaphore_capabilities === - - void vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalSemaphoreInfo * pExternalSemaphoreInfo, - VkExternalSemaphoreProperties * pExternalSemaphoreProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - physicalDevice, pExternalSemaphoreInfo, pExternalSemaphoreProperties ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - - VkResult vkImportSemaphoreWin32HandleKHR( - VkDevice device, - const VkImportSemaphoreWin32HandleInfoKHR * pImportSemaphoreWin32HandleInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkImportSemaphoreWin32HandleKHR( device, pImportSemaphoreWin32HandleInfo ); - } - - VkResult vkGetSemaphoreWin32HandleKHR( VkDevice device, - const VkSemaphoreGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSemaphoreWin32HandleKHR( device, pGetWin32HandleInfo, pHandle ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - - VkResult - vkImportSemaphoreFdKHR( VkDevice device, - const VkImportSemaphoreFdInfoKHR * pImportSemaphoreFdInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkImportSemaphoreFdKHR( device, pImportSemaphoreFdInfo ); - } - - VkResult vkGetSemaphoreFdKHR( VkDevice device, - const VkSemaphoreGetFdInfoKHR * pGetFdInfo, - int * pFd ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSemaphoreFdKHR( device, pGetFdInfo, pFd ); - } - - //=== VK_KHR_push_descriptor === - - void vkCmdPushDescriptorSetKHR( VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipelineLayout layout, - uint32_t set, - uint32_t descriptorWriteCount, - const VkWriteDescriptorSet * pDescriptorWrites ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPushDescriptorSetKHR( - commandBuffer, pipelineBindPoint, layout, set, descriptorWriteCount, pDescriptorWrites ); - } - - void vkCmdPushDescriptorSetWithTemplateKHR( VkCommandBuffer commandBuffer, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - VkPipelineLayout layout, - uint32_t set, - const void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPushDescriptorSetWithTemplateKHR( commandBuffer, descriptorUpdateTemplate, layout, set, pData ); - } - - //=== VK_EXT_conditional_rendering === - - void vkCmdBeginConditionalRenderingEXT( - VkCommandBuffer commandBuffer, - const VkConditionalRenderingBeginInfoEXT * pConditionalRenderingBegin ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginConditionalRenderingEXT( commandBuffer, pConditionalRenderingBegin ); - } - - void vkCmdEndConditionalRenderingEXT( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndConditionalRenderingEXT( commandBuffer ); - } - - //=== VK_KHR_descriptor_update_template === - - VkResult vkCreateDescriptorUpdateTemplateKHR( VkDevice device, - const VkDescriptorUpdateTemplateCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDescriptorUpdateTemplate * pDescriptorUpdateTemplate ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDescriptorUpdateTemplateKHR( device, pCreateInfo, pAllocator, pDescriptorUpdateTemplate ); - } - - void vkDestroyDescriptorUpdateTemplateKHR( VkDevice device, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDescriptorUpdateTemplateKHR( device, descriptorUpdateTemplate, pAllocator ); - } - - void vkUpdateDescriptorSetWithTemplateKHR( VkDevice device, - VkDescriptorSet descriptorSet, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkUpdateDescriptorSetWithTemplateKHR( device, descriptorSet, descriptorUpdateTemplate, pData ); - } - - //=== VK_NV_clip_space_w_scaling === - - void vkCmdSetViewportWScalingNV( VkCommandBuffer commandBuffer, - uint32_t firstViewport, - uint32_t viewportCount, - const VkViewportWScalingNV * pViewportWScalings ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetViewportWScalingNV( commandBuffer, firstViewport, viewportCount, pViewportWScalings ); - } - - //=== VK_EXT_direct_mode_display === - - VkResult vkReleaseDisplayEXT( VkPhysicalDevice physicalDevice, VkDisplayKHR display ) const VULKAN_HPP_NOEXCEPT - { - return ::vkReleaseDisplayEXT( physicalDevice, display ); - } - -# if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - - VkResult vkAcquireXlibDisplayEXT( VkPhysicalDevice physicalDevice, - Display * dpy, - VkDisplayKHR display ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireXlibDisplayEXT( physicalDevice, dpy, display ); - } - - VkResult vkGetRandROutputDisplayEXT( VkPhysicalDevice physicalDevice, - Display * dpy, - RROutput rrOutput, - VkDisplayKHR * pDisplay ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetRandROutputDisplayEXT( physicalDevice, dpy, rrOutput, pDisplay ); - } -# endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - - VkResult vkGetPhysicalDeviceSurfaceCapabilities2EXT( VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - VkSurfaceCapabilities2EXT * pSurfaceCapabilities ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfaceCapabilities2EXT( physicalDevice, surface, pSurfaceCapabilities ); - } - - //=== VK_EXT_display_control === - - VkResult vkDisplayPowerControlEXT( VkDevice device, - VkDisplayKHR display, - const VkDisplayPowerInfoEXT * pDisplayPowerInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDisplayPowerControlEXT( device, display, pDisplayPowerInfo ); - } - - VkResult vkRegisterDeviceEventEXT( VkDevice device, - const VkDeviceEventInfoEXT * pDeviceEventInfo, - const VkAllocationCallbacks * pAllocator, - VkFence * pFence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkRegisterDeviceEventEXT( device, pDeviceEventInfo, pAllocator, pFence ); - } - - VkResult vkRegisterDisplayEventEXT( VkDevice device, - VkDisplayKHR display, - const VkDisplayEventInfoEXT * pDisplayEventInfo, - const VkAllocationCallbacks * pAllocator, - VkFence * pFence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkRegisterDisplayEventEXT( device, display, pDisplayEventInfo, pAllocator, pFence ); - } - - VkResult vkGetSwapchainCounterEXT( VkDevice device, - VkSwapchainKHR swapchain, - VkSurfaceCounterFlagBitsEXT counter, - uint64_t * pCounterValue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSwapchainCounterEXT( device, swapchain, counter, pCounterValue ); - } - - //=== VK_GOOGLE_display_timing === - - VkResult vkGetRefreshCycleDurationGOOGLE( VkDevice device, - VkSwapchainKHR swapchain, - VkRefreshCycleDurationGOOGLE * pDisplayTimingProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetRefreshCycleDurationGOOGLE( device, swapchain, pDisplayTimingProperties ); - } - - VkResult vkGetPastPresentationTimingGOOGLE( VkDevice device, - VkSwapchainKHR swapchain, - uint32_t * pPresentationTimingCount, - VkPastPresentationTimingGOOGLE * pPresentationTimings ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPastPresentationTimingGOOGLE( device, swapchain, pPresentationTimingCount, pPresentationTimings ); - } - - //=== VK_EXT_discard_rectangles === - - void vkCmdSetDiscardRectangleEXT( VkCommandBuffer commandBuffer, - uint32_t firstDiscardRectangle, - uint32_t discardRectangleCount, - const VkRect2D * pDiscardRectangles ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDiscardRectangleEXT( - commandBuffer, firstDiscardRectangle, discardRectangleCount, pDiscardRectangles ); - } - - //=== VK_EXT_hdr_metadata === - - void vkSetHdrMetadataEXT( VkDevice device, - uint32_t swapchainCount, - const VkSwapchainKHR * pSwapchains, - const VkHdrMetadataEXT * pMetadata ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetHdrMetadataEXT( device, swapchainCount, pSwapchains, pMetadata ); - } - - //=== VK_KHR_create_renderpass2 === - - VkResult vkCreateRenderPass2KHR( VkDevice device, - const VkRenderPassCreateInfo2 * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkRenderPass * pRenderPass ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateRenderPass2KHR( device, pCreateInfo, pAllocator, pRenderPass ); - } - - void vkCmdBeginRenderPass2KHR( VkCommandBuffer commandBuffer, - const VkRenderPassBeginInfo * pRenderPassBegin, - const VkSubpassBeginInfo * pSubpassBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginRenderPass2KHR( commandBuffer, pRenderPassBegin, pSubpassBeginInfo ); - } - - void vkCmdNextSubpass2KHR( VkCommandBuffer commandBuffer, - const VkSubpassBeginInfo * pSubpassBeginInfo, - const VkSubpassEndInfo * pSubpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdNextSubpass2KHR( commandBuffer, pSubpassBeginInfo, pSubpassEndInfo ); - } - - void vkCmdEndRenderPass2KHR( VkCommandBuffer commandBuffer, - const VkSubpassEndInfo * pSubpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndRenderPass2KHR( commandBuffer, pSubpassEndInfo ); - } - - //=== VK_KHR_shared_presentable_image === - - VkResult vkGetSwapchainStatusKHR( VkDevice device, VkSwapchainKHR swapchain ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSwapchainStatusKHR( device, swapchain ); - } - - //=== VK_KHR_external_fence_capabilities === - - void vkGetPhysicalDeviceExternalFencePropertiesKHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalFenceInfo * pExternalFenceInfo, - VkExternalFenceProperties * pExternalFenceProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceExternalFencePropertiesKHR( - physicalDevice, pExternalFenceInfo, pExternalFenceProperties ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - - VkResult vkImportFenceWin32HandleKHR( - VkDevice device, const VkImportFenceWin32HandleInfoKHR * pImportFenceWin32HandleInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkImportFenceWin32HandleKHR( device, pImportFenceWin32HandleInfo ); - } - - VkResult vkGetFenceWin32HandleKHR( VkDevice device, - const VkFenceGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetFenceWin32HandleKHR( device, pGetWin32HandleInfo, pHandle ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - - VkResult vkImportFenceFdKHR( VkDevice device, - const VkImportFenceFdInfoKHR * pImportFenceFdInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkImportFenceFdKHR( device, pImportFenceFdInfo ); - } - - VkResult - vkGetFenceFdKHR( VkDevice device, const VkFenceGetFdInfoKHR * pGetFdInfo, int * pFd ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetFenceFdKHR( device, pGetFdInfo, pFd ); - } - - //=== VK_KHR_performance_query === - - VkResult vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - uint32_t * pCounterCount, - VkPerformanceCounterKHR * pCounters, - VkPerformanceCounterDescriptionKHR * pCounterDescriptions ) const VULKAN_HPP_NOEXCEPT - { - return ::vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - physicalDevice, queueFamilyIndex, pCounterCount, pCounters, pCounterDescriptions ); - } - - void vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - VkPhysicalDevice physicalDevice, - const VkQueryPoolPerformanceCreateInfoKHR * pPerformanceQueryCreateInfo, - uint32_t * pNumPasses ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - physicalDevice, pPerformanceQueryCreateInfo, pNumPasses ); - } - - VkResult vkAcquireProfilingLockKHR( VkDevice device, - const VkAcquireProfilingLockInfoKHR * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireProfilingLockKHR( device, pInfo ); - } - - void vkReleaseProfilingLockKHR( VkDevice device ) const VULKAN_HPP_NOEXCEPT - { - return ::vkReleaseProfilingLockKHR( device ); - } - - //=== VK_KHR_get_surface_capabilities2 === - - VkResult vkGetPhysicalDeviceSurfaceCapabilities2KHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - VkSurfaceCapabilities2KHR * pSurfaceCapabilities ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfaceCapabilities2KHR( physicalDevice, pSurfaceInfo, pSurfaceCapabilities ); - } - - VkResult vkGetPhysicalDeviceSurfaceFormats2KHR( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - uint32_t * pSurfaceFormatCount, - VkSurfaceFormat2KHR * pSurfaceFormats ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfaceFormats2KHR( - physicalDevice, pSurfaceInfo, pSurfaceFormatCount, pSurfaceFormats ); - } - - //=== VK_KHR_get_display_properties2 === - - VkResult vkGetPhysicalDeviceDisplayProperties2KHR( VkPhysicalDevice physicalDevice, - uint32_t * pPropertyCount, - VkDisplayProperties2KHR * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceDisplayProperties2KHR( physicalDevice, pPropertyCount, pProperties ); - } - - VkResult vkGetPhysicalDeviceDisplayPlaneProperties2KHR( VkPhysicalDevice physicalDevice, - uint32_t * pPropertyCount, - VkDisplayPlaneProperties2KHR * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceDisplayPlaneProperties2KHR( physicalDevice, pPropertyCount, pProperties ); - } - - VkResult vkGetDisplayModeProperties2KHR( VkPhysicalDevice physicalDevice, - VkDisplayKHR display, - uint32_t * pPropertyCount, - VkDisplayModeProperties2KHR * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDisplayModeProperties2KHR( physicalDevice, display, pPropertyCount, pProperties ); - } - - VkResult - vkGetDisplayPlaneCapabilities2KHR( VkPhysicalDevice physicalDevice, - const VkDisplayPlaneInfo2KHR * pDisplayPlaneInfo, - VkDisplayPlaneCapabilities2KHR * pCapabilities ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDisplayPlaneCapabilities2KHR( physicalDevice, pDisplayPlaneInfo, pCapabilities ); - } - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - VkResult vkCreateIOSSurfaceMVK( VkInstance instance, - const VkIOSSurfaceCreateInfoMVK * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateIOSSurfaceMVK( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - VkResult vkCreateMacOSSurfaceMVK( VkInstance instance, - const VkMacOSSurfaceCreateInfoMVK * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateMacOSSurfaceMVK( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - VkResult vkSetDebugUtilsObjectNameEXT( VkDevice device, - const VkDebugUtilsObjectNameInfoEXT * pNameInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetDebugUtilsObjectNameEXT( device, pNameInfo ); - } - - VkResult vkSetDebugUtilsObjectTagEXT( VkDevice device, - const VkDebugUtilsObjectTagInfoEXT * pTagInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetDebugUtilsObjectTagEXT( device, pTagInfo ); - } - - void vkQueueBeginDebugUtilsLabelEXT( VkQueue queue, - const VkDebugUtilsLabelEXT * pLabelInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueBeginDebugUtilsLabelEXT( queue, pLabelInfo ); - } - - void vkQueueEndDebugUtilsLabelEXT( VkQueue queue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueEndDebugUtilsLabelEXT( queue ); - } - - void vkQueueInsertDebugUtilsLabelEXT( VkQueue queue, - const VkDebugUtilsLabelEXT * pLabelInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueInsertDebugUtilsLabelEXT( queue, pLabelInfo ); - } - - void vkCmdBeginDebugUtilsLabelEXT( VkCommandBuffer commandBuffer, - const VkDebugUtilsLabelEXT * pLabelInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBeginDebugUtilsLabelEXT( commandBuffer, pLabelInfo ); - } - - void vkCmdEndDebugUtilsLabelEXT( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEndDebugUtilsLabelEXT( commandBuffer ); - } - - void vkCmdInsertDebugUtilsLabelEXT( VkCommandBuffer commandBuffer, - const VkDebugUtilsLabelEXT * pLabelInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdInsertDebugUtilsLabelEXT( commandBuffer, pLabelInfo ); - } - - VkResult vkCreateDebugUtilsMessengerEXT( VkInstance instance, - const VkDebugUtilsMessengerCreateInfoEXT * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkDebugUtilsMessengerEXT * pMessenger ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDebugUtilsMessengerEXT( instance, pCreateInfo, pAllocator, pMessenger ); - } - - void vkDestroyDebugUtilsMessengerEXT( VkInstance instance, - VkDebugUtilsMessengerEXT messenger, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDebugUtilsMessengerEXT( instance, messenger, pAllocator ); - } - - void vkSubmitDebugUtilsMessageEXT( VkInstance instance, - VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VkDebugUtilsMessageTypeFlagsEXT messageTypes, - const VkDebugUtilsMessengerCallbackDataEXT * pCallbackData ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkSubmitDebugUtilsMessageEXT( instance, messageSeverity, messageTypes, pCallbackData ); - } - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - - VkResult vkGetAndroidHardwareBufferPropertiesANDROID( VkDevice device, - const struct AHardwareBuffer * buffer, - VkAndroidHardwareBufferPropertiesANDROID * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetAndroidHardwareBufferPropertiesANDROID( device, buffer, pProperties ); - } - - VkResult vkGetMemoryAndroidHardwareBufferANDROID( VkDevice device, - const VkMemoryGetAndroidHardwareBufferInfoANDROID * pInfo, - struct AHardwareBuffer ** pBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryAndroidHardwareBufferANDROID( device, pInfo, pBuffer ); - } -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - - void vkCmdSetSampleLocationsEXT( VkCommandBuffer commandBuffer, - const VkSampleLocationsInfoEXT * pSampleLocationsInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetSampleLocationsEXT( commandBuffer, pSampleLocationsInfo ); - } - - void vkGetPhysicalDeviceMultisamplePropertiesEXT( VkPhysicalDevice physicalDevice, - VkSampleCountFlagBits samples, - VkMultisamplePropertiesEXT * pMultisampleProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceMultisamplePropertiesEXT( physicalDevice, samples, pMultisampleProperties ); - } - - //=== VK_KHR_get_memory_requirements2 === - - void vkGetImageMemoryRequirements2KHR( VkDevice device, - const VkImageMemoryRequirementsInfo2 * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageMemoryRequirements2KHR( device, pInfo, pMemoryRequirements ); - } - - void vkGetBufferMemoryRequirements2KHR( VkDevice device, - const VkBufferMemoryRequirementsInfo2 * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferMemoryRequirements2KHR( device, pInfo, pMemoryRequirements ); - } - - void vkGetImageSparseMemoryRequirements2KHR( VkDevice device, - const VkImageSparseMemoryRequirementsInfo2 * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2 * pSparseMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageSparseMemoryRequirements2KHR( - device, pInfo, pSparseMemoryRequirementCount, pSparseMemoryRequirements ); - } - - //=== VK_KHR_acceleration_structure === - - VkResult - vkCreateAccelerationStructureKHR( VkDevice device, - const VkAccelerationStructureCreateInfoKHR * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkAccelerationStructureKHR * pAccelerationStructure ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateAccelerationStructureKHR( device, pCreateInfo, pAllocator, pAccelerationStructure ); - } - - void vkDestroyAccelerationStructureKHR( VkDevice device, - VkAccelerationStructureKHR accelerationStructure, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyAccelerationStructureKHR( device, accelerationStructure, pAllocator ); - } - - void vkCmdBuildAccelerationStructuresKHR( - VkCommandBuffer commandBuffer, - uint32_t infoCount, - const VkAccelerationStructureBuildGeometryInfoKHR * pInfos, - const VkAccelerationStructureBuildRangeInfoKHR * const * ppBuildRangeInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBuildAccelerationStructuresKHR( commandBuffer, infoCount, pInfos, ppBuildRangeInfos ); - } - - void vkCmdBuildAccelerationStructuresIndirectKHR( VkCommandBuffer commandBuffer, - uint32_t infoCount, - const VkAccelerationStructureBuildGeometryInfoKHR * pInfos, - const VkDeviceAddress * pIndirectDeviceAddresses, - const uint32_t * pIndirectStrides, - const uint32_t * const * ppMaxPrimitiveCounts ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBuildAccelerationStructuresIndirectKHR( - commandBuffer, infoCount, pInfos, pIndirectDeviceAddresses, pIndirectStrides, ppMaxPrimitiveCounts ); - } - - VkResult vkBuildAccelerationStructuresKHR( - VkDevice device, - VkDeferredOperationKHR deferredOperation, - uint32_t infoCount, - const VkAccelerationStructureBuildGeometryInfoKHR * pInfos, - const VkAccelerationStructureBuildRangeInfoKHR * const * ppBuildRangeInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBuildAccelerationStructuresKHR( device, deferredOperation, infoCount, pInfos, ppBuildRangeInfos ); - } - - VkResult - vkCopyAccelerationStructureKHR( VkDevice device, - VkDeferredOperationKHR deferredOperation, - const VkCopyAccelerationStructureInfoKHR * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCopyAccelerationStructureKHR( device, deferredOperation, pInfo ); - } - - VkResult vkCopyAccelerationStructureToMemoryKHR( VkDevice device, - VkDeferredOperationKHR deferredOperation, - const VkCopyAccelerationStructureToMemoryInfoKHR * pInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCopyAccelerationStructureToMemoryKHR( device, deferredOperation, pInfo ); - } - - VkResult vkCopyMemoryToAccelerationStructureKHR( VkDevice device, - VkDeferredOperationKHR deferredOperation, - const VkCopyMemoryToAccelerationStructureInfoKHR * pInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCopyMemoryToAccelerationStructureKHR( device, deferredOperation, pInfo ); - } - - VkResult vkWriteAccelerationStructuresPropertiesKHR( VkDevice device, - uint32_t accelerationStructureCount, - const VkAccelerationStructureKHR * pAccelerationStructures, - VkQueryType queryType, - size_t dataSize, - void * pData, - size_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkWriteAccelerationStructuresPropertiesKHR( - device, accelerationStructureCount, pAccelerationStructures, queryType, dataSize, pData, stride ); - } - - void vkCmdCopyAccelerationStructureKHR( VkCommandBuffer commandBuffer, - const VkCopyAccelerationStructureInfoKHR * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyAccelerationStructureKHR( commandBuffer, pInfo ); - } - - void vkCmdCopyAccelerationStructureToMemoryKHR( VkCommandBuffer commandBuffer, - const VkCopyAccelerationStructureToMemoryInfoKHR * pInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyAccelerationStructureToMemoryKHR( commandBuffer, pInfo ); - } - - void vkCmdCopyMemoryToAccelerationStructureKHR( VkCommandBuffer commandBuffer, - const VkCopyMemoryToAccelerationStructureInfoKHR * pInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyMemoryToAccelerationStructureKHR( commandBuffer, pInfo ); - } - - VkDeviceAddress vkGetAccelerationStructureDeviceAddressKHR( - VkDevice device, const VkAccelerationStructureDeviceAddressInfoKHR * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetAccelerationStructureDeviceAddressKHR( device, pInfo ); - } - - void vkCmdWriteAccelerationStructuresPropertiesKHR( VkCommandBuffer commandBuffer, - uint32_t accelerationStructureCount, - const VkAccelerationStructureKHR * pAccelerationStructures, - VkQueryType queryType, - VkQueryPool queryPool, - uint32_t firstQuery ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteAccelerationStructuresPropertiesKHR( - commandBuffer, accelerationStructureCount, pAccelerationStructures, queryType, queryPool, firstQuery ); - } - - void vkGetDeviceAccelerationStructureCompatibilityKHR( - VkDevice device, - const VkAccelerationStructureVersionInfoKHR * pVersionInfo, - VkAccelerationStructureCompatibilityKHR * pCompatibility ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceAccelerationStructureCompatibilityKHR( device, pVersionInfo, pCompatibility ); - } - - void vkGetAccelerationStructureBuildSizesKHR( VkDevice device, - VkAccelerationStructureBuildTypeKHR buildType, - const VkAccelerationStructureBuildGeometryInfoKHR * pBuildInfo, - const uint32_t * pMaxPrimitiveCounts, - VkAccelerationStructureBuildSizesInfoKHR * pSizeInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetAccelerationStructureBuildSizesKHR( device, buildType, pBuildInfo, pMaxPrimitiveCounts, pSizeInfo ); - } - - //=== VK_KHR_sampler_ycbcr_conversion === - - VkResult vkCreateSamplerYcbcrConversionKHR( VkDevice device, - const VkSamplerYcbcrConversionCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSamplerYcbcrConversion * pYcbcrConversion ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateSamplerYcbcrConversionKHR( device, pCreateInfo, pAllocator, pYcbcrConversion ); - } - - void vkDestroySamplerYcbcrConversionKHR( VkDevice device, - VkSamplerYcbcrConversion ycbcrConversion, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroySamplerYcbcrConversionKHR( device, ycbcrConversion, pAllocator ); - } - - //=== VK_KHR_bind_memory2 === - - VkResult vkBindBufferMemory2KHR( VkDevice device, - uint32_t bindInfoCount, - const VkBindBufferMemoryInfo * pBindInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindBufferMemory2KHR( device, bindInfoCount, pBindInfos ); - } - - VkResult vkBindImageMemory2KHR( VkDevice device, - uint32_t bindInfoCount, - const VkBindImageMemoryInfo * pBindInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkBindImageMemory2KHR( device, bindInfoCount, pBindInfos ); - } - - //=== VK_EXT_image_drm_format_modifier === - - VkResult vkGetImageDrmFormatModifierPropertiesEXT( - VkDevice device, VkImage image, VkImageDrmFormatModifierPropertiesEXT * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetImageDrmFormatModifierPropertiesEXT( device, image, pProperties ); - } - - //=== VK_EXT_validation_cache === - - VkResult vkCreateValidationCacheEXT( VkDevice device, - const VkValidationCacheCreateInfoEXT * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkValidationCacheEXT * pValidationCache ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateValidationCacheEXT( device, pCreateInfo, pAllocator, pValidationCache ); - } - - void vkDestroyValidationCacheEXT( VkDevice device, - VkValidationCacheEXT validationCache, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyValidationCacheEXT( device, validationCache, pAllocator ); - } - - VkResult vkMergeValidationCachesEXT( VkDevice device, - VkValidationCacheEXT dstCache, - uint32_t srcCacheCount, - const VkValidationCacheEXT * pSrcCaches ) const VULKAN_HPP_NOEXCEPT - { - return ::vkMergeValidationCachesEXT( device, dstCache, srcCacheCount, pSrcCaches ); - } - - VkResult vkGetValidationCacheDataEXT( VkDevice device, - VkValidationCacheEXT validationCache, - size_t * pDataSize, - void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetValidationCacheDataEXT( device, validationCache, pDataSize, pData ); - } - - //=== VK_NV_shading_rate_image === - - void vkCmdBindShadingRateImageNV( VkCommandBuffer commandBuffer, - VkImageView imageView, - VkImageLayout imageLayout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindShadingRateImageNV( commandBuffer, imageView, imageLayout ); - } - - void vkCmdSetViewportShadingRatePaletteNV( VkCommandBuffer commandBuffer, - uint32_t firstViewport, - uint32_t viewportCount, - const VkShadingRatePaletteNV * pShadingRatePalettes ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetViewportShadingRatePaletteNV( - commandBuffer, firstViewport, viewportCount, pShadingRatePalettes ); - } - - void - vkCmdSetCoarseSampleOrderNV( VkCommandBuffer commandBuffer, - VkCoarseSampleOrderTypeNV sampleOrderType, - uint32_t customSampleOrderCount, - const VkCoarseSampleOrderCustomNV * pCustomSampleOrders ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetCoarseSampleOrderNV( - commandBuffer, sampleOrderType, customSampleOrderCount, pCustomSampleOrders ); - } - - //=== VK_NV_ray_tracing === - - VkResult - vkCreateAccelerationStructureNV( VkDevice device, - const VkAccelerationStructureCreateInfoNV * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkAccelerationStructureNV * pAccelerationStructure ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateAccelerationStructureNV( device, pCreateInfo, pAllocator, pAccelerationStructure ); - } - - void vkDestroyAccelerationStructureNV( VkDevice device, - VkAccelerationStructureNV accelerationStructure, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyAccelerationStructureNV( device, accelerationStructure, pAllocator ); - } - - void vkGetAccelerationStructureMemoryRequirementsNV( VkDevice device, - const VkAccelerationStructureMemoryRequirementsInfoNV * pInfo, - VkMemoryRequirements2KHR * pMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetAccelerationStructureMemoryRequirementsNV( device, pInfo, pMemoryRequirements ); - } - - VkResult vkBindAccelerationStructureMemoryNV( VkDevice device, - uint32_t bindInfoCount, - const VkBindAccelerationStructureMemoryInfoNV * pBindInfos ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkBindAccelerationStructureMemoryNV( device, bindInfoCount, pBindInfos ); - } - - void vkCmdBuildAccelerationStructureNV( VkCommandBuffer commandBuffer, - const VkAccelerationStructureInfoNV * pInfo, - VkBuffer instanceData, - VkDeviceSize instanceOffset, - VkBool32 update, - VkAccelerationStructureNV dst, - VkAccelerationStructureNV src, - VkBuffer scratch, - VkDeviceSize scratchOffset ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBuildAccelerationStructureNV( - commandBuffer, pInfo, instanceData, instanceOffset, update, dst, src, scratch, scratchOffset ); - } - - void vkCmdCopyAccelerationStructureNV( VkCommandBuffer commandBuffer, - VkAccelerationStructureNV dst, - VkAccelerationStructureNV src, - VkCopyAccelerationStructureModeKHR mode ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyAccelerationStructureNV( commandBuffer, dst, src, mode ); - } - - void vkCmdTraceRaysNV( VkCommandBuffer commandBuffer, - VkBuffer raygenShaderBindingTableBuffer, - VkDeviceSize raygenShaderBindingOffset, - VkBuffer missShaderBindingTableBuffer, - VkDeviceSize missShaderBindingOffset, - VkDeviceSize missShaderBindingStride, - VkBuffer hitShaderBindingTableBuffer, - VkDeviceSize hitShaderBindingOffset, - VkDeviceSize hitShaderBindingStride, - VkBuffer callableShaderBindingTableBuffer, - VkDeviceSize callableShaderBindingOffset, - VkDeviceSize callableShaderBindingStride, - uint32_t width, - uint32_t height, - uint32_t depth ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdTraceRaysNV( commandBuffer, - raygenShaderBindingTableBuffer, - raygenShaderBindingOffset, - missShaderBindingTableBuffer, - missShaderBindingOffset, - missShaderBindingStride, - hitShaderBindingTableBuffer, - hitShaderBindingOffset, - hitShaderBindingStride, - callableShaderBindingTableBuffer, - callableShaderBindingOffset, - callableShaderBindingStride, - width, - height, - depth ); - } - - VkResult vkCreateRayTracingPipelinesNV( VkDevice device, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkRayTracingPipelineCreateInfoNV * pCreateInfos, - const VkAllocationCallbacks * pAllocator, - VkPipeline * pPipelines ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateRayTracingPipelinesNV( - device, pipelineCache, createInfoCount, pCreateInfos, pAllocator, pPipelines ); - } - - VkResult vkGetRayTracingShaderGroupHandlesNV( VkDevice device, - VkPipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetRayTracingShaderGroupHandlesNV( device, pipeline, firstGroup, groupCount, dataSize, pData ); - } - - VkResult vkGetAccelerationStructureHandleNV( VkDevice device, - VkAccelerationStructureNV accelerationStructure, - size_t dataSize, - void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetAccelerationStructureHandleNV( device, accelerationStructure, dataSize, pData ); - } - - void vkCmdWriteAccelerationStructuresPropertiesNV( VkCommandBuffer commandBuffer, - uint32_t accelerationStructureCount, - const VkAccelerationStructureNV * pAccelerationStructures, - VkQueryType queryType, - VkQueryPool queryPool, - uint32_t firstQuery ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteAccelerationStructuresPropertiesNV( - commandBuffer, accelerationStructureCount, pAccelerationStructures, queryType, queryPool, firstQuery ); - } - - VkResult vkCompileDeferredNV( VkDevice device, VkPipeline pipeline, uint32_t shader ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCompileDeferredNV( device, pipeline, shader ); - } - - //=== VK_KHR_maintenance3 === - - void vkGetDescriptorSetLayoutSupportKHR( VkDevice device, - const VkDescriptorSetLayoutCreateInfo * pCreateInfo, - VkDescriptorSetLayoutSupport * pSupport ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDescriptorSetLayoutSupportKHR( device, pCreateInfo, pSupport ); - } - - //=== VK_KHR_draw_indirect_count === - - void vkCmdDrawIndirectCountKHR( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndirectCountKHR( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - void vkCmdDrawIndexedIndirectCountKHR( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawIndexedIndirectCountKHR( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - //=== VK_EXT_external_memory_host === - - VkResult vkGetMemoryHostPointerPropertiesEXT( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer, - VkMemoryHostPointerPropertiesEXT * pMemoryHostPointerProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryHostPointerPropertiesEXT( device, handleType, pHostPointer, pMemoryHostPointerProperties ); - } - - //=== VK_AMD_buffer_marker === - - void vkCmdWriteBufferMarkerAMD( VkCommandBuffer commandBuffer, - VkPipelineStageFlagBits pipelineStage, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - uint32_t marker ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteBufferMarkerAMD( commandBuffer, pipelineStage, dstBuffer, dstOffset, marker ); - } - - //=== VK_EXT_calibrated_timestamps === - - VkResult vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( VkPhysicalDevice physicalDevice, - uint32_t * pTimeDomainCount, - VkTimeDomainEXT * pTimeDomains ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( physicalDevice, pTimeDomainCount, pTimeDomains ); - } - - VkResult vkGetCalibratedTimestampsEXT( VkDevice device, - uint32_t timestampCount, - const VkCalibratedTimestampInfoEXT * pTimestampInfos, - uint64_t * pTimestamps, - uint64_t * pMaxDeviation ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetCalibratedTimestampsEXT( device, timestampCount, pTimestampInfos, pTimestamps, pMaxDeviation ); - } - - //=== VK_NV_mesh_shader === - - void vkCmdDrawMeshTasksNV( VkCommandBuffer commandBuffer, - uint32_t taskCount, - uint32_t firstTask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawMeshTasksNV( commandBuffer, taskCount, firstTask ); - } - - void vkCmdDrawMeshTasksIndirectNV( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawMeshTasksIndirectNV( commandBuffer, buffer, offset, drawCount, stride ); - } - - void vkCmdDrawMeshTasksIndirectCountNV( VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawMeshTasksIndirectCountNV( - commandBuffer, buffer, offset, countBuffer, countBufferOffset, maxDrawCount, stride ); - } - - //=== VK_NV_scissor_exclusive === - - void vkCmdSetExclusiveScissorNV( VkCommandBuffer commandBuffer, - uint32_t firstExclusiveScissor, - uint32_t exclusiveScissorCount, - const VkRect2D * pExclusiveScissors ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetExclusiveScissorNV( - commandBuffer, firstExclusiveScissor, exclusiveScissorCount, pExclusiveScissors ); - } - - //=== VK_NV_device_diagnostic_checkpoints === - - void vkCmdSetCheckpointNV( VkCommandBuffer commandBuffer, const void * pCheckpointMarker ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetCheckpointNV( commandBuffer, pCheckpointMarker ); - } - - void vkGetQueueCheckpointDataNV( VkQueue queue, - uint32_t * pCheckpointDataCount, - VkCheckpointDataNV * pCheckpointData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetQueueCheckpointDataNV( queue, pCheckpointDataCount, pCheckpointData ); - } - - //=== VK_KHR_timeline_semaphore === - - VkResult vkGetSemaphoreCounterValueKHR( VkDevice device, - VkSemaphore semaphore, - uint64_t * pValue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSemaphoreCounterValueKHR( device, semaphore, pValue ); - } - - VkResult vkWaitSemaphoresKHR( VkDevice device, - const VkSemaphoreWaitInfo * pWaitInfo, - uint64_t timeout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkWaitSemaphoresKHR( device, pWaitInfo, timeout ); - } - - VkResult vkSignalSemaphoreKHR( VkDevice device, - const VkSemaphoreSignalInfo * pSignalInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSignalSemaphoreKHR( device, pSignalInfo ); - } - - //=== VK_INTEL_performance_query === - - VkResult vkInitializePerformanceApiINTEL( - VkDevice device, const VkInitializePerformanceApiInfoINTEL * pInitializeInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkInitializePerformanceApiINTEL( device, pInitializeInfo ); - } - - void vkUninitializePerformanceApiINTEL( VkDevice device ) const VULKAN_HPP_NOEXCEPT - { - return ::vkUninitializePerformanceApiINTEL( device ); - } - - VkResult - vkCmdSetPerformanceMarkerINTEL( VkCommandBuffer commandBuffer, - const VkPerformanceMarkerInfoINTEL * pMarkerInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPerformanceMarkerINTEL( commandBuffer, pMarkerInfo ); - } - - VkResult vkCmdSetPerformanceStreamMarkerINTEL( - VkCommandBuffer commandBuffer, const VkPerformanceStreamMarkerInfoINTEL * pMarkerInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPerformanceStreamMarkerINTEL( commandBuffer, pMarkerInfo ); - } - - VkResult - vkCmdSetPerformanceOverrideINTEL( VkCommandBuffer commandBuffer, - const VkPerformanceOverrideInfoINTEL * pOverrideInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPerformanceOverrideINTEL( commandBuffer, pOverrideInfo ); - } - - VkResult vkAcquirePerformanceConfigurationINTEL( VkDevice device, - const VkPerformanceConfigurationAcquireInfoINTEL * pAcquireInfo, - VkPerformanceConfigurationINTEL * pConfiguration ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkAcquirePerformanceConfigurationINTEL( device, pAcquireInfo, pConfiguration ); - } - - VkResult - vkReleasePerformanceConfigurationINTEL( VkDevice device, - VkPerformanceConfigurationINTEL configuration ) const VULKAN_HPP_NOEXCEPT - { - return ::vkReleasePerformanceConfigurationINTEL( device, configuration ); - } - - VkResult - vkQueueSetPerformanceConfigurationINTEL( VkQueue queue, - VkPerformanceConfigurationINTEL configuration ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueSetPerformanceConfigurationINTEL( queue, configuration ); - } - - VkResult vkGetPerformanceParameterINTEL( VkDevice device, - VkPerformanceParameterTypeINTEL parameter, - VkPerformanceValueINTEL * pValue ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPerformanceParameterINTEL( device, parameter, pValue ); - } - - //=== VK_AMD_display_native_hdr === - - void vkSetLocalDimmingAMD( VkDevice device, - VkSwapchainKHR swapChain, - VkBool32 localDimmingEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetLocalDimmingAMD( device, swapChain, localDimmingEnable ); - } - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - VkResult vkCreateImagePipeSurfaceFUCHSIA( VkInstance instance, - const VkImagePipeSurfaceCreateInfoFUCHSIA * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateImagePipeSurfaceFUCHSIA( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - VkResult vkCreateMetalSurfaceEXT( VkInstance instance, - const VkMetalSurfaceCreateInfoEXT * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateMetalSurfaceEXT( instance, pCreateInfo, pAllocator, pSurface ); - } -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_KHR_fragment_shading_rate === - - VkResult vkGetPhysicalDeviceFragmentShadingRatesKHR( - VkPhysicalDevice physicalDevice, - uint32_t * pFragmentShadingRateCount, - VkPhysicalDeviceFragmentShadingRateKHR * pFragmentShadingRates ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceFragmentShadingRatesKHR( - physicalDevice, pFragmentShadingRateCount, pFragmentShadingRates ); - } - - void vkCmdSetFragmentShadingRateKHR( VkCommandBuffer commandBuffer, - const VkExtent2D * pFragmentSize, - const VkFragmentShadingRateCombinerOpKHR combinerOps[2] ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetFragmentShadingRateKHR( commandBuffer, pFragmentSize, combinerOps ); - } - - //=== VK_EXT_buffer_device_address === - - VkDeviceAddress vkGetBufferDeviceAddressEXT( VkDevice device, - const VkBufferDeviceAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferDeviceAddressEXT( device, pInfo ); - } - - //=== VK_EXT_tooling_info === - - VkResult - vkGetPhysicalDeviceToolPropertiesEXT( VkPhysicalDevice physicalDevice, - uint32_t * pToolCount, - VkPhysicalDeviceToolProperties * pToolProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceToolPropertiesEXT( physicalDevice, pToolCount, pToolProperties ); - } - - //=== VK_KHR_present_wait === - - VkResult vkWaitForPresentKHR( VkDevice device, - VkSwapchainKHR swapchain, - uint64_t presentId, - uint64_t timeout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkWaitForPresentKHR( device, swapchain, presentId, timeout ); - } - - //=== VK_NV_cooperative_matrix === - - VkResult vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( VkPhysicalDevice physicalDevice, - uint32_t * pPropertyCount, - VkCooperativeMatrixPropertiesNV * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( physicalDevice, pPropertyCount, pProperties ); - } - - //=== VK_NV_coverage_reduction_mode === - - VkResult vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - VkPhysicalDevice physicalDevice, - uint32_t * pCombinationCount, - VkFramebufferMixedSamplesCombinationNV * pCombinations ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - physicalDevice, pCombinationCount, pCombinations ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - VkResult vkGetPhysicalDeviceSurfacePresentModes2EXT( VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - uint32_t * pPresentModeCount, - VkPresentModeKHR * pPresentModes ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceSurfacePresentModes2EXT( - physicalDevice, pSurfaceInfo, pPresentModeCount, pPresentModes ); - } - - VkResult vkAcquireFullScreenExclusiveModeEXT( VkDevice device, VkSwapchainKHR swapchain ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireFullScreenExclusiveModeEXT( device, swapchain ); - } - - VkResult vkReleaseFullScreenExclusiveModeEXT( VkDevice device, VkSwapchainKHR swapchain ) const VULKAN_HPP_NOEXCEPT - { - return ::vkReleaseFullScreenExclusiveModeEXT( device, swapchain ); - } - - VkResult - vkGetDeviceGroupSurfacePresentModes2EXT( VkDevice device, - const VkPhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - VkDeviceGroupPresentModeFlagsKHR * pModes ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceGroupSurfacePresentModes2EXT( device, pSurfaceInfo, pModes ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - - VkResult vkCreateHeadlessSurfaceEXT( VkInstance instance, - const VkHeadlessSurfaceCreateInfoEXT * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateHeadlessSurfaceEXT( instance, pCreateInfo, pAllocator, pSurface ); - } - - //=== VK_KHR_buffer_device_address === - - VkDeviceAddress vkGetBufferDeviceAddressKHR( VkDevice device, - const VkBufferDeviceAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferDeviceAddressKHR( device, pInfo ); - } - - uint64_t vkGetBufferOpaqueCaptureAddressKHR( VkDevice device, - const VkBufferDeviceAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferOpaqueCaptureAddressKHR( device, pInfo ); - } - - uint64_t vkGetDeviceMemoryOpaqueCaptureAddressKHR( - VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo * pInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceMemoryOpaqueCaptureAddressKHR( device, pInfo ); - } - - //=== VK_EXT_line_rasterization === - - void vkCmdSetLineStippleEXT( VkCommandBuffer commandBuffer, - uint32_t lineStippleFactor, - uint16_t lineStipplePattern ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetLineStippleEXT( commandBuffer, lineStippleFactor, lineStipplePattern ); - } - - //=== VK_EXT_host_query_reset === - - void vkResetQueryPoolEXT( VkDevice device, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT - { - return ::vkResetQueryPoolEXT( device, queryPool, firstQuery, queryCount ); - } - - //=== VK_EXT_extended_dynamic_state === - - void vkCmdSetCullModeEXT( VkCommandBuffer commandBuffer, VkCullModeFlags cullMode ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetCullModeEXT( commandBuffer, cullMode ); - } - - void vkCmdSetFrontFaceEXT( VkCommandBuffer commandBuffer, VkFrontFace frontFace ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetFrontFaceEXT( commandBuffer, frontFace ); - } - - void vkCmdSetPrimitiveTopologyEXT( VkCommandBuffer commandBuffer, - VkPrimitiveTopology primitiveTopology ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPrimitiveTopologyEXT( commandBuffer, primitiveTopology ); - } - - void vkCmdSetViewportWithCountEXT( VkCommandBuffer commandBuffer, - uint32_t viewportCount, - const VkViewport * pViewports ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetViewportWithCountEXT( commandBuffer, viewportCount, pViewports ); - } - - void vkCmdSetScissorWithCountEXT( VkCommandBuffer commandBuffer, - uint32_t scissorCount, - const VkRect2D * pScissors ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetScissorWithCountEXT( commandBuffer, scissorCount, pScissors ); - } - - void vkCmdBindVertexBuffers2EXT( VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer * pBuffers, - const VkDeviceSize * pOffsets, - const VkDeviceSize * pSizes, - const VkDeviceSize * pStrides ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindVertexBuffers2EXT( - commandBuffer, firstBinding, bindingCount, pBuffers, pOffsets, pSizes, pStrides ); - } - - void vkCmdSetDepthTestEnableEXT( VkCommandBuffer commandBuffer, VkBool32 depthTestEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthTestEnableEXT( commandBuffer, depthTestEnable ); - } - - void vkCmdSetDepthWriteEnableEXT( VkCommandBuffer commandBuffer, - VkBool32 depthWriteEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthWriteEnableEXT( commandBuffer, depthWriteEnable ); - } - - void vkCmdSetDepthCompareOpEXT( VkCommandBuffer commandBuffer, - VkCompareOp depthCompareOp ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthCompareOpEXT( commandBuffer, depthCompareOp ); - } - - void vkCmdSetDepthBoundsTestEnableEXT( VkCommandBuffer commandBuffer, - VkBool32 depthBoundsTestEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthBoundsTestEnableEXT( commandBuffer, depthBoundsTestEnable ); - } - - void vkCmdSetStencilTestEnableEXT( VkCommandBuffer commandBuffer, - VkBool32 stencilTestEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilTestEnableEXT( commandBuffer, stencilTestEnable ); - } - - void vkCmdSetStencilOpEXT( VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - VkStencilOp failOp, - VkStencilOp passOp, - VkStencilOp depthFailOp, - VkCompareOp compareOp ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetStencilOpEXT( commandBuffer, faceMask, failOp, passOp, depthFailOp, compareOp ); - } - - //=== VK_KHR_deferred_host_operations === - - VkResult vkCreateDeferredOperationKHR( VkDevice device, - const VkAllocationCallbacks * pAllocator, - VkDeferredOperationKHR * pDeferredOperation ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDeferredOperationKHR( device, pAllocator, pDeferredOperation ); - } - - void vkDestroyDeferredOperationKHR( VkDevice device, - VkDeferredOperationKHR operation, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyDeferredOperationKHR( device, operation, pAllocator ); - } - - uint32_t vkGetDeferredOperationMaxConcurrencyKHR( VkDevice device, - VkDeferredOperationKHR operation ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeferredOperationMaxConcurrencyKHR( device, operation ); - } - - VkResult vkGetDeferredOperationResultKHR( VkDevice device, - VkDeferredOperationKHR operation ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeferredOperationResultKHR( device, operation ); - } - - VkResult vkDeferredOperationJoinKHR( VkDevice device, VkDeferredOperationKHR operation ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDeferredOperationJoinKHR( device, operation ); - } - - //=== VK_KHR_pipeline_executable_properties === - - VkResult - vkGetPipelineExecutablePropertiesKHR( VkDevice device, - const VkPipelineInfoKHR * pPipelineInfo, - uint32_t * pExecutableCount, - VkPipelineExecutablePropertiesKHR * pProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPipelineExecutablePropertiesKHR( device, pPipelineInfo, pExecutableCount, pProperties ); - } - - VkResult - vkGetPipelineExecutableStatisticsKHR( VkDevice device, - const VkPipelineExecutableInfoKHR * pExecutableInfo, - uint32_t * pStatisticCount, - VkPipelineExecutableStatisticKHR * pStatistics ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPipelineExecutableStatisticsKHR( device, pExecutableInfo, pStatisticCount, pStatistics ); - } - - VkResult vkGetPipelineExecutableInternalRepresentationsKHR( - VkDevice device, - const VkPipelineExecutableInfoKHR * pExecutableInfo, - uint32_t * pInternalRepresentationCount, - VkPipelineExecutableInternalRepresentationKHR * pInternalRepresentations ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPipelineExecutableInternalRepresentationsKHR( - device, pExecutableInfo, pInternalRepresentationCount, pInternalRepresentations ); - } - - //=== VK_NV_device_generated_commands === - - void vkGetGeneratedCommandsMemoryRequirementsNV( VkDevice device, - const VkGeneratedCommandsMemoryRequirementsInfoNV * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetGeneratedCommandsMemoryRequirementsNV( device, pInfo, pMemoryRequirements ); - } - - void vkCmdPreprocessGeneratedCommandsNV( VkCommandBuffer commandBuffer, - const VkGeneratedCommandsInfoNV * pGeneratedCommandsInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPreprocessGeneratedCommandsNV( commandBuffer, pGeneratedCommandsInfo ); - } - - void vkCmdExecuteGeneratedCommandsNV( VkCommandBuffer commandBuffer, - VkBool32 isPreprocessed, - const VkGeneratedCommandsInfoNV * pGeneratedCommandsInfo ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdExecuteGeneratedCommandsNV( commandBuffer, isPreprocessed, pGeneratedCommandsInfo ); - } - - void vkCmdBindPipelineShaderGroupNV( VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipeline pipeline, - uint32_t groupIndex ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindPipelineShaderGroupNV( commandBuffer, pipelineBindPoint, pipeline, groupIndex ); - } - - VkResult - vkCreateIndirectCommandsLayoutNV( VkDevice device, - const VkIndirectCommandsLayoutCreateInfoNV * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkIndirectCommandsLayoutNV * pIndirectCommandsLayout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateIndirectCommandsLayoutNV( device, pCreateInfo, pAllocator, pIndirectCommandsLayout ); - } - - void vkDestroyIndirectCommandsLayoutNV( VkDevice device, - VkIndirectCommandsLayoutNV indirectCommandsLayout, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyIndirectCommandsLayoutNV( device, indirectCommandsLayout, pAllocator ); - } - - //=== VK_EXT_acquire_drm_display === - - VkResult vkAcquireDrmDisplayEXT( VkPhysicalDevice physicalDevice, - int32_t drmFd, - VkDisplayKHR display ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireDrmDisplayEXT( physicalDevice, drmFd, display ); - } - - VkResult vkGetDrmDisplayEXT( VkPhysicalDevice physicalDevice, - int32_t drmFd, - uint32_t connectorId, - VkDisplayKHR * display ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDrmDisplayEXT( physicalDevice, drmFd, connectorId, display ); - } - - //=== VK_EXT_private_data === - - VkResult vkCreatePrivateDataSlotEXT( VkDevice device, - const VkPrivateDataSlotCreateInfo * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkPrivateDataSlot * pPrivateDataSlot ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreatePrivateDataSlotEXT( device, pCreateInfo, pAllocator, pPrivateDataSlot ); - } - - void vkDestroyPrivateDataSlotEXT( VkDevice device, - VkPrivateDataSlot privateDataSlot, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyPrivateDataSlotEXT( device, privateDataSlot, pAllocator ); - } - - VkResult vkSetPrivateDataEXT( VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t data ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetPrivateDataEXT( device, objectType, objectHandle, privateDataSlot, data ); - } - - void vkGetPrivateDataEXT( VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPrivateDataEXT( device, objectType, objectHandle, privateDataSlot, pData ); - } - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - void vkCmdEncodeVideoKHR( VkCommandBuffer commandBuffer, - const VkVideoEncodeInfoKHR * pEncodeInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdEncodeVideoKHR( commandBuffer, pEncodeInfo ); - } -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - - void vkCmdSetEvent2KHR( VkCommandBuffer commandBuffer, - VkEvent event, - const VkDependencyInfo * pDependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetEvent2KHR( commandBuffer, event, pDependencyInfo ); - } - - void vkCmdResetEvent2KHR( VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags2 stageMask ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResetEvent2KHR( commandBuffer, event, stageMask ); - } - - void vkCmdWaitEvents2KHR( VkCommandBuffer commandBuffer, - uint32_t eventCount, - const VkEvent * pEvents, - const VkDependencyInfo * pDependencyInfos ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWaitEvents2KHR( commandBuffer, eventCount, pEvents, pDependencyInfos ); - } - - void vkCmdPipelineBarrier2KHR( VkCommandBuffer commandBuffer, - const VkDependencyInfo * pDependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdPipelineBarrier2KHR( commandBuffer, pDependencyInfo ); - } - - void vkCmdWriteTimestamp2KHR( VkCommandBuffer commandBuffer, - VkPipelineStageFlags2 stage, - VkQueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteTimestamp2KHR( commandBuffer, stage, queryPool, query ); - } - - VkResult vkQueueSubmit2KHR( VkQueue queue, - uint32_t submitCount, - const VkSubmitInfo2 * pSubmits, - VkFence fence ) const VULKAN_HPP_NOEXCEPT - { - return ::vkQueueSubmit2KHR( queue, submitCount, pSubmits, fence ); - } - - void vkCmdWriteBufferMarker2AMD( VkCommandBuffer commandBuffer, - VkPipelineStageFlags2 stage, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - uint32_t marker ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdWriteBufferMarker2AMD( commandBuffer, stage, dstBuffer, dstOffset, marker ); - } - - void vkGetQueueCheckpointData2NV( VkQueue queue, - uint32_t * pCheckpointDataCount, - VkCheckpointData2NV * pCheckpointData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetQueueCheckpointData2NV( queue, pCheckpointDataCount, pCheckpointData ); - } - - //=== VK_NV_fragment_shading_rate_enums === - - void vkCmdSetFragmentShadingRateEnumNV( VkCommandBuffer commandBuffer, - VkFragmentShadingRateNV shadingRate, - const VkFragmentShadingRateCombinerOpKHR combinerOps[2] ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetFragmentShadingRateEnumNV( commandBuffer, shadingRate, combinerOps ); - } - - //=== VK_KHR_copy_commands2 === - - void vkCmdCopyBuffer2KHR( VkCommandBuffer commandBuffer, - const VkCopyBufferInfo2 * pCopyBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyBuffer2KHR( commandBuffer, pCopyBufferInfo ); - } - - void vkCmdCopyImage2KHR( VkCommandBuffer commandBuffer, - const VkCopyImageInfo2 * pCopyImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyImage2KHR( commandBuffer, pCopyImageInfo ); - } - - void vkCmdCopyBufferToImage2KHR( VkCommandBuffer commandBuffer, - const VkCopyBufferToImageInfo2 * pCopyBufferToImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyBufferToImage2KHR( commandBuffer, pCopyBufferToImageInfo ); - } - - void vkCmdCopyImageToBuffer2KHR( VkCommandBuffer commandBuffer, - const VkCopyImageToBufferInfo2 * pCopyImageToBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdCopyImageToBuffer2KHR( commandBuffer, pCopyImageToBufferInfo ); - } - - void vkCmdBlitImage2KHR( VkCommandBuffer commandBuffer, - const VkBlitImageInfo2 * pBlitImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBlitImage2KHR( commandBuffer, pBlitImageInfo ); - } - - void vkCmdResolveImage2KHR( VkCommandBuffer commandBuffer, - const VkResolveImageInfo2 * pResolveImageInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdResolveImage2KHR( commandBuffer, pResolveImageInfo ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - - VkResult vkAcquireWinrtDisplayNV( VkPhysicalDevice physicalDevice, VkDisplayKHR display ) const VULKAN_HPP_NOEXCEPT - { - return ::vkAcquireWinrtDisplayNV( physicalDevice, display ); - } - - VkResult vkGetWinrtDisplayNV( VkPhysicalDevice physicalDevice, - uint32_t deviceRelativeId, - VkDisplayKHR * pDisplay ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetWinrtDisplayNV( physicalDevice, deviceRelativeId, pDisplay ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - VkResult vkCreateDirectFBSurfaceEXT( VkInstance instance, - const VkDirectFBSurfaceCreateInfoEXT * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateDirectFBSurfaceEXT( instance, pCreateInfo, pAllocator, pSurface ); - } - - VkBool32 vkGetPhysicalDeviceDirectFBPresentationSupportEXT( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - IDirectFB * dfb ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceDirectFBPresentationSupportEXT( physicalDevice, queueFamilyIndex, dfb ); - } -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - - void vkCmdTraceRaysKHR( VkCommandBuffer commandBuffer, - const VkStridedDeviceAddressRegionKHR * pRaygenShaderBindingTable, - const VkStridedDeviceAddressRegionKHR * pMissShaderBindingTable, - const VkStridedDeviceAddressRegionKHR * pHitShaderBindingTable, - const VkStridedDeviceAddressRegionKHR * pCallableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdTraceRaysKHR( commandBuffer, - pRaygenShaderBindingTable, - pMissShaderBindingTable, - pHitShaderBindingTable, - pCallableShaderBindingTable, - width, - height, - depth ); - } - - VkResult vkCreateRayTracingPipelinesKHR( VkDevice device, - VkDeferredOperationKHR deferredOperation, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkRayTracingPipelineCreateInfoKHR * pCreateInfos, - const VkAllocationCallbacks * pAllocator, - VkPipeline * pPipelines ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateRayTracingPipelinesKHR( - device, deferredOperation, pipelineCache, createInfoCount, pCreateInfos, pAllocator, pPipelines ); - } - - VkResult vkGetRayTracingShaderGroupHandlesKHR( VkDevice device, - VkPipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetRayTracingShaderGroupHandlesKHR( device, pipeline, firstGroup, groupCount, dataSize, pData ); - } - - VkResult vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( VkDevice device, - VkPipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( - device, pipeline, firstGroup, groupCount, dataSize, pData ); - } - - void vkCmdTraceRaysIndirectKHR( VkCommandBuffer commandBuffer, - const VkStridedDeviceAddressRegionKHR * pRaygenShaderBindingTable, - const VkStridedDeviceAddressRegionKHR * pMissShaderBindingTable, - const VkStridedDeviceAddressRegionKHR * pHitShaderBindingTable, - const VkStridedDeviceAddressRegionKHR * pCallableShaderBindingTable, - VkDeviceAddress indirectDeviceAddress ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdTraceRaysIndirectKHR( commandBuffer, - pRaygenShaderBindingTable, - pMissShaderBindingTable, - pHitShaderBindingTable, - pCallableShaderBindingTable, - indirectDeviceAddress ); - } - - VkDeviceSize vkGetRayTracingShaderGroupStackSizeKHR( VkDevice device, - VkPipeline pipeline, - uint32_t group, - VkShaderGroupShaderKHR groupShader ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetRayTracingShaderGroupStackSizeKHR( device, pipeline, group, groupShader ); - } - - void vkCmdSetRayTracingPipelineStackSizeKHR( VkCommandBuffer commandBuffer, - uint32_t pipelineStackSize ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetRayTracingPipelineStackSizeKHR( commandBuffer, pipelineStackSize ); - } - - //=== VK_EXT_vertex_input_dynamic_state === - - void vkCmdSetVertexInputEXT( VkCommandBuffer commandBuffer, - uint32_t vertexBindingDescriptionCount, - const VkVertexInputBindingDescription2EXT * pVertexBindingDescriptions, - uint32_t vertexAttributeDescriptionCount, - const VkVertexInputAttributeDescription2EXT * pVertexAttributeDescriptions ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetVertexInputEXT( commandBuffer, - vertexBindingDescriptionCount, - pVertexBindingDescriptions, - vertexAttributeDescriptionCount, - pVertexAttributeDescriptions ); - } - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - - VkResult vkGetMemoryZirconHandleFUCHSIA( VkDevice device, - const VkMemoryGetZirconHandleInfoFUCHSIA * pGetZirconHandleInfo, - zx_handle_t * pZirconHandle ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryZirconHandleFUCHSIA( device, pGetZirconHandleInfo, pZirconHandle ); - } - - VkResult vkGetMemoryZirconHandlePropertiesFUCHSIA( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle, - VkMemoryZirconHandlePropertiesFUCHSIA * pMemoryZirconHandleProperties ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryZirconHandlePropertiesFUCHSIA( - device, handleType, zirconHandle, pMemoryZirconHandleProperties ); - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - - VkResult vkImportSemaphoreZirconHandleFUCHSIA( - VkDevice device, - const VkImportSemaphoreZirconHandleInfoFUCHSIA * pImportSemaphoreZirconHandleInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkImportSemaphoreZirconHandleFUCHSIA( device, pImportSemaphoreZirconHandleInfo ); - } - - VkResult vkGetSemaphoreZirconHandleFUCHSIA( VkDevice device, - const VkSemaphoreGetZirconHandleInfoFUCHSIA * pGetZirconHandleInfo, - zx_handle_t * pZirconHandle ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetSemaphoreZirconHandleFUCHSIA( device, pGetZirconHandleInfo, pZirconHandle ); - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - VkResult vkCreateBufferCollectionFUCHSIA( VkDevice device, - const VkBufferCollectionCreateInfoFUCHSIA * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkBufferCollectionFUCHSIA * pCollection ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateBufferCollectionFUCHSIA( device, pCreateInfo, pAllocator, pCollection ); - } - - VkResult vkSetBufferCollectionImageConstraintsFUCHSIA( - VkDevice device, - VkBufferCollectionFUCHSIA collection, - const VkImageConstraintsInfoFUCHSIA * pImageConstraintsInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetBufferCollectionImageConstraintsFUCHSIA( device, collection, pImageConstraintsInfo ); - } - - VkResult vkSetBufferCollectionBufferConstraintsFUCHSIA( - VkDevice device, - VkBufferCollectionFUCHSIA collection, - const VkBufferConstraintsInfoFUCHSIA * pBufferConstraintsInfo ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetBufferCollectionBufferConstraintsFUCHSIA( device, collection, pBufferConstraintsInfo ); - } - - void vkDestroyBufferCollectionFUCHSIA( VkDevice device, - VkBufferCollectionFUCHSIA collection, - const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT - { - return ::vkDestroyBufferCollectionFUCHSIA( device, collection, pAllocator ); - } - - VkResult vkGetBufferCollectionPropertiesFUCHSIA( VkDevice device, - VkBufferCollectionFUCHSIA collection, - VkBufferCollectionPropertiesFUCHSIA * pProperties ) const - VULKAN_HPP_NOEXCEPT - { - return ::vkGetBufferCollectionPropertiesFUCHSIA( device, collection, pProperties ); - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - - VkResult vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( VkDevice device, - VkRenderPass renderpass, - VkExtent2D * pMaxWorkgroupSize ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( device, renderpass, pMaxWorkgroupSize ); - } - - void vkCmdSubpassShadingHUAWEI( VkCommandBuffer commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSubpassShadingHUAWEI( commandBuffer ); - } - - //=== VK_HUAWEI_invocation_mask === - - void vkCmdBindInvocationMaskHUAWEI( VkCommandBuffer commandBuffer, - VkImageView imageView, - VkImageLayout imageLayout ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdBindInvocationMaskHUAWEI( commandBuffer, imageView, imageLayout ); - } - - //=== VK_NV_external_memory_rdma === - - VkResult vkGetMemoryRemoteAddressNV( VkDevice device, - const VkMemoryGetRemoteAddressInfoNV * pMemoryGetRemoteAddressInfo, - VkRemoteAddressNV * pAddress ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetMemoryRemoteAddressNV( device, pMemoryGetRemoteAddressInfo, pAddress ); - } - - //=== VK_EXT_extended_dynamic_state2 === - - void vkCmdSetPatchControlPointsEXT( VkCommandBuffer commandBuffer, - uint32_t patchControlPoints ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPatchControlPointsEXT( commandBuffer, patchControlPoints ); - } - - void vkCmdSetRasterizerDiscardEnableEXT( VkCommandBuffer commandBuffer, - VkBool32 rasterizerDiscardEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetRasterizerDiscardEnableEXT( commandBuffer, rasterizerDiscardEnable ); - } - - void vkCmdSetDepthBiasEnableEXT( VkCommandBuffer commandBuffer, VkBool32 depthBiasEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetDepthBiasEnableEXT( commandBuffer, depthBiasEnable ); - } - - void vkCmdSetLogicOpEXT( VkCommandBuffer commandBuffer, VkLogicOp logicOp ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetLogicOpEXT( commandBuffer, logicOp ); - } - - void vkCmdSetPrimitiveRestartEnableEXT( VkCommandBuffer commandBuffer, - VkBool32 primitiveRestartEnable ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetPrimitiveRestartEnableEXT( commandBuffer, primitiveRestartEnable ); - } - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - VkResult vkCreateScreenSurfaceQNX( VkInstance instance, - const VkScreenSurfaceCreateInfoQNX * pCreateInfo, - const VkAllocationCallbacks * pAllocator, - VkSurfaceKHR * pSurface ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCreateScreenSurfaceQNX( instance, pCreateInfo, pAllocator, pSurface ); - } - - VkBool32 vkGetPhysicalDeviceScreenPresentationSupportQNX( VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - struct _screen_window * window ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetPhysicalDeviceScreenPresentationSupportQNX( physicalDevice, queueFamilyIndex, window ); - } -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - //=== VK_EXT_color_write_enable === - - void vkCmdSetColorWriteEnableEXT( VkCommandBuffer commandBuffer, - uint32_t attachmentCount, - const VkBool32 * pColorWriteEnables ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdSetColorWriteEnableEXT( commandBuffer, attachmentCount, pColorWriteEnables ); - } - - //=== VK_EXT_multi_draw === - - void vkCmdDrawMultiEXT( VkCommandBuffer commandBuffer, - uint32_t drawCount, - const VkMultiDrawInfoEXT * pVertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawMultiEXT( commandBuffer, drawCount, pVertexInfo, instanceCount, firstInstance, stride ); - } - - void vkCmdDrawMultiIndexedEXT( VkCommandBuffer commandBuffer, - uint32_t drawCount, - const VkMultiDrawIndexedInfoEXT * pIndexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - const int32_t * pVertexOffset ) const VULKAN_HPP_NOEXCEPT - { - return ::vkCmdDrawMultiIndexedEXT( - commandBuffer, drawCount, pIndexInfo, instanceCount, firstInstance, stride, pVertexOffset ); - } - - //=== VK_EXT_pageable_device_local_memory === - - void - vkSetDeviceMemoryPriorityEXT( VkDevice device, VkDeviceMemory memory, float priority ) const VULKAN_HPP_NOEXCEPT - { - return ::vkSetDeviceMemoryPriorityEXT( device, memory, priority ); - } - - //=== VK_KHR_maintenance4 === - - void vkGetDeviceBufferMemoryRequirementsKHR( VkDevice device, - const VkDeviceBufferMemoryRequirements * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceBufferMemoryRequirementsKHR( device, pInfo, pMemoryRequirements ); - } - - void vkGetDeviceImageMemoryRequirementsKHR( VkDevice device, - const VkDeviceImageMemoryRequirements * pInfo, - VkMemoryRequirements2 * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceImageMemoryRequirementsKHR( device, pInfo, pMemoryRequirements ); - } - - void vkGetDeviceImageSparseMemoryRequirementsKHR( - VkDevice device, - const VkDeviceImageMemoryRequirements * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2 * pSparseMemoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - return ::vkGetDeviceImageSparseMemoryRequirementsKHR( - device, pInfo, pSparseMemoryRequirementCount, pSparseMemoryRequirements ); - } - }; -#endif - - class DispatchLoaderDynamic; -#if !defined( VULKAN_HPP_DISPATCH_LOADER_DYNAMIC ) -# if defined( VK_NO_PROTOTYPES ) -# define VULKAN_HPP_DISPATCH_LOADER_DYNAMIC 1 -# else -# define VULKAN_HPP_DISPATCH_LOADER_DYNAMIC 0 -# endif -#endif - -#if !defined( VULKAN_HPP_STORAGE_API ) -# if defined( VULKAN_HPP_STORAGE_SHARED ) -# if defined( _MSC_VER ) -# if defined( VULKAN_HPP_STORAGE_SHARED_EXPORT ) -# define VULKAN_HPP_STORAGE_API __declspec( dllexport ) -# else -# define VULKAN_HPP_STORAGE_API __declspec( dllimport ) -# endif -# elif defined( __clang__ ) || defined( __GNUC__ ) -# if defined( VULKAN_HPP_STORAGE_SHARED_EXPORT ) -# define VULKAN_HPP_STORAGE_API __attribute__( ( visibility( "default" ) ) ) -# else -# define VULKAN_HPP_STORAGE_API -# endif -# else -# define VULKAN_HPP_STORAGE_API -# pragma warning Unknown import / export semantics -# endif -# else -# define VULKAN_HPP_STORAGE_API -# endif -#endif - -#if !defined( VULKAN_HPP_DEFAULT_DISPATCHER ) -# if VULKAN_HPP_DISPATCH_LOADER_DYNAMIC == 1 -# define VULKAN_HPP_DEFAULT_DISPATCHER ::VULKAN_HPP_NAMESPACE::defaultDispatchLoaderDynamic -# define VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE \ - namespace VULKAN_HPP_NAMESPACE \ - { \ - VULKAN_HPP_STORAGE_API DispatchLoaderDynamic defaultDispatchLoaderDynamic; \ - } - extern VULKAN_HPP_STORAGE_API DispatchLoaderDynamic defaultDispatchLoaderDynamic; -# else - static inline ::VULKAN_HPP_NAMESPACE::DispatchLoaderStatic & getDispatchLoaderStatic() - { - static ::VULKAN_HPP_NAMESPACE::DispatchLoaderStatic dls; - return dls; - } -# define VULKAN_HPP_DEFAULT_DISPATCHER ::VULKAN_HPP_NAMESPACE::getDispatchLoaderStatic() -# define VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE -# endif -#endif - -#if !defined( VULKAN_HPP_DEFAULT_DISPATCHER_TYPE ) -# if VULKAN_HPP_DISPATCH_LOADER_DYNAMIC == 1 -# define VULKAN_HPP_DEFAULT_DISPATCHER_TYPE ::VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic -# else -# define VULKAN_HPP_DEFAULT_DISPATCHER_TYPE ::VULKAN_HPP_NAMESPACE::DispatchLoaderStatic -# endif -#endif - -#if defined( VULKAN_HPP_NO_DEFAULT_DISPATCHER ) -# define VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT -# define VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT -# define VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT -#else -# define VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT = {} -# define VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT = nullptr -# define VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT = VULKAN_HPP_DEFAULT_DISPATCHER -#endif - - struct AllocationCallbacks; - - template - class ObjectDestroy - { - public: - ObjectDestroy() = default; - - ObjectDestroy( OwnerType owner, - Optional allocationCallbacks - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & dispatch VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT - : m_owner( owner ) - , m_allocationCallbacks( allocationCallbacks ) - , m_dispatch( &dispatch ) - {} - - OwnerType getOwner() const VULKAN_HPP_NOEXCEPT - { - return m_owner; - } - Optional getAllocator() const VULKAN_HPP_NOEXCEPT - { - return m_allocationCallbacks; - } - - protected: - template - void destroy( T t ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_owner && m_dispatch ); - m_owner.destroy( t, m_allocationCallbacks, *m_dispatch ); - } - - private: - OwnerType m_owner = {}; - Optional m_allocationCallbacks = nullptr; - Dispatch const * m_dispatch = nullptr; - }; - - class NoParent; - - template - class ObjectDestroy - { - public: - ObjectDestroy() = default; - - ObjectDestroy( Optional allocationCallbacks, - Dispatch const & dispatch VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT - : m_allocationCallbacks( allocationCallbacks ) - , m_dispatch( &dispatch ) - {} - - Optional getAllocator() const VULKAN_HPP_NOEXCEPT - { - return m_allocationCallbacks; - } - - protected: - template - void destroy( T t ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_dispatch ); - t.destroy( m_allocationCallbacks, *m_dispatch ); - } - - private: - Optional m_allocationCallbacks = nullptr; - Dispatch const * m_dispatch = nullptr; - }; - - template - class ObjectFree - { - public: - ObjectFree() = default; - - ObjectFree( OwnerType owner, - Optional allocationCallbacks VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & dispatch VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT - : m_owner( owner ) - , m_allocationCallbacks( allocationCallbacks ) - , m_dispatch( &dispatch ) - {} - - OwnerType getOwner() const VULKAN_HPP_NOEXCEPT - { - return m_owner; - } - - Optional getAllocator() const VULKAN_HPP_NOEXCEPT - { - return m_allocationCallbacks; - } - - protected: - template - void destroy( T t ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_owner && m_dispatch ); - m_owner.free( t, m_allocationCallbacks, *m_dispatch ); - } - - private: - OwnerType m_owner = {}; - Optional m_allocationCallbacks = nullptr; - Dispatch const * m_dispatch = nullptr; - }; - - template - class ObjectRelease - { - public: - ObjectRelease() = default; - - ObjectRelease( OwnerType owner, - Dispatch const & dispatch VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT - : m_owner( owner ) - , m_dispatch( &dispatch ) - {} - - OwnerType getOwner() const VULKAN_HPP_NOEXCEPT - { - return m_owner; - } - - protected: - template - void destroy( T t ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( m_owner && m_dispatch ); - m_owner.release( t, *m_dispatch ); - } - - private: - OwnerType m_owner = {}; - Dispatch const * m_dispatch = nullptr; - }; - - template - class PoolFree - { - public: - PoolFree() = default; - - PoolFree( OwnerType owner, - PoolType pool, - Dispatch const & dispatch VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT - : m_owner( owner ) - , m_pool( pool ) - , m_dispatch( &dispatch ) - {} - - OwnerType getOwner() const VULKAN_HPP_NOEXCEPT - { - return m_owner; - } - PoolType getPool() const VULKAN_HPP_NOEXCEPT - { - return m_pool; - } - - protected: - template - void destroy( T t ) VULKAN_HPP_NOEXCEPT - { - m_owner.free( m_pool, t, *m_dispatch ); - } - - private: - OwnerType m_owner = OwnerType(); - PoolType m_pool = PoolType(); - Dispatch const * m_dispatch = nullptr; - }; - - //================== - //=== BASE TYPEs === - //================== - - using Bool32 = uint32_t; - using DeviceAddress = uint64_t; - using DeviceSize = uint64_t; - using RemoteAddressNV = void *; - using SampleMask = uint32_t; - -} // namespace VULKAN_HPP_NAMESPACE - -#include - -#ifndef VULKAN_HPP_NO_EXCEPTIONS -namespace std -{ - template <> - struct is_error_code_enum : public true_type - {}; -} // namespace std -#endif - -namespace VULKAN_HPP_NAMESPACE -{ -#ifndef VULKAN_HPP_NO_EXCEPTIONS - - class ErrorCategoryImpl : public std::error_category - { - public: - virtual const char * name() const VULKAN_HPP_NOEXCEPT override - { - return VULKAN_HPP_NAMESPACE_STRING "::Result"; - } - virtual std::string message( int ev ) const override - { - return to_string( static_cast( ev ) ); - } - }; - - class Error - { - public: - Error() VULKAN_HPP_NOEXCEPT = default; - Error( const Error & ) VULKAN_HPP_NOEXCEPT = default; - virtual ~Error() VULKAN_HPP_NOEXCEPT = default; - - virtual const char * what() const VULKAN_HPP_NOEXCEPT = 0; - }; - - class LogicError - : public Error - , public std::logic_error - { - public: - explicit LogicError( const std::string & what ) : Error(), std::logic_error( what ) {} - explicit LogicError( char const * what ) : Error(), std::logic_error( what ) {} - - virtual const char * what() const VULKAN_HPP_NOEXCEPT - { - return std::logic_error::what(); - } - }; - - class SystemError - : public Error - , public std::system_error - { - public: - SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} - SystemError( std::error_code ec, std::string const & what ) : Error(), std::system_error( ec, what ) {} - SystemError( std::error_code ec, char const * what ) : Error(), std::system_error( ec, what ) {} - SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} - SystemError( int ev, std::error_category const & ecat, std::string const & what ) - : Error(), std::system_error( ev, ecat, what ) - {} - SystemError( int ev, std::error_category const & ecat, char const * what ) - : Error(), std::system_error( ev, ecat, what ) - {} - - virtual const char * what() const VULKAN_HPP_NOEXCEPT - { - return std::system_error::what(); - } - }; - - VULKAN_HPP_INLINE const std::error_category & errorCategory() VULKAN_HPP_NOEXCEPT - { - static ErrorCategoryImpl instance; - return instance; - } - - VULKAN_HPP_INLINE std::error_code make_error_code( Result e ) VULKAN_HPP_NOEXCEPT - { - return std::error_code( static_cast( e ), errorCategory() ); - } - - VULKAN_HPP_INLINE std::error_condition make_error_condition( Result e ) VULKAN_HPP_NOEXCEPT - { - return std::error_condition( static_cast( e ), errorCategory() ); - } - - class OutOfHostMemoryError : public SystemError - { - public: - OutOfHostMemoryError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) - {} - OutOfHostMemoryError( char const * message ) - : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) - {} - }; - - class OutOfDeviceMemoryError : public SystemError - { - public: - OutOfDeviceMemoryError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorOutOfDeviceMemory ), message ) - {} - OutOfDeviceMemoryError( char const * message ) - : SystemError( make_error_code( Result::eErrorOutOfDeviceMemory ), message ) - {} - }; - - class InitializationFailedError : public SystemError - { - public: - InitializationFailedError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorInitializationFailed ), message ) - {} - InitializationFailedError( char const * message ) - : SystemError( make_error_code( Result::eErrorInitializationFailed ), message ) - {} - }; - - class DeviceLostError : public SystemError - { - public: - DeviceLostError( std::string const & message ) : SystemError( make_error_code( Result::eErrorDeviceLost ), message ) - {} - DeviceLostError( char const * message ) : SystemError( make_error_code( Result::eErrorDeviceLost ), message ) {} - }; - - class MemoryMapFailedError : public SystemError - { - public: - MemoryMapFailedError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorMemoryMapFailed ), message ) - {} - MemoryMapFailedError( char const * message ) - : SystemError( make_error_code( Result::eErrorMemoryMapFailed ), message ) - {} - }; - - class LayerNotPresentError : public SystemError - { - public: - LayerNotPresentError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorLayerNotPresent ), message ) - {} - LayerNotPresentError( char const * message ) - : SystemError( make_error_code( Result::eErrorLayerNotPresent ), message ) - {} - }; - - class ExtensionNotPresentError : public SystemError - { - public: - ExtensionNotPresentError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorExtensionNotPresent ), message ) - {} - ExtensionNotPresentError( char const * message ) - : SystemError( make_error_code( Result::eErrorExtensionNotPresent ), message ) - {} - }; - - class FeatureNotPresentError : public SystemError - { - public: - FeatureNotPresentError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorFeatureNotPresent ), message ) - {} - FeatureNotPresentError( char const * message ) - : SystemError( make_error_code( Result::eErrorFeatureNotPresent ), message ) - {} - }; - - class IncompatibleDriverError : public SystemError - { - public: - IncompatibleDriverError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorIncompatibleDriver ), message ) - {} - IncompatibleDriverError( char const * message ) - : SystemError( make_error_code( Result::eErrorIncompatibleDriver ), message ) - {} - }; - - class TooManyObjectsError : public SystemError - { - public: - TooManyObjectsError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorTooManyObjects ), message ) - {} - TooManyObjectsError( char const * message ) - : SystemError( make_error_code( Result::eErrorTooManyObjects ), message ) - {} - }; - - class FormatNotSupportedError : public SystemError - { - public: - FormatNotSupportedError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorFormatNotSupported ), message ) - {} - FormatNotSupportedError( char const * message ) - : SystemError( make_error_code( Result::eErrorFormatNotSupported ), message ) - {} - }; - - class FragmentedPoolError : public SystemError - { - public: - FragmentedPoolError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorFragmentedPool ), message ) - {} - FragmentedPoolError( char const * message ) - : SystemError( make_error_code( Result::eErrorFragmentedPool ), message ) - {} - }; - - class UnknownError : public SystemError - { - public: - UnknownError( std::string const & message ) : SystemError( make_error_code( Result::eErrorUnknown ), message ) {} - UnknownError( char const * message ) : SystemError( make_error_code( Result::eErrorUnknown ), message ) {} - }; - - class OutOfPoolMemoryError : public SystemError - { - public: - OutOfPoolMemoryError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorOutOfPoolMemory ), message ) - {} - OutOfPoolMemoryError( char const * message ) - : SystemError( make_error_code( Result::eErrorOutOfPoolMemory ), message ) - {} - }; - - class InvalidExternalHandleError : public SystemError - { - public: - InvalidExternalHandleError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorInvalidExternalHandle ), message ) - {} - InvalidExternalHandleError( char const * message ) - : SystemError( make_error_code( Result::eErrorInvalidExternalHandle ), message ) - {} - }; - - class FragmentationError : public SystemError - { - public: - FragmentationError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorFragmentation ), message ) - {} - FragmentationError( char const * message ) : SystemError( make_error_code( Result::eErrorFragmentation ), message ) - {} - }; - - class InvalidOpaqueCaptureAddressError : public SystemError - { - public: - InvalidOpaqueCaptureAddressError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorInvalidOpaqueCaptureAddress ), message ) - {} - InvalidOpaqueCaptureAddressError( char const * message ) - : SystemError( make_error_code( Result::eErrorInvalidOpaqueCaptureAddress ), message ) - {} - }; - - class SurfaceLostKHRError : public SystemError - { - public: - SurfaceLostKHRError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorSurfaceLostKHR ), message ) - {} - SurfaceLostKHRError( char const * message ) - : SystemError( make_error_code( Result::eErrorSurfaceLostKHR ), message ) - {} - }; - - class NativeWindowInUseKHRError : public SystemError - { - public: - NativeWindowInUseKHRError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorNativeWindowInUseKHR ), message ) - {} - NativeWindowInUseKHRError( char const * message ) - : SystemError( make_error_code( Result::eErrorNativeWindowInUseKHR ), message ) - {} - }; - - class OutOfDateKHRError : public SystemError - { - public: - OutOfDateKHRError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorOutOfDateKHR ), message ) - {} - OutOfDateKHRError( char const * message ) : SystemError( make_error_code( Result::eErrorOutOfDateKHR ), message ) {} - }; - - class IncompatibleDisplayKHRError : public SystemError - { - public: - IncompatibleDisplayKHRError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorIncompatibleDisplayKHR ), message ) - {} - IncompatibleDisplayKHRError( char const * message ) - : SystemError( make_error_code( Result::eErrorIncompatibleDisplayKHR ), message ) - {} - }; - - class ValidationFailedEXTError : public SystemError - { - public: - ValidationFailedEXTError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorValidationFailedEXT ), message ) - {} - ValidationFailedEXTError( char const * message ) - : SystemError( make_error_code( Result::eErrorValidationFailedEXT ), message ) - {} - }; - - class InvalidShaderNVError : public SystemError - { - public: - InvalidShaderNVError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorInvalidShaderNV ), message ) - {} - InvalidShaderNVError( char const * message ) - : SystemError( make_error_code( Result::eErrorInvalidShaderNV ), message ) - {} - }; - - class InvalidDrmFormatModifierPlaneLayoutEXTError : public SystemError - { - public: - InvalidDrmFormatModifierPlaneLayoutEXTError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT ), message ) - {} - InvalidDrmFormatModifierPlaneLayoutEXTError( char const * message ) - : SystemError( make_error_code( Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT ), message ) - {} - }; - - class NotPermittedKHRError : public SystemError - { - public: - NotPermittedKHRError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorNotPermittedKHR ), message ) - {} - NotPermittedKHRError( char const * message ) - : SystemError( make_error_code( Result::eErrorNotPermittedKHR ), message ) - {} - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - class FullScreenExclusiveModeLostEXTError : public SystemError - { - public: - FullScreenExclusiveModeLostEXTError( std::string const & message ) - : SystemError( make_error_code( Result::eErrorFullScreenExclusiveModeLostEXT ), message ) - {} - FullScreenExclusiveModeLostEXTError( char const * message ) - : SystemError( make_error_code( Result::eErrorFullScreenExclusiveModeLostEXT ), message ) - {} - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - namespace - { - [[noreturn]] void throwResultException( Result result, char const * message ) - { - switch ( result ) - { - case Result::eErrorOutOfHostMemory: throw OutOfHostMemoryError( message ); - case Result::eErrorOutOfDeviceMemory: throw OutOfDeviceMemoryError( message ); - case Result::eErrorInitializationFailed: throw InitializationFailedError( message ); - case Result::eErrorDeviceLost: throw DeviceLostError( message ); - case Result::eErrorMemoryMapFailed: throw MemoryMapFailedError( message ); - case Result::eErrorLayerNotPresent: throw LayerNotPresentError( message ); - case Result::eErrorExtensionNotPresent: throw ExtensionNotPresentError( message ); - case Result::eErrorFeatureNotPresent: throw FeatureNotPresentError( message ); - case Result::eErrorIncompatibleDriver: throw IncompatibleDriverError( message ); - case Result::eErrorTooManyObjects: throw TooManyObjectsError( message ); - case Result::eErrorFormatNotSupported: throw FormatNotSupportedError( message ); - case Result::eErrorFragmentedPool: throw FragmentedPoolError( message ); - case Result::eErrorUnknown: throw UnknownError( message ); - case Result::eErrorOutOfPoolMemory: throw OutOfPoolMemoryError( message ); - case Result::eErrorInvalidExternalHandle: throw InvalidExternalHandleError( message ); - case Result::eErrorFragmentation: throw FragmentationError( message ); - case Result::eErrorInvalidOpaqueCaptureAddress: throw InvalidOpaqueCaptureAddressError( message ); - case Result::eErrorSurfaceLostKHR: throw SurfaceLostKHRError( message ); - case Result::eErrorNativeWindowInUseKHR: throw NativeWindowInUseKHRError( message ); - case Result::eErrorOutOfDateKHR: throw OutOfDateKHRError( message ); - case Result::eErrorIncompatibleDisplayKHR: throw IncompatibleDisplayKHRError( message ); - case Result::eErrorValidationFailedEXT: throw ValidationFailedEXTError( message ); - case Result::eErrorInvalidShaderNV: throw InvalidShaderNVError( message ); - case Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT: - throw InvalidDrmFormatModifierPlaneLayoutEXTError( message ); - case Result::eErrorNotPermittedKHR: throw NotPermittedKHRError( message ); -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - case Result::eErrorFullScreenExclusiveModeLostEXT: throw FullScreenExclusiveModeLostEXTError( message ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - default: throw SystemError( make_error_code( result ) ); - } - } - } // namespace -#endif - - template - void ignore( T const & ) VULKAN_HPP_NOEXCEPT - {} - - template - struct ResultValue - { -#ifdef VULKAN_HPP_HAS_NOEXCEPT - ResultValue( Result r, T & v ) VULKAN_HPP_NOEXCEPT( VULKAN_HPP_NOEXCEPT( T( v ) ) ) -#else - ResultValue( Result r, T & v ) -#endif - : result( r ), value( v ) - {} - -#ifdef VULKAN_HPP_HAS_NOEXCEPT - ResultValue( Result r, T && v ) VULKAN_HPP_NOEXCEPT( VULKAN_HPP_NOEXCEPT( T( std::move( v ) ) ) ) -#else - ResultValue( Result r, T && v ) -#endif - : result( r ), value( std::move( v ) ) - {} - - Result result; - T value; - - operator std::tuple() VULKAN_HPP_NOEXCEPT - { - return std::tuple( result, value ); - } - -#if !defined( VULKAN_HPP_DISABLE_IMPLICIT_RESULT_VALUE_CAST ) - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator T const &() const & VULKAN_HPP_NOEXCEPT - { - return value; - } - - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator T &() & VULKAN_HPP_NOEXCEPT - { - return value; - } - - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator T const &&() const && VULKAN_HPP_NOEXCEPT - { - return std::move( value ); - } - - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator T &&() && VULKAN_HPP_NOEXCEPT - { - return std::move( value ); - } -#endif - }; - -#if !defined( VULKAN_HPP_NO_SMART_HANDLE ) - template - struct ResultValue> - { -# ifdef VULKAN_HPP_HAS_NOEXCEPT - ResultValue( Result r, UniqueHandle && v ) VULKAN_HPP_NOEXCEPT -# else - ResultValue( Result r, UniqueHandle && v ) -# endif - : result( r ) - , value( std::move( v ) ) - {} - - std::tuple> asTuple() - { - return std::make_tuple( result, std::move( value ) ); - } - -# if !defined( VULKAN_HPP_DISABLE_IMPLICIT_RESULT_VALUE_CAST ) - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator UniqueHandle &() & VULKAN_HPP_NOEXCEPT - { - return value; - } - - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator UniqueHandle() VULKAN_HPP_NOEXCEPT - { - return std::move( value ); - } -# endif - - Result result; - UniqueHandle value; - }; - - template - struct ResultValue>> - { -# ifdef VULKAN_HPP_HAS_NOEXCEPT - ResultValue( Result r, std::vector> && v ) VULKAN_HPP_NOEXCEPT -# else - ResultValue( Result r, std::vector> && v ) -# endif - : result( r ) - , value( std::move( v ) ) - {} - - std::tuple>> asTuple() - { - return std::make_tuple( result, std::move( value ) ); - } - - Result result; - std::vector> value; - -# if !defined( VULKAN_HPP_DISABLE_IMPLICIT_RESULT_VALUE_CAST ) - VULKAN_HPP_DEPRECATED( - "Implicit-cast operators on vk::ResultValue are deprecated. Explicitly access the value as member of ResultValue." ) - operator std::tuple> &>() VULKAN_HPP_NOEXCEPT - { - return std::tuple> &>( result, value ); - } -# endif - }; -#endif - - template - struct ResultValueType - { -#ifdef VULKAN_HPP_NO_EXCEPTIONS - typedef ResultValue type; -#else - typedef T type; -#endif - }; - - template <> - struct ResultValueType - { -#ifdef VULKAN_HPP_NO_EXCEPTIONS - typedef Result type; -#else - typedef void type; -#endif - }; - - VULKAN_HPP_INLINE ResultValueType::type createResultValue( Result result, char const * message ) - { -#ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - VULKAN_HPP_ASSERT_ON_RESULT( result == Result::eSuccess ); - return result; -#else - if ( result != Result::eSuccess ) - { - throwResultException( result, message ); - } -#endif - } - - template - VULKAN_HPP_INLINE typename ResultValueType::type createResultValue( Result result, T & data, char const * message ) - { -#ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - VULKAN_HPP_ASSERT_ON_RESULT( result == Result::eSuccess ); - return ResultValue( result, std::move( data ) ); -#else - if ( result != Result::eSuccess ) - { - throwResultException( result, message ); - } - return std::move( data ); -#endif - } - - VULKAN_HPP_INLINE Result createResultValue( Result result, - char const * message, - std::initializer_list successCodes ) - { -#ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - ignore( successCodes ); // just in case VULKAN_HPP_ASSERT_ON_RESULT is empty - VULKAN_HPP_ASSERT_ON_RESULT( std::find( successCodes.begin(), successCodes.end(), result ) != successCodes.end() ); -#else - if ( std::find( successCodes.begin(), successCodes.end(), result ) == successCodes.end() ) - { - throwResultException( result, message ); - } -#endif - return result; - } - - template - VULKAN_HPP_INLINE ResultValue - createResultValue( Result result, T & data, char const * message, std::initializer_list successCodes ) - { -#ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - ignore( successCodes ); // just in case VULKAN_HPP_ASSERT_ON_RESULT is empty - VULKAN_HPP_ASSERT_ON_RESULT( std::find( successCodes.begin(), successCodes.end(), result ) != successCodes.end() ); -#else - if ( std::find( successCodes.begin(), successCodes.end(), result ) == successCodes.end() ) - { - throwResultException( result, message ); - } -#endif - return ResultValue( result, std::move( data ) ); - } - -#ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type createResultValue( - Result result, T & data, char const * message, typename UniqueHandleTraits::deleter const & deleter ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - VULKAN_HPP_ASSERT_ON_RESULT( result == Result::eSuccess ); - return ResultValue>( result, UniqueHandle( data, deleter ) ); -# else - if ( result != Result::eSuccess ) - { - throwResultException( result, message ); - } - return UniqueHandle( data, deleter ); -# endif - } - - template - VULKAN_HPP_INLINE ResultValue> - createResultValue( Result result, - T & data, - char const * message, - std::initializer_list successCodes, - typename UniqueHandleTraits::deleter const & deleter ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - ignore( successCodes ); // just in case VULKAN_HPP_ASSERT_ON_RESULT is empty - VULKAN_HPP_ASSERT_ON_RESULT( std::find( successCodes.begin(), successCodes.end(), result ) != successCodes.end() ); -# else - if ( std::find( successCodes.begin(), successCodes.end(), result ) == successCodes.end() ) - { - throwResultException( result, message ); - } -# endif - return ResultValue>( result, UniqueHandle( data, deleter ) ); - } - - template - VULKAN_HPP_INLINE typename ResultValueType>>::type - createResultValue( Result result, std::vector> && data, char const * message ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - VULKAN_HPP_ASSERT_ON_RESULT( result == Result::eSuccess ); - return ResultValue>>( result, std::move( data ) ); -# else - if ( result != Result::eSuccess ) - { - throwResultException( result, message ); - } - return std::move( data ); -# endif - } - - template - VULKAN_HPP_INLINE ResultValue>> - createResultValue( Result result, - std::vector> && data, - char const * message, - std::initializer_list successCodes ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - ignore( message ); - ignore( successCodes ); // just in case VULKAN_HPP_ASSERT_ON_RESULT is empty - VULKAN_HPP_ASSERT_ON_RESULT( std::find( successCodes.begin(), successCodes.end(), result ) != successCodes.end() ); -# else - if ( std::find( successCodes.begin(), successCodes.end(), result ) == successCodes.end() ) - { - throwResultException( result, message ); - } -# endif - return ResultValue>>( result, std::move( data ) ); - } -#endif -} // namespace VULKAN_HPP_NAMESPACE - -// clang-format off -#include -#include -#include -// clang-format on - -namespace VULKAN_HPP_NAMESPACE -{ - //======================= - //=== STRUCTS EXTENDS === - //======================= - - //=== VK_VERSION_1_1 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_VERSION_1_2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_VERSION_1_3 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_swapchain === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_display_swapchain === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_debug_report === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_rasterization_order === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_dedicated_allocation === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_transform_feedback === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h264 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h265 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h264 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_AMD_texture_gather_bias_lod === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_dynamic_rendering === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_corner_sampled_image === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_external_memory === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_win32_keyed_mutex === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_validation_flags === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_astc_decode_mode === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_keyed_mutex === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_push_descriptor === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_conditional_rendering === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_incremental_present === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_clip_space_w_scaling === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_display_control === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_GOOGLE_display_timing === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NVX_multiview_per_view_attributes === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_viewport_swizzle === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_discard_rectangles === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_conservative_rasterization === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_depth_clip_enable === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_shared_presentable_image === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_performance_query === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_debug_utils === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_blend_operation_advanced === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_fragment_coverage_to_color === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_acceleration_structure === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_framebuffer_mixed_samples === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_shader_sm_builtins === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_image_drm_format_modifier === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_validation_cache === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_portability_subset === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_shading_rate_image === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_ray_tracing === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_representative_fragment_test === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_filter_cubic === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_external_memory_host === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_shader_clock === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_pipeline_compiler_control === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_shader_core_properties === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h265 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_global_priority === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_memory_overallocation_behavior === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_vertex_attribute_divisor === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_frame_token === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_compute_shader_derivatives === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_mesh_shader === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_fragment_shader_barycentric === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_shader_image_footprint === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_scissor_exclusive === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_device_diagnostic_checkpoints === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_INTEL_shader_integer_functions2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_INTEL_performance_query === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_pci_bus_info === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_display_native_hdr === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_fragment_density_map === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_fragment_shading_rate === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_shader_core_properties2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_AMD_device_coherent_memory === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_shader_image_atomic_int64 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_memory_budget === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_memory_priority === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_surface_protected_capabilities === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_dedicated_allocation_image_aliasing === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_buffer_device_address === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_validation_features === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_present_wait === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_cooperative_matrix === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_coverage_reduction_mode === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_fragment_shader_interlock === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_ycbcr_image_arrays === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_provoking_vertex === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_line_rasterization === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_shader_atomic_float === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_index_type_uint8 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_extended_dynamic_state === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_pipeline_executable_properties === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_shader_atomic_float2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_device_generated_commands === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_inherited_viewport_scissor === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_texel_buffer_alignment === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_QCOM_render_pass_transform === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_device_memory_report === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_robustness2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_custom_border_color === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_present_id === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_device_diagnostics_config === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_synchronization2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_shader_subgroup_uniform_control_flow === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_fragment_shading_rate_enums === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_ray_tracing_motion_blur === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_ycbcr_2plane_444_formats === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_fragment_density_map2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_QCOM_rotated_copy_commands === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_workgroup_memory_explicit_layout === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_4444_formats === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_ARM_rasterization_order_attachment_access === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_rgba10x6_formats === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_ray_tracing_pipeline === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_KHR_ray_query === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_VALVE_mutable_descriptor_type === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_vertex_input_dynamic_state === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_physical_device_drm === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_depth_clip_control === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_primitive_topology_list_restart === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_HUAWEI_invocation_mask === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_external_memory_rdma === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_extended_dynamic_state2 === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_color_write_enable === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_image_view_min_lod === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_multi_draw === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_border_color_swizzle === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_EXT_pageable_device_local_memory === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_QCOM_fragment_density_map_offset === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - - //=== VK_NV_linear_color_attachment === - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - template <> - struct StructExtends - { - enum - { - value = true - }; - }; - -#if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL - class DynamicLoader - { - public: -# ifdef VULKAN_HPP_NO_EXCEPTIONS - DynamicLoader( std::string const & vulkanLibraryName = {} ) VULKAN_HPP_NOEXCEPT -# else - DynamicLoader( std::string const & vulkanLibraryName = {} ) -# endif - { - if ( !vulkanLibraryName.empty() ) - { -# if defined( __unix__ ) || defined( __APPLE__ ) || defined( __QNXNTO__ ) || defined( __Fuchsia__ ) - m_library = dlopen( vulkanLibraryName.c_str(), RTLD_NOW | RTLD_LOCAL ); -# elif defined( _WIN32 ) - m_library = ::LoadLibraryA( vulkanLibraryName.c_str() ); -# else -# error unsupported platform -# endif - } - else - { -# if defined( __unix__ ) || defined( __QNXNTO__ ) || defined( __Fuchsia__ ) - m_library = dlopen( "libvulkan.so", RTLD_NOW | RTLD_LOCAL ); - if ( m_library == nullptr ) - { - m_library = dlopen( "libvulkan.so.1", RTLD_NOW | RTLD_LOCAL ); - } -# elif defined( __APPLE__ ) - m_library = dlopen( "libvulkan.dylib", RTLD_NOW | RTLD_LOCAL ); -# elif defined( _WIN32 ) - m_library = ::LoadLibraryA( "vulkan-1.dll" ); -# else -# error unsupported platform -# endif - } - -# ifndef VULKAN_HPP_NO_EXCEPTIONS - if ( m_library == nullptr ) - { - // NOTE there should be an InitializationFailedError, but msvc insists on the symbol does not exist within the - // scope of this function. - throw std::runtime_error( "Failed to load vulkan library!" ); - } -# endif - } - - DynamicLoader( DynamicLoader const & ) = delete; - - DynamicLoader( DynamicLoader && other ) VULKAN_HPP_NOEXCEPT : m_library( other.m_library ) - { - other.m_library = nullptr; - } - - DynamicLoader & operator=( DynamicLoader const & ) = delete; - - DynamicLoader & operator=( DynamicLoader && other ) VULKAN_HPP_NOEXCEPT - { - std::swap( m_library, other.m_library ); - return *this; - } - - ~DynamicLoader() VULKAN_HPP_NOEXCEPT - { - if ( m_library ) - { -# if defined( __unix__ ) || defined( __APPLE__ ) || defined( __QNXNTO__ ) || defined( __Fuchsia__ ) - dlclose( m_library ); -# elif defined( _WIN32 ) - ::FreeLibrary( m_library ); -# else -# error unsupported platform -# endif - } - } - - template - T getProcAddress( const char * function ) const VULKAN_HPP_NOEXCEPT - { -# if defined( __unix__ ) || defined( __APPLE__ ) || defined( __QNXNTO__ ) || defined( __Fuchsia__ ) - return (T)dlsym( m_library, function ); -# elif defined( _WIN32 ) - return ( T )::GetProcAddress( m_library, function ); -# else -# error unsupported platform -# endif - } - - bool success() const VULKAN_HPP_NOEXCEPT - { - return m_library != nullptr; - } - - private: -# if defined( __unix__ ) || defined( __APPLE__ ) || defined( __QNXNTO__ ) || defined( __Fuchsia__ ) - void * m_library; -# elif defined( _WIN32 ) - ::HINSTANCE m_library; -# else -# error unsupported platform -# endif - }; -#endif - - using PFN_dummy = void ( * )(); - - class DispatchLoaderDynamic : public DispatchLoaderBase - { - public: - //=== VK_VERSION_1_0 === - PFN_vkCreateInstance vkCreateInstance = 0; - PFN_vkDestroyInstance vkDestroyInstance = 0; - PFN_vkEnumeratePhysicalDevices vkEnumeratePhysicalDevices = 0; - PFN_vkGetPhysicalDeviceFeatures vkGetPhysicalDeviceFeatures = 0; - PFN_vkGetPhysicalDeviceFormatProperties vkGetPhysicalDeviceFormatProperties = 0; - PFN_vkGetPhysicalDeviceImageFormatProperties vkGetPhysicalDeviceImageFormatProperties = 0; - PFN_vkGetPhysicalDeviceProperties vkGetPhysicalDeviceProperties = 0; - PFN_vkGetPhysicalDeviceQueueFamilyProperties vkGetPhysicalDeviceQueueFamilyProperties = 0; - PFN_vkGetPhysicalDeviceMemoryProperties vkGetPhysicalDeviceMemoryProperties = 0; - PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr = 0; - PFN_vkGetDeviceProcAddr vkGetDeviceProcAddr = 0; - PFN_vkCreateDevice vkCreateDevice = 0; - PFN_vkDestroyDevice vkDestroyDevice = 0; - PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties = 0; - PFN_vkEnumerateDeviceExtensionProperties vkEnumerateDeviceExtensionProperties = 0; - PFN_vkEnumerateInstanceLayerProperties vkEnumerateInstanceLayerProperties = 0; - PFN_vkEnumerateDeviceLayerProperties vkEnumerateDeviceLayerProperties = 0; - PFN_vkGetDeviceQueue vkGetDeviceQueue = 0; - PFN_vkQueueSubmit vkQueueSubmit = 0; - PFN_vkQueueWaitIdle vkQueueWaitIdle = 0; - PFN_vkDeviceWaitIdle vkDeviceWaitIdle = 0; - PFN_vkAllocateMemory vkAllocateMemory = 0; - PFN_vkFreeMemory vkFreeMemory = 0; - PFN_vkMapMemory vkMapMemory = 0; - PFN_vkUnmapMemory vkUnmapMemory = 0; - PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges = 0; - PFN_vkInvalidateMappedMemoryRanges vkInvalidateMappedMemoryRanges = 0; - PFN_vkGetDeviceMemoryCommitment vkGetDeviceMemoryCommitment = 0; - PFN_vkBindBufferMemory vkBindBufferMemory = 0; - PFN_vkBindImageMemory vkBindImageMemory = 0; - PFN_vkGetBufferMemoryRequirements vkGetBufferMemoryRequirements = 0; - PFN_vkGetImageMemoryRequirements vkGetImageMemoryRequirements = 0; - PFN_vkGetImageSparseMemoryRequirements vkGetImageSparseMemoryRequirements = 0; - PFN_vkGetPhysicalDeviceSparseImageFormatProperties vkGetPhysicalDeviceSparseImageFormatProperties = 0; - PFN_vkQueueBindSparse vkQueueBindSparse = 0; - PFN_vkCreateFence vkCreateFence = 0; - PFN_vkDestroyFence vkDestroyFence = 0; - PFN_vkResetFences vkResetFences = 0; - PFN_vkGetFenceStatus vkGetFenceStatus = 0; - PFN_vkWaitForFences vkWaitForFences = 0; - PFN_vkCreateSemaphore vkCreateSemaphore = 0; - PFN_vkDestroySemaphore vkDestroySemaphore = 0; - PFN_vkCreateEvent vkCreateEvent = 0; - PFN_vkDestroyEvent vkDestroyEvent = 0; - PFN_vkGetEventStatus vkGetEventStatus = 0; - PFN_vkSetEvent vkSetEvent = 0; - PFN_vkResetEvent vkResetEvent = 0; - PFN_vkCreateQueryPool vkCreateQueryPool = 0; - PFN_vkDestroyQueryPool vkDestroyQueryPool = 0; - PFN_vkGetQueryPoolResults vkGetQueryPoolResults = 0; - PFN_vkCreateBuffer vkCreateBuffer = 0; - PFN_vkDestroyBuffer vkDestroyBuffer = 0; - PFN_vkCreateBufferView vkCreateBufferView = 0; - PFN_vkDestroyBufferView vkDestroyBufferView = 0; - PFN_vkCreateImage vkCreateImage = 0; - PFN_vkDestroyImage vkDestroyImage = 0; - PFN_vkGetImageSubresourceLayout vkGetImageSubresourceLayout = 0; - PFN_vkCreateImageView vkCreateImageView = 0; - PFN_vkDestroyImageView vkDestroyImageView = 0; - PFN_vkCreateShaderModule vkCreateShaderModule = 0; - PFN_vkDestroyShaderModule vkDestroyShaderModule = 0; - PFN_vkCreatePipelineCache vkCreatePipelineCache = 0; - PFN_vkDestroyPipelineCache vkDestroyPipelineCache = 0; - PFN_vkGetPipelineCacheData vkGetPipelineCacheData = 0; - PFN_vkMergePipelineCaches vkMergePipelineCaches = 0; - PFN_vkCreateGraphicsPipelines vkCreateGraphicsPipelines = 0; - PFN_vkCreateComputePipelines vkCreateComputePipelines = 0; - PFN_vkDestroyPipeline vkDestroyPipeline = 0; - PFN_vkCreatePipelineLayout vkCreatePipelineLayout = 0; - PFN_vkDestroyPipelineLayout vkDestroyPipelineLayout = 0; - PFN_vkCreateSampler vkCreateSampler = 0; - PFN_vkDestroySampler vkDestroySampler = 0; - PFN_vkCreateDescriptorSetLayout vkCreateDescriptorSetLayout = 0; - PFN_vkDestroyDescriptorSetLayout vkDestroyDescriptorSetLayout = 0; - PFN_vkCreateDescriptorPool vkCreateDescriptorPool = 0; - PFN_vkDestroyDescriptorPool vkDestroyDescriptorPool = 0; - PFN_vkResetDescriptorPool vkResetDescriptorPool = 0; - PFN_vkAllocateDescriptorSets vkAllocateDescriptorSets = 0; - PFN_vkFreeDescriptorSets vkFreeDescriptorSets = 0; - PFN_vkUpdateDescriptorSets vkUpdateDescriptorSets = 0; - PFN_vkCreateFramebuffer vkCreateFramebuffer = 0; - PFN_vkDestroyFramebuffer vkDestroyFramebuffer = 0; - PFN_vkCreateRenderPass vkCreateRenderPass = 0; - PFN_vkDestroyRenderPass vkDestroyRenderPass = 0; - PFN_vkGetRenderAreaGranularity vkGetRenderAreaGranularity = 0; - PFN_vkCreateCommandPool vkCreateCommandPool = 0; - PFN_vkDestroyCommandPool vkDestroyCommandPool = 0; - PFN_vkResetCommandPool vkResetCommandPool = 0; - PFN_vkAllocateCommandBuffers vkAllocateCommandBuffers = 0; - PFN_vkFreeCommandBuffers vkFreeCommandBuffers = 0; - PFN_vkBeginCommandBuffer vkBeginCommandBuffer = 0; - PFN_vkEndCommandBuffer vkEndCommandBuffer = 0; - PFN_vkResetCommandBuffer vkResetCommandBuffer = 0; - PFN_vkCmdBindPipeline vkCmdBindPipeline = 0; - PFN_vkCmdSetViewport vkCmdSetViewport = 0; - PFN_vkCmdSetScissor vkCmdSetScissor = 0; - PFN_vkCmdSetLineWidth vkCmdSetLineWidth = 0; - PFN_vkCmdSetDepthBias vkCmdSetDepthBias = 0; - PFN_vkCmdSetBlendConstants vkCmdSetBlendConstants = 0; - PFN_vkCmdSetDepthBounds vkCmdSetDepthBounds = 0; - PFN_vkCmdSetStencilCompareMask vkCmdSetStencilCompareMask = 0; - PFN_vkCmdSetStencilWriteMask vkCmdSetStencilWriteMask = 0; - PFN_vkCmdSetStencilReference vkCmdSetStencilReference = 0; - PFN_vkCmdBindDescriptorSets vkCmdBindDescriptorSets = 0; - PFN_vkCmdBindIndexBuffer vkCmdBindIndexBuffer = 0; - PFN_vkCmdBindVertexBuffers vkCmdBindVertexBuffers = 0; - PFN_vkCmdDraw vkCmdDraw = 0; - PFN_vkCmdDrawIndexed vkCmdDrawIndexed = 0; - PFN_vkCmdDrawIndirect vkCmdDrawIndirect = 0; - PFN_vkCmdDrawIndexedIndirect vkCmdDrawIndexedIndirect = 0; - PFN_vkCmdDispatch vkCmdDispatch = 0; - PFN_vkCmdDispatchIndirect vkCmdDispatchIndirect = 0; - PFN_vkCmdCopyBuffer vkCmdCopyBuffer = 0; - PFN_vkCmdCopyImage vkCmdCopyImage = 0; - PFN_vkCmdBlitImage vkCmdBlitImage = 0; - PFN_vkCmdCopyBufferToImage vkCmdCopyBufferToImage = 0; - PFN_vkCmdCopyImageToBuffer vkCmdCopyImageToBuffer = 0; - PFN_vkCmdUpdateBuffer vkCmdUpdateBuffer = 0; - PFN_vkCmdFillBuffer vkCmdFillBuffer = 0; - PFN_vkCmdClearColorImage vkCmdClearColorImage = 0; - PFN_vkCmdClearDepthStencilImage vkCmdClearDepthStencilImage = 0; - PFN_vkCmdClearAttachments vkCmdClearAttachments = 0; - PFN_vkCmdResolveImage vkCmdResolveImage = 0; - PFN_vkCmdSetEvent vkCmdSetEvent = 0; - PFN_vkCmdResetEvent vkCmdResetEvent = 0; - PFN_vkCmdWaitEvents vkCmdWaitEvents = 0; - PFN_vkCmdPipelineBarrier vkCmdPipelineBarrier = 0; - PFN_vkCmdBeginQuery vkCmdBeginQuery = 0; - PFN_vkCmdEndQuery vkCmdEndQuery = 0; - PFN_vkCmdResetQueryPool vkCmdResetQueryPool = 0; - PFN_vkCmdWriteTimestamp vkCmdWriteTimestamp = 0; - PFN_vkCmdCopyQueryPoolResults vkCmdCopyQueryPoolResults = 0; - PFN_vkCmdPushConstants vkCmdPushConstants = 0; - PFN_vkCmdBeginRenderPass vkCmdBeginRenderPass = 0; - PFN_vkCmdNextSubpass vkCmdNextSubpass = 0; - PFN_vkCmdEndRenderPass vkCmdEndRenderPass = 0; - PFN_vkCmdExecuteCommands vkCmdExecuteCommands = 0; - - //=== VK_VERSION_1_1 === - PFN_vkEnumerateInstanceVersion vkEnumerateInstanceVersion = 0; - PFN_vkBindBufferMemory2 vkBindBufferMemory2 = 0; - PFN_vkBindImageMemory2 vkBindImageMemory2 = 0; - PFN_vkGetDeviceGroupPeerMemoryFeatures vkGetDeviceGroupPeerMemoryFeatures = 0; - PFN_vkCmdSetDeviceMask vkCmdSetDeviceMask = 0; - PFN_vkCmdDispatchBase vkCmdDispatchBase = 0; - PFN_vkEnumeratePhysicalDeviceGroups vkEnumeratePhysicalDeviceGroups = 0; - PFN_vkGetImageMemoryRequirements2 vkGetImageMemoryRequirements2 = 0; - PFN_vkGetBufferMemoryRequirements2 vkGetBufferMemoryRequirements2 = 0; - PFN_vkGetImageSparseMemoryRequirements2 vkGetImageSparseMemoryRequirements2 = 0; - PFN_vkGetPhysicalDeviceFeatures2 vkGetPhysicalDeviceFeatures2 = 0; - PFN_vkGetPhysicalDeviceProperties2 vkGetPhysicalDeviceProperties2 = 0; - PFN_vkGetPhysicalDeviceFormatProperties2 vkGetPhysicalDeviceFormatProperties2 = 0; - PFN_vkGetPhysicalDeviceImageFormatProperties2 vkGetPhysicalDeviceImageFormatProperties2 = 0; - PFN_vkGetPhysicalDeviceQueueFamilyProperties2 vkGetPhysicalDeviceQueueFamilyProperties2 = 0; - PFN_vkGetPhysicalDeviceMemoryProperties2 vkGetPhysicalDeviceMemoryProperties2 = 0; - PFN_vkGetPhysicalDeviceSparseImageFormatProperties2 vkGetPhysicalDeviceSparseImageFormatProperties2 = 0; - PFN_vkTrimCommandPool vkTrimCommandPool = 0; - PFN_vkGetDeviceQueue2 vkGetDeviceQueue2 = 0; - PFN_vkCreateSamplerYcbcrConversion vkCreateSamplerYcbcrConversion = 0; - PFN_vkDestroySamplerYcbcrConversion vkDestroySamplerYcbcrConversion = 0; - PFN_vkCreateDescriptorUpdateTemplate vkCreateDescriptorUpdateTemplate = 0; - PFN_vkDestroyDescriptorUpdateTemplate vkDestroyDescriptorUpdateTemplate = 0; - PFN_vkUpdateDescriptorSetWithTemplate vkUpdateDescriptorSetWithTemplate = 0; - PFN_vkGetPhysicalDeviceExternalBufferProperties vkGetPhysicalDeviceExternalBufferProperties = 0; - PFN_vkGetPhysicalDeviceExternalFenceProperties vkGetPhysicalDeviceExternalFenceProperties = 0; - PFN_vkGetPhysicalDeviceExternalSemaphoreProperties vkGetPhysicalDeviceExternalSemaphoreProperties = 0; - PFN_vkGetDescriptorSetLayoutSupport vkGetDescriptorSetLayoutSupport = 0; - - //=== VK_VERSION_1_2 === - PFN_vkCmdDrawIndirectCount vkCmdDrawIndirectCount = 0; - PFN_vkCmdDrawIndexedIndirectCount vkCmdDrawIndexedIndirectCount = 0; - PFN_vkCreateRenderPass2 vkCreateRenderPass2 = 0; - PFN_vkCmdBeginRenderPass2 vkCmdBeginRenderPass2 = 0; - PFN_vkCmdNextSubpass2 vkCmdNextSubpass2 = 0; - PFN_vkCmdEndRenderPass2 vkCmdEndRenderPass2 = 0; - PFN_vkResetQueryPool vkResetQueryPool = 0; - PFN_vkGetSemaphoreCounterValue vkGetSemaphoreCounterValue = 0; - PFN_vkWaitSemaphores vkWaitSemaphores = 0; - PFN_vkSignalSemaphore vkSignalSemaphore = 0; - PFN_vkGetBufferDeviceAddress vkGetBufferDeviceAddress = 0; - PFN_vkGetBufferOpaqueCaptureAddress vkGetBufferOpaqueCaptureAddress = 0; - PFN_vkGetDeviceMemoryOpaqueCaptureAddress vkGetDeviceMemoryOpaqueCaptureAddress = 0; - - //=== VK_VERSION_1_3 === - PFN_vkGetPhysicalDeviceToolProperties vkGetPhysicalDeviceToolProperties = 0; - PFN_vkCreatePrivateDataSlot vkCreatePrivateDataSlot = 0; - PFN_vkDestroyPrivateDataSlot vkDestroyPrivateDataSlot = 0; - PFN_vkSetPrivateData vkSetPrivateData = 0; - PFN_vkGetPrivateData vkGetPrivateData = 0; - PFN_vkCmdSetEvent2 vkCmdSetEvent2 = 0; - PFN_vkCmdResetEvent2 vkCmdResetEvent2 = 0; - PFN_vkCmdWaitEvents2 vkCmdWaitEvents2 = 0; - PFN_vkCmdPipelineBarrier2 vkCmdPipelineBarrier2 = 0; - PFN_vkCmdWriteTimestamp2 vkCmdWriteTimestamp2 = 0; - PFN_vkQueueSubmit2 vkQueueSubmit2 = 0; - PFN_vkCmdCopyBuffer2 vkCmdCopyBuffer2 = 0; - PFN_vkCmdCopyImage2 vkCmdCopyImage2 = 0; - PFN_vkCmdCopyBufferToImage2 vkCmdCopyBufferToImage2 = 0; - PFN_vkCmdCopyImageToBuffer2 vkCmdCopyImageToBuffer2 = 0; - PFN_vkCmdBlitImage2 vkCmdBlitImage2 = 0; - PFN_vkCmdResolveImage2 vkCmdResolveImage2 = 0; - PFN_vkCmdBeginRendering vkCmdBeginRendering = 0; - PFN_vkCmdEndRendering vkCmdEndRendering = 0; - PFN_vkCmdSetCullMode vkCmdSetCullMode = 0; - PFN_vkCmdSetFrontFace vkCmdSetFrontFace = 0; - PFN_vkCmdSetPrimitiveTopology vkCmdSetPrimitiveTopology = 0; - PFN_vkCmdSetViewportWithCount vkCmdSetViewportWithCount = 0; - PFN_vkCmdSetScissorWithCount vkCmdSetScissorWithCount = 0; - PFN_vkCmdBindVertexBuffers2 vkCmdBindVertexBuffers2 = 0; - PFN_vkCmdSetDepthTestEnable vkCmdSetDepthTestEnable = 0; - PFN_vkCmdSetDepthWriteEnable vkCmdSetDepthWriteEnable = 0; - PFN_vkCmdSetDepthCompareOp vkCmdSetDepthCompareOp = 0; - PFN_vkCmdSetDepthBoundsTestEnable vkCmdSetDepthBoundsTestEnable = 0; - PFN_vkCmdSetStencilTestEnable vkCmdSetStencilTestEnable = 0; - PFN_vkCmdSetStencilOp vkCmdSetStencilOp = 0; - PFN_vkCmdSetRasterizerDiscardEnable vkCmdSetRasterizerDiscardEnable = 0; - PFN_vkCmdSetDepthBiasEnable vkCmdSetDepthBiasEnable = 0; - PFN_vkCmdSetPrimitiveRestartEnable vkCmdSetPrimitiveRestartEnable = 0; - PFN_vkGetDeviceBufferMemoryRequirements vkGetDeviceBufferMemoryRequirements = 0; - PFN_vkGetDeviceImageMemoryRequirements vkGetDeviceImageMemoryRequirements = 0; - PFN_vkGetDeviceImageSparseMemoryRequirements vkGetDeviceImageSparseMemoryRequirements = 0; - - //=== VK_KHR_surface === - PFN_vkDestroySurfaceKHR vkDestroySurfaceKHR = 0; - PFN_vkGetPhysicalDeviceSurfaceSupportKHR vkGetPhysicalDeviceSurfaceSupportKHR = 0; - PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR vkGetPhysicalDeviceSurfaceCapabilitiesKHR = 0; - PFN_vkGetPhysicalDeviceSurfaceFormatsKHR vkGetPhysicalDeviceSurfaceFormatsKHR = 0; - PFN_vkGetPhysicalDeviceSurfacePresentModesKHR vkGetPhysicalDeviceSurfacePresentModesKHR = 0; - - //=== VK_KHR_swapchain === - PFN_vkCreateSwapchainKHR vkCreateSwapchainKHR = 0; - PFN_vkDestroySwapchainKHR vkDestroySwapchainKHR = 0; - PFN_vkGetSwapchainImagesKHR vkGetSwapchainImagesKHR = 0; - PFN_vkAcquireNextImageKHR vkAcquireNextImageKHR = 0; - PFN_vkQueuePresentKHR vkQueuePresentKHR = 0; - PFN_vkGetDeviceGroupPresentCapabilitiesKHR vkGetDeviceGroupPresentCapabilitiesKHR = 0; - PFN_vkGetDeviceGroupSurfacePresentModesKHR vkGetDeviceGroupSurfacePresentModesKHR = 0; - PFN_vkGetPhysicalDevicePresentRectanglesKHR vkGetPhysicalDevicePresentRectanglesKHR = 0; - PFN_vkAcquireNextImage2KHR vkAcquireNextImage2KHR = 0; - - //=== VK_KHR_display === - PFN_vkGetPhysicalDeviceDisplayPropertiesKHR vkGetPhysicalDeviceDisplayPropertiesKHR = 0; - PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR vkGetPhysicalDeviceDisplayPlanePropertiesKHR = 0; - PFN_vkGetDisplayPlaneSupportedDisplaysKHR vkGetDisplayPlaneSupportedDisplaysKHR = 0; - PFN_vkGetDisplayModePropertiesKHR vkGetDisplayModePropertiesKHR = 0; - PFN_vkCreateDisplayModeKHR vkCreateDisplayModeKHR = 0; - PFN_vkGetDisplayPlaneCapabilitiesKHR vkGetDisplayPlaneCapabilitiesKHR = 0; - PFN_vkCreateDisplayPlaneSurfaceKHR vkCreateDisplayPlaneSurfaceKHR = 0; - - //=== VK_KHR_display_swapchain === - PFN_vkCreateSharedSwapchainsKHR vkCreateSharedSwapchainsKHR = 0; - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - PFN_vkCreateXlibSurfaceKHR vkCreateXlibSurfaceKHR = 0; - PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR vkGetPhysicalDeviceXlibPresentationSupportKHR = 0; -#else - PFN_dummy vkCreateXlibSurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceXlibPresentationSupportKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - PFN_vkCreateXcbSurfaceKHR vkCreateXcbSurfaceKHR = 0; - PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR vkGetPhysicalDeviceXcbPresentationSupportKHR = 0; -#else - PFN_dummy vkCreateXcbSurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceXcbPresentationSupportKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - PFN_vkCreateWaylandSurfaceKHR vkCreateWaylandSurfaceKHR = 0; - PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR vkGetPhysicalDeviceWaylandPresentationSupportKHR = 0; -#else - PFN_dummy vkCreateWaylandSurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceWaylandPresentationSupportKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - PFN_vkCreateAndroidSurfaceKHR vkCreateAndroidSurfaceKHR = 0; -#else - PFN_dummy vkCreateAndroidSurfaceKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - PFN_vkCreateWin32SurfaceKHR vkCreateWin32SurfaceKHR = 0; - PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR vkGetPhysicalDeviceWin32PresentationSupportKHR = 0; -#else - PFN_dummy vkCreateWin32SurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceWin32PresentationSupportKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - PFN_vkCreateDebugReportCallbackEXT vkCreateDebugReportCallbackEXT = 0; - PFN_vkDestroyDebugReportCallbackEXT vkDestroyDebugReportCallbackEXT = 0; - PFN_vkDebugReportMessageEXT vkDebugReportMessageEXT = 0; - - //=== VK_EXT_debug_marker === - PFN_vkDebugMarkerSetObjectTagEXT vkDebugMarkerSetObjectTagEXT = 0; - PFN_vkDebugMarkerSetObjectNameEXT vkDebugMarkerSetObjectNameEXT = 0; - PFN_vkCmdDebugMarkerBeginEXT vkCmdDebugMarkerBeginEXT = 0; - PFN_vkCmdDebugMarkerEndEXT vkCmdDebugMarkerEndEXT = 0; - PFN_vkCmdDebugMarkerInsertEXT vkCmdDebugMarkerInsertEXT = 0; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - PFN_vkGetPhysicalDeviceVideoCapabilitiesKHR vkGetPhysicalDeviceVideoCapabilitiesKHR = 0; - PFN_vkGetPhysicalDeviceVideoFormatPropertiesKHR vkGetPhysicalDeviceVideoFormatPropertiesKHR = 0; - PFN_vkCreateVideoSessionKHR vkCreateVideoSessionKHR = 0; - PFN_vkDestroyVideoSessionKHR vkDestroyVideoSessionKHR = 0; - PFN_vkGetVideoSessionMemoryRequirementsKHR vkGetVideoSessionMemoryRequirementsKHR = 0; - PFN_vkBindVideoSessionMemoryKHR vkBindVideoSessionMemoryKHR = 0; - PFN_vkCreateVideoSessionParametersKHR vkCreateVideoSessionParametersKHR = 0; - PFN_vkUpdateVideoSessionParametersKHR vkUpdateVideoSessionParametersKHR = 0; - PFN_vkDestroyVideoSessionParametersKHR vkDestroyVideoSessionParametersKHR = 0; - PFN_vkCmdBeginVideoCodingKHR vkCmdBeginVideoCodingKHR = 0; - PFN_vkCmdEndVideoCodingKHR vkCmdEndVideoCodingKHR = 0; - PFN_vkCmdControlVideoCodingKHR vkCmdControlVideoCodingKHR = 0; -#else - PFN_dummy vkGetPhysicalDeviceVideoCapabilitiesKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceVideoFormatPropertiesKHR_placeholder = 0; - PFN_dummy vkCreateVideoSessionKHR_placeholder = 0; - PFN_dummy vkDestroyVideoSessionKHR_placeholder = 0; - PFN_dummy vkGetVideoSessionMemoryRequirementsKHR_placeholder = 0; - PFN_dummy vkBindVideoSessionMemoryKHR_placeholder = 0; - PFN_dummy vkCreateVideoSessionParametersKHR_placeholder = 0; - PFN_dummy vkUpdateVideoSessionParametersKHR_placeholder = 0; - PFN_dummy vkDestroyVideoSessionParametersKHR_placeholder = 0; - PFN_dummy vkCmdBeginVideoCodingKHR_placeholder = 0; - PFN_dummy vkCmdEndVideoCodingKHR_placeholder = 0; - PFN_dummy vkCmdControlVideoCodingKHR_placeholder = 0; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - PFN_vkCmdDecodeVideoKHR vkCmdDecodeVideoKHR = 0; -#else - PFN_dummy vkCmdDecodeVideoKHR_placeholder = 0; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - PFN_vkCmdBindTransformFeedbackBuffersEXT vkCmdBindTransformFeedbackBuffersEXT = 0; - PFN_vkCmdBeginTransformFeedbackEXT vkCmdBeginTransformFeedbackEXT = 0; - PFN_vkCmdEndTransformFeedbackEXT vkCmdEndTransformFeedbackEXT = 0; - PFN_vkCmdBeginQueryIndexedEXT vkCmdBeginQueryIndexedEXT = 0; - PFN_vkCmdEndQueryIndexedEXT vkCmdEndQueryIndexedEXT = 0; - PFN_vkCmdDrawIndirectByteCountEXT vkCmdDrawIndirectByteCountEXT = 0; - - //=== VK_NVX_binary_import === - PFN_vkCreateCuModuleNVX vkCreateCuModuleNVX = 0; - PFN_vkCreateCuFunctionNVX vkCreateCuFunctionNVX = 0; - PFN_vkDestroyCuModuleNVX vkDestroyCuModuleNVX = 0; - PFN_vkDestroyCuFunctionNVX vkDestroyCuFunctionNVX = 0; - PFN_vkCmdCuLaunchKernelNVX vkCmdCuLaunchKernelNVX = 0; - - //=== VK_NVX_image_view_handle === - PFN_vkGetImageViewHandleNVX vkGetImageViewHandleNVX = 0; - PFN_vkGetImageViewAddressNVX vkGetImageViewAddressNVX = 0; - - //=== VK_AMD_draw_indirect_count === - PFN_vkCmdDrawIndirectCountAMD vkCmdDrawIndirectCountAMD = 0; - PFN_vkCmdDrawIndexedIndirectCountAMD vkCmdDrawIndexedIndirectCountAMD = 0; - - //=== VK_AMD_shader_info === - PFN_vkGetShaderInfoAMD vkGetShaderInfoAMD = 0; - - //=== VK_KHR_dynamic_rendering === - PFN_vkCmdBeginRenderingKHR vkCmdBeginRenderingKHR = 0; - PFN_vkCmdEndRenderingKHR vkCmdEndRenderingKHR = 0; - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - PFN_vkCreateStreamDescriptorSurfaceGGP vkCreateStreamDescriptorSurfaceGGP = 0; -#else - PFN_dummy vkCreateStreamDescriptorSurfaceGGP_placeholder = 0; -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV vkGetPhysicalDeviceExternalImageFormatPropertiesNV = 0; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - PFN_vkGetMemoryWin32HandleNV vkGetMemoryWin32HandleNV = 0; -#else - PFN_dummy vkGetMemoryWin32HandleNV_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_get_physical_device_properties2 === - PFN_vkGetPhysicalDeviceFeatures2KHR vkGetPhysicalDeviceFeatures2KHR = 0; - PFN_vkGetPhysicalDeviceProperties2KHR vkGetPhysicalDeviceProperties2KHR = 0; - PFN_vkGetPhysicalDeviceFormatProperties2KHR vkGetPhysicalDeviceFormatProperties2KHR = 0; - PFN_vkGetPhysicalDeviceImageFormatProperties2KHR vkGetPhysicalDeviceImageFormatProperties2KHR = 0; - PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR vkGetPhysicalDeviceQueueFamilyProperties2KHR = 0; - PFN_vkGetPhysicalDeviceMemoryProperties2KHR vkGetPhysicalDeviceMemoryProperties2KHR = 0; - PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR vkGetPhysicalDeviceSparseImageFormatProperties2KHR = 0; - - //=== VK_KHR_device_group === - PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR vkGetDeviceGroupPeerMemoryFeaturesKHR = 0; - PFN_vkCmdSetDeviceMaskKHR vkCmdSetDeviceMaskKHR = 0; - PFN_vkCmdDispatchBaseKHR vkCmdDispatchBaseKHR = 0; - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - PFN_vkCreateViSurfaceNN vkCreateViSurfaceNN = 0; -#else - PFN_dummy vkCreateViSurfaceNN_placeholder = 0; -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_maintenance1 === - PFN_vkTrimCommandPoolKHR vkTrimCommandPoolKHR = 0; - - //=== VK_KHR_device_group_creation === - PFN_vkEnumeratePhysicalDeviceGroupsKHR vkEnumeratePhysicalDeviceGroupsKHR = 0; - - //=== VK_KHR_external_memory_capabilities === - PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR vkGetPhysicalDeviceExternalBufferPropertiesKHR = 0; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - PFN_vkGetMemoryWin32HandleKHR vkGetMemoryWin32HandleKHR = 0; - PFN_vkGetMemoryWin32HandlePropertiesKHR vkGetMemoryWin32HandlePropertiesKHR = 0; -#else - PFN_dummy vkGetMemoryWin32HandleKHR_placeholder = 0; - PFN_dummy vkGetMemoryWin32HandlePropertiesKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - PFN_vkGetMemoryFdKHR vkGetMemoryFdKHR = 0; - PFN_vkGetMemoryFdPropertiesKHR vkGetMemoryFdPropertiesKHR = 0; - - //=== VK_KHR_external_semaphore_capabilities === - PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = 0; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - PFN_vkImportSemaphoreWin32HandleKHR vkImportSemaphoreWin32HandleKHR = 0; - PFN_vkGetSemaphoreWin32HandleKHR vkGetSemaphoreWin32HandleKHR = 0; -#else - PFN_dummy vkImportSemaphoreWin32HandleKHR_placeholder = 0; - PFN_dummy vkGetSemaphoreWin32HandleKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - PFN_vkImportSemaphoreFdKHR vkImportSemaphoreFdKHR = 0; - PFN_vkGetSemaphoreFdKHR vkGetSemaphoreFdKHR = 0; - - //=== VK_KHR_push_descriptor === - PFN_vkCmdPushDescriptorSetKHR vkCmdPushDescriptorSetKHR = 0; - PFN_vkCmdPushDescriptorSetWithTemplateKHR vkCmdPushDescriptorSetWithTemplateKHR = 0; - - //=== VK_EXT_conditional_rendering === - PFN_vkCmdBeginConditionalRenderingEXT vkCmdBeginConditionalRenderingEXT = 0; - PFN_vkCmdEndConditionalRenderingEXT vkCmdEndConditionalRenderingEXT = 0; - - //=== VK_KHR_descriptor_update_template === - PFN_vkCreateDescriptorUpdateTemplateKHR vkCreateDescriptorUpdateTemplateKHR = 0; - PFN_vkDestroyDescriptorUpdateTemplateKHR vkDestroyDescriptorUpdateTemplateKHR = 0; - PFN_vkUpdateDescriptorSetWithTemplateKHR vkUpdateDescriptorSetWithTemplateKHR = 0; - - //=== VK_NV_clip_space_w_scaling === - PFN_vkCmdSetViewportWScalingNV vkCmdSetViewportWScalingNV = 0; - - //=== VK_EXT_direct_mode_display === - PFN_vkReleaseDisplayEXT vkReleaseDisplayEXT = 0; - -#if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - PFN_vkAcquireXlibDisplayEXT vkAcquireXlibDisplayEXT = 0; - PFN_vkGetRandROutputDisplayEXT vkGetRandROutputDisplayEXT = 0; -#else - PFN_dummy vkAcquireXlibDisplayEXT_placeholder = 0; - PFN_dummy vkGetRandROutputDisplayEXT_placeholder = 0; -#endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT vkGetPhysicalDeviceSurfaceCapabilities2EXT = 0; - - //=== VK_EXT_display_control === - PFN_vkDisplayPowerControlEXT vkDisplayPowerControlEXT = 0; - PFN_vkRegisterDeviceEventEXT vkRegisterDeviceEventEXT = 0; - PFN_vkRegisterDisplayEventEXT vkRegisterDisplayEventEXT = 0; - PFN_vkGetSwapchainCounterEXT vkGetSwapchainCounterEXT = 0; - - //=== VK_GOOGLE_display_timing === - PFN_vkGetRefreshCycleDurationGOOGLE vkGetRefreshCycleDurationGOOGLE = 0; - PFN_vkGetPastPresentationTimingGOOGLE vkGetPastPresentationTimingGOOGLE = 0; - - //=== VK_EXT_discard_rectangles === - PFN_vkCmdSetDiscardRectangleEXT vkCmdSetDiscardRectangleEXT = 0; - - //=== VK_EXT_hdr_metadata === - PFN_vkSetHdrMetadataEXT vkSetHdrMetadataEXT = 0; - - //=== VK_KHR_create_renderpass2 === - PFN_vkCreateRenderPass2KHR vkCreateRenderPass2KHR = 0; - PFN_vkCmdBeginRenderPass2KHR vkCmdBeginRenderPass2KHR = 0; - PFN_vkCmdNextSubpass2KHR vkCmdNextSubpass2KHR = 0; - PFN_vkCmdEndRenderPass2KHR vkCmdEndRenderPass2KHR = 0; - - //=== VK_KHR_shared_presentable_image === - PFN_vkGetSwapchainStatusKHR vkGetSwapchainStatusKHR = 0; - - //=== VK_KHR_external_fence_capabilities === - PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR vkGetPhysicalDeviceExternalFencePropertiesKHR = 0; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - PFN_vkImportFenceWin32HandleKHR vkImportFenceWin32HandleKHR = 0; - PFN_vkGetFenceWin32HandleKHR vkGetFenceWin32HandleKHR = 0; -#else - PFN_dummy vkImportFenceWin32HandleKHR_placeholder = 0; - PFN_dummy vkGetFenceWin32HandleKHR_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - PFN_vkImportFenceFdKHR vkImportFenceFdKHR = 0; - PFN_vkGetFenceFdKHR vkGetFenceFdKHR = 0; - - //=== VK_KHR_performance_query === - PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR - vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR = 0; - PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR - vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR = 0; - PFN_vkAcquireProfilingLockKHR vkAcquireProfilingLockKHR = 0; - PFN_vkReleaseProfilingLockKHR vkReleaseProfilingLockKHR = 0; - - //=== VK_KHR_get_surface_capabilities2 === - PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR vkGetPhysicalDeviceSurfaceCapabilities2KHR = 0; - PFN_vkGetPhysicalDeviceSurfaceFormats2KHR vkGetPhysicalDeviceSurfaceFormats2KHR = 0; - - //=== VK_KHR_get_display_properties2 === - PFN_vkGetPhysicalDeviceDisplayProperties2KHR vkGetPhysicalDeviceDisplayProperties2KHR = 0; - PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR vkGetPhysicalDeviceDisplayPlaneProperties2KHR = 0; - PFN_vkGetDisplayModeProperties2KHR vkGetDisplayModeProperties2KHR = 0; - PFN_vkGetDisplayPlaneCapabilities2KHR vkGetDisplayPlaneCapabilities2KHR = 0; - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - PFN_vkCreateIOSSurfaceMVK vkCreateIOSSurfaceMVK = 0; -#else - PFN_dummy vkCreateIOSSurfaceMVK_placeholder = 0; -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - PFN_vkCreateMacOSSurfaceMVK vkCreateMacOSSurfaceMVK = 0; -#else - PFN_dummy vkCreateMacOSSurfaceMVK_placeholder = 0; -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - PFN_vkSetDebugUtilsObjectNameEXT vkSetDebugUtilsObjectNameEXT = 0; - PFN_vkSetDebugUtilsObjectTagEXT vkSetDebugUtilsObjectTagEXT = 0; - PFN_vkQueueBeginDebugUtilsLabelEXT vkQueueBeginDebugUtilsLabelEXT = 0; - PFN_vkQueueEndDebugUtilsLabelEXT vkQueueEndDebugUtilsLabelEXT = 0; - PFN_vkQueueInsertDebugUtilsLabelEXT vkQueueInsertDebugUtilsLabelEXT = 0; - PFN_vkCmdBeginDebugUtilsLabelEXT vkCmdBeginDebugUtilsLabelEXT = 0; - PFN_vkCmdEndDebugUtilsLabelEXT vkCmdEndDebugUtilsLabelEXT = 0; - PFN_vkCmdInsertDebugUtilsLabelEXT vkCmdInsertDebugUtilsLabelEXT = 0; - PFN_vkCreateDebugUtilsMessengerEXT vkCreateDebugUtilsMessengerEXT = 0; - PFN_vkDestroyDebugUtilsMessengerEXT vkDestroyDebugUtilsMessengerEXT = 0; - PFN_vkSubmitDebugUtilsMessageEXT vkSubmitDebugUtilsMessageEXT = 0; - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - PFN_vkGetAndroidHardwareBufferPropertiesANDROID vkGetAndroidHardwareBufferPropertiesANDROID = 0; - PFN_vkGetMemoryAndroidHardwareBufferANDROID vkGetMemoryAndroidHardwareBufferANDROID = 0; -#else - PFN_dummy vkGetAndroidHardwareBufferPropertiesANDROID_placeholder = 0; - PFN_dummy vkGetMemoryAndroidHardwareBufferANDROID_placeholder = 0; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - PFN_vkCmdSetSampleLocationsEXT vkCmdSetSampleLocationsEXT = 0; - PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT vkGetPhysicalDeviceMultisamplePropertiesEXT = 0; - - //=== VK_KHR_get_memory_requirements2 === - PFN_vkGetImageMemoryRequirements2KHR vkGetImageMemoryRequirements2KHR = 0; - PFN_vkGetBufferMemoryRequirements2KHR vkGetBufferMemoryRequirements2KHR = 0; - PFN_vkGetImageSparseMemoryRequirements2KHR vkGetImageSparseMemoryRequirements2KHR = 0; - - //=== VK_KHR_acceleration_structure === - PFN_vkCreateAccelerationStructureKHR vkCreateAccelerationStructureKHR = 0; - PFN_vkDestroyAccelerationStructureKHR vkDestroyAccelerationStructureKHR = 0; - PFN_vkCmdBuildAccelerationStructuresKHR vkCmdBuildAccelerationStructuresKHR = 0; - PFN_vkCmdBuildAccelerationStructuresIndirectKHR vkCmdBuildAccelerationStructuresIndirectKHR = 0; - PFN_vkBuildAccelerationStructuresKHR vkBuildAccelerationStructuresKHR = 0; - PFN_vkCopyAccelerationStructureKHR vkCopyAccelerationStructureKHR = 0; - PFN_vkCopyAccelerationStructureToMemoryKHR vkCopyAccelerationStructureToMemoryKHR = 0; - PFN_vkCopyMemoryToAccelerationStructureKHR vkCopyMemoryToAccelerationStructureKHR = 0; - PFN_vkWriteAccelerationStructuresPropertiesKHR vkWriteAccelerationStructuresPropertiesKHR = 0; - PFN_vkCmdCopyAccelerationStructureKHR vkCmdCopyAccelerationStructureKHR = 0; - PFN_vkCmdCopyAccelerationStructureToMemoryKHR vkCmdCopyAccelerationStructureToMemoryKHR = 0; - PFN_vkCmdCopyMemoryToAccelerationStructureKHR vkCmdCopyMemoryToAccelerationStructureKHR = 0; - PFN_vkGetAccelerationStructureDeviceAddressKHR vkGetAccelerationStructureDeviceAddressKHR = 0; - PFN_vkCmdWriteAccelerationStructuresPropertiesKHR vkCmdWriteAccelerationStructuresPropertiesKHR = 0; - PFN_vkGetDeviceAccelerationStructureCompatibilityKHR vkGetDeviceAccelerationStructureCompatibilityKHR = 0; - PFN_vkGetAccelerationStructureBuildSizesKHR vkGetAccelerationStructureBuildSizesKHR = 0; - - //=== VK_KHR_sampler_ycbcr_conversion === - PFN_vkCreateSamplerYcbcrConversionKHR vkCreateSamplerYcbcrConversionKHR = 0; - PFN_vkDestroySamplerYcbcrConversionKHR vkDestroySamplerYcbcrConversionKHR = 0; - - //=== VK_KHR_bind_memory2 === - PFN_vkBindBufferMemory2KHR vkBindBufferMemory2KHR = 0; - PFN_vkBindImageMemory2KHR vkBindImageMemory2KHR = 0; - - //=== VK_EXT_image_drm_format_modifier === - PFN_vkGetImageDrmFormatModifierPropertiesEXT vkGetImageDrmFormatModifierPropertiesEXT = 0; - - //=== VK_EXT_validation_cache === - PFN_vkCreateValidationCacheEXT vkCreateValidationCacheEXT = 0; - PFN_vkDestroyValidationCacheEXT vkDestroyValidationCacheEXT = 0; - PFN_vkMergeValidationCachesEXT vkMergeValidationCachesEXT = 0; - PFN_vkGetValidationCacheDataEXT vkGetValidationCacheDataEXT = 0; - - //=== VK_NV_shading_rate_image === - PFN_vkCmdBindShadingRateImageNV vkCmdBindShadingRateImageNV = 0; - PFN_vkCmdSetViewportShadingRatePaletteNV vkCmdSetViewportShadingRatePaletteNV = 0; - PFN_vkCmdSetCoarseSampleOrderNV vkCmdSetCoarseSampleOrderNV = 0; - - //=== VK_NV_ray_tracing === - PFN_vkCreateAccelerationStructureNV vkCreateAccelerationStructureNV = 0; - PFN_vkDestroyAccelerationStructureNV vkDestroyAccelerationStructureNV = 0; - PFN_vkGetAccelerationStructureMemoryRequirementsNV vkGetAccelerationStructureMemoryRequirementsNV = 0; - PFN_vkBindAccelerationStructureMemoryNV vkBindAccelerationStructureMemoryNV = 0; - PFN_vkCmdBuildAccelerationStructureNV vkCmdBuildAccelerationStructureNV = 0; - PFN_vkCmdCopyAccelerationStructureNV vkCmdCopyAccelerationStructureNV = 0; - PFN_vkCmdTraceRaysNV vkCmdTraceRaysNV = 0; - PFN_vkCreateRayTracingPipelinesNV vkCreateRayTracingPipelinesNV = 0; - PFN_vkGetRayTracingShaderGroupHandlesNV vkGetRayTracingShaderGroupHandlesNV = 0; - PFN_vkGetAccelerationStructureHandleNV vkGetAccelerationStructureHandleNV = 0; - PFN_vkCmdWriteAccelerationStructuresPropertiesNV vkCmdWriteAccelerationStructuresPropertiesNV = 0; - PFN_vkCompileDeferredNV vkCompileDeferredNV = 0; - - //=== VK_KHR_maintenance3 === - PFN_vkGetDescriptorSetLayoutSupportKHR vkGetDescriptorSetLayoutSupportKHR = 0; - - //=== VK_KHR_draw_indirect_count === - PFN_vkCmdDrawIndirectCountKHR vkCmdDrawIndirectCountKHR = 0; - PFN_vkCmdDrawIndexedIndirectCountKHR vkCmdDrawIndexedIndirectCountKHR = 0; - - //=== VK_EXT_external_memory_host === - PFN_vkGetMemoryHostPointerPropertiesEXT vkGetMemoryHostPointerPropertiesEXT = 0; - - //=== VK_AMD_buffer_marker === - PFN_vkCmdWriteBufferMarkerAMD vkCmdWriteBufferMarkerAMD = 0; - - //=== VK_EXT_calibrated_timestamps === - PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = 0; - PFN_vkGetCalibratedTimestampsEXT vkGetCalibratedTimestampsEXT = 0; - - //=== VK_NV_mesh_shader === - PFN_vkCmdDrawMeshTasksNV vkCmdDrawMeshTasksNV = 0; - PFN_vkCmdDrawMeshTasksIndirectNV vkCmdDrawMeshTasksIndirectNV = 0; - PFN_vkCmdDrawMeshTasksIndirectCountNV vkCmdDrawMeshTasksIndirectCountNV = 0; - - //=== VK_NV_scissor_exclusive === - PFN_vkCmdSetExclusiveScissorNV vkCmdSetExclusiveScissorNV = 0; - - //=== VK_NV_device_diagnostic_checkpoints === - PFN_vkCmdSetCheckpointNV vkCmdSetCheckpointNV = 0; - PFN_vkGetQueueCheckpointDataNV vkGetQueueCheckpointDataNV = 0; - - //=== VK_KHR_timeline_semaphore === - PFN_vkGetSemaphoreCounterValueKHR vkGetSemaphoreCounterValueKHR = 0; - PFN_vkWaitSemaphoresKHR vkWaitSemaphoresKHR = 0; - PFN_vkSignalSemaphoreKHR vkSignalSemaphoreKHR = 0; - - //=== VK_INTEL_performance_query === - PFN_vkInitializePerformanceApiINTEL vkInitializePerformanceApiINTEL = 0; - PFN_vkUninitializePerformanceApiINTEL vkUninitializePerformanceApiINTEL = 0; - PFN_vkCmdSetPerformanceMarkerINTEL vkCmdSetPerformanceMarkerINTEL = 0; - PFN_vkCmdSetPerformanceStreamMarkerINTEL vkCmdSetPerformanceStreamMarkerINTEL = 0; - PFN_vkCmdSetPerformanceOverrideINTEL vkCmdSetPerformanceOverrideINTEL = 0; - PFN_vkAcquirePerformanceConfigurationINTEL vkAcquirePerformanceConfigurationINTEL = 0; - PFN_vkReleasePerformanceConfigurationINTEL vkReleasePerformanceConfigurationINTEL = 0; - PFN_vkQueueSetPerformanceConfigurationINTEL vkQueueSetPerformanceConfigurationINTEL = 0; - PFN_vkGetPerformanceParameterINTEL vkGetPerformanceParameterINTEL = 0; - - //=== VK_AMD_display_native_hdr === - PFN_vkSetLocalDimmingAMD vkSetLocalDimmingAMD = 0; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - PFN_vkCreateImagePipeSurfaceFUCHSIA vkCreateImagePipeSurfaceFUCHSIA = 0; -#else - PFN_dummy vkCreateImagePipeSurfaceFUCHSIA_placeholder = 0; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - PFN_vkCreateMetalSurfaceEXT vkCreateMetalSurfaceEXT = 0; -#else - PFN_dummy vkCreateMetalSurfaceEXT_placeholder = 0; -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_KHR_fragment_shading_rate === - PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR vkGetPhysicalDeviceFragmentShadingRatesKHR = 0; - PFN_vkCmdSetFragmentShadingRateKHR vkCmdSetFragmentShadingRateKHR = 0; - - //=== VK_EXT_buffer_device_address === - PFN_vkGetBufferDeviceAddressEXT vkGetBufferDeviceAddressEXT = 0; - - //=== VK_EXT_tooling_info === - PFN_vkGetPhysicalDeviceToolPropertiesEXT vkGetPhysicalDeviceToolPropertiesEXT = 0; - - //=== VK_KHR_present_wait === - PFN_vkWaitForPresentKHR vkWaitForPresentKHR = 0; - - //=== VK_NV_cooperative_matrix === - PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV vkGetPhysicalDeviceCooperativeMatrixPropertiesNV = 0; - - //=== VK_NV_coverage_reduction_mode === - PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV - vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV = 0; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - PFN_vkGetPhysicalDeviceSurfacePresentModes2EXT vkGetPhysicalDeviceSurfacePresentModes2EXT = 0; - PFN_vkAcquireFullScreenExclusiveModeEXT vkAcquireFullScreenExclusiveModeEXT = 0; - PFN_vkReleaseFullScreenExclusiveModeEXT vkReleaseFullScreenExclusiveModeEXT = 0; - PFN_vkGetDeviceGroupSurfacePresentModes2EXT vkGetDeviceGroupSurfacePresentModes2EXT = 0; -#else - PFN_dummy vkGetPhysicalDeviceSurfacePresentModes2EXT_placeholder = 0; - PFN_dummy vkAcquireFullScreenExclusiveModeEXT_placeholder = 0; - PFN_dummy vkReleaseFullScreenExclusiveModeEXT_placeholder = 0; - PFN_dummy vkGetDeviceGroupSurfacePresentModes2EXT_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - PFN_vkCreateHeadlessSurfaceEXT vkCreateHeadlessSurfaceEXT = 0; - - //=== VK_KHR_buffer_device_address === - PFN_vkGetBufferDeviceAddressKHR vkGetBufferDeviceAddressKHR = 0; - PFN_vkGetBufferOpaqueCaptureAddressKHR vkGetBufferOpaqueCaptureAddressKHR = 0; - PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR vkGetDeviceMemoryOpaqueCaptureAddressKHR = 0; - - //=== VK_EXT_line_rasterization === - PFN_vkCmdSetLineStippleEXT vkCmdSetLineStippleEXT = 0; - - //=== VK_EXT_host_query_reset === - PFN_vkResetQueryPoolEXT vkResetQueryPoolEXT = 0; - - //=== VK_EXT_extended_dynamic_state === - PFN_vkCmdSetCullModeEXT vkCmdSetCullModeEXT = 0; - PFN_vkCmdSetFrontFaceEXT vkCmdSetFrontFaceEXT = 0; - PFN_vkCmdSetPrimitiveTopologyEXT vkCmdSetPrimitiveTopologyEXT = 0; - PFN_vkCmdSetViewportWithCountEXT vkCmdSetViewportWithCountEXT = 0; - PFN_vkCmdSetScissorWithCountEXT vkCmdSetScissorWithCountEXT = 0; - PFN_vkCmdBindVertexBuffers2EXT vkCmdBindVertexBuffers2EXT = 0; - PFN_vkCmdSetDepthTestEnableEXT vkCmdSetDepthTestEnableEXT = 0; - PFN_vkCmdSetDepthWriteEnableEXT vkCmdSetDepthWriteEnableEXT = 0; - PFN_vkCmdSetDepthCompareOpEXT vkCmdSetDepthCompareOpEXT = 0; - PFN_vkCmdSetDepthBoundsTestEnableEXT vkCmdSetDepthBoundsTestEnableEXT = 0; - PFN_vkCmdSetStencilTestEnableEXT vkCmdSetStencilTestEnableEXT = 0; - PFN_vkCmdSetStencilOpEXT vkCmdSetStencilOpEXT = 0; - - //=== VK_KHR_deferred_host_operations === - PFN_vkCreateDeferredOperationKHR vkCreateDeferredOperationKHR = 0; - PFN_vkDestroyDeferredOperationKHR vkDestroyDeferredOperationKHR = 0; - PFN_vkGetDeferredOperationMaxConcurrencyKHR vkGetDeferredOperationMaxConcurrencyKHR = 0; - PFN_vkGetDeferredOperationResultKHR vkGetDeferredOperationResultKHR = 0; - PFN_vkDeferredOperationJoinKHR vkDeferredOperationJoinKHR = 0; - - //=== VK_KHR_pipeline_executable_properties === - PFN_vkGetPipelineExecutablePropertiesKHR vkGetPipelineExecutablePropertiesKHR = 0; - PFN_vkGetPipelineExecutableStatisticsKHR vkGetPipelineExecutableStatisticsKHR = 0; - PFN_vkGetPipelineExecutableInternalRepresentationsKHR vkGetPipelineExecutableInternalRepresentationsKHR = 0; - - //=== VK_NV_device_generated_commands === - PFN_vkGetGeneratedCommandsMemoryRequirementsNV vkGetGeneratedCommandsMemoryRequirementsNV = 0; - PFN_vkCmdPreprocessGeneratedCommandsNV vkCmdPreprocessGeneratedCommandsNV = 0; - PFN_vkCmdExecuteGeneratedCommandsNV vkCmdExecuteGeneratedCommandsNV = 0; - PFN_vkCmdBindPipelineShaderGroupNV vkCmdBindPipelineShaderGroupNV = 0; - PFN_vkCreateIndirectCommandsLayoutNV vkCreateIndirectCommandsLayoutNV = 0; - PFN_vkDestroyIndirectCommandsLayoutNV vkDestroyIndirectCommandsLayoutNV = 0; - - //=== VK_EXT_acquire_drm_display === - PFN_vkAcquireDrmDisplayEXT vkAcquireDrmDisplayEXT = 0; - PFN_vkGetDrmDisplayEXT vkGetDrmDisplayEXT = 0; - - //=== VK_EXT_private_data === - PFN_vkCreatePrivateDataSlotEXT vkCreatePrivateDataSlotEXT = 0; - PFN_vkDestroyPrivateDataSlotEXT vkDestroyPrivateDataSlotEXT = 0; - PFN_vkSetPrivateDataEXT vkSetPrivateDataEXT = 0; - PFN_vkGetPrivateDataEXT vkGetPrivateDataEXT = 0; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - PFN_vkCmdEncodeVideoKHR vkCmdEncodeVideoKHR = 0; -#else - PFN_dummy vkCmdEncodeVideoKHR_placeholder = 0; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - PFN_vkCmdSetEvent2KHR vkCmdSetEvent2KHR = 0; - PFN_vkCmdResetEvent2KHR vkCmdResetEvent2KHR = 0; - PFN_vkCmdWaitEvents2KHR vkCmdWaitEvents2KHR = 0; - PFN_vkCmdPipelineBarrier2KHR vkCmdPipelineBarrier2KHR = 0; - PFN_vkCmdWriteTimestamp2KHR vkCmdWriteTimestamp2KHR = 0; - PFN_vkQueueSubmit2KHR vkQueueSubmit2KHR = 0; - PFN_vkCmdWriteBufferMarker2AMD vkCmdWriteBufferMarker2AMD = 0; - PFN_vkGetQueueCheckpointData2NV vkGetQueueCheckpointData2NV = 0; - - //=== VK_NV_fragment_shading_rate_enums === - PFN_vkCmdSetFragmentShadingRateEnumNV vkCmdSetFragmentShadingRateEnumNV = 0; - - //=== VK_KHR_copy_commands2 === - PFN_vkCmdCopyBuffer2KHR vkCmdCopyBuffer2KHR = 0; - PFN_vkCmdCopyImage2KHR vkCmdCopyImage2KHR = 0; - PFN_vkCmdCopyBufferToImage2KHR vkCmdCopyBufferToImage2KHR = 0; - PFN_vkCmdCopyImageToBuffer2KHR vkCmdCopyImageToBuffer2KHR = 0; - PFN_vkCmdBlitImage2KHR vkCmdBlitImage2KHR = 0; - PFN_vkCmdResolveImage2KHR vkCmdResolveImage2KHR = 0; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - PFN_vkAcquireWinrtDisplayNV vkAcquireWinrtDisplayNV = 0; - PFN_vkGetWinrtDisplayNV vkGetWinrtDisplayNV = 0; -#else - PFN_dummy vkAcquireWinrtDisplayNV_placeholder = 0; - PFN_dummy vkGetWinrtDisplayNV_placeholder = 0; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - PFN_vkCreateDirectFBSurfaceEXT vkCreateDirectFBSurfaceEXT = 0; - PFN_vkGetPhysicalDeviceDirectFBPresentationSupportEXT vkGetPhysicalDeviceDirectFBPresentationSupportEXT = 0; -#else - PFN_dummy vkCreateDirectFBSurfaceEXT_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceDirectFBPresentationSupportEXT_placeholder = 0; -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - PFN_vkCmdTraceRaysKHR vkCmdTraceRaysKHR = 0; - PFN_vkCreateRayTracingPipelinesKHR vkCreateRayTracingPipelinesKHR = 0; - PFN_vkGetRayTracingShaderGroupHandlesKHR vkGetRayTracingShaderGroupHandlesKHR = 0; - PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR vkGetRayTracingCaptureReplayShaderGroupHandlesKHR = 0; - PFN_vkCmdTraceRaysIndirectKHR vkCmdTraceRaysIndirectKHR = 0; - PFN_vkGetRayTracingShaderGroupStackSizeKHR vkGetRayTracingShaderGroupStackSizeKHR = 0; - PFN_vkCmdSetRayTracingPipelineStackSizeKHR vkCmdSetRayTracingPipelineStackSizeKHR = 0; - - //=== VK_EXT_vertex_input_dynamic_state === - PFN_vkCmdSetVertexInputEXT vkCmdSetVertexInputEXT = 0; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - PFN_vkGetMemoryZirconHandleFUCHSIA vkGetMemoryZirconHandleFUCHSIA = 0; - PFN_vkGetMemoryZirconHandlePropertiesFUCHSIA vkGetMemoryZirconHandlePropertiesFUCHSIA = 0; -#else - PFN_dummy vkGetMemoryZirconHandleFUCHSIA_placeholder = 0; - PFN_dummy vkGetMemoryZirconHandlePropertiesFUCHSIA_placeholder = 0; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - PFN_vkImportSemaphoreZirconHandleFUCHSIA vkImportSemaphoreZirconHandleFUCHSIA = 0; - PFN_vkGetSemaphoreZirconHandleFUCHSIA vkGetSemaphoreZirconHandleFUCHSIA = 0; -#else - PFN_dummy vkImportSemaphoreZirconHandleFUCHSIA_placeholder = 0; - PFN_dummy vkGetSemaphoreZirconHandleFUCHSIA_placeholder = 0; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - PFN_vkCreateBufferCollectionFUCHSIA vkCreateBufferCollectionFUCHSIA = 0; - PFN_vkSetBufferCollectionImageConstraintsFUCHSIA vkSetBufferCollectionImageConstraintsFUCHSIA = 0; - PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA vkSetBufferCollectionBufferConstraintsFUCHSIA = 0; - PFN_vkDestroyBufferCollectionFUCHSIA vkDestroyBufferCollectionFUCHSIA = 0; - PFN_vkGetBufferCollectionPropertiesFUCHSIA vkGetBufferCollectionPropertiesFUCHSIA = 0; -#else - PFN_dummy vkCreateBufferCollectionFUCHSIA_placeholder = 0; - PFN_dummy vkSetBufferCollectionImageConstraintsFUCHSIA_placeholder = 0; - PFN_dummy vkSetBufferCollectionBufferConstraintsFUCHSIA_placeholder = 0; - PFN_dummy vkDestroyBufferCollectionFUCHSIA_placeholder = 0; - PFN_dummy vkGetBufferCollectionPropertiesFUCHSIA_placeholder = 0; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - PFN_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI = 0; - PFN_vkCmdSubpassShadingHUAWEI vkCmdSubpassShadingHUAWEI = 0; - - //=== VK_HUAWEI_invocation_mask === - PFN_vkCmdBindInvocationMaskHUAWEI vkCmdBindInvocationMaskHUAWEI = 0; - - //=== VK_NV_external_memory_rdma === - PFN_vkGetMemoryRemoteAddressNV vkGetMemoryRemoteAddressNV = 0; - - //=== VK_EXT_extended_dynamic_state2 === - PFN_vkCmdSetPatchControlPointsEXT vkCmdSetPatchControlPointsEXT = 0; - PFN_vkCmdSetRasterizerDiscardEnableEXT vkCmdSetRasterizerDiscardEnableEXT = 0; - PFN_vkCmdSetDepthBiasEnableEXT vkCmdSetDepthBiasEnableEXT = 0; - PFN_vkCmdSetLogicOpEXT vkCmdSetLogicOpEXT = 0; - PFN_vkCmdSetPrimitiveRestartEnableEXT vkCmdSetPrimitiveRestartEnableEXT = 0; - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - PFN_vkCreateScreenSurfaceQNX vkCreateScreenSurfaceQNX = 0; - PFN_vkGetPhysicalDeviceScreenPresentationSupportQNX vkGetPhysicalDeviceScreenPresentationSupportQNX = 0; -#else - PFN_dummy vkCreateScreenSurfaceQNX_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceScreenPresentationSupportQNX_placeholder = 0; -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - //=== VK_EXT_color_write_enable === - PFN_vkCmdSetColorWriteEnableEXT vkCmdSetColorWriteEnableEXT = 0; - - //=== VK_EXT_multi_draw === - PFN_vkCmdDrawMultiEXT vkCmdDrawMultiEXT = 0; - PFN_vkCmdDrawMultiIndexedEXT vkCmdDrawMultiIndexedEXT = 0; - - //=== VK_EXT_pageable_device_local_memory === - PFN_vkSetDeviceMemoryPriorityEXT vkSetDeviceMemoryPriorityEXT = 0; - - //=== VK_KHR_maintenance4 === - PFN_vkGetDeviceBufferMemoryRequirementsKHR vkGetDeviceBufferMemoryRequirementsKHR = 0; - PFN_vkGetDeviceImageMemoryRequirementsKHR vkGetDeviceImageMemoryRequirementsKHR = 0; - PFN_vkGetDeviceImageSparseMemoryRequirementsKHR vkGetDeviceImageSparseMemoryRequirementsKHR = 0; - - public: - DispatchLoaderDynamic() VULKAN_HPP_NOEXCEPT = default; - DispatchLoaderDynamic( DispatchLoaderDynamic const & rhs ) VULKAN_HPP_NOEXCEPT = default; - -#if !defined( VK_NO_PROTOTYPES ) - // This interface is designed to be used for per-device function pointers in combination with a linked vulkan - // library. - template - void init( VULKAN_HPP_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::Device const & device, - DynamicLoader const & dl ) VULKAN_HPP_NOEXCEPT - { - PFN_vkGetInstanceProcAddr getInstanceProcAddr = - dl.template getProcAddress( "vkGetInstanceProcAddr" ); - PFN_vkGetDeviceProcAddr getDeviceProcAddr = - dl.template getProcAddress( "vkGetDeviceProcAddr" ); - init( static_cast( instance ), - getInstanceProcAddr, - static_cast( device ), - device ? getDeviceProcAddr : nullptr ); - } - - // This interface is designed to be used for per-device function pointers in combination with a linked vulkan - // library. - template - void init( VULKAN_HPP_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::Device const & device ) VULKAN_HPP_NOEXCEPT - { - static DynamicLoader dl; - init( instance, device, dl ); - } -#endif // !defined( VK_NO_PROTOTYPES ) - - DispatchLoaderDynamic( PFN_vkGetInstanceProcAddr getInstanceProcAddr ) VULKAN_HPP_NOEXCEPT - { - init( getInstanceProcAddr ); - } - - void init( PFN_vkGetInstanceProcAddr getInstanceProcAddr ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getInstanceProcAddr ); - - vkGetInstanceProcAddr = getInstanceProcAddr; - - //=== VK_VERSION_1_0 === - vkCreateInstance = PFN_vkCreateInstance( vkGetInstanceProcAddr( NULL, "vkCreateInstance" ) ); - vkEnumerateInstanceExtensionProperties = PFN_vkEnumerateInstanceExtensionProperties( - vkGetInstanceProcAddr( NULL, "vkEnumerateInstanceExtensionProperties" ) ); - vkEnumerateInstanceLayerProperties = - PFN_vkEnumerateInstanceLayerProperties( vkGetInstanceProcAddr( NULL, "vkEnumerateInstanceLayerProperties" ) ); - - //=== VK_VERSION_1_1 === - vkEnumerateInstanceVersion = - PFN_vkEnumerateInstanceVersion( vkGetInstanceProcAddr( NULL, "vkEnumerateInstanceVersion" ) ); - } - - // This interface does not require a linked vulkan library. - DispatchLoaderDynamic( VkInstance instance, - PFN_vkGetInstanceProcAddr getInstanceProcAddr, - VkDevice device = {}, - PFN_vkGetDeviceProcAddr getDeviceProcAddr = nullptr ) VULKAN_HPP_NOEXCEPT - { - init( instance, getInstanceProcAddr, device, getDeviceProcAddr ); - } - - // This interface does not require a linked vulkan library. - void init( VkInstance instance, - PFN_vkGetInstanceProcAddr getInstanceProcAddr, - VkDevice device = {}, - PFN_vkGetDeviceProcAddr /*getDeviceProcAddr*/ = nullptr ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( instance && getInstanceProcAddr ); - vkGetInstanceProcAddr = getInstanceProcAddr; - init( VULKAN_HPP_NAMESPACE::Instance( instance ) ); - if ( device ) - { - init( VULKAN_HPP_NAMESPACE::Device( device ) ); - } - } - - void init( VULKAN_HPP_NAMESPACE::Instance instanceCpp ) VULKAN_HPP_NOEXCEPT - { - VkInstance instance = static_cast( instanceCpp ); - - //=== VK_VERSION_1_0 === - vkDestroyInstance = PFN_vkDestroyInstance( vkGetInstanceProcAddr( instance, "vkDestroyInstance" ) ); - vkEnumeratePhysicalDevices = - PFN_vkEnumeratePhysicalDevices( vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDevices" ) ); - vkGetPhysicalDeviceFeatures = - PFN_vkGetPhysicalDeviceFeatures( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFeatures" ) ); - vkGetPhysicalDeviceFormatProperties = PFN_vkGetPhysicalDeviceFormatProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFormatProperties" ) ); - vkGetPhysicalDeviceImageFormatProperties = PFN_vkGetPhysicalDeviceImageFormatProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceImageFormatProperties" ) ); - vkGetPhysicalDeviceProperties = - PFN_vkGetPhysicalDeviceProperties( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceProperties" ) ); - vkGetPhysicalDeviceQueueFamilyProperties = PFN_vkGetPhysicalDeviceQueueFamilyProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyProperties" ) ); - vkGetPhysicalDeviceMemoryProperties = PFN_vkGetPhysicalDeviceMemoryProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMemoryProperties" ) ); - vkGetDeviceProcAddr = PFN_vkGetDeviceProcAddr( vkGetInstanceProcAddr( instance, "vkGetDeviceProcAddr" ) ); - vkCreateDevice = PFN_vkCreateDevice( vkGetInstanceProcAddr( instance, "vkCreateDevice" ) ); - vkDestroyDevice = PFN_vkDestroyDevice( vkGetInstanceProcAddr( instance, "vkDestroyDevice" ) ); - vkEnumerateDeviceExtensionProperties = PFN_vkEnumerateDeviceExtensionProperties( - vkGetInstanceProcAddr( instance, "vkEnumerateDeviceExtensionProperties" ) ); - vkEnumerateDeviceLayerProperties = - PFN_vkEnumerateDeviceLayerProperties( vkGetInstanceProcAddr( instance, "vkEnumerateDeviceLayerProperties" ) ); - vkGetDeviceQueue = PFN_vkGetDeviceQueue( vkGetInstanceProcAddr( instance, "vkGetDeviceQueue" ) ); - vkQueueSubmit = PFN_vkQueueSubmit( vkGetInstanceProcAddr( instance, "vkQueueSubmit" ) ); - vkQueueWaitIdle = PFN_vkQueueWaitIdle( vkGetInstanceProcAddr( instance, "vkQueueWaitIdle" ) ); - vkDeviceWaitIdle = PFN_vkDeviceWaitIdle( vkGetInstanceProcAddr( instance, "vkDeviceWaitIdle" ) ); - vkAllocateMemory = PFN_vkAllocateMemory( vkGetInstanceProcAddr( instance, "vkAllocateMemory" ) ); - vkFreeMemory = PFN_vkFreeMemory( vkGetInstanceProcAddr( instance, "vkFreeMemory" ) ); - vkMapMemory = PFN_vkMapMemory( vkGetInstanceProcAddr( instance, "vkMapMemory" ) ); - vkUnmapMemory = PFN_vkUnmapMemory( vkGetInstanceProcAddr( instance, "vkUnmapMemory" ) ); - vkFlushMappedMemoryRanges = - PFN_vkFlushMappedMemoryRanges( vkGetInstanceProcAddr( instance, "vkFlushMappedMemoryRanges" ) ); - vkInvalidateMappedMemoryRanges = - PFN_vkInvalidateMappedMemoryRanges( vkGetInstanceProcAddr( instance, "vkInvalidateMappedMemoryRanges" ) ); - vkGetDeviceMemoryCommitment = - PFN_vkGetDeviceMemoryCommitment( vkGetInstanceProcAddr( instance, "vkGetDeviceMemoryCommitment" ) ); - vkBindBufferMemory = PFN_vkBindBufferMemory( vkGetInstanceProcAddr( instance, "vkBindBufferMemory" ) ); - vkBindImageMemory = PFN_vkBindImageMemory( vkGetInstanceProcAddr( instance, "vkBindImageMemory" ) ); - vkGetBufferMemoryRequirements = - PFN_vkGetBufferMemoryRequirements( vkGetInstanceProcAddr( instance, "vkGetBufferMemoryRequirements" ) ); - vkGetImageMemoryRequirements = - PFN_vkGetImageMemoryRequirements( vkGetInstanceProcAddr( instance, "vkGetImageMemoryRequirements" ) ); - vkGetImageSparseMemoryRequirements = PFN_vkGetImageSparseMemoryRequirements( - vkGetInstanceProcAddr( instance, "vkGetImageSparseMemoryRequirements" ) ); - vkGetPhysicalDeviceSparseImageFormatProperties = PFN_vkGetPhysicalDeviceSparseImageFormatProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSparseImageFormatProperties" ) ); - vkQueueBindSparse = PFN_vkQueueBindSparse( vkGetInstanceProcAddr( instance, "vkQueueBindSparse" ) ); - vkCreateFence = PFN_vkCreateFence( vkGetInstanceProcAddr( instance, "vkCreateFence" ) ); - vkDestroyFence = PFN_vkDestroyFence( vkGetInstanceProcAddr( instance, "vkDestroyFence" ) ); - vkResetFences = PFN_vkResetFences( vkGetInstanceProcAddr( instance, "vkResetFences" ) ); - vkGetFenceStatus = PFN_vkGetFenceStatus( vkGetInstanceProcAddr( instance, "vkGetFenceStatus" ) ); - vkWaitForFences = PFN_vkWaitForFences( vkGetInstanceProcAddr( instance, "vkWaitForFences" ) ); - vkCreateSemaphore = PFN_vkCreateSemaphore( vkGetInstanceProcAddr( instance, "vkCreateSemaphore" ) ); - vkDestroySemaphore = PFN_vkDestroySemaphore( vkGetInstanceProcAddr( instance, "vkDestroySemaphore" ) ); - vkCreateEvent = PFN_vkCreateEvent( vkGetInstanceProcAddr( instance, "vkCreateEvent" ) ); - vkDestroyEvent = PFN_vkDestroyEvent( vkGetInstanceProcAddr( instance, "vkDestroyEvent" ) ); - vkGetEventStatus = PFN_vkGetEventStatus( vkGetInstanceProcAddr( instance, "vkGetEventStatus" ) ); - vkSetEvent = PFN_vkSetEvent( vkGetInstanceProcAddr( instance, "vkSetEvent" ) ); - vkResetEvent = PFN_vkResetEvent( vkGetInstanceProcAddr( instance, "vkResetEvent" ) ); - vkCreateQueryPool = PFN_vkCreateQueryPool( vkGetInstanceProcAddr( instance, "vkCreateQueryPool" ) ); - vkDestroyQueryPool = PFN_vkDestroyQueryPool( vkGetInstanceProcAddr( instance, "vkDestroyQueryPool" ) ); - vkGetQueryPoolResults = PFN_vkGetQueryPoolResults( vkGetInstanceProcAddr( instance, "vkGetQueryPoolResults" ) ); - vkCreateBuffer = PFN_vkCreateBuffer( vkGetInstanceProcAddr( instance, "vkCreateBuffer" ) ); - vkDestroyBuffer = PFN_vkDestroyBuffer( vkGetInstanceProcAddr( instance, "vkDestroyBuffer" ) ); - vkCreateBufferView = PFN_vkCreateBufferView( vkGetInstanceProcAddr( instance, "vkCreateBufferView" ) ); - vkDestroyBufferView = PFN_vkDestroyBufferView( vkGetInstanceProcAddr( instance, "vkDestroyBufferView" ) ); - vkCreateImage = PFN_vkCreateImage( vkGetInstanceProcAddr( instance, "vkCreateImage" ) ); - vkDestroyImage = PFN_vkDestroyImage( vkGetInstanceProcAddr( instance, "vkDestroyImage" ) ); - vkGetImageSubresourceLayout = - PFN_vkGetImageSubresourceLayout( vkGetInstanceProcAddr( instance, "vkGetImageSubresourceLayout" ) ); - vkCreateImageView = PFN_vkCreateImageView( vkGetInstanceProcAddr( instance, "vkCreateImageView" ) ); - vkDestroyImageView = PFN_vkDestroyImageView( vkGetInstanceProcAddr( instance, "vkDestroyImageView" ) ); - vkCreateShaderModule = PFN_vkCreateShaderModule( vkGetInstanceProcAddr( instance, "vkCreateShaderModule" ) ); - vkDestroyShaderModule = PFN_vkDestroyShaderModule( vkGetInstanceProcAddr( instance, "vkDestroyShaderModule" ) ); - vkCreatePipelineCache = PFN_vkCreatePipelineCache( vkGetInstanceProcAddr( instance, "vkCreatePipelineCache" ) ); - vkDestroyPipelineCache = - PFN_vkDestroyPipelineCache( vkGetInstanceProcAddr( instance, "vkDestroyPipelineCache" ) ); - vkGetPipelineCacheData = - PFN_vkGetPipelineCacheData( vkGetInstanceProcAddr( instance, "vkGetPipelineCacheData" ) ); - vkMergePipelineCaches = PFN_vkMergePipelineCaches( vkGetInstanceProcAddr( instance, "vkMergePipelineCaches" ) ); - vkCreateGraphicsPipelines = - PFN_vkCreateGraphicsPipelines( vkGetInstanceProcAddr( instance, "vkCreateGraphicsPipelines" ) ); - vkCreateComputePipelines = - PFN_vkCreateComputePipelines( vkGetInstanceProcAddr( instance, "vkCreateComputePipelines" ) ); - vkDestroyPipeline = PFN_vkDestroyPipeline( vkGetInstanceProcAddr( instance, "vkDestroyPipeline" ) ); - vkCreatePipelineLayout = - PFN_vkCreatePipelineLayout( vkGetInstanceProcAddr( instance, "vkCreatePipelineLayout" ) ); - vkDestroyPipelineLayout = - PFN_vkDestroyPipelineLayout( vkGetInstanceProcAddr( instance, "vkDestroyPipelineLayout" ) ); - vkCreateSampler = PFN_vkCreateSampler( vkGetInstanceProcAddr( instance, "vkCreateSampler" ) ); - vkDestroySampler = PFN_vkDestroySampler( vkGetInstanceProcAddr( instance, "vkDestroySampler" ) ); - vkCreateDescriptorSetLayout = - PFN_vkCreateDescriptorSetLayout( vkGetInstanceProcAddr( instance, "vkCreateDescriptorSetLayout" ) ); - vkDestroyDescriptorSetLayout = - PFN_vkDestroyDescriptorSetLayout( vkGetInstanceProcAddr( instance, "vkDestroyDescriptorSetLayout" ) ); - vkCreateDescriptorPool = - PFN_vkCreateDescriptorPool( vkGetInstanceProcAddr( instance, "vkCreateDescriptorPool" ) ); - vkDestroyDescriptorPool = - PFN_vkDestroyDescriptorPool( vkGetInstanceProcAddr( instance, "vkDestroyDescriptorPool" ) ); - vkResetDescriptorPool = PFN_vkResetDescriptorPool( vkGetInstanceProcAddr( instance, "vkResetDescriptorPool" ) ); - vkAllocateDescriptorSets = - PFN_vkAllocateDescriptorSets( vkGetInstanceProcAddr( instance, "vkAllocateDescriptorSets" ) ); - vkFreeDescriptorSets = PFN_vkFreeDescriptorSets( vkGetInstanceProcAddr( instance, "vkFreeDescriptorSets" ) ); - vkUpdateDescriptorSets = - PFN_vkUpdateDescriptorSets( vkGetInstanceProcAddr( instance, "vkUpdateDescriptorSets" ) ); - vkCreateFramebuffer = PFN_vkCreateFramebuffer( vkGetInstanceProcAddr( instance, "vkCreateFramebuffer" ) ); - vkDestroyFramebuffer = PFN_vkDestroyFramebuffer( vkGetInstanceProcAddr( instance, "vkDestroyFramebuffer" ) ); - vkCreateRenderPass = PFN_vkCreateRenderPass( vkGetInstanceProcAddr( instance, "vkCreateRenderPass" ) ); - vkDestroyRenderPass = PFN_vkDestroyRenderPass( vkGetInstanceProcAddr( instance, "vkDestroyRenderPass" ) ); - vkGetRenderAreaGranularity = - PFN_vkGetRenderAreaGranularity( vkGetInstanceProcAddr( instance, "vkGetRenderAreaGranularity" ) ); - vkCreateCommandPool = PFN_vkCreateCommandPool( vkGetInstanceProcAddr( instance, "vkCreateCommandPool" ) ); - vkDestroyCommandPool = PFN_vkDestroyCommandPool( vkGetInstanceProcAddr( instance, "vkDestroyCommandPool" ) ); - vkResetCommandPool = PFN_vkResetCommandPool( vkGetInstanceProcAddr( instance, "vkResetCommandPool" ) ); - vkAllocateCommandBuffers = - PFN_vkAllocateCommandBuffers( vkGetInstanceProcAddr( instance, "vkAllocateCommandBuffers" ) ); - vkFreeCommandBuffers = PFN_vkFreeCommandBuffers( vkGetInstanceProcAddr( instance, "vkFreeCommandBuffers" ) ); - vkBeginCommandBuffer = PFN_vkBeginCommandBuffer( vkGetInstanceProcAddr( instance, "vkBeginCommandBuffer" ) ); - vkEndCommandBuffer = PFN_vkEndCommandBuffer( vkGetInstanceProcAddr( instance, "vkEndCommandBuffer" ) ); - vkResetCommandBuffer = PFN_vkResetCommandBuffer( vkGetInstanceProcAddr( instance, "vkResetCommandBuffer" ) ); - vkCmdBindPipeline = PFN_vkCmdBindPipeline( vkGetInstanceProcAddr( instance, "vkCmdBindPipeline" ) ); - vkCmdSetViewport = PFN_vkCmdSetViewport( vkGetInstanceProcAddr( instance, "vkCmdSetViewport" ) ); - vkCmdSetScissor = PFN_vkCmdSetScissor( vkGetInstanceProcAddr( instance, "vkCmdSetScissor" ) ); - vkCmdSetLineWidth = PFN_vkCmdSetLineWidth( vkGetInstanceProcAddr( instance, "vkCmdSetLineWidth" ) ); - vkCmdSetDepthBias = PFN_vkCmdSetDepthBias( vkGetInstanceProcAddr( instance, "vkCmdSetDepthBias" ) ); - vkCmdSetBlendConstants = - PFN_vkCmdSetBlendConstants( vkGetInstanceProcAddr( instance, "vkCmdSetBlendConstants" ) ); - vkCmdSetDepthBounds = PFN_vkCmdSetDepthBounds( vkGetInstanceProcAddr( instance, "vkCmdSetDepthBounds" ) ); - vkCmdSetStencilCompareMask = - PFN_vkCmdSetStencilCompareMask( vkGetInstanceProcAddr( instance, "vkCmdSetStencilCompareMask" ) ); - vkCmdSetStencilWriteMask = - PFN_vkCmdSetStencilWriteMask( vkGetInstanceProcAddr( instance, "vkCmdSetStencilWriteMask" ) ); - vkCmdSetStencilReference = - PFN_vkCmdSetStencilReference( vkGetInstanceProcAddr( instance, "vkCmdSetStencilReference" ) ); - vkCmdBindDescriptorSets = - PFN_vkCmdBindDescriptorSets( vkGetInstanceProcAddr( instance, "vkCmdBindDescriptorSets" ) ); - vkCmdBindIndexBuffer = PFN_vkCmdBindIndexBuffer( vkGetInstanceProcAddr( instance, "vkCmdBindIndexBuffer" ) ); - vkCmdBindVertexBuffers = - PFN_vkCmdBindVertexBuffers( vkGetInstanceProcAddr( instance, "vkCmdBindVertexBuffers" ) ); - vkCmdDraw = PFN_vkCmdDraw( vkGetInstanceProcAddr( instance, "vkCmdDraw" ) ); - vkCmdDrawIndexed = PFN_vkCmdDrawIndexed( vkGetInstanceProcAddr( instance, "vkCmdDrawIndexed" ) ); - vkCmdDrawIndirect = PFN_vkCmdDrawIndirect( vkGetInstanceProcAddr( instance, "vkCmdDrawIndirect" ) ); - vkCmdDrawIndexedIndirect = - PFN_vkCmdDrawIndexedIndirect( vkGetInstanceProcAddr( instance, "vkCmdDrawIndexedIndirect" ) ); - vkCmdDispatch = PFN_vkCmdDispatch( vkGetInstanceProcAddr( instance, "vkCmdDispatch" ) ); - vkCmdDispatchIndirect = PFN_vkCmdDispatchIndirect( vkGetInstanceProcAddr( instance, "vkCmdDispatchIndirect" ) ); - vkCmdCopyBuffer = PFN_vkCmdCopyBuffer( vkGetInstanceProcAddr( instance, "vkCmdCopyBuffer" ) ); - vkCmdCopyImage = PFN_vkCmdCopyImage( vkGetInstanceProcAddr( instance, "vkCmdCopyImage" ) ); - vkCmdBlitImage = PFN_vkCmdBlitImage( vkGetInstanceProcAddr( instance, "vkCmdBlitImage" ) ); - vkCmdCopyBufferToImage = - PFN_vkCmdCopyBufferToImage( vkGetInstanceProcAddr( instance, "vkCmdCopyBufferToImage" ) ); - vkCmdCopyImageToBuffer = - PFN_vkCmdCopyImageToBuffer( vkGetInstanceProcAddr( instance, "vkCmdCopyImageToBuffer" ) ); - vkCmdUpdateBuffer = PFN_vkCmdUpdateBuffer( vkGetInstanceProcAddr( instance, "vkCmdUpdateBuffer" ) ); - vkCmdFillBuffer = PFN_vkCmdFillBuffer( vkGetInstanceProcAddr( instance, "vkCmdFillBuffer" ) ); - vkCmdClearColorImage = PFN_vkCmdClearColorImage( vkGetInstanceProcAddr( instance, "vkCmdClearColorImage" ) ); - vkCmdClearDepthStencilImage = - PFN_vkCmdClearDepthStencilImage( vkGetInstanceProcAddr( instance, "vkCmdClearDepthStencilImage" ) ); - vkCmdClearAttachments = PFN_vkCmdClearAttachments( vkGetInstanceProcAddr( instance, "vkCmdClearAttachments" ) ); - vkCmdResolveImage = PFN_vkCmdResolveImage( vkGetInstanceProcAddr( instance, "vkCmdResolveImage" ) ); - vkCmdSetEvent = PFN_vkCmdSetEvent( vkGetInstanceProcAddr( instance, "vkCmdSetEvent" ) ); - vkCmdResetEvent = PFN_vkCmdResetEvent( vkGetInstanceProcAddr( instance, "vkCmdResetEvent" ) ); - vkCmdWaitEvents = PFN_vkCmdWaitEvents( vkGetInstanceProcAddr( instance, "vkCmdWaitEvents" ) ); - vkCmdPipelineBarrier = PFN_vkCmdPipelineBarrier( vkGetInstanceProcAddr( instance, "vkCmdPipelineBarrier" ) ); - vkCmdBeginQuery = PFN_vkCmdBeginQuery( vkGetInstanceProcAddr( instance, "vkCmdBeginQuery" ) ); - vkCmdEndQuery = PFN_vkCmdEndQuery( vkGetInstanceProcAddr( instance, "vkCmdEndQuery" ) ); - vkCmdResetQueryPool = PFN_vkCmdResetQueryPool( vkGetInstanceProcAddr( instance, "vkCmdResetQueryPool" ) ); - vkCmdWriteTimestamp = PFN_vkCmdWriteTimestamp( vkGetInstanceProcAddr( instance, "vkCmdWriteTimestamp" ) ); - vkCmdCopyQueryPoolResults = - PFN_vkCmdCopyQueryPoolResults( vkGetInstanceProcAddr( instance, "vkCmdCopyQueryPoolResults" ) ); - vkCmdPushConstants = PFN_vkCmdPushConstants( vkGetInstanceProcAddr( instance, "vkCmdPushConstants" ) ); - vkCmdBeginRenderPass = PFN_vkCmdBeginRenderPass( vkGetInstanceProcAddr( instance, "vkCmdBeginRenderPass" ) ); - vkCmdNextSubpass = PFN_vkCmdNextSubpass( vkGetInstanceProcAddr( instance, "vkCmdNextSubpass" ) ); - vkCmdEndRenderPass = PFN_vkCmdEndRenderPass( vkGetInstanceProcAddr( instance, "vkCmdEndRenderPass" ) ); - vkCmdExecuteCommands = PFN_vkCmdExecuteCommands( vkGetInstanceProcAddr( instance, "vkCmdExecuteCommands" ) ); - - //=== VK_VERSION_1_1 === - vkBindBufferMemory2 = PFN_vkBindBufferMemory2( vkGetInstanceProcAddr( instance, "vkBindBufferMemory2" ) ); - vkBindImageMemory2 = PFN_vkBindImageMemory2( vkGetInstanceProcAddr( instance, "vkBindImageMemory2" ) ); - vkGetDeviceGroupPeerMemoryFeatures = PFN_vkGetDeviceGroupPeerMemoryFeatures( - vkGetInstanceProcAddr( instance, "vkGetDeviceGroupPeerMemoryFeatures" ) ); - vkCmdSetDeviceMask = PFN_vkCmdSetDeviceMask( vkGetInstanceProcAddr( instance, "vkCmdSetDeviceMask" ) ); - vkCmdDispatchBase = PFN_vkCmdDispatchBase( vkGetInstanceProcAddr( instance, "vkCmdDispatchBase" ) ); - vkEnumeratePhysicalDeviceGroups = - PFN_vkEnumeratePhysicalDeviceGroups( vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDeviceGroups" ) ); - vkGetImageMemoryRequirements2 = - PFN_vkGetImageMemoryRequirements2( vkGetInstanceProcAddr( instance, "vkGetImageMemoryRequirements2" ) ); - vkGetBufferMemoryRequirements2 = - PFN_vkGetBufferMemoryRequirements2( vkGetInstanceProcAddr( instance, "vkGetBufferMemoryRequirements2" ) ); - vkGetImageSparseMemoryRequirements2 = PFN_vkGetImageSparseMemoryRequirements2( - vkGetInstanceProcAddr( instance, "vkGetImageSparseMemoryRequirements2" ) ); - vkGetPhysicalDeviceFeatures2 = - PFN_vkGetPhysicalDeviceFeatures2( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFeatures2" ) ); - vkGetPhysicalDeviceProperties2 = - PFN_vkGetPhysicalDeviceProperties2( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceProperties2" ) ); - vkGetPhysicalDeviceFormatProperties2 = PFN_vkGetPhysicalDeviceFormatProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFormatProperties2" ) ); - vkGetPhysicalDeviceImageFormatProperties2 = PFN_vkGetPhysicalDeviceImageFormatProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceImageFormatProperties2" ) ); - vkGetPhysicalDeviceQueueFamilyProperties2 = PFN_vkGetPhysicalDeviceQueueFamilyProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyProperties2" ) ); - vkGetPhysicalDeviceMemoryProperties2 = PFN_vkGetPhysicalDeviceMemoryProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMemoryProperties2" ) ); - vkGetPhysicalDeviceSparseImageFormatProperties2 = PFN_vkGetPhysicalDeviceSparseImageFormatProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSparseImageFormatProperties2" ) ); - vkTrimCommandPool = PFN_vkTrimCommandPool( vkGetInstanceProcAddr( instance, "vkTrimCommandPool" ) ); - vkGetDeviceQueue2 = PFN_vkGetDeviceQueue2( vkGetInstanceProcAddr( instance, "vkGetDeviceQueue2" ) ); - vkCreateSamplerYcbcrConversion = - PFN_vkCreateSamplerYcbcrConversion( vkGetInstanceProcAddr( instance, "vkCreateSamplerYcbcrConversion" ) ); - vkDestroySamplerYcbcrConversion = - PFN_vkDestroySamplerYcbcrConversion( vkGetInstanceProcAddr( instance, "vkDestroySamplerYcbcrConversion" ) ); - vkCreateDescriptorUpdateTemplate = - PFN_vkCreateDescriptorUpdateTemplate( vkGetInstanceProcAddr( instance, "vkCreateDescriptorUpdateTemplate" ) ); - vkDestroyDescriptorUpdateTemplate = - PFN_vkDestroyDescriptorUpdateTemplate( vkGetInstanceProcAddr( instance, "vkDestroyDescriptorUpdateTemplate" ) ); - vkUpdateDescriptorSetWithTemplate = - PFN_vkUpdateDescriptorSetWithTemplate( vkGetInstanceProcAddr( instance, "vkUpdateDescriptorSetWithTemplate" ) ); - vkGetPhysicalDeviceExternalBufferProperties = PFN_vkGetPhysicalDeviceExternalBufferProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalBufferProperties" ) ); - vkGetPhysicalDeviceExternalFenceProperties = PFN_vkGetPhysicalDeviceExternalFenceProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalFenceProperties" ) ); - vkGetPhysicalDeviceExternalSemaphoreProperties = PFN_vkGetPhysicalDeviceExternalSemaphoreProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalSemaphoreProperties" ) ); - vkGetDescriptorSetLayoutSupport = - PFN_vkGetDescriptorSetLayoutSupport( vkGetInstanceProcAddr( instance, "vkGetDescriptorSetLayoutSupport" ) ); - - //=== VK_VERSION_1_2 === - vkCmdDrawIndirectCount = - PFN_vkCmdDrawIndirectCount( vkGetInstanceProcAddr( instance, "vkCmdDrawIndirectCount" ) ); - vkCmdDrawIndexedIndirectCount = - PFN_vkCmdDrawIndexedIndirectCount( vkGetInstanceProcAddr( instance, "vkCmdDrawIndexedIndirectCount" ) ); - vkCreateRenderPass2 = PFN_vkCreateRenderPass2( vkGetInstanceProcAddr( instance, "vkCreateRenderPass2" ) ); - vkCmdBeginRenderPass2 = PFN_vkCmdBeginRenderPass2( vkGetInstanceProcAddr( instance, "vkCmdBeginRenderPass2" ) ); - vkCmdNextSubpass2 = PFN_vkCmdNextSubpass2( vkGetInstanceProcAddr( instance, "vkCmdNextSubpass2" ) ); - vkCmdEndRenderPass2 = PFN_vkCmdEndRenderPass2( vkGetInstanceProcAddr( instance, "vkCmdEndRenderPass2" ) ); - vkResetQueryPool = PFN_vkResetQueryPool( vkGetInstanceProcAddr( instance, "vkResetQueryPool" ) ); - vkGetSemaphoreCounterValue = - PFN_vkGetSemaphoreCounterValue( vkGetInstanceProcAddr( instance, "vkGetSemaphoreCounterValue" ) ); - vkWaitSemaphores = PFN_vkWaitSemaphores( vkGetInstanceProcAddr( instance, "vkWaitSemaphores" ) ); - vkSignalSemaphore = PFN_vkSignalSemaphore( vkGetInstanceProcAddr( instance, "vkSignalSemaphore" ) ); - vkGetBufferDeviceAddress = - PFN_vkGetBufferDeviceAddress( vkGetInstanceProcAddr( instance, "vkGetBufferDeviceAddress" ) ); - vkGetBufferOpaqueCaptureAddress = - PFN_vkGetBufferOpaqueCaptureAddress( vkGetInstanceProcAddr( instance, "vkGetBufferOpaqueCaptureAddress" ) ); - vkGetDeviceMemoryOpaqueCaptureAddress = PFN_vkGetDeviceMemoryOpaqueCaptureAddress( - vkGetInstanceProcAddr( instance, "vkGetDeviceMemoryOpaqueCaptureAddress" ) ); - - //=== VK_VERSION_1_3 === - vkGetPhysicalDeviceToolProperties = - PFN_vkGetPhysicalDeviceToolProperties( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceToolProperties" ) ); - vkCreatePrivateDataSlot = - PFN_vkCreatePrivateDataSlot( vkGetInstanceProcAddr( instance, "vkCreatePrivateDataSlot" ) ); - vkDestroyPrivateDataSlot = - PFN_vkDestroyPrivateDataSlot( vkGetInstanceProcAddr( instance, "vkDestroyPrivateDataSlot" ) ); - vkSetPrivateData = PFN_vkSetPrivateData( vkGetInstanceProcAddr( instance, "vkSetPrivateData" ) ); - vkGetPrivateData = PFN_vkGetPrivateData( vkGetInstanceProcAddr( instance, "vkGetPrivateData" ) ); - vkCmdSetEvent2 = PFN_vkCmdSetEvent2( vkGetInstanceProcAddr( instance, "vkCmdSetEvent2" ) ); - vkCmdResetEvent2 = PFN_vkCmdResetEvent2( vkGetInstanceProcAddr( instance, "vkCmdResetEvent2" ) ); - vkCmdWaitEvents2 = PFN_vkCmdWaitEvents2( vkGetInstanceProcAddr( instance, "vkCmdWaitEvents2" ) ); - vkCmdPipelineBarrier2 = PFN_vkCmdPipelineBarrier2( vkGetInstanceProcAddr( instance, "vkCmdPipelineBarrier2" ) ); - vkCmdWriteTimestamp2 = PFN_vkCmdWriteTimestamp2( vkGetInstanceProcAddr( instance, "vkCmdWriteTimestamp2" ) ); - vkQueueSubmit2 = PFN_vkQueueSubmit2( vkGetInstanceProcAddr( instance, "vkQueueSubmit2" ) ); - vkCmdCopyBuffer2 = PFN_vkCmdCopyBuffer2( vkGetInstanceProcAddr( instance, "vkCmdCopyBuffer2" ) ); - vkCmdCopyImage2 = PFN_vkCmdCopyImage2( vkGetInstanceProcAddr( instance, "vkCmdCopyImage2" ) ); - vkCmdCopyBufferToImage2 = - PFN_vkCmdCopyBufferToImage2( vkGetInstanceProcAddr( instance, "vkCmdCopyBufferToImage2" ) ); - vkCmdCopyImageToBuffer2 = - PFN_vkCmdCopyImageToBuffer2( vkGetInstanceProcAddr( instance, "vkCmdCopyImageToBuffer2" ) ); - vkCmdBlitImage2 = PFN_vkCmdBlitImage2( vkGetInstanceProcAddr( instance, "vkCmdBlitImage2" ) ); - vkCmdResolveImage2 = PFN_vkCmdResolveImage2( vkGetInstanceProcAddr( instance, "vkCmdResolveImage2" ) ); - vkCmdBeginRendering = PFN_vkCmdBeginRendering( vkGetInstanceProcAddr( instance, "vkCmdBeginRendering" ) ); - vkCmdEndRendering = PFN_vkCmdEndRendering( vkGetInstanceProcAddr( instance, "vkCmdEndRendering" ) ); - vkCmdSetCullMode = PFN_vkCmdSetCullMode( vkGetInstanceProcAddr( instance, "vkCmdSetCullMode" ) ); - vkCmdSetFrontFace = PFN_vkCmdSetFrontFace( vkGetInstanceProcAddr( instance, "vkCmdSetFrontFace" ) ); - vkCmdSetPrimitiveTopology = - PFN_vkCmdSetPrimitiveTopology( vkGetInstanceProcAddr( instance, "vkCmdSetPrimitiveTopology" ) ); - vkCmdSetViewportWithCount = - PFN_vkCmdSetViewportWithCount( vkGetInstanceProcAddr( instance, "vkCmdSetViewportWithCount" ) ); - vkCmdSetScissorWithCount = - PFN_vkCmdSetScissorWithCount( vkGetInstanceProcAddr( instance, "vkCmdSetScissorWithCount" ) ); - vkCmdBindVertexBuffers2 = - PFN_vkCmdBindVertexBuffers2( vkGetInstanceProcAddr( instance, "vkCmdBindVertexBuffers2" ) ); - vkCmdSetDepthTestEnable = - PFN_vkCmdSetDepthTestEnable( vkGetInstanceProcAddr( instance, "vkCmdSetDepthTestEnable" ) ); - vkCmdSetDepthWriteEnable = - PFN_vkCmdSetDepthWriteEnable( vkGetInstanceProcAddr( instance, "vkCmdSetDepthWriteEnable" ) ); - vkCmdSetDepthCompareOp = - PFN_vkCmdSetDepthCompareOp( vkGetInstanceProcAddr( instance, "vkCmdSetDepthCompareOp" ) ); - vkCmdSetDepthBoundsTestEnable = - PFN_vkCmdSetDepthBoundsTestEnable( vkGetInstanceProcAddr( instance, "vkCmdSetDepthBoundsTestEnable" ) ); - vkCmdSetStencilTestEnable = - PFN_vkCmdSetStencilTestEnable( vkGetInstanceProcAddr( instance, "vkCmdSetStencilTestEnable" ) ); - vkCmdSetStencilOp = PFN_vkCmdSetStencilOp( vkGetInstanceProcAddr( instance, "vkCmdSetStencilOp" ) ); - vkCmdSetRasterizerDiscardEnable = - PFN_vkCmdSetRasterizerDiscardEnable( vkGetInstanceProcAddr( instance, "vkCmdSetRasterizerDiscardEnable" ) ); - vkCmdSetDepthBiasEnable = - PFN_vkCmdSetDepthBiasEnable( vkGetInstanceProcAddr( instance, "vkCmdSetDepthBiasEnable" ) ); - vkCmdSetPrimitiveRestartEnable = - PFN_vkCmdSetPrimitiveRestartEnable( vkGetInstanceProcAddr( instance, "vkCmdSetPrimitiveRestartEnable" ) ); - vkGetDeviceBufferMemoryRequirements = PFN_vkGetDeviceBufferMemoryRequirements( - vkGetInstanceProcAddr( instance, "vkGetDeviceBufferMemoryRequirements" ) ); - vkGetDeviceImageMemoryRequirements = PFN_vkGetDeviceImageMemoryRequirements( - vkGetInstanceProcAddr( instance, "vkGetDeviceImageMemoryRequirements" ) ); - vkGetDeviceImageSparseMemoryRequirements = PFN_vkGetDeviceImageSparseMemoryRequirements( - vkGetInstanceProcAddr( instance, "vkGetDeviceImageSparseMemoryRequirements" ) ); - - //=== VK_KHR_surface === - vkDestroySurfaceKHR = PFN_vkDestroySurfaceKHR( vkGetInstanceProcAddr( instance, "vkDestroySurfaceKHR" ) ); - vkGetPhysicalDeviceSurfaceSupportKHR = PFN_vkGetPhysicalDeviceSurfaceSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceSupportKHR" ) ); - vkGetPhysicalDeviceSurfaceCapabilitiesKHR = PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" ) ); - vkGetPhysicalDeviceSurfaceFormatsKHR = PFN_vkGetPhysicalDeviceSurfaceFormatsKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceFormatsKHR" ) ); - vkGetPhysicalDeviceSurfacePresentModesKHR = PFN_vkGetPhysicalDeviceSurfacePresentModesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfacePresentModesKHR" ) ); - - //=== VK_KHR_swapchain === - vkCreateSwapchainKHR = PFN_vkCreateSwapchainKHR( vkGetInstanceProcAddr( instance, "vkCreateSwapchainKHR" ) ); - vkDestroySwapchainKHR = PFN_vkDestroySwapchainKHR( vkGetInstanceProcAddr( instance, "vkDestroySwapchainKHR" ) ); - vkGetSwapchainImagesKHR = - PFN_vkGetSwapchainImagesKHR( vkGetInstanceProcAddr( instance, "vkGetSwapchainImagesKHR" ) ); - vkAcquireNextImageKHR = PFN_vkAcquireNextImageKHR( vkGetInstanceProcAddr( instance, "vkAcquireNextImageKHR" ) ); - vkQueuePresentKHR = PFN_vkQueuePresentKHR( vkGetInstanceProcAddr( instance, "vkQueuePresentKHR" ) ); - vkGetDeviceGroupPresentCapabilitiesKHR = PFN_vkGetDeviceGroupPresentCapabilitiesKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceGroupPresentCapabilitiesKHR" ) ); - vkGetDeviceGroupSurfacePresentModesKHR = PFN_vkGetDeviceGroupSurfacePresentModesKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceGroupSurfacePresentModesKHR" ) ); - vkGetPhysicalDevicePresentRectanglesKHR = PFN_vkGetPhysicalDevicePresentRectanglesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDevicePresentRectanglesKHR" ) ); - vkAcquireNextImage2KHR = - PFN_vkAcquireNextImage2KHR( vkGetInstanceProcAddr( instance, "vkAcquireNextImage2KHR" ) ); - - //=== VK_KHR_display === - vkGetPhysicalDeviceDisplayPropertiesKHR = PFN_vkGetPhysicalDeviceDisplayPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPropertiesKHR" ) ); - vkGetPhysicalDeviceDisplayPlanePropertiesKHR = PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlanePropertiesKHR" ) ); - vkGetDisplayPlaneSupportedDisplaysKHR = PFN_vkGetDisplayPlaneSupportedDisplaysKHR( - vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneSupportedDisplaysKHR" ) ); - vkGetDisplayModePropertiesKHR = - PFN_vkGetDisplayModePropertiesKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayModePropertiesKHR" ) ); - vkCreateDisplayModeKHR = - PFN_vkCreateDisplayModeKHR( vkGetInstanceProcAddr( instance, "vkCreateDisplayModeKHR" ) ); - vkGetDisplayPlaneCapabilitiesKHR = - PFN_vkGetDisplayPlaneCapabilitiesKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneCapabilitiesKHR" ) ); - vkCreateDisplayPlaneSurfaceKHR = - PFN_vkCreateDisplayPlaneSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateDisplayPlaneSurfaceKHR" ) ); - - //=== VK_KHR_display_swapchain === - vkCreateSharedSwapchainsKHR = - PFN_vkCreateSharedSwapchainsKHR( vkGetInstanceProcAddr( instance, "vkCreateSharedSwapchainsKHR" ) ); - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - vkCreateXlibSurfaceKHR = - PFN_vkCreateXlibSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateXlibSurfaceKHR" ) ); - vkGetPhysicalDeviceXlibPresentationSupportKHR = PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceXlibPresentationSupportKHR" ) ); -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - vkCreateXcbSurfaceKHR = PFN_vkCreateXcbSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateXcbSurfaceKHR" ) ); - vkGetPhysicalDeviceXcbPresentationSupportKHR = PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceXcbPresentationSupportKHR" ) ); -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - vkCreateWaylandSurfaceKHR = - PFN_vkCreateWaylandSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateWaylandSurfaceKHR" ) ); - vkGetPhysicalDeviceWaylandPresentationSupportKHR = PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceWaylandPresentationSupportKHR" ) ); -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - vkCreateAndroidSurfaceKHR = - PFN_vkCreateAndroidSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateAndroidSurfaceKHR" ) ); -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - vkCreateWin32SurfaceKHR = - PFN_vkCreateWin32SurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateWin32SurfaceKHR" ) ); - vkGetPhysicalDeviceWin32PresentationSupportKHR = PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceWin32PresentationSupportKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - vkCreateDebugReportCallbackEXT = - PFN_vkCreateDebugReportCallbackEXT( vkGetInstanceProcAddr( instance, "vkCreateDebugReportCallbackEXT" ) ); - vkDestroyDebugReportCallbackEXT = - PFN_vkDestroyDebugReportCallbackEXT( vkGetInstanceProcAddr( instance, "vkDestroyDebugReportCallbackEXT" ) ); - vkDebugReportMessageEXT = - PFN_vkDebugReportMessageEXT( vkGetInstanceProcAddr( instance, "vkDebugReportMessageEXT" ) ); - - //=== VK_EXT_debug_marker === - vkDebugMarkerSetObjectTagEXT = - PFN_vkDebugMarkerSetObjectTagEXT( vkGetInstanceProcAddr( instance, "vkDebugMarkerSetObjectTagEXT" ) ); - vkDebugMarkerSetObjectNameEXT = - PFN_vkDebugMarkerSetObjectNameEXT( vkGetInstanceProcAddr( instance, "vkDebugMarkerSetObjectNameEXT" ) ); - vkCmdDebugMarkerBeginEXT = - PFN_vkCmdDebugMarkerBeginEXT( vkGetInstanceProcAddr( instance, "vkCmdDebugMarkerBeginEXT" ) ); - vkCmdDebugMarkerEndEXT = - PFN_vkCmdDebugMarkerEndEXT( vkGetInstanceProcAddr( instance, "vkCmdDebugMarkerEndEXT" ) ); - vkCmdDebugMarkerInsertEXT = - PFN_vkCmdDebugMarkerInsertEXT( vkGetInstanceProcAddr( instance, "vkCmdDebugMarkerInsertEXT" ) ); - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - vkGetPhysicalDeviceVideoCapabilitiesKHR = PFN_vkGetPhysicalDeviceVideoCapabilitiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceVideoCapabilitiesKHR" ) ); - vkGetPhysicalDeviceVideoFormatPropertiesKHR = PFN_vkGetPhysicalDeviceVideoFormatPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceVideoFormatPropertiesKHR" ) ); - vkCreateVideoSessionKHR = - PFN_vkCreateVideoSessionKHR( vkGetInstanceProcAddr( instance, "vkCreateVideoSessionKHR" ) ); - vkDestroyVideoSessionKHR = - PFN_vkDestroyVideoSessionKHR( vkGetInstanceProcAddr( instance, "vkDestroyVideoSessionKHR" ) ); - vkGetVideoSessionMemoryRequirementsKHR = PFN_vkGetVideoSessionMemoryRequirementsKHR( - vkGetInstanceProcAddr( instance, "vkGetVideoSessionMemoryRequirementsKHR" ) ); - vkBindVideoSessionMemoryKHR = - PFN_vkBindVideoSessionMemoryKHR( vkGetInstanceProcAddr( instance, "vkBindVideoSessionMemoryKHR" ) ); - vkCreateVideoSessionParametersKHR = - PFN_vkCreateVideoSessionParametersKHR( vkGetInstanceProcAddr( instance, "vkCreateVideoSessionParametersKHR" ) ); - vkUpdateVideoSessionParametersKHR = - PFN_vkUpdateVideoSessionParametersKHR( vkGetInstanceProcAddr( instance, "vkUpdateVideoSessionParametersKHR" ) ); - vkDestroyVideoSessionParametersKHR = PFN_vkDestroyVideoSessionParametersKHR( - vkGetInstanceProcAddr( instance, "vkDestroyVideoSessionParametersKHR" ) ); - vkCmdBeginVideoCodingKHR = - PFN_vkCmdBeginVideoCodingKHR( vkGetInstanceProcAddr( instance, "vkCmdBeginVideoCodingKHR" ) ); - vkCmdEndVideoCodingKHR = - PFN_vkCmdEndVideoCodingKHR( vkGetInstanceProcAddr( instance, "vkCmdEndVideoCodingKHR" ) ); - vkCmdControlVideoCodingKHR = - PFN_vkCmdControlVideoCodingKHR( vkGetInstanceProcAddr( instance, "vkCmdControlVideoCodingKHR" ) ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - vkCmdDecodeVideoKHR = PFN_vkCmdDecodeVideoKHR( vkGetInstanceProcAddr( instance, "vkCmdDecodeVideoKHR" ) ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - vkCmdBindTransformFeedbackBuffersEXT = PFN_vkCmdBindTransformFeedbackBuffersEXT( - vkGetInstanceProcAddr( instance, "vkCmdBindTransformFeedbackBuffersEXT" ) ); - vkCmdBeginTransformFeedbackEXT = - PFN_vkCmdBeginTransformFeedbackEXT( vkGetInstanceProcAddr( instance, "vkCmdBeginTransformFeedbackEXT" ) ); - vkCmdEndTransformFeedbackEXT = - PFN_vkCmdEndTransformFeedbackEXT( vkGetInstanceProcAddr( instance, "vkCmdEndTransformFeedbackEXT" ) ); - vkCmdBeginQueryIndexedEXT = - PFN_vkCmdBeginQueryIndexedEXT( vkGetInstanceProcAddr( instance, "vkCmdBeginQueryIndexedEXT" ) ); - vkCmdEndQueryIndexedEXT = - PFN_vkCmdEndQueryIndexedEXT( vkGetInstanceProcAddr( instance, "vkCmdEndQueryIndexedEXT" ) ); - vkCmdDrawIndirectByteCountEXT = - PFN_vkCmdDrawIndirectByteCountEXT( vkGetInstanceProcAddr( instance, "vkCmdDrawIndirectByteCountEXT" ) ); - - //=== VK_NVX_binary_import === - vkCreateCuModuleNVX = PFN_vkCreateCuModuleNVX( vkGetInstanceProcAddr( instance, "vkCreateCuModuleNVX" ) ); - vkCreateCuFunctionNVX = PFN_vkCreateCuFunctionNVX( vkGetInstanceProcAddr( instance, "vkCreateCuFunctionNVX" ) ); - vkDestroyCuModuleNVX = PFN_vkDestroyCuModuleNVX( vkGetInstanceProcAddr( instance, "vkDestroyCuModuleNVX" ) ); - vkDestroyCuFunctionNVX = - PFN_vkDestroyCuFunctionNVX( vkGetInstanceProcAddr( instance, "vkDestroyCuFunctionNVX" ) ); - vkCmdCuLaunchKernelNVX = - PFN_vkCmdCuLaunchKernelNVX( vkGetInstanceProcAddr( instance, "vkCmdCuLaunchKernelNVX" ) ); - - //=== VK_NVX_image_view_handle === - vkGetImageViewHandleNVX = - PFN_vkGetImageViewHandleNVX( vkGetInstanceProcAddr( instance, "vkGetImageViewHandleNVX" ) ); - vkGetImageViewAddressNVX = - PFN_vkGetImageViewAddressNVX( vkGetInstanceProcAddr( instance, "vkGetImageViewAddressNVX" ) ); - - //=== VK_AMD_draw_indirect_count === - vkCmdDrawIndirectCountAMD = - PFN_vkCmdDrawIndirectCountAMD( vkGetInstanceProcAddr( instance, "vkCmdDrawIndirectCountAMD" ) ); - if ( !vkCmdDrawIndirectCount ) - vkCmdDrawIndirectCount = vkCmdDrawIndirectCountAMD; - vkCmdDrawIndexedIndirectCountAMD = - PFN_vkCmdDrawIndexedIndirectCountAMD( vkGetInstanceProcAddr( instance, "vkCmdDrawIndexedIndirectCountAMD" ) ); - if ( !vkCmdDrawIndexedIndirectCount ) - vkCmdDrawIndexedIndirectCount = vkCmdDrawIndexedIndirectCountAMD; - - //=== VK_AMD_shader_info === - vkGetShaderInfoAMD = PFN_vkGetShaderInfoAMD( vkGetInstanceProcAddr( instance, "vkGetShaderInfoAMD" ) ); - - //=== VK_KHR_dynamic_rendering === - vkCmdBeginRenderingKHR = - PFN_vkCmdBeginRenderingKHR( vkGetInstanceProcAddr( instance, "vkCmdBeginRenderingKHR" ) ); - if ( !vkCmdBeginRendering ) - vkCmdBeginRendering = vkCmdBeginRenderingKHR; - vkCmdEndRenderingKHR = PFN_vkCmdEndRenderingKHR( vkGetInstanceProcAddr( instance, "vkCmdEndRenderingKHR" ) ); - if ( !vkCmdEndRendering ) - vkCmdEndRendering = vkCmdEndRenderingKHR; - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - vkCreateStreamDescriptorSurfaceGGP = PFN_vkCreateStreamDescriptorSurfaceGGP( - vkGetInstanceProcAddr( instance, "vkCreateStreamDescriptorSurfaceGGP" ) ); -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - vkGetPhysicalDeviceExternalImageFormatPropertiesNV = PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalImageFormatPropertiesNV" ) ); - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - vkGetMemoryWin32HandleNV = - PFN_vkGetMemoryWin32HandleNV( vkGetInstanceProcAddr( instance, "vkGetMemoryWin32HandleNV" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_get_physical_device_properties2 === - vkGetPhysicalDeviceFeatures2KHR = - PFN_vkGetPhysicalDeviceFeatures2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFeatures2KHR" ) ); - if ( !vkGetPhysicalDeviceFeatures2 ) - vkGetPhysicalDeviceFeatures2 = vkGetPhysicalDeviceFeatures2KHR; - vkGetPhysicalDeviceProperties2KHR = - PFN_vkGetPhysicalDeviceProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceProperties2 ) - vkGetPhysicalDeviceProperties2 = vkGetPhysicalDeviceProperties2KHR; - vkGetPhysicalDeviceFormatProperties2KHR = PFN_vkGetPhysicalDeviceFormatProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFormatProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceFormatProperties2 ) - vkGetPhysicalDeviceFormatProperties2 = vkGetPhysicalDeviceFormatProperties2KHR; - vkGetPhysicalDeviceImageFormatProperties2KHR = PFN_vkGetPhysicalDeviceImageFormatProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceImageFormatProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceImageFormatProperties2 ) - vkGetPhysicalDeviceImageFormatProperties2 = vkGetPhysicalDeviceImageFormatProperties2KHR; - vkGetPhysicalDeviceQueueFamilyProperties2KHR = PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceQueueFamilyProperties2 ) - vkGetPhysicalDeviceQueueFamilyProperties2 = vkGetPhysicalDeviceQueueFamilyProperties2KHR; - vkGetPhysicalDeviceMemoryProperties2KHR = PFN_vkGetPhysicalDeviceMemoryProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMemoryProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceMemoryProperties2 ) - vkGetPhysicalDeviceMemoryProperties2 = vkGetPhysicalDeviceMemoryProperties2KHR; - vkGetPhysicalDeviceSparseImageFormatProperties2KHR = PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSparseImageFormatProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceSparseImageFormatProperties2 ) - vkGetPhysicalDeviceSparseImageFormatProperties2 = vkGetPhysicalDeviceSparseImageFormatProperties2KHR; - - //=== VK_KHR_device_group === - vkGetDeviceGroupPeerMemoryFeaturesKHR = PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceGroupPeerMemoryFeaturesKHR" ) ); - if ( !vkGetDeviceGroupPeerMemoryFeatures ) - vkGetDeviceGroupPeerMemoryFeatures = vkGetDeviceGroupPeerMemoryFeaturesKHR; - vkCmdSetDeviceMaskKHR = PFN_vkCmdSetDeviceMaskKHR( vkGetInstanceProcAddr( instance, "vkCmdSetDeviceMaskKHR" ) ); - if ( !vkCmdSetDeviceMask ) - vkCmdSetDeviceMask = vkCmdSetDeviceMaskKHR; - vkCmdDispatchBaseKHR = PFN_vkCmdDispatchBaseKHR( vkGetInstanceProcAddr( instance, "vkCmdDispatchBaseKHR" ) ); - if ( !vkCmdDispatchBase ) - vkCmdDispatchBase = vkCmdDispatchBaseKHR; - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - vkCreateViSurfaceNN = PFN_vkCreateViSurfaceNN( vkGetInstanceProcAddr( instance, "vkCreateViSurfaceNN" ) ); -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_maintenance1 === - vkTrimCommandPoolKHR = PFN_vkTrimCommandPoolKHR( vkGetInstanceProcAddr( instance, "vkTrimCommandPoolKHR" ) ); - if ( !vkTrimCommandPool ) - vkTrimCommandPool = vkTrimCommandPoolKHR; - - //=== VK_KHR_device_group_creation === - vkEnumeratePhysicalDeviceGroupsKHR = PFN_vkEnumeratePhysicalDeviceGroupsKHR( - vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDeviceGroupsKHR" ) ); - if ( !vkEnumeratePhysicalDeviceGroups ) - vkEnumeratePhysicalDeviceGroups = vkEnumeratePhysicalDeviceGroupsKHR; - - //=== VK_KHR_external_memory_capabilities === - vkGetPhysicalDeviceExternalBufferPropertiesKHR = PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalBufferPropertiesKHR" ) ); - if ( !vkGetPhysicalDeviceExternalBufferProperties ) - vkGetPhysicalDeviceExternalBufferProperties = vkGetPhysicalDeviceExternalBufferPropertiesKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - vkGetMemoryWin32HandleKHR = - PFN_vkGetMemoryWin32HandleKHR( vkGetInstanceProcAddr( instance, "vkGetMemoryWin32HandleKHR" ) ); - vkGetMemoryWin32HandlePropertiesKHR = PFN_vkGetMemoryWin32HandlePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetMemoryWin32HandlePropertiesKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - vkGetMemoryFdKHR = PFN_vkGetMemoryFdKHR( vkGetInstanceProcAddr( instance, "vkGetMemoryFdKHR" ) ); - vkGetMemoryFdPropertiesKHR = - PFN_vkGetMemoryFdPropertiesKHR( vkGetInstanceProcAddr( instance, "vkGetMemoryFdPropertiesKHR" ) ); - - //=== VK_KHR_external_semaphore_capabilities === - vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalSemaphorePropertiesKHR" ) ); - if ( !vkGetPhysicalDeviceExternalSemaphoreProperties ) - vkGetPhysicalDeviceExternalSemaphoreProperties = vkGetPhysicalDeviceExternalSemaphorePropertiesKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - vkImportSemaphoreWin32HandleKHR = - PFN_vkImportSemaphoreWin32HandleKHR( vkGetInstanceProcAddr( instance, "vkImportSemaphoreWin32HandleKHR" ) ); - vkGetSemaphoreWin32HandleKHR = - PFN_vkGetSemaphoreWin32HandleKHR( vkGetInstanceProcAddr( instance, "vkGetSemaphoreWin32HandleKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - vkImportSemaphoreFdKHR = - PFN_vkImportSemaphoreFdKHR( vkGetInstanceProcAddr( instance, "vkImportSemaphoreFdKHR" ) ); - vkGetSemaphoreFdKHR = PFN_vkGetSemaphoreFdKHR( vkGetInstanceProcAddr( instance, "vkGetSemaphoreFdKHR" ) ); - - //=== VK_KHR_push_descriptor === - vkCmdPushDescriptorSetKHR = - PFN_vkCmdPushDescriptorSetKHR( vkGetInstanceProcAddr( instance, "vkCmdPushDescriptorSetKHR" ) ); - vkCmdPushDescriptorSetWithTemplateKHR = PFN_vkCmdPushDescriptorSetWithTemplateKHR( - vkGetInstanceProcAddr( instance, "vkCmdPushDescriptorSetWithTemplateKHR" ) ); - - //=== VK_EXT_conditional_rendering === - vkCmdBeginConditionalRenderingEXT = - PFN_vkCmdBeginConditionalRenderingEXT( vkGetInstanceProcAddr( instance, "vkCmdBeginConditionalRenderingEXT" ) ); - vkCmdEndConditionalRenderingEXT = - PFN_vkCmdEndConditionalRenderingEXT( vkGetInstanceProcAddr( instance, "vkCmdEndConditionalRenderingEXT" ) ); - - //=== VK_KHR_descriptor_update_template === - vkCreateDescriptorUpdateTemplateKHR = PFN_vkCreateDescriptorUpdateTemplateKHR( - vkGetInstanceProcAddr( instance, "vkCreateDescriptorUpdateTemplateKHR" ) ); - if ( !vkCreateDescriptorUpdateTemplate ) - vkCreateDescriptorUpdateTemplate = vkCreateDescriptorUpdateTemplateKHR; - vkDestroyDescriptorUpdateTemplateKHR = PFN_vkDestroyDescriptorUpdateTemplateKHR( - vkGetInstanceProcAddr( instance, "vkDestroyDescriptorUpdateTemplateKHR" ) ); - if ( !vkDestroyDescriptorUpdateTemplate ) - vkDestroyDescriptorUpdateTemplate = vkDestroyDescriptorUpdateTemplateKHR; - vkUpdateDescriptorSetWithTemplateKHR = PFN_vkUpdateDescriptorSetWithTemplateKHR( - vkGetInstanceProcAddr( instance, "vkUpdateDescriptorSetWithTemplateKHR" ) ); - if ( !vkUpdateDescriptorSetWithTemplate ) - vkUpdateDescriptorSetWithTemplate = vkUpdateDescriptorSetWithTemplateKHR; - - //=== VK_NV_clip_space_w_scaling === - vkCmdSetViewportWScalingNV = - PFN_vkCmdSetViewportWScalingNV( vkGetInstanceProcAddr( instance, "vkCmdSetViewportWScalingNV" ) ); - - //=== VK_EXT_direct_mode_display === - vkReleaseDisplayEXT = PFN_vkReleaseDisplayEXT( vkGetInstanceProcAddr( instance, "vkReleaseDisplayEXT" ) ); - -#if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - vkAcquireXlibDisplayEXT = - PFN_vkAcquireXlibDisplayEXT( vkGetInstanceProcAddr( instance, "vkAcquireXlibDisplayEXT" ) ); - vkGetRandROutputDisplayEXT = - PFN_vkGetRandROutputDisplayEXT( vkGetInstanceProcAddr( instance, "vkGetRandROutputDisplayEXT" ) ); -#endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - vkGetPhysicalDeviceSurfaceCapabilities2EXT = PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceCapabilities2EXT" ) ); - - //=== VK_EXT_display_control === - vkDisplayPowerControlEXT = - PFN_vkDisplayPowerControlEXT( vkGetInstanceProcAddr( instance, "vkDisplayPowerControlEXT" ) ); - vkRegisterDeviceEventEXT = - PFN_vkRegisterDeviceEventEXT( vkGetInstanceProcAddr( instance, "vkRegisterDeviceEventEXT" ) ); - vkRegisterDisplayEventEXT = - PFN_vkRegisterDisplayEventEXT( vkGetInstanceProcAddr( instance, "vkRegisterDisplayEventEXT" ) ); - vkGetSwapchainCounterEXT = - PFN_vkGetSwapchainCounterEXT( vkGetInstanceProcAddr( instance, "vkGetSwapchainCounterEXT" ) ); - - //=== VK_GOOGLE_display_timing === - vkGetRefreshCycleDurationGOOGLE = - PFN_vkGetRefreshCycleDurationGOOGLE( vkGetInstanceProcAddr( instance, "vkGetRefreshCycleDurationGOOGLE" ) ); - vkGetPastPresentationTimingGOOGLE = - PFN_vkGetPastPresentationTimingGOOGLE( vkGetInstanceProcAddr( instance, "vkGetPastPresentationTimingGOOGLE" ) ); - - //=== VK_EXT_discard_rectangles === - vkCmdSetDiscardRectangleEXT = - PFN_vkCmdSetDiscardRectangleEXT( vkGetInstanceProcAddr( instance, "vkCmdSetDiscardRectangleEXT" ) ); - - //=== VK_EXT_hdr_metadata === - vkSetHdrMetadataEXT = PFN_vkSetHdrMetadataEXT( vkGetInstanceProcAddr( instance, "vkSetHdrMetadataEXT" ) ); - - //=== VK_KHR_create_renderpass2 === - vkCreateRenderPass2KHR = - PFN_vkCreateRenderPass2KHR( vkGetInstanceProcAddr( instance, "vkCreateRenderPass2KHR" ) ); - if ( !vkCreateRenderPass2 ) - vkCreateRenderPass2 = vkCreateRenderPass2KHR; - vkCmdBeginRenderPass2KHR = - PFN_vkCmdBeginRenderPass2KHR( vkGetInstanceProcAddr( instance, "vkCmdBeginRenderPass2KHR" ) ); - if ( !vkCmdBeginRenderPass2 ) - vkCmdBeginRenderPass2 = vkCmdBeginRenderPass2KHR; - vkCmdNextSubpass2KHR = PFN_vkCmdNextSubpass2KHR( vkGetInstanceProcAddr( instance, "vkCmdNextSubpass2KHR" ) ); - if ( !vkCmdNextSubpass2 ) - vkCmdNextSubpass2 = vkCmdNextSubpass2KHR; - vkCmdEndRenderPass2KHR = - PFN_vkCmdEndRenderPass2KHR( vkGetInstanceProcAddr( instance, "vkCmdEndRenderPass2KHR" ) ); - if ( !vkCmdEndRenderPass2 ) - vkCmdEndRenderPass2 = vkCmdEndRenderPass2KHR; - - //=== VK_KHR_shared_presentable_image === - vkGetSwapchainStatusKHR = - PFN_vkGetSwapchainStatusKHR( vkGetInstanceProcAddr( instance, "vkGetSwapchainStatusKHR" ) ); - - //=== VK_KHR_external_fence_capabilities === - vkGetPhysicalDeviceExternalFencePropertiesKHR = PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalFencePropertiesKHR" ) ); - if ( !vkGetPhysicalDeviceExternalFenceProperties ) - vkGetPhysicalDeviceExternalFenceProperties = vkGetPhysicalDeviceExternalFencePropertiesKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - vkImportFenceWin32HandleKHR = - PFN_vkImportFenceWin32HandleKHR( vkGetInstanceProcAddr( instance, "vkImportFenceWin32HandleKHR" ) ); - vkGetFenceWin32HandleKHR = - PFN_vkGetFenceWin32HandleKHR( vkGetInstanceProcAddr( instance, "vkGetFenceWin32HandleKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - vkImportFenceFdKHR = PFN_vkImportFenceFdKHR( vkGetInstanceProcAddr( instance, "vkImportFenceFdKHR" ) ); - vkGetFenceFdKHR = PFN_vkGetFenceFdKHR( vkGetInstanceProcAddr( instance, "vkGetFenceFdKHR" ) ); - - //=== VK_KHR_performance_query === - vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR = - PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR" ) ); - vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR = - PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR" ) ); - vkAcquireProfilingLockKHR = - PFN_vkAcquireProfilingLockKHR( vkGetInstanceProcAddr( instance, "vkAcquireProfilingLockKHR" ) ); - vkReleaseProfilingLockKHR = - PFN_vkReleaseProfilingLockKHR( vkGetInstanceProcAddr( instance, "vkReleaseProfilingLockKHR" ) ); - - //=== VK_KHR_get_surface_capabilities2 === - vkGetPhysicalDeviceSurfaceCapabilities2KHR = PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceCapabilities2KHR" ) ); - vkGetPhysicalDeviceSurfaceFormats2KHR = PFN_vkGetPhysicalDeviceSurfaceFormats2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceFormats2KHR" ) ); - - //=== VK_KHR_get_display_properties2 === - vkGetPhysicalDeviceDisplayProperties2KHR = PFN_vkGetPhysicalDeviceDisplayProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayProperties2KHR" ) ); - vkGetPhysicalDeviceDisplayPlaneProperties2KHR = PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlaneProperties2KHR" ) ); - vkGetDisplayModeProperties2KHR = - PFN_vkGetDisplayModeProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetDisplayModeProperties2KHR" ) ); - vkGetDisplayPlaneCapabilities2KHR = - PFN_vkGetDisplayPlaneCapabilities2KHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneCapabilities2KHR" ) ); - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - vkCreateIOSSurfaceMVK = PFN_vkCreateIOSSurfaceMVK( vkGetInstanceProcAddr( instance, "vkCreateIOSSurfaceMVK" ) ); -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - vkCreateMacOSSurfaceMVK = - PFN_vkCreateMacOSSurfaceMVK( vkGetInstanceProcAddr( instance, "vkCreateMacOSSurfaceMVK" ) ); -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - vkSetDebugUtilsObjectNameEXT = - PFN_vkSetDebugUtilsObjectNameEXT( vkGetInstanceProcAddr( instance, "vkSetDebugUtilsObjectNameEXT" ) ); - vkSetDebugUtilsObjectTagEXT = - PFN_vkSetDebugUtilsObjectTagEXT( vkGetInstanceProcAddr( instance, "vkSetDebugUtilsObjectTagEXT" ) ); - vkQueueBeginDebugUtilsLabelEXT = - PFN_vkQueueBeginDebugUtilsLabelEXT( vkGetInstanceProcAddr( instance, "vkQueueBeginDebugUtilsLabelEXT" ) ); - vkQueueEndDebugUtilsLabelEXT = - PFN_vkQueueEndDebugUtilsLabelEXT( vkGetInstanceProcAddr( instance, "vkQueueEndDebugUtilsLabelEXT" ) ); - vkQueueInsertDebugUtilsLabelEXT = - PFN_vkQueueInsertDebugUtilsLabelEXT( vkGetInstanceProcAddr( instance, "vkQueueInsertDebugUtilsLabelEXT" ) ); - vkCmdBeginDebugUtilsLabelEXT = - PFN_vkCmdBeginDebugUtilsLabelEXT( vkGetInstanceProcAddr( instance, "vkCmdBeginDebugUtilsLabelEXT" ) ); - vkCmdEndDebugUtilsLabelEXT = - PFN_vkCmdEndDebugUtilsLabelEXT( vkGetInstanceProcAddr( instance, "vkCmdEndDebugUtilsLabelEXT" ) ); - vkCmdInsertDebugUtilsLabelEXT = - PFN_vkCmdInsertDebugUtilsLabelEXT( vkGetInstanceProcAddr( instance, "vkCmdInsertDebugUtilsLabelEXT" ) ); - vkCreateDebugUtilsMessengerEXT = - PFN_vkCreateDebugUtilsMessengerEXT( vkGetInstanceProcAddr( instance, "vkCreateDebugUtilsMessengerEXT" ) ); - vkDestroyDebugUtilsMessengerEXT = - PFN_vkDestroyDebugUtilsMessengerEXT( vkGetInstanceProcAddr( instance, "vkDestroyDebugUtilsMessengerEXT" ) ); - vkSubmitDebugUtilsMessageEXT = - PFN_vkSubmitDebugUtilsMessageEXT( vkGetInstanceProcAddr( instance, "vkSubmitDebugUtilsMessageEXT" ) ); - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - vkGetAndroidHardwareBufferPropertiesANDROID = PFN_vkGetAndroidHardwareBufferPropertiesANDROID( - vkGetInstanceProcAddr( instance, "vkGetAndroidHardwareBufferPropertiesANDROID" ) ); - vkGetMemoryAndroidHardwareBufferANDROID = PFN_vkGetMemoryAndroidHardwareBufferANDROID( - vkGetInstanceProcAddr( instance, "vkGetMemoryAndroidHardwareBufferANDROID" ) ); -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - vkCmdSetSampleLocationsEXT = - PFN_vkCmdSetSampleLocationsEXT( vkGetInstanceProcAddr( instance, "vkCmdSetSampleLocationsEXT" ) ); - vkGetPhysicalDeviceMultisamplePropertiesEXT = PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMultisamplePropertiesEXT" ) ); - - //=== VK_KHR_get_memory_requirements2 === - vkGetImageMemoryRequirements2KHR = - PFN_vkGetImageMemoryRequirements2KHR( vkGetInstanceProcAddr( instance, "vkGetImageMemoryRequirements2KHR" ) ); - if ( !vkGetImageMemoryRequirements2 ) - vkGetImageMemoryRequirements2 = vkGetImageMemoryRequirements2KHR; - vkGetBufferMemoryRequirements2KHR = - PFN_vkGetBufferMemoryRequirements2KHR( vkGetInstanceProcAddr( instance, "vkGetBufferMemoryRequirements2KHR" ) ); - if ( !vkGetBufferMemoryRequirements2 ) - vkGetBufferMemoryRequirements2 = vkGetBufferMemoryRequirements2KHR; - vkGetImageSparseMemoryRequirements2KHR = PFN_vkGetImageSparseMemoryRequirements2KHR( - vkGetInstanceProcAddr( instance, "vkGetImageSparseMemoryRequirements2KHR" ) ); - if ( !vkGetImageSparseMemoryRequirements2 ) - vkGetImageSparseMemoryRequirements2 = vkGetImageSparseMemoryRequirements2KHR; - - //=== VK_KHR_acceleration_structure === - vkCreateAccelerationStructureKHR = - PFN_vkCreateAccelerationStructureKHR( vkGetInstanceProcAddr( instance, "vkCreateAccelerationStructureKHR" ) ); - vkDestroyAccelerationStructureKHR = - PFN_vkDestroyAccelerationStructureKHR( vkGetInstanceProcAddr( instance, "vkDestroyAccelerationStructureKHR" ) ); - vkCmdBuildAccelerationStructuresKHR = PFN_vkCmdBuildAccelerationStructuresKHR( - vkGetInstanceProcAddr( instance, "vkCmdBuildAccelerationStructuresKHR" ) ); - vkCmdBuildAccelerationStructuresIndirectKHR = PFN_vkCmdBuildAccelerationStructuresIndirectKHR( - vkGetInstanceProcAddr( instance, "vkCmdBuildAccelerationStructuresIndirectKHR" ) ); - vkBuildAccelerationStructuresKHR = - PFN_vkBuildAccelerationStructuresKHR( vkGetInstanceProcAddr( instance, "vkBuildAccelerationStructuresKHR" ) ); - vkCopyAccelerationStructureKHR = - PFN_vkCopyAccelerationStructureKHR( vkGetInstanceProcAddr( instance, "vkCopyAccelerationStructureKHR" ) ); - vkCopyAccelerationStructureToMemoryKHR = PFN_vkCopyAccelerationStructureToMemoryKHR( - vkGetInstanceProcAddr( instance, "vkCopyAccelerationStructureToMemoryKHR" ) ); - vkCopyMemoryToAccelerationStructureKHR = PFN_vkCopyMemoryToAccelerationStructureKHR( - vkGetInstanceProcAddr( instance, "vkCopyMemoryToAccelerationStructureKHR" ) ); - vkWriteAccelerationStructuresPropertiesKHR = PFN_vkWriteAccelerationStructuresPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkWriteAccelerationStructuresPropertiesKHR" ) ); - vkCmdCopyAccelerationStructureKHR = - PFN_vkCmdCopyAccelerationStructureKHR( vkGetInstanceProcAddr( instance, "vkCmdCopyAccelerationStructureKHR" ) ); - vkCmdCopyAccelerationStructureToMemoryKHR = PFN_vkCmdCopyAccelerationStructureToMemoryKHR( - vkGetInstanceProcAddr( instance, "vkCmdCopyAccelerationStructureToMemoryKHR" ) ); - vkCmdCopyMemoryToAccelerationStructureKHR = PFN_vkCmdCopyMemoryToAccelerationStructureKHR( - vkGetInstanceProcAddr( instance, "vkCmdCopyMemoryToAccelerationStructureKHR" ) ); - vkGetAccelerationStructureDeviceAddressKHR = PFN_vkGetAccelerationStructureDeviceAddressKHR( - vkGetInstanceProcAddr( instance, "vkGetAccelerationStructureDeviceAddressKHR" ) ); - vkCmdWriteAccelerationStructuresPropertiesKHR = PFN_vkCmdWriteAccelerationStructuresPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkCmdWriteAccelerationStructuresPropertiesKHR" ) ); - vkGetDeviceAccelerationStructureCompatibilityKHR = PFN_vkGetDeviceAccelerationStructureCompatibilityKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceAccelerationStructureCompatibilityKHR" ) ); - vkGetAccelerationStructureBuildSizesKHR = PFN_vkGetAccelerationStructureBuildSizesKHR( - vkGetInstanceProcAddr( instance, "vkGetAccelerationStructureBuildSizesKHR" ) ); - - //=== VK_KHR_sampler_ycbcr_conversion === - vkCreateSamplerYcbcrConversionKHR = - PFN_vkCreateSamplerYcbcrConversionKHR( vkGetInstanceProcAddr( instance, "vkCreateSamplerYcbcrConversionKHR" ) ); - if ( !vkCreateSamplerYcbcrConversion ) - vkCreateSamplerYcbcrConversion = vkCreateSamplerYcbcrConversionKHR; - vkDestroySamplerYcbcrConversionKHR = PFN_vkDestroySamplerYcbcrConversionKHR( - vkGetInstanceProcAddr( instance, "vkDestroySamplerYcbcrConversionKHR" ) ); - if ( !vkDestroySamplerYcbcrConversion ) - vkDestroySamplerYcbcrConversion = vkDestroySamplerYcbcrConversionKHR; - - //=== VK_KHR_bind_memory2 === - vkBindBufferMemory2KHR = - PFN_vkBindBufferMemory2KHR( vkGetInstanceProcAddr( instance, "vkBindBufferMemory2KHR" ) ); - if ( !vkBindBufferMemory2 ) - vkBindBufferMemory2 = vkBindBufferMemory2KHR; - vkBindImageMemory2KHR = PFN_vkBindImageMemory2KHR( vkGetInstanceProcAddr( instance, "vkBindImageMemory2KHR" ) ); - if ( !vkBindImageMemory2 ) - vkBindImageMemory2 = vkBindImageMemory2KHR; - - //=== VK_EXT_image_drm_format_modifier === - vkGetImageDrmFormatModifierPropertiesEXT = PFN_vkGetImageDrmFormatModifierPropertiesEXT( - vkGetInstanceProcAddr( instance, "vkGetImageDrmFormatModifierPropertiesEXT" ) ); - - //=== VK_EXT_validation_cache === - vkCreateValidationCacheEXT = - PFN_vkCreateValidationCacheEXT( vkGetInstanceProcAddr( instance, "vkCreateValidationCacheEXT" ) ); - vkDestroyValidationCacheEXT = - PFN_vkDestroyValidationCacheEXT( vkGetInstanceProcAddr( instance, "vkDestroyValidationCacheEXT" ) ); - vkMergeValidationCachesEXT = - PFN_vkMergeValidationCachesEXT( vkGetInstanceProcAddr( instance, "vkMergeValidationCachesEXT" ) ); - vkGetValidationCacheDataEXT = - PFN_vkGetValidationCacheDataEXT( vkGetInstanceProcAddr( instance, "vkGetValidationCacheDataEXT" ) ); - - //=== VK_NV_shading_rate_image === - vkCmdBindShadingRateImageNV = - PFN_vkCmdBindShadingRateImageNV( vkGetInstanceProcAddr( instance, "vkCmdBindShadingRateImageNV" ) ); - vkCmdSetViewportShadingRatePaletteNV = PFN_vkCmdSetViewportShadingRatePaletteNV( - vkGetInstanceProcAddr( instance, "vkCmdSetViewportShadingRatePaletteNV" ) ); - vkCmdSetCoarseSampleOrderNV = - PFN_vkCmdSetCoarseSampleOrderNV( vkGetInstanceProcAddr( instance, "vkCmdSetCoarseSampleOrderNV" ) ); - - //=== VK_NV_ray_tracing === - vkCreateAccelerationStructureNV = - PFN_vkCreateAccelerationStructureNV( vkGetInstanceProcAddr( instance, "vkCreateAccelerationStructureNV" ) ); - vkDestroyAccelerationStructureNV = - PFN_vkDestroyAccelerationStructureNV( vkGetInstanceProcAddr( instance, "vkDestroyAccelerationStructureNV" ) ); - vkGetAccelerationStructureMemoryRequirementsNV = PFN_vkGetAccelerationStructureMemoryRequirementsNV( - vkGetInstanceProcAddr( instance, "vkGetAccelerationStructureMemoryRequirementsNV" ) ); - vkBindAccelerationStructureMemoryNV = PFN_vkBindAccelerationStructureMemoryNV( - vkGetInstanceProcAddr( instance, "vkBindAccelerationStructureMemoryNV" ) ); - vkCmdBuildAccelerationStructureNV = - PFN_vkCmdBuildAccelerationStructureNV( vkGetInstanceProcAddr( instance, "vkCmdBuildAccelerationStructureNV" ) ); - vkCmdCopyAccelerationStructureNV = - PFN_vkCmdCopyAccelerationStructureNV( vkGetInstanceProcAddr( instance, "vkCmdCopyAccelerationStructureNV" ) ); - vkCmdTraceRaysNV = PFN_vkCmdTraceRaysNV( vkGetInstanceProcAddr( instance, "vkCmdTraceRaysNV" ) ); - vkCreateRayTracingPipelinesNV = - PFN_vkCreateRayTracingPipelinesNV( vkGetInstanceProcAddr( instance, "vkCreateRayTracingPipelinesNV" ) ); - vkGetRayTracingShaderGroupHandlesNV = PFN_vkGetRayTracingShaderGroupHandlesNV( - vkGetInstanceProcAddr( instance, "vkGetRayTracingShaderGroupHandlesNV" ) ); - if ( !vkGetRayTracingShaderGroupHandlesKHR ) - vkGetRayTracingShaderGroupHandlesKHR = vkGetRayTracingShaderGroupHandlesNV; - vkGetAccelerationStructureHandleNV = PFN_vkGetAccelerationStructureHandleNV( - vkGetInstanceProcAddr( instance, "vkGetAccelerationStructureHandleNV" ) ); - vkCmdWriteAccelerationStructuresPropertiesNV = PFN_vkCmdWriteAccelerationStructuresPropertiesNV( - vkGetInstanceProcAddr( instance, "vkCmdWriteAccelerationStructuresPropertiesNV" ) ); - vkCompileDeferredNV = PFN_vkCompileDeferredNV( vkGetInstanceProcAddr( instance, "vkCompileDeferredNV" ) ); - - //=== VK_KHR_maintenance3 === - vkGetDescriptorSetLayoutSupportKHR = PFN_vkGetDescriptorSetLayoutSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetDescriptorSetLayoutSupportKHR" ) ); - if ( !vkGetDescriptorSetLayoutSupport ) - vkGetDescriptorSetLayoutSupport = vkGetDescriptorSetLayoutSupportKHR; - - //=== VK_KHR_draw_indirect_count === - vkCmdDrawIndirectCountKHR = - PFN_vkCmdDrawIndirectCountKHR( vkGetInstanceProcAddr( instance, "vkCmdDrawIndirectCountKHR" ) ); - if ( !vkCmdDrawIndirectCount ) - vkCmdDrawIndirectCount = vkCmdDrawIndirectCountKHR; - vkCmdDrawIndexedIndirectCountKHR = - PFN_vkCmdDrawIndexedIndirectCountKHR( vkGetInstanceProcAddr( instance, "vkCmdDrawIndexedIndirectCountKHR" ) ); - if ( !vkCmdDrawIndexedIndirectCount ) - vkCmdDrawIndexedIndirectCount = vkCmdDrawIndexedIndirectCountKHR; - - //=== VK_EXT_external_memory_host === - vkGetMemoryHostPointerPropertiesEXT = PFN_vkGetMemoryHostPointerPropertiesEXT( - vkGetInstanceProcAddr( instance, "vkGetMemoryHostPointerPropertiesEXT" ) ); - - //=== VK_AMD_buffer_marker === - vkCmdWriteBufferMarkerAMD = - PFN_vkCmdWriteBufferMarkerAMD( vkGetInstanceProcAddr( instance, "vkCmdWriteBufferMarkerAMD" ) ); - - //=== VK_EXT_calibrated_timestamps === - vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCalibrateableTimeDomainsEXT" ) ); - vkGetCalibratedTimestampsEXT = - PFN_vkGetCalibratedTimestampsEXT( vkGetInstanceProcAddr( instance, "vkGetCalibratedTimestampsEXT" ) ); - - //=== VK_NV_mesh_shader === - vkCmdDrawMeshTasksNV = PFN_vkCmdDrawMeshTasksNV( vkGetInstanceProcAddr( instance, "vkCmdDrawMeshTasksNV" ) ); - vkCmdDrawMeshTasksIndirectNV = - PFN_vkCmdDrawMeshTasksIndirectNV( vkGetInstanceProcAddr( instance, "vkCmdDrawMeshTasksIndirectNV" ) ); - vkCmdDrawMeshTasksIndirectCountNV = - PFN_vkCmdDrawMeshTasksIndirectCountNV( vkGetInstanceProcAddr( instance, "vkCmdDrawMeshTasksIndirectCountNV" ) ); - - //=== VK_NV_scissor_exclusive === - vkCmdSetExclusiveScissorNV = - PFN_vkCmdSetExclusiveScissorNV( vkGetInstanceProcAddr( instance, "vkCmdSetExclusiveScissorNV" ) ); - - //=== VK_NV_device_diagnostic_checkpoints === - vkCmdSetCheckpointNV = PFN_vkCmdSetCheckpointNV( vkGetInstanceProcAddr( instance, "vkCmdSetCheckpointNV" ) ); - vkGetQueueCheckpointDataNV = - PFN_vkGetQueueCheckpointDataNV( vkGetInstanceProcAddr( instance, "vkGetQueueCheckpointDataNV" ) ); - - //=== VK_KHR_timeline_semaphore === - vkGetSemaphoreCounterValueKHR = - PFN_vkGetSemaphoreCounterValueKHR( vkGetInstanceProcAddr( instance, "vkGetSemaphoreCounterValueKHR" ) ); - if ( !vkGetSemaphoreCounterValue ) - vkGetSemaphoreCounterValue = vkGetSemaphoreCounterValueKHR; - vkWaitSemaphoresKHR = PFN_vkWaitSemaphoresKHR( vkGetInstanceProcAddr( instance, "vkWaitSemaphoresKHR" ) ); - if ( !vkWaitSemaphores ) - vkWaitSemaphores = vkWaitSemaphoresKHR; - vkSignalSemaphoreKHR = PFN_vkSignalSemaphoreKHR( vkGetInstanceProcAddr( instance, "vkSignalSemaphoreKHR" ) ); - if ( !vkSignalSemaphore ) - vkSignalSemaphore = vkSignalSemaphoreKHR; - - //=== VK_INTEL_performance_query === - vkInitializePerformanceApiINTEL = - PFN_vkInitializePerformanceApiINTEL( vkGetInstanceProcAddr( instance, "vkInitializePerformanceApiINTEL" ) ); - vkUninitializePerformanceApiINTEL = - PFN_vkUninitializePerformanceApiINTEL( vkGetInstanceProcAddr( instance, "vkUninitializePerformanceApiINTEL" ) ); - vkCmdSetPerformanceMarkerINTEL = - PFN_vkCmdSetPerformanceMarkerINTEL( vkGetInstanceProcAddr( instance, "vkCmdSetPerformanceMarkerINTEL" ) ); - vkCmdSetPerformanceStreamMarkerINTEL = PFN_vkCmdSetPerformanceStreamMarkerINTEL( - vkGetInstanceProcAddr( instance, "vkCmdSetPerformanceStreamMarkerINTEL" ) ); - vkCmdSetPerformanceOverrideINTEL = - PFN_vkCmdSetPerformanceOverrideINTEL( vkGetInstanceProcAddr( instance, "vkCmdSetPerformanceOverrideINTEL" ) ); - vkAcquirePerformanceConfigurationINTEL = PFN_vkAcquirePerformanceConfigurationINTEL( - vkGetInstanceProcAddr( instance, "vkAcquirePerformanceConfigurationINTEL" ) ); - vkReleasePerformanceConfigurationINTEL = PFN_vkReleasePerformanceConfigurationINTEL( - vkGetInstanceProcAddr( instance, "vkReleasePerformanceConfigurationINTEL" ) ); - vkQueueSetPerformanceConfigurationINTEL = PFN_vkQueueSetPerformanceConfigurationINTEL( - vkGetInstanceProcAddr( instance, "vkQueueSetPerformanceConfigurationINTEL" ) ); - vkGetPerformanceParameterINTEL = - PFN_vkGetPerformanceParameterINTEL( vkGetInstanceProcAddr( instance, "vkGetPerformanceParameterINTEL" ) ); - - //=== VK_AMD_display_native_hdr === - vkSetLocalDimmingAMD = PFN_vkSetLocalDimmingAMD( vkGetInstanceProcAddr( instance, "vkSetLocalDimmingAMD" ) ); - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - vkCreateImagePipeSurfaceFUCHSIA = - PFN_vkCreateImagePipeSurfaceFUCHSIA( vkGetInstanceProcAddr( instance, "vkCreateImagePipeSurfaceFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - vkCreateMetalSurfaceEXT = - PFN_vkCreateMetalSurfaceEXT( vkGetInstanceProcAddr( instance, "vkCreateMetalSurfaceEXT" ) ); -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_KHR_fragment_shading_rate === - vkGetPhysicalDeviceFragmentShadingRatesKHR = PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFragmentShadingRatesKHR" ) ); - vkCmdSetFragmentShadingRateKHR = - PFN_vkCmdSetFragmentShadingRateKHR( vkGetInstanceProcAddr( instance, "vkCmdSetFragmentShadingRateKHR" ) ); - - //=== VK_EXT_buffer_device_address === - vkGetBufferDeviceAddressEXT = - PFN_vkGetBufferDeviceAddressEXT( vkGetInstanceProcAddr( instance, "vkGetBufferDeviceAddressEXT" ) ); - if ( !vkGetBufferDeviceAddress ) - vkGetBufferDeviceAddress = vkGetBufferDeviceAddressEXT; - - //=== VK_EXT_tooling_info === - vkGetPhysicalDeviceToolPropertiesEXT = PFN_vkGetPhysicalDeviceToolPropertiesEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceToolPropertiesEXT" ) ); - if ( !vkGetPhysicalDeviceToolProperties ) - vkGetPhysicalDeviceToolProperties = vkGetPhysicalDeviceToolPropertiesEXT; - - //=== VK_KHR_present_wait === - vkWaitForPresentKHR = PFN_vkWaitForPresentKHR( vkGetInstanceProcAddr( instance, "vkWaitForPresentKHR" ) ); - - //=== VK_NV_cooperative_matrix === - vkGetPhysicalDeviceCooperativeMatrixPropertiesNV = PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCooperativeMatrixPropertiesNV" ) ); - - //=== VK_NV_coverage_reduction_mode === - vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV = - PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV" ) ); - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - vkGetPhysicalDeviceSurfacePresentModes2EXT = PFN_vkGetPhysicalDeviceSurfacePresentModes2EXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfacePresentModes2EXT" ) ); - vkAcquireFullScreenExclusiveModeEXT = PFN_vkAcquireFullScreenExclusiveModeEXT( - vkGetInstanceProcAddr( instance, "vkAcquireFullScreenExclusiveModeEXT" ) ); - vkReleaseFullScreenExclusiveModeEXT = PFN_vkReleaseFullScreenExclusiveModeEXT( - vkGetInstanceProcAddr( instance, "vkReleaseFullScreenExclusiveModeEXT" ) ); - vkGetDeviceGroupSurfacePresentModes2EXT = PFN_vkGetDeviceGroupSurfacePresentModes2EXT( - vkGetInstanceProcAddr( instance, "vkGetDeviceGroupSurfacePresentModes2EXT" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - vkCreateHeadlessSurfaceEXT = - PFN_vkCreateHeadlessSurfaceEXT( vkGetInstanceProcAddr( instance, "vkCreateHeadlessSurfaceEXT" ) ); - - //=== VK_KHR_buffer_device_address === - vkGetBufferDeviceAddressKHR = - PFN_vkGetBufferDeviceAddressKHR( vkGetInstanceProcAddr( instance, "vkGetBufferDeviceAddressKHR" ) ); - if ( !vkGetBufferDeviceAddress ) - vkGetBufferDeviceAddress = vkGetBufferDeviceAddressKHR; - vkGetBufferOpaqueCaptureAddressKHR = PFN_vkGetBufferOpaqueCaptureAddressKHR( - vkGetInstanceProcAddr( instance, "vkGetBufferOpaqueCaptureAddressKHR" ) ); - if ( !vkGetBufferOpaqueCaptureAddress ) - vkGetBufferOpaqueCaptureAddress = vkGetBufferOpaqueCaptureAddressKHR; - vkGetDeviceMemoryOpaqueCaptureAddressKHR = PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceMemoryOpaqueCaptureAddressKHR" ) ); - if ( !vkGetDeviceMemoryOpaqueCaptureAddress ) - vkGetDeviceMemoryOpaqueCaptureAddress = vkGetDeviceMemoryOpaqueCaptureAddressKHR; - - //=== VK_EXT_line_rasterization === - vkCmdSetLineStippleEXT = - PFN_vkCmdSetLineStippleEXT( vkGetInstanceProcAddr( instance, "vkCmdSetLineStippleEXT" ) ); - - //=== VK_EXT_host_query_reset === - vkResetQueryPoolEXT = PFN_vkResetQueryPoolEXT( vkGetInstanceProcAddr( instance, "vkResetQueryPoolEXT" ) ); - if ( !vkResetQueryPool ) - vkResetQueryPool = vkResetQueryPoolEXT; - - //=== VK_EXT_extended_dynamic_state === - vkCmdSetCullModeEXT = PFN_vkCmdSetCullModeEXT( vkGetInstanceProcAddr( instance, "vkCmdSetCullModeEXT" ) ); - if ( !vkCmdSetCullMode ) - vkCmdSetCullMode = vkCmdSetCullModeEXT; - vkCmdSetFrontFaceEXT = PFN_vkCmdSetFrontFaceEXT( vkGetInstanceProcAddr( instance, "vkCmdSetFrontFaceEXT" ) ); - if ( !vkCmdSetFrontFace ) - vkCmdSetFrontFace = vkCmdSetFrontFaceEXT; - vkCmdSetPrimitiveTopologyEXT = - PFN_vkCmdSetPrimitiveTopologyEXT( vkGetInstanceProcAddr( instance, "vkCmdSetPrimitiveTopologyEXT" ) ); - if ( !vkCmdSetPrimitiveTopology ) - vkCmdSetPrimitiveTopology = vkCmdSetPrimitiveTopologyEXT; - vkCmdSetViewportWithCountEXT = - PFN_vkCmdSetViewportWithCountEXT( vkGetInstanceProcAddr( instance, "vkCmdSetViewportWithCountEXT" ) ); - if ( !vkCmdSetViewportWithCount ) - vkCmdSetViewportWithCount = vkCmdSetViewportWithCountEXT; - vkCmdSetScissorWithCountEXT = - PFN_vkCmdSetScissorWithCountEXT( vkGetInstanceProcAddr( instance, "vkCmdSetScissorWithCountEXT" ) ); - if ( !vkCmdSetScissorWithCount ) - vkCmdSetScissorWithCount = vkCmdSetScissorWithCountEXT; - vkCmdBindVertexBuffers2EXT = - PFN_vkCmdBindVertexBuffers2EXT( vkGetInstanceProcAddr( instance, "vkCmdBindVertexBuffers2EXT" ) ); - if ( !vkCmdBindVertexBuffers2 ) - vkCmdBindVertexBuffers2 = vkCmdBindVertexBuffers2EXT; - vkCmdSetDepthTestEnableEXT = - PFN_vkCmdSetDepthTestEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetDepthTestEnableEXT" ) ); - if ( !vkCmdSetDepthTestEnable ) - vkCmdSetDepthTestEnable = vkCmdSetDepthTestEnableEXT; - vkCmdSetDepthWriteEnableEXT = - PFN_vkCmdSetDepthWriteEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetDepthWriteEnableEXT" ) ); - if ( !vkCmdSetDepthWriteEnable ) - vkCmdSetDepthWriteEnable = vkCmdSetDepthWriteEnableEXT; - vkCmdSetDepthCompareOpEXT = - PFN_vkCmdSetDepthCompareOpEXT( vkGetInstanceProcAddr( instance, "vkCmdSetDepthCompareOpEXT" ) ); - if ( !vkCmdSetDepthCompareOp ) - vkCmdSetDepthCompareOp = vkCmdSetDepthCompareOpEXT; - vkCmdSetDepthBoundsTestEnableEXT = - PFN_vkCmdSetDepthBoundsTestEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetDepthBoundsTestEnableEXT" ) ); - if ( !vkCmdSetDepthBoundsTestEnable ) - vkCmdSetDepthBoundsTestEnable = vkCmdSetDepthBoundsTestEnableEXT; - vkCmdSetStencilTestEnableEXT = - PFN_vkCmdSetStencilTestEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetStencilTestEnableEXT" ) ); - if ( !vkCmdSetStencilTestEnable ) - vkCmdSetStencilTestEnable = vkCmdSetStencilTestEnableEXT; - vkCmdSetStencilOpEXT = PFN_vkCmdSetStencilOpEXT( vkGetInstanceProcAddr( instance, "vkCmdSetStencilOpEXT" ) ); - if ( !vkCmdSetStencilOp ) - vkCmdSetStencilOp = vkCmdSetStencilOpEXT; - - //=== VK_KHR_deferred_host_operations === - vkCreateDeferredOperationKHR = - PFN_vkCreateDeferredOperationKHR( vkGetInstanceProcAddr( instance, "vkCreateDeferredOperationKHR" ) ); - vkDestroyDeferredOperationKHR = - PFN_vkDestroyDeferredOperationKHR( vkGetInstanceProcAddr( instance, "vkDestroyDeferredOperationKHR" ) ); - vkGetDeferredOperationMaxConcurrencyKHR = PFN_vkGetDeferredOperationMaxConcurrencyKHR( - vkGetInstanceProcAddr( instance, "vkGetDeferredOperationMaxConcurrencyKHR" ) ); - vkGetDeferredOperationResultKHR = - PFN_vkGetDeferredOperationResultKHR( vkGetInstanceProcAddr( instance, "vkGetDeferredOperationResultKHR" ) ); - vkDeferredOperationJoinKHR = - PFN_vkDeferredOperationJoinKHR( vkGetInstanceProcAddr( instance, "vkDeferredOperationJoinKHR" ) ); - - //=== VK_KHR_pipeline_executable_properties === - vkGetPipelineExecutablePropertiesKHR = PFN_vkGetPipelineExecutablePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPipelineExecutablePropertiesKHR" ) ); - vkGetPipelineExecutableStatisticsKHR = PFN_vkGetPipelineExecutableStatisticsKHR( - vkGetInstanceProcAddr( instance, "vkGetPipelineExecutableStatisticsKHR" ) ); - vkGetPipelineExecutableInternalRepresentationsKHR = PFN_vkGetPipelineExecutableInternalRepresentationsKHR( - vkGetInstanceProcAddr( instance, "vkGetPipelineExecutableInternalRepresentationsKHR" ) ); - - //=== VK_NV_device_generated_commands === - vkGetGeneratedCommandsMemoryRequirementsNV = PFN_vkGetGeneratedCommandsMemoryRequirementsNV( - vkGetInstanceProcAddr( instance, "vkGetGeneratedCommandsMemoryRequirementsNV" ) ); - vkCmdPreprocessGeneratedCommandsNV = PFN_vkCmdPreprocessGeneratedCommandsNV( - vkGetInstanceProcAddr( instance, "vkCmdPreprocessGeneratedCommandsNV" ) ); - vkCmdExecuteGeneratedCommandsNV = - PFN_vkCmdExecuteGeneratedCommandsNV( vkGetInstanceProcAddr( instance, "vkCmdExecuteGeneratedCommandsNV" ) ); - vkCmdBindPipelineShaderGroupNV = - PFN_vkCmdBindPipelineShaderGroupNV( vkGetInstanceProcAddr( instance, "vkCmdBindPipelineShaderGroupNV" ) ); - vkCreateIndirectCommandsLayoutNV = - PFN_vkCreateIndirectCommandsLayoutNV( vkGetInstanceProcAddr( instance, "vkCreateIndirectCommandsLayoutNV" ) ); - vkDestroyIndirectCommandsLayoutNV = - PFN_vkDestroyIndirectCommandsLayoutNV( vkGetInstanceProcAddr( instance, "vkDestroyIndirectCommandsLayoutNV" ) ); - - //=== VK_EXT_acquire_drm_display === - vkAcquireDrmDisplayEXT = - PFN_vkAcquireDrmDisplayEXT( vkGetInstanceProcAddr( instance, "vkAcquireDrmDisplayEXT" ) ); - vkGetDrmDisplayEXT = PFN_vkGetDrmDisplayEXT( vkGetInstanceProcAddr( instance, "vkGetDrmDisplayEXT" ) ); - - //=== VK_EXT_private_data === - vkCreatePrivateDataSlotEXT = - PFN_vkCreatePrivateDataSlotEXT( vkGetInstanceProcAddr( instance, "vkCreatePrivateDataSlotEXT" ) ); - if ( !vkCreatePrivateDataSlot ) - vkCreatePrivateDataSlot = vkCreatePrivateDataSlotEXT; - vkDestroyPrivateDataSlotEXT = - PFN_vkDestroyPrivateDataSlotEXT( vkGetInstanceProcAddr( instance, "vkDestroyPrivateDataSlotEXT" ) ); - if ( !vkDestroyPrivateDataSlot ) - vkDestroyPrivateDataSlot = vkDestroyPrivateDataSlotEXT; - vkSetPrivateDataEXT = PFN_vkSetPrivateDataEXT( vkGetInstanceProcAddr( instance, "vkSetPrivateDataEXT" ) ); - if ( !vkSetPrivateData ) - vkSetPrivateData = vkSetPrivateDataEXT; - vkGetPrivateDataEXT = PFN_vkGetPrivateDataEXT( vkGetInstanceProcAddr( instance, "vkGetPrivateDataEXT" ) ); - if ( !vkGetPrivateData ) - vkGetPrivateData = vkGetPrivateDataEXT; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - vkCmdEncodeVideoKHR = PFN_vkCmdEncodeVideoKHR( vkGetInstanceProcAddr( instance, "vkCmdEncodeVideoKHR" ) ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - vkCmdSetEvent2KHR = PFN_vkCmdSetEvent2KHR( vkGetInstanceProcAddr( instance, "vkCmdSetEvent2KHR" ) ); - if ( !vkCmdSetEvent2 ) - vkCmdSetEvent2 = vkCmdSetEvent2KHR; - vkCmdResetEvent2KHR = PFN_vkCmdResetEvent2KHR( vkGetInstanceProcAddr( instance, "vkCmdResetEvent2KHR" ) ); - if ( !vkCmdResetEvent2 ) - vkCmdResetEvent2 = vkCmdResetEvent2KHR; - vkCmdWaitEvents2KHR = PFN_vkCmdWaitEvents2KHR( vkGetInstanceProcAddr( instance, "vkCmdWaitEvents2KHR" ) ); - if ( !vkCmdWaitEvents2 ) - vkCmdWaitEvents2 = vkCmdWaitEvents2KHR; - vkCmdPipelineBarrier2KHR = - PFN_vkCmdPipelineBarrier2KHR( vkGetInstanceProcAddr( instance, "vkCmdPipelineBarrier2KHR" ) ); - if ( !vkCmdPipelineBarrier2 ) - vkCmdPipelineBarrier2 = vkCmdPipelineBarrier2KHR; - vkCmdWriteTimestamp2KHR = - PFN_vkCmdWriteTimestamp2KHR( vkGetInstanceProcAddr( instance, "vkCmdWriteTimestamp2KHR" ) ); - if ( !vkCmdWriteTimestamp2 ) - vkCmdWriteTimestamp2 = vkCmdWriteTimestamp2KHR; - vkQueueSubmit2KHR = PFN_vkQueueSubmit2KHR( vkGetInstanceProcAddr( instance, "vkQueueSubmit2KHR" ) ); - if ( !vkQueueSubmit2 ) - vkQueueSubmit2 = vkQueueSubmit2KHR; - vkCmdWriteBufferMarker2AMD = - PFN_vkCmdWriteBufferMarker2AMD( vkGetInstanceProcAddr( instance, "vkCmdWriteBufferMarker2AMD" ) ); - vkGetQueueCheckpointData2NV = - PFN_vkGetQueueCheckpointData2NV( vkGetInstanceProcAddr( instance, "vkGetQueueCheckpointData2NV" ) ); - - //=== VK_NV_fragment_shading_rate_enums === - vkCmdSetFragmentShadingRateEnumNV = - PFN_vkCmdSetFragmentShadingRateEnumNV( vkGetInstanceProcAddr( instance, "vkCmdSetFragmentShadingRateEnumNV" ) ); - - //=== VK_KHR_copy_commands2 === - vkCmdCopyBuffer2KHR = PFN_vkCmdCopyBuffer2KHR( vkGetInstanceProcAddr( instance, "vkCmdCopyBuffer2KHR" ) ); - if ( !vkCmdCopyBuffer2 ) - vkCmdCopyBuffer2 = vkCmdCopyBuffer2KHR; - vkCmdCopyImage2KHR = PFN_vkCmdCopyImage2KHR( vkGetInstanceProcAddr( instance, "vkCmdCopyImage2KHR" ) ); - if ( !vkCmdCopyImage2 ) - vkCmdCopyImage2 = vkCmdCopyImage2KHR; - vkCmdCopyBufferToImage2KHR = - PFN_vkCmdCopyBufferToImage2KHR( vkGetInstanceProcAddr( instance, "vkCmdCopyBufferToImage2KHR" ) ); - if ( !vkCmdCopyBufferToImage2 ) - vkCmdCopyBufferToImage2 = vkCmdCopyBufferToImage2KHR; - vkCmdCopyImageToBuffer2KHR = - PFN_vkCmdCopyImageToBuffer2KHR( vkGetInstanceProcAddr( instance, "vkCmdCopyImageToBuffer2KHR" ) ); - if ( !vkCmdCopyImageToBuffer2 ) - vkCmdCopyImageToBuffer2 = vkCmdCopyImageToBuffer2KHR; - vkCmdBlitImage2KHR = PFN_vkCmdBlitImage2KHR( vkGetInstanceProcAddr( instance, "vkCmdBlitImage2KHR" ) ); - if ( !vkCmdBlitImage2 ) - vkCmdBlitImage2 = vkCmdBlitImage2KHR; - vkCmdResolveImage2KHR = PFN_vkCmdResolveImage2KHR( vkGetInstanceProcAddr( instance, "vkCmdResolveImage2KHR" ) ); - if ( !vkCmdResolveImage2 ) - vkCmdResolveImage2 = vkCmdResolveImage2KHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - vkAcquireWinrtDisplayNV = - PFN_vkAcquireWinrtDisplayNV( vkGetInstanceProcAddr( instance, "vkAcquireWinrtDisplayNV" ) ); - vkGetWinrtDisplayNV = PFN_vkGetWinrtDisplayNV( vkGetInstanceProcAddr( instance, "vkGetWinrtDisplayNV" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - vkCreateDirectFBSurfaceEXT = - PFN_vkCreateDirectFBSurfaceEXT( vkGetInstanceProcAddr( instance, "vkCreateDirectFBSurfaceEXT" ) ); - vkGetPhysicalDeviceDirectFBPresentationSupportEXT = PFN_vkGetPhysicalDeviceDirectFBPresentationSupportEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDirectFBPresentationSupportEXT" ) ); -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - vkCmdTraceRaysKHR = PFN_vkCmdTraceRaysKHR( vkGetInstanceProcAddr( instance, "vkCmdTraceRaysKHR" ) ); - vkCreateRayTracingPipelinesKHR = - PFN_vkCreateRayTracingPipelinesKHR( vkGetInstanceProcAddr( instance, "vkCreateRayTracingPipelinesKHR" ) ); - vkGetRayTracingShaderGroupHandlesKHR = PFN_vkGetRayTracingShaderGroupHandlesKHR( - vkGetInstanceProcAddr( instance, "vkGetRayTracingShaderGroupHandlesKHR" ) ); - vkGetRayTracingCaptureReplayShaderGroupHandlesKHR = PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( - vkGetInstanceProcAddr( instance, "vkGetRayTracingCaptureReplayShaderGroupHandlesKHR" ) ); - vkCmdTraceRaysIndirectKHR = - PFN_vkCmdTraceRaysIndirectKHR( vkGetInstanceProcAddr( instance, "vkCmdTraceRaysIndirectKHR" ) ); - vkGetRayTracingShaderGroupStackSizeKHR = PFN_vkGetRayTracingShaderGroupStackSizeKHR( - vkGetInstanceProcAddr( instance, "vkGetRayTracingShaderGroupStackSizeKHR" ) ); - vkCmdSetRayTracingPipelineStackSizeKHR = PFN_vkCmdSetRayTracingPipelineStackSizeKHR( - vkGetInstanceProcAddr( instance, "vkCmdSetRayTracingPipelineStackSizeKHR" ) ); - - //=== VK_EXT_vertex_input_dynamic_state === - vkCmdSetVertexInputEXT = - PFN_vkCmdSetVertexInputEXT( vkGetInstanceProcAddr( instance, "vkCmdSetVertexInputEXT" ) ); - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - vkGetMemoryZirconHandleFUCHSIA = - PFN_vkGetMemoryZirconHandleFUCHSIA( vkGetInstanceProcAddr( instance, "vkGetMemoryZirconHandleFUCHSIA" ) ); - vkGetMemoryZirconHandlePropertiesFUCHSIA = PFN_vkGetMemoryZirconHandlePropertiesFUCHSIA( - vkGetInstanceProcAddr( instance, "vkGetMemoryZirconHandlePropertiesFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - vkImportSemaphoreZirconHandleFUCHSIA = PFN_vkImportSemaphoreZirconHandleFUCHSIA( - vkGetInstanceProcAddr( instance, "vkImportSemaphoreZirconHandleFUCHSIA" ) ); - vkGetSemaphoreZirconHandleFUCHSIA = - PFN_vkGetSemaphoreZirconHandleFUCHSIA( vkGetInstanceProcAddr( instance, "vkGetSemaphoreZirconHandleFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - vkCreateBufferCollectionFUCHSIA = - PFN_vkCreateBufferCollectionFUCHSIA( vkGetInstanceProcAddr( instance, "vkCreateBufferCollectionFUCHSIA" ) ); - vkSetBufferCollectionImageConstraintsFUCHSIA = PFN_vkSetBufferCollectionImageConstraintsFUCHSIA( - vkGetInstanceProcAddr( instance, "vkSetBufferCollectionImageConstraintsFUCHSIA" ) ); - vkSetBufferCollectionBufferConstraintsFUCHSIA = PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA( - vkGetInstanceProcAddr( instance, "vkSetBufferCollectionBufferConstraintsFUCHSIA" ) ); - vkDestroyBufferCollectionFUCHSIA = - PFN_vkDestroyBufferCollectionFUCHSIA( vkGetInstanceProcAddr( instance, "vkDestroyBufferCollectionFUCHSIA" ) ); - vkGetBufferCollectionPropertiesFUCHSIA = PFN_vkGetBufferCollectionPropertiesFUCHSIA( - vkGetInstanceProcAddr( instance, "vkGetBufferCollectionPropertiesFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI = PFN_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - vkGetInstanceProcAddr( instance, "vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI" ) ); - vkCmdSubpassShadingHUAWEI = - PFN_vkCmdSubpassShadingHUAWEI( vkGetInstanceProcAddr( instance, "vkCmdSubpassShadingHUAWEI" ) ); - - //=== VK_HUAWEI_invocation_mask === - vkCmdBindInvocationMaskHUAWEI = - PFN_vkCmdBindInvocationMaskHUAWEI( vkGetInstanceProcAddr( instance, "vkCmdBindInvocationMaskHUAWEI" ) ); - - //=== VK_NV_external_memory_rdma === - vkGetMemoryRemoteAddressNV = - PFN_vkGetMemoryRemoteAddressNV( vkGetInstanceProcAddr( instance, "vkGetMemoryRemoteAddressNV" ) ); - - //=== VK_EXT_extended_dynamic_state2 === - vkCmdSetPatchControlPointsEXT = - PFN_vkCmdSetPatchControlPointsEXT( vkGetInstanceProcAddr( instance, "vkCmdSetPatchControlPointsEXT" ) ); - vkCmdSetRasterizerDiscardEnableEXT = PFN_vkCmdSetRasterizerDiscardEnableEXT( - vkGetInstanceProcAddr( instance, "vkCmdSetRasterizerDiscardEnableEXT" ) ); - if ( !vkCmdSetRasterizerDiscardEnable ) - vkCmdSetRasterizerDiscardEnable = vkCmdSetRasterizerDiscardEnableEXT; - vkCmdSetDepthBiasEnableEXT = - PFN_vkCmdSetDepthBiasEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetDepthBiasEnableEXT" ) ); - if ( !vkCmdSetDepthBiasEnable ) - vkCmdSetDepthBiasEnable = vkCmdSetDepthBiasEnableEXT; - vkCmdSetLogicOpEXT = PFN_vkCmdSetLogicOpEXT( vkGetInstanceProcAddr( instance, "vkCmdSetLogicOpEXT" ) ); - vkCmdSetPrimitiveRestartEnableEXT = - PFN_vkCmdSetPrimitiveRestartEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetPrimitiveRestartEnableEXT" ) ); - if ( !vkCmdSetPrimitiveRestartEnable ) - vkCmdSetPrimitiveRestartEnable = vkCmdSetPrimitiveRestartEnableEXT; - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - vkCreateScreenSurfaceQNX = - PFN_vkCreateScreenSurfaceQNX( vkGetInstanceProcAddr( instance, "vkCreateScreenSurfaceQNX" ) ); - vkGetPhysicalDeviceScreenPresentationSupportQNX = PFN_vkGetPhysicalDeviceScreenPresentationSupportQNX( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceScreenPresentationSupportQNX" ) ); -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - //=== VK_EXT_color_write_enable === - vkCmdSetColorWriteEnableEXT = - PFN_vkCmdSetColorWriteEnableEXT( vkGetInstanceProcAddr( instance, "vkCmdSetColorWriteEnableEXT" ) ); - - //=== VK_EXT_multi_draw === - vkCmdDrawMultiEXT = PFN_vkCmdDrawMultiEXT( vkGetInstanceProcAddr( instance, "vkCmdDrawMultiEXT" ) ); - vkCmdDrawMultiIndexedEXT = - PFN_vkCmdDrawMultiIndexedEXT( vkGetInstanceProcAddr( instance, "vkCmdDrawMultiIndexedEXT" ) ); - - //=== VK_EXT_pageable_device_local_memory === - vkSetDeviceMemoryPriorityEXT = - PFN_vkSetDeviceMemoryPriorityEXT( vkGetInstanceProcAddr( instance, "vkSetDeviceMemoryPriorityEXT" ) ); - - //=== VK_KHR_maintenance4 === - vkGetDeviceBufferMemoryRequirementsKHR = PFN_vkGetDeviceBufferMemoryRequirementsKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceBufferMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceBufferMemoryRequirements ) - vkGetDeviceBufferMemoryRequirements = vkGetDeviceBufferMemoryRequirementsKHR; - vkGetDeviceImageMemoryRequirementsKHR = PFN_vkGetDeviceImageMemoryRequirementsKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceImageMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceImageMemoryRequirements ) - vkGetDeviceImageMemoryRequirements = vkGetDeviceImageMemoryRequirementsKHR; - vkGetDeviceImageSparseMemoryRequirementsKHR = PFN_vkGetDeviceImageSparseMemoryRequirementsKHR( - vkGetInstanceProcAddr( instance, "vkGetDeviceImageSparseMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceImageSparseMemoryRequirements ) - vkGetDeviceImageSparseMemoryRequirements = vkGetDeviceImageSparseMemoryRequirementsKHR; - } - - void init( VULKAN_HPP_NAMESPACE::Device deviceCpp ) VULKAN_HPP_NOEXCEPT - { - VkDevice device = static_cast( deviceCpp ); - - //=== VK_VERSION_1_0 === - vkGetDeviceProcAddr = PFN_vkGetDeviceProcAddr( vkGetDeviceProcAddr( device, "vkGetDeviceProcAddr" ) ); - vkDestroyDevice = PFN_vkDestroyDevice( vkGetDeviceProcAddr( device, "vkDestroyDevice" ) ); - vkGetDeviceQueue = PFN_vkGetDeviceQueue( vkGetDeviceProcAddr( device, "vkGetDeviceQueue" ) ); - vkQueueSubmit = PFN_vkQueueSubmit( vkGetDeviceProcAddr( device, "vkQueueSubmit" ) ); - vkQueueWaitIdle = PFN_vkQueueWaitIdle( vkGetDeviceProcAddr( device, "vkQueueWaitIdle" ) ); - vkDeviceWaitIdle = PFN_vkDeviceWaitIdle( vkGetDeviceProcAddr( device, "vkDeviceWaitIdle" ) ); - vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) ); - vkFreeMemory = PFN_vkFreeMemory( vkGetDeviceProcAddr( device, "vkFreeMemory" ) ); - vkMapMemory = PFN_vkMapMemory( vkGetDeviceProcAddr( device, "vkMapMemory" ) ); - vkUnmapMemory = PFN_vkUnmapMemory( vkGetDeviceProcAddr( device, "vkUnmapMemory" ) ); - vkFlushMappedMemoryRanges = - PFN_vkFlushMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkFlushMappedMemoryRanges" ) ); - vkInvalidateMappedMemoryRanges = - PFN_vkInvalidateMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkInvalidateMappedMemoryRanges" ) ); - vkGetDeviceMemoryCommitment = - PFN_vkGetDeviceMemoryCommitment( vkGetDeviceProcAddr( device, "vkGetDeviceMemoryCommitment" ) ); - vkBindBufferMemory = PFN_vkBindBufferMemory( vkGetDeviceProcAddr( device, "vkBindBufferMemory" ) ); - vkBindImageMemory = PFN_vkBindImageMemory( vkGetDeviceProcAddr( device, "vkBindImageMemory" ) ); - vkGetBufferMemoryRequirements = - PFN_vkGetBufferMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetBufferMemoryRequirements" ) ); - vkGetImageMemoryRequirements = - PFN_vkGetImageMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetImageMemoryRequirements" ) ); - vkGetImageSparseMemoryRequirements = - PFN_vkGetImageSparseMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetImageSparseMemoryRequirements" ) ); - vkQueueBindSparse = PFN_vkQueueBindSparse( vkGetDeviceProcAddr( device, "vkQueueBindSparse" ) ); - vkCreateFence = PFN_vkCreateFence( vkGetDeviceProcAddr( device, "vkCreateFence" ) ); - vkDestroyFence = PFN_vkDestroyFence( vkGetDeviceProcAddr( device, "vkDestroyFence" ) ); - vkResetFences = PFN_vkResetFences( vkGetDeviceProcAddr( device, "vkResetFences" ) ); - vkGetFenceStatus = PFN_vkGetFenceStatus( vkGetDeviceProcAddr( device, "vkGetFenceStatus" ) ); - vkWaitForFences = PFN_vkWaitForFences( vkGetDeviceProcAddr( device, "vkWaitForFences" ) ); - vkCreateSemaphore = PFN_vkCreateSemaphore( vkGetDeviceProcAddr( device, "vkCreateSemaphore" ) ); - vkDestroySemaphore = PFN_vkDestroySemaphore( vkGetDeviceProcAddr( device, "vkDestroySemaphore" ) ); - vkCreateEvent = PFN_vkCreateEvent( vkGetDeviceProcAddr( device, "vkCreateEvent" ) ); - vkDestroyEvent = PFN_vkDestroyEvent( vkGetDeviceProcAddr( device, "vkDestroyEvent" ) ); - vkGetEventStatus = PFN_vkGetEventStatus( vkGetDeviceProcAddr( device, "vkGetEventStatus" ) ); - vkSetEvent = PFN_vkSetEvent( vkGetDeviceProcAddr( device, "vkSetEvent" ) ); - vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); - vkCreateQueryPool = PFN_vkCreateQueryPool( vkGetDeviceProcAddr( device, "vkCreateQueryPool" ) ); - vkDestroyQueryPool = PFN_vkDestroyQueryPool( vkGetDeviceProcAddr( device, "vkDestroyQueryPool" ) ); - vkGetQueryPoolResults = PFN_vkGetQueryPoolResults( vkGetDeviceProcAddr( device, "vkGetQueryPoolResults" ) ); - vkCreateBuffer = PFN_vkCreateBuffer( vkGetDeviceProcAddr( device, "vkCreateBuffer" ) ); - vkDestroyBuffer = PFN_vkDestroyBuffer( vkGetDeviceProcAddr( device, "vkDestroyBuffer" ) ); - vkCreateBufferView = PFN_vkCreateBufferView( vkGetDeviceProcAddr( device, "vkCreateBufferView" ) ); - vkDestroyBufferView = PFN_vkDestroyBufferView( vkGetDeviceProcAddr( device, "vkDestroyBufferView" ) ); - vkCreateImage = PFN_vkCreateImage( vkGetDeviceProcAddr( device, "vkCreateImage" ) ); - vkDestroyImage = PFN_vkDestroyImage( vkGetDeviceProcAddr( device, "vkDestroyImage" ) ); - vkGetImageSubresourceLayout = - PFN_vkGetImageSubresourceLayout( vkGetDeviceProcAddr( device, "vkGetImageSubresourceLayout" ) ); - vkCreateImageView = PFN_vkCreateImageView( vkGetDeviceProcAddr( device, "vkCreateImageView" ) ); - vkDestroyImageView = PFN_vkDestroyImageView( vkGetDeviceProcAddr( device, "vkDestroyImageView" ) ); - vkCreateShaderModule = PFN_vkCreateShaderModule( vkGetDeviceProcAddr( device, "vkCreateShaderModule" ) ); - vkDestroyShaderModule = PFN_vkDestroyShaderModule( vkGetDeviceProcAddr( device, "vkDestroyShaderModule" ) ); - vkCreatePipelineCache = PFN_vkCreatePipelineCache( vkGetDeviceProcAddr( device, "vkCreatePipelineCache" ) ); - vkDestroyPipelineCache = PFN_vkDestroyPipelineCache( vkGetDeviceProcAddr( device, "vkDestroyPipelineCache" ) ); - vkGetPipelineCacheData = PFN_vkGetPipelineCacheData( vkGetDeviceProcAddr( device, "vkGetPipelineCacheData" ) ); - vkMergePipelineCaches = PFN_vkMergePipelineCaches( vkGetDeviceProcAddr( device, "vkMergePipelineCaches" ) ); - vkCreateGraphicsPipelines = - PFN_vkCreateGraphicsPipelines( vkGetDeviceProcAddr( device, "vkCreateGraphicsPipelines" ) ); - vkCreateComputePipelines = - PFN_vkCreateComputePipelines( vkGetDeviceProcAddr( device, "vkCreateComputePipelines" ) ); - vkDestroyPipeline = PFN_vkDestroyPipeline( vkGetDeviceProcAddr( device, "vkDestroyPipeline" ) ); - vkCreatePipelineLayout = PFN_vkCreatePipelineLayout( vkGetDeviceProcAddr( device, "vkCreatePipelineLayout" ) ); - vkDestroyPipelineLayout = PFN_vkDestroyPipelineLayout( vkGetDeviceProcAddr( device, "vkDestroyPipelineLayout" ) ); - vkCreateSampler = PFN_vkCreateSampler( vkGetDeviceProcAddr( device, "vkCreateSampler" ) ); - vkDestroySampler = PFN_vkDestroySampler( vkGetDeviceProcAddr( device, "vkDestroySampler" ) ); - vkCreateDescriptorSetLayout = - PFN_vkCreateDescriptorSetLayout( vkGetDeviceProcAddr( device, "vkCreateDescriptorSetLayout" ) ); - vkDestroyDescriptorSetLayout = - PFN_vkDestroyDescriptorSetLayout( vkGetDeviceProcAddr( device, "vkDestroyDescriptorSetLayout" ) ); - vkCreateDescriptorPool = PFN_vkCreateDescriptorPool( vkGetDeviceProcAddr( device, "vkCreateDescriptorPool" ) ); - vkDestroyDescriptorPool = PFN_vkDestroyDescriptorPool( vkGetDeviceProcAddr( device, "vkDestroyDescriptorPool" ) ); - vkResetDescriptorPool = PFN_vkResetDescriptorPool( vkGetDeviceProcAddr( device, "vkResetDescriptorPool" ) ); - vkAllocateDescriptorSets = - PFN_vkAllocateDescriptorSets( vkGetDeviceProcAddr( device, "vkAllocateDescriptorSets" ) ); - vkFreeDescriptorSets = PFN_vkFreeDescriptorSets( vkGetDeviceProcAddr( device, "vkFreeDescriptorSets" ) ); - vkUpdateDescriptorSets = PFN_vkUpdateDescriptorSets( vkGetDeviceProcAddr( device, "vkUpdateDescriptorSets" ) ); - vkCreateFramebuffer = PFN_vkCreateFramebuffer( vkGetDeviceProcAddr( device, "vkCreateFramebuffer" ) ); - vkDestroyFramebuffer = PFN_vkDestroyFramebuffer( vkGetDeviceProcAddr( device, "vkDestroyFramebuffer" ) ); - vkCreateRenderPass = PFN_vkCreateRenderPass( vkGetDeviceProcAddr( device, "vkCreateRenderPass" ) ); - vkDestroyRenderPass = PFN_vkDestroyRenderPass( vkGetDeviceProcAddr( device, "vkDestroyRenderPass" ) ); - vkGetRenderAreaGranularity = - PFN_vkGetRenderAreaGranularity( vkGetDeviceProcAddr( device, "vkGetRenderAreaGranularity" ) ); - vkCreateCommandPool = PFN_vkCreateCommandPool( vkGetDeviceProcAddr( device, "vkCreateCommandPool" ) ); - vkDestroyCommandPool = PFN_vkDestroyCommandPool( vkGetDeviceProcAddr( device, "vkDestroyCommandPool" ) ); - vkResetCommandPool = PFN_vkResetCommandPool( vkGetDeviceProcAddr( device, "vkResetCommandPool" ) ); - vkAllocateCommandBuffers = - PFN_vkAllocateCommandBuffers( vkGetDeviceProcAddr( device, "vkAllocateCommandBuffers" ) ); - vkFreeCommandBuffers = PFN_vkFreeCommandBuffers( vkGetDeviceProcAddr( device, "vkFreeCommandBuffers" ) ); - vkBeginCommandBuffer = PFN_vkBeginCommandBuffer( vkGetDeviceProcAddr( device, "vkBeginCommandBuffer" ) ); - vkEndCommandBuffer = PFN_vkEndCommandBuffer( vkGetDeviceProcAddr( device, "vkEndCommandBuffer" ) ); - vkResetCommandBuffer = PFN_vkResetCommandBuffer( vkGetDeviceProcAddr( device, "vkResetCommandBuffer" ) ); - vkCmdBindPipeline = PFN_vkCmdBindPipeline( vkGetDeviceProcAddr( device, "vkCmdBindPipeline" ) ); - vkCmdSetViewport = PFN_vkCmdSetViewport( vkGetDeviceProcAddr( device, "vkCmdSetViewport" ) ); - vkCmdSetScissor = PFN_vkCmdSetScissor( vkGetDeviceProcAddr( device, "vkCmdSetScissor" ) ); - vkCmdSetLineWidth = PFN_vkCmdSetLineWidth( vkGetDeviceProcAddr( device, "vkCmdSetLineWidth" ) ); - vkCmdSetDepthBias = PFN_vkCmdSetDepthBias( vkGetDeviceProcAddr( device, "vkCmdSetDepthBias" ) ); - vkCmdSetBlendConstants = PFN_vkCmdSetBlendConstants( vkGetDeviceProcAddr( device, "vkCmdSetBlendConstants" ) ); - vkCmdSetDepthBounds = PFN_vkCmdSetDepthBounds( vkGetDeviceProcAddr( device, "vkCmdSetDepthBounds" ) ); - vkCmdSetStencilCompareMask = - PFN_vkCmdSetStencilCompareMask( vkGetDeviceProcAddr( device, "vkCmdSetStencilCompareMask" ) ); - vkCmdSetStencilWriteMask = - PFN_vkCmdSetStencilWriteMask( vkGetDeviceProcAddr( device, "vkCmdSetStencilWriteMask" ) ); - vkCmdSetStencilReference = - PFN_vkCmdSetStencilReference( vkGetDeviceProcAddr( device, "vkCmdSetStencilReference" ) ); - vkCmdBindDescriptorSets = PFN_vkCmdBindDescriptorSets( vkGetDeviceProcAddr( device, "vkCmdBindDescriptorSets" ) ); - vkCmdBindIndexBuffer = PFN_vkCmdBindIndexBuffer( vkGetDeviceProcAddr( device, "vkCmdBindIndexBuffer" ) ); - vkCmdBindVertexBuffers = PFN_vkCmdBindVertexBuffers( vkGetDeviceProcAddr( device, "vkCmdBindVertexBuffers" ) ); - vkCmdDraw = PFN_vkCmdDraw( vkGetDeviceProcAddr( device, "vkCmdDraw" ) ); - vkCmdDrawIndexed = PFN_vkCmdDrawIndexed( vkGetDeviceProcAddr( device, "vkCmdDrawIndexed" ) ); - vkCmdDrawIndirect = PFN_vkCmdDrawIndirect( vkGetDeviceProcAddr( device, "vkCmdDrawIndirect" ) ); - vkCmdDrawIndexedIndirect = - PFN_vkCmdDrawIndexedIndirect( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirect" ) ); - vkCmdDispatch = PFN_vkCmdDispatch( vkGetDeviceProcAddr( device, "vkCmdDispatch" ) ); - vkCmdDispatchIndirect = PFN_vkCmdDispatchIndirect( vkGetDeviceProcAddr( device, "vkCmdDispatchIndirect" ) ); - vkCmdCopyBuffer = PFN_vkCmdCopyBuffer( vkGetDeviceProcAddr( device, "vkCmdCopyBuffer" ) ); - vkCmdCopyImage = PFN_vkCmdCopyImage( vkGetDeviceProcAddr( device, "vkCmdCopyImage" ) ); - vkCmdBlitImage = PFN_vkCmdBlitImage( vkGetDeviceProcAddr( device, "vkCmdBlitImage" ) ); - vkCmdCopyBufferToImage = PFN_vkCmdCopyBufferToImage( vkGetDeviceProcAddr( device, "vkCmdCopyBufferToImage" ) ); - vkCmdCopyImageToBuffer = PFN_vkCmdCopyImageToBuffer( vkGetDeviceProcAddr( device, "vkCmdCopyImageToBuffer" ) ); - vkCmdUpdateBuffer = PFN_vkCmdUpdateBuffer( vkGetDeviceProcAddr( device, "vkCmdUpdateBuffer" ) ); - vkCmdFillBuffer = PFN_vkCmdFillBuffer( vkGetDeviceProcAddr( device, "vkCmdFillBuffer" ) ); - vkCmdClearColorImage = PFN_vkCmdClearColorImage( vkGetDeviceProcAddr( device, "vkCmdClearColorImage" ) ); - vkCmdClearDepthStencilImage = - PFN_vkCmdClearDepthStencilImage( vkGetDeviceProcAddr( device, "vkCmdClearDepthStencilImage" ) ); - vkCmdClearAttachments = PFN_vkCmdClearAttachments( vkGetDeviceProcAddr( device, "vkCmdClearAttachments" ) ); - vkCmdResolveImage = PFN_vkCmdResolveImage( vkGetDeviceProcAddr( device, "vkCmdResolveImage" ) ); - vkCmdSetEvent = PFN_vkCmdSetEvent( vkGetDeviceProcAddr( device, "vkCmdSetEvent" ) ); - vkCmdResetEvent = PFN_vkCmdResetEvent( vkGetDeviceProcAddr( device, "vkCmdResetEvent" ) ); - vkCmdWaitEvents = PFN_vkCmdWaitEvents( vkGetDeviceProcAddr( device, "vkCmdWaitEvents" ) ); - vkCmdPipelineBarrier = PFN_vkCmdPipelineBarrier( vkGetDeviceProcAddr( device, "vkCmdPipelineBarrier" ) ); - vkCmdBeginQuery = PFN_vkCmdBeginQuery( vkGetDeviceProcAddr( device, "vkCmdBeginQuery" ) ); - vkCmdEndQuery = PFN_vkCmdEndQuery( vkGetDeviceProcAddr( device, "vkCmdEndQuery" ) ); - vkCmdResetQueryPool = PFN_vkCmdResetQueryPool( vkGetDeviceProcAddr( device, "vkCmdResetQueryPool" ) ); - vkCmdWriteTimestamp = PFN_vkCmdWriteTimestamp( vkGetDeviceProcAddr( device, "vkCmdWriteTimestamp" ) ); - vkCmdCopyQueryPoolResults = - PFN_vkCmdCopyQueryPoolResults( vkGetDeviceProcAddr( device, "vkCmdCopyQueryPoolResults" ) ); - vkCmdPushConstants = PFN_vkCmdPushConstants( vkGetDeviceProcAddr( device, "vkCmdPushConstants" ) ); - vkCmdBeginRenderPass = PFN_vkCmdBeginRenderPass( vkGetDeviceProcAddr( device, "vkCmdBeginRenderPass" ) ); - vkCmdNextSubpass = PFN_vkCmdNextSubpass( vkGetDeviceProcAddr( device, "vkCmdNextSubpass" ) ); - vkCmdEndRenderPass = PFN_vkCmdEndRenderPass( vkGetDeviceProcAddr( device, "vkCmdEndRenderPass" ) ); - vkCmdExecuteCommands = PFN_vkCmdExecuteCommands( vkGetDeviceProcAddr( device, "vkCmdExecuteCommands" ) ); - - //=== VK_VERSION_1_1 === - vkBindBufferMemory2 = PFN_vkBindBufferMemory2( vkGetDeviceProcAddr( device, "vkBindBufferMemory2" ) ); - vkBindImageMemory2 = PFN_vkBindImageMemory2( vkGetDeviceProcAddr( device, "vkBindImageMemory2" ) ); - vkGetDeviceGroupPeerMemoryFeatures = - PFN_vkGetDeviceGroupPeerMemoryFeatures( vkGetDeviceProcAddr( device, "vkGetDeviceGroupPeerMemoryFeatures" ) ); - vkCmdSetDeviceMask = PFN_vkCmdSetDeviceMask( vkGetDeviceProcAddr( device, "vkCmdSetDeviceMask" ) ); - vkCmdDispatchBase = PFN_vkCmdDispatchBase( vkGetDeviceProcAddr( device, "vkCmdDispatchBase" ) ); - vkGetImageMemoryRequirements2 = - PFN_vkGetImageMemoryRequirements2( vkGetDeviceProcAddr( device, "vkGetImageMemoryRequirements2" ) ); - vkGetBufferMemoryRequirements2 = - PFN_vkGetBufferMemoryRequirements2( vkGetDeviceProcAddr( device, "vkGetBufferMemoryRequirements2" ) ); - vkGetImageSparseMemoryRequirements2 = - PFN_vkGetImageSparseMemoryRequirements2( vkGetDeviceProcAddr( device, "vkGetImageSparseMemoryRequirements2" ) ); - vkTrimCommandPool = PFN_vkTrimCommandPool( vkGetDeviceProcAddr( device, "vkTrimCommandPool" ) ); - vkGetDeviceQueue2 = PFN_vkGetDeviceQueue2( vkGetDeviceProcAddr( device, "vkGetDeviceQueue2" ) ); - vkCreateSamplerYcbcrConversion = - PFN_vkCreateSamplerYcbcrConversion( vkGetDeviceProcAddr( device, "vkCreateSamplerYcbcrConversion" ) ); - vkDestroySamplerYcbcrConversion = - PFN_vkDestroySamplerYcbcrConversion( vkGetDeviceProcAddr( device, "vkDestroySamplerYcbcrConversion" ) ); - vkCreateDescriptorUpdateTemplate = - PFN_vkCreateDescriptorUpdateTemplate( vkGetDeviceProcAddr( device, "vkCreateDescriptorUpdateTemplate" ) ); - vkDestroyDescriptorUpdateTemplate = - PFN_vkDestroyDescriptorUpdateTemplate( vkGetDeviceProcAddr( device, "vkDestroyDescriptorUpdateTemplate" ) ); - vkUpdateDescriptorSetWithTemplate = - PFN_vkUpdateDescriptorSetWithTemplate( vkGetDeviceProcAddr( device, "vkUpdateDescriptorSetWithTemplate" ) ); - vkGetDescriptorSetLayoutSupport = - PFN_vkGetDescriptorSetLayoutSupport( vkGetDeviceProcAddr( device, "vkGetDescriptorSetLayoutSupport" ) ); - - //=== VK_VERSION_1_2 === - vkCmdDrawIndirectCount = PFN_vkCmdDrawIndirectCount( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectCount" ) ); - vkCmdDrawIndexedIndirectCount = - PFN_vkCmdDrawIndexedIndirectCount( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirectCount" ) ); - vkCreateRenderPass2 = PFN_vkCreateRenderPass2( vkGetDeviceProcAddr( device, "vkCreateRenderPass2" ) ); - vkCmdBeginRenderPass2 = PFN_vkCmdBeginRenderPass2( vkGetDeviceProcAddr( device, "vkCmdBeginRenderPass2" ) ); - vkCmdNextSubpass2 = PFN_vkCmdNextSubpass2( vkGetDeviceProcAddr( device, "vkCmdNextSubpass2" ) ); - vkCmdEndRenderPass2 = PFN_vkCmdEndRenderPass2( vkGetDeviceProcAddr( device, "vkCmdEndRenderPass2" ) ); - vkResetQueryPool = PFN_vkResetQueryPool( vkGetDeviceProcAddr( device, "vkResetQueryPool" ) ); - vkGetSemaphoreCounterValue = - PFN_vkGetSemaphoreCounterValue( vkGetDeviceProcAddr( device, "vkGetSemaphoreCounterValue" ) ); - vkWaitSemaphores = PFN_vkWaitSemaphores( vkGetDeviceProcAddr( device, "vkWaitSemaphores" ) ); - vkSignalSemaphore = PFN_vkSignalSemaphore( vkGetDeviceProcAddr( device, "vkSignalSemaphore" ) ); - vkGetBufferDeviceAddress = - PFN_vkGetBufferDeviceAddress( vkGetDeviceProcAddr( device, "vkGetBufferDeviceAddress" ) ); - vkGetBufferOpaqueCaptureAddress = - PFN_vkGetBufferOpaqueCaptureAddress( vkGetDeviceProcAddr( device, "vkGetBufferOpaqueCaptureAddress" ) ); - vkGetDeviceMemoryOpaqueCaptureAddress = PFN_vkGetDeviceMemoryOpaqueCaptureAddress( - vkGetDeviceProcAddr( device, "vkGetDeviceMemoryOpaqueCaptureAddress" ) ); - - //=== VK_VERSION_1_3 === - vkCreatePrivateDataSlot = PFN_vkCreatePrivateDataSlot( vkGetDeviceProcAddr( device, "vkCreatePrivateDataSlot" ) ); - vkDestroyPrivateDataSlot = - PFN_vkDestroyPrivateDataSlot( vkGetDeviceProcAddr( device, "vkDestroyPrivateDataSlot" ) ); - vkSetPrivateData = PFN_vkSetPrivateData( vkGetDeviceProcAddr( device, "vkSetPrivateData" ) ); - vkGetPrivateData = PFN_vkGetPrivateData( vkGetDeviceProcAddr( device, "vkGetPrivateData" ) ); - vkCmdSetEvent2 = PFN_vkCmdSetEvent2( vkGetDeviceProcAddr( device, "vkCmdSetEvent2" ) ); - vkCmdResetEvent2 = PFN_vkCmdResetEvent2( vkGetDeviceProcAddr( device, "vkCmdResetEvent2" ) ); - vkCmdWaitEvents2 = PFN_vkCmdWaitEvents2( vkGetDeviceProcAddr( device, "vkCmdWaitEvents2" ) ); - vkCmdPipelineBarrier2 = PFN_vkCmdPipelineBarrier2( vkGetDeviceProcAddr( device, "vkCmdPipelineBarrier2" ) ); - vkCmdWriteTimestamp2 = PFN_vkCmdWriteTimestamp2( vkGetDeviceProcAddr( device, "vkCmdWriteTimestamp2" ) ); - vkQueueSubmit2 = PFN_vkQueueSubmit2( vkGetDeviceProcAddr( device, "vkQueueSubmit2" ) ); - vkCmdCopyBuffer2 = PFN_vkCmdCopyBuffer2( vkGetDeviceProcAddr( device, "vkCmdCopyBuffer2" ) ); - vkCmdCopyImage2 = PFN_vkCmdCopyImage2( vkGetDeviceProcAddr( device, "vkCmdCopyImage2" ) ); - vkCmdCopyBufferToImage2 = PFN_vkCmdCopyBufferToImage2( vkGetDeviceProcAddr( device, "vkCmdCopyBufferToImage2" ) ); - vkCmdCopyImageToBuffer2 = PFN_vkCmdCopyImageToBuffer2( vkGetDeviceProcAddr( device, "vkCmdCopyImageToBuffer2" ) ); - vkCmdBlitImage2 = PFN_vkCmdBlitImage2( vkGetDeviceProcAddr( device, "vkCmdBlitImage2" ) ); - vkCmdResolveImage2 = PFN_vkCmdResolveImage2( vkGetDeviceProcAddr( device, "vkCmdResolveImage2" ) ); - vkCmdBeginRendering = PFN_vkCmdBeginRendering( vkGetDeviceProcAddr( device, "vkCmdBeginRendering" ) ); - vkCmdEndRendering = PFN_vkCmdEndRendering( vkGetDeviceProcAddr( device, "vkCmdEndRendering" ) ); - vkCmdSetCullMode = PFN_vkCmdSetCullMode( vkGetDeviceProcAddr( device, "vkCmdSetCullMode" ) ); - vkCmdSetFrontFace = PFN_vkCmdSetFrontFace( vkGetDeviceProcAddr( device, "vkCmdSetFrontFace" ) ); - vkCmdSetPrimitiveTopology = - PFN_vkCmdSetPrimitiveTopology( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveTopology" ) ); - vkCmdSetViewportWithCount = - PFN_vkCmdSetViewportWithCount( vkGetDeviceProcAddr( device, "vkCmdSetViewportWithCount" ) ); - vkCmdSetScissorWithCount = - PFN_vkCmdSetScissorWithCount( vkGetDeviceProcAddr( device, "vkCmdSetScissorWithCount" ) ); - vkCmdBindVertexBuffers2 = PFN_vkCmdBindVertexBuffers2( vkGetDeviceProcAddr( device, "vkCmdBindVertexBuffers2" ) ); - vkCmdSetDepthTestEnable = PFN_vkCmdSetDepthTestEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthTestEnable" ) ); - vkCmdSetDepthWriteEnable = - PFN_vkCmdSetDepthWriteEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthWriteEnable" ) ); - vkCmdSetDepthCompareOp = PFN_vkCmdSetDepthCompareOp( vkGetDeviceProcAddr( device, "vkCmdSetDepthCompareOp" ) ); - vkCmdSetDepthBoundsTestEnable = - PFN_vkCmdSetDepthBoundsTestEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthBoundsTestEnable" ) ); - vkCmdSetStencilTestEnable = - PFN_vkCmdSetStencilTestEnable( vkGetDeviceProcAddr( device, "vkCmdSetStencilTestEnable" ) ); - vkCmdSetStencilOp = PFN_vkCmdSetStencilOp( vkGetDeviceProcAddr( device, "vkCmdSetStencilOp" ) ); - vkCmdSetRasterizerDiscardEnable = - PFN_vkCmdSetRasterizerDiscardEnable( vkGetDeviceProcAddr( device, "vkCmdSetRasterizerDiscardEnable" ) ); - vkCmdSetDepthBiasEnable = PFN_vkCmdSetDepthBiasEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthBiasEnable" ) ); - vkCmdSetPrimitiveRestartEnable = - PFN_vkCmdSetPrimitiveRestartEnable( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveRestartEnable" ) ); - vkGetDeviceBufferMemoryRequirements = - PFN_vkGetDeviceBufferMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetDeviceBufferMemoryRequirements" ) ); - vkGetDeviceImageMemoryRequirements = - PFN_vkGetDeviceImageMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetDeviceImageMemoryRequirements" ) ); - vkGetDeviceImageSparseMemoryRequirements = PFN_vkGetDeviceImageSparseMemoryRequirements( - vkGetDeviceProcAddr( device, "vkGetDeviceImageSparseMemoryRequirements" ) ); - - //=== VK_KHR_swapchain === - vkCreateSwapchainKHR = PFN_vkCreateSwapchainKHR( vkGetDeviceProcAddr( device, "vkCreateSwapchainKHR" ) ); - vkDestroySwapchainKHR = PFN_vkDestroySwapchainKHR( vkGetDeviceProcAddr( device, "vkDestroySwapchainKHR" ) ); - vkGetSwapchainImagesKHR = PFN_vkGetSwapchainImagesKHR( vkGetDeviceProcAddr( device, "vkGetSwapchainImagesKHR" ) ); - vkAcquireNextImageKHR = PFN_vkAcquireNextImageKHR( vkGetDeviceProcAddr( device, "vkAcquireNextImageKHR" ) ); - vkQueuePresentKHR = PFN_vkQueuePresentKHR( vkGetDeviceProcAddr( device, "vkQueuePresentKHR" ) ); - vkGetDeviceGroupPresentCapabilitiesKHR = PFN_vkGetDeviceGroupPresentCapabilitiesKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupPresentCapabilitiesKHR" ) ); - vkGetDeviceGroupSurfacePresentModesKHR = PFN_vkGetDeviceGroupSurfacePresentModesKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupSurfacePresentModesKHR" ) ); - vkAcquireNextImage2KHR = PFN_vkAcquireNextImage2KHR( vkGetDeviceProcAddr( device, "vkAcquireNextImage2KHR" ) ); - - //=== VK_KHR_display_swapchain === - vkCreateSharedSwapchainsKHR = - PFN_vkCreateSharedSwapchainsKHR( vkGetDeviceProcAddr( device, "vkCreateSharedSwapchainsKHR" ) ); - - //=== VK_EXT_debug_marker === - vkDebugMarkerSetObjectTagEXT = - PFN_vkDebugMarkerSetObjectTagEXT( vkGetDeviceProcAddr( device, "vkDebugMarkerSetObjectTagEXT" ) ); - vkDebugMarkerSetObjectNameEXT = - PFN_vkDebugMarkerSetObjectNameEXT( vkGetDeviceProcAddr( device, "vkDebugMarkerSetObjectNameEXT" ) ); - vkCmdDebugMarkerBeginEXT = - PFN_vkCmdDebugMarkerBeginEXT( vkGetDeviceProcAddr( device, "vkCmdDebugMarkerBeginEXT" ) ); - vkCmdDebugMarkerEndEXT = PFN_vkCmdDebugMarkerEndEXT( vkGetDeviceProcAddr( device, "vkCmdDebugMarkerEndEXT" ) ); - vkCmdDebugMarkerInsertEXT = - PFN_vkCmdDebugMarkerInsertEXT( vkGetDeviceProcAddr( device, "vkCmdDebugMarkerInsertEXT" ) ); - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - vkCreateVideoSessionKHR = PFN_vkCreateVideoSessionKHR( vkGetDeviceProcAddr( device, "vkCreateVideoSessionKHR" ) ); - vkDestroyVideoSessionKHR = - PFN_vkDestroyVideoSessionKHR( vkGetDeviceProcAddr( device, "vkDestroyVideoSessionKHR" ) ); - vkGetVideoSessionMemoryRequirementsKHR = PFN_vkGetVideoSessionMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetVideoSessionMemoryRequirementsKHR" ) ); - vkBindVideoSessionMemoryKHR = - PFN_vkBindVideoSessionMemoryKHR( vkGetDeviceProcAddr( device, "vkBindVideoSessionMemoryKHR" ) ); - vkCreateVideoSessionParametersKHR = - PFN_vkCreateVideoSessionParametersKHR( vkGetDeviceProcAddr( device, "vkCreateVideoSessionParametersKHR" ) ); - vkUpdateVideoSessionParametersKHR = - PFN_vkUpdateVideoSessionParametersKHR( vkGetDeviceProcAddr( device, "vkUpdateVideoSessionParametersKHR" ) ); - vkDestroyVideoSessionParametersKHR = - PFN_vkDestroyVideoSessionParametersKHR( vkGetDeviceProcAddr( device, "vkDestroyVideoSessionParametersKHR" ) ); - vkCmdBeginVideoCodingKHR = - PFN_vkCmdBeginVideoCodingKHR( vkGetDeviceProcAddr( device, "vkCmdBeginVideoCodingKHR" ) ); - vkCmdEndVideoCodingKHR = PFN_vkCmdEndVideoCodingKHR( vkGetDeviceProcAddr( device, "vkCmdEndVideoCodingKHR" ) ); - vkCmdControlVideoCodingKHR = - PFN_vkCmdControlVideoCodingKHR( vkGetDeviceProcAddr( device, "vkCmdControlVideoCodingKHR" ) ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - vkCmdDecodeVideoKHR = PFN_vkCmdDecodeVideoKHR( vkGetDeviceProcAddr( device, "vkCmdDecodeVideoKHR" ) ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - vkCmdBindTransformFeedbackBuffersEXT = PFN_vkCmdBindTransformFeedbackBuffersEXT( - vkGetDeviceProcAddr( device, "vkCmdBindTransformFeedbackBuffersEXT" ) ); - vkCmdBeginTransformFeedbackEXT = - PFN_vkCmdBeginTransformFeedbackEXT( vkGetDeviceProcAddr( device, "vkCmdBeginTransformFeedbackEXT" ) ); - vkCmdEndTransformFeedbackEXT = - PFN_vkCmdEndTransformFeedbackEXT( vkGetDeviceProcAddr( device, "vkCmdEndTransformFeedbackEXT" ) ); - vkCmdBeginQueryIndexedEXT = - PFN_vkCmdBeginQueryIndexedEXT( vkGetDeviceProcAddr( device, "vkCmdBeginQueryIndexedEXT" ) ); - vkCmdEndQueryIndexedEXT = PFN_vkCmdEndQueryIndexedEXT( vkGetDeviceProcAddr( device, "vkCmdEndQueryIndexedEXT" ) ); - vkCmdDrawIndirectByteCountEXT = - PFN_vkCmdDrawIndirectByteCountEXT( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectByteCountEXT" ) ); - - //=== VK_NVX_binary_import === - vkCreateCuModuleNVX = PFN_vkCreateCuModuleNVX( vkGetDeviceProcAddr( device, "vkCreateCuModuleNVX" ) ); - vkCreateCuFunctionNVX = PFN_vkCreateCuFunctionNVX( vkGetDeviceProcAddr( device, "vkCreateCuFunctionNVX" ) ); - vkDestroyCuModuleNVX = PFN_vkDestroyCuModuleNVX( vkGetDeviceProcAddr( device, "vkDestroyCuModuleNVX" ) ); - vkDestroyCuFunctionNVX = PFN_vkDestroyCuFunctionNVX( vkGetDeviceProcAddr( device, "vkDestroyCuFunctionNVX" ) ); - vkCmdCuLaunchKernelNVX = PFN_vkCmdCuLaunchKernelNVX( vkGetDeviceProcAddr( device, "vkCmdCuLaunchKernelNVX" ) ); - - //=== VK_NVX_image_view_handle === - vkGetImageViewHandleNVX = PFN_vkGetImageViewHandleNVX( vkGetDeviceProcAddr( device, "vkGetImageViewHandleNVX" ) ); - vkGetImageViewAddressNVX = - PFN_vkGetImageViewAddressNVX( vkGetDeviceProcAddr( device, "vkGetImageViewAddressNVX" ) ); - - //=== VK_AMD_draw_indirect_count === - vkCmdDrawIndirectCountAMD = - PFN_vkCmdDrawIndirectCountAMD( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectCountAMD" ) ); - if ( !vkCmdDrawIndirectCount ) - vkCmdDrawIndirectCount = vkCmdDrawIndirectCountAMD; - vkCmdDrawIndexedIndirectCountAMD = - PFN_vkCmdDrawIndexedIndirectCountAMD( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirectCountAMD" ) ); - if ( !vkCmdDrawIndexedIndirectCount ) - vkCmdDrawIndexedIndirectCount = vkCmdDrawIndexedIndirectCountAMD; - - //=== VK_AMD_shader_info === - vkGetShaderInfoAMD = PFN_vkGetShaderInfoAMD( vkGetDeviceProcAddr( device, "vkGetShaderInfoAMD" ) ); - - //=== VK_KHR_dynamic_rendering === - vkCmdBeginRenderingKHR = PFN_vkCmdBeginRenderingKHR( vkGetDeviceProcAddr( device, "vkCmdBeginRenderingKHR" ) ); - if ( !vkCmdBeginRendering ) - vkCmdBeginRendering = vkCmdBeginRenderingKHR; - vkCmdEndRenderingKHR = PFN_vkCmdEndRenderingKHR( vkGetDeviceProcAddr( device, "vkCmdEndRenderingKHR" ) ); - if ( !vkCmdEndRendering ) - vkCmdEndRendering = vkCmdEndRenderingKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - vkGetMemoryWin32HandleNV = - PFN_vkGetMemoryWin32HandleNV( vkGetDeviceProcAddr( device, "vkGetMemoryWin32HandleNV" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_device_group === - vkGetDeviceGroupPeerMemoryFeaturesKHR = PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupPeerMemoryFeaturesKHR" ) ); - if ( !vkGetDeviceGroupPeerMemoryFeatures ) - vkGetDeviceGroupPeerMemoryFeatures = vkGetDeviceGroupPeerMemoryFeaturesKHR; - vkCmdSetDeviceMaskKHR = PFN_vkCmdSetDeviceMaskKHR( vkGetDeviceProcAddr( device, "vkCmdSetDeviceMaskKHR" ) ); - if ( !vkCmdSetDeviceMask ) - vkCmdSetDeviceMask = vkCmdSetDeviceMaskKHR; - vkCmdDispatchBaseKHR = PFN_vkCmdDispatchBaseKHR( vkGetDeviceProcAddr( device, "vkCmdDispatchBaseKHR" ) ); - if ( !vkCmdDispatchBase ) - vkCmdDispatchBase = vkCmdDispatchBaseKHR; - - //=== VK_KHR_maintenance1 === - vkTrimCommandPoolKHR = PFN_vkTrimCommandPoolKHR( vkGetDeviceProcAddr( device, "vkTrimCommandPoolKHR" ) ); - if ( !vkTrimCommandPool ) - vkTrimCommandPool = vkTrimCommandPoolKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - vkGetMemoryWin32HandleKHR = - PFN_vkGetMemoryWin32HandleKHR( vkGetDeviceProcAddr( device, "vkGetMemoryWin32HandleKHR" ) ); - vkGetMemoryWin32HandlePropertiesKHR = - PFN_vkGetMemoryWin32HandlePropertiesKHR( vkGetDeviceProcAddr( device, "vkGetMemoryWin32HandlePropertiesKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - vkGetMemoryFdKHR = PFN_vkGetMemoryFdKHR( vkGetDeviceProcAddr( device, "vkGetMemoryFdKHR" ) ); - vkGetMemoryFdPropertiesKHR = - PFN_vkGetMemoryFdPropertiesKHR( vkGetDeviceProcAddr( device, "vkGetMemoryFdPropertiesKHR" ) ); - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - vkImportSemaphoreWin32HandleKHR = - PFN_vkImportSemaphoreWin32HandleKHR( vkGetDeviceProcAddr( device, "vkImportSemaphoreWin32HandleKHR" ) ); - vkGetSemaphoreWin32HandleKHR = - PFN_vkGetSemaphoreWin32HandleKHR( vkGetDeviceProcAddr( device, "vkGetSemaphoreWin32HandleKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - vkImportSemaphoreFdKHR = PFN_vkImportSemaphoreFdKHR( vkGetDeviceProcAddr( device, "vkImportSemaphoreFdKHR" ) ); - vkGetSemaphoreFdKHR = PFN_vkGetSemaphoreFdKHR( vkGetDeviceProcAddr( device, "vkGetSemaphoreFdKHR" ) ); - - //=== VK_KHR_push_descriptor === - vkCmdPushDescriptorSetKHR = - PFN_vkCmdPushDescriptorSetKHR( vkGetDeviceProcAddr( device, "vkCmdPushDescriptorSetKHR" ) ); - vkCmdPushDescriptorSetWithTemplateKHR = PFN_vkCmdPushDescriptorSetWithTemplateKHR( - vkGetDeviceProcAddr( device, "vkCmdPushDescriptorSetWithTemplateKHR" ) ); - - //=== VK_EXT_conditional_rendering === - vkCmdBeginConditionalRenderingEXT = - PFN_vkCmdBeginConditionalRenderingEXT( vkGetDeviceProcAddr( device, "vkCmdBeginConditionalRenderingEXT" ) ); - vkCmdEndConditionalRenderingEXT = - PFN_vkCmdEndConditionalRenderingEXT( vkGetDeviceProcAddr( device, "vkCmdEndConditionalRenderingEXT" ) ); - - //=== VK_KHR_descriptor_update_template === - vkCreateDescriptorUpdateTemplateKHR = - PFN_vkCreateDescriptorUpdateTemplateKHR( vkGetDeviceProcAddr( device, "vkCreateDescriptorUpdateTemplateKHR" ) ); - if ( !vkCreateDescriptorUpdateTemplate ) - vkCreateDescriptorUpdateTemplate = vkCreateDescriptorUpdateTemplateKHR; - vkDestroyDescriptorUpdateTemplateKHR = PFN_vkDestroyDescriptorUpdateTemplateKHR( - vkGetDeviceProcAddr( device, "vkDestroyDescriptorUpdateTemplateKHR" ) ); - if ( !vkDestroyDescriptorUpdateTemplate ) - vkDestroyDescriptorUpdateTemplate = vkDestroyDescriptorUpdateTemplateKHR; - vkUpdateDescriptorSetWithTemplateKHR = PFN_vkUpdateDescriptorSetWithTemplateKHR( - vkGetDeviceProcAddr( device, "vkUpdateDescriptorSetWithTemplateKHR" ) ); - if ( !vkUpdateDescriptorSetWithTemplate ) - vkUpdateDescriptorSetWithTemplate = vkUpdateDescriptorSetWithTemplateKHR; - - //=== VK_NV_clip_space_w_scaling === - vkCmdSetViewportWScalingNV = - PFN_vkCmdSetViewportWScalingNV( vkGetDeviceProcAddr( device, "vkCmdSetViewportWScalingNV" ) ); - - //=== VK_EXT_display_control === - vkDisplayPowerControlEXT = - PFN_vkDisplayPowerControlEXT( vkGetDeviceProcAddr( device, "vkDisplayPowerControlEXT" ) ); - vkRegisterDeviceEventEXT = - PFN_vkRegisterDeviceEventEXT( vkGetDeviceProcAddr( device, "vkRegisterDeviceEventEXT" ) ); - vkRegisterDisplayEventEXT = - PFN_vkRegisterDisplayEventEXT( vkGetDeviceProcAddr( device, "vkRegisterDisplayEventEXT" ) ); - vkGetSwapchainCounterEXT = - PFN_vkGetSwapchainCounterEXT( vkGetDeviceProcAddr( device, "vkGetSwapchainCounterEXT" ) ); - - //=== VK_GOOGLE_display_timing === - vkGetRefreshCycleDurationGOOGLE = - PFN_vkGetRefreshCycleDurationGOOGLE( vkGetDeviceProcAddr( device, "vkGetRefreshCycleDurationGOOGLE" ) ); - vkGetPastPresentationTimingGOOGLE = - PFN_vkGetPastPresentationTimingGOOGLE( vkGetDeviceProcAddr( device, "vkGetPastPresentationTimingGOOGLE" ) ); - - //=== VK_EXT_discard_rectangles === - vkCmdSetDiscardRectangleEXT = - PFN_vkCmdSetDiscardRectangleEXT( vkGetDeviceProcAddr( device, "vkCmdSetDiscardRectangleEXT" ) ); - - //=== VK_EXT_hdr_metadata === - vkSetHdrMetadataEXT = PFN_vkSetHdrMetadataEXT( vkGetDeviceProcAddr( device, "vkSetHdrMetadataEXT" ) ); - - //=== VK_KHR_create_renderpass2 === - vkCreateRenderPass2KHR = PFN_vkCreateRenderPass2KHR( vkGetDeviceProcAddr( device, "vkCreateRenderPass2KHR" ) ); - if ( !vkCreateRenderPass2 ) - vkCreateRenderPass2 = vkCreateRenderPass2KHR; - vkCmdBeginRenderPass2KHR = - PFN_vkCmdBeginRenderPass2KHR( vkGetDeviceProcAddr( device, "vkCmdBeginRenderPass2KHR" ) ); - if ( !vkCmdBeginRenderPass2 ) - vkCmdBeginRenderPass2 = vkCmdBeginRenderPass2KHR; - vkCmdNextSubpass2KHR = PFN_vkCmdNextSubpass2KHR( vkGetDeviceProcAddr( device, "vkCmdNextSubpass2KHR" ) ); - if ( !vkCmdNextSubpass2 ) - vkCmdNextSubpass2 = vkCmdNextSubpass2KHR; - vkCmdEndRenderPass2KHR = PFN_vkCmdEndRenderPass2KHR( vkGetDeviceProcAddr( device, "vkCmdEndRenderPass2KHR" ) ); - if ( !vkCmdEndRenderPass2 ) - vkCmdEndRenderPass2 = vkCmdEndRenderPass2KHR; - - //=== VK_KHR_shared_presentable_image === - vkGetSwapchainStatusKHR = PFN_vkGetSwapchainStatusKHR( vkGetDeviceProcAddr( device, "vkGetSwapchainStatusKHR" ) ); - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - vkImportFenceWin32HandleKHR = - PFN_vkImportFenceWin32HandleKHR( vkGetDeviceProcAddr( device, "vkImportFenceWin32HandleKHR" ) ); - vkGetFenceWin32HandleKHR = - PFN_vkGetFenceWin32HandleKHR( vkGetDeviceProcAddr( device, "vkGetFenceWin32HandleKHR" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - vkImportFenceFdKHR = PFN_vkImportFenceFdKHR( vkGetDeviceProcAddr( device, "vkImportFenceFdKHR" ) ); - vkGetFenceFdKHR = PFN_vkGetFenceFdKHR( vkGetDeviceProcAddr( device, "vkGetFenceFdKHR" ) ); - - //=== VK_KHR_performance_query === - vkAcquireProfilingLockKHR = - PFN_vkAcquireProfilingLockKHR( vkGetDeviceProcAddr( device, "vkAcquireProfilingLockKHR" ) ); - vkReleaseProfilingLockKHR = - PFN_vkReleaseProfilingLockKHR( vkGetDeviceProcAddr( device, "vkReleaseProfilingLockKHR" ) ); - - //=== VK_EXT_debug_utils === - vkSetDebugUtilsObjectNameEXT = - PFN_vkSetDebugUtilsObjectNameEXT( vkGetDeviceProcAddr( device, "vkSetDebugUtilsObjectNameEXT" ) ); - vkSetDebugUtilsObjectTagEXT = - PFN_vkSetDebugUtilsObjectTagEXT( vkGetDeviceProcAddr( device, "vkSetDebugUtilsObjectTagEXT" ) ); - vkQueueBeginDebugUtilsLabelEXT = - PFN_vkQueueBeginDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkQueueBeginDebugUtilsLabelEXT" ) ); - vkQueueEndDebugUtilsLabelEXT = - PFN_vkQueueEndDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkQueueEndDebugUtilsLabelEXT" ) ); - vkQueueInsertDebugUtilsLabelEXT = - PFN_vkQueueInsertDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkQueueInsertDebugUtilsLabelEXT" ) ); - vkCmdBeginDebugUtilsLabelEXT = - PFN_vkCmdBeginDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkCmdBeginDebugUtilsLabelEXT" ) ); - vkCmdEndDebugUtilsLabelEXT = - PFN_vkCmdEndDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkCmdEndDebugUtilsLabelEXT" ) ); - vkCmdInsertDebugUtilsLabelEXT = - PFN_vkCmdInsertDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkCmdInsertDebugUtilsLabelEXT" ) ); - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - vkGetAndroidHardwareBufferPropertiesANDROID = PFN_vkGetAndroidHardwareBufferPropertiesANDROID( - vkGetDeviceProcAddr( device, "vkGetAndroidHardwareBufferPropertiesANDROID" ) ); - vkGetMemoryAndroidHardwareBufferANDROID = PFN_vkGetMemoryAndroidHardwareBufferANDROID( - vkGetDeviceProcAddr( device, "vkGetMemoryAndroidHardwareBufferANDROID" ) ); -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - vkCmdSetSampleLocationsEXT = - PFN_vkCmdSetSampleLocationsEXT( vkGetDeviceProcAddr( device, "vkCmdSetSampleLocationsEXT" ) ); - - //=== VK_KHR_get_memory_requirements2 === - vkGetImageMemoryRequirements2KHR = - PFN_vkGetImageMemoryRequirements2KHR( vkGetDeviceProcAddr( device, "vkGetImageMemoryRequirements2KHR" ) ); - if ( !vkGetImageMemoryRequirements2 ) - vkGetImageMemoryRequirements2 = vkGetImageMemoryRequirements2KHR; - vkGetBufferMemoryRequirements2KHR = - PFN_vkGetBufferMemoryRequirements2KHR( vkGetDeviceProcAddr( device, "vkGetBufferMemoryRequirements2KHR" ) ); - if ( !vkGetBufferMemoryRequirements2 ) - vkGetBufferMemoryRequirements2 = vkGetBufferMemoryRequirements2KHR; - vkGetImageSparseMemoryRequirements2KHR = PFN_vkGetImageSparseMemoryRequirements2KHR( - vkGetDeviceProcAddr( device, "vkGetImageSparseMemoryRequirements2KHR" ) ); - if ( !vkGetImageSparseMemoryRequirements2 ) - vkGetImageSparseMemoryRequirements2 = vkGetImageSparseMemoryRequirements2KHR; - - //=== VK_KHR_acceleration_structure === - vkCreateAccelerationStructureKHR = - PFN_vkCreateAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkCreateAccelerationStructureKHR" ) ); - vkDestroyAccelerationStructureKHR = - PFN_vkDestroyAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkDestroyAccelerationStructureKHR" ) ); - vkCmdBuildAccelerationStructuresKHR = - PFN_vkCmdBuildAccelerationStructuresKHR( vkGetDeviceProcAddr( device, "vkCmdBuildAccelerationStructuresKHR" ) ); - vkCmdBuildAccelerationStructuresIndirectKHR = PFN_vkCmdBuildAccelerationStructuresIndirectKHR( - vkGetDeviceProcAddr( device, "vkCmdBuildAccelerationStructuresIndirectKHR" ) ); - vkBuildAccelerationStructuresKHR = - PFN_vkBuildAccelerationStructuresKHR( vkGetDeviceProcAddr( device, "vkBuildAccelerationStructuresKHR" ) ); - vkCopyAccelerationStructureKHR = - PFN_vkCopyAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkCopyAccelerationStructureKHR" ) ); - vkCopyAccelerationStructureToMemoryKHR = PFN_vkCopyAccelerationStructureToMemoryKHR( - vkGetDeviceProcAddr( device, "vkCopyAccelerationStructureToMemoryKHR" ) ); - vkCopyMemoryToAccelerationStructureKHR = PFN_vkCopyMemoryToAccelerationStructureKHR( - vkGetDeviceProcAddr( device, "vkCopyMemoryToAccelerationStructureKHR" ) ); - vkWriteAccelerationStructuresPropertiesKHR = PFN_vkWriteAccelerationStructuresPropertiesKHR( - vkGetDeviceProcAddr( device, "vkWriteAccelerationStructuresPropertiesKHR" ) ); - vkCmdCopyAccelerationStructureKHR = - PFN_vkCmdCopyAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkCmdCopyAccelerationStructureKHR" ) ); - vkCmdCopyAccelerationStructureToMemoryKHR = PFN_vkCmdCopyAccelerationStructureToMemoryKHR( - vkGetDeviceProcAddr( device, "vkCmdCopyAccelerationStructureToMemoryKHR" ) ); - vkCmdCopyMemoryToAccelerationStructureKHR = PFN_vkCmdCopyMemoryToAccelerationStructureKHR( - vkGetDeviceProcAddr( device, "vkCmdCopyMemoryToAccelerationStructureKHR" ) ); - vkGetAccelerationStructureDeviceAddressKHR = PFN_vkGetAccelerationStructureDeviceAddressKHR( - vkGetDeviceProcAddr( device, "vkGetAccelerationStructureDeviceAddressKHR" ) ); - vkCmdWriteAccelerationStructuresPropertiesKHR = PFN_vkCmdWriteAccelerationStructuresPropertiesKHR( - vkGetDeviceProcAddr( device, "vkCmdWriteAccelerationStructuresPropertiesKHR" ) ); - vkGetDeviceAccelerationStructureCompatibilityKHR = PFN_vkGetDeviceAccelerationStructureCompatibilityKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceAccelerationStructureCompatibilityKHR" ) ); - vkGetAccelerationStructureBuildSizesKHR = PFN_vkGetAccelerationStructureBuildSizesKHR( - vkGetDeviceProcAddr( device, "vkGetAccelerationStructureBuildSizesKHR" ) ); - - //=== VK_KHR_sampler_ycbcr_conversion === - vkCreateSamplerYcbcrConversionKHR = - PFN_vkCreateSamplerYcbcrConversionKHR( vkGetDeviceProcAddr( device, "vkCreateSamplerYcbcrConversionKHR" ) ); - if ( !vkCreateSamplerYcbcrConversion ) - vkCreateSamplerYcbcrConversion = vkCreateSamplerYcbcrConversionKHR; - vkDestroySamplerYcbcrConversionKHR = - PFN_vkDestroySamplerYcbcrConversionKHR( vkGetDeviceProcAddr( device, "vkDestroySamplerYcbcrConversionKHR" ) ); - if ( !vkDestroySamplerYcbcrConversion ) - vkDestroySamplerYcbcrConversion = vkDestroySamplerYcbcrConversionKHR; - - //=== VK_KHR_bind_memory2 === - vkBindBufferMemory2KHR = PFN_vkBindBufferMemory2KHR( vkGetDeviceProcAddr( device, "vkBindBufferMemory2KHR" ) ); - if ( !vkBindBufferMemory2 ) - vkBindBufferMemory2 = vkBindBufferMemory2KHR; - vkBindImageMemory2KHR = PFN_vkBindImageMemory2KHR( vkGetDeviceProcAddr( device, "vkBindImageMemory2KHR" ) ); - if ( !vkBindImageMemory2 ) - vkBindImageMemory2 = vkBindImageMemory2KHR; - - //=== VK_EXT_image_drm_format_modifier === - vkGetImageDrmFormatModifierPropertiesEXT = PFN_vkGetImageDrmFormatModifierPropertiesEXT( - vkGetDeviceProcAddr( device, "vkGetImageDrmFormatModifierPropertiesEXT" ) ); - - //=== VK_EXT_validation_cache === - vkCreateValidationCacheEXT = - PFN_vkCreateValidationCacheEXT( vkGetDeviceProcAddr( device, "vkCreateValidationCacheEXT" ) ); - vkDestroyValidationCacheEXT = - PFN_vkDestroyValidationCacheEXT( vkGetDeviceProcAddr( device, "vkDestroyValidationCacheEXT" ) ); - vkMergeValidationCachesEXT = - PFN_vkMergeValidationCachesEXT( vkGetDeviceProcAddr( device, "vkMergeValidationCachesEXT" ) ); - vkGetValidationCacheDataEXT = - PFN_vkGetValidationCacheDataEXT( vkGetDeviceProcAddr( device, "vkGetValidationCacheDataEXT" ) ); - - //=== VK_NV_shading_rate_image === - vkCmdBindShadingRateImageNV = - PFN_vkCmdBindShadingRateImageNV( vkGetDeviceProcAddr( device, "vkCmdBindShadingRateImageNV" ) ); - vkCmdSetViewportShadingRatePaletteNV = PFN_vkCmdSetViewportShadingRatePaletteNV( - vkGetDeviceProcAddr( device, "vkCmdSetViewportShadingRatePaletteNV" ) ); - vkCmdSetCoarseSampleOrderNV = - PFN_vkCmdSetCoarseSampleOrderNV( vkGetDeviceProcAddr( device, "vkCmdSetCoarseSampleOrderNV" ) ); - - //=== VK_NV_ray_tracing === - vkCreateAccelerationStructureNV = - PFN_vkCreateAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkCreateAccelerationStructureNV" ) ); - vkDestroyAccelerationStructureNV = - PFN_vkDestroyAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkDestroyAccelerationStructureNV" ) ); - vkGetAccelerationStructureMemoryRequirementsNV = PFN_vkGetAccelerationStructureMemoryRequirementsNV( - vkGetDeviceProcAddr( device, "vkGetAccelerationStructureMemoryRequirementsNV" ) ); - vkBindAccelerationStructureMemoryNV = - PFN_vkBindAccelerationStructureMemoryNV( vkGetDeviceProcAddr( device, "vkBindAccelerationStructureMemoryNV" ) ); - vkCmdBuildAccelerationStructureNV = - PFN_vkCmdBuildAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkCmdBuildAccelerationStructureNV" ) ); - vkCmdCopyAccelerationStructureNV = - PFN_vkCmdCopyAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkCmdCopyAccelerationStructureNV" ) ); - vkCmdTraceRaysNV = PFN_vkCmdTraceRaysNV( vkGetDeviceProcAddr( device, "vkCmdTraceRaysNV" ) ); - vkCreateRayTracingPipelinesNV = - PFN_vkCreateRayTracingPipelinesNV( vkGetDeviceProcAddr( device, "vkCreateRayTracingPipelinesNV" ) ); - vkGetRayTracingShaderGroupHandlesNV = - PFN_vkGetRayTracingShaderGroupHandlesNV( vkGetDeviceProcAddr( device, "vkGetRayTracingShaderGroupHandlesNV" ) ); - if ( !vkGetRayTracingShaderGroupHandlesKHR ) - vkGetRayTracingShaderGroupHandlesKHR = vkGetRayTracingShaderGroupHandlesNV; - vkGetAccelerationStructureHandleNV = - PFN_vkGetAccelerationStructureHandleNV( vkGetDeviceProcAddr( device, "vkGetAccelerationStructureHandleNV" ) ); - vkCmdWriteAccelerationStructuresPropertiesNV = PFN_vkCmdWriteAccelerationStructuresPropertiesNV( - vkGetDeviceProcAddr( device, "vkCmdWriteAccelerationStructuresPropertiesNV" ) ); - vkCompileDeferredNV = PFN_vkCompileDeferredNV( vkGetDeviceProcAddr( device, "vkCompileDeferredNV" ) ); - - //=== VK_KHR_maintenance3 === - vkGetDescriptorSetLayoutSupportKHR = - PFN_vkGetDescriptorSetLayoutSupportKHR( vkGetDeviceProcAddr( device, "vkGetDescriptorSetLayoutSupportKHR" ) ); - if ( !vkGetDescriptorSetLayoutSupport ) - vkGetDescriptorSetLayoutSupport = vkGetDescriptorSetLayoutSupportKHR; - - //=== VK_KHR_draw_indirect_count === - vkCmdDrawIndirectCountKHR = - PFN_vkCmdDrawIndirectCountKHR( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectCountKHR" ) ); - if ( !vkCmdDrawIndirectCount ) - vkCmdDrawIndirectCount = vkCmdDrawIndirectCountKHR; - vkCmdDrawIndexedIndirectCountKHR = - PFN_vkCmdDrawIndexedIndirectCountKHR( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirectCountKHR" ) ); - if ( !vkCmdDrawIndexedIndirectCount ) - vkCmdDrawIndexedIndirectCount = vkCmdDrawIndexedIndirectCountKHR; - - //=== VK_EXT_external_memory_host === - vkGetMemoryHostPointerPropertiesEXT = - PFN_vkGetMemoryHostPointerPropertiesEXT( vkGetDeviceProcAddr( device, "vkGetMemoryHostPointerPropertiesEXT" ) ); - - //=== VK_AMD_buffer_marker === - vkCmdWriteBufferMarkerAMD = - PFN_vkCmdWriteBufferMarkerAMD( vkGetDeviceProcAddr( device, "vkCmdWriteBufferMarkerAMD" ) ); - - //=== VK_EXT_calibrated_timestamps === - vkGetCalibratedTimestampsEXT = - PFN_vkGetCalibratedTimestampsEXT( vkGetDeviceProcAddr( device, "vkGetCalibratedTimestampsEXT" ) ); - - //=== VK_NV_mesh_shader === - vkCmdDrawMeshTasksNV = PFN_vkCmdDrawMeshTasksNV( vkGetDeviceProcAddr( device, "vkCmdDrawMeshTasksNV" ) ); - vkCmdDrawMeshTasksIndirectNV = - PFN_vkCmdDrawMeshTasksIndirectNV( vkGetDeviceProcAddr( device, "vkCmdDrawMeshTasksIndirectNV" ) ); - vkCmdDrawMeshTasksIndirectCountNV = - PFN_vkCmdDrawMeshTasksIndirectCountNV( vkGetDeviceProcAddr( device, "vkCmdDrawMeshTasksIndirectCountNV" ) ); - - //=== VK_NV_scissor_exclusive === - vkCmdSetExclusiveScissorNV = - PFN_vkCmdSetExclusiveScissorNV( vkGetDeviceProcAddr( device, "vkCmdSetExclusiveScissorNV" ) ); - - //=== VK_NV_device_diagnostic_checkpoints === - vkCmdSetCheckpointNV = PFN_vkCmdSetCheckpointNV( vkGetDeviceProcAddr( device, "vkCmdSetCheckpointNV" ) ); - vkGetQueueCheckpointDataNV = - PFN_vkGetQueueCheckpointDataNV( vkGetDeviceProcAddr( device, "vkGetQueueCheckpointDataNV" ) ); - - //=== VK_KHR_timeline_semaphore === - vkGetSemaphoreCounterValueKHR = - PFN_vkGetSemaphoreCounterValueKHR( vkGetDeviceProcAddr( device, "vkGetSemaphoreCounterValueKHR" ) ); - if ( !vkGetSemaphoreCounterValue ) - vkGetSemaphoreCounterValue = vkGetSemaphoreCounterValueKHR; - vkWaitSemaphoresKHR = PFN_vkWaitSemaphoresKHR( vkGetDeviceProcAddr( device, "vkWaitSemaphoresKHR" ) ); - if ( !vkWaitSemaphores ) - vkWaitSemaphores = vkWaitSemaphoresKHR; - vkSignalSemaphoreKHR = PFN_vkSignalSemaphoreKHR( vkGetDeviceProcAddr( device, "vkSignalSemaphoreKHR" ) ); - if ( !vkSignalSemaphore ) - vkSignalSemaphore = vkSignalSemaphoreKHR; - - //=== VK_INTEL_performance_query === - vkInitializePerformanceApiINTEL = - PFN_vkInitializePerformanceApiINTEL( vkGetDeviceProcAddr( device, "vkInitializePerformanceApiINTEL" ) ); - vkUninitializePerformanceApiINTEL = - PFN_vkUninitializePerformanceApiINTEL( vkGetDeviceProcAddr( device, "vkUninitializePerformanceApiINTEL" ) ); - vkCmdSetPerformanceMarkerINTEL = - PFN_vkCmdSetPerformanceMarkerINTEL( vkGetDeviceProcAddr( device, "vkCmdSetPerformanceMarkerINTEL" ) ); - vkCmdSetPerformanceStreamMarkerINTEL = PFN_vkCmdSetPerformanceStreamMarkerINTEL( - vkGetDeviceProcAddr( device, "vkCmdSetPerformanceStreamMarkerINTEL" ) ); - vkCmdSetPerformanceOverrideINTEL = - PFN_vkCmdSetPerformanceOverrideINTEL( vkGetDeviceProcAddr( device, "vkCmdSetPerformanceOverrideINTEL" ) ); - vkAcquirePerformanceConfigurationINTEL = PFN_vkAcquirePerformanceConfigurationINTEL( - vkGetDeviceProcAddr( device, "vkAcquirePerformanceConfigurationINTEL" ) ); - vkReleasePerformanceConfigurationINTEL = PFN_vkReleasePerformanceConfigurationINTEL( - vkGetDeviceProcAddr( device, "vkReleasePerformanceConfigurationINTEL" ) ); - vkQueueSetPerformanceConfigurationINTEL = PFN_vkQueueSetPerformanceConfigurationINTEL( - vkGetDeviceProcAddr( device, "vkQueueSetPerformanceConfigurationINTEL" ) ); - vkGetPerformanceParameterINTEL = - PFN_vkGetPerformanceParameterINTEL( vkGetDeviceProcAddr( device, "vkGetPerformanceParameterINTEL" ) ); - - //=== VK_AMD_display_native_hdr === - vkSetLocalDimmingAMD = PFN_vkSetLocalDimmingAMD( vkGetDeviceProcAddr( device, "vkSetLocalDimmingAMD" ) ); - - //=== VK_KHR_fragment_shading_rate === - vkCmdSetFragmentShadingRateKHR = - PFN_vkCmdSetFragmentShadingRateKHR( vkGetDeviceProcAddr( device, "vkCmdSetFragmentShadingRateKHR" ) ); - - //=== VK_EXT_buffer_device_address === - vkGetBufferDeviceAddressEXT = - PFN_vkGetBufferDeviceAddressEXT( vkGetDeviceProcAddr( device, "vkGetBufferDeviceAddressEXT" ) ); - if ( !vkGetBufferDeviceAddress ) - vkGetBufferDeviceAddress = vkGetBufferDeviceAddressEXT; - - //=== VK_KHR_present_wait === - vkWaitForPresentKHR = PFN_vkWaitForPresentKHR( vkGetDeviceProcAddr( device, "vkWaitForPresentKHR" ) ); - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - vkAcquireFullScreenExclusiveModeEXT = - PFN_vkAcquireFullScreenExclusiveModeEXT( vkGetDeviceProcAddr( device, "vkAcquireFullScreenExclusiveModeEXT" ) ); - vkReleaseFullScreenExclusiveModeEXT = - PFN_vkReleaseFullScreenExclusiveModeEXT( vkGetDeviceProcAddr( device, "vkReleaseFullScreenExclusiveModeEXT" ) ); - vkGetDeviceGroupSurfacePresentModes2EXT = PFN_vkGetDeviceGroupSurfacePresentModes2EXT( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupSurfacePresentModes2EXT" ) ); -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_buffer_device_address === - vkGetBufferDeviceAddressKHR = - PFN_vkGetBufferDeviceAddressKHR( vkGetDeviceProcAddr( device, "vkGetBufferDeviceAddressKHR" ) ); - if ( !vkGetBufferDeviceAddress ) - vkGetBufferDeviceAddress = vkGetBufferDeviceAddressKHR; - vkGetBufferOpaqueCaptureAddressKHR = - PFN_vkGetBufferOpaqueCaptureAddressKHR( vkGetDeviceProcAddr( device, "vkGetBufferOpaqueCaptureAddressKHR" ) ); - if ( !vkGetBufferOpaqueCaptureAddress ) - vkGetBufferOpaqueCaptureAddress = vkGetBufferOpaqueCaptureAddressKHR; - vkGetDeviceMemoryOpaqueCaptureAddressKHR = PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceMemoryOpaqueCaptureAddressKHR" ) ); - if ( !vkGetDeviceMemoryOpaqueCaptureAddress ) - vkGetDeviceMemoryOpaqueCaptureAddress = vkGetDeviceMemoryOpaqueCaptureAddressKHR; - - //=== VK_EXT_line_rasterization === - vkCmdSetLineStippleEXT = PFN_vkCmdSetLineStippleEXT( vkGetDeviceProcAddr( device, "vkCmdSetLineStippleEXT" ) ); - - //=== VK_EXT_host_query_reset === - vkResetQueryPoolEXT = PFN_vkResetQueryPoolEXT( vkGetDeviceProcAddr( device, "vkResetQueryPoolEXT" ) ); - if ( !vkResetQueryPool ) - vkResetQueryPool = vkResetQueryPoolEXT; - - //=== VK_EXT_extended_dynamic_state === - vkCmdSetCullModeEXT = PFN_vkCmdSetCullModeEXT( vkGetDeviceProcAddr( device, "vkCmdSetCullModeEXT" ) ); - if ( !vkCmdSetCullMode ) - vkCmdSetCullMode = vkCmdSetCullModeEXT; - vkCmdSetFrontFaceEXT = PFN_vkCmdSetFrontFaceEXT( vkGetDeviceProcAddr( device, "vkCmdSetFrontFaceEXT" ) ); - if ( !vkCmdSetFrontFace ) - vkCmdSetFrontFace = vkCmdSetFrontFaceEXT; - vkCmdSetPrimitiveTopologyEXT = - PFN_vkCmdSetPrimitiveTopologyEXT( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveTopologyEXT" ) ); - if ( !vkCmdSetPrimitiveTopology ) - vkCmdSetPrimitiveTopology = vkCmdSetPrimitiveTopologyEXT; - vkCmdSetViewportWithCountEXT = - PFN_vkCmdSetViewportWithCountEXT( vkGetDeviceProcAddr( device, "vkCmdSetViewportWithCountEXT" ) ); - if ( !vkCmdSetViewportWithCount ) - vkCmdSetViewportWithCount = vkCmdSetViewportWithCountEXT; - vkCmdSetScissorWithCountEXT = - PFN_vkCmdSetScissorWithCountEXT( vkGetDeviceProcAddr( device, "vkCmdSetScissorWithCountEXT" ) ); - if ( !vkCmdSetScissorWithCount ) - vkCmdSetScissorWithCount = vkCmdSetScissorWithCountEXT; - vkCmdBindVertexBuffers2EXT = - PFN_vkCmdBindVertexBuffers2EXT( vkGetDeviceProcAddr( device, "vkCmdBindVertexBuffers2EXT" ) ); - if ( !vkCmdBindVertexBuffers2 ) - vkCmdBindVertexBuffers2 = vkCmdBindVertexBuffers2EXT; - vkCmdSetDepthTestEnableEXT = - PFN_vkCmdSetDepthTestEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthTestEnableEXT" ) ); - if ( !vkCmdSetDepthTestEnable ) - vkCmdSetDepthTestEnable = vkCmdSetDepthTestEnableEXT; - vkCmdSetDepthWriteEnableEXT = - PFN_vkCmdSetDepthWriteEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthWriteEnableEXT" ) ); - if ( !vkCmdSetDepthWriteEnable ) - vkCmdSetDepthWriteEnable = vkCmdSetDepthWriteEnableEXT; - vkCmdSetDepthCompareOpEXT = - PFN_vkCmdSetDepthCompareOpEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthCompareOpEXT" ) ); - if ( !vkCmdSetDepthCompareOp ) - vkCmdSetDepthCompareOp = vkCmdSetDepthCompareOpEXT; - vkCmdSetDepthBoundsTestEnableEXT = - PFN_vkCmdSetDepthBoundsTestEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthBoundsTestEnableEXT" ) ); - if ( !vkCmdSetDepthBoundsTestEnable ) - vkCmdSetDepthBoundsTestEnable = vkCmdSetDepthBoundsTestEnableEXT; - vkCmdSetStencilTestEnableEXT = - PFN_vkCmdSetStencilTestEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetStencilTestEnableEXT" ) ); - if ( !vkCmdSetStencilTestEnable ) - vkCmdSetStencilTestEnable = vkCmdSetStencilTestEnableEXT; - vkCmdSetStencilOpEXT = PFN_vkCmdSetStencilOpEXT( vkGetDeviceProcAddr( device, "vkCmdSetStencilOpEXT" ) ); - if ( !vkCmdSetStencilOp ) - vkCmdSetStencilOp = vkCmdSetStencilOpEXT; - - //=== VK_KHR_deferred_host_operations === - vkCreateDeferredOperationKHR = - PFN_vkCreateDeferredOperationKHR( vkGetDeviceProcAddr( device, "vkCreateDeferredOperationKHR" ) ); - vkDestroyDeferredOperationKHR = - PFN_vkDestroyDeferredOperationKHR( vkGetDeviceProcAddr( device, "vkDestroyDeferredOperationKHR" ) ); - vkGetDeferredOperationMaxConcurrencyKHR = PFN_vkGetDeferredOperationMaxConcurrencyKHR( - vkGetDeviceProcAddr( device, "vkGetDeferredOperationMaxConcurrencyKHR" ) ); - vkGetDeferredOperationResultKHR = - PFN_vkGetDeferredOperationResultKHR( vkGetDeviceProcAddr( device, "vkGetDeferredOperationResultKHR" ) ); - vkDeferredOperationJoinKHR = - PFN_vkDeferredOperationJoinKHR( vkGetDeviceProcAddr( device, "vkDeferredOperationJoinKHR" ) ); - - //=== VK_KHR_pipeline_executable_properties === - vkGetPipelineExecutablePropertiesKHR = PFN_vkGetPipelineExecutablePropertiesKHR( - vkGetDeviceProcAddr( device, "vkGetPipelineExecutablePropertiesKHR" ) ); - vkGetPipelineExecutableStatisticsKHR = PFN_vkGetPipelineExecutableStatisticsKHR( - vkGetDeviceProcAddr( device, "vkGetPipelineExecutableStatisticsKHR" ) ); - vkGetPipelineExecutableInternalRepresentationsKHR = PFN_vkGetPipelineExecutableInternalRepresentationsKHR( - vkGetDeviceProcAddr( device, "vkGetPipelineExecutableInternalRepresentationsKHR" ) ); - - //=== VK_NV_device_generated_commands === - vkGetGeneratedCommandsMemoryRequirementsNV = PFN_vkGetGeneratedCommandsMemoryRequirementsNV( - vkGetDeviceProcAddr( device, "vkGetGeneratedCommandsMemoryRequirementsNV" ) ); - vkCmdPreprocessGeneratedCommandsNV = - PFN_vkCmdPreprocessGeneratedCommandsNV( vkGetDeviceProcAddr( device, "vkCmdPreprocessGeneratedCommandsNV" ) ); - vkCmdExecuteGeneratedCommandsNV = - PFN_vkCmdExecuteGeneratedCommandsNV( vkGetDeviceProcAddr( device, "vkCmdExecuteGeneratedCommandsNV" ) ); - vkCmdBindPipelineShaderGroupNV = - PFN_vkCmdBindPipelineShaderGroupNV( vkGetDeviceProcAddr( device, "vkCmdBindPipelineShaderGroupNV" ) ); - vkCreateIndirectCommandsLayoutNV = - PFN_vkCreateIndirectCommandsLayoutNV( vkGetDeviceProcAddr( device, "vkCreateIndirectCommandsLayoutNV" ) ); - vkDestroyIndirectCommandsLayoutNV = - PFN_vkDestroyIndirectCommandsLayoutNV( vkGetDeviceProcAddr( device, "vkDestroyIndirectCommandsLayoutNV" ) ); - - //=== VK_EXT_private_data === - vkCreatePrivateDataSlotEXT = - PFN_vkCreatePrivateDataSlotEXT( vkGetDeviceProcAddr( device, "vkCreatePrivateDataSlotEXT" ) ); - if ( !vkCreatePrivateDataSlot ) - vkCreatePrivateDataSlot = vkCreatePrivateDataSlotEXT; - vkDestroyPrivateDataSlotEXT = - PFN_vkDestroyPrivateDataSlotEXT( vkGetDeviceProcAddr( device, "vkDestroyPrivateDataSlotEXT" ) ); - if ( !vkDestroyPrivateDataSlot ) - vkDestroyPrivateDataSlot = vkDestroyPrivateDataSlotEXT; - vkSetPrivateDataEXT = PFN_vkSetPrivateDataEXT( vkGetDeviceProcAddr( device, "vkSetPrivateDataEXT" ) ); - if ( !vkSetPrivateData ) - vkSetPrivateData = vkSetPrivateDataEXT; - vkGetPrivateDataEXT = PFN_vkGetPrivateDataEXT( vkGetDeviceProcAddr( device, "vkGetPrivateDataEXT" ) ); - if ( !vkGetPrivateData ) - vkGetPrivateData = vkGetPrivateDataEXT; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - vkCmdEncodeVideoKHR = PFN_vkCmdEncodeVideoKHR( vkGetDeviceProcAddr( device, "vkCmdEncodeVideoKHR" ) ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - vkCmdSetEvent2KHR = PFN_vkCmdSetEvent2KHR( vkGetDeviceProcAddr( device, "vkCmdSetEvent2KHR" ) ); - if ( !vkCmdSetEvent2 ) - vkCmdSetEvent2 = vkCmdSetEvent2KHR; - vkCmdResetEvent2KHR = PFN_vkCmdResetEvent2KHR( vkGetDeviceProcAddr( device, "vkCmdResetEvent2KHR" ) ); - if ( !vkCmdResetEvent2 ) - vkCmdResetEvent2 = vkCmdResetEvent2KHR; - vkCmdWaitEvents2KHR = PFN_vkCmdWaitEvents2KHR( vkGetDeviceProcAddr( device, "vkCmdWaitEvents2KHR" ) ); - if ( !vkCmdWaitEvents2 ) - vkCmdWaitEvents2 = vkCmdWaitEvents2KHR; - vkCmdPipelineBarrier2KHR = - PFN_vkCmdPipelineBarrier2KHR( vkGetDeviceProcAddr( device, "vkCmdPipelineBarrier2KHR" ) ); - if ( !vkCmdPipelineBarrier2 ) - vkCmdPipelineBarrier2 = vkCmdPipelineBarrier2KHR; - vkCmdWriteTimestamp2KHR = PFN_vkCmdWriteTimestamp2KHR( vkGetDeviceProcAddr( device, "vkCmdWriteTimestamp2KHR" ) ); - if ( !vkCmdWriteTimestamp2 ) - vkCmdWriteTimestamp2 = vkCmdWriteTimestamp2KHR; - vkQueueSubmit2KHR = PFN_vkQueueSubmit2KHR( vkGetDeviceProcAddr( device, "vkQueueSubmit2KHR" ) ); - if ( !vkQueueSubmit2 ) - vkQueueSubmit2 = vkQueueSubmit2KHR; - vkCmdWriteBufferMarker2AMD = - PFN_vkCmdWriteBufferMarker2AMD( vkGetDeviceProcAddr( device, "vkCmdWriteBufferMarker2AMD" ) ); - vkGetQueueCheckpointData2NV = - PFN_vkGetQueueCheckpointData2NV( vkGetDeviceProcAddr( device, "vkGetQueueCheckpointData2NV" ) ); - - //=== VK_NV_fragment_shading_rate_enums === - vkCmdSetFragmentShadingRateEnumNV = - PFN_vkCmdSetFragmentShadingRateEnumNV( vkGetDeviceProcAddr( device, "vkCmdSetFragmentShadingRateEnumNV" ) ); - - //=== VK_KHR_copy_commands2 === - vkCmdCopyBuffer2KHR = PFN_vkCmdCopyBuffer2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyBuffer2KHR" ) ); - if ( !vkCmdCopyBuffer2 ) - vkCmdCopyBuffer2 = vkCmdCopyBuffer2KHR; - vkCmdCopyImage2KHR = PFN_vkCmdCopyImage2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyImage2KHR" ) ); - if ( !vkCmdCopyImage2 ) - vkCmdCopyImage2 = vkCmdCopyImage2KHR; - vkCmdCopyBufferToImage2KHR = - PFN_vkCmdCopyBufferToImage2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyBufferToImage2KHR" ) ); - if ( !vkCmdCopyBufferToImage2 ) - vkCmdCopyBufferToImage2 = vkCmdCopyBufferToImage2KHR; - vkCmdCopyImageToBuffer2KHR = - PFN_vkCmdCopyImageToBuffer2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyImageToBuffer2KHR" ) ); - if ( !vkCmdCopyImageToBuffer2 ) - vkCmdCopyImageToBuffer2 = vkCmdCopyImageToBuffer2KHR; - vkCmdBlitImage2KHR = PFN_vkCmdBlitImage2KHR( vkGetDeviceProcAddr( device, "vkCmdBlitImage2KHR" ) ); - if ( !vkCmdBlitImage2 ) - vkCmdBlitImage2 = vkCmdBlitImage2KHR; - vkCmdResolveImage2KHR = PFN_vkCmdResolveImage2KHR( vkGetDeviceProcAddr( device, "vkCmdResolveImage2KHR" ) ); - if ( !vkCmdResolveImage2 ) - vkCmdResolveImage2 = vkCmdResolveImage2KHR; - - //=== VK_KHR_ray_tracing_pipeline === - vkCmdTraceRaysKHR = PFN_vkCmdTraceRaysKHR( vkGetDeviceProcAddr( device, "vkCmdTraceRaysKHR" ) ); - vkCreateRayTracingPipelinesKHR = - PFN_vkCreateRayTracingPipelinesKHR( vkGetDeviceProcAddr( device, "vkCreateRayTracingPipelinesKHR" ) ); - vkGetRayTracingShaderGroupHandlesKHR = PFN_vkGetRayTracingShaderGroupHandlesKHR( - vkGetDeviceProcAddr( device, "vkGetRayTracingShaderGroupHandlesKHR" ) ); - vkGetRayTracingCaptureReplayShaderGroupHandlesKHR = PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( - vkGetDeviceProcAddr( device, "vkGetRayTracingCaptureReplayShaderGroupHandlesKHR" ) ); - vkCmdTraceRaysIndirectKHR = - PFN_vkCmdTraceRaysIndirectKHR( vkGetDeviceProcAddr( device, "vkCmdTraceRaysIndirectKHR" ) ); - vkGetRayTracingShaderGroupStackSizeKHR = PFN_vkGetRayTracingShaderGroupStackSizeKHR( - vkGetDeviceProcAddr( device, "vkGetRayTracingShaderGroupStackSizeKHR" ) ); - vkCmdSetRayTracingPipelineStackSizeKHR = PFN_vkCmdSetRayTracingPipelineStackSizeKHR( - vkGetDeviceProcAddr( device, "vkCmdSetRayTracingPipelineStackSizeKHR" ) ); - - //=== VK_EXT_vertex_input_dynamic_state === - vkCmdSetVertexInputEXT = PFN_vkCmdSetVertexInputEXT( vkGetDeviceProcAddr( device, "vkCmdSetVertexInputEXT" ) ); - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - vkGetMemoryZirconHandleFUCHSIA = - PFN_vkGetMemoryZirconHandleFUCHSIA( vkGetDeviceProcAddr( device, "vkGetMemoryZirconHandleFUCHSIA" ) ); - vkGetMemoryZirconHandlePropertiesFUCHSIA = PFN_vkGetMemoryZirconHandlePropertiesFUCHSIA( - vkGetDeviceProcAddr( device, "vkGetMemoryZirconHandlePropertiesFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - vkImportSemaphoreZirconHandleFUCHSIA = PFN_vkImportSemaphoreZirconHandleFUCHSIA( - vkGetDeviceProcAddr( device, "vkImportSemaphoreZirconHandleFUCHSIA" ) ); - vkGetSemaphoreZirconHandleFUCHSIA = - PFN_vkGetSemaphoreZirconHandleFUCHSIA( vkGetDeviceProcAddr( device, "vkGetSemaphoreZirconHandleFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - vkCreateBufferCollectionFUCHSIA = - PFN_vkCreateBufferCollectionFUCHSIA( vkGetDeviceProcAddr( device, "vkCreateBufferCollectionFUCHSIA" ) ); - vkSetBufferCollectionImageConstraintsFUCHSIA = PFN_vkSetBufferCollectionImageConstraintsFUCHSIA( - vkGetDeviceProcAddr( device, "vkSetBufferCollectionImageConstraintsFUCHSIA" ) ); - vkSetBufferCollectionBufferConstraintsFUCHSIA = PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA( - vkGetDeviceProcAddr( device, "vkSetBufferCollectionBufferConstraintsFUCHSIA" ) ); - vkDestroyBufferCollectionFUCHSIA = - PFN_vkDestroyBufferCollectionFUCHSIA( vkGetDeviceProcAddr( device, "vkDestroyBufferCollectionFUCHSIA" ) ); - vkGetBufferCollectionPropertiesFUCHSIA = PFN_vkGetBufferCollectionPropertiesFUCHSIA( - vkGetDeviceProcAddr( device, "vkGetBufferCollectionPropertiesFUCHSIA" ) ); -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI = PFN_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - vkGetDeviceProcAddr( device, "vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI" ) ); - vkCmdSubpassShadingHUAWEI = - PFN_vkCmdSubpassShadingHUAWEI( vkGetDeviceProcAddr( device, "vkCmdSubpassShadingHUAWEI" ) ); - - //=== VK_HUAWEI_invocation_mask === - vkCmdBindInvocationMaskHUAWEI = - PFN_vkCmdBindInvocationMaskHUAWEI( vkGetDeviceProcAddr( device, "vkCmdBindInvocationMaskHUAWEI" ) ); - - //=== VK_NV_external_memory_rdma === - vkGetMemoryRemoteAddressNV = - PFN_vkGetMemoryRemoteAddressNV( vkGetDeviceProcAddr( device, "vkGetMemoryRemoteAddressNV" ) ); - - //=== VK_EXT_extended_dynamic_state2 === - vkCmdSetPatchControlPointsEXT = - PFN_vkCmdSetPatchControlPointsEXT( vkGetDeviceProcAddr( device, "vkCmdSetPatchControlPointsEXT" ) ); - vkCmdSetRasterizerDiscardEnableEXT = - PFN_vkCmdSetRasterizerDiscardEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetRasterizerDiscardEnableEXT" ) ); - if ( !vkCmdSetRasterizerDiscardEnable ) - vkCmdSetRasterizerDiscardEnable = vkCmdSetRasterizerDiscardEnableEXT; - vkCmdSetDepthBiasEnableEXT = - PFN_vkCmdSetDepthBiasEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthBiasEnableEXT" ) ); - if ( !vkCmdSetDepthBiasEnable ) - vkCmdSetDepthBiasEnable = vkCmdSetDepthBiasEnableEXT; - vkCmdSetLogicOpEXT = PFN_vkCmdSetLogicOpEXT( vkGetDeviceProcAddr( device, "vkCmdSetLogicOpEXT" ) ); - vkCmdSetPrimitiveRestartEnableEXT = - PFN_vkCmdSetPrimitiveRestartEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveRestartEnableEXT" ) ); - if ( !vkCmdSetPrimitiveRestartEnable ) - vkCmdSetPrimitiveRestartEnable = vkCmdSetPrimitiveRestartEnableEXT; - - //=== VK_EXT_color_write_enable === - vkCmdSetColorWriteEnableEXT = - PFN_vkCmdSetColorWriteEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetColorWriteEnableEXT" ) ); - - //=== VK_EXT_multi_draw === - vkCmdDrawMultiEXT = PFN_vkCmdDrawMultiEXT( vkGetDeviceProcAddr( device, "vkCmdDrawMultiEXT" ) ); - vkCmdDrawMultiIndexedEXT = - PFN_vkCmdDrawMultiIndexedEXT( vkGetDeviceProcAddr( device, "vkCmdDrawMultiIndexedEXT" ) ); - - //=== VK_EXT_pageable_device_local_memory === - vkSetDeviceMemoryPriorityEXT = - PFN_vkSetDeviceMemoryPriorityEXT( vkGetDeviceProcAddr( device, "vkSetDeviceMemoryPriorityEXT" ) ); - - //=== VK_KHR_maintenance4 === - vkGetDeviceBufferMemoryRequirementsKHR = PFN_vkGetDeviceBufferMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceBufferMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceBufferMemoryRequirements ) - vkGetDeviceBufferMemoryRequirements = vkGetDeviceBufferMemoryRequirementsKHR; - vkGetDeviceImageMemoryRequirementsKHR = PFN_vkGetDeviceImageMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceImageMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceImageMemoryRequirements ) - vkGetDeviceImageMemoryRequirements = vkGetDeviceImageMemoryRequirementsKHR; - vkGetDeviceImageSparseMemoryRequirementsKHR = PFN_vkGetDeviceImageSparseMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceImageSparseMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceImageSparseMemoryRequirements ) - vkGetDeviceImageSparseMemoryRequirements = vkGetDeviceImageSparseMemoryRequirementsKHR; - } - }; -} // namespace VULKAN_HPP_NAMESPACE -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_android.h b/Externals/Vulkan/Include/vulkan/vulkan_android.h deleted file mode 100644 index de79d382f2..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_android.h +++ /dev/null @@ -1,125 +0,0 @@ -#ifndef VULKAN_ANDROID_H_ -#define VULKAN_ANDROID_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_KHR_android_surface 1 -struct ANativeWindow; -#define VK_KHR_ANDROID_SURFACE_SPEC_VERSION 6 -#define VK_KHR_ANDROID_SURFACE_EXTENSION_NAME "VK_KHR_android_surface" -typedef VkFlags VkAndroidSurfaceCreateFlagsKHR; -typedef struct VkAndroidSurfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkAndroidSurfaceCreateFlagsKHR flags; - struct ANativeWindow* window; -} VkAndroidSurfaceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateAndroidSurfaceKHR)(VkInstance instance, const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateAndroidSurfaceKHR( - VkInstance instance, - const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - - -#define VK_ANDROID_external_memory_android_hardware_buffer 1 -struct AHardwareBuffer; -#define VK_ANDROID_EXTERNAL_MEMORY_ANDROID_HARDWARE_BUFFER_SPEC_VERSION 4 -#define VK_ANDROID_EXTERNAL_MEMORY_ANDROID_HARDWARE_BUFFER_EXTENSION_NAME "VK_ANDROID_external_memory_android_hardware_buffer" -typedef struct VkAndroidHardwareBufferUsageANDROID { - VkStructureType sType; - void* pNext; - uint64_t androidHardwareBufferUsage; -} VkAndroidHardwareBufferUsageANDROID; - -typedef struct VkAndroidHardwareBufferPropertiesANDROID { - VkStructureType sType; - void* pNext; - VkDeviceSize allocationSize; - uint32_t memoryTypeBits; -} VkAndroidHardwareBufferPropertiesANDROID; - -typedef struct VkAndroidHardwareBufferFormatPropertiesANDROID { - VkStructureType sType; - void* pNext; - VkFormat format; - uint64_t externalFormat; - VkFormatFeatureFlags formatFeatures; - VkComponentMapping samplerYcbcrConversionComponents; - VkSamplerYcbcrModelConversion suggestedYcbcrModel; - VkSamplerYcbcrRange suggestedYcbcrRange; - VkChromaLocation suggestedXChromaOffset; - VkChromaLocation suggestedYChromaOffset; -} VkAndroidHardwareBufferFormatPropertiesANDROID; - -typedef struct VkImportAndroidHardwareBufferInfoANDROID { - VkStructureType sType; - const void* pNext; - struct AHardwareBuffer* buffer; -} VkImportAndroidHardwareBufferInfoANDROID; - -typedef struct VkMemoryGetAndroidHardwareBufferInfoANDROID { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; -} VkMemoryGetAndroidHardwareBufferInfoANDROID; - -typedef struct VkExternalFormatANDROID { - VkStructureType sType; - void* pNext; - uint64_t externalFormat; -} VkExternalFormatANDROID; - -typedef struct VkAndroidHardwareBufferFormatProperties2ANDROID { - VkStructureType sType; - void* pNext; - VkFormat format; - uint64_t externalFormat; - VkFormatFeatureFlags2 formatFeatures; - VkComponentMapping samplerYcbcrConversionComponents; - VkSamplerYcbcrModelConversion suggestedYcbcrModel; - VkSamplerYcbcrRange suggestedYcbcrRange; - VkChromaLocation suggestedXChromaOffset; - VkChromaLocation suggestedYChromaOffset; -} VkAndroidHardwareBufferFormatProperties2ANDROID; - -typedef VkResult (VKAPI_PTR *PFN_vkGetAndroidHardwareBufferPropertiesANDROID)(VkDevice device, const struct AHardwareBuffer* buffer, VkAndroidHardwareBufferPropertiesANDROID* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryAndroidHardwareBufferANDROID)(VkDevice device, const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo, struct AHardwareBuffer** pBuffer); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetAndroidHardwareBufferPropertiesANDROID( - VkDevice device, - const struct AHardwareBuffer* buffer, - VkAndroidHardwareBufferPropertiesANDROID* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryAndroidHardwareBufferANDROID( - VkDevice device, - const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo, - struct AHardwareBuffer** pBuffer); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_beta.h b/Externals/Vulkan/Include/vulkan/vulkan_beta.h deleted file mode 100644 index 7fa0d065bc..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_beta.h +++ /dev/null @@ -1,933 +0,0 @@ -#ifndef VULKAN_BETA_H_ -#define VULKAN_BETA_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_KHR_video_queue 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkVideoSessionKHR) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkVideoSessionParametersKHR) -#define VK_KHR_VIDEO_QUEUE_SPEC_VERSION 2 -#define VK_KHR_VIDEO_QUEUE_EXTENSION_NAME "VK_KHR_video_queue" - -typedef enum VkQueryResultStatusKHR { - VK_QUERY_RESULT_STATUS_ERROR_KHR = -1, - VK_QUERY_RESULT_STATUS_NOT_READY_KHR = 0, - VK_QUERY_RESULT_STATUS_COMPLETE_KHR = 1, - VK_QUERY_RESULT_STATUS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkQueryResultStatusKHR; - -typedef enum VkVideoCodecOperationFlagBitsKHR { - VK_VIDEO_CODEC_OPERATION_INVALID_BIT_KHR = 0, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_VIDEO_CODEC_OPERATION_ENCODE_H264_BIT_EXT = 0x00010000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_VIDEO_CODEC_OPERATION_ENCODE_H265_BIT_EXT = 0x00020000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_VIDEO_CODEC_OPERATION_DECODE_H264_BIT_EXT = 0x00000001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_EXT = 0x00000002, -#endif - VK_VIDEO_CODEC_OPERATION_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoCodecOperationFlagBitsKHR; -typedef VkFlags VkVideoCodecOperationFlagsKHR; - -typedef enum VkVideoChromaSubsamplingFlagBitsKHR { - VK_VIDEO_CHROMA_SUBSAMPLING_INVALID_BIT_KHR = 0, - VK_VIDEO_CHROMA_SUBSAMPLING_MONOCHROME_BIT_KHR = 0x00000001, - VK_VIDEO_CHROMA_SUBSAMPLING_420_BIT_KHR = 0x00000002, - VK_VIDEO_CHROMA_SUBSAMPLING_422_BIT_KHR = 0x00000004, - VK_VIDEO_CHROMA_SUBSAMPLING_444_BIT_KHR = 0x00000008, - VK_VIDEO_CHROMA_SUBSAMPLING_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoChromaSubsamplingFlagBitsKHR; -typedef VkFlags VkVideoChromaSubsamplingFlagsKHR; - -typedef enum VkVideoComponentBitDepthFlagBitsKHR { - VK_VIDEO_COMPONENT_BIT_DEPTH_INVALID_KHR = 0, - VK_VIDEO_COMPONENT_BIT_DEPTH_8_BIT_KHR = 0x00000001, - VK_VIDEO_COMPONENT_BIT_DEPTH_10_BIT_KHR = 0x00000004, - VK_VIDEO_COMPONENT_BIT_DEPTH_12_BIT_KHR = 0x00000010, - VK_VIDEO_COMPONENT_BIT_DEPTH_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoComponentBitDepthFlagBitsKHR; -typedef VkFlags VkVideoComponentBitDepthFlagsKHR; - -typedef enum VkVideoCapabilityFlagBitsKHR { - VK_VIDEO_CAPABILITY_PROTECTED_CONTENT_BIT_KHR = 0x00000001, - VK_VIDEO_CAPABILITY_SEPARATE_REFERENCE_IMAGES_BIT_KHR = 0x00000002, - VK_VIDEO_CAPABILITY_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoCapabilityFlagBitsKHR; -typedef VkFlags VkVideoCapabilityFlagsKHR; - -typedef enum VkVideoSessionCreateFlagBitsKHR { - VK_VIDEO_SESSION_CREATE_DEFAULT_KHR = 0, - VK_VIDEO_SESSION_CREATE_PROTECTED_CONTENT_BIT_KHR = 0x00000001, - VK_VIDEO_SESSION_CREATE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoSessionCreateFlagBitsKHR; -typedef VkFlags VkVideoSessionCreateFlagsKHR; -typedef VkFlags VkVideoBeginCodingFlagsKHR; -typedef VkFlags VkVideoEndCodingFlagsKHR; - -typedef enum VkVideoCodingControlFlagBitsKHR { - VK_VIDEO_CODING_CONTROL_DEFAULT_KHR = 0, - VK_VIDEO_CODING_CONTROL_RESET_BIT_KHR = 0x00000001, - VK_VIDEO_CODING_CONTROL_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoCodingControlFlagBitsKHR; -typedef VkFlags VkVideoCodingControlFlagsKHR; - -typedef enum VkVideoCodingQualityPresetFlagBitsKHR { - VK_VIDEO_CODING_QUALITY_PRESET_NORMAL_BIT_KHR = 0x00000001, - VK_VIDEO_CODING_QUALITY_PRESET_POWER_BIT_KHR = 0x00000002, - VK_VIDEO_CODING_QUALITY_PRESET_QUALITY_BIT_KHR = 0x00000004, - VK_VIDEO_CODING_QUALITY_PRESET_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoCodingQualityPresetFlagBitsKHR; -typedef VkFlags VkVideoCodingQualityPresetFlagsKHR; -typedef struct VkQueueFamilyQueryResultStatusProperties2KHR { - VkStructureType sType; - void* pNext; - VkBool32 supported; -} VkQueueFamilyQueryResultStatusProperties2KHR; - -typedef struct VkVideoQueueFamilyProperties2KHR { - VkStructureType sType; - void* pNext; - VkVideoCodecOperationFlagsKHR videoCodecOperations; -} VkVideoQueueFamilyProperties2KHR; - -typedef struct VkVideoProfileKHR { - VkStructureType sType; - void* pNext; - VkVideoCodecOperationFlagBitsKHR videoCodecOperation; - VkVideoChromaSubsamplingFlagsKHR chromaSubsampling; - VkVideoComponentBitDepthFlagsKHR lumaBitDepth; - VkVideoComponentBitDepthFlagsKHR chromaBitDepth; -} VkVideoProfileKHR; - -typedef struct VkVideoProfilesKHR { - VkStructureType sType; - void* pNext; - uint32_t profileCount; - const VkVideoProfileKHR* pProfiles; -} VkVideoProfilesKHR; - -typedef struct VkVideoCapabilitiesKHR { - VkStructureType sType; - void* pNext; - VkVideoCapabilityFlagsKHR capabilityFlags; - VkDeviceSize minBitstreamBufferOffsetAlignment; - VkDeviceSize minBitstreamBufferSizeAlignment; - VkExtent2D videoPictureExtentGranularity; - VkExtent2D minExtent; - VkExtent2D maxExtent; - uint32_t maxReferencePicturesSlotsCount; - uint32_t maxReferencePicturesActiveCount; -} VkVideoCapabilitiesKHR; - -typedef struct VkPhysicalDeviceVideoFormatInfoKHR { - VkStructureType sType; - void* pNext; - VkImageUsageFlags imageUsage; - const VkVideoProfilesKHR* pVideoProfiles; -} VkPhysicalDeviceVideoFormatInfoKHR; - -typedef struct VkVideoFormatPropertiesKHR { - VkStructureType sType; - void* pNext; - VkFormat format; -} VkVideoFormatPropertiesKHR; - -typedef struct VkVideoPictureResourceKHR { - VkStructureType sType; - const void* pNext; - VkOffset2D codedOffset; - VkExtent2D codedExtent; - uint32_t baseArrayLayer; - VkImageView imageViewBinding; -} VkVideoPictureResourceKHR; - -typedef struct VkVideoReferenceSlotKHR { - VkStructureType sType; - const void* pNext; - int8_t slotIndex; - const VkVideoPictureResourceKHR* pPictureResource; -} VkVideoReferenceSlotKHR; - -typedef struct VkVideoGetMemoryPropertiesKHR { - VkStructureType sType; - const void* pNext; - uint32_t memoryBindIndex; - VkMemoryRequirements2* pMemoryRequirements; -} VkVideoGetMemoryPropertiesKHR; - -typedef struct VkVideoBindMemoryKHR { - VkStructureType sType; - const void* pNext; - uint32_t memoryBindIndex; - VkDeviceMemory memory; - VkDeviceSize memoryOffset; - VkDeviceSize memorySize; -} VkVideoBindMemoryKHR; - -typedef struct VkVideoSessionCreateInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t queueFamilyIndex; - VkVideoSessionCreateFlagsKHR flags; - const VkVideoProfileKHR* pVideoProfile; - VkFormat pictureFormat; - VkExtent2D maxCodedExtent; - VkFormat referencePicturesFormat; - uint32_t maxReferencePicturesSlotsCount; - uint32_t maxReferencePicturesActiveCount; -} VkVideoSessionCreateInfoKHR; - -typedef struct VkVideoSessionParametersCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoSessionParametersKHR videoSessionParametersTemplate; - VkVideoSessionKHR videoSession; -} VkVideoSessionParametersCreateInfoKHR; - -typedef struct VkVideoSessionParametersUpdateInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t updateSequenceCount; -} VkVideoSessionParametersUpdateInfoKHR; - -typedef struct VkVideoBeginCodingInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoBeginCodingFlagsKHR flags; - VkVideoCodingQualityPresetFlagsKHR codecQualityPreset; - VkVideoSessionKHR videoSession; - VkVideoSessionParametersKHR videoSessionParameters; - uint32_t referenceSlotCount; - const VkVideoReferenceSlotKHR* pReferenceSlots; -} VkVideoBeginCodingInfoKHR; - -typedef struct VkVideoEndCodingInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoEndCodingFlagsKHR flags; -} VkVideoEndCodingInfoKHR; - -typedef struct VkVideoCodingControlInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoCodingControlFlagsKHR flags; -} VkVideoCodingControlInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceVideoCapabilitiesKHR)(VkPhysicalDevice physicalDevice, const VkVideoProfileKHR* pVideoProfile, VkVideoCapabilitiesKHR* pCapabilities); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceVideoFormatPropertiesKHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceVideoFormatInfoKHR* pVideoFormatInfo, uint32_t* pVideoFormatPropertyCount, VkVideoFormatPropertiesKHR* pVideoFormatProperties); -typedef VkResult (VKAPI_PTR *PFN_vkCreateVideoSessionKHR)(VkDevice device, const VkVideoSessionCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkVideoSessionKHR* pVideoSession); -typedef void (VKAPI_PTR *PFN_vkDestroyVideoSessionKHR)(VkDevice device, VkVideoSessionKHR videoSession, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetVideoSessionMemoryRequirementsKHR)(VkDevice device, VkVideoSessionKHR videoSession, uint32_t* pVideoSessionMemoryRequirementsCount, VkVideoGetMemoryPropertiesKHR* pVideoSessionMemoryRequirements); -typedef VkResult (VKAPI_PTR *PFN_vkBindVideoSessionMemoryKHR)(VkDevice device, VkVideoSessionKHR videoSession, uint32_t videoSessionBindMemoryCount, const VkVideoBindMemoryKHR* pVideoSessionBindMemories); -typedef VkResult (VKAPI_PTR *PFN_vkCreateVideoSessionParametersKHR)(VkDevice device, const VkVideoSessionParametersCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkVideoSessionParametersKHR* pVideoSessionParameters); -typedef VkResult (VKAPI_PTR *PFN_vkUpdateVideoSessionParametersKHR)(VkDevice device, VkVideoSessionParametersKHR videoSessionParameters, const VkVideoSessionParametersUpdateInfoKHR* pUpdateInfo); -typedef void (VKAPI_PTR *PFN_vkDestroyVideoSessionParametersKHR)(VkDevice device, VkVideoSessionParametersKHR videoSessionParameters, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkCmdBeginVideoCodingKHR)(VkCommandBuffer commandBuffer, const VkVideoBeginCodingInfoKHR* pBeginInfo); -typedef void (VKAPI_PTR *PFN_vkCmdEndVideoCodingKHR)(VkCommandBuffer commandBuffer, const VkVideoEndCodingInfoKHR* pEndCodingInfo); -typedef void (VKAPI_PTR *PFN_vkCmdControlVideoCodingKHR)(VkCommandBuffer commandBuffer, const VkVideoCodingControlInfoKHR* pCodingControlInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceVideoCapabilitiesKHR( - VkPhysicalDevice physicalDevice, - const VkVideoProfileKHR* pVideoProfile, - VkVideoCapabilitiesKHR* pCapabilities); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceVideoFormatPropertiesKHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceVideoFormatInfoKHR* pVideoFormatInfo, - uint32_t* pVideoFormatPropertyCount, - VkVideoFormatPropertiesKHR* pVideoFormatProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateVideoSessionKHR( - VkDevice device, - const VkVideoSessionCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkVideoSessionKHR* pVideoSession); - -VKAPI_ATTR void VKAPI_CALL vkDestroyVideoSessionKHR( - VkDevice device, - VkVideoSessionKHR videoSession, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetVideoSessionMemoryRequirementsKHR( - VkDevice device, - VkVideoSessionKHR videoSession, - uint32_t* pVideoSessionMemoryRequirementsCount, - VkVideoGetMemoryPropertiesKHR* pVideoSessionMemoryRequirements); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindVideoSessionMemoryKHR( - VkDevice device, - VkVideoSessionKHR videoSession, - uint32_t videoSessionBindMemoryCount, - const VkVideoBindMemoryKHR* pVideoSessionBindMemories); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateVideoSessionParametersKHR( - VkDevice device, - const VkVideoSessionParametersCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkVideoSessionParametersKHR* pVideoSessionParameters); - -VKAPI_ATTR VkResult VKAPI_CALL vkUpdateVideoSessionParametersKHR( - VkDevice device, - VkVideoSessionParametersKHR videoSessionParameters, - const VkVideoSessionParametersUpdateInfoKHR* pUpdateInfo); - -VKAPI_ATTR void VKAPI_CALL vkDestroyVideoSessionParametersKHR( - VkDevice device, - VkVideoSessionParametersKHR videoSessionParameters, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginVideoCodingKHR( - VkCommandBuffer commandBuffer, - const VkVideoBeginCodingInfoKHR* pBeginInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndVideoCodingKHR( - VkCommandBuffer commandBuffer, - const VkVideoEndCodingInfoKHR* pEndCodingInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdControlVideoCodingKHR( - VkCommandBuffer commandBuffer, - const VkVideoCodingControlInfoKHR* pCodingControlInfo); -#endif - - -#define VK_KHR_video_decode_queue 1 -#define VK_KHR_VIDEO_DECODE_QUEUE_SPEC_VERSION 2 -#define VK_KHR_VIDEO_DECODE_QUEUE_EXTENSION_NAME "VK_KHR_video_decode_queue" - -typedef enum VkVideoDecodeFlagBitsKHR { - VK_VIDEO_DECODE_DEFAULT_KHR = 0, - VK_VIDEO_DECODE_RESERVED_0_BIT_KHR = 0x00000001, - VK_VIDEO_DECODE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoDecodeFlagBitsKHR; -typedef VkFlags VkVideoDecodeFlagsKHR; -typedef struct VkVideoDecodeInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoDecodeFlagsKHR flags; - VkOffset2D codedOffset; - VkExtent2D codedExtent; - VkBuffer srcBuffer; - VkDeviceSize srcBufferOffset; - VkDeviceSize srcBufferRange; - VkVideoPictureResourceKHR dstPictureResource; - const VkVideoReferenceSlotKHR* pSetupReferenceSlot; - uint32_t referenceSlotCount; - const VkVideoReferenceSlotKHR* pReferenceSlots; -} VkVideoDecodeInfoKHR; - -typedef void (VKAPI_PTR *PFN_vkCmdDecodeVideoKHR)(VkCommandBuffer commandBuffer, const VkVideoDecodeInfoKHR* pFrameInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdDecodeVideoKHR( - VkCommandBuffer commandBuffer, - const VkVideoDecodeInfoKHR* pFrameInfo); -#endif - - -#define VK_KHR_portability_subset 1 -#define VK_KHR_PORTABILITY_SUBSET_SPEC_VERSION 1 -#define VK_KHR_PORTABILITY_SUBSET_EXTENSION_NAME "VK_KHR_portability_subset" -typedef struct VkPhysicalDevicePortabilitySubsetFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 constantAlphaColorBlendFactors; - VkBool32 events; - VkBool32 imageViewFormatReinterpretation; - VkBool32 imageViewFormatSwizzle; - VkBool32 imageView2DOn3DImage; - VkBool32 multisampleArrayImage; - VkBool32 mutableComparisonSamplers; - VkBool32 pointPolygons; - VkBool32 samplerMipLodBias; - VkBool32 separateStencilMaskRef; - VkBool32 shaderSampleRateInterpolationFunctions; - VkBool32 tessellationIsolines; - VkBool32 tessellationPointMode; - VkBool32 triangleFans; - VkBool32 vertexAttributeAccessBeyondStride; -} VkPhysicalDevicePortabilitySubsetFeaturesKHR; - -typedef struct VkPhysicalDevicePortabilitySubsetPropertiesKHR { - VkStructureType sType; - void* pNext; - uint32_t minVertexInputBindingStrideAlignment; -} VkPhysicalDevicePortabilitySubsetPropertiesKHR; - - - -#define VK_KHR_video_encode_queue 1 -#define VK_KHR_VIDEO_ENCODE_QUEUE_SPEC_VERSION 3 -#define VK_KHR_VIDEO_ENCODE_QUEUE_EXTENSION_NAME "VK_KHR_video_encode_queue" - -typedef enum VkVideoEncodeFlagBitsKHR { - VK_VIDEO_ENCODE_DEFAULT_KHR = 0, - VK_VIDEO_ENCODE_RESERVED_0_BIT_KHR = 0x00000001, - VK_VIDEO_ENCODE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoEncodeFlagBitsKHR; -typedef VkFlags VkVideoEncodeFlagsKHR; - -typedef enum VkVideoEncodeRateControlFlagBitsKHR { - VK_VIDEO_ENCODE_RATE_CONTROL_DEFAULT_KHR = 0, - VK_VIDEO_ENCODE_RATE_CONTROL_RESERVED_0_BIT_KHR = 0x00000001, - VK_VIDEO_ENCODE_RATE_CONTROL_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoEncodeRateControlFlagBitsKHR; -typedef VkFlags VkVideoEncodeRateControlFlagsKHR; - -typedef enum VkVideoEncodeRateControlModeFlagBitsKHR { - VK_VIDEO_ENCODE_RATE_CONTROL_MODE_NONE_BIT_KHR = 0, - VK_VIDEO_ENCODE_RATE_CONTROL_MODE_CBR_BIT_KHR = 1, - VK_VIDEO_ENCODE_RATE_CONTROL_MODE_VBR_BIT_KHR = 2, - VK_VIDEO_ENCODE_RATE_CONTROL_MODE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkVideoEncodeRateControlModeFlagBitsKHR; -typedef VkFlags VkVideoEncodeRateControlModeFlagsKHR; -typedef struct VkVideoEncodeInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoEncodeFlagsKHR flags; - uint32_t qualityLevel; - VkExtent2D codedExtent; - VkBuffer dstBitstreamBuffer; - VkDeviceSize dstBitstreamBufferOffset; - VkDeviceSize dstBitstreamBufferMaxRange; - VkVideoPictureResourceKHR srcPictureResource; - const VkVideoReferenceSlotKHR* pSetupReferenceSlot; - uint32_t referenceSlotCount; - const VkVideoReferenceSlotKHR* pReferenceSlots; - uint32_t precedingExternallyEncodedBytes; -} VkVideoEncodeInfoKHR; - -typedef struct VkVideoEncodeRateControlLayerInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t averageBitrate; - uint32_t maxBitrate; - uint32_t frameRateNumerator; - uint32_t frameRateDenominator; - uint32_t virtualBufferSizeInMs; - uint32_t initialVirtualBufferSizeInMs; -} VkVideoEncodeRateControlLayerInfoKHR; - -typedef struct VkVideoEncodeRateControlInfoKHR { - VkStructureType sType; - const void* pNext; - VkVideoEncodeRateControlFlagsKHR flags; - VkVideoEncodeRateControlModeFlagBitsKHR rateControlMode; - uint8_t layerCount; - const VkVideoEncodeRateControlLayerInfoKHR* pLayerConfigs; -} VkVideoEncodeRateControlInfoKHR; - -typedef void (VKAPI_PTR *PFN_vkCmdEncodeVideoKHR)(VkCommandBuffer commandBuffer, const VkVideoEncodeInfoKHR* pEncodeInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdEncodeVideoKHR( - VkCommandBuffer commandBuffer, - const VkVideoEncodeInfoKHR* pEncodeInfo); -#endif - - -#define VK_EXT_video_encode_h264 1 -#include "vk_video/vulkan_video_codec_h264std.h" -#include "vk_video/vulkan_video_codec_h264std_encode.h" -#define VK_EXT_VIDEO_ENCODE_H264_SPEC_VERSION 3 -#define VK_EXT_VIDEO_ENCODE_H264_EXTENSION_NAME "VK_EXT_video_encode_h264" - -typedef enum VkVideoEncodeH264CapabilityFlagBitsEXT { - VK_VIDEO_ENCODE_H264_CAPABILITY_CABAC_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H264_CAPABILITY_CAVLC_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H264_CAPABILITY_WEIGHTED_BI_PRED_IMPLICIT_BIT_EXT = 0x00000004, - VK_VIDEO_ENCODE_H264_CAPABILITY_TRANSFORM_8X8_BIT_EXT = 0x00000008, - VK_VIDEO_ENCODE_H264_CAPABILITY_CHROMA_QP_OFFSET_BIT_EXT = 0x00000010, - VK_VIDEO_ENCODE_H264_CAPABILITY_SECOND_CHROMA_QP_OFFSET_BIT_EXT = 0x00000020, - VK_VIDEO_ENCODE_H264_CAPABILITY_DEBLOCKING_FILTER_DISABLED_BIT_EXT = 0x00000040, - VK_VIDEO_ENCODE_H264_CAPABILITY_DEBLOCKING_FILTER_ENABLED_BIT_EXT = 0x00000080, - VK_VIDEO_ENCODE_H264_CAPABILITY_DEBLOCKING_FILTER_PARTIAL_BIT_EXT = 0x00000100, - VK_VIDEO_ENCODE_H264_CAPABILITY_MULTIPLE_SLICE_PER_FRAME_BIT_EXT = 0x00000200, - VK_VIDEO_ENCODE_H264_CAPABILITY_EVENLY_DISTRIBUTED_SLICE_SIZE_BIT_EXT = 0x00000400, - VK_VIDEO_ENCODE_H264_CAPABILITY_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH264CapabilityFlagBitsEXT; -typedef VkFlags VkVideoEncodeH264CapabilityFlagsEXT; - -typedef enum VkVideoEncodeH264InputModeFlagBitsEXT { - VK_VIDEO_ENCODE_H264_INPUT_MODE_FRAME_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H264_INPUT_MODE_SLICE_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H264_INPUT_MODE_NON_VCL_BIT_EXT = 0x00000004, - VK_VIDEO_ENCODE_H264_INPUT_MODE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH264InputModeFlagBitsEXT; -typedef VkFlags VkVideoEncodeH264InputModeFlagsEXT; - -typedef enum VkVideoEncodeH264OutputModeFlagBitsEXT { - VK_VIDEO_ENCODE_H264_OUTPUT_MODE_FRAME_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H264_OUTPUT_MODE_SLICE_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H264_OUTPUT_MODE_NON_VCL_BIT_EXT = 0x00000004, - VK_VIDEO_ENCODE_H264_OUTPUT_MODE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH264OutputModeFlagBitsEXT; -typedef VkFlags VkVideoEncodeH264OutputModeFlagsEXT; - -typedef enum VkVideoEncodeH264CreateFlagBitsEXT { - VK_VIDEO_ENCODE_H264_CREATE_DEFAULT_EXT = 0, - VK_VIDEO_ENCODE_H264_CREATE_RESERVED_0_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H264_CREATE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH264CreateFlagBitsEXT; -typedef VkFlags VkVideoEncodeH264CreateFlagsEXT; - -typedef enum VkVideoEncodeH264RateControlStructureFlagBitsEXT { - VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_UNKNOWN_EXT = 0, - VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_FLAT_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_DYADIC_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH264RateControlStructureFlagBitsEXT; -typedef VkFlags VkVideoEncodeH264RateControlStructureFlagsEXT; -typedef struct VkVideoEncodeH264CapabilitiesEXT { - VkStructureType sType; - const void* pNext; - VkVideoEncodeH264CapabilityFlagsEXT flags; - VkVideoEncodeH264InputModeFlagsEXT inputModeFlags; - VkVideoEncodeH264OutputModeFlagsEXT outputModeFlags; - VkExtent2D minPictureSizeInMbs; - VkExtent2D maxPictureSizeInMbs; - VkExtent2D inputImageDataAlignment; - uint8_t maxNumL0ReferenceForP; - uint8_t maxNumL0ReferenceForB; - uint8_t maxNumL1Reference; - uint8_t qualityLevelCount; - VkExtensionProperties stdExtensionVersion; -} VkVideoEncodeH264CapabilitiesEXT; - -typedef struct VkVideoEncodeH264SessionCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkVideoEncodeH264CreateFlagsEXT flags; - VkExtent2D maxPictureSizeInMbs; - const VkExtensionProperties* pStdExtensionVersion; -} VkVideoEncodeH264SessionCreateInfoEXT; - -typedef struct VkVideoEncodeH264SessionParametersAddInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t spsStdCount; - const StdVideoH264SequenceParameterSet* pSpsStd; - uint32_t ppsStdCount; - const StdVideoH264PictureParameterSet* pPpsStd; -} VkVideoEncodeH264SessionParametersAddInfoEXT; - -typedef struct VkVideoEncodeH264SessionParametersCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t maxSpsStdCount; - uint32_t maxPpsStdCount; - const VkVideoEncodeH264SessionParametersAddInfoEXT* pParametersAddInfo; -} VkVideoEncodeH264SessionParametersCreateInfoEXT; - -typedef struct VkVideoEncodeH264DpbSlotInfoEXT { - VkStructureType sType; - const void* pNext; - int8_t slotIndex; - const StdVideoEncodeH264PictureInfo* pStdPictureInfo; -} VkVideoEncodeH264DpbSlotInfoEXT; - -typedef struct VkVideoEncodeH264NaluSliceEXT { - VkStructureType sType; - const void* pNext; - const StdVideoEncodeH264SliceHeader* pSliceHeaderStd; - uint32_t mbCount; - uint8_t refFinalList0EntryCount; - const VkVideoEncodeH264DpbSlotInfoEXT* pRefFinalList0Entries; - uint8_t refFinalList1EntryCount; - const VkVideoEncodeH264DpbSlotInfoEXT* pRefFinalList1Entries; -} VkVideoEncodeH264NaluSliceEXT; - -typedef struct VkVideoEncodeH264VclFrameInfoEXT { - VkStructureType sType; - const void* pNext; - uint8_t refDefaultFinalList0EntryCount; - const VkVideoEncodeH264DpbSlotInfoEXT* pRefDefaultFinalList0Entries; - uint8_t refDefaultFinalList1EntryCount; - const VkVideoEncodeH264DpbSlotInfoEXT* pRefDefaultFinalList1Entries; - uint32_t naluSliceEntryCount; - const VkVideoEncodeH264NaluSliceEXT* pNaluSliceEntries; - const VkVideoEncodeH264DpbSlotInfoEXT* pCurrentPictureInfo; -} VkVideoEncodeH264VclFrameInfoEXT; - -typedef struct VkVideoEncodeH264EmitPictureParametersEXT { - VkStructureType sType; - const void* pNext; - uint8_t spsId; - VkBool32 emitSpsEnable; - uint32_t ppsIdEntryCount; - const uint8_t* ppsIdEntries; -} VkVideoEncodeH264EmitPictureParametersEXT; - -typedef struct VkVideoEncodeH264ProfileEXT { - VkStructureType sType; - const void* pNext; - StdVideoH264ProfileIdc stdProfileIdc; -} VkVideoEncodeH264ProfileEXT; - -typedef struct VkVideoEncodeH264RateControlInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t gopFrameCount; - uint32_t idrPeriod; - uint32_t consecutiveBFrameCount; - VkVideoEncodeH264RateControlStructureFlagBitsEXT rateControlStructure; - uint8_t temporalLayerCount; -} VkVideoEncodeH264RateControlInfoEXT; - -typedef struct VkVideoEncodeH264QpEXT { - int32_t qpI; - int32_t qpP; - int32_t qpB; -} VkVideoEncodeH264QpEXT; - -typedef struct VkVideoEncodeH264FrameSizeEXT { - uint32_t frameISize; - uint32_t framePSize; - uint32_t frameBSize; -} VkVideoEncodeH264FrameSizeEXT; - -typedef struct VkVideoEncodeH264RateControlLayerInfoEXT { - VkStructureType sType; - const void* pNext; - uint8_t temporalLayerId; - VkBool32 useInitialRcQp; - VkVideoEncodeH264QpEXT initialRcQp; - VkBool32 useMinQp; - VkVideoEncodeH264QpEXT minQp; - VkBool32 useMaxQp; - VkVideoEncodeH264QpEXT maxQp; - VkBool32 useMaxFrameSize; - VkVideoEncodeH264FrameSizeEXT maxFrameSize; -} VkVideoEncodeH264RateControlLayerInfoEXT; - - - -#define VK_EXT_video_encode_h265 1 -#include "vk_video/vulkan_video_codec_h265std.h" -#include "vk_video/vulkan_video_codec_h265std_encode.h" -#define VK_EXT_VIDEO_ENCODE_H265_SPEC_VERSION 3 -#define VK_EXT_VIDEO_ENCODE_H265_EXTENSION_NAME "VK_EXT_video_encode_h265" -typedef VkFlags VkVideoEncodeH265CapabilityFlagsEXT; - -typedef enum VkVideoEncodeH265InputModeFlagBitsEXT { - VK_VIDEO_ENCODE_H265_INPUT_MODE_FRAME_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H265_INPUT_MODE_SLICE_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H265_INPUT_MODE_NON_VCL_BIT_EXT = 0x00000004, - VK_VIDEO_ENCODE_H265_INPUT_MODE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH265InputModeFlagBitsEXT; -typedef VkFlags VkVideoEncodeH265InputModeFlagsEXT; - -typedef enum VkVideoEncodeH265OutputModeFlagBitsEXT { - VK_VIDEO_ENCODE_H265_OUTPUT_MODE_FRAME_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H265_OUTPUT_MODE_SLICE_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H265_OUTPUT_MODE_NON_VCL_BIT_EXT = 0x00000004, - VK_VIDEO_ENCODE_H265_OUTPUT_MODE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH265OutputModeFlagBitsEXT; -typedef VkFlags VkVideoEncodeH265OutputModeFlagsEXT; -typedef VkFlags VkVideoEncodeH265CreateFlagsEXT; - -typedef enum VkVideoEncodeH265CtbSizeFlagBitsEXT { - VK_VIDEO_ENCODE_H265_CTB_SIZE_8_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H265_CTB_SIZE_16_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H265_CTB_SIZE_32_BIT_EXT = 0x00000004, - VK_VIDEO_ENCODE_H265_CTB_SIZE_64_BIT_EXT = 0x00000008, - VK_VIDEO_ENCODE_H265_CTB_SIZE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH265CtbSizeFlagBitsEXT; -typedef VkFlags VkVideoEncodeH265CtbSizeFlagsEXT; - -typedef enum VkVideoEncodeH265RateControlStructureFlagBitsEXT { - VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_UNKNOWN_EXT = 0, - VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_FLAT_BIT_EXT = 0x00000001, - VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_DYADIC_BIT_EXT = 0x00000002, - VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoEncodeH265RateControlStructureFlagBitsEXT; -typedef VkFlags VkVideoEncodeH265RateControlStructureFlagsEXT; -typedef struct VkVideoEncodeH265CapabilitiesEXT { - VkStructureType sType; - const void* pNext; - VkVideoEncodeH265CapabilityFlagsEXT flags; - VkVideoEncodeH265InputModeFlagsEXT inputModeFlags; - VkVideoEncodeH265OutputModeFlagsEXT outputModeFlags; - VkVideoEncodeH265CtbSizeFlagsEXT ctbSizes; - VkExtent2D inputImageDataAlignment; - uint8_t maxNumL0ReferenceForP; - uint8_t maxNumL0ReferenceForB; - uint8_t maxNumL1Reference; - uint8_t maxNumSubLayers; - uint8_t qualityLevelCount; - VkExtensionProperties stdExtensionVersion; -} VkVideoEncodeH265CapabilitiesEXT; - -typedef struct VkVideoEncodeH265SessionCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkVideoEncodeH265CreateFlagsEXT flags; - const VkExtensionProperties* pStdExtensionVersion; -} VkVideoEncodeH265SessionCreateInfoEXT; - -typedef struct VkVideoEncodeH265SessionParametersAddInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t vpsStdCount; - const StdVideoH265VideoParameterSet* pVpsStd; - uint32_t spsStdCount; - const StdVideoH265SequenceParameterSet* pSpsStd; - uint32_t ppsStdCount; - const StdVideoH265PictureParameterSet* pPpsStd; -} VkVideoEncodeH265SessionParametersAddInfoEXT; - -typedef struct VkVideoEncodeH265SessionParametersCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t maxVpsStdCount; - uint32_t maxSpsStdCount; - uint32_t maxPpsStdCount; - const VkVideoEncodeH265SessionParametersAddInfoEXT* pParametersAddInfo; -} VkVideoEncodeH265SessionParametersCreateInfoEXT; - -typedef struct VkVideoEncodeH265DpbSlotInfoEXT { - VkStructureType sType; - const void* pNext; - int8_t slotIndex; - const StdVideoEncodeH265ReferenceInfo* pStdReferenceInfo; -} VkVideoEncodeH265DpbSlotInfoEXT; - -typedef struct VkVideoEncodeH265ReferenceListsEXT { - VkStructureType sType; - const void* pNext; - uint8_t referenceList0EntryCount; - const VkVideoEncodeH265DpbSlotInfoEXT* pReferenceList0Entries; - uint8_t referenceList1EntryCount; - const VkVideoEncodeH265DpbSlotInfoEXT* pReferenceList1Entries; - const StdVideoEncodeH265ReferenceModifications* pReferenceModifications; -} VkVideoEncodeH265ReferenceListsEXT; - -typedef struct VkVideoEncodeH265NaluSliceEXT { - VkStructureType sType; - const void* pNext; - uint32_t ctbCount; - const VkVideoEncodeH265ReferenceListsEXT* pReferenceFinalLists; - const StdVideoEncodeH265SliceHeader* pSliceHeaderStd; -} VkVideoEncodeH265NaluSliceEXT; - -typedef struct VkVideoEncodeH265VclFrameInfoEXT { - VkStructureType sType; - const void* pNext; - const VkVideoEncodeH265ReferenceListsEXT* pReferenceFinalLists; - uint32_t naluSliceEntryCount; - const VkVideoEncodeH265NaluSliceEXT* pNaluSliceEntries; - const StdVideoEncodeH265PictureInfo* pCurrentPictureInfo; -} VkVideoEncodeH265VclFrameInfoEXT; - -typedef struct VkVideoEncodeH265EmitPictureParametersEXT { - VkStructureType sType; - const void* pNext; - uint8_t vpsId; - uint8_t spsId; - VkBool32 emitVpsEnable; - VkBool32 emitSpsEnable; - uint32_t ppsIdEntryCount; - const uint8_t* ppsIdEntries; -} VkVideoEncodeH265EmitPictureParametersEXT; - -typedef struct VkVideoEncodeH265ProfileEXT { - VkStructureType sType; - const void* pNext; - StdVideoH265ProfileIdc stdProfileIdc; -} VkVideoEncodeH265ProfileEXT; - -typedef struct VkVideoEncodeH265RateControlInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t gopFrameCount; - uint32_t idrPeriod; - uint32_t consecutiveBFrameCount; - VkVideoEncodeH265RateControlStructureFlagBitsEXT rateControlStructure; - uint8_t subLayerCount; -} VkVideoEncodeH265RateControlInfoEXT; - -typedef struct VkVideoEncodeH265QpEXT { - int32_t qpI; - int32_t qpP; - int32_t qpB; -} VkVideoEncodeH265QpEXT; - -typedef struct VkVideoEncodeH265FrameSizeEXT { - uint32_t frameISize; - uint32_t framePSize; - uint32_t frameBSize; -} VkVideoEncodeH265FrameSizeEXT; - -typedef struct VkVideoEncodeH265RateControlLayerInfoEXT { - VkStructureType sType; - const void* pNext; - uint8_t temporalId; - VkBool32 useInitialRcQp; - VkVideoEncodeH265QpEXT initialRcQp; - VkBool32 useMinQp; - VkVideoEncodeH265QpEXT minQp; - VkBool32 useMaxQp; - VkVideoEncodeH265QpEXT maxQp; - VkBool32 useMaxFrameSize; - VkVideoEncodeH265FrameSizeEXT maxFrameSize; -} VkVideoEncodeH265RateControlLayerInfoEXT; - - - -#define VK_EXT_video_decode_h264 1 -#include "vk_video/vulkan_video_codec_h264std_decode.h" -#define VK_EXT_VIDEO_DECODE_H264_SPEC_VERSION 3 -#define VK_EXT_VIDEO_DECODE_H264_EXTENSION_NAME "VK_EXT_video_decode_h264" - -typedef enum VkVideoDecodeH264PictureLayoutFlagBitsEXT { - VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_PROGRESSIVE_EXT = 0, - VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_INTERLACED_INTERLEAVED_LINES_BIT_EXT = 0x00000001, - VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_INTERLACED_SEPARATE_PLANES_BIT_EXT = 0x00000002, - VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkVideoDecodeH264PictureLayoutFlagBitsEXT; -typedef VkFlags VkVideoDecodeH264PictureLayoutFlagsEXT; -typedef VkFlags VkVideoDecodeH264CreateFlagsEXT; -typedef struct VkVideoDecodeH264ProfileEXT { - VkStructureType sType; - const void* pNext; - StdVideoH264ProfileIdc stdProfileIdc; - VkVideoDecodeH264PictureLayoutFlagsEXT pictureLayout; -} VkVideoDecodeH264ProfileEXT; - -typedef struct VkVideoDecodeH264CapabilitiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxLevel; - VkOffset2D fieldOffsetGranularity; - VkExtensionProperties stdExtensionVersion; -} VkVideoDecodeH264CapabilitiesEXT; - -typedef struct VkVideoDecodeH264SessionCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkVideoDecodeH264CreateFlagsEXT flags; - const VkExtensionProperties* pStdExtensionVersion; -} VkVideoDecodeH264SessionCreateInfoEXT; - -typedef struct VkVideoDecodeH264SessionParametersAddInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t spsStdCount; - const StdVideoH264SequenceParameterSet* pSpsStd; - uint32_t ppsStdCount; - const StdVideoH264PictureParameterSet* pPpsStd; -} VkVideoDecodeH264SessionParametersAddInfoEXT; - -typedef struct VkVideoDecodeH264SessionParametersCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t maxSpsStdCount; - uint32_t maxPpsStdCount; - const VkVideoDecodeH264SessionParametersAddInfoEXT* pParametersAddInfo; -} VkVideoDecodeH264SessionParametersCreateInfoEXT; - -typedef struct VkVideoDecodeH264PictureInfoEXT { - VkStructureType sType; - const void* pNext; - const StdVideoDecodeH264PictureInfo* pStdPictureInfo; - uint32_t slicesCount; - const uint32_t* pSlicesDataOffsets; -} VkVideoDecodeH264PictureInfoEXT; - -typedef struct VkVideoDecodeH264MvcEXT { - VkStructureType sType; - const void* pNext; - const StdVideoDecodeH264Mvc* pStdMvc; -} VkVideoDecodeH264MvcEXT; - -typedef struct VkVideoDecodeH264DpbSlotInfoEXT { - VkStructureType sType; - const void* pNext; - const StdVideoDecodeH264ReferenceInfo* pStdReferenceInfo; -} VkVideoDecodeH264DpbSlotInfoEXT; - - - -#define VK_EXT_video_decode_h265 1 -#include "vk_video/vulkan_video_codec_h265std_decode.h" -#define VK_EXT_VIDEO_DECODE_H265_SPEC_VERSION 1 -#define VK_EXT_VIDEO_DECODE_H265_EXTENSION_NAME "VK_EXT_video_decode_h265" -typedef VkFlags VkVideoDecodeH265CreateFlagsEXT; -typedef struct VkVideoDecodeH265ProfileEXT { - VkStructureType sType; - const void* pNext; - StdVideoH265ProfileIdc stdProfileIdc; -} VkVideoDecodeH265ProfileEXT; - -typedef struct VkVideoDecodeH265CapabilitiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxLevel; - VkExtensionProperties stdExtensionVersion; -} VkVideoDecodeH265CapabilitiesEXT; - -typedef struct VkVideoDecodeH265SessionCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkVideoDecodeH265CreateFlagsEXT flags; - const VkExtensionProperties* pStdExtensionVersion; -} VkVideoDecodeH265SessionCreateInfoEXT; - -typedef struct VkVideoDecodeH265SessionParametersAddInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t spsStdCount; - const StdVideoH265SequenceParameterSet* pSpsStd; - uint32_t ppsStdCount; - const StdVideoH265PictureParameterSet* pPpsStd; -} VkVideoDecodeH265SessionParametersAddInfoEXT; - -typedef struct VkVideoDecodeH265SessionParametersCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t maxSpsStdCount; - uint32_t maxPpsStdCount; - const VkVideoDecodeH265SessionParametersAddInfoEXT* pParametersAddInfo; -} VkVideoDecodeH265SessionParametersCreateInfoEXT; - -typedef struct VkVideoDecodeH265PictureInfoEXT { - VkStructureType sType; - const void* pNext; - StdVideoDecodeH265PictureInfo* pStdPictureInfo; - uint32_t slicesCount; - const uint32_t* pSlicesDataOffsets; -} VkVideoDecodeH265PictureInfoEXT; - -typedef struct VkVideoDecodeH265DpbSlotInfoEXT { - VkStructureType sType; - const void* pNext; - const StdVideoDecodeH265ReferenceInfo* pStdReferenceInfo; -} VkVideoDecodeH265DpbSlotInfoEXT; - - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_core.h b/Externals/Vulkan/Include/vulkan/vulkan_core.h deleted file mode 100644 index 228e4ef6e5..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_core.h +++ /dev/null @@ -1,14315 +0,0 @@ -#ifndef VULKAN_CORE_H_ -#define VULKAN_CORE_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_VERSION_1_0 1 -#include "vk_platform.h" - -#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object; - - -#ifndef VK_USE_64_BIT_PTR_DEFINES - #if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__) ) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) - #define VK_USE_64_BIT_PTR_DEFINES 1 - #else - #define VK_USE_64_BIT_PTR_DEFINES 0 - #endif -#endif - - -#ifndef VK_DEFINE_NON_DISPATCHABLE_HANDLE - #if (VK_USE_64_BIT_PTR_DEFINES==1) - #if (defined(__cplusplus) && (__cplusplus >= 201103L)) || (defined(_MSVC_LANG) && (_MSVC_LANG >= 201103L)) - #define VK_NULL_HANDLE nullptr - #else - #define VK_NULL_HANDLE ((void*)0) - #endif - #else - #define VK_NULL_HANDLE 0ULL - #endif -#endif -#ifndef VK_NULL_HANDLE - #define VK_NULL_HANDLE 0 -#endif - - -#ifndef VK_DEFINE_NON_DISPATCHABLE_HANDLE - #if (VK_USE_64_BIT_PTR_DEFINES==1) - #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; - #else - #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; - #endif -#endif - -// DEPRECATED: This define is deprecated. VK_MAKE_API_VERSION should be used instead. -#define VK_MAKE_VERSION(major, minor, patch) \ - ((((uint32_t)(major)) << 22) | (((uint32_t)(minor)) << 12) | ((uint32_t)(patch))) - -// DEPRECATED: This define has been removed. Specific version defines (e.g. VK_API_VERSION_1_0), or the VK_MAKE_VERSION macro, should be used instead. -//#define VK_API_VERSION VK_MAKE_VERSION(1, 0, 0) // Patch version should always be set to 0 - -#define VK_MAKE_API_VERSION(variant, major, minor, patch) \ - ((((uint32_t)(variant)) << 29) | (((uint32_t)(major)) << 22) | (((uint32_t)(minor)) << 12) | ((uint32_t)(patch))) - -// Vulkan 1.0 version number -#define VK_API_VERSION_1_0 VK_MAKE_API_VERSION(0, 1, 0, 0)// Patch version should always be set to 0 - -// Version of this file -#define VK_HEADER_VERSION 204 - -// Complete version of this file -#define VK_HEADER_VERSION_COMPLETE VK_MAKE_API_VERSION(0, 1, 3, VK_HEADER_VERSION) - -// DEPRECATED: This define is deprecated. VK_API_VERSION_MAJOR should be used instead. -#define VK_VERSION_MAJOR(version) ((uint32_t)(version) >> 22) - -// DEPRECATED: This define is deprecated. VK_API_VERSION_MINOR should be used instead. -#define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3FFU) - -// DEPRECATED: This define is deprecated. VK_API_VERSION_PATCH should be used instead. -#define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xFFFU) - -#define VK_API_VERSION_VARIANT(version) ((uint32_t)(version) >> 29) -#define VK_API_VERSION_MAJOR(version) (((uint32_t)(version) >> 22) & 0x7FU) -#define VK_API_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3FFU) -#define VK_API_VERSION_PATCH(version) ((uint32_t)(version) & 0xFFFU) -typedef uint32_t VkBool32; -typedef uint64_t VkDeviceAddress; -typedef uint64_t VkDeviceSize; -typedef uint32_t VkFlags; -typedef uint32_t VkSampleMask; -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkBuffer) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkImage) -VK_DEFINE_HANDLE(VkInstance) -VK_DEFINE_HANDLE(VkPhysicalDevice) -VK_DEFINE_HANDLE(VkDevice) -VK_DEFINE_HANDLE(VkQueue) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSemaphore) -VK_DEFINE_HANDLE(VkCommandBuffer) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkFence) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDeviceMemory) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkEvent) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkQueryPool) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkBufferView) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkImageView) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkShaderModule) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkPipelineCache) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkPipelineLayout) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkPipeline) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkRenderPass) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDescriptorSetLayout) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSampler) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDescriptorSet) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDescriptorPool) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkFramebuffer) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkCommandPool) -#define VK_UUID_SIZE 16U -#define VK_ATTACHMENT_UNUSED (~0U) -#define VK_FALSE 0U -#define VK_LOD_CLAMP_NONE 1000.0F -#define VK_QUEUE_FAMILY_IGNORED (~0U) -#define VK_REMAINING_ARRAY_LAYERS (~0U) -#define VK_REMAINING_MIP_LEVELS (~0U) -#define VK_SUBPASS_EXTERNAL (~0U) -#define VK_TRUE 1U -#define VK_WHOLE_SIZE (~0ULL) -#define VK_MAX_MEMORY_TYPES 32U -#define VK_MAX_MEMORY_HEAPS 16U -#define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U -#define VK_MAX_EXTENSION_NAME_SIZE 256U -#define VK_MAX_DESCRIPTION_SIZE 256U - -typedef enum VkResult { - VK_SUCCESS = 0, - VK_NOT_READY = 1, - VK_TIMEOUT = 2, - VK_EVENT_SET = 3, - VK_EVENT_RESET = 4, - VK_INCOMPLETE = 5, - VK_ERROR_OUT_OF_HOST_MEMORY = -1, - VK_ERROR_OUT_OF_DEVICE_MEMORY = -2, - VK_ERROR_INITIALIZATION_FAILED = -3, - VK_ERROR_DEVICE_LOST = -4, - VK_ERROR_MEMORY_MAP_FAILED = -5, - VK_ERROR_LAYER_NOT_PRESENT = -6, - VK_ERROR_EXTENSION_NOT_PRESENT = -7, - VK_ERROR_FEATURE_NOT_PRESENT = -8, - VK_ERROR_INCOMPATIBLE_DRIVER = -9, - VK_ERROR_TOO_MANY_OBJECTS = -10, - VK_ERROR_FORMAT_NOT_SUPPORTED = -11, - VK_ERROR_FRAGMENTED_POOL = -12, - VK_ERROR_UNKNOWN = -13, - VK_ERROR_OUT_OF_POOL_MEMORY = -1000069000, - VK_ERROR_INVALID_EXTERNAL_HANDLE = -1000072003, - VK_ERROR_FRAGMENTATION = -1000161000, - VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS = -1000257000, - VK_PIPELINE_COMPILE_REQUIRED = 1000297000, - VK_ERROR_SURFACE_LOST_KHR = -1000000000, - VK_ERROR_NATIVE_WINDOW_IN_USE_KHR = -1000000001, - VK_SUBOPTIMAL_KHR = 1000001003, - VK_ERROR_OUT_OF_DATE_KHR = -1000001004, - VK_ERROR_INCOMPATIBLE_DISPLAY_KHR = -1000003001, - VK_ERROR_VALIDATION_FAILED_EXT = -1000011001, - VK_ERROR_INVALID_SHADER_NV = -1000012000, - VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT = -1000158000, - VK_ERROR_NOT_PERMITTED_KHR = -1000174001, - VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT = -1000255000, - VK_THREAD_IDLE_KHR = 1000268000, - VK_THREAD_DONE_KHR = 1000268001, - VK_OPERATION_DEFERRED_KHR = 1000268002, - VK_OPERATION_NOT_DEFERRED_KHR = 1000268003, - VK_ERROR_OUT_OF_POOL_MEMORY_KHR = VK_ERROR_OUT_OF_POOL_MEMORY, - VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR = VK_ERROR_INVALID_EXTERNAL_HANDLE, - VK_ERROR_FRAGMENTATION_EXT = VK_ERROR_FRAGMENTATION, - VK_ERROR_NOT_PERMITTED_EXT = VK_ERROR_NOT_PERMITTED_KHR, - VK_ERROR_INVALID_DEVICE_ADDRESS_EXT = VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS, - VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR = VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS, - VK_PIPELINE_COMPILE_REQUIRED_EXT = VK_PIPELINE_COMPILE_REQUIRED, - VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT = VK_PIPELINE_COMPILE_REQUIRED, - VK_RESULT_MAX_ENUM = 0x7FFFFFFF -} VkResult; - -typedef enum VkStructureType { - VK_STRUCTURE_TYPE_APPLICATION_INFO = 0, - VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO = 1, - VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO = 2, - VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO = 3, - VK_STRUCTURE_TYPE_SUBMIT_INFO = 4, - VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO = 5, - VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE = 6, - VK_STRUCTURE_TYPE_BIND_SPARSE_INFO = 7, - VK_STRUCTURE_TYPE_FENCE_CREATE_INFO = 8, - VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO = 9, - VK_STRUCTURE_TYPE_EVENT_CREATE_INFO = 10, - VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO = 11, - VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO = 12, - VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO = 13, - VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO = 14, - VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO = 15, - VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO = 16, - VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO = 17, - VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO = 18, - VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO = 19, - VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO = 20, - VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO = 21, - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO = 22, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO = 23, - VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO = 24, - VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO = 25, - VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO = 26, - VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO = 27, - VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO = 28, - VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO = 29, - VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO = 30, - VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO = 31, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO = 32, - VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO = 33, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO = 34, - VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET = 35, - VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET = 36, - VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO = 37, - VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO = 38, - VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO = 39, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO = 40, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO = 41, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO = 42, - VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO = 43, - VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER = 44, - VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER = 45, - VK_STRUCTURE_TYPE_MEMORY_BARRIER = 46, - VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO = 47, - VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO = 48, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES = 1000094000, - VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO = 1000157000, - VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO = 1000157001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES = 1000083000, - VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS = 1000127000, - VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO = 1000127001, - VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO = 1000060000, - VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO = 1000060003, - VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO = 1000060004, - VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO = 1000060005, - VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO = 1000060006, - VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO = 1000060013, - VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO = 1000060014, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES = 1000070000, - VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO = 1000070001, - VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2 = 1000146000, - VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2 = 1000146001, - VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2 = 1000146002, - VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2 = 1000146003, - VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2 = 1000146004, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2 = 1000059000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2 = 1000059001, - VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2 = 1000059002, - VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2 = 1000059003, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2 = 1000059004, - VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2 = 1000059005, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2 = 1000059006, - VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2 = 1000059007, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2 = 1000059008, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES = 1000117000, - VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO = 1000117001, - VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO = 1000117002, - VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO = 1000117003, - VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO = 1000053000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES = 1000053001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES = 1000053002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES = 1000120000, - VK_STRUCTURE_TYPE_PROTECTED_SUBMIT_INFO = 1000145000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES = 1000145001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES = 1000145002, - VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2 = 1000145003, - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO = 1000156000, - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO = 1000156001, - VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO = 1000156002, - VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO = 1000156003, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES = 1000156004, - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES = 1000156005, - VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO = 1000085000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO = 1000071000, - VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES = 1000071001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO = 1000071002, - VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES = 1000071003, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES = 1000071004, - VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO = 1000072000, - VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO = 1000072001, - VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO = 1000072002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO = 1000112000, - VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES = 1000112001, - VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO = 1000113000, - VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO = 1000077000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO = 1000076000, - VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES = 1000076001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES = 1000168000, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT = 1000168001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES = 1000063000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES = 49, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES = 50, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES = 51, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES = 52, - VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO = 1000147000, - VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2 = 1000109000, - VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2 = 1000109001, - VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2 = 1000109002, - VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2 = 1000109003, - VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2 = 1000109004, - VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO = 1000109005, - VK_STRUCTURE_TYPE_SUBPASS_END_INFO = 1000109006, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES = 1000177000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES = 1000196000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES = 1000180000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES = 1000082000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES = 1000197000, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO = 1000161000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES = 1000161001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES = 1000161002, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO = 1000161003, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT = 1000161004, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES = 1000199000, - VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE = 1000199001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES = 1000221000, - VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO = 1000246000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES = 1000130000, - VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO = 1000130001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES = 1000211000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES = 1000108000, - VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO = 1000108001, - VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO = 1000108002, - VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO = 1000108003, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES = 1000253000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES = 1000175000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES = 1000241000, - VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT = 1000241001, - VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT = 1000241002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES = 1000261000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES = 1000207000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES = 1000207001, - VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO = 1000207002, - VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO = 1000207003, - VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO = 1000207004, - VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO = 1000207005, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES = 1000257000, - VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO = 1000244001, - VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO = 1000257002, - VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO = 1000257003, - VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO = 1000257004, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_FEATURES = 53, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_PROPERTIES = 54, - VK_STRUCTURE_TYPE_PIPELINE_CREATION_FEEDBACK_CREATE_INFO = 1000192000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES = 1000215000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES = 1000245000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES = 1000276000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES = 1000295000, - VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO = 1000295001, - VK_STRUCTURE_TYPE_PRIVATE_DATA_SLOT_CREATE_INFO = 1000295002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES = 1000297000, - VK_STRUCTURE_TYPE_MEMORY_BARRIER_2 = 1000314000, - VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER_2 = 1000314001, - VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2 = 1000314002, - VK_STRUCTURE_TYPE_DEPENDENCY_INFO = 1000314003, - VK_STRUCTURE_TYPE_SUBMIT_INFO_2 = 1000314004, - VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO = 1000314005, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_SUBMIT_INFO = 1000314006, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES = 1000314007, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES = 1000325000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES = 1000335000, - VK_STRUCTURE_TYPE_COPY_BUFFER_INFO_2 = 1000337000, - VK_STRUCTURE_TYPE_COPY_IMAGE_INFO_2 = 1000337001, - VK_STRUCTURE_TYPE_COPY_BUFFER_TO_IMAGE_INFO_2 = 1000337002, - VK_STRUCTURE_TYPE_COPY_IMAGE_TO_BUFFER_INFO_2 = 1000337003, - VK_STRUCTURE_TYPE_BLIT_IMAGE_INFO_2 = 1000337004, - VK_STRUCTURE_TYPE_RESOLVE_IMAGE_INFO_2 = 1000337005, - VK_STRUCTURE_TYPE_BUFFER_COPY_2 = 1000337006, - VK_STRUCTURE_TYPE_IMAGE_COPY_2 = 1000337007, - VK_STRUCTURE_TYPE_IMAGE_BLIT_2 = 1000337008, - VK_STRUCTURE_TYPE_BUFFER_IMAGE_COPY_2 = 1000337009, - VK_STRUCTURE_TYPE_IMAGE_RESOLVE_2 = 1000337010, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES = 1000225000, - VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO = 1000225001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES = 1000225002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES = 1000138000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES = 1000138001, - VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK = 1000138002, - VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO = 1000138003, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES = 1000066000, - VK_STRUCTURE_TYPE_RENDERING_INFO = 1000044000, - VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_INFO = 1000044001, - VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO = 1000044002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES = 1000044003, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDERING_INFO = 1000044004, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES = 1000280000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES = 1000280001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES = 1000281001, - VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_3 = 1000360000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES = 1000413000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES = 1000413001, - VK_STRUCTURE_TYPE_DEVICE_BUFFER_MEMORY_REQUIREMENTS = 1000413002, - VK_STRUCTURE_TYPE_DEVICE_IMAGE_MEMORY_REQUIREMENTS = 1000413003, - VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR = 1000001000, - VK_STRUCTURE_TYPE_PRESENT_INFO_KHR = 1000001001, - VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_CAPABILITIES_KHR = 1000060007, - VK_STRUCTURE_TYPE_IMAGE_SWAPCHAIN_CREATE_INFO_KHR = 1000060008, - VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR = 1000060009, - VK_STRUCTURE_TYPE_ACQUIRE_NEXT_IMAGE_INFO_KHR = 1000060010, - VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_INFO_KHR = 1000060011, - VK_STRUCTURE_TYPE_DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR = 1000060012, - VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR = 1000002000, - VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR = 1000002001, - VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR = 1000003000, - VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR = 1000004000, - VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR = 1000005000, - VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR = 1000006000, - VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR = 1000008000, - VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR = 1000009000, - VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT = 1000011000, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD = 1000018000, - VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT = 1000022000, - VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT = 1000022001, - VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT = 1000022002, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_PROFILE_KHR = 1000023000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_CAPABILITIES_KHR = 1000023001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_PICTURE_RESOURCE_KHR = 1000023002, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_GET_MEMORY_PROPERTIES_KHR = 1000023003, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_BIND_MEMORY_KHR = 1000023004, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_SESSION_CREATE_INFO_KHR = 1000023005, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_SESSION_PARAMETERS_CREATE_INFO_KHR = 1000023006, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_SESSION_PARAMETERS_UPDATE_INFO_KHR = 1000023007, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_BEGIN_CODING_INFO_KHR = 1000023008, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_END_CODING_INFO_KHR = 1000023009, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_CODING_CONTROL_INFO_KHR = 1000023010, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_REFERENCE_SLOT_KHR = 1000023011, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_QUEUE_FAMILY_PROPERTIES_2_KHR = 1000023012, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_PROFILES_KHR = 1000023013, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VIDEO_FORMAT_INFO_KHR = 1000023014, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_FORMAT_PROPERTIES_KHR = 1000023015, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_QUEUE_FAMILY_QUERY_RESULT_STATUS_PROPERTIES_2_KHR = 1000023016, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_INFO_KHR = 1000024000, -#endif - VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV = 1000026000, - VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV = 1000026001, - VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV = 1000026002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT = 1000028000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT = 1000028001, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_STREAM_CREATE_INFO_EXT = 1000028002, - VK_STRUCTURE_TYPE_CU_MODULE_CREATE_INFO_NVX = 1000029000, - VK_STRUCTURE_TYPE_CU_FUNCTION_CREATE_INFO_NVX = 1000029001, - VK_STRUCTURE_TYPE_CU_LAUNCH_INFO_NVX = 1000029002, - VK_STRUCTURE_TYPE_IMAGE_VIEW_HANDLE_INFO_NVX = 1000030000, - VK_STRUCTURE_TYPE_IMAGE_VIEW_ADDRESS_PROPERTIES_NVX = 1000030001, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_CAPABILITIES_EXT = 1000038000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_SESSION_CREATE_INFO_EXT = 1000038001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_SESSION_PARAMETERS_CREATE_INFO_EXT = 1000038002, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT = 1000038003, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_VCL_FRAME_INFO_EXT = 1000038004, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_DPB_SLOT_INFO_EXT = 1000038005, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_NALU_SLICE_EXT = 1000038006, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_EMIT_PICTURE_PARAMETERS_EXT = 1000038007, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_PROFILE_EXT = 1000038008, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_RATE_CONTROL_INFO_EXT = 1000038009, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_RATE_CONTROL_LAYER_INFO_EXT = 1000038010, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_CAPABILITIES_EXT = 1000039000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_CREATE_INFO_EXT = 1000039001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_PARAMETERS_CREATE_INFO_EXT = 1000039002, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_PARAMETERS_ADD_INFO_EXT = 1000039003, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_VCL_FRAME_INFO_EXT = 1000039004, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_DPB_SLOT_INFO_EXT = 1000039005, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_NALU_SLICE_EXT = 1000039006, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_EMIT_PICTURE_PARAMETERS_EXT = 1000039007, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_PROFILE_EXT = 1000039008, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_REFERENCE_LISTS_EXT = 1000039009, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_RATE_CONTROL_INFO_EXT = 1000039010, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_RATE_CONTROL_LAYER_INFO_EXT = 1000039011, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_CAPABILITIES_EXT = 1000040000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_CREATE_INFO_EXT = 1000040001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_PICTURE_INFO_EXT = 1000040002, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_MVC_EXT = 1000040003, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_PROFILE_EXT = 1000040004, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_CREATE_INFO_EXT = 1000040005, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT = 1000040006, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_DPB_SLOT_INFO_EXT = 1000040007, -#endif - VK_STRUCTURE_TYPE_TEXTURE_LOD_GATHER_FORMAT_PROPERTIES_AMD = 1000041000, - VK_STRUCTURE_TYPE_RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR = 1000044006, - VK_STRUCTURE_TYPE_RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_INFO_EXT = 1000044007, - VK_STRUCTURE_TYPE_ATTACHMENT_SAMPLE_COUNT_INFO_AMD = 1000044008, - VK_STRUCTURE_TYPE_MULTIVIEW_PER_VIEW_ATTRIBUTES_INFO_NVX = 1000044009, - VK_STRUCTURE_TYPE_STREAM_DESCRIPTOR_SURFACE_CREATE_INFO_GGP = 1000049000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CORNER_SAMPLED_IMAGE_FEATURES_NV = 1000050000, - VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV = 1000056000, - VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_NV = 1000056001, - VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_NV = 1000057000, - VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_NV = 1000057001, - VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV = 1000058000, - VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT = 1000061000, - VK_STRUCTURE_TYPE_VI_SURFACE_CREATE_INFO_NN = 1000062000, - VK_STRUCTURE_TYPE_IMAGE_VIEW_ASTC_DECODE_MODE_EXT = 1000067000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ASTC_DECODE_FEATURES_EXT = 1000067001, - VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_KHR = 1000073000, - VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_KHR = 1000073001, - VK_STRUCTURE_TYPE_MEMORY_WIN32_HANDLE_PROPERTIES_KHR = 1000073002, - VK_STRUCTURE_TYPE_MEMORY_GET_WIN32_HANDLE_INFO_KHR = 1000073003, - VK_STRUCTURE_TYPE_IMPORT_MEMORY_FD_INFO_KHR = 1000074000, - VK_STRUCTURE_TYPE_MEMORY_FD_PROPERTIES_KHR = 1000074001, - VK_STRUCTURE_TYPE_MEMORY_GET_FD_INFO_KHR = 1000074002, - VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_KHR = 1000075000, - VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR = 1000078000, - VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR = 1000078001, - VK_STRUCTURE_TYPE_D3D12_FENCE_SUBMIT_INFO_KHR = 1000078002, - VK_STRUCTURE_TYPE_SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR = 1000078003, - VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_FD_INFO_KHR = 1000079000, - VK_STRUCTURE_TYPE_SEMAPHORE_GET_FD_INFO_KHR = 1000079001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR = 1000080000, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_CONDITIONAL_RENDERING_INFO_EXT = 1000081000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT = 1000081001, - VK_STRUCTURE_TYPE_CONDITIONAL_RENDERING_BEGIN_INFO_EXT = 1000081002, - VK_STRUCTURE_TYPE_PRESENT_REGIONS_KHR = 1000084000, - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_W_SCALING_STATE_CREATE_INFO_NV = 1000087000, - VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_EXT = 1000090000, - VK_STRUCTURE_TYPE_DISPLAY_POWER_INFO_EXT = 1000091000, - VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT = 1000091001, - VK_STRUCTURE_TYPE_DISPLAY_EVENT_INFO_EXT = 1000091002, - VK_STRUCTURE_TYPE_SWAPCHAIN_COUNTER_CREATE_INFO_EXT = 1000091003, - VK_STRUCTURE_TYPE_PRESENT_TIMES_INFO_GOOGLE = 1000092000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_ATTRIBUTES_PROPERTIES_NVX = 1000097000, - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SWIZZLE_STATE_CREATE_INFO_NV = 1000098000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT = 1000099000, - VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT = 1000099001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT = 1000101000, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT = 1000101001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT = 1000102000, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT = 1000102001, - VK_STRUCTURE_TYPE_HDR_METADATA_EXT = 1000105000, - VK_STRUCTURE_TYPE_SHARED_PRESENT_SURFACE_CAPABILITIES_KHR = 1000111000, - VK_STRUCTURE_TYPE_IMPORT_FENCE_WIN32_HANDLE_INFO_KHR = 1000114000, - VK_STRUCTURE_TYPE_EXPORT_FENCE_WIN32_HANDLE_INFO_KHR = 1000114001, - VK_STRUCTURE_TYPE_FENCE_GET_WIN32_HANDLE_INFO_KHR = 1000114002, - VK_STRUCTURE_TYPE_IMPORT_FENCE_FD_INFO_KHR = 1000115000, - VK_STRUCTURE_TYPE_FENCE_GET_FD_INFO_KHR = 1000115001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PERFORMANCE_QUERY_FEATURES_KHR = 1000116000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PERFORMANCE_QUERY_PROPERTIES_KHR = 1000116001, - VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_CREATE_INFO_KHR = 1000116002, - VK_STRUCTURE_TYPE_PERFORMANCE_QUERY_SUBMIT_INFO_KHR = 1000116003, - VK_STRUCTURE_TYPE_ACQUIRE_PROFILING_LOCK_INFO_KHR = 1000116004, - VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_KHR = 1000116005, - VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_DESCRIPTION_KHR = 1000116006, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SURFACE_INFO_2_KHR = 1000119000, - VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_KHR = 1000119001, - VK_STRUCTURE_TYPE_SURFACE_FORMAT_2_KHR = 1000119002, - VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR = 1000121000, - VK_STRUCTURE_TYPE_DISPLAY_PLANE_PROPERTIES_2_KHR = 1000121001, - VK_STRUCTURE_TYPE_DISPLAY_MODE_PROPERTIES_2_KHR = 1000121002, - VK_STRUCTURE_TYPE_DISPLAY_PLANE_INFO_2_KHR = 1000121003, - VK_STRUCTURE_TYPE_DISPLAY_PLANE_CAPABILITIES_2_KHR = 1000121004, - VK_STRUCTURE_TYPE_IOS_SURFACE_CREATE_INFO_MVK = 1000122000, - VK_STRUCTURE_TYPE_MACOS_SURFACE_CREATE_INFO_MVK = 1000123000, - VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT = 1000128000, - VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_TAG_INFO_EXT = 1000128001, - VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT = 1000128002, - VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT = 1000128003, - VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT = 1000128004, - VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_USAGE_ANDROID = 1000129000, - VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_PROPERTIES_ANDROID = 1000129001, - VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_ANDROID = 1000129002, - VK_STRUCTURE_TYPE_IMPORT_ANDROID_HARDWARE_BUFFER_INFO_ANDROID = 1000129003, - VK_STRUCTURE_TYPE_MEMORY_GET_ANDROID_HARDWARE_BUFFER_INFO_ANDROID = 1000129004, - VK_STRUCTURE_TYPE_EXTERNAL_FORMAT_ANDROID = 1000129005, - VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_2_ANDROID = 1000129006, - VK_STRUCTURE_TYPE_SAMPLE_LOCATIONS_INFO_EXT = 1000143000, - VK_STRUCTURE_TYPE_RENDER_PASS_SAMPLE_LOCATIONS_BEGIN_INFO_EXT = 1000143001, - VK_STRUCTURE_TYPE_PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT = 1000143002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT = 1000143003, - VK_STRUCTURE_TYPE_MULTISAMPLE_PROPERTIES_EXT = 1000143004, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT = 1000148000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT = 1000148001, - VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_ADVANCED_STATE_CREATE_INFO_EXT = 1000148002, - VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_TO_COLOR_STATE_CREATE_INFO_NV = 1000149000, - VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_KHR = 1000150007, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR = 1000150000, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR = 1000150002, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_AABBS_DATA_KHR = 1000150003, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_INSTANCES_DATA_KHR = 1000150004, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR = 1000150005, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_KHR = 1000150006, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_VERSION_INFO_KHR = 1000150009, - VK_STRUCTURE_TYPE_COPY_ACCELERATION_STRUCTURE_INFO_KHR = 1000150010, - VK_STRUCTURE_TYPE_COPY_ACCELERATION_STRUCTURE_TO_MEMORY_INFO_KHR = 1000150011, - VK_STRUCTURE_TYPE_COPY_MEMORY_TO_ACCELERATION_STRUCTURE_INFO_KHR = 1000150012, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR = 1000150013, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_PROPERTIES_KHR = 1000150014, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_KHR = 1000150017, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR = 1000150020, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_FEATURES_KHR = 1000347000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_PROPERTIES_KHR = 1000347001, - VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_KHR = 1000150015, - VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR = 1000150016, - VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_INTERFACE_CREATE_INFO_KHR = 1000150018, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_QUERY_FEATURES_KHR = 1000348013, - VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV = 1000152000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SM_BUILTINS_FEATURES_NV = 1000154000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SM_BUILTINS_PROPERTIES_NV = 1000154001, - VK_STRUCTURE_TYPE_DRM_FORMAT_MODIFIER_PROPERTIES_LIST_EXT = 1000158000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_DRM_FORMAT_MODIFIER_INFO_EXT = 1000158002, - VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_LIST_CREATE_INFO_EXT = 1000158003, - VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_EXPLICIT_CREATE_INFO_EXT = 1000158004, - VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_PROPERTIES_EXT = 1000158005, - VK_STRUCTURE_TYPE_DRM_FORMAT_MODIFIER_PROPERTIES_LIST_2_EXT = 1000158006, - VK_STRUCTURE_TYPE_VALIDATION_CACHE_CREATE_INFO_EXT = 1000160000, - VK_STRUCTURE_TYPE_SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT = 1000160001, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PORTABILITY_SUBSET_FEATURES_KHR = 1000163000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PORTABILITY_SUBSET_PROPERTIES_KHR = 1000163001, -#endif - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SHADING_RATE_IMAGE_STATE_CREATE_INFO_NV = 1000164000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADING_RATE_IMAGE_FEATURES_NV = 1000164001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADING_RATE_IMAGE_PROPERTIES_NV = 1000164002, - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_COARSE_SAMPLE_ORDER_STATE_CREATE_INFO_NV = 1000164005, - VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_NV = 1000165000, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_NV = 1000165001, - VK_STRUCTURE_TYPE_GEOMETRY_NV = 1000165003, - VK_STRUCTURE_TYPE_GEOMETRY_TRIANGLES_NV = 1000165004, - VK_STRUCTURE_TYPE_GEOMETRY_AABB_NV = 1000165005, - VK_STRUCTURE_TYPE_BIND_ACCELERATION_STRUCTURE_MEMORY_INFO_NV = 1000165006, - VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_NV = 1000165007, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_INFO_NV = 1000165008, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PROPERTIES_NV = 1000165009, - VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_NV = 1000165011, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_INFO_NV = 1000165012, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_REPRESENTATIVE_FRAGMENT_TEST_FEATURES_NV = 1000166000, - VK_STRUCTURE_TYPE_PIPELINE_REPRESENTATIVE_FRAGMENT_TEST_STATE_CREATE_INFO_NV = 1000166001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_VIEW_IMAGE_FORMAT_INFO_EXT = 1000170000, - VK_STRUCTURE_TYPE_FILTER_CUBIC_IMAGE_VIEW_IMAGE_FORMAT_PROPERTIES_EXT = 1000170001, - VK_STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT = 1000178000, - VK_STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT = 1000178001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT = 1000178002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CLOCK_FEATURES_KHR = 1000181000, - VK_STRUCTURE_TYPE_PIPELINE_COMPILER_CONTROL_CREATE_INFO_AMD = 1000183000, - VK_STRUCTURE_TYPE_CALIBRATED_TIMESTAMP_INFO_EXT = 1000184000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_AMD = 1000185000, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_CAPABILITIES_EXT = 1000187000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_SESSION_CREATE_INFO_EXT = 1000187001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_SESSION_PARAMETERS_CREATE_INFO_EXT = 1000187002, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_SESSION_PARAMETERS_ADD_INFO_EXT = 1000187003, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_PROFILE_EXT = 1000187004, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_PICTURE_INFO_EXT = 1000187005, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_DPB_SLOT_INFO_EXT = 1000187006, -#endif - VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_KHR = 1000174000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_KHR = 1000388000, - VK_STRUCTURE_TYPE_QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_KHR = 1000388001, - VK_STRUCTURE_TYPE_DEVICE_MEMORY_OVERALLOCATION_CREATE_INFO_AMD = 1000189000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT = 1000190000, - VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_EXT = 1000190001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_EXT = 1000190002, - VK_STRUCTURE_TYPE_PRESENT_FRAME_TOKEN_GGP = 1000191000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COMPUTE_SHADER_DERIVATIVES_FEATURES_NV = 1000201000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_FEATURES_NV = 1000202000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_NV = 1000202001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_FEATURES_NV = 1000203000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_IMAGE_FOOTPRINT_FEATURES_NV = 1000204000, - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_EXCLUSIVE_SCISSOR_STATE_CREATE_INFO_NV = 1000205000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXCLUSIVE_SCISSOR_FEATURES_NV = 1000205002, - VK_STRUCTURE_TYPE_CHECKPOINT_DATA_NV = 1000206000, - VK_STRUCTURE_TYPE_QUEUE_FAMILY_CHECKPOINT_PROPERTIES_NV = 1000206001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_FUNCTIONS_2_FEATURES_INTEL = 1000209000, - VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_QUERY_CREATE_INFO_INTEL = 1000210000, - VK_STRUCTURE_TYPE_INITIALIZE_PERFORMANCE_API_INFO_INTEL = 1000210001, - VK_STRUCTURE_TYPE_PERFORMANCE_MARKER_INFO_INTEL = 1000210002, - VK_STRUCTURE_TYPE_PERFORMANCE_STREAM_MARKER_INFO_INTEL = 1000210003, - VK_STRUCTURE_TYPE_PERFORMANCE_OVERRIDE_INFO_INTEL = 1000210004, - VK_STRUCTURE_TYPE_PERFORMANCE_CONFIGURATION_ACQUIRE_INFO_INTEL = 1000210005, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT = 1000212000, - VK_STRUCTURE_TYPE_DISPLAY_NATIVE_HDR_SURFACE_CAPABILITIES_AMD = 1000213000, - VK_STRUCTURE_TYPE_SWAPCHAIN_DISPLAY_NATIVE_HDR_CREATE_INFO_AMD = 1000213001, - VK_STRUCTURE_TYPE_IMAGEPIPE_SURFACE_CREATE_INFO_FUCHSIA = 1000214000, - VK_STRUCTURE_TYPE_METAL_SURFACE_CREATE_INFO_EXT = 1000217000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_FEATURES_EXT = 1000218000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_PROPERTIES_EXT = 1000218001, - VK_STRUCTURE_TYPE_RENDER_PASS_FRAGMENT_DENSITY_MAP_CREATE_INFO_EXT = 1000218002, - VK_STRUCTURE_TYPE_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR = 1000226000, - VK_STRUCTURE_TYPE_PIPELINE_FRAGMENT_SHADING_RATE_STATE_CREATE_INFO_KHR = 1000226001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR = 1000226002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_FEATURES_KHR = 1000226003, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_KHR = 1000226004, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_2_AMD = 1000227000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COHERENT_MEMORY_FEATURES_AMD = 1000229000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_IMAGE_ATOMIC_INT64_FEATURES_EXT = 1000234000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT = 1000237000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PRIORITY_FEATURES_EXT = 1000238000, - VK_STRUCTURE_TYPE_MEMORY_PRIORITY_ALLOCATE_INFO_EXT = 1000238001, - VK_STRUCTURE_TYPE_SURFACE_PROTECTED_CAPABILITIES_KHR = 1000239000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEDICATED_ALLOCATION_IMAGE_ALIASING_FEATURES_NV = 1000240000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT = 1000244000, - VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT = 1000244002, - VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT = 1000247000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_WAIT_FEATURES_KHR = 1000248000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV = 1000249000, - VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV = 1000249001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV = 1000249002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COVERAGE_REDUCTION_MODE_FEATURES_NV = 1000250000, - VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_REDUCTION_STATE_CREATE_INFO_NV = 1000250001, - VK_STRUCTURE_TYPE_FRAMEBUFFER_MIXED_SAMPLES_COMBINATION_NV = 1000250002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADER_INTERLOCK_FEATURES_EXT = 1000251000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_YCBCR_IMAGE_ARRAYS_FEATURES_EXT = 1000252000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROVOKING_VERTEX_FEATURES_EXT = 1000254000, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_PROVOKING_VERTEX_STATE_CREATE_INFO_EXT = 1000254001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROVOKING_VERTEX_PROPERTIES_EXT = 1000254002, - VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_INFO_EXT = 1000255000, - VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT = 1000255002, - VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_WIN32_INFO_EXT = 1000255001, - VK_STRUCTURE_TYPE_HEADLESS_SURFACE_CREATE_INFO_EXT = 1000256000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINE_RASTERIZATION_FEATURES_EXT = 1000259000, - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_EXT = 1000259001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINE_RASTERIZATION_PROPERTIES_EXT = 1000259002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_FEATURES_EXT = 1000260000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_EXT = 1000265000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_FEATURES_EXT = 1000267000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR = 1000269000, - VK_STRUCTURE_TYPE_PIPELINE_INFO_KHR = 1000269001, - VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR = 1000269002, - VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INFO_KHR = 1000269003, - VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR = 1000269004, - VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR = 1000269005, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_2_FEATURES_EXT = 1000273000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_PROPERTIES_NV = 1000277000, - VK_STRUCTURE_TYPE_GRAPHICS_SHADER_GROUP_CREATE_INFO_NV = 1000277001, - VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_SHADER_GROUPS_CREATE_INFO_NV = 1000277002, - VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_TOKEN_NV = 1000277003, - VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NV = 1000277004, - VK_STRUCTURE_TYPE_GENERATED_COMMANDS_INFO_NV = 1000277005, - VK_STRUCTURE_TYPE_GENERATED_COMMANDS_MEMORY_REQUIREMENTS_INFO_NV = 1000277006, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_FEATURES_NV = 1000277007, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INHERITED_VIEWPORT_SCISSOR_FEATURES_NV = 1000278000, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_VIEWPORT_SCISSOR_INFO_NV = 1000278001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_FEATURES_EXT = 1000281000, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDER_PASS_TRANSFORM_INFO_QCOM = 1000282000, - VK_STRUCTURE_TYPE_RENDER_PASS_TRANSFORM_BEGIN_INFO_QCOM = 1000282001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_MEMORY_REPORT_FEATURES_EXT = 1000284000, - VK_STRUCTURE_TYPE_DEVICE_DEVICE_MEMORY_REPORT_CREATE_INFO_EXT = 1000284001, - VK_STRUCTURE_TYPE_DEVICE_MEMORY_REPORT_CALLBACK_DATA_EXT = 1000284002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT = 1000286000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_PROPERTIES_EXT = 1000286001, - VK_STRUCTURE_TYPE_SAMPLER_CUSTOM_BORDER_COLOR_CREATE_INFO_EXT = 1000287000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT = 1000287001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_FEATURES_EXT = 1000287002, - VK_STRUCTURE_TYPE_PIPELINE_LIBRARY_CREATE_INFO_KHR = 1000290000, - VK_STRUCTURE_TYPE_PRESENT_ID_KHR = 1000294000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR = 1000294001, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_INFO_KHR = 1000299000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_RATE_CONTROL_INFO_KHR = 1000299001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_STRUCTURE_TYPE_VIDEO_ENCODE_RATE_CONTROL_LAYER_INFO_KHR = 1000299002, -#endif - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DIAGNOSTICS_CONFIG_FEATURES_NV = 1000300000, - VK_STRUCTURE_TYPE_DEVICE_DIAGNOSTICS_CONFIG_CREATE_INFO_NV = 1000300001, - VK_STRUCTURE_TYPE_QUEUE_FAMILY_CHECKPOINT_PROPERTIES_2_NV = 1000314008, - VK_STRUCTURE_TYPE_CHECKPOINT_DATA_2_NV = 1000314009, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_UNIFORM_CONTROL_FLOW_FEATURES_KHR = 1000323000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_PROPERTIES_NV = 1000326000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_FEATURES_NV = 1000326001, - VK_STRUCTURE_TYPE_PIPELINE_FRAGMENT_SHADING_RATE_ENUM_STATE_CREATE_INFO_NV = 1000326002, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_MOTION_TRIANGLES_DATA_NV = 1000327000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_MOTION_BLUR_FEATURES_NV = 1000327001, - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_MOTION_INFO_NV = 1000327002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_YCBCR_2_PLANE_444_FORMATS_FEATURES_EXT = 1000330000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_FEATURES_EXT = 1000332000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_PROPERTIES_EXT = 1000332001, - VK_STRUCTURE_TYPE_COPY_COMMAND_TRANSFORM_INFO_QCOM = 1000333000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_FEATURES_KHR = 1000336000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_4444_FORMATS_FEATURES_EXT = 1000340000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_FEATURES_ARM = 1000342000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RGBA10X6_FORMATS_FEATURES_EXT = 1000344000, - VK_STRUCTURE_TYPE_DIRECTFB_SURFACE_CREATE_INFO_EXT = 1000346000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MUTABLE_DESCRIPTOR_TYPE_FEATURES_VALVE = 1000351000, - VK_STRUCTURE_TYPE_MUTABLE_DESCRIPTOR_TYPE_CREATE_INFO_VALVE = 1000351002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_INPUT_DYNAMIC_STATE_FEATURES_EXT = 1000352000, - VK_STRUCTURE_TYPE_VERTEX_INPUT_BINDING_DESCRIPTION_2_EXT = 1000352001, - VK_STRUCTURE_TYPE_VERTEX_INPUT_ATTRIBUTE_DESCRIPTION_2_EXT = 1000352002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRM_PROPERTIES_EXT = 1000353000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_CONTROL_FEATURES_EXT = 1000355000, - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_DEPTH_CLIP_CONTROL_CREATE_INFO_EXT = 1000355001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIMITIVE_TOPOLOGY_LIST_RESTART_FEATURES_EXT = 1000356000, - VK_STRUCTURE_TYPE_IMPORT_MEMORY_ZIRCON_HANDLE_INFO_FUCHSIA = 1000364000, - VK_STRUCTURE_TYPE_MEMORY_ZIRCON_HANDLE_PROPERTIES_FUCHSIA = 1000364001, - VK_STRUCTURE_TYPE_MEMORY_GET_ZIRCON_HANDLE_INFO_FUCHSIA = 1000364002, - VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_ZIRCON_HANDLE_INFO_FUCHSIA = 1000365000, - VK_STRUCTURE_TYPE_SEMAPHORE_GET_ZIRCON_HANDLE_INFO_FUCHSIA = 1000365001, - VK_STRUCTURE_TYPE_BUFFER_COLLECTION_CREATE_INFO_FUCHSIA = 1000366000, - VK_STRUCTURE_TYPE_IMPORT_MEMORY_BUFFER_COLLECTION_FUCHSIA = 1000366001, - VK_STRUCTURE_TYPE_BUFFER_COLLECTION_IMAGE_CREATE_INFO_FUCHSIA = 1000366002, - VK_STRUCTURE_TYPE_BUFFER_COLLECTION_PROPERTIES_FUCHSIA = 1000366003, - VK_STRUCTURE_TYPE_BUFFER_CONSTRAINTS_INFO_FUCHSIA = 1000366004, - VK_STRUCTURE_TYPE_BUFFER_COLLECTION_BUFFER_CREATE_INFO_FUCHSIA = 1000366005, - VK_STRUCTURE_TYPE_IMAGE_CONSTRAINTS_INFO_FUCHSIA = 1000366006, - VK_STRUCTURE_TYPE_IMAGE_FORMAT_CONSTRAINTS_INFO_FUCHSIA = 1000366007, - VK_STRUCTURE_TYPE_SYSMEM_COLOR_SPACE_FUCHSIA = 1000366008, - VK_STRUCTURE_TYPE_BUFFER_COLLECTION_CONSTRAINTS_INFO_FUCHSIA = 1000366009, - VK_STRUCTURE_TYPE_SUBPASS_SHADING_PIPELINE_CREATE_INFO_HUAWEI = 1000369000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBPASS_SHADING_FEATURES_HUAWEI = 1000369001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBPASS_SHADING_PROPERTIES_HUAWEI = 1000369002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INVOCATION_MASK_FEATURES_HUAWEI = 1000370000, - VK_STRUCTURE_TYPE_MEMORY_GET_REMOTE_ADDRESS_INFO_NV = 1000371000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_RDMA_FEATURES_NV = 1000371001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_2_FEATURES_EXT = 1000377000, - VK_STRUCTURE_TYPE_SCREEN_SURFACE_CREATE_INFO_QNX = 1000378000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COLOR_WRITE_ENABLE_FEATURES_EXT = 1000381000, - VK_STRUCTURE_TYPE_PIPELINE_COLOR_WRITE_CREATE_INFO_EXT = 1000381001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_VIEW_MIN_LOD_FEATURES_EXT = 1000391000, - VK_STRUCTURE_TYPE_IMAGE_VIEW_MIN_LOD_CREATE_INFO_EXT = 1000391001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTI_DRAW_FEATURES_EXT = 1000392000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTI_DRAW_PROPERTIES_EXT = 1000392001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BORDER_COLOR_SWIZZLE_FEATURES_EXT = 1000411000, - VK_STRUCTURE_TYPE_SAMPLER_BORDER_COLOR_COMPONENT_MAPPING_CREATE_INFO_EXT = 1000411001, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PAGEABLE_DEVICE_LOCAL_MEMORY_FEATURES_EXT = 1000412000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_FEATURES_QCOM = 1000425000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_PROPERTIES_QCOM = 1000425001, - VK_STRUCTURE_TYPE_SUBPASS_FRAGMENT_DENSITY_MAP_OFFSET_END_INFO_QCOM = 1000425002, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINEAR_COLOR_ATTACHMENT_FEATURES_NV = 1000430000, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETER_FEATURES = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES, - VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT, - VK_STRUCTURE_TYPE_RENDERING_INFO_KHR = VK_STRUCTURE_TYPE_RENDERING_INFO, - VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_INFO_KHR = VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_INFO, - VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDERING_INFO_KHR = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDERING_INFO, - VK_STRUCTURE_TYPE_ATTACHMENT_SAMPLE_COUNT_INFO_NV = VK_STRUCTURE_TYPE_ATTACHMENT_SAMPLE_COUNT_INFO_AMD, - VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2, - VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2_KHR = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2, - VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2_KHR = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2, - VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2_KHR = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2, - VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2_KHR = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2, - VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO_KHR = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO, - VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO_KHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO, - VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO_KHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO, - VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO_KHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO, - VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO_KHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO, - VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO_KHR = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO, - VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO_KHR = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES, - VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO, - VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES_KHR = VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO, - VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES_KHR = VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES, - VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO, - VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO, - VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_KHR = VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO, - VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES_KHR = VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES, - VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT16_INT8_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES, - VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO, - VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES2_EXT = VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_EXT, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES, - VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO, - VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO_KHR = VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO, - VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO_KHR = VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO, - VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2, - VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2, - VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2_KHR = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2, - VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2_KHR = VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2, - VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2_KHR = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2, - VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO_KHR = VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO, - VK_STRUCTURE_TYPE_SUBPASS_END_INFO_KHR = VK_STRUCTURE_TYPE_SUBPASS_END_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO, - VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES_KHR = VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES, - VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES, - VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO, - VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO, - VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES_KHR, - VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS_KHR = VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS, - VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO_KHR = VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES, - VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES, - VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK_EXT = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK, - VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO, - VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2_KHR = VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2, - VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2_KHR = VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2, - VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2_KHR = VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2, - VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2_KHR = VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2, - VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2_KHR = VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2, - VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO, - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO, - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO_KHR = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO, - VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO_KHR = VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO, - VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO_KHR = VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES, - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES_KHR = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES, - VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO_KHR = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO, - VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO_KHR = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO_EXT = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT_EXT = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES, - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT_KHR = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT, - VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_KHR, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES, - VK_STRUCTURE_TYPE_PIPELINE_CREATION_FEEDBACK_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_PIPELINE_CREATION_FEEDBACK_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES, - VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE_KHR = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES, - VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO, - VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO_KHR = VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO, - VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO_KHR = VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO, - VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO_KHR = VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO, - VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO_INTEL = VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_QUERY_CREATE_INFO_INTEL, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES, - VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES, - VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT_KHR = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT, - VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT_KHR = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_ADDRESS_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT, - VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_EXT = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES, - VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES, - VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO, - VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO, - VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO_KHR = VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO, - VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO_KHR = VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES, - VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO, - VK_STRUCTURE_TYPE_PRIVATE_DATA_SLOT_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_PRIVATE_DATA_SLOT_CREATE_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES, - VK_STRUCTURE_TYPE_MEMORY_BARRIER_2_KHR = VK_STRUCTURE_TYPE_MEMORY_BARRIER_2, - VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER_2_KHR = VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER_2, - VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2_KHR = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2, - VK_STRUCTURE_TYPE_DEPENDENCY_INFO_KHR = VK_STRUCTURE_TYPE_DEPENDENCY_INFO, - VK_STRUCTURE_TYPE_SUBMIT_INFO_2_KHR = VK_STRUCTURE_TYPE_SUBMIT_INFO_2, - VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO_KHR = VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO, - VK_STRUCTURE_TYPE_COMMAND_BUFFER_SUBMIT_INFO_KHR = VK_STRUCTURE_TYPE_COMMAND_BUFFER_SUBMIT_INFO, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES, - VK_STRUCTURE_TYPE_COPY_BUFFER_INFO_2_KHR = VK_STRUCTURE_TYPE_COPY_BUFFER_INFO_2, - VK_STRUCTURE_TYPE_COPY_IMAGE_INFO_2_KHR = VK_STRUCTURE_TYPE_COPY_IMAGE_INFO_2, - VK_STRUCTURE_TYPE_COPY_BUFFER_TO_IMAGE_INFO_2_KHR = VK_STRUCTURE_TYPE_COPY_BUFFER_TO_IMAGE_INFO_2, - VK_STRUCTURE_TYPE_COPY_IMAGE_TO_BUFFER_INFO_2_KHR = VK_STRUCTURE_TYPE_COPY_IMAGE_TO_BUFFER_INFO_2, - VK_STRUCTURE_TYPE_BLIT_IMAGE_INFO_2_KHR = VK_STRUCTURE_TYPE_BLIT_IMAGE_INFO_2, - VK_STRUCTURE_TYPE_RESOLVE_IMAGE_INFO_2_KHR = VK_STRUCTURE_TYPE_RESOLVE_IMAGE_INFO_2, - VK_STRUCTURE_TYPE_BUFFER_COPY_2_KHR = VK_STRUCTURE_TYPE_BUFFER_COPY_2, - VK_STRUCTURE_TYPE_IMAGE_COPY_2_KHR = VK_STRUCTURE_TYPE_IMAGE_COPY_2, - VK_STRUCTURE_TYPE_IMAGE_BLIT_2_KHR = VK_STRUCTURE_TYPE_IMAGE_BLIT_2, - VK_STRUCTURE_TYPE_BUFFER_IMAGE_COPY_2_KHR = VK_STRUCTURE_TYPE_BUFFER_IMAGE_COPY_2, - VK_STRUCTURE_TYPE_IMAGE_RESOLVE_2_KHR = VK_STRUCTURE_TYPE_IMAGE_RESOLVE_2, - VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_3_KHR = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_3, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_EXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_KHR, - VK_STRUCTURE_TYPE_QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_EXT = VK_STRUCTURE_TYPE_QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_KHR, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES, - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES, - VK_STRUCTURE_TYPE_DEVICE_BUFFER_MEMORY_REQUIREMENTS_KHR = VK_STRUCTURE_TYPE_DEVICE_BUFFER_MEMORY_REQUIREMENTS, - VK_STRUCTURE_TYPE_DEVICE_IMAGE_MEMORY_REQUIREMENTS_KHR = VK_STRUCTURE_TYPE_DEVICE_IMAGE_MEMORY_REQUIREMENTS, - VK_STRUCTURE_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkStructureType; - -typedef enum VkImageLayout { - VK_IMAGE_LAYOUT_UNDEFINED = 0, - VK_IMAGE_LAYOUT_GENERAL = 1, - VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL = 2, - VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL = 3, - VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL = 4, - VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL = 5, - VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL = 6, - VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL = 7, - VK_IMAGE_LAYOUT_PREINITIALIZED = 8, - VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL = 1000117000, - VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL = 1000117001, - VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL = 1000241000, - VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL = 1000241001, - VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL = 1000241002, - VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL = 1000241003, - VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL = 1000314000, - VK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL = 1000314001, - VK_IMAGE_LAYOUT_PRESENT_SRC_KHR = 1000001002, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_LAYOUT_VIDEO_DECODE_DST_KHR = 1000024000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_LAYOUT_VIDEO_DECODE_SRC_KHR = 1000024001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_LAYOUT_VIDEO_DECODE_DPB_KHR = 1000024002, -#endif - VK_IMAGE_LAYOUT_SHARED_PRESENT_KHR = 1000111000, - VK_IMAGE_LAYOUT_FRAGMENT_DENSITY_MAP_OPTIMAL_EXT = 1000218000, - VK_IMAGE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR = 1000164003, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_LAYOUT_VIDEO_ENCODE_DST_KHR = 1000299000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_LAYOUT_VIDEO_ENCODE_SRC_KHR = 1000299001, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_LAYOUT_VIDEO_ENCODE_DPB_KHR = 1000299002, -#endif - VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL_KHR = VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL, - VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL_KHR = VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL, - VK_IMAGE_LAYOUT_SHADING_RATE_OPTIMAL_NV = VK_IMAGE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR, - VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL_KHR = VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL, - VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL_KHR = VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL, - VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL_KHR = VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL, - VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL_KHR = VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL, - VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL_KHR = VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL, - VK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL_KHR = VK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL, - VK_IMAGE_LAYOUT_MAX_ENUM = 0x7FFFFFFF -} VkImageLayout; - -typedef enum VkObjectType { - VK_OBJECT_TYPE_UNKNOWN = 0, - VK_OBJECT_TYPE_INSTANCE = 1, - VK_OBJECT_TYPE_PHYSICAL_DEVICE = 2, - VK_OBJECT_TYPE_DEVICE = 3, - VK_OBJECT_TYPE_QUEUE = 4, - VK_OBJECT_TYPE_SEMAPHORE = 5, - VK_OBJECT_TYPE_COMMAND_BUFFER = 6, - VK_OBJECT_TYPE_FENCE = 7, - VK_OBJECT_TYPE_DEVICE_MEMORY = 8, - VK_OBJECT_TYPE_BUFFER = 9, - VK_OBJECT_TYPE_IMAGE = 10, - VK_OBJECT_TYPE_EVENT = 11, - VK_OBJECT_TYPE_QUERY_POOL = 12, - VK_OBJECT_TYPE_BUFFER_VIEW = 13, - VK_OBJECT_TYPE_IMAGE_VIEW = 14, - VK_OBJECT_TYPE_SHADER_MODULE = 15, - VK_OBJECT_TYPE_PIPELINE_CACHE = 16, - VK_OBJECT_TYPE_PIPELINE_LAYOUT = 17, - VK_OBJECT_TYPE_RENDER_PASS = 18, - VK_OBJECT_TYPE_PIPELINE = 19, - VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT = 20, - VK_OBJECT_TYPE_SAMPLER = 21, - VK_OBJECT_TYPE_DESCRIPTOR_POOL = 22, - VK_OBJECT_TYPE_DESCRIPTOR_SET = 23, - VK_OBJECT_TYPE_FRAMEBUFFER = 24, - VK_OBJECT_TYPE_COMMAND_POOL = 25, - VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION = 1000156000, - VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE = 1000085000, - VK_OBJECT_TYPE_PRIVATE_DATA_SLOT = 1000295000, - VK_OBJECT_TYPE_SURFACE_KHR = 1000000000, - VK_OBJECT_TYPE_SWAPCHAIN_KHR = 1000001000, - VK_OBJECT_TYPE_DISPLAY_KHR = 1000002000, - VK_OBJECT_TYPE_DISPLAY_MODE_KHR = 1000002001, - VK_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT = 1000011000, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_OBJECT_TYPE_VIDEO_SESSION_KHR = 1000023000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_OBJECT_TYPE_VIDEO_SESSION_PARAMETERS_KHR = 1000023001, -#endif - VK_OBJECT_TYPE_CU_MODULE_NVX = 1000029000, - VK_OBJECT_TYPE_CU_FUNCTION_NVX = 1000029001, - VK_OBJECT_TYPE_DEBUG_UTILS_MESSENGER_EXT = 1000128000, - VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR = 1000150000, - VK_OBJECT_TYPE_VALIDATION_CACHE_EXT = 1000160000, - VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV = 1000165000, - VK_OBJECT_TYPE_PERFORMANCE_CONFIGURATION_INTEL = 1000210000, - VK_OBJECT_TYPE_DEFERRED_OPERATION_KHR = 1000268000, - VK_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NV = 1000277000, - VK_OBJECT_TYPE_BUFFER_COLLECTION_FUCHSIA = 1000366000, - VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR = VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE, - VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR = VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION, - VK_OBJECT_TYPE_PRIVATE_DATA_SLOT_EXT = VK_OBJECT_TYPE_PRIVATE_DATA_SLOT, - VK_OBJECT_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkObjectType; - -typedef enum VkPipelineCacheHeaderVersion { - VK_PIPELINE_CACHE_HEADER_VERSION_ONE = 1, - VK_PIPELINE_CACHE_HEADER_VERSION_MAX_ENUM = 0x7FFFFFFF -} VkPipelineCacheHeaderVersion; - -typedef enum VkVendorId { - VK_VENDOR_ID_VIV = 0x10001, - VK_VENDOR_ID_VSI = 0x10002, - VK_VENDOR_ID_KAZAN = 0x10003, - VK_VENDOR_ID_CODEPLAY = 0x10004, - VK_VENDOR_ID_MESA = 0x10005, - VK_VENDOR_ID_POCL = 0x10006, - VK_VENDOR_ID_MAX_ENUM = 0x7FFFFFFF -} VkVendorId; - -typedef enum VkSystemAllocationScope { - VK_SYSTEM_ALLOCATION_SCOPE_COMMAND = 0, - VK_SYSTEM_ALLOCATION_SCOPE_OBJECT = 1, - VK_SYSTEM_ALLOCATION_SCOPE_CACHE = 2, - VK_SYSTEM_ALLOCATION_SCOPE_DEVICE = 3, - VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE = 4, - VK_SYSTEM_ALLOCATION_SCOPE_MAX_ENUM = 0x7FFFFFFF -} VkSystemAllocationScope; - -typedef enum VkInternalAllocationType { - VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE = 0, - VK_INTERNAL_ALLOCATION_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkInternalAllocationType; - -typedef enum VkFormat { - VK_FORMAT_UNDEFINED = 0, - VK_FORMAT_R4G4_UNORM_PACK8 = 1, - VK_FORMAT_R4G4B4A4_UNORM_PACK16 = 2, - VK_FORMAT_B4G4R4A4_UNORM_PACK16 = 3, - VK_FORMAT_R5G6B5_UNORM_PACK16 = 4, - VK_FORMAT_B5G6R5_UNORM_PACK16 = 5, - VK_FORMAT_R5G5B5A1_UNORM_PACK16 = 6, - VK_FORMAT_B5G5R5A1_UNORM_PACK16 = 7, - VK_FORMAT_A1R5G5B5_UNORM_PACK16 = 8, - VK_FORMAT_R8_UNORM = 9, - VK_FORMAT_R8_SNORM = 10, - VK_FORMAT_R8_USCALED = 11, - VK_FORMAT_R8_SSCALED = 12, - VK_FORMAT_R8_UINT = 13, - VK_FORMAT_R8_SINT = 14, - VK_FORMAT_R8_SRGB = 15, - VK_FORMAT_R8G8_UNORM = 16, - VK_FORMAT_R8G8_SNORM = 17, - VK_FORMAT_R8G8_USCALED = 18, - VK_FORMAT_R8G8_SSCALED = 19, - VK_FORMAT_R8G8_UINT = 20, - VK_FORMAT_R8G8_SINT = 21, - VK_FORMAT_R8G8_SRGB = 22, - VK_FORMAT_R8G8B8_UNORM = 23, - VK_FORMAT_R8G8B8_SNORM = 24, - VK_FORMAT_R8G8B8_USCALED = 25, - VK_FORMAT_R8G8B8_SSCALED = 26, - VK_FORMAT_R8G8B8_UINT = 27, - VK_FORMAT_R8G8B8_SINT = 28, - VK_FORMAT_R8G8B8_SRGB = 29, - VK_FORMAT_B8G8R8_UNORM = 30, - VK_FORMAT_B8G8R8_SNORM = 31, - VK_FORMAT_B8G8R8_USCALED = 32, - VK_FORMAT_B8G8R8_SSCALED = 33, - VK_FORMAT_B8G8R8_UINT = 34, - VK_FORMAT_B8G8R8_SINT = 35, - VK_FORMAT_B8G8R8_SRGB = 36, - VK_FORMAT_R8G8B8A8_UNORM = 37, - VK_FORMAT_R8G8B8A8_SNORM = 38, - VK_FORMAT_R8G8B8A8_USCALED = 39, - VK_FORMAT_R8G8B8A8_SSCALED = 40, - VK_FORMAT_R8G8B8A8_UINT = 41, - VK_FORMAT_R8G8B8A8_SINT = 42, - VK_FORMAT_R8G8B8A8_SRGB = 43, - VK_FORMAT_B8G8R8A8_UNORM = 44, - VK_FORMAT_B8G8R8A8_SNORM = 45, - VK_FORMAT_B8G8R8A8_USCALED = 46, - VK_FORMAT_B8G8R8A8_SSCALED = 47, - VK_FORMAT_B8G8R8A8_UINT = 48, - VK_FORMAT_B8G8R8A8_SINT = 49, - VK_FORMAT_B8G8R8A8_SRGB = 50, - VK_FORMAT_A8B8G8R8_UNORM_PACK32 = 51, - VK_FORMAT_A8B8G8R8_SNORM_PACK32 = 52, - VK_FORMAT_A8B8G8R8_USCALED_PACK32 = 53, - VK_FORMAT_A8B8G8R8_SSCALED_PACK32 = 54, - VK_FORMAT_A8B8G8R8_UINT_PACK32 = 55, - VK_FORMAT_A8B8G8R8_SINT_PACK32 = 56, - VK_FORMAT_A8B8G8R8_SRGB_PACK32 = 57, - VK_FORMAT_A2R10G10B10_UNORM_PACK32 = 58, - VK_FORMAT_A2R10G10B10_SNORM_PACK32 = 59, - VK_FORMAT_A2R10G10B10_USCALED_PACK32 = 60, - VK_FORMAT_A2R10G10B10_SSCALED_PACK32 = 61, - VK_FORMAT_A2R10G10B10_UINT_PACK32 = 62, - VK_FORMAT_A2R10G10B10_SINT_PACK32 = 63, - VK_FORMAT_A2B10G10R10_UNORM_PACK32 = 64, - VK_FORMAT_A2B10G10R10_SNORM_PACK32 = 65, - VK_FORMAT_A2B10G10R10_USCALED_PACK32 = 66, - VK_FORMAT_A2B10G10R10_SSCALED_PACK32 = 67, - VK_FORMAT_A2B10G10R10_UINT_PACK32 = 68, - VK_FORMAT_A2B10G10R10_SINT_PACK32 = 69, - VK_FORMAT_R16_UNORM = 70, - VK_FORMAT_R16_SNORM = 71, - VK_FORMAT_R16_USCALED = 72, - VK_FORMAT_R16_SSCALED = 73, - VK_FORMAT_R16_UINT = 74, - VK_FORMAT_R16_SINT = 75, - VK_FORMAT_R16_SFLOAT = 76, - VK_FORMAT_R16G16_UNORM = 77, - VK_FORMAT_R16G16_SNORM = 78, - VK_FORMAT_R16G16_USCALED = 79, - VK_FORMAT_R16G16_SSCALED = 80, - VK_FORMAT_R16G16_UINT = 81, - VK_FORMAT_R16G16_SINT = 82, - VK_FORMAT_R16G16_SFLOAT = 83, - VK_FORMAT_R16G16B16_UNORM = 84, - VK_FORMAT_R16G16B16_SNORM = 85, - VK_FORMAT_R16G16B16_USCALED = 86, - VK_FORMAT_R16G16B16_SSCALED = 87, - VK_FORMAT_R16G16B16_UINT = 88, - VK_FORMAT_R16G16B16_SINT = 89, - VK_FORMAT_R16G16B16_SFLOAT = 90, - VK_FORMAT_R16G16B16A16_UNORM = 91, - VK_FORMAT_R16G16B16A16_SNORM = 92, - VK_FORMAT_R16G16B16A16_USCALED = 93, - VK_FORMAT_R16G16B16A16_SSCALED = 94, - VK_FORMAT_R16G16B16A16_UINT = 95, - VK_FORMAT_R16G16B16A16_SINT = 96, - VK_FORMAT_R16G16B16A16_SFLOAT = 97, - VK_FORMAT_R32_UINT = 98, - VK_FORMAT_R32_SINT = 99, - VK_FORMAT_R32_SFLOAT = 100, - VK_FORMAT_R32G32_UINT = 101, - VK_FORMAT_R32G32_SINT = 102, - VK_FORMAT_R32G32_SFLOAT = 103, - VK_FORMAT_R32G32B32_UINT = 104, - VK_FORMAT_R32G32B32_SINT = 105, - VK_FORMAT_R32G32B32_SFLOAT = 106, - VK_FORMAT_R32G32B32A32_UINT = 107, - VK_FORMAT_R32G32B32A32_SINT = 108, - VK_FORMAT_R32G32B32A32_SFLOAT = 109, - VK_FORMAT_R64_UINT = 110, - VK_FORMAT_R64_SINT = 111, - VK_FORMAT_R64_SFLOAT = 112, - VK_FORMAT_R64G64_UINT = 113, - VK_FORMAT_R64G64_SINT = 114, - VK_FORMAT_R64G64_SFLOAT = 115, - VK_FORMAT_R64G64B64_UINT = 116, - VK_FORMAT_R64G64B64_SINT = 117, - VK_FORMAT_R64G64B64_SFLOAT = 118, - VK_FORMAT_R64G64B64A64_UINT = 119, - VK_FORMAT_R64G64B64A64_SINT = 120, - VK_FORMAT_R64G64B64A64_SFLOAT = 121, - VK_FORMAT_B10G11R11_UFLOAT_PACK32 = 122, - VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 = 123, - VK_FORMAT_D16_UNORM = 124, - VK_FORMAT_X8_D24_UNORM_PACK32 = 125, - VK_FORMAT_D32_SFLOAT = 126, - VK_FORMAT_S8_UINT = 127, - VK_FORMAT_D16_UNORM_S8_UINT = 128, - VK_FORMAT_D24_UNORM_S8_UINT = 129, - VK_FORMAT_D32_SFLOAT_S8_UINT = 130, - VK_FORMAT_BC1_RGB_UNORM_BLOCK = 131, - VK_FORMAT_BC1_RGB_SRGB_BLOCK = 132, - VK_FORMAT_BC1_RGBA_UNORM_BLOCK = 133, - VK_FORMAT_BC1_RGBA_SRGB_BLOCK = 134, - VK_FORMAT_BC2_UNORM_BLOCK = 135, - VK_FORMAT_BC2_SRGB_BLOCK = 136, - VK_FORMAT_BC3_UNORM_BLOCK = 137, - VK_FORMAT_BC3_SRGB_BLOCK = 138, - VK_FORMAT_BC4_UNORM_BLOCK = 139, - VK_FORMAT_BC4_SNORM_BLOCK = 140, - VK_FORMAT_BC5_UNORM_BLOCK = 141, - VK_FORMAT_BC5_SNORM_BLOCK = 142, - VK_FORMAT_BC6H_UFLOAT_BLOCK = 143, - VK_FORMAT_BC6H_SFLOAT_BLOCK = 144, - VK_FORMAT_BC7_UNORM_BLOCK = 145, - VK_FORMAT_BC7_SRGB_BLOCK = 146, - VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK = 147, - VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK = 148, - VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK = 149, - VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK = 150, - VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK = 151, - VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK = 152, - VK_FORMAT_EAC_R11_UNORM_BLOCK = 153, - VK_FORMAT_EAC_R11_SNORM_BLOCK = 154, - VK_FORMAT_EAC_R11G11_UNORM_BLOCK = 155, - VK_FORMAT_EAC_R11G11_SNORM_BLOCK = 156, - VK_FORMAT_ASTC_4x4_UNORM_BLOCK = 157, - VK_FORMAT_ASTC_4x4_SRGB_BLOCK = 158, - VK_FORMAT_ASTC_5x4_UNORM_BLOCK = 159, - VK_FORMAT_ASTC_5x4_SRGB_BLOCK = 160, - VK_FORMAT_ASTC_5x5_UNORM_BLOCK = 161, - VK_FORMAT_ASTC_5x5_SRGB_BLOCK = 162, - VK_FORMAT_ASTC_6x5_UNORM_BLOCK = 163, - VK_FORMAT_ASTC_6x5_SRGB_BLOCK = 164, - VK_FORMAT_ASTC_6x6_UNORM_BLOCK = 165, - VK_FORMAT_ASTC_6x6_SRGB_BLOCK = 166, - VK_FORMAT_ASTC_8x5_UNORM_BLOCK = 167, - VK_FORMAT_ASTC_8x5_SRGB_BLOCK = 168, - VK_FORMAT_ASTC_8x6_UNORM_BLOCK = 169, - VK_FORMAT_ASTC_8x6_SRGB_BLOCK = 170, - VK_FORMAT_ASTC_8x8_UNORM_BLOCK = 171, - VK_FORMAT_ASTC_8x8_SRGB_BLOCK = 172, - VK_FORMAT_ASTC_10x5_UNORM_BLOCK = 173, - VK_FORMAT_ASTC_10x5_SRGB_BLOCK = 174, - VK_FORMAT_ASTC_10x6_UNORM_BLOCK = 175, - VK_FORMAT_ASTC_10x6_SRGB_BLOCK = 176, - VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177, - VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178, - VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179, - VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180, - VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181, - VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182, - VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183, - VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184, - VK_FORMAT_G8B8G8R8_422_UNORM = 1000156000, - VK_FORMAT_B8G8R8G8_422_UNORM = 1000156001, - VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM = 1000156002, - VK_FORMAT_G8_B8R8_2PLANE_420_UNORM = 1000156003, - VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM = 1000156004, - VK_FORMAT_G8_B8R8_2PLANE_422_UNORM = 1000156005, - VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM = 1000156006, - VK_FORMAT_R10X6_UNORM_PACK16 = 1000156007, - VK_FORMAT_R10X6G10X6_UNORM_2PACK16 = 1000156008, - VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16 = 1000156009, - VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16 = 1000156010, - VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16 = 1000156011, - VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16 = 1000156012, - VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16 = 1000156013, - VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16 = 1000156014, - VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16 = 1000156015, - VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16 = 1000156016, - VK_FORMAT_R12X4_UNORM_PACK16 = 1000156017, - VK_FORMAT_R12X4G12X4_UNORM_2PACK16 = 1000156018, - VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16 = 1000156019, - VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16 = 1000156020, - VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16 = 1000156021, - VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16 = 1000156022, - VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16 = 1000156023, - VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16 = 1000156024, - VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16 = 1000156025, - VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16 = 1000156026, - VK_FORMAT_G16B16G16R16_422_UNORM = 1000156027, - VK_FORMAT_B16G16R16G16_422_UNORM = 1000156028, - VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM = 1000156029, - VK_FORMAT_G16_B16R16_2PLANE_420_UNORM = 1000156030, - VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM = 1000156031, - VK_FORMAT_G16_B16R16_2PLANE_422_UNORM = 1000156032, - VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM = 1000156033, - VK_FORMAT_G8_B8R8_2PLANE_444_UNORM = 1000330000, - VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16 = 1000330001, - VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16 = 1000330002, - VK_FORMAT_G16_B16R16_2PLANE_444_UNORM = 1000330003, - VK_FORMAT_A4R4G4B4_UNORM_PACK16 = 1000340000, - VK_FORMAT_A4B4G4R4_UNORM_PACK16 = 1000340001, - VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK = 1000066000, - VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK = 1000066001, - VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK = 1000066002, - VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK = 1000066003, - VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK = 1000066004, - VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK = 1000066005, - VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK = 1000066006, - VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK = 1000066007, - VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK = 1000066008, - VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK = 1000066009, - VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK = 1000066010, - VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK = 1000066011, - VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK = 1000066012, - VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK = 1000066013, - VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000, - VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001, - VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002, - VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003, - VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004, - VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005, - VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006, - VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007, - VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK, - VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK, - VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK, - VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK, - VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK, - VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK, - VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK, - VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK, - VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK, - VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK, - VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK, - VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK, - VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK, - VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK_EXT = VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK, - VK_FORMAT_G8B8G8R8_422_UNORM_KHR = VK_FORMAT_G8B8G8R8_422_UNORM, - VK_FORMAT_B8G8R8G8_422_UNORM_KHR = VK_FORMAT_B8G8R8G8_422_UNORM, - VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM_KHR = VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM, - VK_FORMAT_G8_B8R8_2PLANE_420_UNORM_KHR = VK_FORMAT_G8_B8R8_2PLANE_420_UNORM, - VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM_KHR = VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM, - VK_FORMAT_G8_B8R8_2PLANE_422_UNORM_KHR = VK_FORMAT_G8_B8R8_2PLANE_422_UNORM, - VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM_KHR = VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM, - VK_FORMAT_R10X6_UNORM_PACK16_KHR = VK_FORMAT_R10X6_UNORM_PACK16, - VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR = VK_FORMAT_R10X6G10X6_UNORM_2PACK16, - VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR = VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16, - VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16_KHR = VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16, - VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16_KHR = VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16, - VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16_KHR = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16, - VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16_KHR = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16, - VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16_KHR = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16, - VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16_KHR = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16, - VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16_KHR = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16, - VK_FORMAT_R12X4_UNORM_PACK16_KHR = VK_FORMAT_R12X4_UNORM_PACK16, - VK_FORMAT_R12X4G12X4_UNORM_2PACK16_KHR = VK_FORMAT_R12X4G12X4_UNORM_2PACK16, - VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16_KHR = VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16, - VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16_KHR = VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16, - VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16_KHR = VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16, - VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16_KHR = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16, - VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16_KHR = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16, - VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16_KHR = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16, - VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16_KHR = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16, - VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16_KHR = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16, - VK_FORMAT_G16B16G16R16_422_UNORM_KHR = VK_FORMAT_G16B16G16R16_422_UNORM, - VK_FORMAT_B16G16R16G16_422_UNORM_KHR = VK_FORMAT_B16G16R16G16_422_UNORM, - VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM_KHR = VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM, - VK_FORMAT_G16_B16R16_2PLANE_420_UNORM_KHR = VK_FORMAT_G16_B16R16_2PLANE_420_UNORM, - VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM_KHR = VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM, - VK_FORMAT_G16_B16R16_2PLANE_422_UNORM_KHR = VK_FORMAT_G16_B16R16_2PLANE_422_UNORM, - VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM_KHR = VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM, - VK_FORMAT_G8_B8R8_2PLANE_444_UNORM_EXT = VK_FORMAT_G8_B8R8_2PLANE_444_UNORM, - VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16_EXT = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16, - VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16_EXT = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16, - VK_FORMAT_G16_B16R16_2PLANE_444_UNORM_EXT = VK_FORMAT_G16_B16R16_2PLANE_444_UNORM, - VK_FORMAT_A4R4G4B4_UNORM_PACK16_EXT = VK_FORMAT_A4R4G4B4_UNORM_PACK16, - VK_FORMAT_A4B4G4R4_UNORM_PACK16_EXT = VK_FORMAT_A4B4G4R4_UNORM_PACK16, - VK_FORMAT_MAX_ENUM = 0x7FFFFFFF -} VkFormat; - -typedef enum VkImageTiling { - VK_IMAGE_TILING_OPTIMAL = 0, - VK_IMAGE_TILING_LINEAR = 1, - VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT = 1000158000, - VK_IMAGE_TILING_MAX_ENUM = 0x7FFFFFFF -} VkImageTiling; - -typedef enum VkImageType { - VK_IMAGE_TYPE_1D = 0, - VK_IMAGE_TYPE_2D = 1, - VK_IMAGE_TYPE_3D = 2, - VK_IMAGE_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkImageType; - -typedef enum VkPhysicalDeviceType { - VK_PHYSICAL_DEVICE_TYPE_OTHER = 0, - VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU = 1, - VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU = 2, - VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU = 3, - VK_PHYSICAL_DEVICE_TYPE_CPU = 4, - VK_PHYSICAL_DEVICE_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkPhysicalDeviceType; - -typedef enum VkQueryType { - VK_QUERY_TYPE_OCCLUSION = 0, - VK_QUERY_TYPE_PIPELINE_STATISTICS = 1, - VK_QUERY_TYPE_TIMESTAMP = 2, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_QUERY_TYPE_RESULT_STATUS_ONLY_KHR = 1000023000, -#endif - VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT = 1000028004, - VK_QUERY_TYPE_PERFORMANCE_QUERY_KHR = 1000116000, - VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR = 1000150000, - VK_QUERY_TYPE_ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR = 1000150001, - VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV = 1000165000, - VK_QUERY_TYPE_PERFORMANCE_QUERY_INTEL = 1000210000, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_QUERY_TYPE_VIDEO_ENCODE_BITSTREAM_BUFFER_RANGE_KHR = 1000299000, -#endif - VK_QUERY_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkQueryType; - -typedef enum VkSharingMode { - VK_SHARING_MODE_EXCLUSIVE = 0, - VK_SHARING_MODE_CONCURRENT = 1, - VK_SHARING_MODE_MAX_ENUM = 0x7FFFFFFF -} VkSharingMode; - -typedef enum VkComponentSwizzle { - VK_COMPONENT_SWIZZLE_IDENTITY = 0, - VK_COMPONENT_SWIZZLE_ZERO = 1, - VK_COMPONENT_SWIZZLE_ONE = 2, - VK_COMPONENT_SWIZZLE_R = 3, - VK_COMPONENT_SWIZZLE_G = 4, - VK_COMPONENT_SWIZZLE_B = 5, - VK_COMPONENT_SWIZZLE_A = 6, - VK_COMPONENT_SWIZZLE_MAX_ENUM = 0x7FFFFFFF -} VkComponentSwizzle; - -typedef enum VkImageViewType { - VK_IMAGE_VIEW_TYPE_1D = 0, - VK_IMAGE_VIEW_TYPE_2D = 1, - VK_IMAGE_VIEW_TYPE_3D = 2, - VK_IMAGE_VIEW_TYPE_CUBE = 3, - VK_IMAGE_VIEW_TYPE_1D_ARRAY = 4, - VK_IMAGE_VIEW_TYPE_2D_ARRAY = 5, - VK_IMAGE_VIEW_TYPE_CUBE_ARRAY = 6, - VK_IMAGE_VIEW_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkImageViewType; - -typedef enum VkBlendFactor { - VK_BLEND_FACTOR_ZERO = 0, - VK_BLEND_FACTOR_ONE = 1, - VK_BLEND_FACTOR_SRC_COLOR = 2, - VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR = 3, - VK_BLEND_FACTOR_DST_COLOR = 4, - VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR = 5, - VK_BLEND_FACTOR_SRC_ALPHA = 6, - VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA = 7, - VK_BLEND_FACTOR_DST_ALPHA = 8, - VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA = 9, - VK_BLEND_FACTOR_CONSTANT_COLOR = 10, - VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR = 11, - VK_BLEND_FACTOR_CONSTANT_ALPHA = 12, - VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA = 13, - VK_BLEND_FACTOR_SRC_ALPHA_SATURATE = 14, - VK_BLEND_FACTOR_SRC1_COLOR = 15, - VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR = 16, - VK_BLEND_FACTOR_SRC1_ALPHA = 17, - VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA = 18, - VK_BLEND_FACTOR_MAX_ENUM = 0x7FFFFFFF -} VkBlendFactor; - -typedef enum VkBlendOp { - VK_BLEND_OP_ADD = 0, - VK_BLEND_OP_SUBTRACT = 1, - VK_BLEND_OP_REVERSE_SUBTRACT = 2, - VK_BLEND_OP_MIN = 3, - VK_BLEND_OP_MAX = 4, - VK_BLEND_OP_ZERO_EXT = 1000148000, - VK_BLEND_OP_SRC_EXT = 1000148001, - VK_BLEND_OP_DST_EXT = 1000148002, - VK_BLEND_OP_SRC_OVER_EXT = 1000148003, - VK_BLEND_OP_DST_OVER_EXT = 1000148004, - VK_BLEND_OP_SRC_IN_EXT = 1000148005, - VK_BLEND_OP_DST_IN_EXT = 1000148006, - VK_BLEND_OP_SRC_OUT_EXT = 1000148007, - VK_BLEND_OP_DST_OUT_EXT = 1000148008, - VK_BLEND_OP_SRC_ATOP_EXT = 1000148009, - VK_BLEND_OP_DST_ATOP_EXT = 1000148010, - VK_BLEND_OP_XOR_EXT = 1000148011, - VK_BLEND_OP_MULTIPLY_EXT = 1000148012, - VK_BLEND_OP_SCREEN_EXT = 1000148013, - VK_BLEND_OP_OVERLAY_EXT = 1000148014, - VK_BLEND_OP_DARKEN_EXT = 1000148015, - VK_BLEND_OP_LIGHTEN_EXT = 1000148016, - VK_BLEND_OP_COLORDODGE_EXT = 1000148017, - VK_BLEND_OP_COLORBURN_EXT = 1000148018, - VK_BLEND_OP_HARDLIGHT_EXT = 1000148019, - VK_BLEND_OP_SOFTLIGHT_EXT = 1000148020, - VK_BLEND_OP_DIFFERENCE_EXT = 1000148021, - VK_BLEND_OP_EXCLUSION_EXT = 1000148022, - VK_BLEND_OP_INVERT_EXT = 1000148023, - VK_BLEND_OP_INVERT_RGB_EXT = 1000148024, - VK_BLEND_OP_LINEARDODGE_EXT = 1000148025, - VK_BLEND_OP_LINEARBURN_EXT = 1000148026, - VK_BLEND_OP_VIVIDLIGHT_EXT = 1000148027, - VK_BLEND_OP_LINEARLIGHT_EXT = 1000148028, - VK_BLEND_OP_PINLIGHT_EXT = 1000148029, - VK_BLEND_OP_HARDMIX_EXT = 1000148030, - VK_BLEND_OP_HSL_HUE_EXT = 1000148031, - VK_BLEND_OP_HSL_SATURATION_EXT = 1000148032, - VK_BLEND_OP_HSL_COLOR_EXT = 1000148033, - VK_BLEND_OP_HSL_LUMINOSITY_EXT = 1000148034, - VK_BLEND_OP_PLUS_EXT = 1000148035, - VK_BLEND_OP_PLUS_CLAMPED_EXT = 1000148036, - VK_BLEND_OP_PLUS_CLAMPED_ALPHA_EXT = 1000148037, - VK_BLEND_OP_PLUS_DARKER_EXT = 1000148038, - VK_BLEND_OP_MINUS_EXT = 1000148039, - VK_BLEND_OP_MINUS_CLAMPED_EXT = 1000148040, - VK_BLEND_OP_CONTRAST_EXT = 1000148041, - VK_BLEND_OP_INVERT_OVG_EXT = 1000148042, - VK_BLEND_OP_RED_EXT = 1000148043, - VK_BLEND_OP_GREEN_EXT = 1000148044, - VK_BLEND_OP_BLUE_EXT = 1000148045, - VK_BLEND_OP_MAX_ENUM = 0x7FFFFFFF -} VkBlendOp; - -typedef enum VkCompareOp { - VK_COMPARE_OP_NEVER = 0, - VK_COMPARE_OP_LESS = 1, - VK_COMPARE_OP_EQUAL = 2, - VK_COMPARE_OP_LESS_OR_EQUAL = 3, - VK_COMPARE_OP_GREATER = 4, - VK_COMPARE_OP_NOT_EQUAL = 5, - VK_COMPARE_OP_GREATER_OR_EQUAL = 6, - VK_COMPARE_OP_ALWAYS = 7, - VK_COMPARE_OP_MAX_ENUM = 0x7FFFFFFF -} VkCompareOp; - -typedef enum VkDynamicState { - VK_DYNAMIC_STATE_VIEWPORT = 0, - VK_DYNAMIC_STATE_SCISSOR = 1, - VK_DYNAMIC_STATE_LINE_WIDTH = 2, - VK_DYNAMIC_STATE_DEPTH_BIAS = 3, - VK_DYNAMIC_STATE_BLEND_CONSTANTS = 4, - VK_DYNAMIC_STATE_DEPTH_BOUNDS = 5, - VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK = 6, - VK_DYNAMIC_STATE_STENCIL_WRITE_MASK = 7, - VK_DYNAMIC_STATE_STENCIL_REFERENCE = 8, - VK_DYNAMIC_STATE_CULL_MODE = 1000267000, - VK_DYNAMIC_STATE_FRONT_FACE = 1000267001, - VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY = 1000267002, - VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT = 1000267003, - VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT = 1000267004, - VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE = 1000267005, - VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE = 1000267006, - VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE = 1000267007, - VK_DYNAMIC_STATE_DEPTH_COMPARE_OP = 1000267008, - VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE = 1000267009, - VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE = 1000267010, - VK_DYNAMIC_STATE_STENCIL_OP = 1000267011, - VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE = 1000377001, - VK_DYNAMIC_STATE_DEPTH_BIAS_ENABLE = 1000377002, - VK_DYNAMIC_STATE_PRIMITIVE_RESTART_ENABLE = 1000377004, - VK_DYNAMIC_STATE_VIEWPORT_W_SCALING_NV = 1000087000, - VK_DYNAMIC_STATE_DISCARD_RECTANGLE_EXT = 1000099000, - VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT = 1000143000, - VK_DYNAMIC_STATE_RAY_TRACING_PIPELINE_STACK_SIZE_KHR = 1000347000, - VK_DYNAMIC_STATE_VIEWPORT_SHADING_RATE_PALETTE_NV = 1000164004, - VK_DYNAMIC_STATE_VIEWPORT_COARSE_SAMPLE_ORDER_NV = 1000164006, - VK_DYNAMIC_STATE_EXCLUSIVE_SCISSOR_NV = 1000205001, - VK_DYNAMIC_STATE_FRAGMENT_SHADING_RATE_KHR = 1000226000, - VK_DYNAMIC_STATE_LINE_STIPPLE_EXT = 1000259000, - VK_DYNAMIC_STATE_VERTEX_INPUT_EXT = 1000352000, - VK_DYNAMIC_STATE_PATCH_CONTROL_POINTS_EXT = 1000377000, - VK_DYNAMIC_STATE_LOGIC_OP_EXT = 1000377003, - VK_DYNAMIC_STATE_COLOR_WRITE_ENABLE_EXT = 1000381000, - VK_DYNAMIC_STATE_CULL_MODE_EXT = VK_DYNAMIC_STATE_CULL_MODE, - VK_DYNAMIC_STATE_FRONT_FACE_EXT = VK_DYNAMIC_STATE_FRONT_FACE, - VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY_EXT = VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY, - VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT_EXT = VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT, - VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT = VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT, - VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE_EXT = VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE, - VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE_EXT = VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE, - VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE_EXT = VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE, - VK_DYNAMIC_STATE_DEPTH_COMPARE_OP_EXT = VK_DYNAMIC_STATE_DEPTH_COMPARE_OP, - VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE_EXT = VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE, - VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE_EXT = VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE, - VK_DYNAMIC_STATE_STENCIL_OP_EXT = VK_DYNAMIC_STATE_STENCIL_OP, - VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE_EXT = VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE, - VK_DYNAMIC_STATE_DEPTH_BIAS_ENABLE_EXT = VK_DYNAMIC_STATE_DEPTH_BIAS_ENABLE, - VK_DYNAMIC_STATE_PRIMITIVE_RESTART_ENABLE_EXT = VK_DYNAMIC_STATE_PRIMITIVE_RESTART_ENABLE, - VK_DYNAMIC_STATE_MAX_ENUM = 0x7FFFFFFF -} VkDynamicState; - -typedef enum VkFrontFace { - VK_FRONT_FACE_COUNTER_CLOCKWISE = 0, - VK_FRONT_FACE_CLOCKWISE = 1, - VK_FRONT_FACE_MAX_ENUM = 0x7FFFFFFF -} VkFrontFace; - -typedef enum VkVertexInputRate { - VK_VERTEX_INPUT_RATE_VERTEX = 0, - VK_VERTEX_INPUT_RATE_INSTANCE = 1, - VK_VERTEX_INPUT_RATE_MAX_ENUM = 0x7FFFFFFF -} VkVertexInputRate; - -typedef enum VkPrimitiveTopology { - VK_PRIMITIVE_TOPOLOGY_POINT_LIST = 0, - VK_PRIMITIVE_TOPOLOGY_LINE_LIST = 1, - VK_PRIMITIVE_TOPOLOGY_LINE_STRIP = 2, - VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST = 3, - VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP = 4, - VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN = 5, - VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY = 6, - VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY = 7, - VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY = 8, - VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY = 9, - VK_PRIMITIVE_TOPOLOGY_PATCH_LIST = 10, - VK_PRIMITIVE_TOPOLOGY_MAX_ENUM = 0x7FFFFFFF -} VkPrimitiveTopology; - -typedef enum VkPolygonMode { - VK_POLYGON_MODE_FILL = 0, - VK_POLYGON_MODE_LINE = 1, - VK_POLYGON_MODE_POINT = 2, - VK_POLYGON_MODE_FILL_RECTANGLE_NV = 1000153000, - VK_POLYGON_MODE_MAX_ENUM = 0x7FFFFFFF -} VkPolygonMode; - -typedef enum VkStencilOp { - VK_STENCIL_OP_KEEP = 0, - VK_STENCIL_OP_ZERO = 1, - VK_STENCIL_OP_REPLACE = 2, - VK_STENCIL_OP_INCREMENT_AND_CLAMP = 3, - VK_STENCIL_OP_DECREMENT_AND_CLAMP = 4, - VK_STENCIL_OP_INVERT = 5, - VK_STENCIL_OP_INCREMENT_AND_WRAP = 6, - VK_STENCIL_OP_DECREMENT_AND_WRAP = 7, - VK_STENCIL_OP_MAX_ENUM = 0x7FFFFFFF -} VkStencilOp; - -typedef enum VkLogicOp { - VK_LOGIC_OP_CLEAR = 0, - VK_LOGIC_OP_AND = 1, - VK_LOGIC_OP_AND_REVERSE = 2, - VK_LOGIC_OP_COPY = 3, - VK_LOGIC_OP_AND_INVERTED = 4, - VK_LOGIC_OP_NO_OP = 5, - VK_LOGIC_OP_XOR = 6, - VK_LOGIC_OP_OR = 7, - VK_LOGIC_OP_NOR = 8, - VK_LOGIC_OP_EQUIVALENT = 9, - VK_LOGIC_OP_INVERT = 10, - VK_LOGIC_OP_OR_REVERSE = 11, - VK_LOGIC_OP_COPY_INVERTED = 12, - VK_LOGIC_OP_OR_INVERTED = 13, - VK_LOGIC_OP_NAND = 14, - VK_LOGIC_OP_SET = 15, - VK_LOGIC_OP_MAX_ENUM = 0x7FFFFFFF -} VkLogicOp; - -typedef enum VkBorderColor { - VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK = 0, - VK_BORDER_COLOR_INT_TRANSPARENT_BLACK = 1, - VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK = 2, - VK_BORDER_COLOR_INT_OPAQUE_BLACK = 3, - VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE = 4, - VK_BORDER_COLOR_INT_OPAQUE_WHITE = 5, - VK_BORDER_COLOR_FLOAT_CUSTOM_EXT = 1000287003, - VK_BORDER_COLOR_INT_CUSTOM_EXT = 1000287004, - VK_BORDER_COLOR_MAX_ENUM = 0x7FFFFFFF -} VkBorderColor; - -typedef enum VkFilter { - VK_FILTER_NEAREST = 0, - VK_FILTER_LINEAR = 1, - VK_FILTER_CUBIC_IMG = 1000015000, - VK_FILTER_CUBIC_EXT = VK_FILTER_CUBIC_IMG, - VK_FILTER_MAX_ENUM = 0x7FFFFFFF -} VkFilter; - -typedef enum VkSamplerAddressMode { - VK_SAMPLER_ADDRESS_MODE_REPEAT = 0, - VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT = 1, - VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE = 2, - VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER = 3, - VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE = 4, - VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE_KHR = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE, - VK_SAMPLER_ADDRESS_MODE_MAX_ENUM = 0x7FFFFFFF -} VkSamplerAddressMode; - -typedef enum VkSamplerMipmapMode { - VK_SAMPLER_MIPMAP_MODE_NEAREST = 0, - VK_SAMPLER_MIPMAP_MODE_LINEAR = 1, - VK_SAMPLER_MIPMAP_MODE_MAX_ENUM = 0x7FFFFFFF -} VkSamplerMipmapMode; - -typedef enum VkDescriptorType { - VK_DESCRIPTOR_TYPE_SAMPLER = 0, - VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER = 1, - VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE = 2, - VK_DESCRIPTOR_TYPE_STORAGE_IMAGE = 3, - VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER = 4, - VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER = 5, - VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER = 6, - VK_DESCRIPTOR_TYPE_STORAGE_BUFFER = 7, - VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC = 8, - VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC = 9, - VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT = 10, - VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK = 1000138000, - VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR = 1000150000, - VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_NV = 1000165000, - VK_DESCRIPTOR_TYPE_MUTABLE_VALVE = 1000351000, - VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT = VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK, - VK_DESCRIPTOR_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkDescriptorType; - -typedef enum VkAttachmentLoadOp { - VK_ATTACHMENT_LOAD_OP_LOAD = 0, - VK_ATTACHMENT_LOAD_OP_CLEAR = 1, - VK_ATTACHMENT_LOAD_OP_DONT_CARE = 2, - VK_ATTACHMENT_LOAD_OP_NONE_EXT = 1000400000, - VK_ATTACHMENT_LOAD_OP_MAX_ENUM = 0x7FFFFFFF -} VkAttachmentLoadOp; - -typedef enum VkAttachmentStoreOp { - VK_ATTACHMENT_STORE_OP_STORE = 0, - VK_ATTACHMENT_STORE_OP_DONT_CARE = 1, - VK_ATTACHMENT_STORE_OP_NONE = 1000301000, - VK_ATTACHMENT_STORE_OP_NONE_KHR = VK_ATTACHMENT_STORE_OP_NONE, - VK_ATTACHMENT_STORE_OP_NONE_QCOM = VK_ATTACHMENT_STORE_OP_NONE, - VK_ATTACHMENT_STORE_OP_NONE_EXT = VK_ATTACHMENT_STORE_OP_NONE, - VK_ATTACHMENT_STORE_OP_MAX_ENUM = 0x7FFFFFFF -} VkAttachmentStoreOp; - -typedef enum VkPipelineBindPoint { - VK_PIPELINE_BIND_POINT_GRAPHICS = 0, - VK_PIPELINE_BIND_POINT_COMPUTE = 1, - VK_PIPELINE_BIND_POINT_RAY_TRACING_KHR = 1000165000, - VK_PIPELINE_BIND_POINT_SUBPASS_SHADING_HUAWEI = 1000369003, - VK_PIPELINE_BIND_POINT_RAY_TRACING_NV = VK_PIPELINE_BIND_POINT_RAY_TRACING_KHR, - VK_PIPELINE_BIND_POINT_MAX_ENUM = 0x7FFFFFFF -} VkPipelineBindPoint; - -typedef enum VkCommandBufferLevel { - VK_COMMAND_BUFFER_LEVEL_PRIMARY = 0, - VK_COMMAND_BUFFER_LEVEL_SECONDARY = 1, - VK_COMMAND_BUFFER_LEVEL_MAX_ENUM = 0x7FFFFFFF -} VkCommandBufferLevel; - -typedef enum VkIndexType { - VK_INDEX_TYPE_UINT16 = 0, - VK_INDEX_TYPE_UINT32 = 1, - VK_INDEX_TYPE_NONE_KHR = 1000165000, - VK_INDEX_TYPE_UINT8_EXT = 1000265000, - VK_INDEX_TYPE_NONE_NV = VK_INDEX_TYPE_NONE_KHR, - VK_INDEX_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkIndexType; - -typedef enum VkSubpassContents { - VK_SUBPASS_CONTENTS_INLINE = 0, - VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS = 1, - VK_SUBPASS_CONTENTS_MAX_ENUM = 0x7FFFFFFF -} VkSubpassContents; - -typedef enum VkAccessFlagBits { - VK_ACCESS_INDIRECT_COMMAND_READ_BIT = 0x00000001, - VK_ACCESS_INDEX_READ_BIT = 0x00000002, - VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT = 0x00000004, - VK_ACCESS_UNIFORM_READ_BIT = 0x00000008, - VK_ACCESS_INPUT_ATTACHMENT_READ_BIT = 0x00000010, - VK_ACCESS_SHADER_READ_BIT = 0x00000020, - VK_ACCESS_SHADER_WRITE_BIT = 0x00000040, - VK_ACCESS_COLOR_ATTACHMENT_READ_BIT = 0x00000080, - VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT = 0x00000100, - VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT = 0x00000200, - VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT = 0x00000400, - VK_ACCESS_TRANSFER_READ_BIT = 0x00000800, - VK_ACCESS_TRANSFER_WRITE_BIT = 0x00001000, - VK_ACCESS_HOST_READ_BIT = 0x00002000, - VK_ACCESS_HOST_WRITE_BIT = 0x00004000, - VK_ACCESS_MEMORY_READ_BIT = 0x00008000, - VK_ACCESS_MEMORY_WRITE_BIT = 0x00010000, - VK_ACCESS_NONE = 0, - VK_ACCESS_TRANSFORM_FEEDBACK_WRITE_BIT_EXT = 0x02000000, - VK_ACCESS_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT = 0x04000000, - VK_ACCESS_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT = 0x08000000, - VK_ACCESS_CONDITIONAL_RENDERING_READ_BIT_EXT = 0x00100000, - VK_ACCESS_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT = 0x00080000, - VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_KHR = 0x00200000, - VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_KHR = 0x00400000, - VK_ACCESS_FRAGMENT_DENSITY_MAP_READ_BIT_EXT = 0x01000000, - VK_ACCESS_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR = 0x00800000, - VK_ACCESS_COMMAND_PREPROCESS_READ_BIT_NV = 0x00020000, - VK_ACCESS_COMMAND_PREPROCESS_WRITE_BIT_NV = 0x00040000, - VK_ACCESS_SHADING_RATE_IMAGE_READ_BIT_NV = VK_ACCESS_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR, - VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_NV = VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_KHR, - VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_NV = VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_KHR, - VK_ACCESS_NONE_KHR = VK_ACCESS_NONE, - VK_ACCESS_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkAccessFlagBits; -typedef VkFlags VkAccessFlags; - -typedef enum VkImageAspectFlagBits { - VK_IMAGE_ASPECT_COLOR_BIT = 0x00000001, - VK_IMAGE_ASPECT_DEPTH_BIT = 0x00000002, - VK_IMAGE_ASPECT_STENCIL_BIT = 0x00000004, - VK_IMAGE_ASPECT_METADATA_BIT = 0x00000008, - VK_IMAGE_ASPECT_PLANE_0_BIT = 0x00000010, - VK_IMAGE_ASPECT_PLANE_1_BIT = 0x00000020, - VK_IMAGE_ASPECT_PLANE_2_BIT = 0x00000040, - VK_IMAGE_ASPECT_MEMORY_PLANE_0_BIT_EXT = 0x00000080, - VK_IMAGE_ASPECT_MEMORY_PLANE_1_BIT_EXT = 0x00000100, - VK_IMAGE_ASPECT_MEMORY_PLANE_2_BIT_EXT = 0x00000200, - VK_IMAGE_ASPECT_MEMORY_PLANE_3_BIT_EXT = 0x00000400, - VK_IMAGE_ASPECT_NONE_KHR = 0, - VK_IMAGE_ASPECT_PLANE_0_BIT_KHR = VK_IMAGE_ASPECT_PLANE_0_BIT, - VK_IMAGE_ASPECT_PLANE_1_BIT_KHR = VK_IMAGE_ASPECT_PLANE_1_BIT, - VK_IMAGE_ASPECT_PLANE_2_BIT_KHR = VK_IMAGE_ASPECT_PLANE_2_BIT, - VK_IMAGE_ASPECT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkImageAspectFlagBits; -typedef VkFlags VkImageAspectFlags; - -typedef enum VkFormatFeatureFlagBits { - VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT = 0x00000001, - VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT = 0x00000002, - VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT = 0x00000004, - VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT = 0x00000008, - VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT = 0x00000010, - VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT = 0x00000020, - VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT = 0x00000040, - VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT = 0x00000080, - VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT = 0x00000100, - VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT = 0x00000200, - VK_FORMAT_FEATURE_BLIT_SRC_BIT = 0x00000400, - VK_FORMAT_FEATURE_BLIT_DST_BIT = 0x00000800, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT = 0x00001000, - VK_FORMAT_FEATURE_TRANSFER_SRC_BIT = 0x00004000, - VK_FORMAT_FEATURE_TRANSFER_DST_BIT = 0x00008000, - VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT = 0x00020000, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT = 0x00040000, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT = 0x00080000, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT = 0x00100000, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT = 0x00200000, - VK_FORMAT_FEATURE_DISJOINT_BIT = 0x00400000, - VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT = 0x00800000, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT = 0x00010000, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG = 0x00002000, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_FORMAT_FEATURE_VIDEO_DECODE_OUTPUT_BIT_KHR = 0x02000000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_FORMAT_FEATURE_VIDEO_DECODE_DPB_BIT_KHR = 0x04000000, -#endif - VK_FORMAT_FEATURE_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR = 0x20000000, - VK_FORMAT_FEATURE_FRAGMENT_DENSITY_MAP_BIT_EXT = 0x01000000, - VK_FORMAT_FEATURE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = 0x40000000, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_FORMAT_FEATURE_VIDEO_ENCODE_INPUT_BIT_KHR = 0x08000000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_FORMAT_FEATURE_VIDEO_ENCODE_DPB_BIT_KHR = 0x10000000, -#endif - VK_FORMAT_FEATURE_TRANSFER_SRC_BIT_KHR = VK_FORMAT_FEATURE_TRANSFER_SRC_BIT, - VK_FORMAT_FEATURE_TRANSFER_DST_BIT_KHR = VK_FORMAT_FEATURE_TRANSFER_DST_BIT, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT, - VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT_KHR = VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT_KHR = VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT_KHR = VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT_KHR = VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT_KHR = VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT, - VK_FORMAT_FEATURE_DISJOINT_BIT_KHR = VK_FORMAT_FEATURE_DISJOINT_BIT, - VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT_KHR = VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT, - VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG, - VK_FORMAT_FEATURE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkFormatFeatureFlagBits; -typedef VkFlags VkFormatFeatureFlags; - -typedef enum VkImageCreateFlagBits { - VK_IMAGE_CREATE_SPARSE_BINDING_BIT = 0x00000001, - VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT = 0x00000002, - VK_IMAGE_CREATE_SPARSE_ALIASED_BIT = 0x00000004, - VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT = 0x00000008, - VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT = 0x00000010, - VK_IMAGE_CREATE_ALIAS_BIT = 0x00000400, - VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT = 0x00000040, - VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT = 0x00000020, - VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT = 0x00000080, - VK_IMAGE_CREATE_EXTENDED_USAGE_BIT = 0x00000100, - VK_IMAGE_CREATE_PROTECTED_BIT = 0x00000800, - VK_IMAGE_CREATE_DISJOINT_BIT = 0x00000200, - VK_IMAGE_CREATE_CORNER_SAMPLED_BIT_NV = 0x00002000, - VK_IMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT = 0x00001000, - VK_IMAGE_CREATE_SUBSAMPLED_BIT_EXT = 0x00004000, - VK_IMAGE_CREATE_FRAGMENT_DENSITY_MAP_OFFSET_BIT_QCOM = 0x00008000, - VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR = VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT, - VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT_KHR = VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT, - VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT_KHR = VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT, - VK_IMAGE_CREATE_EXTENDED_USAGE_BIT_KHR = VK_IMAGE_CREATE_EXTENDED_USAGE_BIT, - VK_IMAGE_CREATE_DISJOINT_BIT_KHR = VK_IMAGE_CREATE_DISJOINT_BIT, - VK_IMAGE_CREATE_ALIAS_BIT_KHR = VK_IMAGE_CREATE_ALIAS_BIT, - VK_IMAGE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkImageCreateFlagBits; -typedef VkFlags VkImageCreateFlags; - -typedef enum VkSampleCountFlagBits { - VK_SAMPLE_COUNT_1_BIT = 0x00000001, - VK_SAMPLE_COUNT_2_BIT = 0x00000002, - VK_SAMPLE_COUNT_4_BIT = 0x00000004, - VK_SAMPLE_COUNT_8_BIT = 0x00000008, - VK_SAMPLE_COUNT_16_BIT = 0x00000010, - VK_SAMPLE_COUNT_32_BIT = 0x00000020, - VK_SAMPLE_COUNT_64_BIT = 0x00000040, - VK_SAMPLE_COUNT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSampleCountFlagBits; -typedef VkFlags VkSampleCountFlags; - -typedef enum VkImageUsageFlagBits { - VK_IMAGE_USAGE_TRANSFER_SRC_BIT = 0x00000001, - VK_IMAGE_USAGE_TRANSFER_DST_BIT = 0x00000002, - VK_IMAGE_USAGE_SAMPLED_BIT = 0x00000004, - VK_IMAGE_USAGE_STORAGE_BIT = 0x00000008, - VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT = 0x00000010, - VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT = 0x00000020, - VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT = 0x00000040, - VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT = 0x00000080, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_USAGE_VIDEO_DECODE_DST_BIT_KHR = 0x00000400, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_USAGE_VIDEO_DECODE_SRC_BIT_KHR = 0x00000800, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_USAGE_VIDEO_DECODE_DPB_BIT_KHR = 0x00001000, -#endif - VK_IMAGE_USAGE_FRAGMENT_DENSITY_MAP_BIT_EXT = 0x00000200, - VK_IMAGE_USAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = 0x00000100, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_USAGE_VIDEO_ENCODE_DST_BIT_KHR = 0x00002000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_USAGE_VIDEO_ENCODE_SRC_BIT_KHR = 0x00004000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_IMAGE_USAGE_VIDEO_ENCODE_DPB_BIT_KHR = 0x00008000, -#endif - VK_IMAGE_USAGE_INVOCATION_MASK_BIT_HUAWEI = 0x00040000, - VK_IMAGE_USAGE_SHADING_RATE_IMAGE_BIT_NV = VK_IMAGE_USAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, - VK_IMAGE_USAGE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkImageUsageFlagBits; -typedef VkFlags VkImageUsageFlags; -typedef VkFlags VkInstanceCreateFlags; - -typedef enum VkMemoryHeapFlagBits { - VK_MEMORY_HEAP_DEVICE_LOCAL_BIT = 0x00000001, - VK_MEMORY_HEAP_MULTI_INSTANCE_BIT = 0x00000002, - VK_MEMORY_HEAP_MULTI_INSTANCE_BIT_KHR = VK_MEMORY_HEAP_MULTI_INSTANCE_BIT, - VK_MEMORY_HEAP_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkMemoryHeapFlagBits; -typedef VkFlags VkMemoryHeapFlags; - -typedef enum VkMemoryPropertyFlagBits { - VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT = 0x00000001, - VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT = 0x00000002, - VK_MEMORY_PROPERTY_HOST_COHERENT_BIT = 0x00000004, - VK_MEMORY_PROPERTY_HOST_CACHED_BIT = 0x00000008, - VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, - VK_MEMORY_PROPERTY_PROTECTED_BIT = 0x00000020, - VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD = 0x00000040, - VK_MEMORY_PROPERTY_DEVICE_UNCACHED_BIT_AMD = 0x00000080, - VK_MEMORY_PROPERTY_RDMA_CAPABLE_BIT_NV = 0x00000100, - VK_MEMORY_PROPERTY_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkMemoryPropertyFlagBits; -typedef VkFlags VkMemoryPropertyFlags; - -typedef enum VkQueueFlagBits { - VK_QUEUE_GRAPHICS_BIT = 0x00000001, - VK_QUEUE_COMPUTE_BIT = 0x00000002, - VK_QUEUE_TRANSFER_BIT = 0x00000004, - VK_QUEUE_SPARSE_BINDING_BIT = 0x00000008, - VK_QUEUE_PROTECTED_BIT = 0x00000010, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_QUEUE_VIDEO_DECODE_BIT_KHR = 0x00000020, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_QUEUE_VIDEO_ENCODE_BIT_KHR = 0x00000040, -#endif - VK_QUEUE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkQueueFlagBits; -typedef VkFlags VkQueueFlags; -typedef VkFlags VkDeviceCreateFlags; - -typedef enum VkDeviceQueueCreateFlagBits { - VK_DEVICE_QUEUE_CREATE_PROTECTED_BIT = 0x00000001, - VK_DEVICE_QUEUE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkDeviceQueueCreateFlagBits; -typedef VkFlags VkDeviceQueueCreateFlags; - -typedef enum VkPipelineStageFlagBits { - VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT = 0x00000001, - VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT = 0x00000002, - VK_PIPELINE_STAGE_VERTEX_INPUT_BIT = 0x00000004, - VK_PIPELINE_STAGE_VERTEX_SHADER_BIT = 0x00000008, - VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT = 0x00000010, - VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT = 0x00000020, - VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT = 0x00000040, - VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT = 0x00000080, - VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT = 0x00000100, - VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT = 0x00000200, - VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT = 0x00000400, - VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT = 0x00000800, - VK_PIPELINE_STAGE_TRANSFER_BIT = 0x00001000, - VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT = 0x00002000, - VK_PIPELINE_STAGE_HOST_BIT = 0x00004000, - VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT = 0x00008000, - VK_PIPELINE_STAGE_ALL_COMMANDS_BIT = 0x00010000, - VK_PIPELINE_STAGE_NONE = 0, - VK_PIPELINE_STAGE_TRANSFORM_FEEDBACK_BIT_EXT = 0x01000000, - VK_PIPELINE_STAGE_CONDITIONAL_RENDERING_BIT_EXT = 0x00040000, - VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_KHR = 0x02000000, - VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_KHR = 0x00200000, - VK_PIPELINE_STAGE_TASK_SHADER_BIT_NV = 0x00080000, - VK_PIPELINE_STAGE_MESH_SHADER_BIT_NV = 0x00100000, - VK_PIPELINE_STAGE_FRAGMENT_DENSITY_PROCESS_BIT_EXT = 0x00800000, - VK_PIPELINE_STAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = 0x00400000, - VK_PIPELINE_STAGE_COMMAND_PREPROCESS_BIT_NV = 0x00020000, - VK_PIPELINE_STAGE_SHADING_RATE_IMAGE_BIT_NV = VK_PIPELINE_STAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, - VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_NV = VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_KHR, - VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_NV = VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_KHR, - VK_PIPELINE_STAGE_NONE_KHR = VK_PIPELINE_STAGE_NONE, - VK_PIPELINE_STAGE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineStageFlagBits; -typedef VkFlags VkPipelineStageFlags; -typedef VkFlags VkMemoryMapFlags; - -typedef enum VkSparseMemoryBindFlagBits { - VK_SPARSE_MEMORY_BIND_METADATA_BIT = 0x00000001, - VK_SPARSE_MEMORY_BIND_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSparseMemoryBindFlagBits; -typedef VkFlags VkSparseMemoryBindFlags; - -typedef enum VkSparseImageFormatFlagBits { - VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT = 0x00000001, - VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT = 0x00000002, - VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT = 0x00000004, - VK_SPARSE_IMAGE_FORMAT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSparseImageFormatFlagBits; -typedef VkFlags VkSparseImageFormatFlags; - -typedef enum VkFenceCreateFlagBits { - VK_FENCE_CREATE_SIGNALED_BIT = 0x00000001, - VK_FENCE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkFenceCreateFlagBits; -typedef VkFlags VkFenceCreateFlags; -typedef VkFlags VkSemaphoreCreateFlags; - -typedef enum VkEventCreateFlagBits { - VK_EVENT_CREATE_DEVICE_ONLY_BIT = 0x00000001, - VK_EVENT_CREATE_DEVICE_ONLY_BIT_KHR = VK_EVENT_CREATE_DEVICE_ONLY_BIT, - VK_EVENT_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkEventCreateFlagBits; -typedef VkFlags VkEventCreateFlags; - -typedef enum VkQueryPipelineStatisticFlagBits { - VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT = 0x00000001, - VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT = 0x00000002, - VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT = 0x00000004, - VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT = 0x00000008, - VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT = 0x00000010, - VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT = 0x00000020, - VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT = 0x00000040, - VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT = 0x00000080, - VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT = 0x00000100, - VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT = 0x00000200, - VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT = 0x00000400, - VK_QUERY_PIPELINE_STATISTIC_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkQueryPipelineStatisticFlagBits; -typedef VkFlags VkQueryPipelineStatisticFlags; -typedef VkFlags VkQueryPoolCreateFlags; - -typedef enum VkQueryResultFlagBits { - VK_QUERY_RESULT_64_BIT = 0x00000001, - VK_QUERY_RESULT_WAIT_BIT = 0x00000002, - VK_QUERY_RESULT_WITH_AVAILABILITY_BIT = 0x00000004, - VK_QUERY_RESULT_PARTIAL_BIT = 0x00000008, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_QUERY_RESULT_WITH_STATUS_BIT_KHR = 0x00000010, -#endif - VK_QUERY_RESULT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkQueryResultFlagBits; -typedef VkFlags VkQueryResultFlags; - -typedef enum VkBufferCreateFlagBits { - VK_BUFFER_CREATE_SPARSE_BINDING_BIT = 0x00000001, - VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT = 0x00000002, - VK_BUFFER_CREATE_SPARSE_ALIASED_BIT = 0x00000004, - VK_BUFFER_CREATE_PROTECTED_BIT = 0x00000008, - VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT = 0x00000010, - VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_EXT = VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT, - VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR = VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT, - VK_BUFFER_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkBufferCreateFlagBits; -typedef VkFlags VkBufferCreateFlags; - -typedef enum VkBufferUsageFlagBits { - VK_BUFFER_USAGE_TRANSFER_SRC_BIT = 0x00000001, - VK_BUFFER_USAGE_TRANSFER_DST_BIT = 0x00000002, - VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT = 0x00000004, - VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT = 0x00000008, - VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT = 0x00000010, - VK_BUFFER_USAGE_STORAGE_BUFFER_BIT = 0x00000020, - VK_BUFFER_USAGE_INDEX_BUFFER_BIT = 0x00000040, - VK_BUFFER_USAGE_VERTEX_BUFFER_BIT = 0x00000080, - VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT = 0x00000100, - VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT = 0x00020000, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_BUFFER_USAGE_VIDEO_DECODE_SRC_BIT_KHR = 0x00002000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_BUFFER_USAGE_VIDEO_DECODE_DST_BIT_KHR = 0x00004000, -#endif - VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_BUFFER_BIT_EXT = 0x00000800, - VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_COUNTER_BUFFER_BIT_EXT = 0x00001000, - VK_BUFFER_USAGE_CONDITIONAL_RENDERING_BIT_EXT = 0x00000200, - VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_BIT_KHR = 0x00080000, - VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_STORAGE_BIT_KHR = 0x00100000, - VK_BUFFER_USAGE_SHADER_BINDING_TABLE_BIT_KHR = 0x00000400, -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_BUFFER_USAGE_VIDEO_ENCODE_DST_BIT_KHR = 0x00008000, -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS - VK_BUFFER_USAGE_VIDEO_ENCODE_SRC_BIT_KHR = 0x00010000, -#endif - VK_BUFFER_USAGE_RAY_TRACING_BIT_NV = VK_BUFFER_USAGE_SHADER_BINDING_TABLE_BIT_KHR, - VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT_EXT = VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT, - VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT_KHR = VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT, - VK_BUFFER_USAGE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkBufferUsageFlagBits; -typedef VkFlags VkBufferUsageFlags; -typedef VkFlags VkBufferViewCreateFlags; - -typedef enum VkImageViewCreateFlagBits { - VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DYNAMIC_BIT_EXT = 0x00000001, - VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DEFERRED_BIT_EXT = 0x00000002, - VK_IMAGE_VIEW_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkImageViewCreateFlagBits; -typedef VkFlags VkImageViewCreateFlags; -typedef VkFlags VkShaderModuleCreateFlags; - -typedef enum VkPipelineCacheCreateFlagBits { - VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT = 0x00000001, - VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT_EXT = VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT, - VK_PIPELINE_CACHE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineCacheCreateFlagBits; -typedef VkFlags VkPipelineCacheCreateFlags; - -typedef enum VkColorComponentFlagBits { - VK_COLOR_COMPONENT_R_BIT = 0x00000001, - VK_COLOR_COMPONENT_G_BIT = 0x00000002, - VK_COLOR_COMPONENT_B_BIT = 0x00000004, - VK_COLOR_COMPONENT_A_BIT = 0x00000008, - VK_COLOR_COMPONENT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkColorComponentFlagBits; -typedef VkFlags VkColorComponentFlags; - -typedef enum VkPipelineCreateFlagBits { - VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT = 0x00000001, - VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT = 0x00000002, - VK_PIPELINE_CREATE_DERIVATIVE_BIT = 0x00000004, - VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT = 0x00000008, - VK_PIPELINE_CREATE_DISPATCH_BASE_BIT = 0x00000010, - VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT = 0x00000100, - VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT = 0x00000200, - VK_PIPELINE_CREATE_RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = 0x00200000, - VK_PIPELINE_CREATE_RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_BIT_EXT = 0x00400000, - VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_ANY_HIT_SHADERS_BIT_KHR = 0x00004000, - VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS_BIT_KHR = 0x00008000, - VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_MISS_SHADERS_BIT_KHR = 0x00010000, - VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_INTERSECTION_SHADERS_BIT_KHR = 0x00020000, - VK_PIPELINE_CREATE_RAY_TRACING_SKIP_TRIANGLES_BIT_KHR = 0x00001000, - VK_PIPELINE_CREATE_RAY_TRACING_SKIP_AABBS_BIT_KHR = 0x00002000, - VK_PIPELINE_CREATE_RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY_BIT_KHR = 0x00080000, - VK_PIPELINE_CREATE_DEFER_COMPILE_BIT_NV = 0x00000020, - VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR = 0x00000040, - VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR = 0x00000080, - VK_PIPELINE_CREATE_INDIRECT_BINDABLE_BIT_NV = 0x00040000, - VK_PIPELINE_CREATE_LIBRARY_BIT_KHR = 0x00000800, - VK_PIPELINE_CREATE_RAY_TRACING_ALLOW_MOTION_BIT_NV = 0x00100000, - VK_PIPELINE_CREATE_DISPATCH_BASE = VK_PIPELINE_CREATE_DISPATCH_BASE_BIT, - VK_PIPELINE_RASTERIZATION_STATE_CREATE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = VK_PIPELINE_CREATE_RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, - VK_PIPELINE_RASTERIZATION_STATE_CREATE_FRAGMENT_DENSITY_MAP_ATTACHMENT_BIT_EXT = VK_PIPELINE_CREATE_RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_BIT_EXT, - VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT_KHR = VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT, - VK_PIPELINE_CREATE_DISPATCH_BASE_KHR = VK_PIPELINE_CREATE_DISPATCH_BASE, - VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT = VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT, - VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT_EXT = VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT, - VK_PIPELINE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineCreateFlagBits; -typedef VkFlags VkPipelineCreateFlags; - -typedef enum VkPipelineShaderStageCreateFlagBits { - VK_PIPELINE_SHADER_STAGE_CREATE_ALLOW_VARYING_SUBGROUP_SIZE_BIT = 0x00000001, - VK_PIPELINE_SHADER_STAGE_CREATE_REQUIRE_FULL_SUBGROUPS_BIT = 0x00000002, - VK_PIPELINE_SHADER_STAGE_CREATE_ALLOW_VARYING_SUBGROUP_SIZE_BIT_EXT = VK_PIPELINE_SHADER_STAGE_CREATE_ALLOW_VARYING_SUBGROUP_SIZE_BIT, - VK_PIPELINE_SHADER_STAGE_CREATE_REQUIRE_FULL_SUBGROUPS_BIT_EXT = VK_PIPELINE_SHADER_STAGE_CREATE_REQUIRE_FULL_SUBGROUPS_BIT, - VK_PIPELINE_SHADER_STAGE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineShaderStageCreateFlagBits; -typedef VkFlags VkPipelineShaderStageCreateFlags; - -typedef enum VkShaderStageFlagBits { - VK_SHADER_STAGE_VERTEX_BIT = 0x00000001, - VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT = 0x00000002, - VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT = 0x00000004, - VK_SHADER_STAGE_GEOMETRY_BIT = 0x00000008, - VK_SHADER_STAGE_FRAGMENT_BIT = 0x00000010, - VK_SHADER_STAGE_COMPUTE_BIT = 0x00000020, - VK_SHADER_STAGE_ALL_GRAPHICS = 0x0000001F, - VK_SHADER_STAGE_ALL = 0x7FFFFFFF, - VK_SHADER_STAGE_RAYGEN_BIT_KHR = 0x00000100, - VK_SHADER_STAGE_ANY_HIT_BIT_KHR = 0x00000200, - VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR = 0x00000400, - VK_SHADER_STAGE_MISS_BIT_KHR = 0x00000800, - VK_SHADER_STAGE_INTERSECTION_BIT_KHR = 0x00001000, - VK_SHADER_STAGE_CALLABLE_BIT_KHR = 0x00002000, - VK_SHADER_STAGE_TASK_BIT_NV = 0x00000040, - VK_SHADER_STAGE_MESH_BIT_NV = 0x00000080, - VK_SHADER_STAGE_SUBPASS_SHADING_BIT_HUAWEI = 0x00004000, - VK_SHADER_STAGE_RAYGEN_BIT_NV = VK_SHADER_STAGE_RAYGEN_BIT_KHR, - VK_SHADER_STAGE_ANY_HIT_BIT_NV = VK_SHADER_STAGE_ANY_HIT_BIT_KHR, - VK_SHADER_STAGE_CLOSEST_HIT_BIT_NV = VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR, - VK_SHADER_STAGE_MISS_BIT_NV = VK_SHADER_STAGE_MISS_BIT_KHR, - VK_SHADER_STAGE_INTERSECTION_BIT_NV = VK_SHADER_STAGE_INTERSECTION_BIT_KHR, - VK_SHADER_STAGE_CALLABLE_BIT_NV = VK_SHADER_STAGE_CALLABLE_BIT_KHR, - VK_SHADER_STAGE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkShaderStageFlagBits; - -typedef enum VkCullModeFlagBits { - VK_CULL_MODE_NONE = 0, - VK_CULL_MODE_FRONT_BIT = 0x00000001, - VK_CULL_MODE_BACK_BIT = 0x00000002, - VK_CULL_MODE_FRONT_AND_BACK = 0x00000003, - VK_CULL_MODE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkCullModeFlagBits; -typedef VkFlags VkCullModeFlags; -typedef VkFlags VkPipelineVertexInputStateCreateFlags; -typedef VkFlags VkPipelineInputAssemblyStateCreateFlags; -typedef VkFlags VkPipelineTessellationStateCreateFlags; -typedef VkFlags VkPipelineViewportStateCreateFlags; -typedef VkFlags VkPipelineRasterizationStateCreateFlags; -typedef VkFlags VkPipelineMultisampleStateCreateFlags; - -typedef enum VkPipelineDepthStencilStateCreateFlagBits { - VK_PIPELINE_DEPTH_STENCIL_STATE_CREATE_RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_BIT_ARM = 0x00000001, - VK_PIPELINE_DEPTH_STENCIL_STATE_CREATE_RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_BIT_ARM = 0x00000002, - VK_PIPELINE_DEPTH_STENCIL_STATE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineDepthStencilStateCreateFlagBits; -typedef VkFlags VkPipelineDepthStencilStateCreateFlags; - -typedef enum VkPipelineColorBlendStateCreateFlagBits { - VK_PIPELINE_COLOR_BLEND_STATE_CREATE_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_BIT_ARM = 0x00000001, - VK_PIPELINE_COLOR_BLEND_STATE_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineColorBlendStateCreateFlagBits; -typedef VkFlags VkPipelineColorBlendStateCreateFlags; -typedef VkFlags VkPipelineDynamicStateCreateFlags; -typedef VkFlags VkPipelineLayoutCreateFlags; -typedef VkFlags VkShaderStageFlags; - -typedef enum VkSamplerCreateFlagBits { - VK_SAMPLER_CREATE_SUBSAMPLED_BIT_EXT = 0x00000001, - VK_SAMPLER_CREATE_SUBSAMPLED_COARSE_RECONSTRUCTION_BIT_EXT = 0x00000002, - VK_SAMPLER_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSamplerCreateFlagBits; -typedef VkFlags VkSamplerCreateFlags; - -typedef enum VkDescriptorPoolCreateFlagBits { - VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT = 0x00000001, - VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT = 0x00000002, - VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_VALVE = 0x00000004, - VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT_EXT = VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT, - VK_DESCRIPTOR_POOL_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkDescriptorPoolCreateFlagBits; -typedef VkFlags VkDescriptorPoolCreateFlags; -typedef VkFlags VkDescriptorPoolResetFlags; - -typedef enum VkDescriptorSetLayoutCreateFlagBits { - VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT = 0x00000002, - VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR = 0x00000001, - VK_DESCRIPTOR_SET_LAYOUT_CREATE_HOST_ONLY_POOL_BIT_VALVE = 0x00000004, - VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT = VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT, - VK_DESCRIPTOR_SET_LAYOUT_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkDescriptorSetLayoutCreateFlagBits; -typedef VkFlags VkDescriptorSetLayoutCreateFlags; - -typedef enum VkAttachmentDescriptionFlagBits { - VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT = 0x00000001, - VK_ATTACHMENT_DESCRIPTION_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkAttachmentDescriptionFlagBits; -typedef VkFlags VkAttachmentDescriptionFlags; - -typedef enum VkDependencyFlagBits { - VK_DEPENDENCY_BY_REGION_BIT = 0x00000001, - VK_DEPENDENCY_DEVICE_GROUP_BIT = 0x00000004, - VK_DEPENDENCY_VIEW_LOCAL_BIT = 0x00000002, - VK_DEPENDENCY_VIEW_LOCAL_BIT_KHR = VK_DEPENDENCY_VIEW_LOCAL_BIT, - VK_DEPENDENCY_DEVICE_GROUP_BIT_KHR = VK_DEPENDENCY_DEVICE_GROUP_BIT, - VK_DEPENDENCY_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkDependencyFlagBits; -typedef VkFlags VkDependencyFlags; - -typedef enum VkFramebufferCreateFlagBits { - VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT = 0x00000001, - VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT_KHR = VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT, - VK_FRAMEBUFFER_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkFramebufferCreateFlagBits; -typedef VkFlags VkFramebufferCreateFlags; - -typedef enum VkRenderPassCreateFlagBits { - VK_RENDER_PASS_CREATE_TRANSFORM_BIT_QCOM = 0x00000002, - VK_RENDER_PASS_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkRenderPassCreateFlagBits; -typedef VkFlags VkRenderPassCreateFlags; - -typedef enum VkSubpassDescriptionFlagBits { - VK_SUBPASS_DESCRIPTION_PER_VIEW_ATTRIBUTES_BIT_NVX = 0x00000001, - VK_SUBPASS_DESCRIPTION_PER_VIEW_POSITION_X_ONLY_BIT_NVX = 0x00000002, - VK_SUBPASS_DESCRIPTION_FRAGMENT_REGION_BIT_QCOM = 0x00000004, - VK_SUBPASS_DESCRIPTION_SHADER_RESOLVE_BIT_QCOM = 0x00000008, - VK_SUBPASS_DESCRIPTION_RASTERIZATION_ORDER_ATTACHMENT_COLOR_ACCESS_BIT_ARM = 0x00000010, - VK_SUBPASS_DESCRIPTION_RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_BIT_ARM = 0x00000020, - VK_SUBPASS_DESCRIPTION_RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_BIT_ARM = 0x00000040, - VK_SUBPASS_DESCRIPTION_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSubpassDescriptionFlagBits; -typedef VkFlags VkSubpassDescriptionFlags; - -typedef enum VkCommandPoolCreateFlagBits { - VK_COMMAND_POOL_CREATE_TRANSIENT_BIT = 0x00000001, - VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT = 0x00000002, - VK_COMMAND_POOL_CREATE_PROTECTED_BIT = 0x00000004, - VK_COMMAND_POOL_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkCommandPoolCreateFlagBits; -typedef VkFlags VkCommandPoolCreateFlags; - -typedef enum VkCommandPoolResetFlagBits { - VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT = 0x00000001, - VK_COMMAND_POOL_RESET_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkCommandPoolResetFlagBits; -typedef VkFlags VkCommandPoolResetFlags; - -typedef enum VkCommandBufferUsageFlagBits { - VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT = 0x00000001, - VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT = 0x00000002, - VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT = 0x00000004, - VK_COMMAND_BUFFER_USAGE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkCommandBufferUsageFlagBits; -typedef VkFlags VkCommandBufferUsageFlags; - -typedef enum VkQueryControlFlagBits { - VK_QUERY_CONTROL_PRECISE_BIT = 0x00000001, - VK_QUERY_CONTROL_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkQueryControlFlagBits; -typedef VkFlags VkQueryControlFlags; - -typedef enum VkCommandBufferResetFlagBits { - VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT = 0x00000001, - VK_COMMAND_BUFFER_RESET_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkCommandBufferResetFlagBits; -typedef VkFlags VkCommandBufferResetFlags; - -typedef enum VkStencilFaceFlagBits { - VK_STENCIL_FACE_FRONT_BIT = 0x00000001, - VK_STENCIL_FACE_BACK_BIT = 0x00000002, - VK_STENCIL_FACE_FRONT_AND_BACK = 0x00000003, - VK_STENCIL_FRONT_AND_BACK = VK_STENCIL_FACE_FRONT_AND_BACK, - VK_STENCIL_FACE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkStencilFaceFlagBits; -typedef VkFlags VkStencilFaceFlags; -typedef struct VkExtent2D { - uint32_t width; - uint32_t height; -} VkExtent2D; - -typedef struct VkExtent3D { - uint32_t width; - uint32_t height; - uint32_t depth; -} VkExtent3D; - -typedef struct VkOffset2D { - int32_t x; - int32_t y; -} VkOffset2D; - -typedef struct VkOffset3D { - int32_t x; - int32_t y; - int32_t z; -} VkOffset3D; - -typedef struct VkRect2D { - VkOffset2D offset; - VkExtent2D extent; -} VkRect2D; - -typedef struct VkBaseInStructure { - VkStructureType sType; - const struct VkBaseInStructure* pNext; -} VkBaseInStructure; - -typedef struct VkBaseOutStructure { - VkStructureType sType; - struct VkBaseOutStructure* pNext; -} VkBaseOutStructure; - -typedef struct VkBufferMemoryBarrier { - VkStructureType sType; - const void* pNext; - VkAccessFlags srcAccessMask; - VkAccessFlags dstAccessMask; - uint32_t srcQueueFamilyIndex; - uint32_t dstQueueFamilyIndex; - VkBuffer buffer; - VkDeviceSize offset; - VkDeviceSize size; -} VkBufferMemoryBarrier; - -typedef struct VkDispatchIndirectCommand { - uint32_t x; - uint32_t y; - uint32_t z; -} VkDispatchIndirectCommand; - -typedef struct VkDrawIndexedIndirectCommand { - uint32_t indexCount; - uint32_t instanceCount; - uint32_t firstIndex; - int32_t vertexOffset; - uint32_t firstInstance; -} VkDrawIndexedIndirectCommand; - -typedef struct VkDrawIndirectCommand { - uint32_t vertexCount; - uint32_t instanceCount; - uint32_t firstVertex; - uint32_t firstInstance; -} VkDrawIndirectCommand; - -typedef struct VkImageSubresourceRange { - VkImageAspectFlags aspectMask; - uint32_t baseMipLevel; - uint32_t levelCount; - uint32_t baseArrayLayer; - uint32_t layerCount; -} VkImageSubresourceRange; - -typedef struct VkImageMemoryBarrier { - VkStructureType sType; - const void* pNext; - VkAccessFlags srcAccessMask; - VkAccessFlags dstAccessMask; - VkImageLayout oldLayout; - VkImageLayout newLayout; - uint32_t srcQueueFamilyIndex; - uint32_t dstQueueFamilyIndex; - VkImage image; - VkImageSubresourceRange subresourceRange; -} VkImageMemoryBarrier; - -typedef struct VkMemoryBarrier { - VkStructureType sType; - const void* pNext; - VkAccessFlags srcAccessMask; - VkAccessFlags dstAccessMask; -} VkMemoryBarrier; - -typedef struct VkPipelineCacheHeaderVersionOne { - uint32_t headerSize; - VkPipelineCacheHeaderVersion headerVersion; - uint32_t vendorID; - uint32_t deviceID; - uint8_t pipelineCacheUUID[VK_UUID_SIZE]; -} VkPipelineCacheHeaderVersionOne; - -typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( - void* pUserData, - size_t size, - size_t alignment, - VkSystemAllocationScope allocationScope); - -typedef void (VKAPI_PTR *PFN_vkFreeFunction)( - void* pUserData, - void* pMemory); - -typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( - void* pUserData, - size_t size, - VkInternalAllocationType allocationType, - VkSystemAllocationScope allocationScope); - -typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( - void* pUserData, - size_t size, - VkInternalAllocationType allocationType, - VkSystemAllocationScope allocationScope); - -typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( - void* pUserData, - void* pOriginal, - size_t size, - size_t alignment, - VkSystemAllocationScope allocationScope); - -typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); -typedef struct VkAllocationCallbacks { - void* pUserData; - PFN_vkAllocationFunction pfnAllocation; - PFN_vkReallocationFunction pfnReallocation; - PFN_vkFreeFunction pfnFree; - PFN_vkInternalAllocationNotification pfnInternalAllocation; - PFN_vkInternalFreeNotification pfnInternalFree; -} VkAllocationCallbacks; - -typedef struct VkApplicationInfo { - VkStructureType sType; - const void* pNext; - const char* pApplicationName; - uint32_t applicationVersion; - const char* pEngineName; - uint32_t engineVersion; - uint32_t apiVersion; -} VkApplicationInfo; - -typedef struct VkFormatProperties { - VkFormatFeatureFlags linearTilingFeatures; - VkFormatFeatureFlags optimalTilingFeatures; - VkFormatFeatureFlags bufferFeatures; -} VkFormatProperties; - -typedef struct VkImageFormatProperties { - VkExtent3D maxExtent; - uint32_t maxMipLevels; - uint32_t maxArrayLayers; - VkSampleCountFlags sampleCounts; - VkDeviceSize maxResourceSize; -} VkImageFormatProperties; - -typedef struct VkInstanceCreateInfo { - VkStructureType sType; - const void* pNext; - VkInstanceCreateFlags flags; - const VkApplicationInfo* pApplicationInfo; - uint32_t enabledLayerCount; - const char* const* ppEnabledLayerNames; - uint32_t enabledExtensionCount; - const char* const* ppEnabledExtensionNames; -} VkInstanceCreateInfo; - -typedef struct VkMemoryHeap { - VkDeviceSize size; - VkMemoryHeapFlags flags; -} VkMemoryHeap; - -typedef struct VkMemoryType { - VkMemoryPropertyFlags propertyFlags; - uint32_t heapIndex; -} VkMemoryType; - -typedef struct VkPhysicalDeviceFeatures { - VkBool32 robustBufferAccess; - VkBool32 fullDrawIndexUint32; - VkBool32 imageCubeArray; - VkBool32 independentBlend; - VkBool32 geometryShader; - VkBool32 tessellationShader; - VkBool32 sampleRateShading; - VkBool32 dualSrcBlend; - VkBool32 logicOp; - VkBool32 multiDrawIndirect; - VkBool32 drawIndirectFirstInstance; - VkBool32 depthClamp; - VkBool32 depthBiasClamp; - VkBool32 fillModeNonSolid; - VkBool32 depthBounds; - VkBool32 wideLines; - VkBool32 largePoints; - VkBool32 alphaToOne; - VkBool32 multiViewport; - VkBool32 samplerAnisotropy; - VkBool32 textureCompressionETC2; - VkBool32 textureCompressionASTC_LDR; - VkBool32 textureCompressionBC; - VkBool32 occlusionQueryPrecise; - VkBool32 pipelineStatisticsQuery; - VkBool32 vertexPipelineStoresAndAtomics; - VkBool32 fragmentStoresAndAtomics; - VkBool32 shaderTessellationAndGeometryPointSize; - VkBool32 shaderImageGatherExtended; - VkBool32 shaderStorageImageExtendedFormats; - VkBool32 shaderStorageImageMultisample; - VkBool32 shaderStorageImageReadWithoutFormat; - VkBool32 shaderStorageImageWriteWithoutFormat; - VkBool32 shaderUniformBufferArrayDynamicIndexing; - VkBool32 shaderSampledImageArrayDynamicIndexing; - VkBool32 shaderStorageBufferArrayDynamicIndexing; - VkBool32 shaderStorageImageArrayDynamicIndexing; - VkBool32 shaderClipDistance; - VkBool32 shaderCullDistance; - VkBool32 shaderFloat64; - VkBool32 shaderInt64; - VkBool32 shaderInt16; - VkBool32 shaderResourceResidency; - VkBool32 shaderResourceMinLod; - VkBool32 sparseBinding; - VkBool32 sparseResidencyBuffer; - VkBool32 sparseResidencyImage2D; - VkBool32 sparseResidencyImage3D; - VkBool32 sparseResidency2Samples; - VkBool32 sparseResidency4Samples; - VkBool32 sparseResidency8Samples; - VkBool32 sparseResidency16Samples; - VkBool32 sparseResidencyAliased; - VkBool32 variableMultisampleRate; - VkBool32 inheritedQueries; -} VkPhysicalDeviceFeatures; - -typedef struct VkPhysicalDeviceLimits { - uint32_t maxImageDimension1D; - uint32_t maxImageDimension2D; - uint32_t maxImageDimension3D; - uint32_t maxImageDimensionCube; - uint32_t maxImageArrayLayers; - uint32_t maxTexelBufferElements; - uint32_t maxUniformBufferRange; - uint32_t maxStorageBufferRange; - uint32_t maxPushConstantsSize; - uint32_t maxMemoryAllocationCount; - uint32_t maxSamplerAllocationCount; - VkDeviceSize bufferImageGranularity; - VkDeviceSize sparseAddressSpaceSize; - uint32_t maxBoundDescriptorSets; - uint32_t maxPerStageDescriptorSamplers; - uint32_t maxPerStageDescriptorUniformBuffers; - uint32_t maxPerStageDescriptorStorageBuffers; - uint32_t maxPerStageDescriptorSampledImages; - uint32_t maxPerStageDescriptorStorageImages; - uint32_t maxPerStageDescriptorInputAttachments; - uint32_t maxPerStageResources; - uint32_t maxDescriptorSetSamplers; - uint32_t maxDescriptorSetUniformBuffers; - uint32_t maxDescriptorSetUniformBuffersDynamic; - uint32_t maxDescriptorSetStorageBuffers; - uint32_t maxDescriptorSetStorageBuffersDynamic; - uint32_t maxDescriptorSetSampledImages; - uint32_t maxDescriptorSetStorageImages; - uint32_t maxDescriptorSetInputAttachments; - uint32_t maxVertexInputAttributes; - uint32_t maxVertexInputBindings; - uint32_t maxVertexInputAttributeOffset; - uint32_t maxVertexInputBindingStride; - uint32_t maxVertexOutputComponents; - uint32_t maxTessellationGenerationLevel; - uint32_t maxTessellationPatchSize; - uint32_t maxTessellationControlPerVertexInputComponents; - uint32_t maxTessellationControlPerVertexOutputComponents; - uint32_t maxTessellationControlPerPatchOutputComponents; - uint32_t maxTessellationControlTotalOutputComponents; - uint32_t maxTessellationEvaluationInputComponents; - uint32_t maxTessellationEvaluationOutputComponents; - uint32_t maxGeometryShaderInvocations; - uint32_t maxGeometryInputComponents; - uint32_t maxGeometryOutputComponents; - uint32_t maxGeometryOutputVertices; - uint32_t maxGeometryTotalOutputComponents; - uint32_t maxFragmentInputComponents; - uint32_t maxFragmentOutputAttachments; - uint32_t maxFragmentDualSrcAttachments; - uint32_t maxFragmentCombinedOutputResources; - uint32_t maxComputeSharedMemorySize; - uint32_t maxComputeWorkGroupCount[3]; - uint32_t maxComputeWorkGroupInvocations; - uint32_t maxComputeWorkGroupSize[3]; - uint32_t subPixelPrecisionBits; - uint32_t subTexelPrecisionBits; - uint32_t mipmapPrecisionBits; - uint32_t maxDrawIndexedIndexValue; - uint32_t maxDrawIndirectCount; - float maxSamplerLodBias; - float maxSamplerAnisotropy; - uint32_t maxViewports; - uint32_t maxViewportDimensions[2]; - float viewportBoundsRange[2]; - uint32_t viewportSubPixelBits; - size_t minMemoryMapAlignment; - VkDeviceSize minTexelBufferOffsetAlignment; - VkDeviceSize minUniformBufferOffsetAlignment; - VkDeviceSize minStorageBufferOffsetAlignment; - int32_t minTexelOffset; - uint32_t maxTexelOffset; - int32_t minTexelGatherOffset; - uint32_t maxTexelGatherOffset; - float minInterpolationOffset; - float maxInterpolationOffset; - uint32_t subPixelInterpolationOffsetBits; - uint32_t maxFramebufferWidth; - uint32_t maxFramebufferHeight; - uint32_t maxFramebufferLayers; - VkSampleCountFlags framebufferColorSampleCounts; - VkSampleCountFlags framebufferDepthSampleCounts; - VkSampleCountFlags framebufferStencilSampleCounts; - VkSampleCountFlags framebufferNoAttachmentsSampleCounts; - uint32_t maxColorAttachments; - VkSampleCountFlags sampledImageColorSampleCounts; - VkSampleCountFlags sampledImageIntegerSampleCounts; - VkSampleCountFlags sampledImageDepthSampleCounts; - VkSampleCountFlags sampledImageStencilSampleCounts; - VkSampleCountFlags storageImageSampleCounts; - uint32_t maxSampleMaskWords; - VkBool32 timestampComputeAndGraphics; - float timestampPeriod; - uint32_t maxClipDistances; - uint32_t maxCullDistances; - uint32_t maxCombinedClipAndCullDistances; - uint32_t discreteQueuePriorities; - float pointSizeRange[2]; - float lineWidthRange[2]; - float pointSizeGranularity; - float lineWidthGranularity; - VkBool32 strictLines; - VkBool32 standardSampleLocations; - VkDeviceSize optimalBufferCopyOffsetAlignment; - VkDeviceSize optimalBufferCopyRowPitchAlignment; - VkDeviceSize nonCoherentAtomSize; -} VkPhysicalDeviceLimits; - -typedef struct VkPhysicalDeviceMemoryProperties { - uint32_t memoryTypeCount; - VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES]; - uint32_t memoryHeapCount; - VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS]; -} VkPhysicalDeviceMemoryProperties; - -typedef struct VkPhysicalDeviceSparseProperties { - VkBool32 residencyStandard2DBlockShape; - VkBool32 residencyStandard2DMultisampleBlockShape; - VkBool32 residencyStandard3DBlockShape; - VkBool32 residencyAlignedMipSize; - VkBool32 residencyNonResidentStrict; -} VkPhysicalDeviceSparseProperties; - -typedef struct VkPhysicalDeviceProperties { - uint32_t apiVersion; - uint32_t driverVersion; - uint32_t vendorID; - uint32_t deviceID; - VkPhysicalDeviceType deviceType; - char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE]; - uint8_t pipelineCacheUUID[VK_UUID_SIZE]; - VkPhysicalDeviceLimits limits; - VkPhysicalDeviceSparseProperties sparseProperties; -} VkPhysicalDeviceProperties; - -typedef struct VkQueueFamilyProperties { - VkQueueFlags queueFlags; - uint32_t queueCount; - uint32_t timestampValidBits; - VkExtent3D minImageTransferGranularity; -} VkQueueFamilyProperties; - -typedef struct VkDeviceQueueCreateInfo { - VkStructureType sType; - const void* pNext; - VkDeviceQueueCreateFlags flags; - uint32_t queueFamilyIndex; - uint32_t queueCount; - const float* pQueuePriorities; -} VkDeviceQueueCreateInfo; - -typedef struct VkDeviceCreateInfo { - VkStructureType sType; - const void* pNext; - VkDeviceCreateFlags flags; - uint32_t queueCreateInfoCount; - const VkDeviceQueueCreateInfo* pQueueCreateInfos; - uint32_t enabledLayerCount; - const char* const* ppEnabledLayerNames; - uint32_t enabledExtensionCount; - const char* const* ppEnabledExtensionNames; - const VkPhysicalDeviceFeatures* pEnabledFeatures; -} VkDeviceCreateInfo; - -typedef struct VkExtensionProperties { - char extensionName[VK_MAX_EXTENSION_NAME_SIZE]; - uint32_t specVersion; -} VkExtensionProperties; - -typedef struct VkLayerProperties { - char layerName[VK_MAX_EXTENSION_NAME_SIZE]; - uint32_t specVersion; - uint32_t implementationVersion; - char description[VK_MAX_DESCRIPTION_SIZE]; -} VkLayerProperties; - -typedef struct VkSubmitInfo { - VkStructureType sType; - const void* pNext; - uint32_t waitSemaphoreCount; - const VkSemaphore* pWaitSemaphores; - const VkPipelineStageFlags* pWaitDstStageMask; - uint32_t commandBufferCount; - const VkCommandBuffer* pCommandBuffers; - uint32_t signalSemaphoreCount; - const VkSemaphore* pSignalSemaphores; -} VkSubmitInfo; - -typedef struct VkMappedMemoryRange { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; - VkDeviceSize offset; - VkDeviceSize size; -} VkMappedMemoryRange; - -typedef struct VkMemoryAllocateInfo { - VkStructureType sType; - const void* pNext; - VkDeviceSize allocationSize; - uint32_t memoryTypeIndex; -} VkMemoryAllocateInfo; - -typedef struct VkMemoryRequirements { - VkDeviceSize size; - VkDeviceSize alignment; - uint32_t memoryTypeBits; -} VkMemoryRequirements; - -typedef struct VkSparseMemoryBind { - VkDeviceSize resourceOffset; - VkDeviceSize size; - VkDeviceMemory memory; - VkDeviceSize memoryOffset; - VkSparseMemoryBindFlags flags; -} VkSparseMemoryBind; - -typedef struct VkSparseBufferMemoryBindInfo { - VkBuffer buffer; - uint32_t bindCount; - const VkSparseMemoryBind* pBinds; -} VkSparseBufferMemoryBindInfo; - -typedef struct VkSparseImageOpaqueMemoryBindInfo { - VkImage image; - uint32_t bindCount; - const VkSparseMemoryBind* pBinds; -} VkSparseImageOpaqueMemoryBindInfo; - -typedef struct VkImageSubresource { - VkImageAspectFlags aspectMask; - uint32_t mipLevel; - uint32_t arrayLayer; -} VkImageSubresource; - -typedef struct VkSparseImageMemoryBind { - VkImageSubresource subresource; - VkOffset3D offset; - VkExtent3D extent; - VkDeviceMemory memory; - VkDeviceSize memoryOffset; - VkSparseMemoryBindFlags flags; -} VkSparseImageMemoryBind; - -typedef struct VkSparseImageMemoryBindInfo { - VkImage image; - uint32_t bindCount; - const VkSparseImageMemoryBind* pBinds; -} VkSparseImageMemoryBindInfo; - -typedef struct VkBindSparseInfo { - VkStructureType sType; - const void* pNext; - uint32_t waitSemaphoreCount; - const VkSemaphore* pWaitSemaphores; - uint32_t bufferBindCount; - const VkSparseBufferMemoryBindInfo* pBufferBinds; - uint32_t imageOpaqueBindCount; - const VkSparseImageOpaqueMemoryBindInfo* pImageOpaqueBinds; - uint32_t imageBindCount; - const VkSparseImageMemoryBindInfo* pImageBinds; - uint32_t signalSemaphoreCount; - const VkSemaphore* pSignalSemaphores; -} VkBindSparseInfo; - -typedef struct VkSparseImageFormatProperties { - VkImageAspectFlags aspectMask; - VkExtent3D imageGranularity; - VkSparseImageFormatFlags flags; -} VkSparseImageFormatProperties; - -typedef struct VkSparseImageMemoryRequirements { - VkSparseImageFormatProperties formatProperties; - uint32_t imageMipTailFirstLod; - VkDeviceSize imageMipTailSize; - VkDeviceSize imageMipTailOffset; - VkDeviceSize imageMipTailStride; -} VkSparseImageMemoryRequirements; - -typedef struct VkFenceCreateInfo { - VkStructureType sType; - const void* pNext; - VkFenceCreateFlags flags; -} VkFenceCreateInfo; - -typedef struct VkSemaphoreCreateInfo { - VkStructureType sType; - const void* pNext; - VkSemaphoreCreateFlags flags; -} VkSemaphoreCreateInfo; - -typedef struct VkEventCreateInfo { - VkStructureType sType; - const void* pNext; - VkEventCreateFlags flags; -} VkEventCreateInfo; - -typedef struct VkQueryPoolCreateInfo { - VkStructureType sType; - const void* pNext; - VkQueryPoolCreateFlags flags; - VkQueryType queryType; - uint32_t queryCount; - VkQueryPipelineStatisticFlags pipelineStatistics; -} VkQueryPoolCreateInfo; - -typedef struct VkBufferCreateInfo { - VkStructureType sType; - const void* pNext; - VkBufferCreateFlags flags; - VkDeviceSize size; - VkBufferUsageFlags usage; - VkSharingMode sharingMode; - uint32_t queueFamilyIndexCount; - const uint32_t* pQueueFamilyIndices; -} VkBufferCreateInfo; - -typedef struct VkBufferViewCreateInfo { - VkStructureType sType; - const void* pNext; - VkBufferViewCreateFlags flags; - VkBuffer buffer; - VkFormat format; - VkDeviceSize offset; - VkDeviceSize range; -} VkBufferViewCreateInfo; - -typedef struct VkImageCreateInfo { - VkStructureType sType; - const void* pNext; - VkImageCreateFlags flags; - VkImageType imageType; - VkFormat format; - VkExtent3D extent; - uint32_t mipLevels; - uint32_t arrayLayers; - VkSampleCountFlagBits samples; - VkImageTiling tiling; - VkImageUsageFlags usage; - VkSharingMode sharingMode; - uint32_t queueFamilyIndexCount; - const uint32_t* pQueueFamilyIndices; - VkImageLayout initialLayout; -} VkImageCreateInfo; - -typedef struct VkSubresourceLayout { - VkDeviceSize offset; - VkDeviceSize size; - VkDeviceSize rowPitch; - VkDeviceSize arrayPitch; - VkDeviceSize depthPitch; -} VkSubresourceLayout; - -typedef struct VkComponentMapping { - VkComponentSwizzle r; - VkComponentSwizzle g; - VkComponentSwizzle b; - VkComponentSwizzle a; -} VkComponentMapping; - -typedef struct VkImageViewCreateInfo { - VkStructureType sType; - const void* pNext; - VkImageViewCreateFlags flags; - VkImage image; - VkImageViewType viewType; - VkFormat format; - VkComponentMapping components; - VkImageSubresourceRange subresourceRange; -} VkImageViewCreateInfo; - -typedef struct VkShaderModuleCreateInfo { - VkStructureType sType; - const void* pNext; - VkShaderModuleCreateFlags flags; - size_t codeSize; - const uint32_t* pCode; -} VkShaderModuleCreateInfo; - -typedef struct VkPipelineCacheCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineCacheCreateFlags flags; - size_t initialDataSize; - const void* pInitialData; -} VkPipelineCacheCreateInfo; - -typedef struct VkSpecializationMapEntry { - uint32_t constantID; - uint32_t offset; - size_t size; -} VkSpecializationMapEntry; - -typedef struct VkSpecializationInfo { - uint32_t mapEntryCount; - const VkSpecializationMapEntry* pMapEntries; - size_t dataSize; - const void* pData; -} VkSpecializationInfo; - -typedef struct VkPipelineShaderStageCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineShaderStageCreateFlags flags; - VkShaderStageFlagBits stage; - VkShaderModule module; - const char* pName; - const VkSpecializationInfo* pSpecializationInfo; -} VkPipelineShaderStageCreateInfo; - -typedef struct VkComputePipelineCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineCreateFlags flags; - VkPipelineShaderStageCreateInfo stage; - VkPipelineLayout layout; - VkPipeline basePipelineHandle; - int32_t basePipelineIndex; -} VkComputePipelineCreateInfo; - -typedef struct VkVertexInputBindingDescription { - uint32_t binding; - uint32_t stride; - VkVertexInputRate inputRate; -} VkVertexInputBindingDescription; - -typedef struct VkVertexInputAttributeDescription { - uint32_t location; - uint32_t binding; - VkFormat format; - uint32_t offset; -} VkVertexInputAttributeDescription; - -typedef struct VkPipelineVertexInputStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineVertexInputStateCreateFlags flags; - uint32_t vertexBindingDescriptionCount; - const VkVertexInputBindingDescription* pVertexBindingDescriptions; - uint32_t vertexAttributeDescriptionCount; - const VkVertexInputAttributeDescription* pVertexAttributeDescriptions; -} VkPipelineVertexInputStateCreateInfo; - -typedef struct VkPipelineInputAssemblyStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineInputAssemblyStateCreateFlags flags; - VkPrimitiveTopology topology; - VkBool32 primitiveRestartEnable; -} VkPipelineInputAssemblyStateCreateInfo; - -typedef struct VkPipelineTessellationStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineTessellationStateCreateFlags flags; - uint32_t patchControlPoints; -} VkPipelineTessellationStateCreateInfo; - -typedef struct VkViewport { - float x; - float y; - float width; - float height; - float minDepth; - float maxDepth; -} VkViewport; - -typedef struct VkPipelineViewportStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineViewportStateCreateFlags flags; - uint32_t viewportCount; - const VkViewport* pViewports; - uint32_t scissorCount; - const VkRect2D* pScissors; -} VkPipelineViewportStateCreateInfo; - -typedef struct VkPipelineRasterizationStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineRasterizationStateCreateFlags flags; - VkBool32 depthClampEnable; - VkBool32 rasterizerDiscardEnable; - VkPolygonMode polygonMode; - VkCullModeFlags cullMode; - VkFrontFace frontFace; - VkBool32 depthBiasEnable; - float depthBiasConstantFactor; - float depthBiasClamp; - float depthBiasSlopeFactor; - float lineWidth; -} VkPipelineRasterizationStateCreateInfo; - -typedef struct VkPipelineMultisampleStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineMultisampleStateCreateFlags flags; - VkSampleCountFlagBits rasterizationSamples; - VkBool32 sampleShadingEnable; - float minSampleShading; - const VkSampleMask* pSampleMask; - VkBool32 alphaToCoverageEnable; - VkBool32 alphaToOneEnable; -} VkPipelineMultisampleStateCreateInfo; - -typedef struct VkStencilOpState { - VkStencilOp failOp; - VkStencilOp passOp; - VkStencilOp depthFailOp; - VkCompareOp compareOp; - uint32_t compareMask; - uint32_t writeMask; - uint32_t reference; -} VkStencilOpState; - -typedef struct VkPipelineDepthStencilStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineDepthStencilStateCreateFlags flags; - VkBool32 depthTestEnable; - VkBool32 depthWriteEnable; - VkCompareOp depthCompareOp; - VkBool32 depthBoundsTestEnable; - VkBool32 stencilTestEnable; - VkStencilOpState front; - VkStencilOpState back; - float minDepthBounds; - float maxDepthBounds; -} VkPipelineDepthStencilStateCreateInfo; - -typedef struct VkPipelineColorBlendAttachmentState { - VkBool32 blendEnable; - VkBlendFactor srcColorBlendFactor; - VkBlendFactor dstColorBlendFactor; - VkBlendOp colorBlendOp; - VkBlendFactor srcAlphaBlendFactor; - VkBlendFactor dstAlphaBlendFactor; - VkBlendOp alphaBlendOp; - VkColorComponentFlags colorWriteMask; -} VkPipelineColorBlendAttachmentState; - -typedef struct VkPipelineColorBlendStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineColorBlendStateCreateFlags flags; - VkBool32 logicOpEnable; - VkLogicOp logicOp; - uint32_t attachmentCount; - const VkPipelineColorBlendAttachmentState* pAttachments; - float blendConstants[4]; -} VkPipelineColorBlendStateCreateInfo; - -typedef struct VkPipelineDynamicStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineDynamicStateCreateFlags flags; - uint32_t dynamicStateCount; - const VkDynamicState* pDynamicStates; -} VkPipelineDynamicStateCreateInfo; - -typedef struct VkGraphicsPipelineCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineCreateFlags flags; - uint32_t stageCount; - const VkPipelineShaderStageCreateInfo* pStages; - const VkPipelineVertexInputStateCreateInfo* pVertexInputState; - const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; - const VkPipelineTessellationStateCreateInfo* pTessellationState; - const VkPipelineViewportStateCreateInfo* pViewportState; - const VkPipelineRasterizationStateCreateInfo* pRasterizationState; - const VkPipelineMultisampleStateCreateInfo* pMultisampleState; - const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; - const VkPipelineColorBlendStateCreateInfo* pColorBlendState; - const VkPipelineDynamicStateCreateInfo* pDynamicState; - VkPipelineLayout layout; - VkRenderPass renderPass; - uint32_t subpass; - VkPipeline basePipelineHandle; - int32_t basePipelineIndex; -} VkGraphicsPipelineCreateInfo; - -typedef struct VkPushConstantRange { - VkShaderStageFlags stageFlags; - uint32_t offset; - uint32_t size; -} VkPushConstantRange; - -typedef struct VkPipelineLayoutCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineLayoutCreateFlags flags; - uint32_t setLayoutCount; - const VkDescriptorSetLayout* pSetLayouts; - uint32_t pushConstantRangeCount; - const VkPushConstantRange* pPushConstantRanges; -} VkPipelineLayoutCreateInfo; - -typedef struct VkSamplerCreateInfo { - VkStructureType sType; - const void* pNext; - VkSamplerCreateFlags flags; - VkFilter magFilter; - VkFilter minFilter; - VkSamplerMipmapMode mipmapMode; - VkSamplerAddressMode addressModeU; - VkSamplerAddressMode addressModeV; - VkSamplerAddressMode addressModeW; - float mipLodBias; - VkBool32 anisotropyEnable; - float maxAnisotropy; - VkBool32 compareEnable; - VkCompareOp compareOp; - float minLod; - float maxLod; - VkBorderColor borderColor; - VkBool32 unnormalizedCoordinates; -} VkSamplerCreateInfo; - -typedef struct VkCopyDescriptorSet { - VkStructureType sType; - const void* pNext; - VkDescriptorSet srcSet; - uint32_t srcBinding; - uint32_t srcArrayElement; - VkDescriptorSet dstSet; - uint32_t dstBinding; - uint32_t dstArrayElement; - uint32_t descriptorCount; -} VkCopyDescriptorSet; - -typedef struct VkDescriptorBufferInfo { - VkBuffer buffer; - VkDeviceSize offset; - VkDeviceSize range; -} VkDescriptorBufferInfo; - -typedef struct VkDescriptorImageInfo { - VkSampler sampler; - VkImageView imageView; - VkImageLayout imageLayout; -} VkDescriptorImageInfo; - -typedef struct VkDescriptorPoolSize { - VkDescriptorType type; - uint32_t descriptorCount; -} VkDescriptorPoolSize; - -typedef struct VkDescriptorPoolCreateInfo { - VkStructureType sType; - const void* pNext; - VkDescriptorPoolCreateFlags flags; - uint32_t maxSets; - uint32_t poolSizeCount; - const VkDescriptorPoolSize* pPoolSizes; -} VkDescriptorPoolCreateInfo; - -typedef struct VkDescriptorSetAllocateInfo { - VkStructureType sType; - const void* pNext; - VkDescriptorPool descriptorPool; - uint32_t descriptorSetCount; - const VkDescriptorSetLayout* pSetLayouts; -} VkDescriptorSetAllocateInfo; - -typedef struct VkDescriptorSetLayoutBinding { - uint32_t binding; - VkDescriptorType descriptorType; - uint32_t descriptorCount; - VkShaderStageFlags stageFlags; - const VkSampler* pImmutableSamplers; -} VkDescriptorSetLayoutBinding; - -typedef struct VkDescriptorSetLayoutCreateInfo { - VkStructureType sType; - const void* pNext; - VkDescriptorSetLayoutCreateFlags flags; - uint32_t bindingCount; - const VkDescriptorSetLayoutBinding* pBindings; -} VkDescriptorSetLayoutCreateInfo; - -typedef struct VkWriteDescriptorSet { - VkStructureType sType; - const void* pNext; - VkDescriptorSet dstSet; - uint32_t dstBinding; - uint32_t dstArrayElement; - uint32_t descriptorCount; - VkDescriptorType descriptorType; - const VkDescriptorImageInfo* pImageInfo; - const VkDescriptorBufferInfo* pBufferInfo; - const VkBufferView* pTexelBufferView; -} VkWriteDescriptorSet; - -typedef struct VkAttachmentDescription { - VkAttachmentDescriptionFlags flags; - VkFormat format; - VkSampleCountFlagBits samples; - VkAttachmentLoadOp loadOp; - VkAttachmentStoreOp storeOp; - VkAttachmentLoadOp stencilLoadOp; - VkAttachmentStoreOp stencilStoreOp; - VkImageLayout initialLayout; - VkImageLayout finalLayout; -} VkAttachmentDescription; - -typedef struct VkAttachmentReference { - uint32_t attachment; - VkImageLayout layout; -} VkAttachmentReference; - -typedef struct VkFramebufferCreateInfo { - VkStructureType sType; - const void* pNext; - VkFramebufferCreateFlags flags; - VkRenderPass renderPass; - uint32_t attachmentCount; - const VkImageView* pAttachments; - uint32_t width; - uint32_t height; - uint32_t layers; -} VkFramebufferCreateInfo; - -typedef struct VkSubpassDescription { - VkSubpassDescriptionFlags flags; - VkPipelineBindPoint pipelineBindPoint; - uint32_t inputAttachmentCount; - const VkAttachmentReference* pInputAttachments; - uint32_t colorAttachmentCount; - const VkAttachmentReference* pColorAttachments; - const VkAttachmentReference* pResolveAttachments; - const VkAttachmentReference* pDepthStencilAttachment; - uint32_t preserveAttachmentCount; - const uint32_t* pPreserveAttachments; -} VkSubpassDescription; - -typedef struct VkSubpassDependency { - uint32_t srcSubpass; - uint32_t dstSubpass; - VkPipelineStageFlags srcStageMask; - VkPipelineStageFlags dstStageMask; - VkAccessFlags srcAccessMask; - VkAccessFlags dstAccessMask; - VkDependencyFlags dependencyFlags; -} VkSubpassDependency; - -typedef struct VkRenderPassCreateInfo { - VkStructureType sType; - const void* pNext; - VkRenderPassCreateFlags flags; - uint32_t attachmentCount; - const VkAttachmentDescription* pAttachments; - uint32_t subpassCount; - const VkSubpassDescription* pSubpasses; - uint32_t dependencyCount; - const VkSubpassDependency* pDependencies; -} VkRenderPassCreateInfo; - -typedef struct VkCommandPoolCreateInfo { - VkStructureType sType; - const void* pNext; - VkCommandPoolCreateFlags flags; - uint32_t queueFamilyIndex; -} VkCommandPoolCreateInfo; - -typedef struct VkCommandBufferAllocateInfo { - VkStructureType sType; - const void* pNext; - VkCommandPool commandPool; - VkCommandBufferLevel level; - uint32_t commandBufferCount; -} VkCommandBufferAllocateInfo; - -typedef struct VkCommandBufferInheritanceInfo { - VkStructureType sType; - const void* pNext; - VkRenderPass renderPass; - uint32_t subpass; - VkFramebuffer framebuffer; - VkBool32 occlusionQueryEnable; - VkQueryControlFlags queryFlags; - VkQueryPipelineStatisticFlags pipelineStatistics; -} VkCommandBufferInheritanceInfo; - -typedef struct VkCommandBufferBeginInfo { - VkStructureType sType; - const void* pNext; - VkCommandBufferUsageFlags flags; - const VkCommandBufferInheritanceInfo* pInheritanceInfo; -} VkCommandBufferBeginInfo; - -typedef struct VkBufferCopy { - VkDeviceSize srcOffset; - VkDeviceSize dstOffset; - VkDeviceSize size; -} VkBufferCopy; - -typedef struct VkImageSubresourceLayers { - VkImageAspectFlags aspectMask; - uint32_t mipLevel; - uint32_t baseArrayLayer; - uint32_t layerCount; -} VkImageSubresourceLayers; - -typedef struct VkBufferImageCopy { - VkDeviceSize bufferOffset; - uint32_t bufferRowLength; - uint32_t bufferImageHeight; - VkImageSubresourceLayers imageSubresource; - VkOffset3D imageOffset; - VkExtent3D imageExtent; -} VkBufferImageCopy; - -typedef union VkClearColorValue { - float float32[4]; - int32_t int32[4]; - uint32_t uint32[4]; -} VkClearColorValue; - -typedef struct VkClearDepthStencilValue { - float depth; - uint32_t stencil; -} VkClearDepthStencilValue; - -typedef union VkClearValue { - VkClearColorValue color; - VkClearDepthStencilValue depthStencil; -} VkClearValue; - -typedef struct VkClearAttachment { - VkImageAspectFlags aspectMask; - uint32_t colorAttachment; - VkClearValue clearValue; -} VkClearAttachment; - -typedef struct VkClearRect { - VkRect2D rect; - uint32_t baseArrayLayer; - uint32_t layerCount; -} VkClearRect; - -typedef struct VkImageBlit { - VkImageSubresourceLayers srcSubresource; - VkOffset3D srcOffsets[2]; - VkImageSubresourceLayers dstSubresource; - VkOffset3D dstOffsets[2]; -} VkImageBlit; - -typedef struct VkImageCopy { - VkImageSubresourceLayers srcSubresource; - VkOffset3D srcOffset; - VkImageSubresourceLayers dstSubresource; - VkOffset3D dstOffset; - VkExtent3D extent; -} VkImageCopy; - -typedef struct VkImageResolve { - VkImageSubresourceLayers srcSubresource; - VkOffset3D srcOffset; - VkImageSubresourceLayers dstSubresource; - VkOffset3D dstOffset; - VkExtent3D extent; -} VkImageResolve; - -typedef struct VkRenderPassBeginInfo { - VkStructureType sType; - const void* pNext; - VkRenderPass renderPass; - VkFramebuffer framebuffer; - VkRect2D renderArea; - uint32_t clearValueCount; - const VkClearValue* pClearValues; -} VkRenderPassBeginInfo; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateInstance)(const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance); -typedef void (VKAPI_PTR *PFN_vkDestroyInstance)(VkInstance instance, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkEnumeratePhysicalDevices)(VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceFeatures)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures* pFeatures); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceFormatProperties)(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties* pFormatProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceImageFormatProperties)(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkImageFormatProperties* pImageFormatProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceProperties)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties* pProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceQueueFamilyProperties)(VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties* pQueueFamilyProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceMemoryProperties)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties* pMemoryProperties); -typedef PFN_vkVoidFunction (VKAPI_PTR *PFN_vkGetInstanceProcAddr)(VkInstance instance, const char* pName); -typedef PFN_vkVoidFunction (VKAPI_PTR *PFN_vkGetDeviceProcAddr)(VkDevice device, const char* pName); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDevice)(VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDevice* pDevice); -typedef void (VKAPI_PTR *PFN_vkDestroyDevice)(VkDevice device, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkEnumerateInstanceExtensionProperties)(const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkEnumerateDeviceExtensionProperties)(VkPhysicalDevice physicalDevice, const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkEnumerateInstanceLayerProperties)(uint32_t* pPropertyCount, VkLayerProperties* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkEnumerateDeviceLayerProperties)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkLayerProperties* pProperties); -typedef void (VKAPI_PTR *PFN_vkGetDeviceQueue)(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue); -typedef VkResult (VKAPI_PTR *PFN_vkQueueSubmit)(VkQueue queue, uint32_t submitCount, const VkSubmitInfo* pSubmits, VkFence fence); -typedef VkResult (VKAPI_PTR *PFN_vkQueueWaitIdle)(VkQueue queue); -typedef VkResult (VKAPI_PTR *PFN_vkDeviceWaitIdle)(VkDevice device); -typedef VkResult (VKAPI_PTR *PFN_vkAllocateMemory)(VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory); -typedef void (VKAPI_PTR *PFN_vkFreeMemory)(VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkMapMemory)(VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size, VkMemoryMapFlags flags, void** ppData); -typedef void (VKAPI_PTR *PFN_vkUnmapMemory)(VkDevice device, VkDeviceMemory memory); -typedef VkResult (VKAPI_PTR *PFN_vkFlushMappedMemoryRanges)(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges); -typedef VkResult (VKAPI_PTR *PFN_vkInvalidateMappedMemoryRanges)(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange* pMemoryRanges); -typedef void (VKAPI_PTR *PFN_vkGetDeviceMemoryCommitment)(VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes); -typedef VkResult (VKAPI_PTR *PFN_vkBindBufferMemory)(VkDevice device, VkBuffer buffer, VkDeviceMemory memory, VkDeviceSize memoryOffset); -typedef VkResult (VKAPI_PTR *PFN_vkBindImageMemory)(VkDevice device, VkImage image, VkDeviceMemory memory, VkDeviceSize memoryOffset); -typedef void (VKAPI_PTR *PFN_vkGetBufferMemoryRequirements)(VkDevice device, VkBuffer buffer, VkMemoryRequirements* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetImageMemoryRequirements)(VkDevice device, VkImage image, VkMemoryRequirements* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetImageSparseMemoryRequirements)(VkDevice device, VkImage image, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements* pSparseMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceSparseImageFormatProperties)(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkSampleCountFlagBits samples, VkImageUsageFlags usage, VkImageTiling tiling, uint32_t* pPropertyCount, VkSparseImageFormatProperties* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkQueueBindSparse)(VkQueue queue, uint32_t bindInfoCount, const VkBindSparseInfo* pBindInfo, VkFence fence); -typedef VkResult (VKAPI_PTR *PFN_vkCreateFence)(VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence); -typedef void (VKAPI_PTR *PFN_vkDestroyFence)(VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); -typedef VkResult (VKAPI_PTR *PFN_vkGetFenceStatus)(VkDevice device, VkFence fence); -typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); -typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); -typedef void (VKAPI_PTR *PFN_vkDestroySemaphore)(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateEvent)(VkDevice device, const VkEventCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkEvent* pEvent); -typedef void (VKAPI_PTR *PFN_vkDestroyEvent)(VkDevice device, VkEvent event, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetEventStatus)(VkDevice device, VkEvent event); -typedef VkResult (VKAPI_PTR *PFN_vkSetEvent)(VkDevice device, VkEvent event); -typedef VkResult (VKAPI_PTR *PFN_vkResetEvent)(VkDevice device, VkEvent event); -typedef VkResult (VKAPI_PTR *PFN_vkCreateQueryPool)(VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* pQueryPool); -typedef void (VKAPI_PTR *PFN_vkDestroyQueryPool)(VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetQueryPoolResults)(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags); -typedef VkResult (VKAPI_PTR *PFN_vkCreateBuffer)(VkDevice device, const VkBufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBuffer* pBuffer); -typedef void (VKAPI_PTR *PFN_vkDestroyBuffer)(VkDevice device, VkBuffer buffer, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateBufferView)(VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView); -typedef void (VKAPI_PTR *PFN_vkDestroyBufferView)(VkDevice device, VkBufferView bufferView, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateImage)(VkDevice device, const VkImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImage* pImage); -typedef void (VKAPI_PTR *PFN_vkDestroyImage)(VkDevice device, VkImage image, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkGetImageSubresourceLayout)(VkDevice device, VkImage image, const VkImageSubresource* pSubresource, VkSubresourceLayout* pLayout); -typedef VkResult (VKAPI_PTR *PFN_vkCreateImageView)(VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView); -typedef void (VKAPI_PTR *PFN_vkDestroyImageView)(VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateShaderModule)(VkDevice device, const VkShaderModuleCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkShaderModule* pShaderModule); -typedef void (VKAPI_PTR *PFN_vkDestroyShaderModule)(VkDevice device, VkShaderModule shaderModule, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineCache)(VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache); -typedef void (VKAPI_PTR *PFN_vkDestroyPipelineCache)(VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetPipelineCacheData)(VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData); -typedef VkResult (VKAPI_PTR *PFN_vkMergePipelineCaches)(VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches); -typedef VkResult (VKAPI_PTR *PFN_vkCreateGraphicsPipelines)(VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines); -typedef VkResult (VKAPI_PTR *PFN_vkCreateComputePipelines)(VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines); -typedef void (VKAPI_PTR *PFN_vkDestroyPipeline)(VkDevice device, VkPipeline pipeline, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineLayout)(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineLayout* pPipelineLayout); -typedef void (VKAPI_PTR *PFN_vkDestroyPipelineLayout)(VkDevice device, VkPipelineLayout pipelineLayout, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateSampler)(VkDevice device, const VkSamplerCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSampler* pSampler); -typedef void (VKAPI_PTR *PFN_vkDestroySampler)(VkDevice device, VkSampler sampler, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDescriptorSetLayout)(VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorSetLayout* pSetLayout); -typedef void (VKAPI_PTR *PFN_vkDestroyDescriptorSetLayout)(VkDevice device, VkDescriptorSetLayout descriptorSetLayout, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDescriptorPool)(VkDevice device, const VkDescriptorPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorPool* pDescriptorPool); -typedef void (VKAPI_PTR *PFN_vkDestroyDescriptorPool)(VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkResetDescriptorPool)(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags); -typedef VkResult (VKAPI_PTR *PFN_vkAllocateDescriptorSets)(VkDevice device, const VkDescriptorSetAllocateInfo* pAllocateInfo, VkDescriptorSet* pDescriptorSets); -typedef VkResult (VKAPI_PTR *PFN_vkFreeDescriptorSets)(VkDevice device, VkDescriptorPool descriptorPool, uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets); -typedef void (VKAPI_PTR *PFN_vkUpdateDescriptorSets)(VkDevice device, uint32_t descriptorWriteCount, const VkWriteDescriptorSet* pDescriptorWrites, uint32_t descriptorCopyCount, const VkCopyDescriptorSet* pDescriptorCopies); -typedef VkResult (VKAPI_PTR *PFN_vkCreateFramebuffer)(VkDevice device, const VkFramebufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFramebuffer* pFramebuffer); -typedef void (VKAPI_PTR *PFN_vkDestroyFramebuffer)(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateRenderPass)(VkDevice device, const VkRenderPassCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkRenderPass* pRenderPass); -typedef void (VKAPI_PTR *PFN_vkDestroyRenderPass)(VkDevice device, VkRenderPass renderPass, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkGetRenderAreaGranularity)(VkDevice device, VkRenderPass renderPass, VkExtent2D* pGranularity); -typedef VkResult (VKAPI_PTR *PFN_vkCreateCommandPool)(VkDevice device, const VkCommandPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCommandPool* pCommandPool); -typedef void (VKAPI_PTR *PFN_vkDestroyCommandPool)(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkResetCommandPool)(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags); -typedef VkResult (VKAPI_PTR *PFN_vkAllocateCommandBuffers)(VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers); -typedef void (VKAPI_PTR *PFN_vkFreeCommandBuffers)(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers); -typedef VkResult (VKAPI_PTR *PFN_vkBeginCommandBuffer)(VkCommandBuffer commandBuffer, const VkCommandBufferBeginInfo* pBeginInfo); -typedef VkResult (VKAPI_PTR *PFN_vkEndCommandBuffer)(VkCommandBuffer commandBuffer); -typedef VkResult (VKAPI_PTR *PFN_vkResetCommandBuffer)(VkCommandBuffer commandBuffer, VkCommandBufferResetFlags flags); -typedef void (VKAPI_PTR *PFN_vkCmdBindPipeline)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline); -typedef void (VKAPI_PTR *PFN_vkCmdSetViewport)(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const VkViewport* pViewports); -typedef void (VKAPI_PTR *PFN_vkCmdSetScissor)(VkCommandBuffer commandBuffer, uint32_t firstScissor, uint32_t scissorCount, const VkRect2D* pScissors); -typedef void (VKAPI_PTR *PFN_vkCmdSetLineWidth)(VkCommandBuffer commandBuffer, float lineWidth); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthBias)(VkCommandBuffer commandBuffer, float depthBiasConstantFactor, float depthBiasClamp, float depthBiasSlopeFactor); -typedef void (VKAPI_PTR *PFN_vkCmdSetBlendConstants)(VkCommandBuffer commandBuffer, const float blendConstants[4]); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthBounds)(VkCommandBuffer commandBuffer, float minDepthBounds, float maxDepthBounds); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilCompareMask)(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t compareMask); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilWriteMask)(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t writeMask); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilReference)(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t reference); -typedef void (VKAPI_PTR *PFN_vkCmdBindDescriptorSets)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t* pDynamicOffsets); -typedef void (VKAPI_PTR *PFN_vkCmdBindIndexBuffer)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkIndexType indexType); -typedef void (VKAPI_PTR *PFN_vkCmdBindVertexBuffers)(VkCommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const VkBuffer* pBuffers, const VkDeviceSize* pOffsets); -typedef void (VKAPI_PTR *PFN_vkCmdDraw)(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndexed)(VkCommandBuffer commandBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndirect)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndexedIndirect)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDispatch)(VkCommandBuffer commandBuffer, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ); -typedef void (VKAPI_PTR *PFN_vkCmdDispatchIndirect)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset); -typedef void (VKAPI_PTR *PFN_vkCmdCopyBuffer)(VkCommandBuffer commandBuffer, VkBuffer srcBuffer, VkBuffer dstBuffer, uint32_t regionCount, const VkBufferCopy* pRegions); -typedef void (VKAPI_PTR *PFN_vkCmdCopyImage)(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageCopy* pRegions); -typedef void (VKAPI_PTR *PFN_vkCmdBlitImage)(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter); -typedef void (VKAPI_PTR *PFN_vkCmdCopyBufferToImage)(VkCommandBuffer commandBuffer, VkBuffer srcBuffer, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkBufferImageCopy* pRegions); -typedef void (VKAPI_PTR *PFN_vkCmdCopyImageToBuffer)(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkBuffer dstBuffer, uint32_t regionCount, const VkBufferImageCopy* pRegions); -typedef void (VKAPI_PTR *PFN_vkCmdUpdateBuffer)(VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize dataSize, const void* pData); -typedef void (VKAPI_PTR *PFN_vkCmdFillBuffer)(VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize size, uint32_t data); -typedef void (VKAPI_PTR *PFN_vkCmdClearColorImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges); -typedef void (VKAPI_PTR *PFN_vkCmdClearDepthStencilImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges); -typedef void (VKAPI_PTR *PFN_vkCmdClearAttachments)(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment* pAttachments, uint32_t rectCount, const VkClearRect* pRects); -typedef void (VKAPI_PTR *PFN_vkCmdResolveImage)(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageResolve* pRegions); -typedef void (VKAPI_PTR *PFN_vkCmdSetEvent)(VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags stageMask); -typedef void (VKAPI_PTR *PFN_vkCmdResetEvent)(VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags stageMask); -typedef void (VKAPI_PTR *PFN_vkCmdWaitEvents)(VkCommandBuffer commandBuffer, uint32_t eventCount, const VkEvent* pEvents, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, uint32_t memoryBarrierCount, const VkMemoryBarrier* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const VkBufferMemoryBarrier* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const VkImageMemoryBarrier* pImageMemoryBarriers); -typedef void (VKAPI_PTR *PFN_vkCmdPipelineBarrier)(VkCommandBuffer commandBuffer, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, VkDependencyFlags dependencyFlags, uint32_t memoryBarrierCount, const VkMemoryBarrier* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const VkBufferMemoryBarrier* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const VkImageMemoryBarrier* pImageMemoryBarriers); -typedef void (VKAPI_PTR *PFN_vkCmdBeginQuery)(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query, VkQueryControlFlags flags); -typedef void (VKAPI_PTR *PFN_vkCmdEndQuery)(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query); -typedef void (VKAPI_PTR *PFN_vkCmdResetQueryPool)(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount); -typedef void (VKAPI_PTR *PFN_vkCmdWriteTimestamp)(VkCommandBuffer commandBuffer, VkPipelineStageFlagBits pipelineStage, VkQueryPool queryPool, uint32_t query); -typedef void (VKAPI_PTR *PFN_vkCmdCopyQueryPoolResults)(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize stride, VkQueryResultFlags flags); -typedef void (VKAPI_PTR *PFN_vkCmdPushConstants)(VkCommandBuffer commandBuffer, VkPipelineLayout layout, VkShaderStageFlags stageFlags, uint32_t offset, uint32_t size, const void* pValues); -typedef void (VKAPI_PTR *PFN_vkCmdBeginRenderPass)(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents); -typedef void (VKAPI_PTR *PFN_vkCmdNextSubpass)(VkCommandBuffer commandBuffer, VkSubpassContents contents); -typedef void (VKAPI_PTR *PFN_vkCmdEndRenderPass)(VkCommandBuffer commandBuffer); -typedef void (VKAPI_PTR *PFN_vkCmdExecuteCommands)(VkCommandBuffer commandBuffer, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateInstance( - const VkInstanceCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkInstance* pInstance); - -VKAPI_ATTR void VKAPI_CALL vkDestroyInstance( - VkInstance instance, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkEnumeratePhysicalDevices( - VkInstance instance, - uint32_t* pPhysicalDeviceCount, - VkPhysicalDevice* pPhysicalDevices); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFeatures( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceFeatures* pFeatures); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFormatProperties( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkFormatProperties* pFormatProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceImageFormatProperties( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkImageType type, - VkImageTiling tiling, - VkImageUsageFlags usage, - VkImageCreateFlags flags, - VkImageFormatProperties* pImageFormatProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceProperties( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceProperties* pProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceQueueFamilyProperties( - VkPhysicalDevice physicalDevice, - uint32_t* pQueueFamilyPropertyCount, - VkQueueFamilyProperties* pQueueFamilyProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceMemoryProperties( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceMemoryProperties* pMemoryProperties); - -VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vkGetInstanceProcAddr( - VkInstance instance, - const char* pName); - -VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vkGetDeviceProcAddr( - VkDevice device, - const char* pName); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDevice( - VkPhysicalDevice physicalDevice, - const VkDeviceCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDevice* pDevice); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDevice( - VkDevice device, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceExtensionProperties( - const char* pLayerName, - uint32_t* pPropertyCount, - VkExtensionProperties* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateDeviceExtensionProperties( - VkPhysicalDevice physicalDevice, - const char* pLayerName, - uint32_t* pPropertyCount, - VkExtensionProperties* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceLayerProperties( - uint32_t* pPropertyCount, - VkLayerProperties* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateDeviceLayerProperties( - VkPhysicalDevice physicalDevice, - uint32_t* pPropertyCount, - VkLayerProperties* pProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceQueue( - VkDevice device, - uint32_t queueFamilyIndex, - uint32_t queueIndex, - VkQueue* pQueue); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit( - VkQueue queue, - uint32_t submitCount, - const VkSubmitInfo* pSubmits, - VkFence fence); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueueWaitIdle( - VkQueue queue); - -VKAPI_ATTR VkResult VKAPI_CALL vkDeviceWaitIdle( - VkDevice device); - -VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory( - VkDevice device, - const VkMemoryAllocateInfo* pAllocateInfo, - const VkAllocationCallbacks* pAllocator, - VkDeviceMemory* pMemory); - -VKAPI_ATTR void VKAPI_CALL vkFreeMemory( - VkDevice device, - VkDeviceMemory memory, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkMapMemory( - VkDevice device, - VkDeviceMemory memory, - VkDeviceSize offset, - VkDeviceSize size, - VkMemoryMapFlags flags, - void** ppData); - -VKAPI_ATTR void VKAPI_CALL vkUnmapMemory( - VkDevice device, - VkDeviceMemory memory); - -VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges( - VkDevice device, - uint32_t memoryRangeCount, - const VkMappedMemoryRange* pMemoryRanges); - -VKAPI_ATTR VkResult VKAPI_CALL vkInvalidateMappedMemoryRanges( - VkDevice device, - uint32_t memoryRangeCount, - const VkMappedMemoryRange* pMemoryRanges); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceMemoryCommitment( - VkDevice device, - VkDeviceMemory memory, - VkDeviceSize* pCommittedMemoryInBytes); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindBufferMemory( - VkDevice device, - VkBuffer buffer, - VkDeviceMemory memory, - VkDeviceSize memoryOffset); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindImageMemory( - VkDevice device, - VkImage image, - VkDeviceMemory memory, - VkDeviceSize memoryOffset); - -VKAPI_ATTR void VKAPI_CALL vkGetBufferMemoryRequirements( - VkDevice device, - VkBuffer buffer, - VkMemoryRequirements* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetImageMemoryRequirements( - VkDevice device, - VkImage image, - VkMemoryRequirements* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetImageSparseMemoryRequirements( - VkDevice device, - VkImage image, - uint32_t* pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements* pSparseMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceSparseImageFormatProperties( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkImageType type, - VkSampleCountFlagBits samples, - VkImageUsageFlags usage, - VkImageTiling tiling, - uint32_t* pPropertyCount, - VkSparseImageFormatProperties* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueueBindSparse( - VkQueue queue, - uint32_t bindInfoCount, - const VkBindSparseInfo* pBindInfo, - VkFence fence); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateFence( - VkDevice device, - const VkFenceCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkFence* pFence); - -VKAPI_ATTR void VKAPI_CALL vkDestroyFence( - VkDevice device, - VkFence fence, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkResetFences( - VkDevice device, - uint32_t fenceCount, - const VkFence* pFences); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetFenceStatus( - VkDevice device, - VkFence fence); - -VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences( - VkDevice device, - uint32_t fenceCount, - const VkFence* pFences, - VkBool32 waitAll, - uint64_t timeout); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateSemaphore( - VkDevice device, - const VkSemaphoreCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSemaphore* pSemaphore); - -VKAPI_ATTR void VKAPI_CALL vkDestroySemaphore( - VkDevice device, - VkSemaphore semaphore, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateEvent( - VkDevice device, - const VkEventCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkEvent* pEvent); - -VKAPI_ATTR void VKAPI_CALL vkDestroyEvent( - VkDevice device, - VkEvent event, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetEventStatus( - VkDevice device, - VkEvent event); - -VKAPI_ATTR VkResult VKAPI_CALL vkSetEvent( - VkDevice device, - VkEvent event); - -VKAPI_ATTR VkResult VKAPI_CALL vkResetEvent( - VkDevice device, - VkEvent event); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateQueryPool( - VkDevice device, - const VkQueryPoolCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkQueryPool* pQueryPool); - -VKAPI_ATTR void VKAPI_CALL vkDestroyQueryPool( - VkDevice device, - VkQueryPool queryPool, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetQueryPoolResults( - VkDevice device, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - void* pData, - VkDeviceSize stride, - VkQueryResultFlags flags); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateBuffer( - VkDevice device, - const VkBufferCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkBuffer* pBuffer); - -VKAPI_ATTR void VKAPI_CALL vkDestroyBuffer( - VkDevice device, - VkBuffer buffer, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateBufferView( - VkDevice device, - const VkBufferViewCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkBufferView* pView); - -VKAPI_ATTR void VKAPI_CALL vkDestroyBufferView( - VkDevice device, - VkBufferView bufferView, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateImage( - VkDevice device, - const VkImageCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkImage* pImage); - -VKAPI_ATTR void VKAPI_CALL vkDestroyImage( - VkDevice device, - VkImage image, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkGetImageSubresourceLayout( - VkDevice device, - VkImage image, - const VkImageSubresource* pSubresource, - VkSubresourceLayout* pLayout); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateImageView( - VkDevice device, - const VkImageViewCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkImageView* pView); - -VKAPI_ATTR void VKAPI_CALL vkDestroyImageView( - VkDevice device, - VkImageView imageView, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateShaderModule( - VkDevice device, - const VkShaderModuleCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkShaderModule* pShaderModule); - -VKAPI_ATTR void VKAPI_CALL vkDestroyShaderModule( - VkDevice device, - VkShaderModule shaderModule, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreatePipelineCache( - VkDevice device, - const VkPipelineCacheCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkPipelineCache* pPipelineCache); - -VKAPI_ATTR void VKAPI_CALL vkDestroyPipelineCache( - VkDevice device, - VkPipelineCache pipelineCache, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPipelineCacheData( - VkDevice device, - VkPipelineCache pipelineCache, - size_t* pDataSize, - void* pData); - -VKAPI_ATTR VkResult VKAPI_CALL vkMergePipelineCaches( - VkDevice device, - VkPipelineCache dstCache, - uint32_t srcCacheCount, - const VkPipelineCache* pSrcCaches); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateGraphicsPipelines( - VkDevice device, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkGraphicsPipelineCreateInfo* pCreateInfos, - const VkAllocationCallbacks* pAllocator, - VkPipeline* pPipelines); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateComputePipelines( - VkDevice device, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkComputePipelineCreateInfo* pCreateInfos, - const VkAllocationCallbacks* pAllocator, - VkPipeline* pPipelines); - -VKAPI_ATTR void VKAPI_CALL vkDestroyPipeline( - VkDevice device, - VkPipeline pipeline, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreatePipelineLayout( - VkDevice device, - const VkPipelineLayoutCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkPipelineLayout* pPipelineLayout); - -VKAPI_ATTR void VKAPI_CALL vkDestroyPipelineLayout( - VkDevice device, - VkPipelineLayout pipelineLayout, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateSampler( - VkDevice device, - const VkSamplerCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSampler* pSampler); - -VKAPI_ATTR void VKAPI_CALL vkDestroySampler( - VkDevice device, - VkSampler sampler, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDescriptorSetLayout( - VkDevice device, - const VkDescriptorSetLayoutCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDescriptorSetLayout* pSetLayout); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDescriptorSetLayout( - VkDevice device, - VkDescriptorSetLayout descriptorSetLayout, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDescriptorPool( - VkDevice device, - const VkDescriptorPoolCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDescriptorPool* pDescriptorPool); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDescriptorPool( - VkDevice device, - VkDescriptorPool descriptorPool, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkResetDescriptorPool( - VkDevice device, - VkDescriptorPool descriptorPool, - VkDescriptorPoolResetFlags flags); - -VKAPI_ATTR VkResult VKAPI_CALL vkAllocateDescriptorSets( - VkDevice device, - const VkDescriptorSetAllocateInfo* pAllocateInfo, - VkDescriptorSet* pDescriptorSets); - -VKAPI_ATTR VkResult VKAPI_CALL vkFreeDescriptorSets( - VkDevice device, - VkDescriptorPool descriptorPool, - uint32_t descriptorSetCount, - const VkDescriptorSet* pDescriptorSets); - -VKAPI_ATTR void VKAPI_CALL vkUpdateDescriptorSets( - VkDevice device, - uint32_t descriptorWriteCount, - const VkWriteDescriptorSet* pDescriptorWrites, - uint32_t descriptorCopyCount, - const VkCopyDescriptorSet* pDescriptorCopies); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateFramebuffer( - VkDevice device, - const VkFramebufferCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkFramebuffer* pFramebuffer); - -VKAPI_ATTR void VKAPI_CALL vkDestroyFramebuffer( - VkDevice device, - VkFramebuffer framebuffer, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateRenderPass( - VkDevice device, - const VkRenderPassCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkRenderPass* pRenderPass); - -VKAPI_ATTR void VKAPI_CALL vkDestroyRenderPass( - VkDevice device, - VkRenderPass renderPass, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkGetRenderAreaGranularity( - VkDevice device, - VkRenderPass renderPass, - VkExtent2D* pGranularity); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateCommandPool( - VkDevice device, - const VkCommandPoolCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkCommandPool* pCommandPool); - -VKAPI_ATTR void VKAPI_CALL vkDestroyCommandPool( - VkDevice device, - VkCommandPool commandPool, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkResetCommandPool( - VkDevice device, - VkCommandPool commandPool, - VkCommandPoolResetFlags flags); - -VKAPI_ATTR VkResult VKAPI_CALL vkAllocateCommandBuffers( - VkDevice device, - const VkCommandBufferAllocateInfo* pAllocateInfo, - VkCommandBuffer* pCommandBuffers); - -VKAPI_ATTR void VKAPI_CALL vkFreeCommandBuffers( - VkDevice device, - VkCommandPool commandPool, - uint32_t commandBufferCount, - const VkCommandBuffer* pCommandBuffers); - -VKAPI_ATTR VkResult VKAPI_CALL vkBeginCommandBuffer( - VkCommandBuffer commandBuffer, - const VkCommandBufferBeginInfo* pBeginInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkEndCommandBuffer( - VkCommandBuffer commandBuffer); - -VKAPI_ATTR VkResult VKAPI_CALL vkResetCommandBuffer( - VkCommandBuffer commandBuffer, - VkCommandBufferResetFlags flags); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindPipeline( - VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipeline pipeline); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetViewport( - VkCommandBuffer commandBuffer, - uint32_t firstViewport, - uint32_t viewportCount, - const VkViewport* pViewports); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetScissor( - VkCommandBuffer commandBuffer, - uint32_t firstScissor, - uint32_t scissorCount, - const VkRect2D* pScissors); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetLineWidth( - VkCommandBuffer commandBuffer, - float lineWidth); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthBias( - VkCommandBuffer commandBuffer, - float depthBiasConstantFactor, - float depthBiasClamp, - float depthBiasSlopeFactor); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetBlendConstants( - VkCommandBuffer commandBuffer, - const float blendConstants[4]); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthBounds( - VkCommandBuffer commandBuffer, - float minDepthBounds, - float maxDepthBounds); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilCompareMask( - VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - uint32_t compareMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilWriteMask( - VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - uint32_t writeMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilReference( - VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - uint32_t reference); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindDescriptorSets( - VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipelineLayout layout, - uint32_t firstSet, - uint32_t descriptorSetCount, - const VkDescriptorSet* pDescriptorSets, - uint32_t dynamicOffsetCount, - const uint32_t* pDynamicOffsets); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindIndexBuffer( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkIndexType indexType); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindVertexBuffers( - VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer* pBuffers, - const VkDeviceSize* pOffsets); - -VKAPI_ATTR void VKAPI_CALL vkCmdDraw( - VkCommandBuffer commandBuffer, - uint32_t vertexCount, - uint32_t instanceCount, - uint32_t firstVertex, - uint32_t firstInstance); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndexed( - VkCommandBuffer commandBuffer, - uint32_t indexCount, - uint32_t instanceCount, - uint32_t firstIndex, - int32_t vertexOffset, - uint32_t firstInstance); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndirect( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - uint32_t drawCount, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndexedIndirect( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - uint32_t drawCount, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDispatch( - VkCommandBuffer commandBuffer, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ); - -VKAPI_ATTR void VKAPI_CALL vkCmdDispatchIndirect( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyBuffer( - VkCommandBuffer commandBuffer, - VkBuffer srcBuffer, - VkBuffer dstBuffer, - uint32_t regionCount, - const VkBufferCopy* pRegions); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyImage( - VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkImageCopy* pRegions); - -VKAPI_ATTR void VKAPI_CALL vkCmdBlitImage( - VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkImageBlit* pRegions, - VkFilter filter); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyBufferToImage( - VkCommandBuffer commandBuffer, - VkBuffer srcBuffer, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkBufferImageCopy* pRegions); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyImageToBuffer( - VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkBuffer dstBuffer, - uint32_t regionCount, - const VkBufferImageCopy* pRegions); - -VKAPI_ATTR void VKAPI_CALL vkCmdUpdateBuffer( - VkCommandBuffer commandBuffer, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - VkDeviceSize dataSize, - const void* pData); - -VKAPI_ATTR void VKAPI_CALL vkCmdFillBuffer( - VkCommandBuffer commandBuffer, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - VkDeviceSize size, - uint32_t data); - -VKAPI_ATTR void VKAPI_CALL vkCmdClearColorImage( - VkCommandBuffer commandBuffer, - VkImage image, - VkImageLayout imageLayout, - const VkClearColorValue* pColor, - uint32_t rangeCount, - const VkImageSubresourceRange* pRanges); - -VKAPI_ATTR void VKAPI_CALL vkCmdClearDepthStencilImage( - VkCommandBuffer commandBuffer, - VkImage image, - VkImageLayout imageLayout, - const VkClearDepthStencilValue* pDepthStencil, - uint32_t rangeCount, - const VkImageSubresourceRange* pRanges); - -VKAPI_ATTR void VKAPI_CALL vkCmdClearAttachments( - VkCommandBuffer commandBuffer, - uint32_t attachmentCount, - const VkClearAttachment* pAttachments, - uint32_t rectCount, - const VkClearRect* pRects); - -VKAPI_ATTR void VKAPI_CALL vkCmdResolveImage( - VkCommandBuffer commandBuffer, - VkImage srcImage, - VkImageLayout srcImageLayout, - VkImage dstImage, - VkImageLayout dstImageLayout, - uint32_t regionCount, - const VkImageResolve* pRegions); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetEvent( - VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags stageMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdResetEvent( - VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags stageMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdWaitEvents( - VkCommandBuffer commandBuffer, - uint32_t eventCount, - const VkEvent* pEvents, - VkPipelineStageFlags srcStageMask, - VkPipelineStageFlags dstStageMask, - uint32_t memoryBarrierCount, - const VkMemoryBarrier* pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VkBufferMemoryBarrier* pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VkImageMemoryBarrier* pImageMemoryBarriers); - -VKAPI_ATTR void VKAPI_CALL vkCmdPipelineBarrier( - VkCommandBuffer commandBuffer, - VkPipelineStageFlags srcStageMask, - VkPipelineStageFlags dstStageMask, - VkDependencyFlags dependencyFlags, - uint32_t memoryBarrierCount, - const VkMemoryBarrier* pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VkBufferMemoryBarrier* pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VkImageMemoryBarrier* pImageMemoryBarriers); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginQuery( - VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query, - VkQueryControlFlags flags); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndQuery( - VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query); - -VKAPI_ATTR void VKAPI_CALL vkCmdResetQueryPool( - VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount); - -VKAPI_ATTR void VKAPI_CALL vkCmdWriteTimestamp( - VkCommandBuffer commandBuffer, - VkPipelineStageFlagBits pipelineStage, - VkQueryPool queryPool, - uint32_t query); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyQueryPoolResults( - VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - VkDeviceSize stride, - VkQueryResultFlags flags); - -VKAPI_ATTR void VKAPI_CALL vkCmdPushConstants( - VkCommandBuffer commandBuffer, - VkPipelineLayout layout, - VkShaderStageFlags stageFlags, - uint32_t offset, - uint32_t size, - const void* pValues); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginRenderPass( - VkCommandBuffer commandBuffer, - const VkRenderPassBeginInfo* pRenderPassBegin, - VkSubpassContents contents); - -VKAPI_ATTR void VKAPI_CALL vkCmdNextSubpass( - VkCommandBuffer commandBuffer, - VkSubpassContents contents); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndRenderPass( - VkCommandBuffer commandBuffer); - -VKAPI_ATTR void VKAPI_CALL vkCmdExecuteCommands( - VkCommandBuffer commandBuffer, - uint32_t commandBufferCount, - const VkCommandBuffer* pCommandBuffers); -#endif - - -#define VK_VERSION_1_1 1 -// Vulkan 1.1 version number -#define VK_API_VERSION_1_1 VK_MAKE_API_VERSION(0, 1, 1, 0)// Patch version should always be set to 0 - -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSamplerYcbcrConversion) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDescriptorUpdateTemplate) -#define VK_MAX_DEVICE_GROUP_SIZE 32U -#define VK_LUID_SIZE 8U -#define VK_QUEUE_FAMILY_EXTERNAL (~1U) - -typedef enum VkPointClippingBehavior { - VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES = 0, - VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY = 1, - VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES_KHR = VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES, - VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY_KHR = VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY, - VK_POINT_CLIPPING_BEHAVIOR_MAX_ENUM = 0x7FFFFFFF -} VkPointClippingBehavior; - -typedef enum VkTessellationDomainOrigin { - VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT = 0, - VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT = 1, - VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT_KHR = VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT, - VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT_KHR = VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT, - VK_TESSELLATION_DOMAIN_ORIGIN_MAX_ENUM = 0x7FFFFFFF -} VkTessellationDomainOrigin; - -typedef enum VkSamplerYcbcrModelConversion { - VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY = 0, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY = 1, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709 = 2, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601 = 3, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 = 4, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY_KHR = VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY_KHR = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709_KHR = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601_KHR = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020_KHR = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020, - VK_SAMPLER_YCBCR_MODEL_CONVERSION_MAX_ENUM = 0x7FFFFFFF -} VkSamplerYcbcrModelConversion; - -typedef enum VkSamplerYcbcrRange { - VK_SAMPLER_YCBCR_RANGE_ITU_FULL = 0, - VK_SAMPLER_YCBCR_RANGE_ITU_NARROW = 1, - VK_SAMPLER_YCBCR_RANGE_ITU_FULL_KHR = VK_SAMPLER_YCBCR_RANGE_ITU_FULL, - VK_SAMPLER_YCBCR_RANGE_ITU_NARROW_KHR = VK_SAMPLER_YCBCR_RANGE_ITU_NARROW, - VK_SAMPLER_YCBCR_RANGE_MAX_ENUM = 0x7FFFFFFF -} VkSamplerYcbcrRange; - -typedef enum VkChromaLocation { - VK_CHROMA_LOCATION_COSITED_EVEN = 0, - VK_CHROMA_LOCATION_MIDPOINT = 1, - VK_CHROMA_LOCATION_COSITED_EVEN_KHR = VK_CHROMA_LOCATION_COSITED_EVEN, - VK_CHROMA_LOCATION_MIDPOINT_KHR = VK_CHROMA_LOCATION_MIDPOINT, - VK_CHROMA_LOCATION_MAX_ENUM = 0x7FFFFFFF -} VkChromaLocation; - -typedef enum VkDescriptorUpdateTemplateType { - VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET = 0, - VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR = 1, - VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET_KHR = VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET, - VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkDescriptorUpdateTemplateType; - -typedef enum VkSubgroupFeatureFlagBits { - VK_SUBGROUP_FEATURE_BASIC_BIT = 0x00000001, - VK_SUBGROUP_FEATURE_VOTE_BIT = 0x00000002, - VK_SUBGROUP_FEATURE_ARITHMETIC_BIT = 0x00000004, - VK_SUBGROUP_FEATURE_BALLOT_BIT = 0x00000008, - VK_SUBGROUP_FEATURE_SHUFFLE_BIT = 0x00000010, - VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT = 0x00000020, - VK_SUBGROUP_FEATURE_CLUSTERED_BIT = 0x00000040, - VK_SUBGROUP_FEATURE_QUAD_BIT = 0x00000080, - VK_SUBGROUP_FEATURE_PARTITIONED_BIT_NV = 0x00000100, - VK_SUBGROUP_FEATURE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSubgroupFeatureFlagBits; -typedef VkFlags VkSubgroupFeatureFlags; - -typedef enum VkPeerMemoryFeatureFlagBits { - VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT = 0x00000001, - VK_PEER_MEMORY_FEATURE_COPY_DST_BIT = 0x00000002, - VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT = 0x00000004, - VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT = 0x00000008, - VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT_KHR = VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT, - VK_PEER_MEMORY_FEATURE_COPY_DST_BIT_KHR = VK_PEER_MEMORY_FEATURE_COPY_DST_BIT, - VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT_KHR = VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT, - VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT_KHR = VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT, - VK_PEER_MEMORY_FEATURE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPeerMemoryFeatureFlagBits; -typedef VkFlags VkPeerMemoryFeatureFlags; - -typedef enum VkMemoryAllocateFlagBits { - VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT = 0x00000001, - VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT = 0x00000002, - VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT = 0x00000004, - VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT_KHR = VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT, - VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT_KHR = VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT, - VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR = VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT, - VK_MEMORY_ALLOCATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkMemoryAllocateFlagBits; -typedef VkFlags VkMemoryAllocateFlags; -typedef VkFlags VkCommandPoolTrimFlags; -typedef VkFlags VkDescriptorUpdateTemplateCreateFlags; - -typedef enum VkExternalMemoryHandleTypeFlagBits { - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT = 0x00000001, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT = 0x00000002, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT = 0x00000004, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT = 0x00000008, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT = 0x00000010, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT = 0x00000020, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT = 0x00000040, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT = 0x00000200, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_ANDROID_HARDWARE_BUFFER_BIT_ANDROID = 0x00000400, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT = 0x00000080, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT = 0x00000100, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_ZIRCON_VMO_BIT_FUCHSIA = 0x00000800, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_RDMA_ADDRESS_BIT_NV = 0x00001000, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT_KHR = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkExternalMemoryHandleTypeFlagBits; -typedef VkFlags VkExternalMemoryHandleTypeFlags; - -typedef enum VkExternalMemoryFeatureFlagBits { - VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT = 0x00000001, - VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT = 0x00000002, - VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT = 0x00000004, - VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_KHR = VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT, - VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_KHR = VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT, - VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_KHR = VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT, - VK_EXTERNAL_MEMORY_FEATURE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkExternalMemoryFeatureFlagBits; -typedef VkFlags VkExternalMemoryFeatureFlags; - -typedef enum VkExternalFenceHandleTypeFlagBits { - VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT = 0x00000001, - VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT = 0x00000002, - VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT = 0x00000004, - VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT = 0x00000008, - VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT, - VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT, - VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, - VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR = VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT, - VK_EXTERNAL_FENCE_HANDLE_TYPE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkExternalFenceHandleTypeFlagBits; -typedef VkFlags VkExternalFenceHandleTypeFlags; - -typedef enum VkExternalFenceFeatureFlagBits { - VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT = 0x00000001, - VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT = 0x00000002, - VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT_KHR = VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT, - VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT_KHR = VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT, - VK_EXTERNAL_FENCE_FEATURE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkExternalFenceFeatureFlagBits; -typedef VkFlags VkExternalFenceFeatureFlags; - -typedef enum VkFenceImportFlagBits { - VK_FENCE_IMPORT_TEMPORARY_BIT = 0x00000001, - VK_FENCE_IMPORT_TEMPORARY_BIT_KHR = VK_FENCE_IMPORT_TEMPORARY_BIT, - VK_FENCE_IMPORT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkFenceImportFlagBits; -typedef VkFlags VkFenceImportFlags; - -typedef enum VkSemaphoreImportFlagBits { - VK_SEMAPHORE_IMPORT_TEMPORARY_BIT = 0x00000001, - VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR = VK_SEMAPHORE_IMPORT_TEMPORARY_BIT, - VK_SEMAPHORE_IMPORT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSemaphoreImportFlagBits; -typedef VkFlags VkSemaphoreImportFlags; - -typedef enum VkExternalSemaphoreHandleTypeFlagBits { - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT = 0x00000001, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT = 0x00000002, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT = 0x00000004, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT = 0x00000008, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT = 0x00000010, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_ZIRCON_EVENT_BIT_FUCHSIA = 0x00000080, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D11_FENCE_BIT = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT_KHR = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT, - VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkExternalSemaphoreHandleTypeFlagBits; -typedef VkFlags VkExternalSemaphoreHandleTypeFlags; - -typedef enum VkExternalSemaphoreFeatureFlagBits { - VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT = 0x00000001, - VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT = 0x00000002, - VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT_KHR = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT, - VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT_KHR = VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT, - VK_EXTERNAL_SEMAPHORE_FEATURE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkExternalSemaphoreFeatureFlagBits; -typedef VkFlags VkExternalSemaphoreFeatureFlags; -typedef struct VkPhysicalDeviceSubgroupProperties { - VkStructureType sType; - void* pNext; - uint32_t subgroupSize; - VkShaderStageFlags supportedStages; - VkSubgroupFeatureFlags supportedOperations; - VkBool32 quadOperationsInAllStages; -} VkPhysicalDeviceSubgroupProperties; - -typedef struct VkBindBufferMemoryInfo { - VkStructureType sType; - const void* pNext; - VkBuffer buffer; - VkDeviceMemory memory; - VkDeviceSize memoryOffset; -} VkBindBufferMemoryInfo; - -typedef struct VkBindImageMemoryInfo { - VkStructureType sType; - const void* pNext; - VkImage image; - VkDeviceMemory memory; - VkDeviceSize memoryOffset; -} VkBindImageMemoryInfo; - -typedef struct VkPhysicalDevice16BitStorageFeatures { - VkStructureType sType; - void* pNext; - VkBool32 storageBuffer16BitAccess; - VkBool32 uniformAndStorageBuffer16BitAccess; - VkBool32 storagePushConstant16; - VkBool32 storageInputOutput16; -} VkPhysicalDevice16BitStorageFeatures; - -typedef struct VkMemoryDedicatedRequirements { - VkStructureType sType; - void* pNext; - VkBool32 prefersDedicatedAllocation; - VkBool32 requiresDedicatedAllocation; -} VkMemoryDedicatedRequirements; - -typedef struct VkMemoryDedicatedAllocateInfo { - VkStructureType sType; - const void* pNext; - VkImage image; - VkBuffer buffer; -} VkMemoryDedicatedAllocateInfo; - -typedef struct VkMemoryAllocateFlagsInfo { - VkStructureType sType; - const void* pNext; - VkMemoryAllocateFlags flags; - uint32_t deviceMask; -} VkMemoryAllocateFlagsInfo; - -typedef struct VkDeviceGroupRenderPassBeginInfo { - VkStructureType sType; - const void* pNext; - uint32_t deviceMask; - uint32_t deviceRenderAreaCount; - const VkRect2D* pDeviceRenderAreas; -} VkDeviceGroupRenderPassBeginInfo; - -typedef struct VkDeviceGroupCommandBufferBeginInfo { - VkStructureType sType; - const void* pNext; - uint32_t deviceMask; -} VkDeviceGroupCommandBufferBeginInfo; - -typedef struct VkDeviceGroupSubmitInfo { - VkStructureType sType; - const void* pNext; - uint32_t waitSemaphoreCount; - const uint32_t* pWaitSemaphoreDeviceIndices; - uint32_t commandBufferCount; - const uint32_t* pCommandBufferDeviceMasks; - uint32_t signalSemaphoreCount; - const uint32_t* pSignalSemaphoreDeviceIndices; -} VkDeviceGroupSubmitInfo; - -typedef struct VkDeviceGroupBindSparseInfo { - VkStructureType sType; - const void* pNext; - uint32_t resourceDeviceIndex; - uint32_t memoryDeviceIndex; -} VkDeviceGroupBindSparseInfo; - -typedef struct VkBindBufferMemoryDeviceGroupInfo { - VkStructureType sType; - const void* pNext; - uint32_t deviceIndexCount; - const uint32_t* pDeviceIndices; -} VkBindBufferMemoryDeviceGroupInfo; - -typedef struct VkBindImageMemoryDeviceGroupInfo { - VkStructureType sType; - const void* pNext; - uint32_t deviceIndexCount; - const uint32_t* pDeviceIndices; - uint32_t splitInstanceBindRegionCount; - const VkRect2D* pSplitInstanceBindRegions; -} VkBindImageMemoryDeviceGroupInfo; - -typedef struct VkPhysicalDeviceGroupProperties { - VkStructureType sType; - void* pNext; - uint32_t physicalDeviceCount; - VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE]; - VkBool32 subsetAllocation; -} VkPhysicalDeviceGroupProperties; - -typedef struct VkDeviceGroupDeviceCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t physicalDeviceCount; - const VkPhysicalDevice* pPhysicalDevices; -} VkDeviceGroupDeviceCreateInfo; - -typedef struct VkBufferMemoryRequirementsInfo2 { - VkStructureType sType; - const void* pNext; - VkBuffer buffer; -} VkBufferMemoryRequirementsInfo2; - -typedef struct VkImageMemoryRequirementsInfo2 { - VkStructureType sType; - const void* pNext; - VkImage image; -} VkImageMemoryRequirementsInfo2; - -typedef struct VkImageSparseMemoryRequirementsInfo2 { - VkStructureType sType; - const void* pNext; - VkImage image; -} VkImageSparseMemoryRequirementsInfo2; - -typedef struct VkMemoryRequirements2 { - VkStructureType sType; - void* pNext; - VkMemoryRequirements memoryRequirements; -} VkMemoryRequirements2; - -typedef struct VkSparseImageMemoryRequirements2 { - VkStructureType sType; - void* pNext; - VkSparseImageMemoryRequirements memoryRequirements; -} VkSparseImageMemoryRequirements2; - -typedef struct VkPhysicalDeviceFeatures2 { - VkStructureType sType; - void* pNext; - VkPhysicalDeviceFeatures features; -} VkPhysicalDeviceFeatures2; - -typedef struct VkPhysicalDeviceProperties2 { - VkStructureType sType; - void* pNext; - VkPhysicalDeviceProperties properties; -} VkPhysicalDeviceProperties2; - -typedef struct VkFormatProperties2 { - VkStructureType sType; - void* pNext; - VkFormatProperties formatProperties; -} VkFormatProperties2; - -typedef struct VkImageFormatProperties2 { - VkStructureType sType; - void* pNext; - VkImageFormatProperties imageFormatProperties; -} VkImageFormatProperties2; - -typedef struct VkPhysicalDeviceImageFormatInfo2 { - VkStructureType sType; - const void* pNext; - VkFormat format; - VkImageType type; - VkImageTiling tiling; - VkImageUsageFlags usage; - VkImageCreateFlags flags; -} VkPhysicalDeviceImageFormatInfo2; - -typedef struct VkQueueFamilyProperties2 { - VkStructureType sType; - void* pNext; - VkQueueFamilyProperties queueFamilyProperties; -} VkQueueFamilyProperties2; - -typedef struct VkPhysicalDeviceMemoryProperties2 { - VkStructureType sType; - void* pNext; - VkPhysicalDeviceMemoryProperties memoryProperties; -} VkPhysicalDeviceMemoryProperties2; - -typedef struct VkSparseImageFormatProperties2 { - VkStructureType sType; - void* pNext; - VkSparseImageFormatProperties properties; -} VkSparseImageFormatProperties2; - -typedef struct VkPhysicalDeviceSparseImageFormatInfo2 { - VkStructureType sType; - const void* pNext; - VkFormat format; - VkImageType type; - VkSampleCountFlagBits samples; - VkImageUsageFlags usage; - VkImageTiling tiling; -} VkPhysicalDeviceSparseImageFormatInfo2; - -typedef struct VkPhysicalDevicePointClippingProperties { - VkStructureType sType; - void* pNext; - VkPointClippingBehavior pointClippingBehavior; -} VkPhysicalDevicePointClippingProperties; - -typedef struct VkInputAttachmentAspectReference { - uint32_t subpass; - uint32_t inputAttachmentIndex; - VkImageAspectFlags aspectMask; -} VkInputAttachmentAspectReference; - -typedef struct VkRenderPassInputAttachmentAspectCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t aspectReferenceCount; - const VkInputAttachmentAspectReference* pAspectReferences; -} VkRenderPassInputAttachmentAspectCreateInfo; - -typedef struct VkImageViewUsageCreateInfo { - VkStructureType sType; - const void* pNext; - VkImageUsageFlags usage; -} VkImageViewUsageCreateInfo; - -typedef struct VkPipelineTessellationDomainOriginStateCreateInfo { - VkStructureType sType; - const void* pNext; - VkTessellationDomainOrigin domainOrigin; -} VkPipelineTessellationDomainOriginStateCreateInfo; - -typedef struct VkRenderPassMultiviewCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t subpassCount; - const uint32_t* pViewMasks; - uint32_t dependencyCount; - const int32_t* pViewOffsets; - uint32_t correlationMaskCount; - const uint32_t* pCorrelationMasks; -} VkRenderPassMultiviewCreateInfo; - -typedef struct VkPhysicalDeviceMultiviewFeatures { - VkStructureType sType; - void* pNext; - VkBool32 multiview; - VkBool32 multiviewGeometryShader; - VkBool32 multiviewTessellationShader; -} VkPhysicalDeviceMultiviewFeatures; - -typedef struct VkPhysicalDeviceMultiviewProperties { - VkStructureType sType; - void* pNext; - uint32_t maxMultiviewViewCount; - uint32_t maxMultiviewInstanceIndex; -} VkPhysicalDeviceMultiviewProperties; - -typedef struct VkPhysicalDeviceVariablePointersFeatures { - VkStructureType sType; - void* pNext; - VkBool32 variablePointersStorageBuffer; - VkBool32 variablePointers; -} VkPhysicalDeviceVariablePointersFeatures; - -typedef VkPhysicalDeviceVariablePointersFeatures VkPhysicalDeviceVariablePointerFeatures; - -typedef struct VkPhysicalDeviceProtectedMemoryFeatures { - VkStructureType sType; - void* pNext; - VkBool32 protectedMemory; -} VkPhysicalDeviceProtectedMemoryFeatures; - -typedef struct VkPhysicalDeviceProtectedMemoryProperties { - VkStructureType sType; - void* pNext; - VkBool32 protectedNoFault; -} VkPhysicalDeviceProtectedMemoryProperties; - -typedef struct VkDeviceQueueInfo2 { - VkStructureType sType; - const void* pNext; - VkDeviceQueueCreateFlags flags; - uint32_t queueFamilyIndex; - uint32_t queueIndex; -} VkDeviceQueueInfo2; - -typedef struct VkProtectedSubmitInfo { - VkStructureType sType; - const void* pNext; - VkBool32 protectedSubmit; -} VkProtectedSubmitInfo; - -typedef struct VkSamplerYcbcrConversionCreateInfo { - VkStructureType sType; - const void* pNext; - VkFormat format; - VkSamplerYcbcrModelConversion ycbcrModel; - VkSamplerYcbcrRange ycbcrRange; - VkComponentMapping components; - VkChromaLocation xChromaOffset; - VkChromaLocation yChromaOffset; - VkFilter chromaFilter; - VkBool32 forceExplicitReconstruction; -} VkSamplerYcbcrConversionCreateInfo; - -typedef struct VkSamplerYcbcrConversionInfo { - VkStructureType sType; - const void* pNext; - VkSamplerYcbcrConversion conversion; -} VkSamplerYcbcrConversionInfo; - -typedef struct VkBindImagePlaneMemoryInfo { - VkStructureType sType; - const void* pNext; - VkImageAspectFlagBits planeAspect; -} VkBindImagePlaneMemoryInfo; - -typedef struct VkImagePlaneMemoryRequirementsInfo { - VkStructureType sType; - const void* pNext; - VkImageAspectFlagBits planeAspect; -} VkImagePlaneMemoryRequirementsInfo; - -typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures { - VkStructureType sType; - void* pNext; - VkBool32 samplerYcbcrConversion; -} VkPhysicalDeviceSamplerYcbcrConversionFeatures; - -typedef struct VkSamplerYcbcrConversionImageFormatProperties { - VkStructureType sType; - void* pNext; - uint32_t combinedImageSamplerDescriptorCount; -} VkSamplerYcbcrConversionImageFormatProperties; - -typedef struct VkDescriptorUpdateTemplateEntry { - uint32_t dstBinding; - uint32_t dstArrayElement; - uint32_t descriptorCount; - VkDescriptorType descriptorType; - size_t offset; - size_t stride; -} VkDescriptorUpdateTemplateEntry; - -typedef struct VkDescriptorUpdateTemplateCreateInfo { - VkStructureType sType; - const void* pNext; - VkDescriptorUpdateTemplateCreateFlags flags; - uint32_t descriptorUpdateEntryCount; - const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries; - VkDescriptorUpdateTemplateType templateType; - VkDescriptorSetLayout descriptorSetLayout; - VkPipelineBindPoint pipelineBindPoint; - VkPipelineLayout pipelineLayout; - uint32_t set; -} VkDescriptorUpdateTemplateCreateInfo; - -typedef struct VkExternalMemoryProperties { - VkExternalMemoryFeatureFlags externalMemoryFeatures; - VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes; - VkExternalMemoryHandleTypeFlags compatibleHandleTypes; -} VkExternalMemoryProperties; - -typedef struct VkPhysicalDeviceExternalImageFormatInfo { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagBits handleType; -} VkPhysicalDeviceExternalImageFormatInfo; - -typedef struct VkExternalImageFormatProperties { - VkStructureType sType; - void* pNext; - VkExternalMemoryProperties externalMemoryProperties; -} VkExternalImageFormatProperties; - -typedef struct VkPhysicalDeviceExternalBufferInfo { - VkStructureType sType; - const void* pNext; - VkBufferCreateFlags flags; - VkBufferUsageFlags usage; - VkExternalMemoryHandleTypeFlagBits handleType; -} VkPhysicalDeviceExternalBufferInfo; - -typedef struct VkExternalBufferProperties { - VkStructureType sType; - void* pNext; - VkExternalMemoryProperties externalMemoryProperties; -} VkExternalBufferProperties; - -typedef struct VkPhysicalDeviceIDProperties { - VkStructureType sType; - void* pNext; - uint8_t deviceUUID[VK_UUID_SIZE]; - uint8_t driverUUID[VK_UUID_SIZE]; - uint8_t deviceLUID[VK_LUID_SIZE]; - uint32_t deviceNodeMask; - VkBool32 deviceLUIDValid; -} VkPhysicalDeviceIDProperties; - -typedef struct VkExternalMemoryImageCreateInfo { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlags handleTypes; -} VkExternalMemoryImageCreateInfo; - -typedef struct VkExternalMemoryBufferCreateInfo { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlags handleTypes; -} VkExternalMemoryBufferCreateInfo; - -typedef struct VkExportMemoryAllocateInfo { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlags handleTypes; -} VkExportMemoryAllocateInfo; - -typedef struct VkPhysicalDeviceExternalFenceInfo { - VkStructureType sType; - const void* pNext; - VkExternalFenceHandleTypeFlagBits handleType; -} VkPhysicalDeviceExternalFenceInfo; - -typedef struct VkExternalFenceProperties { - VkStructureType sType; - void* pNext; - VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes; - VkExternalFenceHandleTypeFlags compatibleHandleTypes; - VkExternalFenceFeatureFlags externalFenceFeatures; -} VkExternalFenceProperties; - -typedef struct VkExportFenceCreateInfo { - VkStructureType sType; - const void* pNext; - VkExternalFenceHandleTypeFlags handleTypes; -} VkExportFenceCreateInfo; - -typedef struct VkExportSemaphoreCreateInfo { - VkStructureType sType; - const void* pNext; - VkExternalSemaphoreHandleTypeFlags handleTypes; -} VkExportSemaphoreCreateInfo; - -typedef struct VkPhysicalDeviceExternalSemaphoreInfo { - VkStructureType sType; - const void* pNext; - VkExternalSemaphoreHandleTypeFlagBits handleType; -} VkPhysicalDeviceExternalSemaphoreInfo; - -typedef struct VkExternalSemaphoreProperties { - VkStructureType sType; - void* pNext; - VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes; - VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes; - VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures; -} VkExternalSemaphoreProperties; - -typedef struct VkPhysicalDeviceMaintenance3Properties { - VkStructureType sType; - void* pNext; - uint32_t maxPerSetDescriptors; - VkDeviceSize maxMemoryAllocationSize; -} VkPhysicalDeviceMaintenance3Properties; - -typedef struct VkDescriptorSetLayoutSupport { - VkStructureType sType; - void* pNext; - VkBool32 supported; -} VkDescriptorSetLayoutSupport; - -typedef struct VkPhysicalDeviceShaderDrawParametersFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderDrawParameters; -} VkPhysicalDeviceShaderDrawParametersFeatures; - -typedef VkPhysicalDeviceShaderDrawParametersFeatures VkPhysicalDeviceShaderDrawParameterFeatures; - -typedef VkResult (VKAPI_PTR *PFN_vkEnumerateInstanceVersion)(uint32_t* pApiVersion); -typedef VkResult (VKAPI_PTR *PFN_vkBindBufferMemory2)(VkDevice device, uint32_t bindInfoCount, const VkBindBufferMemoryInfo* pBindInfos); -typedef VkResult (VKAPI_PTR *PFN_vkBindImageMemory2)(VkDevice device, uint32_t bindInfoCount, const VkBindImageMemoryInfo* pBindInfos); -typedef void (VKAPI_PTR *PFN_vkGetDeviceGroupPeerMemoryFeatures)(VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, VkPeerMemoryFeatureFlags* pPeerMemoryFeatures); -typedef void (VKAPI_PTR *PFN_vkCmdSetDeviceMask)(VkCommandBuffer commandBuffer, uint32_t deviceMask); -typedef void (VKAPI_PTR *PFN_vkCmdDispatchBase)(VkCommandBuffer commandBuffer, uint32_t baseGroupX, uint32_t baseGroupY, uint32_t baseGroupZ, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ); -typedef VkResult (VKAPI_PTR *PFN_vkEnumeratePhysicalDeviceGroups)(VkInstance instance, uint32_t* pPhysicalDeviceGroupCount, VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties); -typedef void (VKAPI_PTR *PFN_vkGetImageMemoryRequirements2)(VkDevice device, const VkImageMemoryRequirementsInfo2* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetBufferMemoryRequirements2)(VkDevice device, const VkBufferMemoryRequirementsInfo2* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetImageSparseMemoryRequirements2)(VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceFeatures2)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures2* pFeatures); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceProperties2)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties2* pProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceFormatProperties2)(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2* pFormatProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceImageFormatProperties2)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo, VkImageFormatProperties2* pImageFormatProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceQueueFamilyProperties2)(VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties2* pQueueFamilyProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceMemoryProperties2)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2* pMemoryProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceSparseImageFormatProperties2)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo, uint32_t* pPropertyCount, VkSparseImageFormatProperties2* pProperties); -typedef void (VKAPI_PTR *PFN_vkTrimCommandPool)(VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlags flags); -typedef void (VKAPI_PTR *PFN_vkGetDeviceQueue2)(VkDevice device, const VkDeviceQueueInfo2* pQueueInfo, VkQueue* pQueue); -typedef VkResult (VKAPI_PTR *PFN_vkCreateSamplerYcbcrConversion)(VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSamplerYcbcrConversion* pYcbcrConversion); -typedef void (VKAPI_PTR *PFN_vkDestroySamplerYcbcrConversion)(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDescriptorUpdateTemplate)(VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate); -typedef void (VKAPI_PTR *PFN_vkDestroyDescriptorUpdateTemplate)(VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkUpdateDescriptorSetWithTemplate)(VkDevice device, VkDescriptorSet descriptorSet, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const void* pData); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalBufferProperties)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo, VkExternalBufferProperties* pExternalBufferProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalFenceProperties)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo, VkExternalFenceProperties* pExternalFenceProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalSemaphoreProperties)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo, VkExternalSemaphoreProperties* pExternalSemaphoreProperties); -typedef void (VKAPI_PTR *PFN_vkGetDescriptorSetLayoutSupport)(VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, VkDescriptorSetLayoutSupport* pSupport); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceVersion( - uint32_t* pApiVersion); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindBufferMemory2( - VkDevice device, - uint32_t bindInfoCount, - const VkBindBufferMemoryInfo* pBindInfos); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindImageMemory2( - VkDevice device, - uint32_t bindInfoCount, - const VkBindImageMemoryInfo* pBindInfos); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceGroupPeerMemoryFeatures( - VkDevice device, - uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VkPeerMemoryFeatureFlags* pPeerMemoryFeatures); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDeviceMask( - VkCommandBuffer commandBuffer, - uint32_t deviceMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdDispatchBase( - VkCommandBuffer commandBuffer, - uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ); - -VKAPI_ATTR VkResult VKAPI_CALL vkEnumeratePhysicalDeviceGroups( - VkInstance instance, - uint32_t* pPhysicalDeviceGroupCount, - VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetImageMemoryRequirements2( - VkDevice device, - const VkImageMemoryRequirementsInfo2* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetBufferMemoryRequirements2( - VkDevice device, - const VkBufferMemoryRequirementsInfo2* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetImageSparseMemoryRequirements2( - VkDevice device, - const VkImageSparseMemoryRequirementsInfo2* pInfo, - uint32_t* pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFeatures2( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceFeatures2* pFeatures); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceProperties2( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceProperties2* pProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFormatProperties2( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkFormatProperties2* pFormatProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceImageFormatProperties2( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo, - VkImageFormatProperties2* pImageFormatProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceQueueFamilyProperties2( - VkPhysicalDevice physicalDevice, - uint32_t* pQueueFamilyPropertyCount, - VkQueueFamilyProperties2* pQueueFamilyProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceMemoryProperties2( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceMemoryProperties2* pMemoryProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceSparseImageFormatProperties2( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo, - uint32_t* pPropertyCount, - VkSparseImageFormatProperties2* pProperties); - -VKAPI_ATTR void VKAPI_CALL vkTrimCommandPool( - VkDevice device, - VkCommandPool commandPool, - VkCommandPoolTrimFlags flags); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceQueue2( - VkDevice device, - const VkDeviceQueueInfo2* pQueueInfo, - VkQueue* pQueue); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateSamplerYcbcrConversion( - VkDevice device, - const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSamplerYcbcrConversion* pYcbcrConversion); - -VKAPI_ATTR void VKAPI_CALL vkDestroySamplerYcbcrConversion( - VkDevice device, - VkSamplerYcbcrConversion ycbcrConversion, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDescriptorUpdateTemplate( - VkDevice device, - const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDescriptorUpdateTemplate( - VkDevice device, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkUpdateDescriptorSetWithTemplate( - VkDevice device, - VkDescriptorSet descriptorSet, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const void* pData); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceExternalBufferProperties( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo, - VkExternalBufferProperties* pExternalBufferProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceExternalFenceProperties( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo, - VkExternalFenceProperties* pExternalFenceProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceExternalSemaphoreProperties( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo, - VkExternalSemaphoreProperties* pExternalSemaphoreProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetDescriptorSetLayoutSupport( - VkDevice device, - const VkDescriptorSetLayoutCreateInfo* pCreateInfo, - VkDescriptorSetLayoutSupport* pSupport); -#endif - - -#define VK_VERSION_1_2 1 -// Vulkan 1.2 version number -#define VK_API_VERSION_1_2 VK_MAKE_API_VERSION(0, 1, 2, 0)// Patch version should always be set to 0 - -#define VK_MAX_DRIVER_NAME_SIZE 256U -#define VK_MAX_DRIVER_INFO_SIZE 256U - -typedef enum VkDriverId { - VK_DRIVER_ID_AMD_PROPRIETARY = 1, - VK_DRIVER_ID_AMD_OPEN_SOURCE = 2, - VK_DRIVER_ID_MESA_RADV = 3, - VK_DRIVER_ID_NVIDIA_PROPRIETARY = 4, - VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS = 5, - VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA = 6, - VK_DRIVER_ID_IMAGINATION_PROPRIETARY = 7, - VK_DRIVER_ID_QUALCOMM_PROPRIETARY = 8, - VK_DRIVER_ID_ARM_PROPRIETARY = 9, - VK_DRIVER_ID_GOOGLE_SWIFTSHADER = 10, - VK_DRIVER_ID_GGP_PROPRIETARY = 11, - VK_DRIVER_ID_BROADCOM_PROPRIETARY = 12, - VK_DRIVER_ID_MESA_LLVMPIPE = 13, - VK_DRIVER_ID_MOLTENVK = 14, - VK_DRIVER_ID_COREAVI_PROPRIETARY = 15, - VK_DRIVER_ID_JUICE_PROPRIETARY = 16, - VK_DRIVER_ID_VERISILICON_PROPRIETARY = 17, - VK_DRIVER_ID_MESA_TURNIP = 18, - VK_DRIVER_ID_MESA_V3DV = 19, - VK_DRIVER_ID_MESA_PANVK = 20, - VK_DRIVER_ID_SAMSUNG_PROPRIETARY = 21, - VK_DRIVER_ID_MESA_VENUS = 22, - VK_DRIVER_ID_AMD_PROPRIETARY_KHR = VK_DRIVER_ID_AMD_PROPRIETARY, - VK_DRIVER_ID_AMD_OPEN_SOURCE_KHR = VK_DRIVER_ID_AMD_OPEN_SOURCE, - VK_DRIVER_ID_MESA_RADV_KHR = VK_DRIVER_ID_MESA_RADV, - VK_DRIVER_ID_NVIDIA_PROPRIETARY_KHR = VK_DRIVER_ID_NVIDIA_PROPRIETARY, - VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS_KHR = VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS, - VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA_KHR = VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA, - VK_DRIVER_ID_IMAGINATION_PROPRIETARY_KHR = VK_DRIVER_ID_IMAGINATION_PROPRIETARY, - VK_DRIVER_ID_QUALCOMM_PROPRIETARY_KHR = VK_DRIVER_ID_QUALCOMM_PROPRIETARY, - VK_DRIVER_ID_ARM_PROPRIETARY_KHR = VK_DRIVER_ID_ARM_PROPRIETARY, - VK_DRIVER_ID_GOOGLE_SWIFTSHADER_KHR = VK_DRIVER_ID_GOOGLE_SWIFTSHADER, - VK_DRIVER_ID_GGP_PROPRIETARY_KHR = VK_DRIVER_ID_GGP_PROPRIETARY, - VK_DRIVER_ID_BROADCOM_PROPRIETARY_KHR = VK_DRIVER_ID_BROADCOM_PROPRIETARY, - VK_DRIVER_ID_MAX_ENUM = 0x7FFFFFFF -} VkDriverId; - -typedef enum VkShaderFloatControlsIndependence { - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_32_BIT_ONLY = 0, - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_ALL = 1, - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_NONE = 2, - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_32_BIT_ONLY_KHR = VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_32_BIT_ONLY, - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_ALL_KHR = VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_ALL, - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_NONE_KHR = VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_NONE, - VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_MAX_ENUM = 0x7FFFFFFF -} VkShaderFloatControlsIndependence; - -typedef enum VkSamplerReductionMode { - VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE = 0, - VK_SAMPLER_REDUCTION_MODE_MIN = 1, - VK_SAMPLER_REDUCTION_MODE_MAX = 2, - VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT = VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE, - VK_SAMPLER_REDUCTION_MODE_MIN_EXT = VK_SAMPLER_REDUCTION_MODE_MIN, - VK_SAMPLER_REDUCTION_MODE_MAX_EXT = VK_SAMPLER_REDUCTION_MODE_MAX, - VK_SAMPLER_REDUCTION_MODE_MAX_ENUM = 0x7FFFFFFF -} VkSamplerReductionMode; - -typedef enum VkSemaphoreType { - VK_SEMAPHORE_TYPE_BINARY = 0, - VK_SEMAPHORE_TYPE_TIMELINE = 1, - VK_SEMAPHORE_TYPE_BINARY_KHR = VK_SEMAPHORE_TYPE_BINARY, - VK_SEMAPHORE_TYPE_TIMELINE_KHR = VK_SEMAPHORE_TYPE_TIMELINE, - VK_SEMAPHORE_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkSemaphoreType; - -typedef enum VkResolveModeFlagBits { - VK_RESOLVE_MODE_NONE = 0, - VK_RESOLVE_MODE_SAMPLE_ZERO_BIT = 0x00000001, - VK_RESOLVE_MODE_AVERAGE_BIT = 0x00000002, - VK_RESOLVE_MODE_MIN_BIT = 0x00000004, - VK_RESOLVE_MODE_MAX_BIT = 0x00000008, - VK_RESOLVE_MODE_NONE_KHR = VK_RESOLVE_MODE_NONE, - VK_RESOLVE_MODE_SAMPLE_ZERO_BIT_KHR = VK_RESOLVE_MODE_SAMPLE_ZERO_BIT, - VK_RESOLVE_MODE_AVERAGE_BIT_KHR = VK_RESOLVE_MODE_AVERAGE_BIT, - VK_RESOLVE_MODE_MIN_BIT_KHR = VK_RESOLVE_MODE_MIN_BIT, - VK_RESOLVE_MODE_MAX_BIT_KHR = VK_RESOLVE_MODE_MAX_BIT, - VK_RESOLVE_MODE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkResolveModeFlagBits; -typedef VkFlags VkResolveModeFlags; - -typedef enum VkDescriptorBindingFlagBits { - VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT = 0x00000001, - VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT = 0x00000002, - VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT = 0x00000004, - VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT = 0x00000008, - VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT = VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT, - VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT = VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT, - VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT = VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT, - VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT = VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT, - VK_DESCRIPTOR_BINDING_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkDescriptorBindingFlagBits; -typedef VkFlags VkDescriptorBindingFlags; - -typedef enum VkSemaphoreWaitFlagBits { - VK_SEMAPHORE_WAIT_ANY_BIT = 0x00000001, - VK_SEMAPHORE_WAIT_ANY_BIT_KHR = VK_SEMAPHORE_WAIT_ANY_BIT, - VK_SEMAPHORE_WAIT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSemaphoreWaitFlagBits; -typedef VkFlags VkSemaphoreWaitFlags; -typedef struct VkPhysicalDeviceVulkan11Features { - VkStructureType sType; - void* pNext; - VkBool32 storageBuffer16BitAccess; - VkBool32 uniformAndStorageBuffer16BitAccess; - VkBool32 storagePushConstant16; - VkBool32 storageInputOutput16; - VkBool32 multiview; - VkBool32 multiviewGeometryShader; - VkBool32 multiviewTessellationShader; - VkBool32 variablePointersStorageBuffer; - VkBool32 variablePointers; - VkBool32 protectedMemory; - VkBool32 samplerYcbcrConversion; - VkBool32 shaderDrawParameters; -} VkPhysicalDeviceVulkan11Features; - -typedef struct VkPhysicalDeviceVulkan11Properties { - VkStructureType sType; - void* pNext; - uint8_t deviceUUID[VK_UUID_SIZE]; - uint8_t driverUUID[VK_UUID_SIZE]; - uint8_t deviceLUID[VK_LUID_SIZE]; - uint32_t deviceNodeMask; - VkBool32 deviceLUIDValid; - uint32_t subgroupSize; - VkShaderStageFlags subgroupSupportedStages; - VkSubgroupFeatureFlags subgroupSupportedOperations; - VkBool32 subgroupQuadOperationsInAllStages; - VkPointClippingBehavior pointClippingBehavior; - uint32_t maxMultiviewViewCount; - uint32_t maxMultiviewInstanceIndex; - VkBool32 protectedNoFault; - uint32_t maxPerSetDescriptors; - VkDeviceSize maxMemoryAllocationSize; -} VkPhysicalDeviceVulkan11Properties; - -typedef struct VkPhysicalDeviceVulkan12Features { - VkStructureType sType; - void* pNext; - VkBool32 samplerMirrorClampToEdge; - VkBool32 drawIndirectCount; - VkBool32 storageBuffer8BitAccess; - VkBool32 uniformAndStorageBuffer8BitAccess; - VkBool32 storagePushConstant8; - VkBool32 shaderBufferInt64Atomics; - VkBool32 shaderSharedInt64Atomics; - VkBool32 shaderFloat16; - VkBool32 shaderInt8; - VkBool32 descriptorIndexing; - VkBool32 shaderInputAttachmentArrayDynamicIndexing; - VkBool32 shaderUniformTexelBufferArrayDynamicIndexing; - VkBool32 shaderStorageTexelBufferArrayDynamicIndexing; - VkBool32 shaderUniformBufferArrayNonUniformIndexing; - VkBool32 shaderSampledImageArrayNonUniformIndexing; - VkBool32 shaderStorageBufferArrayNonUniformIndexing; - VkBool32 shaderStorageImageArrayNonUniformIndexing; - VkBool32 shaderInputAttachmentArrayNonUniformIndexing; - VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing; - VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing; - VkBool32 descriptorBindingUniformBufferUpdateAfterBind; - VkBool32 descriptorBindingSampledImageUpdateAfterBind; - VkBool32 descriptorBindingStorageImageUpdateAfterBind; - VkBool32 descriptorBindingStorageBufferUpdateAfterBind; - VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind; - VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind; - VkBool32 descriptorBindingUpdateUnusedWhilePending; - VkBool32 descriptorBindingPartiallyBound; - VkBool32 descriptorBindingVariableDescriptorCount; - VkBool32 runtimeDescriptorArray; - VkBool32 samplerFilterMinmax; - VkBool32 scalarBlockLayout; - VkBool32 imagelessFramebuffer; - VkBool32 uniformBufferStandardLayout; - VkBool32 shaderSubgroupExtendedTypes; - VkBool32 separateDepthStencilLayouts; - VkBool32 hostQueryReset; - VkBool32 timelineSemaphore; - VkBool32 bufferDeviceAddress; - VkBool32 bufferDeviceAddressCaptureReplay; - VkBool32 bufferDeviceAddressMultiDevice; - VkBool32 vulkanMemoryModel; - VkBool32 vulkanMemoryModelDeviceScope; - VkBool32 vulkanMemoryModelAvailabilityVisibilityChains; - VkBool32 shaderOutputViewportIndex; - VkBool32 shaderOutputLayer; - VkBool32 subgroupBroadcastDynamicId; -} VkPhysicalDeviceVulkan12Features; - -typedef struct VkConformanceVersion { - uint8_t major; - uint8_t minor; - uint8_t subminor; - uint8_t patch; -} VkConformanceVersion; - -typedef struct VkPhysicalDeviceVulkan12Properties { - VkStructureType sType; - void* pNext; - VkDriverId driverID; - char driverName[VK_MAX_DRIVER_NAME_SIZE]; - char driverInfo[VK_MAX_DRIVER_INFO_SIZE]; - VkConformanceVersion conformanceVersion; - VkShaderFloatControlsIndependence denormBehaviorIndependence; - VkShaderFloatControlsIndependence roundingModeIndependence; - VkBool32 shaderSignedZeroInfNanPreserveFloat16; - VkBool32 shaderSignedZeroInfNanPreserveFloat32; - VkBool32 shaderSignedZeroInfNanPreserveFloat64; - VkBool32 shaderDenormPreserveFloat16; - VkBool32 shaderDenormPreserveFloat32; - VkBool32 shaderDenormPreserveFloat64; - VkBool32 shaderDenormFlushToZeroFloat16; - VkBool32 shaderDenormFlushToZeroFloat32; - VkBool32 shaderDenormFlushToZeroFloat64; - VkBool32 shaderRoundingModeRTEFloat16; - VkBool32 shaderRoundingModeRTEFloat32; - VkBool32 shaderRoundingModeRTEFloat64; - VkBool32 shaderRoundingModeRTZFloat16; - VkBool32 shaderRoundingModeRTZFloat32; - VkBool32 shaderRoundingModeRTZFloat64; - uint32_t maxUpdateAfterBindDescriptorsInAllPools; - VkBool32 shaderUniformBufferArrayNonUniformIndexingNative; - VkBool32 shaderSampledImageArrayNonUniformIndexingNative; - VkBool32 shaderStorageBufferArrayNonUniformIndexingNative; - VkBool32 shaderStorageImageArrayNonUniformIndexingNative; - VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative; - VkBool32 robustBufferAccessUpdateAfterBind; - VkBool32 quadDivergentImplicitLod; - uint32_t maxPerStageDescriptorUpdateAfterBindSamplers; - uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers; - uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages; - uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments; - uint32_t maxPerStageUpdateAfterBindResources; - uint32_t maxDescriptorSetUpdateAfterBindSamplers; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic; - uint32_t maxDescriptorSetUpdateAfterBindSampledImages; - uint32_t maxDescriptorSetUpdateAfterBindStorageImages; - uint32_t maxDescriptorSetUpdateAfterBindInputAttachments; - VkResolveModeFlags supportedDepthResolveModes; - VkResolveModeFlags supportedStencilResolveModes; - VkBool32 independentResolveNone; - VkBool32 independentResolve; - VkBool32 filterMinmaxSingleComponentFormats; - VkBool32 filterMinmaxImageComponentMapping; - uint64_t maxTimelineSemaphoreValueDifference; - VkSampleCountFlags framebufferIntegerColorSampleCounts; -} VkPhysicalDeviceVulkan12Properties; - -typedef struct VkImageFormatListCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t viewFormatCount; - const VkFormat* pViewFormats; -} VkImageFormatListCreateInfo; - -typedef struct VkAttachmentDescription2 { - VkStructureType sType; - const void* pNext; - VkAttachmentDescriptionFlags flags; - VkFormat format; - VkSampleCountFlagBits samples; - VkAttachmentLoadOp loadOp; - VkAttachmentStoreOp storeOp; - VkAttachmentLoadOp stencilLoadOp; - VkAttachmentStoreOp stencilStoreOp; - VkImageLayout initialLayout; - VkImageLayout finalLayout; -} VkAttachmentDescription2; - -typedef struct VkAttachmentReference2 { - VkStructureType sType; - const void* pNext; - uint32_t attachment; - VkImageLayout layout; - VkImageAspectFlags aspectMask; -} VkAttachmentReference2; - -typedef struct VkSubpassDescription2 { - VkStructureType sType; - const void* pNext; - VkSubpassDescriptionFlags flags; - VkPipelineBindPoint pipelineBindPoint; - uint32_t viewMask; - uint32_t inputAttachmentCount; - const VkAttachmentReference2* pInputAttachments; - uint32_t colorAttachmentCount; - const VkAttachmentReference2* pColorAttachments; - const VkAttachmentReference2* pResolveAttachments; - const VkAttachmentReference2* pDepthStencilAttachment; - uint32_t preserveAttachmentCount; - const uint32_t* pPreserveAttachments; -} VkSubpassDescription2; - -typedef struct VkSubpassDependency2 { - VkStructureType sType; - const void* pNext; - uint32_t srcSubpass; - uint32_t dstSubpass; - VkPipelineStageFlags srcStageMask; - VkPipelineStageFlags dstStageMask; - VkAccessFlags srcAccessMask; - VkAccessFlags dstAccessMask; - VkDependencyFlags dependencyFlags; - int32_t viewOffset; -} VkSubpassDependency2; - -typedef struct VkRenderPassCreateInfo2 { - VkStructureType sType; - const void* pNext; - VkRenderPassCreateFlags flags; - uint32_t attachmentCount; - const VkAttachmentDescription2* pAttachments; - uint32_t subpassCount; - const VkSubpassDescription2* pSubpasses; - uint32_t dependencyCount; - const VkSubpassDependency2* pDependencies; - uint32_t correlatedViewMaskCount; - const uint32_t* pCorrelatedViewMasks; -} VkRenderPassCreateInfo2; - -typedef struct VkSubpassBeginInfo { - VkStructureType sType; - const void* pNext; - VkSubpassContents contents; -} VkSubpassBeginInfo; - -typedef struct VkSubpassEndInfo { - VkStructureType sType; - const void* pNext; -} VkSubpassEndInfo; - -typedef struct VkPhysicalDevice8BitStorageFeatures { - VkStructureType sType; - void* pNext; - VkBool32 storageBuffer8BitAccess; - VkBool32 uniformAndStorageBuffer8BitAccess; - VkBool32 storagePushConstant8; -} VkPhysicalDevice8BitStorageFeatures; - -typedef struct VkPhysicalDeviceDriverProperties { - VkStructureType sType; - void* pNext; - VkDriverId driverID; - char driverName[VK_MAX_DRIVER_NAME_SIZE]; - char driverInfo[VK_MAX_DRIVER_INFO_SIZE]; - VkConformanceVersion conformanceVersion; -} VkPhysicalDeviceDriverProperties; - -typedef struct VkPhysicalDeviceShaderAtomicInt64Features { - VkStructureType sType; - void* pNext; - VkBool32 shaderBufferInt64Atomics; - VkBool32 shaderSharedInt64Atomics; -} VkPhysicalDeviceShaderAtomicInt64Features; - -typedef struct VkPhysicalDeviceShaderFloat16Int8Features { - VkStructureType sType; - void* pNext; - VkBool32 shaderFloat16; - VkBool32 shaderInt8; -} VkPhysicalDeviceShaderFloat16Int8Features; - -typedef struct VkPhysicalDeviceFloatControlsProperties { - VkStructureType sType; - void* pNext; - VkShaderFloatControlsIndependence denormBehaviorIndependence; - VkShaderFloatControlsIndependence roundingModeIndependence; - VkBool32 shaderSignedZeroInfNanPreserveFloat16; - VkBool32 shaderSignedZeroInfNanPreserveFloat32; - VkBool32 shaderSignedZeroInfNanPreserveFloat64; - VkBool32 shaderDenormPreserveFloat16; - VkBool32 shaderDenormPreserveFloat32; - VkBool32 shaderDenormPreserveFloat64; - VkBool32 shaderDenormFlushToZeroFloat16; - VkBool32 shaderDenormFlushToZeroFloat32; - VkBool32 shaderDenormFlushToZeroFloat64; - VkBool32 shaderRoundingModeRTEFloat16; - VkBool32 shaderRoundingModeRTEFloat32; - VkBool32 shaderRoundingModeRTEFloat64; - VkBool32 shaderRoundingModeRTZFloat16; - VkBool32 shaderRoundingModeRTZFloat32; - VkBool32 shaderRoundingModeRTZFloat64; -} VkPhysicalDeviceFloatControlsProperties; - -typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t bindingCount; - const VkDescriptorBindingFlags* pBindingFlags; -} VkDescriptorSetLayoutBindingFlagsCreateInfo; - -typedef struct VkPhysicalDeviceDescriptorIndexingFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderInputAttachmentArrayDynamicIndexing; - VkBool32 shaderUniformTexelBufferArrayDynamicIndexing; - VkBool32 shaderStorageTexelBufferArrayDynamicIndexing; - VkBool32 shaderUniformBufferArrayNonUniformIndexing; - VkBool32 shaderSampledImageArrayNonUniformIndexing; - VkBool32 shaderStorageBufferArrayNonUniformIndexing; - VkBool32 shaderStorageImageArrayNonUniformIndexing; - VkBool32 shaderInputAttachmentArrayNonUniformIndexing; - VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing; - VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing; - VkBool32 descriptorBindingUniformBufferUpdateAfterBind; - VkBool32 descriptorBindingSampledImageUpdateAfterBind; - VkBool32 descriptorBindingStorageImageUpdateAfterBind; - VkBool32 descriptorBindingStorageBufferUpdateAfterBind; - VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind; - VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind; - VkBool32 descriptorBindingUpdateUnusedWhilePending; - VkBool32 descriptorBindingPartiallyBound; - VkBool32 descriptorBindingVariableDescriptorCount; - VkBool32 runtimeDescriptorArray; -} VkPhysicalDeviceDescriptorIndexingFeatures; - -typedef struct VkPhysicalDeviceDescriptorIndexingProperties { - VkStructureType sType; - void* pNext; - uint32_t maxUpdateAfterBindDescriptorsInAllPools; - VkBool32 shaderUniformBufferArrayNonUniformIndexingNative; - VkBool32 shaderSampledImageArrayNonUniformIndexingNative; - VkBool32 shaderStorageBufferArrayNonUniformIndexingNative; - VkBool32 shaderStorageImageArrayNonUniformIndexingNative; - VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative; - VkBool32 robustBufferAccessUpdateAfterBind; - VkBool32 quadDivergentImplicitLod; - uint32_t maxPerStageDescriptorUpdateAfterBindSamplers; - uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers; - uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages; - uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments; - uint32_t maxPerStageUpdateAfterBindResources; - uint32_t maxDescriptorSetUpdateAfterBindSamplers; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic; - uint32_t maxDescriptorSetUpdateAfterBindSampledImages; - uint32_t maxDescriptorSetUpdateAfterBindStorageImages; - uint32_t maxDescriptorSetUpdateAfterBindInputAttachments; -} VkPhysicalDeviceDescriptorIndexingProperties; - -typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfo { - VkStructureType sType; - const void* pNext; - uint32_t descriptorSetCount; - const uint32_t* pDescriptorCounts; -} VkDescriptorSetVariableDescriptorCountAllocateInfo; - -typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupport { - VkStructureType sType; - void* pNext; - uint32_t maxVariableDescriptorCount; -} VkDescriptorSetVariableDescriptorCountLayoutSupport; - -typedef struct VkSubpassDescriptionDepthStencilResolve { - VkStructureType sType; - const void* pNext; - VkResolveModeFlagBits depthResolveMode; - VkResolveModeFlagBits stencilResolveMode; - const VkAttachmentReference2* pDepthStencilResolveAttachment; -} VkSubpassDescriptionDepthStencilResolve; - -typedef struct VkPhysicalDeviceDepthStencilResolveProperties { - VkStructureType sType; - void* pNext; - VkResolveModeFlags supportedDepthResolveModes; - VkResolveModeFlags supportedStencilResolveModes; - VkBool32 independentResolveNone; - VkBool32 independentResolve; -} VkPhysicalDeviceDepthStencilResolveProperties; - -typedef struct VkPhysicalDeviceScalarBlockLayoutFeatures { - VkStructureType sType; - void* pNext; - VkBool32 scalarBlockLayout; -} VkPhysicalDeviceScalarBlockLayoutFeatures; - -typedef struct VkImageStencilUsageCreateInfo { - VkStructureType sType; - const void* pNext; - VkImageUsageFlags stencilUsage; -} VkImageStencilUsageCreateInfo; - -typedef struct VkSamplerReductionModeCreateInfo { - VkStructureType sType; - const void* pNext; - VkSamplerReductionMode reductionMode; -} VkSamplerReductionModeCreateInfo; - -typedef struct VkPhysicalDeviceSamplerFilterMinmaxProperties { - VkStructureType sType; - void* pNext; - VkBool32 filterMinmaxSingleComponentFormats; - VkBool32 filterMinmaxImageComponentMapping; -} VkPhysicalDeviceSamplerFilterMinmaxProperties; - -typedef struct VkPhysicalDeviceVulkanMemoryModelFeatures { - VkStructureType sType; - void* pNext; - VkBool32 vulkanMemoryModel; - VkBool32 vulkanMemoryModelDeviceScope; - VkBool32 vulkanMemoryModelAvailabilityVisibilityChains; -} VkPhysicalDeviceVulkanMemoryModelFeatures; - -typedef struct VkPhysicalDeviceImagelessFramebufferFeatures { - VkStructureType sType; - void* pNext; - VkBool32 imagelessFramebuffer; -} VkPhysicalDeviceImagelessFramebufferFeatures; - -typedef struct VkFramebufferAttachmentImageInfo { - VkStructureType sType; - const void* pNext; - VkImageCreateFlags flags; - VkImageUsageFlags usage; - uint32_t width; - uint32_t height; - uint32_t layerCount; - uint32_t viewFormatCount; - const VkFormat* pViewFormats; -} VkFramebufferAttachmentImageInfo; - -typedef struct VkFramebufferAttachmentsCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t attachmentImageInfoCount; - const VkFramebufferAttachmentImageInfo* pAttachmentImageInfos; -} VkFramebufferAttachmentsCreateInfo; - -typedef struct VkRenderPassAttachmentBeginInfo { - VkStructureType sType; - const void* pNext; - uint32_t attachmentCount; - const VkImageView* pAttachments; -} VkRenderPassAttachmentBeginInfo; - -typedef struct VkPhysicalDeviceUniformBufferStandardLayoutFeatures { - VkStructureType sType; - void* pNext; - VkBool32 uniformBufferStandardLayout; -} VkPhysicalDeviceUniformBufferStandardLayoutFeatures; - -typedef struct VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderSubgroupExtendedTypes; -} VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures; - -typedef struct VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures { - VkStructureType sType; - void* pNext; - VkBool32 separateDepthStencilLayouts; -} VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures; - -typedef struct VkAttachmentReferenceStencilLayout { - VkStructureType sType; - void* pNext; - VkImageLayout stencilLayout; -} VkAttachmentReferenceStencilLayout; - -typedef struct VkAttachmentDescriptionStencilLayout { - VkStructureType sType; - void* pNext; - VkImageLayout stencilInitialLayout; - VkImageLayout stencilFinalLayout; -} VkAttachmentDescriptionStencilLayout; - -typedef struct VkPhysicalDeviceHostQueryResetFeatures { - VkStructureType sType; - void* pNext; - VkBool32 hostQueryReset; -} VkPhysicalDeviceHostQueryResetFeatures; - -typedef struct VkPhysicalDeviceTimelineSemaphoreFeatures { - VkStructureType sType; - void* pNext; - VkBool32 timelineSemaphore; -} VkPhysicalDeviceTimelineSemaphoreFeatures; - -typedef struct VkPhysicalDeviceTimelineSemaphoreProperties { - VkStructureType sType; - void* pNext; - uint64_t maxTimelineSemaphoreValueDifference; -} VkPhysicalDeviceTimelineSemaphoreProperties; - -typedef struct VkSemaphoreTypeCreateInfo { - VkStructureType sType; - const void* pNext; - VkSemaphoreType semaphoreType; - uint64_t initialValue; -} VkSemaphoreTypeCreateInfo; - -typedef struct VkTimelineSemaphoreSubmitInfo { - VkStructureType sType; - const void* pNext; - uint32_t waitSemaphoreValueCount; - const uint64_t* pWaitSemaphoreValues; - uint32_t signalSemaphoreValueCount; - const uint64_t* pSignalSemaphoreValues; -} VkTimelineSemaphoreSubmitInfo; - -typedef struct VkSemaphoreWaitInfo { - VkStructureType sType; - const void* pNext; - VkSemaphoreWaitFlags flags; - uint32_t semaphoreCount; - const VkSemaphore* pSemaphores; - const uint64_t* pValues; -} VkSemaphoreWaitInfo; - -typedef struct VkSemaphoreSignalInfo { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - uint64_t value; -} VkSemaphoreSignalInfo; - -typedef struct VkPhysicalDeviceBufferDeviceAddressFeatures { - VkStructureType sType; - void* pNext; - VkBool32 bufferDeviceAddress; - VkBool32 bufferDeviceAddressCaptureReplay; - VkBool32 bufferDeviceAddressMultiDevice; -} VkPhysicalDeviceBufferDeviceAddressFeatures; - -typedef struct VkBufferDeviceAddressInfo { - VkStructureType sType; - const void* pNext; - VkBuffer buffer; -} VkBufferDeviceAddressInfo; - -typedef struct VkBufferOpaqueCaptureAddressCreateInfo { - VkStructureType sType; - const void* pNext; - uint64_t opaqueCaptureAddress; -} VkBufferOpaqueCaptureAddressCreateInfo; - -typedef struct VkMemoryOpaqueCaptureAddressAllocateInfo { - VkStructureType sType; - const void* pNext; - uint64_t opaqueCaptureAddress; -} VkMemoryOpaqueCaptureAddressAllocateInfo; - -typedef struct VkDeviceMemoryOpaqueCaptureAddressInfo { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; -} VkDeviceMemoryOpaqueCaptureAddressInfo; - -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndirectCount)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndexedIndirectCount)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); -typedef VkResult (VKAPI_PTR *PFN_vkCreateRenderPass2)(VkDevice device, const VkRenderPassCreateInfo2* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkRenderPass* pRenderPass); -typedef void (VKAPI_PTR *PFN_vkCmdBeginRenderPass2)(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, const VkSubpassBeginInfo* pSubpassBeginInfo); -typedef void (VKAPI_PTR *PFN_vkCmdNextSubpass2)(VkCommandBuffer commandBuffer, const VkSubpassBeginInfo* pSubpassBeginInfo, const VkSubpassEndInfo* pSubpassEndInfo); -typedef void (VKAPI_PTR *PFN_vkCmdEndRenderPass2)(VkCommandBuffer commandBuffer, const VkSubpassEndInfo* pSubpassEndInfo); -typedef void (VKAPI_PTR *PFN_vkResetQueryPool)(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount); -typedef VkResult (VKAPI_PTR *PFN_vkGetSemaphoreCounterValue)(VkDevice device, VkSemaphore semaphore, uint64_t* pValue); -typedef VkResult (VKAPI_PTR *PFN_vkWaitSemaphores)(VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout); -typedef VkResult (VKAPI_PTR *PFN_vkSignalSemaphore)(VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo); -typedef VkDeviceAddress (VKAPI_PTR *PFN_vkGetBufferDeviceAddress)(VkDevice device, const VkBufferDeviceAddressInfo* pInfo); -typedef uint64_t (VKAPI_PTR *PFN_vkGetBufferOpaqueCaptureAddress)(VkDevice device, const VkBufferDeviceAddressInfo* pInfo); -typedef uint64_t (VKAPI_PTR *PFN_vkGetDeviceMemoryOpaqueCaptureAddress)(VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndirectCount( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndexedIndirectCount( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateRenderPass2( - VkDevice device, - const VkRenderPassCreateInfo2* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkRenderPass* pRenderPass); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginRenderPass2( - VkCommandBuffer commandBuffer, - const VkRenderPassBeginInfo* pRenderPassBegin, - const VkSubpassBeginInfo* pSubpassBeginInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdNextSubpass2( - VkCommandBuffer commandBuffer, - const VkSubpassBeginInfo* pSubpassBeginInfo, - const VkSubpassEndInfo* pSubpassEndInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndRenderPass2( - VkCommandBuffer commandBuffer, - const VkSubpassEndInfo* pSubpassEndInfo); - -VKAPI_ATTR void VKAPI_CALL vkResetQueryPool( - VkDevice device, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetSemaphoreCounterValue( - VkDevice device, - VkSemaphore semaphore, - uint64_t* pValue); - -VKAPI_ATTR VkResult VKAPI_CALL vkWaitSemaphores( - VkDevice device, - const VkSemaphoreWaitInfo* pWaitInfo, - uint64_t timeout); - -VKAPI_ATTR VkResult VKAPI_CALL vkSignalSemaphore( - VkDevice device, - const VkSemaphoreSignalInfo* pSignalInfo); - -VKAPI_ATTR VkDeviceAddress VKAPI_CALL vkGetBufferDeviceAddress( - VkDevice device, - const VkBufferDeviceAddressInfo* pInfo); - -VKAPI_ATTR uint64_t VKAPI_CALL vkGetBufferOpaqueCaptureAddress( - VkDevice device, - const VkBufferDeviceAddressInfo* pInfo); - -VKAPI_ATTR uint64_t VKAPI_CALL vkGetDeviceMemoryOpaqueCaptureAddress( - VkDevice device, - const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo); -#endif - - -#define VK_VERSION_1_3 1 -// Vulkan 1.3 version number -#define VK_API_VERSION_1_3 VK_MAKE_API_VERSION(0, 1, 3, 0)// Patch version should always be set to 0 - -typedef uint64_t VkFlags64; -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkPrivateDataSlot) - -typedef enum VkPipelineCreationFeedbackFlagBits { - VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT = 0x00000001, - VK_PIPELINE_CREATION_FEEDBACK_APPLICATION_PIPELINE_CACHE_HIT_BIT = 0x00000002, - VK_PIPELINE_CREATION_FEEDBACK_BASE_PIPELINE_ACCELERATION_BIT = 0x00000004, - VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT_EXT = VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT, - VK_PIPELINE_CREATION_FEEDBACK_APPLICATION_PIPELINE_CACHE_HIT_BIT_EXT = VK_PIPELINE_CREATION_FEEDBACK_APPLICATION_PIPELINE_CACHE_HIT_BIT, - VK_PIPELINE_CREATION_FEEDBACK_BASE_PIPELINE_ACCELERATION_BIT_EXT = VK_PIPELINE_CREATION_FEEDBACK_BASE_PIPELINE_ACCELERATION_BIT, - VK_PIPELINE_CREATION_FEEDBACK_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPipelineCreationFeedbackFlagBits; -typedef VkFlags VkPipelineCreationFeedbackFlags; - -typedef enum VkToolPurposeFlagBits { - VK_TOOL_PURPOSE_VALIDATION_BIT = 0x00000001, - VK_TOOL_PURPOSE_PROFILING_BIT = 0x00000002, - VK_TOOL_PURPOSE_TRACING_BIT = 0x00000004, - VK_TOOL_PURPOSE_ADDITIONAL_FEATURES_BIT = 0x00000008, - VK_TOOL_PURPOSE_MODIFYING_FEATURES_BIT = 0x00000010, - VK_TOOL_PURPOSE_DEBUG_REPORTING_BIT_EXT = 0x00000020, - VK_TOOL_PURPOSE_DEBUG_MARKERS_BIT_EXT = 0x00000040, - VK_TOOL_PURPOSE_VALIDATION_BIT_EXT = VK_TOOL_PURPOSE_VALIDATION_BIT, - VK_TOOL_PURPOSE_PROFILING_BIT_EXT = VK_TOOL_PURPOSE_PROFILING_BIT, - VK_TOOL_PURPOSE_TRACING_BIT_EXT = VK_TOOL_PURPOSE_TRACING_BIT, - VK_TOOL_PURPOSE_ADDITIONAL_FEATURES_BIT_EXT = VK_TOOL_PURPOSE_ADDITIONAL_FEATURES_BIT, - VK_TOOL_PURPOSE_MODIFYING_FEATURES_BIT_EXT = VK_TOOL_PURPOSE_MODIFYING_FEATURES_BIT, - VK_TOOL_PURPOSE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkToolPurposeFlagBits; -typedef VkFlags VkToolPurposeFlags; - -typedef enum VkPrivateDataSlotCreateFlagBits { - VK_PRIVATE_DATA_SLOT_CREATE_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkPrivateDataSlotCreateFlagBits; -typedef VkFlags VkPrivateDataSlotCreateFlags; -typedef VkFlags64 VkPipelineStageFlags2; - -// Flag bits for VkPipelineStageFlagBits2 -typedef VkFlags64 VkPipelineStageFlagBits2; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_NONE = 0ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_NONE_KHR = 0ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT = 0x00000001ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT_KHR = 0x00000001ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_DRAW_INDIRECT_BIT = 0x00000002ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_DRAW_INDIRECT_BIT_KHR = 0x00000002ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VERTEX_INPUT_BIT = 0x00000004ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VERTEX_INPUT_BIT_KHR = 0x00000004ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VERTEX_SHADER_BIT = 0x00000008ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VERTEX_SHADER_BIT_KHR = 0x00000008ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TESSELLATION_CONTROL_SHADER_BIT = 0x00000010ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TESSELLATION_CONTROL_SHADER_BIT_KHR = 0x00000010ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TESSELLATION_EVALUATION_SHADER_BIT = 0x00000020ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TESSELLATION_EVALUATION_SHADER_BIT_KHR = 0x00000020ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_GEOMETRY_SHADER_BIT = 0x00000040ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_GEOMETRY_SHADER_BIT_KHR = 0x00000040ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT = 0x00000080ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT_KHR = 0x00000080ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_EARLY_FRAGMENT_TESTS_BIT = 0x00000100ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_EARLY_FRAGMENT_TESTS_BIT_KHR = 0x00000100ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_LATE_FRAGMENT_TESTS_BIT = 0x00000200ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_LATE_FRAGMENT_TESTS_BIT_KHR = 0x00000200ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT = 0x00000400ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT_KHR = 0x00000400ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT = 0x00000800ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT_KHR = 0x00000800ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ALL_TRANSFER_BIT = 0x00001000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ALL_TRANSFER_BIT_KHR = 0x00001000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TRANSFER_BIT = 0x00001000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TRANSFER_BIT_KHR = 0x00001000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_BOTTOM_OF_PIPE_BIT = 0x00002000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_BOTTOM_OF_PIPE_BIT_KHR = 0x00002000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_HOST_BIT = 0x00004000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_HOST_BIT_KHR = 0x00004000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT = 0x00008000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT_KHR = 0x00008000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT = 0x00010000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT_KHR = 0x00010000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COPY_BIT = 0x100000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COPY_BIT_KHR = 0x100000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_RESOLVE_BIT = 0x200000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_RESOLVE_BIT_KHR = 0x200000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_BLIT_BIT = 0x400000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_BLIT_BIT_KHR = 0x400000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_CLEAR_BIT = 0x800000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_CLEAR_BIT_KHR = 0x800000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_INDEX_INPUT_BIT = 0x1000000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_INDEX_INPUT_BIT_KHR = 0x1000000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VERTEX_ATTRIBUTE_INPUT_BIT = 0x2000000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VERTEX_ATTRIBUTE_INPUT_BIT_KHR = 0x2000000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT = 0x4000000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR = 0x4000000000ULL; -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VIDEO_DECODE_BIT_KHR = 0x04000000ULL; -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_VIDEO_ENCODE_BIT_KHR = 0x08000000ULL; -#endif -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT = 0x01000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT = 0x00040000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_COMMAND_PREPROCESS_BIT_NV = 0x00020000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = 0x00400000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV = 0x00400000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_KHR = 0x02000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_KHR = 0x00200000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_NV = 0x00200000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_NV = 0x02000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT = 0x00800000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_TASK_SHADER_BIT_NV = 0x00080000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_MESH_SHADER_BIT_NV = 0x00100000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_SUBPASS_SHADING_BIT_HUAWEI = 0x8000000000ULL; -static const VkPipelineStageFlagBits2 VK_PIPELINE_STAGE_2_INVOCATION_MASK_BIT_HUAWEI = 0x10000000000ULL; - -typedef VkFlags64 VkAccessFlags2; - -// Flag bits for VkAccessFlagBits2 -typedef VkFlags64 VkAccessFlagBits2; -static const VkAccessFlagBits2 VK_ACCESS_2_NONE = 0ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_NONE_KHR = 0ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INDIRECT_COMMAND_READ_BIT = 0x00000001ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INDIRECT_COMMAND_READ_BIT_KHR = 0x00000001ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INDEX_READ_BIT = 0x00000002ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INDEX_READ_BIT_KHR = 0x00000002ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_VERTEX_ATTRIBUTE_READ_BIT = 0x00000004ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_VERTEX_ATTRIBUTE_READ_BIT_KHR = 0x00000004ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_UNIFORM_READ_BIT = 0x00000008ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_UNIFORM_READ_BIT_KHR = 0x00000008ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INPUT_ATTACHMENT_READ_BIT = 0x00000010ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INPUT_ATTACHMENT_READ_BIT_KHR = 0x00000010ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_READ_BIT = 0x00000020ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_READ_BIT_KHR = 0x00000020ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_WRITE_BIT = 0x00000040ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_WRITE_BIT_KHR = 0x00000040ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT = 0x00000080ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT_KHR = 0x00000080ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT = 0x00000100ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT_KHR = 0x00000100ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_READ_BIT = 0x00000200ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_READ_BIT_KHR = 0x00000200ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT = 0x00000400ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT_KHR = 0x00000400ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFER_READ_BIT = 0x00000800ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFER_READ_BIT_KHR = 0x00000800ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFER_WRITE_BIT = 0x00001000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFER_WRITE_BIT_KHR = 0x00001000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_HOST_READ_BIT = 0x00002000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_HOST_READ_BIT_KHR = 0x00002000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_HOST_WRITE_BIT = 0x00004000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_HOST_WRITE_BIT_KHR = 0x00004000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_MEMORY_READ_BIT = 0x00008000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_MEMORY_READ_BIT_KHR = 0x00008000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_MEMORY_WRITE_BIT = 0x00010000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_MEMORY_WRITE_BIT_KHR = 0x00010000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_SAMPLED_READ_BIT = 0x100000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_SAMPLED_READ_BIT_KHR = 0x100000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_STORAGE_READ_BIT = 0x200000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_STORAGE_READ_BIT_KHR = 0x200000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_STORAGE_WRITE_BIT = 0x400000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADER_STORAGE_WRITE_BIT_KHR = 0x400000000ULL; -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkAccessFlagBits2 VK_ACCESS_2_VIDEO_DECODE_READ_BIT_KHR = 0x800000000ULL; -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkAccessFlagBits2 VK_ACCESS_2_VIDEO_DECODE_WRITE_BIT_KHR = 0x1000000000ULL; -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkAccessFlagBits2 VK_ACCESS_2_VIDEO_ENCODE_READ_BIT_KHR = 0x2000000000ULL; -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkAccessFlagBits2 VK_ACCESS_2_VIDEO_ENCODE_WRITE_BIT_KHR = 0x4000000000ULL; -#endif -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFORM_FEEDBACK_WRITE_BIT_EXT = 0x02000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT = 0x04000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT = 0x08000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_CONDITIONAL_RENDERING_READ_BIT_EXT = 0x00100000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COMMAND_PREPROCESS_READ_BIT_NV = 0x00020000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COMMAND_PREPROCESS_WRITE_BIT_NV = 0x00040000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR = 0x00800000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_SHADING_RATE_IMAGE_READ_BIT_NV = 0x00800000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_KHR = 0x00200000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_KHR = 0x00400000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_NV = 0x00200000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_NV = 0x00400000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_FRAGMENT_DENSITY_MAP_READ_BIT_EXT = 0x01000000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT = 0x00080000ULL; -static const VkAccessFlagBits2 VK_ACCESS_2_INVOCATION_MASK_READ_BIT_HUAWEI = 0x8000000000ULL; - - -typedef enum VkSubmitFlagBits { - VK_SUBMIT_PROTECTED_BIT = 0x00000001, - VK_SUBMIT_PROTECTED_BIT_KHR = VK_SUBMIT_PROTECTED_BIT, - VK_SUBMIT_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkSubmitFlagBits; -typedef VkFlags VkSubmitFlags; - -typedef enum VkRenderingFlagBits { - VK_RENDERING_CONTENTS_SECONDARY_COMMAND_BUFFERS_BIT = 0x00000001, - VK_RENDERING_SUSPENDING_BIT = 0x00000002, - VK_RENDERING_RESUMING_BIT = 0x00000004, - VK_RENDERING_CONTENTS_SECONDARY_COMMAND_BUFFERS_BIT_KHR = VK_RENDERING_CONTENTS_SECONDARY_COMMAND_BUFFERS_BIT, - VK_RENDERING_SUSPENDING_BIT_KHR = VK_RENDERING_SUSPENDING_BIT, - VK_RENDERING_RESUMING_BIT_KHR = VK_RENDERING_RESUMING_BIT, - VK_RENDERING_FLAG_BITS_MAX_ENUM = 0x7FFFFFFF -} VkRenderingFlagBits; -typedef VkFlags VkRenderingFlags; -typedef VkFlags64 VkFormatFeatureFlags2; - -// Flag bits for VkFormatFeatureFlagBits2 -typedef VkFlags64 VkFormatFeatureFlagBits2; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT = 0x00000001ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT_KHR = 0x00000001ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_IMAGE_BIT = 0x00000002ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_IMAGE_BIT_KHR = 0x00000002ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT = 0x00000004ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT_KHR = 0x00000004ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT = 0x00000008ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT_KHR = 0x00000008ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT = 0x00000010ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT_KHR = 0x00000010ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT = 0x00000020ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT_KHR = 0x00000020ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_VERTEX_BUFFER_BIT = 0x00000040ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_VERTEX_BUFFER_BIT_KHR = 0x00000040ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT = 0x00000080ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT_KHR = 0x00000080ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT = 0x00000100ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT_KHR = 0x00000100ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT = 0x00000200ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT_KHR = 0x00000200ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_BLIT_SRC_BIT = 0x00000400ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_BLIT_SRC_BIT_KHR = 0x00000400ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_BLIT_DST_BIT = 0x00000800ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_BLIT_DST_BIT_KHR = 0x00000800ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT = 0x00001000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT_KHR = 0x00001000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT = 0x00002000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT = 0x00002000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_TRANSFER_SRC_BIT = 0x00004000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_TRANSFER_SRC_BIT_KHR = 0x00004000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_TRANSFER_DST_BIT = 0x00008000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_TRANSFER_DST_BIT_KHR = 0x00008000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT = 0x00010000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT_KHR = 0x00010000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT = 0x00020000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT_KHR = 0x00020000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT = 0x00040000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT_KHR = 0x00040000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT = 0x00080000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT_KHR = 0x00080000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT = 0x00100000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT_KHR = 0x00100000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT = 0x00200000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT_KHR = 0x00200000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_DISJOINT_BIT = 0x00400000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_DISJOINT_BIT_KHR = 0x00400000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT = 0x00800000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT_KHR = 0x00800000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT = 0x80000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT_KHR = 0x80000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT = 0x100000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT_KHR = 0x100000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT = 0x200000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT_KHR = 0x200000000ULL; -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_VIDEO_DECODE_OUTPUT_BIT_KHR = 0x02000000ULL; -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_VIDEO_DECODE_DPB_BIT_KHR = 0x04000000ULL; -#endif -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR = 0x20000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT = 0x01000000ULL; -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = 0x40000000ULL; -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_VIDEO_ENCODE_INPUT_BIT_KHR = 0x08000000ULL; -#endif -#ifdef VK_ENABLE_BETA_EXTENSIONS -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_VIDEO_ENCODE_DPB_BIT_KHR = 0x10000000ULL; -#endif -static const VkFormatFeatureFlagBits2 VK_FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV = 0x4000000000ULL; - -typedef struct VkPhysicalDeviceVulkan13Features { - VkStructureType sType; - void* pNext; - VkBool32 robustImageAccess; - VkBool32 inlineUniformBlock; - VkBool32 descriptorBindingInlineUniformBlockUpdateAfterBind; - VkBool32 pipelineCreationCacheControl; - VkBool32 privateData; - VkBool32 shaderDemoteToHelperInvocation; - VkBool32 shaderTerminateInvocation; - VkBool32 subgroupSizeControl; - VkBool32 computeFullSubgroups; - VkBool32 synchronization2; - VkBool32 textureCompressionASTC_HDR; - VkBool32 shaderZeroInitializeWorkgroupMemory; - VkBool32 dynamicRendering; - VkBool32 shaderIntegerDotProduct; - VkBool32 maintenance4; -} VkPhysicalDeviceVulkan13Features; - -typedef struct VkPhysicalDeviceVulkan13Properties { - VkStructureType sType; - void* pNext; - uint32_t minSubgroupSize; - uint32_t maxSubgroupSize; - uint32_t maxComputeWorkgroupSubgroups; - VkShaderStageFlags requiredSubgroupSizeStages; - uint32_t maxInlineUniformBlockSize; - uint32_t maxPerStageDescriptorInlineUniformBlocks; - uint32_t maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks; - uint32_t maxDescriptorSetInlineUniformBlocks; - uint32_t maxDescriptorSetUpdateAfterBindInlineUniformBlocks; - uint32_t maxInlineUniformTotalSize; - VkBool32 integerDotProduct8BitUnsignedAccelerated; - VkBool32 integerDotProduct8BitSignedAccelerated; - VkBool32 integerDotProduct8BitMixedSignednessAccelerated; - VkBool32 integerDotProduct4x8BitPackedUnsignedAccelerated; - VkBool32 integerDotProduct4x8BitPackedSignedAccelerated; - VkBool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated; - VkBool32 integerDotProduct16BitUnsignedAccelerated; - VkBool32 integerDotProduct16BitSignedAccelerated; - VkBool32 integerDotProduct16BitMixedSignednessAccelerated; - VkBool32 integerDotProduct32BitUnsignedAccelerated; - VkBool32 integerDotProduct32BitSignedAccelerated; - VkBool32 integerDotProduct32BitMixedSignednessAccelerated; - VkBool32 integerDotProduct64BitUnsignedAccelerated; - VkBool32 integerDotProduct64BitSignedAccelerated; - VkBool32 integerDotProduct64BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated; - VkDeviceSize storageTexelBufferOffsetAlignmentBytes; - VkBool32 storageTexelBufferOffsetSingleTexelAlignment; - VkDeviceSize uniformTexelBufferOffsetAlignmentBytes; - VkBool32 uniformTexelBufferOffsetSingleTexelAlignment; - VkDeviceSize maxBufferSize; -} VkPhysicalDeviceVulkan13Properties; - -typedef struct VkPipelineCreationFeedback { - VkPipelineCreationFeedbackFlags flags; - uint64_t duration; -} VkPipelineCreationFeedback; - -typedef struct VkPipelineCreationFeedbackCreateInfo { - VkStructureType sType; - const void* pNext; - VkPipelineCreationFeedback* pPipelineCreationFeedback; - uint32_t pipelineStageCreationFeedbackCount; - VkPipelineCreationFeedback* pPipelineStageCreationFeedbacks; -} VkPipelineCreationFeedbackCreateInfo; - -typedef struct VkPhysicalDeviceShaderTerminateInvocationFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderTerminateInvocation; -} VkPhysicalDeviceShaderTerminateInvocationFeatures; - -typedef struct VkPhysicalDeviceToolProperties { - VkStructureType sType; - void* pNext; - char name[VK_MAX_EXTENSION_NAME_SIZE]; - char version[VK_MAX_EXTENSION_NAME_SIZE]; - VkToolPurposeFlags purposes; - char description[VK_MAX_DESCRIPTION_SIZE]; - char layer[VK_MAX_EXTENSION_NAME_SIZE]; -} VkPhysicalDeviceToolProperties; - -typedef struct VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderDemoteToHelperInvocation; -} VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures; - -typedef struct VkPhysicalDevicePrivateDataFeatures { - VkStructureType sType; - void* pNext; - VkBool32 privateData; -} VkPhysicalDevicePrivateDataFeatures; - -typedef struct VkDevicePrivateDataCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t privateDataSlotRequestCount; -} VkDevicePrivateDataCreateInfo; - -typedef struct VkPrivateDataSlotCreateInfo { - VkStructureType sType; - const void* pNext; - VkPrivateDataSlotCreateFlags flags; -} VkPrivateDataSlotCreateInfo; - -typedef struct VkPhysicalDevicePipelineCreationCacheControlFeatures { - VkStructureType sType; - void* pNext; - VkBool32 pipelineCreationCacheControl; -} VkPhysicalDevicePipelineCreationCacheControlFeatures; - -typedef struct VkMemoryBarrier2 { - VkStructureType sType; - const void* pNext; - VkPipelineStageFlags2 srcStageMask; - VkAccessFlags2 srcAccessMask; - VkPipelineStageFlags2 dstStageMask; - VkAccessFlags2 dstAccessMask; -} VkMemoryBarrier2; - -typedef struct VkBufferMemoryBarrier2 { - VkStructureType sType; - const void* pNext; - VkPipelineStageFlags2 srcStageMask; - VkAccessFlags2 srcAccessMask; - VkPipelineStageFlags2 dstStageMask; - VkAccessFlags2 dstAccessMask; - uint32_t srcQueueFamilyIndex; - uint32_t dstQueueFamilyIndex; - VkBuffer buffer; - VkDeviceSize offset; - VkDeviceSize size; -} VkBufferMemoryBarrier2; - -typedef struct VkImageMemoryBarrier2 { - VkStructureType sType; - const void* pNext; - VkPipelineStageFlags2 srcStageMask; - VkAccessFlags2 srcAccessMask; - VkPipelineStageFlags2 dstStageMask; - VkAccessFlags2 dstAccessMask; - VkImageLayout oldLayout; - VkImageLayout newLayout; - uint32_t srcQueueFamilyIndex; - uint32_t dstQueueFamilyIndex; - VkImage image; - VkImageSubresourceRange subresourceRange; -} VkImageMemoryBarrier2; - -typedef struct VkDependencyInfo { - VkStructureType sType; - const void* pNext; - VkDependencyFlags dependencyFlags; - uint32_t memoryBarrierCount; - const VkMemoryBarrier2* pMemoryBarriers; - uint32_t bufferMemoryBarrierCount; - const VkBufferMemoryBarrier2* pBufferMemoryBarriers; - uint32_t imageMemoryBarrierCount; - const VkImageMemoryBarrier2* pImageMemoryBarriers; -} VkDependencyInfo; - -typedef struct VkSemaphoreSubmitInfo { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - uint64_t value; - VkPipelineStageFlags2 stageMask; - uint32_t deviceIndex; -} VkSemaphoreSubmitInfo; - -typedef struct VkCommandBufferSubmitInfo { - VkStructureType sType; - const void* pNext; - VkCommandBuffer commandBuffer; - uint32_t deviceMask; -} VkCommandBufferSubmitInfo; - -typedef struct VkSubmitInfo2 { - VkStructureType sType; - const void* pNext; - VkSubmitFlags flags; - uint32_t waitSemaphoreInfoCount; - const VkSemaphoreSubmitInfo* pWaitSemaphoreInfos; - uint32_t commandBufferInfoCount; - const VkCommandBufferSubmitInfo* pCommandBufferInfos; - uint32_t signalSemaphoreInfoCount; - const VkSemaphoreSubmitInfo* pSignalSemaphoreInfos; -} VkSubmitInfo2; - -typedef struct VkPhysicalDeviceSynchronization2Features { - VkStructureType sType; - void* pNext; - VkBool32 synchronization2; -} VkPhysicalDeviceSynchronization2Features; - -typedef struct VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderZeroInitializeWorkgroupMemory; -} VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - -typedef struct VkPhysicalDeviceImageRobustnessFeatures { - VkStructureType sType; - void* pNext; - VkBool32 robustImageAccess; -} VkPhysicalDeviceImageRobustnessFeatures; - -typedef struct VkBufferCopy2 { - VkStructureType sType; - const void* pNext; - VkDeviceSize srcOffset; - VkDeviceSize dstOffset; - VkDeviceSize size; -} VkBufferCopy2; - -typedef struct VkCopyBufferInfo2 { - VkStructureType sType; - const void* pNext; - VkBuffer srcBuffer; - VkBuffer dstBuffer; - uint32_t regionCount; - const VkBufferCopy2* pRegions; -} VkCopyBufferInfo2; - -typedef struct VkImageCopy2 { - VkStructureType sType; - const void* pNext; - VkImageSubresourceLayers srcSubresource; - VkOffset3D srcOffset; - VkImageSubresourceLayers dstSubresource; - VkOffset3D dstOffset; - VkExtent3D extent; -} VkImageCopy2; - -typedef struct VkCopyImageInfo2 { - VkStructureType sType; - const void* pNext; - VkImage srcImage; - VkImageLayout srcImageLayout; - VkImage dstImage; - VkImageLayout dstImageLayout; - uint32_t regionCount; - const VkImageCopy2* pRegions; -} VkCopyImageInfo2; - -typedef struct VkBufferImageCopy2 { - VkStructureType sType; - const void* pNext; - VkDeviceSize bufferOffset; - uint32_t bufferRowLength; - uint32_t bufferImageHeight; - VkImageSubresourceLayers imageSubresource; - VkOffset3D imageOffset; - VkExtent3D imageExtent; -} VkBufferImageCopy2; - -typedef struct VkCopyBufferToImageInfo2 { - VkStructureType sType; - const void* pNext; - VkBuffer srcBuffer; - VkImage dstImage; - VkImageLayout dstImageLayout; - uint32_t regionCount; - const VkBufferImageCopy2* pRegions; -} VkCopyBufferToImageInfo2; - -typedef struct VkCopyImageToBufferInfo2 { - VkStructureType sType; - const void* pNext; - VkImage srcImage; - VkImageLayout srcImageLayout; - VkBuffer dstBuffer; - uint32_t regionCount; - const VkBufferImageCopy2* pRegions; -} VkCopyImageToBufferInfo2; - -typedef struct VkImageBlit2 { - VkStructureType sType; - const void* pNext; - VkImageSubresourceLayers srcSubresource; - VkOffset3D srcOffsets[2]; - VkImageSubresourceLayers dstSubresource; - VkOffset3D dstOffsets[2]; -} VkImageBlit2; - -typedef struct VkBlitImageInfo2 { - VkStructureType sType; - const void* pNext; - VkImage srcImage; - VkImageLayout srcImageLayout; - VkImage dstImage; - VkImageLayout dstImageLayout; - uint32_t regionCount; - const VkImageBlit2* pRegions; - VkFilter filter; -} VkBlitImageInfo2; - -typedef struct VkImageResolve2 { - VkStructureType sType; - const void* pNext; - VkImageSubresourceLayers srcSubresource; - VkOffset3D srcOffset; - VkImageSubresourceLayers dstSubresource; - VkOffset3D dstOffset; - VkExtent3D extent; -} VkImageResolve2; - -typedef struct VkResolveImageInfo2 { - VkStructureType sType; - const void* pNext; - VkImage srcImage; - VkImageLayout srcImageLayout; - VkImage dstImage; - VkImageLayout dstImageLayout; - uint32_t regionCount; - const VkImageResolve2* pRegions; -} VkResolveImageInfo2; - -typedef struct VkPhysicalDeviceSubgroupSizeControlFeatures { - VkStructureType sType; - void* pNext; - VkBool32 subgroupSizeControl; - VkBool32 computeFullSubgroups; -} VkPhysicalDeviceSubgroupSizeControlFeatures; - -typedef struct VkPhysicalDeviceSubgroupSizeControlProperties { - VkStructureType sType; - void* pNext; - uint32_t minSubgroupSize; - uint32_t maxSubgroupSize; - uint32_t maxComputeWorkgroupSubgroups; - VkShaderStageFlags requiredSubgroupSizeStages; -} VkPhysicalDeviceSubgroupSizeControlProperties; - -typedef struct VkPipelineShaderStageRequiredSubgroupSizeCreateInfo { - VkStructureType sType; - void* pNext; - uint32_t requiredSubgroupSize; -} VkPipelineShaderStageRequiredSubgroupSizeCreateInfo; - -typedef struct VkPhysicalDeviceInlineUniformBlockFeatures { - VkStructureType sType; - void* pNext; - VkBool32 inlineUniformBlock; - VkBool32 descriptorBindingInlineUniformBlockUpdateAfterBind; -} VkPhysicalDeviceInlineUniformBlockFeatures; - -typedef struct VkPhysicalDeviceInlineUniformBlockProperties { - VkStructureType sType; - void* pNext; - uint32_t maxInlineUniformBlockSize; - uint32_t maxPerStageDescriptorInlineUniformBlocks; - uint32_t maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks; - uint32_t maxDescriptorSetInlineUniformBlocks; - uint32_t maxDescriptorSetUpdateAfterBindInlineUniformBlocks; -} VkPhysicalDeviceInlineUniformBlockProperties; - -typedef struct VkWriteDescriptorSetInlineUniformBlock { - VkStructureType sType; - const void* pNext; - uint32_t dataSize; - const void* pData; -} VkWriteDescriptorSetInlineUniformBlock; - -typedef struct VkDescriptorPoolInlineUniformBlockCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t maxInlineUniformBlockBindings; -} VkDescriptorPoolInlineUniformBlockCreateInfo; - -typedef struct VkPhysicalDeviceTextureCompressionASTCHDRFeatures { - VkStructureType sType; - void* pNext; - VkBool32 textureCompressionASTC_HDR; -} VkPhysicalDeviceTextureCompressionASTCHDRFeatures; - -typedef struct VkRenderingAttachmentInfo { - VkStructureType sType; - const void* pNext; - VkImageView imageView; - VkImageLayout imageLayout; - VkResolveModeFlagBits resolveMode; - VkImageView resolveImageView; - VkImageLayout resolveImageLayout; - VkAttachmentLoadOp loadOp; - VkAttachmentStoreOp storeOp; - VkClearValue clearValue; -} VkRenderingAttachmentInfo; - -typedef struct VkRenderingInfo { - VkStructureType sType; - const void* pNext; - VkRenderingFlags flags; - VkRect2D renderArea; - uint32_t layerCount; - uint32_t viewMask; - uint32_t colorAttachmentCount; - const VkRenderingAttachmentInfo* pColorAttachments; - const VkRenderingAttachmentInfo* pDepthAttachment; - const VkRenderingAttachmentInfo* pStencilAttachment; -} VkRenderingInfo; - -typedef struct VkPipelineRenderingCreateInfo { - VkStructureType sType; - const void* pNext; - uint32_t viewMask; - uint32_t colorAttachmentCount; - const VkFormat* pColorAttachmentFormats; - VkFormat depthAttachmentFormat; - VkFormat stencilAttachmentFormat; -} VkPipelineRenderingCreateInfo; - -typedef struct VkPhysicalDeviceDynamicRenderingFeatures { - VkStructureType sType; - void* pNext; - VkBool32 dynamicRendering; -} VkPhysicalDeviceDynamicRenderingFeatures; - -typedef struct VkCommandBufferInheritanceRenderingInfo { - VkStructureType sType; - const void* pNext; - VkRenderingFlags flags; - uint32_t viewMask; - uint32_t colorAttachmentCount; - const VkFormat* pColorAttachmentFormats; - VkFormat depthAttachmentFormat; - VkFormat stencilAttachmentFormat; - VkSampleCountFlagBits rasterizationSamples; -} VkCommandBufferInheritanceRenderingInfo; - -typedef struct VkPhysicalDeviceShaderIntegerDotProductFeatures { - VkStructureType sType; - void* pNext; - VkBool32 shaderIntegerDotProduct; -} VkPhysicalDeviceShaderIntegerDotProductFeatures; - -typedef struct VkPhysicalDeviceShaderIntegerDotProductProperties { - VkStructureType sType; - void* pNext; - VkBool32 integerDotProduct8BitUnsignedAccelerated; - VkBool32 integerDotProduct8BitSignedAccelerated; - VkBool32 integerDotProduct8BitMixedSignednessAccelerated; - VkBool32 integerDotProduct4x8BitPackedUnsignedAccelerated; - VkBool32 integerDotProduct4x8BitPackedSignedAccelerated; - VkBool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated; - VkBool32 integerDotProduct16BitUnsignedAccelerated; - VkBool32 integerDotProduct16BitSignedAccelerated; - VkBool32 integerDotProduct16BitMixedSignednessAccelerated; - VkBool32 integerDotProduct32BitUnsignedAccelerated; - VkBool32 integerDotProduct32BitSignedAccelerated; - VkBool32 integerDotProduct32BitMixedSignednessAccelerated; - VkBool32 integerDotProduct64BitUnsignedAccelerated; - VkBool32 integerDotProduct64BitSignedAccelerated; - VkBool32 integerDotProduct64BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated; - VkBool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated; - VkBool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated; -} VkPhysicalDeviceShaderIntegerDotProductProperties; - -typedef struct VkPhysicalDeviceTexelBufferAlignmentProperties { - VkStructureType sType; - void* pNext; - VkDeviceSize storageTexelBufferOffsetAlignmentBytes; - VkBool32 storageTexelBufferOffsetSingleTexelAlignment; - VkDeviceSize uniformTexelBufferOffsetAlignmentBytes; - VkBool32 uniformTexelBufferOffsetSingleTexelAlignment; -} VkPhysicalDeviceTexelBufferAlignmentProperties; - -typedef struct VkFormatProperties3 { - VkStructureType sType; - void* pNext; - VkFormatFeatureFlags2 linearTilingFeatures; - VkFormatFeatureFlags2 optimalTilingFeatures; - VkFormatFeatureFlags2 bufferFeatures; -} VkFormatProperties3; - -typedef struct VkPhysicalDeviceMaintenance4Features { - VkStructureType sType; - void* pNext; - VkBool32 maintenance4; -} VkPhysicalDeviceMaintenance4Features; - -typedef struct VkPhysicalDeviceMaintenance4Properties { - VkStructureType sType; - void* pNext; - VkDeviceSize maxBufferSize; -} VkPhysicalDeviceMaintenance4Properties; - -typedef struct VkDeviceBufferMemoryRequirements { - VkStructureType sType; - const void* pNext; - const VkBufferCreateInfo* pCreateInfo; -} VkDeviceBufferMemoryRequirements; - -typedef struct VkDeviceImageMemoryRequirements { - VkStructureType sType; - const void* pNext; - const VkImageCreateInfo* pCreateInfo; - VkImageAspectFlagBits planeAspect; -} VkDeviceImageMemoryRequirements; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceToolProperties)(VkPhysicalDevice physicalDevice, uint32_t* pToolCount, VkPhysicalDeviceToolProperties* pToolProperties); -typedef VkResult (VKAPI_PTR *PFN_vkCreatePrivateDataSlot)(VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot); -typedef void (VKAPI_PTR *PFN_vkDestroyPrivateDataSlot)(VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkSetPrivateData)(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data); -typedef void (VKAPI_PTR *PFN_vkGetPrivateData)(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData); -typedef void (VKAPI_PTR *PFN_vkCmdSetEvent2)(VkCommandBuffer commandBuffer, VkEvent event, const VkDependencyInfo* pDependencyInfo); -typedef void (VKAPI_PTR *PFN_vkCmdResetEvent2)(VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags2 stageMask); -typedef void (VKAPI_PTR *PFN_vkCmdWaitEvents2)(VkCommandBuffer commandBuffer, uint32_t eventCount, const VkEvent* pEvents, const VkDependencyInfo* pDependencyInfos); -typedef void (VKAPI_PTR *PFN_vkCmdPipelineBarrier2)(VkCommandBuffer commandBuffer, const VkDependencyInfo* pDependencyInfo); -typedef void (VKAPI_PTR *PFN_vkCmdWriteTimestamp2)(VkCommandBuffer commandBuffer, VkPipelineStageFlags2 stage, VkQueryPool queryPool, uint32_t query); -typedef VkResult (VKAPI_PTR *PFN_vkQueueSubmit2)(VkQueue queue, uint32_t submitCount, const VkSubmitInfo2* pSubmits, VkFence fence); -typedef void (VKAPI_PTR *PFN_vkCmdCopyBuffer2)(VkCommandBuffer commandBuffer, const VkCopyBufferInfo2* pCopyBufferInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyImage2)(VkCommandBuffer commandBuffer, const VkCopyImageInfo2* pCopyImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyBufferToImage2)(VkCommandBuffer commandBuffer, const VkCopyBufferToImageInfo2* pCopyBufferToImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyImageToBuffer2)(VkCommandBuffer commandBuffer, const VkCopyImageToBufferInfo2* pCopyImageToBufferInfo); -typedef void (VKAPI_PTR *PFN_vkCmdBlitImage2)(VkCommandBuffer commandBuffer, const VkBlitImageInfo2* pBlitImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdResolveImage2)(VkCommandBuffer commandBuffer, const VkResolveImageInfo2* pResolveImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdBeginRendering)(VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo); -typedef void (VKAPI_PTR *PFN_vkCmdEndRendering)(VkCommandBuffer commandBuffer); -typedef void (VKAPI_PTR *PFN_vkCmdSetCullMode)(VkCommandBuffer commandBuffer, VkCullModeFlags cullMode); -typedef void (VKAPI_PTR *PFN_vkCmdSetFrontFace)(VkCommandBuffer commandBuffer, VkFrontFace frontFace); -typedef void (VKAPI_PTR *PFN_vkCmdSetPrimitiveTopology)(VkCommandBuffer commandBuffer, VkPrimitiveTopology primitiveTopology); -typedef void (VKAPI_PTR *PFN_vkCmdSetViewportWithCount)(VkCommandBuffer commandBuffer, uint32_t viewportCount, const VkViewport* pViewports); -typedef void (VKAPI_PTR *PFN_vkCmdSetScissorWithCount)(VkCommandBuffer commandBuffer, uint32_t scissorCount, const VkRect2D* pScissors); -typedef void (VKAPI_PTR *PFN_vkCmdBindVertexBuffers2)(VkCommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const VkBuffer* pBuffers, const VkDeviceSize* pOffsets, const VkDeviceSize* pSizes, const VkDeviceSize* pStrides); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthTestEnable)(VkCommandBuffer commandBuffer, VkBool32 depthTestEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthWriteEnable)(VkCommandBuffer commandBuffer, VkBool32 depthWriteEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthCompareOp)(VkCommandBuffer commandBuffer, VkCompareOp depthCompareOp); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthBoundsTestEnable)(VkCommandBuffer commandBuffer, VkBool32 depthBoundsTestEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilTestEnable)(VkCommandBuffer commandBuffer, VkBool32 stencilTestEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilOp)(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, VkStencilOp failOp, VkStencilOp passOp, VkStencilOp depthFailOp, VkCompareOp compareOp); -typedef void (VKAPI_PTR *PFN_vkCmdSetRasterizerDiscardEnable)(VkCommandBuffer commandBuffer, VkBool32 rasterizerDiscardEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthBiasEnable)(VkCommandBuffer commandBuffer, VkBool32 depthBiasEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetPrimitiveRestartEnable)(VkCommandBuffer commandBuffer, VkBool32 primitiveRestartEnable); -typedef void (VKAPI_PTR *PFN_vkGetDeviceBufferMemoryRequirements)(VkDevice device, const VkDeviceBufferMemoryRequirements* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetDeviceImageMemoryRequirements)(VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetDeviceImageSparseMemoryRequirements)(VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceToolProperties( - VkPhysicalDevice physicalDevice, - uint32_t* pToolCount, - VkPhysicalDeviceToolProperties* pToolProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreatePrivateDataSlot( - VkDevice device, - const VkPrivateDataSlotCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkPrivateDataSlot* pPrivateDataSlot); - -VKAPI_ATTR void VKAPI_CALL vkDestroyPrivateDataSlot( - VkDevice device, - VkPrivateDataSlot privateDataSlot, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkSetPrivateData( - VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t data); - -VKAPI_ATTR void VKAPI_CALL vkGetPrivateData( - VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t* pData); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetEvent2( - VkCommandBuffer commandBuffer, - VkEvent event, - const VkDependencyInfo* pDependencyInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdResetEvent2( - VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags2 stageMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdWaitEvents2( - VkCommandBuffer commandBuffer, - uint32_t eventCount, - const VkEvent* pEvents, - const VkDependencyInfo* pDependencyInfos); - -VKAPI_ATTR void VKAPI_CALL vkCmdPipelineBarrier2( - VkCommandBuffer commandBuffer, - const VkDependencyInfo* pDependencyInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdWriteTimestamp2( - VkCommandBuffer commandBuffer, - VkPipelineStageFlags2 stage, - VkQueryPool queryPool, - uint32_t query); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit2( - VkQueue queue, - uint32_t submitCount, - const VkSubmitInfo2* pSubmits, - VkFence fence); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyBuffer2( - VkCommandBuffer commandBuffer, - const VkCopyBufferInfo2* pCopyBufferInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyImage2( - VkCommandBuffer commandBuffer, - const VkCopyImageInfo2* pCopyImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyBufferToImage2( - VkCommandBuffer commandBuffer, - const VkCopyBufferToImageInfo2* pCopyBufferToImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyImageToBuffer2( - VkCommandBuffer commandBuffer, - const VkCopyImageToBufferInfo2* pCopyImageToBufferInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdBlitImage2( - VkCommandBuffer commandBuffer, - const VkBlitImageInfo2* pBlitImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdResolveImage2( - VkCommandBuffer commandBuffer, - const VkResolveImageInfo2* pResolveImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginRendering( - VkCommandBuffer commandBuffer, - const VkRenderingInfo* pRenderingInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndRendering( - VkCommandBuffer commandBuffer); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetCullMode( - VkCommandBuffer commandBuffer, - VkCullModeFlags cullMode); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetFrontFace( - VkCommandBuffer commandBuffer, - VkFrontFace frontFace); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetPrimitiveTopology( - VkCommandBuffer commandBuffer, - VkPrimitiveTopology primitiveTopology); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetViewportWithCount( - VkCommandBuffer commandBuffer, - uint32_t viewportCount, - const VkViewport* pViewports); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetScissorWithCount( - VkCommandBuffer commandBuffer, - uint32_t scissorCount, - const VkRect2D* pScissors); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindVertexBuffers2( - VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer* pBuffers, - const VkDeviceSize* pOffsets, - const VkDeviceSize* pSizes, - const VkDeviceSize* pStrides); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthTestEnable( - VkCommandBuffer commandBuffer, - VkBool32 depthTestEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthWriteEnable( - VkCommandBuffer commandBuffer, - VkBool32 depthWriteEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthCompareOp( - VkCommandBuffer commandBuffer, - VkCompareOp depthCompareOp); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthBoundsTestEnable( - VkCommandBuffer commandBuffer, - VkBool32 depthBoundsTestEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilTestEnable( - VkCommandBuffer commandBuffer, - VkBool32 stencilTestEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilOp( - VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - VkStencilOp failOp, - VkStencilOp passOp, - VkStencilOp depthFailOp, - VkCompareOp compareOp); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetRasterizerDiscardEnable( - VkCommandBuffer commandBuffer, - VkBool32 rasterizerDiscardEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthBiasEnable( - VkCommandBuffer commandBuffer, - VkBool32 depthBiasEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetPrimitiveRestartEnable( - VkCommandBuffer commandBuffer, - VkBool32 primitiveRestartEnable); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceBufferMemoryRequirements( - VkDevice device, - const VkDeviceBufferMemoryRequirements* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceImageMemoryRequirements( - VkDevice device, - const VkDeviceImageMemoryRequirements* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceImageSparseMemoryRequirements( - VkDevice device, - const VkDeviceImageMemoryRequirements* pInfo, - uint32_t* pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); -#endif - - -#define VK_KHR_surface 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR) -#define VK_KHR_SURFACE_SPEC_VERSION 25 -#define VK_KHR_SURFACE_EXTENSION_NAME "VK_KHR_surface" - -typedef enum VkPresentModeKHR { - VK_PRESENT_MODE_IMMEDIATE_KHR = 0, - VK_PRESENT_MODE_MAILBOX_KHR = 1, - VK_PRESENT_MODE_FIFO_KHR = 2, - VK_PRESENT_MODE_FIFO_RELAXED_KHR = 3, - VK_PRESENT_MODE_SHARED_DEMAND_REFRESH_KHR = 1000111000, - VK_PRESENT_MODE_SHARED_CONTINUOUS_REFRESH_KHR = 1000111001, - VK_PRESENT_MODE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkPresentModeKHR; - -typedef enum VkColorSpaceKHR { - VK_COLOR_SPACE_SRGB_NONLINEAR_KHR = 0, - VK_COLOR_SPACE_DISPLAY_P3_NONLINEAR_EXT = 1000104001, - VK_COLOR_SPACE_EXTENDED_SRGB_LINEAR_EXT = 1000104002, - VK_COLOR_SPACE_DISPLAY_P3_LINEAR_EXT = 1000104003, - VK_COLOR_SPACE_DCI_P3_NONLINEAR_EXT = 1000104004, - VK_COLOR_SPACE_BT709_LINEAR_EXT = 1000104005, - VK_COLOR_SPACE_BT709_NONLINEAR_EXT = 1000104006, - VK_COLOR_SPACE_BT2020_LINEAR_EXT = 1000104007, - VK_COLOR_SPACE_HDR10_ST2084_EXT = 1000104008, - VK_COLOR_SPACE_DOLBYVISION_EXT = 1000104009, - VK_COLOR_SPACE_HDR10_HLG_EXT = 1000104010, - VK_COLOR_SPACE_ADOBERGB_LINEAR_EXT = 1000104011, - VK_COLOR_SPACE_ADOBERGB_NONLINEAR_EXT = 1000104012, - VK_COLOR_SPACE_PASS_THROUGH_EXT = 1000104013, - VK_COLOR_SPACE_EXTENDED_SRGB_NONLINEAR_EXT = 1000104014, - VK_COLOR_SPACE_DISPLAY_NATIVE_AMD = 1000213000, - VK_COLORSPACE_SRGB_NONLINEAR_KHR = VK_COLOR_SPACE_SRGB_NONLINEAR_KHR, - VK_COLOR_SPACE_DCI_P3_LINEAR_EXT = VK_COLOR_SPACE_DISPLAY_P3_LINEAR_EXT, - VK_COLOR_SPACE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkColorSpaceKHR; - -typedef enum VkSurfaceTransformFlagBitsKHR { - VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR = 0x00000001, - VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR = 0x00000002, - VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR = 0x00000004, - VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR = 0x00000008, - VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR = 0x00000010, - VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR = 0x00000020, - VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR = 0x00000040, - VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR = 0x00000080, - VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR = 0x00000100, - VK_SURFACE_TRANSFORM_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkSurfaceTransformFlagBitsKHR; - -typedef enum VkCompositeAlphaFlagBitsKHR { - VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR = 0x00000001, - VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR = 0x00000002, - VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR = 0x00000004, - VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR = 0x00000008, - VK_COMPOSITE_ALPHA_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkCompositeAlphaFlagBitsKHR; -typedef VkFlags VkCompositeAlphaFlagsKHR; -typedef VkFlags VkSurfaceTransformFlagsKHR; -typedef struct VkSurfaceCapabilitiesKHR { - uint32_t minImageCount; - uint32_t maxImageCount; - VkExtent2D currentExtent; - VkExtent2D minImageExtent; - VkExtent2D maxImageExtent; - uint32_t maxImageArrayLayers; - VkSurfaceTransformFlagsKHR supportedTransforms; - VkSurfaceTransformFlagBitsKHR currentTransform; - VkCompositeAlphaFlagsKHR supportedCompositeAlpha; - VkImageUsageFlags supportedUsageFlags; -} VkSurfaceCapabilitiesKHR; - -typedef struct VkSurfaceFormatKHR { - VkFormat format; - VkColorSpaceKHR colorSpace; -} VkSurfaceFormatKHR; - -typedef void (VKAPI_PTR *PFN_vkDestroySurfaceKHR)(VkInstance instance, VkSurfaceKHR surface, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfaceSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, VkSurfaceKHR surface, VkBool32* pSupported); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR)(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, VkSurfaceCapabilitiesKHR* pSurfaceCapabilities); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfaceFormatsKHR)(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pSurfaceFormatCount, VkSurfaceFormatKHR* pSurfaceFormats); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfacePresentModesKHR)(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pPresentModeCount, VkPresentModeKHR* pPresentModes); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkDestroySurfaceKHR( - VkInstance instance, - VkSurfaceKHR surface, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceSupportKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - VkSurfaceKHR surface, - VkBool32* pSupported); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceCapabilitiesKHR( - VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - VkSurfaceCapabilitiesKHR* pSurfaceCapabilities); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceFormatsKHR( - VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - uint32_t* pSurfaceFormatCount, - VkSurfaceFormatKHR* pSurfaceFormats); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfacePresentModesKHR( - VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - uint32_t* pPresentModeCount, - VkPresentModeKHR* pPresentModes); -#endif - - -#define VK_KHR_swapchain 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSwapchainKHR) -#define VK_KHR_SWAPCHAIN_SPEC_VERSION 70 -#define VK_KHR_SWAPCHAIN_EXTENSION_NAME "VK_KHR_swapchain" - -typedef enum VkSwapchainCreateFlagBitsKHR { - VK_SWAPCHAIN_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR = 0x00000001, - VK_SWAPCHAIN_CREATE_PROTECTED_BIT_KHR = 0x00000002, - VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR = 0x00000004, - VK_SWAPCHAIN_CREATE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkSwapchainCreateFlagBitsKHR; -typedef VkFlags VkSwapchainCreateFlagsKHR; - -typedef enum VkDeviceGroupPresentModeFlagBitsKHR { - VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR = 0x00000001, - VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR = 0x00000002, - VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR = 0x00000004, - VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR = 0x00000008, - VK_DEVICE_GROUP_PRESENT_MODE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkDeviceGroupPresentModeFlagBitsKHR; -typedef VkFlags VkDeviceGroupPresentModeFlagsKHR; -typedef struct VkSwapchainCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkSwapchainCreateFlagsKHR flags; - VkSurfaceKHR surface; - uint32_t minImageCount; - VkFormat imageFormat; - VkColorSpaceKHR imageColorSpace; - VkExtent2D imageExtent; - uint32_t imageArrayLayers; - VkImageUsageFlags imageUsage; - VkSharingMode imageSharingMode; - uint32_t queueFamilyIndexCount; - const uint32_t* pQueueFamilyIndices; - VkSurfaceTransformFlagBitsKHR preTransform; - VkCompositeAlphaFlagBitsKHR compositeAlpha; - VkPresentModeKHR presentMode; - VkBool32 clipped; - VkSwapchainKHR oldSwapchain; -} VkSwapchainCreateInfoKHR; - -typedef struct VkPresentInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t waitSemaphoreCount; - const VkSemaphore* pWaitSemaphores; - uint32_t swapchainCount; - const VkSwapchainKHR* pSwapchains; - const uint32_t* pImageIndices; - VkResult* pResults; -} VkPresentInfoKHR; - -typedef struct VkImageSwapchainCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkSwapchainKHR swapchain; -} VkImageSwapchainCreateInfoKHR; - -typedef struct VkBindImageMemorySwapchainInfoKHR { - VkStructureType sType; - const void* pNext; - VkSwapchainKHR swapchain; - uint32_t imageIndex; -} VkBindImageMemorySwapchainInfoKHR; - -typedef struct VkAcquireNextImageInfoKHR { - VkStructureType sType; - const void* pNext; - VkSwapchainKHR swapchain; - uint64_t timeout; - VkSemaphore semaphore; - VkFence fence; - uint32_t deviceMask; -} VkAcquireNextImageInfoKHR; - -typedef struct VkDeviceGroupPresentCapabilitiesKHR { - VkStructureType sType; - void* pNext; - uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE]; - VkDeviceGroupPresentModeFlagsKHR modes; -} VkDeviceGroupPresentCapabilitiesKHR; - -typedef struct VkDeviceGroupPresentInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t swapchainCount; - const uint32_t* pDeviceMasks; - VkDeviceGroupPresentModeFlagBitsKHR mode; -} VkDeviceGroupPresentInfoKHR; - -typedef struct VkDeviceGroupSwapchainCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkDeviceGroupPresentModeFlagsKHR modes; -} VkDeviceGroupSwapchainCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateSwapchainKHR)(VkDevice device, const VkSwapchainCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSwapchainKHR* pSwapchain); -typedef void (VKAPI_PTR *PFN_vkDestroySwapchainKHR)(VkDevice device, VkSwapchainKHR swapchain, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetSwapchainImagesKHR)(VkDevice device, VkSwapchainKHR swapchain, uint32_t* pSwapchainImageCount, VkImage* pSwapchainImages); -typedef VkResult (VKAPI_PTR *PFN_vkAcquireNextImageKHR)(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex); -typedef VkResult (VKAPI_PTR *PFN_vkQueuePresentKHR)(VkQueue queue, const VkPresentInfoKHR* pPresentInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetDeviceGroupPresentCapabilitiesKHR)(VkDevice device, VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities); -typedef VkResult (VKAPI_PTR *PFN_vkGetDeviceGroupSurfacePresentModesKHR)(VkDevice device, VkSurfaceKHR surface, VkDeviceGroupPresentModeFlagsKHR* pModes); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDevicePresentRectanglesKHR)(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pRectCount, VkRect2D* pRects); -typedef VkResult (VKAPI_PTR *PFN_vkAcquireNextImage2KHR)(VkDevice device, const VkAcquireNextImageInfoKHR* pAcquireInfo, uint32_t* pImageIndex); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateSwapchainKHR( - VkDevice device, - const VkSwapchainCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSwapchainKHR* pSwapchain); - -VKAPI_ATTR void VKAPI_CALL vkDestroySwapchainKHR( - VkDevice device, - VkSwapchainKHR swapchain, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetSwapchainImagesKHR( - VkDevice device, - VkSwapchainKHR swapchain, - uint32_t* pSwapchainImageCount, - VkImage* pSwapchainImages); - -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireNextImageKHR( - VkDevice device, - VkSwapchainKHR swapchain, - uint64_t timeout, - VkSemaphore semaphore, - VkFence fence, - uint32_t* pImageIndex); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueuePresentKHR( - VkQueue queue, - const VkPresentInfoKHR* pPresentInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDeviceGroupPresentCapabilitiesKHR( - VkDevice device, - VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDeviceGroupSurfacePresentModesKHR( - VkDevice device, - VkSurfaceKHR surface, - VkDeviceGroupPresentModeFlagsKHR* pModes); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDevicePresentRectanglesKHR( - VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - uint32_t* pRectCount, - VkRect2D* pRects); - -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireNextImage2KHR( - VkDevice device, - const VkAcquireNextImageInfoKHR* pAcquireInfo, - uint32_t* pImageIndex); -#endif - - -#define VK_KHR_display 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDisplayKHR) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDisplayModeKHR) -#define VK_KHR_DISPLAY_SPEC_VERSION 23 -#define VK_KHR_DISPLAY_EXTENSION_NAME "VK_KHR_display" -typedef VkFlags VkDisplayModeCreateFlagsKHR; - -typedef enum VkDisplayPlaneAlphaFlagBitsKHR { - VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR = 0x00000001, - VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR = 0x00000002, - VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR = 0x00000004, - VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR = 0x00000008, - VK_DISPLAY_PLANE_ALPHA_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkDisplayPlaneAlphaFlagBitsKHR; -typedef VkFlags VkDisplayPlaneAlphaFlagsKHR; -typedef VkFlags VkDisplaySurfaceCreateFlagsKHR; -typedef struct VkDisplayModeParametersKHR { - VkExtent2D visibleRegion; - uint32_t refreshRate; -} VkDisplayModeParametersKHR; - -typedef struct VkDisplayModeCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkDisplayModeCreateFlagsKHR flags; - VkDisplayModeParametersKHR parameters; -} VkDisplayModeCreateInfoKHR; - -typedef struct VkDisplayModePropertiesKHR { - VkDisplayModeKHR displayMode; - VkDisplayModeParametersKHR parameters; -} VkDisplayModePropertiesKHR; - -typedef struct VkDisplayPlaneCapabilitiesKHR { - VkDisplayPlaneAlphaFlagsKHR supportedAlpha; - VkOffset2D minSrcPosition; - VkOffset2D maxSrcPosition; - VkExtent2D minSrcExtent; - VkExtent2D maxSrcExtent; - VkOffset2D minDstPosition; - VkOffset2D maxDstPosition; - VkExtent2D minDstExtent; - VkExtent2D maxDstExtent; -} VkDisplayPlaneCapabilitiesKHR; - -typedef struct VkDisplayPlanePropertiesKHR { - VkDisplayKHR currentDisplay; - uint32_t currentStackIndex; -} VkDisplayPlanePropertiesKHR; - -typedef struct VkDisplayPropertiesKHR { - VkDisplayKHR display; - const char* displayName; - VkExtent2D physicalDimensions; - VkExtent2D physicalResolution; - VkSurfaceTransformFlagsKHR supportedTransforms; - VkBool32 planeReorderPossible; - VkBool32 persistentContent; -} VkDisplayPropertiesKHR; - -typedef struct VkDisplaySurfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkDisplaySurfaceCreateFlagsKHR flags; - VkDisplayModeKHR displayMode; - uint32_t planeIndex; - uint32_t planeStackIndex; - VkSurfaceTransformFlagBitsKHR transform; - float globalAlpha; - VkDisplayPlaneAlphaFlagBitsKHR alphaMode; - VkExtent2D imageExtent; -} VkDisplaySurfaceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceDisplayPropertiesKHR)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPropertiesKHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlanePropertiesKHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetDisplayPlaneSupportedDisplaysKHR)(VkPhysicalDevice physicalDevice, uint32_t planeIndex, uint32_t* pDisplayCount, VkDisplayKHR* pDisplays); -typedef VkResult (VKAPI_PTR *PFN_vkGetDisplayModePropertiesKHR)(VkPhysicalDevice physicalDevice, VkDisplayKHR display, uint32_t* pPropertyCount, VkDisplayModePropertiesKHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDisplayModeKHR)(VkPhysicalDevice physicalDevice, VkDisplayKHR display, const VkDisplayModeCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDisplayModeKHR* pMode); -typedef VkResult (VKAPI_PTR *PFN_vkGetDisplayPlaneCapabilitiesKHR)(VkPhysicalDevice physicalDevice, VkDisplayModeKHR mode, uint32_t planeIndex, VkDisplayPlaneCapabilitiesKHR* pCapabilities); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDisplayPlaneSurfaceKHR)(VkInstance instance, const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceDisplayPropertiesKHR( - VkPhysicalDevice physicalDevice, - uint32_t* pPropertyCount, - VkDisplayPropertiesKHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - VkPhysicalDevice physicalDevice, - uint32_t* pPropertyCount, - VkDisplayPlanePropertiesKHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDisplayPlaneSupportedDisplaysKHR( - VkPhysicalDevice physicalDevice, - uint32_t planeIndex, - uint32_t* pDisplayCount, - VkDisplayKHR* pDisplays); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDisplayModePropertiesKHR( - VkPhysicalDevice physicalDevice, - VkDisplayKHR display, - uint32_t* pPropertyCount, - VkDisplayModePropertiesKHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDisplayModeKHR( - VkPhysicalDevice physicalDevice, - VkDisplayKHR display, - const VkDisplayModeCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDisplayModeKHR* pMode); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDisplayPlaneCapabilitiesKHR( - VkPhysicalDevice physicalDevice, - VkDisplayModeKHR mode, - uint32_t planeIndex, - VkDisplayPlaneCapabilitiesKHR* pCapabilities); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDisplayPlaneSurfaceKHR( - VkInstance instance, - const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - - -#define VK_KHR_display_swapchain 1 -#define VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION 10 -#define VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME "VK_KHR_display_swapchain" -typedef struct VkDisplayPresentInfoKHR { - VkStructureType sType; - const void* pNext; - VkRect2D srcRect; - VkRect2D dstRect; - VkBool32 persistent; -} VkDisplayPresentInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateSharedSwapchainsKHR)(VkDevice device, uint32_t swapchainCount, const VkSwapchainCreateInfoKHR* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkSwapchainKHR* pSwapchains); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateSharedSwapchainsKHR( - VkDevice device, - uint32_t swapchainCount, - const VkSwapchainCreateInfoKHR* pCreateInfos, - const VkAllocationCallbacks* pAllocator, - VkSwapchainKHR* pSwapchains); -#endif - - -#define VK_KHR_sampler_mirror_clamp_to_edge 1 -#define VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_SPEC_VERSION 3 -#define VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME "VK_KHR_sampler_mirror_clamp_to_edge" - - -#define VK_KHR_dynamic_rendering 1 -#define VK_KHR_DYNAMIC_RENDERING_SPEC_VERSION 1 -#define VK_KHR_DYNAMIC_RENDERING_EXTENSION_NAME "VK_KHR_dynamic_rendering" -typedef VkRenderingFlags VkRenderingFlagsKHR; - -typedef VkRenderingFlagBits VkRenderingFlagBitsKHR; - -typedef VkRenderingInfo VkRenderingInfoKHR; - -typedef VkRenderingAttachmentInfo VkRenderingAttachmentInfoKHR; - -typedef VkPipelineRenderingCreateInfo VkPipelineRenderingCreateInfoKHR; - -typedef VkPhysicalDeviceDynamicRenderingFeatures VkPhysicalDeviceDynamicRenderingFeaturesKHR; - -typedef VkCommandBufferInheritanceRenderingInfo VkCommandBufferInheritanceRenderingInfoKHR; - -typedef struct VkRenderingFragmentShadingRateAttachmentInfoKHR { - VkStructureType sType; - const void* pNext; - VkImageView imageView; - VkImageLayout imageLayout; - VkExtent2D shadingRateAttachmentTexelSize; -} VkRenderingFragmentShadingRateAttachmentInfoKHR; - -typedef struct VkRenderingFragmentDensityMapAttachmentInfoEXT { - VkStructureType sType; - const void* pNext; - VkImageView imageView; - VkImageLayout imageLayout; -} VkRenderingFragmentDensityMapAttachmentInfoEXT; - -typedef struct VkAttachmentSampleCountInfoAMD { - VkStructureType sType; - const void* pNext; - uint32_t colorAttachmentCount; - const VkSampleCountFlagBits* pColorAttachmentSamples; - VkSampleCountFlagBits depthStencilAttachmentSamples; -} VkAttachmentSampleCountInfoAMD; - -typedef VkAttachmentSampleCountInfoAMD VkAttachmentSampleCountInfoNV; - -typedef struct VkMultiviewPerViewAttributesInfoNVX { - VkStructureType sType; - const void* pNext; - VkBool32 perViewAttributes; - VkBool32 perViewAttributesPositionXOnly; -} VkMultiviewPerViewAttributesInfoNVX; - -typedef void (VKAPI_PTR *PFN_vkCmdBeginRenderingKHR)(VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo); -typedef void (VKAPI_PTR *PFN_vkCmdEndRenderingKHR)(VkCommandBuffer commandBuffer); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdBeginRenderingKHR( - VkCommandBuffer commandBuffer, - const VkRenderingInfo* pRenderingInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndRenderingKHR( - VkCommandBuffer commandBuffer); -#endif - - -#define VK_KHR_multiview 1 -#define VK_KHR_MULTIVIEW_SPEC_VERSION 1 -#define VK_KHR_MULTIVIEW_EXTENSION_NAME "VK_KHR_multiview" -typedef VkRenderPassMultiviewCreateInfo VkRenderPassMultiviewCreateInfoKHR; - -typedef VkPhysicalDeviceMultiviewFeatures VkPhysicalDeviceMultiviewFeaturesKHR; - -typedef VkPhysicalDeviceMultiviewProperties VkPhysicalDeviceMultiviewPropertiesKHR; - - - -#define VK_KHR_get_physical_device_properties2 1 -#define VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_SPEC_VERSION 2 -#define VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME "VK_KHR_get_physical_device_properties2" -typedef VkPhysicalDeviceFeatures2 VkPhysicalDeviceFeatures2KHR; - -typedef VkPhysicalDeviceProperties2 VkPhysicalDeviceProperties2KHR; - -typedef VkFormatProperties2 VkFormatProperties2KHR; - -typedef VkImageFormatProperties2 VkImageFormatProperties2KHR; - -typedef VkPhysicalDeviceImageFormatInfo2 VkPhysicalDeviceImageFormatInfo2KHR; - -typedef VkQueueFamilyProperties2 VkQueueFamilyProperties2KHR; - -typedef VkPhysicalDeviceMemoryProperties2 VkPhysicalDeviceMemoryProperties2KHR; - -typedef VkSparseImageFormatProperties2 VkSparseImageFormatProperties2KHR; - -typedef VkPhysicalDeviceSparseImageFormatInfo2 VkPhysicalDeviceSparseImageFormatInfo2KHR; - -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceFeatures2KHR)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures2* pFeatures); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceProperties2KHR)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties2* pProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceFormatProperties2KHR)(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2* pFormatProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceImageFormatProperties2KHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo, VkImageFormatProperties2* pImageFormatProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR)(VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties2* pQueueFamilyProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceMemoryProperties2KHR)(VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2* pMemoryProperties); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo, uint32_t* pPropertyCount, VkSparseImageFormatProperties2* pProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFeatures2KHR( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceFeatures2* pFeatures); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceProperties2KHR( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceProperties2* pProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceFormatProperties2KHR( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkFormatProperties2* pFormatProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceImageFormatProperties2KHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo, - VkImageFormatProperties2* pImageFormatProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceQueueFamilyProperties2KHR( - VkPhysicalDevice physicalDevice, - uint32_t* pQueueFamilyPropertyCount, - VkQueueFamilyProperties2* pQueueFamilyProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceMemoryProperties2KHR( - VkPhysicalDevice physicalDevice, - VkPhysicalDeviceMemoryProperties2* pMemoryProperties); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo, - uint32_t* pPropertyCount, - VkSparseImageFormatProperties2* pProperties); -#endif - - -#define VK_KHR_device_group 1 -#define VK_KHR_DEVICE_GROUP_SPEC_VERSION 4 -#define VK_KHR_DEVICE_GROUP_EXTENSION_NAME "VK_KHR_device_group" -typedef VkPeerMemoryFeatureFlags VkPeerMemoryFeatureFlagsKHR; - -typedef VkPeerMemoryFeatureFlagBits VkPeerMemoryFeatureFlagBitsKHR; - -typedef VkMemoryAllocateFlags VkMemoryAllocateFlagsKHR; - -typedef VkMemoryAllocateFlagBits VkMemoryAllocateFlagBitsKHR; - -typedef VkMemoryAllocateFlagsInfo VkMemoryAllocateFlagsInfoKHR; - -typedef VkDeviceGroupRenderPassBeginInfo VkDeviceGroupRenderPassBeginInfoKHR; - -typedef VkDeviceGroupCommandBufferBeginInfo VkDeviceGroupCommandBufferBeginInfoKHR; - -typedef VkDeviceGroupSubmitInfo VkDeviceGroupSubmitInfoKHR; - -typedef VkDeviceGroupBindSparseInfo VkDeviceGroupBindSparseInfoKHR; - -typedef VkBindBufferMemoryDeviceGroupInfo VkBindBufferMemoryDeviceGroupInfoKHR; - -typedef VkBindImageMemoryDeviceGroupInfo VkBindImageMemoryDeviceGroupInfoKHR; - -typedef void (VKAPI_PTR *PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR)(VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, VkPeerMemoryFeatureFlags* pPeerMemoryFeatures); -typedef void (VKAPI_PTR *PFN_vkCmdSetDeviceMaskKHR)(VkCommandBuffer commandBuffer, uint32_t deviceMask); -typedef void (VKAPI_PTR *PFN_vkCmdDispatchBaseKHR)(VkCommandBuffer commandBuffer, uint32_t baseGroupX, uint32_t baseGroupY, uint32_t baseGroupZ, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetDeviceGroupPeerMemoryFeaturesKHR( - VkDevice device, - uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VkPeerMemoryFeatureFlags* pPeerMemoryFeatures); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDeviceMaskKHR( - VkCommandBuffer commandBuffer, - uint32_t deviceMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdDispatchBaseKHR( - VkCommandBuffer commandBuffer, - uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ); -#endif - - -#define VK_KHR_shader_draw_parameters 1 -#define VK_KHR_SHADER_DRAW_PARAMETERS_SPEC_VERSION 1 -#define VK_KHR_SHADER_DRAW_PARAMETERS_EXTENSION_NAME "VK_KHR_shader_draw_parameters" - - -#define VK_KHR_maintenance1 1 -#define VK_KHR_MAINTENANCE_1_SPEC_VERSION 2 -#define VK_KHR_MAINTENANCE_1_EXTENSION_NAME "VK_KHR_maintenance1" -#define VK_KHR_MAINTENANCE1_SPEC_VERSION VK_KHR_MAINTENANCE_1_SPEC_VERSION -#define VK_KHR_MAINTENANCE1_EXTENSION_NAME VK_KHR_MAINTENANCE_1_EXTENSION_NAME -typedef VkCommandPoolTrimFlags VkCommandPoolTrimFlagsKHR; - -typedef void (VKAPI_PTR *PFN_vkTrimCommandPoolKHR)(VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlags flags); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkTrimCommandPoolKHR( - VkDevice device, - VkCommandPool commandPool, - VkCommandPoolTrimFlags flags); -#endif - - -#define VK_KHR_device_group_creation 1 -#define VK_KHR_DEVICE_GROUP_CREATION_SPEC_VERSION 1 -#define VK_KHR_DEVICE_GROUP_CREATION_EXTENSION_NAME "VK_KHR_device_group_creation" -#define VK_MAX_DEVICE_GROUP_SIZE_KHR VK_MAX_DEVICE_GROUP_SIZE -typedef VkPhysicalDeviceGroupProperties VkPhysicalDeviceGroupPropertiesKHR; - -typedef VkDeviceGroupDeviceCreateInfo VkDeviceGroupDeviceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkEnumeratePhysicalDeviceGroupsKHR)(VkInstance instance, uint32_t* pPhysicalDeviceGroupCount, VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkEnumeratePhysicalDeviceGroupsKHR( - VkInstance instance, - uint32_t* pPhysicalDeviceGroupCount, - VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties); -#endif - - -#define VK_KHR_external_memory_capabilities 1 -#define VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME "VK_KHR_external_memory_capabilities" -#define VK_LUID_SIZE_KHR VK_LUID_SIZE -typedef VkExternalMemoryHandleTypeFlags VkExternalMemoryHandleTypeFlagsKHR; - -typedef VkExternalMemoryHandleTypeFlagBits VkExternalMemoryHandleTypeFlagBitsKHR; - -typedef VkExternalMemoryFeatureFlags VkExternalMemoryFeatureFlagsKHR; - -typedef VkExternalMemoryFeatureFlagBits VkExternalMemoryFeatureFlagBitsKHR; - -typedef VkExternalMemoryProperties VkExternalMemoryPropertiesKHR; - -typedef VkPhysicalDeviceExternalImageFormatInfo VkPhysicalDeviceExternalImageFormatInfoKHR; - -typedef VkExternalImageFormatProperties VkExternalImageFormatPropertiesKHR; - -typedef VkPhysicalDeviceExternalBufferInfo VkPhysicalDeviceExternalBufferInfoKHR; - -typedef VkExternalBufferProperties VkExternalBufferPropertiesKHR; - -typedef VkPhysicalDeviceIDProperties VkPhysicalDeviceIDPropertiesKHR; - -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo, VkExternalBufferProperties* pExternalBufferProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceExternalBufferPropertiesKHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo, - VkExternalBufferProperties* pExternalBufferProperties); -#endif - - -#define VK_KHR_external_memory 1 -#define VK_KHR_EXTERNAL_MEMORY_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME "VK_KHR_external_memory" -#define VK_QUEUE_FAMILY_EXTERNAL_KHR VK_QUEUE_FAMILY_EXTERNAL -typedef VkExternalMemoryImageCreateInfo VkExternalMemoryImageCreateInfoKHR; - -typedef VkExternalMemoryBufferCreateInfo VkExternalMemoryBufferCreateInfoKHR; - -typedef VkExportMemoryAllocateInfo VkExportMemoryAllocateInfoKHR; - - - -#define VK_KHR_external_memory_fd 1 -#define VK_KHR_EXTERNAL_MEMORY_FD_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_MEMORY_FD_EXTENSION_NAME "VK_KHR_external_memory_fd" -typedef struct VkImportMemoryFdInfoKHR { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagBits handleType; - int fd; -} VkImportMemoryFdInfoKHR; - -typedef struct VkMemoryFdPropertiesKHR { - VkStructureType sType; - void* pNext; - uint32_t memoryTypeBits; -} VkMemoryFdPropertiesKHR; - -typedef struct VkMemoryGetFdInfoKHR { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; - VkExternalMemoryHandleTypeFlagBits handleType; -} VkMemoryGetFdInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryFdKHR)(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryFdPropertiesKHR)(VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, int fd, VkMemoryFdPropertiesKHR* pMemoryFdProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryFdKHR( - VkDevice device, - const VkMemoryGetFdInfoKHR* pGetFdInfo, - int* pFd); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryFdPropertiesKHR( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - int fd, - VkMemoryFdPropertiesKHR* pMemoryFdProperties); -#endif - - -#define VK_KHR_external_semaphore_capabilities 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME "VK_KHR_external_semaphore_capabilities" -typedef VkExternalSemaphoreHandleTypeFlags VkExternalSemaphoreHandleTypeFlagsKHR; - -typedef VkExternalSemaphoreHandleTypeFlagBits VkExternalSemaphoreHandleTypeFlagBitsKHR; - -typedef VkExternalSemaphoreFeatureFlags VkExternalSemaphoreFeatureFlagsKHR; - -typedef VkExternalSemaphoreFeatureFlagBits VkExternalSemaphoreFeatureFlagBitsKHR; - -typedef VkPhysicalDeviceExternalSemaphoreInfo VkPhysicalDeviceExternalSemaphoreInfoKHR; - -typedef VkExternalSemaphoreProperties VkExternalSemaphorePropertiesKHR; - -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo, VkExternalSemaphoreProperties* pExternalSemaphoreProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo, - VkExternalSemaphoreProperties* pExternalSemaphoreProperties); -#endif - - -#define VK_KHR_external_semaphore 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME "VK_KHR_external_semaphore" -typedef VkSemaphoreImportFlags VkSemaphoreImportFlagsKHR; - -typedef VkSemaphoreImportFlagBits VkSemaphoreImportFlagBitsKHR; - -typedef VkExportSemaphoreCreateInfo VkExportSemaphoreCreateInfoKHR; - - - -#define VK_KHR_external_semaphore_fd 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_FD_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION_NAME "VK_KHR_external_semaphore_fd" -typedef struct VkImportSemaphoreFdInfoKHR { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - VkSemaphoreImportFlags flags; - VkExternalSemaphoreHandleTypeFlagBits handleType; - int fd; -} VkImportSemaphoreFdInfoKHR; - -typedef struct VkSemaphoreGetFdInfoKHR { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - VkExternalSemaphoreHandleTypeFlagBits handleType; -} VkSemaphoreGetFdInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetSemaphoreFdKHR)(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkImportSemaphoreFdKHR( - VkDevice device, - const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetSemaphoreFdKHR( - VkDevice device, - const VkSemaphoreGetFdInfoKHR* pGetFdInfo, - int* pFd); -#endif - - -#define VK_KHR_push_descriptor 1 -#define VK_KHR_PUSH_DESCRIPTOR_SPEC_VERSION 2 -#define VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME "VK_KHR_push_descriptor" -typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR { - VkStructureType sType; - void* pNext; - uint32_t maxPushDescriptors; -} VkPhysicalDevicePushDescriptorPropertiesKHR; - -typedef void (VKAPI_PTR *PFN_vkCmdPushDescriptorSetKHR)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t set, uint32_t descriptorWriteCount, const VkWriteDescriptorSet* pDescriptorWrites); -typedef void (VKAPI_PTR *PFN_vkCmdPushDescriptorSetWithTemplateKHR)(VkCommandBuffer commandBuffer, VkDescriptorUpdateTemplate descriptorUpdateTemplate, VkPipelineLayout layout, uint32_t set, const void* pData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdPushDescriptorSetKHR( - VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipelineLayout layout, - uint32_t set, - uint32_t descriptorWriteCount, - const VkWriteDescriptorSet* pDescriptorWrites); - -VKAPI_ATTR void VKAPI_CALL vkCmdPushDescriptorSetWithTemplateKHR( - VkCommandBuffer commandBuffer, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - VkPipelineLayout layout, - uint32_t set, - const void* pData); -#endif - - -#define VK_KHR_shader_float16_int8 1 -#define VK_KHR_SHADER_FLOAT16_INT8_SPEC_VERSION 1 -#define VK_KHR_SHADER_FLOAT16_INT8_EXTENSION_NAME "VK_KHR_shader_float16_int8" -typedef VkPhysicalDeviceShaderFloat16Int8Features VkPhysicalDeviceShaderFloat16Int8FeaturesKHR; - -typedef VkPhysicalDeviceShaderFloat16Int8Features VkPhysicalDeviceFloat16Int8FeaturesKHR; - - - -#define VK_KHR_16bit_storage 1 -#define VK_KHR_16BIT_STORAGE_SPEC_VERSION 1 -#define VK_KHR_16BIT_STORAGE_EXTENSION_NAME "VK_KHR_16bit_storage" -typedef VkPhysicalDevice16BitStorageFeatures VkPhysicalDevice16BitStorageFeaturesKHR; - - - -#define VK_KHR_incremental_present 1 -#define VK_KHR_INCREMENTAL_PRESENT_SPEC_VERSION 2 -#define VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME "VK_KHR_incremental_present" -typedef struct VkRectLayerKHR { - VkOffset2D offset; - VkExtent2D extent; - uint32_t layer; -} VkRectLayerKHR; - -typedef struct VkPresentRegionKHR { - uint32_t rectangleCount; - const VkRectLayerKHR* pRectangles; -} VkPresentRegionKHR; - -typedef struct VkPresentRegionsKHR { - VkStructureType sType; - const void* pNext; - uint32_t swapchainCount; - const VkPresentRegionKHR* pRegions; -} VkPresentRegionsKHR; - - - -#define VK_KHR_descriptor_update_template 1 -typedef VkDescriptorUpdateTemplate VkDescriptorUpdateTemplateKHR; - -#define VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_SPEC_VERSION 1 -#define VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_EXTENSION_NAME "VK_KHR_descriptor_update_template" -typedef VkDescriptorUpdateTemplateType VkDescriptorUpdateTemplateTypeKHR; - -typedef VkDescriptorUpdateTemplateCreateFlags VkDescriptorUpdateTemplateCreateFlagsKHR; - -typedef VkDescriptorUpdateTemplateEntry VkDescriptorUpdateTemplateEntryKHR; - -typedef VkDescriptorUpdateTemplateCreateInfo VkDescriptorUpdateTemplateCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateDescriptorUpdateTemplateKHR)(VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate); -typedef void (VKAPI_PTR *PFN_vkDestroyDescriptorUpdateTemplateKHR)(VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkUpdateDescriptorSetWithTemplateKHR)(VkDevice device, VkDescriptorSet descriptorSet, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const void* pData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDescriptorUpdateTemplateKHR( - VkDevice device, - const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDescriptorUpdateTemplateKHR( - VkDevice device, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkUpdateDescriptorSetWithTemplateKHR( - VkDevice device, - VkDescriptorSet descriptorSet, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - const void* pData); -#endif - - -#define VK_KHR_imageless_framebuffer 1 -#define VK_KHR_IMAGELESS_FRAMEBUFFER_SPEC_VERSION 1 -#define VK_KHR_IMAGELESS_FRAMEBUFFER_EXTENSION_NAME "VK_KHR_imageless_framebuffer" -typedef VkPhysicalDeviceImagelessFramebufferFeatures VkPhysicalDeviceImagelessFramebufferFeaturesKHR; - -typedef VkFramebufferAttachmentsCreateInfo VkFramebufferAttachmentsCreateInfoKHR; - -typedef VkFramebufferAttachmentImageInfo VkFramebufferAttachmentImageInfoKHR; - -typedef VkRenderPassAttachmentBeginInfo VkRenderPassAttachmentBeginInfoKHR; - - - -#define VK_KHR_create_renderpass2 1 -#define VK_KHR_CREATE_RENDERPASS_2_SPEC_VERSION 1 -#define VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME "VK_KHR_create_renderpass2" -typedef VkRenderPassCreateInfo2 VkRenderPassCreateInfo2KHR; - -typedef VkAttachmentDescription2 VkAttachmentDescription2KHR; - -typedef VkAttachmentReference2 VkAttachmentReference2KHR; - -typedef VkSubpassDescription2 VkSubpassDescription2KHR; - -typedef VkSubpassDependency2 VkSubpassDependency2KHR; - -typedef VkSubpassBeginInfo VkSubpassBeginInfoKHR; - -typedef VkSubpassEndInfo VkSubpassEndInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateRenderPass2KHR)(VkDevice device, const VkRenderPassCreateInfo2* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkRenderPass* pRenderPass); -typedef void (VKAPI_PTR *PFN_vkCmdBeginRenderPass2KHR)(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, const VkSubpassBeginInfo* pSubpassBeginInfo); -typedef void (VKAPI_PTR *PFN_vkCmdNextSubpass2KHR)(VkCommandBuffer commandBuffer, const VkSubpassBeginInfo* pSubpassBeginInfo, const VkSubpassEndInfo* pSubpassEndInfo); -typedef void (VKAPI_PTR *PFN_vkCmdEndRenderPass2KHR)(VkCommandBuffer commandBuffer, const VkSubpassEndInfo* pSubpassEndInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateRenderPass2KHR( - VkDevice device, - const VkRenderPassCreateInfo2* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkRenderPass* pRenderPass); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginRenderPass2KHR( - VkCommandBuffer commandBuffer, - const VkRenderPassBeginInfo* pRenderPassBegin, - const VkSubpassBeginInfo* pSubpassBeginInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdNextSubpass2KHR( - VkCommandBuffer commandBuffer, - const VkSubpassBeginInfo* pSubpassBeginInfo, - const VkSubpassEndInfo* pSubpassEndInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndRenderPass2KHR( - VkCommandBuffer commandBuffer, - const VkSubpassEndInfo* pSubpassEndInfo); -#endif - - -#define VK_KHR_shared_presentable_image 1 -#define VK_KHR_SHARED_PRESENTABLE_IMAGE_SPEC_VERSION 1 -#define VK_KHR_SHARED_PRESENTABLE_IMAGE_EXTENSION_NAME "VK_KHR_shared_presentable_image" -typedef struct VkSharedPresentSurfaceCapabilitiesKHR { - VkStructureType sType; - void* pNext; - VkImageUsageFlags sharedPresentSupportedUsageFlags; -} VkSharedPresentSurfaceCapabilitiesKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetSwapchainStatusKHR)(VkDevice device, VkSwapchainKHR swapchain); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetSwapchainStatusKHR( - VkDevice device, - VkSwapchainKHR swapchain); -#endif - - -#define VK_KHR_external_fence_capabilities 1 -#define VK_KHR_EXTERNAL_FENCE_CAPABILITIES_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME "VK_KHR_external_fence_capabilities" -typedef VkExternalFenceHandleTypeFlags VkExternalFenceHandleTypeFlagsKHR; - -typedef VkExternalFenceHandleTypeFlagBits VkExternalFenceHandleTypeFlagBitsKHR; - -typedef VkExternalFenceFeatureFlags VkExternalFenceFeatureFlagsKHR; - -typedef VkExternalFenceFeatureFlagBits VkExternalFenceFeatureFlagBitsKHR; - -typedef VkPhysicalDeviceExternalFenceInfo VkPhysicalDeviceExternalFenceInfoKHR; - -typedef VkExternalFenceProperties VkExternalFencePropertiesKHR; - -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo, VkExternalFenceProperties* pExternalFenceProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceExternalFencePropertiesKHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo, - VkExternalFenceProperties* pExternalFenceProperties); -#endif - - -#define VK_KHR_external_fence 1 -#define VK_KHR_EXTERNAL_FENCE_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_FENCE_EXTENSION_NAME "VK_KHR_external_fence" -typedef VkFenceImportFlags VkFenceImportFlagsKHR; - -typedef VkFenceImportFlagBits VkFenceImportFlagBitsKHR; - -typedef VkExportFenceCreateInfo VkExportFenceCreateInfoKHR; - - - -#define VK_KHR_external_fence_fd 1 -#define VK_KHR_EXTERNAL_FENCE_FD_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_FENCE_FD_EXTENSION_NAME "VK_KHR_external_fence_fd" -typedef struct VkImportFenceFdInfoKHR { - VkStructureType sType; - const void* pNext; - VkFence fence; - VkFenceImportFlags flags; - VkExternalFenceHandleTypeFlagBits handleType; - int fd; -} VkImportFenceFdInfoKHR; - -typedef struct VkFenceGetFdInfoKHR { - VkStructureType sType; - const void* pNext; - VkFence fence; - VkExternalFenceHandleTypeFlagBits handleType; -} VkFenceGetFdInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkImportFenceFdKHR)(VkDevice device, const VkImportFenceFdInfoKHR* pImportFenceFdInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetFenceFdKHR)(VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkImportFenceFdKHR( - VkDevice device, - const VkImportFenceFdInfoKHR* pImportFenceFdInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetFenceFdKHR( - VkDevice device, - const VkFenceGetFdInfoKHR* pGetFdInfo, - int* pFd); -#endif - - -#define VK_KHR_performance_query 1 -#define VK_KHR_PERFORMANCE_QUERY_SPEC_VERSION 1 -#define VK_KHR_PERFORMANCE_QUERY_EXTENSION_NAME "VK_KHR_performance_query" - -typedef enum VkPerformanceCounterUnitKHR { - VK_PERFORMANCE_COUNTER_UNIT_GENERIC_KHR = 0, - VK_PERFORMANCE_COUNTER_UNIT_PERCENTAGE_KHR = 1, - VK_PERFORMANCE_COUNTER_UNIT_NANOSECONDS_KHR = 2, - VK_PERFORMANCE_COUNTER_UNIT_BYTES_KHR = 3, - VK_PERFORMANCE_COUNTER_UNIT_BYTES_PER_SECOND_KHR = 4, - VK_PERFORMANCE_COUNTER_UNIT_KELVIN_KHR = 5, - VK_PERFORMANCE_COUNTER_UNIT_WATTS_KHR = 6, - VK_PERFORMANCE_COUNTER_UNIT_VOLTS_KHR = 7, - VK_PERFORMANCE_COUNTER_UNIT_AMPS_KHR = 8, - VK_PERFORMANCE_COUNTER_UNIT_HERTZ_KHR = 9, - VK_PERFORMANCE_COUNTER_UNIT_CYCLES_KHR = 10, - VK_PERFORMANCE_COUNTER_UNIT_MAX_ENUM_KHR = 0x7FFFFFFF -} VkPerformanceCounterUnitKHR; - -typedef enum VkPerformanceCounterScopeKHR { - VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR = 0, - VK_PERFORMANCE_COUNTER_SCOPE_RENDER_PASS_KHR = 1, - VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_KHR = 2, - VK_QUERY_SCOPE_COMMAND_BUFFER_KHR = VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR, - VK_QUERY_SCOPE_RENDER_PASS_KHR = VK_PERFORMANCE_COUNTER_SCOPE_RENDER_PASS_KHR, - VK_QUERY_SCOPE_COMMAND_KHR = VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_KHR, - VK_PERFORMANCE_COUNTER_SCOPE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkPerformanceCounterScopeKHR; - -typedef enum VkPerformanceCounterStorageKHR { - VK_PERFORMANCE_COUNTER_STORAGE_INT32_KHR = 0, - VK_PERFORMANCE_COUNTER_STORAGE_INT64_KHR = 1, - VK_PERFORMANCE_COUNTER_STORAGE_UINT32_KHR = 2, - VK_PERFORMANCE_COUNTER_STORAGE_UINT64_KHR = 3, - VK_PERFORMANCE_COUNTER_STORAGE_FLOAT32_KHR = 4, - VK_PERFORMANCE_COUNTER_STORAGE_FLOAT64_KHR = 5, - VK_PERFORMANCE_COUNTER_STORAGE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkPerformanceCounterStorageKHR; - -typedef enum VkPerformanceCounterDescriptionFlagBitsKHR { - VK_PERFORMANCE_COUNTER_DESCRIPTION_PERFORMANCE_IMPACTING_BIT_KHR = 0x00000001, - VK_PERFORMANCE_COUNTER_DESCRIPTION_CONCURRENTLY_IMPACTED_BIT_KHR = 0x00000002, - VK_PERFORMANCE_COUNTER_DESCRIPTION_PERFORMANCE_IMPACTING_KHR = VK_PERFORMANCE_COUNTER_DESCRIPTION_PERFORMANCE_IMPACTING_BIT_KHR, - VK_PERFORMANCE_COUNTER_DESCRIPTION_CONCURRENTLY_IMPACTED_KHR = VK_PERFORMANCE_COUNTER_DESCRIPTION_CONCURRENTLY_IMPACTED_BIT_KHR, - VK_PERFORMANCE_COUNTER_DESCRIPTION_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkPerformanceCounterDescriptionFlagBitsKHR; -typedef VkFlags VkPerformanceCounterDescriptionFlagsKHR; - -typedef enum VkAcquireProfilingLockFlagBitsKHR { - VK_ACQUIRE_PROFILING_LOCK_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkAcquireProfilingLockFlagBitsKHR; -typedef VkFlags VkAcquireProfilingLockFlagsKHR; -typedef struct VkPhysicalDevicePerformanceQueryFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 performanceCounterQueryPools; - VkBool32 performanceCounterMultipleQueryPools; -} VkPhysicalDevicePerformanceQueryFeaturesKHR; - -typedef struct VkPhysicalDevicePerformanceQueryPropertiesKHR { - VkStructureType sType; - void* pNext; - VkBool32 allowCommandBufferQueryCopies; -} VkPhysicalDevicePerformanceQueryPropertiesKHR; - -typedef struct VkPerformanceCounterKHR { - VkStructureType sType; - void* pNext; - VkPerformanceCounterUnitKHR unit; - VkPerformanceCounterScopeKHR scope; - VkPerformanceCounterStorageKHR storage; - uint8_t uuid[VK_UUID_SIZE]; -} VkPerformanceCounterKHR; - -typedef struct VkPerformanceCounterDescriptionKHR { - VkStructureType sType; - void* pNext; - VkPerformanceCounterDescriptionFlagsKHR flags; - char name[VK_MAX_DESCRIPTION_SIZE]; - char category[VK_MAX_DESCRIPTION_SIZE]; - char description[VK_MAX_DESCRIPTION_SIZE]; -} VkPerformanceCounterDescriptionKHR; - -typedef struct VkQueryPoolPerformanceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t queueFamilyIndex; - uint32_t counterIndexCount; - const uint32_t* pCounterIndices; -} VkQueryPoolPerformanceCreateInfoKHR; - -typedef union VkPerformanceCounterResultKHR { - int32_t int32; - int64_t int64; - uint32_t uint32; - uint64_t uint64; - float float32; - double float64; -} VkPerformanceCounterResultKHR; - -typedef struct VkAcquireProfilingLockInfoKHR { - VkStructureType sType; - const void* pNext; - VkAcquireProfilingLockFlagsKHR flags; - uint64_t timeout; -} VkAcquireProfilingLockInfoKHR; - -typedef struct VkPerformanceQuerySubmitInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t counterPassIndex; -} VkPerformanceQuerySubmitInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, uint32_t* pCounterCount, VkPerformanceCounterKHR* pCounters, VkPerformanceCounterDescriptionKHR* pCounterDescriptions); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR)(VkPhysicalDevice physicalDevice, const VkQueryPoolPerformanceCreateInfoKHR* pPerformanceQueryCreateInfo, uint32_t* pNumPasses); -typedef VkResult (VKAPI_PTR *PFN_vkAcquireProfilingLockKHR)(VkDevice device, const VkAcquireProfilingLockInfoKHR* pInfo); -typedef void (VKAPI_PTR *PFN_vkReleaseProfilingLockKHR)(VkDevice device); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - uint32_t* pCounterCount, - VkPerformanceCounterKHR* pCounters, - VkPerformanceCounterDescriptionKHR* pCounterDescriptions); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - VkPhysicalDevice physicalDevice, - const VkQueryPoolPerformanceCreateInfoKHR* pPerformanceQueryCreateInfo, - uint32_t* pNumPasses); - -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireProfilingLockKHR( - VkDevice device, - const VkAcquireProfilingLockInfoKHR* pInfo); - -VKAPI_ATTR void VKAPI_CALL vkReleaseProfilingLockKHR( - VkDevice device); -#endif - - -#define VK_KHR_maintenance2 1 -#define VK_KHR_MAINTENANCE_2_SPEC_VERSION 1 -#define VK_KHR_MAINTENANCE_2_EXTENSION_NAME "VK_KHR_maintenance2" -#define VK_KHR_MAINTENANCE2_SPEC_VERSION VK_KHR_MAINTENANCE_2_SPEC_VERSION -#define VK_KHR_MAINTENANCE2_EXTENSION_NAME VK_KHR_MAINTENANCE_2_EXTENSION_NAME -typedef VkPointClippingBehavior VkPointClippingBehaviorKHR; - -typedef VkTessellationDomainOrigin VkTessellationDomainOriginKHR; - -typedef VkPhysicalDevicePointClippingProperties VkPhysicalDevicePointClippingPropertiesKHR; - -typedef VkRenderPassInputAttachmentAspectCreateInfo VkRenderPassInputAttachmentAspectCreateInfoKHR; - -typedef VkInputAttachmentAspectReference VkInputAttachmentAspectReferenceKHR; - -typedef VkImageViewUsageCreateInfo VkImageViewUsageCreateInfoKHR; - -typedef VkPipelineTessellationDomainOriginStateCreateInfo VkPipelineTessellationDomainOriginStateCreateInfoKHR; - - - -#define VK_KHR_get_surface_capabilities2 1 -#define VK_KHR_GET_SURFACE_CAPABILITIES_2_SPEC_VERSION 1 -#define VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME "VK_KHR_get_surface_capabilities2" -typedef struct VkPhysicalDeviceSurfaceInfo2KHR { - VkStructureType sType; - const void* pNext; - VkSurfaceKHR surface; -} VkPhysicalDeviceSurfaceInfo2KHR; - -typedef struct VkSurfaceCapabilities2KHR { - VkStructureType sType; - void* pNext; - VkSurfaceCapabilitiesKHR surfaceCapabilities; -} VkSurfaceCapabilities2KHR; - -typedef struct VkSurfaceFormat2KHR { - VkStructureType sType; - void* pNext; - VkSurfaceFormatKHR surfaceFormat; -} VkSurfaceFormat2KHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, VkSurfaceCapabilities2KHR* pSurfaceCapabilities); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfaceFormats2KHR)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, uint32_t* pSurfaceFormatCount, VkSurfaceFormat2KHR* pSurfaceFormats); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceCapabilities2KHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, - VkSurfaceCapabilities2KHR* pSurfaceCapabilities); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceFormats2KHR( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, - uint32_t* pSurfaceFormatCount, - VkSurfaceFormat2KHR* pSurfaceFormats); -#endif - - -#define VK_KHR_variable_pointers 1 -#define VK_KHR_VARIABLE_POINTERS_SPEC_VERSION 1 -#define VK_KHR_VARIABLE_POINTERS_EXTENSION_NAME "VK_KHR_variable_pointers" -typedef VkPhysicalDeviceVariablePointersFeatures VkPhysicalDeviceVariablePointerFeaturesKHR; - -typedef VkPhysicalDeviceVariablePointersFeatures VkPhysicalDeviceVariablePointersFeaturesKHR; - - - -#define VK_KHR_get_display_properties2 1 -#define VK_KHR_GET_DISPLAY_PROPERTIES_2_SPEC_VERSION 1 -#define VK_KHR_GET_DISPLAY_PROPERTIES_2_EXTENSION_NAME "VK_KHR_get_display_properties2" -typedef struct VkDisplayProperties2KHR { - VkStructureType sType; - void* pNext; - VkDisplayPropertiesKHR displayProperties; -} VkDisplayProperties2KHR; - -typedef struct VkDisplayPlaneProperties2KHR { - VkStructureType sType; - void* pNext; - VkDisplayPlanePropertiesKHR displayPlaneProperties; -} VkDisplayPlaneProperties2KHR; - -typedef struct VkDisplayModeProperties2KHR { - VkStructureType sType; - void* pNext; - VkDisplayModePropertiesKHR displayModeProperties; -} VkDisplayModeProperties2KHR; - -typedef struct VkDisplayPlaneInfo2KHR { - VkStructureType sType; - const void* pNext; - VkDisplayModeKHR mode; - uint32_t planeIndex; -} VkDisplayPlaneInfo2KHR; - -typedef struct VkDisplayPlaneCapabilities2KHR { - VkStructureType sType; - void* pNext; - VkDisplayPlaneCapabilitiesKHR capabilities; -} VkDisplayPlaneCapabilities2KHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceDisplayProperties2KHR)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayProperties2KHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlaneProperties2KHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetDisplayModeProperties2KHR)(VkPhysicalDevice physicalDevice, VkDisplayKHR display, uint32_t* pPropertyCount, VkDisplayModeProperties2KHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetDisplayPlaneCapabilities2KHR)(VkPhysicalDevice physicalDevice, const VkDisplayPlaneInfo2KHR* pDisplayPlaneInfo, VkDisplayPlaneCapabilities2KHR* pCapabilities); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceDisplayProperties2KHR( - VkPhysicalDevice physicalDevice, - uint32_t* pPropertyCount, - VkDisplayProperties2KHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - VkPhysicalDevice physicalDevice, - uint32_t* pPropertyCount, - VkDisplayPlaneProperties2KHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDisplayModeProperties2KHR( - VkPhysicalDevice physicalDevice, - VkDisplayKHR display, - uint32_t* pPropertyCount, - VkDisplayModeProperties2KHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDisplayPlaneCapabilities2KHR( - VkPhysicalDevice physicalDevice, - const VkDisplayPlaneInfo2KHR* pDisplayPlaneInfo, - VkDisplayPlaneCapabilities2KHR* pCapabilities); -#endif - - -#define VK_KHR_dedicated_allocation 1 -#define VK_KHR_DEDICATED_ALLOCATION_SPEC_VERSION 3 -#define VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME "VK_KHR_dedicated_allocation" -typedef VkMemoryDedicatedRequirements VkMemoryDedicatedRequirementsKHR; - -typedef VkMemoryDedicatedAllocateInfo VkMemoryDedicatedAllocateInfoKHR; - - - -#define VK_KHR_storage_buffer_storage_class 1 -#define VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_SPEC_VERSION 1 -#define VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME "VK_KHR_storage_buffer_storage_class" - - -#define VK_KHR_relaxed_block_layout 1 -#define VK_KHR_RELAXED_BLOCK_LAYOUT_SPEC_VERSION 1 -#define VK_KHR_RELAXED_BLOCK_LAYOUT_EXTENSION_NAME "VK_KHR_relaxed_block_layout" - - -#define VK_KHR_get_memory_requirements2 1 -#define VK_KHR_GET_MEMORY_REQUIREMENTS_2_SPEC_VERSION 1 -#define VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME "VK_KHR_get_memory_requirements2" -typedef VkBufferMemoryRequirementsInfo2 VkBufferMemoryRequirementsInfo2KHR; - -typedef VkImageMemoryRequirementsInfo2 VkImageMemoryRequirementsInfo2KHR; - -typedef VkImageSparseMemoryRequirementsInfo2 VkImageSparseMemoryRequirementsInfo2KHR; - -typedef VkMemoryRequirements2 VkMemoryRequirements2KHR; - -typedef VkSparseImageMemoryRequirements2 VkSparseImageMemoryRequirements2KHR; - -typedef void (VKAPI_PTR *PFN_vkGetImageMemoryRequirements2KHR)(VkDevice device, const VkImageMemoryRequirementsInfo2* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetBufferMemoryRequirements2KHR)(VkDevice device, const VkBufferMemoryRequirementsInfo2* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetImageSparseMemoryRequirements2KHR)(VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetImageMemoryRequirements2KHR( - VkDevice device, - const VkImageMemoryRequirementsInfo2* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetBufferMemoryRequirements2KHR( - VkDevice device, - const VkBufferMemoryRequirementsInfo2* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetImageSparseMemoryRequirements2KHR( - VkDevice device, - const VkImageSparseMemoryRequirementsInfo2* pInfo, - uint32_t* pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); -#endif - - -#define VK_KHR_image_format_list 1 -#define VK_KHR_IMAGE_FORMAT_LIST_SPEC_VERSION 1 -#define VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME "VK_KHR_image_format_list" -typedef VkImageFormatListCreateInfo VkImageFormatListCreateInfoKHR; - - - -#define VK_KHR_sampler_ycbcr_conversion 1 -typedef VkSamplerYcbcrConversion VkSamplerYcbcrConversionKHR; - -#define VK_KHR_SAMPLER_YCBCR_CONVERSION_SPEC_VERSION 14 -#define VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME "VK_KHR_sampler_ycbcr_conversion" -typedef VkSamplerYcbcrModelConversion VkSamplerYcbcrModelConversionKHR; - -typedef VkSamplerYcbcrRange VkSamplerYcbcrRangeKHR; - -typedef VkChromaLocation VkChromaLocationKHR; - -typedef VkSamplerYcbcrConversionCreateInfo VkSamplerYcbcrConversionCreateInfoKHR; - -typedef VkSamplerYcbcrConversionInfo VkSamplerYcbcrConversionInfoKHR; - -typedef VkBindImagePlaneMemoryInfo VkBindImagePlaneMemoryInfoKHR; - -typedef VkImagePlaneMemoryRequirementsInfo VkImagePlaneMemoryRequirementsInfoKHR; - -typedef VkPhysicalDeviceSamplerYcbcrConversionFeatures VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR; - -typedef VkSamplerYcbcrConversionImageFormatProperties VkSamplerYcbcrConversionImageFormatPropertiesKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateSamplerYcbcrConversionKHR)(VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSamplerYcbcrConversion* pYcbcrConversion); -typedef void (VKAPI_PTR *PFN_vkDestroySamplerYcbcrConversionKHR)(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateSamplerYcbcrConversionKHR( - VkDevice device, - const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSamplerYcbcrConversion* pYcbcrConversion); - -VKAPI_ATTR void VKAPI_CALL vkDestroySamplerYcbcrConversionKHR( - VkDevice device, - VkSamplerYcbcrConversion ycbcrConversion, - const VkAllocationCallbacks* pAllocator); -#endif - - -#define VK_KHR_bind_memory2 1 -#define VK_KHR_BIND_MEMORY_2_SPEC_VERSION 1 -#define VK_KHR_BIND_MEMORY_2_EXTENSION_NAME "VK_KHR_bind_memory2" -typedef VkBindBufferMemoryInfo VkBindBufferMemoryInfoKHR; - -typedef VkBindImageMemoryInfo VkBindImageMemoryInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkBindBufferMemory2KHR)(VkDevice device, uint32_t bindInfoCount, const VkBindBufferMemoryInfo* pBindInfos); -typedef VkResult (VKAPI_PTR *PFN_vkBindImageMemory2KHR)(VkDevice device, uint32_t bindInfoCount, const VkBindImageMemoryInfo* pBindInfos); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkBindBufferMemory2KHR( - VkDevice device, - uint32_t bindInfoCount, - const VkBindBufferMemoryInfo* pBindInfos); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindImageMemory2KHR( - VkDevice device, - uint32_t bindInfoCount, - const VkBindImageMemoryInfo* pBindInfos); -#endif - - -#define VK_KHR_maintenance3 1 -#define VK_KHR_MAINTENANCE_3_SPEC_VERSION 1 -#define VK_KHR_MAINTENANCE_3_EXTENSION_NAME "VK_KHR_maintenance3" -#define VK_KHR_MAINTENANCE3_SPEC_VERSION VK_KHR_MAINTENANCE_3_SPEC_VERSION -#define VK_KHR_MAINTENANCE3_EXTENSION_NAME VK_KHR_MAINTENANCE_3_EXTENSION_NAME -typedef VkPhysicalDeviceMaintenance3Properties VkPhysicalDeviceMaintenance3PropertiesKHR; - -typedef VkDescriptorSetLayoutSupport VkDescriptorSetLayoutSupportKHR; - -typedef void (VKAPI_PTR *PFN_vkGetDescriptorSetLayoutSupportKHR)(VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, VkDescriptorSetLayoutSupport* pSupport); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetDescriptorSetLayoutSupportKHR( - VkDevice device, - const VkDescriptorSetLayoutCreateInfo* pCreateInfo, - VkDescriptorSetLayoutSupport* pSupport); -#endif - - -#define VK_KHR_draw_indirect_count 1 -#define VK_KHR_DRAW_INDIRECT_COUNT_SPEC_VERSION 1 -#define VK_KHR_DRAW_INDIRECT_COUNT_EXTENSION_NAME "VK_KHR_draw_indirect_count" -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndirectCountKHR)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndexedIndirectCountKHR)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndirectCountKHR( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndexedIndirectCountKHR( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); -#endif - - -#define VK_KHR_shader_subgroup_extended_types 1 -#define VK_KHR_SHADER_SUBGROUP_EXTENDED_TYPES_SPEC_VERSION 1 -#define VK_KHR_SHADER_SUBGROUP_EXTENDED_TYPES_EXTENSION_NAME "VK_KHR_shader_subgroup_extended_types" -typedef VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures VkPhysicalDeviceShaderSubgroupExtendedTypesFeaturesKHR; - - - -#define VK_KHR_8bit_storage 1 -#define VK_KHR_8BIT_STORAGE_SPEC_VERSION 1 -#define VK_KHR_8BIT_STORAGE_EXTENSION_NAME "VK_KHR_8bit_storage" -typedef VkPhysicalDevice8BitStorageFeatures VkPhysicalDevice8BitStorageFeaturesKHR; - - - -#define VK_KHR_shader_atomic_int64 1 -#define VK_KHR_SHADER_ATOMIC_INT64_SPEC_VERSION 1 -#define VK_KHR_SHADER_ATOMIC_INT64_EXTENSION_NAME "VK_KHR_shader_atomic_int64" -typedef VkPhysicalDeviceShaderAtomicInt64Features VkPhysicalDeviceShaderAtomicInt64FeaturesKHR; - - - -#define VK_KHR_shader_clock 1 -#define VK_KHR_SHADER_CLOCK_SPEC_VERSION 1 -#define VK_KHR_SHADER_CLOCK_EXTENSION_NAME "VK_KHR_shader_clock" -typedef struct VkPhysicalDeviceShaderClockFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 shaderSubgroupClock; - VkBool32 shaderDeviceClock; -} VkPhysicalDeviceShaderClockFeaturesKHR; - - - -#define VK_KHR_global_priority 1 -#define VK_MAX_GLOBAL_PRIORITY_SIZE_KHR 16U -#define VK_KHR_GLOBAL_PRIORITY_SPEC_VERSION 1 -#define VK_KHR_GLOBAL_PRIORITY_EXTENSION_NAME "VK_KHR_global_priority" - -typedef enum VkQueueGlobalPriorityKHR { - VK_QUEUE_GLOBAL_PRIORITY_LOW_KHR = 128, - VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_KHR = 256, - VK_QUEUE_GLOBAL_PRIORITY_HIGH_KHR = 512, - VK_QUEUE_GLOBAL_PRIORITY_REALTIME_KHR = 1024, - VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT = VK_QUEUE_GLOBAL_PRIORITY_LOW_KHR, - VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT = VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_KHR, - VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT = VK_QUEUE_GLOBAL_PRIORITY_HIGH_KHR, - VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT = VK_QUEUE_GLOBAL_PRIORITY_REALTIME_KHR, - VK_QUEUE_GLOBAL_PRIORITY_MAX_ENUM_KHR = 0x7FFFFFFF -} VkQueueGlobalPriorityKHR; -typedef struct VkDeviceQueueGlobalPriorityCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkQueueGlobalPriorityKHR globalPriority; -} VkDeviceQueueGlobalPriorityCreateInfoKHR; - -typedef struct VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 globalPriorityQuery; -} VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR; - -typedef struct VkQueueFamilyGlobalPriorityPropertiesKHR { - VkStructureType sType; - void* pNext; - uint32_t priorityCount; - VkQueueGlobalPriorityKHR priorities[VK_MAX_GLOBAL_PRIORITY_SIZE_KHR]; -} VkQueueFamilyGlobalPriorityPropertiesKHR; - - - -#define VK_KHR_driver_properties 1 -#define VK_KHR_DRIVER_PROPERTIES_SPEC_VERSION 1 -#define VK_KHR_DRIVER_PROPERTIES_EXTENSION_NAME "VK_KHR_driver_properties" -#define VK_MAX_DRIVER_NAME_SIZE_KHR VK_MAX_DRIVER_NAME_SIZE -#define VK_MAX_DRIVER_INFO_SIZE_KHR VK_MAX_DRIVER_INFO_SIZE -typedef VkDriverId VkDriverIdKHR; - -typedef VkConformanceVersion VkConformanceVersionKHR; - -typedef VkPhysicalDeviceDriverProperties VkPhysicalDeviceDriverPropertiesKHR; - - - -#define VK_KHR_shader_float_controls 1 -#define VK_KHR_SHADER_FLOAT_CONTROLS_SPEC_VERSION 4 -#define VK_KHR_SHADER_FLOAT_CONTROLS_EXTENSION_NAME "VK_KHR_shader_float_controls" -typedef VkShaderFloatControlsIndependence VkShaderFloatControlsIndependenceKHR; - -typedef VkPhysicalDeviceFloatControlsProperties VkPhysicalDeviceFloatControlsPropertiesKHR; - - - -#define VK_KHR_depth_stencil_resolve 1 -#define VK_KHR_DEPTH_STENCIL_RESOLVE_SPEC_VERSION 1 -#define VK_KHR_DEPTH_STENCIL_RESOLVE_EXTENSION_NAME "VK_KHR_depth_stencil_resolve" -typedef VkResolveModeFlagBits VkResolveModeFlagBitsKHR; - -typedef VkResolveModeFlags VkResolveModeFlagsKHR; - -typedef VkSubpassDescriptionDepthStencilResolve VkSubpassDescriptionDepthStencilResolveKHR; - -typedef VkPhysicalDeviceDepthStencilResolveProperties VkPhysicalDeviceDepthStencilResolvePropertiesKHR; - - - -#define VK_KHR_swapchain_mutable_format 1 -#define VK_KHR_SWAPCHAIN_MUTABLE_FORMAT_SPEC_VERSION 1 -#define VK_KHR_SWAPCHAIN_MUTABLE_FORMAT_EXTENSION_NAME "VK_KHR_swapchain_mutable_format" - - -#define VK_KHR_timeline_semaphore 1 -#define VK_KHR_TIMELINE_SEMAPHORE_SPEC_VERSION 2 -#define VK_KHR_TIMELINE_SEMAPHORE_EXTENSION_NAME "VK_KHR_timeline_semaphore" -typedef VkSemaphoreType VkSemaphoreTypeKHR; - -typedef VkSemaphoreWaitFlagBits VkSemaphoreWaitFlagBitsKHR; - -typedef VkSemaphoreWaitFlags VkSemaphoreWaitFlagsKHR; - -typedef VkPhysicalDeviceTimelineSemaphoreFeatures VkPhysicalDeviceTimelineSemaphoreFeaturesKHR; - -typedef VkPhysicalDeviceTimelineSemaphoreProperties VkPhysicalDeviceTimelineSemaphorePropertiesKHR; - -typedef VkSemaphoreTypeCreateInfo VkSemaphoreTypeCreateInfoKHR; - -typedef VkTimelineSemaphoreSubmitInfo VkTimelineSemaphoreSubmitInfoKHR; - -typedef VkSemaphoreWaitInfo VkSemaphoreWaitInfoKHR; - -typedef VkSemaphoreSignalInfo VkSemaphoreSignalInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetSemaphoreCounterValueKHR)(VkDevice device, VkSemaphore semaphore, uint64_t* pValue); -typedef VkResult (VKAPI_PTR *PFN_vkWaitSemaphoresKHR)(VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, uint64_t timeout); -typedef VkResult (VKAPI_PTR *PFN_vkSignalSemaphoreKHR)(VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetSemaphoreCounterValueKHR( - VkDevice device, - VkSemaphore semaphore, - uint64_t* pValue); - -VKAPI_ATTR VkResult VKAPI_CALL vkWaitSemaphoresKHR( - VkDevice device, - const VkSemaphoreWaitInfo* pWaitInfo, - uint64_t timeout); - -VKAPI_ATTR VkResult VKAPI_CALL vkSignalSemaphoreKHR( - VkDevice device, - const VkSemaphoreSignalInfo* pSignalInfo); -#endif - - -#define VK_KHR_vulkan_memory_model 1 -#define VK_KHR_VULKAN_MEMORY_MODEL_SPEC_VERSION 3 -#define VK_KHR_VULKAN_MEMORY_MODEL_EXTENSION_NAME "VK_KHR_vulkan_memory_model" -typedef VkPhysicalDeviceVulkanMemoryModelFeatures VkPhysicalDeviceVulkanMemoryModelFeaturesKHR; - - - -#define VK_KHR_shader_terminate_invocation 1 -#define VK_KHR_SHADER_TERMINATE_INVOCATION_SPEC_VERSION 1 -#define VK_KHR_SHADER_TERMINATE_INVOCATION_EXTENSION_NAME "VK_KHR_shader_terminate_invocation" -typedef VkPhysicalDeviceShaderTerminateInvocationFeatures VkPhysicalDeviceShaderTerminateInvocationFeaturesKHR; - - - -#define VK_KHR_fragment_shading_rate 1 -#define VK_KHR_FRAGMENT_SHADING_RATE_SPEC_VERSION 2 -#define VK_KHR_FRAGMENT_SHADING_RATE_EXTENSION_NAME "VK_KHR_fragment_shading_rate" - -typedef enum VkFragmentShadingRateCombinerOpKHR { - VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR = 0, - VK_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_KHR = 1, - VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_KHR = 2, - VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_KHR = 3, - VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_KHR = 4, - VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_ENUM_KHR = 0x7FFFFFFF -} VkFragmentShadingRateCombinerOpKHR; -typedef struct VkFragmentShadingRateAttachmentInfoKHR { - VkStructureType sType; - const void* pNext; - const VkAttachmentReference2* pFragmentShadingRateAttachment; - VkExtent2D shadingRateAttachmentTexelSize; -} VkFragmentShadingRateAttachmentInfoKHR; - -typedef struct VkPipelineFragmentShadingRateStateCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkExtent2D fragmentSize; - VkFragmentShadingRateCombinerOpKHR combinerOps[2]; -} VkPipelineFragmentShadingRateStateCreateInfoKHR; - -typedef struct VkPhysicalDeviceFragmentShadingRateFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 pipelineFragmentShadingRate; - VkBool32 primitiveFragmentShadingRate; - VkBool32 attachmentFragmentShadingRate; -} VkPhysicalDeviceFragmentShadingRateFeaturesKHR; - -typedef struct VkPhysicalDeviceFragmentShadingRatePropertiesKHR { - VkStructureType sType; - void* pNext; - VkExtent2D minFragmentShadingRateAttachmentTexelSize; - VkExtent2D maxFragmentShadingRateAttachmentTexelSize; - uint32_t maxFragmentShadingRateAttachmentTexelSizeAspectRatio; - VkBool32 primitiveFragmentShadingRateWithMultipleViewports; - VkBool32 layeredShadingRateAttachments; - VkBool32 fragmentShadingRateNonTrivialCombinerOps; - VkExtent2D maxFragmentSize; - uint32_t maxFragmentSizeAspectRatio; - uint32_t maxFragmentShadingRateCoverageSamples; - VkSampleCountFlagBits maxFragmentShadingRateRasterizationSamples; - VkBool32 fragmentShadingRateWithShaderDepthStencilWrites; - VkBool32 fragmentShadingRateWithSampleMask; - VkBool32 fragmentShadingRateWithShaderSampleMask; - VkBool32 fragmentShadingRateWithConservativeRasterization; - VkBool32 fragmentShadingRateWithFragmentShaderInterlock; - VkBool32 fragmentShadingRateWithCustomSampleLocations; - VkBool32 fragmentShadingRateStrictMultiplyCombiner; -} VkPhysicalDeviceFragmentShadingRatePropertiesKHR; - -typedef struct VkPhysicalDeviceFragmentShadingRateKHR { - VkStructureType sType; - void* pNext; - VkSampleCountFlags sampleCounts; - VkExtent2D fragmentSize; -} VkPhysicalDeviceFragmentShadingRateKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR)(VkPhysicalDevice physicalDevice, uint32_t* pFragmentShadingRateCount, VkPhysicalDeviceFragmentShadingRateKHR* pFragmentShadingRates); -typedef void (VKAPI_PTR *PFN_vkCmdSetFragmentShadingRateKHR)(VkCommandBuffer commandBuffer, const VkExtent2D* pFragmentSize, const VkFragmentShadingRateCombinerOpKHR combinerOps[2]); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceFragmentShadingRatesKHR( - VkPhysicalDevice physicalDevice, - uint32_t* pFragmentShadingRateCount, - VkPhysicalDeviceFragmentShadingRateKHR* pFragmentShadingRates); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetFragmentShadingRateKHR( - VkCommandBuffer commandBuffer, - const VkExtent2D* pFragmentSize, - const VkFragmentShadingRateCombinerOpKHR combinerOps[2]); -#endif - - -#define VK_KHR_spirv_1_4 1 -#define VK_KHR_SPIRV_1_4_SPEC_VERSION 1 -#define VK_KHR_SPIRV_1_4_EXTENSION_NAME "VK_KHR_spirv_1_4" - - -#define VK_KHR_surface_protected_capabilities 1 -#define VK_KHR_SURFACE_PROTECTED_CAPABILITIES_SPEC_VERSION 1 -#define VK_KHR_SURFACE_PROTECTED_CAPABILITIES_EXTENSION_NAME "VK_KHR_surface_protected_capabilities" -typedef struct VkSurfaceProtectedCapabilitiesKHR { - VkStructureType sType; - const void* pNext; - VkBool32 supportsProtected; -} VkSurfaceProtectedCapabilitiesKHR; - - - -#define VK_KHR_separate_depth_stencil_layouts 1 -#define VK_KHR_SEPARATE_DEPTH_STENCIL_LAYOUTS_SPEC_VERSION 1 -#define VK_KHR_SEPARATE_DEPTH_STENCIL_LAYOUTS_EXTENSION_NAME "VK_KHR_separate_depth_stencil_layouts" -typedef VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures VkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR; - -typedef VkAttachmentReferenceStencilLayout VkAttachmentReferenceStencilLayoutKHR; - -typedef VkAttachmentDescriptionStencilLayout VkAttachmentDescriptionStencilLayoutKHR; - - - -#define VK_KHR_present_wait 1 -#define VK_KHR_PRESENT_WAIT_SPEC_VERSION 1 -#define VK_KHR_PRESENT_WAIT_EXTENSION_NAME "VK_KHR_present_wait" -typedef struct VkPhysicalDevicePresentWaitFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 presentWait; -} VkPhysicalDevicePresentWaitFeaturesKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkWaitForPresentKHR)(VkDevice device, VkSwapchainKHR swapchain, uint64_t presentId, uint64_t timeout); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkWaitForPresentKHR( - VkDevice device, - VkSwapchainKHR swapchain, - uint64_t presentId, - uint64_t timeout); -#endif - - -#define VK_KHR_uniform_buffer_standard_layout 1 -#define VK_KHR_UNIFORM_BUFFER_STANDARD_LAYOUT_SPEC_VERSION 1 -#define VK_KHR_UNIFORM_BUFFER_STANDARD_LAYOUT_EXTENSION_NAME "VK_KHR_uniform_buffer_standard_layout" -typedef VkPhysicalDeviceUniformBufferStandardLayoutFeatures VkPhysicalDeviceUniformBufferStandardLayoutFeaturesKHR; - - - -#define VK_KHR_buffer_device_address 1 -#define VK_KHR_BUFFER_DEVICE_ADDRESS_SPEC_VERSION 1 -#define VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME "VK_KHR_buffer_device_address" -typedef VkPhysicalDeviceBufferDeviceAddressFeatures VkPhysicalDeviceBufferDeviceAddressFeaturesKHR; - -typedef VkBufferDeviceAddressInfo VkBufferDeviceAddressInfoKHR; - -typedef VkBufferOpaqueCaptureAddressCreateInfo VkBufferOpaqueCaptureAddressCreateInfoKHR; - -typedef VkMemoryOpaqueCaptureAddressAllocateInfo VkMemoryOpaqueCaptureAddressAllocateInfoKHR; - -typedef VkDeviceMemoryOpaqueCaptureAddressInfo VkDeviceMemoryOpaqueCaptureAddressInfoKHR; - -typedef VkDeviceAddress (VKAPI_PTR *PFN_vkGetBufferDeviceAddressKHR)(VkDevice device, const VkBufferDeviceAddressInfo* pInfo); -typedef uint64_t (VKAPI_PTR *PFN_vkGetBufferOpaqueCaptureAddressKHR)(VkDevice device, const VkBufferDeviceAddressInfo* pInfo); -typedef uint64_t (VKAPI_PTR *PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR)(VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkDeviceAddress VKAPI_CALL vkGetBufferDeviceAddressKHR( - VkDevice device, - const VkBufferDeviceAddressInfo* pInfo); - -VKAPI_ATTR uint64_t VKAPI_CALL vkGetBufferOpaqueCaptureAddressKHR( - VkDevice device, - const VkBufferDeviceAddressInfo* pInfo); - -VKAPI_ATTR uint64_t VKAPI_CALL vkGetDeviceMemoryOpaqueCaptureAddressKHR( - VkDevice device, - const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo); -#endif - - -#define VK_KHR_deferred_host_operations 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDeferredOperationKHR) -#define VK_KHR_DEFERRED_HOST_OPERATIONS_SPEC_VERSION 4 -#define VK_KHR_DEFERRED_HOST_OPERATIONS_EXTENSION_NAME "VK_KHR_deferred_host_operations" -typedef VkResult (VKAPI_PTR *PFN_vkCreateDeferredOperationKHR)(VkDevice device, const VkAllocationCallbacks* pAllocator, VkDeferredOperationKHR* pDeferredOperation); -typedef void (VKAPI_PTR *PFN_vkDestroyDeferredOperationKHR)(VkDevice device, VkDeferredOperationKHR operation, const VkAllocationCallbacks* pAllocator); -typedef uint32_t (VKAPI_PTR *PFN_vkGetDeferredOperationMaxConcurrencyKHR)(VkDevice device, VkDeferredOperationKHR operation); -typedef VkResult (VKAPI_PTR *PFN_vkGetDeferredOperationResultKHR)(VkDevice device, VkDeferredOperationKHR operation); -typedef VkResult (VKAPI_PTR *PFN_vkDeferredOperationJoinKHR)(VkDevice device, VkDeferredOperationKHR operation); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDeferredOperationKHR( - VkDevice device, - const VkAllocationCallbacks* pAllocator, - VkDeferredOperationKHR* pDeferredOperation); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDeferredOperationKHR( - VkDevice device, - VkDeferredOperationKHR operation, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR uint32_t VKAPI_CALL vkGetDeferredOperationMaxConcurrencyKHR( - VkDevice device, - VkDeferredOperationKHR operation); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDeferredOperationResultKHR( - VkDevice device, - VkDeferredOperationKHR operation); - -VKAPI_ATTR VkResult VKAPI_CALL vkDeferredOperationJoinKHR( - VkDevice device, - VkDeferredOperationKHR operation); -#endif - - -#define VK_KHR_pipeline_executable_properties 1 -#define VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_SPEC_VERSION 1 -#define VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_EXTENSION_NAME "VK_KHR_pipeline_executable_properties" - -typedef enum VkPipelineExecutableStatisticFormatKHR { - VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_BOOL32_KHR = 0, - VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_INT64_KHR = 1, - VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR = 2, - VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_FLOAT64_KHR = 3, - VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_MAX_ENUM_KHR = 0x7FFFFFFF -} VkPipelineExecutableStatisticFormatKHR; -typedef struct VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 pipelineExecutableInfo; -} VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR; - -typedef struct VkPipelineInfoKHR { - VkStructureType sType; - const void* pNext; - VkPipeline pipeline; -} VkPipelineInfoKHR; - -typedef struct VkPipelineExecutablePropertiesKHR { - VkStructureType sType; - void* pNext; - VkShaderStageFlags stages; - char name[VK_MAX_DESCRIPTION_SIZE]; - char description[VK_MAX_DESCRIPTION_SIZE]; - uint32_t subgroupSize; -} VkPipelineExecutablePropertiesKHR; - -typedef struct VkPipelineExecutableInfoKHR { - VkStructureType sType; - const void* pNext; - VkPipeline pipeline; - uint32_t executableIndex; -} VkPipelineExecutableInfoKHR; - -typedef union VkPipelineExecutableStatisticValueKHR { - VkBool32 b32; - int64_t i64; - uint64_t u64; - double f64; -} VkPipelineExecutableStatisticValueKHR; - -typedef struct VkPipelineExecutableStatisticKHR { - VkStructureType sType; - void* pNext; - char name[VK_MAX_DESCRIPTION_SIZE]; - char description[VK_MAX_DESCRIPTION_SIZE]; - VkPipelineExecutableStatisticFormatKHR format; - VkPipelineExecutableStatisticValueKHR value; -} VkPipelineExecutableStatisticKHR; - -typedef struct VkPipelineExecutableInternalRepresentationKHR { - VkStructureType sType; - void* pNext; - char name[VK_MAX_DESCRIPTION_SIZE]; - char description[VK_MAX_DESCRIPTION_SIZE]; - VkBool32 isText; - size_t dataSize; - void* pData; -} VkPipelineExecutableInternalRepresentationKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPipelineExecutablePropertiesKHR)(VkDevice device, const VkPipelineInfoKHR* pPipelineInfo, uint32_t* pExecutableCount, VkPipelineExecutablePropertiesKHR* pProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPipelineExecutableStatisticsKHR)(VkDevice device, const VkPipelineExecutableInfoKHR* pExecutableInfo, uint32_t* pStatisticCount, VkPipelineExecutableStatisticKHR* pStatistics); -typedef VkResult (VKAPI_PTR *PFN_vkGetPipelineExecutableInternalRepresentationsKHR)(VkDevice device, const VkPipelineExecutableInfoKHR* pExecutableInfo, uint32_t* pInternalRepresentationCount, VkPipelineExecutableInternalRepresentationKHR* pInternalRepresentations); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPipelineExecutablePropertiesKHR( - VkDevice device, - const VkPipelineInfoKHR* pPipelineInfo, - uint32_t* pExecutableCount, - VkPipelineExecutablePropertiesKHR* pProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPipelineExecutableStatisticsKHR( - VkDevice device, - const VkPipelineExecutableInfoKHR* pExecutableInfo, - uint32_t* pStatisticCount, - VkPipelineExecutableStatisticKHR* pStatistics); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPipelineExecutableInternalRepresentationsKHR( - VkDevice device, - const VkPipelineExecutableInfoKHR* pExecutableInfo, - uint32_t* pInternalRepresentationCount, - VkPipelineExecutableInternalRepresentationKHR* pInternalRepresentations); -#endif - - -#define VK_KHR_shader_integer_dot_product 1 -#define VK_KHR_SHADER_INTEGER_DOT_PRODUCT_SPEC_VERSION 1 -#define VK_KHR_SHADER_INTEGER_DOT_PRODUCT_EXTENSION_NAME "VK_KHR_shader_integer_dot_product" -typedef VkPhysicalDeviceShaderIntegerDotProductFeatures VkPhysicalDeviceShaderIntegerDotProductFeaturesKHR; - -typedef VkPhysicalDeviceShaderIntegerDotProductProperties VkPhysicalDeviceShaderIntegerDotProductPropertiesKHR; - - - -#define VK_KHR_pipeline_library 1 -#define VK_KHR_PIPELINE_LIBRARY_SPEC_VERSION 1 -#define VK_KHR_PIPELINE_LIBRARY_EXTENSION_NAME "VK_KHR_pipeline_library" -typedef struct VkPipelineLibraryCreateInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t libraryCount; - const VkPipeline* pLibraries; -} VkPipelineLibraryCreateInfoKHR; - - - -#define VK_KHR_shader_non_semantic_info 1 -#define VK_KHR_SHADER_NON_SEMANTIC_INFO_SPEC_VERSION 1 -#define VK_KHR_SHADER_NON_SEMANTIC_INFO_EXTENSION_NAME "VK_KHR_shader_non_semantic_info" - - -#define VK_KHR_present_id 1 -#define VK_KHR_PRESENT_ID_SPEC_VERSION 1 -#define VK_KHR_PRESENT_ID_EXTENSION_NAME "VK_KHR_present_id" -typedef struct VkPresentIdKHR { - VkStructureType sType; - const void* pNext; - uint32_t swapchainCount; - const uint64_t* pPresentIds; -} VkPresentIdKHR; - -typedef struct VkPhysicalDevicePresentIdFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 presentId; -} VkPhysicalDevicePresentIdFeaturesKHR; - - - -#define VK_KHR_synchronization2 1 -#define VK_KHR_SYNCHRONIZATION_2_SPEC_VERSION 1 -#define VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME "VK_KHR_synchronization2" -typedef VkPipelineStageFlags2 VkPipelineStageFlags2KHR; - -typedef VkPipelineStageFlagBits2 VkPipelineStageFlagBits2KHR; - -typedef VkAccessFlags2 VkAccessFlags2KHR; - -typedef VkAccessFlagBits2 VkAccessFlagBits2KHR; - -typedef VkSubmitFlagBits VkSubmitFlagBitsKHR; - -typedef VkSubmitFlags VkSubmitFlagsKHR; - -typedef VkMemoryBarrier2 VkMemoryBarrier2KHR; - -typedef VkBufferMemoryBarrier2 VkBufferMemoryBarrier2KHR; - -typedef VkImageMemoryBarrier2 VkImageMemoryBarrier2KHR; - -typedef VkDependencyInfo VkDependencyInfoKHR; - -typedef VkSubmitInfo2 VkSubmitInfo2KHR; - -typedef VkSemaphoreSubmitInfo VkSemaphoreSubmitInfoKHR; - -typedef VkCommandBufferSubmitInfo VkCommandBufferSubmitInfoKHR; - -typedef VkPhysicalDeviceSynchronization2Features VkPhysicalDeviceSynchronization2FeaturesKHR; - -typedef struct VkQueueFamilyCheckpointProperties2NV { - VkStructureType sType; - void* pNext; - VkPipelineStageFlags2 checkpointExecutionStageMask; -} VkQueueFamilyCheckpointProperties2NV; - -typedef struct VkCheckpointData2NV { - VkStructureType sType; - void* pNext; - VkPipelineStageFlags2 stage; - void* pCheckpointMarker; -} VkCheckpointData2NV; - -typedef void (VKAPI_PTR *PFN_vkCmdSetEvent2KHR)(VkCommandBuffer commandBuffer, VkEvent event, const VkDependencyInfo* pDependencyInfo); -typedef void (VKAPI_PTR *PFN_vkCmdResetEvent2KHR)(VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags2 stageMask); -typedef void (VKAPI_PTR *PFN_vkCmdWaitEvents2KHR)(VkCommandBuffer commandBuffer, uint32_t eventCount, const VkEvent* pEvents, const VkDependencyInfo* pDependencyInfos); -typedef void (VKAPI_PTR *PFN_vkCmdPipelineBarrier2KHR)(VkCommandBuffer commandBuffer, const VkDependencyInfo* pDependencyInfo); -typedef void (VKAPI_PTR *PFN_vkCmdWriteTimestamp2KHR)(VkCommandBuffer commandBuffer, VkPipelineStageFlags2 stage, VkQueryPool queryPool, uint32_t query); -typedef VkResult (VKAPI_PTR *PFN_vkQueueSubmit2KHR)(VkQueue queue, uint32_t submitCount, const VkSubmitInfo2* pSubmits, VkFence fence); -typedef void (VKAPI_PTR *PFN_vkCmdWriteBufferMarker2AMD)(VkCommandBuffer commandBuffer, VkPipelineStageFlags2 stage, VkBuffer dstBuffer, VkDeviceSize dstOffset, uint32_t marker); -typedef void (VKAPI_PTR *PFN_vkGetQueueCheckpointData2NV)(VkQueue queue, uint32_t* pCheckpointDataCount, VkCheckpointData2NV* pCheckpointData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetEvent2KHR( - VkCommandBuffer commandBuffer, - VkEvent event, - const VkDependencyInfo* pDependencyInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdResetEvent2KHR( - VkCommandBuffer commandBuffer, - VkEvent event, - VkPipelineStageFlags2 stageMask); - -VKAPI_ATTR void VKAPI_CALL vkCmdWaitEvents2KHR( - VkCommandBuffer commandBuffer, - uint32_t eventCount, - const VkEvent* pEvents, - const VkDependencyInfo* pDependencyInfos); - -VKAPI_ATTR void VKAPI_CALL vkCmdPipelineBarrier2KHR( - VkCommandBuffer commandBuffer, - const VkDependencyInfo* pDependencyInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdWriteTimestamp2KHR( - VkCommandBuffer commandBuffer, - VkPipelineStageFlags2 stage, - VkQueryPool queryPool, - uint32_t query); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit2KHR( - VkQueue queue, - uint32_t submitCount, - const VkSubmitInfo2* pSubmits, - VkFence fence); - -VKAPI_ATTR void VKAPI_CALL vkCmdWriteBufferMarker2AMD( - VkCommandBuffer commandBuffer, - VkPipelineStageFlags2 stage, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - uint32_t marker); - -VKAPI_ATTR void VKAPI_CALL vkGetQueueCheckpointData2NV( - VkQueue queue, - uint32_t* pCheckpointDataCount, - VkCheckpointData2NV* pCheckpointData); -#endif - - -#define VK_KHR_shader_subgroup_uniform_control_flow 1 -#define VK_KHR_SHADER_SUBGROUP_UNIFORM_CONTROL_FLOW_SPEC_VERSION 1 -#define VK_KHR_SHADER_SUBGROUP_UNIFORM_CONTROL_FLOW_EXTENSION_NAME "VK_KHR_shader_subgroup_uniform_control_flow" -typedef struct VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 shaderSubgroupUniformControlFlow; -} VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR; - - - -#define VK_KHR_zero_initialize_workgroup_memory 1 -#define VK_KHR_ZERO_INITIALIZE_WORKGROUP_MEMORY_SPEC_VERSION 1 -#define VK_KHR_ZERO_INITIALIZE_WORKGROUP_MEMORY_EXTENSION_NAME "VK_KHR_zero_initialize_workgroup_memory" -typedef VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesKHR; - - - -#define VK_KHR_workgroup_memory_explicit_layout 1 -#define VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_SPEC_VERSION 1 -#define VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_EXTENSION_NAME "VK_KHR_workgroup_memory_explicit_layout" -typedef struct VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 workgroupMemoryExplicitLayout; - VkBool32 workgroupMemoryExplicitLayoutScalarBlockLayout; - VkBool32 workgroupMemoryExplicitLayout8BitAccess; - VkBool32 workgroupMemoryExplicitLayout16BitAccess; -} VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR; - - - -#define VK_KHR_copy_commands2 1 -#define VK_KHR_COPY_COMMANDS_2_SPEC_VERSION 1 -#define VK_KHR_COPY_COMMANDS_2_EXTENSION_NAME "VK_KHR_copy_commands2" -typedef VkCopyBufferInfo2 VkCopyBufferInfo2KHR; - -typedef VkCopyImageInfo2 VkCopyImageInfo2KHR; - -typedef VkCopyBufferToImageInfo2 VkCopyBufferToImageInfo2KHR; - -typedef VkCopyImageToBufferInfo2 VkCopyImageToBufferInfo2KHR; - -typedef VkBlitImageInfo2 VkBlitImageInfo2KHR; - -typedef VkResolveImageInfo2 VkResolveImageInfo2KHR; - -typedef VkBufferCopy2 VkBufferCopy2KHR; - -typedef VkImageCopy2 VkImageCopy2KHR; - -typedef VkImageBlit2 VkImageBlit2KHR; - -typedef VkBufferImageCopy2 VkBufferImageCopy2KHR; - -typedef VkImageResolve2 VkImageResolve2KHR; - -typedef void (VKAPI_PTR *PFN_vkCmdCopyBuffer2KHR)(VkCommandBuffer commandBuffer, const VkCopyBufferInfo2* pCopyBufferInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyImage2KHR)(VkCommandBuffer commandBuffer, const VkCopyImageInfo2* pCopyImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyBufferToImage2KHR)(VkCommandBuffer commandBuffer, const VkCopyBufferToImageInfo2* pCopyBufferToImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyImageToBuffer2KHR)(VkCommandBuffer commandBuffer, const VkCopyImageToBufferInfo2* pCopyImageToBufferInfo); -typedef void (VKAPI_PTR *PFN_vkCmdBlitImage2KHR)(VkCommandBuffer commandBuffer, const VkBlitImageInfo2* pBlitImageInfo); -typedef void (VKAPI_PTR *PFN_vkCmdResolveImage2KHR)(VkCommandBuffer commandBuffer, const VkResolveImageInfo2* pResolveImageInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdCopyBuffer2KHR( - VkCommandBuffer commandBuffer, - const VkCopyBufferInfo2* pCopyBufferInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyImage2KHR( - VkCommandBuffer commandBuffer, - const VkCopyImageInfo2* pCopyImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyBufferToImage2KHR( - VkCommandBuffer commandBuffer, - const VkCopyBufferToImageInfo2* pCopyBufferToImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyImageToBuffer2KHR( - VkCommandBuffer commandBuffer, - const VkCopyImageToBufferInfo2* pCopyImageToBufferInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdBlitImage2KHR( - VkCommandBuffer commandBuffer, - const VkBlitImageInfo2* pBlitImageInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdResolveImage2KHR( - VkCommandBuffer commandBuffer, - const VkResolveImageInfo2* pResolveImageInfo); -#endif - - -#define VK_KHR_format_feature_flags2 1 -#define VK_KHR_FORMAT_FEATURE_FLAGS_2_SPEC_VERSION 1 -#define VK_KHR_FORMAT_FEATURE_FLAGS_2_EXTENSION_NAME "VK_KHR_format_feature_flags2" -typedef VkFormatFeatureFlags2 VkFormatFeatureFlags2KHR; - -typedef VkFormatFeatureFlagBits2 VkFormatFeatureFlagBits2KHR; - -typedef VkFormatProperties3 VkFormatProperties3KHR; - - - -#define VK_KHR_maintenance4 1 -#define VK_KHR_MAINTENANCE_4_SPEC_VERSION 2 -#define VK_KHR_MAINTENANCE_4_EXTENSION_NAME "VK_KHR_maintenance4" -typedef VkPhysicalDeviceMaintenance4Features VkPhysicalDeviceMaintenance4FeaturesKHR; - -typedef VkPhysicalDeviceMaintenance4Properties VkPhysicalDeviceMaintenance4PropertiesKHR; - -typedef VkDeviceBufferMemoryRequirements VkDeviceBufferMemoryRequirementsKHR; - -typedef VkDeviceImageMemoryRequirements VkDeviceImageMemoryRequirementsKHR; - -typedef void (VKAPI_PTR *PFN_vkGetDeviceBufferMemoryRequirementsKHR)(VkDevice device, const VkDeviceBufferMemoryRequirements* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetDeviceImageMemoryRequirementsKHR)(VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkGetDeviceImageSparseMemoryRequirementsKHR)(VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetDeviceBufferMemoryRequirementsKHR( - VkDevice device, - const VkDeviceBufferMemoryRequirements* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceImageMemoryRequirementsKHR( - VkDevice device, - const VkDeviceImageMemoryRequirements* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceImageSparseMemoryRequirementsKHR( - VkDevice device, - const VkDeviceImageMemoryRequirements* pInfo, - uint32_t* pSparseMemoryRequirementCount, - VkSparseImageMemoryRequirements2* pSparseMemoryRequirements); -#endif - - -#define VK_EXT_debug_report 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDebugReportCallbackEXT) -#define VK_EXT_DEBUG_REPORT_SPEC_VERSION 10 -#define VK_EXT_DEBUG_REPORT_EXTENSION_NAME "VK_EXT_debug_report" - -typedef enum VkDebugReportObjectTypeEXT { - VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT = 0, - VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT = 1, - VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT = 2, - VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT = 3, - VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT = 4, - VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT = 5, - VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT = 6, - VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT = 7, - VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT = 8, - VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT = 9, - VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT = 10, - VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT = 11, - VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT = 12, - VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT = 13, - VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT = 14, - VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT = 15, - VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT = 16, - VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT = 17, - VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT = 18, - VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT = 19, - VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT = 20, - VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT = 21, - VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT = 22, - VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT = 23, - VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT = 24, - VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT = 25, - VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT = 26, - VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT = 27, - VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT = 28, - VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT = 29, - VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT = 30, - VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT = 33, - VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT = 1000156000, - VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT = 1000085000, - VK_DEBUG_REPORT_OBJECT_TYPE_CU_MODULE_NVX_EXT = 1000029000, - VK_DEBUG_REPORT_OBJECT_TYPE_CU_FUNCTION_NVX_EXT = 1000029001, - VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT = 1000150000, - VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV_EXT = 1000165000, - VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_COLLECTION_FUCHSIA_EXT = 1000366000, - VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT = VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT, - VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT = VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT, - VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR_EXT = VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT, - VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR_EXT = VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT, - VK_DEBUG_REPORT_OBJECT_TYPE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDebugReportObjectTypeEXT; - -typedef enum VkDebugReportFlagBitsEXT { - VK_DEBUG_REPORT_INFORMATION_BIT_EXT = 0x00000001, - VK_DEBUG_REPORT_WARNING_BIT_EXT = 0x00000002, - VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT = 0x00000004, - VK_DEBUG_REPORT_ERROR_BIT_EXT = 0x00000008, - VK_DEBUG_REPORT_DEBUG_BIT_EXT = 0x00000010, - VK_DEBUG_REPORT_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDebugReportFlagBitsEXT; -typedef VkFlags VkDebugReportFlagsEXT; -typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( - VkDebugReportFlagsEXT flags, - VkDebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const char* pLayerPrefix, - const char* pMessage, - void* pUserData); - -typedef struct VkDebugReportCallbackCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkDebugReportFlagsEXT flags; - PFN_vkDebugReportCallbackEXT pfnCallback; - void* pUserData; -} VkDebugReportCallbackCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateDebugReportCallbackEXT)(VkInstance instance, const VkDebugReportCallbackCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDebugReportCallbackEXT* pCallback); -typedef void (VKAPI_PTR *PFN_vkDestroyDebugReportCallbackEXT)(VkInstance instance, VkDebugReportCallbackEXT callback, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkDebugReportMessageEXT)(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDebugReportCallbackEXT( - VkInstance instance, - const VkDebugReportCallbackCreateInfoEXT* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDebugReportCallbackEXT* pCallback); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDebugReportCallbackEXT( - VkInstance instance, - VkDebugReportCallbackEXT callback, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkDebugReportMessageEXT( - VkInstance instance, - VkDebugReportFlagsEXT flags, - VkDebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const char* pLayerPrefix, - const char* pMessage); -#endif - - -#define VK_NV_glsl_shader 1 -#define VK_NV_GLSL_SHADER_SPEC_VERSION 1 -#define VK_NV_GLSL_SHADER_EXTENSION_NAME "VK_NV_glsl_shader" - - -#define VK_EXT_depth_range_unrestricted 1 -#define VK_EXT_DEPTH_RANGE_UNRESTRICTED_SPEC_VERSION 1 -#define VK_EXT_DEPTH_RANGE_UNRESTRICTED_EXTENSION_NAME "VK_EXT_depth_range_unrestricted" - - -#define VK_IMG_filter_cubic 1 -#define VK_IMG_FILTER_CUBIC_SPEC_VERSION 1 -#define VK_IMG_FILTER_CUBIC_EXTENSION_NAME "VK_IMG_filter_cubic" - - -#define VK_AMD_rasterization_order 1 -#define VK_AMD_RASTERIZATION_ORDER_SPEC_VERSION 1 -#define VK_AMD_RASTERIZATION_ORDER_EXTENSION_NAME "VK_AMD_rasterization_order" - -typedef enum VkRasterizationOrderAMD { - VK_RASTERIZATION_ORDER_STRICT_AMD = 0, - VK_RASTERIZATION_ORDER_RELAXED_AMD = 1, - VK_RASTERIZATION_ORDER_MAX_ENUM_AMD = 0x7FFFFFFF -} VkRasterizationOrderAMD; -typedef struct VkPipelineRasterizationStateRasterizationOrderAMD { - VkStructureType sType; - const void* pNext; - VkRasterizationOrderAMD rasterizationOrder; -} VkPipelineRasterizationStateRasterizationOrderAMD; - - - -#define VK_AMD_shader_trinary_minmax 1 -#define VK_AMD_SHADER_TRINARY_MINMAX_SPEC_VERSION 1 -#define VK_AMD_SHADER_TRINARY_MINMAX_EXTENSION_NAME "VK_AMD_shader_trinary_minmax" - - -#define VK_AMD_shader_explicit_vertex_parameter 1 -#define VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_SPEC_VERSION 1 -#define VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_EXTENSION_NAME "VK_AMD_shader_explicit_vertex_parameter" - - -#define VK_EXT_debug_marker 1 -#define VK_EXT_DEBUG_MARKER_SPEC_VERSION 4 -#define VK_EXT_DEBUG_MARKER_EXTENSION_NAME "VK_EXT_debug_marker" -typedef struct VkDebugMarkerObjectNameInfoEXT { - VkStructureType sType; - const void* pNext; - VkDebugReportObjectTypeEXT objectType; - uint64_t object; - const char* pObjectName; -} VkDebugMarkerObjectNameInfoEXT; - -typedef struct VkDebugMarkerObjectTagInfoEXT { - VkStructureType sType; - const void* pNext; - VkDebugReportObjectTypeEXT objectType; - uint64_t object; - uint64_t tagName; - size_t tagSize; - const void* pTag; -} VkDebugMarkerObjectTagInfoEXT; - -typedef struct VkDebugMarkerMarkerInfoEXT { - VkStructureType sType; - const void* pNext; - const char* pMarkerName; - float color[4]; -} VkDebugMarkerMarkerInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkDebugMarkerSetObjectTagEXT)(VkDevice device, const VkDebugMarkerObjectTagInfoEXT* pTagInfo); -typedef VkResult (VKAPI_PTR *PFN_vkDebugMarkerSetObjectNameEXT)(VkDevice device, const VkDebugMarkerObjectNameInfoEXT* pNameInfo); -typedef void (VKAPI_PTR *PFN_vkCmdDebugMarkerBeginEXT)(VkCommandBuffer commandBuffer, const VkDebugMarkerMarkerInfoEXT* pMarkerInfo); -typedef void (VKAPI_PTR *PFN_vkCmdDebugMarkerEndEXT)(VkCommandBuffer commandBuffer); -typedef void (VKAPI_PTR *PFN_vkCmdDebugMarkerInsertEXT)(VkCommandBuffer commandBuffer, const VkDebugMarkerMarkerInfoEXT* pMarkerInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkDebugMarkerSetObjectTagEXT( - VkDevice device, - const VkDebugMarkerObjectTagInfoEXT* pTagInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkDebugMarkerSetObjectNameEXT( - VkDevice device, - const VkDebugMarkerObjectNameInfoEXT* pNameInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdDebugMarkerBeginEXT( - VkCommandBuffer commandBuffer, - const VkDebugMarkerMarkerInfoEXT* pMarkerInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdDebugMarkerEndEXT( - VkCommandBuffer commandBuffer); - -VKAPI_ATTR void VKAPI_CALL vkCmdDebugMarkerInsertEXT( - VkCommandBuffer commandBuffer, - const VkDebugMarkerMarkerInfoEXT* pMarkerInfo); -#endif - - -#define VK_AMD_gcn_shader 1 -#define VK_AMD_GCN_SHADER_SPEC_VERSION 1 -#define VK_AMD_GCN_SHADER_EXTENSION_NAME "VK_AMD_gcn_shader" - - -#define VK_NV_dedicated_allocation 1 -#define VK_NV_DEDICATED_ALLOCATION_SPEC_VERSION 1 -#define VK_NV_DEDICATED_ALLOCATION_EXTENSION_NAME "VK_NV_dedicated_allocation" -typedef struct VkDedicatedAllocationImageCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkBool32 dedicatedAllocation; -} VkDedicatedAllocationImageCreateInfoNV; - -typedef struct VkDedicatedAllocationBufferCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkBool32 dedicatedAllocation; -} VkDedicatedAllocationBufferCreateInfoNV; - -typedef struct VkDedicatedAllocationMemoryAllocateInfoNV { - VkStructureType sType; - const void* pNext; - VkImage image; - VkBuffer buffer; -} VkDedicatedAllocationMemoryAllocateInfoNV; - - - -#define VK_EXT_transform_feedback 1 -#define VK_EXT_TRANSFORM_FEEDBACK_SPEC_VERSION 1 -#define VK_EXT_TRANSFORM_FEEDBACK_EXTENSION_NAME "VK_EXT_transform_feedback" -typedef VkFlags VkPipelineRasterizationStateStreamCreateFlagsEXT; -typedef struct VkPhysicalDeviceTransformFeedbackFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 transformFeedback; - VkBool32 geometryStreams; -} VkPhysicalDeviceTransformFeedbackFeaturesEXT; - -typedef struct VkPhysicalDeviceTransformFeedbackPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxTransformFeedbackStreams; - uint32_t maxTransformFeedbackBuffers; - VkDeviceSize maxTransformFeedbackBufferSize; - uint32_t maxTransformFeedbackStreamDataSize; - uint32_t maxTransformFeedbackBufferDataSize; - uint32_t maxTransformFeedbackBufferDataStride; - VkBool32 transformFeedbackQueries; - VkBool32 transformFeedbackStreamsLinesTriangles; - VkBool32 transformFeedbackRasterizationStreamSelect; - VkBool32 transformFeedbackDraw; -} VkPhysicalDeviceTransformFeedbackPropertiesEXT; - -typedef struct VkPipelineRasterizationStateStreamCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkPipelineRasterizationStateStreamCreateFlagsEXT flags; - uint32_t rasterizationStream; -} VkPipelineRasterizationStateStreamCreateInfoEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdBindTransformFeedbackBuffersEXT)(VkCommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const VkBuffer* pBuffers, const VkDeviceSize* pOffsets, const VkDeviceSize* pSizes); -typedef void (VKAPI_PTR *PFN_vkCmdBeginTransformFeedbackEXT)(VkCommandBuffer commandBuffer, uint32_t firstCounterBuffer, uint32_t counterBufferCount, const VkBuffer* pCounterBuffers, const VkDeviceSize* pCounterBufferOffsets); -typedef void (VKAPI_PTR *PFN_vkCmdEndTransformFeedbackEXT)(VkCommandBuffer commandBuffer, uint32_t firstCounterBuffer, uint32_t counterBufferCount, const VkBuffer* pCounterBuffers, const VkDeviceSize* pCounterBufferOffsets); -typedef void (VKAPI_PTR *PFN_vkCmdBeginQueryIndexedEXT)(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query, VkQueryControlFlags flags, uint32_t index); -typedef void (VKAPI_PTR *PFN_vkCmdEndQueryIndexedEXT)(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query, uint32_t index); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndirectByteCountEXT)(VkCommandBuffer commandBuffer, uint32_t instanceCount, uint32_t firstInstance, VkBuffer counterBuffer, VkDeviceSize counterBufferOffset, uint32_t counterOffset, uint32_t vertexStride); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdBindTransformFeedbackBuffersEXT( - VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer* pBuffers, - const VkDeviceSize* pOffsets, - const VkDeviceSize* pSizes); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginTransformFeedbackEXT( - VkCommandBuffer commandBuffer, - uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VkBuffer* pCounterBuffers, - const VkDeviceSize* pCounterBufferOffsets); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndTransformFeedbackEXT( - VkCommandBuffer commandBuffer, - uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VkBuffer* pCounterBuffers, - const VkDeviceSize* pCounterBufferOffsets); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginQueryIndexedEXT( - VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query, - VkQueryControlFlags flags, - uint32_t index); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndQueryIndexedEXT( - VkCommandBuffer commandBuffer, - VkQueryPool queryPool, - uint32_t query, - uint32_t index); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndirectByteCountEXT( - VkCommandBuffer commandBuffer, - uint32_t instanceCount, - uint32_t firstInstance, - VkBuffer counterBuffer, - VkDeviceSize counterBufferOffset, - uint32_t counterOffset, - uint32_t vertexStride); -#endif - - -#define VK_NVX_binary_import 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkCuModuleNVX) -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkCuFunctionNVX) -#define VK_NVX_BINARY_IMPORT_SPEC_VERSION 1 -#define VK_NVX_BINARY_IMPORT_EXTENSION_NAME "VK_NVX_binary_import" -typedef struct VkCuModuleCreateInfoNVX { - VkStructureType sType; - const void* pNext; - size_t dataSize; - const void* pData; -} VkCuModuleCreateInfoNVX; - -typedef struct VkCuFunctionCreateInfoNVX { - VkStructureType sType; - const void* pNext; - VkCuModuleNVX module; - const char* pName; -} VkCuFunctionCreateInfoNVX; - -typedef struct VkCuLaunchInfoNVX { - VkStructureType sType; - const void* pNext; - VkCuFunctionNVX function; - uint32_t gridDimX; - uint32_t gridDimY; - uint32_t gridDimZ; - uint32_t blockDimX; - uint32_t blockDimY; - uint32_t blockDimZ; - uint32_t sharedMemBytes; - size_t paramCount; - const void* const * pParams; - size_t extraCount; - const void* const * pExtras; -} VkCuLaunchInfoNVX; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateCuModuleNVX)(VkDevice device, const VkCuModuleCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuModuleNVX* pModule); -typedef VkResult (VKAPI_PTR *PFN_vkCreateCuFunctionNVX)(VkDevice device, const VkCuFunctionCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction); -typedef void (VKAPI_PTR *PFN_vkDestroyCuModuleNVX)(VkDevice device, VkCuModuleNVX module, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkDestroyCuFunctionNVX)(VkDevice device, VkCuFunctionNVX function, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkCmdCuLaunchKernelNVX)(VkCommandBuffer commandBuffer, const VkCuLaunchInfoNVX* pLaunchInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateCuModuleNVX( - VkDevice device, - const VkCuModuleCreateInfoNVX* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkCuModuleNVX* pModule); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateCuFunctionNVX( - VkDevice device, - const VkCuFunctionCreateInfoNVX* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkCuFunctionNVX* pFunction); - -VKAPI_ATTR void VKAPI_CALL vkDestroyCuModuleNVX( - VkDevice device, - VkCuModuleNVX module, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkDestroyCuFunctionNVX( - VkDevice device, - VkCuFunctionNVX function, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkCmdCuLaunchKernelNVX( - VkCommandBuffer commandBuffer, - const VkCuLaunchInfoNVX* pLaunchInfo); -#endif - - -#define VK_NVX_image_view_handle 1 -#define VK_NVX_IMAGE_VIEW_HANDLE_SPEC_VERSION 2 -#define VK_NVX_IMAGE_VIEW_HANDLE_EXTENSION_NAME "VK_NVX_image_view_handle" -typedef struct VkImageViewHandleInfoNVX { - VkStructureType sType; - const void* pNext; - VkImageView imageView; - VkDescriptorType descriptorType; - VkSampler sampler; -} VkImageViewHandleInfoNVX; - -typedef struct VkImageViewAddressPropertiesNVX { - VkStructureType sType; - void* pNext; - VkDeviceAddress deviceAddress; - VkDeviceSize size; -} VkImageViewAddressPropertiesNVX; - -typedef uint32_t (VKAPI_PTR *PFN_vkGetImageViewHandleNVX)(VkDevice device, const VkImageViewHandleInfoNVX* pInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetImageViewAddressNVX)(VkDevice device, VkImageView imageView, VkImageViewAddressPropertiesNVX* pProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR uint32_t VKAPI_CALL vkGetImageViewHandleNVX( - VkDevice device, - const VkImageViewHandleInfoNVX* pInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetImageViewAddressNVX( - VkDevice device, - VkImageView imageView, - VkImageViewAddressPropertiesNVX* pProperties); -#endif - - -#define VK_AMD_draw_indirect_count 1 -#define VK_AMD_DRAW_INDIRECT_COUNT_SPEC_VERSION 2 -#define VK_AMD_DRAW_INDIRECT_COUNT_EXTENSION_NAME "VK_AMD_draw_indirect_count" -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndirectCountAMD)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDrawIndexedIndirectCountAMD)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndirectCountAMD( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawIndexedIndirectCountAMD( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); -#endif - - -#define VK_AMD_negative_viewport_height 1 -#define VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_SPEC_VERSION 1 -#define VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_EXTENSION_NAME "VK_AMD_negative_viewport_height" - - -#define VK_AMD_gpu_shader_half_float 1 -#define VK_AMD_GPU_SHADER_HALF_FLOAT_SPEC_VERSION 2 -#define VK_AMD_GPU_SHADER_HALF_FLOAT_EXTENSION_NAME "VK_AMD_gpu_shader_half_float" - - -#define VK_AMD_shader_ballot 1 -#define VK_AMD_SHADER_BALLOT_SPEC_VERSION 1 -#define VK_AMD_SHADER_BALLOT_EXTENSION_NAME "VK_AMD_shader_ballot" - - -#define VK_AMD_texture_gather_bias_lod 1 -#define VK_AMD_TEXTURE_GATHER_BIAS_LOD_SPEC_VERSION 1 -#define VK_AMD_TEXTURE_GATHER_BIAS_LOD_EXTENSION_NAME "VK_AMD_texture_gather_bias_lod" -typedef struct VkTextureLODGatherFormatPropertiesAMD { - VkStructureType sType; - void* pNext; - VkBool32 supportsTextureGatherLODBiasAMD; -} VkTextureLODGatherFormatPropertiesAMD; - - - -#define VK_AMD_shader_info 1 -#define VK_AMD_SHADER_INFO_SPEC_VERSION 1 -#define VK_AMD_SHADER_INFO_EXTENSION_NAME "VK_AMD_shader_info" - -typedef enum VkShaderInfoTypeAMD { - VK_SHADER_INFO_TYPE_STATISTICS_AMD = 0, - VK_SHADER_INFO_TYPE_BINARY_AMD = 1, - VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD = 2, - VK_SHADER_INFO_TYPE_MAX_ENUM_AMD = 0x7FFFFFFF -} VkShaderInfoTypeAMD; -typedef struct VkShaderResourceUsageAMD { - uint32_t numUsedVgprs; - uint32_t numUsedSgprs; - uint32_t ldsSizePerLocalWorkGroup; - size_t ldsUsageSizeInBytes; - size_t scratchMemUsageInBytes; -} VkShaderResourceUsageAMD; - -typedef struct VkShaderStatisticsInfoAMD { - VkShaderStageFlags shaderStageMask; - VkShaderResourceUsageAMD resourceUsage; - uint32_t numPhysicalVgprs; - uint32_t numPhysicalSgprs; - uint32_t numAvailableVgprs; - uint32_t numAvailableSgprs; - uint32_t computeWorkGroupSize[3]; -} VkShaderStatisticsInfoAMD; - -typedef VkResult (VKAPI_PTR *PFN_vkGetShaderInfoAMD)(VkDevice device, VkPipeline pipeline, VkShaderStageFlagBits shaderStage, VkShaderInfoTypeAMD infoType, size_t* pInfoSize, void* pInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetShaderInfoAMD( - VkDevice device, - VkPipeline pipeline, - VkShaderStageFlagBits shaderStage, - VkShaderInfoTypeAMD infoType, - size_t* pInfoSize, - void* pInfo); -#endif - - -#define VK_AMD_shader_image_load_store_lod 1 -#define VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_SPEC_VERSION 1 -#define VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_EXTENSION_NAME "VK_AMD_shader_image_load_store_lod" - - -#define VK_NV_corner_sampled_image 1 -#define VK_NV_CORNER_SAMPLED_IMAGE_SPEC_VERSION 2 -#define VK_NV_CORNER_SAMPLED_IMAGE_EXTENSION_NAME "VK_NV_corner_sampled_image" -typedef struct VkPhysicalDeviceCornerSampledImageFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 cornerSampledImage; -} VkPhysicalDeviceCornerSampledImageFeaturesNV; - - - -#define VK_IMG_format_pvrtc 1 -#define VK_IMG_FORMAT_PVRTC_SPEC_VERSION 1 -#define VK_IMG_FORMAT_PVRTC_EXTENSION_NAME "VK_IMG_format_pvrtc" - - -#define VK_NV_external_memory_capabilities 1 -#define VK_NV_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION 1 -#define VK_NV_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME "VK_NV_external_memory_capabilities" - -typedef enum VkExternalMemoryHandleTypeFlagBitsNV { - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV = 0x00000001, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV = 0x00000002, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV = 0x00000004, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV = 0x00000008, - VK_EXTERNAL_MEMORY_HANDLE_TYPE_FLAG_BITS_MAX_ENUM_NV = 0x7FFFFFFF -} VkExternalMemoryHandleTypeFlagBitsNV; -typedef VkFlags VkExternalMemoryHandleTypeFlagsNV; - -typedef enum VkExternalMemoryFeatureFlagBitsNV { - VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV = 0x00000001, - VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV = 0x00000002, - VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV = 0x00000004, - VK_EXTERNAL_MEMORY_FEATURE_FLAG_BITS_MAX_ENUM_NV = 0x7FFFFFFF -} VkExternalMemoryFeatureFlagBitsNV; -typedef VkFlags VkExternalMemoryFeatureFlagsNV; -typedef struct VkExternalImageFormatPropertiesNV { - VkImageFormatProperties imageFormatProperties; - VkExternalMemoryFeatureFlagsNV externalMemoryFeatures; - VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes; - VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes; -} VkExternalImageFormatPropertiesNV; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV)(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkExternalMemoryHandleTypeFlagsNV externalHandleType, VkExternalImageFormatPropertiesNV* pExternalImageFormatProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - VkPhysicalDevice physicalDevice, - VkFormat format, - VkImageType type, - VkImageTiling tiling, - VkImageUsageFlags usage, - VkImageCreateFlags flags, - VkExternalMemoryHandleTypeFlagsNV externalHandleType, - VkExternalImageFormatPropertiesNV* pExternalImageFormatProperties); -#endif - - -#define VK_NV_external_memory 1 -#define VK_NV_EXTERNAL_MEMORY_SPEC_VERSION 1 -#define VK_NV_EXTERNAL_MEMORY_EXTENSION_NAME "VK_NV_external_memory" -typedef struct VkExternalMemoryImageCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagsNV handleTypes; -} VkExternalMemoryImageCreateInfoNV; - -typedef struct VkExportMemoryAllocateInfoNV { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagsNV handleTypes; -} VkExportMemoryAllocateInfoNV; - - - -#define VK_EXT_validation_flags 1 -#define VK_EXT_VALIDATION_FLAGS_SPEC_VERSION 2 -#define VK_EXT_VALIDATION_FLAGS_EXTENSION_NAME "VK_EXT_validation_flags" - -typedef enum VkValidationCheckEXT { - VK_VALIDATION_CHECK_ALL_EXT = 0, - VK_VALIDATION_CHECK_SHADERS_EXT = 1, - VK_VALIDATION_CHECK_MAX_ENUM_EXT = 0x7FFFFFFF -} VkValidationCheckEXT; -typedef struct VkValidationFlagsEXT { - VkStructureType sType; - const void* pNext; - uint32_t disabledValidationCheckCount; - const VkValidationCheckEXT* pDisabledValidationChecks; -} VkValidationFlagsEXT; - - - -#define VK_EXT_shader_subgroup_ballot 1 -#define VK_EXT_SHADER_SUBGROUP_BALLOT_SPEC_VERSION 1 -#define VK_EXT_SHADER_SUBGROUP_BALLOT_EXTENSION_NAME "VK_EXT_shader_subgroup_ballot" - - -#define VK_EXT_shader_subgroup_vote 1 -#define VK_EXT_SHADER_SUBGROUP_VOTE_SPEC_VERSION 1 -#define VK_EXT_SHADER_SUBGROUP_VOTE_EXTENSION_NAME "VK_EXT_shader_subgroup_vote" - - -#define VK_EXT_texture_compression_astc_hdr 1 -#define VK_EXT_TEXTURE_COMPRESSION_ASTC_HDR_SPEC_VERSION 1 -#define VK_EXT_TEXTURE_COMPRESSION_ASTC_HDR_EXTENSION_NAME "VK_EXT_texture_compression_astc_hdr" -typedef VkPhysicalDeviceTextureCompressionASTCHDRFeatures VkPhysicalDeviceTextureCompressionASTCHDRFeaturesEXT; - - - -#define VK_EXT_astc_decode_mode 1 -#define VK_EXT_ASTC_DECODE_MODE_SPEC_VERSION 1 -#define VK_EXT_ASTC_DECODE_MODE_EXTENSION_NAME "VK_EXT_astc_decode_mode" -typedef struct VkImageViewASTCDecodeModeEXT { - VkStructureType sType; - const void* pNext; - VkFormat decodeMode; -} VkImageViewASTCDecodeModeEXT; - -typedef struct VkPhysicalDeviceASTCDecodeFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 decodeModeSharedExponent; -} VkPhysicalDeviceASTCDecodeFeaturesEXT; - - - -#define VK_EXT_conditional_rendering 1 -#define VK_EXT_CONDITIONAL_RENDERING_SPEC_VERSION 2 -#define VK_EXT_CONDITIONAL_RENDERING_EXTENSION_NAME "VK_EXT_conditional_rendering" - -typedef enum VkConditionalRenderingFlagBitsEXT { - VK_CONDITIONAL_RENDERING_INVERTED_BIT_EXT = 0x00000001, - VK_CONDITIONAL_RENDERING_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkConditionalRenderingFlagBitsEXT; -typedef VkFlags VkConditionalRenderingFlagsEXT; -typedef struct VkConditionalRenderingBeginInfoEXT { - VkStructureType sType; - const void* pNext; - VkBuffer buffer; - VkDeviceSize offset; - VkConditionalRenderingFlagsEXT flags; -} VkConditionalRenderingBeginInfoEXT; - -typedef struct VkPhysicalDeviceConditionalRenderingFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 conditionalRendering; - VkBool32 inheritedConditionalRendering; -} VkPhysicalDeviceConditionalRenderingFeaturesEXT; - -typedef struct VkCommandBufferInheritanceConditionalRenderingInfoEXT { - VkStructureType sType; - const void* pNext; - VkBool32 conditionalRenderingEnable; -} VkCommandBufferInheritanceConditionalRenderingInfoEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdBeginConditionalRenderingEXT)(VkCommandBuffer commandBuffer, const VkConditionalRenderingBeginInfoEXT* pConditionalRenderingBegin); -typedef void (VKAPI_PTR *PFN_vkCmdEndConditionalRenderingEXT)(VkCommandBuffer commandBuffer); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdBeginConditionalRenderingEXT( - VkCommandBuffer commandBuffer, - const VkConditionalRenderingBeginInfoEXT* pConditionalRenderingBegin); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndConditionalRenderingEXT( - VkCommandBuffer commandBuffer); -#endif - - -#define VK_NV_clip_space_w_scaling 1 -#define VK_NV_CLIP_SPACE_W_SCALING_SPEC_VERSION 1 -#define VK_NV_CLIP_SPACE_W_SCALING_EXTENSION_NAME "VK_NV_clip_space_w_scaling" -typedef struct VkViewportWScalingNV { - float xcoeff; - float ycoeff; -} VkViewportWScalingNV; - -typedef struct VkPipelineViewportWScalingStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkBool32 viewportWScalingEnable; - uint32_t viewportCount; - const VkViewportWScalingNV* pViewportWScalings; -} VkPipelineViewportWScalingStateCreateInfoNV; - -typedef void (VKAPI_PTR *PFN_vkCmdSetViewportWScalingNV)(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const VkViewportWScalingNV* pViewportWScalings); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetViewportWScalingNV( - VkCommandBuffer commandBuffer, - uint32_t firstViewport, - uint32_t viewportCount, - const VkViewportWScalingNV* pViewportWScalings); -#endif - - -#define VK_EXT_direct_mode_display 1 -#define VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSION 1 -#define VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME "VK_EXT_direct_mode_display" -typedef VkResult (VKAPI_PTR *PFN_vkReleaseDisplayEXT)(VkPhysicalDevice physicalDevice, VkDisplayKHR display); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkReleaseDisplayEXT( - VkPhysicalDevice physicalDevice, - VkDisplayKHR display); -#endif - - -#define VK_EXT_display_surface_counter 1 -#define VK_EXT_DISPLAY_SURFACE_COUNTER_SPEC_VERSION 1 -#define VK_EXT_DISPLAY_SURFACE_COUNTER_EXTENSION_NAME "VK_EXT_display_surface_counter" - -typedef enum VkSurfaceCounterFlagBitsEXT { - VK_SURFACE_COUNTER_VBLANK_BIT_EXT = 0x00000001, - VK_SURFACE_COUNTER_VBLANK_EXT = VK_SURFACE_COUNTER_VBLANK_BIT_EXT, - VK_SURFACE_COUNTER_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkSurfaceCounterFlagBitsEXT; -typedef VkFlags VkSurfaceCounterFlagsEXT; -typedef struct VkSurfaceCapabilities2EXT { - VkStructureType sType; - void* pNext; - uint32_t minImageCount; - uint32_t maxImageCount; - VkExtent2D currentExtent; - VkExtent2D minImageExtent; - VkExtent2D maxImageExtent; - uint32_t maxImageArrayLayers; - VkSurfaceTransformFlagsKHR supportedTransforms; - VkSurfaceTransformFlagBitsKHR currentTransform; - VkCompositeAlphaFlagsKHR supportedCompositeAlpha; - VkImageUsageFlags supportedUsageFlags; - VkSurfaceCounterFlagsEXT supportedSurfaceCounters; -} VkSurfaceCapabilities2EXT; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT)(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, VkSurfaceCapabilities2EXT* pSurfaceCapabilities); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceCapabilities2EXT( - VkPhysicalDevice physicalDevice, - VkSurfaceKHR surface, - VkSurfaceCapabilities2EXT* pSurfaceCapabilities); -#endif - - -#define VK_EXT_display_control 1 -#define VK_EXT_DISPLAY_CONTROL_SPEC_VERSION 1 -#define VK_EXT_DISPLAY_CONTROL_EXTENSION_NAME "VK_EXT_display_control" - -typedef enum VkDisplayPowerStateEXT { - VK_DISPLAY_POWER_STATE_OFF_EXT = 0, - VK_DISPLAY_POWER_STATE_SUSPEND_EXT = 1, - VK_DISPLAY_POWER_STATE_ON_EXT = 2, - VK_DISPLAY_POWER_STATE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDisplayPowerStateEXT; - -typedef enum VkDeviceEventTypeEXT { - VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT = 0, - VK_DEVICE_EVENT_TYPE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDeviceEventTypeEXT; - -typedef enum VkDisplayEventTypeEXT { - VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT = 0, - VK_DISPLAY_EVENT_TYPE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDisplayEventTypeEXT; -typedef struct VkDisplayPowerInfoEXT { - VkStructureType sType; - const void* pNext; - VkDisplayPowerStateEXT powerState; -} VkDisplayPowerInfoEXT; - -typedef struct VkDeviceEventInfoEXT { - VkStructureType sType; - const void* pNext; - VkDeviceEventTypeEXT deviceEvent; -} VkDeviceEventInfoEXT; - -typedef struct VkDisplayEventInfoEXT { - VkStructureType sType; - const void* pNext; - VkDisplayEventTypeEXT displayEvent; -} VkDisplayEventInfoEXT; - -typedef struct VkSwapchainCounterCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkSurfaceCounterFlagsEXT surfaceCounters; -} VkSwapchainCounterCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkDisplayPowerControlEXT)(VkDevice device, VkDisplayKHR display, const VkDisplayPowerInfoEXT* pDisplayPowerInfo); -typedef VkResult (VKAPI_PTR *PFN_vkRegisterDeviceEventEXT)(VkDevice device, const VkDeviceEventInfoEXT* pDeviceEventInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence); -typedef VkResult (VKAPI_PTR *PFN_vkRegisterDisplayEventEXT)(VkDevice device, VkDisplayKHR display, const VkDisplayEventInfoEXT* pDisplayEventInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence); -typedef VkResult (VKAPI_PTR *PFN_vkGetSwapchainCounterEXT)(VkDevice device, VkSwapchainKHR swapchain, VkSurfaceCounterFlagBitsEXT counter, uint64_t* pCounterValue); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkDisplayPowerControlEXT( - VkDevice device, - VkDisplayKHR display, - const VkDisplayPowerInfoEXT* pDisplayPowerInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkRegisterDeviceEventEXT( - VkDevice device, - const VkDeviceEventInfoEXT* pDeviceEventInfo, - const VkAllocationCallbacks* pAllocator, - VkFence* pFence); - -VKAPI_ATTR VkResult VKAPI_CALL vkRegisterDisplayEventEXT( - VkDevice device, - VkDisplayKHR display, - const VkDisplayEventInfoEXT* pDisplayEventInfo, - const VkAllocationCallbacks* pAllocator, - VkFence* pFence); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetSwapchainCounterEXT( - VkDevice device, - VkSwapchainKHR swapchain, - VkSurfaceCounterFlagBitsEXT counter, - uint64_t* pCounterValue); -#endif - - -#define VK_GOOGLE_display_timing 1 -#define VK_GOOGLE_DISPLAY_TIMING_SPEC_VERSION 1 -#define VK_GOOGLE_DISPLAY_TIMING_EXTENSION_NAME "VK_GOOGLE_display_timing" -typedef struct VkRefreshCycleDurationGOOGLE { - uint64_t refreshDuration; -} VkRefreshCycleDurationGOOGLE; - -typedef struct VkPastPresentationTimingGOOGLE { - uint32_t presentID; - uint64_t desiredPresentTime; - uint64_t actualPresentTime; - uint64_t earliestPresentTime; - uint64_t presentMargin; -} VkPastPresentationTimingGOOGLE; - -typedef struct VkPresentTimeGOOGLE { - uint32_t presentID; - uint64_t desiredPresentTime; -} VkPresentTimeGOOGLE; - -typedef struct VkPresentTimesInfoGOOGLE { - VkStructureType sType; - const void* pNext; - uint32_t swapchainCount; - const VkPresentTimeGOOGLE* pTimes; -} VkPresentTimesInfoGOOGLE; - -typedef VkResult (VKAPI_PTR *PFN_vkGetRefreshCycleDurationGOOGLE)(VkDevice device, VkSwapchainKHR swapchain, VkRefreshCycleDurationGOOGLE* pDisplayTimingProperties); -typedef VkResult (VKAPI_PTR *PFN_vkGetPastPresentationTimingGOOGLE)(VkDevice device, VkSwapchainKHR swapchain, uint32_t* pPresentationTimingCount, VkPastPresentationTimingGOOGLE* pPresentationTimings); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetRefreshCycleDurationGOOGLE( - VkDevice device, - VkSwapchainKHR swapchain, - VkRefreshCycleDurationGOOGLE* pDisplayTimingProperties); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPastPresentationTimingGOOGLE( - VkDevice device, - VkSwapchainKHR swapchain, - uint32_t* pPresentationTimingCount, - VkPastPresentationTimingGOOGLE* pPresentationTimings); -#endif - - -#define VK_NV_sample_mask_override_coverage 1 -#define VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_SPEC_VERSION 1 -#define VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_EXTENSION_NAME "VK_NV_sample_mask_override_coverage" - - -#define VK_NV_geometry_shader_passthrough 1 -#define VK_NV_GEOMETRY_SHADER_PASSTHROUGH_SPEC_VERSION 1 -#define VK_NV_GEOMETRY_SHADER_PASSTHROUGH_EXTENSION_NAME "VK_NV_geometry_shader_passthrough" - - -#define VK_NV_viewport_array2 1 -#define VK_NV_VIEWPORT_ARRAY_2_SPEC_VERSION 1 -#define VK_NV_VIEWPORT_ARRAY_2_EXTENSION_NAME "VK_NV_viewport_array2" -#define VK_NV_VIEWPORT_ARRAY2_SPEC_VERSION VK_NV_VIEWPORT_ARRAY_2_SPEC_VERSION -#define VK_NV_VIEWPORT_ARRAY2_EXTENSION_NAME VK_NV_VIEWPORT_ARRAY_2_EXTENSION_NAME - - -#define VK_NVX_multiview_per_view_attributes 1 -#define VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_SPEC_VERSION 1 -#define VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_EXTENSION_NAME "VK_NVX_multiview_per_view_attributes" -typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX { - VkStructureType sType; - void* pNext; - VkBool32 perViewPositionAllComponents; -} VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX; - - - -#define VK_NV_viewport_swizzle 1 -#define VK_NV_VIEWPORT_SWIZZLE_SPEC_VERSION 1 -#define VK_NV_VIEWPORT_SWIZZLE_EXTENSION_NAME "VK_NV_viewport_swizzle" - -typedef enum VkViewportCoordinateSwizzleNV { - VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_X_NV = 0, - VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_X_NV = 1, - VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Y_NV = 2, - VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Y_NV = 3, - VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Z_NV = 4, - VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Z_NV = 5, - VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_W_NV = 6, - VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_W_NV = 7, - VK_VIEWPORT_COORDINATE_SWIZZLE_MAX_ENUM_NV = 0x7FFFFFFF -} VkViewportCoordinateSwizzleNV; -typedef VkFlags VkPipelineViewportSwizzleStateCreateFlagsNV; -typedef struct VkViewportSwizzleNV { - VkViewportCoordinateSwizzleNV x; - VkViewportCoordinateSwizzleNV y; - VkViewportCoordinateSwizzleNV z; - VkViewportCoordinateSwizzleNV w; -} VkViewportSwizzleNV; - -typedef struct VkPipelineViewportSwizzleStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineViewportSwizzleStateCreateFlagsNV flags; - uint32_t viewportCount; - const VkViewportSwizzleNV* pViewportSwizzles; -} VkPipelineViewportSwizzleStateCreateInfoNV; - - - -#define VK_EXT_discard_rectangles 1 -#define VK_EXT_DISCARD_RECTANGLES_SPEC_VERSION 1 -#define VK_EXT_DISCARD_RECTANGLES_EXTENSION_NAME "VK_EXT_discard_rectangles" - -typedef enum VkDiscardRectangleModeEXT { - VK_DISCARD_RECTANGLE_MODE_INCLUSIVE_EXT = 0, - VK_DISCARD_RECTANGLE_MODE_EXCLUSIVE_EXT = 1, - VK_DISCARD_RECTANGLE_MODE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDiscardRectangleModeEXT; -typedef VkFlags VkPipelineDiscardRectangleStateCreateFlagsEXT; -typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxDiscardRectangles; -} VkPhysicalDeviceDiscardRectanglePropertiesEXT; - -typedef struct VkPipelineDiscardRectangleStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkPipelineDiscardRectangleStateCreateFlagsEXT flags; - VkDiscardRectangleModeEXT discardRectangleMode; - uint32_t discardRectangleCount; - const VkRect2D* pDiscardRectangles; -} VkPipelineDiscardRectangleStateCreateInfoEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetDiscardRectangleEXT)(VkCommandBuffer commandBuffer, uint32_t firstDiscardRectangle, uint32_t discardRectangleCount, const VkRect2D* pDiscardRectangles); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetDiscardRectangleEXT( - VkCommandBuffer commandBuffer, - uint32_t firstDiscardRectangle, - uint32_t discardRectangleCount, - const VkRect2D* pDiscardRectangles); -#endif - - -#define VK_EXT_conservative_rasterization 1 -#define VK_EXT_CONSERVATIVE_RASTERIZATION_SPEC_VERSION 1 -#define VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME "VK_EXT_conservative_rasterization" - -typedef enum VkConservativeRasterizationModeEXT { - VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT = 0, - VK_CONSERVATIVE_RASTERIZATION_MODE_OVERESTIMATE_EXT = 1, - VK_CONSERVATIVE_RASTERIZATION_MODE_UNDERESTIMATE_EXT = 2, - VK_CONSERVATIVE_RASTERIZATION_MODE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkConservativeRasterizationModeEXT; -typedef VkFlags VkPipelineRasterizationConservativeStateCreateFlagsEXT; -typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT { - VkStructureType sType; - void* pNext; - float primitiveOverestimationSize; - float maxExtraPrimitiveOverestimationSize; - float extraPrimitiveOverestimationSizeGranularity; - VkBool32 primitiveUnderestimation; - VkBool32 conservativePointAndLineRasterization; - VkBool32 degenerateTrianglesRasterized; - VkBool32 degenerateLinesRasterized; - VkBool32 fullyCoveredFragmentShaderInputVariable; - VkBool32 conservativeRasterizationPostDepthCoverage; -} VkPhysicalDeviceConservativeRasterizationPropertiesEXT; - -typedef struct VkPipelineRasterizationConservativeStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkPipelineRasterizationConservativeStateCreateFlagsEXT flags; - VkConservativeRasterizationModeEXT conservativeRasterizationMode; - float extraPrimitiveOverestimationSize; -} VkPipelineRasterizationConservativeStateCreateInfoEXT; - - - -#define VK_EXT_depth_clip_enable 1 -#define VK_EXT_DEPTH_CLIP_ENABLE_SPEC_VERSION 1 -#define VK_EXT_DEPTH_CLIP_ENABLE_EXTENSION_NAME "VK_EXT_depth_clip_enable" -typedef VkFlags VkPipelineRasterizationDepthClipStateCreateFlagsEXT; -typedef struct VkPhysicalDeviceDepthClipEnableFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 depthClipEnable; -} VkPhysicalDeviceDepthClipEnableFeaturesEXT; - -typedef struct VkPipelineRasterizationDepthClipStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkPipelineRasterizationDepthClipStateCreateFlagsEXT flags; - VkBool32 depthClipEnable; -} VkPipelineRasterizationDepthClipStateCreateInfoEXT; - - - -#define VK_EXT_swapchain_colorspace 1 -#define VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION 4 -#define VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME "VK_EXT_swapchain_colorspace" - - -#define VK_EXT_hdr_metadata 1 -#define VK_EXT_HDR_METADATA_SPEC_VERSION 2 -#define VK_EXT_HDR_METADATA_EXTENSION_NAME "VK_EXT_hdr_metadata" -typedef struct VkXYColorEXT { - float x; - float y; -} VkXYColorEXT; - -typedef struct VkHdrMetadataEXT { - VkStructureType sType; - const void* pNext; - VkXYColorEXT displayPrimaryRed; - VkXYColorEXT displayPrimaryGreen; - VkXYColorEXT displayPrimaryBlue; - VkXYColorEXT whitePoint; - float maxLuminance; - float minLuminance; - float maxContentLightLevel; - float maxFrameAverageLightLevel; -} VkHdrMetadataEXT; - -typedef void (VKAPI_PTR *PFN_vkSetHdrMetadataEXT)(VkDevice device, uint32_t swapchainCount, const VkSwapchainKHR* pSwapchains, const VkHdrMetadataEXT* pMetadata); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkSetHdrMetadataEXT( - VkDevice device, - uint32_t swapchainCount, - const VkSwapchainKHR* pSwapchains, - const VkHdrMetadataEXT* pMetadata); -#endif - - -#define VK_EXT_external_memory_dma_buf 1 -#define VK_EXT_EXTERNAL_MEMORY_DMA_BUF_SPEC_VERSION 1 -#define VK_EXT_EXTERNAL_MEMORY_DMA_BUF_EXTENSION_NAME "VK_EXT_external_memory_dma_buf" - - -#define VK_EXT_queue_family_foreign 1 -#define VK_EXT_QUEUE_FAMILY_FOREIGN_SPEC_VERSION 1 -#define VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME "VK_EXT_queue_family_foreign" -#define VK_QUEUE_FAMILY_FOREIGN_EXT (~2U) - - -#define VK_EXT_debug_utils 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDebugUtilsMessengerEXT) -#define VK_EXT_DEBUG_UTILS_SPEC_VERSION 2 -#define VK_EXT_DEBUG_UTILS_EXTENSION_NAME "VK_EXT_debug_utils" -typedef VkFlags VkDebugUtilsMessengerCallbackDataFlagsEXT; - -typedef enum VkDebugUtilsMessageSeverityFlagBitsEXT { - VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT = 0x00000001, - VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT = 0x00000010, - VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT = 0x00000100, - VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT = 0x00001000, - VK_DEBUG_UTILS_MESSAGE_SEVERITY_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDebugUtilsMessageSeverityFlagBitsEXT; - -typedef enum VkDebugUtilsMessageTypeFlagBitsEXT { - VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT = 0x00000001, - VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT = 0x00000002, - VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT = 0x00000004, - VK_DEBUG_UTILS_MESSAGE_TYPE_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDebugUtilsMessageTypeFlagBitsEXT; -typedef VkFlags VkDebugUtilsMessageTypeFlagsEXT; -typedef VkFlags VkDebugUtilsMessageSeverityFlagsEXT; -typedef VkFlags VkDebugUtilsMessengerCreateFlagsEXT; -typedef struct VkDebugUtilsLabelEXT { - VkStructureType sType; - const void* pNext; - const char* pLabelName; - float color[4]; -} VkDebugUtilsLabelEXT; - -typedef struct VkDebugUtilsObjectNameInfoEXT { - VkStructureType sType; - const void* pNext; - VkObjectType objectType; - uint64_t objectHandle; - const char* pObjectName; -} VkDebugUtilsObjectNameInfoEXT; - -typedef struct VkDebugUtilsMessengerCallbackDataEXT { - VkStructureType sType; - const void* pNext; - VkDebugUtilsMessengerCallbackDataFlagsEXT flags; - const char* pMessageIdName; - int32_t messageIdNumber; - const char* pMessage; - uint32_t queueLabelCount; - const VkDebugUtilsLabelEXT* pQueueLabels; - uint32_t cmdBufLabelCount; - const VkDebugUtilsLabelEXT* pCmdBufLabels; - uint32_t objectCount; - const VkDebugUtilsObjectNameInfoEXT* pObjects; -} VkDebugUtilsMessengerCallbackDataEXT; - -typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( - VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VkDebugUtilsMessageTypeFlagsEXT messageTypes, - const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, - void* pUserData); - -typedef struct VkDebugUtilsMessengerCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkDebugUtilsMessengerCreateFlagsEXT flags; - VkDebugUtilsMessageSeverityFlagsEXT messageSeverity; - VkDebugUtilsMessageTypeFlagsEXT messageType; - PFN_vkDebugUtilsMessengerCallbackEXT pfnUserCallback; - void* pUserData; -} VkDebugUtilsMessengerCreateInfoEXT; - -typedef struct VkDebugUtilsObjectTagInfoEXT { - VkStructureType sType; - const void* pNext; - VkObjectType objectType; - uint64_t objectHandle; - uint64_t tagName; - size_t tagSize; - const void* pTag; -} VkDebugUtilsObjectTagInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkSetDebugUtilsObjectNameEXT)(VkDevice device, const VkDebugUtilsObjectNameInfoEXT* pNameInfo); -typedef VkResult (VKAPI_PTR *PFN_vkSetDebugUtilsObjectTagEXT)(VkDevice device, const VkDebugUtilsObjectTagInfoEXT* pTagInfo); -typedef void (VKAPI_PTR *PFN_vkQueueBeginDebugUtilsLabelEXT)(VkQueue queue, const VkDebugUtilsLabelEXT* pLabelInfo); -typedef void (VKAPI_PTR *PFN_vkQueueEndDebugUtilsLabelEXT)(VkQueue queue); -typedef void (VKAPI_PTR *PFN_vkQueueInsertDebugUtilsLabelEXT)(VkQueue queue, const VkDebugUtilsLabelEXT* pLabelInfo); -typedef void (VKAPI_PTR *PFN_vkCmdBeginDebugUtilsLabelEXT)(VkCommandBuffer commandBuffer, const VkDebugUtilsLabelEXT* pLabelInfo); -typedef void (VKAPI_PTR *PFN_vkCmdEndDebugUtilsLabelEXT)(VkCommandBuffer commandBuffer); -typedef void (VKAPI_PTR *PFN_vkCmdInsertDebugUtilsLabelEXT)(VkCommandBuffer commandBuffer, const VkDebugUtilsLabelEXT* pLabelInfo); -typedef VkResult (VKAPI_PTR *PFN_vkCreateDebugUtilsMessengerEXT)(VkInstance instance, const VkDebugUtilsMessengerCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDebugUtilsMessengerEXT* pMessenger); -typedef void (VKAPI_PTR *PFN_vkDestroyDebugUtilsMessengerEXT)(VkInstance instance, VkDebugUtilsMessengerEXT messenger, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkSubmitDebugUtilsMessageEXT)(VkInstance instance, VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDebugUtilsMessageTypeFlagsEXT messageTypes, const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkSetDebugUtilsObjectNameEXT( - VkDevice device, - const VkDebugUtilsObjectNameInfoEXT* pNameInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkSetDebugUtilsObjectTagEXT( - VkDevice device, - const VkDebugUtilsObjectTagInfoEXT* pTagInfo); - -VKAPI_ATTR void VKAPI_CALL vkQueueBeginDebugUtilsLabelEXT( - VkQueue queue, - const VkDebugUtilsLabelEXT* pLabelInfo); - -VKAPI_ATTR void VKAPI_CALL vkQueueEndDebugUtilsLabelEXT( - VkQueue queue); - -VKAPI_ATTR void VKAPI_CALL vkQueueInsertDebugUtilsLabelEXT( - VkQueue queue, - const VkDebugUtilsLabelEXT* pLabelInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdBeginDebugUtilsLabelEXT( - VkCommandBuffer commandBuffer, - const VkDebugUtilsLabelEXT* pLabelInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdEndDebugUtilsLabelEXT( - VkCommandBuffer commandBuffer); - -VKAPI_ATTR void VKAPI_CALL vkCmdInsertDebugUtilsLabelEXT( - VkCommandBuffer commandBuffer, - const VkDebugUtilsLabelEXT* pLabelInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDebugUtilsMessengerEXT( - VkInstance instance, - const VkDebugUtilsMessengerCreateInfoEXT* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkDebugUtilsMessengerEXT* pMessenger); - -VKAPI_ATTR void VKAPI_CALL vkDestroyDebugUtilsMessengerEXT( - VkInstance instance, - VkDebugUtilsMessengerEXT messenger, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkSubmitDebugUtilsMessageEXT( - VkInstance instance, - VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VkDebugUtilsMessageTypeFlagsEXT messageTypes, - const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData); -#endif - - -#define VK_EXT_sampler_filter_minmax 1 -#define VK_EXT_SAMPLER_FILTER_MINMAX_SPEC_VERSION 2 -#define VK_EXT_SAMPLER_FILTER_MINMAX_EXTENSION_NAME "VK_EXT_sampler_filter_minmax" -typedef VkSamplerReductionMode VkSamplerReductionModeEXT; - -typedef VkSamplerReductionModeCreateInfo VkSamplerReductionModeCreateInfoEXT; - -typedef VkPhysicalDeviceSamplerFilterMinmaxProperties VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT; - - - -#define VK_AMD_gpu_shader_int16 1 -#define VK_AMD_GPU_SHADER_INT16_SPEC_VERSION 2 -#define VK_AMD_GPU_SHADER_INT16_EXTENSION_NAME "VK_AMD_gpu_shader_int16" - - -#define VK_AMD_mixed_attachment_samples 1 -#define VK_AMD_MIXED_ATTACHMENT_SAMPLES_SPEC_VERSION 1 -#define VK_AMD_MIXED_ATTACHMENT_SAMPLES_EXTENSION_NAME "VK_AMD_mixed_attachment_samples" - - -#define VK_AMD_shader_fragment_mask 1 -#define VK_AMD_SHADER_FRAGMENT_MASK_SPEC_VERSION 1 -#define VK_AMD_SHADER_FRAGMENT_MASK_EXTENSION_NAME "VK_AMD_shader_fragment_mask" - - -#define VK_EXT_inline_uniform_block 1 -#define VK_EXT_INLINE_UNIFORM_BLOCK_SPEC_VERSION 1 -#define VK_EXT_INLINE_UNIFORM_BLOCK_EXTENSION_NAME "VK_EXT_inline_uniform_block" -typedef VkPhysicalDeviceInlineUniformBlockFeatures VkPhysicalDeviceInlineUniformBlockFeaturesEXT; - -typedef VkPhysicalDeviceInlineUniformBlockProperties VkPhysicalDeviceInlineUniformBlockPropertiesEXT; - -typedef VkWriteDescriptorSetInlineUniformBlock VkWriteDescriptorSetInlineUniformBlockEXT; - -typedef VkDescriptorPoolInlineUniformBlockCreateInfo VkDescriptorPoolInlineUniformBlockCreateInfoEXT; - - - -#define VK_EXT_shader_stencil_export 1 -#define VK_EXT_SHADER_STENCIL_EXPORT_SPEC_VERSION 1 -#define VK_EXT_SHADER_STENCIL_EXPORT_EXTENSION_NAME "VK_EXT_shader_stencil_export" - - -#define VK_EXT_sample_locations 1 -#define VK_EXT_SAMPLE_LOCATIONS_SPEC_VERSION 1 -#define VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME "VK_EXT_sample_locations" -typedef struct VkSampleLocationEXT { - float x; - float y; -} VkSampleLocationEXT; - -typedef struct VkSampleLocationsInfoEXT { - VkStructureType sType; - const void* pNext; - VkSampleCountFlagBits sampleLocationsPerPixel; - VkExtent2D sampleLocationGridSize; - uint32_t sampleLocationsCount; - const VkSampleLocationEXT* pSampleLocations; -} VkSampleLocationsInfoEXT; - -typedef struct VkAttachmentSampleLocationsEXT { - uint32_t attachmentIndex; - VkSampleLocationsInfoEXT sampleLocationsInfo; -} VkAttachmentSampleLocationsEXT; - -typedef struct VkSubpassSampleLocationsEXT { - uint32_t subpassIndex; - VkSampleLocationsInfoEXT sampleLocationsInfo; -} VkSubpassSampleLocationsEXT; - -typedef struct VkRenderPassSampleLocationsBeginInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t attachmentInitialSampleLocationsCount; - const VkAttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations; - uint32_t postSubpassSampleLocationsCount; - const VkSubpassSampleLocationsEXT* pPostSubpassSampleLocations; -} VkRenderPassSampleLocationsBeginInfoEXT; - -typedef struct VkPipelineSampleLocationsStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkBool32 sampleLocationsEnable; - VkSampleLocationsInfoEXT sampleLocationsInfo; -} VkPipelineSampleLocationsStateCreateInfoEXT; - -typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT { - VkStructureType sType; - void* pNext; - VkSampleCountFlags sampleLocationSampleCounts; - VkExtent2D maxSampleLocationGridSize; - float sampleLocationCoordinateRange[2]; - uint32_t sampleLocationSubPixelBits; - VkBool32 variableSampleLocations; -} VkPhysicalDeviceSampleLocationsPropertiesEXT; - -typedef struct VkMultisamplePropertiesEXT { - VkStructureType sType; - void* pNext; - VkExtent2D maxSampleLocationGridSize; -} VkMultisamplePropertiesEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetSampleLocationsEXT)(VkCommandBuffer commandBuffer, const VkSampleLocationsInfoEXT* pSampleLocationsInfo); -typedef void (VKAPI_PTR *PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT)(VkPhysicalDevice physicalDevice, VkSampleCountFlagBits samples, VkMultisamplePropertiesEXT* pMultisampleProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetSampleLocationsEXT( - VkCommandBuffer commandBuffer, - const VkSampleLocationsInfoEXT* pSampleLocationsInfo); - -VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceMultisamplePropertiesEXT( - VkPhysicalDevice physicalDevice, - VkSampleCountFlagBits samples, - VkMultisamplePropertiesEXT* pMultisampleProperties); -#endif - - -#define VK_EXT_blend_operation_advanced 1 -#define VK_EXT_BLEND_OPERATION_ADVANCED_SPEC_VERSION 2 -#define VK_EXT_BLEND_OPERATION_ADVANCED_EXTENSION_NAME "VK_EXT_blend_operation_advanced" - -typedef enum VkBlendOverlapEXT { - VK_BLEND_OVERLAP_UNCORRELATED_EXT = 0, - VK_BLEND_OVERLAP_DISJOINT_EXT = 1, - VK_BLEND_OVERLAP_CONJOINT_EXT = 2, - VK_BLEND_OVERLAP_MAX_ENUM_EXT = 0x7FFFFFFF -} VkBlendOverlapEXT; -typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 advancedBlendCoherentOperations; -} VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT; - -typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t advancedBlendMaxColorAttachments; - VkBool32 advancedBlendIndependentBlend; - VkBool32 advancedBlendNonPremultipliedSrcColor; - VkBool32 advancedBlendNonPremultipliedDstColor; - VkBool32 advancedBlendCorrelatedOverlap; - VkBool32 advancedBlendAllOperations; -} VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT; - -typedef struct VkPipelineColorBlendAdvancedStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkBool32 srcPremultiplied; - VkBool32 dstPremultiplied; - VkBlendOverlapEXT blendOverlap; -} VkPipelineColorBlendAdvancedStateCreateInfoEXT; - - - -#define VK_NV_fragment_coverage_to_color 1 -#define VK_NV_FRAGMENT_COVERAGE_TO_COLOR_SPEC_VERSION 1 -#define VK_NV_FRAGMENT_COVERAGE_TO_COLOR_EXTENSION_NAME "VK_NV_fragment_coverage_to_color" -typedef VkFlags VkPipelineCoverageToColorStateCreateFlagsNV; -typedef struct VkPipelineCoverageToColorStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineCoverageToColorStateCreateFlagsNV flags; - VkBool32 coverageToColorEnable; - uint32_t coverageToColorLocation; -} VkPipelineCoverageToColorStateCreateInfoNV; - - - -#define VK_NV_framebuffer_mixed_samples 1 -#define VK_NV_FRAMEBUFFER_MIXED_SAMPLES_SPEC_VERSION 1 -#define VK_NV_FRAMEBUFFER_MIXED_SAMPLES_EXTENSION_NAME "VK_NV_framebuffer_mixed_samples" - -typedef enum VkCoverageModulationModeNV { - VK_COVERAGE_MODULATION_MODE_NONE_NV = 0, - VK_COVERAGE_MODULATION_MODE_RGB_NV = 1, - VK_COVERAGE_MODULATION_MODE_ALPHA_NV = 2, - VK_COVERAGE_MODULATION_MODE_RGBA_NV = 3, - VK_COVERAGE_MODULATION_MODE_MAX_ENUM_NV = 0x7FFFFFFF -} VkCoverageModulationModeNV; -typedef VkFlags VkPipelineCoverageModulationStateCreateFlagsNV; -typedef struct VkPipelineCoverageModulationStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineCoverageModulationStateCreateFlagsNV flags; - VkCoverageModulationModeNV coverageModulationMode; - VkBool32 coverageModulationTableEnable; - uint32_t coverageModulationTableCount; - const float* pCoverageModulationTable; -} VkPipelineCoverageModulationStateCreateInfoNV; - - - -#define VK_NV_fill_rectangle 1 -#define VK_NV_FILL_RECTANGLE_SPEC_VERSION 1 -#define VK_NV_FILL_RECTANGLE_EXTENSION_NAME "VK_NV_fill_rectangle" - - -#define VK_NV_shader_sm_builtins 1 -#define VK_NV_SHADER_SM_BUILTINS_SPEC_VERSION 1 -#define VK_NV_SHADER_SM_BUILTINS_EXTENSION_NAME "VK_NV_shader_sm_builtins" -typedef struct VkPhysicalDeviceShaderSMBuiltinsPropertiesNV { - VkStructureType sType; - void* pNext; - uint32_t shaderSMCount; - uint32_t shaderWarpsPerSM; -} VkPhysicalDeviceShaderSMBuiltinsPropertiesNV; - -typedef struct VkPhysicalDeviceShaderSMBuiltinsFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 shaderSMBuiltins; -} VkPhysicalDeviceShaderSMBuiltinsFeaturesNV; - - - -#define VK_EXT_post_depth_coverage 1 -#define VK_EXT_POST_DEPTH_COVERAGE_SPEC_VERSION 1 -#define VK_EXT_POST_DEPTH_COVERAGE_EXTENSION_NAME "VK_EXT_post_depth_coverage" - - -#define VK_EXT_image_drm_format_modifier 1 -#define VK_EXT_IMAGE_DRM_FORMAT_MODIFIER_SPEC_VERSION 2 -#define VK_EXT_IMAGE_DRM_FORMAT_MODIFIER_EXTENSION_NAME "VK_EXT_image_drm_format_modifier" -typedef struct VkDrmFormatModifierPropertiesEXT { - uint64_t drmFormatModifier; - uint32_t drmFormatModifierPlaneCount; - VkFormatFeatureFlags drmFormatModifierTilingFeatures; -} VkDrmFormatModifierPropertiesEXT; - -typedef struct VkDrmFormatModifierPropertiesListEXT { - VkStructureType sType; - void* pNext; - uint32_t drmFormatModifierCount; - VkDrmFormatModifierPropertiesEXT* pDrmFormatModifierProperties; -} VkDrmFormatModifierPropertiesListEXT; - -typedef struct VkPhysicalDeviceImageDrmFormatModifierInfoEXT { - VkStructureType sType; - const void* pNext; - uint64_t drmFormatModifier; - VkSharingMode sharingMode; - uint32_t queueFamilyIndexCount; - const uint32_t* pQueueFamilyIndices; -} VkPhysicalDeviceImageDrmFormatModifierInfoEXT; - -typedef struct VkImageDrmFormatModifierListCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t drmFormatModifierCount; - const uint64_t* pDrmFormatModifiers; -} VkImageDrmFormatModifierListCreateInfoEXT; - -typedef struct VkImageDrmFormatModifierExplicitCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint64_t drmFormatModifier; - uint32_t drmFormatModifierPlaneCount; - const VkSubresourceLayout* pPlaneLayouts; -} VkImageDrmFormatModifierExplicitCreateInfoEXT; - -typedef struct VkImageDrmFormatModifierPropertiesEXT { - VkStructureType sType; - void* pNext; - uint64_t drmFormatModifier; -} VkImageDrmFormatModifierPropertiesEXT; - -typedef struct VkDrmFormatModifierProperties2EXT { - uint64_t drmFormatModifier; - uint32_t drmFormatModifierPlaneCount; - VkFormatFeatureFlags2 drmFormatModifierTilingFeatures; -} VkDrmFormatModifierProperties2EXT; - -typedef struct VkDrmFormatModifierPropertiesList2EXT { - VkStructureType sType; - void* pNext; - uint32_t drmFormatModifierCount; - VkDrmFormatModifierProperties2EXT* pDrmFormatModifierProperties; -} VkDrmFormatModifierPropertiesList2EXT; - -typedef VkResult (VKAPI_PTR *PFN_vkGetImageDrmFormatModifierPropertiesEXT)(VkDevice device, VkImage image, VkImageDrmFormatModifierPropertiesEXT* pProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetImageDrmFormatModifierPropertiesEXT( - VkDevice device, - VkImage image, - VkImageDrmFormatModifierPropertiesEXT* pProperties); -#endif - - -#define VK_EXT_validation_cache 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkValidationCacheEXT) -#define VK_EXT_VALIDATION_CACHE_SPEC_VERSION 1 -#define VK_EXT_VALIDATION_CACHE_EXTENSION_NAME "VK_EXT_validation_cache" - -typedef enum VkValidationCacheHeaderVersionEXT { - VK_VALIDATION_CACHE_HEADER_VERSION_ONE_EXT = 1, - VK_VALIDATION_CACHE_HEADER_VERSION_MAX_ENUM_EXT = 0x7FFFFFFF -} VkValidationCacheHeaderVersionEXT; -typedef VkFlags VkValidationCacheCreateFlagsEXT; -typedef struct VkValidationCacheCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkValidationCacheCreateFlagsEXT flags; - size_t initialDataSize; - const void* pInitialData; -} VkValidationCacheCreateInfoEXT; - -typedef struct VkShaderModuleValidationCacheCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkValidationCacheEXT validationCache; -} VkShaderModuleValidationCacheCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateValidationCacheEXT)(VkDevice device, const VkValidationCacheCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkValidationCacheEXT* pValidationCache); -typedef void (VKAPI_PTR *PFN_vkDestroyValidationCacheEXT)(VkDevice device, VkValidationCacheEXT validationCache, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkMergeValidationCachesEXT)(VkDevice device, VkValidationCacheEXT dstCache, uint32_t srcCacheCount, const VkValidationCacheEXT* pSrcCaches); -typedef VkResult (VKAPI_PTR *PFN_vkGetValidationCacheDataEXT)(VkDevice device, VkValidationCacheEXT validationCache, size_t* pDataSize, void* pData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateValidationCacheEXT( - VkDevice device, - const VkValidationCacheCreateInfoEXT* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkValidationCacheEXT* pValidationCache); - -VKAPI_ATTR void VKAPI_CALL vkDestroyValidationCacheEXT( - VkDevice device, - VkValidationCacheEXT validationCache, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkMergeValidationCachesEXT( - VkDevice device, - VkValidationCacheEXT dstCache, - uint32_t srcCacheCount, - const VkValidationCacheEXT* pSrcCaches); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetValidationCacheDataEXT( - VkDevice device, - VkValidationCacheEXT validationCache, - size_t* pDataSize, - void* pData); -#endif - - -#define VK_EXT_descriptor_indexing 1 -#define VK_EXT_DESCRIPTOR_INDEXING_SPEC_VERSION 2 -#define VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME "VK_EXT_descriptor_indexing" -typedef VkDescriptorBindingFlagBits VkDescriptorBindingFlagBitsEXT; - -typedef VkDescriptorBindingFlags VkDescriptorBindingFlagsEXT; - -typedef VkDescriptorSetLayoutBindingFlagsCreateInfo VkDescriptorSetLayoutBindingFlagsCreateInfoEXT; - -typedef VkPhysicalDeviceDescriptorIndexingFeatures VkPhysicalDeviceDescriptorIndexingFeaturesEXT; - -typedef VkPhysicalDeviceDescriptorIndexingProperties VkPhysicalDeviceDescriptorIndexingPropertiesEXT; - -typedef VkDescriptorSetVariableDescriptorCountAllocateInfo VkDescriptorSetVariableDescriptorCountAllocateInfoEXT; - -typedef VkDescriptorSetVariableDescriptorCountLayoutSupport VkDescriptorSetVariableDescriptorCountLayoutSupportEXT; - - - -#define VK_EXT_shader_viewport_index_layer 1 -#define VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_SPEC_VERSION 1 -#define VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_EXTENSION_NAME "VK_EXT_shader_viewport_index_layer" - - -#define VK_NV_shading_rate_image 1 -#define VK_NV_SHADING_RATE_IMAGE_SPEC_VERSION 3 -#define VK_NV_SHADING_RATE_IMAGE_EXTENSION_NAME "VK_NV_shading_rate_image" - -typedef enum VkShadingRatePaletteEntryNV { - VK_SHADING_RATE_PALETTE_ENTRY_NO_INVOCATIONS_NV = 0, - VK_SHADING_RATE_PALETTE_ENTRY_16_INVOCATIONS_PER_PIXEL_NV = 1, - VK_SHADING_RATE_PALETTE_ENTRY_8_INVOCATIONS_PER_PIXEL_NV = 2, - VK_SHADING_RATE_PALETTE_ENTRY_4_INVOCATIONS_PER_PIXEL_NV = 3, - VK_SHADING_RATE_PALETTE_ENTRY_2_INVOCATIONS_PER_PIXEL_NV = 4, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_PIXEL_NV = 5, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X1_PIXELS_NV = 6, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_1X2_PIXELS_NV = 7, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X2_PIXELS_NV = 8, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_4X2_PIXELS_NV = 9, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X4_PIXELS_NV = 10, - VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_4X4_PIXELS_NV = 11, - VK_SHADING_RATE_PALETTE_ENTRY_MAX_ENUM_NV = 0x7FFFFFFF -} VkShadingRatePaletteEntryNV; - -typedef enum VkCoarseSampleOrderTypeNV { - VK_COARSE_SAMPLE_ORDER_TYPE_DEFAULT_NV = 0, - VK_COARSE_SAMPLE_ORDER_TYPE_CUSTOM_NV = 1, - VK_COARSE_SAMPLE_ORDER_TYPE_PIXEL_MAJOR_NV = 2, - VK_COARSE_SAMPLE_ORDER_TYPE_SAMPLE_MAJOR_NV = 3, - VK_COARSE_SAMPLE_ORDER_TYPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkCoarseSampleOrderTypeNV; -typedef struct VkShadingRatePaletteNV { - uint32_t shadingRatePaletteEntryCount; - const VkShadingRatePaletteEntryNV* pShadingRatePaletteEntries; -} VkShadingRatePaletteNV; - -typedef struct VkPipelineViewportShadingRateImageStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkBool32 shadingRateImageEnable; - uint32_t viewportCount; - const VkShadingRatePaletteNV* pShadingRatePalettes; -} VkPipelineViewportShadingRateImageStateCreateInfoNV; - -typedef struct VkPhysicalDeviceShadingRateImageFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 shadingRateImage; - VkBool32 shadingRateCoarseSampleOrder; -} VkPhysicalDeviceShadingRateImageFeaturesNV; - -typedef struct VkPhysicalDeviceShadingRateImagePropertiesNV { - VkStructureType sType; - void* pNext; - VkExtent2D shadingRateTexelSize; - uint32_t shadingRatePaletteSize; - uint32_t shadingRateMaxCoarseSamples; -} VkPhysicalDeviceShadingRateImagePropertiesNV; - -typedef struct VkCoarseSampleLocationNV { - uint32_t pixelX; - uint32_t pixelY; - uint32_t sample; -} VkCoarseSampleLocationNV; - -typedef struct VkCoarseSampleOrderCustomNV { - VkShadingRatePaletteEntryNV shadingRate; - uint32_t sampleCount; - uint32_t sampleLocationCount; - const VkCoarseSampleLocationNV* pSampleLocations; -} VkCoarseSampleOrderCustomNV; - -typedef struct VkPipelineViewportCoarseSampleOrderStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkCoarseSampleOrderTypeNV sampleOrderType; - uint32_t customSampleOrderCount; - const VkCoarseSampleOrderCustomNV* pCustomSampleOrders; -} VkPipelineViewportCoarseSampleOrderStateCreateInfoNV; - -typedef void (VKAPI_PTR *PFN_vkCmdBindShadingRateImageNV)(VkCommandBuffer commandBuffer, VkImageView imageView, VkImageLayout imageLayout); -typedef void (VKAPI_PTR *PFN_vkCmdSetViewportShadingRatePaletteNV)(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const VkShadingRatePaletteNV* pShadingRatePalettes); -typedef void (VKAPI_PTR *PFN_vkCmdSetCoarseSampleOrderNV)(VkCommandBuffer commandBuffer, VkCoarseSampleOrderTypeNV sampleOrderType, uint32_t customSampleOrderCount, const VkCoarseSampleOrderCustomNV* pCustomSampleOrders); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdBindShadingRateImageNV( - VkCommandBuffer commandBuffer, - VkImageView imageView, - VkImageLayout imageLayout); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetViewportShadingRatePaletteNV( - VkCommandBuffer commandBuffer, - uint32_t firstViewport, - uint32_t viewportCount, - const VkShadingRatePaletteNV* pShadingRatePalettes); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetCoarseSampleOrderNV( - VkCommandBuffer commandBuffer, - VkCoarseSampleOrderTypeNV sampleOrderType, - uint32_t customSampleOrderCount, - const VkCoarseSampleOrderCustomNV* pCustomSampleOrders); -#endif - - -#define VK_NV_ray_tracing 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkAccelerationStructureNV) -#define VK_NV_RAY_TRACING_SPEC_VERSION 3 -#define VK_NV_RAY_TRACING_EXTENSION_NAME "VK_NV_ray_tracing" -#define VK_SHADER_UNUSED_KHR (~0U) -#define VK_SHADER_UNUSED_NV VK_SHADER_UNUSED_KHR - -typedef enum VkRayTracingShaderGroupTypeKHR { - VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_KHR = 0, - VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_KHR = 1, - VK_RAY_TRACING_SHADER_GROUP_TYPE_PROCEDURAL_HIT_GROUP_KHR = 2, - VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_NV = VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_KHR, - VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_NV = VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_KHR, - VK_RAY_TRACING_SHADER_GROUP_TYPE_PROCEDURAL_HIT_GROUP_NV = VK_RAY_TRACING_SHADER_GROUP_TYPE_PROCEDURAL_HIT_GROUP_KHR, - VK_RAY_TRACING_SHADER_GROUP_TYPE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkRayTracingShaderGroupTypeKHR; -typedef VkRayTracingShaderGroupTypeKHR VkRayTracingShaderGroupTypeNV; - - -typedef enum VkGeometryTypeKHR { - VK_GEOMETRY_TYPE_TRIANGLES_KHR = 0, - VK_GEOMETRY_TYPE_AABBS_KHR = 1, - VK_GEOMETRY_TYPE_INSTANCES_KHR = 2, - VK_GEOMETRY_TYPE_TRIANGLES_NV = VK_GEOMETRY_TYPE_TRIANGLES_KHR, - VK_GEOMETRY_TYPE_AABBS_NV = VK_GEOMETRY_TYPE_AABBS_KHR, - VK_GEOMETRY_TYPE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkGeometryTypeKHR; -typedef VkGeometryTypeKHR VkGeometryTypeNV; - - -typedef enum VkAccelerationStructureTypeKHR { - VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR = 0, - VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR = 1, - VK_ACCELERATION_STRUCTURE_TYPE_GENERIC_KHR = 2, - VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_NV = VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR, - VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_NV = VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR, - VK_ACCELERATION_STRUCTURE_TYPE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkAccelerationStructureTypeKHR; -typedef VkAccelerationStructureTypeKHR VkAccelerationStructureTypeNV; - - -typedef enum VkCopyAccelerationStructureModeKHR { - VK_COPY_ACCELERATION_STRUCTURE_MODE_CLONE_KHR = 0, - VK_COPY_ACCELERATION_STRUCTURE_MODE_COMPACT_KHR = 1, - VK_COPY_ACCELERATION_STRUCTURE_MODE_SERIALIZE_KHR = 2, - VK_COPY_ACCELERATION_STRUCTURE_MODE_DESERIALIZE_KHR = 3, - VK_COPY_ACCELERATION_STRUCTURE_MODE_CLONE_NV = VK_COPY_ACCELERATION_STRUCTURE_MODE_CLONE_KHR, - VK_COPY_ACCELERATION_STRUCTURE_MODE_COMPACT_NV = VK_COPY_ACCELERATION_STRUCTURE_MODE_COMPACT_KHR, - VK_COPY_ACCELERATION_STRUCTURE_MODE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkCopyAccelerationStructureModeKHR; -typedef VkCopyAccelerationStructureModeKHR VkCopyAccelerationStructureModeNV; - - -typedef enum VkAccelerationStructureMemoryRequirementsTypeNV { - VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_OBJECT_NV = 0, - VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_BUILD_SCRATCH_NV = 1, - VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_UPDATE_SCRATCH_NV = 2, - VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkAccelerationStructureMemoryRequirementsTypeNV; - -typedef enum VkGeometryFlagBitsKHR { - VK_GEOMETRY_OPAQUE_BIT_KHR = 0x00000001, - VK_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT_KHR = 0x00000002, - VK_GEOMETRY_OPAQUE_BIT_NV = VK_GEOMETRY_OPAQUE_BIT_KHR, - VK_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT_NV = VK_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT_KHR, - VK_GEOMETRY_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkGeometryFlagBitsKHR; -typedef VkFlags VkGeometryFlagsKHR; -typedef VkGeometryFlagsKHR VkGeometryFlagsNV; - -typedef VkGeometryFlagBitsKHR VkGeometryFlagBitsNV; - - -typedef enum VkGeometryInstanceFlagBitsKHR { - VK_GEOMETRY_INSTANCE_TRIANGLE_FACING_CULL_DISABLE_BIT_KHR = 0x00000001, - VK_GEOMETRY_INSTANCE_TRIANGLE_FLIP_FACING_BIT_KHR = 0x00000002, - VK_GEOMETRY_INSTANCE_FORCE_OPAQUE_BIT_KHR = 0x00000004, - VK_GEOMETRY_INSTANCE_FORCE_NO_OPAQUE_BIT_KHR = 0x00000008, - VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_KHR = VK_GEOMETRY_INSTANCE_TRIANGLE_FLIP_FACING_BIT_KHR, - VK_GEOMETRY_INSTANCE_TRIANGLE_CULL_DISABLE_BIT_NV = VK_GEOMETRY_INSTANCE_TRIANGLE_FACING_CULL_DISABLE_BIT_KHR, - VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_NV = VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_KHR, - VK_GEOMETRY_INSTANCE_FORCE_OPAQUE_BIT_NV = VK_GEOMETRY_INSTANCE_FORCE_OPAQUE_BIT_KHR, - VK_GEOMETRY_INSTANCE_FORCE_NO_OPAQUE_BIT_NV = VK_GEOMETRY_INSTANCE_FORCE_NO_OPAQUE_BIT_KHR, - VK_GEOMETRY_INSTANCE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkGeometryInstanceFlagBitsKHR; -typedef VkFlags VkGeometryInstanceFlagsKHR; -typedef VkGeometryInstanceFlagsKHR VkGeometryInstanceFlagsNV; - -typedef VkGeometryInstanceFlagBitsKHR VkGeometryInstanceFlagBitsNV; - - -typedef enum VkBuildAccelerationStructureFlagBitsKHR { - VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT_KHR = 0x00000001, - VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT_KHR = 0x00000002, - VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR = 0x00000004, - VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT_KHR = 0x00000008, - VK_BUILD_ACCELERATION_STRUCTURE_LOW_MEMORY_BIT_KHR = 0x00000010, - VK_BUILD_ACCELERATION_STRUCTURE_MOTION_BIT_NV = 0x00000020, - VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT_NV = VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT_KHR, - VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT_NV = VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT_KHR, - VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_NV = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR, - VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT_NV = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT_KHR, - VK_BUILD_ACCELERATION_STRUCTURE_LOW_MEMORY_BIT_NV = VK_BUILD_ACCELERATION_STRUCTURE_LOW_MEMORY_BIT_KHR, - VK_BUILD_ACCELERATION_STRUCTURE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkBuildAccelerationStructureFlagBitsKHR; -typedef VkFlags VkBuildAccelerationStructureFlagsKHR; -typedef VkBuildAccelerationStructureFlagsKHR VkBuildAccelerationStructureFlagsNV; - -typedef VkBuildAccelerationStructureFlagBitsKHR VkBuildAccelerationStructureFlagBitsNV; - -typedef struct VkRayTracingShaderGroupCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkRayTracingShaderGroupTypeKHR type; - uint32_t generalShader; - uint32_t closestHitShader; - uint32_t anyHitShader; - uint32_t intersectionShader; -} VkRayTracingShaderGroupCreateInfoNV; - -typedef struct VkRayTracingPipelineCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineCreateFlags flags; - uint32_t stageCount; - const VkPipelineShaderStageCreateInfo* pStages; - uint32_t groupCount; - const VkRayTracingShaderGroupCreateInfoNV* pGroups; - uint32_t maxRecursionDepth; - VkPipelineLayout layout; - VkPipeline basePipelineHandle; - int32_t basePipelineIndex; -} VkRayTracingPipelineCreateInfoNV; - -typedef struct VkGeometryTrianglesNV { - VkStructureType sType; - const void* pNext; - VkBuffer vertexData; - VkDeviceSize vertexOffset; - uint32_t vertexCount; - VkDeviceSize vertexStride; - VkFormat vertexFormat; - VkBuffer indexData; - VkDeviceSize indexOffset; - uint32_t indexCount; - VkIndexType indexType; - VkBuffer transformData; - VkDeviceSize transformOffset; -} VkGeometryTrianglesNV; - -typedef struct VkGeometryAABBNV { - VkStructureType sType; - const void* pNext; - VkBuffer aabbData; - uint32_t numAABBs; - uint32_t stride; - VkDeviceSize offset; -} VkGeometryAABBNV; - -typedef struct VkGeometryDataNV { - VkGeometryTrianglesNV triangles; - VkGeometryAABBNV aabbs; -} VkGeometryDataNV; - -typedef struct VkGeometryNV { - VkStructureType sType; - const void* pNext; - VkGeometryTypeKHR geometryType; - VkGeometryDataNV geometry; - VkGeometryFlagsKHR flags; -} VkGeometryNV; - -typedef struct VkAccelerationStructureInfoNV { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureTypeNV type; - VkBuildAccelerationStructureFlagsNV flags; - uint32_t instanceCount; - uint32_t geometryCount; - const VkGeometryNV* pGeometries; -} VkAccelerationStructureInfoNV; - -typedef struct VkAccelerationStructureCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkDeviceSize compactedSize; - VkAccelerationStructureInfoNV info; -} VkAccelerationStructureCreateInfoNV; - -typedef struct VkBindAccelerationStructureMemoryInfoNV { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureNV accelerationStructure; - VkDeviceMemory memory; - VkDeviceSize memoryOffset; - uint32_t deviceIndexCount; - const uint32_t* pDeviceIndices; -} VkBindAccelerationStructureMemoryInfoNV; - -typedef struct VkWriteDescriptorSetAccelerationStructureNV { - VkStructureType sType; - const void* pNext; - uint32_t accelerationStructureCount; - const VkAccelerationStructureNV* pAccelerationStructures; -} VkWriteDescriptorSetAccelerationStructureNV; - -typedef struct VkAccelerationStructureMemoryRequirementsInfoNV { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureMemoryRequirementsTypeNV type; - VkAccelerationStructureNV accelerationStructure; -} VkAccelerationStructureMemoryRequirementsInfoNV; - -typedef struct VkPhysicalDeviceRayTracingPropertiesNV { - VkStructureType sType; - void* pNext; - uint32_t shaderGroupHandleSize; - uint32_t maxRecursionDepth; - uint32_t maxShaderGroupStride; - uint32_t shaderGroupBaseAlignment; - uint64_t maxGeometryCount; - uint64_t maxInstanceCount; - uint64_t maxTriangleCount; - uint32_t maxDescriptorSetAccelerationStructures; -} VkPhysicalDeviceRayTracingPropertiesNV; - -typedef struct VkTransformMatrixKHR { - float matrix[3][4]; -} VkTransformMatrixKHR; - -typedef VkTransformMatrixKHR VkTransformMatrixNV; - -typedef struct VkAabbPositionsKHR { - float minX; - float minY; - float minZ; - float maxX; - float maxY; - float maxZ; -} VkAabbPositionsKHR; - -typedef VkAabbPositionsKHR VkAabbPositionsNV; - -typedef struct VkAccelerationStructureInstanceKHR { - VkTransformMatrixKHR transform; - uint32_t instanceCustomIndex:24; - uint32_t mask:8; - uint32_t instanceShaderBindingTableRecordOffset:24; - VkGeometryInstanceFlagsKHR flags:8; - uint64_t accelerationStructureReference; -} VkAccelerationStructureInstanceKHR; - -typedef VkAccelerationStructureInstanceKHR VkAccelerationStructureInstanceNV; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateAccelerationStructureNV)(VkDevice device, const VkAccelerationStructureCreateInfoNV* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkAccelerationStructureNV* pAccelerationStructure); -typedef void (VKAPI_PTR *PFN_vkDestroyAccelerationStructureNV)(VkDevice device, VkAccelerationStructureNV accelerationStructure, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkGetAccelerationStructureMemoryRequirementsNV)(VkDevice device, const VkAccelerationStructureMemoryRequirementsInfoNV* pInfo, VkMemoryRequirements2KHR* pMemoryRequirements); -typedef VkResult (VKAPI_PTR *PFN_vkBindAccelerationStructureMemoryNV)(VkDevice device, uint32_t bindInfoCount, const VkBindAccelerationStructureMemoryInfoNV* pBindInfos); -typedef void (VKAPI_PTR *PFN_vkCmdBuildAccelerationStructureNV)(VkCommandBuffer commandBuffer, const VkAccelerationStructureInfoNV* pInfo, VkBuffer instanceData, VkDeviceSize instanceOffset, VkBool32 update, VkAccelerationStructureNV dst, VkAccelerationStructureNV src, VkBuffer scratch, VkDeviceSize scratchOffset); -typedef void (VKAPI_PTR *PFN_vkCmdCopyAccelerationStructureNV)(VkCommandBuffer commandBuffer, VkAccelerationStructureNV dst, VkAccelerationStructureNV src, VkCopyAccelerationStructureModeKHR mode); -typedef void (VKAPI_PTR *PFN_vkCmdTraceRaysNV)(VkCommandBuffer commandBuffer, VkBuffer raygenShaderBindingTableBuffer, VkDeviceSize raygenShaderBindingOffset, VkBuffer missShaderBindingTableBuffer, VkDeviceSize missShaderBindingOffset, VkDeviceSize missShaderBindingStride, VkBuffer hitShaderBindingTableBuffer, VkDeviceSize hitShaderBindingOffset, VkDeviceSize hitShaderBindingStride, VkBuffer callableShaderBindingTableBuffer, VkDeviceSize callableShaderBindingOffset, VkDeviceSize callableShaderBindingStride, uint32_t width, uint32_t height, uint32_t depth); -typedef VkResult (VKAPI_PTR *PFN_vkCreateRayTracingPipelinesNV)(VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const VkRayTracingPipelineCreateInfoNV* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines); -typedef VkResult (VKAPI_PTR *PFN_vkGetRayTracingShaderGroupHandlesKHR)(VkDevice device, VkPipeline pipeline, uint32_t firstGroup, uint32_t groupCount, size_t dataSize, void* pData); -typedef VkResult (VKAPI_PTR *PFN_vkGetRayTracingShaderGroupHandlesNV)(VkDevice device, VkPipeline pipeline, uint32_t firstGroup, uint32_t groupCount, size_t dataSize, void* pData); -typedef VkResult (VKAPI_PTR *PFN_vkGetAccelerationStructureHandleNV)(VkDevice device, VkAccelerationStructureNV accelerationStructure, size_t dataSize, void* pData); -typedef void (VKAPI_PTR *PFN_vkCmdWriteAccelerationStructuresPropertiesNV)(VkCommandBuffer commandBuffer, uint32_t accelerationStructureCount, const VkAccelerationStructureNV* pAccelerationStructures, VkQueryType queryType, VkQueryPool queryPool, uint32_t firstQuery); -typedef VkResult (VKAPI_PTR *PFN_vkCompileDeferredNV)(VkDevice device, VkPipeline pipeline, uint32_t shader); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateAccelerationStructureNV( - VkDevice device, - const VkAccelerationStructureCreateInfoNV* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkAccelerationStructureNV* pAccelerationStructure); - -VKAPI_ATTR void VKAPI_CALL vkDestroyAccelerationStructureNV( - VkDevice device, - VkAccelerationStructureNV accelerationStructure, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkGetAccelerationStructureMemoryRequirementsNV( - VkDevice device, - const VkAccelerationStructureMemoryRequirementsInfoNV* pInfo, - VkMemoryRequirements2KHR* pMemoryRequirements); - -VKAPI_ATTR VkResult VKAPI_CALL vkBindAccelerationStructureMemoryNV( - VkDevice device, - uint32_t bindInfoCount, - const VkBindAccelerationStructureMemoryInfoNV* pBindInfos); - -VKAPI_ATTR void VKAPI_CALL vkCmdBuildAccelerationStructureNV( - VkCommandBuffer commandBuffer, - const VkAccelerationStructureInfoNV* pInfo, - VkBuffer instanceData, - VkDeviceSize instanceOffset, - VkBool32 update, - VkAccelerationStructureNV dst, - VkAccelerationStructureNV src, - VkBuffer scratch, - VkDeviceSize scratchOffset); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyAccelerationStructureNV( - VkCommandBuffer commandBuffer, - VkAccelerationStructureNV dst, - VkAccelerationStructureNV src, - VkCopyAccelerationStructureModeKHR mode); - -VKAPI_ATTR void VKAPI_CALL vkCmdTraceRaysNV( - VkCommandBuffer commandBuffer, - VkBuffer raygenShaderBindingTableBuffer, - VkDeviceSize raygenShaderBindingOffset, - VkBuffer missShaderBindingTableBuffer, - VkDeviceSize missShaderBindingOffset, - VkDeviceSize missShaderBindingStride, - VkBuffer hitShaderBindingTableBuffer, - VkDeviceSize hitShaderBindingOffset, - VkDeviceSize hitShaderBindingStride, - VkBuffer callableShaderBindingTableBuffer, - VkDeviceSize callableShaderBindingOffset, - VkDeviceSize callableShaderBindingStride, - uint32_t width, - uint32_t height, - uint32_t depth); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateRayTracingPipelinesNV( - VkDevice device, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkRayTracingPipelineCreateInfoNV* pCreateInfos, - const VkAllocationCallbacks* pAllocator, - VkPipeline* pPipelines); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetRayTracingShaderGroupHandlesKHR( - VkDevice device, - VkPipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void* pData); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetRayTracingShaderGroupHandlesNV( - VkDevice device, - VkPipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void* pData); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetAccelerationStructureHandleNV( - VkDevice device, - VkAccelerationStructureNV accelerationStructure, - size_t dataSize, - void* pData); - -VKAPI_ATTR void VKAPI_CALL vkCmdWriteAccelerationStructuresPropertiesNV( - VkCommandBuffer commandBuffer, - uint32_t accelerationStructureCount, - const VkAccelerationStructureNV* pAccelerationStructures, - VkQueryType queryType, - VkQueryPool queryPool, - uint32_t firstQuery); - -VKAPI_ATTR VkResult VKAPI_CALL vkCompileDeferredNV( - VkDevice device, - VkPipeline pipeline, - uint32_t shader); -#endif - - -#define VK_NV_representative_fragment_test 1 -#define VK_NV_REPRESENTATIVE_FRAGMENT_TEST_SPEC_VERSION 2 -#define VK_NV_REPRESENTATIVE_FRAGMENT_TEST_EXTENSION_NAME "VK_NV_representative_fragment_test" -typedef struct VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 representativeFragmentTest; -} VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV; - -typedef struct VkPipelineRepresentativeFragmentTestStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkBool32 representativeFragmentTestEnable; -} VkPipelineRepresentativeFragmentTestStateCreateInfoNV; - - - -#define VK_EXT_filter_cubic 1 -#define VK_EXT_FILTER_CUBIC_SPEC_VERSION 3 -#define VK_EXT_FILTER_CUBIC_EXTENSION_NAME "VK_EXT_filter_cubic" -typedef struct VkPhysicalDeviceImageViewImageFormatInfoEXT { - VkStructureType sType; - void* pNext; - VkImageViewType imageViewType; -} VkPhysicalDeviceImageViewImageFormatInfoEXT; - -typedef struct VkFilterCubicImageViewImageFormatPropertiesEXT { - VkStructureType sType; - void* pNext; - VkBool32 filterCubic; - VkBool32 filterCubicMinmax; -} VkFilterCubicImageViewImageFormatPropertiesEXT; - - - -#define VK_QCOM_render_pass_shader_resolve 1 -#define VK_QCOM_RENDER_PASS_SHADER_RESOLVE_SPEC_VERSION 4 -#define VK_QCOM_RENDER_PASS_SHADER_RESOLVE_EXTENSION_NAME "VK_QCOM_render_pass_shader_resolve" - - -#define VK_EXT_global_priority 1 -#define VK_EXT_GLOBAL_PRIORITY_SPEC_VERSION 2 -#define VK_EXT_GLOBAL_PRIORITY_EXTENSION_NAME "VK_EXT_global_priority" -typedef VkQueueGlobalPriorityKHR VkQueueGlobalPriorityEXT; - -typedef VkDeviceQueueGlobalPriorityCreateInfoKHR VkDeviceQueueGlobalPriorityCreateInfoEXT; - - - -#define VK_EXT_external_memory_host 1 -#define VK_EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION 1 -#define VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME "VK_EXT_external_memory_host" -typedef struct VkImportMemoryHostPointerInfoEXT { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagBits handleType; - void* pHostPointer; -} VkImportMemoryHostPointerInfoEXT; - -typedef struct VkMemoryHostPointerPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t memoryTypeBits; -} VkMemoryHostPointerPropertiesEXT; - -typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT { - VkStructureType sType; - void* pNext; - VkDeviceSize minImportedHostPointerAlignment; -} VkPhysicalDeviceExternalMemoryHostPropertiesEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryHostPointerPropertiesEXT)(VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, const void* pHostPointer, VkMemoryHostPointerPropertiesEXT* pMemoryHostPointerProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryHostPointerPropertiesEXT( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - const void* pHostPointer, - VkMemoryHostPointerPropertiesEXT* pMemoryHostPointerProperties); -#endif - - -#define VK_AMD_buffer_marker 1 -#define VK_AMD_BUFFER_MARKER_SPEC_VERSION 1 -#define VK_AMD_BUFFER_MARKER_EXTENSION_NAME "VK_AMD_buffer_marker" -typedef void (VKAPI_PTR *PFN_vkCmdWriteBufferMarkerAMD)(VkCommandBuffer commandBuffer, VkPipelineStageFlagBits pipelineStage, VkBuffer dstBuffer, VkDeviceSize dstOffset, uint32_t marker); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdWriteBufferMarkerAMD( - VkCommandBuffer commandBuffer, - VkPipelineStageFlagBits pipelineStage, - VkBuffer dstBuffer, - VkDeviceSize dstOffset, - uint32_t marker); -#endif - - -#define VK_AMD_pipeline_compiler_control 1 -#define VK_AMD_PIPELINE_COMPILER_CONTROL_SPEC_VERSION 1 -#define VK_AMD_PIPELINE_COMPILER_CONTROL_EXTENSION_NAME "VK_AMD_pipeline_compiler_control" - -typedef enum VkPipelineCompilerControlFlagBitsAMD { - VK_PIPELINE_COMPILER_CONTROL_FLAG_BITS_MAX_ENUM_AMD = 0x7FFFFFFF -} VkPipelineCompilerControlFlagBitsAMD; -typedef VkFlags VkPipelineCompilerControlFlagsAMD; -typedef struct VkPipelineCompilerControlCreateInfoAMD { - VkStructureType sType; - const void* pNext; - VkPipelineCompilerControlFlagsAMD compilerControlFlags; -} VkPipelineCompilerControlCreateInfoAMD; - - - -#define VK_EXT_calibrated_timestamps 1 -#define VK_EXT_CALIBRATED_TIMESTAMPS_SPEC_VERSION 2 -#define VK_EXT_CALIBRATED_TIMESTAMPS_EXTENSION_NAME "VK_EXT_calibrated_timestamps" - -typedef enum VkTimeDomainEXT { - VK_TIME_DOMAIN_DEVICE_EXT = 0, - VK_TIME_DOMAIN_CLOCK_MONOTONIC_EXT = 1, - VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT = 2, - VK_TIME_DOMAIN_QUERY_PERFORMANCE_COUNTER_EXT = 3, - VK_TIME_DOMAIN_MAX_ENUM_EXT = 0x7FFFFFFF -} VkTimeDomainEXT; -typedef struct VkCalibratedTimestampInfoEXT { - VkStructureType sType; - const void* pNext; - VkTimeDomainEXT timeDomain; -} VkCalibratedTimestampInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT)(VkPhysicalDevice physicalDevice, uint32_t* pTimeDomainCount, VkTimeDomainEXT* pTimeDomains); -typedef VkResult (VKAPI_PTR *PFN_vkGetCalibratedTimestampsEXT)(VkDevice device, uint32_t timestampCount, const VkCalibratedTimestampInfoEXT* pTimestampInfos, uint64_t* pTimestamps, uint64_t* pMaxDeviation); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - VkPhysicalDevice physicalDevice, - uint32_t* pTimeDomainCount, - VkTimeDomainEXT* pTimeDomains); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetCalibratedTimestampsEXT( - VkDevice device, - uint32_t timestampCount, - const VkCalibratedTimestampInfoEXT* pTimestampInfos, - uint64_t* pTimestamps, - uint64_t* pMaxDeviation); -#endif - - -#define VK_AMD_shader_core_properties 1 -#define VK_AMD_SHADER_CORE_PROPERTIES_SPEC_VERSION 2 -#define VK_AMD_SHADER_CORE_PROPERTIES_EXTENSION_NAME "VK_AMD_shader_core_properties" -typedef struct VkPhysicalDeviceShaderCorePropertiesAMD { - VkStructureType sType; - void* pNext; - uint32_t shaderEngineCount; - uint32_t shaderArraysPerEngineCount; - uint32_t computeUnitsPerShaderArray; - uint32_t simdPerComputeUnit; - uint32_t wavefrontsPerSimd; - uint32_t wavefrontSize; - uint32_t sgprsPerSimd; - uint32_t minSgprAllocation; - uint32_t maxSgprAllocation; - uint32_t sgprAllocationGranularity; - uint32_t vgprsPerSimd; - uint32_t minVgprAllocation; - uint32_t maxVgprAllocation; - uint32_t vgprAllocationGranularity; -} VkPhysicalDeviceShaderCorePropertiesAMD; - - - -#define VK_AMD_memory_overallocation_behavior 1 -#define VK_AMD_MEMORY_OVERALLOCATION_BEHAVIOR_SPEC_VERSION 1 -#define VK_AMD_MEMORY_OVERALLOCATION_BEHAVIOR_EXTENSION_NAME "VK_AMD_memory_overallocation_behavior" - -typedef enum VkMemoryOverallocationBehaviorAMD { - VK_MEMORY_OVERALLOCATION_BEHAVIOR_DEFAULT_AMD = 0, - VK_MEMORY_OVERALLOCATION_BEHAVIOR_ALLOWED_AMD = 1, - VK_MEMORY_OVERALLOCATION_BEHAVIOR_DISALLOWED_AMD = 2, - VK_MEMORY_OVERALLOCATION_BEHAVIOR_MAX_ENUM_AMD = 0x7FFFFFFF -} VkMemoryOverallocationBehaviorAMD; -typedef struct VkDeviceMemoryOverallocationCreateInfoAMD { - VkStructureType sType; - const void* pNext; - VkMemoryOverallocationBehaviorAMD overallocationBehavior; -} VkDeviceMemoryOverallocationCreateInfoAMD; - - - -#define VK_EXT_vertex_attribute_divisor 1 -#define VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_SPEC_VERSION 3 -#define VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_EXTENSION_NAME "VK_EXT_vertex_attribute_divisor" -typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxVertexAttribDivisor; -} VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT; - -typedef struct VkVertexInputBindingDivisorDescriptionEXT { - uint32_t binding; - uint32_t divisor; -} VkVertexInputBindingDivisorDescriptionEXT; - -typedef struct VkPipelineVertexInputDivisorStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t vertexBindingDivisorCount; - const VkVertexInputBindingDivisorDescriptionEXT* pVertexBindingDivisors; -} VkPipelineVertexInputDivisorStateCreateInfoEXT; - -typedef struct VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 vertexAttributeInstanceRateDivisor; - VkBool32 vertexAttributeInstanceRateZeroDivisor; -} VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT; - - - -#define VK_EXT_pipeline_creation_feedback 1 -#define VK_EXT_PIPELINE_CREATION_FEEDBACK_SPEC_VERSION 1 -#define VK_EXT_PIPELINE_CREATION_FEEDBACK_EXTENSION_NAME "VK_EXT_pipeline_creation_feedback" -typedef VkPipelineCreationFeedbackFlagBits VkPipelineCreationFeedbackFlagBitsEXT; - -typedef VkPipelineCreationFeedbackFlags VkPipelineCreationFeedbackFlagsEXT; - -typedef VkPipelineCreationFeedbackCreateInfo VkPipelineCreationFeedbackCreateInfoEXT; - -typedef VkPipelineCreationFeedback VkPipelineCreationFeedbackEXT; - - - -#define VK_NV_shader_subgroup_partitioned 1 -#define VK_NV_SHADER_SUBGROUP_PARTITIONED_SPEC_VERSION 1 -#define VK_NV_SHADER_SUBGROUP_PARTITIONED_EXTENSION_NAME "VK_NV_shader_subgroup_partitioned" - - -#define VK_NV_compute_shader_derivatives 1 -#define VK_NV_COMPUTE_SHADER_DERIVATIVES_SPEC_VERSION 1 -#define VK_NV_COMPUTE_SHADER_DERIVATIVES_EXTENSION_NAME "VK_NV_compute_shader_derivatives" -typedef struct VkPhysicalDeviceComputeShaderDerivativesFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 computeDerivativeGroupQuads; - VkBool32 computeDerivativeGroupLinear; -} VkPhysicalDeviceComputeShaderDerivativesFeaturesNV; - - - -#define VK_NV_mesh_shader 1 -#define VK_NV_MESH_SHADER_SPEC_VERSION 1 -#define VK_NV_MESH_SHADER_EXTENSION_NAME "VK_NV_mesh_shader" -typedef struct VkPhysicalDeviceMeshShaderFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 taskShader; - VkBool32 meshShader; -} VkPhysicalDeviceMeshShaderFeaturesNV; - -typedef struct VkPhysicalDeviceMeshShaderPropertiesNV { - VkStructureType sType; - void* pNext; - uint32_t maxDrawMeshTasksCount; - uint32_t maxTaskWorkGroupInvocations; - uint32_t maxTaskWorkGroupSize[3]; - uint32_t maxTaskTotalMemorySize; - uint32_t maxTaskOutputCount; - uint32_t maxMeshWorkGroupInvocations; - uint32_t maxMeshWorkGroupSize[3]; - uint32_t maxMeshTotalMemorySize; - uint32_t maxMeshOutputVertices; - uint32_t maxMeshOutputPrimitives; - uint32_t maxMeshMultiviewViewCount; - uint32_t meshOutputPerVertexGranularity; - uint32_t meshOutputPerPrimitiveGranularity; -} VkPhysicalDeviceMeshShaderPropertiesNV; - -typedef struct VkDrawMeshTasksIndirectCommandNV { - uint32_t taskCount; - uint32_t firstTask; -} VkDrawMeshTasksIndirectCommandNV; - -typedef void (VKAPI_PTR *PFN_vkCmdDrawMeshTasksNV)(VkCommandBuffer commandBuffer, uint32_t taskCount, uint32_t firstTask); -typedef void (VKAPI_PTR *PFN_vkCmdDrawMeshTasksIndirectNV)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDrawMeshTasksIndirectCountNV)(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdDrawMeshTasksNV( - VkCommandBuffer commandBuffer, - uint32_t taskCount, - uint32_t firstTask); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawMeshTasksIndirectNV( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - uint32_t drawCount, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawMeshTasksIndirectCountNV( - VkCommandBuffer commandBuffer, - VkBuffer buffer, - VkDeviceSize offset, - VkBuffer countBuffer, - VkDeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride); -#endif - - -#define VK_NV_fragment_shader_barycentric 1 -#define VK_NV_FRAGMENT_SHADER_BARYCENTRIC_SPEC_VERSION 1 -#define VK_NV_FRAGMENT_SHADER_BARYCENTRIC_EXTENSION_NAME "VK_NV_fragment_shader_barycentric" -typedef struct VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 fragmentShaderBarycentric; -} VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV; - - - -#define VK_NV_shader_image_footprint 1 -#define VK_NV_SHADER_IMAGE_FOOTPRINT_SPEC_VERSION 2 -#define VK_NV_SHADER_IMAGE_FOOTPRINT_EXTENSION_NAME "VK_NV_shader_image_footprint" -typedef struct VkPhysicalDeviceShaderImageFootprintFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 imageFootprint; -} VkPhysicalDeviceShaderImageFootprintFeaturesNV; - - - -#define VK_NV_scissor_exclusive 1 -#define VK_NV_SCISSOR_EXCLUSIVE_SPEC_VERSION 1 -#define VK_NV_SCISSOR_EXCLUSIVE_EXTENSION_NAME "VK_NV_scissor_exclusive" -typedef struct VkPipelineViewportExclusiveScissorStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - uint32_t exclusiveScissorCount; - const VkRect2D* pExclusiveScissors; -} VkPipelineViewportExclusiveScissorStateCreateInfoNV; - -typedef struct VkPhysicalDeviceExclusiveScissorFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 exclusiveScissor; -} VkPhysicalDeviceExclusiveScissorFeaturesNV; - -typedef void (VKAPI_PTR *PFN_vkCmdSetExclusiveScissorNV)(VkCommandBuffer commandBuffer, uint32_t firstExclusiveScissor, uint32_t exclusiveScissorCount, const VkRect2D* pExclusiveScissors); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetExclusiveScissorNV( - VkCommandBuffer commandBuffer, - uint32_t firstExclusiveScissor, - uint32_t exclusiveScissorCount, - const VkRect2D* pExclusiveScissors); -#endif - - -#define VK_NV_device_diagnostic_checkpoints 1 -#define VK_NV_DEVICE_DIAGNOSTIC_CHECKPOINTS_SPEC_VERSION 2 -#define VK_NV_DEVICE_DIAGNOSTIC_CHECKPOINTS_EXTENSION_NAME "VK_NV_device_diagnostic_checkpoints" -typedef struct VkQueueFamilyCheckpointPropertiesNV { - VkStructureType sType; - void* pNext; - VkPipelineStageFlags checkpointExecutionStageMask; -} VkQueueFamilyCheckpointPropertiesNV; - -typedef struct VkCheckpointDataNV { - VkStructureType sType; - void* pNext; - VkPipelineStageFlagBits stage; - void* pCheckpointMarker; -} VkCheckpointDataNV; - -typedef void (VKAPI_PTR *PFN_vkCmdSetCheckpointNV)(VkCommandBuffer commandBuffer, const void* pCheckpointMarker); -typedef void (VKAPI_PTR *PFN_vkGetQueueCheckpointDataNV)(VkQueue queue, uint32_t* pCheckpointDataCount, VkCheckpointDataNV* pCheckpointData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetCheckpointNV( - VkCommandBuffer commandBuffer, - const void* pCheckpointMarker); - -VKAPI_ATTR void VKAPI_CALL vkGetQueueCheckpointDataNV( - VkQueue queue, - uint32_t* pCheckpointDataCount, - VkCheckpointDataNV* pCheckpointData); -#endif - - -#define VK_INTEL_shader_integer_functions2 1 -#define VK_INTEL_SHADER_INTEGER_FUNCTIONS_2_SPEC_VERSION 1 -#define VK_INTEL_SHADER_INTEGER_FUNCTIONS_2_EXTENSION_NAME "VK_INTEL_shader_integer_functions2" -typedef struct VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL { - VkStructureType sType; - void* pNext; - VkBool32 shaderIntegerFunctions2; -} VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL; - - - -#define VK_INTEL_performance_query 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkPerformanceConfigurationINTEL) -#define VK_INTEL_PERFORMANCE_QUERY_SPEC_VERSION 2 -#define VK_INTEL_PERFORMANCE_QUERY_EXTENSION_NAME "VK_INTEL_performance_query" - -typedef enum VkPerformanceConfigurationTypeINTEL { - VK_PERFORMANCE_CONFIGURATION_TYPE_COMMAND_QUEUE_METRICS_DISCOVERY_ACTIVATED_INTEL = 0, - VK_PERFORMANCE_CONFIGURATION_TYPE_MAX_ENUM_INTEL = 0x7FFFFFFF -} VkPerformanceConfigurationTypeINTEL; - -typedef enum VkQueryPoolSamplingModeINTEL { - VK_QUERY_POOL_SAMPLING_MODE_MANUAL_INTEL = 0, - VK_QUERY_POOL_SAMPLING_MODE_MAX_ENUM_INTEL = 0x7FFFFFFF -} VkQueryPoolSamplingModeINTEL; - -typedef enum VkPerformanceOverrideTypeINTEL { - VK_PERFORMANCE_OVERRIDE_TYPE_NULL_HARDWARE_INTEL = 0, - VK_PERFORMANCE_OVERRIDE_TYPE_FLUSH_GPU_CACHES_INTEL = 1, - VK_PERFORMANCE_OVERRIDE_TYPE_MAX_ENUM_INTEL = 0x7FFFFFFF -} VkPerformanceOverrideTypeINTEL; - -typedef enum VkPerformanceParameterTypeINTEL { - VK_PERFORMANCE_PARAMETER_TYPE_HW_COUNTERS_SUPPORTED_INTEL = 0, - VK_PERFORMANCE_PARAMETER_TYPE_STREAM_MARKER_VALID_BITS_INTEL = 1, - VK_PERFORMANCE_PARAMETER_TYPE_MAX_ENUM_INTEL = 0x7FFFFFFF -} VkPerformanceParameterTypeINTEL; - -typedef enum VkPerformanceValueTypeINTEL { - VK_PERFORMANCE_VALUE_TYPE_UINT32_INTEL = 0, - VK_PERFORMANCE_VALUE_TYPE_UINT64_INTEL = 1, - VK_PERFORMANCE_VALUE_TYPE_FLOAT_INTEL = 2, - VK_PERFORMANCE_VALUE_TYPE_BOOL_INTEL = 3, - VK_PERFORMANCE_VALUE_TYPE_STRING_INTEL = 4, - VK_PERFORMANCE_VALUE_TYPE_MAX_ENUM_INTEL = 0x7FFFFFFF -} VkPerformanceValueTypeINTEL; -typedef union VkPerformanceValueDataINTEL { - uint32_t value32; - uint64_t value64; - float valueFloat; - VkBool32 valueBool; - const char* valueString; -} VkPerformanceValueDataINTEL; - -typedef struct VkPerformanceValueINTEL { - VkPerformanceValueTypeINTEL type; - VkPerformanceValueDataINTEL data; -} VkPerformanceValueINTEL; - -typedef struct VkInitializePerformanceApiInfoINTEL { - VkStructureType sType; - const void* pNext; - void* pUserData; -} VkInitializePerformanceApiInfoINTEL; - -typedef struct VkQueryPoolPerformanceQueryCreateInfoINTEL { - VkStructureType sType; - const void* pNext; - VkQueryPoolSamplingModeINTEL performanceCountersSampling; -} VkQueryPoolPerformanceQueryCreateInfoINTEL; - -typedef VkQueryPoolPerformanceQueryCreateInfoINTEL VkQueryPoolCreateInfoINTEL; - -typedef struct VkPerformanceMarkerInfoINTEL { - VkStructureType sType; - const void* pNext; - uint64_t marker; -} VkPerformanceMarkerInfoINTEL; - -typedef struct VkPerformanceStreamMarkerInfoINTEL { - VkStructureType sType; - const void* pNext; - uint32_t marker; -} VkPerformanceStreamMarkerInfoINTEL; - -typedef struct VkPerformanceOverrideInfoINTEL { - VkStructureType sType; - const void* pNext; - VkPerformanceOverrideTypeINTEL type; - VkBool32 enable; - uint64_t parameter; -} VkPerformanceOverrideInfoINTEL; - -typedef struct VkPerformanceConfigurationAcquireInfoINTEL { - VkStructureType sType; - const void* pNext; - VkPerformanceConfigurationTypeINTEL type; -} VkPerformanceConfigurationAcquireInfoINTEL; - -typedef VkResult (VKAPI_PTR *PFN_vkInitializePerformanceApiINTEL)(VkDevice device, const VkInitializePerformanceApiInfoINTEL* pInitializeInfo); -typedef void (VKAPI_PTR *PFN_vkUninitializePerformanceApiINTEL)(VkDevice device); -typedef VkResult (VKAPI_PTR *PFN_vkCmdSetPerformanceMarkerINTEL)(VkCommandBuffer commandBuffer, const VkPerformanceMarkerInfoINTEL* pMarkerInfo); -typedef VkResult (VKAPI_PTR *PFN_vkCmdSetPerformanceStreamMarkerINTEL)(VkCommandBuffer commandBuffer, const VkPerformanceStreamMarkerInfoINTEL* pMarkerInfo); -typedef VkResult (VKAPI_PTR *PFN_vkCmdSetPerformanceOverrideINTEL)(VkCommandBuffer commandBuffer, const VkPerformanceOverrideInfoINTEL* pOverrideInfo); -typedef VkResult (VKAPI_PTR *PFN_vkAcquirePerformanceConfigurationINTEL)(VkDevice device, const VkPerformanceConfigurationAcquireInfoINTEL* pAcquireInfo, VkPerformanceConfigurationINTEL* pConfiguration); -typedef VkResult (VKAPI_PTR *PFN_vkReleasePerformanceConfigurationINTEL)(VkDevice device, VkPerformanceConfigurationINTEL configuration); -typedef VkResult (VKAPI_PTR *PFN_vkQueueSetPerformanceConfigurationINTEL)(VkQueue queue, VkPerformanceConfigurationINTEL configuration); -typedef VkResult (VKAPI_PTR *PFN_vkGetPerformanceParameterINTEL)(VkDevice device, VkPerformanceParameterTypeINTEL parameter, VkPerformanceValueINTEL* pValue); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkInitializePerformanceApiINTEL( - VkDevice device, - const VkInitializePerformanceApiInfoINTEL* pInitializeInfo); - -VKAPI_ATTR void VKAPI_CALL vkUninitializePerformanceApiINTEL( - VkDevice device); - -VKAPI_ATTR VkResult VKAPI_CALL vkCmdSetPerformanceMarkerINTEL( - VkCommandBuffer commandBuffer, - const VkPerformanceMarkerInfoINTEL* pMarkerInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkCmdSetPerformanceStreamMarkerINTEL( - VkCommandBuffer commandBuffer, - const VkPerformanceStreamMarkerInfoINTEL* pMarkerInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkCmdSetPerformanceOverrideINTEL( - VkCommandBuffer commandBuffer, - const VkPerformanceOverrideInfoINTEL* pOverrideInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkAcquirePerformanceConfigurationINTEL( - VkDevice device, - const VkPerformanceConfigurationAcquireInfoINTEL* pAcquireInfo, - VkPerformanceConfigurationINTEL* pConfiguration); - -VKAPI_ATTR VkResult VKAPI_CALL vkReleasePerformanceConfigurationINTEL( - VkDevice device, - VkPerformanceConfigurationINTEL configuration); - -VKAPI_ATTR VkResult VKAPI_CALL vkQueueSetPerformanceConfigurationINTEL( - VkQueue queue, - VkPerformanceConfigurationINTEL configuration); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetPerformanceParameterINTEL( - VkDevice device, - VkPerformanceParameterTypeINTEL parameter, - VkPerformanceValueINTEL* pValue); -#endif - - -#define VK_EXT_pci_bus_info 1 -#define VK_EXT_PCI_BUS_INFO_SPEC_VERSION 2 -#define VK_EXT_PCI_BUS_INFO_EXTENSION_NAME "VK_EXT_pci_bus_info" -typedef struct VkPhysicalDevicePCIBusInfoPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t pciDomain; - uint32_t pciBus; - uint32_t pciDevice; - uint32_t pciFunction; -} VkPhysicalDevicePCIBusInfoPropertiesEXT; - - - -#define VK_AMD_display_native_hdr 1 -#define VK_AMD_DISPLAY_NATIVE_HDR_SPEC_VERSION 1 -#define VK_AMD_DISPLAY_NATIVE_HDR_EXTENSION_NAME "VK_AMD_display_native_hdr" -typedef struct VkDisplayNativeHdrSurfaceCapabilitiesAMD { - VkStructureType sType; - void* pNext; - VkBool32 localDimmingSupport; -} VkDisplayNativeHdrSurfaceCapabilitiesAMD; - -typedef struct VkSwapchainDisplayNativeHdrCreateInfoAMD { - VkStructureType sType; - const void* pNext; - VkBool32 localDimmingEnable; -} VkSwapchainDisplayNativeHdrCreateInfoAMD; - -typedef void (VKAPI_PTR *PFN_vkSetLocalDimmingAMD)(VkDevice device, VkSwapchainKHR swapChain, VkBool32 localDimmingEnable); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkSetLocalDimmingAMD( - VkDevice device, - VkSwapchainKHR swapChain, - VkBool32 localDimmingEnable); -#endif - - -#define VK_EXT_fragment_density_map 1 -#define VK_EXT_FRAGMENT_DENSITY_MAP_SPEC_VERSION 2 -#define VK_EXT_FRAGMENT_DENSITY_MAP_EXTENSION_NAME "VK_EXT_fragment_density_map" -typedef struct VkPhysicalDeviceFragmentDensityMapFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 fragmentDensityMap; - VkBool32 fragmentDensityMapDynamic; - VkBool32 fragmentDensityMapNonSubsampledImages; -} VkPhysicalDeviceFragmentDensityMapFeaturesEXT; - -typedef struct VkPhysicalDeviceFragmentDensityMapPropertiesEXT { - VkStructureType sType; - void* pNext; - VkExtent2D minFragmentDensityTexelSize; - VkExtent2D maxFragmentDensityTexelSize; - VkBool32 fragmentDensityInvocations; -} VkPhysicalDeviceFragmentDensityMapPropertiesEXT; - -typedef struct VkRenderPassFragmentDensityMapCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkAttachmentReference fragmentDensityMapAttachment; -} VkRenderPassFragmentDensityMapCreateInfoEXT; - - - -#define VK_EXT_scalar_block_layout 1 -#define VK_EXT_SCALAR_BLOCK_LAYOUT_SPEC_VERSION 1 -#define VK_EXT_SCALAR_BLOCK_LAYOUT_EXTENSION_NAME "VK_EXT_scalar_block_layout" -typedef VkPhysicalDeviceScalarBlockLayoutFeatures VkPhysicalDeviceScalarBlockLayoutFeaturesEXT; - - - -#define VK_GOOGLE_hlsl_functionality1 1 -#define VK_GOOGLE_HLSL_FUNCTIONALITY_1_SPEC_VERSION 1 -#define VK_GOOGLE_HLSL_FUNCTIONALITY_1_EXTENSION_NAME "VK_GOOGLE_hlsl_functionality1" -#define VK_GOOGLE_HLSL_FUNCTIONALITY1_SPEC_VERSION VK_GOOGLE_HLSL_FUNCTIONALITY_1_SPEC_VERSION -#define VK_GOOGLE_HLSL_FUNCTIONALITY1_EXTENSION_NAME VK_GOOGLE_HLSL_FUNCTIONALITY_1_EXTENSION_NAME - - -#define VK_GOOGLE_decorate_string 1 -#define VK_GOOGLE_DECORATE_STRING_SPEC_VERSION 1 -#define VK_GOOGLE_DECORATE_STRING_EXTENSION_NAME "VK_GOOGLE_decorate_string" - - -#define VK_EXT_subgroup_size_control 1 -#define VK_EXT_SUBGROUP_SIZE_CONTROL_SPEC_VERSION 2 -#define VK_EXT_SUBGROUP_SIZE_CONTROL_EXTENSION_NAME "VK_EXT_subgroup_size_control" -typedef VkPhysicalDeviceSubgroupSizeControlFeatures VkPhysicalDeviceSubgroupSizeControlFeaturesEXT; - -typedef VkPhysicalDeviceSubgroupSizeControlProperties VkPhysicalDeviceSubgroupSizeControlPropertiesEXT; - -typedef VkPipelineShaderStageRequiredSubgroupSizeCreateInfo VkPipelineShaderStageRequiredSubgroupSizeCreateInfoEXT; - - - -#define VK_AMD_shader_core_properties2 1 -#define VK_AMD_SHADER_CORE_PROPERTIES_2_SPEC_VERSION 1 -#define VK_AMD_SHADER_CORE_PROPERTIES_2_EXTENSION_NAME "VK_AMD_shader_core_properties2" - -typedef enum VkShaderCorePropertiesFlagBitsAMD { - VK_SHADER_CORE_PROPERTIES_FLAG_BITS_MAX_ENUM_AMD = 0x7FFFFFFF -} VkShaderCorePropertiesFlagBitsAMD; -typedef VkFlags VkShaderCorePropertiesFlagsAMD; -typedef struct VkPhysicalDeviceShaderCoreProperties2AMD { - VkStructureType sType; - void* pNext; - VkShaderCorePropertiesFlagsAMD shaderCoreFeatures; - uint32_t activeComputeUnitCount; -} VkPhysicalDeviceShaderCoreProperties2AMD; - - - -#define VK_AMD_device_coherent_memory 1 -#define VK_AMD_DEVICE_COHERENT_MEMORY_SPEC_VERSION 1 -#define VK_AMD_DEVICE_COHERENT_MEMORY_EXTENSION_NAME "VK_AMD_device_coherent_memory" -typedef struct VkPhysicalDeviceCoherentMemoryFeaturesAMD { - VkStructureType sType; - void* pNext; - VkBool32 deviceCoherentMemory; -} VkPhysicalDeviceCoherentMemoryFeaturesAMD; - - - -#define VK_EXT_shader_image_atomic_int64 1 -#define VK_EXT_SHADER_IMAGE_ATOMIC_INT64_SPEC_VERSION 1 -#define VK_EXT_SHADER_IMAGE_ATOMIC_INT64_EXTENSION_NAME "VK_EXT_shader_image_atomic_int64" -typedef struct VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 shaderImageInt64Atomics; - VkBool32 sparseImageInt64Atomics; -} VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT; - - - -#define VK_EXT_memory_budget 1 -#define VK_EXT_MEMORY_BUDGET_SPEC_VERSION 1 -#define VK_EXT_MEMORY_BUDGET_EXTENSION_NAME "VK_EXT_memory_budget" -typedef struct VkPhysicalDeviceMemoryBudgetPropertiesEXT { - VkStructureType sType; - void* pNext; - VkDeviceSize heapBudget[VK_MAX_MEMORY_HEAPS]; - VkDeviceSize heapUsage[VK_MAX_MEMORY_HEAPS]; -} VkPhysicalDeviceMemoryBudgetPropertiesEXT; - - - -#define VK_EXT_memory_priority 1 -#define VK_EXT_MEMORY_PRIORITY_SPEC_VERSION 1 -#define VK_EXT_MEMORY_PRIORITY_EXTENSION_NAME "VK_EXT_memory_priority" -typedef struct VkPhysicalDeviceMemoryPriorityFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 memoryPriority; -} VkPhysicalDeviceMemoryPriorityFeaturesEXT; - -typedef struct VkMemoryPriorityAllocateInfoEXT { - VkStructureType sType; - const void* pNext; - float priority; -} VkMemoryPriorityAllocateInfoEXT; - - - -#define VK_NV_dedicated_allocation_image_aliasing 1 -#define VK_NV_DEDICATED_ALLOCATION_IMAGE_ALIASING_SPEC_VERSION 1 -#define VK_NV_DEDICATED_ALLOCATION_IMAGE_ALIASING_EXTENSION_NAME "VK_NV_dedicated_allocation_image_aliasing" -typedef struct VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 dedicatedAllocationImageAliasing; -} VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV; - - - -#define VK_EXT_buffer_device_address 1 -#define VK_EXT_BUFFER_DEVICE_ADDRESS_SPEC_VERSION 2 -#define VK_EXT_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME "VK_EXT_buffer_device_address" -typedef struct VkPhysicalDeviceBufferDeviceAddressFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 bufferDeviceAddress; - VkBool32 bufferDeviceAddressCaptureReplay; - VkBool32 bufferDeviceAddressMultiDevice; -} VkPhysicalDeviceBufferDeviceAddressFeaturesEXT; - -typedef VkPhysicalDeviceBufferDeviceAddressFeaturesEXT VkPhysicalDeviceBufferAddressFeaturesEXT; - -typedef VkBufferDeviceAddressInfo VkBufferDeviceAddressInfoEXT; - -typedef struct VkBufferDeviceAddressCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkDeviceAddress deviceAddress; -} VkBufferDeviceAddressCreateInfoEXT; - -typedef VkDeviceAddress (VKAPI_PTR *PFN_vkGetBufferDeviceAddressEXT)(VkDevice device, const VkBufferDeviceAddressInfo* pInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkDeviceAddress VKAPI_CALL vkGetBufferDeviceAddressEXT( - VkDevice device, - const VkBufferDeviceAddressInfo* pInfo); -#endif - - -#define VK_EXT_tooling_info 1 -#define VK_EXT_TOOLING_INFO_SPEC_VERSION 1 -#define VK_EXT_TOOLING_INFO_EXTENSION_NAME "VK_EXT_tooling_info" -typedef VkToolPurposeFlagBits VkToolPurposeFlagBitsEXT; - -typedef VkToolPurposeFlags VkToolPurposeFlagsEXT; - -typedef VkPhysicalDeviceToolProperties VkPhysicalDeviceToolPropertiesEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceToolPropertiesEXT)(VkPhysicalDevice physicalDevice, uint32_t* pToolCount, VkPhysicalDeviceToolProperties* pToolProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceToolPropertiesEXT( - VkPhysicalDevice physicalDevice, - uint32_t* pToolCount, - VkPhysicalDeviceToolProperties* pToolProperties); -#endif - - -#define VK_EXT_separate_stencil_usage 1 -#define VK_EXT_SEPARATE_STENCIL_USAGE_SPEC_VERSION 1 -#define VK_EXT_SEPARATE_STENCIL_USAGE_EXTENSION_NAME "VK_EXT_separate_stencil_usage" -typedef VkImageStencilUsageCreateInfo VkImageStencilUsageCreateInfoEXT; - - - -#define VK_EXT_validation_features 1 -#define VK_EXT_VALIDATION_FEATURES_SPEC_VERSION 5 -#define VK_EXT_VALIDATION_FEATURES_EXTENSION_NAME "VK_EXT_validation_features" - -typedef enum VkValidationFeatureEnableEXT { - VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT = 0, - VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT = 1, - VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT = 2, - VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT = 3, - VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT = 4, - VK_VALIDATION_FEATURE_ENABLE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkValidationFeatureEnableEXT; - -typedef enum VkValidationFeatureDisableEXT { - VK_VALIDATION_FEATURE_DISABLE_ALL_EXT = 0, - VK_VALIDATION_FEATURE_DISABLE_SHADERS_EXT = 1, - VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT = 2, - VK_VALIDATION_FEATURE_DISABLE_API_PARAMETERS_EXT = 3, - VK_VALIDATION_FEATURE_DISABLE_OBJECT_LIFETIMES_EXT = 4, - VK_VALIDATION_FEATURE_DISABLE_CORE_CHECKS_EXT = 5, - VK_VALIDATION_FEATURE_DISABLE_UNIQUE_HANDLES_EXT = 6, - VK_VALIDATION_FEATURE_DISABLE_SHADER_VALIDATION_CACHE_EXT = 7, - VK_VALIDATION_FEATURE_DISABLE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkValidationFeatureDisableEXT; -typedef struct VkValidationFeaturesEXT { - VkStructureType sType; - const void* pNext; - uint32_t enabledValidationFeatureCount; - const VkValidationFeatureEnableEXT* pEnabledValidationFeatures; - uint32_t disabledValidationFeatureCount; - const VkValidationFeatureDisableEXT* pDisabledValidationFeatures; -} VkValidationFeaturesEXT; - - - -#define VK_NV_cooperative_matrix 1 -#define VK_NV_COOPERATIVE_MATRIX_SPEC_VERSION 1 -#define VK_NV_COOPERATIVE_MATRIX_EXTENSION_NAME "VK_NV_cooperative_matrix" - -typedef enum VkComponentTypeNV { - VK_COMPONENT_TYPE_FLOAT16_NV = 0, - VK_COMPONENT_TYPE_FLOAT32_NV = 1, - VK_COMPONENT_TYPE_FLOAT64_NV = 2, - VK_COMPONENT_TYPE_SINT8_NV = 3, - VK_COMPONENT_TYPE_SINT16_NV = 4, - VK_COMPONENT_TYPE_SINT32_NV = 5, - VK_COMPONENT_TYPE_SINT64_NV = 6, - VK_COMPONENT_TYPE_UINT8_NV = 7, - VK_COMPONENT_TYPE_UINT16_NV = 8, - VK_COMPONENT_TYPE_UINT32_NV = 9, - VK_COMPONENT_TYPE_UINT64_NV = 10, - VK_COMPONENT_TYPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkComponentTypeNV; - -typedef enum VkScopeNV { - VK_SCOPE_DEVICE_NV = 1, - VK_SCOPE_WORKGROUP_NV = 2, - VK_SCOPE_SUBGROUP_NV = 3, - VK_SCOPE_QUEUE_FAMILY_NV = 5, - VK_SCOPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkScopeNV; -typedef struct VkCooperativeMatrixPropertiesNV { - VkStructureType sType; - void* pNext; - uint32_t MSize; - uint32_t NSize; - uint32_t KSize; - VkComponentTypeNV AType; - VkComponentTypeNV BType; - VkComponentTypeNV CType; - VkComponentTypeNV DType; - VkScopeNV scope; -} VkCooperativeMatrixPropertiesNV; - -typedef struct VkPhysicalDeviceCooperativeMatrixFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 cooperativeMatrix; - VkBool32 cooperativeMatrixRobustBufferAccess; -} VkPhysicalDeviceCooperativeMatrixFeaturesNV; - -typedef struct VkPhysicalDeviceCooperativeMatrixPropertiesNV { - VkStructureType sType; - void* pNext; - VkShaderStageFlags cooperativeMatrixSupportedStages; -} VkPhysicalDeviceCooperativeMatrixPropertiesNV; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkCooperativeMatrixPropertiesNV* pProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - VkPhysicalDevice physicalDevice, - uint32_t* pPropertyCount, - VkCooperativeMatrixPropertiesNV* pProperties); -#endif - - -#define VK_NV_coverage_reduction_mode 1 -#define VK_NV_COVERAGE_REDUCTION_MODE_SPEC_VERSION 1 -#define VK_NV_COVERAGE_REDUCTION_MODE_EXTENSION_NAME "VK_NV_coverage_reduction_mode" - -typedef enum VkCoverageReductionModeNV { - VK_COVERAGE_REDUCTION_MODE_MERGE_NV = 0, - VK_COVERAGE_REDUCTION_MODE_TRUNCATE_NV = 1, - VK_COVERAGE_REDUCTION_MODE_MAX_ENUM_NV = 0x7FFFFFFF -} VkCoverageReductionModeNV; -typedef VkFlags VkPipelineCoverageReductionStateCreateFlagsNV; -typedef struct VkPhysicalDeviceCoverageReductionModeFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 coverageReductionMode; -} VkPhysicalDeviceCoverageReductionModeFeaturesNV; - -typedef struct VkPipelineCoverageReductionStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineCoverageReductionStateCreateFlagsNV flags; - VkCoverageReductionModeNV coverageReductionMode; -} VkPipelineCoverageReductionStateCreateInfoNV; - -typedef struct VkFramebufferMixedSamplesCombinationNV { - VkStructureType sType; - void* pNext; - VkCoverageReductionModeNV coverageReductionMode; - VkSampleCountFlagBits rasterizationSamples; - VkSampleCountFlags depthStencilSamples; - VkSampleCountFlags colorSamples; -} VkFramebufferMixedSamplesCombinationNV; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV)(VkPhysicalDevice physicalDevice, uint32_t* pCombinationCount, VkFramebufferMixedSamplesCombinationNV* pCombinations); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - VkPhysicalDevice physicalDevice, - uint32_t* pCombinationCount, - VkFramebufferMixedSamplesCombinationNV* pCombinations); -#endif - - -#define VK_EXT_fragment_shader_interlock 1 -#define VK_EXT_FRAGMENT_SHADER_INTERLOCK_SPEC_VERSION 1 -#define VK_EXT_FRAGMENT_SHADER_INTERLOCK_EXTENSION_NAME "VK_EXT_fragment_shader_interlock" -typedef struct VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 fragmentShaderSampleInterlock; - VkBool32 fragmentShaderPixelInterlock; - VkBool32 fragmentShaderShadingRateInterlock; -} VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT; - - - -#define VK_EXT_ycbcr_image_arrays 1 -#define VK_EXT_YCBCR_IMAGE_ARRAYS_SPEC_VERSION 1 -#define VK_EXT_YCBCR_IMAGE_ARRAYS_EXTENSION_NAME "VK_EXT_ycbcr_image_arrays" -typedef struct VkPhysicalDeviceYcbcrImageArraysFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 ycbcrImageArrays; -} VkPhysicalDeviceYcbcrImageArraysFeaturesEXT; - - - -#define VK_EXT_provoking_vertex 1 -#define VK_EXT_PROVOKING_VERTEX_SPEC_VERSION 1 -#define VK_EXT_PROVOKING_VERTEX_EXTENSION_NAME "VK_EXT_provoking_vertex" - -typedef enum VkProvokingVertexModeEXT { - VK_PROVOKING_VERTEX_MODE_FIRST_VERTEX_EXT = 0, - VK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXT = 1, - VK_PROVOKING_VERTEX_MODE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkProvokingVertexModeEXT; -typedef struct VkPhysicalDeviceProvokingVertexFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 provokingVertexLast; - VkBool32 transformFeedbackPreservesProvokingVertex; -} VkPhysicalDeviceProvokingVertexFeaturesEXT; - -typedef struct VkPhysicalDeviceProvokingVertexPropertiesEXT { - VkStructureType sType; - void* pNext; - VkBool32 provokingVertexModePerPipeline; - VkBool32 transformFeedbackPreservesTriangleFanProvokingVertex; -} VkPhysicalDeviceProvokingVertexPropertiesEXT; - -typedef struct VkPipelineRasterizationProvokingVertexStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkProvokingVertexModeEXT provokingVertexMode; -} VkPipelineRasterizationProvokingVertexStateCreateInfoEXT; - - - -#define VK_EXT_headless_surface 1 -#define VK_EXT_HEADLESS_SURFACE_SPEC_VERSION 1 -#define VK_EXT_HEADLESS_SURFACE_EXTENSION_NAME "VK_EXT_headless_surface" -typedef VkFlags VkHeadlessSurfaceCreateFlagsEXT; -typedef struct VkHeadlessSurfaceCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkHeadlessSurfaceCreateFlagsEXT flags; -} VkHeadlessSurfaceCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateHeadlessSurfaceEXT)(VkInstance instance, const VkHeadlessSurfaceCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateHeadlessSurfaceEXT( - VkInstance instance, - const VkHeadlessSurfaceCreateInfoEXT* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - - -#define VK_EXT_line_rasterization 1 -#define VK_EXT_LINE_RASTERIZATION_SPEC_VERSION 1 -#define VK_EXT_LINE_RASTERIZATION_EXTENSION_NAME "VK_EXT_line_rasterization" - -typedef enum VkLineRasterizationModeEXT { - VK_LINE_RASTERIZATION_MODE_DEFAULT_EXT = 0, - VK_LINE_RASTERIZATION_MODE_RECTANGULAR_EXT = 1, - VK_LINE_RASTERIZATION_MODE_BRESENHAM_EXT = 2, - VK_LINE_RASTERIZATION_MODE_RECTANGULAR_SMOOTH_EXT = 3, - VK_LINE_RASTERIZATION_MODE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkLineRasterizationModeEXT; -typedef struct VkPhysicalDeviceLineRasterizationFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 rectangularLines; - VkBool32 bresenhamLines; - VkBool32 smoothLines; - VkBool32 stippledRectangularLines; - VkBool32 stippledBresenhamLines; - VkBool32 stippledSmoothLines; -} VkPhysicalDeviceLineRasterizationFeaturesEXT; - -typedef struct VkPhysicalDeviceLineRasterizationPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t lineSubPixelPrecisionBits; -} VkPhysicalDeviceLineRasterizationPropertiesEXT; - -typedef struct VkPipelineRasterizationLineStateCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkLineRasterizationModeEXT lineRasterizationMode; - VkBool32 stippledLineEnable; - uint32_t lineStippleFactor; - uint16_t lineStipplePattern; -} VkPipelineRasterizationLineStateCreateInfoEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetLineStippleEXT)(VkCommandBuffer commandBuffer, uint32_t lineStippleFactor, uint16_t lineStipplePattern); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetLineStippleEXT( - VkCommandBuffer commandBuffer, - uint32_t lineStippleFactor, - uint16_t lineStipplePattern); -#endif - - -#define VK_EXT_shader_atomic_float 1 -#define VK_EXT_SHADER_ATOMIC_FLOAT_SPEC_VERSION 1 -#define VK_EXT_SHADER_ATOMIC_FLOAT_EXTENSION_NAME "VK_EXT_shader_atomic_float" -typedef struct VkPhysicalDeviceShaderAtomicFloatFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 shaderBufferFloat32Atomics; - VkBool32 shaderBufferFloat32AtomicAdd; - VkBool32 shaderBufferFloat64Atomics; - VkBool32 shaderBufferFloat64AtomicAdd; - VkBool32 shaderSharedFloat32Atomics; - VkBool32 shaderSharedFloat32AtomicAdd; - VkBool32 shaderSharedFloat64Atomics; - VkBool32 shaderSharedFloat64AtomicAdd; - VkBool32 shaderImageFloat32Atomics; - VkBool32 shaderImageFloat32AtomicAdd; - VkBool32 sparseImageFloat32Atomics; - VkBool32 sparseImageFloat32AtomicAdd; -} VkPhysicalDeviceShaderAtomicFloatFeaturesEXT; - - - -#define VK_EXT_host_query_reset 1 -#define VK_EXT_HOST_QUERY_RESET_SPEC_VERSION 1 -#define VK_EXT_HOST_QUERY_RESET_EXTENSION_NAME "VK_EXT_host_query_reset" -typedef VkPhysicalDeviceHostQueryResetFeatures VkPhysicalDeviceHostQueryResetFeaturesEXT; - -typedef void (VKAPI_PTR *PFN_vkResetQueryPoolEXT)(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkResetQueryPoolEXT( - VkDevice device, - VkQueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount); -#endif - - -#define VK_EXT_index_type_uint8 1 -#define VK_EXT_INDEX_TYPE_UINT8_SPEC_VERSION 1 -#define VK_EXT_INDEX_TYPE_UINT8_EXTENSION_NAME "VK_EXT_index_type_uint8" -typedef struct VkPhysicalDeviceIndexTypeUint8FeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 indexTypeUint8; -} VkPhysicalDeviceIndexTypeUint8FeaturesEXT; - - - -#define VK_EXT_extended_dynamic_state 1 -#define VK_EXT_EXTENDED_DYNAMIC_STATE_SPEC_VERSION 1 -#define VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME "VK_EXT_extended_dynamic_state" -typedef struct VkPhysicalDeviceExtendedDynamicStateFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 extendedDynamicState; -} VkPhysicalDeviceExtendedDynamicStateFeaturesEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetCullModeEXT)(VkCommandBuffer commandBuffer, VkCullModeFlags cullMode); -typedef void (VKAPI_PTR *PFN_vkCmdSetFrontFaceEXT)(VkCommandBuffer commandBuffer, VkFrontFace frontFace); -typedef void (VKAPI_PTR *PFN_vkCmdSetPrimitiveTopologyEXT)(VkCommandBuffer commandBuffer, VkPrimitiveTopology primitiveTopology); -typedef void (VKAPI_PTR *PFN_vkCmdSetViewportWithCountEXT)(VkCommandBuffer commandBuffer, uint32_t viewportCount, const VkViewport* pViewports); -typedef void (VKAPI_PTR *PFN_vkCmdSetScissorWithCountEXT)(VkCommandBuffer commandBuffer, uint32_t scissorCount, const VkRect2D* pScissors); -typedef void (VKAPI_PTR *PFN_vkCmdBindVertexBuffers2EXT)(VkCommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const VkBuffer* pBuffers, const VkDeviceSize* pOffsets, const VkDeviceSize* pSizes, const VkDeviceSize* pStrides); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthTestEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 depthTestEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthWriteEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 depthWriteEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthCompareOpEXT)(VkCommandBuffer commandBuffer, VkCompareOp depthCompareOp); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthBoundsTestEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 depthBoundsTestEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilTestEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 stencilTestEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetStencilOpEXT)(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, VkStencilOp failOp, VkStencilOp passOp, VkStencilOp depthFailOp, VkCompareOp compareOp); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetCullModeEXT( - VkCommandBuffer commandBuffer, - VkCullModeFlags cullMode); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetFrontFaceEXT( - VkCommandBuffer commandBuffer, - VkFrontFace frontFace); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetPrimitiveTopologyEXT( - VkCommandBuffer commandBuffer, - VkPrimitiveTopology primitiveTopology); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetViewportWithCountEXT( - VkCommandBuffer commandBuffer, - uint32_t viewportCount, - const VkViewport* pViewports); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetScissorWithCountEXT( - VkCommandBuffer commandBuffer, - uint32_t scissorCount, - const VkRect2D* pScissors); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindVertexBuffers2EXT( - VkCommandBuffer commandBuffer, - uint32_t firstBinding, - uint32_t bindingCount, - const VkBuffer* pBuffers, - const VkDeviceSize* pOffsets, - const VkDeviceSize* pSizes, - const VkDeviceSize* pStrides); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthTestEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 depthTestEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthWriteEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 depthWriteEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthCompareOpEXT( - VkCommandBuffer commandBuffer, - VkCompareOp depthCompareOp); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthBoundsTestEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 depthBoundsTestEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilTestEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 stencilTestEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetStencilOpEXT( - VkCommandBuffer commandBuffer, - VkStencilFaceFlags faceMask, - VkStencilOp failOp, - VkStencilOp passOp, - VkStencilOp depthFailOp, - VkCompareOp compareOp); -#endif - - -#define VK_EXT_shader_atomic_float2 1 -#define VK_EXT_SHADER_ATOMIC_FLOAT_2_SPEC_VERSION 1 -#define VK_EXT_SHADER_ATOMIC_FLOAT_2_EXTENSION_NAME "VK_EXT_shader_atomic_float2" -typedef struct VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 shaderBufferFloat16Atomics; - VkBool32 shaderBufferFloat16AtomicAdd; - VkBool32 shaderBufferFloat16AtomicMinMax; - VkBool32 shaderBufferFloat32AtomicMinMax; - VkBool32 shaderBufferFloat64AtomicMinMax; - VkBool32 shaderSharedFloat16Atomics; - VkBool32 shaderSharedFloat16AtomicAdd; - VkBool32 shaderSharedFloat16AtomicMinMax; - VkBool32 shaderSharedFloat32AtomicMinMax; - VkBool32 shaderSharedFloat64AtomicMinMax; - VkBool32 shaderImageFloat32AtomicMinMax; - VkBool32 sparseImageFloat32AtomicMinMax; -} VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT; - - - -#define VK_EXT_shader_demote_to_helper_invocation 1 -#define VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_SPEC_VERSION 1 -#define VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_EXTENSION_NAME "VK_EXT_shader_demote_to_helper_invocation" -typedef VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures VkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT; - - - -#define VK_NV_device_generated_commands 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkIndirectCommandsLayoutNV) -#define VK_NV_DEVICE_GENERATED_COMMANDS_SPEC_VERSION 3 -#define VK_NV_DEVICE_GENERATED_COMMANDS_EXTENSION_NAME "VK_NV_device_generated_commands" - -typedef enum VkIndirectCommandsTokenTypeNV { - VK_INDIRECT_COMMANDS_TOKEN_TYPE_SHADER_GROUP_NV = 0, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_STATE_FLAGS_NV = 1, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_INDEX_BUFFER_NV = 2, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_VERTEX_BUFFER_NV = 3, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_PUSH_CONSTANT_NV = 4, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_INDEXED_NV = 5, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_NV = 6, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_TASKS_NV = 7, - VK_INDIRECT_COMMANDS_TOKEN_TYPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkIndirectCommandsTokenTypeNV; - -typedef enum VkIndirectStateFlagBitsNV { - VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NV = 0x00000001, - VK_INDIRECT_STATE_FLAG_BITS_MAX_ENUM_NV = 0x7FFFFFFF -} VkIndirectStateFlagBitsNV; -typedef VkFlags VkIndirectStateFlagsNV; - -typedef enum VkIndirectCommandsLayoutUsageFlagBitsNV { - VK_INDIRECT_COMMANDS_LAYOUT_USAGE_EXPLICIT_PREPROCESS_BIT_NV = 0x00000001, - VK_INDIRECT_COMMANDS_LAYOUT_USAGE_INDEXED_SEQUENCES_BIT_NV = 0x00000002, - VK_INDIRECT_COMMANDS_LAYOUT_USAGE_UNORDERED_SEQUENCES_BIT_NV = 0x00000004, - VK_INDIRECT_COMMANDS_LAYOUT_USAGE_FLAG_BITS_MAX_ENUM_NV = 0x7FFFFFFF -} VkIndirectCommandsLayoutUsageFlagBitsNV; -typedef VkFlags VkIndirectCommandsLayoutUsageFlagsNV; -typedef struct VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV { - VkStructureType sType; - void* pNext; - uint32_t maxGraphicsShaderGroupCount; - uint32_t maxIndirectSequenceCount; - uint32_t maxIndirectCommandsTokenCount; - uint32_t maxIndirectCommandsStreamCount; - uint32_t maxIndirectCommandsTokenOffset; - uint32_t maxIndirectCommandsStreamStride; - uint32_t minSequencesCountBufferOffsetAlignment; - uint32_t minSequencesIndexBufferOffsetAlignment; - uint32_t minIndirectCommandsBufferOffsetAlignment; -} VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV; - -typedef struct VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 deviceGeneratedCommands; -} VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV; - -typedef struct VkGraphicsShaderGroupCreateInfoNV { - VkStructureType sType; - const void* pNext; - uint32_t stageCount; - const VkPipelineShaderStageCreateInfo* pStages; - const VkPipelineVertexInputStateCreateInfo* pVertexInputState; - const VkPipelineTessellationStateCreateInfo* pTessellationState; -} VkGraphicsShaderGroupCreateInfoNV; - -typedef struct VkGraphicsPipelineShaderGroupsCreateInfoNV { - VkStructureType sType; - const void* pNext; - uint32_t groupCount; - const VkGraphicsShaderGroupCreateInfoNV* pGroups; - uint32_t pipelineCount; - const VkPipeline* pPipelines; -} VkGraphicsPipelineShaderGroupsCreateInfoNV; - -typedef struct VkBindShaderGroupIndirectCommandNV { - uint32_t groupIndex; -} VkBindShaderGroupIndirectCommandNV; - -typedef struct VkBindIndexBufferIndirectCommandNV { - VkDeviceAddress bufferAddress; - uint32_t size; - VkIndexType indexType; -} VkBindIndexBufferIndirectCommandNV; - -typedef struct VkBindVertexBufferIndirectCommandNV { - VkDeviceAddress bufferAddress; - uint32_t size; - uint32_t stride; -} VkBindVertexBufferIndirectCommandNV; - -typedef struct VkSetStateFlagsIndirectCommandNV { - uint32_t data; -} VkSetStateFlagsIndirectCommandNV; - -typedef struct VkIndirectCommandsStreamNV { - VkBuffer buffer; - VkDeviceSize offset; -} VkIndirectCommandsStreamNV; - -typedef struct VkIndirectCommandsLayoutTokenNV { - VkStructureType sType; - const void* pNext; - VkIndirectCommandsTokenTypeNV tokenType; - uint32_t stream; - uint32_t offset; - uint32_t vertexBindingUnit; - VkBool32 vertexDynamicStride; - VkPipelineLayout pushconstantPipelineLayout; - VkShaderStageFlags pushconstantShaderStageFlags; - uint32_t pushconstantOffset; - uint32_t pushconstantSize; - VkIndirectStateFlagsNV indirectStateFlags; - uint32_t indexTypeCount; - const VkIndexType* pIndexTypes; - const uint32_t* pIndexTypeValues; -} VkIndirectCommandsLayoutTokenNV; - -typedef struct VkIndirectCommandsLayoutCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkIndirectCommandsLayoutUsageFlagsNV flags; - VkPipelineBindPoint pipelineBindPoint; - uint32_t tokenCount; - const VkIndirectCommandsLayoutTokenNV* pTokens; - uint32_t streamCount; - const uint32_t* pStreamStrides; -} VkIndirectCommandsLayoutCreateInfoNV; - -typedef struct VkGeneratedCommandsInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineBindPoint pipelineBindPoint; - VkPipeline pipeline; - VkIndirectCommandsLayoutNV indirectCommandsLayout; - uint32_t streamCount; - const VkIndirectCommandsStreamNV* pStreams; - uint32_t sequencesCount; - VkBuffer preprocessBuffer; - VkDeviceSize preprocessOffset; - VkDeviceSize preprocessSize; - VkBuffer sequencesCountBuffer; - VkDeviceSize sequencesCountOffset; - VkBuffer sequencesIndexBuffer; - VkDeviceSize sequencesIndexOffset; -} VkGeneratedCommandsInfoNV; - -typedef struct VkGeneratedCommandsMemoryRequirementsInfoNV { - VkStructureType sType; - const void* pNext; - VkPipelineBindPoint pipelineBindPoint; - VkPipeline pipeline; - VkIndirectCommandsLayoutNV indirectCommandsLayout; - uint32_t maxSequencesCount; -} VkGeneratedCommandsMemoryRequirementsInfoNV; - -typedef void (VKAPI_PTR *PFN_vkGetGeneratedCommandsMemoryRequirementsNV)(VkDevice device, const VkGeneratedCommandsMemoryRequirementsInfoNV* pInfo, VkMemoryRequirements2* pMemoryRequirements); -typedef void (VKAPI_PTR *PFN_vkCmdPreprocessGeneratedCommandsNV)(VkCommandBuffer commandBuffer, const VkGeneratedCommandsInfoNV* pGeneratedCommandsInfo); -typedef void (VKAPI_PTR *PFN_vkCmdExecuteGeneratedCommandsNV)(VkCommandBuffer commandBuffer, VkBool32 isPreprocessed, const VkGeneratedCommandsInfoNV* pGeneratedCommandsInfo); -typedef void (VKAPI_PTR *PFN_vkCmdBindPipelineShaderGroupNV)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline, uint32_t groupIndex); -typedef VkResult (VKAPI_PTR *PFN_vkCreateIndirectCommandsLayoutNV)(VkDevice device, const VkIndirectCommandsLayoutCreateInfoNV* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkIndirectCommandsLayoutNV* pIndirectCommandsLayout); -typedef void (VKAPI_PTR *PFN_vkDestroyIndirectCommandsLayoutNV)(VkDevice device, VkIndirectCommandsLayoutNV indirectCommandsLayout, const VkAllocationCallbacks* pAllocator); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkGetGeneratedCommandsMemoryRequirementsNV( - VkDevice device, - const VkGeneratedCommandsMemoryRequirementsInfoNV* pInfo, - VkMemoryRequirements2* pMemoryRequirements); - -VKAPI_ATTR void VKAPI_CALL vkCmdPreprocessGeneratedCommandsNV( - VkCommandBuffer commandBuffer, - const VkGeneratedCommandsInfoNV* pGeneratedCommandsInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdExecuteGeneratedCommandsNV( - VkCommandBuffer commandBuffer, - VkBool32 isPreprocessed, - const VkGeneratedCommandsInfoNV* pGeneratedCommandsInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdBindPipelineShaderGroupNV( - VkCommandBuffer commandBuffer, - VkPipelineBindPoint pipelineBindPoint, - VkPipeline pipeline, - uint32_t groupIndex); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateIndirectCommandsLayoutNV( - VkDevice device, - const VkIndirectCommandsLayoutCreateInfoNV* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkIndirectCommandsLayoutNV* pIndirectCommandsLayout); - -VKAPI_ATTR void VKAPI_CALL vkDestroyIndirectCommandsLayoutNV( - VkDevice device, - VkIndirectCommandsLayoutNV indirectCommandsLayout, - const VkAllocationCallbacks* pAllocator); -#endif - - -#define VK_NV_inherited_viewport_scissor 1 -#define VK_NV_INHERITED_VIEWPORT_SCISSOR_SPEC_VERSION 1 -#define VK_NV_INHERITED_VIEWPORT_SCISSOR_EXTENSION_NAME "VK_NV_inherited_viewport_scissor" -typedef struct VkPhysicalDeviceInheritedViewportScissorFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 inheritedViewportScissor2D; -} VkPhysicalDeviceInheritedViewportScissorFeaturesNV; - -typedef struct VkCommandBufferInheritanceViewportScissorInfoNV { - VkStructureType sType; - const void* pNext; - VkBool32 viewportScissor2D; - uint32_t viewportDepthCount; - const VkViewport* pViewportDepths; -} VkCommandBufferInheritanceViewportScissorInfoNV; - - - -#define VK_EXT_texel_buffer_alignment 1 -#define VK_EXT_TEXEL_BUFFER_ALIGNMENT_SPEC_VERSION 1 -#define VK_EXT_TEXEL_BUFFER_ALIGNMENT_EXTENSION_NAME "VK_EXT_texel_buffer_alignment" -typedef struct VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 texelBufferAlignment; -} VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT; - -typedef VkPhysicalDeviceTexelBufferAlignmentProperties VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT; - - - -#define VK_QCOM_render_pass_transform 1 -#define VK_QCOM_RENDER_PASS_TRANSFORM_SPEC_VERSION 2 -#define VK_QCOM_RENDER_PASS_TRANSFORM_EXTENSION_NAME "VK_QCOM_render_pass_transform" -typedef struct VkRenderPassTransformBeginInfoQCOM { - VkStructureType sType; - void* pNext; - VkSurfaceTransformFlagBitsKHR transform; -} VkRenderPassTransformBeginInfoQCOM; - -typedef struct VkCommandBufferInheritanceRenderPassTransformInfoQCOM { - VkStructureType sType; - void* pNext; - VkSurfaceTransformFlagBitsKHR transform; - VkRect2D renderArea; -} VkCommandBufferInheritanceRenderPassTransformInfoQCOM; - - - -#define VK_EXT_device_memory_report 1 -#define VK_EXT_DEVICE_MEMORY_REPORT_SPEC_VERSION 2 -#define VK_EXT_DEVICE_MEMORY_REPORT_EXTENSION_NAME "VK_EXT_device_memory_report" - -typedef enum VkDeviceMemoryReportEventTypeEXT { - VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_ALLOCATE_EXT = 0, - VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_FREE_EXT = 1, - VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_IMPORT_EXT = 2, - VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_UNIMPORT_EXT = 3, - VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_ALLOCATION_FAILED_EXT = 4, - VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkDeviceMemoryReportEventTypeEXT; -typedef VkFlags VkDeviceMemoryReportFlagsEXT; -typedef struct VkPhysicalDeviceDeviceMemoryReportFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 deviceMemoryReport; -} VkPhysicalDeviceDeviceMemoryReportFeaturesEXT; - -typedef struct VkDeviceMemoryReportCallbackDataEXT { - VkStructureType sType; - void* pNext; - VkDeviceMemoryReportFlagsEXT flags; - VkDeviceMemoryReportEventTypeEXT type; - uint64_t memoryObjectId; - VkDeviceSize size; - VkObjectType objectType; - uint64_t objectHandle; - uint32_t heapIndex; -} VkDeviceMemoryReportCallbackDataEXT; - -typedef void (VKAPI_PTR *PFN_vkDeviceMemoryReportCallbackEXT)( - const VkDeviceMemoryReportCallbackDataEXT* pCallbackData, - void* pUserData); - -typedef struct VkDeviceDeviceMemoryReportCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkDeviceMemoryReportFlagsEXT flags; - PFN_vkDeviceMemoryReportCallbackEXT pfnUserCallback; - void* pUserData; -} VkDeviceDeviceMemoryReportCreateInfoEXT; - - - -#define VK_EXT_acquire_drm_display 1 -#define VK_EXT_ACQUIRE_DRM_DISPLAY_SPEC_VERSION 1 -#define VK_EXT_ACQUIRE_DRM_DISPLAY_EXTENSION_NAME "VK_EXT_acquire_drm_display" -typedef VkResult (VKAPI_PTR *PFN_vkAcquireDrmDisplayEXT)(VkPhysicalDevice physicalDevice, int32_t drmFd, VkDisplayKHR display); -typedef VkResult (VKAPI_PTR *PFN_vkGetDrmDisplayEXT)(VkPhysicalDevice physicalDevice, int32_t drmFd, uint32_t connectorId, VkDisplayKHR* display); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireDrmDisplayEXT( - VkPhysicalDevice physicalDevice, - int32_t drmFd, - VkDisplayKHR display); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDrmDisplayEXT( - VkPhysicalDevice physicalDevice, - int32_t drmFd, - uint32_t connectorId, - VkDisplayKHR* display); -#endif - - -#define VK_EXT_robustness2 1 -#define VK_EXT_ROBUSTNESS_2_SPEC_VERSION 1 -#define VK_EXT_ROBUSTNESS_2_EXTENSION_NAME "VK_EXT_robustness2" -typedef struct VkPhysicalDeviceRobustness2FeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 robustBufferAccess2; - VkBool32 robustImageAccess2; - VkBool32 nullDescriptor; -} VkPhysicalDeviceRobustness2FeaturesEXT; - -typedef struct VkPhysicalDeviceRobustness2PropertiesEXT { - VkStructureType sType; - void* pNext; - VkDeviceSize robustStorageBufferAccessSizeAlignment; - VkDeviceSize robustUniformBufferAccessSizeAlignment; -} VkPhysicalDeviceRobustness2PropertiesEXT; - - - -#define VK_EXT_custom_border_color 1 -#define VK_EXT_CUSTOM_BORDER_COLOR_SPEC_VERSION 12 -#define VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME "VK_EXT_custom_border_color" -typedef struct VkSamplerCustomBorderColorCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkClearColorValue customBorderColor; - VkFormat format; -} VkSamplerCustomBorderColorCreateInfoEXT; - -typedef struct VkPhysicalDeviceCustomBorderColorPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxCustomBorderColorSamplers; -} VkPhysicalDeviceCustomBorderColorPropertiesEXT; - -typedef struct VkPhysicalDeviceCustomBorderColorFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 customBorderColors; - VkBool32 customBorderColorWithoutFormat; -} VkPhysicalDeviceCustomBorderColorFeaturesEXT; - - - -#define VK_GOOGLE_user_type 1 -#define VK_GOOGLE_USER_TYPE_SPEC_VERSION 1 -#define VK_GOOGLE_USER_TYPE_EXTENSION_NAME "VK_GOOGLE_user_type" - - -#define VK_EXT_private_data 1 -typedef VkPrivateDataSlot VkPrivateDataSlotEXT; - -#define VK_EXT_PRIVATE_DATA_SPEC_VERSION 1 -#define VK_EXT_PRIVATE_DATA_EXTENSION_NAME "VK_EXT_private_data" -typedef VkPrivateDataSlotCreateFlags VkPrivateDataSlotCreateFlagsEXT; - -typedef VkPrivateDataSlotCreateFlagBits VkPrivateDataSlotCreateFlagBitsEXT; - -typedef VkPhysicalDevicePrivateDataFeatures VkPhysicalDevicePrivateDataFeaturesEXT; - -typedef VkDevicePrivateDataCreateInfo VkDevicePrivateDataCreateInfoEXT; - -typedef VkPrivateDataSlotCreateInfo VkPrivateDataSlotCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkCreatePrivateDataSlotEXT)(VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPrivateDataSlot* pPrivateDataSlot); -typedef void (VKAPI_PTR *PFN_vkDestroyPrivateDataSlotEXT)(VkDevice device, VkPrivateDataSlot privateDataSlot, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkSetPrivateDataEXT)(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t data); -typedef void (VKAPI_PTR *PFN_vkGetPrivateDataEXT)(VkDevice device, VkObjectType objectType, uint64_t objectHandle, VkPrivateDataSlot privateDataSlot, uint64_t* pData); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreatePrivateDataSlotEXT( - VkDevice device, - const VkPrivateDataSlotCreateInfo* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkPrivateDataSlot* pPrivateDataSlot); - -VKAPI_ATTR void VKAPI_CALL vkDestroyPrivateDataSlotEXT( - VkDevice device, - VkPrivateDataSlot privateDataSlot, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkSetPrivateDataEXT( - VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t data); - -VKAPI_ATTR void VKAPI_CALL vkGetPrivateDataEXT( - VkDevice device, - VkObjectType objectType, - uint64_t objectHandle, - VkPrivateDataSlot privateDataSlot, - uint64_t* pData); -#endif - - -#define VK_EXT_pipeline_creation_cache_control 1 -#define VK_EXT_PIPELINE_CREATION_CACHE_CONTROL_SPEC_VERSION 3 -#define VK_EXT_PIPELINE_CREATION_CACHE_CONTROL_EXTENSION_NAME "VK_EXT_pipeline_creation_cache_control" -typedef VkPhysicalDevicePipelineCreationCacheControlFeatures VkPhysicalDevicePipelineCreationCacheControlFeaturesEXT; - - - -#define VK_NV_device_diagnostics_config 1 -#define VK_NV_DEVICE_DIAGNOSTICS_CONFIG_SPEC_VERSION 1 -#define VK_NV_DEVICE_DIAGNOSTICS_CONFIG_EXTENSION_NAME "VK_NV_device_diagnostics_config" - -typedef enum VkDeviceDiagnosticsConfigFlagBitsNV { - VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_SHADER_DEBUG_INFO_BIT_NV = 0x00000001, - VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_RESOURCE_TRACKING_BIT_NV = 0x00000002, - VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_AUTOMATIC_CHECKPOINTS_BIT_NV = 0x00000004, - VK_DEVICE_DIAGNOSTICS_CONFIG_FLAG_BITS_MAX_ENUM_NV = 0x7FFFFFFF -} VkDeviceDiagnosticsConfigFlagBitsNV; -typedef VkFlags VkDeviceDiagnosticsConfigFlagsNV; -typedef struct VkPhysicalDeviceDiagnosticsConfigFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 diagnosticsConfig; -} VkPhysicalDeviceDiagnosticsConfigFeaturesNV; - -typedef struct VkDeviceDiagnosticsConfigCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkDeviceDiagnosticsConfigFlagsNV flags; -} VkDeviceDiagnosticsConfigCreateInfoNV; - - - -#define VK_QCOM_render_pass_store_ops 1 -#define VK_QCOM_RENDER_PASS_STORE_OPS_SPEC_VERSION 2 -#define VK_QCOM_RENDER_PASS_STORE_OPS_EXTENSION_NAME "VK_QCOM_render_pass_store_ops" - - -#define VK_NV_fragment_shading_rate_enums 1 -#define VK_NV_FRAGMENT_SHADING_RATE_ENUMS_SPEC_VERSION 1 -#define VK_NV_FRAGMENT_SHADING_RATE_ENUMS_EXTENSION_NAME "VK_NV_fragment_shading_rate_enums" - -typedef enum VkFragmentShadingRateTypeNV { - VK_FRAGMENT_SHADING_RATE_TYPE_FRAGMENT_SIZE_NV = 0, - VK_FRAGMENT_SHADING_RATE_TYPE_ENUMS_NV = 1, - VK_FRAGMENT_SHADING_RATE_TYPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkFragmentShadingRateTypeNV; - -typedef enum VkFragmentShadingRateNV { - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV = 0, - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV = 1, - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV = 4, - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV = 5, - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV = 6, - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV = 9, - VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV = 10, - VK_FRAGMENT_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV = 11, - VK_FRAGMENT_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV = 12, - VK_FRAGMENT_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV = 13, - VK_FRAGMENT_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV = 14, - VK_FRAGMENT_SHADING_RATE_NO_INVOCATIONS_NV = 15, - VK_FRAGMENT_SHADING_RATE_MAX_ENUM_NV = 0x7FFFFFFF -} VkFragmentShadingRateNV; -typedef struct VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 fragmentShadingRateEnums; - VkBool32 supersampleFragmentShadingRates; - VkBool32 noInvocationFragmentShadingRates; -} VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV; - -typedef struct VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV { - VkStructureType sType; - void* pNext; - VkSampleCountFlagBits maxFragmentShadingRateInvocationCount; -} VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV; - -typedef struct VkPipelineFragmentShadingRateEnumStateCreateInfoNV { - VkStructureType sType; - const void* pNext; - VkFragmentShadingRateTypeNV shadingRateType; - VkFragmentShadingRateNV shadingRate; - VkFragmentShadingRateCombinerOpKHR combinerOps[2]; -} VkPipelineFragmentShadingRateEnumStateCreateInfoNV; - -typedef void (VKAPI_PTR *PFN_vkCmdSetFragmentShadingRateEnumNV)(VkCommandBuffer commandBuffer, VkFragmentShadingRateNV shadingRate, const VkFragmentShadingRateCombinerOpKHR combinerOps[2]); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetFragmentShadingRateEnumNV( - VkCommandBuffer commandBuffer, - VkFragmentShadingRateNV shadingRate, - const VkFragmentShadingRateCombinerOpKHR combinerOps[2]); -#endif - - -#define VK_NV_ray_tracing_motion_blur 1 -#define VK_NV_RAY_TRACING_MOTION_BLUR_SPEC_VERSION 1 -#define VK_NV_RAY_TRACING_MOTION_BLUR_EXTENSION_NAME "VK_NV_ray_tracing_motion_blur" - -typedef enum VkAccelerationStructureMotionInstanceTypeNV { - VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_STATIC_NV = 0, - VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_MATRIX_MOTION_NV = 1, - VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_SRT_MOTION_NV = 2, - VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_MAX_ENUM_NV = 0x7FFFFFFF -} VkAccelerationStructureMotionInstanceTypeNV; -typedef VkFlags VkAccelerationStructureMotionInfoFlagsNV; -typedef VkFlags VkAccelerationStructureMotionInstanceFlagsNV; -typedef union VkDeviceOrHostAddressConstKHR { - VkDeviceAddress deviceAddress; - const void* hostAddress; -} VkDeviceOrHostAddressConstKHR; - -typedef struct VkAccelerationStructureGeometryMotionTrianglesDataNV { - VkStructureType sType; - const void* pNext; - VkDeviceOrHostAddressConstKHR vertexData; -} VkAccelerationStructureGeometryMotionTrianglesDataNV; - -typedef struct VkAccelerationStructureMotionInfoNV { - VkStructureType sType; - const void* pNext; - uint32_t maxInstances; - VkAccelerationStructureMotionInfoFlagsNV flags; -} VkAccelerationStructureMotionInfoNV; - -typedef struct VkAccelerationStructureMatrixMotionInstanceNV { - VkTransformMatrixKHR transformT0; - VkTransformMatrixKHR transformT1; - uint32_t instanceCustomIndex:24; - uint32_t mask:8; - uint32_t instanceShaderBindingTableRecordOffset:24; - VkGeometryInstanceFlagsKHR flags:8; - uint64_t accelerationStructureReference; -} VkAccelerationStructureMatrixMotionInstanceNV; - -typedef struct VkSRTDataNV { - float sx; - float a; - float b; - float pvx; - float sy; - float c; - float pvy; - float sz; - float pvz; - float qx; - float qy; - float qz; - float qw; - float tx; - float ty; - float tz; -} VkSRTDataNV; - -typedef struct VkAccelerationStructureSRTMotionInstanceNV { - VkSRTDataNV transformT0; - VkSRTDataNV transformT1; - uint32_t instanceCustomIndex:24; - uint32_t mask:8; - uint32_t instanceShaderBindingTableRecordOffset:24; - VkGeometryInstanceFlagsKHR flags:8; - uint64_t accelerationStructureReference; -} VkAccelerationStructureSRTMotionInstanceNV; - -typedef union VkAccelerationStructureMotionInstanceDataNV { - VkAccelerationStructureInstanceKHR staticInstance; - VkAccelerationStructureMatrixMotionInstanceNV matrixMotionInstance; - VkAccelerationStructureSRTMotionInstanceNV srtMotionInstance; -} VkAccelerationStructureMotionInstanceDataNV; - -typedef struct VkAccelerationStructureMotionInstanceNV { - VkAccelerationStructureMotionInstanceTypeNV type; - VkAccelerationStructureMotionInstanceFlagsNV flags; - VkAccelerationStructureMotionInstanceDataNV data; -} VkAccelerationStructureMotionInstanceNV; - -typedef struct VkPhysicalDeviceRayTracingMotionBlurFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 rayTracingMotionBlur; - VkBool32 rayTracingMotionBlurPipelineTraceRaysIndirect; -} VkPhysicalDeviceRayTracingMotionBlurFeaturesNV; - - - -#define VK_EXT_ycbcr_2plane_444_formats 1 -#define VK_EXT_YCBCR_2PLANE_444_FORMATS_SPEC_VERSION 1 -#define VK_EXT_YCBCR_2PLANE_444_FORMATS_EXTENSION_NAME "VK_EXT_ycbcr_2plane_444_formats" -typedef struct VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 ycbcr2plane444Formats; -} VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT; - - - -#define VK_EXT_fragment_density_map2 1 -#define VK_EXT_FRAGMENT_DENSITY_MAP_2_SPEC_VERSION 1 -#define VK_EXT_FRAGMENT_DENSITY_MAP_2_EXTENSION_NAME "VK_EXT_fragment_density_map2" -typedef struct VkPhysicalDeviceFragmentDensityMap2FeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 fragmentDensityMapDeferred; -} VkPhysicalDeviceFragmentDensityMap2FeaturesEXT; - -typedef struct VkPhysicalDeviceFragmentDensityMap2PropertiesEXT { - VkStructureType sType; - void* pNext; - VkBool32 subsampledLoads; - VkBool32 subsampledCoarseReconstructionEarlyAccess; - uint32_t maxSubsampledArrayLayers; - uint32_t maxDescriptorSetSubsampledSamplers; -} VkPhysicalDeviceFragmentDensityMap2PropertiesEXT; - - - -#define VK_QCOM_rotated_copy_commands 1 -#define VK_QCOM_ROTATED_COPY_COMMANDS_SPEC_VERSION 1 -#define VK_QCOM_ROTATED_COPY_COMMANDS_EXTENSION_NAME "VK_QCOM_rotated_copy_commands" -typedef struct VkCopyCommandTransformInfoQCOM { - VkStructureType sType; - const void* pNext; - VkSurfaceTransformFlagBitsKHR transform; -} VkCopyCommandTransformInfoQCOM; - - - -#define VK_EXT_image_robustness 1 -#define VK_EXT_IMAGE_ROBUSTNESS_SPEC_VERSION 1 -#define VK_EXT_IMAGE_ROBUSTNESS_EXTENSION_NAME "VK_EXT_image_robustness" -typedef VkPhysicalDeviceImageRobustnessFeatures VkPhysicalDeviceImageRobustnessFeaturesEXT; - - - -#define VK_EXT_4444_formats 1 -#define VK_EXT_4444_FORMATS_SPEC_VERSION 1 -#define VK_EXT_4444_FORMATS_EXTENSION_NAME "VK_EXT_4444_formats" -typedef struct VkPhysicalDevice4444FormatsFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 formatA4R4G4B4; - VkBool32 formatA4B4G4R4; -} VkPhysicalDevice4444FormatsFeaturesEXT; - - - -#define VK_ARM_rasterization_order_attachment_access 1 -#define VK_ARM_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_SPEC_VERSION 1 -#define VK_ARM_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_EXTENSION_NAME "VK_ARM_rasterization_order_attachment_access" -typedef struct VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM { - VkStructureType sType; - const void* pNext; - VkBool32 rasterizationOrderColorAttachmentAccess; - VkBool32 rasterizationOrderDepthAttachmentAccess; - VkBool32 rasterizationOrderStencilAttachmentAccess; -} VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM; - - - -#define VK_EXT_rgba10x6_formats 1 -#define VK_EXT_RGBA10X6_FORMATS_SPEC_VERSION 1 -#define VK_EXT_RGBA10X6_FORMATS_EXTENSION_NAME "VK_EXT_rgba10x6_formats" -typedef struct VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 formatRgba10x6WithoutYCbCrSampler; -} VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT; - - - -#define VK_NV_acquire_winrt_display 1 -#define VK_NV_ACQUIRE_WINRT_DISPLAY_SPEC_VERSION 1 -#define VK_NV_ACQUIRE_WINRT_DISPLAY_EXTENSION_NAME "VK_NV_acquire_winrt_display" -typedef VkResult (VKAPI_PTR *PFN_vkAcquireWinrtDisplayNV)(VkPhysicalDevice physicalDevice, VkDisplayKHR display); -typedef VkResult (VKAPI_PTR *PFN_vkGetWinrtDisplayNV)(VkPhysicalDevice physicalDevice, uint32_t deviceRelativeId, VkDisplayKHR* pDisplay); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireWinrtDisplayNV( - VkPhysicalDevice physicalDevice, - VkDisplayKHR display); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetWinrtDisplayNV( - VkPhysicalDevice physicalDevice, - uint32_t deviceRelativeId, - VkDisplayKHR* pDisplay); -#endif - - -#define VK_VALVE_mutable_descriptor_type 1 -#define VK_VALVE_MUTABLE_DESCRIPTOR_TYPE_SPEC_VERSION 1 -#define VK_VALVE_MUTABLE_DESCRIPTOR_TYPE_EXTENSION_NAME "VK_VALVE_mutable_descriptor_type" -typedef struct VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE { - VkStructureType sType; - void* pNext; - VkBool32 mutableDescriptorType; -} VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE; - -typedef struct VkMutableDescriptorTypeListVALVE { - uint32_t descriptorTypeCount; - const VkDescriptorType* pDescriptorTypes; -} VkMutableDescriptorTypeListVALVE; - -typedef struct VkMutableDescriptorTypeCreateInfoVALVE { - VkStructureType sType; - const void* pNext; - uint32_t mutableDescriptorTypeListCount; - const VkMutableDescriptorTypeListVALVE* pMutableDescriptorTypeLists; -} VkMutableDescriptorTypeCreateInfoVALVE; - - - -#define VK_EXT_vertex_input_dynamic_state 1 -#define VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_SPEC_VERSION 2 -#define VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME "VK_EXT_vertex_input_dynamic_state" -typedef struct VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 vertexInputDynamicState; -} VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT; - -typedef struct VkVertexInputBindingDescription2EXT { - VkStructureType sType; - void* pNext; - uint32_t binding; - uint32_t stride; - VkVertexInputRate inputRate; - uint32_t divisor; -} VkVertexInputBindingDescription2EXT; - -typedef struct VkVertexInputAttributeDescription2EXT { - VkStructureType sType; - void* pNext; - uint32_t location; - uint32_t binding; - VkFormat format; - uint32_t offset; -} VkVertexInputAttributeDescription2EXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetVertexInputEXT)(VkCommandBuffer commandBuffer, uint32_t vertexBindingDescriptionCount, const VkVertexInputBindingDescription2EXT* pVertexBindingDescriptions, uint32_t vertexAttributeDescriptionCount, const VkVertexInputAttributeDescription2EXT* pVertexAttributeDescriptions); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetVertexInputEXT( - VkCommandBuffer commandBuffer, - uint32_t vertexBindingDescriptionCount, - const VkVertexInputBindingDescription2EXT* pVertexBindingDescriptions, - uint32_t vertexAttributeDescriptionCount, - const VkVertexInputAttributeDescription2EXT* pVertexAttributeDescriptions); -#endif - - -#define VK_EXT_physical_device_drm 1 -#define VK_EXT_PHYSICAL_DEVICE_DRM_SPEC_VERSION 1 -#define VK_EXT_PHYSICAL_DEVICE_DRM_EXTENSION_NAME "VK_EXT_physical_device_drm" -typedef struct VkPhysicalDeviceDrmPropertiesEXT { - VkStructureType sType; - void* pNext; - VkBool32 hasPrimary; - VkBool32 hasRender; - int64_t primaryMajor; - int64_t primaryMinor; - int64_t renderMajor; - int64_t renderMinor; -} VkPhysicalDeviceDrmPropertiesEXT; - - - -#define VK_EXT_depth_clip_control 1 -#define VK_EXT_DEPTH_CLIP_CONTROL_SPEC_VERSION 1 -#define VK_EXT_DEPTH_CLIP_CONTROL_EXTENSION_NAME "VK_EXT_depth_clip_control" -typedef struct VkPhysicalDeviceDepthClipControlFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 depthClipControl; -} VkPhysicalDeviceDepthClipControlFeaturesEXT; - -typedef struct VkPipelineViewportDepthClipControlCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkBool32 negativeOneToOne; -} VkPipelineViewportDepthClipControlCreateInfoEXT; - - - -#define VK_EXT_primitive_topology_list_restart 1 -#define VK_EXT_PRIMITIVE_TOPOLOGY_LIST_RESTART_SPEC_VERSION 1 -#define VK_EXT_PRIMITIVE_TOPOLOGY_LIST_RESTART_EXTENSION_NAME "VK_EXT_primitive_topology_list_restart" -typedef struct VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 primitiveTopologyListRestart; - VkBool32 primitiveTopologyPatchListRestart; -} VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT; - - - -#define VK_HUAWEI_subpass_shading 1 -#define VK_HUAWEI_SUBPASS_SHADING_SPEC_VERSION 2 -#define VK_HUAWEI_SUBPASS_SHADING_EXTENSION_NAME "VK_HUAWEI_subpass_shading" -typedef struct VkSubpassShadingPipelineCreateInfoHUAWEI { - VkStructureType sType; - void* pNext; - VkRenderPass renderPass; - uint32_t subpass; -} VkSubpassShadingPipelineCreateInfoHUAWEI; - -typedef struct VkPhysicalDeviceSubpassShadingFeaturesHUAWEI { - VkStructureType sType; - void* pNext; - VkBool32 subpassShading; -} VkPhysicalDeviceSubpassShadingFeaturesHUAWEI; - -typedef struct VkPhysicalDeviceSubpassShadingPropertiesHUAWEI { - VkStructureType sType; - void* pNext; - uint32_t maxSubpassShadingWorkgroupSizeAspectRatio; -} VkPhysicalDeviceSubpassShadingPropertiesHUAWEI; - -typedef VkResult (VKAPI_PTR *PFN_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI)(VkDevice device, VkRenderPass renderpass, VkExtent2D* pMaxWorkgroupSize); -typedef void (VKAPI_PTR *PFN_vkCmdSubpassShadingHUAWEI)(VkCommandBuffer commandBuffer); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - VkDevice device, - VkRenderPass renderpass, - VkExtent2D* pMaxWorkgroupSize); - -VKAPI_ATTR void VKAPI_CALL vkCmdSubpassShadingHUAWEI( - VkCommandBuffer commandBuffer); -#endif - - -#define VK_HUAWEI_invocation_mask 1 -#define VK_HUAWEI_INVOCATION_MASK_SPEC_VERSION 1 -#define VK_HUAWEI_INVOCATION_MASK_EXTENSION_NAME "VK_HUAWEI_invocation_mask" -typedef struct VkPhysicalDeviceInvocationMaskFeaturesHUAWEI { - VkStructureType sType; - void* pNext; - VkBool32 invocationMask; -} VkPhysicalDeviceInvocationMaskFeaturesHUAWEI; - -typedef void (VKAPI_PTR *PFN_vkCmdBindInvocationMaskHUAWEI)(VkCommandBuffer commandBuffer, VkImageView imageView, VkImageLayout imageLayout); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdBindInvocationMaskHUAWEI( - VkCommandBuffer commandBuffer, - VkImageView imageView, - VkImageLayout imageLayout); -#endif - - -#define VK_NV_external_memory_rdma 1 -typedef void* VkRemoteAddressNV; -#define VK_NV_EXTERNAL_MEMORY_RDMA_SPEC_VERSION 1 -#define VK_NV_EXTERNAL_MEMORY_RDMA_EXTENSION_NAME "VK_NV_external_memory_rdma" -typedef struct VkMemoryGetRemoteAddressInfoNV { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; - VkExternalMemoryHandleTypeFlagBits handleType; -} VkMemoryGetRemoteAddressInfoNV; - -typedef struct VkPhysicalDeviceExternalMemoryRDMAFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 externalMemoryRDMA; -} VkPhysicalDeviceExternalMemoryRDMAFeaturesNV; - -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryRemoteAddressNV)(VkDevice device, const VkMemoryGetRemoteAddressInfoNV* pMemoryGetRemoteAddressInfo, VkRemoteAddressNV* pAddress); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryRemoteAddressNV( - VkDevice device, - const VkMemoryGetRemoteAddressInfoNV* pMemoryGetRemoteAddressInfo, - VkRemoteAddressNV* pAddress); -#endif - - -#define VK_EXT_extended_dynamic_state2 1 -#define VK_EXT_EXTENDED_DYNAMIC_STATE_2_SPEC_VERSION 1 -#define VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME "VK_EXT_extended_dynamic_state2" -typedef struct VkPhysicalDeviceExtendedDynamicState2FeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 extendedDynamicState2; - VkBool32 extendedDynamicState2LogicOp; - VkBool32 extendedDynamicState2PatchControlPoints; -} VkPhysicalDeviceExtendedDynamicState2FeaturesEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetPatchControlPointsEXT)(VkCommandBuffer commandBuffer, uint32_t patchControlPoints); -typedef void (VKAPI_PTR *PFN_vkCmdSetRasterizerDiscardEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 rasterizerDiscardEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetDepthBiasEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 depthBiasEnable); -typedef void (VKAPI_PTR *PFN_vkCmdSetLogicOpEXT)(VkCommandBuffer commandBuffer, VkLogicOp logicOp); -typedef void (VKAPI_PTR *PFN_vkCmdSetPrimitiveRestartEnableEXT)(VkCommandBuffer commandBuffer, VkBool32 primitiveRestartEnable); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetPatchControlPointsEXT( - VkCommandBuffer commandBuffer, - uint32_t patchControlPoints); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetRasterizerDiscardEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 rasterizerDiscardEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetDepthBiasEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 depthBiasEnable); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetLogicOpEXT( - VkCommandBuffer commandBuffer, - VkLogicOp logicOp); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetPrimitiveRestartEnableEXT( - VkCommandBuffer commandBuffer, - VkBool32 primitiveRestartEnable); -#endif - - -#define VK_EXT_color_write_enable 1 -#define VK_EXT_COLOR_WRITE_ENABLE_SPEC_VERSION 1 -#define VK_EXT_COLOR_WRITE_ENABLE_EXTENSION_NAME "VK_EXT_color_write_enable" -typedef struct VkPhysicalDeviceColorWriteEnableFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 colorWriteEnable; -} VkPhysicalDeviceColorWriteEnableFeaturesEXT; - -typedef struct VkPipelineColorWriteCreateInfoEXT { - VkStructureType sType; - const void* pNext; - uint32_t attachmentCount; - const VkBool32* pColorWriteEnables; -} VkPipelineColorWriteCreateInfoEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdSetColorWriteEnableEXT)(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkBool32* pColorWriteEnables); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdSetColorWriteEnableEXT( - VkCommandBuffer commandBuffer, - uint32_t attachmentCount, - const VkBool32* pColorWriteEnables); -#endif - - -#define VK_EXT_global_priority_query 1 -#define VK_EXT_GLOBAL_PRIORITY_QUERY_SPEC_VERSION 1 -#define VK_EXT_GLOBAL_PRIORITY_QUERY_EXTENSION_NAME "VK_EXT_global_priority_query" -#define VK_MAX_GLOBAL_PRIORITY_SIZE_EXT VK_MAX_GLOBAL_PRIORITY_SIZE_KHR -typedef VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR VkPhysicalDeviceGlobalPriorityQueryFeaturesEXT; - -typedef VkQueueFamilyGlobalPriorityPropertiesKHR VkQueueFamilyGlobalPriorityPropertiesEXT; - - - -#define VK_EXT_image_view_min_lod 1 -#define VK_EXT_IMAGE_VIEW_MIN_LOD_SPEC_VERSION 1 -#define VK_EXT_IMAGE_VIEW_MIN_LOD_EXTENSION_NAME "VK_EXT_image_view_min_lod" -typedef struct VkPhysicalDeviceImageViewMinLodFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 minLod; -} VkPhysicalDeviceImageViewMinLodFeaturesEXT; - -typedef struct VkImageViewMinLodCreateInfoEXT { - VkStructureType sType; - const void* pNext; - float minLod; -} VkImageViewMinLodCreateInfoEXT; - - - -#define VK_EXT_multi_draw 1 -#define VK_EXT_MULTI_DRAW_SPEC_VERSION 1 -#define VK_EXT_MULTI_DRAW_EXTENSION_NAME "VK_EXT_multi_draw" -typedef struct VkPhysicalDeviceMultiDrawFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 multiDraw; -} VkPhysicalDeviceMultiDrawFeaturesEXT; - -typedef struct VkPhysicalDeviceMultiDrawPropertiesEXT { - VkStructureType sType; - void* pNext; - uint32_t maxMultiDrawCount; -} VkPhysicalDeviceMultiDrawPropertiesEXT; - -typedef struct VkMultiDrawInfoEXT { - uint32_t firstVertex; - uint32_t vertexCount; -} VkMultiDrawInfoEXT; - -typedef struct VkMultiDrawIndexedInfoEXT { - uint32_t firstIndex; - uint32_t indexCount; - int32_t vertexOffset; -} VkMultiDrawIndexedInfoEXT; - -typedef void (VKAPI_PTR *PFN_vkCmdDrawMultiEXT)(VkCommandBuffer commandBuffer, uint32_t drawCount, const VkMultiDrawInfoEXT* pVertexInfo, uint32_t instanceCount, uint32_t firstInstance, uint32_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdDrawMultiIndexedEXT)(VkCommandBuffer commandBuffer, uint32_t drawCount, const VkMultiDrawIndexedInfoEXT* pIndexInfo, uint32_t instanceCount, uint32_t firstInstance, uint32_t stride, const int32_t* pVertexOffset); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdDrawMultiEXT( - VkCommandBuffer commandBuffer, - uint32_t drawCount, - const VkMultiDrawInfoEXT* pVertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdDrawMultiIndexedEXT( - VkCommandBuffer commandBuffer, - uint32_t drawCount, - const VkMultiDrawIndexedInfoEXT* pIndexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - const int32_t* pVertexOffset); -#endif - - -#define VK_EXT_load_store_op_none 1 -#define VK_EXT_LOAD_STORE_OP_NONE_SPEC_VERSION 1 -#define VK_EXT_LOAD_STORE_OP_NONE_EXTENSION_NAME "VK_EXT_load_store_op_none" - - -#define VK_EXT_border_color_swizzle 1 -#define VK_EXT_BORDER_COLOR_SWIZZLE_SPEC_VERSION 1 -#define VK_EXT_BORDER_COLOR_SWIZZLE_EXTENSION_NAME "VK_EXT_border_color_swizzle" -typedef struct VkPhysicalDeviceBorderColorSwizzleFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 borderColorSwizzle; - VkBool32 borderColorSwizzleFromImage; -} VkPhysicalDeviceBorderColorSwizzleFeaturesEXT; - -typedef struct VkSamplerBorderColorComponentMappingCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkComponentMapping components; - VkBool32 srgb; -} VkSamplerBorderColorComponentMappingCreateInfoEXT; - - - -#define VK_EXT_pageable_device_local_memory 1 -#define VK_EXT_PAGEABLE_DEVICE_LOCAL_MEMORY_SPEC_VERSION 1 -#define VK_EXT_PAGEABLE_DEVICE_LOCAL_MEMORY_EXTENSION_NAME "VK_EXT_pageable_device_local_memory" -typedef struct VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT { - VkStructureType sType; - void* pNext; - VkBool32 pageableDeviceLocalMemory; -} VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT; - -typedef void (VKAPI_PTR *PFN_vkSetDeviceMemoryPriorityEXT)(VkDevice device, VkDeviceMemory memory, float priority); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkSetDeviceMemoryPriorityEXT( - VkDevice device, - VkDeviceMemory memory, - float priority); -#endif - - -#define VK_QCOM_fragment_density_map_offset 1 -#define VK_QCOM_FRAGMENT_DENSITY_MAP_OFFSET_SPEC_VERSION 1 -#define VK_QCOM_FRAGMENT_DENSITY_MAP_OFFSET_EXTENSION_NAME "VK_QCOM_fragment_density_map_offset" -typedef struct VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM { - VkStructureType sType; - void* pNext; - VkBool32 fragmentDensityMapOffset; -} VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM; - -typedef struct VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM { - VkStructureType sType; - void* pNext; - VkExtent2D fragmentDensityOffsetGranularity; -} VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM; - -typedef struct VkSubpassFragmentDensityMapOffsetEndInfoQCOM { - VkStructureType sType; - const void* pNext; - uint32_t fragmentDensityOffsetCount; - const VkOffset2D* pFragmentDensityOffsets; -} VkSubpassFragmentDensityMapOffsetEndInfoQCOM; - - - -#define VK_NV_linear_color_attachment 1 -#define VK_NV_LINEAR_COLOR_ATTACHMENT_SPEC_VERSION 1 -#define VK_NV_LINEAR_COLOR_ATTACHMENT_EXTENSION_NAME "VK_NV_linear_color_attachment" -typedef struct VkPhysicalDeviceLinearColorAttachmentFeaturesNV { - VkStructureType sType; - void* pNext; - VkBool32 linearColorAttachment; -} VkPhysicalDeviceLinearColorAttachmentFeaturesNV; - - - -#define VK_GOOGLE_surfaceless_query 1 -#define VK_GOOGLE_SURFACELESS_QUERY_SPEC_VERSION 1 -#define VK_GOOGLE_SURFACELESS_QUERY_EXTENSION_NAME "VK_GOOGLE_surfaceless_query" - - -#define VK_KHR_acceleration_structure 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkAccelerationStructureKHR) -#define VK_KHR_ACCELERATION_STRUCTURE_SPEC_VERSION 13 -#define VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME "VK_KHR_acceleration_structure" - -typedef enum VkBuildAccelerationStructureModeKHR { - VK_BUILD_ACCELERATION_STRUCTURE_MODE_BUILD_KHR = 0, - VK_BUILD_ACCELERATION_STRUCTURE_MODE_UPDATE_KHR = 1, - VK_BUILD_ACCELERATION_STRUCTURE_MODE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkBuildAccelerationStructureModeKHR; - -typedef enum VkAccelerationStructureBuildTypeKHR { - VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_KHR = 0, - VK_ACCELERATION_STRUCTURE_BUILD_TYPE_DEVICE_KHR = 1, - VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_OR_DEVICE_KHR = 2, - VK_ACCELERATION_STRUCTURE_BUILD_TYPE_MAX_ENUM_KHR = 0x7FFFFFFF -} VkAccelerationStructureBuildTypeKHR; - -typedef enum VkAccelerationStructureCompatibilityKHR { - VK_ACCELERATION_STRUCTURE_COMPATIBILITY_COMPATIBLE_KHR = 0, - VK_ACCELERATION_STRUCTURE_COMPATIBILITY_INCOMPATIBLE_KHR = 1, - VK_ACCELERATION_STRUCTURE_COMPATIBILITY_MAX_ENUM_KHR = 0x7FFFFFFF -} VkAccelerationStructureCompatibilityKHR; - -typedef enum VkAccelerationStructureCreateFlagBitsKHR { - VK_ACCELERATION_STRUCTURE_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR = 0x00000001, - VK_ACCELERATION_STRUCTURE_CREATE_MOTION_BIT_NV = 0x00000004, - VK_ACCELERATION_STRUCTURE_CREATE_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF -} VkAccelerationStructureCreateFlagBitsKHR; -typedef VkFlags VkAccelerationStructureCreateFlagsKHR; -typedef union VkDeviceOrHostAddressKHR { - VkDeviceAddress deviceAddress; - void* hostAddress; -} VkDeviceOrHostAddressKHR; - -typedef struct VkAccelerationStructureBuildRangeInfoKHR { - uint32_t primitiveCount; - uint32_t primitiveOffset; - uint32_t firstVertex; - uint32_t transformOffset; -} VkAccelerationStructureBuildRangeInfoKHR; - -typedef struct VkAccelerationStructureGeometryTrianglesDataKHR { - VkStructureType sType; - const void* pNext; - VkFormat vertexFormat; - VkDeviceOrHostAddressConstKHR vertexData; - VkDeviceSize vertexStride; - uint32_t maxVertex; - VkIndexType indexType; - VkDeviceOrHostAddressConstKHR indexData; - VkDeviceOrHostAddressConstKHR transformData; -} VkAccelerationStructureGeometryTrianglesDataKHR; - -typedef struct VkAccelerationStructureGeometryAabbsDataKHR { - VkStructureType sType; - const void* pNext; - VkDeviceOrHostAddressConstKHR data; - VkDeviceSize stride; -} VkAccelerationStructureGeometryAabbsDataKHR; - -typedef struct VkAccelerationStructureGeometryInstancesDataKHR { - VkStructureType sType; - const void* pNext; - VkBool32 arrayOfPointers; - VkDeviceOrHostAddressConstKHR data; -} VkAccelerationStructureGeometryInstancesDataKHR; - -typedef union VkAccelerationStructureGeometryDataKHR { - VkAccelerationStructureGeometryTrianglesDataKHR triangles; - VkAccelerationStructureGeometryAabbsDataKHR aabbs; - VkAccelerationStructureGeometryInstancesDataKHR instances; -} VkAccelerationStructureGeometryDataKHR; - -typedef struct VkAccelerationStructureGeometryKHR { - VkStructureType sType; - const void* pNext; - VkGeometryTypeKHR geometryType; - VkAccelerationStructureGeometryDataKHR geometry; - VkGeometryFlagsKHR flags; -} VkAccelerationStructureGeometryKHR; - -typedef struct VkAccelerationStructureBuildGeometryInfoKHR { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureTypeKHR type; - VkBuildAccelerationStructureFlagsKHR flags; - VkBuildAccelerationStructureModeKHR mode; - VkAccelerationStructureKHR srcAccelerationStructure; - VkAccelerationStructureKHR dstAccelerationStructure; - uint32_t geometryCount; - const VkAccelerationStructureGeometryKHR* pGeometries; - const VkAccelerationStructureGeometryKHR* const* ppGeometries; - VkDeviceOrHostAddressKHR scratchData; -} VkAccelerationStructureBuildGeometryInfoKHR; - -typedef struct VkAccelerationStructureCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureCreateFlagsKHR createFlags; - VkBuffer buffer; - VkDeviceSize offset; - VkDeviceSize size; - VkAccelerationStructureTypeKHR type; - VkDeviceAddress deviceAddress; -} VkAccelerationStructureCreateInfoKHR; - -typedef struct VkWriteDescriptorSetAccelerationStructureKHR { - VkStructureType sType; - const void* pNext; - uint32_t accelerationStructureCount; - const VkAccelerationStructureKHR* pAccelerationStructures; -} VkWriteDescriptorSetAccelerationStructureKHR; - -typedef struct VkPhysicalDeviceAccelerationStructureFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 accelerationStructure; - VkBool32 accelerationStructureCaptureReplay; - VkBool32 accelerationStructureIndirectBuild; - VkBool32 accelerationStructureHostCommands; - VkBool32 descriptorBindingAccelerationStructureUpdateAfterBind; -} VkPhysicalDeviceAccelerationStructureFeaturesKHR; - -typedef struct VkPhysicalDeviceAccelerationStructurePropertiesKHR { - VkStructureType sType; - void* pNext; - uint64_t maxGeometryCount; - uint64_t maxInstanceCount; - uint64_t maxPrimitiveCount; - uint32_t maxPerStageDescriptorAccelerationStructures; - uint32_t maxPerStageDescriptorUpdateAfterBindAccelerationStructures; - uint32_t maxDescriptorSetAccelerationStructures; - uint32_t maxDescriptorSetUpdateAfterBindAccelerationStructures; - uint32_t minAccelerationStructureScratchOffsetAlignment; -} VkPhysicalDeviceAccelerationStructurePropertiesKHR; - -typedef struct VkAccelerationStructureDeviceAddressInfoKHR { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureKHR accelerationStructure; -} VkAccelerationStructureDeviceAddressInfoKHR; - -typedef struct VkAccelerationStructureVersionInfoKHR { - VkStructureType sType; - const void* pNext; - const uint8_t* pVersionData; -} VkAccelerationStructureVersionInfoKHR; - -typedef struct VkCopyAccelerationStructureToMemoryInfoKHR { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureKHR src; - VkDeviceOrHostAddressKHR dst; - VkCopyAccelerationStructureModeKHR mode; -} VkCopyAccelerationStructureToMemoryInfoKHR; - -typedef struct VkCopyMemoryToAccelerationStructureInfoKHR { - VkStructureType sType; - const void* pNext; - VkDeviceOrHostAddressConstKHR src; - VkAccelerationStructureKHR dst; - VkCopyAccelerationStructureModeKHR mode; -} VkCopyMemoryToAccelerationStructureInfoKHR; - -typedef struct VkCopyAccelerationStructureInfoKHR { - VkStructureType sType; - const void* pNext; - VkAccelerationStructureKHR src; - VkAccelerationStructureKHR dst; - VkCopyAccelerationStructureModeKHR mode; -} VkCopyAccelerationStructureInfoKHR; - -typedef struct VkAccelerationStructureBuildSizesInfoKHR { - VkStructureType sType; - const void* pNext; - VkDeviceSize accelerationStructureSize; - VkDeviceSize updateScratchSize; - VkDeviceSize buildScratchSize; -} VkAccelerationStructureBuildSizesInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateAccelerationStructureKHR)(VkDevice device, const VkAccelerationStructureCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkAccelerationStructureKHR* pAccelerationStructure); -typedef void (VKAPI_PTR *PFN_vkDestroyAccelerationStructureKHR)(VkDevice device, VkAccelerationStructureKHR accelerationStructure, const VkAllocationCallbacks* pAllocator); -typedef void (VKAPI_PTR *PFN_vkCmdBuildAccelerationStructuresKHR)(VkCommandBuffer commandBuffer, uint32_t infoCount, const VkAccelerationStructureBuildGeometryInfoKHR* pInfos, const VkAccelerationStructureBuildRangeInfoKHR* const* ppBuildRangeInfos); -typedef void (VKAPI_PTR *PFN_vkCmdBuildAccelerationStructuresIndirectKHR)(VkCommandBuffer commandBuffer, uint32_t infoCount, const VkAccelerationStructureBuildGeometryInfoKHR* pInfos, const VkDeviceAddress* pIndirectDeviceAddresses, const uint32_t* pIndirectStrides, const uint32_t* const* ppMaxPrimitiveCounts); -typedef VkResult (VKAPI_PTR *PFN_vkBuildAccelerationStructuresKHR)(VkDevice device, VkDeferredOperationKHR deferredOperation, uint32_t infoCount, const VkAccelerationStructureBuildGeometryInfoKHR* pInfos, const VkAccelerationStructureBuildRangeInfoKHR* const* ppBuildRangeInfos); -typedef VkResult (VKAPI_PTR *PFN_vkCopyAccelerationStructureKHR)(VkDevice device, VkDeferredOperationKHR deferredOperation, const VkCopyAccelerationStructureInfoKHR* pInfo); -typedef VkResult (VKAPI_PTR *PFN_vkCopyAccelerationStructureToMemoryKHR)(VkDevice device, VkDeferredOperationKHR deferredOperation, const VkCopyAccelerationStructureToMemoryInfoKHR* pInfo); -typedef VkResult (VKAPI_PTR *PFN_vkCopyMemoryToAccelerationStructureKHR)(VkDevice device, VkDeferredOperationKHR deferredOperation, const VkCopyMemoryToAccelerationStructureInfoKHR* pInfo); -typedef VkResult (VKAPI_PTR *PFN_vkWriteAccelerationStructuresPropertiesKHR)(VkDevice device, uint32_t accelerationStructureCount, const VkAccelerationStructureKHR* pAccelerationStructures, VkQueryType queryType, size_t dataSize, void* pData, size_t stride); -typedef void (VKAPI_PTR *PFN_vkCmdCopyAccelerationStructureKHR)(VkCommandBuffer commandBuffer, const VkCopyAccelerationStructureInfoKHR* pInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyAccelerationStructureToMemoryKHR)(VkCommandBuffer commandBuffer, const VkCopyAccelerationStructureToMemoryInfoKHR* pInfo); -typedef void (VKAPI_PTR *PFN_vkCmdCopyMemoryToAccelerationStructureKHR)(VkCommandBuffer commandBuffer, const VkCopyMemoryToAccelerationStructureInfoKHR* pInfo); -typedef VkDeviceAddress (VKAPI_PTR *PFN_vkGetAccelerationStructureDeviceAddressKHR)(VkDevice device, const VkAccelerationStructureDeviceAddressInfoKHR* pInfo); -typedef void (VKAPI_PTR *PFN_vkCmdWriteAccelerationStructuresPropertiesKHR)(VkCommandBuffer commandBuffer, uint32_t accelerationStructureCount, const VkAccelerationStructureKHR* pAccelerationStructures, VkQueryType queryType, VkQueryPool queryPool, uint32_t firstQuery); -typedef void (VKAPI_PTR *PFN_vkGetDeviceAccelerationStructureCompatibilityKHR)(VkDevice device, const VkAccelerationStructureVersionInfoKHR* pVersionInfo, VkAccelerationStructureCompatibilityKHR* pCompatibility); -typedef void (VKAPI_PTR *PFN_vkGetAccelerationStructureBuildSizesKHR)(VkDevice device, VkAccelerationStructureBuildTypeKHR buildType, const VkAccelerationStructureBuildGeometryInfoKHR* pBuildInfo, const uint32_t* pMaxPrimitiveCounts, VkAccelerationStructureBuildSizesInfoKHR* pSizeInfo); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateAccelerationStructureKHR( - VkDevice device, - const VkAccelerationStructureCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkAccelerationStructureKHR* pAccelerationStructure); - -VKAPI_ATTR void VKAPI_CALL vkDestroyAccelerationStructureKHR( - VkDevice device, - VkAccelerationStructureKHR accelerationStructure, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR void VKAPI_CALL vkCmdBuildAccelerationStructuresKHR( - VkCommandBuffer commandBuffer, - uint32_t infoCount, - const VkAccelerationStructureBuildGeometryInfoKHR* pInfos, - const VkAccelerationStructureBuildRangeInfoKHR* const* ppBuildRangeInfos); - -VKAPI_ATTR void VKAPI_CALL vkCmdBuildAccelerationStructuresIndirectKHR( - VkCommandBuffer commandBuffer, - uint32_t infoCount, - const VkAccelerationStructureBuildGeometryInfoKHR* pInfos, - const VkDeviceAddress* pIndirectDeviceAddresses, - const uint32_t* pIndirectStrides, - const uint32_t* const* ppMaxPrimitiveCounts); - -VKAPI_ATTR VkResult VKAPI_CALL vkBuildAccelerationStructuresKHR( - VkDevice device, - VkDeferredOperationKHR deferredOperation, - uint32_t infoCount, - const VkAccelerationStructureBuildGeometryInfoKHR* pInfos, - const VkAccelerationStructureBuildRangeInfoKHR* const* ppBuildRangeInfos); - -VKAPI_ATTR VkResult VKAPI_CALL vkCopyAccelerationStructureKHR( - VkDevice device, - VkDeferredOperationKHR deferredOperation, - const VkCopyAccelerationStructureInfoKHR* pInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkCopyAccelerationStructureToMemoryKHR( - VkDevice device, - VkDeferredOperationKHR deferredOperation, - const VkCopyAccelerationStructureToMemoryInfoKHR* pInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkCopyMemoryToAccelerationStructureKHR( - VkDevice device, - VkDeferredOperationKHR deferredOperation, - const VkCopyMemoryToAccelerationStructureInfoKHR* pInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkWriteAccelerationStructuresPropertiesKHR( - VkDevice device, - uint32_t accelerationStructureCount, - const VkAccelerationStructureKHR* pAccelerationStructures, - VkQueryType queryType, - size_t dataSize, - void* pData, - size_t stride); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyAccelerationStructureKHR( - VkCommandBuffer commandBuffer, - const VkCopyAccelerationStructureInfoKHR* pInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyAccelerationStructureToMemoryKHR( - VkCommandBuffer commandBuffer, - const VkCopyAccelerationStructureToMemoryInfoKHR* pInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdCopyMemoryToAccelerationStructureKHR( - VkCommandBuffer commandBuffer, - const VkCopyMemoryToAccelerationStructureInfoKHR* pInfo); - -VKAPI_ATTR VkDeviceAddress VKAPI_CALL vkGetAccelerationStructureDeviceAddressKHR( - VkDevice device, - const VkAccelerationStructureDeviceAddressInfoKHR* pInfo); - -VKAPI_ATTR void VKAPI_CALL vkCmdWriteAccelerationStructuresPropertiesKHR( - VkCommandBuffer commandBuffer, - uint32_t accelerationStructureCount, - const VkAccelerationStructureKHR* pAccelerationStructures, - VkQueryType queryType, - VkQueryPool queryPool, - uint32_t firstQuery); - -VKAPI_ATTR void VKAPI_CALL vkGetDeviceAccelerationStructureCompatibilityKHR( - VkDevice device, - const VkAccelerationStructureVersionInfoKHR* pVersionInfo, - VkAccelerationStructureCompatibilityKHR* pCompatibility); - -VKAPI_ATTR void VKAPI_CALL vkGetAccelerationStructureBuildSizesKHR( - VkDevice device, - VkAccelerationStructureBuildTypeKHR buildType, - const VkAccelerationStructureBuildGeometryInfoKHR* pBuildInfo, - const uint32_t* pMaxPrimitiveCounts, - VkAccelerationStructureBuildSizesInfoKHR* pSizeInfo); -#endif - - -#define VK_KHR_ray_tracing_pipeline 1 -#define VK_KHR_RAY_TRACING_PIPELINE_SPEC_VERSION 1 -#define VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME "VK_KHR_ray_tracing_pipeline" - -typedef enum VkShaderGroupShaderKHR { - VK_SHADER_GROUP_SHADER_GENERAL_KHR = 0, - VK_SHADER_GROUP_SHADER_CLOSEST_HIT_KHR = 1, - VK_SHADER_GROUP_SHADER_ANY_HIT_KHR = 2, - VK_SHADER_GROUP_SHADER_INTERSECTION_KHR = 3, - VK_SHADER_GROUP_SHADER_MAX_ENUM_KHR = 0x7FFFFFFF -} VkShaderGroupShaderKHR; -typedef struct VkRayTracingShaderGroupCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkRayTracingShaderGroupTypeKHR type; - uint32_t generalShader; - uint32_t closestHitShader; - uint32_t anyHitShader; - uint32_t intersectionShader; - const void* pShaderGroupCaptureReplayHandle; -} VkRayTracingShaderGroupCreateInfoKHR; - -typedef struct VkRayTracingPipelineInterfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t maxPipelineRayPayloadSize; - uint32_t maxPipelineRayHitAttributeSize; -} VkRayTracingPipelineInterfaceCreateInfoKHR; - -typedef struct VkRayTracingPipelineCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkPipelineCreateFlags flags; - uint32_t stageCount; - const VkPipelineShaderStageCreateInfo* pStages; - uint32_t groupCount; - const VkRayTracingShaderGroupCreateInfoKHR* pGroups; - uint32_t maxPipelineRayRecursionDepth; - const VkPipelineLibraryCreateInfoKHR* pLibraryInfo; - const VkRayTracingPipelineInterfaceCreateInfoKHR* pLibraryInterface; - const VkPipelineDynamicStateCreateInfo* pDynamicState; - VkPipelineLayout layout; - VkPipeline basePipelineHandle; - int32_t basePipelineIndex; -} VkRayTracingPipelineCreateInfoKHR; - -typedef struct VkPhysicalDeviceRayTracingPipelineFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 rayTracingPipeline; - VkBool32 rayTracingPipelineShaderGroupHandleCaptureReplay; - VkBool32 rayTracingPipelineShaderGroupHandleCaptureReplayMixed; - VkBool32 rayTracingPipelineTraceRaysIndirect; - VkBool32 rayTraversalPrimitiveCulling; -} VkPhysicalDeviceRayTracingPipelineFeaturesKHR; - -typedef struct VkPhysicalDeviceRayTracingPipelinePropertiesKHR { - VkStructureType sType; - void* pNext; - uint32_t shaderGroupHandleSize; - uint32_t maxRayRecursionDepth; - uint32_t maxShaderGroupStride; - uint32_t shaderGroupBaseAlignment; - uint32_t shaderGroupHandleCaptureReplaySize; - uint32_t maxRayDispatchInvocationCount; - uint32_t shaderGroupHandleAlignment; - uint32_t maxRayHitAttributeSize; -} VkPhysicalDeviceRayTracingPipelinePropertiesKHR; - -typedef struct VkStridedDeviceAddressRegionKHR { - VkDeviceAddress deviceAddress; - VkDeviceSize stride; - VkDeviceSize size; -} VkStridedDeviceAddressRegionKHR; - -typedef struct VkTraceRaysIndirectCommandKHR { - uint32_t width; - uint32_t height; - uint32_t depth; -} VkTraceRaysIndirectCommandKHR; - -typedef void (VKAPI_PTR *PFN_vkCmdTraceRaysKHR)(VkCommandBuffer commandBuffer, const VkStridedDeviceAddressRegionKHR* pRaygenShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pMissShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pHitShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pCallableShaderBindingTable, uint32_t width, uint32_t height, uint32_t depth); -typedef VkResult (VKAPI_PTR *PFN_vkCreateRayTracingPipelinesKHR)(VkDevice device, VkDeferredOperationKHR deferredOperation, VkPipelineCache pipelineCache, uint32_t createInfoCount, const VkRayTracingPipelineCreateInfoKHR* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines); -typedef VkResult (VKAPI_PTR *PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR)(VkDevice device, VkPipeline pipeline, uint32_t firstGroup, uint32_t groupCount, size_t dataSize, void* pData); -typedef void (VKAPI_PTR *PFN_vkCmdTraceRaysIndirectKHR)(VkCommandBuffer commandBuffer, const VkStridedDeviceAddressRegionKHR* pRaygenShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pMissShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pHitShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pCallableShaderBindingTable, VkDeviceAddress indirectDeviceAddress); -typedef VkDeviceSize (VKAPI_PTR *PFN_vkGetRayTracingShaderGroupStackSizeKHR)(VkDevice device, VkPipeline pipeline, uint32_t group, VkShaderGroupShaderKHR groupShader); -typedef void (VKAPI_PTR *PFN_vkCmdSetRayTracingPipelineStackSizeKHR)(VkCommandBuffer commandBuffer, uint32_t pipelineStackSize); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR void VKAPI_CALL vkCmdTraceRaysKHR( - VkCommandBuffer commandBuffer, - const VkStridedDeviceAddressRegionKHR* pRaygenShaderBindingTable, - const VkStridedDeviceAddressRegionKHR* pMissShaderBindingTable, - const VkStridedDeviceAddressRegionKHR* pHitShaderBindingTable, - const VkStridedDeviceAddressRegionKHR* pCallableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth); - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateRayTracingPipelinesKHR( - VkDevice device, - VkDeferredOperationKHR deferredOperation, - VkPipelineCache pipelineCache, - uint32_t createInfoCount, - const VkRayTracingPipelineCreateInfoKHR* pCreateInfos, - const VkAllocationCallbacks* pAllocator, - VkPipeline* pPipelines); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( - VkDevice device, - VkPipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void* pData); - -VKAPI_ATTR void VKAPI_CALL vkCmdTraceRaysIndirectKHR( - VkCommandBuffer commandBuffer, - const VkStridedDeviceAddressRegionKHR* pRaygenShaderBindingTable, - const VkStridedDeviceAddressRegionKHR* pMissShaderBindingTable, - const VkStridedDeviceAddressRegionKHR* pHitShaderBindingTable, - const VkStridedDeviceAddressRegionKHR* pCallableShaderBindingTable, - VkDeviceAddress indirectDeviceAddress); - -VKAPI_ATTR VkDeviceSize VKAPI_CALL vkGetRayTracingShaderGroupStackSizeKHR( - VkDevice device, - VkPipeline pipeline, - uint32_t group, - VkShaderGroupShaderKHR groupShader); - -VKAPI_ATTR void VKAPI_CALL vkCmdSetRayTracingPipelineStackSizeKHR( - VkCommandBuffer commandBuffer, - uint32_t pipelineStackSize); -#endif - - -#define VK_KHR_ray_query 1 -#define VK_KHR_RAY_QUERY_SPEC_VERSION 1 -#define VK_KHR_RAY_QUERY_EXTENSION_NAME "VK_KHR_ray_query" -typedef struct VkPhysicalDeviceRayQueryFeaturesKHR { - VkStructureType sType; - void* pNext; - VkBool32 rayQuery; -} VkPhysicalDeviceRayQueryFeaturesKHR; - - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_directfb.h b/Externals/Vulkan/Include/vulkan/vulkan_directfb.h deleted file mode 100644 index ab3504efaf..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_directfb.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef VULKAN_DIRECTFB_H_ -#define VULKAN_DIRECTFB_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_EXT_directfb_surface 1 -#define VK_EXT_DIRECTFB_SURFACE_SPEC_VERSION 1 -#define VK_EXT_DIRECTFB_SURFACE_EXTENSION_NAME "VK_EXT_directfb_surface" -typedef VkFlags VkDirectFBSurfaceCreateFlagsEXT; -typedef struct VkDirectFBSurfaceCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkDirectFBSurfaceCreateFlagsEXT flags; - IDirectFB* dfb; - IDirectFBSurface* surface; -} VkDirectFBSurfaceCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateDirectFBSurfaceEXT)(VkInstance instance, const VkDirectFBSurfaceCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); -typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceDirectFBPresentationSupportEXT)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, IDirectFB* dfb); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDirectFBSurfaceEXT( - VkInstance instance, - const VkDirectFBSurfaceCreateInfoEXT* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); - -VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceDirectFBPresentationSupportEXT( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - IDirectFB* dfb); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_enums.hpp b/Externals/Vulkan/Include/vulkan/vulkan_enums.hpp deleted file mode 100644 index ea2a434aa9..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_enums.hpp +++ /dev/null @@ -1,18755 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_ENUMS_HPP -#define VULKAN_ENUMS_HPP - -namespace VULKAN_HPP_NAMESPACE -{ - template - struct CppType - {}; - - template - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = false; - }; - - VULKAN_HPP_INLINE std::string toHexString( uint32_t value ) - { - std::stringstream stream; - stream << std::hex << value; - return stream.str(); - } - - //============= - //=== ENUMs === - //============= - - //=== VK_VERSION_1_0 === - - enum class Result - { - eSuccess = VK_SUCCESS, - eNotReady = VK_NOT_READY, - eTimeout = VK_TIMEOUT, - eEventSet = VK_EVENT_SET, - eEventReset = VK_EVENT_RESET, - eIncomplete = VK_INCOMPLETE, - eErrorOutOfHostMemory = VK_ERROR_OUT_OF_HOST_MEMORY, - eErrorOutOfDeviceMemory = VK_ERROR_OUT_OF_DEVICE_MEMORY, - eErrorInitializationFailed = VK_ERROR_INITIALIZATION_FAILED, - eErrorDeviceLost = VK_ERROR_DEVICE_LOST, - eErrorMemoryMapFailed = VK_ERROR_MEMORY_MAP_FAILED, - eErrorLayerNotPresent = VK_ERROR_LAYER_NOT_PRESENT, - eErrorExtensionNotPresent = VK_ERROR_EXTENSION_NOT_PRESENT, - eErrorFeatureNotPresent = VK_ERROR_FEATURE_NOT_PRESENT, - eErrorIncompatibleDriver = VK_ERROR_INCOMPATIBLE_DRIVER, - eErrorTooManyObjects = VK_ERROR_TOO_MANY_OBJECTS, - eErrorFormatNotSupported = VK_ERROR_FORMAT_NOT_SUPPORTED, - eErrorFragmentedPool = VK_ERROR_FRAGMENTED_POOL, - eErrorUnknown = VK_ERROR_UNKNOWN, - eErrorOutOfPoolMemory = VK_ERROR_OUT_OF_POOL_MEMORY, - eErrorInvalidExternalHandle = VK_ERROR_INVALID_EXTERNAL_HANDLE, - eErrorFragmentation = VK_ERROR_FRAGMENTATION, - eErrorInvalidOpaqueCaptureAddress = VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS, - ePipelineCompileRequired = VK_PIPELINE_COMPILE_REQUIRED, - eErrorSurfaceLostKHR = VK_ERROR_SURFACE_LOST_KHR, - eErrorNativeWindowInUseKHR = VK_ERROR_NATIVE_WINDOW_IN_USE_KHR, - eSuboptimalKHR = VK_SUBOPTIMAL_KHR, - eErrorOutOfDateKHR = VK_ERROR_OUT_OF_DATE_KHR, - eErrorIncompatibleDisplayKHR = VK_ERROR_INCOMPATIBLE_DISPLAY_KHR, - eErrorValidationFailedEXT = VK_ERROR_VALIDATION_FAILED_EXT, - eErrorInvalidShaderNV = VK_ERROR_INVALID_SHADER_NV, - eErrorInvalidDrmFormatModifierPlaneLayoutEXT = VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT, - eErrorNotPermittedKHR = VK_ERROR_NOT_PERMITTED_KHR, -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eErrorFullScreenExclusiveModeLostEXT = VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eThreadIdleKHR = VK_THREAD_IDLE_KHR, - eThreadDoneKHR = VK_THREAD_DONE_KHR, - eOperationDeferredKHR = VK_OPERATION_DEFERRED_KHR, - eOperationNotDeferredKHR = VK_OPERATION_NOT_DEFERRED_KHR, - eErrorFragmentationEXT = VK_ERROR_FRAGMENTATION_EXT, - eErrorInvalidDeviceAddressEXT = VK_ERROR_INVALID_DEVICE_ADDRESS_EXT, - eErrorInvalidExternalHandleKHR = VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR, - eErrorInvalidOpaqueCaptureAddressKHR = VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR, - eErrorNotPermittedEXT = VK_ERROR_NOT_PERMITTED_EXT, - eErrorOutOfPoolMemoryKHR = VK_ERROR_OUT_OF_POOL_MEMORY_KHR, - eErrorPipelineCompileRequiredEXT = VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT, - ePipelineCompileRequiredEXT = VK_PIPELINE_COMPILE_REQUIRED_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( Result value ) - { - switch ( value ) - { - case Result::eSuccess: return "Success"; - case Result::eNotReady: return "NotReady"; - case Result::eTimeout: return "Timeout"; - case Result::eEventSet: return "EventSet"; - case Result::eEventReset: return "EventReset"; - case Result::eIncomplete: return "Incomplete"; - case Result::eErrorOutOfHostMemory: return "ErrorOutOfHostMemory"; - case Result::eErrorOutOfDeviceMemory: return "ErrorOutOfDeviceMemory"; - case Result::eErrorInitializationFailed: return "ErrorInitializationFailed"; - case Result::eErrorDeviceLost: return "ErrorDeviceLost"; - case Result::eErrorMemoryMapFailed: return "ErrorMemoryMapFailed"; - case Result::eErrorLayerNotPresent: return "ErrorLayerNotPresent"; - case Result::eErrorExtensionNotPresent: return "ErrorExtensionNotPresent"; - case Result::eErrorFeatureNotPresent: return "ErrorFeatureNotPresent"; - case Result::eErrorIncompatibleDriver: return "ErrorIncompatibleDriver"; - case Result::eErrorTooManyObjects: return "ErrorTooManyObjects"; - case Result::eErrorFormatNotSupported: return "ErrorFormatNotSupported"; - case Result::eErrorFragmentedPool: return "ErrorFragmentedPool"; - case Result::eErrorUnknown: return "ErrorUnknown"; - case Result::eErrorOutOfPoolMemory: return "ErrorOutOfPoolMemory"; - case Result::eErrorInvalidExternalHandle: return "ErrorInvalidExternalHandle"; - case Result::eErrorFragmentation: return "ErrorFragmentation"; - case Result::eErrorInvalidOpaqueCaptureAddress: return "ErrorInvalidOpaqueCaptureAddress"; - case Result::ePipelineCompileRequired: return "PipelineCompileRequired"; - case Result::eErrorSurfaceLostKHR: return "ErrorSurfaceLostKHR"; - case Result::eErrorNativeWindowInUseKHR: return "ErrorNativeWindowInUseKHR"; - case Result::eSuboptimalKHR: return "SuboptimalKHR"; - case Result::eErrorOutOfDateKHR: return "ErrorOutOfDateKHR"; - case Result::eErrorIncompatibleDisplayKHR: return "ErrorIncompatibleDisplayKHR"; - case Result::eErrorValidationFailedEXT: return "ErrorValidationFailedEXT"; - case Result::eErrorInvalidShaderNV: return "ErrorInvalidShaderNV"; - case Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT: return "ErrorInvalidDrmFormatModifierPlaneLayoutEXT"; - case Result::eErrorNotPermittedKHR: return "ErrorNotPermittedKHR"; -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case Result::eErrorFullScreenExclusiveModeLostEXT: return "ErrorFullScreenExclusiveModeLostEXT"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case Result::eThreadIdleKHR: return "ThreadIdleKHR"; - case Result::eThreadDoneKHR: return "ThreadDoneKHR"; - case Result::eOperationDeferredKHR: return "OperationDeferredKHR"; - case Result::eOperationNotDeferredKHR: return "OperationNotDeferredKHR"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class StructureType - { - eApplicationInfo = VK_STRUCTURE_TYPE_APPLICATION_INFO, - eInstanceCreateInfo = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO, - eDeviceQueueCreateInfo = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO, - eDeviceCreateInfo = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO, - eSubmitInfo = VK_STRUCTURE_TYPE_SUBMIT_INFO, - eMemoryAllocateInfo = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO, - eMappedMemoryRange = VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, - eBindSparseInfo = VK_STRUCTURE_TYPE_BIND_SPARSE_INFO, - eFenceCreateInfo = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO, - eSemaphoreCreateInfo = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO, - eEventCreateInfo = VK_STRUCTURE_TYPE_EVENT_CREATE_INFO, - eQueryPoolCreateInfo = VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO, - eBufferCreateInfo = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO, - eBufferViewCreateInfo = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO, - eImageCreateInfo = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO, - eImageViewCreateInfo = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO, - eShaderModuleCreateInfo = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO, - ePipelineCacheCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO, - ePipelineShaderStageCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO, - ePipelineVertexInputStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO, - ePipelineInputAssemblyStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO, - ePipelineTessellationStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO, - ePipelineViewportStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO, - ePipelineRasterizationStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO, - ePipelineMultisampleStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO, - ePipelineDepthStencilStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO, - ePipelineColorBlendStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO, - ePipelineDynamicStateCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO, - eGraphicsPipelineCreateInfo = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO, - eComputePipelineCreateInfo = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO, - ePipelineLayoutCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO, - eSamplerCreateInfo = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO, - eDescriptorSetLayoutCreateInfo = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO, - eDescriptorPoolCreateInfo = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO, - eDescriptorSetAllocateInfo = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO, - eWriteDescriptorSet = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET, - eCopyDescriptorSet = VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET, - eFramebufferCreateInfo = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO, - eRenderPassCreateInfo = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO, - eCommandPoolCreateInfo = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO, - eCommandBufferAllocateInfo = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO, - eCommandBufferInheritanceInfo = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO, - eCommandBufferBeginInfo = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO, - eRenderPassBeginInfo = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO, - eBufferMemoryBarrier = VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER, - eImageMemoryBarrier = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER, - eMemoryBarrier = VK_STRUCTURE_TYPE_MEMORY_BARRIER, - eLoaderInstanceCreateInfo = VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO, - eLoaderDeviceCreateInfo = VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO, - ePhysicalDeviceSubgroupProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES, - eBindBufferMemoryInfo = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO, - eBindImageMemoryInfo = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO, - ePhysicalDevice16BitStorageFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES, - eMemoryDedicatedRequirements = VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS, - eMemoryDedicatedAllocateInfo = VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO, - eMemoryAllocateFlagsInfo = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO, - eDeviceGroupRenderPassBeginInfo = VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO, - eDeviceGroupCommandBufferBeginInfo = VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO, - eDeviceGroupSubmitInfo = VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO, - eDeviceGroupBindSparseInfo = VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO, - eBindBufferMemoryDeviceGroupInfo = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO, - eBindImageMemoryDeviceGroupInfo = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO, - ePhysicalDeviceGroupProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES, - eDeviceGroupDeviceCreateInfo = VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO, - eBufferMemoryRequirementsInfo2 = VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2, - eImageMemoryRequirementsInfo2 = VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2, - eImageSparseMemoryRequirementsInfo2 = VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2, - eMemoryRequirements2 = VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2, - eSparseImageMemoryRequirements2 = VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2, - ePhysicalDeviceFeatures2 = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2, - ePhysicalDeviceProperties2 = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2, - eFormatProperties2 = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2, - eImageFormatProperties2 = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2, - ePhysicalDeviceImageFormatInfo2 = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2, - eQueueFamilyProperties2 = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2, - ePhysicalDeviceMemoryProperties2 = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2, - eSparseImageFormatProperties2 = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2, - ePhysicalDeviceSparseImageFormatInfo2 = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2, - ePhysicalDevicePointClippingProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES, - eRenderPassInputAttachmentAspectCreateInfo = VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO, - eImageViewUsageCreateInfo = VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO, - ePipelineTessellationDomainOriginStateCreateInfo = - VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO, - eRenderPassMultiviewCreateInfo = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO, - ePhysicalDeviceMultiviewFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES, - ePhysicalDeviceMultiviewProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES, - ePhysicalDeviceVariablePointersFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES, - eProtectedSubmitInfo = VK_STRUCTURE_TYPE_PROTECTED_SUBMIT_INFO, - ePhysicalDeviceProtectedMemoryFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES, - ePhysicalDeviceProtectedMemoryProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES, - eDeviceQueueInfo2 = VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2, - eSamplerYcbcrConversionCreateInfo = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO, - eSamplerYcbcrConversionInfo = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO, - eBindImagePlaneMemoryInfo = VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO, - eImagePlaneMemoryRequirementsInfo = VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO, - ePhysicalDeviceSamplerYcbcrConversionFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES, - eSamplerYcbcrConversionImageFormatProperties = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES, - eDescriptorUpdateTemplateCreateInfo = VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO, - ePhysicalDeviceExternalImageFormatInfo = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO, - eExternalImageFormatProperties = VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES, - ePhysicalDeviceExternalBufferInfo = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO, - eExternalBufferProperties = VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES, - ePhysicalDeviceIdProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES, - eExternalMemoryBufferCreateInfo = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO, - eExternalMemoryImageCreateInfo = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO, - eExportMemoryAllocateInfo = VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO, - ePhysicalDeviceExternalFenceInfo = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO, - eExternalFenceProperties = VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES, - eExportFenceCreateInfo = VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO, - eExportSemaphoreCreateInfo = VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO, - ePhysicalDeviceExternalSemaphoreInfo = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO, - eExternalSemaphoreProperties = VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES, - ePhysicalDeviceMaintenance3Properties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES, - eDescriptorSetLayoutSupport = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT, - ePhysicalDeviceShaderDrawParametersFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES, - ePhysicalDeviceVulkan11Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES, - ePhysicalDeviceVulkan11Properties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES, - ePhysicalDeviceVulkan12Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES, - ePhysicalDeviceVulkan12Properties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES, - eImageFormatListCreateInfo = VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO, - eAttachmentDescription2 = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2, - eAttachmentReference2 = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2, - eSubpassDescription2 = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2, - eSubpassDependency2 = VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2, - eRenderPassCreateInfo2 = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2, - eSubpassBeginInfo = VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO, - eSubpassEndInfo = VK_STRUCTURE_TYPE_SUBPASS_END_INFO, - ePhysicalDevice8BitStorageFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES, - ePhysicalDeviceDriverProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES, - ePhysicalDeviceShaderAtomicInt64Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES, - ePhysicalDeviceShaderFloat16Int8Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES, - ePhysicalDeviceFloatControlsProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES, - eDescriptorSetLayoutBindingFlagsCreateInfo = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO, - ePhysicalDeviceDescriptorIndexingFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES, - ePhysicalDeviceDescriptorIndexingProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES, - eDescriptorSetVariableDescriptorCountAllocateInfo = - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO, - eDescriptorSetVariableDescriptorCountLayoutSupport = - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT, - ePhysicalDeviceDepthStencilResolveProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES, - eSubpassDescriptionDepthStencilResolve = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE, - ePhysicalDeviceScalarBlockLayoutFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES, - eImageStencilUsageCreateInfo = VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO, - ePhysicalDeviceSamplerFilterMinmaxProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES, - eSamplerReductionModeCreateInfo = VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO, - ePhysicalDeviceVulkanMemoryModelFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES, - ePhysicalDeviceImagelessFramebufferFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES, - eFramebufferAttachmentsCreateInfo = VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO, - eFramebufferAttachmentImageInfo = VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO, - eRenderPassAttachmentBeginInfo = VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO, - ePhysicalDeviceUniformBufferStandardLayoutFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES, - ePhysicalDeviceShaderSubgroupExtendedTypesFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES, - ePhysicalDeviceSeparateDepthStencilLayoutsFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES, - eAttachmentReferenceStencilLayout = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT, - eAttachmentDescriptionStencilLayout = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT, - ePhysicalDeviceHostQueryResetFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES, - ePhysicalDeviceTimelineSemaphoreFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES, - ePhysicalDeviceTimelineSemaphoreProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES, - eSemaphoreTypeCreateInfo = VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO, - eTimelineSemaphoreSubmitInfo = VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO, - eSemaphoreWaitInfo = VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO, - eSemaphoreSignalInfo = VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO, - ePhysicalDeviceBufferDeviceAddressFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES, - eBufferDeviceAddressInfo = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO, - eBufferOpaqueCaptureAddressCreateInfo = VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO, - eMemoryOpaqueCaptureAddressAllocateInfo = VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO, - eDeviceMemoryOpaqueCaptureAddressInfo = VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO, - ePhysicalDeviceVulkan13Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_FEATURES, - ePhysicalDeviceVulkan13Properties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_PROPERTIES, - ePipelineCreationFeedbackCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_CREATION_FEEDBACK_CREATE_INFO, - ePhysicalDeviceShaderTerminateInvocationFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES, - ePhysicalDeviceToolProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES, - ePhysicalDeviceShaderDemoteToHelperInvocationFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES, - ePhysicalDevicePrivateDataFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES, - eDevicePrivateDataCreateInfo = VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO, - ePrivateDataSlotCreateInfo = VK_STRUCTURE_TYPE_PRIVATE_DATA_SLOT_CREATE_INFO, - ePhysicalDevicePipelineCreationCacheControlFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES, - eMemoryBarrier2 = VK_STRUCTURE_TYPE_MEMORY_BARRIER_2, - eBufferMemoryBarrier2 = VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER_2, - eImageMemoryBarrier2 = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2, - eDependencyInfo = VK_STRUCTURE_TYPE_DEPENDENCY_INFO, - eSubmitInfo2 = VK_STRUCTURE_TYPE_SUBMIT_INFO_2, - eSemaphoreSubmitInfo = VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO, - eCommandBufferSubmitInfo = VK_STRUCTURE_TYPE_COMMAND_BUFFER_SUBMIT_INFO, - ePhysicalDeviceSynchronization2Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES, - ePhysicalDeviceZeroInitializeWorkgroupMemoryFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES, - ePhysicalDeviceImageRobustnessFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES, - eCopyBufferInfo2 = VK_STRUCTURE_TYPE_COPY_BUFFER_INFO_2, - eCopyImageInfo2 = VK_STRUCTURE_TYPE_COPY_IMAGE_INFO_2, - eCopyBufferToImageInfo2 = VK_STRUCTURE_TYPE_COPY_BUFFER_TO_IMAGE_INFO_2, - eCopyImageToBufferInfo2 = VK_STRUCTURE_TYPE_COPY_IMAGE_TO_BUFFER_INFO_2, - eBlitImageInfo2 = VK_STRUCTURE_TYPE_BLIT_IMAGE_INFO_2, - eResolveImageInfo2 = VK_STRUCTURE_TYPE_RESOLVE_IMAGE_INFO_2, - eBufferCopy2 = VK_STRUCTURE_TYPE_BUFFER_COPY_2, - eImageCopy2 = VK_STRUCTURE_TYPE_IMAGE_COPY_2, - eImageBlit2 = VK_STRUCTURE_TYPE_IMAGE_BLIT_2, - eBufferImageCopy2 = VK_STRUCTURE_TYPE_BUFFER_IMAGE_COPY_2, - eImageResolve2 = VK_STRUCTURE_TYPE_IMAGE_RESOLVE_2, - ePhysicalDeviceSubgroupSizeControlProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES, - ePipelineShaderStageRequiredSubgroupSizeCreateInfo = - VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO, - ePhysicalDeviceSubgroupSizeControlFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES, - ePhysicalDeviceInlineUniformBlockFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES, - ePhysicalDeviceInlineUniformBlockProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES, - eWriteDescriptorSetInlineUniformBlock = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK, - eDescriptorPoolInlineUniformBlockCreateInfo = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO, - ePhysicalDeviceTextureCompressionAstcHdrFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES, - eRenderingInfo = VK_STRUCTURE_TYPE_RENDERING_INFO, - eRenderingAttachmentInfo = VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_INFO, - ePipelineRenderingCreateInfo = VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO, - ePhysicalDeviceDynamicRenderingFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES, - eCommandBufferInheritanceRenderingInfo = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDERING_INFO, - ePhysicalDeviceShaderIntegerDotProductFeatures = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES, - ePhysicalDeviceShaderIntegerDotProductProperties = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES, - ePhysicalDeviceTexelBufferAlignmentProperties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES, - eFormatProperties3 = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_3, - ePhysicalDeviceMaintenance4Features = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES, - ePhysicalDeviceMaintenance4Properties = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES, - eDeviceBufferMemoryRequirements = VK_STRUCTURE_TYPE_DEVICE_BUFFER_MEMORY_REQUIREMENTS, - eDeviceImageMemoryRequirements = VK_STRUCTURE_TYPE_DEVICE_IMAGE_MEMORY_REQUIREMENTS, - eSwapchainCreateInfoKHR = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR, - ePresentInfoKHR = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR, - eDeviceGroupPresentCapabilitiesKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_CAPABILITIES_KHR, - eImageSwapchainCreateInfoKHR = VK_STRUCTURE_TYPE_IMAGE_SWAPCHAIN_CREATE_INFO_KHR, - eBindImageMemorySwapchainInfoKHR = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR, - eAcquireNextImageInfoKHR = VK_STRUCTURE_TYPE_ACQUIRE_NEXT_IMAGE_INFO_KHR, - eDeviceGroupPresentInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_INFO_KHR, - eDeviceGroupSwapchainCreateInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR, - eDisplayModeCreateInfoKHR = VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR, - eDisplaySurfaceCreateInfoKHR = VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR, - eDisplayPresentInfoKHR = VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR, -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - eXlibSurfaceCreateInfoKHR = VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR, -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ -#if defined( VK_USE_PLATFORM_XCB_KHR ) - eXcbSurfaceCreateInfoKHR = VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR, -#endif /*VK_USE_PLATFORM_XCB_KHR*/ -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - eWaylandSurfaceCreateInfoKHR = VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR, -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - eAndroidSurfaceCreateInfoKHR = VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR, -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eWin32SurfaceCreateInfoKHR = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eDebugReportCallbackCreateInfoEXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT, - ePipelineRasterizationStateRasterizationOrderAMD = - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD, - eDebugMarkerObjectNameInfoEXT = VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT, - eDebugMarkerObjectTagInfoEXT = VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT, - eDebugMarkerMarkerInfoEXT = VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoProfileKHR = VK_STRUCTURE_TYPE_VIDEO_PROFILE_KHR, - eVideoCapabilitiesKHR = VK_STRUCTURE_TYPE_VIDEO_CAPABILITIES_KHR, - eVideoPictureResourceKHR = VK_STRUCTURE_TYPE_VIDEO_PICTURE_RESOURCE_KHR, - eVideoGetMemoryPropertiesKHR = VK_STRUCTURE_TYPE_VIDEO_GET_MEMORY_PROPERTIES_KHR, - eVideoBindMemoryKHR = VK_STRUCTURE_TYPE_VIDEO_BIND_MEMORY_KHR, - eVideoSessionCreateInfoKHR = VK_STRUCTURE_TYPE_VIDEO_SESSION_CREATE_INFO_KHR, - eVideoSessionParametersCreateInfoKHR = VK_STRUCTURE_TYPE_VIDEO_SESSION_PARAMETERS_CREATE_INFO_KHR, - eVideoSessionParametersUpdateInfoKHR = VK_STRUCTURE_TYPE_VIDEO_SESSION_PARAMETERS_UPDATE_INFO_KHR, - eVideoBeginCodingInfoKHR = VK_STRUCTURE_TYPE_VIDEO_BEGIN_CODING_INFO_KHR, - eVideoEndCodingInfoKHR = VK_STRUCTURE_TYPE_VIDEO_END_CODING_INFO_KHR, - eVideoCodingControlInfoKHR = VK_STRUCTURE_TYPE_VIDEO_CODING_CONTROL_INFO_KHR, - eVideoReferenceSlotKHR = VK_STRUCTURE_TYPE_VIDEO_REFERENCE_SLOT_KHR, - eVideoQueueFamilyProperties2KHR = VK_STRUCTURE_TYPE_VIDEO_QUEUE_FAMILY_PROPERTIES_2_KHR, - eVideoProfilesKHR = VK_STRUCTURE_TYPE_VIDEO_PROFILES_KHR, - ePhysicalDeviceVideoFormatInfoKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VIDEO_FORMAT_INFO_KHR, - eVideoFormatPropertiesKHR = VK_STRUCTURE_TYPE_VIDEO_FORMAT_PROPERTIES_KHR, - eQueueFamilyQueryResultStatusProperties2KHR = VK_STRUCTURE_TYPE_QUEUE_FAMILY_QUERY_RESULT_STATUS_PROPERTIES_2_KHR, - eVideoDecodeInfoKHR = VK_STRUCTURE_TYPE_VIDEO_DECODE_INFO_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eDedicatedAllocationImageCreateInfoNV = VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV, - eDedicatedAllocationBufferCreateInfoNV = VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV, - eDedicatedAllocationMemoryAllocateInfoNV = VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV, - ePhysicalDeviceTransformFeedbackFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT, - ePhysicalDeviceTransformFeedbackPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT, - ePipelineRasterizationStateStreamCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_STREAM_CREATE_INFO_EXT, - eCuModuleCreateInfoNVX = VK_STRUCTURE_TYPE_CU_MODULE_CREATE_INFO_NVX, - eCuFunctionCreateInfoNVX = VK_STRUCTURE_TYPE_CU_FUNCTION_CREATE_INFO_NVX, - eCuLaunchInfoNVX = VK_STRUCTURE_TYPE_CU_LAUNCH_INFO_NVX, - eImageViewHandleInfoNVX = VK_STRUCTURE_TYPE_IMAGE_VIEW_HANDLE_INFO_NVX, - eImageViewAddressPropertiesNVX = VK_STRUCTURE_TYPE_IMAGE_VIEW_ADDRESS_PROPERTIES_NVX, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeH264CapabilitiesEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_CAPABILITIES_EXT, - eVideoEncodeH264SessionCreateInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_SESSION_CREATE_INFO_EXT, - eVideoEncodeH264SessionParametersCreateInfoEXT = - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_SESSION_PARAMETERS_CREATE_INFO_EXT, - eVideoEncodeH264SessionParametersAddInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT, - eVideoEncodeH264VclFrameInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_VCL_FRAME_INFO_EXT, - eVideoEncodeH264DpbSlotInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_DPB_SLOT_INFO_EXT, - eVideoEncodeH264NaluSliceEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_NALU_SLICE_EXT, - eVideoEncodeH264EmitPictureParametersEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_EMIT_PICTURE_PARAMETERS_EXT, - eVideoEncodeH264ProfileEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_PROFILE_EXT, - eVideoEncodeH264RateControlInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_RATE_CONTROL_INFO_EXT, - eVideoEncodeH264RateControlLayerInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H264_RATE_CONTROL_LAYER_INFO_EXT, - eVideoEncodeH265CapabilitiesEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_CAPABILITIES_EXT, - eVideoEncodeH265SessionCreateInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_CREATE_INFO_EXT, - eVideoEncodeH265SessionParametersCreateInfoEXT = - VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_PARAMETERS_CREATE_INFO_EXT, - eVideoEncodeH265SessionParametersAddInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_PARAMETERS_ADD_INFO_EXT, - eVideoEncodeH265VclFrameInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_VCL_FRAME_INFO_EXT, - eVideoEncodeH265DpbSlotInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_DPB_SLOT_INFO_EXT, - eVideoEncodeH265NaluSliceEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_NALU_SLICE_EXT, - eVideoEncodeH265EmitPictureParametersEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_EMIT_PICTURE_PARAMETERS_EXT, - eVideoEncodeH265ProfileEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_PROFILE_EXT, - eVideoEncodeH265ReferenceListsEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_REFERENCE_LISTS_EXT, - eVideoEncodeH265RateControlInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_RATE_CONTROL_INFO_EXT, - eVideoEncodeH265RateControlLayerInfoEXT = VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_RATE_CONTROL_LAYER_INFO_EXT, - eVideoDecodeH264CapabilitiesEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_CAPABILITIES_EXT, - eVideoDecodeH264SessionCreateInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_CREATE_INFO_EXT, - eVideoDecodeH264PictureInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_PICTURE_INFO_EXT, - eVideoDecodeH264MvcEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_MVC_EXT, - eVideoDecodeH264ProfileEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_PROFILE_EXT, - eVideoDecodeH264SessionParametersCreateInfoEXT = - VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_CREATE_INFO_EXT, - eVideoDecodeH264SessionParametersAddInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT, - eVideoDecodeH264DpbSlotInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_DPB_SLOT_INFO_EXT, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eTextureLodGatherFormatPropertiesAMD = VK_STRUCTURE_TYPE_TEXTURE_LOD_GATHER_FORMAT_PROPERTIES_AMD, - eRenderingFragmentShadingRateAttachmentInfoKHR = - VK_STRUCTURE_TYPE_RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR, - eRenderingFragmentDensityMapAttachmentInfoEXT = - VK_STRUCTURE_TYPE_RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_INFO_EXT, - eAttachmentSampleCountInfoAMD = VK_STRUCTURE_TYPE_ATTACHMENT_SAMPLE_COUNT_INFO_AMD, - eMultiviewPerViewAttributesInfoNVX = VK_STRUCTURE_TYPE_MULTIVIEW_PER_VIEW_ATTRIBUTES_INFO_NVX, -#if defined( VK_USE_PLATFORM_GGP ) - eStreamDescriptorSurfaceCreateInfoGGP = VK_STRUCTURE_TYPE_STREAM_DESCRIPTOR_SURFACE_CREATE_INFO_GGP, -#endif /*VK_USE_PLATFORM_GGP*/ - ePhysicalDeviceCornerSampledImageFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CORNER_SAMPLED_IMAGE_FEATURES_NV, - eExternalMemoryImageCreateInfoNV = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV, - eExportMemoryAllocateInfoNV = VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_NV, -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eImportMemoryWin32HandleInfoNV = VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_NV, - eExportMemoryWin32HandleInfoNV = VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_NV, - eWin32KeyedMutexAcquireReleaseInfoNV = VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eValidationFlagsEXT = VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT, -#if defined( VK_USE_PLATFORM_VI_NN ) - eViSurfaceCreateInfoNN = VK_STRUCTURE_TYPE_VI_SURFACE_CREATE_INFO_NN, -#endif /*VK_USE_PLATFORM_VI_NN*/ - eImageViewAstcDecodeModeEXT = VK_STRUCTURE_TYPE_IMAGE_VIEW_ASTC_DECODE_MODE_EXT, - ePhysicalDeviceAstcDecodeFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ASTC_DECODE_FEATURES_EXT, -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eImportMemoryWin32HandleInfoKHR = VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_KHR, - eExportMemoryWin32HandleInfoKHR = VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_KHR, - eMemoryWin32HandlePropertiesKHR = VK_STRUCTURE_TYPE_MEMORY_WIN32_HANDLE_PROPERTIES_KHR, - eMemoryGetWin32HandleInfoKHR = VK_STRUCTURE_TYPE_MEMORY_GET_WIN32_HANDLE_INFO_KHR, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eImportMemoryFdInfoKHR = VK_STRUCTURE_TYPE_IMPORT_MEMORY_FD_INFO_KHR, - eMemoryFdPropertiesKHR = VK_STRUCTURE_TYPE_MEMORY_FD_PROPERTIES_KHR, - eMemoryGetFdInfoKHR = VK_STRUCTURE_TYPE_MEMORY_GET_FD_INFO_KHR, -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eWin32KeyedMutexAcquireReleaseInfoKHR = VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_KHR, - eImportSemaphoreWin32HandleInfoKHR = VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR, - eExportSemaphoreWin32HandleInfoKHR = VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR, - eD3D12FenceSubmitInfoKHR = VK_STRUCTURE_TYPE_D3D12_FENCE_SUBMIT_INFO_KHR, - eSemaphoreGetWin32HandleInfoKHR = VK_STRUCTURE_TYPE_SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eImportSemaphoreFdInfoKHR = VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_FD_INFO_KHR, - eSemaphoreGetFdInfoKHR = VK_STRUCTURE_TYPE_SEMAPHORE_GET_FD_INFO_KHR, - ePhysicalDevicePushDescriptorPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR, - eCommandBufferInheritanceConditionalRenderingInfoEXT = - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_CONDITIONAL_RENDERING_INFO_EXT, - ePhysicalDeviceConditionalRenderingFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT, - eConditionalRenderingBeginInfoEXT = VK_STRUCTURE_TYPE_CONDITIONAL_RENDERING_BEGIN_INFO_EXT, - ePresentRegionsKHR = VK_STRUCTURE_TYPE_PRESENT_REGIONS_KHR, - ePipelineViewportWScalingStateCreateInfoNV = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_W_SCALING_STATE_CREATE_INFO_NV, - eSurfaceCapabilities2EXT = VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_EXT, - eDisplayPowerInfoEXT = VK_STRUCTURE_TYPE_DISPLAY_POWER_INFO_EXT, - eDeviceEventInfoEXT = VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT, - eDisplayEventInfoEXT = VK_STRUCTURE_TYPE_DISPLAY_EVENT_INFO_EXT, - eSwapchainCounterCreateInfoEXT = VK_STRUCTURE_TYPE_SWAPCHAIN_COUNTER_CREATE_INFO_EXT, - ePresentTimesInfoGOOGLE = VK_STRUCTURE_TYPE_PRESENT_TIMES_INFO_GOOGLE, - ePhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_ATTRIBUTES_PROPERTIES_NVX, - ePipelineViewportSwizzleStateCreateInfoNV = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SWIZZLE_STATE_CREATE_INFO_NV, - ePhysicalDeviceDiscardRectanglePropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT, - ePipelineDiscardRectangleStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT, - ePhysicalDeviceConservativeRasterizationPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT, - ePipelineRasterizationConservativeStateCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT, - ePhysicalDeviceDepthClipEnableFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT, - ePipelineRasterizationDepthClipStateCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT, - eHdrMetadataEXT = VK_STRUCTURE_TYPE_HDR_METADATA_EXT, - eSharedPresentSurfaceCapabilitiesKHR = VK_STRUCTURE_TYPE_SHARED_PRESENT_SURFACE_CAPABILITIES_KHR, -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eImportFenceWin32HandleInfoKHR = VK_STRUCTURE_TYPE_IMPORT_FENCE_WIN32_HANDLE_INFO_KHR, - eExportFenceWin32HandleInfoKHR = VK_STRUCTURE_TYPE_EXPORT_FENCE_WIN32_HANDLE_INFO_KHR, - eFenceGetWin32HandleInfoKHR = VK_STRUCTURE_TYPE_FENCE_GET_WIN32_HANDLE_INFO_KHR, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eImportFenceFdInfoKHR = VK_STRUCTURE_TYPE_IMPORT_FENCE_FD_INFO_KHR, - eFenceGetFdInfoKHR = VK_STRUCTURE_TYPE_FENCE_GET_FD_INFO_KHR, - ePhysicalDevicePerformanceQueryFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PERFORMANCE_QUERY_FEATURES_KHR, - ePhysicalDevicePerformanceQueryPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PERFORMANCE_QUERY_PROPERTIES_KHR, - eQueryPoolPerformanceCreateInfoKHR = VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_CREATE_INFO_KHR, - ePerformanceQuerySubmitInfoKHR = VK_STRUCTURE_TYPE_PERFORMANCE_QUERY_SUBMIT_INFO_KHR, - eAcquireProfilingLockInfoKHR = VK_STRUCTURE_TYPE_ACQUIRE_PROFILING_LOCK_INFO_KHR, - ePerformanceCounterKHR = VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_KHR, - ePerformanceCounterDescriptionKHR = VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_DESCRIPTION_KHR, - ePhysicalDeviceSurfaceInfo2KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SURFACE_INFO_2_KHR, - eSurfaceCapabilities2KHR = VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_KHR, - eSurfaceFormat2KHR = VK_STRUCTURE_TYPE_SURFACE_FORMAT_2_KHR, - eDisplayProperties2KHR = VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR, - eDisplayPlaneProperties2KHR = VK_STRUCTURE_TYPE_DISPLAY_PLANE_PROPERTIES_2_KHR, - eDisplayModeProperties2KHR = VK_STRUCTURE_TYPE_DISPLAY_MODE_PROPERTIES_2_KHR, - eDisplayPlaneInfo2KHR = VK_STRUCTURE_TYPE_DISPLAY_PLANE_INFO_2_KHR, - eDisplayPlaneCapabilities2KHR = VK_STRUCTURE_TYPE_DISPLAY_PLANE_CAPABILITIES_2_KHR, -#if defined( VK_USE_PLATFORM_IOS_MVK ) - eIosSurfaceCreateInfoMVK = VK_STRUCTURE_TYPE_IOS_SURFACE_CREATE_INFO_MVK, -#endif /*VK_USE_PLATFORM_IOS_MVK*/ -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - eMacosSurfaceCreateInfoMVK = VK_STRUCTURE_TYPE_MACOS_SURFACE_CREATE_INFO_MVK, -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - eDebugUtilsObjectNameInfoEXT = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT, - eDebugUtilsObjectTagInfoEXT = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_TAG_INFO_EXT, - eDebugUtilsLabelEXT = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT, - eDebugUtilsMessengerCallbackDataEXT = VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT, - eDebugUtilsMessengerCreateInfoEXT = VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT, -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - eAndroidHardwareBufferUsageANDROID = VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_USAGE_ANDROID, - eAndroidHardwareBufferPropertiesANDROID = VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_PROPERTIES_ANDROID, - eAndroidHardwareBufferFormatPropertiesANDROID = VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_ANDROID, - eImportAndroidHardwareBufferInfoANDROID = VK_STRUCTURE_TYPE_IMPORT_ANDROID_HARDWARE_BUFFER_INFO_ANDROID, - eMemoryGetAndroidHardwareBufferInfoANDROID = VK_STRUCTURE_TYPE_MEMORY_GET_ANDROID_HARDWARE_BUFFER_INFO_ANDROID, - eExternalFormatANDROID = VK_STRUCTURE_TYPE_EXTERNAL_FORMAT_ANDROID, - eAndroidHardwareBufferFormatProperties2ANDROID = - VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_2_ANDROID, -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - eSampleLocationsInfoEXT = VK_STRUCTURE_TYPE_SAMPLE_LOCATIONS_INFO_EXT, - eRenderPassSampleLocationsBeginInfoEXT = VK_STRUCTURE_TYPE_RENDER_PASS_SAMPLE_LOCATIONS_BEGIN_INFO_EXT, - ePipelineSampleLocationsStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT, - ePhysicalDeviceSampleLocationsPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT, - eMultisamplePropertiesEXT = VK_STRUCTURE_TYPE_MULTISAMPLE_PROPERTIES_EXT, - ePhysicalDeviceBlendOperationAdvancedFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT, - ePhysicalDeviceBlendOperationAdvancedPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT, - ePipelineColorBlendAdvancedStateCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_ADVANCED_STATE_CREATE_INFO_EXT, - ePipelineCoverageToColorStateCreateInfoNV = VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_TO_COLOR_STATE_CREATE_INFO_NV, - eWriteDescriptorSetAccelerationStructureKHR = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_KHR, - eAccelerationStructureBuildGeometryInfoKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR, - eAccelerationStructureDeviceAddressInfoKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR, - eAccelerationStructureGeometryAabbsDataKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_AABBS_DATA_KHR, - eAccelerationStructureGeometryInstancesDataKHR = - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_INSTANCES_DATA_KHR, - eAccelerationStructureGeometryTrianglesDataKHR = - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR, - eAccelerationStructureGeometryKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_KHR, - eAccelerationStructureVersionInfoKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_VERSION_INFO_KHR, - eCopyAccelerationStructureInfoKHR = VK_STRUCTURE_TYPE_COPY_ACCELERATION_STRUCTURE_INFO_KHR, - eCopyAccelerationStructureToMemoryInfoKHR = VK_STRUCTURE_TYPE_COPY_ACCELERATION_STRUCTURE_TO_MEMORY_INFO_KHR, - eCopyMemoryToAccelerationStructureInfoKHR = VK_STRUCTURE_TYPE_COPY_MEMORY_TO_ACCELERATION_STRUCTURE_INFO_KHR, - ePhysicalDeviceAccelerationStructureFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR, - ePhysicalDeviceAccelerationStructurePropertiesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_PROPERTIES_KHR, - eAccelerationStructureCreateInfoKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_KHR, - eAccelerationStructureBuildSizesInfoKHR = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR, - ePhysicalDeviceRayTracingPipelineFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_FEATURES_KHR, - ePhysicalDeviceRayTracingPipelinePropertiesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_PROPERTIES_KHR, - eRayTracingPipelineCreateInfoKHR = VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_KHR, - eRayTracingShaderGroupCreateInfoKHR = VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR, - eRayTracingPipelineInterfaceCreateInfoKHR = VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_INTERFACE_CREATE_INFO_KHR, - ePhysicalDeviceRayQueryFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_QUERY_FEATURES_KHR, - ePipelineCoverageModulationStateCreateInfoNV = VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV, - ePhysicalDeviceShaderSmBuiltinsFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SM_BUILTINS_FEATURES_NV, - ePhysicalDeviceShaderSmBuiltinsPropertiesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SM_BUILTINS_PROPERTIES_NV, - eDrmFormatModifierPropertiesListEXT = VK_STRUCTURE_TYPE_DRM_FORMAT_MODIFIER_PROPERTIES_LIST_EXT, - ePhysicalDeviceImageDrmFormatModifierInfoEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_DRM_FORMAT_MODIFIER_INFO_EXT, - eImageDrmFormatModifierListCreateInfoEXT = VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_LIST_CREATE_INFO_EXT, - eImageDrmFormatModifierExplicitCreateInfoEXT = VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_EXPLICIT_CREATE_INFO_EXT, - eImageDrmFormatModifierPropertiesEXT = VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_PROPERTIES_EXT, - eDrmFormatModifierPropertiesList2EXT = VK_STRUCTURE_TYPE_DRM_FORMAT_MODIFIER_PROPERTIES_LIST_2_EXT, - eValidationCacheCreateInfoEXT = VK_STRUCTURE_TYPE_VALIDATION_CACHE_CREATE_INFO_EXT, - eShaderModuleValidationCacheCreateInfoEXT = VK_STRUCTURE_TYPE_SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - ePhysicalDevicePortabilitySubsetFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PORTABILITY_SUBSET_FEATURES_KHR, - ePhysicalDevicePortabilitySubsetPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PORTABILITY_SUBSET_PROPERTIES_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - ePipelineViewportShadingRateImageStateCreateInfoNV = - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SHADING_RATE_IMAGE_STATE_CREATE_INFO_NV, - ePhysicalDeviceShadingRateImageFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADING_RATE_IMAGE_FEATURES_NV, - ePhysicalDeviceShadingRateImagePropertiesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADING_RATE_IMAGE_PROPERTIES_NV, - ePipelineViewportCoarseSampleOrderStateCreateInfoNV = - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_COARSE_SAMPLE_ORDER_STATE_CREATE_INFO_NV, - eRayTracingPipelineCreateInfoNV = VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_NV, - eAccelerationStructureCreateInfoNV = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_NV, - eGeometryNV = VK_STRUCTURE_TYPE_GEOMETRY_NV, - eGeometryTrianglesNV = VK_STRUCTURE_TYPE_GEOMETRY_TRIANGLES_NV, - eGeometryAabbNV = VK_STRUCTURE_TYPE_GEOMETRY_AABB_NV, - eBindAccelerationStructureMemoryInfoNV = VK_STRUCTURE_TYPE_BIND_ACCELERATION_STRUCTURE_MEMORY_INFO_NV, - eWriteDescriptorSetAccelerationStructureNV = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_NV, - eAccelerationStructureMemoryRequirementsInfoNV = - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_INFO_NV, - ePhysicalDeviceRayTracingPropertiesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PROPERTIES_NV, - eRayTracingShaderGroupCreateInfoNV = VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_NV, - eAccelerationStructureInfoNV = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_INFO_NV, - ePhysicalDeviceRepresentativeFragmentTestFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_REPRESENTATIVE_FRAGMENT_TEST_FEATURES_NV, - ePipelineRepresentativeFragmentTestStateCreateInfoNV = - VK_STRUCTURE_TYPE_PIPELINE_REPRESENTATIVE_FRAGMENT_TEST_STATE_CREATE_INFO_NV, - ePhysicalDeviceImageViewImageFormatInfoEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_VIEW_IMAGE_FORMAT_INFO_EXT, - eFilterCubicImageViewImageFormatPropertiesEXT = - VK_STRUCTURE_TYPE_FILTER_CUBIC_IMAGE_VIEW_IMAGE_FORMAT_PROPERTIES_EXT, - eImportMemoryHostPointerInfoEXT = VK_STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT, - eMemoryHostPointerPropertiesEXT = VK_STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT, - ePhysicalDeviceExternalMemoryHostPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT, - ePhysicalDeviceShaderClockFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CLOCK_FEATURES_KHR, - ePipelineCompilerControlCreateInfoAMD = VK_STRUCTURE_TYPE_PIPELINE_COMPILER_CONTROL_CREATE_INFO_AMD, - eCalibratedTimestampInfoEXT = VK_STRUCTURE_TYPE_CALIBRATED_TIMESTAMP_INFO_EXT, - ePhysicalDeviceShaderCorePropertiesAMD = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_AMD, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeH265CapabilitiesEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_CAPABILITIES_EXT, - eVideoDecodeH265SessionCreateInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_SESSION_CREATE_INFO_EXT, - eVideoDecodeH265SessionParametersCreateInfoEXT = - VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_SESSION_PARAMETERS_CREATE_INFO_EXT, - eVideoDecodeH265SessionParametersAddInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_SESSION_PARAMETERS_ADD_INFO_EXT, - eVideoDecodeH265ProfileEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_PROFILE_EXT, - eVideoDecodeH265PictureInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_PICTURE_INFO_EXT, - eVideoDecodeH265DpbSlotInfoEXT = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_DPB_SLOT_INFO_EXT, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eDeviceQueueGlobalPriorityCreateInfoKHR = VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_KHR, - ePhysicalDeviceGlobalPriorityQueryFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_KHR, - eQueueFamilyGlobalPriorityPropertiesKHR = VK_STRUCTURE_TYPE_QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_KHR, - eDeviceMemoryOverallocationCreateInfoAMD = VK_STRUCTURE_TYPE_DEVICE_MEMORY_OVERALLOCATION_CREATE_INFO_AMD, - ePhysicalDeviceVertexAttributeDivisorPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT, - ePipelineVertexInputDivisorStateCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_EXT, - ePhysicalDeviceVertexAttributeDivisorFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_EXT, -#if defined( VK_USE_PLATFORM_GGP ) - ePresentFrameTokenGGP = VK_STRUCTURE_TYPE_PRESENT_FRAME_TOKEN_GGP, -#endif /*VK_USE_PLATFORM_GGP*/ - ePhysicalDeviceComputeShaderDerivativesFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COMPUTE_SHADER_DERIVATIVES_FEATURES_NV, - ePhysicalDeviceMeshShaderFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_FEATURES_NV, - ePhysicalDeviceMeshShaderPropertiesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_NV, - ePhysicalDeviceFragmentShaderBarycentricFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_FEATURES_NV, - ePhysicalDeviceShaderImageFootprintFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_IMAGE_FOOTPRINT_FEATURES_NV, - ePipelineViewportExclusiveScissorStateCreateInfoNV = - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_EXCLUSIVE_SCISSOR_STATE_CREATE_INFO_NV, - ePhysicalDeviceExclusiveScissorFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXCLUSIVE_SCISSOR_FEATURES_NV, - eCheckpointDataNV = VK_STRUCTURE_TYPE_CHECKPOINT_DATA_NV, - eQueueFamilyCheckpointPropertiesNV = VK_STRUCTURE_TYPE_QUEUE_FAMILY_CHECKPOINT_PROPERTIES_NV, - ePhysicalDeviceShaderIntegerFunctions2FeaturesINTEL = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_FUNCTIONS_2_FEATURES_INTEL, - eQueryPoolPerformanceQueryCreateInfoINTEL = VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_QUERY_CREATE_INFO_INTEL, - eInitializePerformanceApiInfoINTEL = VK_STRUCTURE_TYPE_INITIALIZE_PERFORMANCE_API_INFO_INTEL, - ePerformanceMarkerInfoINTEL = VK_STRUCTURE_TYPE_PERFORMANCE_MARKER_INFO_INTEL, - ePerformanceStreamMarkerInfoINTEL = VK_STRUCTURE_TYPE_PERFORMANCE_STREAM_MARKER_INFO_INTEL, - ePerformanceOverrideInfoINTEL = VK_STRUCTURE_TYPE_PERFORMANCE_OVERRIDE_INFO_INTEL, - ePerformanceConfigurationAcquireInfoINTEL = VK_STRUCTURE_TYPE_PERFORMANCE_CONFIGURATION_ACQUIRE_INFO_INTEL, - ePhysicalDevicePciBusInfoPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT, - eDisplayNativeHdrSurfaceCapabilitiesAMD = VK_STRUCTURE_TYPE_DISPLAY_NATIVE_HDR_SURFACE_CAPABILITIES_AMD, - eSwapchainDisplayNativeHdrCreateInfoAMD = VK_STRUCTURE_TYPE_SWAPCHAIN_DISPLAY_NATIVE_HDR_CREATE_INFO_AMD, -#if defined( VK_USE_PLATFORM_FUCHSIA ) - eImagepipeSurfaceCreateInfoFUCHSIA = VK_STRUCTURE_TYPE_IMAGEPIPE_SURFACE_CREATE_INFO_FUCHSIA, -#endif /*VK_USE_PLATFORM_FUCHSIA*/ -#if defined( VK_USE_PLATFORM_METAL_EXT ) - eMetalSurfaceCreateInfoEXT = VK_STRUCTURE_TYPE_METAL_SURFACE_CREATE_INFO_EXT, -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - ePhysicalDeviceFragmentDensityMapFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_FEATURES_EXT, - ePhysicalDeviceFragmentDensityMapPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_PROPERTIES_EXT, - eRenderPassFragmentDensityMapCreateInfoEXT = VK_STRUCTURE_TYPE_RENDER_PASS_FRAGMENT_DENSITY_MAP_CREATE_INFO_EXT, - eFragmentShadingRateAttachmentInfoKHR = VK_STRUCTURE_TYPE_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR, - ePipelineFragmentShadingRateStateCreateInfoKHR = - VK_STRUCTURE_TYPE_PIPELINE_FRAGMENT_SHADING_RATE_STATE_CREATE_INFO_KHR, - ePhysicalDeviceFragmentShadingRatePropertiesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR, - ePhysicalDeviceFragmentShadingRateFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_FEATURES_KHR, - ePhysicalDeviceFragmentShadingRateKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_KHR, - ePhysicalDeviceShaderCoreProperties2AMD = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_2_AMD, - ePhysicalDeviceCoherentMemoryFeaturesAMD = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COHERENT_MEMORY_FEATURES_AMD, - ePhysicalDeviceShaderImageAtomicInt64FeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_IMAGE_ATOMIC_INT64_FEATURES_EXT, - ePhysicalDeviceMemoryBudgetPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT, - ePhysicalDeviceMemoryPriorityFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PRIORITY_FEATURES_EXT, - eMemoryPriorityAllocateInfoEXT = VK_STRUCTURE_TYPE_MEMORY_PRIORITY_ALLOCATE_INFO_EXT, - eSurfaceProtectedCapabilitiesKHR = VK_STRUCTURE_TYPE_SURFACE_PROTECTED_CAPABILITIES_KHR, - ePhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEDICATED_ALLOCATION_IMAGE_ALIASING_FEATURES_NV, - ePhysicalDeviceBufferDeviceAddressFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT, - eBufferDeviceAddressCreateInfoEXT = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT, - eValidationFeaturesEXT = VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT, - ePhysicalDevicePresentWaitFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_WAIT_FEATURES_KHR, - ePhysicalDeviceCooperativeMatrixFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV, - eCooperativeMatrixPropertiesNV = VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV, - ePhysicalDeviceCooperativeMatrixPropertiesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV, - ePhysicalDeviceCoverageReductionModeFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COVERAGE_REDUCTION_MODE_FEATURES_NV, - ePipelineCoverageReductionStateCreateInfoNV = VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_REDUCTION_STATE_CREATE_INFO_NV, - eFramebufferMixedSamplesCombinationNV = VK_STRUCTURE_TYPE_FRAMEBUFFER_MIXED_SAMPLES_COMBINATION_NV, - ePhysicalDeviceFragmentShaderInterlockFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADER_INTERLOCK_FEATURES_EXT, - ePhysicalDeviceYcbcrImageArraysFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_YCBCR_IMAGE_ARRAYS_FEATURES_EXT, - ePhysicalDeviceProvokingVertexFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROVOKING_VERTEX_FEATURES_EXT, - ePipelineRasterizationProvokingVertexStateCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_PROVOKING_VERTEX_STATE_CREATE_INFO_EXT, - ePhysicalDeviceProvokingVertexPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROVOKING_VERTEX_PROPERTIES_EXT, -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - eSurfaceFullScreenExclusiveInfoEXT = VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_INFO_EXT, - eSurfaceCapabilitiesFullScreenExclusiveEXT = VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT, - eSurfaceFullScreenExclusiveWin32InfoEXT = VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_WIN32_INFO_EXT, -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - eHeadlessSurfaceCreateInfoEXT = VK_STRUCTURE_TYPE_HEADLESS_SURFACE_CREATE_INFO_EXT, - ePhysicalDeviceLineRasterizationFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINE_RASTERIZATION_FEATURES_EXT, - ePipelineRasterizationLineStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_EXT, - ePhysicalDeviceLineRasterizationPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINE_RASTERIZATION_PROPERTIES_EXT, - ePhysicalDeviceShaderAtomicFloatFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_FEATURES_EXT, - ePhysicalDeviceIndexTypeUint8FeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_EXT, - ePhysicalDeviceExtendedDynamicStateFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_FEATURES_EXT, - ePhysicalDevicePipelineExecutablePropertiesFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR, - ePipelineInfoKHR = VK_STRUCTURE_TYPE_PIPELINE_INFO_KHR, - ePipelineExecutablePropertiesKHR = VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR, - ePipelineExecutableInfoKHR = VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INFO_KHR, - ePipelineExecutableStatisticKHR = VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR, - ePipelineExecutableInternalRepresentationKHR = VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR, - ePhysicalDeviceShaderAtomicFloat2FeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_2_FEATURES_EXT, - ePhysicalDeviceDeviceGeneratedCommandsPropertiesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_PROPERTIES_NV, - eGraphicsShaderGroupCreateInfoNV = VK_STRUCTURE_TYPE_GRAPHICS_SHADER_GROUP_CREATE_INFO_NV, - eGraphicsPipelineShaderGroupsCreateInfoNV = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_SHADER_GROUPS_CREATE_INFO_NV, - eIndirectCommandsLayoutTokenNV = VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_TOKEN_NV, - eIndirectCommandsLayoutCreateInfoNV = VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NV, - eGeneratedCommandsInfoNV = VK_STRUCTURE_TYPE_GENERATED_COMMANDS_INFO_NV, - eGeneratedCommandsMemoryRequirementsInfoNV = VK_STRUCTURE_TYPE_GENERATED_COMMANDS_MEMORY_REQUIREMENTS_INFO_NV, - ePhysicalDeviceDeviceGeneratedCommandsFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_FEATURES_NV, - ePhysicalDeviceInheritedViewportScissorFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INHERITED_VIEWPORT_SCISSOR_FEATURES_NV, - eCommandBufferInheritanceViewportScissorInfoNV = - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_VIEWPORT_SCISSOR_INFO_NV, - ePhysicalDeviceTexelBufferAlignmentFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_FEATURES_EXT, - eCommandBufferInheritanceRenderPassTransformInfoQCOM = - VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDER_PASS_TRANSFORM_INFO_QCOM, - eRenderPassTransformBeginInfoQCOM = VK_STRUCTURE_TYPE_RENDER_PASS_TRANSFORM_BEGIN_INFO_QCOM, - ePhysicalDeviceDeviceMemoryReportFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_MEMORY_REPORT_FEATURES_EXT, - eDeviceDeviceMemoryReportCreateInfoEXT = VK_STRUCTURE_TYPE_DEVICE_DEVICE_MEMORY_REPORT_CREATE_INFO_EXT, - eDeviceMemoryReportCallbackDataEXT = VK_STRUCTURE_TYPE_DEVICE_MEMORY_REPORT_CALLBACK_DATA_EXT, - ePhysicalDeviceRobustness2FeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT, - ePhysicalDeviceRobustness2PropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_PROPERTIES_EXT, - eSamplerCustomBorderColorCreateInfoEXT = VK_STRUCTURE_TYPE_SAMPLER_CUSTOM_BORDER_COLOR_CREATE_INFO_EXT, - ePhysicalDeviceCustomBorderColorPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT, - ePhysicalDeviceCustomBorderColorFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_FEATURES_EXT, - ePipelineLibraryCreateInfoKHR = VK_STRUCTURE_TYPE_PIPELINE_LIBRARY_CREATE_INFO_KHR, - ePresentIdKHR = VK_STRUCTURE_TYPE_PRESENT_ID_KHR, - ePhysicalDevicePresentIdFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeInfoKHR = VK_STRUCTURE_TYPE_VIDEO_ENCODE_INFO_KHR, - eVideoEncodeRateControlInfoKHR = VK_STRUCTURE_TYPE_VIDEO_ENCODE_RATE_CONTROL_INFO_KHR, - eVideoEncodeRateControlLayerInfoKHR = VK_STRUCTURE_TYPE_VIDEO_ENCODE_RATE_CONTROL_LAYER_INFO_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - ePhysicalDeviceDiagnosticsConfigFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DIAGNOSTICS_CONFIG_FEATURES_NV, - eDeviceDiagnosticsConfigCreateInfoNV = VK_STRUCTURE_TYPE_DEVICE_DIAGNOSTICS_CONFIG_CREATE_INFO_NV, - eQueueFamilyCheckpointProperties2NV = VK_STRUCTURE_TYPE_QUEUE_FAMILY_CHECKPOINT_PROPERTIES_2_NV, - eCheckpointData2NV = VK_STRUCTURE_TYPE_CHECKPOINT_DATA_2_NV, - ePhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_UNIFORM_CONTROL_FLOW_FEATURES_KHR, - ePhysicalDeviceFragmentShadingRateEnumsPropertiesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_PROPERTIES_NV, - ePhysicalDeviceFragmentShadingRateEnumsFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_FEATURES_NV, - ePipelineFragmentShadingRateEnumStateCreateInfoNV = - VK_STRUCTURE_TYPE_PIPELINE_FRAGMENT_SHADING_RATE_ENUM_STATE_CREATE_INFO_NV, - eAccelerationStructureGeometryMotionTrianglesDataNV = - VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_MOTION_TRIANGLES_DATA_NV, - ePhysicalDeviceRayTracingMotionBlurFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_MOTION_BLUR_FEATURES_NV, - eAccelerationStructureMotionInfoNV = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_MOTION_INFO_NV, - ePhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_YCBCR_2_PLANE_444_FORMATS_FEATURES_EXT, - ePhysicalDeviceFragmentDensityMap2FeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_FEATURES_EXT, - ePhysicalDeviceFragmentDensityMap2PropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_PROPERTIES_EXT, - eCopyCommandTransformInfoQCOM = VK_STRUCTURE_TYPE_COPY_COMMAND_TRANSFORM_INFO_QCOM, - ePhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_FEATURES_KHR, - ePhysicalDevice4444FormatsFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_4444_FORMATS_FEATURES_EXT, - ePhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_FEATURES_ARM, - ePhysicalDeviceRgba10X6FormatsFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RGBA10X6_FORMATS_FEATURES_EXT, -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - eDirectfbSurfaceCreateInfoEXT = VK_STRUCTURE_TYPE_DIRECTFB_SURFACE_CREATE_INFO_EXT, -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - ePhysicalDeviceMutableDescriptorTypeFeaturesVALVE = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MUTABLE_DESCRIPTOR_TYPE_FEATURES_VALVE, - eMutableDescriptorTypeCreateInfoVALVE = VK_STRUCTURE_TYPE_MUTABLE_DESCRIPTOR_TYPE_CREATE_INFO_VALVE, - ePhysicalDeviceVertexInputDynamicStateFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_INPUT_DYNAMIC_STATE_FEATURES_EXT, - eVertexInputBindingDescription2EXT = VK_STRUCTURE_TYPE_VERTEX_INPUT_BINDING_DESCRIPTION_2_EXT, - eVertexInputAttributeDescription2EXT = VK_STRUCTURE_TYPE_VERTEX_INPUT_ATTRIBUTE_DESCRIPTION_2_EXT, - ePhysicalDeviceDrmPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRM_PROPERTIES_EXT, - ePhysicalDeviceDepthClipControlFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_CONTROL_FEATURES_EXT, - ePipelineViewportDepthClipControlCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_DEPTH_CLIP_CONTROL_CREATE_INFO_EXT, - ePhysicalDevicePrimitiveTopologyListRestartFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIMITIVE_TOPOLOGY_LIST_RESTART_FEATURES_EXT, -#if defined( VK_USE_PLATFORM_FUCHSIA ) - eImportMemoryZirconHandleInfoFUCHSIA = VK_STRUCTURE_TYPE_IMPORT_MEMORY_ZIRCON_HANDLE_INFO_FUCHSIA, - eMemoryZirconHandlePropertiesFUCHSIA = VK_STRUCTURE_TYPE_MEMORY_ZIRCON_HANDLE_PROPERTIES_FUCHSIA, - eMemoryGetZirconHandleInfoFUCHSIA = VK_STRUCTURE_TYPE_MEMORY_GET_ZIRCON_HANDLE_INFO_FUCHSIA, - eImportSemaphoreZirconHandleInfoFUCHSIA = VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_ZIRCON_HANDLE_INFO_FUCHSIA, - eSemaphoreGetZirconHandleInfoFUCHSIA = VK_STRUCTURE_TYPE_SEMAPHORE_GET_ZIRCON_HANDLE_INFO_FUCHSIA, - eBufferCollectionCreateInfoFUCHSIA = VK_STRUCTURE_TYPE_BUFFER_COLLECTION_CREATE_INFO_FUCHSIA, - eImportMemoryBufferCollectionFUCHSIA = VK_STRUCTURE_TYPE_IMPORT_MEMORY_BUFFER_COLLECTION_FUCHSIA, - eBufferCollectionImageCreateInfoFUCHSIA = VK_STRUCTURE_TYPE_BUFFER_COLLECTION_IMAGE_CREATE_INFO_FUCHSIA, - eBufferCollectionPropertiesFUCHSIA = VK_STRUCTURE_TYPE_BUFFER_COLLECTION_PROPERTIES_FUCHSIA, - eBufferConstraintsInfoFUCHSIA = VK_STRUCTURE_TYPE_BUFFER_CONSTRAINTS_INFO_FUCHSIA, - eBufferCollectionBufferCreateInfoFUCHSIA = VK_STRUCTURE_TYPE_BUFFER_COLLECTION_BUFFER_CREATE_INFO_FUCHSIA, - eImageConstraintsInfoFUCHSIA = VK_STRUCTURE_TYPE_IMAGE_CONSTRAINTS_INFO_FUCHSIA, - eImageFormatConstraintsInfoFUCHSIA = VK_STRUCTURE_TYPE_IMAGE_FORMAT_CONSTRAINTS_INFO_FUCHSIA, - eSysmemColorSpaceFUCHSIA = VK_STRUCTURE_TYPE_SYSMEM_COLOR_SPACE_FUCHSIA, - eBufferCollectionConstraintsInfoFUCHSIA = VK_STRUCTURE_TYPE_BUFFER_COLLECTION_CONSTRAINTS_INFO_FUCHSIA, -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - eSubpassShadingPipelineCreateInfoHUAWEI = VK_STRUCTURE_TYPE_SUBPASS_SHADING_PIPELINE_CREATE_INFO_HUAWEI, - ePhysicalDeviceSubpassShadingFeaturesHUAWEI = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBPASS_SHADING_FEATURES_HUAWEI, - ePhysicalDeviceSubpassShadingPropertiesHUAWEI = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBPASS_SHADING_PROPERTIES_HUAWEI, - ePhysicalDeviceInvocationMaskFeaturesHUAWEI = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INVOCATION_MASK_FEATURES_HUAWEI, - eMemoryGetRemoteAddressInfoNV = VK_STRUCTURE_TYPE_MEMORY_GET_REMOTE_ADDRESS_INFO_NV, - ePhysicalDeviceExternalMemoryRdmaFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_RDMA_FEATURES_NV, - ePhysicalDeviceExtendedDynamicState2FeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_2_FEATURES_EXT, -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - eScreenSurfaceCreateInfoQNX = VK_STRUCTURE_TYPE_SCREEN_SURFACE_CREATE_INFO_QNX, -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - ePhysicalDeviceColorWriteEnableFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COLOR_WRITE_ENABLE_FEATURES_EXT, - ePipelineColorWriteCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_COLOR_WRITE_CREATE_INFO_EXT, - ePhysicalDeviceImageViewMinLodFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_VIEW_MIN_LOD_FEATURES_EXT, - eImageViewMinLodCreateInfoEXT = VK_STRUCTURE_TYPE_IMAGE_VIEW_MIN_LOD_CREATE_INFO_EXT, - ePhysicalDeviceMultiDrawFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTI_DRAW_FEATURES_EXT, - ePhysicalDeviceMultiDrawPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTI_DRAW_PROPERTIES_EXT, - ePhysicalDeviceBorderColorSwizzleFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BORDER_COLOR_SWIZZLE_FEATURES_EXT, - eSamplerBorderColorComponentMappingCreateInfoEXT = - VK_STRUCTURE_TYPE_SAMPLER_BORDER_COLOR_COMPONENT_MAPPING_CREATE_INFO_EXT, - ePhysicalDevicePageableDeviceLocalMemoryFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PAGEABLE_DEVICE_LOCAL_MEMORY_FEATURES_EXT, - ePhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_FEATURES_QCOM, - ePhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_PROPERTIES_QCOM, - eSubpassFragmentDensityMapOffsetEndInfoQCOM = VK_STRUCTURE_TYPE_SUBPASS_FRAGMENT_DENSITY_MAP_OFFSET_END_INFO_QCOM, - ePhysicalDeviceLinearColorAttachmentFeaturesNV = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINEAR_COLOR_ATTACHMENT_FEATURES_NV, - eAttachmentDescription2KHR = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR, - eAttachmentDescriptionStencilLayoutKHR = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT_KHR, - eAttachmentReference2KHR = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR, - eAttachmentReferenceStencilLayoutKHR = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT_KHR, - eAttachmentSampleCountInfoNV = VK_STRUCTURE_TYPE_ATTACHMENT_SAMPLE_COUNT_INFO_NV, - eBindBufferMemoryDeviceGroupInfoKHR = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO_KHR, - eBindBufferMemoryInfoKHR = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO_KHR, - eBindImageMemoryDeviceGroupInfoKHR = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO_KHR, - eBindImageMemoryInfoKHR = VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO_KHR, - eBindImagePlaneMemoryInfoKHR = VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO_KHR, - eBlitImageInfo2KHR = VK_STRUCTURE_TYPE_BLIT_IMAGE_INFO_2_KHR, - eBufferCopy2KHR = VK_STRUCTURE_TYPE_BUFFER_COPY_2_KHR, - eBufferDeviceAddressInfoEXT = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_EXT, - eBufferDeviceAddressInfoKHR = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR, - eBufferImageCopy2KHR = VK_STRUCTURE_TYPE_BUFFER_IMAGE_COPY_2_KHR, - eBufferMemoryBarrier2KHR = VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER_2_KHR, - eBufferMemoryRequirementsInfo2KHR = VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2_KHR, - eBufferOpaqueCaptureAddressCreateInfoKHR = VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO_KHR, - eCommandBufferInheritanceRenderingInfoKHR = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDERING_INFO_KHR, - eCommandBufferSubmitInfoKHR = VK_STRUCTURE_TYPE_COMMAND_BUFFER_SUBMIT_INFO_KHR, - eCopyBufferInfo2KHR = VK_STRUCTURE_TYPE_COPY_BUFFER_INFO_2_KHR, - eCopyBufferToImageInfo2KHR = VK_STRUCTURE_TYPE_COPY_BUFFER_TO_IMAGE_INFO_2_KHR, - eCopyImageInfo2KHR = VK_STRUCTURE_TYPE_COPY_IMAGE_INFO_2_KHR, - eCopyImageToBufferInfo2KHR = VK_STRUCTURE_TYPE_COPY_IMAGE_TO_BUFFER_INFO_2_KHR, - eDebugReportCreateInfoEXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT, - eDependencyInfoKHR = VK_STRUCTURE_TYPE_DEPENDENCY_INFO_KHR, - eDescriptorPoolInlineUniformBlockCreateInfoEXT = - VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO_EXT, - eDescriptorSetLayoutBindingFlagsCreateInfoEXT = - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO_EXT, - eDescriptorSetLayoutSupportKHR = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT_KHR, - eDescriptorSetVariableDescriptorCountAllocateInfoEXT = - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO_EXT, - eDescriptorSetVariableDescriptorCountLayoutSupportEXT = - VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT_EXT, - eDescriptorUpdateTemplateCreateInfoKHR = VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO_KHR, - eDeviceBufferMemoryRequirementsKHR = VK_STRUCTURE_TYPE_DEVICE_BUFFER_MEMORY_REQUIREMENTS_KHR, - eDeviceGroupBindSparseInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO_KHR, - eDeviceGroupCommandBufferBeginInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO_KHR, - eDeviceGroupDeviceCreateInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO_KHR, - eDeviceGroupRenderPassBeginInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO_KHR, - eDeviceGroupSubmitInfoKHR = VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO_KHR, - eDeviceImageMemoryRequirementsKHR = VK_STRUCTURE_TYPE_DEVICE_IMAGE_MEMORY_REQUIREMENTS_KHR, - eDeviceMemoryOpaqueCaptureAddressInfoKHR = VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO_KHR, - eDevicePrivateDataCreateInfoEXT = VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO_EXT, - eDeviceQueueGlobalPriorityCreateInfoEXT = VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_EXT, - eExportFenceCreateInfoKHR = VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO_KHR, - eExportMemoryAllocateInfoKHR = VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_KHR, - eExportSemaphoreCreateInfoKHR = VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO_KHR, - eExternalBufferPropertiesKHR = VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES_KHR, - eExternalFencePropertiesKHR = VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES_KHR, - eExternalImageFormatPropertiesKHR = VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES_KHR, - eExternalMemoryBufferCreateInfoKHR = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO_KHR, - eExternalMemoryImageCreateInfoKHR = VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_KHR, - eExternalSemaphorePropertiesKHR = VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES_KHR, - eFormatProperties2KHR = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2_KHR, - eFormatProperties3KHR = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_3_KHR, - eFramebufferAttachmentsCreateInfoKHR = VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO_KHR, - eFramebufferAttachmentImageInfoKHR = VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO_KHR, - eImageBlit2KHR = VK_STRUCTURE_TYPE_IMAGE_BLIT_2_KHR, - eImageCopy2KHR = VK_STRUCTURE_TYPE_IMAGE_COPY_2_KHR, - eImageFormatListCreateInfoKHR = VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO_KHR, - eImageFormatProperties2KHR = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2_KHR, - eImageMemoryBarrier2KHR = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2_KHR, - eImageMemoryRequirementsInfo2KHR = VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2_KHR, - eImagePlaneMemoryRequirementsInfoKHR = VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO_KHR, - eImageResolve2KHR = VK_STRUCTURE_TYPE_IMAGE_RESOLVE_2_KHR, - eImageSparseMemoryRequirementsInfo2KHR = VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2_KHR, - eImageStencilUsageCreateInfoEXT = VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT, - eImageViewUsageCreateInfoKHR = VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO_KHR, - eMemoryAllocateFlagsInfoKHR = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO_KHR, - eMemoryBarrier2KHR = VK_STRUCTURE_TYPE_MEMORY_BARRIER_2_KHR, - eMemoryDedicatedAllocateInfoKHR = VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO_KHR, - eMemoryDedicatedRequirementsKHR = VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS_KHR, - eMemoryOpaqueCaptureAddressAllocateInfoKHR = VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO_KHR, - eMemoryRequirements2KHR = VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2_KHR, - ePhysicalDevice16BitStorageFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR, - ePhysicalDevice8BitStorageFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES_KHR, - ePhysicalDeviceBufferAddressFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_ADDRESS_FEATURES_EXT, - ePhysicalDeviceBufferDeviceAddressFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_KHR, - ePhysicalDeviceDepthStencilResolvePropertiesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR, - ePhysicalDeviceDescriptorIndexingFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES_EXT, - ePhysicalDeviceDescriptorIndexingPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES_EXT, - ePhysicalDeviceDriverPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES_KHR, - ePhysicalDeviceDynamicRenderingFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES_KHR, - ePhysicalDeviceExternalBufferInfoKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO_KHR, - ePhysicalDeviceExternalFenceInfoKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO_KHR, - ePhysicalDeviceExternalImageFormatInfoKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO_KHR, - ePhysicalDeviceExternalSemaphoreInfoKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO_KHR, - ePhysicalDeviceFeatures2KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR, - ePhysicalDeviceFloat16Int8FeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT16_INT8_FEATURES_KHR, - ePhysicalDeviceFloatControlsPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES_KHR, - ePhysicalDeviceGlobalPriorityQueryFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_EXT, - ePhysicalDeviceGroupPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES_KHR, - ePhysicalDeviceHostQueryResetFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES_EXT, - ePhysicalDeviceIdPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR, - ePhysicalDeviceImagelessFramebufferFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES_KHR, - ePhysicalDeviceImageFormatInfo2KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2_KHR, - ePhysicalDeviceImageRobustnessFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES_EXT, - ePhysicalDeviceInlineUniformBlockFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES_EXT, - ePhysicalDeviceInlineUniformBlockPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES_EXT, - ePhysicalDeviceMaintenance3PropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES_KHR, - ePhysicalDeviceMaintenance4FeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES_KHR, - ePhysicalDeviceMaintenance4PropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES_KHR, - ePhysicalDeviceMemoryProperties2KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2_KHR, - ePhysicalDeviceMultiviewFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR, - ePhysicalDeviceMultiviewPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES_KHR, - ePhysicalDevicePipelineCreationCacheControlFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES_EXT, - ePhysicalDevicePointClippingPropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES_KHR, - ePhysicalDevicePrivateDataFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES_EXT, - ePhysicalDeviceProperties2KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR, - ePhysicalDeviceSamplerFilterMinmaxPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES_EXT, - ePhysicalDeviceSamplerYcbcrConversionFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES_KHR, - ePhysicalDeviceScalarBlockLayoutFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES_EXT, - ePhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES_KHR, - ePhysicalDeviceShaderAtomicInt64FeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES_KHR, - ePhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES_EXT, - ePhysicalDeviceShaderDrawParameterFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETER_FEATURES, - ePhysicalDeviceShaderFloat16Int8FeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES_KHR, - ePhysicalDeviceShaderIntegerDotProductFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES_KHR, - ePhysicalDeviceShaderIntegerDotProductPropertiesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES_KHR, - ePhysicalDeviceShaderSubgroupExtendedTypesFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES_KHR, - ePhysicalDeviceShaderTerminateInvocationFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES_KHR, - ePhysicalDeviceSparseImageFormatInfo2KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2_KHR, - ePhysicalDeviceSubgroupSizeControlFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES_EXT, - ePhysicalDeviceSubgroupSizeControlPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES_EXT, - ePhysicalDeviceSynchronization2FeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES_KHR, - ePhysicalDeviceTexelBufferAlignmentPropertiesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES_EXT, - ePhysicalDeviceTextureCompressionAstcHdrFeaturesEXT = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES_EXT, - ePhysicalDeviceTimelineSemaphoreFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES_KHR, - ePhysicalDeviceTimelineSemaphorePropertiesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES_KHR, - ePhysicalDeviceToolPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES_EXT, - ePhysicalDeviceUniformBufferStandardLayoutFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES_KHR, - ePhysicalDeviceVariablePointersFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES_KHR, - ePhysicalDeviceVariablePointerFeatures = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES, - ePhysicalDeviceVariablePointerFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES_KHR, - ePhysicalDeviceVulkanMemoryModelFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES_KHR, - ePhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesKHR = - VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES_KHR, - ePipelineCreationFeedbackCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_CREATION_FEEDBACK_CREATE_INFO_EXT, - ePipelineRenderingCreateInfoKHR = VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO_KHR, - ePipelineShaderStageRequiredSubgroupSizeCreateInfoEXT = - VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO_EXT, - ePipelineTessellationDomainOriginStateCreateInfoKHR = - VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO_KHR, - ePrivateDataSlotCreateInfoEXT = VK_STRUCTURE_TYPE_PRIVATE_DATA_SLOT_CREATE_INFO_EXT, - eQueryPoolCreateInfoINTEL = VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO_INTEL, - eQueueFamilyGlobalPriorityPropertiesEXT = VK_STRUCTURE_TYPE_QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_EXT, - eQueueFamilyProperties2KHR = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2_KHR, - eRenderingAttachmentInfoKHR = VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_INFO_KHR, - eRenderingInfoKHR = VK_STRUCTURE_TYPE_RENDERING_INFO_KHR, - eRenderPassAttachmentBeginInfoKHR = VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO_KHR, - eRenderPassCreateInfo2KHR = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2_KHR, - eRenderPassInputAttachmentAspectCreateInfoKHR = - VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO_KHR, - eRenderPassMultiviewCreateInfoKHR = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR, - eResolveImageInfo2KHR = VK_STRUCTURE_TYPE_RESOLVE_IMAGE_INFO_2_KHR, - eSamplerReductionModeCreateInfoEXT = VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO_EXT, - eSamplerYcbcrConversionCreateInfoKHR = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO_KHR, - eSamplerYcbcrConversionImageFormatPropertiesKHR = - VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES_KHR, - eSamplerYcbcrConversionInfoKHR = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO_KHR, - eSemaphoreSignalInfoKHR = VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO_KHR, - eSemaphoreSubmitInfoKHR = VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO_KHR, - eSemaphoreTypeCreateInfoKHR = VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO_KHR, - eSemaphoreWaitInfoKHR = VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO_KHR, - eSparseImageFormatProperties2KHR = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2_KHR, - eSparseImageMemoryRequirements2KHR = VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2_KHR, - eSubmitInfo2KHR = VK_STRUCTURE_TYPE_SUBMIT_INFO_2_KHR, - eSubpassBeginInfoKHR = VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO_KHR, - eSubpassDependency2KHR = VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2_KHR, - eSubpassDescription2KHR = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2_KHR, - eSubpassDescriptionDepthStencilResolveKHR = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE_KHR, - eSubpassEndInfoKHR = VK_STRUCTURE_TYPE_SUBPASS_END_INFO_KHR, - eTimelineSemaphoreSubmitInfoKHR = VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO_KHR, - eWriteDescriptorSetInlineUniformBlockEXT = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( StructureType value ) - { - switch ( value ) - { - case StructureType::eApplicationInfo: return "ApplicationInfo"; - case StructureType::eInstanceCreateInfo: return "InstanceCreateInfo"; - case StructureType::eDeviceQueueCreateInfo: return "DeviceQueueCreateInfo"; - case StructureType::eDeviceCreateInfo: return "DeviceCreateInfo"; - case StructureType::eSubmitInfo: return "SubmitInfo"; - case StructureType::eMemoryAllocateInfo: return "MemoryAllocateInfo"; - case StructureType::eMappedMemoryRange: return "MappedMemoryRange"; - case StructureType::eBindSparseInfo: return "BindSparseInfo"; - case StructureType::eFenceCreateInfo: return "FenceCreateInfo"; - case StructureType::eSemaphoreCreateInfo: return "SemaphoreCreateInfo"; - case StructureType::eEventCreateInfo: return "EventCreateInfo"; - case StructureType::eQueryPoolCreateInfo: return "QueryPoolCreateInfo"; - case StructureType::eBufferCreateInfo: return "BufferCreateInfo"; - case StructureType::eBufferViewCreateInfo: return "BufferViewCreateInfo"; - case StructureType::eImageCreateInfo: return "ImageCreateInfo"; - case StructureType::eImageViewCreateInfo: return "ImageViewCreateInfo"; - case StructureType::eShaderModuleCreateInfo: return "ShaderModuleCreateInfo"; - case StructureType::ePipelineCacheCreateInfo: return "PipelineCacheCreateInfo"; - case StructureType::ePipelineShaderStageCreateInfo: return "PipelineShaderStageCreateInfo"; - case StructureType::ePipelineVertexInputStateCreateInfo: return "PipelineVertexInputStateCreateInfo"; - case StructureType::ePipelineInputAssemblyStateCreateInfo: return "PipelineInputAssemblyStateCreateInfo"; - case StructureType::ePipelineTessellationStateCreateInfo: return "PipelineTessellationStateCreateInfo"; - case StructureType::ePipelineViewportStateCreateInfo: return "PipelineViewportStateCreateInfo"; - case StructureType::ePipelineRasterizationStateCreateInfo: return "PipelineRasterizationStateCreateInfo"; - case StructureType::ePipelineMultisampleStateCreateInfo: return "PipelineMultisampleStateCreateInfo"; - case StructureType::ePipelineDepthStencilStateCreateInfo: return "PipelineDepthStencilStateCreateInfo"; - case StructureType::ePipelineColorBlendStateCreateInfo: return "PipelineColorBlendStateCreateInfo"; - case StructureType::ePipelineDynamicStateCreateInfo: return "PipelineDynamicStateCreateInfo"; - case StructureType::eGraphicsPipelineCreateInfo: return "GraphicsPipelineCreateInfo"; - case StructureType::eComputePipelineCreateInfo: return "ComputePipelineCreateInfo"; - case StructureType::ePipelineLayoutCreateInfo: return "PipelineLayoutCreateInfo"; - case StructureType::eSamplerCreateInfo: return "SamplerCreateInfo"; - case StructureType::eDescriptorSetLayoutCreateInfo: return "DescriptorSetLayoutCreateInfo"; - case StructureType::eDescriptorPoolCreateInfo: return "DescriptorPoolCreateInfo"; - case StructureType::eDescriptorSetAllocateInfo: return "DescriptorSetAllocateInfo"; - case StructureType::eWriteDescriptorSet: return "WriteDescriptorSet"; - case StructureType::eCopyDescriptorSet: return "CopyDescriptorSet"; - case StructureType::eFramebufferCreateInfo: return "FramebufferCreateInfo"; - case StructureType::eRenderPassCreateInfo: return "RenderPassCreateInfo"; - case StructureType::eCommandPoolCreateInfo: return "CommandPoolCreateInfo"; - case StructureType::eCommandBufferAllocateInfo: return "CommandBufferAllocateInfo"; - case StructureType::eCommandBufferInheritanceInfo: return "CommandBufferInheritanceInfo"; - case StructureType::eCommandBufferBeginInfo: return "CommandBufferBeginInfo"; - case StructureType::eRenderPassBeginInfo: return "RenderPassBeginInfo"; - case StructureType::eBufferMemoryBarrier: return "BufferMemoryBarrier"; - case StructureType::eImageMemoryBarrier: return "ImageMemoryBarrier"; - case StructureType::eMemoryBarrier: return "MemoryBarrier"; - case StructureType::eLoaderInstanceCreateInfo: return "LoaderInstanceCreateInfo"; - case StructureType::eLoaderDeviceCreateInfo: return "LoaderDeviceCreateInfo"; - case StructureType::ePhysicalDeviceSubgroupProperties: return "PhysicalDeviceSubgroupProperties"; - case StructureType::eBindBufferMemoryInfo: return "BindBufferMemoryInfo"; - case StructureType::eBindImageMemoryInfo: return "BindImageMemoryInfo"; - case StructureType::ePhysicalDevice16BitStorageFeatures: return "PhysicalDevice16BitStorageFeatures"; - case StructureType::eMemoryDedicatedRequirements: return "MemoryDedicatedRequirements"; - case StructureType::eMemoryDedicatedAllocateInfo: return "MemoryDedicatedAllocateInfo"; - case StructureType::eMemoryAllocateFlagsInfo: return "MemoryAllocateFlagsInfo"; - case StructureType::eDeviceGroupRenderPassBeginInfo: return "DeviceGroupRenderPassBeginInfo"; - case StructureType::eDeviceGroupCommandBufferBeginInfo: return "DeviceGroupCommandBufferBeginInfo"; - case StructureType::eDeviceGroupSubmitInfo: return "DeviceGroupSubmitInfo"; - case StructureType::eDeviceGroupBindSparseInfo: return "DeviceGroupBindSparseInfo"; - case StructureType::eBindBufferMemoryDeviceGroupInfo: return "BindBufferMemoryDeviceGroupInfo"; - case StructureType::eBindImageMemoryDeviceGroupInfo: return "BindImageMemoryDeviceGroupInfo"; - case StructureType::ePhysicalDeviceGroupProperties: return "PhysicalDeviceGroupProperties"; - case StructureType::eDeviceGroupDeviceCreateInfo: return "DeviceGroupDeviceCreateInfo"; - case StructureType::eBufferMemoryRequirementsInfo2: return "BufferMemoryRequirementsInfo2"; - case StructureType::eImageMemoryRequirementsInfo2: return "ImageMemoryRequirementsInfo2"; - case StructureType::eImageSparseMemoryRequirementsInfo2: return "ImageSparseMemoryRequirementsInfo2"; - case StructureType::eMemoryRequirements2: return "MemoryRequirements2"; - case StructureType::eSparseImageMemoryRequirements2: return "SparseImageMemoryRequirements2"; - case StructureType::ePhysicalDeviceFeatures2: return "PhysicalDeviceFeatures2"; - case StructureType::ePhysicalDeviceProperties2: return "PhysicalDeviceProperties2"; - case StructureType::eFormatProperties2: return "FormatProperties2"; - case StructureType::eImageFormatProperties2: return "ImageFormatProperties2"; - case StructureType::ePhysicalDeviceImageFormatInfo2: return "PhysicalDeviceImageFormatInfo2"; - case StructureType::eQueueFamilyProperties2: return "QueueFamilyProperties2"; - case StructureType::ePhysicalDeviceMemoryProperties2: return "PhysicalDeviceMemoryProperties2"; - case StructureType::eSparseImageFormatProperties2: return "SparseImageFormatProperties2"; - case StructureType::ePhysicalDeviceSparseImageFormatInfo2: return "PhysicalDeviceSparseImageFormatInfo2"; - case StructureType::ePhysicalDevicePointClippingProperties: return "PhysicalDevicePointClippingProperties"; - case StructureType::eRenderPassInputAttachmentAspectCreateInfo: - return "RenderPassInputAttachmentAspectCreateInfo"; - case StructureType::eImageViewUsageCreateInfo: return "ImageViewUsageCreateInfo"; - case StructureType::ePipelineTessellationDomainOriginStateCreateInfo: - return "PipelineTessellationDomainOriginStateCreateInfo"; - case StructureType::eRenderPassMultiviewCreateInfo: return "RenderPassMultiviewCreateInfo"; - case StructureType::ePhysicalDeviceMultiviewFeatures: return "PhysicalDeviceMultiviewFeatures"; - case StructureType::ePhysicalDeviceMultiviewProperties: return "PhysicalDeviceMultiviewProperties"; - case StructureType::ePhysicalDeviceVariablePointersFeatures: return "PhysicalDeviceVariablePointersFeatures"; - case StructureType::eProtectedSubmitInfo: return "ProtectedSubmitInfo"; - case StructureType::ePhysicalDeviceProtectedMemoryFeatures: return "PhysicalDeviceProtectedMemoryFeatures"; - case StructureType::ePhysicalDeviceProtectedMemoryProperties: return "PhysicalDeviceProtectedMemoryProperties"; - case StructureType::eDeviceQueueInfo2: return "DeviceQueueInfo2"; - case StructureType::eSamplerYcbcrConversionCreateInfo: return "SamplerYcbcrConversionCreateInfo"; - case StructureType::eSamplerYcbcrConversionInfo: return "SamplerYcbcrConversionInfo"; - case StructureType::eBindImagePlaneMemoryInfo: return "BindImagePlaneMemoryInfo"; - case StructureType::eImagePlaneMemoryRequirementsInfo: return "ImagePlaneMemoryRequirementsInfo"; - case StructureType::ePhysicalDeviceSamplerYcbcrConversionFeatures: - return "PhysicalDeviceSamplerYcbcrConversionFeatures"; - case StructureType::eSamplerYcbcrConversionImageFormatProperties: - return "SamplerYcbcrConversionImageFormatProperties"; - case StructureType::eDescriptorUpdateTemplateCreateInfo: return "DescriptorUpdateTemplateCreateInfo"; - case StructureType::ePhysicalDeviceExternalImageFormatInfo: return "PhysicalDeviceExternalImageFormatInfo"; - case StructureType::eExternalImageFormatProperties: return "ExternalImageFormatProperties"; - case StructureType::ePhysicalDeviceExternalBufferInfo: return "PhysicalDeviceExternalBufferInfo"; - case StructureType::eExternalBufferProperties: return "ExternalBufferProperties"; - case StructureType::ePhysicalDeviceIdProperties: return "PhysicalDeviceIdProperties"; - case StructureType::eExternalMemoryBufferCreateInfo: return "ExternalMemoryBufferCreateInfo"; - case StructureType::eExternalMemoryImageCreateInfo: return "ExternalMemoryImageCreateInfo"; - case StructureType::eExportMemoryAllocateInfo: return "ExportMemoryAllocateInfo"; - case StructureType::ePhysicalDeviceExternalFenceInfo: return "PhysicalDeviceExternalFenceInfo"; - case StructureType::eExternalFenceProperties: return "ExternalFenceProperties"; - case StructureType::eExportFenceCreateInfo: return "ExportFenceCreateInfo"; - case StructureType::eExportSemaphoreCreateInfo: return "ExportSemaphoreCreateInfo"; - case StructureType::ePhysicalDeviceExternalSemaphoreInfo: return "PhysicalDeviceExternalSemaphoreInfo"; - case StructureType::eExternalSemaphoreProperties: return "ExternalSemaphoreProperties"; - case StructureType::ePhysicalDeviceMaintenance3Properties: return "PhysicalDeviceMaintenance3Properties"; - case StructureType::eDescriptorSetLayoutSupport: return "DescriptorSetLayoutSupport"; - case StructureType::ePhysicalDeviceShaderDrawParametersFeatures: - return "PhysicalDeviceShaderDrawParametersFeatures"; - case StructureType::ePhysicalDeviceVulkan11Features: return "PhysicalDeviceVulkan11Features"; - case StructureType::ePhysicalDeviceVulkan11Properties: return "PhysicalDeviceVulkan11Properties"; - case StructureType::ePhysicalDeviceVulkan12Features: return "PhysicalDeviceVulkan12Features"; - case StructureType::ePhysicalDeviceVulkan12Properties: return "PhysicalDeviceVulkan12Properties"; - case StructureType::eImageFormatListCreateInfo: return "ImageFormatListCreateInfo"; - case StructureType::eAttachmentDescription2: return "AttachmentDescription2"; - case StructureType::eAttachmentReference2: return "AttachmentReference2"; - case StructureType::eSubpassDescription2: return "SubpassDescription2"; - case StructureType::eSubpassDependency2: return "SubpassDependency2"; - case StructureType::eRenderPassCreateInfo2: return "RenderPassCreateInfo2"; - case StructureType::eSubpassBeginInfo: return "SubpassBeginInfo"; - case StructureType::eSubpassEndInfo: return "SubpassEndInfo"; - case StructureType::ePhysicalDevice8BitStorageFeatures: return "PhysicalDevice8BitStorageFeatures"; - case StructureType::ePhysicalDeviceDriverProperties: return "PhysicalDeviceDriverProperties"; - case StructureType::ePhysicalDeviceShaderAtomicInt64Features: return "PhysicalDeviceShaderAtomicInt64Features"; - case StructureType::ePhysicalDeviceShaderFloat16Int8Features: return "PhysicalDeviceShaderFloat16Int8Features"; - case StructureType::ePhysicalDeviceFloatControlsProperties: return "PhysicalDeviceFloatControlsProperties"; - case StructureType::eDescriptorSetLayoutBindingFlagsCreateInfo: - return "DescriptorSetLayoutBindingFlagsCreateInfo"; - case StructureType::ePhysicalDeviceDescriptorIndexingFeatures: return "PhysicalDeviceDescriptorIndexingFeatures"; - case StructureType::ePhysicalDeviceDescriptorIndexingProperties: - return "PhysicalDeviceDescriptorIndexingProperties"; - case StructureType::eDescriptorSetVariableDescriptorCountAllocateInfo: - return "DescriptorSetVariableDescriptorCountAllocateInfo"; - case StructureType::eDescriptorSetVariableDescriptorCountLayoutSupport: - return "DescriptorSetVariableDescriptorCountLayoutSupport"; - case StructureType::ePhysicalDeviceDepthStencilResolveProperties: - return "PhysicalDeviceDepthStencilResolveProperties"; - case StructureType::eSubpassDescriptionDepthStencilResolve: return "SubpassDescriptionDepthStencilResolve"; - case StructureType::ePhysicalDeviceScalarBlockLayoutFeatures: return "PhysicalDeviceScalarBlockLayoutFeatures"; - case StructureType::eImageStencilUsageCreateInfo: return "ImageStencilUsageCreateInfo"; - case StructureType::ePhysicalDeviceSamplerFilterMinmaxProperties: - return "PhysicalDeviceSamplerFilterMinmaxProperties"; - case StructureType::eSamplerReductionModeCreateInfo: return "SamplerReductionModeCreateInfo"; - case StructureType::ePhysicalDeviceVulkanMemoryModelFeatures: return "PhysicalDeviceVulkanMemoryModelFeatures"; - case StructureType::ePhysicalDeviceImagelessFramebufferFeatures: - return "PhysicalDeviceImagelessFramebufferFeatures"; - case StructureType::eFramebufferAttachmentsCreateInfo: return "FramebufferAttachmentsCreateInfo"; - case StructureType::eFramebufferAttachmentImageInfo: return "FramebufferAttachmentImageInfo"; - case StructureType::eRenderPassAttachmentBeginInfo: return "RenderPassAttachmentBeginInfo"; - case StructureType::ePhysicalDeviceUniformBufferStandardLayoutFeatures: - return "PhysicalDeviceUniformBufferStandardLayoutFeatures"; - case StructureType::ePhysicalDeviceShaderSubgroupExtendedTypesFeatures: - return "PhysicalDeviceShaderSubgroupExtendedTypesFeatures"; - case StructureType::ePhysicalDeviceSeparateDepthStencilLayoutsFeatures: - return "PhysicalDeviceSeparateDepthStencilLayoutsFeatures"; - case StructureType::eAttachmentReferenceStencilLayout: return "AttachmentReferenceStencilLayout"; - case StructureType::eAttachmentDescriptionStencilLayout: return "AttachmentDescriptionStencilLayout"; - case StructureType::ePhysicalDeviceHostQueryResetFeatures: return "PhysicalDeviceHostQueryResetFeatures"; - case StructureType::ePhysicalDeviceTimelineSemaphoreFeatures: return "PhysicalDeviceTimelineSemaphoreFeatures"; - case StructureType::ePhysicalDeviceTimelineSemaphoreProperties: - return "PhysicalDeviceTimelineSemaphoreProperties"; - case StructureType::eSemaphoreTypeCreateInfo: return "SemaphoreTypeCreateInfo"; - case StructureType::eTimelineSemaphoreSubmitInfo: return "TimelineSemaphoreSubmitInfo"; - case StructureType::eSemaphoreWaitInfo: return "SemaphoreWaitInfo"; - case StructureType::eSemaphoreSignalInfo: return "SemaphoreSignalInfo"; - case StructureType::ePhysicalDeviceBufferDeviceAddressFeatures: - return "PhysicalDeviceBufferDeviceAddressFeatures"; - case StructureType::eBufferDeviceAddressInfo: return "BufferDeviceAddressInfo"; - case StructureType::eBufferOpaqueCaptureAddressCreateInfo: return "BufferOpaqueCaptureAddressCreateInfo"; - case StructureType::eMemoryOpaqueCaptureAddressAllocateInfo: return "MemoryOpaqueCaptureAddressAllocateInfo"; - case StructureType::eDeviceMemoryOpaqueCaptureAddressInfo: return "DeviceMemoryOpaqueCaptureAddressInfo"; - case StructureType::ePhysicalDeviceVulkan13Features: return "PhysicalDeviceVulkan13Features"; - case StructureType::ePhysicalDeviceVulkan13Properties: return "PhysicalDeviceVulkan13Properties"; - case StructureType::ePipelineCreationFeedbackCreateInfo: return "PipelineCreationFeedbackCreateInfo"; - case StructureType::ePhysicalDeviceShaderTerminateInvocationFeatures: - return "PhysicalDeviceShaderTerminateInvocationFeatures"; - case StructureType::ePhysicalDeviceToolProperties: return "PhysicalDeviceToolProperties"; - case StructureType::ePhysicalDeviceShaderDemoteToHelperInvocationFeatures: - return "PhysicalDeviceShaderDemoteToHelperInvocationFeatures"; - case StructureType::ePhysicalDevicePrivateDataFeatures: return "PhysicalDevicePrivateDataFeatures"; - case StructureType::eDevicePrivateDataCreateInfo: return "DevicePrivateDataCreateInfo"; - case StructureType::ePrivateDataSlotCreateInfo: return "PrivateDataSlotCreateInfo"; - case StructureType::ePhysicalDevicePipelineCreationCacheControlFeatures: - return "PhysicalDevicePipelineCreationCacheControlFeatures"; - case StructureType::eMemoryBarrier2: return "MemoryBarrier2"; - case StructureType::eBufferMemoryBarrier2: return "BufferMemoryBarrier2"; - case StructureType::eImageMemoryBarrier2: return "ImageMemoryBarrier2"; - case StructureType::eDependencyInfo: return "DependencyInfo"; - case StructureType::eSubmitInfo2: return "SubmitInfo2"; - case StructureType::eSemaphoreSubmitInfo: return "SemaphoreSubmitInfo"; - case StructureType::eCommandBufferSubmitInfo: return "CommandBufferSubmitInfo"; - case StructureType::ePhysicalDeviceSynchronization2Features: return "PhysicalDeviceSynchronization2Features"; - case StructureType::ePhysicalDeviceZeroInitializeWorkgroupMemoryFeatures: - return "PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures"; - case StructureType::ePhysicalDeviceImageRobustnessFeatures: return "PhysicalDeviceImageRobustnessFeatures"; - case StructureType::eCopyBufferInfo2: return "CopyBufferInfo2"; - case StructureType::eCopyImageInfo2: return "CopyImageInfo2"; - case StructureType::eCopyBufferToImageInfo2: return "CopyBufferToImageInfo2"; - case StructureType::eCopyImageToBufferInfo2: return "CopyImageToBufferInfo2"; - case StructureType::eBlitImageInfo2: return "BlitImageInfo2"; - case StructureType::eResolveImageInfo2: return "ResolveImageInfo2"; - case StructureType::eBufferCopy2: return "BufferCopy2"; - case StructureType::eImageCopy2: return "ImageCopy2"; - case StructureType::eImageBlit2: return "ImageBlit2"; - case StructureType::eBufferImageCopy2: return "BufferImageCopy2"; - case StructureType::eImageResolve2: return "ImageResolve2"; - case StructureType::ePhysicalDeviceSubgroupSizeControlProperties: - return "PhysicalDeviceSubgroupSizeControlProperties"; - case StructureType::ePipelineShaderStageRequiredSubgroupSizeCreateInfo: - return "PipelineShaderStageRequiredSubgroupSizeCreateInfo"; - case StructureType::ePhysicalDeviceSubgroupSizeControlFeatures: - return "PhysicalDeviceSubgroupSizeControlFeatures"; - case StructureType::ePhysicalDeviceInlineUniformBlockFeatures: return "PhysicalDeviceInlineUniformBlockFeatures"; - case StructureType::ePhysicalDeviceInlineUniformBlockProperties: - return "PhysicalDeviceInlineUniformBlockProperties"; - case StructureType::eWriteDescriptorSetInlineUniformBlock: return "WriteDescriptorSetInlineUniformBlock"; - case StructureType::eDescriptorPoolInlineUniformBlockCreateInfo: - return "DescriptorPoolInlineUniformBlockCreateInfo"; - case StructureType::ePhysicalDeviceTextureCompressionAstcHdrFeatures: - return "PhysicalDeviceTextureCompressionAstcHdrFeatures"; - case StructureType::eRenderingInfo: return "RenderingInfo"; - case StructureType::eRenderingAttachmentInfo: return "RenderingAttachmentInfo"; - case StructureType::ePipelineRenderingCreateInfo: return "PipelineRenderingCreateInfo"; - case StructureType::ePhysicalDeviceDynamicRenderingFeatures: return "PhysicalDeviceDynamicRenderingFeatures"; - case StructureType::eCommandBufferInheritanceRenderingInfo: return "CommandBufferInheritanceRenderingInfo"; - case StructureType::ePhysicalDeviceShaderIntegerDotProductFeatures: - return "PhysicalDeviceShaderIntegerDotProductFeatures"; - case StructureType::ePhysicalDeviceShaderIntegerDotProductProperties: - return "PhysicalDeviceShaderIntegerDotProductProperties"; - case StructureType::ePhysicalDeviceTexelBufferAlignmentProperties: - return "PhysicalDeviceTexelBufferAlignmentProperties"; - case StructureType::eFormatProperties3: return "FormatProperties3"; - case StructureType::ePhysicalDeviceMaintenance4Features: return "PhysicalDeviceMaintenance4Features"; - case StructureType::ePhysicalDeviceMaintenance4Properties: return "PhysicalDeviceMaintenance4Properties"; - case StructureType::eDeviceBufferMemoryRequirements: return "DeviceBufferMemoryRequirements"; - case StructureType::eDeviceImageMemoryRequirements: return "DeviceImageMemoryRequirements"; - case StructureType::eSwapchainCreateInfoKHR: return "SwapchainCreateInfoKHR"; - case StructureType::ePresentInfoKHR: return "PresentInfoKHR"; - case StructureType::eDeviceGroupPresentCapabilitiesKHR: return "DeviceGroupPresentCapabilitiesKHR"; - case StructureType::eImageSwapchainCreateInfoKHR: return "ImageSwapchainCreateInfoKHR"; - case StructureType::eBindImageMemorySwapchainInfoKHR: return "BindImageMemorySwapchainInfoKHR"; - case StructureType::eAcquireNextImageInfoKHR: return "AcquireNextImageInfoKHR"; - case StructureType::eDeviceGroupPresentInfoKHR: return "DeviceGroupPresentInfoKHR"; - case StructureType::eDeviceGroupSwapchainCreateInfoKHR: return "DeviceGroupSwapchainCreateInfoKHR"; - case StructureType::eDisplayModeCreateInfoKHR: return "DisplayModeCreateInfoKHR"; - case StructureType::eDisplaySurfaceCreateInfoKHR: return "DisplaySurfaceCreateInfoKHR"; - case StructureType::eDisplayPresentInfoKHR: return "DisplayPresentInfoKHR"; -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - case StructureType::eXlibSurfaceCreateInfoKHR: return "XlibSurfaceCreateInfoKHR"; -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ -#if defined( VK_USE_PLATFORM_XCB_KHR ) - case StructureType::eXcbSurfaceCreateInfoKHR: return "XcbSurfaceCreateInfoKHR"; -#endif /*VK_USE_PLATFORM_XCB_KHR*/ -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - case StructureType::eWaylandSurfaceCreateInfoKHR: return "WaylandSurfaceCreateInfoKHR"; -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - case StructureType::eAndroidSurfaceCreateInfoKHR: return "AndroidSurfaceCreateInfoKHR"; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case StructureType::eWin32SurfaceCreateInfoKHR: return "Win32SurfaceCreateInfoKHR"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case StructureType::eDebugReportCallbackCreateInfoEXT: return "DebugReportCallbackCreateInfoEXT"; - case StructureType::ePipelineRasterizationStateRasterizationOrderAMD: - return "PipelineRasterizationStateRasterizationOrderAMD"; - case StructureType::eDebugMarkerObjectNameInfoEXT: return "DebugMarkerObjectNameInfoEXT"; - case StructureType::eDebugMarkerObjectTagInfoEXT: return "DebugMarkerObjectTagInfoEXT"; - case StructureType::eDebugMarkerMarkerInfoEXT: return "DebugMarkerMarkerInfoEXT"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case StructureType::eVideoProfileKHR: return "VideoProfileKHR"; - case StructureType::eVideoCapabilitiesKHR: return "VideoCapabilitiesKHR"; - case StructureType::eVideoPictureResourceKHR: return "VideoPictureResourceKHR"; - case StructureType::eVideoGetMemoryPropertiesKHR: return "VideoGetMemoryPropertiesKHR"; - case StructureType::eVideoBindMemoryKHR: return "VideoBindMemoryKHR"; - case StructureType::eVideoSessionCreateInfoKHR: return "VideoSessionCreateInfoKHR"; - case StructureType::eVideoSessionParametersCreateInfoKHR: return "VideoSessionParametersCreateInfoKHR"; - case StructureType::eVideoSessionParametersUpdateInfoKHR: return "VideoSessionParametersUpdateInfoKHR"; - case StructureType::eVideoBeginCodingInfoKHR: return "VideoBeginCodingInfoKHR"; - case StructureType::eVideoEndCodingInfoKHR: return "VideoEndCodingInfoKHR"; - case StructureType::eVideoCodingControlInfoKHR: return "VideoCodingControlInfoKHR"; - case StructureType::eVideoReferenceSlotKHR: return "VideoReferenceSlotKHR"; - case StructureType::eVideoQueueFamilyProperties2KHR: return "VideoQueueFamilyProperties2KHR"; - case StructureType::eVideoProfilesKHR: return "VideoProfilesKHR"; - case StructureType::ePhysicalDeviceVideoFormatInfoKHR: return "PhysicalDeviceVideoFormatInfoKHR"; - case StructureType::eVideoFormatPropertiesKHR: return "VideoFormatPropertiesKHR"; - case StructureType::eQueueFamilyQueryResultStatusProperties2KHR: - return "QueueFamilyQueryResultStatusProperties2KHR"; - case StructureType::eVideoDecodeInfoKHR: return "VideoDecodeInfoKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case StructureType::eDedicatedAllocationImageCreateInfoNV: return "DedicatedAllocationImageCreateInfoNV"; - case StructureType::eDedicatedAllocationBufferCreateInfoNV: return "DedicatedAllocationBufferCreateInfoNV"; - case StructureType::eDedicatedAllocationMemoryAllocateInfoNV: return "DedicatedAllocationMemoryAllocateInfoNV"; - case StructureType::ePhysicalDeviceTransformFeedbackFeaturesEXT: - return "PhysicalDeviceTransformFeedbackFeaturesEXT"; - case StructureType::ePhysicalDeviceTransformFeedbackPropertiesEXT: - return "PhysicalDeviceTransformFeedbackPropertiesEXT"; - case StructureType::ePipelineRasterizationStateStreamCreateInfoEXT: - return "PipelineRasterizationStateStreamCreateInfoEXT"; - case StructureType::eCuModuleCreateInfoNVX: return "CuModuleCreateInfoNVX"; - case StructureType::eCuFunctionCreateInfoNVX: return "CuFunctionCreateInfoNVX"; - case StructureType::eCuLaunchInfoNVX: return "CuLaunchInfoNVX"; - case StructureType::eImageViewHandleInfoNVX: return "ImageViewHandleInfoNVX"; - case StructureType::eImageViewAddressPropertiesNVX: return "ImageViewAddressPropertiesNVX"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case StructureType::eVideoEncodeH264CapabilitiesEXT: return "VideoEncodeH264CapabilitiesEXT"; - case StructureType::eVideoEncodeH264SessionCreateInfoEXT: return "VideoEncodeH264SessionCreateInfoEXT"; - case StructureType::eVideoEncodeH264SessionParametersCreateInfoEXT: - return "VideoEncodeH264SessionParametersCreateInfoEXT"; - case StructureType::eVideoEncodeH264SessionParametersAddInfoEXT: - return "VideoEncodeH264SessionParametersAddInfoEXT"; - case StructureType::eVideoEncodeH264VclFrameInfoEXT: return "VideoEncodeH264VclFrameInfoEXT"; - case StructureType::eVideoEncodeH264DpbSlotInfoEXT: return "VideoEncodeH264DpbSlotInfoEXT"; - case StructureType::eVideoEncodeH264NaluSliceEXT: return "VideoEncodeH264NaluSliceEXT"; - case StructureType::eVideoEncodeH264EmitPictureParametersEXT: return "VideoEncodeH264EmitPictureParametersEXT"; - case StructureType::eVideoEncodeH264ProfileEXT: return "VideoEncodeH264ProfileEXT"; - case StructureType::eVideoEncodeH264RateControlInfoEXT: return "VideoEncodeH264RateControlInfoEXT"; - case StructureType::eVideoEncodeH264RateControlLayerInfoEXT: return "VideoEncodeH264RateControlLayerInfoEXT"; - case StructureType::eVideoEncodeH265CapabilitiesEXT: return "VideoEncodeH265CapabilitiesEXT"; - case StructureType::eVideoEncodeH265SessionCreateInfoEXT: return "VideoEncodeH265SessionCreateInfoEXT"; - case StructureType::eVideoEncodeH265SessionParametersCreateInfoEXT: - return "VideoEncodeH265SessionParametersCreateInfoEXT"; - case StructureType::eVideoEncodeH265SessionParametersAddInfoEXT: - return "VideoEncodeH265SessionParametersAddInfoEXT"; - case StructureType::eVideoEncodeH265VclFrameInfoEXT: return "VideoEncodeH265VclFrameInfoEXT"; - case StructureType::eVideoEncodeH265DpbSlotInfoEXT: return "VideoEncodeH265DpbSlotInfoEXT"; - case StructureType::eVideoEncodeH265NaluSliceEXT: return "VideoEncodeH265NaluSliceEXT"; - case StructureType::eVideoEncodeH265EmitPictureParametersEXT: return "VideoEncodeH265EmitPictureParametersEXT"; - case StructureType::eVideoEncodeH265ProfileEXT: return "VideoEncodeH265ProfileEXT"; - case StructureType::eVideoEncodeH265ReferenceListsEXT: return "VideoEncodeH265ReferenceListsEXT"; - case StructureType::eVideoEncodeH265RateControlInfoEXT: return "VideoEncodeH265RateControlInfoEXT"; - case StructureType::eVideoEncodeH265RateControlLayerInfoEXT: return "VideoEncodeH265RateControlLayerInfoEXT"; - case StructureType::eVideoDecodeH264CapabilitiesEXT: return "VideoDecodeH264CapabilitiesEXT"; - case StructureType::eVideoDecodeH264SessionCreateInfoEXT: return "VideoDecodeH264SessionCreateInfoEXT"; - case StructureType::eVideoDecodeH264PictureInfoEXT: return "VideoDecodeH264PictureInfoEXT"; - case StructureType::eVideoDecodeH264MvcEXT: return "VideoDecodeH264MvcEXT"; - case StructureType::eVideoDecodeH264ProfileEXT: return "VideoDecodeH264ProfileEXT"; - case StructureType::eVideoDecodeH264SessionParametersCreateInfoEXT: - return "VideoDecodeH264SessionParametersCreateInfoEXT"; - case StructureType::eVideoDecodeH264SessionParametersAddInfoEXT: - return "VideoDecodeH264SessionParametersAddInfoEXT"; - case StructureType::eVideoDecodeH264DpbSlotInfoEXT: return "VideoDecodeH264DpbSlotInfoEXT"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case StructureType::eTextureLodGatherFormatPropertiesAMD: return "TextureLodGatherFormatPropertiesAMD"; - case StructureType::eRenderingFragmentShadingRateAttachmentInfoKHR: - return "RenderingFragmentShadingRateAttachmentInfoKHR"; - case StructureType::eRenderingFragmentDensityMapAttachmentInfoEXT: - return "RenderingFragmentDensityMapAttachmentInfoEXT"; - case StructureType::eAttachmentSampleCountInfoAMD: return "AttachmentSampleCountInfoAMD"; - case StructureType::eMultiviewPerViewAttributesInfoNVX: return "MultiviewPerViewAttributesInfoNVX"; -#if defined( VK_USE_PLATFORM_GGP ) - case StructureType::eStreamDescriptorSurfaceCreateInfoGGP: return "StreamDescriptorSurfaceCreateInfoGGP"; -#endif /*VK_USE_PLATFORM_GGP*/ - case StructureType::ePhysicalDeviceCornerSampledImageFeaturesNV: - return "PhysicalDeviceCornerSampledImageFeaturesNV"; - case StructureType::eExternalMemoryImageCreateInfoNV: return "ExternalMemoryImageCreateInfoNV"; - case StructureType::eExportMemoryAllocateInfoNV: return "ExportMemoryAllocateInfoNV"; -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case StructureType::eImportMemoryWin32HandleInfoNV: return "ImportMemoryWin32HandleInfoNV"; - case StructureType::eExportMemoryWin32HandleInfoNV: return "ExportMemoryWin32HandleInfoNV"; - case StructureType::eWin32KeyedMutexAcquireReleaseInfoNV: return "Win32KeyedMutexAcquireReleaseInfoNV"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case StructureType::eValidationFlagsEXT: return "ValidationFlagsEXT"; -#if defined( VK_USE_PLATFORM_VI_NN ) - case StructureType::eViSurfaceCreateInfoNN: return "ViSurfaceCreateInfoNN"; -#endif /*VK_USE_PLATFORM_VI_NN*/ - case StructureType::eImageViewAstcDecodeModeEXT: return "ImageViewAstcDecodeModeEXT"; - case StructureType::ePhysicalDeviceAstcDecodeFeaturesEXT: return "PhysicalDeviceAstcDecodeFeaturesEXT"; -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case StructureType::eImportMemoryWin32HandleInfoKHR: return "ImportMemoryWin32HandleInfoKHR"; - case StructureType::eExportMemoryWin32HandleInfoKHR: return "ExportMemoryWin32HandleInfoKHR"; - case StructureType::eMemoryWin32HandlePropertiesKHR: return "MemoryWin32HandlePropertiesKHR"; - case StructureType::eMemoryGetWin32HandleInfoKHR: return "MemoryGetWin32HandleInfoKHR"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case StructureType::eImportMemoryFdInfoKHR: return "ImportMemoryFdInfoKHR"; - case StructureType::eMemoryFdPropertiesKHR: return "MemoryFdPropertiesKHR"; - case StructureType::eMemoryGetFdInfoKHR: return "MemoryGetFdInfoKHR"; -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case StructureType::eWin32KeyedMutexAcquireReleaseInfoKHR: return "Win32KeyedMutexAcquireReleaseInfoKHR"; - case StructureType::eImportSemaphoreWin32HandleInfoKHR: return "ImportSemaphoreWin32HandleInfoKHR"; - case StructureType::eExportSemaphoreWin32HandleInfoKHR: return "ExportSemaphoreWin32HandleInfoKHR"; - case StructureType::eD3D12FenceSubmitInfoKHR: return "D3D12FenceSubmitInfoKHR"; - case StructureType::eSemaphoreGetWin32HandleInfoKHR: return "SemaphoreGetWin32HandleInfoKHR"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case StructureType::eImportSemaphoreFdInfoKHR: return "ImportSemaphoreFdInfoKHR"; - case StructureType::eSemaphoreGetFdInfoKHR: return "SemaphoreGetFdInfoKHR"; - case StructureType::ePhysicalDevicePushDescriptorPropertiesKHR: - return "PhysicalDevicePushDescriptorPropertiesKHR"; - case StructureType::eCommandBufferInheritanceConditionalRenderingInfoEXT: - return "CommandBufferInheritanceConditionalRenderingInfoEXT"; - case StructureType::ePhysicalDeviceConditionalRenderingFeaturesEXT: - return "PhysicalDeviceConditionalRenderingFeaturesEXT"; - case StructureType::eConditionalRenderingBeginInfoEXT: return "ConditionalRenderingBeginInfoEXT"; - case StructureType::ePresentRegionsKHR: return "PresentRegionsKHR"; - case StructureType::ePipelineViewportWScalingStateCreateInfoNV: - return "PipelineViewportWScalingStateCreateInfoNV"; - case StructureType::eSurfaceCapabilities2EXT: return "SurfaceCapabilities2EXT"; - case StructureType::eDisplayPowerInfoEXT: return "DisplayPowerInfoEXT"; - case StructureType::eDeviceEventInfoEXT: return "DeviceEventInfoEXT"; - case StructureType::eDisplayEventInfoEXT: return "DisplayEventInfoEXT"; - case StructureType::eSwapchainCounterCreateInfoEXT: return "SwapchainCounterCreateInfoEXT"; - case StructureType::ePresentTimesInfoGOOGLE: return "PresentTimesInfoGOOGLE"; - case StructureType::ePhysicalDeviceMultiviewPerViewAttributesPropertiesNVX: - return "PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX"; - case StructureType::ePipelineViewportSwizzleStateCreateInfoNV: return "PipelineViewportSwizzleStateCreateInfoNV"; - case StructureType::ePhysicalDeviceDiscardRectanglePropertiesEXT: - return "PhysicalDeviceDiscardRectanglePropertiesEXT"; - case StructureType::ePipelineDiscardRectangleStateCreateInfoEXT: - return "PipelineDiscardRectangleStateCreateInfoEXT"; - case StructureType::ePhysicalDeviceConservativeRasterizationPropertiesEXT: - return "PhysicalDeviceConservativeRasterizationPropertiesEXT"; - case StructureType::ePipelineRasterizationConservativeStateCreateInfoEXT: - return "PipelineRasterizationConservativeStateCreateInfoEXT"; - case StructureType::ePhysicalDeviceDepthClipEnableFeaturesEXT: return "PhysicalDeviceDepthClipEnableFeaturesEXT"; - case StructureType::ePipelineRasterizationDepthClipStateCreateInfoEXT: - return "PipelineRasterizationDepthClipStateCreateInfoEXT"; - case StructureType::eHdrMetadataEXT: return "HdrMetadataEXT"; - case StructureType::eSharedPresentSurfaceCapabilitiesKHR: return "SharedPresentSurfaceCapabilitiesKHR"; -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case StructureType::eImportFenceWin32HandleInfoKHR: return "ImportFenceWin32HandleInfoKHR"; - case StructureType::eExportFenceWin32HandleInfoKHR: return "ExportFenceWin32HandleInfoKHR"; - case StructureType::eFenceGetWin32HandleInfoKHR: return "FenceGetWin32HandleInfoKHR"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case StructureType::eImportFenceFdInfoKHR: return "ImportFenceFdInfoKHR"; - case StructureType::eFenceGetFdInfoKHR: return "FenceGetFdInfoKHR"; - case StructureType::ePhysicalDevicePerformanceQueryFeaturesKHR: - return "PhysicalDevicePerformanceQueryFeaturesKHR"; - case StructureType::ePhysicalDevicePerformanceQueryPropertiesKHR: - return "PhysicalDevicePerformanceQueryPropertiesKHR"; - case StructureType::eQueryPoolPerformanceCreateInfoKHR: return "QueryPoolPerformanceCreateInfoKHR"; - case StructureType::ePerformanceQuerySubmitInfoKHR: return "PerformanceQuerySubmitInfoKHR"; - case StructureType::eAcquireProfilingLockInfoKHR: return "AcquireProfilingLockInfoKHR"; - case StructureType::ePerformanceCounterKHR: return "PerformanceCounterKHR"; - case StructureType::ePerformanceCounterDescriptionKHR: return "PerformanceCounterDescriptionKHR"; - case StructureType::ePhysicalDeviceSurfaceInfo2KHR: return "PhysicalDeviceSurfaceInfo2KHR"; - case StructureType::eSurfaceCapabilities2KHR: return "SurfaceCapabilities2KHR"; - case StructureType::eSurfaceFormat2KHR: return "SurfaceFormat2KHR"; - case StructureType::eDisplayProperties2KHR: return "DisplayProperties2KHR"; - case StructureType::eDisplayPlaneProperties2KHR: return "DisplayPlaneProperties2KHR"; - case StructureType::eDisplayModeProperties2KHR: return "DisplayModeProperties2KHR"; - case StructureType::eDisplayPlaneInfo2KHR: return "DisplayPlaneInfo2KHR"; - case StructureType::eDisplayPlaneCapabilities2KHR: return "DisplayPlaneCapabilities2KHR"; -#if defined( VK_USE_PLATFORM_IOS_MVK ) - case StructureType::eIosSurfaceCreateInfoMVK: return "IosSurfaceCreateInfoMVK"; -#endif /*VK_USE_PLATFORM_IOS_MVK*/ -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - case StructureType::eMacosSurfaceCreateInfoMVK: return "MacosSurfaceCreateInfoMVK"; -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - case StructureType::eDebugUtilsObjectNameInfoEXT: return "DebugUtilsObjectNameInfoEXT"; - case StructureType::eDebugUtilsObjectTagInfoEXT: return "DebugUtilsObjectTagInfoEXT"; - case StructureType::eDebugUtilsLabelEXT: return "DebugUtilsLabelEXT"; - case StructureType::eDebugUtilsMessengerCallbackDataEXT: return "DebugUtilsMessengerCallbackDataEXT"; - case StructureType::eDebugUtilsMessengerCreateInfoEXT: return "DebugUtilsMessengerCreateInfoEXT"; -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - case StructureType::eAndroidHardwareBufferUsageANDROID: return "AndroidHardwareBufferUsageANDROID"; - case StructureType::eAndroidHardwareBufferPropertiesANDROID: return "AndroidHardwareBufferPropertiesANDROID"; - case StructureType::eAndroidHardwareBufferFormatPropertiesANDROID: - return "AndroidHardwareBufferFormatPropertiesANDROID"; - case StructureType::eImportAndroidHardwareBufferInfoANDROID: return "ImportAndroidHardwareBufferInfoANDROID"; - case StructureType::eMemoryGetAndroidHardwareBufferInfoANDROID: - return "MemoryGetAndroidHardwareBufferInfoANDROID"; - case StructureType::eExternalFormatANDROID: return "ExternalFormatANDROID"; - case StructureType::eAndroidHardwareBufferFormatProperties2ANDROID: - return "AndroidHardwareBufferFormatProperties2ANDROID"; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - case StructureType::eSampleLocationsInfoEXT: return "SampleLocationsInfoEXT"; - case StructureType::eRenderPassSampleLocationsBeginInfoEXT: return "RenderPassSampleLocationsBeginInfoEXT"; - case StructureType::ePipelineSampleLocationsStateCreateInfoEXT: - return "PipelineSampleLocationsStateCreateInfoEXT"; - case StructureType::ePhysicalDeviceSampleLocationsPropertiesEXT: - return "PhysicalDeviceSampleLocationsPropertiesEXT"; - case StructureType::eMultisamplePropertiesEXT: return "MultisamplePropertiesEXT"; - case StructureType::ePhysicalDeviceBlendOperationAdvancedFeaturesEXT: - return "PhysicalDeviceBlendOperationAdvancedFeaturesEXT"; - case StructureType::ePhysicalDeviceBlendOperationAdvancedPropertiesEXT: - return "PhysicalDeviceBlendOperationAdvancedPropertiesEXT"; - case StructureType::ePipelineColorBlendAdvancedStateCreateInfoEXT: - return "PipelineColorBlendAdvancedStateCreateInfoEXT"; - case StructureType::ePipelineCoverageToColorStateCreateInfoNV: return "PipelineCoverageToColorStateCreateInfoNV"; - case StructureType::eWriteDescriptorSetAccelerationStructureKHR: - return "WriteDescriptorSetAccelerationStructureKHR"; - case StructureType::eAccelerationStructureBuildGeometryInfoKHR: - return "AccelerationStructureBuildGeometryInfoKHR"; - case StructureType::eAccelerationStructureDeviceAddressInfoKHR: - return "AccelerationStructureDeviceAddressInfoKHR"; - case StructureType::eAccelerationStructureGeometryAabbsDataKHR: - return "AccelerationStructureGeometryAabbsDataKHR"; - case StructureType::eAccelerationStructureGeometryInstancesDataKHR: - return "AccelerationStructureGeometryInstancesDataKHR"; - case StructureType::eAccelerationStructureGeometryTrianglesDataKHR: - return "AccelerationStructureGeometryTrianglesDataKHR"; - case StructureType::eAccelerationStructureGeometryKHR: return "AccelerationStructureGeometryKHR"; - case StructureType::eAccelerationStructureVersionInfoKHR: return "AccelerationStructureVersionInfoKHR"; - case StructureType::eCopyAccelerationStructureInfoKHR: return "CopyAccelerationStructureInfoKHR"; - case StructureType::eCopyAccelerationStructureToMemoryInfoKHR: return "CopyAccelerationStructureToMemoryInfoKHR"; - case StructureType::eCopyMemoryToAccelerationStructureInfoKHR: return "CopyMemoryToAccelerationStructureInfoKHR"; - case StructureType::ePhysicalDeviceAccelerationStructureFeaturesKHR: - return "PhysicalDeviceAccelerationStructureFeaturesKHR"; - case StructureType::ePhysicalDeviceAccelerationStructurePropertiesKHR: - return "PhysicalDeviceAccelerationStructurePropertiesKHR"; - case StructureType::eAccelerationStructureCreateInfoKHR: return "AccelerationStructureCreateInfoKHR"; - case StructureType::eAccelerationStructureBuildSizesInfoKHR: return "AccelerationStructureBuildSizesInfoKHR"; - case StructureType::ePhysicalDeviceRayTracingPipelineFeaturesKHR: - return "PhysicalDeviceRayTracingPipelineFeaturesKHR"; - case StructureType::ePhysicalDeviceRayTracingPipelinePropertiesKHR: - return "PhysicalDeviceRayTracingPipelinePropertiesKHR"; - case StructureType::eRayTracingPipelineCreateInfoKHR: return "RayTracingPipelineCreateInfoKHR"; - case StructureType::eRayTracingShaderGroupCreateInfoKHR: return "RayTracingShaderGroupCreateInfoKHR"; - case StructureType::eRayTracingPipelineInterfaceCreateInfoKHR: return "RayTracingPipelineInterfaceCreateInfoKHR"; - case StructureType::ePhysicalDeviceRayQueryFeaturesKHR: return "PhysicalDeviceRayQueryFeaturesKHR"; - case StructureType::ePipelineCoverageModulationStateCreateInfoNV: - return "PipelineCoverageModulationStateCreateInfoNV"; - case StructureType::ePhysicalDeviceShaderSmBuiltinsFeaturesNV: return "PhysicalDeviceShaderSmBuiltinsFeaturesNV"; - case StructureType::ePhysicalDeviceShaderSmBuiltinsPropertiesNV: - return "PhysicalDeviceShaderSmBuiltinsPropertiesNV"; - case StructureType::eDrmFormatModifierPropertiesListEXT: return "DrmFormatModifierPropertiesListEXT"; - case StructureType::ePhysicalDeviceImageDrmFormatModifierInfoEXT: - return "PhysicalDeviceImageDrmFormatModifierInfoEXT"; - case StructureType::eImageDrmFormatModifierListCreateInfoEXT: return "ImageDrmFormatModifierListCreateInfoEXT"; - case StructureType::eImageDrmFormatModifierExplicitCreateInfoEXT: - return "ImageDrmFormatModifierExplicitCreateInfoEXT"; - case StructureType::eImageDrmFormatModifierPropertiesEXT: return "ImageDrmFormatModifierPropertiesEXT"; - case StructureType::eDrmFormatModifierPropertiesList2EXT: return "DrmFormatModifierPropertiesList2EXT"; - case StructureType::eValidationCacheCreateInfoEXT: return "ValidationCacheCreateInfoEXT"; - case StructureType::eShaderModuleValidationCacheCreateInfoEXT: return "ShaderModuleValidationCacheCreateInfoEXT"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case StructureType::ePhysicalDevicePortabilitySubsetFeaturesKHR: - return "PhysicalDevicePortabilitySubsetFeaturesKHR"; - case StructureType::ePhysicalDevicePortabilitySubsetPropertiesKHR: - return "PhysicalDevicePortabilitySubsetPropertiesKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case StructureType::ePipelineViewportShadingRateImageStateCreateInfoNV: - return "PipelineViewportShadingRateImageStateCreateInfoNV"; - case StructureType::ePhysicalDeviceShadingRateImageFeaturesNV: return "PhysicalDeviceShadingRateImageFeaturesNV"; - case StructureType::ePhysicalDeviceShadingRateImagePropertiesNV: - return "PhysicalDeviceShadingRateImagePropertiesNV"; - case StructureType::ePipelineViewportCoarseSampleOrderStateCreateInfoNV: - return "PipelineViewportCoarseSampleOrderStateCreateInfoNV"; - case StructureType::eRayTracingPipelineCreateInfoNV: return "RayTracingPipelineCreateInfoNV"; - case StructureType::eAccelerationStructureCreateInfoNV: return "AccelerationStructureCreateInfoNV"; - case StructureType::eGeometryNV: return "GeometryNV"; - case StructureType::eGeometryTrianglesNV: return "GeometryTrianglesNV"; - case StructureType::eGeometryAabbNV: return "GeometryAabbNV"; - case StructureType::eBindAccelerationStructureMemoryInfoNV: return "BindAccelerationStructureMemoryInfoNV"; - case StructureType::eWriteDescriptorSetAccelerationStructureNV: - return "WriteDescriptorSetAccelerationStructureNV"; - case StructureType::eAccelerationStructureMemoryRequirementsInfoNV: - return "AccelerationStructureMemoryRequirementsInfoNV"; - case StructureType::ePhysicalDeviceRayTracingPropertiesNV: return "PhysicalDeviceRayTracingPropertiesNV"; - case StructureType::eRayTracingShaderGroupCreateInfoNV: return "RayTracingShaderGroupCreateInfoNV"; - case StructureType::eAccelerationStructureInfoNV: return "AccelerationStructureInfoNV"; - case StructureType::ePhysicalDeviceRepresentativeFragmentTestFeaturesNV: - return "PhysicalDeviceRepresentativeFragmentTestFeaturesNV"; - case StructureType::ePipelineRepresentativeFragmentTestStateCreateInfoNV: - return "PipelineRepresentativeFragmentTestStateCreateInfoNV"; - case StructureType::ePhysicalDeviceImageViewImageFormatInfoEXT: - return "PhysicalDeviceImageViewImageFormatInfoEXT"; - case StructureType::eFilterCubicImageViewImageFormatPropertiesEXT: - return "FilterCubicImageViewImageFormatPropertiesEXT"; - case StructureType::eImportMemoryHostPointerInfoEXT: return "ImportMemoryHostPointerInfoEXT"; - case StructureType::eMemoryHostPointerPropertiesEXT: return "MemoryHostPointerPropertiesEXT"; - case StructureType::ePhysicalDeviceExternalMemoryHostPropertiesEXT: - return "PhysicalDeviceExternalMemoryHostPropertiesEXT"; - case StructureType::ePhysicalDeviceShaderClockFeaturesKHR: return "PhysicalDeviceShaderClockFeaturesKHR"; - case StructureType::ePipelineCompilerControlCreateInfoAMD: return "PipelineCompilerControlCreateInfoAMD"; - case StructureType::eCalibratedTimestampInfoEXT: return "CalibratedTimestampInfoEXT"; - case StructureType::ePhysicalDeviceShaderCorePropertiesAMD: return "PhysicalDeviceShaderCorePropertiesAMD"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case StructureType::eVideoDecodeH265CapabilitiesEXT: return "VideoDecodeH265CapabilitiesEXT"; - case StructureType::eVideoDecodeH265SessionCreateInfoEXT: return "VideoDecodeH265SessionCreateInfoEXT"; - case StructureType::eVideoDecodeH265SessionParametersCreateInfoEXT: - return "VideoDecodeH265SessionParametersCreateInfoEXT"; - case StructureType::eVideoDecodeH265SessionParametersAddInfoEXT: - return "VideoDecodeH265SessionParametersAddInfoEXT"; - case StructureType::eVideoDecodeH265ProfileEXT: return "VideoDecodeH265ProfileEXT"; - case StructureType::eVideoDecodeH265PictureInfoEXT: return "VideoDecodeH265PictureInfoEXT"; - case StructureType::eVideoDecodeH265DpbSlotInfoEXT: return "VideoDecodeH265DpbSlotInfoEXT"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case StructureType::eDeviceQueueGlobalPriorityCreateInfoKHR: return "DeviceQueueGlobalPriorityCreateInfoKHR"; - case StructureType::ePhysicalDeviceGlobalPriorityQueryFeaturesKHR: - return "PhysicalDeviceGlobalPriorityQueryFeaturesKHR"; - case StructureType::eQueueFamilyGlobalPriorityPropertiesKHR: return "QueueFamilyGlobalPriorityPropertiesKHR"; - case StructureType::eDeviceMemoryOverallocationCreateInfoAMD: return "DeviceMemoryOverallocationCreateInfoAMD"; - case StructureType::ePhysicalDeviceVertexAttributeDivisorPropertiesEXT: - return "PhysicalDeviceVertexAttributeDivisorPropertiesEXT"; - case StructureType::ePipelineVertexInputDivisorStateCreateInfoEXT: - return "PipelineVertexInputDivisorStateCreateInfoEXT"; - case StructureType::ePhysicalDeviceVertexAttributeDivisorFeaturesEXT: - return "PhysicalDeviceVertexAttributeDivisorFeaturesEXT"; -#if defined( VK_USE_PLATFORM_GGP ) - case StructureType::ePresentFrameTokenGGP: return "PresentFrameTokenGGP"; -#endif /*VK_USE_PLATFORM_GGP*/ - case StructureType::ePhysicalDeviceComputeShaderDerivativesFeaturesNV: - return "PhysicalDeviceComputeShaderDerivativesFeaturesNV"; - case StructureType::ePhysicalDeviceMeshShaderFeaturesNV: return "PhysicalDeviceMeshShaderFeaturesNV"; - case StructureType::ePhysicalDeviceMeshShaderPropertiesNV: return "PhysicalDeviceMeshShaderPropertiesNV"; - case StructureType::ePhysicalDeviceFragmentShaderBarycentricFeaturesNV: - return "PhysicalDeviceFragmentShaderBarycentricFeaturesNV"; - case StructureType::ePhysicalDeviceShaderImageFootprintFeaturesNV: - return "PhysicalDeviceShaderImageFootprintFeaturesNV"; - case StructureType::ePipelineViewportExclusiveScissorStateCreateInfoNV: - return "PipelineViewportExclusiveScissorStateCreateInfoNV"; - case StructureType::ePhysicalDeviceExclusiveScissorFeaturesNV: return "PhysicalDeviceExclusiveScissorFeaturesNV"; - case StructureType::eCheckpointDataNV: return "CheckpointDataNV"; - case StructureType::eQueueFamilyCheckpointPropertiesNV: return "QueueFamilyCheckpointPropertiesNV"; - case StructureType::ePhysicalDeviceShaderIntegerFunctions2FeaturesINTEL: - return "PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL"; - case StructureType::eQueryPoolPerformanceQueryCreateInfoINTEL: return "QueryPoolPerformanceQueryCreateInfoINTEL"; - case StructureType::eInitializePerformanceApiInfoINTEL: return "InitializePerformanceApiInfoINTEL"; - case StructureType::ePerformanceMarkerInfoINTEL: return "PerformanceMarkerInfoINTEL"; - case StructureType::ePerformanceStreamMarkerInfoINTEL: return "PerformanceStreamMarkerInfoINTEL"; - case StructureType::ePerformanceOverrideInfoINTEL: return "PerformanceOverrideInfoINTEL"; - case StructureType::ePerformanceConfigurationAcquireInfoINTEL: return "PerformanceConfigurationAcquireInfoINTEL"; - case StructureType::ePhysicalDevicePciBusInfoPropertiesEXT: return "PhysicalDevicePciBusInfoPropertiesEXT"; - case StructureType::eDisplayNativeHdrSurfaceCapabilitiesAMD: return "DisplayNativeHdrSurfaceCapabilitiesAMD"; - case StructureType::eSwapchainDisplayNativeHdrCreateInfoAMD: return "SwapchainDisplayNativeHdrCreateInfoAMD"; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - case StructureType::eImagepipeSurfaceCreateInfoFUCHSIA: return "ImagepipeSurfaceCreateInfoFUCHSIA"; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ -#if defined( VK_USE_PLATFORM_METAL_EXT ) - case StructureType::eMetalSurfaceCreateInfoEXT: return "MetalSurfaceCreateInfoEXT"; -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - case StructureType::ePhysicalDeviceFragmentDensityMapFeaturesEXT: - return "PhysicalDeviceFragmentDensityMapFeaturesEXT"; - case StructureType::ePhysicalDeviceFragmentDensityMapPropertiesEXT: - return "PhysicalDeviceFragmentDensityMapPropertiesEXT"; - case StructureType::eRenderPassFragmentDensityMapCreateInfoEXT: - return "RenderPassFragmentDensityMapCreateInfoEXT"; - case StructureType::eFragmentShadingRateAttachmentInfoKHR: return "FragmentShadingRateAttachmentInfoKHR"; - case StructureType::ePipelineFragmentShadingRateStateCreateInfoKHR: - return "PipelineFragmentShadingRateStateCreateInfoKHR"; - case StructureType::ePhysicalDeviceFragmentShadingRatePropertiesKHR: - return "PhysicalDeviceFragmentShadingRatePropertiesKHR"; - case StructureType::ePhysicalDeviceFragmentShadingRateFeaturesKHR: - return "PhysicalDeviceFragmentShadingRateFeaturesKHR"; - case StructureType::ePhysicalDeviceFragmentShadingRateKHR: return "PhysicalDeviceFragmentShadingRateKHR"; - case StructureType::ePhysicalDeviceShaderCoreProperties2AMD: return "PhysicalDeviceShaderCoreProperties2AMD"; - case StructureType::ePhysicalDeviceCoherentMemoryFeaturesAMD: return "PhysicalDeviceCoherentMemoryFeaturesAMD"; - case StructureType::ePhysicalDeviceShaderImageAtomicInt64FeaturesEXT: - return "PhysicalDeviceShaderImageAtomicInt64FeaturesEXT"; - case StructureType::ePhysicalDeviceMemoryBudgetPropertiesEXT: return "PhysicalDeviceMemoryBudgetPropertiesEXT"; - case StructureType::ePhysicalDeviceMemoryPriorityFeaturesEXT: return "PhysicalDeviceMemoryPriorityFeaturesEXT"; - case StructureType::eMemoryPriorityAllocateInfoEXT: return "MemoryPriorityAllocateInfoEXT"; - case StructureType::eSurfaceProtectedCapabilitiesKHR: return "SurfaceProtectedCapabilitiesKHR"; - case StructureType::ePhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV: - return "PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV"; - case StructureType::ePhysicalDeviceBufferDeviceAddressFeaturesEXT: - return "PhysicalDeviceBufferDeviceAddressFeaturesEXT"; - case StructureType::eBufferDeviceAddressCreateInfoEXT: return "BufferDeviceAddressCreateInfoEXT"; - case StructureType::eValidationFeaturesEXT: return "ValidationFeaturesEXT"; - case StructureType::ePhysicalDevicePresentWaitFeaturesKHR: return "PhysicalDevicePresentWaitFeaturesKHR"; - case StructureType::ePhysicalDeviceCooperativeMatrixFeaturesNV: - return "PhysicalDeviceCooperativeMatrixFeaturesNV"; - case StructureType::eCooperativeMatrixPropertiesNV: return "CooperativeMatrixPropertiesNV"; - case StructureType::ePhysicalDeviceCooperativeMatrixPropertiesNV: - return "PhysicalDeviceCooperativeMatrixPropertiesNV"; - case StructureType::ePhysicalDeviceCoverageReductionModeFeaturesNV: - return "PhysicalDeviceCoverageReductionModeFeaturesNV"; - case StructureType::ePipelineCoverageReductionStateCreateInfoNV: - return "PipelineCoverageReductionStateCreateInfoNV"; - case StructureType::eFramebufferMixedSamplesCombinationNV: return "FramebufferMixedSamplesCombinationNV"; - case StructureType::ePhysicalDeviceFragmentShaderInterlockFeaturesEXT: - return "PhysicalDeviceFragmentShaderInterlockFeaturesEXT"; - case StructureType::ePhysicalDeviceYcbcrImageArraysFeaturesEXT: - return "PhysicalDeviceYcbcrImageArraysFeaturesEXT"; - case StructureType::ePhysicalDeviceProvokingVertexFeaturesEXT: return "PhysicalDeviceProvokingVertexFeaturesEXT"; - case StructureType::ePipelineRasterizationProvokingVertexStateCreateInfoEXT: - return "PipelineRasterizationProvokingVertexStateCreateInfoEXT"; - case StructureType::ePhysicalDeviceProvokingVertexPropertiesEXT: - return "PhysicalDeviceProvokingVertexPropertiesEXT"; -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - case StructureType::eSurfaceFullScreenExclusiveInfoEXT: return "SurfaceFullScreenExclusiveInfoEXT"; - case StructureType::eSurfaceCapabilitiesFullScreenExclusiveEXT: - return "SurfaceCapabilitiesFullScreenExclusiveEXT"; - case StructureType::eSurfaceFullScreenExclusiveWin32InfoEXT: return "SurfaceFullScreenExclusiveWin32InfoEXT"; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - case StructureType::eHeadlessSurfaceCreateInfoEXT: return "HeadlessSurfaceCreateInfoEXT"; - case StructureType::ePhysicalDeviceLineRasterizationFeaturesEXT: - return "PhysicalDeviceLineRasterizationFeaturesEXT"; - case StructureType::ePipelineRasterizationLineStateCreateInfoEXT: - return "PipelineRasterizationLineStateCreateInfoEXT"; - case StructureType::ePhysicalDeviceLineRasterizationPropertiesEXT: - return "PhysicalDeviceLineRasterizationPropertiesEXT"; - case StructureType::ePhysicalDeviceShaderAtomicFloatFeaturesEXT: - return "PhysicalDeviceShaderAtomicFloatFeaturesEXT"; - case StructureType::ePhysicalDeviceIndexTypeUint8FeaturesEXT: return "PhysicalDeviceIndexTypeUint8FeaturesEXT"; - case StructureType::ePhysicalDeviceExtendedDynamicStateFeaturesEXT: - return "PhysicalDeviceExtendedDynamicStateFeaturesEXT"; - case StructureType::ePhysicalDevicePipelineExecutablePropertiesFeaturesKHR: - return "PhysicalDevicePipelineExecutablePropertiesFeaturesKHR"; - case StructureType::ePipelineInfoKHR: return "PipelineInfoKHR"; - case StructureType::ePipelineExecutablePropertiesKHR: return "PipelineExecutablePropertiesKHR"; - case StructureType::ePipelineExecutableInfoKHR: return "PipelineExecutableInfoKHR"; - case StructureType::ePipelineExecutableStatisticKHR: return "PipelineExecutableStatisticKHR"; - case StructureType::ePipelineExecutableInternalRepresentationKHR: - return "PipelineExecutableInternalRepresentationKHR"; - case StructureType::ePhysicalDeviceShaderAtomicFloat2FeaturesEXT: - return "PhysicalDeviceShaderAtomicFloat2FeaturesEXT"; - case StructureType::ePhysicalDeviceDeviceGeneratedCommandsPropertiesNV: - return "PhysicalDeviceDeviceGeneratedCommandsPropertiesNV"; - case StructureType::eGraphicsShaderGroupCreateInfoNV: return "GraphicsShaderGroupCreateInfoNV"; - case StructureType::eGraphicsPipelineShaderGroupsCreateInfoNV: return "GraphicsPipelineShaderGroupsCreateInfoNV"; - case StructureType::eIndirectCommandsLayoutTokenNV: return "IndirectCommandsLayoutTokenNV"; - case StructureType::eIndirectCommandsLayoutCreateInfoNV: return "IndirectCommandsLayoutCreateInfoNV"; - case StructureType::eGeneratedCommandsInfoNV: return "GeneratedCommandsInfoNV"; - case StructureType::eGeneratedCommandsMemoryRequirementsInfoNV: - return "GeneratedCommandsMemoryRequirementsInfoNV"; - case StructureType::ePhysicalDeviceDeviceGeneratedCommandsFeaturesNV: - return "PhysicalDeviceDeviceGeneratedCommandsFeaturesNV"; - case StructureType::ePhysicalDeviceInheritedViewportScissorFeaturesNV: - return "PhysicalDeviceInheritedViewportScissorFeaturesNV"; - case StructureType::eCommandBufferInheritanceViewportScissorInfoNV: - return "CommandBufferInheritanceViewportScissorInfoNV"; - case StructureType::ePhysicalDeviceTexelBufferAlignmentFeaturesEXT: - return "PhysicalDeviceTexelBufferAlignmentFeaturesEXT"; - case StructureType::eCommandBufferInheritanceRenderPassTransformInfoQCOM: - return "CommandBufferInheritanceRenderPassTransformInfoQCOM"; - case StructureType::eRenderPassTransformBeginInfoQCOM: return "RenderPassTransformBeginInfoQCOM"; - case StructureType::ePhysicalDeviceDeviceMemoryReportFeaturesEXT: - return "PhysicalDeviceDeviceMemoryReportFeaturesEXT"; - case StructureType::eDeviceDeviceMemoryReportCreateInfoEXT: return "DeviceDeviceMemoryReportCreateInfoEXT"; - case StructureType::eDeviceMemoryReportCallbackDataEXT: return "DeviceMemoryReportCallbackDataEXT"; - case StructureType::ePhysicalDeviceRobustness2FeaturesEXT: return "PhysicalDeviceRobustness2FeaturesEXT"; - case StructureType::ePhysicalDeviceRobustness2PropertiesEXT: return "PhysicalDeviceRobustness2PropertiesEXT"; - case StructureType::eSamplerCustomBorderColorCreateInfoEXT: return "SamplerCustomBorderColorCreateInfoEXT"; - case StructureType::ePhysicalDeviceCustomBorderColorPropertiesEXT: - return "PhysicalDeviceCustomBorderColorPropertiesEXT"; - case StructureType::ePhysicalDeviceCustomBorderColorFeaturesEXT: - return "PhysicalDeviceCustomBorderColorFeaturesEXT"; - case StructureType::ePipelineLibraryCreateInfoKHR: return "PipelineLibraryCreateInfoKHR"; - case StructureType::ePresentIdKHR: return "PresentIdKHR"; - case StructureType::ePhysicalDevicePresentIdFeaturesKHR: return "PhysicalDevicePresentIdFeaturesKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case StructureType::eVideoEncodeInfoKHR: return "VideoEncodeInfoKHR"; - case StructureType::eVideoEncodeRateControlInfoKHR: return "VideoEncodeRateControlInfoKHR"; - case StructureType::eVideoEncodeRateControlLayerInfoKHR: return "VideoEncodeRateControlLayerInfoKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case StructureType::ePhysicalDeviceDiagnosticsConfigFeaturesNV: - return "PhysicalDeviceDiagnosticsConfigFeaturesNV"; - case StructureType::eDeviceDiagnosticsConfigCreateInfoNV: return "DeviceDiagnosticsConfigCreateInfoNV"; - case StructureType::eQueueFamilyCheckpointProperties2NV: return "QueueFamilyCheckpointProperties2NV"; - case StructureType::eCheckpointData2NV: return "CheckpointData2NV"; - case StructureType::ePhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR: - return "PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR"; - case StructureType::ePhysicalDeviceFragmentShadingRateEnumsPropertiesNV: - return "PhysicalDeviceFragmentShadingRateEnumsPropertiesNV"; - case StructureType::ePhysicalDeviceFragmentShadingRateEnumsFeaturesNV: - return "PhysicalDeviceFragmentShadingRateEnumsFeaturesNV"; - case StructureType::ePipelineFragmentShadingRateEnumStateCreateInfoNV: - return "PipelineFragmentShadingRateEnumStateCreateInfoNV"; - case StructureType::eAccelerationStructureGeometryMotionTrianglesDataNV: - return "AccelerationStructureGeometryMotionTrianglesDataNV"; - case StructureType::ePhysicalDeviceRayTracingMotionBlurFeaturesNV: - return "PhysicalDeviceRayTracingMotionBlurFeaturesNV"; - case StructureType::eAccelerationStructureMotionInfoNV: return "AccelerationStructureMotionInfoNV"; - case StructureType::ePhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT: - return "PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT"; - case StructureType::ePhysicalDeviceFragmentDensityMap2FeaturesEXT: - return "PhysicalDeviceFragmentDensityMap2FeaturesEXT"; - case StructureType::ePhysicalDeviceFragmentDensityMap2PropertiesEXT: - return "PhysicalDeviceFragmentDensityMap2PropertiesEXT"; - case StructureType::eCopyCommandTransformInfoQCOM: return "CopyCommandTransformInfoQCOM"; - case StructureType::ePhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR: - return "PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR"; - case StructureType::ePhysicalDevice4444FormatsFeaturesEXT: return "PhysicalDevice4444FormatsFeaturesEXT"; - case StructureType::ePhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM: - return "PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM"; - case StructureType::ePhysicalDeviceRgba10X6FormatsFeaturesEXT: return "PhysicalDeviceRgba10X6FormatsFeaturesEXT"; -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - case StructureType::eDirectfbSurfaceCreateInfoEXT: return "DirectfbSurfaceCreateInfoEXT"; -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - case StructureType::ePhysicalDeviceMutableDescriptorTypeFeaturesVALVE: - return "PhysicalDeviceMutableDescriptorTypeFeaturesVALVE"; - case StructureType::eMutableDescriptorTypeCreateInfoVALVE: return "MutableDescriptorTypeCreateInfoVALVE"; - case StructureType::ePhysicalDeviceVertexInputDynamicStateFeaturesEXT: - return "PhysicalDeviceVertexInputDynamicStateFeaturesEXT"; - case StructureType::eVertexInputBindingDescription2EXT: return "VertexInputBindingDescription2EXT"; - case StructureType::eVertexInputAttributeDescription2EXT: return "VertexInputAttributeDescription2EXT"; - case StructureType::ePhysicalDeviceDrmPropertiesEXT: return "PhysicalDeviceDrmPropertiesEXT"; - case StructureType::ePhysicalDeviceDepthClipControlFeaturesEXT: - return "PhysicalDeviceDepthClipControlFeaturesEXT"; - case StructureType::ePipelineViewportDepthClipControlCreateInfoEXT: - return "PipelineViewportDepthClipControlCreateInfoEXT"; - case StructureType::ePhysicalDevicePrimitiveTopologyListRestartFeaturesEXT: - return "PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT"; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - case StructureType::eImportMemoryZirconHandleInfoFUCHSIA: return "ImportMemoryZirconHandleInfoFUCHSIA"; - case StructureType::eMemoryZirconHandlePropertiesFUCHSIA: return "MemoryZirconHandlePropertiesFUCHSIA"; - case StructureType::eMemoryGetZirconHandleInfoFUCHSIA: return "MemoryGetZirconHandleInfoFUCHSIA"; - case StructureType::eImportSemaphoreZirconHandleInfoFUCHSIA: return "ImportSemaphoreZirconHandleInfoFUCHSIA"; - case StructureType::eSemaphoreGetZirconHandleInfoFUCHSIA: return "SemaphoreGetZirconHandleInfoFUCHSIA"; - case StructureType::eBufferCollectionCreateInfoFUCHSIA: return "BufferCollectionCreateInfoFUCHSIA"; - case StructureType::eImportMemoryBufferCollectionFUCHSIA: return "ImportMemoryBufferCollectionFUCHSIA"; - case StructureType::eBufferCollectionImageCreateInfoFUCHSIA: return "BufferCollectionImageCreateInfoFUCHSIA"; - case StructureType::eBufferCollectionPropertiesFUCHSIA: return "BufferCollectionPropertiesFUCHSIA"; - case StructureType::eBufferConstraintsInfoFUCHSIA: return "BufferConstraintsInfoFUCHSIA"; - case StructureType::eBufferCollectionBufferCreateInfoFUCHSIA: return "BufferCollectionBufferCreateInfoFUCHSIA"; - case StructureType::eImageConstraintsInfoFUCHSIA: return "ImageConstraintsInfoFUCHSIA"; - case StructureType::eImageFormatConstraintsInfoFUCHSIA: return "ImageFormatConstraintsInfoFUCHSIA"; - case StructureType::eSysmemColorSpaceFUCHSIA: return "SysmemColorSpaceFUCHSIA"; - case StructureType::eBufferCollectionConstraintsInfoFUCHSIA: return "BufferCollectionConstraintsInfoFUCHSIA"; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - case StructureType::eSubpassShadingPipelineCreateInfoHUAWEI: return "SubpassShadingPipelineCreateInfoHUAWEI"; - case StructureType::ePhysicalDeviceSubpassShadingFeaturesHUAWEI: - return "PhysicalDeviceSubpassShadingFeaturesHUAWEI"; - case StructureType::ePhysicalDeviceSubpassShadingPropertiesHUAWEI: - return "PhysicalDeviceSubpassShadingPropertiesHUAWEI"; - case StructureType::ePhysicalDeviceInvocationMaskFeaturesHUAWEI: - return "PhysicalDeviceInvocationMaskFeaturesHUAWEI"; - case StructureType::eMemoryGetRemoteAddressInfoNV: return "MemoryGetRemoteAddressInfoNV"; - case StructureType::ePhysicalDeviceExternalMemoryRdmaFeaturesNV: - return "PhysicalDeviceExternalMemoryRdmaFeaturesNV"; - case StructureType::ePhysicalDeviceExtendedDynamicState2FeaturesEXT: - return "PhysicalDeviceExtendedDynamicState2FeaturesEXT"; -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - case StructureType::eScreenSurfaceCreateInfoQNX: return "ScreenSurfaceCreateInfoQNX"; -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - case StructureType::ePhysicalDeviceColorWriteEnableFeaturesEXT: - return "PhysicalDeviceColorWriteEnableFeaturesEXT"; - case StructureType::ePipelineColorWriteCreateInfoEXT: return "PipelineColorWriteCreateInfoEXT"; - case StructureType::ePhysicalDeviceImageViewMinLodFeaturesEXT: return "PhysicalDeviceImageViewMinLodFeaturesEXT"; - case StructureType::eImageViewMinLodCreateInfoEXT: return "ImageViewMinLodCreateInfoEXT"; - case StructureType::ePhysicalDeviceMultiDrawFeaturesEXT: return "PhysicalDeviceMultiDrawFeaturesEXT"; - case StructureType::ePhysicalDeviceMultiDrawPropertiesEXT: return "PhysicalDeviceMultiDrawPropertiesEXT"; - case StructureType::ePhysicalDeviceBorderColorSwizzleFeaturesEXT: - return "PhysicalDeviceBorderColorSwizzleFeaturesEXT"; - case StructureType::eSamplerBorderColorComponentMappingCreateInfoEXT: - return "SamplerBorderColorComponentMappingCreateInfoEXT"; - case StructureType::ePhysicalDevicePageableDeviceLocalMemoryFeaturesEXT: - return "PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT"; - case StructureType::ePhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM: - return "PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM"; - case StructureType::ePhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM: - return "PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM"; - case StructureType::eSubpassFragmentDensityMapOffsetEndInfoQCOM: - return "SubpassFragmentDensityMapOffsetEndInfoQCOM"; - case StructureType::ePhysicalDeviceLinearColorAttachmentFeaturesNV: - return "PhysicalDeviceLinearColorAttachmentFeaturesNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ObjectType - { - eUnknown = VK_OBJECT_TYPE_UNKNOWN, - eInstance = VK_OBJECT_TYPE_INSTANCE, - ePhysicalDevice = VK_OBJECT_TYPE_PHYSICAL_DEVICE, - eDevice = VK_OBJECT_TYPE_DEVICE, - eQueue = VK_OBJECT_TYPE_QUEUE, - eSemaphore = VK_OBJECT_TYPE_SEMAPHORE, - eCommandBuffer = VK_OBJECT_TYPE_COMMAND_BUFFER, - eFence = VK_OBJECT_TYPE_FENCE, - eDeviceMemory = VK_OBJECT_TYPE_DEVICE_MEMORY, - eBuffer = VK_OBJECT_TYPE_BUFFER, - eImage = VK_OBJECT_TYPE_IMAGE, - eEvent = VK_OBJECT_TYPE_EVENT, - eQueryPool = VK_OBJECT_TYPE_QUERY_POOL, - eBufferView = VK_OBJECT_TYPE_BUFFER_VIEW, - eImageView = VK_OBJECT_TYPE_IMAGE_VIEW, - eShaderModule = VK_OBJECT_TYPE_SHADER_MODULE, - ePipelineCache = VK_OBJECT_TYPE_PIPELINE_CACHE, - ePipelineLayout = VK_OBJECT_TYPE_PIPELINE_LAYOUT, - eRenderPass = VK_OBJECT_TYPE_RENDER_PASS, - ePipeline = VK_OBJECT_TYPE_PIPELINE, - eDescriptorSetLayout = VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT, - eSampler = VK_OBJECT_TYPE_SAMPLER, - eDescriptorPool = VK_OBJECT_TYPE_DESCRIPTOR_POOL, - eDescriptorSet = VK_OBJECT_TYPE_DESCRIPTOR_SET, - eFramebuffer = VK_OBJECT_TYPE_FRAMEBUFFER, - eCommandPool = VK_OBJECT_TYPE_COMMAND_POOL, - eSamplerYcbcrConversion = VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION, - eDescriptorUpdateTemplate = VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE, - ePrivateDataSlot = VK_OBJECT_TYPE_PRIVATE_DATA_SLOT, - eSurfaceKHR = VK_OBJECT_TYPE_SURFACE_KHR, - eSwapchainKHR = VK_OBJECT_TYPE_SWAPCHAIN_KHR, - eDisplayKHR = VK_OBJECT_TYPE_DISPLAY_KHR, - eDisplayModeKHR = VK_OBJECT_TYPE_DISPLAY_MODE_KHR, - eDebugReportCallbackEXT = VK_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoSessionKHR = VK_OBJECT_TYPE_VIDEO_SESSION_KHR, - eVideoSessionParametersKHR = VK_OBJECT_TYPE_VIDEO_SESSION_PARAMETERS_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eCuModuleNVX = VK_OBJECT_TYPE_CU_MODULE_NVX, - eCuFunctionNVX = VK_OBJECT_TYPE_CU_FUNCTION_NVX, - eDebugUtilsMessengerEXT = VK_OBJECT_TYPE_DEBUG_UTILS_MESSENGER_EXT, - eAccelerationStructureKHR = VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR, - eValidationCacheEXT = VK_OBJECT_TYPE_VALIDATION_CACHE_EXT, - eAccelerationStructureNV = VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV, - ePerformanceConfigurationINTEL = VK_OBJECT_TYPE_PERFORMANCE_CONFIGURATION_INTEL, - eDeferredOperationKHR = VK_OBJECT_TYPE_DEFERRED_OPERATION_KHR, - eIndirectCommandsLayoutNV = VK_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NV, -#if defined( VK_USE_PLATFORM_FUCHSIA ) - eBufferCollectionFUCHSIA = VK_OBJECT_TYPE_BUFFER_COLLECTION_FUCHSIA, -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - eDescriptorUpdateTemplateKHR = VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR, - ePrivateDataSlotEXT = VK_OBJECT_TYPE_PRIVATE_DATA_SLOT_EXT, - eSamplerYcbcrConversionKHR = VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( ObjectType value ) - { - switch ( value ) - { - case ObjectType::eUnknown: return "Unknown"; - case ObjectType::eInstance: return "Instance"; - case ObjectType::ePhysicalDevice: return "PhysicalDevice"; - case ObjectType::eDevice: return "Device"; - case ObjectType::eQueue: return "Queue"; - case ObjectType::eSemaphore: return "Semaphore"; - case ObjectType::eCommandBuffer: return "CommandBuffer"; - case ObjectType::eFence: return "Fence"; - case ObjectType::eDeviceMemory: return "DeviceMemory"; - case ObjectType::eBuffer: return "Buffer"; - case ObjectType::eImage: return "Image"; - case ObjectType::eEvent: return "Event"; - case ObjectType::eQueryPool: return "QueryPool"; - case ObjectType::eBufferView: return "BufferView"; - case ObjectType::eImageView: return "ImageView"; - case ObjectType::eShaderModule: return "ShaderModule"; - case ObjectType::ePipelineCache: return "PipelineCache"; - case ObjectType::ePipelineLayout: return "PipelineLayout"; - case ObjectType::eRenderPass: return "RenderPass"; - case ObjectType::ePipeline: return "Pipeline"; - case ObjectType::eDescriptorSetLayout: return "DescriptorSetLayout"; - case ObjectType::eSampler: return "Sampler"; - case ObjectType::eDescriptorPool: return "DescriptorPool"; - case ObjectType::eDescriptorSet: return "DescriptorSet"; - case ObjectType::eFramebuffer: return "Framebuffer"; - case ObjectType::eCommandPool: return "CommandPool"; - case ObjectType::eSamplerYcbcrConversion: return "SamplerYcbcrConversion"; - case ObjectType::eDescriptorUpdateTemplate: return "DescriptorUpdateTemplate"; - case ObjectType::ePrivateDataSlot: return "PrivateDataSlot"; - case ObjectType::eSurfaceKHR: return "SurfaceKHR"; - case ObjectType::eSwapchainKHR: return "SwapchainKHR"; - case ObjectType::eDisplayKHR: return "DisplayKHR"; - case ObjectType::eDisplayModeKHR: return "DisplayModeKHR"; - case ObjectType::eDebugReportCallbackEXT: return "DebugReportCallbackEXT"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case ObjectType::eVideoSessionKHR: return "VideoSessionKHR"; - case ObjectType::eVideoSessionParametersKHR: return "VideoSessionParametersKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case ObjectType::eCuModuleNVX: return "CuModuleNVX"; - case ObjectType::eCuFunctionNVX: return "CuFunctionNVX"; - case ObjectType::eDebugUtilsMessengerEXT: return "DebugUtilsMessengerEXT"; - case ObjectType::eAccelerationStructureKHR: return "AccelerationStructureKHR"; - case ObjectType::eValidationCacheEXT: return "ValidationCacheEXT"; - case ObjectType::eAccelerationStructureNV: return "AccelerationStructureNV"; - case ObjectType::ePerformanceConfigurationINTEL: return "PerformanceConfigurationINTEL"; - case ObjectType::eDeferredOperationKHR: return "DeferredOperationKHR"; - case ObjectType::eIndirectCommandsLayoutNV: return "IndirectCommandsLayoutNV"; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - case ObjectType::eBufferCollectionFUCHSIA: return "BufferCollectionFUCHSIA"; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VendorId - { - eVIV = VK_VENDOR_ID_VIV, - eVSI = VK_VENDOR_ID_VSI, - eKazan = VK_VENDOR_ID_KAZAN, - eCodeplay = VK_VENDOR_ID_CODEPLAY, - eMESA = VK_VENDOR_ID_MESA, - ePocl = VK_VENDOR_ID_POCL - }; - - VULKAN_HPP_INLINE std::string to_string( VendorId value ) - { - switch ( value ) - { - case VendorId::eVIV: return "VIV"; - case VendorId::eVSI: return "VSI"; - case VendorId::eKazan: return "Kazan"; - case VendorId::eCodeplay: return "Codeplay"; - case VendorId::eMESA: return "MESA"; - case VendorId::ePocl: return "Pocl"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineCacheHeaderVersion - { - eOne = VK_PIPELINE_CACHE_HEADER_VERSION_ONE - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCacheHeaderVersion value ) - { - switch ( value ) - { - case PipelineCacheHeaderVersion::eOne: return "One"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class Format - { - eUndefined = VK_FORMAT_UNDEFINED, - eR4G4UnormPack8 = VK_FORMAT_R4G4_UNORM_PACK8, - eR4G4B4A4UnormPack16 = VK_FORMAT_R4G4B4A4_UNORM_PACK16, - eB4G4R4A4UnormPack16 = VK_FORMAT_B4G4R4A4_UNORM_PACK16, - eR5G6B5UnormPack16 = VK_FORMAT_R5G6B5_UNORM_PACK16, - eB5G6R5UnormPack16 = VK_FORMAT_B5G6R5_UNORM_PACK16, - eR5G5B5A1UnormPack16 = VK_FORMAT_R5G5B5A1_UNORM_PACK16, - eB5G5R5A1UnormPack16 = VK_FORMAT_B5G5R5A1_UNORM_PACK16, - eA1R5G5B5UnormPack16 = VK_FORMAT_A1R5G5B5_UNORM_PACK16, - eR8Unorm = VK_FORMAT_R8_UNORM, - eR8Snorm = VK_FORMAT_R8_SNORM, - eR8Uscaled = VK_FORMAT_R8_USCALED, - eR8Sscaled = VK_FORMAT_R8_SSCALED, - eR8Uint = VK_FORMAT_R8_UINT, - eR8Sint = VK_FORMAT_R8_SINT, - eR8Srgb = VK_FORMAT_R8_SRGB, - eR8G8Unorm = VK_FORMAT_R8G8_UNORM, - eR8G8Snorm = VK_FORMAT_R8G8_SNORM, - eR8G8Uscaled = VK_FORMAT_R8G8_USCALED, - eR8G8Sscaled = VK_FORMAT_R8G8_SSCALED, - eR8G8Uint = VK_FORMAT_R8G8_UINT, - eR8G8Sint = VK_FORMAT_R8G8_SINT, - eR8G8Srgb = VK_FORMAT_R8G8_SRGB, - eR8G8B8Unorm = VK_FORMAT_R8G8B8_UNORM, - eR8G8B8Snorm = VK_FORMAT_R8G8B8_SNORM, - eR8G8B8Uscaled = VK_FORMAT_R8G8B8_USCALED, - eR8G8B8Sscaled = VK_FORMAT_R8G8B8_SSCALED, - eR8G8B8Uint = VK_FORMAT_R8G8B8_UINT, - eR8G8B8Sint = VK_FORMAT_R8G8B8_SINT, - eR8G8B8Srgb = VK_FORMAT_R8G8B8_SRGB, - eB8G8R8Unorm = VK_FORMAT_B8G8R8_UNORM, - eB8G8R8Snorm = VK_FORMAT_B8G8R8_SNORM, - eB8G8R8Uscaled = VK_FORMAT_B8G8R8_USCALED, - eB8G8R8Sscaled = VK_FORMAT_B8G8R8_SSCALED, - eB8G8R8Uint = VK_FORMAT_B8G8R8_UINT, - eB8G8R8Sint = VK_FORMAT_B8G8R8_SINT, - eB8G8R8Srgb = VK_FORMAT_B8G8R8_SRGB, - eR8G8B8A8Unorm = VK_FORMAT_R8G8B8A8_UNORM, - eR8G8B8A8Snorm = VK_FORMAT_R8G8B8A8_SNORM, - eR8G8B8A8Uscaled = VK_FORMAT_R8G8B8A8_USCALED, - eR8G8B8A8Sscaled = VK_FORMAT_R8G8B8A8_SSCALED, - eR8G8B8A8Uint = VK_FORMAT_R8G8B8A8_UINT, - eR8G8B8A8Sint = VK_FORMAT_R8G8B8A8_SINT, - eR8G8B8A8Srgb = VK_FORMAT_R8G8B8A8_SRGB, - eB8G8R8A8Unorm = VK_FORMAT_B8G8R8A8_UNORM, - eB8G8R8A8Snorm = VK_FORMAT_B8G8R8A8_SNORM, - eB8G8R8A8Uscaled = VK_FORMAT_B8G8R8A8_USCALED, - eB8G8R8A8Sscaled = VK_FORMAT_B8G8R8A8_SSCALED, - eB8G8R8A8Uint = VK_FORMAT_B8G8R8A8_UINT, - eB8G8R8A8Sint = VK_FORMAT_B8G8R8A8_SINT, - eB8G8R8A8Srgb = VK_FORMAT_B8G8R8A8_SRGB, - eA8B8G8R8UnormPack32 = VK_FORMAT_A8B8G8R8_UNORM_PACK32, - eA8B8G8R8SnormPack32 = VK_FORMAT_A8B8G8R8_SNORM_PACK32, - eA8B8G8R8UscaledPack32 = VK_FORMAT_A8B8G8R8_USCALED_PACK32, - eA8B8G8R8SscaledPack32 = VK_FORMAT_A8B8G8R8_SSCALED_PACK32, - eA8B8G8R8UintPack32 = VK_FORMAT_A8B8G8R8_UINT_PACK32, - eA8B8G8R8SintPack32 = VK_FORMAT_A8B8G8R8_SINT_PACK32, - eA8B8G8R8SrgbPack32 = VK_FORMAT_A8B8G8R8_SRGB_PACK32, - eA2R10G10B10UnormPack32 = VK_FORMAT_A2R10G10B10_UNORM_PACK32, - eA2R10G10B10SnormPack32 = VK_FORMAT_A2R10G10B10_SNORM_PACK32, - eA2R10G10B10UscaledPack32 = VK_FORMAT_A2R10G10B10_USCALED_PACK32, - eA2R10G10B10SscaledPack32 = VK_FORMAT_A2R10G10B10_SSCALED_PACK32, - eA2R10G10B10UintPack32 = VK_FORMAT_A2R10G10B10_UINT_PACK32, - eA2R10G10B10SintPack32 = VK_FORMAT_A2R10G10B10_SINT_PACK32, - eA2B10G10R10UnormPack32 = VK_FORMAT_A2B10G10R10_UNORM_PACK32, - eA2B10G10R10SnormPack32 = VK_FORMAT_A2B10G10R10_SNORM_PACK32, - eA2B10G10R10UscaledPack32 = VK_FORMAT_A2B10G10R10_USCALED_PACK32, - eA2B10G10R10SscaledPack32 = VK_FORMAT_A2B10G10R10_SSCALED_PACK32, - eA2B10G10R10UintPack32 = VK_FORMAT_A2B10G10R10_UINT_PACK32, - eA2B10G10R10SintPack32 = VK_FORMAT_A2B10G10R10_SINT_PACK32, - eR16Unorm = VK_FORMAT_R16_UNORM, - eR16Snorm = VK_FORMAT_R16_SNORM, - eR16Uscaled = VK_FORMAT_R16_USCALED, - eR16Sscaled = VK_FORMAT_R16_SSCALED, - eR16Uint = VK_FORMAT_R16_UINT, - eR16Sint = VK_FORMAT_R16_SINT, - eR16Sfloat = VK_FORMAT_R16_SFLOAT, - eR16G16Unorm = VK_FORMAT_R16G16_UNORM, - eR16G16Snorm = VK_FORMAT_R16G16_SNORM, - eR16G16Uscaled = VK_FORMAT_R16G16_USCALED, - eR16G16Sscaled = VK_FORMAT_R16G16_SSCALED, - eR16G16Uint = VK_FORMAT_R16G16_UINT, - eR16G16Sint = VK_FORMAT_R16G16_SINT, - eR16G16Sfloat = VK_FORMAT_R16G16_SFLOAT, - eR16G16B16Unorm = VK_FORMAT_R16G16B16_UNORM, - eR16G16B16Snorm = VK_FORMAT_R16G16B16_SNORM, - eR16G16B16Uscaled = VK_FORMAT_R16G16B16_USCALED, - eR16G16B16Sscaled = VK_FORMAT_R16G16B16_SSCALED, - eR16G16B16Uint = VK_FORMAT_R16G16B16_UINT, - eR16G16B16Sint = VK_FORMAT_R16G16B16_SINT, - eR16G16B16Sfloat = VK_FORMAT_R16G16B16_SFLOAT, - eR16G16B16A16Unorm = VK_FORMAT_R16G16B16A16_UNORM, - eR16G16B16A16Snorm = VK_FORMAT_R16G16B16A16_SNORM, - eR16G16B16A16Uscaled = VK_FORMAT_R16G16B16A16_USCALED, - eR16G16B16A16Sscaled = VK_FORMAT_R16G16B16A16_SSCALED, - eR16G16B16A16Uint = VK_FORMAT_R16G16B16A16_UINT, - eR16G16B16A16Sint = VK_FORMAT_R16G16B16A16_SINT, - eR16G16B16A16Sfloat = VK_FORMAT_R16G16B16A16_SFLOAT, - eR32Uint = VK_FORMAT_R32_UINT, - eR32Sint = VK_FORMAT_R32_SINT, - eR32Sfloat = VK_FORMAT_R32_SFLOAT, - eR32G32Uint = VK_FORMAT_R32G32_UINT, - eR32G32Sint = VK_FORMAT_R32G32_SINT, - eR32G32Sfloat = VK_FORMAT_R32G32_SFLOAT, - eR32G32B32Uint = VK_FORMAT_R32G32B32_UINT, - eR32G32B32Sint = VK_FORMAT_R32G32B32_SINT, - eR32G32B32Sfloat = VK_FORMAT_R32G32B32_SFLOAT, - eR32G32B32A32Uint = VK_FORMAT_R32G32B32A32_UINT, - eR32G32B32A32Sint = VK_FORMAT_R32G32B32A32_SINT, - eR32G32B32A32Sfloat = VK_FORMAT_R32G32B32A32_SFLOAT, - eR64Uint = VK_FORMAT_R64_UINT, - eR64Sint = VK_FORMAT_R64_SINT, - eR64Sfloat = VK_FORMAT_R64_SFLOAT, - eR64G64Uint = VK_FORMAT_R64G64_UINT, - eR64G64Sint = VK_FORMAT_R64G64_SINT, - eR64G64Sfloat = VK_FORMAT_R64G64_SFLOAT, - eR64G64B64Uint = VK_FORMAT_R64G64B64_UINT, - eR64G64B64Sint = VK_FORMAT_R64G64B64_SINT, - eR64G64B64Sfloat = VK_FORMAT_R64G64B64_SFLOAT, - eR64G64B64A64Uint = VK_FORMAT_R64G64B64A64_UINT, - eR64G64B64A64Sint = VK_FORMAT_R64G64B64A64_SINT, - eR64G64B64A64Sfloat = VK_FORMAT_R64G64B64A64_SFLOAT, - eB10G11R11UfloatPack32 = VK_FORMAT_B10G11R11_UFLOAT_PACK32, - eE5B9G9R9UfloatPack32 = VK_FORMAT_E5B9G9R9_UFLOAT_PACK32, - eD16Unorm = VK_FORMAT_D16_UNORM, - eX8D24UnormPack32 = VK_FORMAT_X8_D24_UNORM_PACK32, - eD32Sfloat = VK_FORMAT_D32_SFLOAT, - eS8Uint = VK_FORMAT_S8_UINT, - eD16UnormS8Uint = VK_FORMAT_D16_UNORM_S8_UINT, - eD24UnormS8Uint = VK_FORMAT_D24_UNORM_S8_UINT, - eD32SfloatS8Uint = VK_FORMAT_D32_SFLOAT_S8_UINT, - eBc1RgbUnormBlock = VK_FORMAT_BC1_RGB_UNORM_BLOCK, - eBc1RgbSrgbBlock = VK_FORMAT_BC1_RGB_SRGB_BLOCK, - eBc1RgbaUnormBlock = VK_FORMAT_BC1_RGBA_UNORM_BLOCK, - eBc1RgbaSrgbBlock = VK_FORMAT_BC1_RGBA_SRGB_BLOCK, - eBc2UnormBlock = VK_FORMAT_BC2_UNORM_BLOCK, - eBc2SrgbBlock = VK_FORMAT_BC2_SRGB_BLOCK, - eBc3UnormBlock = VK_FORMAT_BC3_UNORM_BLOCK, - eBc3SrgbBlock = VK_FORMAT_BC3_SRGB_BLOCK, - eBc4UnormBlock = VK_FORMAT_BC4_UNORM_BLOCK, - eBc4SnormBlock = VK_FORMAT_BC4_SNORM_BLOCK, - eBc5UnormBlock = VK_FORMAT_BC5_UNORM_BLOCK, - eBc5SnormBlock = VK_FORMAT_BC5_SNORM_BLOCK, - eBc6HUfloatBlock = VK_FORMAT_BC6H_UFLOAT_BLOCK, - eBc6HSfloatBlock = VK_FORMAT_BC6H_SFLOAT_BLOCK, - eBc7UnormBlock = VK_FORMAT_BC7_UNORM_BLOCK, - eBc7SrgbBlock = VK_FORMAT_BC7_SRGB_BLOCK, - eEtc2R8G8B8UnormBlock = VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK, - eEtc2R8G8B8SrgbBlock = VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK, - eEtc2R8G8B8A1UnormBlock = VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK, - eEtc2R8G8B8A1SrgbBlock = VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK, - eEtc2R8G8B8A8UnormBlock = VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK, - eEtc2R8G8B8A8SrgbBlock = VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK, - eEacR11UnormBlock = VK_FORMAT_EAC_R11_UNORM_BLOCK, - eEacR11SnormBlock = VK_FORMAT_EAC_R11_SNORM_BLOCK, - eEacR11G11UnormBlock = VK_FORMAT_EAC_R11G11_UNORM_BLOCK, - eEacR11G11SnormBlock = VK_FORMAT_EAC_R11G11_SNORM_BLOCK, - eAstc4x4UnormBlock = VK_FORMAT_ASTC_4x4_UNORM_BLOCK, - eAstc4x4SrgbBlock = VK_FORMAT_ASTC_4x4_SRGB_BLOCK, - eAstc5x4UnormBlock = VK_FORMAT_ASTC_5x4_UNORM_BLOCK, - eAstc5x4SrgbBlock = VK_FORMAT_ASTC_5x4_SRGB_BLOCK, - eAstc5x5UnormBlock = VK_FORMAT_ASTC_5x5_UNORM_BLOCK, - eAstc5x5SrgbBlock = VK_FORMAT_ASTC_5x5_SRGB_BLOCK, - eAstc6x5UnormBlock = VK_FORMAT_ASTC_6x5_UNORM_BLOCK, - eAstc6x5SrgbBlock = VK_FORMAT_ASTC_6x5_SRGB_BLOCK, - eAstc6x6UnormBlock = VK_FORMAT_ASTC_6x6_UNORM_BLOCK, - eAstc6x6SrgbBlock = VK_FORMAT_ASTC_6x6_SRGB_BLOCK, - eAstc8x5UnormBlock = VK_FORMAT_ASTC_8x5_UNORM_BLOCK, - eAstc8x5SrgbBlock = VK_FORMAT_ASTC_8x5_SRGB_BLOCK, - eAstc8x6UnormBlock = VK_FORMAT_ASTC_8x6_UNORM_BLOCK, - eAstc8x6SrgbBlock = VK_FORMAT_ASTC_8x6_SRGB_BLOCK, - eAstc8x8UnormBlock = VK_FORMAT_ASTC_8x8_UNORM_BLOCK, - eAstc8x8SrgbBlock = VK_FORMAT_ASTC_8x8_SRGB_BLOCK, - eAstc10x5UnormBlock = VK_FORMAT_ASTC_10x5_UNORM_BLOCK, - eAstc10x5SrgbBlock = VK_FORMAT_ASTC_10x5_SRGB_BLOCK, - eAstc10x6UnormBlock = VK_FORMAT_ASTC_10x6_UNORM_BLOCK, - eAstc10x6SrgbBlock = VK_FORMAT_ASTC_10x6_SRGB_BLOCK, - eAstc10x8UnormBlock = VK_FORMAT_ASTC_10x8_UNORM_BLOCK, - eAstc10x8SrgbBlock = VK_FORMAT_ASTC_10x8_SRGB_BLOCK, - eAstc10x10UnormBlock = VK_FORMAT_ASTC_10x10_UNORM_BLOCK, - eAstc10x10SrgbBlock = VK_FORMAT_ASTC_10x10_SRGB_BLOCK, - eAstc12x10UnormBlock = VK_FORMAT_ASTC_12x10_UNORM_BLOCK, - eAstc12x10SrgbBlock = VK_FORMAT_ASTC_12x10_SRGB_BLOCK, - eAstc12x12UnormBlock = VK_FORMAT_ASTC_12x12_UNORM_BLOCK, - eAstc12x12SrgbBlock = VK_FORMAT_ASTC_12x12_SRGB_BLOCK, - eG8B8G8R8422Unorm = VK_FORMAT_G8B8G8R8_422_UNORM, - eB8G8R8G8422Unorm = VK_FORMAT_B8G8R8G8_422_UNORM, - eG8B8R83Plane420Unorm = VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM, - eG8B8R82Plane420Unorm = VK_FORMAT_G8_B8R8_2PLANE_420_UNORM, - eG8B8R83Plane422Unorm = VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM, - eG8B8R82Plane422Unorm = VK_FORMAT_G8_B8R8_2PLANE_422_UNORM, - eG8B8R83Plane444Unorm = VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM, - eR10X6UnormPack16 = VK_FORMAT_R10X6_UNORM_PACK16, - eR10X6G10X6Unorm2Pack16 = VK_FORMAT_R10X6G10X6_UNORM_2PACK16, - eR10X6G10X6B10X6A10X6Unorm4Pack16 = VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16, - eG10X6B10X6G10X6R10X6422Unorm4Pack16 = VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16, - eB10X6G10X6R10X6G10X6422Unorm4Pack16 = VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16, - eG10X6B10X6R10X63Plane420Unorm3Pack16 = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16, - eG10X6B10X6R10X62Plane420Unorm3Pack16 = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16, - eG10X6B10X6R10X63Plane422Unorm3Pack16 = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16, - eG10X6B10X6R10X62Plane422Unorm3Pack16 = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16, - eG10X6B10X6R10X63Plane444Unorm3Pack16 = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16, - eR12X4UnormPack16 = VK_FORMAT_R12X4_UNORM_PACK16, - eR12X4G12X4Unorm2Pack16 = VK_FORMAT_R12X4G12X4_UNORM_2PACK16, - eR12X4G12X4B12X4A12X4Unorm4Pack16 = VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16, - eG12X4B12X4G12X4R12X4422Unorm4Pack16 = VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16, - eB12X4G12X4R12X4G12X4422Unorm4Pack16 = VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16, - eG12X4B12X4R12X43Plane420Unorm3Pack16 = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16, - eG12X4B12X4R12X42Plane420Unorm3Pack16 = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16, - eG12X4B12X4R12X43Plane422Unorm3Pack16 = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16, - eG12X4B12X4R12X42Plane422Unorm3Pack16 = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16, - eG12X4B12X4R12X43Plane444Unorm3Pack16 = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16, - eG16B16G16R16422Unorm = VK_FORMAT_G16B16G16R16_422_UNORM, - eB16G16R16G16422Unorm = VK_FORMAT_B16G16R16G16_422_UNORM, - eG16B16R163Plane420Unorm = VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM, - eG16B16R162Plane420Unorm = VK_FORMAT_G16_B16R16_2PLANE_420_UNORM, - eG16B16R163Plane422Unorm = VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM, - eG16B16R162Plane422Unorm = VK_FORMAT_G16_B16R16_2PLANE_422_UNORM, - eG16B16R163Plane444Unorm = VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM, - eG8B8R82Plane444Unorm = VK_FORMAT_G8_B8R8_2PLANE_444_UNORM, - eG10X6B10X6R10X62Plane444Unorm3Pack16 = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16, - eG12X4B12X4R12X42Plane444Unorm3Pack16 = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16, - eG16B16R162Plane444Unorm = VK_FORMAT_G16_B16R16_2PLANE_444_UNORM, - eA4R4G4B4UnormPack16 = VK_FORMAT_A4R4G4B4_UNORM_PACK16, - eA4B4G4R4UnormPack16 = VK_FORMAT_A4B4G4R4_UNORM_PACK16, - eAstc4x4SfloatBlock = VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK, - eAstc5x4SfloatBlock = VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK, - eAstc5x5SfloatBlock = VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK, - eAstc6x5SfloatBlock = VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK, - eAstc6x6SfloatBlock = VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK, - eAstc8x5SfloatBlock = VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK, - eAstc8x6SfloatBlock = VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK, - eAstc8x8SfloatBlock = VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK, - eAstc10x5SfloatBlock = VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK, - eAstc10x6SfloatBlock = VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK, - eAstc10x8SfloatBlock = VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK, - eAstc10x10SfloatBlock = VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK, - eAstc12x10SfloatBlock = VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK, - eAstc12x12SfloatBlock = VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK, - ePvrtc12BppUnormBlockIMG = VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG, - ePvrtc14BppUnormBlockIMG = VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG, - ePvrtc22BppUnormBlockIMG = VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG, - ePvrtc24BppUnormBlockIMG = VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG, - ePvrtc12BppSrgbBlockIMG = VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG, - ePvrtc14BppSrgbBlockIMG = VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG, - ePvrtc22BppSrgbBlockIMG = VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG, - ePvrtc24BppSrgbBlockIMG = VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG, - eA4B4G4R4UnormPack16EXT = VK_FORMAT_A4B4G4R4_UNORM_PACK16_EXT, - eA4R4G4B4UnormPack16EXT = VK_FORMAT_A4R4G4B4_UNORM_PACK16_EXT, - eAstc10x10SfloatBlockEXT = VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK_EXT, - eAstc10x5SfloatBlockEXT = VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK_EXT, - eAstc10x6SfloatBlockEXT = VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK_EXT, - eAstc10x8SfloatBlockEXT = VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK_EXT, - eAstc12x10SfloatBlockEXT = VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK_EXT, - eAstc12x12SfloatBlockEXT = VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK_EXT, - eAstc4x4SfloatBlockEXT = VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK_EXT, - eAstc5x4SfloatBlockEXT = VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK_EXT, - eAstc5x5SfloatBlockEXT = VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK_EXT, - eAstc6x5SfloatBlockEXT = VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK_EXT, - eAstc6x6SfloatBlockEXT = VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK_EXT, - eAstc8x5SfloatBlockEXT = VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK_EXT, - eAstc8x6SfloatBlockEXT = VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK_EXT, - eAstc8x8SfloatBlockEXT = VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK_EXT, - eB10X6G10X6R10X6G10X6422Unorm4Pack16KHR = VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16_KHR, - eB12X4G12X4R12X4G12X4422Unorm4Pack16KHR = VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16_KHR, - eB16G16R16G16422UnormKHR = VK_FORMAT_B16G16R16G16_422_UNORM_KHR, - eB8G8R8G8422UnormKHR = VK_FORMAT_B8G8R8G8_422_UNORM_KHR, - eG10X6B10X6G10X6R10X6422Unorm4Pack16KHR = VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16_KHR, - eG10X6B10X6R10X62Plane420Unorm3Pack16KHR = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16_KHR, - eG10X6B10X6R10X62Plane422Unorm3Pack16KHR = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16_KHR, - eG10X6B10X6R10X62Plane444Unorm3Pack16EXT = VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16_EXT, - eG10X6B10X6R10X63Plane420Unorm3Pack16KHR = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16_KHR, - eG10X6B10X6R10X63Plane422Unorm3Pack16KHR = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16_KHR, - eG10X6B10X6R10X63Plane444Unorm3Pack16KHR = VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16_KHR, - eG12X4B12X4G12X4R12X4422Unorm4Pack16KHR = VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16_KHR, - eG12X4B12X4R12X42Plane420Unorm3Pack16KHR = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16_KHR, - eG12X4B12X4R12X42Plane422Unorm3Pack16KHR = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16_KHR, - eG12X4B12X4R12X42Plane444Unorm3Pack16EXT = VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16_EXT, - eG12X4B12X4R12X43Plane420Unorm3Pack16KHR = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16_KHR, - eG12X4B12X4R12X43Plane422Unorm3Pack16KHR = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16_KHR, - eG12X4B12X4R12X43Plane444Unorm3Pack16KHR = VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16_KHR, - eG16B16G16R16422UnormKHR = VK_FORMAT_G16B16G16R16_422_UNORM_KHR, - eG16B16R162Plane420UnormKHR = VK_FORMAT_G16_B16R16_2PLANE_420_UNORM_KHR, - eG16B16R162Plane422UnormKHR = VK_FORMAT_G16_B16R16_2PLANE_422_UNORM_KHR, - eG16B16R162Plane444UnormEXT = VK_FORMAT_G16_B16R16_2PLANE_444_UNORM_EXT, - eG16B16R163Plane420UnormKHR = VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM_KHR, - eG16B16R163Plane422UnormKHR = VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM_KHR, - eG16B16R163Plane444UnormKHR = VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM_KHR, - eG8B8G8R8422UnormKHR = VK_FORMAT_G8B8G8R8_422_UNORM_KHR, - eG8B8R82Plane420UnormKHR = VK_FORMAT_G8_B8R8_2PLANE_420_UNORM_KHR, - eG8B8R82Plane422UnormKHR = VK_FORMAT_G8_B8R8_2PLANE_422_UNORM_KHR, - eG8B8R82Plane444UnormEXT = VK_FORMAT_G8_B8R8_2PLANE_444_UNORM_EXT, - eG8B8R83Plane420UnormKHR = VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM_KHR, - eG8B8R83Plane422UnormKHR = VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM_KHR, - eG8B8R83Plane444UnormKHR = VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM_KHR, - eR10X6G10X6B10X6A10X6Unorm4Pack16KHR = VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR, - eR10X6G10X6Unorm2Pack16KHR = VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR, - eR10X6UnormPack16KHR = VK_FORMAT_R10X6_UNORM_PACK16_KHR, - eR12X4G12X4B12X4A12X4Unorm4Pack16KHR = VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16_KHR, - eR12X4G12X4Unorm2Pack16KHR = VK_FORMAT_R12X4G12X4_UNORM_2PACK16_KHR, - eR12X4UnormPack16KHR = VK_FORMAT_R12X4_UNORM_PACK16_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( Format value ) - { - switch ( value ) - { - case Format::eUndefined: return "Undefined"; - case Format::eR4G4UnormPack8: return "R4G4UnormPack8"; - case Format::eR4G4B4A4UnormPack16: return "R4G4B4A4UnormPack16"; - case Format::eB4G4R4A4UnormPack16: return "B4G4R4A4UnormPack16"; - case Format::eR5G6B5UnormPack16: return "R5G6B5UnormPack16"; - case Format::eB5G6R5UnormPack16: return "B5G6R5UnormPack16"; - case Format::eR5G5B5A1UnormPack16: return "R5G5B5A1UnormPack16"; - case Format::eB5G5R5A1UnormPack16: return "B5G5R5A1UnormPack16"; - case Format::eA1R5G5B5UnormPack16: return "A1R5G5B5UnormPack16"; - case Format::eR8Unorm: return "R8Unorm"; - case Format::eR8Snorm: return "R8Snorm"; - case Format::eR8Uscaled: return "R8Uscaled"; - case Format::eR8Sscaled: return "R8Sscaled"; - case Format::eR8Uint: return "R8Uint"; - case Format::eR8Sint: return "R8Sint"; - case Format::eR8Srgb: return "R8Srgb"; - case Format::eR8G8Unorm: return "R8G8Unorm"; - case Format::eR8G8Snorm: return "R8G8Snorm"; - case Format::eR8G8Uscaled: return "R8G8Uscaled"; - case Format::eR8G8Sscaled: return "R8G8Sscaled"; - case Format::eR8G8Uint: return "R8G8Uint"; - case Format::eR8G8Sint: return "R8G8Sint"; - case Format::eR8G8Srgb: return "R8G8Srgb"; - case Format::eR8G8B8Unorm: return "R8G8B8Unorm"; - case Format::eR8G8B8Snorm: return "R8G8B8Snorm"; - case Format::eR8G8B8Uscaled: return "R8G8B8Uscaled"; - case Format::eR8G8B8Sscaled: return "R8G8B8Sscaled"; - case Format::eR8G8B8Uint: return "R8G8B8Uint"; - case Format::eR8G8B8Sint: return "R8G8B8Sint"; - case Format::eR8G8B8Srgb: return "R8G8B8Srgb"; - case Format::eB8G8R8Unorm: return "B8G8R8Unorm"; - case Format::eB8G8R8Snorm: return "B8G8R8Snorm"; - case Format::eB8G8R8Uscaled: return "B8G8R8Uscaled"; - case Format::eB8G8R8Sscaled: return "B8G8R8Sscaled"; - case Format::eB8G8R8Uint: return "B8G8R8Uint"; - case Format::eB8G8R8Sint: return "B8G8R8Sint"; - case Format::eB8G8R8Srgb: return "B8G8R8Srgb"; - case Format::eR8G8B8A8Unorm: return "R8G8B8A8Unorm"; - case Format::eR8G8B8A8Snorm: return "R8G8B8A8Snorm"; - case Format::eR8G8B8A8Uscaled: return "R8G8B8A8Uscaled"; - case Format::eR8G8B8A8Sscaled: return "R8G8B8A8Sscaled"; - case Format::eR8G8B8A8Uint: return "R8G8B8A8Uint"; - case Format::eR8G8B8A8Sint: return "R8G8B8A8Sint"; - case Format::eR8G8B8A8Srgb: return "R8G8B8A8Srgb"; - case Format::eB8G8R8A8Unorm: return "B8G8R8A8Unorm"; - case Format::eB8G8R8A8Snorm: return "B8G8R8A8Snorm"; - case Format::eB8G8R8A8Uscaled: return "B8G8R8A8Uscaled"; - case Format::eB8G8R8A8Sscaled: return "B8G8R8A8Sscaled"; - case Format::eB8G8R8A8Uint: return "B8G8R8A8Uint"; - case Format::eB8G8R8A8Sint: return "B8G8R8A8Sint"; - case Format::eB8G8R8A8Srgb: return "B8G8R8A8Srgb"; - case Format::eA8B8G8R8UnormPack32: return "A8B8G8R8UnormPack32"; - case Format::eA8B8G8R8SnormPack32: return "A8B8G8R8SnormPack32"; - case Format::eA8B8G8R8UscaledPack32: return "A8B8G8R8UscaledPack32"; - case Format::eA8B8G8R8SscaledPack32: return "A8B8G8R8SscaledPack32"; - case Format::eA8B8G8R8UintPack32: return "A8B8G8R8UintPack32"; - case Format::eA8B8G8R8SintPack32: return "A8B8G8R8SintPack32"; - case Format::eA8B8G8R8SrgbPack32: return "A8B8G8R8SrgbPack32"; - case Format::eA2R10G10B10UnormPack32: return "A2R10G10B10UnormPack32"; - case Format::eA2R10G10B10SnormPack32: return "A2R10G10B10SnormPack32"; - case Format::eA2R10G10B10UscaledPack32: return "A2R10G10B10UscaledPack32"; - case Format::eA2R10G10B10SscaledPack32: return "A2R10G10B10SscaledPack32"; - case Format::eA2R10G10B10UintPack32: return "A2R10G10B10UintPack32"; - case Format::eA2R10G10B10SintPack32: return "A2R10G10B10SintPack32"; - case Format::eA2B10G10R10UnormPack32: return "A2B10G10R10UnormPack32"; - case Format::eA2B10G10R10SnormPack32: return "A2B10G10R10SnormPack32"; - case Format::eA2B10G10R10UscaledPack32: return "A2B10G10R10UscaledPack32"; - case Format::eA2B10G10R10SscaledPack32: return "A2B10G10R10SscaledPack32"; - case Format::eA2B10G10R10UintPack32: return "A2B10G10R10UintPack32"; - case Format::eA2B10G10R10SintPack32: return "A2B10G10R10SintPack32"; - case Format::eR16Unorm: return "R16Unorm"; - case Format::eR16Snorm: return "R16Snorm"; - case Format::eR16Uscaled: return "R16Uscaled"; - case Format::eR16Sscaled: return "R16Sscaled"; - case Format::eR16Uint: return "R16Uint"; - case Format::eR16Sint: return "R16Sint"; - case Format::eR16Sfloat: return "R16Sfloat"; - case Format::eR16G16Unorm: return "R16G16Unorm"; - case Format::eR16G16Snorm: return "R16G16Snorm"; - case Format::eR16G16Uscaled: return "R16G16Uscaled"; - case Format::eR16G16Sscaled: return "R16G16Sscaled"; - case Format::eR16G16Uint: return "R16G16Uint"; - case Format::eR16G16Sint: return "R16G16Sint"; - case Format::eR16G16Sfloat: return "R16G16Sfloat"; - case Format::eR16G16B16Unorm: return "R16G16B16Unorm"; - case Format::eR16G16B16Snorm: return "R16G16B16Snorm"; - case Format::eR16G16B16Uscaled: return "R16G16B16Uscaled"; - case Format::eR16G16B16Sscaled: return "R16G16B16Sscaled"; - case Format::eR16G16B16Uint: return "R16G16B16Uint"; - case Format::eR16G16B16Sint: return "R16G16B16Sint"; - case Format::eR16G16B16Sfloat: return "R16G16B16Sfloat"; - case Format::eR16G16B16A16Unorm: return "R16G16B16A16Unorm"; - case Format::eR16G16B16A16Snorm: return "R16G16B16A16Snorm"; - case Format::eR16G16B16A16Uscaled: return "R16G16B16A16Uscaled"; - case Format::eR16G16B16A16Sscaled: return "R16G16B16A16Sscaled"; - case Format::eR16G16B16A16Uint: return "R16G16B16A16Uint"; - case Format::eR16G16B16A16Sint: return "R16G16B16A16Sint"; - case Format::eR16G16B16A16Sfloat: return "R16G16B16A16Sfloat"; - case Format::eR32Uint: return "R32Uint"; - case Format::eR32Sint: return "R32Sint"; - case Format::eR32Sfloat: return "R32Sfloat"; - case Format::eR32G32Uint: return "R32G32Uint"; - case Format::eR32G32Sint: return "R32G32Sint"; - case Format::eR32G32Sfloat: return "R32G32Sfloat"; - case Format::eR32G32B32Uint: return "R32G32B32Uint"; - case Format::eR32G32B32Sint: return "R32G32B32Sint"; - case Format::eR32G32B32Sfloat: return "R32G32B32Sfloat"; - case Format::eR32G32B32A32Uint: return "R32G32B32A32Uint"; - case Format::eR32G32B32A32Sint: return "R32G32B32A32Sint"; - case Format::eR32G32B32A32Sfloat: return "R32G32B32A32Sfloat"; - case Format::eR64Uint: return "R64Uint"; - case Format::eR64Sint: return "R64Sint"; - case Format::eR64Sfloat: return "R64Sfloat"; - case Format::eR64G64Uint: return "R64G64Uint"; - case Format::eR64G64Sint: return "R64G64Sint"; - case Format::eR64G64Sfloat: return "R64G64Sfloat"; - case Format::eR64G64B64Uint: return "R64G64B64Uint"; - case Format::eR64G64B64Sint: return "R64G64B64Sint"; - case Format::eR64G64B64Sfloat: return "R64G64B64Sfloat"; - case Format::eR64G64B64A64Uint: return "R64G64B64A64Uint"; - case Format::eR64G64B64A64Sint: return "R64G64B64A64Sint"; - case Format::eR64G64B64A64Sfloat: return "R64G64B64A64Sfloat"; - case Format::eB10G11R11UfloatPack32: return "B10G11R11UfloatPack32"; - case Format::eE5B9G9R9UfloatPack32: return "E5B9G9R9UfloatPack32"; - case Format::eD16Unorm: return "D16Unorm"; - case Format::eX8D24UnormPack32: return "X8D24UnormPack32"; - case Format::eD32Sfloat: return "D32Sfloat"; - case Format::eS8Uint: return "S8Uint"; - case Format::eD16UnormS8Uint: return "D16UnormS8Uint"; - case Format::eD24UnormS8Uint: return "D24UnormS8Uint"; - case Format::eD32SfloatS8Uint: return "D32SfloatS8Uint"; - case Format::eBc1RgbUnormBlock: return "Bc1RgbUnormBlock"; - case Format::eBc1RgbSrgbBlock: return "Bc1RgbSrgbBlock"; - case Format::eBc1RgbaUnormBlock: return "Bc1RgbaUnormBlock"; - case Format::eBc1RgbaSrgbBlock: return "Bc1RgbaSrgbBlock"; - case Format::eBc2UnormBlock: return "Bc2UnormBlock"; - case Format::eBc2SrgbBlock: return "Bc2SrgbBlock"; - case Format::eBc3UnormBlock: return "Bc3UnormBlock"; - case Format::eBc3SrgbBlock: return "Bc3SrgbBlock"; - case Format::eBc4UnormBlock: return "Bc4UnormBlock"; - case Format::eBc4SnormBlock: return "Bc4SnormBlock"; - case Format::eBc5UnormBlock: return "Bc5UnormBlock"; - case Format::eBc5SnormBlock: return "Bc5SnormBlock"; - case Format::eBc6HUfloatBlock: return "Bc6HUfloatBlock"; - case Format::eBc6HSfloatBlock: return "Bc6HSfloatBlock"; - case Format::eBc7UnormBlock: return "Bc7UnormBlock"; - case Format::eBc7SrgbBlock: return "Bc7SrgbBlock"; - case Format::eEtc2R8G8B8UnormBlock: return "Etc2R8G8B8UnormBlock"; - case Format::eEtc2R8G8B8SrgbBlock: return "Etc2R8G8B8SrgbBlock"; - case Format::eEtc2R8G8B8A1UnormBlock: return "Etc2R8G8B8A1UnormBlock"; - case Format::eEtc2R8G8B8A1SrgbBlock: return "Etc2R8G8B8A1SrgbBlock"; - case Format::eEtc2R8G8B8A8UnormBlock: return "Etc2R8G8B8A8UnormBlock"; - case Format::eEtc2R8G8B8A8SrgbBlock: return "Etc2R8G8B8A8SrgbBlock"; - case Format::eEacR11UnormBlock: return "EacR11UnormBlock"; - case Format::eEacR11SnormBlock: return "EacR11SnormBlock"; - case Format::eEacR11G11UnormBlock: return "EacR11G11UnormBlock"; - case Format::eEacR11G11SnormBlock: return "EacR11G11SnormBlock"; - case Format::eAstc4x4UnormBlock: return "Astc4x4UnormBlock"; - case Format::eAstc4x4SrgbBlock: return "Astc4x4SrgbBlock"; - case Format::eAstc5x4UnormBlock: return "Astc5x4UnormBlock"; - case Format::eAstc5x4SrgbBlock: return "Astc5x4SrgbBlock"; - case Format::eAstc5x5UnormBlock: return "Astc5x5UnormBlock"; - case Format::eAstc5x5SrgbBlock: return "Astc5x5SrgbBlock"; - case Format::eAstc6x5UnormBlock: return "Astc6x5UnormBlock"; - case Format::eAstc6x5SrgbBlock: return "Astc6x5SrgbBlock"; - case Format::eAstc6x6UnormBlock: return "Astc6x6UnormBlock"; - case Format::eAstc6x6SrgbBlock: return "Astc6x6SrgbBlock"; - case Format::eAstc8x5UnormBlock: return "Astc8x5UnormBlock"; - case Format::eAstc8x5SrgbBlock: return "Astc8x5SrgbBlock"; - case Format::eAstc8x6UnormBlock: return "Astc8x6UnormBlock"; - case Format::eAstc8x6SrgbBlock: return "Astc8x6SrgbBlock"; - case Format::eAstc8x8UnormBlock: return "Astc8x8UnormBlock"; - case Format::eAstc8x8SrgbBlock: return "Astc8x8SrgbBlock"; - case Format::eAstc10x5UnormBlock: return "Astc10x5UnormBlock"; - case Format::eAstc10x5SrgbBlock: return "Astc10x5SrgbBlock"; - case Format::eAstc10x6UnormBlock: return "Astc10x6UnormBlock"; - case Format::eAstc10x6SrgbBlock: return "Astc10x6SrgbBlock"; - case Format::eAstc10x8UnormBlock: return "Astc10x8UnormBlock"; - case Format::eAstc10x8SrgbBlock: return "Astc10x8SrgbBlock"; - case Format::eAstc10x10UnormBlock: return "Astc10x10UnormBlock"; - case Format::eAstc10x10SrgbBlock: return "Astc10x10SrgbBlock"; - case Format::eAstc12x10UnormBlock: return "Astc12x10UnormBlock"; - case Format::eAstc12x10SrgbBlock: return "Astc12x10SrgbBlock"; - case Format::eAstc12x12UnormBlock: return "Astc12x12UnormBlock"; - case Format::eAstc12x12SrgbBlock: return "Astc12x12SrgbBlock"; - case Format::eG8B8G8R8422Unorm: return "G8B8G8R8422Unorm"; - case Format::eB8G8R8G8422Unorm: return "B8G8R8G8422Unorm"; - case Format::eG8B8R83Plane420Unorm: return "G8B8R83Plane420Unorm"; - case Format::eG8B8R82Plane420Unorm: return "G8B8R82Plane420Unorm"; - case Format::eG8B8R83Plane422Unorm: return "G8B8R83Plane422Unorm"; - case Format::eG8B8R82Plane422Unorm: return "G8B8R82Plane422Unorm"; - case Format::eG8B8R83Plane444Unorm: return "G8B8R83Plane444Unorm"; - case Format::eR10X6UnormPack16: return "R10X6UnormPack16"; - case Format::eR10X6G10X6Unorm2Pack16: return "R10X6G10X6Unorm2Pack16"; - case Format::eR10X6G10X6B10X6A10X6Unorm4Pack16: return "R10X6G10X6B10X6A10X6Unorm4Pack16"; - case Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: return "G10X6B10X6G10X6R10X6422Unorm4Pack16"; - case Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: return "B10X6G10X6R10X6G10X6422Unorm4Pack16"; - case Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: return "G10X6B10X6R10X63Plane420Unorm3Pack16"; - case Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: return "G10X6B10X6R10X62Plane420Unorm3Pack16"; - case Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: return "G10X6B10X6R10X63Plane422Unorm3Pack16"; - case Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: return "G10X6B10X6R10X62Plane422Unorm3Pack16"; - case Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: return "G10X6B10X6R10X63Plane444Unorm3Pack16"; - case Format::eR12X4UnormPack16: return "R12X4UnormPack16"; - case Format::eR12X4G12X4Unorm2Pack16: return "R12X4G12X4Unorm2Pack16"; - case Format::eR12X4G12X4B12X4A12X4Unorm4Pack16: return "R12X4G12X4B12X4A12X4Unorm4Pack16"; - case Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: return "G12X4B12X4G12X4R12X4422Unorm4Pack16"; - case Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: return "B12X4G12X4R12X4G12X4422Unorm4Pack16"; - case Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: return "G12X4B12X4R12X43Plane420Unorm3Pack16"; - case Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: return "G12X4B12X4R12X42Plane420Unorm3Pack16"; - case Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: return "G12X4B12X4R12X43Plane422Unorm3Pack16"; - case Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: return "G12X4B12X4R12X42Plane422Unorm3Pack16"; - case Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: return "G12X4B12X4R12X43Plane444Unorm3Pack16"; - case Format::eG16B16G16R16422Unorm: return "G16B16G16R16422Unorm"; - case Format::eB16G16R16G16422Unorm: return "B16G16R16G16422Unorm"; - case Format::eG16B16R163Plane420Unorm: return "G16B16R163Plane420Unorm"; - case Format::eG16B16R162Plane420Unorm: return "G16B16R162Plane420Unorm"; - case Format::eG16B16R163Plane422Unorm: return "G16B16R163Plane422Unorm"; - case Format::eG16B16R162Plane422Unorm: return "G16B16R162Plane422Unorm"; - case Format::eG16B16R163Plane444Unorm: return "G16B16R163Plane444Unorm"; - case Format::eG8B8R82Plane444Unorm: return "G8B8R82Plane444Unorm"; - case Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: return "G10X6B10X6R10X62Plane444Unorm3Pack16"; - case Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: return "G12X4B12X4R12X42Plane444Unorm3Pack16"; - case Format::eG16B16R162Plane444Unorm: return "G16B16R162Plane444Unorm"; - case Format::eA4R4G4B4UnormPack16: return "A4R4G4B4UnormPack16"; - case Format::eA4B4G4R4UnormPack16: return "A4B4G4R4UnormPack16"; - case Format::eAstc4x4SfloatBlock: return "Astc4x4SfloatBlock"; - case Format::eAstc5x4SfloatBlock: return "Astc5x4SfloatBlock"; - case Format::eAstc5x5SfloatBlock: return "Astc5x5SfloatBlock"; - case Format::eAstc6x5SfloatBlock: return "Astc6x5SfloatBlock"; - case Format::eAstc6x6SfloatBlock: return "Astc6x6SfloatBlock"; - case Format::eAstc8x5SfloatBlock: return "Astc8x5SfloatBlock"; - case Format::eAstc8x6SfloatBlock: return "Astc8x6SfloatBlock"; - case Format::eAstc8x8SfloatBlock: return "Astc8x8SfloatBlock"; - case Format::eAstc10x5SfloatBlock: return "Astc10x5SfloatBlock"; - case Format::eAstc10x6SfloatBlock: return "Astc10x6SfloatBlock"; - case Format::eAstc10x8SfloatBlock: return "Astc10x8SfloatBlock"; - case Format::eAstc10x10SfloatBlock: return "Astc10x10SfloatBlock"; - case Format::eAstc12x10SfloatBlock: return "Astc12x10SfloatBlock"; - case Format::eAstc12x12SfloatBlock: return "Astc12x12SfloatBlock"; - case Format::ePvrtc12BppUnormBlockIMG: return "Pvrtc12BppUnormBlockIMG"; - case Format::ePvrtc14BppUnormBlockIMG: return "Pvrtc14BppUnormBlockIMG"; - case Format::ePvrtc22BppUnormBlockIMG: return "Pvrtc22BppUnormBlockIMG"; - case Format::ePvrtc24BppUnormBlockIMG: return "Pvrtc24BppUnormBlockIMG"; - case Format::ePvrtc12BppSrgbBlockIMG: return "Pvrtc12BppSrgbBlockIMG"; - case Format::ePvrtc14BppSrgbBlockIMG: return "Pvrtc14BppSrgbBlockIMG"; - case Format::ePvrtc22BppSrgbBlockIMG: return "Pvrtc22BppSrgbBlockIMG"; - case Format::ePvrtc24BppSrgbBlockIMG: return "Pvrtc24BppSrgbBlockIMG"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FormatFeatureFlagBits : VkFormatFeatureFlags - { - eSampledImage = VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT, - eStorageImage = VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT, - eStorageImageAtomic = VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT, - eUniformTexelBuffer = VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT, - eStorageTexelBuffer = VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT, - eStorageTexelBufferAtomic = VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT, - eVertexBuffer = VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT, - eColorAttachment = VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT, - eColorAttachmentBlend = VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT, - eDepthStencilAttachment = VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT, - eBlitSrc = VK_FORMAT_FEATURE_BLIT_SRC_BIT, - eBlitDst = VK_FORMAT_FEATURE_BLIT_DST_BIT, - eSampledImageFilterLinear = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT, - eTransferSrc = VK_FORMAT_FEATURE_TRANSFER_SRC_BIT, - eTransferDst = VK_FORMAT_FEATURE_TRANSFER_DST_BIT, - eMidpointChromaSamples = VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT, - eSampledImageYcbcrConversionLinearFilter = VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT, - eSampledImageYcbcrConversionSeparateReconstructionFilter = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT, - eSampledImageYcbcrConversionChromaReconstructionExplicit = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT, - eSampledImageYcbcrConversionChromaReconstructionExplicitForceable = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT, - eDisjoint = VK_FORMAT_FEATURE_DISJOINT_BIT, - eCositedChromaSamples = VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT, - eSampledImageFilterMinmax = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT, - eSampledImageFilterCubicIMG = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeOutputKHR = VK_FORMAT_FEATURE_VIDEO_DECODE_OUTPUT_BIT_KHR, - eVideoDecodeDpbKHR = VK_FORMAT_FEATURE_VIDEO_DECODE_DPB_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eAccelerationStructureVertexBufferKHR = VK_FORMAT_FEATURE_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR, - eFragmentDensityMapEXT = VK_FORMAT_FEATURE_FRAGMENT_DENSITY_MAP_BIT_EXT, - eFragmentShadingRateAttachmentKHR = VK_FORMAT_FEATURE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeInputKHR = VK_FORMAT_FEATURE_VIDEO_ENCODE_INPUT_BIT_KHR, - eVideoEncodeDpbKHR = VK_FORMAT_FEATURE_VIDEO_ENCODE_DPB_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eCositedChromaSamplesKHR = VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT_KHR, - eDisjointKHR = VK_FORMAT_FEATURE_DISJOINT_BIT_KHR, - eMidpointChromaSamplesKHR = VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT_KHR, - eSampledImageFilterCubicEXT = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT, - eSampledImageFilterMinmaxEXT = VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT, - eSampledImageYcbcrConversionChromaReconstructionExplicitKHR = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT_KHR, - eSampledImageYcbcrConversionChromaReconstructionExplicitForceableKHR = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT_KHR, - eSampledImageYcbcrConversionLinearFilterKHR = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT_KHR, - eSampledImageYcbcrConversionSeparateReconstructionFilterKHR = - VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT_KHR, - eTransferDstKHR = VK_FORMAT_FEATURE_TRANSFER_DST_BIT_KHR, - eTransferSrcKHR = VK_FORMAT_FEATURE_TRANSFER_SRC_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( FormatFeatureFlagBits value ) - { - switch ( value ) - { - case FormatFeatureFlagBits::eSampledImage: return "SampledImage"; - case FormatFeatureFlagBits::eStorageImage: return "StorageImage"; - case FormatFeatureFlagBits::eStorageImageAtomic: return "StorageImageAtomic"; - case FormatFeatureFlagBits::eUniformTexelBuffer: return "UniformTexelBuffer"; - case FormatFeatureFlagBits::eStorageTexelBuffer: return "StorageTexelBuffer"; - case FormatFeatureFlagBits::eStorageTexelBufferAtomic: return "StorageTexelBufferAtomic"; - case FormatFeatureFlagBits::eVertexBuffer: return "VertexBuffer"; - case FormatFeatureFlagBits::eColorAttachment: return "ColorAttachment"; - case FormatFeatureFlagBits::eColorAttachmentBlend: return "ColorAttachmentBlend"; - case FormatFeatureFlagBits::eDepthStencilAttachment: return "DepthStencilAttachment"; - case FormatFeatureFlagBits::eBlitSrc: return "BlitSrc"; - case FormatFeatureFlagBits::eBlitDst: return "BlitDst"; - case FormatFeatureFlagBits::eSampledImageFilterLinear: return "SampledImageFilterLinear"; - case FormatFeatureFlagBits::eTransferSrc: return "TransferSrc"; - case FormatFeatureFlagBits::eTransferDst: return "TransferDst"; - case FormatFeatureFlagBits::eMidpointChromaSamples: return "MidpointChromaSamples"; - case FormatFeatureFlagBits::eSampledImageYcbcrConversionLinearFilter: - return "SampledImageYcbcrConversionLinearFilter"; - case FormatFeatureFlagBits::eSampledImageYcbcrConversionSeparateReconstructionFilter: - return "SampledImageYcbcrConversionSeparateReconstructionFilter"; - case FormatFeatureFlagBits::eSampledImageYcbcrConversionChromaReconstructionExplicit: - return "SampledImageYcbcrConversionChromaReconstructionExplicit"; - case FormatFeatureFlagBits::eSampledImageYcbcrConversionChromaReconstructionExplicitForceable: - return "SampledImageYcbcrConversionChromaReconstructionExplicitForceable"; - case FormatFeatureFlagBits::eDisjoint: return "Disjoint"; - case FormatFeatureFlagBits::eCositedChromaSamples: return "CositedChromaSamples"; - case FormatFeatureFlagBits::eSampledImageFilterMinmax: return "SampledImageFilterMinmax"; - case FormatFeatureFlagBits::eSampledImageFilterCubicIMG: return "SampledImageFilterCubicIMG"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case FormatFeatureFlagBits::eVideoDecodeOutputKHR: return "VideoDecodeOutputKHR"; - case FormatFeatureFlagBits::eVideoDecodeDpbKHR: return "VideoDecodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case FormatFeatureFlagBits::eAccelerationStructureVertexBufferKHR: return "AccelerationStructureVertexBufferKHR"; - case FormatFeatureFlagBits::eFragmentDensityMapEXT: return "FragmentDensityMapEXT"; - case FormatFeatureFlagBits::eFragmentShadingRateAttachmentKHR: return "FragmentShadingRateAttachmentKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case FormatFeatureFlagBits::eVideoEncodeInputKHR: return "VideoEncodeInputKHR"; - case FormatFeatureFlagBits::eVideoEncodeDpbKHR: return "VideoEncodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageCreateFlagBits : VkImageCreateFlags - { - eSparseBinding = VK_IMAGE_CREATE_SPARSE_BINDING_BIT, - eSparseResidency = VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT, - eSparseAliased = VK_IMAGE_CREATE_SPARSE_ALIASED_BIT, - eMutableFormat = VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT, - eCubeCompatible = VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT, - eAlias = VK_IMAGE_CREATE_ALIAS_BIT, - eSplitInstanceBindRegions = VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT, - e2DArrayCompatible = VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT, - eBlockTexelViewCompatible = VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT, - eExtendedUsage = VK_IMAGE_CREATE_EXTENDED_USAGE_BIT, - eProtected = VK_IMAGE_CREATE_PROTECTED_BIT, - eDisjoint = VK_IMAGE_CREATE_DISJOINT_BIT, - eCornerSampledNV = VK_IMAGE_CREATE_CORNER_SAMPLED_BIT_NV, - eSampleLocationsCompatibleDepthEXT = VK_IMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT, - eSubsampledEXT = VK_IMAGE_CREATE_SUBSAMPLED_BIT_EXT, - eFragmentDensityMapOffsetQCOM = VK_IMAGE_CREATE_FRAGMENT_DENSITY_MAP_OFFSET_BIT_QCOM, - e2DArrayCompatibleKHR = VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT_KHR, - eAliasKHR = VK_IMAGE_CREATE_ALIAS_BIT_KHR, - eBlockTexelViewCompatibleKHR = VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT_KHR, - eDisjointKHR = VK_IMAGE_CREATE_DISJOINT_BIT_KHR, - eExtendedUsageKHR = VK_IMAGE_CREATE_EXTENDED_USAGE_BIT_KHR, - eSplitInstanceBindRegionsKHR = VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( ImageCreateFlagBits value ) - { - switch ( value ) - { - case ImageCreateFlagBits::eSparseBinding: return "SparseBinding"; - case ImageCreateFlagBits::eSparseResidency: return "SparseResidency"; - case ImageCreateFlagBits::eSparseAliased: return "SparseAliased"; - case ImageCreateFlagBits::eMutableFormat: return "MutableFormat"; - case ImageCreateFlagBits::eCubeCompatible: return "CubeCompatible"; - case ImageCreateFlagBits::eAlias: return "Alias"; - case ImageCreateFlagBits::eSplitInstanceBindRegions: return "SplitInstanceBindRegions"; - case ImageCreateFlagBits::e2DArrayCompatible: return "2DArrayCompatible"; - case ImageCreateFlagBits::eBlockTexelViewCompatible: return "BlockTexelViewCompatible"; - case ImageCreateFlagBits::eExtendedUsage: return "ExtendedUsage"; - case ImageCreateFlagBits::eProtected: return "Protected"; - case ImageCreateFlagBits::eDisjoint: return "Disjoint"; - case ImageCreateFlagBits::eCornerSampledNV: return "CornerSampledNV"; - case ImageCreateFlagBits::eSampleLocationsCompatibleDepthEXT: return "SampleLocationsCompatibleDepthEXT"; - case ImageCreateFlagBits::eSubsampledEXT: return "SubsampledEXT"; - case ImageCreateFlagBits::eFragmentDensityMapOffsetQCOM: return "FragmentDensityMapOffsetQCOM"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageTiling - { - eOptimal = VK_IMAGE_TILING_OPTIMAL, - eLinear = VK_IMAGE_TILING_LINEAR, - eDrmFormatModifierEXT = VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ImageTiling value ) - { - switch ( value ) - { - case ImageTiling::eOptimal: return "Optimal"; - case ImageTiling::eLinear: return "Linear"; - case ImageTiling::eDrmFormatModifierEXT: return "DrmFormatModifierEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageType - { - e1D = VK_IMAGE_TYPE_1D, - e2D = VK_IMAGE_TYPE_2D, - e3D = VK_IMAGE_TYPE_3D - }; - - VULKAN_HPP_INLINE std::string to_string( ImageType value ) - { - switch ( value ) - { - case ImageType::e1D: return "1D"; - case ImageType::e2D: return "2D"; - case ImageType::e3D: return "3D"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageUsageFlagBits : VkImageUsageFlags - { - eTransferSrc = VK_IMAGE_USAGE_TRANSFER_SRC_BIT, - eTransferDst = VK_IMAGE_USAGE_TRANSFER_DST_BIT, - eSampled = VK_IMAGE_USAGE_SAMPLED_BIT, - eStorage = VK_IMAGE_USAGE_STORAGE_BIT, - eColorAttachment = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, - eDepthStencilAttachment = VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT, - eTransientAttachment = VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT, - eInputAttachment = VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeDstKHR = VK_IMAGE_USAGE_VIDEO_DECODE_DST_BIT_KHR, - eVideoDecodeSrcKHR = VK_IMAGE_USAGE_VIDEO_DECODE_SRC_BIT_KHR, - eVideoDecodeDpbKHR = VK_IMAGE_USAGE_VIDEO_DECODE_DPB_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eFragmentDensityMapEXT = VK_IMAGE_USAGE_FRAGMENT_DENSITY_MAP_BIT_EXT, - eFragmentShadingRateAttachmentKHR = VK_IMAGE_USAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeDstKHR = VK_IMAGE_USAGE_VIDEO_ENCODE_DST_BIT_KHR, - eVideoEncodeSrcKHR = VK_IMAGE_USAGE_VIDEO_ENCODE_SRC_BIT_KHR, - eVideoEncodeDpbKHR = VK_IMAGE_USAGE_VIDEO_ENCODE_DPB_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eInvocationMaskHUAWEI = VK_IMAGE_USAGE_INVOCATION_MASK_BIT_HUAWEI, - eShadingRateImageNV = VK_IMAGE_USAGE_SHADING_RATE_IMAGE_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ImageUsageFlagBits value ) - { - switch ( value ) - { - case ImageUsageFlagBits::eTransferSrc: return "TransferSrc"; - case ImageUsageFlagBits::eTransferDst: return "TransferDst"; - case ImageUsageFlagBits::eSampled: return "Sampled"; - case ImageUsageFlagBits::eStorage: return "Storage"; - case ImageUsageFlagBits::eColorAttachment: return "ColorAttachment"; - case ImageUsageFlagBits::eDepthStencilAttachment: return "DepthStencilAttachment"; - case ImageUsageFlagBits::eTransientAttachment: return "TransientAttachment"; - case ImageUsageFlagBits::eInputAttachment: return "InputAttachment"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case ImageUsageFlagBits::eVideoDecodeDstKHR: return "VideoDecodeDstKHR"; - case ImageUsageFlagBits::eVideoDecodeSrcKHR: return "VideoDecodeSrcKHR"; - case ImageUsageFlagBits::eVideoDecodeDpbKHR: return "VideoDecodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case ImageUsageFlagBits::eFragmentDensityMapEXT: return "FragmentDensityMapEXT"; - case ImageUsageFlagBits::eFragmentShadingRateAttachmentKHR: return "FragmentShadingRateAttachmentKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case ImageUsageFlagBits::eVideoEncodeDstKHR: return "VideoEncodeDstKHR"; - case ImageUsageFlagBits::eVideoEncodeSrcKHR: return "VideoEncodeSrcKHR"; - case ImageUsageFlagBits::eVideoEncodeDpbKHR: return "VideoEncodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case ImageUsageFlagBits::eInvocationMaskHUAWEI: return "InvocationMaskHUAWEI"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class InternalAllocationType - { - eExecutable = VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE - }; - - VULKAN_HPP_INLINE std::string to_string( InternalAllocationType value ) - { - switch ( value ) - { - case InternalAllocationType::eExecutable: return "Executable"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class MemoryHeapFlagBits : VkMemoryHeapFlags - { - eDeviceLocal = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT, - eMultiInstance = VK_MEMORY_HEAP_MULTI_INSTANCE_BIT, - eMultiInstanceKHR = VK_MEMORY_HEAP_MULTI_INSTANCE_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( MemoryHeapFlagBits value ) - { - switch ( value ) - { - case MemoryHeapFlagBits::eDeviceLocal: return "DeviceLocal"; - case MemoryHeapFlagBits::eMultiInstance: return "MultiInstance"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class MemoryPropertyFlagBits : VkMemoryPropertyFlags - { - eDeviceLocal = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT, - eHostVisible = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT, - eHostCoherent = VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, - eHostCached = VK_MEMORY_PROPERTY_HOST_CACHED_BIT, - eLazilyAllocated = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT, - eProtected = VK_MEMORY_PROPERTY_PROTECTED_BIT, - eDeviceCoherentAMD = VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD, - eDeviceUncachedAMD = VK_MEMORY_PROPERTY_DEVICE_UNCACHED_BIT_AMD, - eRdmaCapableNV = VK_MEMORY_PROPERTY_RDMA_CAPABLE_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( MemoryPropertyFlagBits value ) - { - switch ( value ) - { - case MemoryPropertyFlagBits::eDeviceLocal: return "DeviceLocal"; - case MemoryPropertyFlagBits::eHostVisible: return "HostVisible"; - case MemoryPropertyFlagBits::eHostCoherent: return "HostCoherent"; - case MemoryPropertyFlagBits::eHostCached: return "HostCached"; - case MemoryPropertyFlagBits::eLazilyAllocated: return "LazilyAllocated"; - case MemoryPropertyFlagBits::eProtected: return "Protected"; - case MemoryPropertyFlagBits::eDeviceCoherentAMD: return "DeviceCoherentAMD"; - case MemoryPropertyFlagBits::eDeviceUncachedAMD: return "DeviceUncachedAMD"; - case MemoryPropertyFlagBits::eRdmaCapableNV: return "RdmaCapableNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PhysicalDeviceType - { - eOther = VK_PHYSICAL_DEVICE_TYPE_OTHER, - eIntegratedGpu = VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU, - eDiscreteGpu = VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU, - eVirtualGpu = VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU, - eCpu = VK_PHYSICAL_DEVICE_TYPE_CPU - }; - - VULKAN_HPP_INLINE std::string to_string( PhysicalDeviceType value ) - { - switch ( value ) - { - case PhysicalDeviceType::eOther: return "Other"; - case PhysicalDeviceType::eIntegratedGpu: return "IntegratedGpu"; - case PhysicalDeviceType::eDiscreteGpu: return "DiscreteGpu"; - case PhysicalDeviceType::eVirtualGpu: return "VirtualGpu"; - case PhysicalDeviceType::eCpu: return "Cpu"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueueFlagBits : VkQueueFlags - { - eGraphics = VK_QUEUE_GRAPHICS_BIT, - eCompute = VK_QUEUE_COMPUTE_BIT, - eTransfer = VK_QUEUE_TRANSFER_BIT, - eSparseBinding = VK_QUEUE_SPARSE_BINDING_BIT, - eProtected = VK_QUEUE_PROTECTED_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeKHR = VK_QUEUE_VIDEO_DECODE_BIT_KHR, - eVideoEncodeKHR = VK_QUEUE_VIDEO_ENCODE_BIT_KHR -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - - VULKAN_HPP_INLINE std::string to_string( QueueFlagBits value ) - { - switch ( value ) - { - case QueueFlagBits::eGraphics: return "Graphics"; - case QueueFlagBits::eCompute: return "Compute"; - case QueueFlagBits::eTransfer: return "Transfer"; - case QueueFlagBits::eSparseBinding: return "SparseBinding"; - case QueueFlagBits::eProtected: return "Protected"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case QueueFlagBits::eVideoDecodeKHR: return "VideoDecodeKHR"; - case QueueFlagBits::eVideoEncodeKHR: return "VideoEncodeKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SampleCountFlagBits : VkSampleCountFlags - { - e1 = VK_SAMPLE_COUNT_1_BIT, - e2 = VK_SAMPLE_COUNT_2_BIT, - e4 = VK_SAMPLE_COUNT_4_BIT, - e8 = VK_SAMPLE_COUNT_8_BIT, - e16 = VK_SAMPLE_COUNT_16_BIT, - e32 = VK_SAMPLE_COUNT_32_BIT, - e64 = VK_SAMPLE_COUNT_64_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( SampleCountFlagBits value ) - { - switch ( value ) - { - case SampleCountFlagBits::e1: return "1"; - case SampleCountFlagBits::e2: return "2"; - case SampleCountFlagBits::e4: return "4"; - case SampleCountFlagBits::e8: return "8"; - case SampleCountFlagBits::e16: return "16"; - case SampleCountFlagBits::e32: return "32"; - case SampleCountFlagBits::e64: return "64"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SystemAllocationScope - { - eCommand = VK_SYSTEM_ALLOCATION_SCOPE_COMMAND, - eObject = VK_SYSTEM_ALLOCATION_SCOPE_OBJECT, - eCache = VK_SYSTEM_ALLOCATION_SCOPE_CACHE, - eDevice = VK_SYSTEM_ALLOCATION_SCOPE_DEVICE, - eInstance = VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE - }; - - VULKAN_HPP_INLINE std::string to_string( SystemAllocationScope value ) - { - switch ( value ) - { - case SystemAllocationScope::eCommand: return "Command"; - case SystemAllocationScope::eObject: return "Object"; - case SystemAllocationScope::eCache: return "Cache"; - case SystemAllocationScope::eDevice: return "Device"; - case SystemAllocationScope::eInstance: return "Instance"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class InstanceCreateFlagBits - { - }; - - VULKAN_HPP_INLINE std::string to_string( InstanceCreateFlagBits ) - { - return "(void)"; - } - - enum class DeviceCreateFlagBits - { - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineStageFlagBits : VkPipelineStageFlags - { - eTopOfPipe = VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT, - eDrawIndirect = VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT, - eVertexInput = VK_PIPELINE_STAGE_VERTEX_INPUT_BIT, - eVertexShader = VK_PIPELINE_STAGE_VERTEX_SHADER_BIT, - eTessellationControlShader = VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT, - eTessellationEvaluationShader = VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT, - eGeometryShader = VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT, - eFragmentShader = VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT, - eEarlyFragmentTests = VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT, - eLateFragmentTests = VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT, - eColorAttachmentOutput = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, - eComputeShader = VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, - eTransfer = VK_PIPELINE_STAGE_TRANSFER_BIT, - eBottomOfPipe = VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, - eHost = VK_PIPELINE_STAGE_HOST_BIT, - eAllGraphics = VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT, - eAllCommands = VK_PIPELINE_STAGE_ALL_COMMANDS_BIT, - eNone = VK_PIPELINE_STAGE_NONE, - eTransformFeedbackEXT = VK_PIPELINE_STAGE_TRANSFORM_FEEDBACK_BIT_EXT, - eConditionalRenderingEXT = VK_PIPELINE_STAGE_CONDITIONAL_RENDERING_BIT_EXT, - eAccelerationStructureBuildKHR = VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_KHR, - eRayTracingShaderKHR = VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_KHR, - eTaskShaderNV = VK_PIPELINE_STAGE_TASK_SHADER_BIT_NV, - eMeshShaderNV = VK_PIPELINE_STAGE_MESH_SHADER_BIT_NV, - eFragmentDensityProcessEXT = VK_PIPELINE_STAGE_FRAGMENT_DENSITY_PROCESS_BIT_EXT, - eFragmentShadingRateAttachmentKHR = VK_PIPELINE_STAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, - eCommandPreprocessNV = VK_PIPELINE_STAGE_COMMAND_PREPROCESS_BIT_NV, - eAccelerationStructureBuildNV = VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_NV, - eNoneKHR = VK_PIPELINE_STAGE_NONE_KHR, - eRayTracingShaderNV = VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_NV, - eShadingRateImageNV = VK_PIPELINE_STAGE_SHADING_RATE_IMAGE_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineStageFlagBits value ) - { - switch ( value ) - { - case PipelineStageFlagBits::eTopOfPipe: return "TopOfPipe"; - case PipelineStageFlagBits::eDrawIndirect: return "DrawIndirect"; - case PipelineStageFlagBits::eVertexInput: return "VertexInput"; - case PipelineStageFlagBits::eVertexShader: return "VertexShader"; - case PipelineStageFlagBits::eTessellationControlShader: return "TessellationControlShader"; - case PipelineStageFlagBits::eTessellationEvaluationShader: return "TessellationEvaluationShader"; - case PipelineStageFlagBits::eGeometryShader: return "GeometryShader"; - case PipelineStageFlagBits::eFragmentShader: return "FragmentShader"; - case PipelineStageFlagBits::eEarlyFragmentTests: return "EarlyFragmentTests"; - case PipelineStageFlagBits::eLateFragmentTests: return "LateFragmentTests"; - case PipelineStageFlagBits::eColorAttachmentOutput: return "ColorAttachmentOutput"; - case PipelineStageFlagBits::eComputeShader: return "ComputeShader"; - case PipelineStageFlagBits::eTransfer: return "Transfer"; - case PipelineStageFlagBits::eBottomOfPipe: return "BottomOfPipe"; - case PipelineStageFlagBits::eHost: return "Host"; - case PipelineStageFlagBits::eAllGraphics: return "AllGraphics"; - case PipelineStageFlagBits::eAllCommands: return "AllCommands"; - case PipelineStageFlagBits::eNone: return "None"; - case PipelineStageFlagBits::eTransformFeedbackEXT: return "TransformFeedbackEXT"; - case PipelineStageFlagBits::eConditionalRenderingEXT: return "ConditionalRenderingEXT"; - case PipelineStageFlagBits::eAccelerationStructureBuildKHR: return "AccelerationStructureBuildKHR"; - case PipelineStageFlagBits::eRayTracingShaderKHR: return "RayTracingShaderKHR"; - case PipelineStageFlagBits::eTaskShaderNV: return "TaskShaderNV"; - case PipelineStageFlagBits::eMeshShaderNV: return "MeshShaderNV"; - case PipelineStageFlagBits::eFragmentDensityProcessEXT: return "FragmentDensityProcessEXT"; - case PipelineStageFlagBits::eFragmentShadingRateAttachmentKHR: return "FragmentShadingRateAttachmentKHR"; - case PipelineStageFlagBits::eCommandPreprocessNV: return "CommandPreprocessNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class MemoryMapFlagBits : VkMemoryMapFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( MemoryMapFlagBits ) - { - return "(void)"; - } - - enum class ImageAspectFlagBits : VkImageAspectFlags - { - eColor = VK_IMAGE_ASPECT_COLOR_BIT, - eDepth = VK_IMAGE_ASPECT_DEPTH_BIT, - eStencil = VK_IMAGE_ASPECT_STENCIL_BIT, - eMetadata = VK_IMAGE_ASPECT_METADATA_BIT, - ePlane0 = VK_IMAGE_ASPECT_PLANE_0_BIT, - ePlane1 = VK_IMAGE_ASPECT_PLANE_1_BIT, - ePlane2 = VK_IMAGE_ASPECT_PLANE_2_BIT, - eMemoryPlane0EXT = VK_IMAGE_ASPECT_MEMORY_PLANE_0_BIT_EXT, - eMemoryPlane1EXT = VK_IMAGE_ASPECT_MEMORY_PLANE_1_BIT_EXT, - eMemoryPlane2EXT = VK_IMAGE_ASPECT_MEMORY_PLANE_2_BIT_EXT, - eMemoryPlane3EXT = VK_IMAGE_ASPECT_MEMORY_PLANE_3_BIT_EXT, - eNoneKHR = VK_IMAGE_ASPECT_NONE_KHR, - ePlane0KHR = VK_IMAGE_ASPECT_PLANE_0_BIT_KHR, - ePlane1KHR = VK_IMAGE_ASPECT_PLANE_1_BIT_KHR, - ePlane2KHR = VK_IMAGE_ASPECT_PLANE_2_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( ImageAspectFlagBits value ) - { - switch ( value ) - { - case ImageAspectFlagBits::eColor: return "Color"; - case ImageAspectFlagBits::eDepth: return "Depth"; - case ImageAspectFlagBits::eStencil: return "Stencil"; - case ImageAspectFlagBits::eMetadata: return "Metadata"; - case ImageAspectFlagBits::ePlane0: return "Plane0"; - case ImageAspectFlagBits::ePlane1: return "Plane1"; - case ImageAspectFlagBits::ePlane2: return "Plane2"; - case ImageAspectFlagBits::eMemoryPlane0EXT: return "MemoryPlane0EXT"; - case ImageAspectFlagBits::eMemoryPlane1EXT: return "MemoryPlane1EXT"; - case ImageAspectFlagBits::eMemoryPlane2EXT: return "MemoryPlane2EXT"; - case ImageAspectFlagBits::eMemoryPlane3EXT: return "MemoryPlane3EXT"; - case ImageAspectFlagBits::eNoneKHR: return "NoneKHR"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SparseImageFormatFlagBits : VkSparseImageFormatFlags - { - eSingleMiptail = VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT, - eAlignedMipSize = VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT, - eNonstandardBlockSize = VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( SparseImageFormatFlagBits value ) - { - switch ( value ) - { - case SparseImageFormatFlagBits::eSingleMiptail: return "SingleMiptail"; - case SparseImageFormatFlagBits::eAlignedMipSize: return "AlignedMipSize"; - case SparseImageFormatFlagBits::eNonstandardBlockSize: return "NonstandardBlockSize"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SparseMemoryBindFlagBits : VkSparseMemoryBindFlags - { - eMetadata = VK_SPARSE_MEMORY_BIND_METADATA_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( SparseMemoryBindFlagBits value ) - { - switch ( value ) - { - case SparseMemoryBindFlagBits::eMetadata: return "Metadata"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FenceCreateFlagBits : VkFenceCreateFlags - { - eSignaled = VK_FENCE_CREATE_SIGNALED_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( FenceCreateFlagBits value ) - { - switch ( value ) - { - case FenceCreateFlagBits::eSignaled: return "Signaled"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SemaphoreCreateFlagBits : VkSemaphoreCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreCreateFlagBits ) - { - return "(void)"; - } - - enum class EventCreateFlagBits : VkEventCreateFlags - { - eDeviceOnly = VK_EVENT_CREATE_DEVICE_ONLY_BIT, - eDeviceOnlyKHR = VK_EVENT_CREATE_DEVICE_ONLY_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( EventCreateFlagBits value ) - { - switch ( value ) - { - case EventCreateFlagBits::eDeviceOnly: return "DeviceOnly"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryPipelineStatisticFlagBits : VkQueryPipelineStatisticFlags - { - eInputAssemblyVertices = VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT, - eInputAssemblyPrimitives = VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT, - eVertexShaderInvocations = VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT, - eGeometryShaderInvocations = VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT, - eGeometryShaderPrimitives = VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT, - eClippingInvocations = VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT, - eClippingPrimitives = VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT, - eFragmentShaderInvocations = VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT, - eTessellationControlShaderPatches = VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT, - eTessellationEvaluationShaderInvocations = - VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT, - eComputeShaderInvocations = VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( QueryPipelineStatisticFlagBits value ) - { - switch ( value ) - { - case QueryPipelineStatisticFlagBits::eInputAssemblyVertices: return "InputAssemblyVertices"; - case QueryPipelineStatisticFlagBits::eInputAssemblyPrimitives: return "InputAssemblyPrimitives"; - case QueryPipelineStatisticFlagBits::eVertexShaderInvocations: return "VertexShaderInvocations"; - case QueryPipelineStatisticFlagBits::eGeometryShaderInvocations: return "GeometryShaderInvocations"; - case QueryPipelineStatisticFlagBits::eGeometryShaderPrimitives: return "GeometryShaderPrimitives"; - case QueryPipelineStatisticFlagBits::eClippingInvocations: return "ClippingInvocations"; - case QueryPipelineStatisticFlagBits::eClippingPrimitives: return "ClippingPrimitives"; - case QueryPipelineStatisticFlagBits::eFragmentShaderInvocations: return "FragmentShaderInvocations"; - case QueryPipelineStatisticFlagBits::eTessellationControlShaderPatches: return "TessellationControlShaderPatches"; - case QueryPipelineStatisticFlagBits::eTessellationEvaluationShaderInvocations: - return "TessellationEvaluationShaderInvocations"; - case QueryPipelineStatisticFlagBits::eComputeShaderInvocations: return "ComputeShaderInvocations"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryResultFlagBits : VkQueryResultFlags - { - e64 = VK_QUERY_RESULT_64_BIT, - eWait = VK_QUERY_RESULT_WAIT_BIT, - eWithAvailability = VK_QUERY_RESULT_WITH_AVAILABILITY_BIT, - ePartial = VK_QUERY_RESULT_PARTIAL_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eWithStatusKHR = VK_QUERY_RESULT_WITH_STATUS_BIT_KHR -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - - VULKAN_HPP_INLINE std::string to_string( QueryResultFlagBits value ) - { - switch ( value ) - { - case QueryResultFlagBits::e64: return "64"; - case QueryResultFlagBits::eWait: return "Wait"; - case QueryResultFlagBits::eWithAvailability: return "WithAvailability"; - case QueryResultFlagBits::ePartial: return "Partial"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case QueryResultFlagBits::eWithStatusKHR: return "WithStatusKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryType - { - eOcclusion = VK_QUERY_TYPE_OCCLUSION, - ePipelineStatistics = VK_QUERY_TYPE_PIPELINE_STATISTICS, - eTimestamp = VK_QUERY_TYPE_TIMESTAMP, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eResultStatusOnlyKHR = VK_QUERY_TYPE_RESULT_STATUS_ONLY_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eTransformFeedbackStreamEXT = VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT, - ePerformanceQueryKHR = VK_QUERY_TYPE_PERFORMANCE_QUERY_KHR, - eAccelerationStructureCompactedSizeKHR = VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR, - eAccelerationStructureSerializationSizeKHR = VK_QUERY_TYPE_ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR, - eAccelerationStructureCompactedSizeNV = VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV, - ePerformanceQueryINTEL = VK_QUERY_TYPE_PERFORMANCE_QUERY_INTEL, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeBitstreamBufferRangeKHR = VK_QUERY_TYPE_VIDEO_ENCODE_BITSTREAM_BUFFER_RANGE_KHR -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - - VULKAN_HPP_INLINE std::string to_string( QueryType value ) - { - switch ( value ) - { - case QueryType::eOcclusion: return "Occlusion"; - case QueryType::ePipelineStatistics: return "PipelineStatistics"; - case QueryType::eTimestamp: return "Timestamp"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case QueryType::eResultStatusOnlyKHR: return "ResultStatusOnlyKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case QueryType::eTransformFeedbackStreamEXT: return "TransformFeedbackStreamEXT"; - case QueryType::ePerformanceQueryKHR: return "PerformanceQueryKHR"; - case QueryType::eAccelerationStructureCompactedSizeKHR: return "AccelerationStructureCompactedSizeKHR"; - case QueryType::eAccelerationStructureSerializationSizeKHR: return "AccelerationStructureSerializationSizeKHR"; - case QueryType::eAccelerationStructureCompactedSizeNV: return "AccelerationStructureCompactedSizeNV"; - case QueryType::ePerformanceQueryINTEL: return "PerformanceQueryINTEL"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case QueryType::eVideoEncodeBitstreamBufferRangeKHR: return "VideoEncodeBitstreamBufferRangeKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryPoolCreateFlagBits - { - }; - - VULKAN_HPP_INLINE std::string to_string( QueryPoolCreateFlagBits ) - { - return "(void)"; - } - - enum class BufferCreateFlagBits : VkBufferCreateFlags - { - eSparseBinding = VK_BUFFER_CREATE_SPARSE_BINDING_BIT, - eSparseResidency = VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT, - eSparseAliased = VK_BUFFER_CREATE_SPARSE_ALIASED_BIT, - eProtected = VK_BUFFER_CREATE_PROTECTED_BIT, - eDeviceAddressCaptureReplay = VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT, - eDeviceAddressCaptureReplayEXT = VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_EXT, - eDeviceAddressCaptureReplayKHR = VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( BufferCreateFlagBits value ) - { - switch ( value ) - { - case BufferCreateFlagBits::eSparseBinding: return "SparseBinding"; - case BufferCreateFlagBits::eSparseResidency: return "SparseResidency"; - case BufferCreateFlagBits::eSparseAliased: return "SparseAliased"; - case BufferCreateFlagBits::eProtected: return "Protected"; - case BufferCreateFlagBits::eDeviceAddressCaptureReplay: return "DeviceAddressCaptureReplay"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class BufferUsageFlagBits : VkBufferUsageFlags - { - eTransferSrc = VK_BUFFER_USAGE_TRANSFER_SRC_BIT, - eTransferDst = VK_BUFFER_USAGE_TRANSFER_DST_BIT, - eUniformTexelBuffer = VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT, - eStorageTexelBuffer = VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT, - eUniformBuffer = VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT, - eStorageBuffer = VK_BUFFER_USAGE_STORAGE_BUFFER_BIT, - eIndexBuffer = VK_BUFFER_USAGE_INDEX_BUFFER_BIT, - eVertexBuffer = VK_BUFFER_USAGE_VERTEX_BUFFER_BIT, - eIndirectBuffer = VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT, - eShaderDeviceAddress = VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeSrcKHR = VK_BUFFER_USAGE_VIDEO_DECODE_SRC_BIT_KHR, - eVideoDecodeDstKHR = VK_BUFFER_USAGE_VIDEO_DECODE_DST_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eTransformFeedbackBufferEXT = VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_BUFFER_BIT_EXT, - eTransformFeedbackCounterBufferEXT = VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_COUNTER_BUFFER_BIT_EXT, - eConditionalRenderingEXT = VK_BUFFER_USAGE_CONDITIONAL_RENDERING_BIT_EXT, - eAccelerationStructureBuildInputReadOnlyKHR = VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_BIT_KHR, - eAccelerationStructureStorageKHR = VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_STORAGE_BIT_KHR, - eShaderBindingTableKHR = VK_BUFFER_USAGE_SHADER_BINDING_TABLE_BIT_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeDstKHR = VK_BUFFER_USAGE_VIDEO_ENCODE_DST_BIT_KHR, - eVideoEncodeSrcKHR = VK_BUFFER_USAGE_VIDEO_ENCODE_SRC_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eRayTracingNV = VK_BUFFER_USAGE_RAY_TRACING_BIT_NV, - eShaderDeviceAddressEXT = VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT_EXT, - eShaderDeviceAddressKHR = VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( BufferUsageFlagBits value ) - { - switch ( value ) - { - case BufferUsageFlagBits::eTransferSrc: return "TransferSrc"; - case BufferUsageFlagBits::eTransferDst: return "TransferDst"; - case BufferUsageFlagBits::eUniformTexelBuffer: return "UniformTexelBuffer"; - case BufferUsageFlagBits::eStorageTexelBuffer: return "StorageTexelBuffer"; - case BufferUsageFlagBits::eUniformBuffer: return "UniformBuffer"; - case BufferUsageFlagBits::eStorageBuffer: return "StorageBuffer"; - case BufferUsageFlagBits::eIndexBuffer: return "IndexBuffer"; - case BufferUsageFlagBits::eVertexBuffer: return "VertexBuffer"; - case BufferUsageFlagBits::eIndirectBuffer: return "IndirectBuffer"; - case BufferUsageFlagBits::eShaderDeviceAddress: return "ShaderDeviceAddress"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case BufferUsageFlagBits::eVideoDecodeSrcKHR: return "VideoDecodeSrcKHR"; - case BufferUsageFlagBits::eVideoDecodeDstKHR: return "VideoDecodeDstKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case BufferUsageFlagBits::eTransformFeedbackBufferEXT: return "TransformFeedbackBufferEXT"; - case BufferUsageFlagBits::eTransformFeedbackCounterBufferEXT: return "TransformFeedbackCounterBufferEXT"; - case BufferUsageFlagBits::eConditionalRenderingEXT: return "ConditionalRenderingEXT"; - case BufferUsageFlagBits::eAccelerationStructureBuildInputReadOnlyKHR: - return "AccelerationStructureBuildInputReadOnlyKHR"; - case BufferUsageFlagBits::eAccelerationStructureStorageKHR: return "AccelerationStructureStorageKHR"; - case BufferUsageFlagBits::eShaderBindingTableKHR: return "ShaderBindingTableKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case BufferUsageFlagBits::eVideoEncodeDstKHR: return "VideoEncodeDstKHR"; - case BufferUsageFlagBits::eVideoEncodeSrcKHR: return "VideoEncodeSrcKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SharingMode - { - eExclusive = VK_SHARING_MODE_EXCLUSIVE, - eConcurrent = VK_SHARING_MODE_CONCURRENT - }; - - VULKAN_HPP_INLINE std::string to_string( SharingMode value ) - { - switch ( value ) - { - case SharingMode::eExclusive: return "Exclusive"; - case SharingMode::eConcurrent: return "Concurrent"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class BufferViewCreateFlagBits : VkBufferViewCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( BufferViewCreateFlagBits ) - { - return "(void)"; - } - - enum class ImageLayout - { - eUndefined = VK_IMAGE_LAYOUT_UNDEFINED, - eGeneral = VK_IMAGE_LAYOUT_GENERAL, - eColorAttachmentOptimal = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, - eDepthStencilAttachmentOptimal = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL, - eDepthStencilReadOnlyOptimal = VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL, - eShaderReadOnlyOptimal = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL, - eTransferSrcOptimal = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, - eTransferDstOptimal = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, - ePreinitialized = VK_IMAGE_LAYOUT_PREINITIALIZED, - eDepthReadOnlyStencilAttachmentOptimal = VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL, - eDepthAttachmentStencilReadOnlyOptimal = VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL, - eDepthAttachmentOptimal = VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL, - eDepthReadOnlyOptimal = VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL, - eStencilAttachmentOptimal = VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL, - eStencilReadOnlyOptimal = VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL, - eReadOnlyOptimal = VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL, - eAttachmentOptimal = VK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL, - ePresentSrcKHR = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeDstKHR = VK_IMAGE_LAYOUT_VIDEO_DECODE_DST_KHR, - eVideoDecodeSrcKHR = VK_IMAGE_LAYOUT_VIDEO_DECODE_SRC_KHR, - eVideoDecodeDpbKHR = VK_IMAGE_LAYOUT_VIDEO_DECODE_DPB_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eSharedPresentKHR = VK_IMAGE_LAYOUT_SHARED_PRESENT_KHR, - eFragmentDensityMapOptimalEXT = VK_IMAGE_LAYOUT_FRAGMENT_DENSITY_MAP_OPTIMAL_EXT, - eFragmentShadingRateAttachmentOptimalKHR = VK_IMAGE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeDstKHR = VK_IMAGE_LAYOUT_VIDEO_ENCODE_DST_KHR, - eVideoEncodeSrcKHR = VK_IMAGE_LAYOUT_VIDEO_ENCODE_SRC_KHR, - eVideoEncodeDpbKHR = VK_IMAGE_LAYOUT_VIDEO_ENCODE_DPB_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eAttachmentOptimalKHR = VK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL_KHR, - eDepthAttachmentOptimalKHR = VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL_KHR, - eDepthAttachmentStencilReadOnlyOptimalKHR = VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL_KHR, - eDepthReadOnlyOptimalKHR = VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL_KHR, - eDepthReadOnlyStencilAttachmentOptimalKHR = VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL_KHR, - eReadOnlyOptimalKHR = VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL_KHR, - eShadingRateOptimalNV = VK_IMAGE_LAYOUT_SHADING_RATE_OPTIMAL_NV, - eStencilAttachmentOptimalKHR = VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL_KHR, - eStencilReadOnlyOptimalKHR = VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( ImageLayout value ) - { - switch ( value ) - { - case ImageLayout::eUndefined: return "Undefined"; - case ImageLayout::eGeneral: return "General"; - case ImageLayout::eColorAttachmentOptimal: return "ColorAttachmentOptimal"; - case ImageLayout::eDepthStencilAttachmentOptimal: return "DepthStencilAttachmentOptimal"; - case ImageLayout::eDepthStencilReadOnlyOptimal: return "DepthStencilReadOnlyOptimal"; - case ImageLayout::eShaderReadOnlyOptimal: return "ShaderReadOnlyOptimal"; - case ImageLayout::eTransferSrcOptimal: return "TransferSrcOptimal"; - case ImageLayout::eTransferDstOptimal: return "TransferDstOptimal"; - case ImageLayout::ePreinitialized: return "Preinitialized"; - case ImageLayout::eDepthReadOnlyStencilAttachmentOptimal: return "DepthReadOnlyStencilAttachmentOptimal"; - case ImageLayout::eDepthAttachmentStencilReadOnlyOptimal: return "DepthAttachmentStencilReadOnlyOptimal"; - case ImageLayout::eDepthAttachmentOptimal: return "DepthAttachmentOptimal"; - case ImageLayout::eDepthReadOnlyOptimal: return "DepthReadOnlyOptimal"; - case ImageLayout::eStencilAttachmentOptimal: return "StencilAttachmentOptimal"; - case ImageLayout::eStencilReadOnlyOptimal: return "StencilReadOnlyOptimal"; - case ImageLayout::eReadOnlyOptimal: return "ReadOnlyOptimal"; - case ImageLayout::eAttachmentOptimal: return "AttachmentOptimal"; - case ImageLayout::ePresentSrcKHR: return "PresentSrcKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case ImageLayout::eVideoDecodeDstKHR: return "VideoDecodeDstKHR"; - case ImageLayout::eVideoDecodeSrcKHR: return "VideoDecodeSrcKHR"; - case ImageLayout::eVideoDecodeDpbKHR: return "VideoDecodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case ImageLayout::eSharedPresentKHR: return "SharedPresentKHR"; - case ImageLayout::eFragmentDensityMapOptimalEXT: return "FragmentDensityMapOptimalEXT"; - case ImageLayout::eFragmentShadingRateAttachmentOptimalKHR: return "FragmentShadingRateAttachmentOptimalKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case ImageLayout::eVideoEncodeDstKHR: return "VideoEncodeDstKHR"; - case ImageLayout::eVideoEncodeSrcKHR: return "VideoEncodeSrcKHR"; - case ImageLayout::eVideoEncodeDpbKHR: return "VideoEncodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ComponentSwizzle - { - eIdentity = VK_COMPONENT_SWIZZLE_IDENTITY, - eZero = VK_COMPONENT_SWIZZLE_ZERO, - eOne = VK_COMPONENT_SWIZZLE_ONE, - eR = VK_COMPONENT_SWIZZLE_R, - eG = VK_COMPONENT_SWIZZLE_G, - eB = VK_COMPONENT_SWIZZLE_B, - eA = VK_COMPONENT_SWIZZLE_A - }; - - VULKAN_HPP_INLINE std::string to_string( ComponentSwizzle value ) - { - switch ( value ) - { - case ComponentSwizzle::eIdentity: return "Identity"; - case ComponentSwizzle::eZero: return "Zero"; - case ComponentSwizzle::eOne: return "One"; - case ComponentSwizzle::eR: return "R"; - case ComponentSwizzle::eG: return "G"; - case ComponentSwizzle::eB: return "B"; - case ComponentSwizzle::eA: return "A"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageViewCreateFlagBits : VkImageViewCreateFlags - { - eFragmentDensityMapDynamicEXT = VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DYNAMIC_BIT_EXT, - eFragmentDensityMapDeferredEXT = VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DEFERRED_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ImageViewCreateFlagBits value ) - { - switch ( value ) - { - case ImageViewCreateFlagBits::eFragmentDensityMapDynamicEXT: return "FragmentDensityMapDynamicEXT"; - case ImageViewCreateFlagBits::eFragmentDensityMapDeferredEXT: return "FragmentDensityMapDeferredEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageViewType - { - e1D = VK_IMAGE_VIEW_TYPE_1D, - e2D = VK_IMAGE_VIEW_TYPE_2D, - e3D = VK_IMAGE_VIEW_TYPE_3D, - eCube = VK_IMAGE_VIEW_TYPE_CUBE, - e1DArray = VK_IMAGE_VIEW_TYPE_1D_ARRAY, - e2DArray = VK_IMAGE_VIEW_TYPE_2D_ARRAY, - eCubeArray = VK_IMAGE_VIEW_TYPE_CUBE_ARRAY - }; - - VULKAN_HPP_INLINE std::string to_string( ImageViewType value ) - { - switch ( value ) - { - case ImageViewType::e1D: return "1D"; - case ImageViewType::e2D: return "2D"; - case ImageViewType::e3D: return "3D"; - case ImageViewType::eCube: return "Cube"; - case ImageViewType::e1DArray: return "1DArray"; - case ImageViewType::e2DArray: return "2DArray"; - case ImageViewType::eCubeArray: return "CubeArray"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ShaderModuleCreateFlagBits : VkShaderModuleCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( ShaderModuleCreateFlagBits ) - { - return "(void)"; - } - - enum class BlendFactor - { - eZero = VK_BLEND_FACTOR_ZERO, - eOne = VK_BLEND_FACTOR_ONE, - eSrcColor = VK_BLEND_FACTOR_SRC_COLOR, - eOneMinusSrcColor = VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR, - eDstColor = VK_BLEND_FACTOR_DST_COLOR, - eOneMinusDstColor = VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR, - eSrcAlpha = VK_BLEND_FACTOR_SRC_ALPHA, - eOneMinusSrcAlpha = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA, - eDstAlpha = VK_BLEND_FACTOR_DST_ALPHA, - eOneMinusDstAlpha = VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA, - eConstantColor = VK_BLEND_FACTOR_CONSTANT_COLOR, - eOneMinusConstantColor = VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR, - eConstantAlpha = VK_BLEND_FACTOR_CONSTANT_ALPHA, - eOneMinusConstantAlpha = VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA, - eSrcAlphaSaturate = VK_BLEND_FACTOR_SRC_ALPHA_SATURATE, - eSrc1Color = VK_BLEND_FACTOR_SRC1_COLOR, - eOneMinusSrc1Color = VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR, - eSrc1Alpha = VK_BLEND_FACTOR_SRC1_ALPHA, - eOneMinusSrc1Alpha = VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA - }; - - VULKAN_HPP_INLINE std::string to_string( BlendFactor value ) - { - switch ( value ) - { - case BlendFactor::eZero: return "Zero"; - case BlendFactor::eOne: return "One"; - case BlendFactor::eSrcColor: return "SrcColor"; - case BlendFactor::eOneMinusSrcColor: return "OneMinusSrcColor"; - case BlendFactor::eDstColor: return "DstColor"; - case BlendFactor::eOneMinusDstColor: return "OneMinusDstColor"; - case BlendFactor::eSrcAlpha: return "SrcAlpha"; - case BlendFactor::eOneMinusSrcAlpha: return "OneMinusSrcAlpha"; - case BlendFactor::eDstAlpha: return "DstAlpha"; - case BlendFactor::eOneMinusDstAlpha: return "OneMinusDstAlpha"; - case BlendFactor::eConstantColor: return "ConstantColor"; - case BlendFactor::eOneMinusConstantColor: return "OneMinusConstantColor"; - case BlendFactor::eConstantAlpha: return "ConstantAlpha"; - case BlendFactor::eOneMinusConstantAlpha: return "OneMinusConstantAlpha"; - case BlendFactor::eSrcAlphaSaturate: return "SrcAlphaSaturate"; - case BlendFactor::eSrc1Color: return "Src1Color"; - case BlendFactor::eOneMinusSrc1Color: return "OneMinusSrc1Color"; - case BlendFactor::eSrc1Alpha: return "Src1Alpha"; - case BlendFactor::eOneMinusSrc1Alpha: return "OneMinusSrc1Alpha"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class BlendOp - { - eAdd = VK_BLEND_OP_ADD, - eSubtract = VK_BLEND_OP_SUBTRACT, - eReverseSubtract = VK_BLEND_OP_REVERSE_SUBTRACT, - eMin = VK_BLEND_OP_MIN, - eMax = VK_BLEND_OP_MAX, - eZeroEXT = VK_BLEND_OP_ZERO_EXT, - eSrcEXT = VK_BLEND_OP_SRC_EXT, - eDstEXT = VK_BLEND_OP_DST_EXT, - eSrcOverEXT = VK_BLEND_OP_SRC_OVER_EXT, - eDstOverEXT = VK_BLEND_OP_DST_OVER_EXT, - eSrcInEXT = VK_BLEND_OP_SRC_IN_EXT, - eDstInEXT = VK_BLEND_OP_DST_IN_EXT, - eSrcOutEXT = VK_BLEND_OP_SRC_OUT_EXT, - eDstOutEXT = VK_BLEND_OP_DST_OUT_EXT, - eSrcAtopEXT = VK_BLEND_OP_SRC_ATOP_EXT, - eDstAtopEXT = VK_BLEND_OP_DST_ATOP_EXT, - eXorEXT = VK_BLEND_OP_XOR_EXT, - eMultiplyEXT = VK_BLEND_OP_MULTIPLY_EXT, - eScreenEXT = VK_BLEND_OP_SCREEN_EXT, - eOverlayEXT = VK_BLEND_OP_OVERLAY_EXT, - eDarkenEXT = VK_BLEND_OP_DARKEN_EXT, - eLightenEXT = VK_BLEND_OP_LIGHTEN_EXT, - eColordodgeEXT = VK_BLEND_OP_COLORDODGE_EXT, - eColorburnEXT = VK_BLEND_OP_COLORBURN_EXT, - eHardlightEXT = VK_BLEND_OP_HARDLIGHT_EXT, - eSoftlightEXT = VK_BLEND_OP_SOFTLIGHT_EXT, - eDifferenceEXT = VK_BLEND_OP_DIFFERENCE_EXT, - eExclusionEXT = VK_BLEND_OP_EXCLUSION_EXT, - eInvertEXT = VK_BLEND_OP_INVERT_EXT, - eInvertRgbEXT = VK_BLEND_OP_INVERT_RGB_EXT, - eLineardodgeEXT = VK_BLEND_OP_LINEARDODGE_EXT, - eLinearburnEXT = VK_BLEND_OP_LINEARBURN_EXT, - eVividlightEXT = VK_BLEND_OP_VIVIDLIGHT_EXT, - eLinearlightEXT = VK_BLEND_OP_LINEARLIGHT_EXT, - ePinlightEXT = VK_BLEND_OP_PINLIGHT_EXT, - eHardmixEXT = VK_BLEND_OP_HARDMIX_EXT, - eHslHueEXT = VK_BLEND_OP_HSL_HUE_EXT, - eHslSaturationEXT = VK_BLEND_OP_HSL_SATURATION_EXT, - eHslColorEXT = VK_BLEND_OP_HSL_COLOR_EXT, - eHslLuminosityEXT = VK_BLEND_OP_HSL_LUMINOSITY_EXT, - ePlusEXT = VK_BLEND_OP_PLUS_EXT, - ePlusClampedEXT = VK_BLEND_OP_PLUS_CLAMPED_EXT, - ePlusClampedAlphaEXT = VK_BLEND_OP_PLUS_CLAMPED_ALPHA_EXT, - ePlusDarkerEXT = VK_BLEND_OP_PLUS_DARKER_EXT, - eMinusEXT = VK_BLEND_OP_MINUS_EXT, - eMinusClampedEXT = VK_BLEND_OP_MINUS_CLAMPED_EXT, - eContrastEXT = VK_BLEND_OP_CONTRAST_EXT, - eInvertOvgEXT = VK_BLEND_OP_INVERT_OVG_EXT, - eRedEXT = VK_BLEND_OP_RED_EXT, - eGreenEXT = VK_BLEND_OP_GREEN_EXT, - eBlueEXT = VK_BLEND_OP_BLUE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( BlendOp value ) - { - switch ( value ) - { - case BlendOp::eAdd: return "Add"; - case BlendOp::eSubtract: return "Subtract"; - case BlendOp::eReverseSubtract: return "ReverseSubtract"; - case BlendOp::eMin: return "Min"; - case BlendOp::eMax: return "Max"; - case BlendOp::eZeroEXT: return "ZeroEXT"; - case BlendOp::eSrcEXT: return "SrcEXT"; - case BlendOp::eDstEXT: return "DstEXT"; - case BlendOp::eSrcOverEXT: return "SrcOverEXT"; - case BlendOp::eDstOverEXT: return "DstOverEXT"; - case BlendOp::eSrcInEXT: return "SrcInEXT"; - case BlendOp::eDstInEXT: return "DstInEXT"; - case BlendOp::eSrcOutEXT: return "SrcOutEXT"; - case BlendOp::eDstOutEXT: return "DstOutEXT"; - case BlendOp::eSrcAtopEXT: return "SrcAtopEXT"; - case BlendOp::eDstAtopEXT: return "DstAtopEXT"; - case BlendOp::eXorEXT: return "XorEXT"; - case BlendOp::eMultiplyEXT: return "MultiplyEXT"; - case BlendOp::eScreenEXT: return "ScreenEXT"; - case BlendOp::eOverlayEXT: return "OverlayEXT"; - case BlendOp::eDarkenEXT: return "DarkenEXT"; - case BlendOp::eLightenEXT: return "LightenEXT"; - case BlendOp::eColordodgeEXT: return "ColordodgeEXT"; - case BlendOp::eColorburnEXT: return "ColorburnEXT"; - case BlendOp::eHardlightEXT: return "HardlightEXT"; - case BlendOp::eSoftlightEXT: return "SoftlightEXT"; - case BlendOp::eDifferenceEXT: return "DifferenceEXT"; - case BlendOp::eExclusionEXT: return "ExclusionEXT"; - case BlendOp::eInvertEXT: return "InvertEXT"; - case BlendOp::eInvertRgbEXT: return "InvertRgbEXT"; - case BlendOp::eLineardodgeEXT: return "LineardodgeEXT"; - case BlendOp::eLinearburnEXT: return "LinearburnEXT"; - case BlendOp::eVividlightEXT: return "VividlightEXT"; - case BlendOp::eLinearlightEXT: return "LinearlightEXT"; - case BlendOp::ePinlightEXT: return "PinlightEXT"; - case BlendOp::eHardmixEXT: return "HardmixEXT"; - case BlendOp::eHslHueEXT: return "HslHueEXT"; - case BlendOp::eHslSaturationEXT: return "HslSaturationEXT"; - case BlendOp::eHslColorEXT: return "HslColorEXT"; - case BlendOp::eHslLuminosityEXT: return "HslLuminosityEXT"; - case BlendOp::ePlusEXT: return "PlusEXT"; - case BlendOp::ePlusClampedEXT: return "PlusClampedEXT"; - case BlendOp::ePlusClampedAlphaEXT: return "PlusClampedAlphaEXT"; - case BlendOp::ePlusDarkerEXT: return "PlusDarkerEXT"; - case BlendOp::eMinusEXT: return "MinusEXT"; - case BlendOp::eMinusClampedEXT: return "MinusClampedEXT"; - case BlendOp::eContrastEXT: return "ContrastEXT"; - case BlendOp::eInvertOvgEXT: return "InvertOvgEXT"; - case BlendOp::eRedEXT: return "RedEXT"; - case BlendOp::eGreenEXT: return "GreenEXT"; - case BlendOp::eBlueEXT: return "BlueEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ColorComponentFlagBits : VkColorComponentFlags - { - eR = VK_COLOR_COMPONENT_R_BIT, - eG = VK_COLOR_COMPONENT_G_BIT, - eB = VK_COLOR_COMPONENT_B_BIT, - eA = VK_COLOR_COMPONENT_A_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( ColorComponentFlagBits value ) - { - switch ( value ) - { - case ColorComponentFlagBits::eR: return "R"; - case ColorComponentFlagBits::eG: return "G"; - case ColorComponentFlagBits::eB: return "B"; - case ColorComponentFlagBits::eA: return "A"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CompareOp - { - eNever = VK_COMPARE_OP_NEVER, - eLess = VK_COMPARE_OP_LESS, - eEqual = VK_COMPARE_OP_EQUAL, - eLessOrEqual = VK_COMPARE_OP_LESS_OR_EQUAL, - eGreater = VK_COMPARE_OP_GREATER, - eNotEqual = VK_COMPARE_OP_NOT_EQUAL, - eGreaterOrEqual = VK_COMPARE_OP_GREATER_OR_EQUAL, - eAlways = VK_COMPARE_OP_ALWAYS - }; - - VULKAN_HPP_INLINE std::string to_string( CompareOp value ) - { - switch ( value ) - { - case CompareOp::eNever: return "Never"; - case CompareOp::eLess: return "Less"; - case CompareOp::eEqual: return "Equal"; - case CompareOp::eLessOrEqual: return "LessOrEqual"; - case CompareOp::eGreater: return "Greater"; - case CompareOp::eNotEqual: return "NotEqual"; - case CompareOp::eGreaterOrEqual: return "GreaterOrEqual"; - case CompareOp::eAlways: return "Always"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CullModeFlagBits : VkCullModeFlags - { - eNone = VK_CULL_MODE_NONE, - eFront = VK_CULL_MODE_FRONT_BIT, - eBack = VK_CULL_MODE_BACK_BIT, - eFrontAndBack = VK_CULL_MODE_FRONT_AND_BACK - }; - - VULKAN_HPP_INLINE std::string to_string( CullModeFlagBits value ) - { - switch ( value ) - { - case CullModeFlagBits::eNone: return "None"; - case CullModeFlagBits::eFront: return "Front"; - case CullModeFlagBits::eBack: return "Back"; - case CullModeFlagBits::eFrontAndBack: return "FrontAndBack"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DynamicState - { - eViewport = VK_DYNAMIC_STATE_VIEWPORT, - eScissor = VK_DYNAMIC_STATE_SCISSOR, - eLineWidth = VK_DYNAMIC_STATE_LINE_WIDTH, - eDepthBias = VK_DYNAMIC_STATE_DEPTH_BIAS, - eBlendConstants = VK_DYNAMIC_STATE_BLEND_CONSTANTS, - eDepthBounds = VK_DYNAMIC_STATE_DEPTH_BOUNDS, - eStencilCompareMask = VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK, - eStencilWriteMask = VK_DYNAMIC_STATE_STENCIL_WRITE_MASK, - eStencilReference = VK_DYNAMIC_STATE_STENCIL_REFERENCE, - eCullMode = VK_DYNAMIC_STATE_CULL_MODE, - eFrontFace = VK_DYNAMIC_STATE_FRONT_FACE, - ePrimitiveTopology = VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY, - eViewportWithCount = VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT, - eScissorWithCount = VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT, - eVertexInputBindingStride = VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE, - eDepthTestEnable = VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE, - eDepthWriteEnable = VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE, - eDepthCompareOp = VK_DYNAMIC_STATE_DEPTH_COMPARE_OP, - eDepthBoundsTestEnable = VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE, - eStencilTestEnable = VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE, - eStencilOp = VK_DYNAMIC_STATE_STENCIL_OP, - eRasterizerDiscardEnable = VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE, - eDepthBiasEnable = VK_DYNAMIC_STATE_DEPTH_BIAS_ENABLE, - ePrimitiveRestartEnable = VK_DYNAMIC_STATE_PRIMITIVE_RESTART_ENABLE, - eViewportWScalingNV = VK_DYNAMIC_STATE_VIEWPORT_W_SCALING_NV, - eDiscardRectangleEXT = VK_DYNAMIC_STATE_DISCARD_RECTANGLE_EXT, - eSampleLocationsEXT = VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT, - eRayTracingPipelineStackSizeKHR = VK_DYNAMIC_STATE_RAY_TRACING_PIPELINE_STACK_SIZE_KHR, - eViewportShadingRatePaletteNV = VK_DYNAMIC_STATE_VIEWPORT_SHADING_RATE_PALETTE_NV, - eViewportCoarseSampleOrderNV = VK_DYNAMIC_STATE_VIEWPORT_COARSE_SAMPLE_ORDER_NV, - eExclusiveScissorNV = VK_DYNAMIC_STATE_EXCLUSIVE_SCISSOR_NV, - eFragmentShadingRateKHR = VK_DYNAMIC_STATE_FRAGMENT_SHADING_RATE_KHR, - eLineStippleEXT = VK_DYNAMIC_STATE_LINE_STIPPLE_EXT, - eVertexInputEXT = VK_DYNAMIC_STATE_VERTEX_INPUT_EXT, - ePatchControlPointsEXT = VK_DYNAMIC_STATE_PATCH_CONTROL_POINTS_EXT, - eLogicOpEXT = VK_DYNAMIC_STATE_LOGIC_OP_EXT, - eColorWriteEnableEXT = VK_DYNAMIC_STATE_COLOR_WRITE_ENABLE_EXT, - eCullModeEXT = VK_DYNAMIC_STATE_CULL_MODE_EXT, - eDepthBiasEnableEXT = VK_DYNAMIC_STATE_DEPTH_BIAS_ENABLE_EXT, - eDepthBoundsTestEnableEXT = VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE_EXT, - eDepthCompareOpEXT = VK_DYNAMIC_STATE_DEPTH_COMPARE_OP_EXT, - eDepthTestEnableEXT = VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE_EXT, - eDepthWriteEnableEXT = VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE_EXT, - eFrontFaceEXT = VK_DYNAMIC_STATE_FRONT_FACE_EXT, - ePrimitiveRestartEnableEXT = VK_DYNAMIC_STATE_PRIMITIVE_RESTART_ENABLE_EXT, - ePrimitiveTopologyEXT = VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY_EXT, - eRasterizerDiscardEnableEXT = VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE_EXT, - eScissorWithCountEXT = VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT, - eStencilOpEXT = VK_DYNAMIC_STATE_STENCIL_OP_EXT, - eStencilTestEnableEXT = VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE_EXT, - eVertexInputBindingStrideEXT = VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE_EXT, - eViewportWithCountEXT = VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DynamicState value ) - { - switch ( value ) - { - case DynamicState::eViewport: return "Viewport"; - case DynamicState::eScissor: return "Scissor"; - case DynamicState::eLineWidth: return "LineWidth"; - case DynamicState::eDepthBias: return "DepthBias"; - case DynamicState::eBlendConstants: return "BlendConstants"; - case DynamicState::eDepthBounds: return "DepthBounds"; - case DynamicState::eStencilCompareMask: return "StencilCompareMask"; - case DynamicState::eStencilWriteMask: return "StencilWriteMask"; - case DynamicState::eStencilReference: return "StencilReference"; - case DynamicState::eCullMode: return "CullMode"; - case DynamicState::eFrontFace: return "FrontFace"; - case DynamicState::ePrimitiveTopology: return "PrimitiveTopology"; - case DynamicState::eViewportWithCount: return "ViewportWithCount"; - case DynamicState::eScissorWithCount: return "ScissorWithCount"; - case DynamicState::eVertexInputBindingStride: return "VertexInputBindingStride"; - case DynamicState::eDepthTestEnable: return "DepthTestEnable"; - case DynamicState::eDepthWriteEnable: return "DepthWriteEnable"; - case DynamicState::eDepthCompareOp: return "DepthCompareOp"; - case DynamicState::eDepthBoundsTestEnable: return "DepthBoundsTestEnable"; - case DynamicState::eStencilTestEnable: return "StencilTestEnable"; - case DynamicState::eStencilOp: return "StencilOp"; - case DynamicState::eRasterizerDiscardEnable: return "RasterizerDiscardEnable"; - case DynamicState::eDepthBiasEnable: return "DepthBiasEnable"; - case DynamicState::ePrimitiveRestartEnable: return "PrimitiveRestartEnable"; - case DynamicState::eViewportWScalingNV: return "ViewportWScalingNV"; - case DynamicState::eDiscardRectangleEXT: return "DiscardRectangleEXT"; - case DynamicState::eSampleLocationsEXT: return "SampleLocationsEXT"; - case DynamicState::eRayTracingPipelineStackSizeKHR: return "RayTracingPipelineStackSizeKHR"; - case DynamicState::eViewportShadingRatePaletteNV: return "ViewportShadingRatePaletteNV"; - case DynamicState::eViewportCoarseSampleOrderNV: return "ViewportCoarseSampleOrderNV"; - case DynamicState::eExclusiveScissorNV: return "ExclusiveScissorNV"; - case DynamicState::eFragmentShadingRateKHR: return "FragmentShadingRateKHR"; - case DynamicState::eLineStippleEXT: return "LineStippleEXT"; - case DynamicState::eVertexInputEXT: return "VertexInputEXT"; - case DynamicState::ePatchControlPointsEXT: return "PatchControlPointsEXT"; - case DynamicState::eLogicOpEXT: return "LogicOpEXT"; - case DynamicState::eColorWriteEnableEXT: return "ColorWriteEnableEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FrontFace - { - eCounterClockwise = VK_FRONT_FACE_COUNTER_CLOCKWISE, - eClockwise = VK_FRONT_FACE_CLOCKWISE - }; - - VULKAN_HPP_INLINE std::string to_string( FrontFace value ) - { - switch ( value ) - { - case FrontFace::eCounterClockwise: return "CounterClockwise"; - case FrontFace::eClockwise: return "Clockwise"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class LogicOp - { - eClear = VK_LOGIC_OP_CLEAR, - eAnd = VK_LOGIC_OP_AND, - eAndReverse = VK_LOGIC_OP_AND_REVERSE, - eCopy = VK_LOGIC_OP_COPY, - eAndInverted = VK_LOGIC_OP_AND_INVERTED, - eNoOp = VK_LOGIC_OP_NO_OP, - eXor = VK_LOGIC_OP_XOR, - eOr = VK_LOGIC_OP_OR, - eNor = VK_LOGIC_OP_NOR, - eEquivalent = VK_LOGIC_OP_EQUIVALENT, - eInvert = VK_LOGIC_OP_INVERT, - eOrReverse = VK_LOGIC_OP_OR_REVERSE, - eCopyInverted = VK_LOGIC_OP_COPY_INVERTED, - eOrInverted = VK_LOGIC_OP_OR_INVERTED, - eNand = VK_LOGIC_OP_NAND, - eSet = VK_LOGIC_OP_SET - }; - - VULKAN_HPP_INLINE std::string to_string( LogicOp value ) - { - switch ( value ) - { - case LogicOp::eClear: return "Clear"; - case LogicOp::eAnd: return "And"; - case LogicOp::eAndReverse: return "AndReverse"; - case LogicOp::eCopy: return "Copy"; - case LogicOp::eAndInverted: return "AndInverted"; - case LogicOp::eNoOp: return "NoOp"; - case LogicOp::eXor: return "Xor"; - case LogicOp::eOr: return "Or"; - case LogicOp::eNor: return "Nor"; - case LogicOp::eEquivalent: return "Equivalent"; - case LogicOp::eInvert: return "Invert"; - case LogicOp::eOrReverse: return "OrReverse"; - case LogicOp::eCopyInverted: return "CopyInverted"; - case LogicOp::eOrInverted: return "OrInverted"; - case LogicOp::eNand: return "Nand"; - case LogicOp::eSet: return "Set"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineCreateFlagBits : VkPipelineCreateFlags - { - eDisableOptimization = VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, - eAllowDerivatives = VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT, - eDerivative = VK_PIPELINE_CREATE_DERIVATIVE_BIT, - eViewIndexFromDeviceIndex = VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT, - eDispatchBase = VK_PIPELINE_CREATE_DISPATCH_BASE_BIT, - eFailOnPipelineCompileRequired = VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT, - eEarlyReturnOnFailure = VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT, - eRenderingFragmentShadingRateAttachmentKHR = VK_PIPELINE_CREATE_RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, - eRenderingFragmentDensityMapAttachmentEXT = VK_PIPELINE_CREATE_RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_BIT_EXT, - eRayTracingNoNullAnyHitShadersKHR = VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_ANY_HIT_SHADERS_BIT_KHR, - eRayTracingNoNullClosestHitShadersKHR = VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS_BIT_KHR, - eRayTracingNoNullMissShadersKHR = VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_MISS_SHADERS_BIT_KHR, - eRayTracingNoNullIntersectionShadersKHR = VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_INTERSECTION_SHADERS_BIT_KHR, - eRayTracingSkipTrianglesKHR = VK_PIPELINE_CREATE_RAY_TRACING_SKIP_TRIANGLES_BIT_KHR, - eRayTracingSkipAabbsKHR = VK_PIPELINE_CREATE_RAY_TRACING_SKIP_AABBS_BIT_KHR, - eRayTracingShaderGroupHandleCaptureReplayKHR = - VK_PIPELINE_CREATE_RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY_BIT_KHR, - eDeferCompileNV = VK_PIPELINE_CREATE_DEFER_COMPILE_BIT_NV, - eCaptureStatisticsKHR = VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR, - eCaptureInternalRepresentationsKHR = VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR, - eIndirectBindableNV = VK_PIPELINE_CREATE_INDIRECT_BINDABLE_BIT_NV, - eLibraryKHR = VK_PIPELINE_CREATE_LIBRARY_BIT_KHR, - eRayTracingAllowMotionNV = VK_PIPELINE_CREATE_RAY_TRACING_ALLOW_MOTION_BIT_NV, - eDispatchBaseKHR = VK_PIPELINE_CREATE_DISPATCH_BASE_KHR, - eEarlyReturnOnFailureEXT = VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT_EXT, - eFailOnPipelineCompileRequiredEXT = VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT, - eViewIndexFromDeviceIndexKHR = VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT_KHR, - eVkPipelineRasterizationStateCreateFragmentDensityMapAttachmentEXT = - VK_PIPELINE_RASTERIZATION_STATE_CREATE_FRAGMENT_DENSITY_MAP_ATTACHMENT_BIT_EXT, - eVkPipelineRasterizationStateCreateFragmentShadingRateAttachmentKHR = - VK_PIPELINE_RASTERIZATION_STATE_CREATE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCreateFlagBits value ) - { - switch ( value ) - { - case PipelineCreateFlagBits::eDisableOptimization: return "DisableOptimization"; - case PipelineCreateFlagBits::eAllowDerivatives: return "AllowDerivatives"; - case PipelineCreateFlagBits::eDerivative: return "Derivative"; - case PipelineCreateFlagBits::eViewIndexFromDeviceIndex: return "ViewIndexFromDeviceIndex"; - case PipelineCreateFlagBits::eDispatchBase: return "DispatchBase"; - case PipelineCreateFlagBits::eFailOnPipelineCompileRequired: return "FailOnPipelineCompileRequired"; - case PipelineCreateFlagBits::eEarlyReturnOnFailure: return "EarlyReturnOnFailure"; - case PipelineCreateFlagBits::eRenderingFragmentShadingRateAttachmentKHR: - return "RenderingFragmentShadingRateAttachmentKHR"; - case PipelineCreateFlagBits::eRenderingFragmentDensityMapAttachmentEXT: - return "RenderingFragmentDensityMapAttachmentEXT"; - case PipelineCreateFlagBits::eRayTracingNoNullAnyHitShadersKHR: return "RayTracingNoNullAnyHitShadersKHR"; - case PipelineCreateFlagBits::eRayTracingNoNullClosestHitShadersKHR: return "RayTracingNoNullClosestHitShadersKHR"; - case PipelineCreateFlagBits::eRayTracingNoNullMissShadersKHR: return "RayTracingNoNullMissShadersKHR"; - case PipelineCreateFlagBits::eRayTracingNoNullIntersectionShadersKHR: - return "RayTracingNoNullIntersectionShadersKHR"; - case PipelineCreateFlagBits::eRayTracingSkipTrianglesKHR: return "RayTracingSkipTrianglesKHR"; - case PipelineCreateFlagBits::eRayTracingSkipAabbsKHR: return "RayTracingSkipAabbsKHR"; - case PipelineCreateFlagBits::eRayTracingShaderGroupHandleCaptureReplayKHR: - return "RayTracingShaderGroupHandleCaptureReplayKHR"; - case PipelineCreateFlagBits::eDeferCompileNV: return "DeferCompileNV"; - case PipelineCreateFlagBits::eCaptureStatisticsKHR: return "CaptureStatisticsKHR"; - case PipelineCreateFlagBits::eCaptureInternalRepresentationsKHR: return "CaptureInternalRepresentationsKHR"; - case PipelineCreateFlagBits::eIndirectBindableNV: return "IndirectBindableNV"; - case PipelineCreateFlagBits::eLibraryKHR: return "LibraryKHR"; - case PipelineCreateFlagBits::eRayTracingAllowMotionNV: return "RayTracingAllowMotionNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineShaderStageCreateFlagBits : VkPipelineShaderStageCreateFlags - { - eAllowVaryingSubgroupSize = VK_PIPELINE_SHADER_STAGE_CREATE_ALLOW_VARYING_SUBGROUP_SIZE_BIT, - eRequireFullSubgroups = VK_PIPELINE_SHADER_STAGE_CREATE_REQUIRE_FULL_SUBGROUPS_BIT, - eAllowVaryingSubgroupSizeEXT = VK_PIPELINE_SHADER_STAGE_CREATE_ALLOW_VARYING_SUBGROUP_SIZE_BIT_EXT, - eRequireFullSubgroupsEXT = VK_PIPELINE_SHADER_STAGE_CREATE_REQUIRE_FULL_SUBGROUPS_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineShaderStageCreateFlagBits value ) - { - switch ( value ) - { - case PipelineShaderStageCreateFlagBits::eAllowVaryingSubgroupSize: return "AllowVaryingSubgroupSize"; - case PipelineShaderStageCreateFlagBits::eRequireFullSubgroups: return "RequireFullSubgroups"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PolygonMode - { - eFill = VK_POLYGON_MODE_FILL, - eLine = VK_POLYGON_MODE_LINE, - ePoint = VK_POLYGON_MODE_POINT, - eFillRectangleNV = VK_POLYGON_MODE_FILL_RECTANGLE_NV - }; - - VULKAN_HPP_INLINE std::string to_string( PolygonMode value ) - { - switch ( value ) - { - case PolygonMode::eFill: return "Fill"; - case PolygonMode::eLine: return "Line"; - case PolygonMode::ePoint: return "Point"; - case PolygonMode::eFillRectangleNV: return "FillRectangleNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PrimitiveTopology - { - ePointList = VK_PRIMITIVE_TOPOLOGY_POINT_LIST, - eLineList = VK_PRIMITIVE_TOPOLOGY_LINE_LIST, - eLineStrip = VK_PRIMITIVE_TOPOLOGY_LINE_STRIP, - eTriangleList = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST, - eTriangleStrip = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP, - eTriangleFan = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN, - eLineListWithAdjacency = VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY, - eLineStripWithAdjacency = VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY, - eTriangleListWithAdjacency = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY, - eTriangleStripWithAdjacency = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY, - ePatchList = VK_PRIMITIVE_TOPOLOGY_PATCH_LIST - }; - - VULKAN_HPP_INLINE std::string to_string( PrimitiveTopology value ) - { - switch ( value ) - { - case PrimitiveTopology::ePointList: return "PointList"; - case PrimitiveTopology::eLineList: return "LineList"; - case PrimitiveTopology::eLineStrip: return "LineStrip"; - case PrimitiveTopology::eTriangleList: return "TriangleList"; - case PrimitiveTopology::eTriangleStrip: return "TriangleStrip"; - case PrimitiveTopology::eTriangleFan: return "TriangleFan"; - case PrimitiveTopology::eLineListWithAdjacency: return "LineListWithAdjacency"; - case PrimitiveTopology::eLineStripWithAdjacency: return "LineStripWithAdjacency"; - case PrimitiveTopology::eTriangleListWithAdjacency: return "TriangleListWithAdjacency"; - case PrimitiveTopology::eTriangleStripWithAdjacency: return "TriangleStripWithAdjacency"; - case PrimitiveTopology::ePatchList: return "PatchList"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ShaderStageFlagBits : VkShaderStageFlags - { - eVertex = VK_SHADER_STAGE_VERTEX_BIT, - eTessellationControl = VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT, - eTessellationEvaluation = VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT, - eGeometry = VK_SHADER_STAGE_GEOMETRY_BIT, - eFragment = VK_SHADER_STAGE_FRAGMENT_BIT, - eCompute = VK_SHADER_STAGE_COMPUTE_BIT, - eAllGraphics = VK_SHADER_STAGE_ALL_GRAPHICS, - eAll = VK_SHADER_STAGE_ALL, - eRaygenKHR = VK_SHADER_STAGE_RAYGEN_BIT_KHR, - eAnyHitKHR = VK_SHADER_STAGE_ANY_HIT_BIT_KHR, - eClosestHitKHR = VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR, - eMissKHR = VK_SHADER_STAGE_MISS_BIT_KHR, - eIntersectionKHR = VK_SHADER_STAGE_INTERSECTION_BIT_KHR, - eCallableKHR = VK_SHADER_STAGE_CALLABLE_BIT_KHR, - eTaskNV = VK_SHADER_STAGE_TASK_BIT_NV, - eMeshNV = VK_SHADER_STAGE_MESH_BIT_NV, - eSubpassShadingHUAWEI = VK_SHADER_STAGE_SUBPASS_SHADING_BIT_HUAWEI, - eAnyHitNV = VK_SHADER_STAGE_ANY_HIT_BIT_NV, - eCallableNV = VK_SHADER_STAGE_CALLABLE_BIT_NV, - eClosestHitNV = VK_SHADER_STAGE_CLOSEST_HIT_BIT_NV, - eIntersectionNV = VK_SHADER_STAGE_INTERSECTION_BIT_NV, - eMissNV = VK_SHADER_STAGE_MISS_BIT_NV, - eRaygenNV = VK_SHADER_STAGE_RAYGEN_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ShaderStageFlagBits value ) - { - switch ( value ) - { - case ShaderStageFlagBits::eVertex: return "Vertex"; - case ShaderStageFlagBits::eTessellationControl: return "TessellationControl"; - case ShaderStageFlagBits::eTessellationEvaluation: return "TessellationEvaluation"; - case ShaderStageFlagBits::eGeometry: return "Geometry"; - case ShaderStageFlagBits::eFragment: return "Fragment"; - case ShaderStageFlagBits::eCompute: return "Compute"; - case ShaderStageFlagBits::eAllGraphics: return "AllGraphics"; - case ShaderStageFlagBits::eAll: return "All"; - case ShaderStageFlagBits::eRaygenKHR: return "RaygenKHR"; - case ShaderStageFlagBits::eAnyHitKHR: return "AnyHitKHR"; - case ShaderStageFlagBits::eClosestHitKHR: return "ClosestHitKHR"; - case ShaderStageFlagBits::eMissKHR: return "MissKHR"; - case ShaderStageFlagBits::eIntersectionKHR: return "IntersectionKHR"; - case ShaderStageFlagBits::eCallableKHR: return "CallableKHR"; - case ShaderStageFlagBits::eTaskNV: return "TaskNV"; - case ShaderStageFlagBits::eMeshNV: return "MeshNV"; - case ShaderStageFlagBits::eSubpassShadingHUAWEI: return "SubpassShadingHUAWEI"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class StencilOp - { - eKeep = VK_STENCIL_OP_KEEP, - eZero = VK_STENCIL_OP_ZERO, - eReplace = VK_STENCIL_OP_REPLACE, - eIncrementAndClamp = VK_STENCIL_OP_INCREMENT_AND_CLAMP, - eDecrementAndClamp = VK_STENCIL_OP_DECREMENT_AND_CLAMP, - eInvert = VK_STENCIL_OP_INVERT, - eIncrementAndWrap = VK_STENCIL_OP_INCREMENT_AND_WRAP, - eDecrementAndWrap = VK_STENCIL_OP_DECREMENT_AND_WRAP - }; - - VULKAN_HPP_INLINE std::string to_string( StencilOp value ) - { - switch ( value ) - { - case StencilOp::eKeep: return "Keep"; - case StencilOp::eZero: return "Zero"; - case StencilOp::eReplace: return "Replace"; - case StencilOp::eIncrementAndClamp: return "IncrementAndClamp"; - case StencilOp::eDecrementAndClamp: return "DecrementAndClamp"; - case StencilOp::eInvert: return "Invert"; - case StencilOp::eIncrementAndWrap: return "IncrementAndWrap"; - case StencilOp::eDecrementAndWrap: return "DecrementAndWrap"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VertexInputRate - { - eVertex = VK_VERTEX_INPUT_RATE_VERTEX, - eInstance = VK_VERTEX_INPUT_RATE_INSTANCE - }; - - VULKAN_HPP_INLINE std::string to_string( VertexInputRate value ) - { - switch ( value ) - { - case VertexInputRate::eVertex: return "Vertex"; - case VertexInputRate::eInstance: return "Instance"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineDynamicStateCreateFlagBits : VkPipelineDynamicStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineDynamicStateCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineInputAssemblyStateCreateFlagBits : VkPipelineInputAssemblyStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineInputAssemblyStateCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineLayoutCreateFlagBits : VkPipelineLayoutCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineLayoutCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineMultisampleStateCreateFlagBits : VkPipelineMultisampleStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineMultisampleStateCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineRasterizationStateCreateFlagBits : VkPipelineRasterizationStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationStateCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineTessellationStateCreateFlagBits : VkPipelineTessellationStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineTessellationStateCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineVertexInputStateCreateFlagBits : VkPipelineVertexInputStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineVertexInputStateCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineViewportStateCreateFlagBits : VkPipelineViewportStateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineViewportStateCreateFlagBits ) - { - return "(void)"; - } - - enum class BorderColor - { - eFloatTransparentBlack = VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK, - eIntTransparentBlack = VK_BORDER_COLOR_INT_TRANSPARENT_BLACK, - eFloatOpaqueBlack = VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK, - eIntOpaqueBlack = VK_BORDER_COLOR_INT_OPAQUE_BLACK, - eFloatOpaqueWhite = VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE, - eIntOpaqueWhite = VK_BORDER_COLOR_INT_OPAQUE_WHITE, - eFloatCustomEXT = VK_BORDER_COLOR_FLOAT_CUSTOM_EXT, - eIntCustomEXT = VK_BORDER_COLOR_INT_CUSTOM_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( BorderColor value ) - { - switch ( value ) - { - case BorderColor::eFloatTransparentBlack: return "FloatTransparentBlack"; - case BorderColor::eIntTransparentBlack: return "IntTransparentBlack"; - case BorderColor::eFloatOpaqueBlack: return "FloatOpaqueBlack"; - case BorderColor::eIntOpaqueBlack: return "IntOpaqueBlack"; - case BorderColor::eFloatOpaqueWhite: return "FloatOpaqueWhite"; - case BorderColor::eIntOpaqueWhite: return "IntOpaqueWhite"; - case BorderColor::eFloatCustomEXT: return "FloatCustomEXT"; - case BorderColor::eIntCustomEXT: return "IntCustomEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class Filter - { - eNearest = VK_FILTER_NEAREST, - eLinear = VK_FILTER_LINEAR, - eCubicIMG = VK_FILTER_CUBIC_IMG, - eCubicEXT = VK_FILTER_CUBIC_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( Filter value ) - { - switch ( value ) - { - case Filter::eNearest: return "Nearest"; - case Filter::eLinear: return "Linear"; - case Filter::eCubicIMG: return "CubicIMG"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SamplerAddressMode - { - eRepeat = VK_SAMPLER_ADDRESS_MODE_REPEAT, - eMirroredRepeat = VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT, - eClampToEdge = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE, - eClampToBorder = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER, - eMirrorClampToEdge = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE, - eMirrorClampToEdgeKHR = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( SamplerAddressMode value ) - { - switch ( value ) - { - case SamplerAddressMode::eRepeat: return "Repeat"; - case SamplerAddressMode::eMirroredRepeat: return "MirroredRepeat"; - case SamplerAddressMode::eClampToEdge: return "ClampToEdge"; - case SamplerAddressMode::eClampToBorder: return "ClampToBorder"; - case SamplerAddressMode::eMirrorClampToEdge: return "MirrorClampToEdge"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SamplerCreateFlagBits : VkSamplerCreateFlags - { - eSubsampledEXT = VK_SAMPLER_CREATE_SUBSAMPLED_BIT_EXT, - eSubsampledCoarseReconstructionEXT = VK_SAMPLER_CREATE_SUBSAMPLED_COARSE_RECONSTRUCTION_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( SamplerCreateFlagBits value ) - { - switch ( value ) - { - case SamplerCreateFlagBits::eSubsampledEXT: return "SubsampledEXT"; - case SamplerCreateFlagBits::eSubsampledCoarseReconstructionEXT: return "SubsampledCoarseReconstructionEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SamplerMipmapMode - { - eNearest = VK_SAMPLER_MIPMAP_MODE_NEAREST, - eLinear = VK_SAMPLER_MIPMAP_MODE_LINEAR - }; - - VULKAN_HPP_INLINE std::string to_string( SamplerMipmapMode value ) - { - switch ( value ) - { - case SamplerMipmapMode::eNearest: return "Nearest"; - case SamplerMipmapMode::eLinear: return "Linear"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorPoolCreateFlagBits : VkDescriptorPoolCreateFlags - { - eFreeDescriptorSet = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, - eUpdateAfterBind = VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT, - eHostOnlyVALVE = VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_VALVE, - eUpdateAfterBindEXT = VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DescriptorPoolCreateFlagBits value ) - { - switch ( value ) - { - case DescriptorPoolCreateFlagBits::eFreeDescriptorSet: return "FreeDescriptorSet"; - case DescriptorPoolCreateFlagBits::eUpdateAfterBind: return "UpdateAfterBind"; - case DescriptorPoolCreateFlagBits::eHostOnlyVALVE: return "HostOnlyVALVE"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorSetLayoutCreateFlagBits : VkDescriptorSetLayoutCreateFlags - { - eUpdateAfterBindPool = VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT, - ePushDescriptorKHR = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR, - eHostOnlyPoolVALVE = VK_DESCRIPTOR_SET_LAYOUT_CREATE_HOST_ONLY_POOL_BIT_VALVE, - eUpdateAfterBindPoolEXT = VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DescriptorSetLayoutCreateFlagBits value ) - { - switch ( value ) - { - case DescriptorSetLayoutCreateFlagBits::eUpdateAfterBindPool: return "UpdateAfterBindPool"; - case DescriptorSetLayoutCreateFlagBits::ePushDescriptorKHR: return "PushDescriptorKHR"; - case DescriptorSetLayoutCreateFlagBits::eHostOnlyPoolVALVE: return "HostOnlyPoolVALVE"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorType - { - eSampler = VK_DESCRIPTOR_TYPE_SAMPLER, - eCombinedImageSampler = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, - eSampledImage = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE, - eStorageImage = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, - eUniformTexelBuffer = VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER, - eStorageTexelBuffer = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER, - eUniformBuffer = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, - eStorageBuffer = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, - eUniformBufferDynamic = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC, - eStorageBufferDynamic = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC, - eInputAttachment = VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT, - eInlineUniformBlock = VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK, - eAccelerationStructureKHR = VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR, - eAccelerationStructureNV = VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_NV, - eMutableVALVE = VK_DESCRIPTOR_TYPE_MUTABLE_VALVE, - eInlineUniformBlockEXT = VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DescriptorType value ) - { - switch ( value ) - { - case DescriptorType::eSampler: return "Sampler"; - case DescriptorType::eCombinedImageSampler: return "CombinedImageSampler"; - case DescriptorType::eSampledImage: return "SampledImage"; - case DescriptorType::eStorageImage: return "StorageImage"; - case DescriptorType::eUniformTexelBuffer: return "UniformTexelBuffer"; - case DescriptorType::eStorageTexelBuffer: return "StorageTexelBuffer"; - case DescriptorType::eUniformBuffer: return "UniformBuffer"; - case DescriptorType::eStorageBuffer: return "StorageBuffer"; - case DescriptorType::eUniformBufferDynamic: return "UniformBufferDynamic"; - case DescriptorType::eStorageBufferDynamic: return "StorageBufferDynamic"; - case DescriptorType::eInputAttachment: return "InputAttachment"; - case DescriptorType::eInlineUniformBlock: return "InlineUniformBlock"; - case DescriptorType::eAccelerationStructureKHR: return "AccelerationStructureKHR"; - case DescriptorType::eAccelerationStructureNV: return "AccelerationStructureNV"; - case DescriptorType::eMutableVALVE: return "MutableVALVE"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorPoolResetFlagBits : VkDescriptorPoolResetFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( DescriptorPoolResetFlagBits ) - { - return "(void)"; - } - - enum class AccessFlagBits : VkAccessFlags - { - eIndirectCommandRead = VK_ACCESS_INDIRECT_COMMAND_READ_BIT, - eIndexRead = VK_ACCESS_INDEX_READ_BIT, - eVertexAttributeRead = VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT, - eUniformRead = VK_ACCESS_UNIFORM_READ_BIT, - eInputAttachmentRead = VK_ACCESS_INPUT_ATTACHMENT_READ_BIT, - eShaderRead = VK_ACCESS_SHADER_READ_BIT, - eShaderWrite = VK_ACCESS_SHADER_WRITE_BIT, - eColorAttachmentRead = VK_ACCESS_COLOR_ATTACHMENT_READ_BIT, - eColorAttachmentWrite = VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT, - eDepthStencilAttachmentRead = VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT, - eDepthStencilAttachmentWrite = VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT, - eTransferRead = VK_ACCESS_TRANSFER_READ_BIT, - eTransferWrite = VK_ACCESS_TRANSFER_WRITE_BIT, - eHostRead = VK_ACCESS_HOST_READ_BIT, - eHostWrite = VK_ACCESS_HOST_WRITE_BIT, - eMemoryRead = VK_ACCESS_MEMORY_READ_BIT, - eMemoryWrite = VK_ACCESS_MEMORY_WRITE_BIT, - eNone = VK_ACCESS_NONE, - eTransformFeedbackWriteEXT = VK_ACCESS_TRANSFORM_FEEDBACK_WRITE_BIT_EXT, - eTransformFeedbackCounterReadEXT = VK_ACCESS_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT, - eTransformFeedbackCounterWriteEXT = VK_ACCESS_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT, - eConditionalRenderingReadEXT = VK_ACCESS_CONDITIONAL_RENDERING_READ_BIT_EXT, - eColorAttachmentReadNoncoherentEXT = VK_ACCESS_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT, - eAccelerationStructureReadKHR = VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_KHR, - eAccelerationStructureWriteKHR = VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_KHR, - eFragmentDensityMapReadEXT = VK_ACCESS_FRAGMENT_DENSITY_MAP_READ_BIT_EXT, - eFragmentShadingRateAttachmentReadKHR = VK_ACCESS_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR, - eCommandPreprocessReadNV = VK_ACCESS_COMMAND_PREPROCESS_READ_BIT_NV, - eCommandPreprocessWriteNV = VK_ACCESS_COMMAND_PREPROCESS_WRITE_BIT_NV, - eAccelerationStructureReadNV = VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_NV, - eAccelerationStructureWriteNV = VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_NV, - eNoneKHR = VK_ACCESS_NONE_KHR, - eShadingRateImageReadNV = VK_ACCESS_SHADING_RATE_IMAGE_READ_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( AccessFlagBits value ) - { - switch ( value ) - { - case AccessFlagBits::eIndirectCommandRead: return "IndirectCommandRead"; - case AccessFlagBits::eIndexRead: return "IndexRead"; - case AccessFlagBits::eVertexAttributeRead: return "VertexAttributeRead"; - case AccessFlagBits::eUniformRead: return "UniformRead"; - case AccessFlagBits::eInputAttachmentRead: return "InputAttachmentRead"; - case AccessFlagBits::eShaderRead: return "ShaderRead"; - case AccessFlagBits::eShaderWrite: return "ShaderWrite"; - case AccessFlagBits::eColorAttachmentRead: return "ColorAttachmentRead"; - case AccessFlagBits::eColorAttachmentWrite: return "ColorAttachmentWrite"; - case AccessFlagBits::eDepthStencilAttachmentRead: return "DepthStencilAttachmentRead"; - case AccessFlagBits::eDepthStencilAttachmentWrite: return "DepthStencilAttachmentWrite"; - case AccessFlagBits::eTransferRead: return "TransferRead"; - case AccessFlagBits::eTransferWrite: return "TransferWrite"; - case AccessFlagBits::eHostRead: return "HostRead"; - case AccessFlagBits::eHostWrite: return "HostWrite"; - case AccessFlagBits::eMemoryRead: return "MemoryRead"; - case AccessFlagBits::eMemoryWrite: return "MemoryWrite"; - case AccessFlagBits::eNone: return "None"; - case AccessFlagBits::eTransformFeedbackWriteEXT: return "TransformFeedbackWriteEXT"; - case AccessFlagBits::eTransformFeedbackCounterReadEXT: return "TransformFeedbackCounterReadEXT"; - case AccessFlagBits::eTransformFeedbackCounterWriteEXT: return "TransformFeedbackCounterWriteEXT"; - case AccessFlagBits::eConditionalRenderingReadEXT: return "ConditionalRenderingReadEXT"; - case AccessFlagBits::eColorAttachmentReadNoncoherentEXT: return "ColorAttachmentReadNoncoherentEXT"; - case AccessFlagBits::eAccelerationStructureReadKHR: return "AccelerationStructureReadKHR"; - case AccessFlagBits::eAccelerationStructureWriteKHR: return "AccelerationStructureWriteKHR"; - case AccessFlagBits::eFragmentDensityMapReadEXT: return "FragmentDensityMapReadEXT"; - case AccessFlagBits::eFragmentShadingRateAttachmentReadKHR: return "FragmentShadingRateAttachmentReadKHR"; - case AccessFlagBits::eCommandPreprocessReadNV: return "CommandPreprocessReadNV"; - case AccessFlagBits::eCommandPreprocessWriteNV: return "CommandPreprocessWriteNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AttachmentDescriptionFlagBits : VkAttachmentDescriptionFlags - { - eMayAlias = VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( AttachmentDescriptionFlagBits value ) - { - switch ( value ) - { - case AttachmentDescriptionFlagBits::eMayAlias: return "MayAlias"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AttachmentLoadOp - { - eLoad = VK_ATTACHMENT_LOAD_OP_LOAD, - eClear = VK_ATTACHMENT_LOAD_OP_CLEAR, - eDontCare = VK_ATTACHMENT_LOAD_OP_DONT_CARE, - eNoneEXT = VK_ATTACHMENT_LOAD_OP_NONE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( AttachmentLoadOp value ) - { - switch ( value ) - { - case AttachmentLoadOp::eLoad: return "Load"; - case AttachmentLoadOp::eClear: return "Clear"; - case AttachmentLoadOp::eDontCare: return "DontCare"; - case AttachmentLoadOp::eNoneEXT: return "NoneEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AttachmentStoreOp - { - eStore = VK_ATTACHMENT_STORE_OP_STORE, - eDontCare = VK_ATTACHMENT_STORE_OP_DONT_CARE, - eNone = VK_ATTACHMENT_STORE_OP_NONE, - eNoneEXT = VK_ATTACHMENT_STORE_OP_NONE_EXT, - eNoneKHR = VK_ATTACHMENT_STORE_OP_NONE_KHR, - eNoneQCOM = VK_ATTACHMENT_STORE_OP_NONE_QCOM - }; - - VULKAN_HPP_INLINE std::string to_string( AttachmentStoreOp value ) - { - switch ( value ) - { - case AttachmentStoreOp::eStore: return "Store"; - case AttachmentStoreOp::eDontCare: return "DontCare"; - case AttachmentStoreOp::eNone: return "None"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DependencyFlagBits : VkDependencyFlags - { - eByRegion = VK_DEPENDENCY_BY_REGION_BIT, - eDeviceGroup = VK_DEPENDENCY_DEVICE_GROUP_BIT, - eViewLocal = VK_DEPENDENCY_VIEW_LOCAL_BIT, - eDeviceGroupKHR = VK_DEPENDENCY_DEVICE_GROUP_BIT_KHR, - eViewLocalKHR = VK_DEPENDENCY_VIEW_LOCAL_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( DependencyFlagBits value ) - { - switch ( value ) - { - case DependencyFlagBits::eByRegion: return "ByRegion"; - case DependencyFlagBits::eDeviceGroup: return "DeviceGroup"; - case DependencyFlagBits::eViewLocal: return "ViewLocal"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FramebufferCreateFlagBits : VkFramebufferCreateFlags - { - eImageless = VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT, - eImagelessKHR = VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( FramebufferCreateFlagBits value ) - { - switch ( value ) - { - case FramebufferCreateFlagBits::eImageless: return "Imageless"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineBindPoint - { - eGraphics = VK_PIPELINE_BIND_POINT_GRAPHICS, - eCompute = VK_PIPELINE_BIND_POINT_COMPUTE, - eRayTracingKHR = VK_PIPELINE_BIND_POINT_RAY_TRACING_KHR, - eSubpassShadingHUAWEI = VK_PIPELINE_BIND_POINT_SUBPASS_SHADING_HUAWEI, - eRayTracingNV = VK_PIPELINE_BIND_POINT_RAY_TRACING_NV - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineBindPoint value ) - { - switch ( value ) - { - case PipelineBindPoint::eGraphics: return "Graphics"; - case PipelineBindPoint::eCompute: return "Compute"; - case PipelineBindPoint::eRayTracingKHR: return "RayTracingKHR"; - case PipelineBindPoint::eSubpassShadingHUAWEI: return "SubpassShadingHUAWEI"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class RenderPassCreateFlagBits : VkRenderPassCreateFlags - { - eTransformQCOM = VK_RENDER_PASS_CREATE_TRANSFORM_BIT_QCOM - }; - - VULKAN_HPP_INLINE std::string to_string( RenderPassCreateFlagBits value ) - { - switch ( value ) - { - case RenderPassCreateFlagBits::eTransformQCOM: return "TransformQCOM"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SubpassDescriptionFlagBits : VkSubpassDescriptionFlags - { - ePerViewAttributesNVX = VK_SUBPASS_DESCRIPTION_PER_VIEW_ATTRIBUTES_BIT_NVX, - ePerViewPositionXOnlyNVX = VK_SUBPASS_DESCRIPTION_PER_VIEW_POSITION_X_ONLY_BIT_NVX, - eFragmentRegionQCOM = VK_SUBPASS_DESCRIPTION_FRAGMENT_REGION_BIT_QCOM, - eShaderResolveQCOM = VK_SUBPASS_DESCRIPTION_SHADER_RESOLVE_BIT_QCOM, - eRasterizationOrderAttachmentColorAccessARM = - VK_SUBPASS_DESCRIPTION_RASTERIZATION_ORDER_ATTACHMENT_COLOR_ACCESS_BIT_ARM, - eRasterizationOrderAttachmentDepthAccessARM = - VK_SUBPASS_DESCRIPTION_RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_BIT_ARM, - eRasterizationOrderAttachmentStencilAccessARM = - VK_SUBPASS_DESCRIPTION_RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_BIT_ARM - }; - - VULKAN_HPP_INLINE std::string to_string( SubpassDescriptionFlagBits value ) - { - switch ( value ) - { - case SubpassDescriptionFlagBits::ePerViewAttributesNVX: return "PerViewAttributesNVX"; - case SubpassDescriptionFlagBits::ePerViewPositionXOnlyNVX: return "PerViewPositionXOnlyNVX"; - case SubpassDescriptionFlagBits::eFragmentRegionQCOM: return "FragmentRegionQCOM"; - case SubpassDescriptionFlagBits::eShaderResolveQCOM: return "ShaderResolveQCOM"; - case SubpassDescriptionFlagBits::eRasterizationOrderAttachmentColorAccessARM: - return "RasterizationOrderAttachmentColorAccessARM"; - case SubpassDescriptionFlagBits::eRasterizationOrderAttachmentDepthAccessARM: - return "RasterizationOrderAttachmentDepthAccessARM"; - case SubpassDescriptionFlagBits::eRasterizationOrderAttachmentStencilAccessARM: - return "RasterizationOrderAttachmentStencilAccessARM"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CommandPoolCreateFlagBits : VkCommandPoolCreateFlags - { - eTransient = VK_COMMAND_POOL_CREATE_TRANSIENT_BIT, - eResetCommandBuffer = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT, - eProtected = VK_COMMAND_POOL_CREATE_PROTECTED_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( CommandPoolCreateFlagBits value ) - { - switch ( value ) - { - case CommandPoolCreateFlagBits::eTransient: return "Transient"; - case CommandPoolCreateFlagBits::eResetCommandBuffer: return "ResetCommandBuffer"; - case CommandPoolCreateFlagBits::eProtected: return "Protected"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CommandPoolResetFlagBits : VkCommandPoolResetFlags - { - eReleaseResources = VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( CommandPoolResetFlagBits value ) - { - switch ( value ) - { - case CommandPoolResetFlagBits::eReleaseResources: return "ReleaseResources"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CommandBufferLevel - { - ePrimary = VK_COMMAND_BUFFER_LEVEL_PRIMARY, - eSecondary = VK_COMMAND_BUFFER_LEVEL_SECONDARY - }; - - VULKAN_HPP_INLINE std::string to_string( CommandBufferLevel value ) - { - switch ( value ) - { - case CommandBufferLevel::ePrimary: return "Primary"; - case CommandBufferLevel::eSecondary: return "Secondary"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CommandBufferResetFlagBits : VkCommandBufferResetFlags - { - eReleaseResources = VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( CommandBufferResetFlagBits value ) - { - switch ( value ) - { - case CommandBufferResetFlagBits::eReleaseResources: return "ReleaseResources"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CommandBufferUsageFlagBits : VkCommandBufferUsageFlags - { - eOneTimeSubmit = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT, - eRenderPassContinue = VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT, - eSimultaneousUse = VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( CommandBufferUsageFlagBits value ) - { - switch ( value ) - { - case CommandBufferUsageFlagBits::eOneTimeSubmit: return "OneTimeSubmit"; - case CommandBufferUsageFlagBits::eRenderPassContinue: return "RenderPassContinue"; - case CommandBufferUsageFlagBits::eSimultaneousUse: return "SimultaneousUse"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryControlFlagBits : VkQueryControlFlags - { - ePrecise = VK_QUERY_CONTROL_PRECISE_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( QueryControlFlagBits value ) - { - switch ( value ) - { - case QueryControlFlagBits::ePrecise: return "Precise"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class IndexType - { - eUint16 = VK_INDEX_TYPE_UINT16, - eUint32 = VK_INDEX_TYPE_UINT32, - eNoneKHR = VK_INDEX_TYPE_NONE_KHR, - eUint8EXT = VK_INDEX_TYPE_UINT8_EXT, - eNoneNV = VK_INDEX_TYPE_NONE_NV - }; - - VULKAN_HPP_INLINE std::string to_string( IndexType value ) - { - switch ( value ) - { - case IndexType::eUint16: return "Uint16"; - case IndexType::eUint32: return "Uint32"; - case IndexType::eNoneKHR: return "NoneKHR"; - case IndexType::eUint8EXT: return "Uint8EXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class StencilFaceFlagBits : VkStencilFaceFlags - { - eFront = VK_STENCIL_FACE_FRONT_BIT, - eBack = VK_STENCIL_FACE_BACK_BIT, - eFrontAndBack = VK_STENCIL_FACE_FRONT_AND_BACK, - eVkStencilFrontAndBack = VK_STENCIL_FRONT_AND_BACK - }; - - VULKAN_HPP_INLINE std::string to_string( StencilFaceFlagBits value ) - { - switch ( value ) - { - case StencilFaceFlagBits::eFront: return "Front"; - case StencilFaceFlagBits::eBack: return "Back"; - case StencilFaceFlagBits::eFrontAndBack: return "FrontAndBack"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SubpassContents - { - eInline = VK_SUBPASS_CONTENTS_INLINE, - eSecondaryCommandBuffers = VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS - }; - - VULKAN_HPP_INLINE std::string to_string( SubpassContents value ) - { - switch ( value ) - { - case SubpassContents::eInline: return "Inline"; - case SubpassContents::eSecondaryCommandBuffers: return "SecondaryCommandBuffers"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_VERSION_1_1 === - - enum class SubgroupFeatureFlagBits : VkSubgroupFeatureFlags - { - eBasic = VK_SUBGROUP_FEATURE_BASIC_BIT, - eVote = VK_SUBGROUP_FEATURE_VOTE_BIT, - eArithmetic = VK_SUBGROUP_FEATURE_ARITHMETIC_BIT, - eBallot = VK_SUBGROUP_FEATURE_BALLOT_BIT, - eShuffle = VK_SUBGROUP_FEATURE_SHUFFLE_BIT, - eShuffleRelative = VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT, - eClustered = VK_SUBGROUP_FEATURE_CLUSTERED_BIT, - eQuad = VK_SUBGROUP_FEATURE_QUAD_BIT, - ePartitionedNV = VK_SUBGROUP_FEATURE_PARTITIONED_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( SubgroupFeatureFlagBits value ) - { - switch ( value ) - { - case SubgroupFeatureFlagBits::eBasic: return "Basic"; - case SubgroupFeatureFlagBits::eVote: return "Vote"; - case SubgroupFeatureFlagBits::eArithmetic: return "Arithmetic"; - case SubgroupFeatureFlagBits::eBallot: return "Ballot"; - case SubgroupFeatureFlagBits::eShuffle: return "Shuffle"; - case SubgroupFeatureFlagBits::eShuffleRelative: return "ShuffleRelative"; - case SubgroupFeatureFlagBits::eClustered: return "Clustered"; - case SubgroupFeatureFlagBits::eQuad: return "Quad"; - case SubgroupFeatureFlagBits::ePartitionedNV: return "PartitionedNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PeerMemoryFeatureFlagBits : VkPeerMemoryFeatureFlags - { - eCopySrc = VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT, - eCopyDst = VK_PEER_MEMORY_FEATURE_COPY_DST_BIT, - eGenericSrc = VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT, - eGenericDst = VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT - }; - using PeerMemoryFeatureFlagBitsKHR = PeerMemoryFeatureFlagBits; - - VULKAN_HPP_INLINE std::string to_string( PeerMemoryFeatureFlagBits value ) - { - switch ( value ) - { - case PeerMemoryFeatureFlagBits::eCopySrc: return "CopySrc"; - case PeerMemoryFeatureFlagBits::eCopyDst: return "CopyDst"; - case PeerMemoryFeatureFlagBits::eGenericSrc: return "GenericSrc"; - case PeerMemoryFeatureFlagBits::eGenericDst: return "GenericDst"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class MemoryAllocateFlagBits : VkMemoryAllocateFlags - { - eDeviceMask = VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT, - eDeviceAddress = VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT, - eDeviceAddressCaptureReplay = VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT - }; - using MemoryAllocateFlagBitsKHR = MemoryAllocateFlagBits; - - VULKAN_HPP_INLINE std::string to_string( MemoryAllocateFlagBits value ) - { - switch ( value ) - { - case MemoryAllocateFlagBits::eDeviceMask: return "DeviceMask"; - case MemoryAllocateFlagBits::eDeviceAddress: return "DeviceAddress"; - case MemoryAllocateFlagBits::eDeviceAddressCaptureReplay: return "DeviceAddressCaptureReplay"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CommandPoolTrimFlagBits : VkCommandPoolTrimFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( CommandPoolTrimFlagBits ) - { - return "(void)"; - } - - enum class PointClippingBehavior - { - eAllClipPlanes = VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES, - eUserClipPlanesOnly = VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY - }; - using PointClippingBehaviorKHR = PointClippingBehavior; - - VULKAN_HPP_INLINE std::string to_string( PointClippingBehavior value ) - { - switch ( value ) - { - case PointClippingBehavior::eAllClipPlanes: return "AllClipPlanes"; - case PointClippingBehavior::eUserClipPlanesOnly: return "UserClipPlanesOnly"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class TessellationDomainOrigin - { - eUpperLeft = VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT, - eLowerLeft = VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT - }; - using TessellationDomainOriginKHR = TessellationDomainOrigin; - - VULKAN_HPP_INLINE std::string to_string( TessellationDomainOrigin value ) - { - switch ( value ) - { - case TessellationDomainOrigin::eUpperLeft: return "UpperLeft"; - case TessellationDomainOrigin::eLowerLeft: return "LowerLeft"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DeviceQueueCreateFlagBits : VkDeviceQueueCreateFlags - { - eProtected = VK_DEVICE_QUEUE_CREATE_PROTECTED_BIT - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceQueueCreateFlagBits value ) - { - switch ( value ) - { - case DeviceQueueCreateFlagBits::eProtected: return "Protected"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SamplerYcbcrModelConversion - { - eRgbIdentity = VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY, - eYcbcrIdentity = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY, - eYcbcr709 = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709, - eYcbcr601 = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601, - eYcbcr2020 = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 - }; - using SamplerYcbcrModelConversionKHR = SamplerYcbcrModelConversion; - - VULKAN_HPP_INLINE std::string to_string( SamplerYcbcrModelConversion value ) - { - switch ( value ) - { - case SamplerYcbcrModelConversion::eRgbIdentity: return "RgbIdentity"; - case SamplerYcbcrModelConversion::eYcbcrIdentity: return "YcbcrIdentity"; - case SamplerYcbcrModelConversion::eYcbcr709: return "Ycbcr709"; - case SamplerYcbcrModelConversion::eYcbcr601: return "Ycbcr601"; - case SamplerYcbcrModelConversion::eYcbcr2020: return "Ycbcr2020"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SamplerYcbcrRange - { - eItuFull = VK_SAMPLER_YCBCR_RANGE_ITU_FULL, - eItuNarrow = VK_SAMPLER_YCBCR_RANGE_ITU_NARROW - }; - using SamplerYcbcrRangeKHR = SamplerYcbcrRange; - - VULKAN_HPP_INLINE std::string to_string( SamplerYcbcrRange value ) - { - switch ( value ) - { - case SamplerYcbcrRange::eItuFull: return "ItuFull"; - case SamplerYcbcrRange::eItuNarrow: return "ItuNarrow"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ChromaLocation - { - eCositedEven = VK_CHROMA_LOCATION_COSITED_EVEN, - eMidpoint = VK_CHROMA_LOCATION_MIDPOINT - }; - using ChromaLocationKHR = ChromaLocation; - - VULKAN_HPP_INLINE std::string to_string( ChromaLocation value ) - { - switch ( value ) - { - case ChromaLocation::eCositedEven: return "CositedEven"; - case ChromaLocation::eMidpoint: return "Midpoint"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorUpdateTemplateType - { - eDescriptorSet = VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET, - ePushDescriptorsKHR = VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR - }; - using DescriptorUpdateTemplateTypeKHR = DescriptorUpdateTemplateType; - - VULKAN_HPP_INLINE std::string to_string( DescriptorUpdateTemplateType value ) - { - switch ( value ) - { - case DescriptorUpdateTemplateType::eDescriptorSet: return "DescriptorSet"; - case DescriptorUpdateTemplateType::ePushDescriptorsKHR: return "PushDescriptorsKHR"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorUpdateTemplateCreateFlagBits : VkDescriptorUpdateTemplateCreateFlags - { - }; - - VULKAN_HPP_INLINE std::string to_string( DescriptorUpdateTemplateCreateFlagBits ) - { - return "(void)"; - } - - enum class ExternalMemoryHandleTypeFlagBits : VkExternalMemoryHandleTypeFlags - { - eOpaqueFd = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT, - eOpaqueWin32 = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT, - eOpaqueWin32Kmt = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, - eD3D11Texture = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT, - eD3D11TextureKmt = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT, - eD3D12Heap = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT, - eD3D12Resource = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT, - eDmaBufEXT = VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT, -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - eAndroidHardwareBufferANDROID = VK_EXTERNAL_MEMORY_HANDLE_TYPE_ANDROID_HARDWARE_BUFFER_BIT_ANDROID, -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - eHostAllocationEXT = VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT, - eHostMappedForeignMemoryEXT = VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT, -#if defined( VK_USE_PLATFORM_FUCHSIA ) - eZirconVmoFUCHSIA = VK_EXTERNAL_MEMORY_HANDLE_TYPE_ZIRCON_VMO_BIT_FUCHSIA, -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - eRdmaAddressNV = VK_EXTERNAL_MEMORY_HANDLE_TYPE_RDMA_ADDRESS_BIT_NV - }; - using ExternalMemoryHandleTypeFlagBitsKHR = ExternalMemoryHandleTypeFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryHandleTypeFlagBits value ) - { - switch ( value ) - { - case ExternalMemoryHandleTypeFlagBits::eOpaqueFd: return "OpaqueFd"; - case ExternalMemoryHandleTypeFlagBits::eOpaqueWin32: return "OpaqueWin32"; - case ExternalMemoryHandleTypeFlagBits::eOpaqueWin32Kmt: return "OpaqueWin32Kmt"; - case ExternalMemoryHandleTypeFlagBits::eD3D11Texture: return "D3D11Texture"; - case ExternalMemoryHandleTypeFlagBits::eD3D11TextureKmt: return "D3D11TextureKmt"; - case ExternalMemoryHandleTypeFlagBits::eD3D12Heap: return "D3D12Heap"; - case ExternalMemoryHandleTypeFlagBits::eD3D12Resource: return "D3D12Resource"; - case ExternalMemoryHandleTypeFlagBits::eDmaBufEXT: return "DmaBufEXT"; -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - case ExternalMemoryHandleTypeFlagBits::eAndroidHardwareBufferANDROID: return "AndroidHardwareBufferANDROID"; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - case ExternalMemoryHandleTypeFlagBits::eHostAllocationEXT: return "HostAllocationEXT"; - case ExternalMemoryHandleTypeFlagBits::eHostMappedForeignMemoryEXT: return "HostMappedForeignMemoryEXT"; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - case ExternalMemoryHandleTypeFlagBits::eZirconVmoFUCHSIA: return "ZirconVmoFUCHSIA"; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - case ExternalMemoryHandleTypeFlagBits::eRdmaAddressNV: return "RdmaAddressNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ExternalMemoryFeatureFlagBits : VkExternalMemoryFeatureFlags - { - eDedicatedOnly = VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT, - eExportable = VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT, - eImportable = VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT - }; - using ExternalMemoryFeatureFlagBitsKHR = ExternalMemoryFeatureFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryFeatureFlagBits value ) - { - switch ( value ) - { - case ExternalMemoryFeatureFlagBits::eDedicatedOnly: return "DedicatedOnly"; - case ExternalMemoryFeatureFlagBits::eExportable: return "Exportable"; - case ExternalMemoryFeatureFlagBits::eImportable: return "Importable"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ExternalFenceHandleTypeFlagBits : VkExternalFenceHandleTypeFlags - { - eOpaqueFd = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT, - eOpaqueWin32 = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT, - eOpaqueWin32Kmt = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, - eSyncFd = VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT - }; - using ExternalFenceHandleTypeFlagBitsKHR = ExternalFenceHandleTypeFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ExternalFenceHandleTypeFlagBits value ) - { - switch ( value ) - { - case ExternalFenceHandleTypeFlagBits::eOpaqueFd: return "OpaqueFd"; - case ExternalFenceHandleTypeFlagBits::eOpaqueWin32: return "OpaqueWin32"; - case ExternalFenceHandleTypeFlagBits::eOpaqueWin32Kmt: return "OpaqueWin32Kmt"; - case ExternalFenceHandleTypeFlagBits::eSyncFd: return "SyncFd"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ExternalFenceFeatureFlagBits : VkExternalFenceFeatureFlags - { - eExportable = VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT, - eImportable = VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT - }; - using ExternalFenceFeatureFlagBitsKHR = ExternalFenceFeatureFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ExternalFenceFeatureFlagBits value ) - { - switch ( value ) - { - case ExternalFenceFeatureFlagBits::eExportable: return "Exportable"; - case ExternalFenceFeatureFlagBits::eImportable: return "Importable"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FenceImportFlagBits : VkFenceImportFlags - { - eTemporary = VK_FENCE_IMPORT_TEMPORARY_BIT - }; - using FenceImportFlagBitsKHR = FenceImportFlagBits; - - VULKAN_HPP_INLINE std::string to_string( FenceImportFlagBits value ) - { - switch ( value ) - { - case FenceImportFlagBits::eTemporary: return "Temporary"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SemaphoreImportFlagBits : VkSemaphoreImportFlags - { - eTemporary = VK_SEMAPHORE_IMPORT_TEMPORARY_BIT - }; - using SemaphoreImportFlagBitsKHR = SemaphoreImportFlagBits; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreImportFlagBits value ) - { - switch ( value ) - { - case SemaphoreImportFlagBits::eTemporary: return "Temporary"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ExternalSemaphoreHandleTypeFlagBits : VkExternalSemaphoreHandleTypeFlags - { - eOpaqueFd = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT, - eOpaqueWin32 = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT, - eOpaqueWin32Kmt = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, - eD3D12Fence = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT, - eSyncFd = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT, -#if defined( VK_USE_PLATFORM_FUCHSIA ) - eZirconEventFUCHSIA = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_ZIRCON_EVENT_BIT_FUCHSIA, -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - eD3D11Fence = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D11_FENCE_BIT - }; - using ExternalSemaphoreHandleTypeFlagBitsKHR = ExternalSemaphoreHandleTypeFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ExternalSemaphoreHandleTypeFlagBits value ) - { - switch ( value ) - { - case ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd: return "OpaqueFd"; - case ExternalSemaphoreHandleTypeFlagBits::eOpaqueWin32: return "OpaqueWin32"; - case ExternalSemaphoreHandleTypeFlagBits::eOpaqueWin32Kmt: return "OpaqueWin32Kmt"; - case ExternalSemaphoreHandleTypeFlagBits::eD3D12Fence: return "D3D12Fence"; - case ExternalSemaphoreHandleTypeFlagBits::eSyncFd: return "SyncFd"; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - case ExternalSemaphoreHandleTypeFlagBits::eZirconEventFUCHSIA: return "ZirconEventFUCHSIA"; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ExternalSemaphoreFeatureFlagBits : VkExternalSemaphoreFeatureFlags - { - eExportable = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT, - eImportable = VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT - }; - using ExternalSemaphoreFeatureFlagBitsKHR = ExternalSemaphoreFeatureFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ExternalSemaphoreFeatureFlagBits value ) - { - switch ( value ) - { - case ExternalSemaphoreFeatureFlagBits::eExportable: return "Exportable"; - case ExternalSemaphoreFeatureFlagBits::eImportable: return "Importable"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_VERSION_1_2 === - - enum class DriverId - { - eAmdProprietary = VK_DRIVER_ID_AMD_PROPRIETARY, - eAmdOpenSource = VK_DRIVER_ID_AMD_OPEN_SOURCE, - eMesaRadv = VK_DRIVER_ID_MESA_RADV, - eNvidiaProprietary = VK_DRIVER_ID_NVIDIA_PROPRIETARY, - eIntelProprietaryWindows = VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS, - eIntelOpenSourceMESA = VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA, - eImaginationProprietary = VK_DRIVER_ID_IMAGINATION_PROPRIETARY, - eQualcommProprietary = VK_DRIVER_ID_QUALCOMM_PROPRIETARY, - eArmProprietary = VK_DRIVER_ID_ARM_PROPRIETARY, - eGoogleSwiftshader = VK_DRIVER_ID_GOOGLE_SWIFTSHADER, - eGgpProprietary = VK_DRIVER_ID_GGP_PROPRIETARY, - eBroadcomProprietary = VK_DRIVER_ID_BROADCOM_PROPRIETARY, - eMesaLlvmpipe = VK_DRIVER_ID_MESA_LLVMPIPE, - eMoltenvk = VK_DRIVER_ID_MOLTENVK, - eCoreaviProprietary = VK_DRIVER_ID_COREAVI_PROPRIETARY, - eJuiceProprietary = VK_DRIVER_ID_JUICE_PROPRIETARY, - eVerisiliconProprietary = VK_DRIVER_ID_VERISILICON_PROPRIETARY, - eMesaTurnip = VK_DRIVER_ID_MESA_TURNIP, - eMesaV3Dv = VK_DRIVER_ID_MESA_V3DV, - eMesaPanvk = VK_DRIVER_ID_MESA_PANVK, - eSamsungProprietary = VK_DRIVER_ID_SAMSUNG_PROPRIETARY, - eMesaVenus = VK_DRIVER_ID_MESA_VENUS - }; - using DriverIdKHR = DriverId; - - VULKAN_HPP_INLINE std::string to_string( DriverId value ) - { - switch ( value ) - { - case DriverId::eAmdProprietary: return "AmdProprietary"; - case DriverId::eAmdOpenSource: return "AmdOpenSource"; - case DriverId::eMesaRadv: return "MesaRadv"; - case DriverId::eNvidiaProprietary: return "NvidiaProprietary"; - case DriverId::eIntelProprietaryWindows: return "IntelProprietaryWindows"; - case DriverId::eIntelOpenSourceMESA: return "IntelOpenSourceMESA"; - case DriverId::eImaginationProprietary: return "ImaginationProprietary"; - case DriverId::eQualcommProprietary: return "QualcommProprietary"; - case DriverId::eArmProprietary: return "ArmProprietary"; - case DriverId::eGoogleSwiftshader: return "GoogleSwiftshader"; - case DriverId::eGgpProprietary: return "GgpProprietary"; - case DriverId::eBroadcomProprietary: return "BroadcomProprietary"; - case DriverId::eMesaLlvmpipe: return "MesaLlvmpipe"; - case DriverId::eMoltenvk: return "Moltenvk"; - case DriverId::eCoreaviProprietary: return "CoreaviProprietary"; - case DriverId::eJuiceProprietary: return "JuiceProprietary"; - case DriverId::eVerisiliconProprietary: return "VerisiliconProprietary"; - case DriverId::eMesaTurnip: return "MesaTurnip"; - case DriverId::eMesaV3Dv: return "MesaV3Dv"; - case DriverId::eMesaPanvk: return "MesaPanvk"; - case DriverId::eSamsungProprietary: return "SamsungProprietary"; - case DriverId::eMesaVenus: return "MesaVenus"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ShaderFloatControlsIndependence - { - e32BitOnly = VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_32_BIT_ONLY, - eAll = VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_ALL, - eNone = VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_NONE - }; - using ShaderFloatControlsIndependenceKHR = ShaderFloatControlsIndependence; - - VULKAN_HPP_INLINE std::string to_string( ShaderFloatControlsIndependence value ) - { - switch ( value ) - { - case ShaderFloatControlsIndependence::e32BitOnly: return "32BitOnly"; - case ShaderFloatControlsIndependence::eAll: return "All"; - case ShaderFloatControlsIndependence::eNone: return "None"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DescriptorBindingFlagBits : VkDescriptorBindingFlags - { - eUpdateAfterBind = VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT, - eUpdateUnusedWhilePending = VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT, - ePartiallyBound = VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT, - eVariableDescriptorCount = VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT - }; - using DescriptorBindingFlagBitsEXT = DescriptorBindingFlagBits; - - VULKAN_HPP_INLINE std::string to_string( DescriptorBindingFlagBits value ) - { - switch ( value ) - { - case DescriptorBindingFlagBits::eUpdateAfterBind: return "UpdateAfterBind"; - case DescriptorBindingFlagBits::eUpdateUnusedWhilePending: return "UpdateUnusedWhilePending"; - case DescriptorBindingFlagBits::ePartiallyBound: return "PartiallyBound"; - case DescriptorBindingFlagBits::eVariableDescriptorCount: return "VariableDescriptorCount"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ResolveModeFlagBits : VkResolveModeFlags - { - eNone = VK_RESOLVE_MODE_NONE, - eSampleZero = VK_RESOLVE_MODE_SAMPLE_ZERO_BIT, - eAverage = VK_RESOLVE_MODE_AVERAGE_BIT, - eMin = VK_RESOLVE_MODE_MIN_BIT, - eMax = VK_RESOLVE_MODE_MAX_BIT - }; - using ResolveModeFlagBitsKHR = ResolveModeFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ResolveModeFlagBits value ) - { - switch ( value ) - { - case ResolveModeFlagBits::eNone: return "None"; - case ResolveModeFlagBits::eSampleZero: return "SampleZero"; - case ResolveModeFlagBits::eAverage: return "Average"; - case ResolveModeFlagBits::eMin: return "Min"; - case ResolveModeFlagBits::eMax: return "Max"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SamplerReductionMode - { - eWeightedAverage = VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE, - eMin = VK_SAMPLER_REDUCTION_MODE_MIN, - eMax = VK_SAMPLER_REDUCTION_MODE_MAX - }; - using SamplerReductionModeEXT = SamplerReductionMode; - - VULKAN_HPP_INLINE std::string to_string( SamplerReductionMode value ) - { - switch ( value ) - { - case SamplerReductionMode::eWeightedAverage: return "WeightedAverage"; - case SamplerReductionMode::eMin: return "Min"; - case SamplerReductionMode::eMax: return "Max"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SemaphoreType - { - eBinary = VK_SEMAPHORE_TYPE_BINARY, - eTimeline = VK_SEMAPHORE_TYPE_TIMELINE - }; - using SemaphoreTypeKHR = SemaphoreType; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreType value ) - { - switch ( value ) - { - case SemaphoreType::eBinary: return "Binary"; - case SemaphoreType::eTimeline: return "Timeline"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SemaphoreWaitFlagBits : VkSemaphoreWaitFlags - { - eAny = VK_SEMAPHORE_WAIT_ANY_BIT - }; - using SemaphoreWaitFlagBitsKHR = SemaphoreWaitFlagBits; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreWaitFlagBits value ) - { - switch ( value ) - { - case SemaphoreWaitFlagBits::eAny: return "Any"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_VERSION_1_3 === - - enum class PipelineCreationFeedbackFlagBits : VkPipelineCreationFeedbackFlags - { - eValid = VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT, - eApplicationPipelineCacheHit = VK_PIPELINE_CREATION_FEEDBACK_APPLICATION_PIPELINE_CACHE_HIT_BIT, - eBasePipelineAcceleration = VK_PIPELINE_CREATION_FEEDBACK_BASE_PIPELINE_ACCELERATION_BIT - }; - using PipelineCreationFeedbackFlagBitsEXT = PipelineCreationFeedbackFlagBits; - - VULKAN_HPP_INLINE std::string to_string( PipelineCreationFeedbackFlagBits value ) - { - switch ( value ) - { - case PipelineCreationFeedbackFlagBits::eValid: return "Valid"; - case PipelineCreationFeedbackFlagBits::eApplicationPipelineCacheHit: return "ApplicationPipelineCacheHit"; - case PipelineCreationFeedbackFlagBits::eBasePipelineAcceleration: return "BasePipelineAcceleration"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ToolPurposeFlagBits : VkToolPurposeFlags - { - eValidation = VK_TOOL_PURPOSE_VALIDATION_BIT, - eProfiling = VK_TOOL_PURPOSE_PROFILING_BIT, - eTracing = VK_TOOL_PURPOSE_TRACING_BIT, - eAdditionalFeatures = VK_TOOL_PURPOSE_ADDITIONAL_FEATURES_BIT, - eModifyingFeatures = VK_TOOL_PURPOSE_MODIFYING_FEATURES_BIT, - eDebugReportingEXT = VK_TOOL_PURPOSE_DEBUG_REPORTING_BIT_EXT, - eDebugMarkersEXT = VK_TOOL_PURPOSE_DEBUG_MARKERS_BIT_EXT - }; - using ToolPurposeFlagBitsEXT = ToolPurposeFlagBits; - - VULKAN_HPP_INLINE std::string to_string( ToolPurposeFlagBits value ) - { - switch ( value ) - { - case ToolPurposeFlagBits::eValidation: return "Validation"; - case ToolPurposeFlagBits::eProfiling: return "Profiling"; - case ToolPurposeFlagBits::eTracing: return "Tracing"; - case ToolPurposeFlagBits::eAdditionalFeatures: return "AdditionalFeatures"; - case ToolPurposeFlagBits::eModifyingFeatures: return "ModifyingFeatures"; - case ToolPurposeFlagBits::eDebugReportingEXT: return "DebugReportingEXT"; - case ToolPurposeFlagBits::eDebugMarkersEXT: return "DebugMarkersEXT"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PrivateDataSlotCreateFlagBits : VkPrivateDataSlotCreateFlags - { - }; - using PrivateDataSlotCreateFlagBitsEXT = PrivateDataSlotCreateFlagBits; - - VULKAN_HPP_INLINE std::string to_string( PrivateDataSlotCreateFlagBits ) - { - return "(void)"; - } - - enum class PipelineStageFlagBits2 : VkPipelineStageFlags2 - { - eNone = VK_PIPELINE_STAGE_2_NONE, - eTopOfPipe = VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT, - eDrawIndirect = VK_PIPELINE_STAGE_2_DRAW_INDIRECT_BIT, - eVertexInput = VK_PIPELINE_STAGE_2_VERTEX_INPUT_BIT, - eVertexShader = VK_PIPELINE_STAGE_2_VERTEX_SHADER_BIT, - eTessellationControlShader = VK_PIPELINE_STAGE_2_TESSELLATION_CONTROL_SHADER_BIT, - eTessellationEvaluationShader = VK_PIPELINE_STAGE_2_TESSELLATION_EVALUATION_SHADER_BIT, - eGeometryShader = VK_PIPELINE_STAGE_2_GEOMETRY_SHADER_BIT, - eFragmentShader = VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT, - eEarlyFragmentTests = VK_PIPELINE_STAGE_2_EARLY_FRAGMENT_TESTS_BIT, - eLateFragmentTests = VK_PIPELINE_STAGE_2_LATE_FRAGMENT_TESTS_BIT, - eColorAttachmentOutput = VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT, - eComputeShader = VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT, - eAllTransfer = VK_PIPELINE_STAGE_2_ALL_TRANSFER_BIT, - eBottomOfPipe = VK_PIPELINE_STAGE_2_BOTTOM_OF_PIPE_BIT, - eHost = VK_PIPELINE_STAGE_2_HOST_BIT, - eAllGraphics = VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT, - eAllCommands = VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT, - eCopy = VK_PIPELINE_STAGE_2_COPY_BIT, - eResolve = VK_PIPELINE_STAGE_2_RESOLVE_BIT, - eBlit = VK_PIPELINE_STAGE_2_BLIT_BIT, - eClear = VK_PIPELINE_STAGE_2_CLEAR_BIT, - eIndexInput = VK_PIPELINE_STAGE_2_INDEX_INPUT_BIT, - eVertexAttributeInput = VK_PIPELINE_STAGE_2_VERTEX_ATTRIBUTE_INPUT_BIT, - ePreRasterizationShaders = VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeKHR = VK_PIPELINE_STAGE_2_VIDEO_DECODE_BIT_KHR, - eVideoEncodeKHR = VK_PIPELINE_STAGE_2_VIDEO_ENCODE_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eTransformFeedbackEXT = VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT, - eConditionalRenderingEXT = VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT, - eCommandPreprocessNV = VK_PIPELINE_STAGE_2_COMMAND_PREPROCESS_BIT_NV, - eFragmentShadingRateAttachmentKHR = VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, - eAccelerationStructureBuildKHR = VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_KHR, - eRayTracingShaderKHR = VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_KHR, - eFragmentDensityProcessEXT = VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT, - eTaskShaderNV = VK_PIPELINE_STAGE_2_TASK_SHADER_BIT_NV, - eMeshShaderNV = VK_PIPELINE_STAGE_2_MESH_SHADER_BIT_NV, - eSubpassShadingHUAWEI = VK_PIPELINE_STAGE_2_SUBPASS_SHADING_BIT_HUAWEI, - eInvocationMaskHUAWEI = VK_PIPELINE_STAGE_2_INVOCATION_MASK_BIT_HUAWEI, - eAccelerationStructureBuildNV = VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_NV, - eRayTracingShaderNV = VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_NV, - eShadingRateImageNV = VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV, - eTransfer = VK_PIPELINE_STAGE_2_TRANSFER_BIT - }; - using PipelineStageFlagBits2KHR = PipelineStageFlagBits2; - - VULKAN_HPP_INLINE std::string to_string( PipelineStageFlagBits2 value ) - { - switch ( value ) - { - case PipelineStageFlagBits2::eNone: return "None"; - case PipelineStageFlagBits2::eTopOfPipe: return "TopOfPipe"; - case PipelineStageFlagBits2::eDrawIndirect: return "DrawIndirect"; - case PipelineStageFlagBits2::eVertexInput: return "VertexInput"; - case PipelineStageFlagBits2::eVertexShader: return "VertexShader"; - case PipelineStageFlagBits2::eTessellationControlShader: return "TessellationControlShader"; - case PipelineStageFlagBits2::eTessellationEvaluationShader: return "TessellationEvaluationShader"; - case PipelineStageFlagBits2::eGeometryShader: return "GeometryShader"; - case PipelineStageFlagBits2::eFragmentShader: return "FragmentShader"; - case PipelineStageFlagBits2::eEarlyFragmentTests: return "EarlyFragmentTests"; - case PipelineStageFlagBits2::eLateFragmentTests: return "LateFragmentTests"; - case PipelineStageFlagBits2::eColorAttachmentOutput: return "ColorAttachmentOutput"; - case PipelineStageFlagBits2::eComputeShader: return "ComputeShader"; - case PipelineStageFlagBits2::eAllTransfer: return "AllTransfer"; - case PipelineStageFlagBits2::eBottomOfPipe: return "BottomOfPipe"; - case PipelineStageFlagBits2::eHost: return "Host"; - case PipelineStageFlagBits2::eAllGraphics: return "AllGraphics"; - case PipelineStageFlagBits2::eAllCommands: return "AllCommands"; - case PipelineStageFlagBits2::eCopy: return "Copy"; - case PipelineStageFlagBits2::eResolve: return "Resolve"; - case PipelineStageFlagBits2::eBlit: return "Blit"; - case PipelineStageFlagBits2::eClear: return "Clear"; - case PipelineStageFlagBits2::eIndexInput: return "IndexInput"; - case PipelineStageFlagBits2::eVertexAttributeInput: return "VertexAttributeInput"; - case PipelineStageFlagBits2::ePreRasterizationShaders: return "PreRasterizationShaders"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case PipelineStageFlagBits2::eVideoDecodeKHR: return "VideoDecodeKHR"; - case PipelineStageFlagBits2::eVideoEncodeKHR: return "VideoEncodeKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case PipelineStageFlagBits2::eTransformFeedbackEXT: return "TransformFeedbackEXT"; - case PipelineStageFlagBits2::eConditionalRenderingEXT: return "ConditionalRenderingEXT"; - case PipelineStageFlagBits2::eCommandPreprocessNV: return "CommandPreprocessNV"; - case PipelineStageFlagBits2::eFragmentShadingRateAttachmentKHR: return "FragmentShadingRateAttachmentKHR"; - case PipelineStageFlagBits2::eAccelerationStructureBuildKHR: return "AccelerationStructureBuildKHR"; - case PipelineStageFlagBits2::eRayTracingShaderKHR: return "RayTracingShaderKHR"; - case PipelineStageFlagBits2::eFragmentDensityProcessEXT: return "FragmentDensityProcessEXT"; - case PipelineStageFlagBits2::eTaskShaderNV: return "TaskShaderNV"; - case PipelineStageFlagBits2::eMeshShaderNV: return "MeshShaderNV"; - case PipelineStageFlagBits2::eSubpassShadingHUAWEI: return "SubpassShadingHUAWEI"; - case PipelineStageFlagBits2::eInvocationMaskHUAWEI: return "InvocationMaskHUAWEI"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AccessFlagBits2 : VkAccessFlags2 - { - eNone = VK_ACCESS_2_NONE, - eIndirectCommandRead = VK_ACCESS_2_INDIRECT_COMMAND_READ_BIT, - eIndexRead = VK_ACCESS_2_INDEX_READ_BIT, - eVertexAttributeRead = VK_ACCESS_2_VERTEX_ATTRIBUTE_READ_BIT, - eUniformRead = VK_ACCESS_2_UNIFORM_READ_BIT, - eInputAttachmentRead = VK_ACCESS_2_INPUT_ATTACHMENT_READ_BIT, - eShaderRead = VK_ACCESS_2_SHADER_READ_BIT, - eShaderWrite = VK_ACCESS_2_SHADER_WRITE_BIT, - eColorAttachmentRead = VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT, - eColorAttachmentWrite = VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT, - eDepthStencilAttachmentRead = VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_READ_BIT, - eDepthStencilAttachmentWrite = VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT, - eTransferRead = VK_ACCESS_2_TRANSFER_READ_BIT, - eTransferWrite = VK_ACCESS_2_TRANSFER_WRITE_BIT, - eHostRead = VK_ACCESS_2_HOST_READ_BIT, - eHostWrite = VK_ACCESS_2_HOST_WRITE_BIT, - eMemoryRead = VK_ACCESS_2_MEMORY_READ_BIT, - eMemoryWrite = VK_ACCESS_2_MEMORY_WRITE_BIT, - eShaderSampledRead = VK_ACCESS_2_SHADER_SAMPLED_READ_BIT, - eShaderStorageRead = VK_ACCESS_2_SHADER_STORAGE_READ_BIT, - eShaderStorageWrite = VK_ACCESS_2_SHADER_STORAGE_WRITE_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeReadKHR = VK_ACCESS_2_VIDEO_DECODE_READ_BIT_KHR, - eVideoDecodeWriteKHR = VK_ACCESS_2_VIDEO_DECODE_WRITE_BIT_KHR, - eVideoEncodeReadKHR = VK_ACCESS_2_VIDEO_ENCODE_READ_BIT_KHR, - eVideoEncodeWriteKHR = VK_ACCESS_2_VIDEO_ENCODE_WRITE_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eTransformFeedbackWriteEXT = VK_ACCESS_2_TRANSFORM_FEEDBACK_WRITE_BIT_EXT, - eTransformFeedbackCounterReadEXT = VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT, - eTransformFeedbackCounterWriteEXT = VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT, - eConditionalRenderingReadEXT = VK_ACCESS_2_CONDITIONAL_RENDERING_READ_BIT_EXT, - eCommandPreprocessReadNV = VK_ACCESS_2_COMMAND_PREPROCESS_READ_BIT_NV, - eCommandPreprocessWriteNV = VK_ACCESS_2_COMMAND_PREPROCESS_WRITE_BIT_NV, - eFragmentShadingRateAttachmentReadKHR = VK_ACCESS_2_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR, - eAccelerationStructureReadKHR = VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_KHR, - eAccelerationStructureWriteKHR = VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_KHR, - eFragmentDensityMapReadEXT = VK_ACCESS_2_FRAGMENT_DENSITY_MAP_READ_BIT_EXT, - eColorAttachmentReadNoncoherentEXT = VK_ACCESS_2_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT, - eInvocationMaskReadHUAWEI = VK_ACCESS_2_INVOCATION_MASK_READ_BIT_HUAWEI, - eAccelerationStructureReadNV = VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_NV, - eAccelerationStructureWriteNV = VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_NV, - eShadingRateImageReadNV = VK_ACCESS_2_SHADING_RATE_IMAGE_READ_BIT_NV - }; - using AccessFlagBits2KHR = AccessFlagBits2; - - VULKAN_HPP_INLINE std::string to_string( AccessFlagBits2 value ) - { - switch ( value ) - { - case AccessFlagBits2::eNone: return "None"; - case AccessFlagBits2::eIndirectCommandRead: return "IndirectCommandRead"; - case AccessFlagBits2::eIndexRead: return "IndexRead"; - case AccessFlagBits2::eVertexAttributeRead: return "VertexAttributeRead"; - case AccessFlagBits2::eUniformRead: return "UniformRead"; - case AccessFlagBits2::eInputAttachmentRead: return "InputAttachmentRead"; - case AccessFlagBits2::eShaderRead: return "ShaderRead"; - case AccessFlagBits2::eShaderWrite: return "ShaderWrite"; - case AccessFlagBits2::eColorAttachmentRead: return "ColorAttachmentRead"; - case AccessFlagBits2::eColorAttachmentWrite: return "ColorAttachmentWrite"; - case AccessFlagBits2::eDepthStencilAttachmentRead: return "DepthStencilAttachmentRead"; - case AccessFlagBits2::eDepthStencilAttachmentWrite: return "DepthStencilAttachmentWrite"; - case AccessFlagBits2::eTransferRead: return "TransferRead"; - case AccessFlagBits2::eTransferWrite: return "TransferWrite"; - case AccessFlagBits2::eHostRead: return "HostRead"; - case AccessFlagBits2::eHostWrite: return "HostWrite"; - case AccessFlagBits2::eMemoryRead: return "MemoryRead"; - case AccessFlagBits2::eMemoryWrite: return "MemoryWrite"; - case AccessFlagBits2::eShaderSampledRead: return "ShaderSampledRead"; - case AccessFlagBits2::eShaderStorageRead: return "ShaderStorageRead"; - case AccessFlagBits2::eShaderStorageWrite: return "ShaderStorageWrite"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case AccessFlagBits2::eVideoDecodeReadKHR: return "VideoDecodeReadKHR"; - case AccessFlagBits2::eVideoDecodeWriteKHR: return "VideoDecodeWriteKHR"; - case AccessFlagBits2::eVideoEncodeReadKHR: return "VideoEncodeReadKHR"; - case AccessFlagBits2::eVideoEncodeWriteKHR: return "VideoEncodeWriteKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case AccessFlagBits2::eTransformFeedbackWriteEXT: return "TransformFeedbackWriteEXT"; - case AccessFlagBits2::eTransformFeedbackCounterReadEXT: return "TransformFeedbackCounterReadEXT"; - case AccessFlagBits2::eTransformFeedbackCounterWriteEXT: return "TransformFeedbackCounterWriteEXT"; - case AccessFlagBits2::eConditionalRenderingReadEXT: return "ConditionalRenderingReadEXT"; - case AccessFlagBits2::eCommandPreprocessReadNV: return "CommandPreprocessReadNV"; - case AccessFlagBits2::eCommandPreprocessWriteNV: return "CommandPreprocessWriteNV"; - case AccessFlagBits2::eFragmentShadingRateAttachmentReadKHR: return "FragmentShadingRateAttachmentReadKHR"; - case AccessFlagBits2::eAccelerationStructureReadKHR: return "AccelerationStructureReadKHR"; - case AccessFlagBits2::eAccelerationStructureWriteKHR: return "AccelerationStructureWriteKHR"; - case AccessFlagBits2::eFragmentDensityMapReadEXT: return "FragmentDensityMapReadEXT"; - case AccessFlagBits2::eColorAttachmentReadNoncoherentEXT: return "ColorAttachmentReadNoncoherentEXT"; - case AccessFlagBits2::eInvocationMaskReadHUAWEI: return "InvocationMaskReadHUAWEI"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class SubmitFlagBits : VkSubmitFlags - { - eProtected = VK_SUBMIT_PROTECTED_BIT - }; - using SubmitFlagBitsKHR = SubmitFlagBits; - - VULKAN_HPP_INLINE std::string to_string( SubmitFlagBits value ) - { - switch ( value ) - { - case SubmitFlagBits::eProtected: return "Protected"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class RenderingFlagBits : VkRenderingFlags - { - eContentsSecondaryCommandBuffers = VK_RENDERING_CONTENTS_SECONDARY_COMMAND_BUFFERS_BIT, - eSuspending = VK_RENDERING_SUSPENDING_BIT, - eResuming = VK_RENDERING_RESUMING_BIT - }; - using RenderingFlagBitsKHR = RenderingFlagBits; - - VULKAN_HPP_INLINE std::string to_string( RenderingFlagBits value ) - { - switch ( value ) - { - case RenderingFlagBits::eContentsSecondaryCommandBuffers: return "ContentsSecondaryCommandBuffers"; - case RenderingFlagBits::eSuspending: return "Suspending"; - case RenderingFlagBits::eResuming: return "Resuming"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FormatFeatureFlagBits2 : VkFormatFeatureFlags2 - { - eSampledImage = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT, - eStorageImage = VK_FORMAT_FEATURE_2_STORAGE_IMAGE_BIT, - eStorageImageAtomic = VK_FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT, - eUniformTexelBuffer = VK_FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT, - eStorageTexelBuffer = VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT, - eStorageTexelBufferAtomic = VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT, - eVertexBuffer = VK_FORMAT_FEATURE_2_VERTEX_BUFFER_BIT, - eColorAttachment = VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT, - eColorAttachmentBlend = VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT, - eDepthStencilAttachment = VK_FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT, - eBlitSrc = VK_FORMAT_FEATURE_2_BLIT_SRC_BIT, - eBlitDst = VK_FORMAT_FEATURE_2_BLIT_DST_BIT, - eSampledImageFilterLinear = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT, - eSampledImageFilterCubic = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT, - eTransferSrc = VK_FORMAT_FEATURE_2_TRANSFER_SRC_BIT, - eTransferDst = VK_FORMAT_FEATURE_2_TRANSFER_DST_BIT, - eSampledImageFilterMinmax = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT, - eMidpointChromaSamples = VK_FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT, - eSampledImageYcbcrConversionLinearFilter = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT, - eSampledImageYcbcrConversionSeparateReconstructionFilter = - VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT, - eSampledImageYcbcrConversionChromaReconstructionExplicit = - VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT, - eSampledImageYcbcrConversionChromaReconstructionExplicitForceable = - VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT, - eDisjoint = VK_FORMAT_FEATURE_2_DISJOINT_BIT, - eCositedChromaSamples = VK_FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT, - eStorageReadWithoutFormat = VK_FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT, - eStorageWriteWithoutFormat = VK_FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT, - eSampledImageDepthComparison = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoDecodeOutputKHR = VK_FORMAT_FEATURE_2_VIDEO_DECODE_OUTPUT_BIT_KHR, - eVideoDecodeDpbKHR = VK_FORMAT_FEATURE_2_VIDEO_DECODE_DPB_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eAccelerationStructureVertexBufferKHR = VK_FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR, - eFragmentDensityMapEXT = VK_FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT, - eFragmentShadingRateAttachmentKHR = VK_FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - eVideoEncodeInputKHR = VK_FORMAT_FEATURE_2_VIDEO_ENCODE_INPUT_BIT_KHR, - eVideoEncodeDpbKHR = VK_FORMAT_FEATURE_2_VIDEO_ENCODE_DPB_BIT_KHR, -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - eLinearColorAttachmentNV = VK_FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV, - eSampledImageFilterCubicEXT = VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT - }; - using FormatFeatureFlagBits2KHR = FormatFeatureFlagBits2; - - VULKAN_HPP_INLINE std::string to_string( FormatFeatureFlagBits2 value ) - { - switch ( value ) - { - case FormatFeatureFlagBits2::eSampledImage: return "SampledImage"; - case FormatFeatureFlagBits2::eStorageImage: return "StorageImage"; - case FormatFeatureFlagBits2::eStorageImageAtomic: return "StorageImageAtomic"; - case FormatFeatureFlagBits2::eUniformTexelBuffer: return "UniformTexelBuffer"; - case FormatFeatureFlagBits2::eStorageTexelBuffer: return "StorageTexelBuffer"; - case FormatFeatureFlagBits2::eStorageTexelBufferAtomic: return "StorageTexelBufferAtomic"; - case FormatFeatureFlagBits2::eVertexBuffer: return "VertexBuffer"; - case FormatFeatureFlagBits2::eColorAttachment: return "ColorAttachment"; - case FormatFeatureFlagBits2::eColorAttachmentBlend: return "ColorAttachmentBlend"; - case FormatFeatureFlagBits2::eDepthStencilAttachment: return "DepthStencilAttachment"; - case FormatFeatureFlagBits2::eBlitSrc: return "BlitSrc"; - case FormatFeatureFlagBits2::eBlitDst: return "BlitDst"; - case FormatFeatureFlagBits2::eSampledImageFilterLinear: return "SampledImageFilterLinear"; - case FormatFeatureFlagBits2::eSampledImageFilterCubic: return "SampledImageFilterCubic"; - case FormatFeatureFlagBits2::eTransferSrc: return "TransferSrc"; - case FormatFeatureFlagBits2::eTransferDst: return "TransferDst"; - case FormatFeatureFlagBits2::eSampledImageFilterMinmax: return "SampledImageFilterMinmax"; - case FormatFeatureFlagBits2::eMidpointChromaSamples: return "MidpointChromaSamples"; - case FormatFeatureFlagBits2::eSampledImageYcbcrConversionLinearFilter: - return "SampledImageYcbcrConversionLinearFilter"; - case FormatFeatureFlagBits2::eSampledImageYcbcrConversionSeparateReconstructionFilter: - return "SampledImageYcbcrConversionSeparateReconstructionFilter"; - case FormatFeatureFlagBits2::eSampledImageYcbcrConversionChromaReconstructionExplicit: - return "SampledImageYcbcrConversionChromaReconstructionExplicit"; - case FormatFeatureFlagBits2::eSampledImageYcbcrConversionChromaReconstructionExplicitForceable: - return "SampledImageYcbcrConversionChromaReconstructionExplicitForceable"; - case FormatFeatureFlagBits2::eDisjoint: return "Disjoint"; - case FormatFeatureFlagBits2::eCositedChromaSamples: return "CositedChromaSamples"; - case FormatFeatureFlagBits2::eStorageReadWithoutFormat: return "StorageReadWithoutFormat"; - case FormatFeatureFlagBits2::eStorageWriteWithoutFormat: return "StorageWriteWithoutFormat"; - case FormatFeatureFlagBits2::eSampledImageDepthComparison: return "SampledImageDepthComparison"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case FormatFeatureFlagBits2::eVideoDecodeOutputKHR: return "VideoDecodeOutputKHR"; - case FormatFeatureFlagBits2::eVideoDecodeDpbKHR: return "VideoDecodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case FormatFeatureFlagBits2::eAccelerationStructureVertexBufferKHR: return "AccelerationStructureVertexBufferKHR"; - case FormatFeatureFlagBits2::eFragmentDensityMapEXT: return "FragmentDensityMapEXT"; - case FormatFeatureFlagBits2::eFragmentShadingRateAttachmentKHR: return "FragmentShadingRateAttachmentKHR"; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - case FormatFeatureFlagBits2::eVideoEncodeInputKHR: return "VideoEncodeInputKHR"; - case FormatFeatureFlagBits2::eVideoEncodeDpbKHR: return "VideoEncodeDpbKHR"; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - case FormatFeatureFlagBits2::eLinearColorAttachmentNV: return "LinearColorAttachmentNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_KHR_surface === - - enum class SurfaceTransformFlagBitsKHR : VkSurfaceTransformFlagsKHR - { - eIdentity = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR, - eRotate90 = VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR, - eRotate180 = VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR, - eRotate270 = VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR, - eHorizontalMirror = VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR, - eHorizontalMirrorRotate90 = VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR, - eHorizontalMirrorRotate180 = VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR, - eHorizontalMirrorRotate270 = VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR, - eInherit = VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( SurfaceTransformFlagBitsKHR value ) - { - switch ( value ) - { - case SurfaceTransformFlagBitsKHR::eIdentity: return "Identity"; - case SurfaceTransformFlagBitsKHR::eRotate90: return "Rotate90"; - case SurfaceTransformFlagBitsKHR::eRotate180: return "Rotate180"; - case SurfaceTransformFlagBitsKHR::eRotate270: return "Rotate270"; - case SurfaceTransformFlagBitsKHR::eHorizontalMirror: return "HorizontalMirror"; - case SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate90: return "HorizontalMirrorRotate90"; - case SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate180: return "HorizontalMirrorRotate180"; - case SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate270: return "HorizontalMirrorRotate270"; - case SurfaceTransformFlagBitsKHR::eInherit: return "Inherit"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PresentModeKHR - { - eImmediate = VK_PRESENT_MODE_IMMEDIATE_KHR, - eMailbox = VK_PRESENT_MODE_MAILBOX_KHR, - eFifo = VK_PRESENT_MODE_FIFO_KHR, - eFifoRelaxed = VK_PRESENT_MODE_FIFO_RELAXED_KHR, - eSharedDemandRefresh = VK_PRESENT_MODE_SHARED_DEMAND_REFRESH_KHR, - eSharedContinuousRefresh = VK_PRESENT_MODE_SHARED_CONTINUOUS_REFRESH_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PresentModeKHR value ) - { - switch ( value ) - { - case PresentModeKHR::eImmediate: return "Immediate"; - case PresentModeKHR::eMailbox: return "Mailbox"; - case PresentModeKHR::eFifo: return "Fifo"; - case PresentModeKHR::eFifoRelaxed: return "FifoRelaxed"; - case PresentModeKHR::eSharedDemandRefresh: return "SharedDemandRefresh"; - case PresentModeKHR::eSharedContinuousRefresh: return "SharedContinuousRefresh"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ColorSpaceKHR - { - eSrgbNonlinear = VK_COLOR_SPACE_SRGB_NONLINEAR_KHR, - eDisplayP3NonlinearEXT = VK_COLOR_SPACE_DISPLAY_P3_NONLINEAR_EXT, - eExtendedSrgbLinearEXT = VK_COLOR_SPACE_EXTENDED_SRGB_LINEAR_EXT, - eDisplayP3LinearEXT = VK_COLOR_SPACE_DISPLAY_P3_LINEAR_EXT, - eDciP3NonlinearEXT = VK_COLOR_SPACE_DCI_P3_NONLINEAR_EXT, - eBt709LinearEXT = VK_COLOR_SPACE_BT709_LINEAR_EXT, - eBt709NonlinearEXT = VK_COLOR_SPACE_BT709_NONLINEAR_EXT, - eBt2020LinearEXT = VK_COLOR_SPACE_BT2020_LINEAR_EXT, - eHdr10St2084EXT = VK_COLOR_SPACE_HDR10_ST2084_EXT, - eDolbyvisionEXT = VK_COLOR_SPACE_DOLBYVISION_EXT, - eHdr10HlgEXT = VK_COLOR_SPACE_HDR10_HLG_EXT, - eAdobergbLinearEXT = VK_COLOR_SPACE_ADOBERGB_LINEAR_EXT, - eAdobergbNonlinearEXT = VK_COLOR_SPACE_ADOBERGB_NONLINEAR_EXT, - ePassThroughEXT = VK_COLOR_SPACE_PASS_THROUGH_EXT, - eExtendedSrgbNonlinearEXT = VK_COLOR_SPACE_EXTENDED_SRGB_NONLINEAR_EXT, - eDisplayNativeAMD = VK_COLOR_SPACE_DISPLAY_NATIVE_AMD, - eVkColorspaceSrgbNonlinear = VK_COLORSPACE_SRGB_NONLINEAR_KHR, - eDciP3LinearEXT = VK_COLOR_SPACE_DCI_P3_LINEAR_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ColorSpaceKHR value ) - { - switch ( value ) - { - case ColorSpaceKHR::eSrgbNonlinear: return "SrgbNonlinear"; - case ColorSpaceKHR::eDisplayP3NonlinearEXT: return "DisplayP3NonlinearEXT"; - case ColorSpaceKHR::eExtendedSrgbLinearEXT: return "ExtendedSrgbLinearEXT"; - case ColorSpaceKHR::eDisplayP3LinearEXT: return "DisplayP3LinearEXT"; - case ColorSpaceKHR::eDciP3NonlinearEXT: return "DciP3NonlinearEXT"; - case ColorSpaceKHR::eBt709LinearEXT: return "Bt709LinearEXT"; - case ColorSpaceKHR::eBt709NonlinearEXT: return "Bt709NonlinearEXT"; - case ColorSpaceKHR::eBt2020LinearEXT: return "Bt2020LinearEXT"; - case ColorSpaceKHR::eHdr10St2084EXT: return "Hdr10St2084EXT"; - case ColorSpaceKHR::eDolbyvisionEXT: return "DolbyvisionEXT"; - case ColorSpaceKHR::eHdr10HlgEXT: return "Hdr10HlgEXT"; - case ColorSpaceKHR::eAdobergbLinearEXT: return "AdobergbLinearEXT"; - case ColorSpaceKHR::eAdobergbNonlinearEXT: return "AdobergbNonlinearEXT"; - case ColorSpaceKHR::ePassThroughEXT: return "PassThroughEXT"; - case ColorSpaceKHR::eExtendedSrgbNonlinearEXT: return "ExtendedSrgbNonlinearEXT"; - case ColorSpaceKHR::eDisplayNativeAMD: return "DisplayNativeAMD"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CompositeAlphaFlagBitsKHR : VkCompositeAlphaFlagsKHR - { - eOpaque = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR, - ePreMultiplied = VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR, - ePostMultiplied = VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR, - eInherit = VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( CompositeAlphaFlagBitsKHR value ) - { - switch ( value ) - { - case CompositeAlphaFlagBitsKHR::eOpaque: return "Opaque"; - case CompositeAlphaFlagBitsKHR::ePreMultiplied: return "PreMultiplied"; - case CompositeAlphaFlagBitsKHR::ePostMultiplied: return "PostMultiplied"; - case CompositeAlphaFlagBitsKHR::eInherit: return "Inherit"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_KHR_swapchain === - - enum class SwapchainCreateFlagBitsKHR : VkSwapchainCreateFlagsKHR - { - eSplitInstanceBindRegions = VK_SWAPCHAIN_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR, - eProtected = VK_SWAPCHAIN_CREATE_PROTECTED_BIT_KHR, - eMutableFormat = VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( SwapchainCreateFlagBitsKHR value ) - { - switch ( value ) - { - case SwapchainCreateFlagBitsKHR::eSplitInstanceBindRegions: return "SplitInstanceBindRegions"; - case SwapchainCreateFlagBitsKHR::eProtected: return "Protected"; - case SwapchainCreateFlagBitsKHR::eMutableFormat: return "MutableFormat"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DeviceGroupPresentModeFlagBitsKHR : VkDeviceGroupPresentModeFlagsKHR - { - eLocal = VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR, - eRemote = VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR, - eSum = VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR, - eLocalMultiDevice = VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceGroupPresentModeFlagBitsKHR value ) - { - switch ( value ) - { - case DeviceGroupPresentModeFlagBitsKHR::eLocal: return "Local"; - case DeviceGroupPresentModeFlagBitsKHR::eRemote: return "Remote"; - case DeviceGroupPresentModeFlagBitsKHR::eSum: return "Sum"; - case DeviceGroupPresentModeFlagBitsKHR::eLocalMultiDevice: return "LocalMultiDevice"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_KHR_display === - - enum class DisplayPlaneAlphaFlagBitsKHR : VkDisplayPlaneAlphaFlagsKHR - { - eOpaque = VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR, - eGlobal = VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR, - ePerPixel = VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR, - ePerPixelPremultiplied = VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( DisplayPlaneAlphaFlagBitsKHR value ) - { - switch ( value ) - { - case DisplayPlaneAlphaFlagBitsKHR::eOpaque: return "Opaque"; - case DisplayPlaneAlphaFlagBitsKHR::eGlobal: return "Global"; - case DisplayPlaneAlphaFlagBitsKHR::ePerPixel: return "PerPixel"; - case DisplayPlaneAlphaFlagBitsKHR::ePerPixelPremultiplied: return "PerPixelPremultiplied"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DisplayModeCreateFlagBitsKHR : VkDisplayModeCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( DisplayModeCreateFlagBitsKHR ) - { - return "(void)"; - } - - enum class DisplaySurfaceCreateFlagBitsKHR : VkDisplaySurfaceCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( DisplaySurfaceCreateFlagBitsKHR ) - { - return "(void)"; - } - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - enum class XlibSurfaceCreateFlagBitsKHR : VkXlibSurfaceCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( XlibSurfaceCreateFlagBitsKHR ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - enum class XcbSurfaceCreateFlagBitsKHR : VkXcbSurfaceCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( XcbSurfaceCreateFlagBitsKHR ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - enum class WaylandSurfaceCreateFlagBitsKHR : VkWaylandSurfaceCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( WaylandSurfaceCreateFlagBitsKHR ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - enum class AndroidSurfaceCreateFlagBitsKHR : VkAndroidSurfaceCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( AndroidSurfaceCreateFlagBitsKHR ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - enum class Win32SurfaceCreateFlagBitsKHR : VkWin32SurfaceCreateFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( Win32SurfaceCreateFlagBitsKHR ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - enum class DebugReportFlagBitsEXT : VkDebugReportFlagsEXT - { - eInformation = VK_DEBUG_REPORT_INFORMATION_BIT_EXT, - eWarning = VK_DEBUG_REPORT_WARNING_BIT_EXT, - ePerformanceWarning = VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT, - eError = VK_DEBUG_REPORT_ERROR_BIT_EXT, - eDebug = VK_DEBUG_REPORT_DEBUG_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DebugReportFlagBitsEXT value ) - { - switch ( value ) - { - case DebugReportFlagBitsEXT::eInformation: return "Information"; - case DebugReportFlagBitsEXT::eWarning: return "Warning"; - case DebugReportFlagBitsEXT::ePerformanceWarning: return "PerformanceWarning"; - case DebugReportFlagBitsEXT::eError: return "Error"; - case DebugReportFlagBitsEXT::eDebug: return "Debug"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DebugReportObjectTypeEXT - { - eUnknown = VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, - eInstance = VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT, - ePhysicalDevice = VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT, - eDevice = VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, - eQueue = VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, - eSemaphore = VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT, - eCommandBuffer = VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT, - eFence = VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT, - eDeviceMemory = VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT, - eBuffer = VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT, - eImage = VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, - eEvent = VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT, - eQueryPool = VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT, - eBufferView = VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT, - eImageView = VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT, - eShaderModule = VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT, - ePipelineCache = VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT, - ePipelineLayout = VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT, - eRenderPass = VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT, - ePipeline = VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT, - eDescriptorSetLayout = VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT, - eSampler = VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT, - eDescriptorPool = VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT, - eDescriptorSet = VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT, - eFramebuffer = VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT, - eCommandPool = VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT, - eSurfaceKHR = VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT, - eSwapchainKHR = VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT, - eDebugReportCallbackEXT = VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT, - eDisplayKHR = VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT, - eDisplayModeKHR = VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT, - eValidationCacheEXT = VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT, - eSamplerYcbcrConversion = VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT, - eDescriptorUpdateTemplate = VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT, - eCuModuleNVX = VK_DEBUG_REPORT_OBJECT_TYPE_CU_MODULE_NVX_EXT, - eCuFunctionNVX = VK_DEBUG_REPORT_OBJECT_TYPE_CU_FUNCTION_NVX_EXT, - eAccelerationStructureKHR = VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT, - eAccelerationStructureNV = VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV_EXT, -#if defined( VK_USE_PLATFORM_FUCHSIA ) - eBufferCollectionFUCHSIA = VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_COLLECTION_FUCHSIA_EXT, -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - eDebugReport = VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT, - eDescriptorUpdateTemplateKHR = VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR_EXT, - eSamplerYcbcrConversionKHR = VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR_EXT, - eValidationCache = VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DebugReportObjectTypeEXT value ) - { - switch ( value ) - { - case DebugReportObjectTypeEXT::eUnknown: return "Unknown"; - case DebugReportObjectTypeEXT::eInstance: return "Instance"; - case DebugReportObjectTypeEXT::ePhysicalDevice: return "PhysicalDevice"; - case DebugReportObjectTypeEXT::eDevice: return "Device"; - case DebugReportObjectTypeEXT::eQueue: return "Queue"; - case DebugReportObjectTypeEXT::eSemaphore: return "Semaphore"; - case DebugReportObjectTypeEXT::eCommandBuffer: return "CommandBuffer"; - case DebugReportObjectTypeEXT::eFence: return "Fence"; - case DebugReportObjectTypeEXT::eDeviceMemory: return "DeviceMemory"; - case DebugReportObjectTypeEXT::eBuffer: return "Buffer"; - case DebugReportObjectTypeEXT::eImage: return "Image"; - case DebugReportObjectTypeEXT::eEvent: return "Event"; - case DebugReportObjectTypeEXT::eQueryPool: return "QueryPool"; - case DebugReportObjectTypeEXT::eBufferView: return "BufferView"; - case DebugReportObjectTypeEXT::eImageView: return "ImageView"; - case DebugReportObjectTypeEXT::eShaderModule: return "ShaderModule"; - case DebugReportObjectTypeEXT::ePipelineCache: return "PipelineCache"; - case DebugReportObjectTypeEXT::ePipelineLayout: return "PipelineLayout"; - case DebugReportObjectTypeEXT::eRenderPass: return "RenderPass"; - case DebugReportObjectTypeEXT::ePipeline: return "Pipeline"; - case DebugReportObjectTypeEXT::eDescriptorSetLayout: return "DescriptorSetLayout"; - case DebugReportObjectTypeEXT::eSampler: return "Sampler"; - case DebugReportObjectTypeEXT::eDescriptorPool: return "DescriptorPool"; - case DebugReportObjectTypeEXT::eDescriptorSet: return "DescriptorSet"; - case DebugReportObjectTypeEXT::eFramebuffer: return "Framebuffer"; - case DebugReportObjectTypeEXT::eCommandPool: return "CommandPool"; - case DebugReportObjectTypeEXT::eSurfaceKHR: return "SurfaceKHR"; - case DebugReportObjectTypeEXT::eSwapchainKHR: return "SwapchainKHR"; - case DebugReportObjectTypeEXT::eDebugReportCallbackEXT: return "DebugReportCallbackEXT"; - case DebugReportObjectTypeEXT::eDisplayKHR: return "DisplayKHR"; - case DebugReportObjectTypeEXT::eDisplayModeKHR: return "DisplayModeKHR"; - case DebugReportObjectTypeEXT::eValidationCacheEXT: return "ValidationCacheEXT"; - case DebugReportObjectTypeEXT::eSamplerYcbcrConversion: return "SamplerYcbcrConversion"; - case DebugReportObjectTypeEXT::eDescriptorUpdateTemplate: return "DescriptorUpdateTemplate"; - case DebugReportObjectTypeEXT::eCuModuleNVX: return "CuModuleNVX"; - case DebugReportObjectTypeEXT::eCuFunctionNVX: return "CuFunctionNVX"; - case DebugReportObjectTypeEXT::eAccelerationStructureKHR: return "AccelerationStructureKHR"; - case DebugReportObjectTypeEXT::eAccelerationStructureNV: return "AccelerationStructureNV"; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - case DebugReportObjectTypeEXT::eBufferCollectionFUCHSIA: return "BufferCollectionFUCHSIA"; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_AMD_rasterization_order === - - enum class RasterizationOrderAMD - { - eStrict = VK_RASTERIZATION_ORDER_STRICT_AMD, - eRelaxed = VK_RASTERIZATION_ORDER_RELAXED_AMD - }; - - VULKAN_HPP_INLINE std::string to_string( RasterizationOrderAMD value ) - { - switch ( value ) - { - case RasterizationOrderAMD::eStrict: return "Strict"; - case RasterizationOrderAMD::eRelaxed: return "Relaxed"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - enum class VideoCodecOperationFlagBitsKHR : VkVideoCodecOperationFlagsKHR - { - eInvalid = VK_VIDEO_CODEC_OPERATION_INVALID_BIT_KHR, -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - eEncodeH264EXT = VK_VIDEO_CODEC_OPERATION_ENCODE_H264_BIT_EXT, - eEncodeH265EXT = VK_VIDEO_CODEC_OPERATION_ENCODE_H265_BIT_EXT, - eDecodeH264EXT = VK_VIDEO_CODEC_OPERATION_DECODE_H264_BIT_EXT, - eDecodeH265EXT = VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_EXT -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - - VULKAN_HPP_INLINE std::string to_string( VideoCodecOperationFlagBitsKHR value ) - { - switch ( value ) - { - case VideoCodecOperationFlagBitsKHR::eInvalid: return "Invalid"; -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - case VideoCodecOperationFlagBitsKHR::eEncodeH264EXT: return "EncodeH264EXT"; - case VideoCodecOperationFlagBitsKHR::eEncodeH265EXT: return "EncodeH265EXT"; - case VideoCodecOperationFlagBitsKHR::eDecodeH264EXT: return "DecodeH264EXT"; - case VideoCodecOperationFlagBitsKHR::eDecodeH265EXT: return "DecodeH265EXT"; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoChromaSubsamplingFlagBitsKHR : VkVideoChromaSubsamplingFlagsKHR - { - eInvalid = VK_VIDEO_CHROMA_SUBSAMPLING_INVALID_BIT_KHR, - eMonochrome = VK_VIDEO_CHROMA_SUBSAMPLING_MONOCHROME_BIT_KHR, - e420 = VK_VIDEO_CHROMA_SUBSAMPLING_420_BIT_KHR, - e422 = VK_VIDEO_CHROMA_SUBSAMPLING_422_BIT_KHR, - e444 = VK_VIDEO_CHROMA_SUBSAMPLING_444_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoChromaSubsamplingFlagBitsKHR value ) - { - switch ( value ) - { - case VideoChromaSubsamplingFlagBitsKHR::eInvalid: return "Invalid"; - case VideoChromaSubsamplingFlagBitsKHR::eMonochrome: return "Monochrome"; - case VideoChromaSubsamplingFlagBitsKHR::e420: return "420"; - case VideoChromaSubsamplingFlagBitsKHR::e422: return "422"; - case VideoChromaSubsamplingFlagBitsKHR::e444: return "444"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoComponentBitDepthFlagBitsKHR : VkVideoComponentBitDepthFlagsKHR - { - eInvalid = VK_VIDEO_COMPONENT_BIT_DEPTH_INVALID_KHR, - e8 = VK_VIDEO_COMPONENT_BIT_DEPTH_8_BIT_KHR, - e10 = VK_VIDEO_COMPONENT_BIT_DEPTH_10_BIT_KHR, - e12 = VK_VIDEO_COMPONENT_BIT_DEPTH_12_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoComponentBitDepthFlagBitsKHR value ) - { - switch ( value ) - { - case VideoComponentBitDepthFlagBitsKHR::eInvalid: return "Invalid"; - case VideoComponentBitDepthFlagBitsKHR::e8: return "8"; - case VideoComponentBitDepthFlagBitsKHR::e10: return "10"; - case VideoComponentBitDepthFlagBitsKHR::e12: return "12"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoCapabilityFlagBitsKHR : VkVideoCapabilityFlagsKHR - { - eProtectedContent = VK_VIDEO_CAPABILITY_PROTECTED_CONTENT_BIT_KHR, - eSeparateReferenceImages = VK_VIDEO_CAPABILITY_SEPARATE_REFERENCE_IMAGES_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoCapabilityFlagBitsKHR value ) - { - switch ( value ) - { - case VideoCapabilityFlagBitsKHR::eProtectedContent: return "ProtectedContent"; - case VideoCapabilityFlagBitsKHR::eSeparateReferenceImages: return "SeparateReferenceImages"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoSessionCreateFlagBitsKHR : VkVideoSessionCreateFlagsKHR - { - eDefault = VK_VIDEO_SESSION_CREATE_DEFAULT_KHR, - eProtectedContent = VK_VIDEO_SESSION_CREATE_PROTECTED_CONTENT_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoSessionCreateFlagBitsKHR value ) - { - switch ( value ) - { - case VideoSessionCreateFlagBitsKHR::eDefault: return "Default"; - case VideoSessionCreateFlagBitsKHR::eProtectedContent: return "ProtectedContent"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoCodingControlFlagBitsKHR : VkVideoCodingControlFlagsKHR - { - eDefault = VK_VIDEO_CODING_CONTROL_DEFAULT_KHR, - eReset = VK_VIDEO_CODING_CONTROL_RESET_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoCodingControlFlagBitsKHR value ) - { - switch ( value ) - { - case VideoCodingControlFlagBitsKHR::eDefault: return "Default"; - case VideoCodingControlFlagBitsKHR::eReset: return "Reset"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoCodingQualityPresetFlagBitsKHR : VkVideoCodingQualityPresetFlagsKHR - { - eNormal = VK_VIDEO_CODING_QUALITY_PRESET_NORMAL_BIT_KHR, - ePower = VK_VIDEO_CODING_QUALITY_PRESET_POWER_BIT_KHR, - eQuality = VK_VIDEO_CODING_QUALITY_PRESET_QUALITY_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoCodingQualityPresetFlagBitsKHR value ) - { - switch ( value ) - { - case VideoCodingQualityPresetFlagBitsKHR::eNormal: return "Normal"; - case VideoCodingQualityPresetFlagBitsKHR::ePower: return "Power"; - case VideoCodingQualityPresetFlagBitsKHR::eQuality: return "Quality"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryResultStatusKHR - { - eError = VK_QUERY_RESULT_STATUS_ERROR_KHR, - eNotReady = VK_QUERY_RESULT_STATUS_NOT_READY_KHR, - eComplete = VK_QUERY_RESULT_STATUS_COMPLETE_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( QueryResultStatusKHR value ) - { - switch ( value ) - { - case QueryResultStatusKHR::eError: return "Error"; - case QueryResultStatusKHR::eNotReady: return "NotReady"; - case QueryResultStatusKHR::eComplete: return "Complete"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoBeginCodingFlagBitsKHR : VkVideoBeginCodingFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( VideoBeginCodingFlagBitsKHR ) - { - return "(void)"; - } - - enum class VideoEndCodingFlagBitsKHR : VkVideoEndCodingFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEndCodingFlagBitsKHR ) - { - return "(void)"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - enum class VideoDecodeFlagBitsKHR : VkVideoDecodeFlagsKHR - { - eDefault = VK_VIDEO_DECODE_DEFAULT_KHR, - eReserved0 = VK_VIDEO_DECODE_RESERVED_0_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeFlagBitsKHR value ) - { - switch ( value ) - { - case VideoDecodeFlagBitsKHR::eDefault: return "Default"; - case VideoDecodeFlagBitsKHR::eReserved0: return "Reserved0"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - enum class PipelineRasterizationStateStreamCreateFlagBitsEXT : VkPipelineRasterizationStateStreamCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationStateStreamCreateFlagBitsEXT ) - { - return "(void)"; - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h264 === - - enum class VideoEncodeH264CapabilityFlagBitsEXT : VkVideoEncodeH264CapabilityFlagsEXT - { - eCabac = VK_VIDEO_ENCODE_H264_CAPABILITY_CABAC_BIT_EXT, - eCavlc = VK_VIDEO_ENCODE_H264_CAPABILITY_CAVLC_BIT_EXT, - eWeightedBiPredImplicit = VK_VIDEO_ENCODE_H264_CAPABILITY_WEIGHTED_BI_PRED_IMPLICIT_BIT_EXT, - eTransform8X8 = VK_VIDEO_ENCODE_H264_CAPABILITY_TRANSFORM_8X8_BIT_EXT, - eChromaQpOffset = VK_VIDEO_ENCODE_H264_CAPABILITY_CHROMA_QP_OFFSET_BIT_EXT, - eSecondChromaQpOffset = VK_VIDEO_ENCODE_H264_CAPABILITY_SECOND_CHROMA_QP_OFFSET_BIT_EXT, - eDeblockingFilterDisabled = VK_VIDEO_ENCODE_H264_CAPABILITY_DEBLOCKING_FILTER_DISABLED_BIT_EXT, - eDeblockingFilterEnabled = VK_VIDEO_ENCODE_H264_CAPABILITY_DEBLOCKING_FILTER_ENABLED_BIT_EXT, - eDeblockingFilterPartial = VK_VIDEO_ENCODE_H264_CAPABILITY_DEBLOCKING_FILTER_PARTIAL_BIT_EXT, - eMultipleSlicePerFrame = VK_VIDEO_ENCODE_H264_CAPABILITY_MULTIPLE_SLICE_PER_FRAME_BIT_EXT, - eEvenlyDistributedSliceSize = VK_VIDEO_ENCODE_H264_CAPABILITY_EVENLY_DISTRIBUTED_SLICE_SIZE_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264CapabilityFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH264CapabilityFlagBitsEXT::eCabac: return "Cabac"; - case VideoEncodeH264CapabilityFlagBitsEXT::eCavlc: return "Cavlc"; - case VideoEncodeH264CapabilityFlagBitsEXT::eWeightedBiPredImplicit: return "WeightedBiPredImplicit"; - case VideoEncodeH264CapabilityFlagBitsEXT::eTransform8X8: return "Transform8X8"; - case VideoEncodeH264CapabilityFlagBitsEXT::eChromaQpOffset: return "ChromaQpOffset"; - case VideoEncodeH264CapabilityFlagBitsEXT::eSecondChromaQpOffset: return "SecondChromaQpOffset"; - case VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterDisabled: return "DeblockingFilterDisabled"; - case VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterEnabled: return "DeblockingFilterEnabled"; - case VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterPartial: return "DeblockingFilterPartial"; - case VideoEncodeH264CapabilityFlagBitsEXT::eMultipleSlicePerFrame: return "MultipleSlicePerFrame"; - case VideoEncodeH264CapabilityFlagBitsEXT::eEvenlyDistributedSliceSize: return "EvenlyDistributedSliceSize"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH264InputModeFlagBitsEXT : VkVideoEncodeH264InputModeFlagsEXT - { - eFrame = VK_VIDEO_ENCODE_H264_INPUT_MODE_FRAME_BIT_EXT, - eSlice = VK_VIDEO_ENCODE_H264_INPUT_MODE_SLICE_BIT_EXT, - eNonVcl = VK_VIDEO_ENCODE_H264_INPUT_MODE_NON_VCL_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264InputModeFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH264InputModeFlagBitsEXT::eFrame: return "Frame"; - case VideoEncodeH264InputModeFlagBitsEXT::eSlice: return "Slice"; - case VideoEncodeH264InputModeFlagBitsEXT::eNonVcl: return "NonVcl"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH264OutputModeFlagBitsEXT : VkVideoEncodeH264OutputModeFlagsEXT - { - eFrame = VK_VIDEO_ENCODE_H264_OUTPUT_MODE_FRAME_BIT_EXT, - eSlice = VK_VIDEO_ENCODE_H264_OUTPUT_MODE_SLICE_BIT_EXT, - eNonVcl = VK_VIDEO_ENCODE_H264_OUTPUT_MODE_NON_VCL_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264OutputModeFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH264OutputModeFlagBitsEXT::eFrame: return "Frame"; - case VideoEncodeH264OutputModeFlagBitsEXT::eSlice: return "Slice"; - case VideoEncodeH264OutputModeFlagBitsEXT::eNonVcl: return "NonVcl"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH264CreateFlagBitsEXT : VkVideoEncodeH264CreateFlagsEXT - { - eDefault = VK_VIDEO_ENCODE_H264_CREATE_DEFAULT_EXT, - eReserved0 = VK_VIDEO_ENCODE_H264_CREATE_RESERVED_0_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264CreateFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH264CreateFlagBitsEXT::eDefault: return "Default"; - case VideoEncodeH264CreateFlagBitsEXT::eReserved0: return "Reserved0"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH264RateControlStructureFlagBitsEXT : VkVideoEncodeH264RateControlStructureFlagsEXT - { - eUnknown = VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_UNKNOWN_EXT, - eFlat = VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_FLAT_BIT_EXT, - eDyadic = VK_VIDEO_ENCODE_H264_RATE_CONTROL_STRUCTURE_DYADIC_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264RateControlStructureFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH264RateControlStructureFlagBitsEXT::eUnknown: return "Unknown"; - case VideoEncodeH264RateControlStructureFlagBitsEXT::eFlat: return "Flat"; - case VideoEncodeH264RateControlStructureFlagBitsEXT::eDyadic: return "Dyadic"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h265 === - - enum class VideoEncodeH265InputModeFlagBitsEXT : VkVideoEncodeH265InputModeFlagsEXT - { - eFrame = VK_VIDEO_ENCODE_H265_INPUT_MODE_FRAME_BIT_EXT, - eSlice = VK_VIDEO_ENCODE_H265_INPUT_MODE_SLICE_BIT_EXT, - eNonVcl = VK_VIDEO_ENCODE_H265_INPUT_MODE_NON_VCL_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265InputModeFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH265InputModeFlagBitsEXT::eFrame: return "Frame"; - case VideoEncodeH265InputModeFlagBitsEXT::eSlice: return "Slice"; - case VideoEncodeH265InputModeFlagBitsEXT::eNonVcl: return "NonVcl"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH265OutputModeFlagBitsEXT : VkVideoEncodeH265OutputModeFlagsEXT - { - eFrame = VK_VIDEO_ENCODE_H265_OUTPUT_MODE_FRAME_BIT_EXT, - eSlice = VK_VIDEO_ENCODE_H265_OUTPUT_MODE_SLICE_BIT_EXT, - eNonVcl = VK_VIDEO_ENCODE_H265_OUTPUT_MODE_NON_VCL_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265OutputModeFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH265OutputModeFlagBitsEXT::eFrame: return "Frame"; - case VideoEncodeH265OutputModeFlagBitsEXT::eSlice: return "Slice"; - case VideoEncodeH265OutputModeFlagBitsEXT::eNonVcl: return "NonVcl"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH265CtbSizeFlagBitsEXT : VkVideoEncodeH265CtbSizeFlagsEXT - { - e8 = VK_VIDEO_ENCODE_H265_CTB_SIZE_8_BIT_EXT, - e16 = VK_VIDEO_ENCODE_H265_CTB_SIZE_16_BIT_EXT, - e32 = VK_VIDEO_ENCODE_H265_CTB_SIZE_32_BIT_EXT, - e64 = VK_VIDEO_ENCODE_H265_CTB_SIZE_64_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265CtbSizeFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH265CtbSizeFlagBitsEXT::e8: return "8"; - case VideoEncodeH265CtbSizeFlagBitsEXT::e16: return "16"; - case VideoEncodeH265CtbSizeFlagBitsEXT::e32: return "32"; - case VideoEncodeH265CtbSizeFlagBitsEXT::e64: return "64"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH265RateControlStructureFlagBitsEXT : VkVideoEncodeH265RateControlStructureFlagsEXT - { - eUnknown = VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_UNKNOWN_EXT, - eFlat = VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_FLAT_BIT_EXT, - eDyadic = VK_VIDEO_ENCODE_H265_RATE_CONTROL_STRUCTURE_DYADIC_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265RateControlStructureFlagBitsEXT value ) - { - switch ( value ) - { - case VideoEncodeH265RateControlStructureFlagBitsEXT::eUnknown: return "Unknown"; - case VideoEncodeH265RateControlStructureFlagBitsEXT::eFlat: return "Flat"; - case VideoEncodeH265RateControlStructureFlagBitsEXT::eDyadic: return "Dyadic"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeH265CapabilityFlagBitsEXT : VkVideoEncodeH265CapabilityFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265CapabilityFlagBitsEXT ) - { - return "(void)"; - } - - enum class VideoEncodeH265CreateFlagBitsEXT : VkVideoEncodeH265CreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265CreateFlagBitsEXT ) - { - return "(void)"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h264 === - - enum class VideoDecodeH264PictureLayoutFlagBitsEXT : VkVideoDecodeH264PictureLayoutFlagsEXT - { - eProgressive = VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_PROGRESSIVE_EXT, - eInterlacedInterleavedLines = VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_INTERLACED_INTERLEAVED_LINES_BIT_EXT, - eInterlacedSeparatePlanes = VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_INTERLACED_SEPARATE_PLANES_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeH264PictureLayoutFlagBitsEXT value ) - { - switch ( value ) - { - case VideoDecodeH264PictureLayoutFlagBitsEXT::eProgressive: return "Progressive"; - case VideoDecodeH264PictureLayoutFlagBitsEXT::eInterlacedInterleavedLines: return "InterlacedInterleavedLines"; - case VideoDecodeH264PictureLayoutFlagBitsEXT::eInterlacedSeparatePlanes: return "InterlacedSeparatePlanes"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoDecodeH264CreateFlagBitsEXT : VkVideoDecodeH264CreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeH264CreateFlagBitsEXT ) - { - return "(void)"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_AMD_shader_info === - - enum class ShaderInfoTypeAMD - { - eStatistics = VK_SHADER_INFO_TYPE_STATISTICS_AMD, - eBinary = VK_SHADER_INFO_TYPE_BINARY_AMD, - eDisassembly = VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD - }; - - VULKAN_HPP_INLINE std::string to_string( ShaderInfoTypeAMD value ) - { - switch ( value ) - { - case ShaderInfoTypeAMD::eStatistics: return "Statistics"; - case ShaderInfoTypeAMD::eBinary: return "Binary"; - case ShaderInfoTypeAMD::eDisassembly: return "Disassembly"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - enum class StreamDescriptorSurfaceCreateFlagBitsGGP : VkStreamDescriptorSurfaceCreateFlagsGGP - { - }; - - VULKAN_HPP_INLINE std::string to_string( StreamDescriptorSurfaceCreateFlagBitsGGP ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - - enum class ExternalMemoryHandleTypeFlagBitsNV : VkExternalMemoryHandleTypeFlagsNV - { - eOpaqueWin32 = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV, - eOpaqueWin32Kmt = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV, - eD3D11Image = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV, - eD3D11ImageKmt = VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryHandleTypeFlagBitsNV value ) - { - switch ( value ) - { - case ExternalMemoryHandleTypeFlagBitsNV::eOpaqueWin32: return "OpaqueWin32"; - case ExternalMemoryHandleTypeFlagBitsNV::eOpaqueWin32Kmt: return "OpaqueWin32Kmt"; - case ExternalMemoryHandleTypeFlagBitsNV::eD3D11Image: return "D3D11Image"; - case ExternalMemoryHandleTypeFlagBitsNV::eD3D11ImageKmt: return "D3D11ImageKmt"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ExternalMemoryFeatureFlagBitsNV : VkExternalMemoryFeatureFlagsNV - { - eDedicatedOnly = VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV, - eExportable = VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV, - eImportable = VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryFeatureFlagBitsNV value ) - { - switch ( value ) - { - case ExternalMemoryFeatureFlagBitsNV::eDedicatedOnly: return "DedicatedOnly"; - case ExternalMemoryFeatureFlagBitsNV::eExportable: return "Exportable"; - case ExternalMemoryFeatureFlagBitsNV::eImportable: return "Importable"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_EXT_validation_flags === - - enum class ValidationCheckEXT - { - eAll = VK_VALIDATION_CHECK_ALL_EXT, - eShaders = VK_VALIDATION_CHECK_SHADERS_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ValidationCheckEXT value ) - { - switch ( value ) - { - case ValidationCheckEXT::eAll: return "All"; - case ValidationCheckEXT::eShaders: return "Shaders"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - enum class ViSurfaceCreateFlagBitsNN : VkViSurfaceCreateFlagsNN - { - }; - - VULKAN_HPP_INLINE std::string to_string( ViSurfaceCreateFlagBitsNN ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_EXT_conditional_rendering === - - enum class ConditionalRenderingFlagBitsEXT : VkConditionalRenderingFlagsEXT - { - eInverted = VK_CONDITIONAL_RENDERING_INVERTED_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ConditionalRenderingFlagBitsEXT value ) - { - switch ( value ) - { - case ConditionalRenderingFlagBitsEXT::eInverted: return "Inverted"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_EXT_display_surface_counter === - - enum class SurfaceCounterFlagBitsEXT : VkSurfaceCounterFlagsEXT - { - eVblank = VK_SURFACE_COUNTER_VBLANK_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( SurfaceCounterFlagBitsEXT value ) - { - switch ( value ) - { - case SurfaceCounterFlagBitsEXT::eVblank: return "Vblank"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_EXT_display_control === - - enum class DisplayPowerStateEXT - { - eOff = VK_DISPLAY_POWER_STATE_OFF_EXT, - eSuspend = VK_DISPLAY_POWER_STATE_SUSPEND_EXT, - eOn = VK_DISPLAY_POWER_STATE_ON_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DisplayPowerStateEXT value ) - { - switch ( value ) - { - case DisplayPowerStateEXT::eOff: return "Off"; - case DisplayPowerStateEXT::eSuspend: return "Suspend"; - case DisplayPowerStateEXT::eOn: return "On"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DeviceEventTypeEXT - { - eDisplayHotplug = VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceEventTypeEXT value ) - { - switch ( value ) - { - case DeviceEventTypeEXT::eDisplayHotplug: return "DisplayHotplug"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DisplayEventTypeEXT - { - eFirstPixelOut = VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DisplayEventTypeEXT value ) - { - switch ( value ) - { - case DisplayEventTypeEXT::eFirstPixelOut: return "FirstPixelOut"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_viewport_swizzle === - - enum class ViewportCoordinateSwizzleNV - { - ePositiveX = VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_X_NV, - eNegativeX = VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_X_NV, - ePositiveY = VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Y_NV, - eNegativeY = VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Y_NV, - ePositiveZ = VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Z_NV, - eNegativeZ = VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Z_NV, - ePositiveW = VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_W_NV, - eNegativeW = VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_W_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ViewportCoordinateSwizzleNV value ) - { - switch ( value ) - { - case ViewportCoordinateSwizzleNV::ePositiveX: return "PositiveX"; - case ViewportCoordinateSwizzleNV::eNegativeX: return "NegativeX"; - case ViewportCoordinateSwizzleNV::ePositiveY: return "PositiveY"; - case ViewportCoordinateSwizzleNV::eNegativeY: return "NegativeY"; - case ViewportCoordinateSwizzleNV::ePositiveZ: return "PositiveZ"; - case ViewportCoordinateSwizzleNV::eNegativeZ: return "NegativeZ"; - case ViewportCoordinateSwizzleNV::ePositiveW: return "PositiveW"; - case ViewportCoordinateSwizzleNV::eNegativeW: return "NegativeW"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineViewportSwizzleStateCreateFlagBitsNV : VkPipelineViewportSwizzleStateCreateFlagsNV - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineViewportSwizzleStateCreateFlagBitsNV ) - { - return "(void)"; - } - - //=== VK_EXT_discard_rectangles === - - enum class DiscardRectangleModeEXT - { - eInclusive = VK_DISCARD_RECTANGLE_MODE_INCLUSIVE_EXT, - eExclusive = VK_DISCARD_RECTANGLE_MODE_EXCLUSIVE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DiscardRectangleModeEXT value ) - { - switch ( value ) - { - case DiscardRectangleModeEXT::eInclusive: return "Inclusive"; - case DiscardRectangleModeEXT::eExclusive: return "Exclusive"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineDiscardRectangleStateCreateFlagBitsEXT : VkPipelineDiscardRectangleStateCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineDiscardRectangleStateCreateFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_EXT_conservative_rasterization === - - enum class ConservativeRasterizationModeEXT - { - eDisabled = VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT, - eOverestimate = VK_CONSERVATIVE_RASTERIZATION_MODE_OVERESTIMATE_EXT, - eUnderestimate = VK_CONSERVATIVE_RASTERIZATION_MODE_UNDERESTIMATE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ConservativeRasterizationModeEXT value ) - { - switch ( value ) - { - case ConservativeRasterizationModeEXT::eDisabled: return "Disabled"; - case ConservativeRasterizationModeEXT::eOverestimate: return "Overestimate"; - case ConservativeRasterizationModeEXT::eUnderestimate: return "Underestimate"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class - PipelineRasterizationConservativeStateCreateFlagBitsEXT : VkPipelineRasterizationConservativeStateCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationConservativeStateCreateFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_EXT_depth_clip_enable === - - enum class PipelineRasterizationDepthClipStateCreateFlagBitsEXT : VkPipelineRasterizationDepthClipStateCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationDepthClipStateCreateFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_KHR_performance_query === - - enum class PerformanceCounterDescriptionFlagBitsKHR : VkPerformanceCounterDescriptionFlagsKHR - { - ePerformanceImpacting = VK_PERFORMANCE_COUNTER_DESCRIPTION_PERFORMANCE_IMPACTING_BIT_KHR, - eConcurrentlyImpacted = VK_PERFORMANCE_COUNTER_DESCRIPTION_CONCURRENTLY_IMPACTED_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceCounterDescriptionFlagBitsKHR value ) - { - switch ( value ) - { - case PerformanceCounterDescriptionFlagBitsKHR::ePerformanceImpacting: return "PerformanceImpacting"; - case PerformanceCounterDescriptionFlagBitsKHR::eConcurrentlyImpacted: return "ConcurrentlyImpacted"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PerformanceCounterScopeKHR - { - eCommandBuffer = VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR, - eRenderPass = VK_PERFORMANCE_COUNTER_SCOPE_RENDER_PASS_KHR, - eCommand = VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_KHR, - eVkQueryScopeCommandBuffer = VK_QUERY_SCOPE_COMMAND_BUFFER_KHR, - eVkQueryScopeCommand = VK_QUERY_SCOPE_COMMAND_KHR, - eVkQueryScopeRenderPass = VK_QUERY_SCOPE_RENDER_PASS_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceCounterScopeKHR value ) - { - switch ( value ) - { - case PerformanceCounterScopeKHR::eCommandBuffer: return "CommandBuffer"; - case PerformanceCounterScopeKHR::eRenderPass: return "RenderPass"; - case PerformanceCounterScopeKHR::eCommand: return "Command"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PerformanceCounterStorageKHR - { - eInt32 = VK_PERFORMANCE_COUNTER_STORAGE_INT32_KHR, - eInt64 = VK_PERFORMANCE_COUNTER_STORAGE_INT64_KHR, - eUint32 = VK_PERFORMANCE_COUNTER_STORAGE_UINT32_KHR, - eUint64 = VK_PERFORMANCE_COUNTER_STORAGE_UINT64_KHR, - eFloat32 = VK_PERFORMANCE_COUNTER_STORAGE_FLOAT32_KHR, - eFloat64 = VK_PERFORMANCE_COUNTER_STORAGE_FLOAT64_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceCounterStorageKHR value ) - { - switch ( value ) - { - case PerformanceCounterStorageKHR::eInt32: return "Int32"; - case PerformanceCounterStorageKHR::eInt64: return "Int64"; - case PerformanceCounterStorageKHR::eUint32: return "Uint32"; - case PerformanceCounterStorageKHR::eUint64: return "Uint64"; - case PerformanceCounterStorageKHR::eFloat32: return "Float32"; - case PerformanceCounterStorageKHR::eFloat64: return "Float64"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PerformanceCounterUnitKHR - { - eGeneric = VK_PERFORMANCE_COUNTER_UNIT_GENERIC_KHR, - ePercentage = VK_PERFORMANCE_COUNTER_UNIT_PERCENTAGE_KHR, - eNanoseconds = VK_PERFORMANCE_COUNTER_UNIT_NANOSECONDS_KHR, - eBytes = VK_PERFORMANCE_COUNTER_UNIT_BYTES_KHR, - eBytesPerSecond = VK_PERFORMANCE_COUNTER_UNIT_BYTES_PER_SECOND_KHR, - eKelvin = VK_PERFORMANCE_COUNTER_UNIT_KELVIN_KHR, - eWatts = VK_PERFORMANCE_COUNTER_UNIT_WATTS_KHR, - eVolts = VK_PERFORMANCE_COUNTER_UNIT_VOLTS_KHR, - eAmps = VK_PERFORMANCE_COUNTER_UNIT_AMPS_KHR, - eHertz = VK_PERFORMANCE_COUNTER_UNIT_HERTZ_KHR, - eCycles = VK_PERFORMANCE_COUNTER_UNIT_CYCLES_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceCounterUnitKHR value ) - { - switch ( value ) - { - case PerformanceCounterUnitKHR::eGeneric: return "Generic"; - case PerformanceCounterUnitKHR::ePercentage: return "Percentage"; - case PerformanceCounterUnitKHR::eNanoseconds: return "Nanoseconds"; - case PerformanceCounterUnitKHR::eBytes: return "Bytes"; - case PerformanceCounterUnitKHR::eBytesPerSecond: return "BytesPerSecond"; - case PerformanceCounterUnitKHR::eKelvin: return "Kelvin"; - case PerformanceCounterUnitKHR::eWatts: return "Watts"; - case PerformanceCounterUnitKHR::eVolts: return "Volts"; - case PerformanceCounterUnitKHR::eAmps: return "Amps"; - case PerformanceCounterUnitKHR::eHertz: return "Hertz"; - case PerformanceCounterUnitKHR::eCycles: return "Cycles"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AcquireProfilingLockFlagBitsKHR : VkAcquireProfilingLockFlagsKHR - { - }; - - VULKAN_HPP_INLINE std::string to_string( AcquireProfilingLockFlagBitsKHR ) - { - return "(void)"; - } - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - enum class IOSSurfaceCreateFlagBitsMVK : VkIOSSurfaceCreateFlagsMVK - { - }; - - VULKAN_HPP_INLINE std::string to_string( IOSSurfaceCreateFlagBitsMVK ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - enum class MacOSSurfaceCreateFlagBitsMVK : VkMacOSSurfaceCreateFlagsMVK - { - }; - - VULKAN_HPP_INLINE std::string to_string( MacOSSurfaceCreateFlagBitsMVK ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - enum class DebugUtilsMessageSeverityFlagBitsEXT : VkDebugUtilsMessageSeverityFlagsEXT - { - eVerbose = VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT, - eInfo = VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT, - eWarning = VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT, - eError = VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessageSeverityFlagBitsEXT value ) - { - switch ( value ) - { - case DebugUtilsMessageSeverityFlagBitsEXT::eVerbose: return "Verbose"; - case DebugUtilsMessageSeverityFlagBitsEXT::eInfo: return "Info"; - case DebugUtilsMessageSeverityFlagBitsEXT::eWarning: return "Warning"; - case DebugUtilsMessageSeverityFlagBitsEXT::eError: return "Error"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DebugUtilsMessageTypeFlagBitsEXT : VkDebugUtilsMessageTypeFlagsEXT - { - eGeneral = VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT, - eValidation = VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT, - ePerformance = VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessageTypeFlagBitsEXT value ) - { - switch ( value ) - { - case DebugUtilsMessageTypeFlagBitsEXT::eGeneral: return "General"; - case DebugUtilsMessageTypeFlagBitsEXT::eValidation: return "Validation"; - case DebugUtilsMessageTypeFlagBitsEXT::ePerformance: return "Performance"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DebugUtilsMessengerCallbackDataFlagBitsEXT : VkDebugUtilsMessengerCallbackDataFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessengerCallbackDataFlagBitsEXT ) - { - return "(void)"; - } - - enum class DebugUtilsMessengerCreateFlagBitsEXT : VkDebugUtilsMessengerCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessengerCreateFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_EXT_blend_operation_advanced === - - enum class BlendOverlapEXT - { - eUncorrelated = VK_BLEND_OVERLAP_UNCORRELATED_EXT, - eDisjoint = VK_BLEND_OVERLAP_DISJOINT_EXT, - eConjoint = VK_BLEND_OVERLAP_CONJOINT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( BlendOverlapEXT value ) - { - switch ( value ) - { - case BlendOverlapEXT::eUncorrelated: return "Uncorrelated"; - case BlendOverlapEXT::eDisjoint: return "Disjoint"; - case BlendOverlapEXT::eConjoint: return "Conjoint"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_fragment_coverage_to_color === - - enum class PipelineCoverageToColorStateCreateFlagBitsNV : VkPipelineCoverageToColorStateCreateFlagsNV - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCoverageToColorStateCreateFlagBitsNV ) - { - return "(void)"; - } - - //=== VK_KHR_acceleration_structure === - - enum class AccelerationStructureTypeKHR - { - eTopLevel = VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR, - eBottomLevel = VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR, - eGeneric = VK_ACCELERATION_STRUCTURE_TYPE_GENERIC_KHR - }; - using AccelerationStructureTypeNV = AccelerationStructureTypeKHR; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureTypeKHR value ) - { - switch ( value ) - { - case AccelerationStructureTypeKHR::eTopLevel: return "TopLevel"; - case AccelerationStructureTypeKHR::eBottomLevel: return "BottomLevel"; - case AccelerationStructureTypeKHR::eGeneric: return "Generic"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AccelerationStructureBuildTypeKHR - { - eHost = VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_KHR, - eDevice = VK_ACCELERATION_STRUCTURE_BUILD_TYPE_DEVICE_KHR, - eHostOrDevice = VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_OR_DEVICE_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureBuildTypeKHR value ) - { - switch ( value ) - { - case AccelerationStructureBuildTypeKHR::eHost: return "Host"; - case AccelerationStructureBuildTypeKHR::eDevice: return "Device"; - case AccelerationStructureBuildTypeKHR::eHostOrDevice: return "HostOrDevice"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class GeometryFlagBitsKHR : VkGeometryFlagsKHR - { - eOpaque = VK_GEOMETRY_OPAQUE_BIT_KHR, - eNoDuplicateAnyHitInvocation = VK_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT_KHR - }; - using GeometryFlagBitsNV = GeometryFlagBitsKHR; - - VULKAN_HPP_INLINE std::string to_string( GeometryFlagBitsKHR value ) - { - switch ( value ) - { - case GeometryFlagBitsKHR::eOpaque: return "Opaque"; - case GeometryFlagBitsKHR::eNoDuplicateAnyHitInvocation: return "NoDuplicateAnyHitInvocation"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class GeometryInstanceFlagBitsKHR : VkGeometryInstanceFlagsKHR - { - eTriangleFacingCullDisable = VK_GEOMETRY_INSTANCE_TRIANGLE_FACING_CULL_DISABLE_BIT_KHR, - eTriangleFlipFacing = VK_GEOMETRY_INSTANCE_TRIANGLE_FLIP_FACING_BIT_KHR, - eForceOpaque = VK_GEOMETRY_INSTANCE_FORCE_OPAQUE_BIT_KHR, - eForceNoOpaque = VK_GEOMETRY_INSTANCE_FORCE_NO_OPAQUE_BIT_KHR, - eTriangleCullDisable = VK_GEOMETRY_INSTANCE_TRIANGLE_CULL_DISABLE_BIT_NV, - eTriangleFrontCounterclockwiseKHR = VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_KHR, - eTriangleFrontCounterclockwise = VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_NV - }; - using GeometryInstanceFlagBitsNV = GeometryInstanceFlagBitsKHR; - - VULKAN_HPP_INLINE std::string to_string( GeometryInstanceFlagBitsKHR value ) - { - switch ( value ) - { - case GeometryInstanceFlagBitsKHR::eTriangleFacingCullDisable: return "TriangleFacingCullDisable"; - case GeometryInstanceFlagBitsKHR::eTriangleFlipFacing: return "TriangleFlipFacing"; - case GeometryInstanceFlagBitsKHR::eForceOpaque: return "ForceOpaque"; - case GeometryInstanceFlagBitsKHR::eForceNoOpaque: return "ForceNoOpaque"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class BuildAccelerationStructureFlagBitsKHR : VkBuildAccelerationStructureFlagsKHR - { - eAllowUpdate = VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT_KHR, - eAllowCompaction = VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT_KHR, - ePreferFastTrace = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR, - ePreferFastBuild = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT_KHR, - eLowMemory = VK_BUILD_ACCELERATION_STRUCTURE_LOW_MEMORY_BIT_KHR, - eMotionNV = VK_BUILD_ACCELERATION_STRUCTURE_MOTION_BIT_NV - }; - using BuildAccelerationStructureFlagBitsNV = BuildAccelerationStructureFlagBitsKHR; - - VULKAN_HPP_INLINE std::string to_string( BuildAccelerationStructureFlagBitsKHR value ) - { - switch ( value ) - { - case BuildAccelerationStructureFlagBitsKHR::eAllowUpdate: return "AllowUpdate"; - case BuildAccelerationStructureFlagBitsKHR::eAllowCompaction: return "AllowCompaction"; - case BuildAccelerationStructureFlagBitsKHR::ePreferFastTrace: return "PreferFastTrace"; - case BuildAccelerationStructureFlagBitsKHR::ePreferFastBuild: return "PreferFastBuild"; - case BuildAccelerationStructureFlagBitsKHR::eLowMemory: return "LowMemory"; - case BuildAccelerationStructureFlagBitsKHR::eMotionNV: return "MotionNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CopyAccelerationStructureModeKHR - { - eClone = VK_COPY_ACCELERATION_STRUCTURE_MODE_CLONE_KHR, - eCompact = VK_COPY_ACCELERATION_STRUCTURE_MODE_COMPACT_KHR, - eSerialize = VK_COPY_ACCELERATION_STRUCTURE_MODE_SERIALIZE_KHR, - eDeserialize = VK_COPY_ACCELERATION_STRUCTURE_MODE_DESERIALIZE_KHR - }; - using CopyAccelerationStructureModeNV = CopyAccelerationStructureModeKHR; - - VULKAN_HPP_INLINE std::string to_string( CopyAccelerationStructureModeKHR value ) - { - switch ( value ) - { - case CopyAccelerationStructureModeKHR::eClone: return "Clone"; - case CopyAccelerationStructureModeKHR::eCompact: return "Compact"; - case CopyAccelerationStructureModeKHR::eSerialize: return "Serialize"; - case CopyAccelerationStructureModeKHR::eDeserialize: return "Deserialize"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class GeometryTypeKHR - { - eTriangles = VK_GEOMETRY_TYPE_TRIANGLES_KHR, - eAabbs = VK_GEOMETRY_TYPE_AABBS_KHR, - eInstances = VK_GEOMETRY_TYPE_INSTANCES_KHR - }; - using GeometryTypeNV = GeometryTypeKHR; - - VULKAN_HPP_INLINE std::string to_string( GeometryTypeKHR value ) - { - switch ( value ) - { - case GeometryTypeKHR::eTriangles: return "Triangles"; - case GeometryTypeKHR::eAabbs: return "Aabbs"; - case GeometryTypeKHR::eInstances: return "Instances"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AccelerationStructureCompatibilityKHR - { - eCompatible = VK_ACCELERATION_STRUCTURE_COMPATIBILITY_COMPATIBLE_KHR, - eIncompatible = VK_ACCELERATION_STRUCTURE_COMPATIBILITY_INCOMPATIBLE_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureCompatibilityKHR value ) - { - switch ( value ) - { - case AccelerationStructureCompatibilityKHR::eCompatible: return "Compatible"; - case AccelerationStructureCompatibilityKHR::eIncompatible: return "Incompatible"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AccelerationStructureCreateFlagBitsKHR : VkAccelerationStructureCreateFlagsKHR - { - eDeviceAddressCaptureReplay = VK_ACCELERATION_STRUCTURE_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR, - eMotionNV = VK_ACCELERATION_STRUCTURE_CREATE_MOTION_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureCreateFlagBitsKHR value ) - { - switch ( value ) - { - case AccelerationStructureCreateFlagBitsKHR::eDeviceAddressCaptureReplay: return "DeviceAddressCaptureReplay"; - case AccelerationStructureCreateFlagBitsKHR::eMotionNV: return "MotionNV"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class BuildAccelerationStructureModeKHR - { - eBuild = VK_BUILD_ACCELERATION_STRUCTURE_MODE_BUILD_KHR, - eUpdate = VK_BUILD_ACCELERATION_STRUCTURE_MODE_UPDATE_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( BuildAccelerationStructureModeKHR value ) - { - switch ( value ) - { - case BuildAccelerationStructureModeKHR::eBuild: return "Build"; - case BuildAccelerationStructureModeKHR::eUpdate: return "Update"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_framebuffer_mixed_samples === - - enum class CoverageModulationModeNV - { - eNone = VK_COVERAGE_MODULATION_MODE_NONE_NV, - eRgb = VK_COVERAGE_MODULATION_MODE_RGB_NV, - eAlpha = VK_COVERAGE_MODULATION_MODE_ALPHA_NV, - eRgba = VK_COVERAGE_MODULATION_MODE_RGBA_NV - }; - - VULKAN_HPP_INLINE std::string to_string( CoverageModulationModeNV value ) - { - switch ( value ) - { - case CoverageModulationModeNV::eNone: return "None"; - case CoverageModulationModeNV::eRgb: return "Rgb"; - case CoverageModulationModeNV::eAlpha: return "Alpha"; - case CoverageModulationModeNV::eRgba: return "Rgba"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineCoverageModulationStateCreateFlagBitsNV : VkPipelineCoverageModulationStateCreateFlagsNV - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCoverageModulationStateCreateFlagBitsNV ) - { - return "(void)"; - } - - //=== VK_EXT_validation_cache === - - enum class ValidationCacheHeaderVersionEXT - { - eOne = VK_VALIDATION_CACHE_HEADER_VERSION_ONE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ValidationCacheHeaderVersionEXT value ) - { - switch ( value ) - { - case ValidationCacheHeaderVersionEXT::eOne: return "One"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ValidationCacheCreateFlagBitsEXT : VkValidationCacheCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( ValidationCacheCreateFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_NV_shading_rate_image === - - enum class ShadingRatePaletteEntryNV - { - eNoInvocations = VK_SHADING_RATE_PALETTE_ENTRY_NO_INVOCATIONS_NV, - e16InvocationsPerPixel = VK_SHADING_RATE_PALETTE_ENTRY_16_INVOCATIONS_PER_PIXEL_NV, - e8InvocationsPerPixel = VK_SHADING_RATE_PALETTE_ENTRY_8_INVOCATIONS_PER_PIXEL_NV, - e4InvocationsPerPixel = VK_SHADING_RATE_PALETTE_ENTRY_4_INVOCATIONS_PER_PIXEL_NV, - e2InvocationsPerPixel = VK_SHADING_RATE_PALETTE_ENTRY_2_INVOCATIONS_PER_PIXEL_NV, - e1InvocationPerPixel = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_PIXEL_NV, - e1InvocationPer2X1Pixels = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X1_PIXELS_NV, - e1InvocationPer1X2Pixels = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_1X2_PIXELS_NV, - e1InvocationPer2X2Pixels = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X2_PIXELS_NV, - e1InvocationPer4X2Pixels = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_4X2_PIXELS_NV, - e1InvocationPer2X4Pixels = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X4_PIXELS_NV, - e1InvocationPer4X4Pixels = VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_4X4_PIXELS_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ShadingRatePaletteEntryNV value ) - { - switch ( value ) - { - case ShadingRatePaletteEntryNV::eNoInvocations: return "NoInvocations"; - case ShadingRatePaletteEntryNV::e16InvocationsPerPixel: return "16InvocationsPerPixel"; - case ShadingRatePaletteEntryNV::e8InvocationsPerPixel: return "8InvocationsPerPixel"; - case ShadingRatePaletteEntryNV::e4InvocationsPerPixel: return "4InvocationsPerPixel"; - case ShadingRatePaletteEntryNV::e2InvocationsPerPixel: return "2InvocationsPerPixel"; - case ShadingRatePaletteEntryNV::e1InvocationPerPixel: return "1InvocationPerPixel"; - case ShadingRatePaletteEntryNV::e1InvocationPer2X1Pixels: return "1InvocationPer2X1Pixels"; - case ShadingRatePaletteEntryNV::e1InvocationPer1X2Pixels: return "1InvocationPer1X2Pixels"; - case ShadingRatePaletteEntryNV::e1InvocationPer2X2Pixels: return "1InvocationPer2X2Pixels"; - case ShadingRatePaletteEntryNV::e1InvocationPer4X2Pixels: return "1InvocationPer4X2Pixels"; - case ShadingRatePaletteEntryNV::e1InvocationPer2X4Pixels: return "1InvocationPer2X4Pixels"; - case ShadingRatePaletteEntryNV::e1InvocationPer4X4Pixels: return "1InvocationPer4X4Pixels"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class CoarseSampleOrderTypeNV - { - eDefault = VK_COARSE_SAMPLE_ORDER_TYPE_DEFAULT_NV, - eCustom = VK_COARSE_SAMPLE_ORDER_TYPE_CUSTOM_NV, - ePixelMajor = VK_COARSE_SAMPLE_ORDER_TYPE_PIXEL_MAJOR_NV, - eSampleMajor = VK_COARSE_SAMPLE_ORDER_TYPE_SAMPLE_MAJOR_NV - }; - - VULKAN_HPP_INLINE std::string to_string( CoarseSampleOrderTypeNV value ) - { - switch ( value ) - { - case CoarseSampleOrderTypeNV::eDefault: return "Default"; - case CoarseSampleOrderTypeNV::eCustom: return "Custom"; - case CoarseSampleOrderTypeNV::ePixelMajor: return "PixelMajor"; - case CoarseSampleOrderTypeNV::eSampleMajor: return "SampleMajor"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_ray_tracing === - - enum class AccelerationStructureMemoryRequirementsTypeNV - { - eObject = VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_OBJECT_NV, - eBuildScratch = VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_BUILD_SCRATCH_NV, - eUpdateScratch = VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_UPDATE_SCRATCH_NV - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureMemoryRequirementsTypeNV value ) - { - switch ( value ) - { - case AccelerationStructureMemoryRequirementsTypeNV::eObject: return "Object"; - case AccelerationStructureMemoryRequirementsTypeNV::eBuildScratch: return "BuildScratch"; - case AccelerationStructureMemoryRequirementsTypeNV::eUpdateScratch: return "UpdateScratch"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_AMD_pipeline_compiler_control === - - enum class PipelineCompilerControlFlagBitsAMD : VkPipelineCompilerControlFlagsAMD - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCompilerControlFlagBitsAMD ) - { - return "(void)"; - } - - //=== VK_EXT_calibrated_timestamps === - - enum class TimeDomainEXT - { - eDevice = VK_TIME_DOMAIN_DEVICE_EXT, - eClockMonotonic = VK_TIME_DOMAIN_CLOCK_MONOTONIC_EXT, - eClockMonotonicRaw = VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT, - eQueryPerformanceCounter = VK_TIME_DOMAIN_QUERY_PERFORMANCE_COUNTER_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( TimeDomainEXT value ) - { - switch ( value ) - { - case TimeDomainEXT::eDevice: return "Device"; - case TimeDomainEXT::eClockMonotonic: return "ClockMonotonic"; - case TimeDomainEXT::eClockMonotonicRaw: return "ClockMonotonicRaw"; - case TimeDomainEXT::eQueryPerformanceCounter: return "QueryPerformanceCounter"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h265 === - - enum class VideoDecodeH265CreateFlagBitsEXT : VkVideoDecodeH265CreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeH265CreateFlagBitsEXT ) - { - return "(void)"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_global_priority === - - enum class QueueGlobalPriorityKHR - { - eLow = VK_QUEUE_GLOBAL_PRIORITY_LOW_KHR, - eMedium = VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_KHR, - eHigh = VK_QUEUE_GLOBAL_PRIORITY_HIGH_KHR, - eRealtime = VK_QUEUE_GLOBAL_PRIORITY_REALTIME_KHR - }; - using QueueGlobalPriorityEXT = QueueGlobalPriorityKHR; - - VULKAN_HPP_INLINE std::string to_string( QueueGlobalPriorityKHR value ) - { - switch ( value ) - { - case QueueGlobalPriorityKHR::eLow: return "Low"; - case QueueGlobalPriorityKHR::eMedium: return "Medium"; - case QueueGlobalPriorityKHR::eHigh: return "High"; - case QueueGlobalPriorityKHR::eRealtime: return "Realtime"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_AMD_memory_overallocation_behavior === - - enum class MemoryOverallocationBehaviorAMD - { - eDefault = VK_MEMORY_OVERALLOCATION_BEHAVIOR_DEFAULT_AMD, - eAllowed = VK_MEMORY_OVERALLOCATION_BEHAVIOR_ALLOWED_AMD, - eDisallowed = VK_MEMORY_OVERALLOCATION_BEHAVIOR_DISALLOWED_AMD - }; - - VULKAN_HPP_INLINE std::string to_string( MemoryOverallocationBehaviorAMD value ) - { - switch ( value ) - { - case MemoryOverallocationBehaviorAMD::eDefault: return "Default"; - case MemoryOverallocationBehaviorAMD::eAllowed: return "Allowed"; - case MemoryOverallocationBehaviorAMD::eDisallowed: return "Disallowed"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_INTEL_performance_query === - - enum class PerformanceConfigurationTypeINTEL - { - eCommandQueueMetricsDiscoveryActivated = - VK_PERFORMANCE_CONFIGURATION_TYPE_COMMAND_QUEUE_METRICS_DISCOVERY_ACTIVATED_INTEL - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceConfigurationTypeINTEL value ) - { - switch ( value ) - { - case PerformanceConfigurationTypeINTEL::eCommandQueueMetricsDiscoveryActivated: - return "CommandQueueMetricsDiscoveryActivated"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class QueryPoolSamplingModeINTEL - { - eManual = VK_QUERY_POOL_SAMPLING_MODE_MANUAL_INTEL - }; - - VULKAN_HPP_INLINE std::string to_string( QueryPoolSamplingModeINTEL value ) - { - switch ( value ) - { - case QueryPoolSamplingModeINTEL::eManual: return "Manual"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PerformanceOverrideTypeINTEL - { - eNullHardware = VK_PERFORMANCE_OVERRIDE_TYPE_NULL_HARDWARE_INTEL, - eFlushGpuCaches = VK_PERFORMANCE_OVERRIDE_TYPE_FLUSH_GPU_CACHES_INTEL - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceOverrideTypeINTEL value ) - { - switch ( value ) - { - case PerformanceOverrideTypeINTEL::eNullHardware: return "NullHardware"; - case PerformanceOverrideTypeINTEL::eFlushGpuCaches: return "FlushGpuCaches"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PerformanceParameterTypeINTEL - { - eHwCountersSupported = VK_PERFORMANCE_PARAMETER_TYPE_HW_COUNTERS_SUPPORTED_INTEL, - eStreamMarkerValidBits = VK_PERFORMANCE_PARAMETER_TYPE_STREAM_MARKER_VALID_BITS_INTEL - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceParameterTypeINTEL value ) - { - switch ( value ) - { - case PerformanceParameterTypeINTEL::eHwCountersSupported: return "HwCountersSupported"; - case PerformanceParameterTypeINTEL::eStreamMarkerValidBits: return "StreamMarkerValidBits"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PerformanceValueTypeINTEL - { - eUint32 = VK_PERFORMANCE_VALUE_TYPE_UINT32_INTEL, - eUint64 = VK_PERFORMANCE_VALUE_TYPE_UINT64_INTEL, - eFloat = VK_PERFORMANCE_VALUE_TYPE_FLOAT_INTEL, - eBool = VK_PERFORMANCE_VALUE_TYPE_BOOL_INTEL, - eString = VK_PERFORMANCE_VALUE_TYPE_STRING_INTEL - }; - - VULKAN_HPP_INLINE std::string to_string( PerformanceValueTypeINTEL value ) - { - switch ( value ) - { - case PerformanceValueTypeINTEL::eUint32: return "Uint32"; - case PerformanceValueTypeINTEL::eUint64: return "Uint64"; - case PerformanceValueTypeINTEL::eFloat: return "Float"; - case PerformanceValueTypeINTEL::eBool: return "Bool"; - case PerformanceValueTypeINTEL::eString: return "String"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - enum class ImagePipeSurfaceCreateFlagBitsFUCHSIA : VkImagePipeSurfaceCreateFlagsFUCHSIA - { - }; - - VULKAN_HPP_INLINE std::string to_string( ImagePipeSurfaceCreateFlagBitsFUCHSIA ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - enum class MetalSurfaceCreateFlagBitsEXT : VkMetalSurfaceCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( MetalSurfaceCreateFlagBitsEXT ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_KHR_fragment_shading_rate === - - enum class FragmentShadingRateCombinerOpKHR - { - eKeep = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR, - eReplace = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_KHR, - eMin = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_KHR, - eMax = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_KHR, - eMul = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( FragmentShadingRateCombinerOpKHR value ) - { - switch ( value ) - { - case FragmentShadingRateCombinerOpKHR::eKeep: return "Keep"; - case FragmentShadingRateCombinerOpKHR::eReplace: return "Replace"; - case FragmentShadingRateCombinerOpKHR::eMin: return "Min"; - case FragmentShadingRateCombinerOpKHR::eMax: return "Max"; - case FragmentShadingRateCombinerOpKHR::eMul: return "Mul"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_AMD_shader_core_properties2 === - - enum class ShaderCorePropertiesFlagBitsAMD : VkShaderCorePropertiesFlagsAMD - { - }; - - VULKAN_HPP_INLINE std::string to_string( ShaderCorePropertiesFlagBitsAMD ) - { - return "(void)"; - } - - //=== VK_EXT_validation_features === - - enum class ValidationFeatureEnableEXT - { - eGpuAssisted = VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT, - eGpuAssistedReserveBindingSlot = VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT, - eBestPractices = VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT, - eDebugPrintf = VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT, - eSynchronizationValidation = VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ValidationFeatureEnableEXT value ) - { - switch ( value ) - { - case ValidationFeatureEnableEXT::eGpuAssisted: return "GpuAssisted"; - case ValidationFeatureEnableEXT::eGpuAssistedReserveBindingSlot: return "GpuAssistedReserveBindingSlot"; - case ValidationFeatureEnableEXT::eBestPractices: return "BestPractices"; - case ValidationFeatureEnableEXT::eDebugPrintf: return "DebugPrintf"; - case ValidationFeatureEnableEXT::eSynchronizationValidation: return "SynchronizationValidation"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ValidationFeatureDisableEXT - { - eAll = VK_VALIDATION_FEATURE_DISABLE_ALL_EXT, - eShaders = VK_VALIDATION_FEATURE_DISABLE_SHADERS_EXT, - eThreadSafety = VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT, - eApiParameters = VK_VALIDATION_FEATURE_DISABLE_API_PARAMETERS_EXT, - eObjectLifetimes = VK_VALIDATION_FEATURE_DISABLE_OBJECT_LIFETIMES_EXT, - eCoreChecks = VK_VALIDATION_FEATURE_DISABLE_CORE_CHECKS_EXT, - eUniqueHandles = VK_VALIDATION_FEATURE_DISABLE_UNIQUE_HANDLES_EXT, - eShaderValidationCache = VK_VALIDATION_FEATURE_DISABLE_SHADER_VALIDATION_CACHE_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ValidationFeatureDisableEXT value ) - { - switch ( value ) - { - case ValidationFeatureDisableEXT::eAll: return "All"; - case ValidationFeatureDisableEXT::eShaders: return "Shaders"; - case ValidationFeatureDisableEXT::eThreadSafety: return "ThreadSafety"; - case ValidationFeatureDisableEXT::eApiParameters: return "ApiParameters"; - case ValidationFeatureDisableEXT::eObjectLifetimes: return "ObjectLifetimes"; - case ValidationFeatureDisableEXT::eCoreChecks: return "CoreChecks"; - case ValidationFeatureDisableEXT::eUniqueHandles: return "UniqueHandles"; - case ValidationFeatureDisableEXT::eShaderValidationCache: return "ShaderValidationCache"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_cooperative_matrix === - - enum class ScopeNV - { - eDevice = VK_SCOPE_DEVICE_NV, - eWorkgroup = VK_SCOPE_WORKGROUP_NV, - eSubgroup = VK_SCOPE_SUBGROUP_NV, - eQueueFamily = VK_SCOPE_QUEUE_FAMILY_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ScopeNV value ) - { - switch ( value ) - { - case ScopeNV::eDevice: return "Device"; - case ScopeNV::eWorkgroup: return "Workgroup"; - case ScopeNV::eSubgroup: return "Subgroup"; - case ScopeNV::eQueueFamily: return "QueueFamily"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ComponentTypeNV - { - eFloat16 = VK_COMPONENT_TYPE_FLOAT16_NV, - eFloat32 = VK_COMPONENT_TYPE_FLOAT32_NV, - eFloat64 = VK_COMPONENT_TYPE_FLOAT64_NV, - eSint8 = VK_COMPONENT_TYPE_SINT8_NV, - eSint16 = VK_COMPONENT_TYPE_SINT16_NV, - eSint32 = VK_COMPONENT_TYPE_SINT32_NV, - eSint64 = VK_COMPONENT_TYPE_SINT64_NV, - eUint8 = VK_COMPONENT_TYPE_UINT8_NV, - eUint16 = VK_COMPONENT_TYPE_UINT16_NV, - eUint32 = VK_COMPONENT_TYPE_UINT32_NV, - eUint64 = VK_COMPONENT_TYPE_UINT64_NV - }; - - VULKAN_HPP_INLINE std::string to_string( ComponentTypeNV value ) - { - switch ( value ) - { - case ComponentTypeNV::eFloat16: return "Float16"; - case ComponentTypeNV::eFloat32: return "Float32"; - case ComponentTypeNV::eFloat64: return "Float64"; - case ComponentTypeNV::eSint8: return "Sint8"; - case ComponentTypeNV::eSint16: return "Sint16"; - case ComponentTypeNV::eSint32: return "Sint32"; - case ComponentTypeNV::eSint64: return "Sint64"; - case ComponentTypeNV::eUint8: return "Uint8"; - case ComponentTypeNV::eUint16: return "Uint16"; - case ComponentTypeNV::eUint32: return "Uint32"; - case ComponentTypeNV::eUint64: return "Uint64"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_coverage_reduction_mode === - - enum class CoverageReductionModeNV - { - eMerge = VK_COVERAGE_REDUCTION_MODE_MERGE_NV, - eTruncate = VK_COVERAGE_REDUCTION_MODE_TRUNCATE_NV - }; - - VULKAN_HPP_INLINE std::string to_string( CoverageReductionModeNV value ) - { - switch ( value ) - { - case CoverageReductionModeNV::eMerge: return "Merge"; - case CoverageReductionModeNV::eTruncate: return "Truncate"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineCoverageReductionStateCreateFlagBitsNV : VkPipelineCoverageReductionStateCreateFlagsNV - { - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCoverageReductionStateCreateFlagBitsNV ) - { - return "(void)"; - } - - //=== VK_EXT_provoking_vertex === - - enum class ProvokingVertexModeEXT - { - eFirstVertex = VK_PROVOKING_VERTEX_MODE_FIRST_VERTEX_EXT, - eLastVertex = VK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( ProvokingVertexModeEXT value ) - { - switch ( value ) - { - case ProvokingVertexModeEXT::eFirstVertex: return "FirstVertex"; - case ProvokingVertexModeEXT::eLastVertex: return "LastVertex"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - enum class FullScreenExclusiveEXT - { - eDefault = VK_FULL_SCREEN_EXCLUSIVE_DEFAULT_EXT, - eAllowed = VK_FULL_SCREEN_EXCLUSIVE_ALLOWED_EXT, - eDisallowed = VK_FULL_SCREEN_EXCLUSIVE_DISALLOWED_EXT, - eApplicationControlled = VK_FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( FullScreenExclusiveEXT value ) - { - switch ( value ) - { - case FullScreenExclusiveEXT::eDefault: return "Default"; - case FullScreenExclusiveEXT::eAllowed: return "Allowed"; - case FullScreenExclusiveEXT::eDisallowed: return "Disallowed"; - case FullScreenExclusiveEXT::eApplicationControlled: return "ApplicationControlled"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - - enum class HeadlessSurfaceCreateFlagBitsEXT : VkHeadlessSurfaceCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( HeadlessSurfaceCreateFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_EXT_line_rasterization === - - enum class LineRasterizationModeEXT - { - eDefault = VK_LINE_RASTERIZATION_MODE_DEFAULT_EXT, - eRectangular = VK_LINE_RASTERIZATION_MODE_RECTANGULAR_EXT, - eBresenham = VK_LINE_RASTERIZATION_MODE_BRESENHAM_EXT, - eRectangularSmooth = VK_LINE_RASTERIZATION_MODE_RECTANGULAR_SMOOTH_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( LineRasterizationModeEXT value ) - { - switch ( value ) - { - case LineRasterizationModeEXT::eDefault: return "Default"; - case LineRasterizationModeEXT::eRectangular: return "Rectangular"; - case LineRasterizationModeEXT::eBresenham: return "Bresenham"; - case LineRasterizationModeEXT::eRectangularSmooth: return "RectangularSmooth"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_KHR_pipeline_executable_properties === - - enum class PipelineExecutableStatisticFormatKHR - { - eBool32 = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_BOOL32_KHR, - eInt64 = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_INT64_KHR, - eUint64 = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR, - eFloat64 = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_FLOAT64_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineExecutableStatisticFormatKHR value ) - { - switch ( value ) - { - case PipelineExecutableStatisticFormatKHR::eBool32: return "Bool32"; - case PipelineExecutableStatisticFormatKHR::eInt64: return "Int64"; - case PipelineExecutableStatisticFormatKHR::eUint64: return "Uint64"; - case PipelineExecutableStatisticFormatKHR::eFloat64: return "Float64"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_device_generated_commands === - - enum class IndirectStateFlagBitsNV : VkIndirectStateFlagsNV - { - eFlagFrontface = VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( IndirectStateFlagBitsNV value ) - { - switch ( value ) - { - case IndirectStateFlagBitsNV::eFlagFrontface: return "FlagFrontface"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class IndirectCommandsTokenTypeNV - { - eShaderGroup = VK_INDIRECT_COMMANDS_TOKEN_TYPE_SHADER_GROUP_NV, - eStateFlags = VK_INDIRECT_COMMANDS_TOKEN_TYPE_STATE_FLAGS_NV, - eIndexBuffer = VK_INDIRECT_COMMANDS_TOKEN_TYPE_INDEX_BUFFER_NV, - eVertexBuffer = VK_INDIRECT_COMMANDS_TOKEN_TYPE_VERTEX_BUFFER_NV, - ePushConstant = VK_INDIRECT_COMMANDS_TOKEN_TYPE_PUSH_CONSTANT_NV, - eDrawIndexed = VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_INDEXED_NV, - eDraw = VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_NV, - eDrawTasks = VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_TASKS_NV - }; - - VULKAN_HPP_INLINE std::string to_string( IndirectCommandsTokenTypeNV value ) - { - switch ( value ) - { - case IndirectCommandsTokenTypeNV::eShaderGroup: return "ShaderGroup"; - case IndirectCommandsTokenTypeNV::eStateFlags: return "StateFlags"; - case IndirectCommandsTokenTypeNV::eIndexBuffer: return "IndexBuffer"; - case IndirectCommandsTokenTypeNV::eVertexBuffer: return "VertexBuffer"; - case IndirectCommandsTokenTypeNV::ePushConstant: return "PushConstant"; - case IndirectCommandsTokenTypeNV::eDrawIndexed: return "DrawIndexed"; - case IndirectCommandsTokenTypeNV::eDraw: return "Draw"; - case IndirectCommandsTokenTypeNV::eDrawTasks: return "DrawTasks"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class IndirectCommandsLayoutUsageFlagBitsNV : VkIndirectCommandsLayoutUsageFlagsNV - { - eExplicitPreprocess = VK_INDIRECT_COMMANDS_LAYOUT_USAGE_EXPLICIT_PREPROCESS_BIT_NV, - eIndexedSequences = VK_INDIRECT_COMMANDS_LAYOUT_USAGE_INDEXED_SEQUENCES_BIT_NV, - eUnorderedSequences = VK_INDIRECT_COMMANDS_LAYOUT_USAGE_UNORDERED_SEQUENCES_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( IndirectCommandsLayoutUsageFlagBitsNV value ) - { - switch ( value ) - { - case IndirectCommandsLayoutUsageFlagBitsNV::eExplicitPreprocess: return "ExplicitPreprocess"; - case IndirectCommandsLayoutUsageFlagBitsNV::eIndexedSequences: return "IndexedSequences"; - case IndirectCommandsLayoutUsageFlagBitsNV::eUnorderedSequences: return "UnorderedSequences"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_EXT_device_memory_report === - - enum class DeviceMemoryReportEventTypeEXT - { - eAllocate = VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_ALLOCATE_EXT, - eFree = VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_FREE_EXT, - eImport = VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_IMPORT_EXT, - eUnimport = VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_UNIMPORT_EXT, - eAllocationFailed = VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_ALLOCATION_FAILED_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceMemoryReportEventTypeEXT value ) - { - switch ( value ) - { - case DeviceMemoryReportEventTypeEXT::eAllocate: return "Allocate"; - case DeviceMemoryReportEventTypeEXT::eFree: return "Free"; - case DeviceMemoryReportEventTypeEXT::eImport: return "Import"; - case DeviceMemoryReportEventTypeEXT::eUnimport: return "Unimport"; - case DeviceMemoryReportEventTypeEXT::eAllocationFailed: return "AllocationFailed"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class DeviceMemoryReportFlagBitsEXT : VkDeviceMemoryReportFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceMemoryReportFlagBitsEXT ) - { - return "(void)"; - } - - //=== VK_EXT_pipeline_creation_cache_control === - - enum class PipelineCacheCreateFlagBits : VkPipelineCacheCreateFlags - { - eExternallySynchronized = VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT, - eExternallySynchronizedEXT = VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT_EXT - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineCacheCreateFlagBits value ) - { - switch ( value ) - { - case PipelineCacheCreateFlagBits::eExternallySynchronized: return "ExternallySynchronized"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - enum class VideoEncodeFlagBitsKHR : VkVideoEncodeFlagsKHR - { - eDefault = VK_VIDEO_ENCODE_DEFAULT_KHR, - eReserved0 = VK_VIDEO_ENCODE_RESERVED_0_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeFlagBitsKHR value ) - { - switch ( value ) - { - case VideoEncodeFlagBitsKHR::eDefault: return "Default"; - case VideoEncodeFlagBitsKHR::eReserved0: return "Reserved0"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeRateControlFlagBitsKHR : VkVideoEncodeRateControlFlagsKHR - { - eDefault = VK_VIDEO_ENCODE_RATE_CONTROL_DEFAULT_KHR, - eReserved0 = VK_VIDEO_ENCODE_RATE_CONTROL_RESERVED_0_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeRateControlFlagBitsKHR value ) - { - switch ( value ) - { - case VideoEncodeRateControlFlagBitsKHR::eDefault: return "Default"; - case VideoEncodeRateControlFlagBitsKHR::eReserved0: return "Reserved0"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class VideoEncodeRateControlModeFlagBitsKHR : VkVideoEncodeRateControlModeFlagsKHR - { - eNone = VK_VIDEO_ENCODE_RATE_CONTROL_MODE_NONE_BIT_KHR, - eCbr = VK_VIDEO_ENCODE_RATE_CONTROL_MODE_CBR_BIT_KHR, - eVbr = VK_VIDEO_ENCODE_RATE_CONTROL_MODE_VBR_BIT_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeRateControlModeFlagBitsKHR value ) - { - switch ( value ) - { - case VideoEncodeRateControlModeFlagBitsKHR::eNone: return "None"; - case VideoEncodeRateControlModeFlagBitsKHR::eCbr: return "Cbr"; - case VideoEncodeRateControlModeFlagBitsKHR::eVbr: return "Vbr"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_device_diagnostics_config === - - enum class DeviceDiagnosticsConfigFlagBitsNV : VkDeviceDiagnosticsConfigFlagsNV - { - eEnableShaderDebugInfo = VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_SHADER_DEBUG_INFO_BIT_NV, - eEnableResourceTracking = VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_RESOURCE_TRACKING_BIT_NV, - eEnableAutomaticCheckpoints = VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_AUTOMATIC_CHECKPOINTS_BIT_NV - }; - - VULKAN_HPP_INLINE std::string to_string( DeviceDiagnosticsConfigFlagBitsNV value ) - { - switch ( value ) - { - case DeviceDiagnosticsConfigFlagBitsNV::eEnableShaderDebugInfo: return "EnableShaderDebugInfo"; - case DeviceDiagnosticsConfigFlagBitsNV::eEnableResourceTracking: return "EnableResourceTracking"; - case DeviceDiagnosticsConfigFlagBitsNV::eEnableAutomaticCheckpoints: return "EnableAutomaticCheckpoints"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_fragment_shading_rate_enums === - - enum class FragmentShadingRateNV - { - e1InvocationPerPixel = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV, - e1InvocationPer1X2Pixels = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV, - e1InvocationPer2X1Pixels = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV, - e1InvocationPer2X2Pixels = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV, - e1InvocationPer2X4Pixels = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV, - e1InvocationPer4X2Pixels = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV, - e1InvocationPer4X4Pixels = VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV, - e2InvocationsPerPixel = VK_FRAGMENT_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV, - e4InvocationsPerPixel = VK_FRAGMENT_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV, - e8InvocationsPerPixel = VK_FRAGMENT_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV, - e16InvocationsPerPixel = VK_FRAGMENT_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV, - eNoInvocations = VK_FRAGMENT_SHADING_RATE_NO_INVOCATIONS_NV - }; - - VULKAN_HPP_INLINE std::string to_string( FragmentShadingRateNV value ) - { - switch ( value ) - { - case FragmentShadingRateNV::e1InvocationPerPixel: return "1InvocationPerPixel"; - case FragmentShadingRateNV::e1InvocationPer1X2Pixels: return "1InvocationPer1X2Pixels"; - case FragmentShadingRateNV::e1InvocationPer2X1Pixels: return "1InvocationPer2X1Pixels"; - case FragmentShadingRateNV::e1InvocationPer2X2Pixels: return "1InvocationPer2X2Pixels"; - case FragmentShadingRateNV::e1InvocationPer2X4Pixels: return "1InvocationPer2X4Pixels"; - case FragmentShadingRateNV::e1InvocationPer4X2Pixels: return "1InvocationPer4X2Pixels"; - case FragmentShadingRateNV::e1InvocationPer4X4Pixels: return "1InvocationPer4X4Pixels"; - case FragmentShadingRateNV::e2InvocationsPerPixel: return "2InvocationsPerPixel"; - case FragmentShadingRateNV::e4InvocationsPerPixel: return "4InvocationsPerPixel"; - case FragmentShadingRateNV::e8InvocationsPerPixel: return "8InvocationsPerPixel"; - case FragmentShadingRateNV::e16InvocationsPerPixel: return "16InvocationsPerPixel"; - case FragmentShadingRateNV::eNoInvocations: return "NoInvocations"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class FragmentShadingRateTypeNV - { - eFragmentSize = VK_FRAGMENT_SHADING_RATE_TYPE_FRAGMENT_SIZE_NV, - eEnums = VK_FRAGMENT_SHADING_RATE_TYPE_ENUMS_NV - }; - - VULKAN_HPP_INLINE std::string to_string( FragmentShadingRateTypeNV value ) - { - switch ( value ) - { - case FragmentShadingRateTypeNV::eFragmentSize: return "FragmentSize"; - case FragmentShadingRateTypeNV::eEnums: return "Enums"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - //=== VK_NV_ray_tracing_motion_blur === - - enum class AccelerationStructureMotionInstanceTypeNV - { - eStatic = VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_STATIC_NV, - eMatrixMotion = VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_MATRIX_MOTION_NV, - eSrtMotion = VK_ACCELERATION_STRUCTURE_MOTION_INSTANCE_TYPE_SRT_MOTION_NV - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureMotionInstanceTypeNV value ) - { - switch ( value ) - { - case AccelerationStructureMotionInstanceTypeNV::eStatic: return "Static"; - case AccelerationStructureMotionInstanceTypeNV::eMatrixMotion: return "MatrixMotion"; - case AccelerationStructureMotionInstanceTypeNV::eSrtMotion: return "SrtMotion"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class AccelerationStructureMotionInfoFlagBitsNV : VkAccelerationStructureMotionInfoFlagsNV - { - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureMotionInfoFlagBitsNV ) - { - return "(void)"; - } - - enum class AccelerationStructureMotionInstanceFlagBitsNV : VkAccelerationStructureMotionInstanceFlagsNV - { - }; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureMotionInstanceFlagBitsNV ) - { - return "(void)"; - } - - //=== VK_ARM_rasterization_order_attachment_access === - - enum class PipelineColorBlendStateCreateFlagBits : VkPipelineColorBlendStateCreateFlags - { - eRasterizationOrderAttachmentAccessARM = - VK_PIPELINE_COLOR_BLEND_STATE_CREATE_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_BIT_ARM - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineColorBlendStateCreateFlagBits value ) - { - switch ( value ) - { - case PipelineColorBlendStateCreateFlagBits::eRasterizationOrderAttachmentAccessARM: - return "RasterizationOrderAttachmentAccessARM"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class PipelineDepthStencilStateCreateFlagBits : VkPipelineDepthStencilStateCreateFlags - { - eRasterizationOrderAttachmentDepthAccessARM = - VK_PIPELINE_DEPTH_STENCIL_STATE_CREATE_RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_BIT_ARM, - eRasterizationOrderAttachmentStencilAccessARM = - VK_PIPELINE_DEPTH_STENCIL_STATE_CREATE_RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_BIT_ARM - }; - - VULKAN_HPP_INLINE std::string to_string( PipelineDepthStencilStateCreateFlagBits value ) - { - switch ( value ) - { - case PipelineDepthStencilStateCreateFlagBits::eRasterizationOrderAttachmentDepthAccessARM: - return "RasterizationOrderAttachmentDepthAccessARM"; - case PipelineDepthStencilStateCreateFlagBits::eRasterizationOrderAttachmentStencilAccessARM: - return "RasterizationOrderAttachmentStencilAccessARM"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - enum class DirectFBSurfaceCreateFlagBitsEXT : VkDirectFBSurfaceCreateFlagsEXT - { - }; - - VULKAN_HPP_INLINE std::string to_string( DirectFBSurfaceCreateFlagBitsEXT ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - - enum class RayTracingShaderGroupTypeKHR - { - eGeneral = VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_KHR, - eTrianglesHitGroup = VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_KHR, - eProceduralHitGroup = VK_RAY_TRACING_SHADER_GROUP_TYPE_PROCEDURAL_HIT_GROUP_KHR - }; - using RayTracingShaderGroupTypeNV = RayTracingShaderGroupTypeKHR; - - VULKAN_HPP_INLINE std::string to_string( RayTracingShaderGroupTypeKHR value ) - { - switch ( value ) - { - case RayTracingShaderGroupTypeKHR::eGeneral: return "General"; - case RayTracingShaderGroupTypeKHR::eTrianglesHitGroup: return "TrianglesHitGroup"; - case RayTracingShaderGroupTypeKHR::eProceduralHitGroup: return "ProceduralHitGroup"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ShaderGroupShaderKHR - { - eGeneral = VK_SHADER_GROUP_SHADER_GENERAL_KHR, - eClosestHit = VK_SHADER_GROUP_SHADER_CLOSEST_HIT_KHR, - eAnyHit = VK_SHADER_GROUP_SHADER_ANY_HIT_KHR, - eIntersection = VK_SHADER_GROUP_SHADER_INTERSECTION_KHR - }; - - VULKAN_HPP_INLINE std::string to_string( ShaderGroupShaderKHR value ) - { - switch ( value ) - { - case ShaderGroupShaderKHR::eGeneral: return "General"; - case ShaderGroupShaderKHR::eClosestHit: return "ClosestHit"; - case ShaderGroupShaderKHR::eAnyHit: return "AnyHit"; - case ShaderGroupShaderKHR::eIntersection: return "Intersection"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - enum class ImageConstraintsInfoFlagBitsFUCHSIA : VkImageConstraintsInfoFlagsFUCHSIA - { - eCpuReadRarely = VK_IMAGE_CONSTRAINTS_INFO_CPU_READ_RARELY_FUCHSIA, - eCpuReadOften = VK_IMAGE_CONSTRAINTS_INFO_CPU_READ_OFTEN_FUCHSIA, - eCpuWriteRarely = VK_IMAGE_CONSTRAINTS_INFO_CPU_WRITE_RARELY_FUCHSIA, - eCpuWriteOften = VK_IMAGE_CONSTRAINTS_INFO_CPU_WRITE_OFTEN_FUCHSIA, - eProtectedOptional = VK_IMAGE_CONSTRAINTS_INFO_PROTECTED_OPTIONAL_FUCHSIA - }; - - VULKAN_HPP_INLINE std::string to_string( ImageConstraintsInfoFlagBitsFUCHSIA value ) - { - switch ( value ) - { - case ImageConstraintsInfoFlagBitsFUCHSIA::eCpuReadRarely: return "CpuReadRarely"; - case ImageConstraintsInfoFlagBitsFUCHSIA::eCpuReadOften: return "CpuReadOften"; - case ImageConstraintsInfoFlagBitsFUCHSIA::eCpuWriteRarely: return "CpuWriteRarely"; - case ImageConstraintsInfoFlagBitsFUCHSIA::eCpuWriteOften: return "CpuWriteOften"; - case ImageConstraintsInfoFlagBitsFUCHSIA::eProtectedOptional: return "ProtectedOptional"; - default: return "invalid ( " + VULKAN_HPP_NAMESPACE::toHexString( static_cast( value ) ) + " )"; - } - } - - enum class ImageFormatConstraintsFlagBitsFUCHSIA : VkImageFormatConstraintsFlagsFUCHSIA - { - }; - - VULKAN_HPP_INLINE std::string to_string( ImageFormatConstraintsFlagBitsFUCHSIA ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - enum class ScreenSurfaceCreateFlagBitsQNX : VkScreenSurfaceCreateFlagsQNX - { - }; - - VULKAN_HPP_INLINE std::string to_string( ScreenSurfaceCreateFlagBitsQNX ) - { - return "(void)"; - } -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - template - struct cpp_type - {}; - - //===================== - //=== Format Traits === - //===================== - - // The texel block size in bytes. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t blockSize( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eR4G4UnormPack8: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR4G4B4A4UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eB4G4R4A4UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR5G6B5UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eB5G6R5UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR5G5B5A1UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eB5G5R5A1UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eA1R5G5B5UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Snorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Srgb: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Snorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Srgb: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Snorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Srgb: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Snorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Srgb: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Snorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Srgb: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SrgbPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16Snorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16Uscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16Sscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16Sint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16Sfloat: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Snorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sfloat: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Snorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uscaled: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sscaled: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uint: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sint: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sfloat: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Unorm: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Snorm: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uscaled: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sscaled: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uint: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sint: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sfloat: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR32Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR32Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR32Sfloat: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Uint: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sint: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sfloat: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Uint: return 12; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sint: return 12; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sfloat: return 12; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Uint: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sint: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sfloat: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR64Uint: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR64Sint: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR64Sfloat: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Uint: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sint: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sfloat: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Uint: return 24; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sint: return 24; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sfloat: return 24; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Uint: return 32; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sint: return 32; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sfloat: return 32; - case VULKAN_HPP_NAMESPACE::Format::eB10G11R11UfloatPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eE5B9G9R9UfloatPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eD16Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eX8D24UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eD32Sfloat: return 4; - case VULKAN_HPP_NAMESPACE::Format::eS8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD16UnormS8Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eD24UnormS8Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eD32SfloatS8Uint: return 5; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbUnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbSrgbBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaUnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaSrgbBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eBc2UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc2SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc3UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc3SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc4UnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eBc4SnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eBc5UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc5SnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc6HUfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc6HSfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc7UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc7SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8UnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8SrgbBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1UnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1SrgbBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEacR11UnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eEacR11SnormBlock: return 8; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11SnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG8B8G8R8422Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8G8422Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6B10X6A10X6Unorm4Pack16: return 8; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: return 8; - case VULKAN_HPP_NAMESPACE::Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: return 8; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4B12X4A12X4Unorm4Pack16: return 8; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: return 8; - case VULKAN_HPP_NAMESPACE::Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: return 8; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG16B16G16R16422Unorm: return 8; - case VULKAN_HPP_NAMESPACE::Format::eB16G16R16G16422Unorm: return 8; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: return 6; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: return 6; - case VULKAN_HPP_NAMESPACE::Format::eA4R4G4B4UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eA4B4G4R4UnormPack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppUnormBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppUnormBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppUnormBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppUnormBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppSrgbBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppSrgbBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppSrgbBlockIMG: return 8; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppSrgbBlockIMG: return 8; - - default: VULKAN_HPP_ASSERT( false ); return 0; - } - } - - // The number of texels in a texel block. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t texelsPerBlock( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eR4G4UnormPack8: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR4G4B4A4UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB4G4R4A4UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR5G6B5UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB5G6R5UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR5G5B5A1UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB5G5R5A1UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA1R5G5B5UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UscaledPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SscaledPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UintPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SintPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SrgbPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UscaledPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SscaledPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UintPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SintPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UscaledPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SscaledPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UintPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SintPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB10G11R11UfloatPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eE5B9G9R9UfloatPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eX8D24UnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eS8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD16UnormS8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD24UnormS8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD32SfloatS8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbUnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbSrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaUnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaSrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc2UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc2SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc3UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc3SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc4UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc4SnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc5UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc5SnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc6HUfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc6HSfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc7UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eBc7SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEacR11UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEacR11SnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11SnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4UnormBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SrgbBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4UnormBlock: return 20; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SrgbBlock: return 20; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5UnormBlock: return 25; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SrgbBlock: return 25; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5UnormBlock: return 30; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SrgbBlock: return 30; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6UnormBlock: return 36; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SrgbBlock: return 36; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5UnormBlock: return 40; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SrgbBlock: return 40; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6UnormBlock: return 48; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SrgbBlock: return 48; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8UnormBlock: return 64; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SrgbBlock: return 64; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5UnormBlock: return 50; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SrgbBlock: return 50; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6UnormBlock: return 60; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SrgbBlock: return 60; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8UnormBlock: return 80; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SrgbBlock: return 80; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10UnormBlock: return 100; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SrgbBlock: return 100; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10UnormBlock: return 120; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SrgbBlock: return 120; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12UnormBlock: return 144; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SrgbBlock: return 144; - case VULKAN_HPP_NAMESPACE::Format::eG8B8G8R8422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8G8422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6B10X6A10X6Unorm4Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4B12X4A12X4Unorm4Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16G16R16422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eB16G16R16G16422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA4R4G4B4UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eA4B4G4R4UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SfloatBlock: return 16; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SfloatBlock: return 20; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SfloatBlock: return 25; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SfloatBlock: return 30; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SfloatBlock: return 36; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SfloatBlock: return 40; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SfloatBlock: return 48; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SfloatBlock: return 64; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SfloatBlock: return 50; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SfloatBlock: return 60; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SfloatBlock: return 80; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SfloatBlock: return 100; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SfloatBlock: return 120; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SfloatBlock: return 144; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppUnormBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppUnormBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppUnormBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppUnormBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppSrgbBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppSrgbBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppSrgbBlockIMG: return 1; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppSrgbBlockIMG: return 1; - - default: VULKAN_HPP_ASSERT( false ); return 0; - } - } - - // The three-dimensional extent of a texel block. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 std::array blockExtent( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbUnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbSrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaUnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaSrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc2UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc2SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc3UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc3SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc4UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc4SnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc5UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc5SnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc6HUfloatBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc6HSfloatBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc7UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eBc7SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEacR11UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEacR11SnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11SnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4UnormBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SrgbBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4UnormBlock: return { 5, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SrgbBlock: return { 5, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5UnormBlock: return { 5, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SrgbBlock: return { 5, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5UnormBlock: return { 6, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SrgbBlock: return { 6, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6UnormBlock: return { 6, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SrgbBlock: return { 6, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5UnormBlock: return { 8, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SrgbBlock: return { 8, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6UnormBlock: return { 8, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SrgbBlock: return { 8, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8UnormBlock: return { 8, 8, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SrgbBlock: return { 8, 8, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5UnormBlock: return { 10, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SrgbBlock: return { 10, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6UnormBlock: return { 10, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SrgbBlock: return { 10, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8UnormBlock: return { 10, 8, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SrgbBlock: return { 10, 8, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10UnormBlock: return { 10, 10, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SrgbBlock: return { 10, 10, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10UnormBlock: return { 12, 10, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SrgbBlock: return { 12, 10, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12UnormBlock: return { 12, 12, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SrgbBlock: return { 12, 12, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eG8B8G8R8422Unorm: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8G8422Unorm: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eG16B16G16R16422Unorm: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eB16G16R16G16422Unorm: return { 2, 1, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SfloatBlock: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SfloatBlock: return { 5, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SfloatBlock: return { 5, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SfloatBlock: return { 6, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SfloatBlock: return { 6, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SfloatBlock: return { 8, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SfloatBlock: return { 8, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SfloatBlock: return { 8, 8, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SfloatBlock: return { 10, 5, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SfloatBlock: return { 10, 6, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SfloatBlock: return { 10, 8, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SfloatBlock: return { 10, 10, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SfloatBlock: return { 12, 10, 1 }; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SfloatBlock: return { 12, 12, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppUnormBlockIMG: return { 8, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppUnormBlockIMG: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppUnormBlockIMG: return { 8, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppUnormBlockIMG: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppSrgbBlockIMG: return { 8, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppSrgbBlockIMG: return { 4, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppSrgbBlockIMG: return { 8, 4, 1 }; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppSrgbBlockIMG: return { 4, 4, 1 }; - - default: return { 1, 1, 1 }; - } - } - - // A textual description of the compression scheme, or an empty string if it is not compressed - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 char const * compressionScheme( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbUnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbSrgbBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaUnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaSrgbBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc2UnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc2SrgbBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc3UnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc3SrgbBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc4UnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc4SnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc5UnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc5SnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc6HUfloatBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc6HSfloatBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc7UnormBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eBc7SrgbBlock: return "BC"; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8UnormBlock: return "ETC2"; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8SrgbBlock: return "ETC2"; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1UnormBlock: return "ETC2"; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1SrgbBlock: return "ETC2"; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8UnormBlock: return "ETC2"; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8SrgbBlock: return "ETC2"; - case VULKAN_HPP_NAMESPACE::Format::eEacR11UnormBlock: return "EAC"; - case VULKAN_HPP_NAMESPACE::Format::eEacR11SnormBlock: return "EAC"; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11UnormBlock: return "EAC"; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11SnormBlock: return "EAC"; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12UnormBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SrgbBlock: return "ASTC LDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SfloatBlock: return "ASTC HDR"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppUnormBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppUnormBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppUnormBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppUnormBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppSrgbBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppSrgbBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppSrgbBlockIMG: return "PVRTC"; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppSrgbBlockIMG: return "PVRTC"; - - default: return ""; - } - } - - // True, if this format is a compressed one. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 bool isCompressed( VULKAN_HPP_NAMESPACE::Format format ) - { - return ( *VULKAN_HPP_NAMESPACE::compressionScheme( format ) != 0 ); - } - - // The number of bits into which the format is packed. A single image element in this format - // can be stored in the same space as a scalar type of this bit width. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t packed( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eR4G4UnormPack8: return 8; - case VULKAN_HPP_NAMESPACE::Format::eR4G4B4A4UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eB4G4R4A4UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR5G6B5UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eB5G6R5UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR5G5B5A1UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eB5G5R5A1UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eA1R5G5B5UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UscaledPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SscaledPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UintPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SintPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SrgbPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UscaledPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SscaledPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UintPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SintPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UscaledPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SscaledPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UintPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SintPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eB10G11R11UfloatPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eE5B9G9R9UfloatPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eX8D24UnormPack32: return 32; - case VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6B10X6A10X6Unorm4Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4B12X4A12X4Unorm4Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eA4R4G4B4UnormPack16: return 16; - case VULKAN_HPP_NAMESPACE::Format::eA4B4G4R4UnormPack16: return 16; - - default: return 0; - } - } - - // The number of components of this format. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t componentCount( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eR4G4UnormPack8: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR4G4B4A4UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB4G4R4A4UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR5G6B5UnormPack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB5G6R5UnormPack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR5G5B5A1UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB5G5R5A1UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA1R5G5B5UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8Srgb: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Snorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8Srgb: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Snorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Srgb: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Snorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Srgb: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Snorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Srgb: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Snorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Srgb: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SrgbPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SnormPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SscaledPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SintPack32: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Snorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Uscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Sscaled: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Snorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sscaled: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sfloat: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Snorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sscaled: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sfloat: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Snorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sscaled: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sfloat: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR32Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sfloat: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sfloat: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sfloat: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR64Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64Sint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sfloat: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Uint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sint: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sfloat: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Uint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sint: return 4; - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sfloat: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB10G11R11UfloatPack32: return 3; - case VULKAN_HPP_NAMESPACE::Format::eE5B9G9R9UfloatPack32: return 3; - case VULKAN_HPP_NAMESPACE::Format::eD16Unorm: return 1; - case VULKAN_HPP_NAMESPACE::Format::eX8D24UnormPack32: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD32Sfloat: return 1; - case VULKAN_HPP_NAMESPACE::Format::eS8Uint: return 1; - case VULKAN_HPP_NAMESPACE::Format::eD16UnormS8Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eD24UnormS8Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eD32SfloatS8Uint: return 2; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbUnormBlock: return 3; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbSrgbBlock: return 3; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaUnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaSrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc2UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc2SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc3UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc3SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc4UnormBlock: return 1; - case VULKAN_HPP_NAMESPACE::Format::eBc4SnormBlock: return 1; - case VULKAN_HPP_NAMESPACE::Format::eBc5UnormBlock: return 2; - case VULKAN_HPP_NAMESPACE::Format::eBc5SnormBlock: return 2; - case VULKAN_HPP_NAMESPACE::Format::eBc6HUfloatBlock: return 3; - case VULKAN_HPP_NAMESPACE::Format::eBc6HSfloatBlock: return 3; - case VULKAN_HPP_NAMESPACE::Format::eBc7UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eBc7SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8UnormBlock: return 3; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8SrgbBlock: return 3; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eEacR11UnormBlock: return 1; - case VULKAN_HPP_NAMESPACE::Format::eEacR11SnormBlock: return 1; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11UnormBlock: return 2; - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11SnormBlock: return 2; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12UnormBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SrgbBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG8B8G8R8422Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8G8422Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6B10X6A10X6Unorm4Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16: return 1; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4B12X4A12X4Unorm4Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16G16R16422Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eB16G16R16G16422Unorm: return 4; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eA4R4G4B4UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eA4B4G4R4UnormPack16: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SfloatBlock: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppUnormBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppUnormBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppUnormBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppUnormBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppSrgbBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppSrgbBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppSrgbBlockIMG: return 4; - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppSrgbBlockIMG: return 4; - - default: return 0; - } - } - - // True, if the components of this format are compressed, otherwise false. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 bool componentsAreCompressed( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbUnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbSrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaUnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc1RgbaSrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc2UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc2SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc3UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc3SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc4UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc4SnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc5UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc5SnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc6HUfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc6HSfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc7UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eBc7SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A1SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eEtc2R8G8B8A8SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12UnormBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SrgbBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc4x4SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc5x4SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc5x5SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc6x5SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc6x6SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x5SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x6SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc8x8SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x5SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x6SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x8SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc10x10SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc12x10SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::eAstc12x12SfloatBlock: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppUnormBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppUnormBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppUnormBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppUnormBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc12BppSrgbBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc14BppSrgbBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc22BppSrgbBlockIMG: - case VULKAN_HPP_NAMESPACE::Format::ePvrtc24BppSrgbBlockIMG: return true; - default: return false; - } - } - - // The number of bits in this component, if not compressed, otherwise 0. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t componentBits( VULKAN_HPP_NAMESPACE::Format format, - uint8_t component ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eR4G4UnormPack8: - switch ( component ) - { - case 0: return 4; - case 1: return 4; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR4G4B4A4UnormPack16: - switch ( component ) - { - case 0: return 4; - case 1: return 4; - case 2: return 4; - case 3: return 4; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB4G4R4A4UnormPack16: - switch ( component ) - { - case 0: return 4; - case 1: return 4; - case 2: return 4; - case 3: return 4; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR5G6B5UnormPack16: - switch ( component ) - { - case 0: return 5; - case 1: return 6; - case 2: return 5; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB5G6R5UnormPack16: - switch ( component ) - { - case 0: return 5; - case 1: return 6; - case 2: return 5; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR5G5B5A1UnormPack16: - switch ( component ) - { - case 0: return 5; - case 1: return 5; - case 2: return 5; - case 3: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB5G5R5A1UnormPack16: - switch ( component ) - { - case 0: return 5; - case 1: return 5; - case 2: return 5; - case 3: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA1R5G5B5UnormPack16: - switch ( component ) - { - case 0: return 1; - case 1: return 5; - case 2: return 5; - case 3: return 5; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Unorm: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Snorm: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Uscaled: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Sscaled: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Uint: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Sint: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8Srgb: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Snorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Uint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Sint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8Srgb: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Snorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Uint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Sint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8Srgb: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Snorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Uint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Sint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8Srgb: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Snorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Uint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Sint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR8G8B8A8Srgb: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Snorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sscaled: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Uint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Sint: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8A8Srgb: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UnormPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SnormPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UscaledPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SscaledPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8UintPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SintPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA8B8G8R8SrgbPack32: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UnormPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SnormPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UscaledPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SscaledPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10UintPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2R10G10B10SintPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UnormPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SnormPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UscaledPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SscaledPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10UintPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA2B10G10R10SintPack32: - switch ( component ) - { - case 0: return 2; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Unorm: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Snorm: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Uscaled: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Sscaled: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Uint: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Sint: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16Sfloat: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Snorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uscaled: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sscaled: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Uint: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sint: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16Sfloat: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Snorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uscaled: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sscaled: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Uint: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sint: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16Sfloat: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Snorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uscaled: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sscaled: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Uint: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sint: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR16G16B16A16Sfloat: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32Uint: - switch ( component ) - { - case 0: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32Sint: - switch ( component ) - { - case 0: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32Sfloat: - switch ( component ) - { - case 0: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32Uint: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sint: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32Sfloat: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Uint: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - case 2: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sint: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - case 2: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32Sfloat: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - case 2: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Uint: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - case 2: return 32; - case 3: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sint: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - case 2: return 32; - case 3: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR32G32B32A32Sfloat: - switch ( component ) - { - case 0: return 32; - case 1: return 32; - case 2: return 32; - case 3: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64Uint: - switch ( component ) - { - case 0: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64Sint: - switch ( component ) - { - case 0: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64Sfloat: - switch ( component ) - { - case 0: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64Uint: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sint: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64Sfloat: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Uint: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - case 2: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sint: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - case 2: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64Sfloat: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - case 2: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Uint: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - case 2: return 64; - case 3: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sint: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - case 2: return 64; - case 3: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR64G64B64A64Sfloat: - switch ( component ) - { - case 0: return 64; - case 1: return 64; - case 2: return 64; - case 3: return 64; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB10G11R11UfloatPack32: - switch ( component ) - { - case 0: return 10; - case 1: return 11; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eE5B9G9R9UfloatPack32: - switch ( component ) - { - case 0: return 9; - case 1: return 9; - case 2: return 9; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eD16Unorm: - switch ( component ) - { - case 0: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eX8D24UnormPack32: - switch ( component ) - { - case 0: return 24; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eD32Sfloat: - switch ( component ) - { - case 0: return 32; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eS8Uint: - switch ( component ) - { - case 0: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eD16UnormS8Uint: - switch ( component ) - { - case 0: return 16; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eD24UnormS8Uint: - switch ( component ) - { - case 0: return 24; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eD32SfloatS8Uint: - switch ( component ) - { - case 0: return 32; - case 1: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eEacR11UnormBlock: - switch ( component ) - { - case 0: return 11; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eEacR11SnormBlock: - switch ( component ) - { - case 0: return 11; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11UnormBlock: - switch ( component ) - { - case 0: return 11; - case 1: return 11; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eEacR11G11SnormBlock: - switch ( component ) - { - case 0: return 11; - case 1: return 11; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8G8R8422Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB8G8R8G8422Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - case 3: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16: - switch ( component ) - { - case 0: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6B10X6A10X6Unorm4Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6G10X6R10X6422Unorm4Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB10X6G10X6R10X6G10X6422Unorm4Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - case 3: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16: - switch ( component ) - { - case 0: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4B12X4A12X4Unorm4Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - case 3: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4G12X4R12X4422Unorm4Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - case 3: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB12X4G12X4R12X4G12X4422Unorm4Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - case 3: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16G16R16422Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eB16G16R16G16422Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - case 3: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: - switch ( component ) - { - case 0: return 8; - case 1: return 8; - case 2: return 8; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 10; - case 1: return 10; - case 2: return 10; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 12; - case 1: return 12; - case 2: return 12; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: - switch ( component ) - { - case 0: return 16; - case 1: return 16; - case 2: return 16; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA4R4G4B4UnormPack16: - switch ( component ) - { - case 0: return 4; - case 1: return 4; - case 2: return 4; - case 3: return 4; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eA4B4G4R4UnormPack16: - switch ( component ) - { - case 0: return 4; - case 1: return 4; - case 2: return 4; - case 3: return 4; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - - default: return 0; - } - } - - // The plane this component lies in. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t componentPlaneIndex( VULKAN_HPP_NAMESPACE::Format format, - uint8_t component ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: - switch ( component ) - { - case 0: return 0; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 0; - } - - default: return 0; - } - } - - // The number of image planes of this format. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t planeCount( VULKAN_HPP_NAMESPACE::Format format ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: return 3; - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: return 2; - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: return 2; - - default: return 1; - } - } - - // The single-plane format that this plane is compatible with. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 VULKAN_HPP_NAMESPACE::Format - planeCompatibleFormat( VULKAN_HPP_NAMESPACE::Format format, uint8_t plane ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 2: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR8Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR8G8Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR10X6UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR10X6G10X6Unorm2Pack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR12X4UnormPack16; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR12X4G12X4Unorm2Pack16; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: - switch ( plane ) - { - case 0: return VULKAN_HPP_NAMESPACE::Format::eR16Unorm; - case 1: return VULKAN_HPP_NAMESPACE::Format::eR16G16Unorm; - default: VULKAN_HPP_ASSERT( false ); return VULKAN_HPP_NAMESPACE::Format::eUndefined; - } - - default: VULKAN_HPP_ASSERT( plane == 0 ); return format; - } - } - - // The relative height of this plane. A value of k means that this plane is 1/k the height of the overall format. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t planeHeightDivisor( VULKAN_HPP_NAMESPACE::Format format, - uint8_t plane ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - - default: VULKAN_HPP_ASSERT( plane == 0 ); return 1; - } - } - - // The relative width of this plane. A value of k means that this plane is 1/k the width of the overall format. - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t planeWidthDivisor( VULKAN_HPP_NAMESPACE::Format format, - uint8_t plane ) - { - switch ( format ) - { - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R83Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X63Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane420Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane422Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X43Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane420Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - case 2: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane422Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 2; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R163Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - case 2: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG8B8R82Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG10X6B10X6R10X62Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG12X4B12X4R12X42Plane444Unorm3Pack16: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - case VULKAN_HPP_NAMESPACE::Format::eG16B16R162Plane444Unorm: - switch ( plane ) - { - case 0: return 1; - case 1: return 1; - default: VULKAN_HPP_ASSERT( false ); return 1; - } - - default: VULKAN_HPP_ASSERT( plane == 0 ); return 1; - } - } - - template - struct IndexTypeValue - {}; - - template <> - struct IndexTypeValue - { - static VULKAN_HPP_CONST_OR_CONSTEXPR IndexType value = IndexType::eUint16; - }; - - template <> - struct CppType - { - using Type = uint16_t; - }; - - template <> - struct IndexTypeValue - { - static VULKAN_HPP_CONST_OR_CONSTEXPR IndexType value = IndexType::eUint32; - }; - - template <> - struct CppType - { - using Type = uint32_t; - }; - - template <> - struct IndexTypeValue - { - static VULKAN_HPP_CONST_OR_CONSTEXPR IndexType value = IndexType::eUint8EXT; - }; - - template <> - struct CppType - { - using Type = uint8_t; - }; - - //================ - //=== BITMASKs === - //================ - - //=== VK_VERSION_1_0 === - - using FormatFeatureFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( FormatFeatureFlagBits::eSampledImage ) | VkFlags( FormatFeatureFlagBits::eStorageImage ) | - VkFlags( FormatFeatureFlagBits::eStorageImageAtomic ) | VkFlags( FormatFeatureFlagBits::eUniformTexelBuffer ) | - VkFlags( FormatFeatureFlagBits::eStorageTexelBuffer ) | - VkFlags( FormatFeatureFlagBits::eStorageTexelBufferAtomic ) | VkFlags( FormatFeatureFlagBits::eVertexBuffer ) | - VkFlags( FormatFeatureFlagBits::eColorAttachment ) | VkFlags( FormatFeatureFlagBits::eColorAttachmentBlend ) | - VkFlags( FormatFeatureFlagBits::eDepthStencilAttachment ) | VkFlags( FormatFeatureFlagBits::eBlitSrc ) | - VkFlags( FormatFeatureFlagBits::eBlitDst ) | VkFlags( FormatFeatureFlagBits::eSampledImageFilterLinear ) | - VkFlags( FormatFeatureFlagBits::eTransferSrc ) | VkFlags( FormatFeatureFlagBits::eTransferDst ) | - VkFlags( FormatFeatureFlagBits::eMidpointChromaSamples ) | - VkFlags( FormatFeatureFlagBits::eSampledImageYcbcrConversionLinearFilter ) | - VkFlags( FormatFeatureFlagBits::eSampledImageYcbcrConversionSeparateReconstructionFilter ) | - VkFlags( FormatFeatureFlagBits::eSampledImageYcbcrConversionChromaReconstructionExplicit ) | - VkFlags( FormatFeatureFlagBits::eSampledImageYcbcrConversionChromaReconstructionExplicitForceable ) | - VkFlags( FormatFeatureFlagBits::eDisjoint ) | VkFlags( FormatFeatureFlagBits::eCositedChromaSamples ) | - VkFlags( FormatFeatureFlagBits::eSampledImageFilterMinmax ) | - VkFlags( FormatFeatureFlagBits::eSampledImageFilterCubicIMG ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( FormatFeatureFlagBits::eVideoDecodeOutputKHR ) | VkFlags( FormatFeatureFlagBits::eVideoDecodeDpbKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags( FormatFeatureFlagBits::eAccelerationStructureVertexBufferKHR ) | - VkFlags( FormatFeatureFlagBits::eFragmentDensityMapEXT ) | - VkFlags( FormatFeatureFlagBits::eFragmentShadingRateAttachmentKHR ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( FormatFeatureFlagBits::eVideoEncodeInputKHR ) | VkFlags( FormatFeatureFlagBits::eVideoEncodeDpbKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags operator|( FormatFeatureFlagBits bit0, - FormatFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FormatFeatureFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags operator&( FormatFeatureFlagBits bit0, - FormatFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FormatFeatureFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags operator^( FormatFeatureFlagBits bit0, - FormatFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FormatFeatureFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags operator~( FormatFeatureFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( FormatFeatureFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( FormatFeatureFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & FormatFeatureFlagBits::eSampledImage ) - result += "SampledImage | "; - if ( value & FormatFeatureFlagBits::eStorageImage ) - result += "StorageImage | "; - if ( value & FormatFeatureFlagBits::eStorageImageAtomic ) - result += "StorageImageAtomic | "; - if ( value & FormatFeatureFlagBits::eUniformTexelBuffer ) - result += "UniformTexelBuffer | "; - if ( value & FormatFeatureFlagBits::eStorageTexelBuffer ) - result += "StorageTexelBuffer | "; - if ( value & FormatFeatureFlagBits::eStorageTexelBufferAtomic ) - result += "StorageTexelBufferAtomic | "; - if ( value & FormatFeatureFlagBits::eVertexBuffer ) - result += "VertexBuffer | "; - if ( value & FormatFeatureFlagBits::eColorAttachment ) - result += "ColorAttachment | "; - if ( value & FormatFeatureFlagBits::eColorAttachmentBlend ) - result += "ColorAttachmentBlend | "; - if ( value & FormatFeatureFlagBits::eDepthStencilAttachment ) - result += "DepthStencilAttachment | "; - if ( value & FormatFeatureFlagBits::eBlitSrc ) - result += "BlitSrc | "; - if ( value & FormatFeatureFlagBits::eBlitDst ) - result += "BlitDst | "; - if ( value & FormatFeatureFlagBits::eSampledImageFilterLinear ) - result += "SampledImageFilterLinear | "; - if ( value & FormatFeatureFlagBits::eTransferSrc ) - result += "TransferSrc | "; - if ( value & FormatFeatureFlagBits::eTransferDst ) - result += "TransferDst | "; - if ( value & FormatFeatureFlagBits::eMidpointChromaSamples ) - result += "MidpointChromaSamples | "; - if ( value & FormatFeatureFlagBits::eSampledImageYcbcrConversionLinearFilter ) - result += "SampledImageYcbcrConversionLinearFilter | "; - if ( value & FormatFeatureFlagBits::eSampledImageYcbcrConversionSeparateReconstructionFilter ) - result += "SampledImageYcbcrConversionSeparateReconstructionFilter | "; - if ( value & FormatFeatureFlagBits::eSampledImageYcbcrConversionChromaReconstructionExplicit ) - result += "SampledImageYcbcrConversionChromaReconstructionExplicit | "; - if ( value & FormatFeatureFlagBits::eSampledImageYcbcrConversionChromaReconstructionExplicitForceable ) - result += "SampledImageYcbcrConversionChromaReconstructionExplicitForceable | "; - if ( value & FormatFeatureFlagBits::eDisjoint ) - result += "Disjoint | "; - if ( value & FormatFeatureFlagBits::eCositedChromaSamples ) - result += "CositedChromaSamples | "; - if ( value & FormatFeatureFlagBits::eSampledImageFilterMinmax ) - result += "SampledImageFilterMinmax | "; - if ( value & FormatFeatureFlagBits::eSampledImageFilterCubicIMG ) - result += "SampledImageFilterCubicIMG | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & FormatFeatureFlagBits::eVideoDecodeOutputKHR ) - result += "VideoDecodeOutputKHR | "; - if ( value & FormatFeatureFlagBits::eVideoDecodeDpbKHR ) - result += "VideoDecodeDpbKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & FormatFeatureFlagBits::eAccelerationStructureVertexBufferKHR ) - result += "AccelerationStructureVertexBufferKHR | "; - if ( value & FormatFeatureFlagBits::eFragmentDensityMapEXT ) - result += "FragmentDensityMapEXT | "; - if ( value & FormatFeatureFlagBits::eFragmentShadingRateAttachmentKHR ) - result += "FragmentShadingRateAttachmentKHR | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & FormatFeatureFlagBits::eVideoEncodeInputKHR ) - result += "VideoEncodeInputKHR | "; - if ( value & FormatFeatureFlagBits::eVideoEncodeDpbKHR ) - result += "VideoEncodeDpbKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ImageCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( ImageCreateFlagBits::eSparseBinding ) | VkFlags( ImageCreateFlagBits::eSparseResidency ) | - VkFlags( ImageCreateFlagBits::eSparseAliased ) | VkFlags( ImageCreateFlagBits::eMutableFormat ) | - VkFlags( ImageCreateFlagBits::eCubeCompatible ) | VkFlags( ImageCreateFlagBits::eAlias ) | - VkFlags( ImageCreateFlagBits::eSplitInstanceBindRegions ) | VkFlags( ImageCreateFlagBits::e2DArrayCompatible ) | - VkFlags( ImageCreateFlagBits::eBlockTexelViewCompatible ) | VkFlags( ImageCreateFlagBits::eExtendedUsage ) | - VkFlags( ImageCreateFlagBits::eProtected ) | VkFlags( ImageCreateFlagBits::eDisjoint ) | - VkFlags( ImageCreateFlagBits::eCornerSampledNV ) | - VkFlags( ImageCreateFlagBits::eSampleLocationsCompatibleDepthEXT ) | - VkFlags( ImageCreateFlagBits::eSubsampledEXT ) | VkFlags( ImageCreateFlagBits::eFragmentDensityMapOffsetQCOM ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageCreateFlags operator|( ImageCreateFlagBits bit0, - ImageCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageCreateFlags operator&( ImageCreateFlagBits bit0, - ImageCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageCreateFlags operator^( ImageCreateFlagBits bit0, - ImageCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageCreateFlags operator~( ImageCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ImageCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ImageCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ImageCreateFlagBits::eSparseBinding ) - result += "SparseBinding | "; - if ( value & ImageCreateFlagBits::eSparseResidency ) - result += "SparseResidency | "; - if ( value & ImageCreateFlagBits::eSparseAliased ) - result += "SparseAliased | "; - if ( value & ImageCreateFlagBits::eMutableFormat ) - result += "MutableFormat | "; - if ( value & ImageCreateFlagBits::eCubeCompatible ) - result += "CubeCompatible | "; - if ( value & ImageCreateFlagBits::eAlias ) - result += "Alias | "; - if ( value & ImageCreateFlagBits::eSplitInstanceBindRegions ) - result += "SplitInstanceBindRegions | "; - if ( value & ImageCreateFlagBits::e2DArrayCompatible ) - result += "2DArrayCompatible | "; - if ( value & ImageCreateFlagBits::eBlockTexelViewCompatible ) - result += "BlockTexelViewCompatible | "; - if ( value & ImageCreateFlagBits::eExtendedUsage ) - result += "ExtendedUsage | "; - if ( value & ImageCreateFlagBits::eProtected ) - result += "Protected | "; - if ( value & ImageCreateFlagBits::eDisjoint ) - result += "Disjoint | "; - if ( value & ImageCreateFlagBits::eCornerSampledNV ) - result += "CornerSampledNV | "; - if ( value & ImageCreateFlagBits::eSampleLocationsCompatibleDepthEXT ) - result += "SampleLocationsCompatibleDepthEXT | "; - if ( value & ImageCreateFlagBits::eSubsampledEXT ) - result += "SubsampledEXT | "; - if ( value & ImageCreateFlagBits::eFragmentDensityMapOffsetQCOM ) - result += "FragmentDensityMapOffsetQCOM | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ImageUsageFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ImageUsageFlagBits::eTransferSrc ) | VkFlags( ImageUsageFlagBits::eTransferDst ) | - VkFlags( ImageUsageFlagBits::eSampled ) | VkFlags( ImageUsageFlagBits::eStorage ) | - VkFlags( ImageUsageFlagBits::eColorAttachment ) | - VkFlags( ImageUsageFlagBits::eDepthStencilAttachment ) | - VkFlags( ImageUsageFlagBits::eTransientAttachment ) | VkFlags( ImageUsageFlagBits::eInputAttachment ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( ImageUsageFlagBits::eVideoDecodeDstKHR ) | - VkFlags( ImageUsageFlagBits::eVideoDecodeSrcKHR ) | VkFlags( ImageUsageFlagBits::eVideoDecodeDpbKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags( ImageUsageFlagBits::eFragmentDensityMapEXT ) | - VkFlags( ImageUsageFlagBits::eFragmentShadingRateAttachmentKHR ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( ImageUsageFlagBits::eVideoEncodeDstKHR ) | - VkFlags( ImageUsageFlagBits::eVideoEncodeSrcKHR ) | VkFlags( ImageUsageFlagBits::eVideoEncodeDpbKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags( ImageUsageFlagBits::eInvocationMaskHUAWEI ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageUsageFlags operator|( ImageUsageFlagBits bit0, - ImageUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageUsageFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageUsageFlags operator&( ImageUsageFlagBits bit0, - ImageUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageUsageFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageUsageFlags operator^( ImageUsageFlagBits bit0, - ImageUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageUsageFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageUsageFlags operator~( ImageUsageFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ImageUsageFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ImageUsageFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ImageUsageFlagBits::eTransferSrc ) - result += "TransferSrc | "; - if ( value & ImageUsageFlagBits::eTransferDst ) - result += "TransferDst | "; - if ( value & ImageUsageFlagBits::eSampled ) - result += "Sampled | "; - if ( value & ImageUsageFlagBits::eStorage ) - result += "Storage | "; - if ( value & ImageUsageFlagBits::eColorAttachment ) - result += "ColorAttachment | "; - if ( value & ImageUsageFlagBits::eDepthStencilAttachment ) - result += "DepthStencilAttachment | "; - if ( value & ImageUsageFlagBits::eTransientAttachment ) - result += "TransientAttachment | "; - if ( value & ImageUsageFlagBits::eInputAttachment ) - result += "InputAttachment | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & ImageUsageFlagBits::eVideoDecodeDstKHR ) - result += "VideoDecodeDstKHR | "; - if ( value & ImageUsageFlagBits::eVideoDecodeSrcKHR ) - result += "VideoDecodeSrcKHR | "; - if ( value & ImageUsageFlagBits::eVideoDecodeDpbKHR ) - result += "VideoDecodeDpbKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & ImageUsageFlagBits::eFragmentDensityMapEXT ) - result += "FragmentDensityMapEXT | "; - if ( value & ImageUsageFlagBits::eFragmentShadingRateAttachmentKHR ) - result += "FragmentShadingRateAttachmentKHR | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & ImageUsageFlagBits::eVideoEncodeDstKHR ) - result += "VideoEncodeDstKHR | "; - if ( value & ImageUsageFlagBits::eVideoEncodeSrcKHR ) - result += "VideoEncodeSrcKHR | "; - if ( value & ImageUsageFlagBits::eVideoEncodeDpbKHR ) - result += "VideoEncodeDpbKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & ImageUsageFlagBits::eInvocationMaskHUAWEI ) - result += "InvocationMaskHUAWEI | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using InstanceCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( InstanceCreateFlags ) - { - return "{}"; - } - - using MemoryHeapFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( MemoryHeapFlagBits::eDeviceLocal ) | VkFlags( MemoryHeapFlagBits::eMultiInstance ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryHeapFlags operator|( MemoryHeapFlagBits bit0, - MemoryHeapFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryHeapFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryHeapFlags operator&( MemoryHeapFlagBits bit0, - MemoryHeapFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryHeapFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryHeapFlags operator^( MemoryHeapFlagBits bit0, - MemoryHeapFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryHeapFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryHeapFlags operator~( MemoryHeapFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( MemoryHeapFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( MemoryHeapFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & MemoryHeapFlagBits::eDeviceLocal ) - result += "DeviceLocal | "; - if ( value & MemoryHeapFlagBits::eMultiInstance ) - result += "MultiInstance | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using MemoryPropertyFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( MemoryPropertyFlagBits::eDeviceLocal ) | VkFlags( MemoryPropertyFlagBits::eHostVisible ) | - VkFlags( MemoryPropertyFlagBits::eHostCoherent ) | VkFlags( MemoryPropertyFlagBits::eHostCached ) | - VkFlags( MemoryPropertyFlagBits::eLazilyAllocated ) | VkFlags( MemoryPropertyFlagBits::eProtected ) | - VkFlags( MemoryPropertyFlagBits::eDeviceCoherentAMD ) | - VkFlags( MemoryPropertyFlagBits::eDeviceUncachedAMD ) | - VkFlags( MemoryPropertyFlagBits::eRdmaCapableNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryPropertyFlags - operator|( MemoryPropertyFlagBits bit0, MemoryPropertyFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryPropertyFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryPropertyFlags - operator&( MemoryPropertyFlagBits bit0, MemoryPropertyFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryPropertyFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryPropertyFlags - operator^( MemoryPropertyFlagBits bit0, MemoryPropertyFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryPropertyFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryPropertyFlags operator~( MemoryPropertyFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( MemoryPropertyFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( MemoryPropertyFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & MemoryPropertyFlagBits::eDeviceLocal ) - result += "DeviceLocal | "; - if ( value & MemoryPropertyFlagBits::eHostVisible ) - result += "HostVisible | "; - if ( value & MemoryPropertyFlagBits::eHostCoherent ) - result += "HostCoherent | "; - if ( value & MemoryPropertyFlagBits::eHostCached ) - result += "HostCached | "; - if ( value & MemoryPropertyFlagBits::eLazilyAllocated ) - result += "LazilyAllocated | "; - if ( value & MemoryPropertyFlagBits::eProtected ) - result += "Protected | "; - if ( value & MemoryPropertyFlagBits::eDeviceCoherentAMD ) - result += "DeviceCoherentAMD | "; - if ( value & MemoryPropertyFlagBits::eDeviceUncachedAMD ) - result += "DeviceUncachedAMD | "; - if ( value & MemoryPropertyFlagBits::eRdmaCapableNV ) - result += "RdmaCapableNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using QueueFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( QueueFlagBits::eGraphics ) | VkFlags( QueueFlagBits::eCompute ) | - VkFlags( QueueFlagBits::eTransfer ) | VkFlags( QueueFlagBits::eSparseBinding ) | - VkFlags( QueueFlagBits::eProtected ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( QueueFlagBits::eVideoDecodeKHR ) | VkFlags( QueueFlagBits::eVideoEncodeKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueueFlags operator|( QueueFlagBits bit0, - QueueFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueueFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueueFlags operator&( QueueFlagBits bit0, - QueueFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueueFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueueFlags operator^( QueueFlagBits bit0, - QueueFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueueFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueueFlags operator~( QueueFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( QueueFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( QueueFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & QueueFlagBits::eGraphics ) - result += "Graphics | "; - if ( value & QueueFlagBits::eCompute ) - result += "Compute | "; - if ( value & QueueFlagBits::eTransfer ) - result += "Transfer | "; - if ( value & QueueFlagBits::eSparseBinding ) - result += "SparseBinding | "; - if ( value & QueueFlagBits::eProtected ) - result += "Protected | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & QueueFlagBits::eVideoDecodeKHR ) - result += "VideoDecodeKHR | "; - if ( value & QueueFlagBits::eVideoEncodeKHR ) - result += "VideoEncodeKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SampleCountFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SampleCountFlagBits::e1 ) | VkFlags( SampleCountFlagBits::e2 ) | - VkFlags( SampleCountFlagBits::e4 ) | VkFlags( SampleCountFlagBits::e8 ) | - VkFlags( SampleCountFlagBits::e16 ) | VkFlags( SampleCountFlagBits::e32 ) | - VkFlags( SampleCountFlagBits::e64 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SampleCountFlags operator|( SampleCountFlagBits bit0, - SampleCountFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SampleCountFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SampleCountFlags operator&( SampleCountFlagBits bit0, - SampleCountFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SampleCountFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SampleCountFlags operator^( SampleCountFlagBits bit0, - SampleCountFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SampleCountFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SampleCountFlags operator~( SampleCountFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( SampleCountFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SampleCountFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SampleCountFlagBits::e1 ) - result += "1 | "; - if ( value & SampleCountFlagBits::e2 ) - result += "2 | "; - if ( value & SampleCountFlagBits::e4 ) - result += "4 | "; - if ( value & SampleCountFlagBits::e8 ) - result += "8 | "; - if ( value & SampleCountFlagBits::e16 ) - result += "16 | "; - if ( value & SampleCountFlagBits::e32 ) - result += "32 | "; - if ( value & SampleCountFlagBits::e64 ) - result += "64 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DeviceCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( DeviceCreateFlags ) - { - return "{}"; - } - - using DeviceQueueCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DeviceQueueCreateFlagBits::eProtected ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceQueueCreateFlags - operator|( DeviceQueueCreateFlagBits bit0, DeviceQueueCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceQueueCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceQueueCreateFlags - operator&( DeviceQueueCreateFlagBits bit0, DeviceQueueCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceQueueCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceQueueCreateFlags - operator^( DeviceQueueCreateFlagBits bit0, DeviceQueueCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceQueueCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceQueueCreateFlags operator~( DeviceQueueCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( DeviceQueueCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DeviceQueueCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DeviceQueueCreateFlagBits::eProtected ) - result += "Protected | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PipelineStageFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( PipelineStageFlagBits::eTopOfPipe ) | VkFlags( PipelineStageFlagBits::eDrawIndirect ) | - VkFlags( PipelineStageFlagBits::eVertexInput ) | VkFlags( PipelineStageFlagBits::eVertexShader ) | - VkFlags( PipelineStageFlagBits::eTessellationControlShader ) | - VkFlags( PipelineStageFlagBits::eTessellationEvaluationShader ) | - VkFlags( PipelineStageFlagBits::eGeometryShader ) | VkFlags( PipelineStageFlagBits::eFragmentShader ) | - VkFlags( PipelineStageFlagBits::eEarlyFragmentTests ) | VkFlags( PipelineStageFlagBits::eLateFragmentTests ) | - VkFlags( PipelineStageFlagBits::eColorAttachmentOutput ) | VkFlags( PipelineStageFlagBits::eComputeShader ) | - VkFlags( PipelineStageFlagBits::eTransfer ) | VkFlags( PipelineStageFlagBits::eBottomOfPipe ) | - VkFlags( PipelineStageFlagBits::eHost ) | VkFlags( PipelineStageFlagBits::eAllGraphics ) | - VkFlags( PipelineStageFlagBits::eAllCommands ) | VkFlags( PipelineStageFlagBits::eNone ) | - VkFlags( PipelineStageFlagBits::eTransformFeedbackEXT ) | - VkFlags( PipelineStageFlagBits::eConditionalRenderingEXT ) | - VkFlags( PipelineStageFlagBits::eAccelerationStructureBuildKHR ) | - VkFlags( PipelineStageFlagBits::eRayTracingShaderKHR ) | VkFlags( PipelineStageFlagBits::eTaskShaderNV ) | - VkFlags( PipelineStageFlagBits::eMeshShaderNV ) | VkFlags( PipelineStageFlagBits::eFragmentDensityProcessEXT ) | - VkFlags( PipelineStageFlagBits::eFragmentShadingRateAttachmentKHR ) | - VkFlags( PipelineStageFlagBits::eCommandPreprocessNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags operator|( PipelineStageFlagBits bit0, - PipelineStageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineStageFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags operator&( PipelineStageFlagBits bit0, - PipelineStageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineStageFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags operator^( PipelineStageFlagBits bit0, - PipelineStageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineStageFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags operator~( PipelineStageFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( PipelineStageFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PipelineStageFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineStageFlagBits::eTopOfPipe ) - result += "TopOfPipe | "; - if ( value & PipelineStageFlagBits::eDrawIndirect ) - result += "DrawIndirect | "; - if ( value & PipelineStageFlagBits::eVertexInput ) - result += "VertexInput | "; - if ( value & PipelineStageFlagBits::eVertexShader ) - result += "VertexShader | "; - if ( value & PipelineStageFlagBits::eTessellationControlShader ) - result += "TessellationControlShader | "; - if ( value & PipelineStageFlagBits::eTessellationEvaluationShader ) - result += "TessellationEvaluationShader | "; - if ( value & PipelineStageFlagBits::eGeometryShader ) - result += "GeometryShader | "; - if ( value & PipelineStageFlagBits::eFragmentShader ) - result += "FragmentShader | "; - if ( value & PipelineStageFlagBits::eEarlyFragmentTests ) - result += "EarlyFragmentTests | "; - if ( value & PipelineStageFlagBits::eLateFragmentTests ) - result += "LateFragmentTests | "; - if ( value & PipelineStageFlagBits::eColorAttachmentOutput ) - result += "ColorAttachmentOutput | "; - if ( value & PipelineStageFlagBits::eComputeShader ) - result += "ComputeShader | "; - if ( value & PipelineStageFlagBits::eTransfer ) - result += "Transfer | "; - if ( value & PipelineStageFlagBits::eBottomOfPipe ) - result += "BottomOfPipe | "; - if ( value & PipelineStageFlagBits::eHost ) - result += "Host | "; - if ( value & PipelineStageFlagBits::eAllGraphics ) - result += "AllGraphics | "; - if ( value & PipelineStageFlagBits::eAllCommands ) - result += "AllCommands | "; - if ( value & PipelineStageFlagBits::eTransformFeedbackEXT ) - result += "TransformFeedbackEXT | "; - if ( value & PipelineStageFlagBits::eConditionalRenderingEXT ) - result += "ConditionalRenderingEXT | "; - if ( value & PipelineStageFlagBits::eAccelerationStructureBuildKHR ) - result += "AccelerationStructureBuildKHR | "; - if ( value & PipelineStageFlagBits::eRayTracingShaderKHR ) - result += "RayTracingShaderKHR | "; - if ( value & PipelineStageFlagBits::eTaskShaderNV ) - result += "TaskShaderNV | "; - if ( value & PipelineStageFlagBits::eMeshShaderNV ) - result += "MeshShaderNV | "; - if ( value & PipelineStageFlagBits::eFragmentDensityProcessEXT ) - result += "FragmentDensityProcessEXT | "; - if ( value & PipelineStageFlagBits::eFragmentShadingRateAttachmentKHR ) - result += "FragmentShadingRateAttachmentKHR | "; - if ( value & PipelineStageFlagBits::eCommandPreprocessNV ) - result += "CommandPreprocessNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using MemoryMapFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( MemoryMapFlags ) - { - return "{}"; - } - - using ImageAspectFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ImageAspectFlagBits::eColor ) | VkFlags( ImageAspectFlagBits::eDepth ) | - VkFlags( ImageAspectFlagBits::eStencil ) | VkFlags( ImageAspectFlagBits::eMetadata ) | - VkFlags( ImageAspectFlagBits::ePlane0 ) | VkFlags( ImageAspectFlagBits::ePlane1 ) | - VkFlags( ImageAspectFlagBits::ePlane2 ) | VkFlags( ImageAspectFlagBits::eMemoryPlane0EXT ) | - VkFlags( ImageAspectFlagBits::eMemoryPlane1EXT ) | VkFlags( ImageAspectFlagBits::eMemoryPlane2EXT ) | - VkFlags( ImageAspectFlagBits::eMemoryPlane3EXT ) | VkFlags( ImageAspectFlagBits::eNoneKHR ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageAspectFlags operator|( ImageAspectFlagBits bit0, - ImageAspectFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageAspectFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageAspectFlags operator&( ImageAspectFlagBits bit0, - ImageAspectFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageAspectFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageAspectFlags operator^( ImageAspectFlagBits bit0, - ImageAspectFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageAspectFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageAspectFlags operator~( ImageAspectFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ImageAspectFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ImageAspectFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ImageAspectFlagBits::eColor ) - result += "Color | "; - if ( value & ImageAspectFlagBits::eDepth ) - result += "Depth | "; - if ( value & ImageAspectFlagBits::eStencil ) - result += "Stencil | "; - if ( value & ImageAspectFlagBits::eMetadata ) - result += "Metadata | "; - if ( value & ImageAspectFlagBits::ePlane0 ) - result += "Plane0 | "; - if ( value & ImageAspectFlagBits::ePlane1 ) - result += "Plane1 | "; - if ( value & ImageAspectFlagBits::ePlane2 ) - result += "Plane2 | "; - if ( value & ImageAspectFlagBits::eMemoryPlane0EXT ) - result += "MemoryPlane0EXT | "; - if ( value & ImageAspectFlagBits::eMemoryPlane1EXT ) - result += "MemoryPlane1EXT | "; - if ( value & ImageAspectFlagBits::eMemoryPlane2EXT ) - result += "MemoryPlane2EXT | "; - if ( value & ImageAspectFlagBits::eMemoryPlane3EXT ) - result += "MemoryPlane3EXT | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SparseImageFormatFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SparseImageFormatFlagBits::eSingleMiptail ) | - VkFlags( SparseImageFormatFlagBits::eAlignedMipSize ) | - VkFlags( SparseImageFormatFlagBits::eNonstandardBlockSize ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseImageFormatFlags - operator|( SparseImageFormatFlagBits bit0, SparseImageFormatFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SparseImageFormatFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseImageFormatFlags - operator&( SparseImageFormatFlagBits bit0, SparseImageFormatFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SparseImageFormatFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseImageFormatFlags - operator^( SparseImageFormatFlagBits bit0, SparseImageFormatFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SparseImageFormatFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseImageFormatFlags operator~( SparseImageFormatFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SparseImageFormatFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SparseImageFormatFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SparseImageFormatFlagBits::eSingleMiptail ) - result += "SingleMiptail | "; - if ( value & SparseImageFormatFlagBits::eAlignedMipSize ) - result += "AlignedMipSize | "; - if ( value & SparseImageFormatFlagBits::eNonstandardBlockSize ) - result += "NonstandardBlockSize | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SparseMemoryBindFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SparseMemoryBindFlagBits::eMetadata ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseMemoryBindFlags - operator|( SparseMemoryBindFlagBits bit0, SparseMemoryBindFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SparseMemoryBindFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseMemoryBindFlags - operator&( SparseMemoryBindFlagBits bit0, SparseMemoryBindFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SparseMemoryBindFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseMemoryBindFlags - operator^( SparseMemoryBindFlagBits bit0, SparseMemoryBindFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SparseMemoryBindFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SparseMemoryBindFlags operator~( SparseMemoryBindFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SparseMemoryBindFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SparseMemoryBindFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SparseMemoryBindFlagBits::eMetadata ) - result += "Metadata | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using FenceCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( FenceCreateFlagBits::eSignaled ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceCreateFlags operator|( FenceCreateFlagBits bit0, - FenceCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FenceCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceCreateFlags operator&( FenceCreateFlagBits bit0, - FenceCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FenceCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceCreateFlags operator^( FenceCreateFlagBits bit0, - FenceCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FenceCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceCreateFlags operator~( FenceCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( FenceCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( FenceCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & FenceCreateFlagBits::eSignaled ) - result += "Signaled | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SemaphoreCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreCreateFlags ) - { - return "{}"; - } - - using EventCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( EventCreateFlagBits::eDeviceOnly ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR EventCreateFlags operator|( EventCreateFlagBits bit0, - EventCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return EventCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR EventCreateFlags operator&( EventCreateFlagBits bit0, - EventCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return EventCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR EventCreateFlags operator^( EventCreateFlagBits bit0, - EventCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return EventCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR EventCreateFlags operator~( EventCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( EventCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( EventCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & EventCreateFlagBits::eDeviceOnly ) - result += "DeviceOnly | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using QueryPipelineStatisticFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( QueryPipelineStatisticFlagBits::eInputAssemblyVertices ) | - VkFlags( QueryPipelineStatisticFlagBits::eInputAssemblyPrimitives ) | - VkFlags( QueryPipelineStatisticFlagBits::eVertexShaderInvocations ) | - VkFlags( QueryPipelineStatisticFlagBits::eGeometryShaderInvocations ) | - VkFlags( QueryPipelineStatisticFlagBits::eGeometryShaderPrimitives ) | - VkFlags( QueryPipelineStatisticFlagBits::eClippingInvocations ) | - VkFlags( QueryPipelineStatisticFlagBits::eClippingPrimitives ) | - VkFlags( QueryPipelineStatisticFlagBits::eFragmentShaderInvocations ) | - VkFlags( QueryPipelineStatisticFlagBits::eTessellationControlShaderPatches ) | - VkFlags( QueryPipelineStatisticFlagBits::eTessellationEvaluationShaderInvocations ) | - VkFlags( QueryPipelineStatisticFlagBits::eComputeShaderInvocations ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryPipelineStatisticFlags - operator|( QueryPipelineStatisticFlagBits bit0, QueryPipelineStatisticFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryPipelineStatisticFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryPipelineStatisticFlags - operator&( QueryPipelineStatisticFlagBits bit0, QueryPipelineStatisticFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryPipelineStatisticFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryPipelineStatisticFlags - operator^( QueryPipelineStatisticFlagBits bit0, QueryPipelineStatisticFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryPipelineStatisticFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryPipelineStatisticFlags operator~( QueryPipelineStatisticFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( QueryPipelineStatisticFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( QueryPipelineStatisticFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & QueryPipelineStatisticFlagBits::eInputAssemblyVertices ) - result += "InputAssemblyVertices | "; - if ( value & QueryPipelineStatisticFlagBits::eInputAssemblyPrimitives ) - result += "InputAssemblyPrimitives | "; - if ( value & QueryPipelineStatisticFlagBits::eVertexShaderInvocations ) - result += "VertexShaderInvocations | "; - if ( value & QueryPipelineStatisticFlagBits::eGeometryShaderInvocations ) - result += "GeometryShaderInvocations | "; - if ( value & QueryPipelineStatisticFlagBits::eGeometryShaderPrimitives ) - result += "GeometryShaderPrimitives | "; - if ( value & QueryPipelineStatisticFlagBits::eClippingInvocations ) - result += "ClippingInvocations | "; - if ( value & QueryPipelineStatisticFlagBits::eClippingPrimitives ) - result += "ClippingPrimitives | "; - if ( value & QueryPipelineStatisticFlagBits::eFragmentShaderInvocations ) - result += "FragmentShaderInvocations | "; - if ( value & QueryPipelineStatisticFlagBits::eTessellationControlShaderPatches ) - result += "TessellationControlShaderPatches | "; - if ( value & QueryPipelineStatisticFlagBits::eTessellationEvaluationShaderInvocations ) - result += "TessellationEvaluationShaderInvocations | "; - if ( value & QueryPipelineStatisticFlagBits::eComputeShaderInvocations ) - result += "ComputeShaderInvocations | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using QueryPoolCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( QueryPoolCreateFlags ) - { - return "{}"; - } - - using QueryResultFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( QueryResultFlagBits::e64 ) | VkFlags( QueryResultFlagBits::eWait ) | - VkFlags( QueryResultFlagBits::eWithAvailability ) | VkFlags( QueryResultFlagBits::ePartial ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( QueryResultFlagBits::eWithStatusKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryResultFlags operator|( QueryResultFlagBits bit0, - QueryResultFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryResultFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryResultFlags operator&( QueryResultFlagBits bit0, - QueryResultFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryResultFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryResultFlags operator^( QueryResultFlagBits bit0, - QueryResultFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryResultFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryResultFlags operator~( QueryResultFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( QueryResultFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( QueryResultFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & QueryResultFlagBits::e64 ) - result += "64 | "; - if ( value & QueryResultFlagBits::eWait ) - result += "Wait | "; - if ( value & QueryResultFlagBits::eWithAvailability ) - result += "WithAvailability | "; - if ( value & QueryResultFlagBits::ePartial ) - result += "Partial | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & QueryResultFlagBits::eWithStatusKHR ) - result += "WithStatusKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using BufferCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( BufferCreateFlagBits::eSparseBinding ) | VkFlags( BufferCreateFlagBits::eSparseResidency ) | - VkFlags( BufferCreateFlagBits::eSparseAliased ) | VkFlags( BufferCreateFlagBits::eProtected ) | - VkFlags( BufferCreateFlagBits::eDeviceAddressCaptureReplay ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferCreateFlags operator|( BufferCreateFlagBits bit0, - BufferCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return BufferCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferCreateFlags operator&( BufferCreateFlagBits bit0, - BufferCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return BufferCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferCreateFlags operator^( BufferCreateFlagBits bit0, - BufferCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return BufferCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferCreateFlags operator~( BufferCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( BufferCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( BufferCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & BufferCreateFlagBits::eSparseBinding ) - result += "SparseBinding | "; - if ( value & BufferCreateFlagBits::eSparseResidency ) - result += "SparseResidency | "; - if ( value & BufferCreateFlagBits::eSparseAliased ) - result += "SparseAliased | "; - if ( value & BufferCreateFlagBits::eProtected ) - result += "Protected | "; - if ( value & BufferCreateFlagBits::eDeviceAddressCaptureReplay ) - result += "DeviceAddressCaptureReplay | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using BufferUsageFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( BufferUsageFlagBits::eTransferSrc ) | VkFlags( BufferUsageFlagBits::eTransferDst ) | - VkFlags( BufferUsageFlagBits::eUniformTexelBuffer ) | VkFlags( BufferUsageFlagBits::eStorageTexelBuffer ) | - VkFlags( BufferUsageFlagBits::eUniformBuffer ) | VkFlags( BufferUsageFlagBits::eStorageBuffer ) | - VkFlags( BufferUsageFlagBits::eIndexBuffer ) | VkFlags( BufferUsageFlagBits::eVertexBuffer ) | - VkFlags( BufferUsageFlagBits::eIndirectBuffer ) | VkFlags( BufferUsageFlagBits::eShaderDeviceAddress ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( BufferUsageFlagBits::eVideoDecodeSrcKHR ) | VkFlags( BufferUsageFlagBits::eVideoDecodeDstKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags( BufferUsageFlagBits::eTransformFeedbackBufferEXT ) | - VkFlags( BufferUsageFlagBits::eTransformFeedbackCounterBufferEXT ) | - VkFlags( BufferUsageFlagBits::eConditionalRenderingEXT ) | - VkFlags( BufferUsageFlagBits::eAccelerationStructureBuildInputReadOnlyKHR ) | - VkFlags( BufferUsageFlagBits::eAccelerationStructureStorageKHR ) | - VkFlags( BufferUsageFlagBits::eShaderBindingTableKHR ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( BufferUsageFlagBits::eVideoEncodeDstKHR ) | VkFlags( BufferUsageFlagBits::eVideoEncodeSrcKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferUsageFlags operator|( BufferUsageFlagBits bit0, - BufferUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return BufferUsageFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferUsageFlags operator&( BufferUsageFlagBits bit0, - BufferUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return BufferUsageFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferUsageFlags operator^( BufferUsageFlagBits bit0, - BufferUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return BufferUsageFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BufferUsageFlags operator~( BufferUsageFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( BufferUsageFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( BufferUsageFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & BufferUsageFlagBits::eTransferSrc ) - result += "TransferSrc | "; - if ( value & BufferUsageFlagBits::eTransferDst ) - result += "TransferDst | "; - if ( value & BufferUsageFlagBits::eUniformTexelBuffer ) - result += "UniformTexelBuffer | "; - if ( value & BufferUsageFlagBits::eStorageTexelBuffer ) - result += "StorageTexelBuffer | "; - if ( value & BufferUsageFlagBits::eUniformBuffer ) - result += "UniformBuffer | "; - if ( value & BufferUsageFlagBits::eStorageBuffer ) - result += "StorageBuffer | "; - if ( value & BufferUsageFlagBits::eIndexBuffer ) - result += "IndexBuffer | "; - if ( value & BufferUsageFlagBits::eVertexBuffer ) - result += "VertexBuffer | "; - if ( value & BufferUsageFlagBits::eIndirectBuffer ) - result += "IndirectBuffer | "; - if ( value & BufferUsageFlagBits::eShaderDeviceAddress ) - result += "ShaderDeviceAddress | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & BufferUsageFlagBits::eVideoDecodeSrcKHR ) - result += "VideoDecodeSrcKHR | "; - if ( value & BufferUsageFlagBits::eVideoDecodeDstKHR ) - result += "VideoDecodeDstKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & BufferUsageFlagBits::eTransformFeedbackBufferEXT ) - result += "TransformFeedbackBufferEXT | "; - if ( value & BufferUsageFlagBits::eTransformFeedbackCounterBufferEXT ) - result += "TransformFeedbackCounterBufferEXT | "; - if ( value & BufferUsageFlagBits::eConditionalRenderingEXT ) - result += "ConditionalRenderingEXT | "; - if ( value & BufferUsageFlagBits::eAccelerationStructureBuildInputReadOnlyKHR ) - result += "AccelerationStructureBuildInputReadOnlyKHR | "; - if ( value & BufferUsageFlagBits::eAccelerationStructureStorageKHR ) - result += "AccelerationStructureStorageKHR | "; - if ( value & BufferUsageFlagBits::eShaderBindingTableKHR ) - result += "ShaderBindingTableKHR | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & BufferUsageFlagBits::eVideoEncodeDstKHR ) - result += "VideoEncodeDstKHR | "; - if ( value & BufferUsageFlagBits::eVideoEncodeSrcKHR ) - result += "VideoEncodeSrcKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using BufferViewCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( BufferViewCreateFlags ) - { - return "{}"; - } - - using ImageViewCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ImageViewCreateFlagBits::eFragmentDensityMapDynamicEXT ) | - VkFlags( ImageViewCreateFlagBits::eFragmentDensityMapDeferredEXT ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageViewCreateFlags - operator|( ImageViewCreateFlagBits bit0, ImageViewCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageViewCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageViewCreateFlags - operator&( ImageViewCreateFlagBits bit0, ImageViewCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageViewCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageViewCreateFlags - operator^( ImageViewCreateFlagBits bit0, ImageViewCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageViewCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageViewCreateFlags operator~( ImageViewCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ImageViewCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ImageViewCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ImageViewCreateFlagBits::eFragmentDensityMapDynamicEXT ) - result += "FragmentDensityMapDynamicEXT | "; - if ( value & ImageViewCreateFlagBits::eFragmentDensityMapDeferredEXT ) - result += "FragmentDensityMapDeferredEXT | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ShaderModuleCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( ShaderModuleCreateFlags ) - { - return "{}"; - } - - using PipelineCacheCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PipelineCacheCreateFlagBits::eExternallySynchronized ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCacheCreateFlags - operator|( PipelineCacheCreateFlagBits bit0, PipelineCacheCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCacheCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCacheCreateFlags - operator&( PipelineCacheCreateFlagBits bit0, PipelineCacheCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCacheCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCacheCreateFlags - operator^( PipelineCacheCreateFlagBits bit0, PipelineCacheCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCacheCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCacheCreateFlags operator~( PipelineCacheCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( PipelineCacheCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PipelineCacheCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineCacheCreateFlagBits::eExternallySynchronized ) - result += "ExternallySynchronized | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ColorComponentFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ColorComponentFlagBits::eR ) | VkFlags( ColorComponentFlagBits::eG ) | - VkFlags( ColorComponentFlagBits::eB ) | VkFlags( ColorComponentFlagBits::eA ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ColorComponentFlags - operator|( ColorComponentFlagBits bit0, ColorComponentFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ColorComponentFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ColorComponentFlags - operator&( ColorComponentFlagBits bit0, ColorComponentFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ColorComponentFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ColorComponentFlags - operator^( ColorComponentFlagBits bit0, ColorComponentFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ColorComponentFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ColorComponentFlags operator~( ColorComponentFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ColorComponentFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ColorComponentFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ColorComponentFlagBits::eR ) - result += "R | "; - if ( value & ColorComponentFlagBits::eG ) - result += "G | "; - if ( value & ColorComponentFlagBits::eB ) - result += "B | "; - if ( value & ColorComponentFlagBits::eA ) - result += "A | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using CullModeFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( CullModeFlagBits::eNone ) | VkFlags( CullModeFlagBits::eFront ) | - VkFlags( CullModeFlagBits::eBack ) | VkFlags( CullModeFlagBits::eFrontAndBack ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CullModeFlags operator|( CullModeFlagBits bit0, - CullModeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CullModeFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CullModeFlags operator&( CullModeFlagBits bit0, - CullModeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CullModeFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CullModeFlags operator^( CullModeFlagBits bit0, - CullModeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CullModeFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CullModeFlags operator~( CullModeFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( CullModeFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( CullModeFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & CullModeFlagBits::eFront ) - result += "Front | "; - if ( value & CullModeFlagBits::eBack ) - result += "Back | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PipelineColorBlendStateCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PipelineColorBlendStateCreateFlagBits::eRasterizationOrderAttachmentAccessARM ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineColorBlendStateCreateFlags operator|( - PipelineColorBlendStateCreateFlagBits bit0, PipelineColorBlendStateCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineColorBlendStateCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineColorBlendStateCreateFlags operator&( - PipelineColorBlendStateCreateFlagBits bit0, PipelineColorBlendStateCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineColorBlendStateCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineColorBlendStateCreateFlags operator^( - PipelineColorBlendStateCreateFlagBits bit0, PipelineColorBlendStateCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineColorBlendStateCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineColorBlendStateCreateFlags - operator~( PipelineColorBlendStateCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( PipelineColorBlendStateCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PipelineColorBlendStateCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineColorBlendStateCreateFlagBits::eRasterizationOrderAttachmentAccessARM ) - result += "RasterizationOrderAttachmentAccessARM | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PipelineCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( PipelineCreateFlagBits::eDisableOptimization ) | VkFlags( PipelineCreateFlagBits::eAllowDerivatives ) | - VkFlags( PipelineCreateFlagBits::eDerivative ) | VkFlags( PipelineCreateFlagBits::eViewIndexFromDeviceIndex ) | - VkFlags( PipelineCreateFlagBits::eDispatchBase ) | - VkFlags( PipelineCreateFlagBits::eFailOnPipelineCompileRequired ) | - VkFlags( PipelineCreateFlagBits::eEarlyReturnOnFailure ) | - VkFlags( PipelineCreateFlagBits::eRenderingFragmentShadingRateAttachmentKHR ) | - VkFlags( PipelineCreateFlagBits::eRenderingFragmentDensityMapAttachmentEXT ) | - VkFlags( PipelineCreateFlagBits::eRayTracingNoNullAnyHitShadersKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingNoNullClosestHitShadersKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingNoNullMissShadersKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingNoNullIntersectionShadersKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingSkipTrianglesKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingSkipAabbsKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingShaderGroupHandleCaptureReplayKHR ) | - VkFlags( PipelineCreateFlagBits::eDeferCompileNV ) | VkFlags( PipelineCreateFlagBits::eCaptureStatisticsKHR ) | - VkFlags( PipelineCreateFlagBits::eCaptureInternalRepresentationsKHR ) | - VkFlags( PipelineCreateFlagBits::eIndirectBindableNV ) | VkFlags( PipelineCreateFlagBits::eLibraryKHR ) | - VkFlags( PipelineCreateFlagBits::eRayTracingAllowMotionNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreateFlags - operator|( PipelineCreateFlagBits bit0, PipelineCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreateFlags - operator&( PipelineCreateFlagBits bit0, PipelineCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreateFlags - operator^( PipelineCreateFlagBits bit0, PipelineCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreateFlags operator~( PipelineCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( PipelineCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PipelineCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineCreateFlagBits::eDisableOptimization ) - result += "DisableOptimization | "; - if ( value & PipelineCreateFlagBits::eAllowDerivatives ) - result += "AllowDerivatives | "; - if ( value & PipelineCreateFlagBits::eDerivative ) - result += "Derivative | "; - if ( value & PipelineCreateFlagBits::eViewIndexFromDeviceIndex ) - result += "ViewIndexFromDeviceIndex | "; - if ( value & PipelineCreateFlagBits::eDispatchBase ) - result += "DispatchBase | "; - if ( value & PipelineCreateFlagBits::eFailOnPipelineCompileRequired ) - result += "FailOnPipelineCompileRequired | "; - if ( value & PipelineCreateFlagBits::eEarlyReturnOnFailure ) - result += "EarlyReturnOnFailure | "; - if ( value & PipelineCreateFlagBits::eRenderingFragmentShadingRateAttachmentKHR ) - result += "RenderingFragmentShadingRateAttachmentKHR | "; - if ( value & PipelineCreateFlagBits::eRenderingFragmentDensityMapAttachmentEXT ) - result += "RenderingFragmentDensityMapAttachmentEXT | "; - if ( value & PipelineCreateFlagBits::eRayTracingNoNullAnyHitShadersKHR ) - result += "RayTracingNoNullAnyHitShadersKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingNoNullClosestHitShadersKHR ) - result += "RayTracingNoNullClosestHitShadersKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingNoNullMissShadersKHR ) - result += "RayTracingNoNullMissShadersKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingNoNullIntersectionShadersKHR ) - result += "RayTracingNoNullIntersectionShadersKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingSkipTrianglesKHR ) - result += "RayTracingSkipTrianglesKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingSkipAabbsKHR ) - result += "RayTracingSkipAabbsKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingShaderGroupHandleCaptureReplayKHR ) - result += "RayTracingShaderGroupHandleCaptureReplayKHR | "; - if ( value & PipelineCreateFlagBits::eDeferCompileNV ) - result += "DeferCompileNV | "; - if ( value & PipelineCreateFlagBits::eCaptureStatisticsKHR ) - result += "CaptureStatisticsKHR | "; - if ( value & PipelineCreateFlagBits::eCaptureInternalRepresentationsKHR ) - result += "CaptureInternalRepresentationsKHR | "; - if ( value & PipelineCreateFlagBits::eIndirectBindableNV ) - result += "IndirectBindableNV | "; - if ( value & PipelineCreateFlagBits::eLibraryKHR ) - result += "LibraryKHR | "; - if ( value & PipelineCreateFlagBits::eRayTracingAllowMotionNV ) - result += "RayTracingAllowMotionNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PipelineDepthStencilStateCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PipelineDepthStencilStateCreateFlagBits::eRasterizationOrderAttachmentDepthAccessARM ) | - VkFlags( PipelineDepthStencilStateCreateFlagBits::eRasterizationOrderAttachmentStencilAccessARM ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineDepthStencilStateCreateFlags operator|( - PipelineDepthStencilStateCreateFlagBits bit0, PipelineDepthStencilStateCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineDepthStencilStateCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineDepthStencilStateCreateFlags operator&( - PipelineDepthStencilStateCreateFlagBits bit0, PipelineDepthStencilStateCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineDepthStencilStateCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineDepthStencilStateCreateFlags operator^( - PipelineDepthStencilStateCreateFlagBits bit0, PipelineDepthStencilStateCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineDepthStencilStateCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineDepthStencilStateCreateFlags - operator~( PipelineDepthStencilStateCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( PipelineDepthStencilStateCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PipelineDepthStencilStateCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineDepthStencilStateCreateFlagBits::eRasterizationOrderAttachmentDepthAccessARM ) - result += "RasterizationOrderAttachmentDepthAccessARM | "; - if ( value & PipelineDepthStencilStateCreateFlagBits::eRasterizationOrderAttachmentStencilAccessARM ) - result += "RasterizationOrderAttachmentStencilAccessARM | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PipelineDynamicStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineDynamicStateCreateFlags ) - { - return "{}"; - } - - using PipelineInputAssemblyStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineInputAssemblyStateCreateFlags ) - { - return "{}"; - } - - using PipelineLayoutCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineLayoutCreateFlags ) - { - return "{}"; - } - - using PipelineMultisampleStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineMultisampleStateCreateFlags ) - { - return "{}"; - } - - using PipelineRasterizationStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationStateCreateFlags ) - { - return "{}"; - } - - using PipelineShaderStageCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PipelineShaderStageCreateFlagBits::eAllowVaryingSubgroupSize ) | - VkFlags( PipelineShaderStageCreateFlagBits::eRequireFullSubgroups ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateFlags - operator|( PipelineShaderStageCreateFlagBits bit0, PipelineShaderStageCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineShaderStageCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateFlags - operator&( PipelineShaderStageCreateFlagBits bit0, PipelineShaderStageCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineShaderStageCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateFlags - operator^( PipelineShaderStageCreateFlagBits bit0, PipelineShaderStageCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineShaderStageCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateFlags - operator~( PipelineShaderStageCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( PipelineShaderStageCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PipelineShaderStageCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineShaderStageCreateFlagBits::eAllowVaryingSubgroupSize ) - result += "AllowVaryingSubgroupSize | "; - if ( value & PipelineShaderStageCreateFlagBits::eRequireFullSubgroups ) - result += "RequireFullSubgroups | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PipelineTessellationStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineTessellationStateCreateFlags ) - { - return "{}"; - } - - using PipelineVertexInputStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineVertexInputStateCreateFlags ) - { - return "{}"; - } - - using PipelineViewportStateCreateFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineViewportStateCreateFlags ) - { - return "{}"; - } - - using ShaderStageFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ShaderStageFlagBits::eVertex ) | VkFlags( ShaderStageFlagBits::eTessellationControl ) | - VkFlags( ShaderStageFlagBits::eTessellationEvaluation ) | VkFlags( ShaderStageFlagBits::eGeometry ) | - VkFlags( ShaderStageFlagBits::eFragment ) | VkFlags( ShaderStageFlagBits::eCompute ) | - VkFlags( ShaderStageFlagBits::eAllGraphics ) | VkFlags( ShaderStageFlagBits::eAll ) | - VkFlags( ShaderStageFlagBits::eRaygenKHR ) | VkFlags( ShaderStageFlagBits::eAnyHitKHR ) | - VkFlags( ShaderStageFlagBits::eClosestHitKHR ) | VkFlags( ShaderStageFlagBits::eMissKHR ) | - VkFlags( ShaderStageFlagBits::eIntersectionKHR ) | VkFlags( ShaderStageFlagBits::eCallableKHR ) | - VkFlags( ShaderStageFlagBits::eTaskNV ) | VkFlags( ShaderStageFlagBits::eMeshNV ) | - VkFlags( ShaderStageFlagBits::eSubpassShadingHUAWEI ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ShaderStageFlags operator|( ShaderStageFlagBits bit0, - ShaderStageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ShaderStageFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ShaderStageFlags operator&( ShaderStageFlagBits bit0, - ShaderStageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ShaderStageFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ShaderStageFlags operator^( ShaderStageFlagBits bit0, - ShaderStageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ShaderStageFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ShaderStageFlags operator~( ShaderStageFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ShaderStageFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ShaderStageFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ShaderStageFlagBits::eVertex ) - result += "Vertex | "; - if ( value & ShaderStageFlagBits::eTessellationControl ) - result += "TessellationControl | "; - if ( value & ShaderStageFlagBits::eTessellationEvaluation ) - result += "TessellationEvaluation | "; - if ( value & ShaderStageFlagBits::eGeometry ) - result += "Geometry | "; - if ( value & ShaderStageFlagBits::eFragment ) - result += "Fragment | "; - if ( value & ShaderStageFlagBits::eCompute ) - result += "Compute | "; - if ( value & ShaderStageFlagBits::eRaygenKHR ) - result += "RaygenKHR | "; - if ( value & ShaderStageFlagBits::eAnyHitKHR ) - result += "AnyHitKHR | "; - if ( value & ShaderStageFlagBits::eClosestHitKHR ) - result += "ClosestHitKHR | "; - if ( value & ShaderStageFlagBits::eMissKHR ) - result += "MissKHR | "; - if ( value & ShaderStageFlagBits::eIntersectionKHR ) - result += "IntersectionKHR | "; - if ( value & ShaderStageFlagBits::eCallableKHR ) - result += "CallableKHR | "; - if ( value & ShaderStageFlagBits::eTaskNV ) - result += "TaskNV | "; - if ( value & ShaderStageFlagBits::eMeshNV ) - result += "MeshNV | "; - if ( value & ShaderStageFlagBits::eSubpassShadingHUAWEI ) - result += "SubpassShadingHUAWEI | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SamplerCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SamplerCreateFlagBits::eSubsampledEXT ) | - VkFlags( SamplerCreateFlagBits::eSubsampledCoarseReconstructionEXT ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SamplerCreateFlags operator|( SamplerCreateFlagBits bit0, - SamplerCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SamplerCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SamplerCreateFlags operator&( SamplerCreateFlagBits bit0, - SamplerCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SamplerCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SamplerCreateFlags operator^( SamplerCreateFlagBits bit0, - SamplerCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SamplerCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SamplerCreateFlags operator~( SamplerCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( SamplerCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SamplerCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SamplerCreateFlagBits::eSubsampledEXT ) - result += "SubsampledEXT | "; - if ( value & SamplerCreateFlagBits::eSubsampledCoarseReconstructionEXT ) - result += "SubsampledCoarseReconstructionEXT | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DescriptorPoolCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DescriptorPoolCreateFlagBits::eFreeDescriptorSet ) | - VkFlags( DescriptorPoolCreateFlagBits::eUpdateAfterBind ) | - VkFlags( DescriptorPoolCreateFlagBits::eHostOnlyVALVE ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorPoolCreateFlags - operator|( DescriptorPoolCreateFlagBits bit0, DescriptorPoolCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorPoolCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorPoolCreateFlags - operator&( DescriptorPoolCreateFlagBits bit0, DescriptorPoolCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorPoolCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorPoolCreateFlags - operator^( DescriptorPoolCreateFlagBits bit0, DescriptorPoolCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorPoolCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorPoolCreateFlags operator~( DescriptorPoolCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( DescriptorPoolCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DescriptorPoolCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DescriptorPoolCreateFlagBits::eFreeDescriptorSet ) - result += "FreeDescriptorSet | "; - if ( value & DescriptorPoolCreateFlagBits::eUpdateAfterBind ) - result += "UpdateAfterBind | "; - if ( value & DescriptorPoolCreateFlagBits::eHostOnlyVALVE ) - result += "HostOnlyVALVE | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DescriptorPoolResetFlags = Flags; - - VULKAN_HPP_INLINE std::string to_string( DescriptorPoolResetFlags ) - { - return "{}"; - } - - using DescriptorSetLayoutCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DescriptorSetLayoutCreateFlagBits::eUpdateAfterBindPool ) | - VkFlags( DescriptorSetLayoutCreateFlagBits::ePushDescriptorKHR ) | - VkFlags( DescriptorSetLayoutCreateFlagBits::eHostOnlyPoolVALVE ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorSetLayoutCreateFlags - operator|( DescriptorSetLayoutCreateFlagBits bit0, DescriptorSetLayoutCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorSetLayoutCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorSetLayoutCreateFlags - operator&( DescriptorSetLayoutCreateFlagBits bit0, DescriptorSetLayoutCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorSetLayoutCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorSetLayoutCreateFlags - operator^( DescriptorSetLayoutCreateFlagBits bit0, DescriptorSetLayoutCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorSetLayoutCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorSetLayoutCreateFlags - operator~( DescriptorSetLayoutCreateFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( DescriptorSetLayoutCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DescriptorSetLayoutCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DescriptorSetLayoutCreateFlagBits::eUpdateAfterBindPool ) - result += "UpdateAfterBindPool | "; - if ( value & DescriptorSetLayoutCreateFlagBits::ePushDescriptorKHR ) - result += "PushDescriptorKHR | "; - if ( value & DescriptorSetLayoutCreateFlagBits::eHostOnlyPoolVALVE ) - result += "HostOnlyPoolVALVE | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using AccessFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( AccessFlagBits::eIndirectCommandRead ) | VkFlags( AccessFlagBits::eIndexRead ) | - VkFlags( AccessFlagBits::eVertexAttributeRead ) | VkFlags( AccessFlagBits::eUniformRead ) | - VkFlags( AccessFlagBits::eInputAttachmentRead ) | VkFlags( AccessFlagBits::eShaderRead ) | - VkFlags( AccessFlagBits::eShaderWrite ) | VkFlags( AccessFlagBits::eColorAttachmentRead ) | - VkFlags( AccessFlagBits::eColorAttachmentWrite ) | VkFlags( AccessFlagBits::eDepthStencilAttachmentRead ) | - VkFlags( AccessFlagBits::eDepthStencilAttachmentWrite ) | VkFlags( AccessFlagBits::eTransferRead ) | - VkFlags( AccessFlagBits::eTransferWrite ) | VkFlags( AccessFlagBits::eHostRead ) | - VkFlags( AccessFlagBits::eHostWrite ) | VkFlags( AccessFlagBits::eMemoryRead ) | - VkFlags( AccessFlagBits::eMemoryWrite ) | VkFlags( AccessFlagBits::eNone ) | - VkFlags( AccessFlagBits::eTransformFeedbackWriteEXT ) | - VkFlags( AccessFlagBits::eTransformFeedbackCounterReadEXT ) | - VkFlags( AccessFlagBits::eTransformFeedbackCounterWriteEXT ) | - VkFlags( AccessFlagBits::eConditionalRenderingReadEXT ) | - VkFlags( AccessFlagBits::eColorAttachmentReadNoncoherentEXT ) | - VkFlags( AccessFlagBits::eAccelerationStructureReadKHR ) | - VkFlags( AccessFlagBits::eAccelerationStructureWriteKHR ) | - VkFlags( AccessFlagBits::eFragmentDensityMapReadEXT ) | - VkFlags( AccessFlagBits::eFragmentShadingRateAttachmentReadKHR ) | - VkFlags( AccessFlagBits::eCommandPreprocessReadNV ) | VkFlags( AccessFlagBits::eCommandPreprocessWriteNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags operator|( AccessFlagBits bit0, - AccessFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccessFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags operator&( AccessFlagBits bit0, - AccessFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccessFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags operator^( AccessFlagBits bit0, - AccessFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccessFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags operator~( AccessFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( AccessFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( AccessFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & AccessFlagBits::eIndirectCommandRead ) - result += "IndirectCommandRead | "; - if ( value & AccessFlagBits::eIndexRead ) - result += "IndexRead | "; - if ( value & AccessFlagBits::eVertexAttributeRead ) - result += "VertexAttributeRead | "; - if ( value & AccessFlagBits::eUniformRead ) - result += "UniformRead | "; - if ( value & AccessFlagBits::eInputAttachmentRead ) - result += "InputAttachmentRead | "; - if ( value & AccessFlagBits::eShaderRead ) - result += "ShaderRead | "; - if ( value & AccessFlagBits::eShaderWrite ) - result += "ShaderWrite | "; - if ( value & AccessFlagBits::eColorAttachmentRead ) - result += "ColorAttachmentRead | "; - if ( value & AccessFlagBits::eColorAttachmentWrite ) - result += "ColorAttachmentWrite | "; - if ( value & AccessFlagBits::eDepthStencilAttachmentRead ) - result += "DepthStencilAttachmentRead | "; - if ( value & AccessFlagBits::eDepthStencilAttachmentWrite ) - result += "DepthStencilAttachmentWrite | "; - if ( value & AccessFlagBits::eTransferRead ) - result += "TransferRead | "; - if ( value & AccessFlagBits::eTransferWrite ) - result += "TransferWrite | "; - if ( value & AccessFlagBits::eHostRead ) - result += "HostRead | "; - if ( value & AccessFlagBits::eHostWrite ) - result += "HostWrite | "; - if ( value & AccessFlagBits::eMemoryRead ) - result += "MemoryRead | "; - if ( value & AccessFlagBits::eMemoryWrite ) - result += "MemoryWrite | "; - if ( value & AccessFlagBits::eTransformFeedbackWriteEXT ) - result += "TransformFeedbackWriteEXT | "; - if ( value & AccessFlagBits::eTransformFeedbackCounterReadEXT ) - result += "TransformFeedbackCounterReadEXT | "; - if ( value & AccessFlagBits::eTransformFeedbackCounterWriteEXT ) - result += "TransformFeedbackCounterWriteEXT | "; - if ( value & AccessFlagBits::eConditionalRenderingReadEXT ) - result += "ConditionalRenderingReadEXT | "; - if ( value & AccessFlagBits::eColorAttachmentReadNoncoherentEXT ) - result += "ColorAttachmentReadNoncoherentEXT | "; - if ( value & AccessFlagBits::eAccelerationStructureReadKHR ) - result += "AccelerationStructureReadKHR | "; - if ( value & AccessFlagBits::eAccelerationStructureWriteKHR ) - result += "AccelerationStructureWriteKHR | "; - if ( value & AccessFlagBits::eFragmentDensityMapReadEXT ) - result += "FragmentDensityMapReadEXT | "; - if ( value & AccessFlagBits::eFragmentShadingRateAttachmentReadKHR ) - result += "FragmentShadingRateAttachmentReadKHR | "; - if ( value & AccessFlagBits::eCommandPreprocessReadNV ) - result += "CommandPreprocessReadNV | "; - if ( value & AccessFlagBits::eCommandPreprocessWriteNV ) - result += "CommandPreprocessWriteNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using AttachmentDescriptionFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( AttachmentDescriptionFlagBits::eMayAlias ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AttachmentDescriptionFlags - operator|( AttachmentDescriptionFlagBits bit0, AttachmentDescriptionFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return AttachmentDescriptionFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AttachmentDescriptionFlags - operator&( AttachmentDescriptionFlagBits bit0, AttachmentDescriptionFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return AttachmentDescriptionFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AttachmentDescriptionFlags - operator^( AttachmentDescriptionFlagBits bit0, AttachmentDescriptionFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return AttachmentDescriptionFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AttachmentDescriptionFlags operator~( AttachmentDescriptionFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( AttachmentDescriptionFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( AttachmentDescriptionFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & AttachmentDescriptionFlagBits::eMayAlias ) - result += "MayAlias | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DependencyFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DependencyFlagBits::eByRegion ) | VkFlags( DependencyFlagBits::eDeviceGroup ) | - VkFlags( DependencyFlagBits::eViewLocal ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DependencyFlags operator|( DependencyFlagBits bit0, - DependencyFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DependencyFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DependencyFlags operator&( DependencyFlagBits bit0, - DependencyFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DependencyFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DependencyFlags operator^( DependencyFlagBits bit0, - DependencyFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DependencyFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DependencyFlags operator~( DependencyFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( DependencyFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DependencyFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DependencyFlagBits::eByRegion ) - result += "ByRegion | "; - if ( value & DependencyFlagBits::eDeviceGroup ) - result += "DeviceGroup | "; - if ( value & DependencyFlagBits::eViewLocal ) - result += "ViewLocal | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using FramebufferCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( FramebufferCreateFlagBits::eImageless ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FramebufferCreateFlags - operator|( FramebufferCreateFlagBits bit0, FramebufferCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FramebufferCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FramebufferCreateFlags - operator&( FramebufferCreateFlagBits bit0, FramebufferCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FramebufferCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FramebufferCreateFlags - operator^( FramebufferCreateFlagBits bit0, FramebufferCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FramebufferCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FramebufferCreateFlags operator~( FramebufferCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( FramebufferCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( FramebufferCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & FramebufferCreateFlagBits::eImageless ) - result += "Imageless | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using RenderPassCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( RenderPassCreateFlagBits::eTransformQCOM ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderPassCreateFlags - operator|( RenderPassCreateFlagBits bit0, RenderPassCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return RenderPassCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderPassCreateFlags - operator&( RenderPassCreateFlagBits bit0, RenderPassCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return RenderPassCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderPassCreateFlags - operator^( RenderPassCreateFlagBits bit0, RenderPassCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return RenderPassCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderPassCreateFlags operator~( RenderPassCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( RenderPassCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( RenderPassCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & RenderPassCreateFlagBits::eTransformQCOM ) - result += "TransformQCOM | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SubpassDescriptionFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SubpassDescriptionFlagBits::ePerViewAttributesNVX ) | - VkFlags( SubpassDescriptionFlagBits::ePerViewPositionXOnlyNVX ) | - VkFlags( SubpassDescriptionFlagBits::eFragmentRegionQCOM ) | - VkFlags( SubpassDescriptionFlagBits::eShaderResolveQCOM ) | - VkFlags( SubpassDescriptionFlagBits::eRasterizationOrderAttachmentColorAccessARM ) | - VkFlags( SubpassDescriptionFlagBits::eRasterizationOrderAttachmentDepthAccessARM ) | - VkFlags( SubpassDescriptionFlagBits::eRasterizationOrderAttachmentStencilAccessARM ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubpassDescriptionFlags - operator|( SubpassDescriptionFlagBits bit0, SubpassDescriptionFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubpassDescriptionFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubpassDescriptionFlags - operator&( SubpassDescriptionFlagBits bit0, SubpassDescriptionFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubpassDescriptionFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubpassDescriptionFlags - operator^( SubpassDescriptionFlagBits bit0, SubpassDescriptionFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubpassDescriptionFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubpassDescriptionFlags operator~( SubpassDescriptionFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SubpassDescriptionFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SubpassDescriptionFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SubpassDescriptionFlagBits::ePerViewAttributesNVX ) - result += "PerViewAttributesNVX | "; - if ( value & SubpassDescriptionFlagBits::ePerViewPositionXOnlyNVX ) - result += "PerViewPositionXOnlyNVX | "; - if ( value & SubpassDescriptionFlagBits::eFragmentRegionQCOM ) - result += "FragmentRegionQCOM | "; - if ( value & SubpassDescriptionFlagBits::eShaderResolveQCOM ) - result += "ShaderResolveQCOM | "; - if ( value & SubpassDescriptionFlagBits::eRasterizationOrderAttachmentColorAccessARM ) - result += "RasterizationOrderAttachmentColorAccessARM | "; - if ( value & SubpassDescriptionFlagBits::eRasterizationOrderAttachmentDepthAccessARM ) - result += "RasterizationOrderAttachmentDepthAccessARM | "; - if ( value & SubpassDescriptionFlagBits::eRasterizationOrderAttachmentStencilAccessARM ) - result += "RasterizationOrderAttachmentStencilAccessARM | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using CommandPoolCreateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( CommandPoolCreateFlagBits::eTransient ) | - VkFlags( CommandPoolCreateFlagBits::eResetCommandBuffer ) | - VkFlags( CommandPoolCreateFlagBits::eProtected ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolCreateFlags - operator|( CommandPoolCreateFlagBits bit0, CommandPoolCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandPoolCreateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolCreateFlags - operator&( CommandPoolCreateFlagBits bit0, CommandPoolCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandPoolCreateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolCreateFlags - operator^( CommandPoolCreateFlagBits bit0, CommandPoolCreateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandPoolCreateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolCreateFlags operator~( CommandPoolCreateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( CommandPoolCreateFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( CommandPoolCreateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & CommandPoolCreateFlagBits::eTransient ) - result += "Transient | "; - if ( value & CommandPoolCreateFlagBits::eResetCommandBuffer ) - result += "ResetCommandBuffer | "; - if ( value & CommandPoolCreateFlagBits::eProtected ) - result += "Protected | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using CommandPoolResetFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( CommandPoolResetFlagBits::eReleaseResources ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolResetFlags - operator|( CommandPoolResetFlagBits bit0, CommandPoolResetFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandPoolResetFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolResetFlags - operator&( CommandPoolResetFlagBits bit0, CommandPoolResetFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandPoolResetFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolResetFlags - operator^( CommandPoolResetFlagBits bit0, CommandPoolResetFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandPoolResetFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandPoolResetFlags operator~( CommandPoolResetFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( CommandPoolResetFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( CommandPoolResetFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & CommandPoolResetFlagBits::eReleaseResources ) - result += "ReleaseResources | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using CommandBufferResetFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( CommandBufferResetFlagBits::eReleaseResources ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferResetFlags - operator|( CommandBufferResetFlagBits bit0, CommandBufferResetFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandBufferResetFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferResetFlags - operator&( CommandBufferResetFlagBits bit0, CommandBufferResetFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandBufferResetFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferResetFlags - operator^( CommandBufferResetFlagBits bit0, CommandBufferResetFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandBufferResetFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferResetFlags operator~( CommandBufferResetFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( CommandBufferResetFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( CommandBufferResetFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & CommandBufferResetFlagBits::eReleaseResources ) - result += "ReleaseResources | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using CommandBufferUsageFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( CommandBufferUsageFlagBits::eOneTimeSubmit ) | - VkFlags( CommandBufferUsageFlagBits::eRenderPassContinue ) | - VkFlags( CommandBufferUsageFlagBits::eSimultaneousUse ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferUsageFlags - operator|( CommandBufferUsageFlagBits bit0, CommandBufferUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandBufferUsageFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferUsageFlags - operator&( CommandBufferUsageFlagBits bit0, CommandBufferUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandBufferUsageFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferUsageFlags - operator^( CommandBufferUsageFlagBits bit0, CommandBufferUsageFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return CommandBufferUsageFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CommandBufferUsageFlags operator~( CommandBufferUsageFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( CommandBufferUsageFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( CommandBufferUsageFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & CommandBufferUsageFlagBits::eOneTimeSubmit ) - result += "OneTimeSubmit | "; - if ( value & CommandBufferUsageFlagBits::eRenderPassContinue ) - result += "RenderPassContinue | "; - if ( value & CommandBufferUsageFlagBits::eSimultaneousUse ) - result += "SimultaneousUse | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using QueryControlFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( QueryControlFlagBits::ePrecise ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryControlFlags operator|( QueryControlFlagBits bit0, - QueryControlFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryControlFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryControlFlags operator&( QueryControlFlagBits bit0, - QueryControlFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryControlFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryControlFlags operator^( QueryControlFlagBits bit0, - QueryControlFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return QueryControlFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR QueryControlFlags operator~( QueryControlFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( QueryControlFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( QueryControlFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & QueryControlFlagBits::ePrecise ) - result += "Precise | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using StencilFaceFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( StencilFaceFlagBits::eFront ) | VkFlags( StencilFaceFlagBits::eBack ) | - VkFlags( StencilFaceFlagBits::eFrontAndBack ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR StencilFaceFlags operator|( StencilFaceFlagBits bit0, - StencilFaceFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return StencilFaceFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR StencilFaceFlags operator&( StencilFaceFlagBits bit0, - StencilFaceFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return StencilFaceFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR StencilFaceFlags operator^( StencilFaceFlagBits bit0, - StencilFaceFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return StencilFaceFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR StencilFaceFlags operator~( StencilFaceFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( StencilFaceFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( StencilFaceFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & StencilFaceFlagBits::eFront ) - result += "Front | "; - if ( value & StencilFaceFlagBits::eBack ) - result += "Back | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_VERSION_1_1 === - - using SubgroupFeatureFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SubgroupFeatureFlagBits::eBasic ) | VkFlags( SubgroupFeatureFlagBits::eVote ) | - VkFlags( SubgroupFeatureFlagBits::eArithmetic ) | VkFlags( SubgroupFeatureFlagBits::eBallot ) | - VkFlags( SubgroupFeatureFlagBits::eShuffle ) | VkFlags( SubgroupFeatureFlagBits::eShuffleRelative ) | - VkFlags( SubgroupFeatureFlagBits::eClustered ) | VkFlags( SubgroupFeatureFlagBits::eQuad ) | - VkFlags( SubgroupFeatureFlagBits::ePartitionedNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubgroupFeatureFlags - operator|( SubgroupFeatureFlagBits bit0, SubgroupFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubgroupFeatureFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubgroupFeatureFlags - operator&( SubgroupFeatureFlagBits bit0, SubgroupFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubgroupFeatureFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubgroupFeatureFlags - operator^( SubgroupFeatureFlagBits bit0, SubgroupFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubgroupFeatureFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubgroupFeatureFlags operator~( SubgroupFeatureFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SubgroupFeatureFlags( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SubgroupFeatureFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SubgroupFeatureFlagBits::eBasic ) - result += "Basic | "; - if ( value & SubgroupFeatureFlagBits::eVote ) - result += "Vote | "; - if ( value & SubgroupFeatureFlagBits::eArithmetic ) - result += "Arithmetic | "; - if ( value & SubgroupFeatureFlagBits::eBallot ) - result += "Ballot | "; - if ( value & SubgroupFeatureFlagBits::eShuffle ) - result += "Shuffle | "; - if ( value & SubgroupFeatureFlagBits::eShuffleRelative ) - result += "ShuffleRelative | "; - if ( value & SubgroupFeatureFlagBits::eClustered ) - result += "Clustered | "; - if ( value & SubgroupFeatureFlagBits::eQuad ) - result += "Quad | "; - if ( value & SubgroupFeatureFlagBits::ePartitionedNV ) - result += "PartitionedNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PeerMemoryFeatureFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PeerMemoryFeatureFlagBits::eCopySrc ) | VkFlags( PeerMemoryFeatureFlagBits::eCopyDst ) | - VkFlags( PeerMemoryFeatureFlagBits::eGenericSrc ) | VkFlags( PeerMemoryFeatureFlagBits::eGenericDst ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PeerMemoryFeatureFlags - operator|( PeerMemoryFeatureFlagBits bit0, PeerMemoryFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PeerMemoryFeatureFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PeerMemoryFeatureFlags - operator&( PeerMemoryFeatureFlagBits bit0, PeerMemoryFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PeerMemoryFeatureFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PeerMemoryFeatureFlags - operator^( PeerMemoryFeatureFlagBits bit0, PeerMemoryFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PeerMemoryFeatureFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PeerMemoryFeatureFlags operator~( PeerMemoryFeatureFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( PeerMemoryFeatureFlags( bits ) ); - } - - using PeerMemoryFeatureFlagsKHR = PeerMemoryFeatureFlags; - - VULKAN_HPP_INLINE std::string to_string( PeerMemoryFeatureFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PeerMemoryFeatureFlagBits::eCopySrc ) - result += "CopySrc | "; - if ( value & PeerMemoryFeatureFlagBits::eCopyDst ) - result += "CopyDst | "; - if ( value & PeerMemoryFeatureFlagBits::eGenericSrc ) - result += "GenericSrc | "; - if ( value & PeerMemoryFeatureFlagBits::eGenericDst ) - result += "GenericDst | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using MemoryAllocateFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( MemoryAllocateFlagBits::eDeviceMask ) | VkFlags( MemoryAllocateFlagBits::eDeviceAddress ) | - VkFlags( MemoryAllocateFlagBits::eDeviceAddressCaptureReplay ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryAllocateFlags - operator|( MemoryAllocateFlagBits bit0, MemoryAllocateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryAllocateFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryAllocateFlags - operator&( MemoryAllocateFlagBits bit0, MemoryAllocateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryAllocateFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryAllocateFlags - operator^( MemoryAllocateFlagBits bit0, MemoryAllocateFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return MemoryAllocateFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR MemoryAllocateFlags operator~( MemoryAllocateFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( MemoryAllocateFlags( bits ) ); - } - - using MemoryAllocateFlagsKHR = MemoryAllocateFlags; - - VULKAN_HPP_INLINE std::string to_string( MemoryAllocateFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & MemoryAllocateFlagBits::eDeviceMask ) - result += "DeviceMask | "; - if ( value & MemoryAllocateFlagBits::eDeviceAddress ) - result += "DeviceAddress | "; - if ( value & MemoryAllocateFlagBits::eDeviceAddressCaptureReplay ) - result += "DeviceAddressCaptureReplay | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using CommandPoolTrimFlags = Flags; - - using CommandPoolTrimFlagsKHR = CommandPoolTrimFlags; - - VULKAN_HPP_INLINE std::string to_string( CommandPoolTrimFlags ) - { - return "{}"; - } - - using DescriptorUpdateTemplateCreateFlags = Flags; - - using DescriptorUpdateTemplateCreateFlagsKHR = DescriptorUpdateTemplateCreateFlags; - - VULKAN_HPP_INLINE std::string to_string( DescriptorUpdateTemplateCreateFlags ) - { - return "{}"; - } - - using ExternalMemoryHandleTypeFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eOpaqueWin32 ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eOpaqueWin32Kmt ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eD3D11Texture ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eD3D11TextureKmt ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eD3D12Heap ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eD3D12Resource ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eDmaBufEXT ) -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - | VkFlags( ExternalMemoryHandleTypeFlagBits::eAndroidHardwareBufferANDROID ) -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - | VkFlags( ExternalMemoryHandleTypeFlagBits::eHostAllocationEXT ) | - VkFlags( ExternalMemoryHandleTypeFlagBits::eHostMappedForeignMemoryEXT ) -#if defined( VK_USE_PLATFORM_FUCHSIA ) - | VkFlags( ExternalMemoryHandleTypeFlagBits::eZirconVmoFUCHSIA ) -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - | VkFlags( ExternalMemoryHandleTypeFlagBits::eRdmaAddressNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlags - operator|( ExternalMemoryHandleTypeFlagBits bit0, ExternalMemoryHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryHandleTypeFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlags - operator&( ExternalMemoryHandleTypeFlagBits bit0, ExternalMemoryHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryHandleTypeFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlags - operator^( ExternalMemoryHandleTypeFlagBits bit0, ExternalMemoryHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryHandleTypeFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlags - operator~( ExternalMemoryHandleTypeFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ExternalMemoryHandleTypeFlags( bits ) ); - } - - using ExternalMemoryHandleTypeFlagsKHR = ExternalMemoryHandleTypeFlags; - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryHandleTypeFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) - result += "OpaqueFd | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eOpaqueWin32 ) - result += "OpaqueWin32 | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eOpaqueWin32Kmt ) - result += "OpaqueWin32Kmt | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eD3D11Texture ) - result += "D3D11Texture | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eD3D11TextureKmt ) - result += "D3D11TextureKmt | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eD3D12Heap ) - result += "D3D12Heap | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eD3D12Resource ) - result += "D3D12Resource | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eDmaBufEXT ) - result += "DmaBufEXT | "; -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - if ( value & ExternalMemoryHandleTypeFlagBits::eAndroidHardwareBufferANDROID ) - result += "AndroidHardwareBufferANDROID | "; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - if ( value & ExternalMemoryHandleTypeFlagBits::eHostAllocationEXT ) - result += "HostAllocationEXT | "; - if ( value & ExternalMemoryHandleTypeFlagBits::eHostMappedForeignMemoryEXT ) - result += "HostMappedForeignMemoryEXT | "; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - if ( value & ExternalMemoryHandleTypeFlagBits::eZirconVmoFUCHSIA ) - result += "ZirconVmoFUCHSIA | "; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - if ( value & ExternalMemoryHandleTypeFlagBits::eRdmaAddressNV ) - result += "RdmaAddressNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ExternalMemoryFeatureFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalMemoryFeatureFlagBits::eDedicatedOnly ) | - VkFlags( ExternalMemoryFeatureFlagBits::eExportable ) | - VkFlags( ExternalMemoryFeatureFlagBits::eImportable ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlags - operator|( ExternalMemoryFeatureFlagBits bit0, ExternalMemoryFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryFeatureFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlags - operator&( ExternalMemoryFeatureFlagBits bit0, ExternalMemoryFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryFeatureFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlags - operator^( ExternalMemoryFeatureFlagBits bit0, ExternalMemoryFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryFeatureFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlags operator~( ExternalMemoryFeatureFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ExternalMemoryFeatureFlags( bits ) ); - } - - using ExternalMemoryFeatureFlagsKHR = ExternalMemoryFeatureFlags; - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryFeatureFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalMemoryFeatureFlagBits::eDedicatedOnly ) - result += "DedicatedOnly | "; - if ( value & ExternalMemoryFeatureFlagBits::eExportable ) - result += "Exportable | "; - if ( value & ExternalMemoryFeatureFlagBits::eImportable ) - result += "Importable | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ExternalFenceHandleTypeFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalFenceHandleTypeFlagBits::eOpaqueFd ) | - VkFlags( ExternalFenceHandleTypeFlagBits::eOpaqueWin32 ) | - VkFlags( ExternalFenceHandleTypeFlagBits::eOpaqueWin32Kmt ) | - VkFlags( ExternalFenceHandleTypeFlagBits::eSyncFd ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceHandleTypeFlags - operator|( ExternalFenceHandleTypeFlagBits bit0, ExternalFenceHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalFenceHandleTypeFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceHandleTypeFlags - operator&( ExternalFenceHandleTypeFlagBits bit0, ExternalFenceHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalFenceHandleTypeFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceHandleTypeFlags - operator^( ExternalFenceHandleTypeFlagBits bit0, ExternalFenceHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalFenceHandleTypeFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceHandleTypeFlags operator~( ExternalFenceHandleTypeFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ExternalFenceHandleTypeFlags( bits ) ); - } - - using ExternalFenceHandleTypeFlagsKHR = ExternalFenceHandleTypeFlags; - - VULKAN_HPP_INLINE std::string to_string( ExternalFenceHandleTypeFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalFenceHandleTypeFlagBits::eOpaqueFd ) - result += "OpaqueFd | "; - if ( value & ExternalFenceHandleTypeFlagBits::eOpaqueWin32 ) - result += "OpaqueWin32 | "; - if ( value & ExternalFenceHandleTypeFlagBits::eOpaqueWin32Kmt ) - result += "OpaqueWin32Kmt | "; - if ( value & ExternalFenceHandleTypeFlagBits::eSyncFd ) - result += "SyncFd | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ExternalFenceFeatureFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( ExternalFenceFeatureFlagBits::eExportable ) | VkFlags( ExternalFenceFeatureFlagBits::eImportable ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceFeatureFlags - operator|( ExternalFenceFeatureFlagBits bit0, ExternalFenceFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalFenceFeatureFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceFeatureFlags - operator&( ExternalFenceFeatureFlagBits bit0, ExternalFenceFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalFenceFeatureFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceFeatureFlags - operator^( ExternalFenceFeatureFlagBits bit0, ExternalFenceFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalFenceFeatureFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalFenceFeatureFlags operator~( ExternalFenceFeatureFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ExternalFenceFeatureFlags( bits ) ); - } - - using ExternalFenceFeatureFlagsKHR = ExternalFenceFeatureFlags; - - VULKAN_HPP_INLINE std::string to_string( ExternalFenceFeatureFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalFenceFeatureFlagBits::eExportable ) - result += "Exportable | "; - if ( value & ExternalFenceFeatureFlagBits::eImportable ) - result += "Importable | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using FenceImportFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( FenceImportFlagBits::eTemporary ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceImportFlags operator|( FenceImportFlagBits bit0, - FenceImportFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FenceImportFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceImportFlags operator&( FenceImportFlagBits bit0, - FenceImportFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FenceImportFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceImportFlags operator^( FenceImportFlagBits bit0, - FenceImportFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return FenceImportFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FenceImportFlags operator~( FenceImportFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( FenceImportFlags( bits ) ); - } - - using FenceImportFlagsKHR = FenceImportFlags; - - VULKAN_HPP_INLINE std::string to_string( FenceImportFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & FenceImportFlagBits::eTemporary ) - result += "Temporary | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SemaphoreImportFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SemaphoreImportFlagBits::eTemporary ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreImportFlags - operator|( SemaphoreImportFlagBits bit0, SemaphoreImportFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SemaphoreImportFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreImportFlags - operator&( SemaphoreImportFlagBits bit0, SemaphoreImportFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SemaphoreImportFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreImportFlags - operator^( SemaphoreImportFlagBits bit0, SemaphoreImportFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SemaphoreImportFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreImportFlags operator~( SemaphoreImportFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SemaphoreImportFlags( bits ) ); - } - - using SemaphoreImportFlagsKHR = SemaphoreImportFlags; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreImportFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SemaphoreImportFlagBits::eTemporary ) - result += "Temporary | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ExternalSemaphoreHandleTypeFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd ) | - VkFlags( ExternalSemaphoreHandleTypeFlagBits::eOpaqueWin32 ) | - VkFlags( ExternalSemaphoreHandleTypeFlagBits::eOpaqueWin32Kmt ) | - VkFlags( ExternalSemaphoreHandleTypeFlagBits::eD3D12Fence ) | - VkFlags( ExternalSemaphoreHandleTypeFlagBits::eSyncFd ) -#if defined( VK_USE_PLATFORM_FUCHSIA ) - | VkFlags( ExternalSemaphoreHandleTypeFlagBits::eZirconEventFUCHSIA ) -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreHandleTypeFlags - operator|( ExternalSemaphoreHandleTypeFlagBits bit0, ExternalSemaphoreHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalSemaphoreHandleTypeFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreHandleTypeFlags - operator&( ExternalSemaphoreHandleTypeFlagBits bit0, ExternalSemaphoreHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalSemaphoreHandleTypeFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreHandleTypeFlags - operator^( ExternalSemaphoreHandleTypeFlagBits bit0, ExternalSemaphoreHandleTypeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalSemaphoreHandleTypeFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreHandleTypeFlags - operator~( ExternalSemaphoreHandleTypeFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ExternalSemaphoreHandleTypeFlags( bits ) ); - } - - using ExternalSemaphoreHandleTypeFlagsKHR = ExternalSemaphoreHandleTypeFlags; - - VULKAN_HPP_INLINE std::string to_string( ExternalSemaphoreHandleTypeFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd ) - result += "OpaqueFd | "; - if ( value & ExternalSemaphoreHandleTypeFlagBits::eOpaqueWin32 ) - result += "OpaqueWin32 | "; - if ( value & ExternalSemaphoreHandleTypeFlagBits::eOpaqueWin32Kmt ) - result += "OpaqueWin32Kmt | "; - if ( value & ExternalSemaphoreHandleTypeFlagBits::eD3D12Fence ) - result += "D3D12Fence | "; - if ( value & ExternalSemaphoreHandleTypeFlagBits::eSyncFd ) - result += "SyncFd | "; -#if defined( VK_USE_PLATFORM_FUCHSIA ) - if ( value & ExternalSemaphoreHandleTypeFlagBits::eZirconEventFUCHSIA ) - result += "ZirconEventFUCHSIA | "; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ExternalSemaphoreFeatureFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalSemaphoreFeatureFlagBits::eExportable ) | - VkFlags( ExternalSemaphoreFeatureFlagBits::eImportable ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreFeatureFlags - operator|( ExternalSemaphoreFeatureFlagBits bit0, ExternalSemaphoreFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalSemaphoreFeatureFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreFeatureFlags - operator&( ExternalSemaphoreFeatureFlagBits bit0, ExternalSemaphoreFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalSemaphoreFeatureFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreFeatureFlags - operator^( ExternalSemaphoreFeatureFlagBits bit0, ExternalSemaphoreFeatureFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalSemaphoreFeatureFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalSemaphoreFeatureFlags - operator~( ExternalSemaphoreFeatureFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ExternalSemaphoreFeatureFlags( bits ) ); - } - - using ExternalSemaphoreFeatureFlagsKHR = ExternalSemaphoreFeatureFlags; - - VULKAN_HPP_INLINE std::string to_string( ExternalSemaphoreFeatureFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalSemaphoreFeatureFlagBits::eExportable ) - result += "Exportable | "; - if ( value & ExternalSemaphoreFeatureFlagBits::eImportable ) - result += "Importable | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_VERSION_1_2 === - - using DescriptorBindingFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DescriptorBindingFlagBits::eUpdateAfterBind ) | - VkFlags( DescriptorBindingFlagBits::eUpdateUnusedWhilePending ) | - VkFlags( DescriptorBindingFlagBits::ePartiallyBound ) | - VkFlags( DescriptorBindingFlagBits::eVariableDescriptorCount ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorBindingFlags - operator|( DescriptorBindingFlagBits bit0, DescriptorBindingFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorBindingFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorBindingFlags - operator&( DescriptorBindingFlagBits bit0, DescriptorBindingFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorBindingFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorBindingFlags - operator^( DescriptorBindingFlagBits bit0, DescriptorBindingFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return DescriptorBindingFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DescriptorBindingFlags operator~( DescriptorBindingFlagBits bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( DescriptorBindingFlags( bits ) ); - } - - using DescriptorBindingFlagsEXT = DescriptorBindingFlags; - - VULKAN_HPP_INLINE std::string to_string( DescriptorBindingFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DescriptorBindingFlagBits::eUpdateAfterBind ) - result += "UpdateAfterBind | "; - if ( value & DescriptorBindingFlagBits::eUpdateUnusedWhilePending ) - result += "UpdateUnusedWhilePending | "; - if ( value & DescriptorBindingFlagBits::ePartiallyBound ) - result += "PartiallyBound | "; - if ( value & DescriptorBindingFlagBits::eVariableDescriptorCount ) - result += "VariableDescriptorCount | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ResolveModeFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ResolveModeFlagBits::eNone ) | VkFlags( ResolveModeFlagBits::eSampleZero ) | - VkFlags( ResolveModeFlagBits::eAverage ) | VkFlags( ResolveModeFlagBits::eMin ) | - VkFlags( ResolveModeFlagBits::eMax ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ResolveModeFlags operator|( ResolveModeFlagBits bit0, - ResolveModeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ResolveModeFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ResolveModeFlags operator&( ResolveModeFlagBits bit0, - ResolveModeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ResolveModeFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ResolveModeFlags operator^( ResolveModeFlagBits bit0, - ResolveModeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ResolveModeFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ResolveModeFlags operator~( ResolveModeFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ResolveModeFlags( bits ) ); - } - - using ResolveModeFlagsKHR = ResolveModeFlags; - - VULKAN_HPP_INLINE std::string to_string( ResolveModeFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ResolveModeFlagBits::eSampleZero ) - result += "SampleZero | "; - if ( value & ResolveModeFlagBits::eAverage ) - result += "Average | "; - if ( value & ResolveModeFlagBits::eMin ) - result += "Min | "; - if ( value & ResolveModeFlagBits::eMax ) - result += "Max | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SemaphoreWaitFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SemaphoreWaitFlagBits::eAny ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreWaitFlags operator|( SemaphoreWaitFlagBits bit0, - SemaphoreWaitFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SemaphoreWaitFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreWaitFlags operator&( SemaphoreWaitFlagBits bit0, - SemaphoreWaitFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SemaphoreWaitFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreWaitFlags operator^( SemaphoreWaitFlagBits bit0, - SemaphoreWaitFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SemaphoreWaitFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SemaphoreWaitFlags operator~( SemaphoreWaitFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( SemaphoreWaitFlags( bits ) ); - } - - using SemaphoreWaitFlagsKHR = SemaphoreWaitFlags; - - VULKAN_HPP_INLINE std::string to_string( SemaphoreWaitFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SemaphoreWaitFlagBits::eAny ) - result += "Any | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_VERSION_1_3 === - - using PipelineCreationFeedbackFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PipelineCreationFeedbackFlagBits::eValid ) | - VkFlags( PipelineCreationFeedbackFlagBits::eApplicationPipelineCacheHit ) | - VkFlags( PipelineCreationFeedbackFlagBits::eBasePipelineAcceleration ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreationFeedbackFlags - operator|( PipelineCreationFeedbackFlagBits bit0, PipelineCreationFeedbackFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCreationFeedbackFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreationFeedbackFlags - operator&( PipelineCreationFeedbackFlagBits bit0, PipelineCreationFeedbackFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCreationFeedbackFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreationFeedbackFlags - operator^( PipelineCreationFeedbackFlagBits bit0, PipelineCreationFeedbackFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineCreationFeedbackFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineCreationFeedbackFlags - operator~( PipelineCreationFeedbackFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( PipelineCreationFeedbackFlags( bits ) ); - } - - using PipelineCreationFeedbackFlagsEXT = PipelineCreationFeedbackFlags; - - VULKAN_HPP_INLINE std::string to_string( PipelineCreationFeedbackFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineCreationFeedbackFlagBits::eValid ) - result += "Valid | "; - if ( value & PipelineCreationFeedbackFlagBits::eApplicationPipelineCacheHit ) - result += "ApplicationPipelineCacheHit | "; - if ( value & PipelineCreationFeedbackFlagBits::eBasePipelineAcceleration ) - result += "BasePipelineAcceleration | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ToolPurposeFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ToolPurposeFlagBits::eValidation ) | VkFlags( ToolPurposeFlagBits::eProfiling ) | - VkFlags( ToolPurposeFlagBits::eTracing ) | VkFlags( ToolPurposeFlagBits::eAdditionalFeatures ) | - VkFlags( ToolPurposeFlagBits::eModifyingFeatures ) | - VkFlags( ToolPurposeFlagBits::eDebugReportingEXT ) | VkFlags( ToolPurposeFlagBits::eDebugMarkersEXT ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ToolPurposeFlags operator|( ToolPurposeFlagBits bit0, - ToolPurposeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ToolPurposeFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ToolPurposeFlags operator&( ToolPurposeFlagBits bit0, - ToolPurposeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ToolPurposeFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ToolPurposeFlags operator^( ToolPurposeFlagBits bit0, - ToolPurposeFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return ToolPurposeFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ToolPurposeFlags operator~( ToolPurposeFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ToolPurposeFlags( bits ) ); - } - - using ToolPurposeFlagsEXT = ToolPurposeFlags; - - VULKAN_HPP_INLINE std::string to_string( ToolPurposeFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ToolPurposeFlagBits::eValidation ) - result += "Validation | "; - if ( value & ToolPurposeFlagBits::eProfiling ) - result += "Profiling | "; - if ( value & ToolPurposeFlagBits::eTracing ) - result += "Tracing | "; - if ( value & ToolPurposeFlagBits::eAdditionalFeatures ) - result += "AdditionalFeatures | "; - if ( value & ToolPurposeFlagBits::eModifyingFeatures ) - result += "ModifyingFeatures | "; - if ( value & ToolPurposeFlagBits::eDebugReportingEXT ) - result += "DebugReportingEXT | "; - if ( value & ToolPurposeFlagBits::eDebugMarkersEXT ) - result += "DebugMarkersEXT | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using PrivateDataSlotCreateFlags = Flags; - - using PrivateDataSlotCreateFlagsEXT = PrivateDataSlotCreateFlags; - - VULKAN_HPP_INLINE std::string to_string( PrivateDataSlotCreateFlags ) - { - return "{}"; - } - - using PipelineStageFlags2 = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags64 - { - allFlags = - VkFlags64( PipelineStageFlagBits2::eNone ) | VkFlags64( PipelineStageFlagBits2::eTopOfPipe ) | - VkFlags64( PipelineStageFlagBits2::eDrawIndirect ) | VkFlags64( PipelineStageFlagBits2::eVertexInput ) | - VkFlags64( PipelineStageFlagBits2::eVertexShader ) | - VkFlags64( PipelineStageFlagBits2::eTessellationControlShader ) | - VkFlags64( PipelineStageFlagBits2::eTessellationEvaluationShader ) | - VkFlags64( PipelineStageFlagBits2::eGeometryShader ) | VkFlags64( PipelineStageFlagBits2::eFragmentShader ) | - VkFlags64( PipelineStageFlagBits2::eEarlyFragmentTests ) | - VkFlags64( PipelineStageFlagBits2::eLateFragmentTests ) | - VkFlags64( PipelineStageFlagBits2::eColorAttachmentOutput ) | - VkFlags64( PipelineStageFlagBits2::eComputeShader ) | VkFlags64( PipelineStageFlagBits2::eAllTransfer ) | - VkFlags64( PipelineStageFlagBits2::eBottomOfPipe ) | VkFlags64( PipelineStageFlagBits2::eHost ) | - VkFlags64( PipelineStageFlagBits2::eAllGraphics ) | VkFlags64( PipelineStageFlagBits2::eAllCommands ) | - VkFlags64( PipelineStageFlagBits2::eCopy ) | VkFlags64( PipelineStageFlagBits2::eResolve ) | - VkFlags64( PipelineStageFlagBits2::eBlit ) | VkFlags64( PipelineStageFlagBits2::eClear ) | - VkFlags64( PipelineStageFlagBits2::eIndexInput ) | VkFlags64( PipelineStageFlagBits2::eVertexAttributeInput ) | - VkFlags64( PipelineStageFlagBits2::ePreRasterizationShaders ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags64( PipelineStageFlagBits2::eVideoDecodeKHR ) | VkFlags64( PipelineStageFlagBits2::eVideoEncodeKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags64( PipelineStageFlagBits2::eTransformFeedbackEXT ) | - VkFlags64( PipelineStageFlagBits2::eConditionalRenderingEXT ) | - VkFlags64( PipelineStageFlagBits2::eCommandPreprocessNV ) | - VkFlags64( PipelineStageFlagBits2::eFragmentShadingRateAttachmentKHR ) | - VkFlags64( PipelineStageFlagBits2::eAccelerationStructureBuildKHR ) | - VkFlags64( PipelineStageFlagBits2::eRayTracingShaderKHR ) | - VkFlags64( PipelineStageFlagBits2::eFragmentDensityProcessEXT ) | - VkFlags64( PipelineStageFlagBits2::eTaskShaderNV ) | VkFlags64( PipelineStageFlagBits2::eMeshShaderNV ) | - VkFlags64( PipelineStageFlagBits2::eSubpassShadingHUAWEI ) | - VkFlags64( PipelineStageFlagBits2::eInvocationMaskHUAWEI ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags2 - operator|( PipelineStageFlagBits2 bit0, PipelineStageFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineStageFlags2( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags2 - operator&( PipelineStageFlagBits2 bit0, PipelineStageFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineStageFlags2( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags2 - operator^( PipelineStageFlagBits2 bit0, PipelineStageFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return PipelineStageFlags2( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PipelineStageFlags2 operator~( PipelineStageFlagBits2 bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( PipelineStageFlags2( bits ) ); - } - - using PipelineStageFlags2KHR = PipelineStageFlags2; - - VULKAN_HPP_INLINE std::string to_string( PipelineStageFlags2 value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PipelineStageFlagBits2::eTopOfPipe ) - result += "TopOfPipe | "; - if ( value & PipelineStageFlagBits2::eDrawIndirect ) - result += "DrawIndirect | "; - if ( value & PipelineStageFlagBits2::eVertexInput ) - result += "VertexInput | "; - if ( value & PipelineStageFlagBits2::eVertexShader ) - result += "VertexShader | "; - if ( value & PipelineStageFlagBits2::eTessellationControlShader ) - result += "TessellationControlShader | "; - if ( value & PipelineStageFlagBits2::eTessellationEvaluationShader ) - result += "TessellationEvaluationShader | "; - if ( value & PipelineStageFlagBits2::eGeometryShader ) - result += "GeometryShader | "; - if ( value & PipelineStageFlagBits2::eFragmentShader ) - result += "FragmentShader | "; - if ( value & PipelineStageFlagBits2::eEarlyFragmentTests ) - result += "EarlyFragmentTests | "; - if ( value & PipelineStageFlagBits2::eLateFragmentTests ) - result += "LateFragmentTests | "; - if ( value & PipelineStageFlagBits2::eColorAttachmentOutput ) - result += "ColorAttachmentOutput | "; - if ( value & PipelineStageFlagBits2::eComputeShader ) - result += "ComputeShader | "; - if ( value & PipelineStageFlagBits2::eAllTransfer ) - result += "AllTransfer | "; - if ( value & PipelineStageFlagBits2::eBottomOfPipe ) - result += "BottomOfPipe | "; - if ( value & PipelineStageFlagBits2::eHost ) - result += "Host | "; - if ( value & PipelineStageFlagBits2::eAllGraphics ) - result += "AllGraphics | "; - if ( value & PipelineStageFlagBits2::eAllCommands ) - result += "AllCommands | "; - if ( value & PipelineStageFlagBits2::eCopy ) - result += "Copy | "; - if ( value & PipelineStageFlagBits2::eResolve ) - result += "Resolve | "; - if ( value & PipelineStageFlagBits2::eBlit ) - result += "Blit | "; - if ( value & PipelineStageFlagBits2::eClear ) - result += "Clear | "; - if ( value & PipelineStageFlagBits2::eIndexInput ) - result += "IndexInput | "; - if ( value & PipelineStageFlagBits2::eVertexAttributeInput ) - result += "VertexAttributeInput | "; - if ( value & PipelineStageFlagBits2::ePreRasterizationShaders ) - result += "PreRasterizationShaders | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & PipelineStageFlagBits2::eVideoDecodeKHR ) - result += "VideoDecodeKHR | "; - if ( value & PipelineStageFlagBits2::eVideoEncodeKHR ) - result += "VideoEncodeKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & PipelineStageFlagBits2::eTransformFeedbackEXT ) - result += "TransformFeedbackEXT | "; - if ( value & PipelineStageFlagBits2::eConditionalRenderingEXT ) - result += "ConditionalRenderingEXT | "; - if ( value & PipelineStageFlagBits2::eCommandPreprocessNV ) - result += "CommandPreprocessNV | "; - if ( value & PipelineStageFlagBits2::eFragmentShadingRateAttachmentKHR ) - result += "FragmentShadingRateAttachmentKHR | "; - if ( value & PipelineStageFlagBits2::eAccelerationStructureBuildKHR ) - result += "AccelerationStructureBuildKHR | "; - if ( value & PipelineStageFlagBits2::eRayTracingShaderKHR ) - result += "RayTracingShaderKHR | "; - if ( value & PipelineStageFlagBits2::eFragmentDensityProcessEXT ) - result += "FragmentDensityProcessEXT | "; - if ( value & PipelineStageFlagBits2::eTaskShaderNV ) - result += "TaskShaderNV | "; - if ( value & PipelineStageFlagBits2::eMeshShaderNV ) - result += "MeshShaderNV | "; - if ( value & PipelineStageFlagBits2::eSubpassShadingHUAWEI ) - result += "SubpassShadingHUAWEI | "; - if ( value & PipelineStageFlagBits2::eInvocationMaskHUAWEI ) - result += "InvocationMaskHUAWEI | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using AccessFlags2 = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags64 - { - allFlags = - VkFlags64( AccessFlagBits2::eNone ) | VkFlags64( AccessFlagBits2::eIndirectCommandRead ) | - VkFlags64( AccessFlagBits2::eIndexRead ) | VkFlags64( AccessFlagBits2::eVertexAttributeRead ) | - VkFlags64( AccessFlagBits2::eUniformRead ) | VkFlags64( AccessFlagBits2::eInputAttachmentRead ) | - VkFlags64( AccessFlagBits2::eShaderRead ) | VkFlags64( AccessFlagBits2::eShaderWrite ) | - VkFlags64( AccessFlagBits2::eColorAttachmentRead ) | VkFlags64( AccessFlagBits2::eColorAttachmentWrite ) | - VkFlags64( AccessFlagBits2::eDepthStencilAttachmentRead ) | - VkFlags64( AccessFlagBits2::eDepthStencilAttachmentWrite ) | VkFlags64( AccessFlagBits2::eTransferRead ) | - VkFlags64( AccessFlagBits2::eTransferWrite ) | VkFlags64( AccessFlagBits2::eHostRead ) | - VkFlags64( AccessFlagBits2::eHostWrite ) | VkFlags64( AccessFlagBits2::eMemoryRead ) | - VkFlags64( AccessFlagBits2::eMemoryWrite ) | VkFlags64( AccessFlagBits2::eShaderSampledRead ) | - VkFlags64( AccessFlagBits2::eShaderStorageRead ) | VkFlags64( AccessFlagBits2::eShaderStorageWrite ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags64( AccessFlagBits2::eVideoDecodeReadKHR ) | VkFlags64( AccessFlagBits2::eVideoDecodeWriteKHR ) | - VkFlags64( AccessFlagBits2::eVideoEncodeReadKHR ) | VkFlags64( AccessFlagBits2::eVideoEncodeWriteKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags64( AccessFlagBits2::eTransformFeedbackWriteEXT ) | - VkFlags64( AccessFlagBits2::eTransformFeedbackCounterReadEXT ) | - VkFlags64( AccessFlagBits2::eTransformFeedbackCounterWriteEXT ) | - VkFlags64( AccessFlagBits2::eConditionalRenderingReadEXT ) | - VkFlags64( AccessFlagBits2::eCommandPreprocessReadNV ) | - VkFlags64( AccessFlagBits2::eCommandPreprocessWriteNV ) | - VkFlags64( AccessFlagBits2::eFragmentShadingRateAttachmentReadKHR ) | - VkFlags64( AccessFlagBits2::eAccelerationStructureReadKHR ) | - VkFlags64( AccessFlagBits2::eAccelerationStructureWriteKHR ) | - VkFlags64( AccessFlagBits2::eFragmentDensityMapReadEXT ) | - VkFlags64( AccessFlagBits2::eColorAttachmentReadNoncoherentEXT ) | - VkFlags64( AccessFlagBits2::eInvocationMaskReadHUAWEI ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags2 operator|( AccessFlagBits2 bit0, - AccessFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccessFlags2( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags2 operator&( AccessFlagBits2 bit0, - AccessFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccessFlags2( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags2 operator^( AccessFlagBits2 bit0, - AccessFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccessFlags2( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccessFlags2 operator~( AccessFlagBits2 bits ) VULKAN_HPP_NOEXCEPT - { - return ~( AccessFlags2( bits ) ); - } - - using AccessFlags2KHR = AccessFlags2; - - VULKAN_HPP_INLINE std::string to_string( AccessFlags2 value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & AccessFlagBits2::eIndirectCommandRead ) - result += "IndirectCommandRead | "; - if ( value & AccessFlagBits2::eIndexRead ) - result += "IndexRead | "; - if ( value & AccessFlagBits2::eVertexAttributeRead ) - result += "VertexAttributeRead | "; - if ( value & AccessFlagBits2::eUniformRead ) - result += "UniformRead | "; - if ( value & AccessFlagBits2::eInputAttachmentRead ) - result += "InputAttachmentRead | "; - if ( value & AccessFlagBits2::eShaderRead ) - result += "ShaderRead | "; - if ( value & AccessFlagBits2::eShaderWrite ) - result += "ShaderWrite | "; - if ( value & AccessFlagBits2::eColorAttachmentRead ) - result += "ColorAttachmentRead | "; - if ( value & AccessFlagBits2::eColorAttachmentWrite ) - result += "ColorAttachmentWrite | "; - if ( value & AccessFlagBits2::eDepthStencilAttachmentRead ) - result += "DepthStencilAttachmentRead | "; - if ( value & AccessFlagBits2::eDepthStencilAttachmentWrite ) - result += "DepthStencilAttachmentWrite | "; - if ( value & AccessFlagBits2::eTransferRead ) - result += "TransferRead | "; - if ( value & AccessFlagBits2::eTransferWrite ) - result += "TransferWrite | "; - if ( value & AccessFlagBits2::eHostRead ) - result += "HostRead | "; - if ( value & AccessFlagBits2::eHostWrite ) - result += "HostWrite | "; - if ( value & AccessFlagBits2::eMemoryRead ) - result += "MemoryRead | "; - if ( value & AccessFlagBits2::eMemoryWrite ) - result += "MemoryWrite | "; - if ( value & AccessFlagBits2::eShaderSampledRead ) - result += "ShaderSampledRead | "; - if ( value & AccessFlagBits2::eShaderStorageRead ) - result += "ShaderStorageRead | "; - if ( value & AccessFlagBits2::eShaderStorageWrite ) - result += "ShaderStorageWrite | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & AccessFlagBits2::eVideoDecodeReadKHR ) - result += "VideoDecodeReadKHR | "; - if ( value & AccessFlagBits2::eVideoDecodeWriteKHR ) - result += "VideoDecodeWriteKHR | "; - if ( value & AccessFlagBits2::eVideoEncodeReadKHR ) - result += "VideoEncodeReadKHR | "; - if ( value & AccessFlagBits2::eVideoEncodeWriteKHR ) - result += "VideoEncodeWriteKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & AccessFlagBits2::eTransformFeedbackWriteEXT ) - result += "TransformFeedbackWriteEXT | "; - if ( value & AccessFlagBits2::eTransformFeedbackCounterReadEXT ) - result += "TransformFeedbackCounterReadEXT | "; - if ( value & AccessFlagBits2::eTransformFeedbackCounterWriteEXT ) - result += "TransformFeedbackCounterWriteEXT | "; - if ( value & AccessFlagBits2::eConditionalRenderingReadEXT ) - result += "ConditionalRenderingReadEXT | "; - if ( value & AccessFlagBits2::eCommandPreprocessReadNV ) - result += "CommandPreprocessReadNV | "; - if ( value & AccessFlagBits2::eCommandPreprocessWriteNV ) - result += "CommandPreprocessWriteNV | "; - if ( value & AccessFlagBits2::eFragmentShadingRateAttachmentReadKHR ) - result += "FragmentShadingRateAttachmentReadKHR | "; - if ( value & AccessFlagBits2::eAccelerationStructureReadKHR ) - result += "AccelerationStructureReadKHR | "; - if ( value & AccessFlagBits2::eAccelerationStructureWriteKHR ) - result += "AccelerationStructureWriteKHR | "; - if ( value & AccessFlagBits2::eFragmentDensityMapReadEXT ) - result += "FragmentDensityMapReadEXT | "; - if ( value & AccessFlagBits2::eColorAttachmentReadNoncoherentEXT ) - result += "ColorAttachmentReadNoncoherentEXT | "; - if ( value & AccessFlagBits2::eInvocationMaskReadHUAWEI ) - result += "InvocationMaskReadHUAWEI | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using SubmitFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SubmitFlagBits::eProtected ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubmitFlags operator|( SubmitFlagBits bit0, - SubmitFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubmitFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubmitFlags operator&( SubmitFlagBits bit0, - SubmitFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubmitFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubmitFlags operator^( SubmitFlagBits bit0, - SubmitFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return SubmitFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SubmitFlags operator~( SubmitFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( SubmitFlags( bits ) ); - } - - using SubmitFlagsKHR = SubmitFlags; - - VULKAN_HPP_INLINE std::string to_string( SubmitFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SubmitFlagBits::eProtected ) - result += "Protected | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using RenderingFlags = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( RenderingFlagBits::eContentsSecondaryCommandBuffers ) | - VkFlags( RenderingFlagBits::eSuspending ) | VkFlags( RenderingFlagBits::eResuming ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderingFlags operator|( RenderingFlagBits bit0, - RenderingFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return RenderingFlags( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderingFlags operator&( RenderingFlagBits bit0, - RenderingFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return RenderingFlags( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderingFlags operator^( RenderingFlagBits bit0, - RenderingFlagBits bit1 ) VULKAN_HPP_NOEXCEPT - { - return RenderingFlags( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR RenderingFlags operator~( RenderingFlagBits bits ) VULKAN_HPP_NOEXCEPT - { - return ~( RenderingFlags( bits ) ); - } - - using RenderingFlagsKHR = RenderingFlags; - - VULKAN_HPP_INLINE std::string to_string( RenderingFlags value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & RenderingFlagBits::eContentsSecondaryCommandBuffers ) - result += "ContentsSecondaryCommandBuffers | "; - if ( value & RenderingFlagBits::eSuspending ) - result += "Suspending | "; - if ( value & RenderingFlagBits::eResuming ) - result += "Resuming | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using FormatFeatureFlags2 = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags64 - { - allFlags = - VkFlags64( FormatFeatureFlagBits2::eSampledImage ) | VkFlags64( FormatFeatureFlagBits2::eStorageImage ) | - VkFlags64( FormatFeatureFlagBits2::eStorageImageAtomic ) | - VkFlags64( FormatFeatureFlagBits2::eUniformTexelBuffer ) | - VkFlags64( FormatFeatureFlagBits2::eStorageTexelBuffer ) | - VkFlags64( FormatFeatureFlagBits2::eStorageTexelBufferAtomic ) | - VkFlags64( FormatFeatureFlagBits2::eVertexBuffer ) | VkFlags64( FormatFeatureFlagBits2::eColorAttachment ) | - VkFlags64( FormatFeatureFlagBits2::eColorAttachmentBlend ) | - VkFlags64( FormatFeatureFlagBits2::eDepthStencilAttachment ) | VkFlags64( FormatFeatureFlagBits2::eBlitSrc ) | - VkFlags64( FormatFeatureFlagBits2::eBlitDst ) | VkFlags64( FormatFeatureFlagBits2::eSampledImageFilterLinear ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageFilterCubic ) | - VkFlags64( FormatFeatureFlagBits2::eTransferSrc ) | VkFlags64( FormatFeatureFlagBits2::eTransferDst ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageFilterMinmax ) | - VkFlags64( FormatFeatureFlagBits2::eMidpointChromaSamples ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageYcbcrConversionLinearFilter ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageYcbcrConversionSeparateReconstructionFilter ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageYcbcrConversionChromaReconstructionExplicit ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageYcbcrConversionChromaReconstructionExplicitForceable ) | - VkFlags64( FormatFeatureFlagBits2::eDisjoint ) | VkFlags64( FormatFeatureFlagBits2::eCositedChromaSamples ) | - VkFlags64( FormatFeatureFlagBits2::eStorageReadWithoutFormat ) | - VkFlags64( FormatFeatureFlagBits2::eStorageWriteWithoutFormat ) | - VkFlags64( FormatFeatureFlagBits2::eSampledImageDepthComparison ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags64( FormatFeatureFlagBits2::eVideoDecodeOutputKHR ) | - VkFlags64( FormatFeatureFlagBits2::eVideoDecodeDpbKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags64( FormatFeatureFlagBits2::eAccelerationStructureVertexBufferKHR ) | - VkFlags64( FormatFeatureFlagBits2::eFragmentDensityMapEXT ) | - VkFlags64( FormatFeatureFlagBits2::eFragmentShadingRateAttachmentKHR ) -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags64( FormatFeatureFlagBits2::eVideoEncodeInputKHR ) | - VkFlags64( FormatFeatureFlagBits2::eVideoEncodeDpbKHR ) -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - | VkFlags64( FormatFeatureFlagBits2::eLinearColorAttachmentNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags2 - operator|( FormatFeatureFlagBits2 bit0, FormatFeatureFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return FormatFeatureFlags2( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags2 - operator&( FormatFeatureFlagBits2 bit0, FormatFeatureFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return FormatFeatureFlags2( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags2 - operator^( FormatFeatureFlagBits2 bit0, FormatFeatureFlagBits2 bit1 ) VULKAN_HPP_NOEXCEPT - { - return FormatFeatureFlags2( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR FormatFeatureFlags2 operator~( FormatFeatureFlagBits2 bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( FormatFeatureFlags2( bits ) ); - } - - using FormatFeatureFlags2KHR = FormatFeatureFlags2; - - VULKAN_HPP_INLINE std::string to_string( FormatFeatureFlags2 value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & FormatFeatureFlagBits2::eSampledImage ) - result += "SampledImage | "; - if ( value & FormatFeatureFlagBits2::eStorageImage ) - result += "StorageImage | "; - if ( value & FormatFeatureFlagBits2::eStorageImageAtomic ) - result += "StorageImageAtomic | "; - if ( value & FormatFeatureFlagBits2::eUniformTexelBuffer ) - result += "UniformTexelBuffer | "; - if ( value & FormatFeatureFlagBits2::eStorageTexelBuffer ) - result += "StorageTexelBuffer | "; - if ( value & FormatFeatureFlagBits2::eStorageTexelBufferAtomic ) - result += "StorageTexelBufferAtomic | "; - if ( value & FormatFeatureFlagBits2::eVertexBuffer ) - result += "VertexBuffer | "; - if ( value & FormatFeatureFlagBits2::eColorAttachment ) - result += "ColorAttachment | "; - if ( value & FormatFeatureFlagBits2::eColorAttachmentBlend ) - result += "ColorAttachmentBlend | "; - if ( value & FormatFeatureFlagBits2::eDepthStencilAttachment ) - result += "DepthStencilAttachment | "; - if ( value & FormatFeatureFlagBits2::eBlitSrc ) - result += "BlitSrc | "; - if ( value & FormatFeatureFlagBits2::eBlitDst ) - result += "BlitDst | "; - if ( value & FormatFeatureFlagBits2::eSampledImageFilterLinear ) - result += "SampledImageFilterLinear | "; - if ( value & FormatFeatureFlagBits2::eSampledImageFilterCubic ) - result += "SampledImageFilterCubic | "; - if ( value & FormatFeatureFlagBits2::eTransferSrc ) - result += "TransferSrc | "; - if ( value & FormatFeatureFlagBits2::eTransferDst ) - result += "TransferDst | "; - if ( value & FormatFeatureFlagBits2::eSampledImageFilterMinmax ) - result += "SampledImageFilterMinmax | "; - if ( value & FormatFeatureFlagBits2::eMidpointChromaSamples ) - result += "MidpointChromaSamples | "; - if ( value & FormatFeatureFlagBits2::eSampledImageYcbcrConversionLinearFilter ) - result += "SampledImageYcbcrConversionLinearFilter | "; - if ( value & FormatFeatureFlagBits2::eSampledImageYcbcrConversionSeparateReconstructionFilter ) - result += "SampledImageYcbcrConversionSeparateReconstructionFilter | "; - if ( value & FormatFeatureFlagBits2::eSampledImageYcbcrConversionChromaReconstructionExplicit ) - result += "SampledImageYcbcrConversionChromaReconstructionExplicit | "; - if ( value & FormatFeatureFlagBits2::eSampledImageYcbcrConversionChromaReconstructionExplicitForceable ) - result += "SampledImageYcbcrConversionChromaReconstructionExplicitForceable | "; - if ( value & FormatFeatureFlagBits2::eDisjoint ) - result += "Disjoint | "; - if ( value & FormatFeatureFlagBits2::eCositedChromaSamples ) - result += "CositedChromaSamples | "; - if ( value & FormatFeatureFlagBits2::eStorageReadWithoutFormat ) - result += "StorageReadWithoutFormat | "; - if ( value & FormatFeatureFlagBits2::eStorageWriteWithoutFormat ) - result += "StorageWriteWithoutFormat | "; - if ( value & FormatFeatureFlagBits2::eSampledImageDepthComparison ) - result += "SampledImageDepthComparison | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & FormatFeatureFlagBits2::eVideoDecodeOutputKHR ) - result += "VideoDecodeOutputKHR | "; - if ( value & FormatFeatureFlagBits2::eVideoDecodeDpbKHR ) - result += "VideoDecodeDpbKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & FormatFeatureFlagBits2::eAccelerationStructureVertexBufferKHR ) - result += "AccelerationStructureVertexBufferKHR | "; - if ( value & FormatFeatureFlagBits2::eFragmentDensityMapEXT ) - result += "FragmentDensityMapEXT | "; - if ( value & FormatFeatureFlagBits2::eFragmentShadingRateAttachmentKHR ) - result += "FragmentShadingRateAttachmentKHR | "; -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & FormatFeatureFlagBits2::eVideoEncodeInputKHR ) - result += "VideoEncodeInputKHR | "; - if ( value & FormatFeatureFlagBits2::eVideoEncodeDpbKHR ) - result += "VideoEncodeDpbKHR | "; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - if ( value & FormatFeatureFlagBits2::eLinearColorAttachmentNV ) - result += "LinearColorAttachmentNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_KHR_surface === - - using CompositeAlphaFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( CompositeAlphaFlagBitsKHR::eOpaque ) | VkFlags( CompositeAlphaFlagBitsKHR::ePreMultiplied ) | - VkFlags( CompositeAlphaFlagBitsKHR::ePostMultiplied ) | VkFlags( CompositeAlphaFlagBitsKHR::eInherit ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CompositeAlphaFlagsKHR - operator|( CompositeAlphaFlagBitsKHR bit0, CompositeAlphaFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return CompositeAlphaFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CompositeAlphaFlagsKHR - operator&( CompositeAlphaFlagBitsKHR bit0, CompositeAlphaFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return CompositeAlphaFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CompositeAlphaFlagsKHR - operator^( CompositeAlphaFlagBitsKHR bit0, CompositeAlphaFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return CompositeAlphaFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR CompositeAlphaFlagsKHR operator~( CompositeAlphaFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( CompositeAlphaFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( CompositeAlphaFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & CompositeAlphaFlagBitsKHR::eOpaque ) - result += "Opaque | "; - if ( value & CompositeAlphaFlagBitsKHR::ePreMultiplied ) - result += "PreMultiplied | "; - if ( value & CompositeAlphaFlagBitsKHR::ePostMultiplied ) - result += "PostMultiplied | "; - if ( value & CompositeAlphaFlagBitsKHR::eInherit ) - result += "Inherit | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_KHR_swapchain === - - using SwapchainCreateFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SwapchainCreateFlagBitsKHR::eSplitInstanceBindRegions ) | - VkFlags( SwapchainCreateFlagBitsKHR::eProtected ) | - VkFlags( SwapchainCreateFlagBitsKHR::eMutableFormat ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SwapchainCreateFlagsKHR - operator|( SwapchainCreateFlagBitsKHR bit0, SwapchainCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return SwapchainCreateFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SwapchainCreateFlagsKHR - operator&( SwapchainCreateFlagBitsKHR bit0, SwapchainCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return SwapchainCreateFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SwapchainCreateFlagsKHR - operator^( SwapchainCreateFlagBitsKHR bit0, SwapchainCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return SwapchainCreateFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SwapchainCreateFlagsKHR operator~( SwapchainCreateFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SwapchainCreateFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SwapchainCreateFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SwapchainCreateFlagBitsKHR::eSplitInstanceBindRegions ) - result += "SplitInstanceBindRegions | "; - if ( value & SwapchainCreateFlagBitsKHR::eProtected ) - result += "Protected | "; - if ( value & SwapchainCreateFlagBitsKHR::eMutableFormat ) - result += "MutableFormat | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DeviceGroupPresentModeFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DeviceGroupPresentModeFlagBitsKHR::eLocal ) | - VkFlags( DeviceGroupPresentModeFlagBitsKHR::eRemote ) | - VkFlags( DeviceGroupPresentModeFlagBitsKHR::eSum ) | - VkFlags( DeviceGroupPresentModeFlagBitsKHR::eLocalMultiDevice ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceGroupPresentModeFlagsKHR - operator|( DeviceGroupPresentModeFlagBitsKHR bit0, DeviceGroupPresentModeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceGroupPresentModeFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceGroupPresentModeFlagsKHR - operator&( DeviceGroupPresentModeFlagBitsKHR bit0, DeviceGroupPresentModeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceGroupPresentModeFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceGroupPresentModeFlagsKHR - operator^( DeviceGroupPresentModeFlagBitsKHR bit0, DeviceGroupPresentModeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceGroupPresentModeFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceGroupPresentModeFlagsKHR - operator~( DeviceGroupPresentModeFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( DeviceGroupPresentModeFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DeviceGroupPresentModeFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DeviceGroupPresentModeFlagBitsKHR::eLocal ) - result += "Local | "; - if ( value & DeviceGroupPresentModeFlagBitsKHR::eRemote ) - result += "Remote | "; - if ( value & DeviceGroupPresentModeFlagBitsKHR::eSum ) - result += "Sum | "; - if ( value & DeviceGroupPresentModeFlagBitsKHR::eLocalMultiDevice ) - result += "LocalMultiDevice | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_KHR_display === - - using DisplayModeCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( DisplayModeCreateFlagsKHR ) - { - return "{}"; - } - - using DisplayPlaneAlphaFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DisplayPlaneAlphaFlagBitsKHR::eOpaque ) | VkFlags( DisplayPlaneAlphaFlagBitsKHR::eGlobal ) | - VkFlags( DisplayPlaneAlphaFlagBitsKHR::ePerPixel ) | - VkFlags( DisplayPlaneAlphaFlagBitsKHR::ePerPixelPremultiplied ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DisplayPlaneAlphaFlagsKHR - operator|( DisplayPlaneAlphaFlagBitsKHR bit0, DisplayPlaneAlphaFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return DisplayPlaneAlphaFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DisplayPlaneAlphaFlagsKHR - operator&( DisplayPlaneAlphaFlagBitsKHR bit0, DisplayPlaneAlphaFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return DisplayPlaneAlphaFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DisplayPlaneAlphaFlagsKHR - operator^( DisplayPlaneAlphaFlagBitsKHR bit0, DisplayPlaneAlphaFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return DisplayPlaneAlphaFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DisplayPlaneAlphaFlagsKHR operator~( DisplayPlaneAlphaFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( DisplayPlaneAlphaFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DisplayPlaneAlphaFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DisplayPlaneAlphaFlagBitsKHR::eOpaque ) - result += "Opaque | "; - if ( value & DisplayPlaneAlphaFlagBitsKHR::eGlobal ) - result += "Global | "; - if ( value & DisplayPlaneAlphaFlagBitsKHR::ePerPixel ) - result += "PerPixel | "; - if ( value & DisplayPlaneAlphaFlagBitsKHR::ePerPixelPremultiplied ) - result += "PerPixelPremultiplied | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DisplaySurfaceCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( DisplaySurfaceCreateFlagsKHR ) - { - return "{}"; - } - - using SurfaceTransformFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SurfaceTransformFlagBitsKHR::eIdentity ) | VkFlags( SurfaceTransformFlagBitsKHR::eRotate90 ) | - VkFlags( SurfaceTransformFlagBitsKHR::eRotate180 ) | - VkFlags( SurfaceTransformFlagBitsKHR::eRotate270 ) | - VkFlags( SurfaceTransformFlagBitsKHR::eHorizontalMirror ) | - VkFlags( SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate90 ) | - VkFlags( SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate180 ) | - VkFlags( SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate270 ) | - VkFlags( SurfaceTransformFlagBitsKHR::eInherit ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceTransformFlagsKHR - operator|( SurfaceTransformFlagBitsKHR bit0, SurfaceTransformFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return SurfaceTransformFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceTransformFlagsKHR - operator&( SurfaceTransformFlagBitsKHR bit0, SurfaceTransformFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return SurfaceTransformFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceTransformFlagsKHR - operator^( SurfaceTransformFlagBitsKHR bit0, SurfaceTransformFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return SurfaceTransformFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceTransformFlagsKHR operator~( SurfaceTransformFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SurfaceTransformFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SurfaceTransformFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SurfaceTransformFlagBitsKHR::eIdentity ) - result += "Identity | "; - if ( value & SurfaceTransformFlagBitsKHR::eRotate90 ) - result += "Rotate90 | "; - if ( value & SurfaceTransformFlagBitsKHR::eRotate180 ) - result += "Rotate180 | "; - if ( value & SurfaceTransformFlagBitsKHR::eRotate270 ) - result += "Rotate270 | "; - if ( value & SurfaceTransformFlagBitsKHR::eHorizontalMirror ) - result += "HorizontalMirror | "; - if ( value & SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate90 ) - result += "HorizontalMirrorRotate90 | "; - if ( value & SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate180 ) - result += "HorizontalMirrorRotate180 | "; - if ( value & SurfaceTransformFlagBitsKHR::eHorizontalMirrorRotate270 ) - result += "HorizontalMirrorRotate270 | "; - if ( value & SurfaceTransformFlagBitsKHR::eInherit ) - result += "Inherit | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - using XlibSurfaceCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( XlibSurfaceCreateFlagsKHR ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - using XcbSurfaceCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( XcbSurfaceCreateFlagsKHR ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - using WaylandSurfaceCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( WaylandSurfaceCreateFlagsKHR ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - using AndroidSurfaceCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( AndroidSurfaceCreateFlagsKHR ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - using Win32SurfaceCreateFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( Win32SurfaceCreateFlagsKHR ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - using DebugReportFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DebugReportFlagBitsEXT::eInformation ) | VkFlags( DebugReportFlagBitsEXT::eWarning ) | - VkFlags( DebugReportFlagBitsEXT::ePerformanceWarning ) | VkFlags( DebugReportFlagBitsEXT::eError ) | - VkFlags( DebugReportFlagBitsEXT::eDebug ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugReportFlagsEXT - operator|( DebugReportFlagBitsEXT bit0, DebugReportFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugReportFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugReportFlagsEXT - operator&( DebugReportFlagBitsEXT bit0, DebugReportFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugReportFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugReportFlagsEXT - operator^( DebugReportFlagBitsEXT bit0, DebugReportFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugReportFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugReportFlagsEXT operator~( DebugReportFlagBitsEXT bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( DebugReportFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DebugReportFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DebugReportFlagBitsEXT::eInformation ) - result += "Information | "; - if ( value & DebugReportFlagBitsEXT::eWarning ) - result += "Warning | "; - if ( value & DebugReportFlagBitsEXT::ePerformanceWarning ) - result += "PerformanceWarning | "; - if ( value & DebugReportFlagBitsEXT::eError ) - result += "Error | "; - if ( value & DebugReportFlagBitsEXT::eDebug ) - result += "Debug | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - using VideoCodecOperationFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoCodecOperationFlagBitsKHR::eInvalid ) -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - | VkFlags( VideoCodecOperationFlagBitsKHR::eEncodeH264EXT ) | - VkFlags( VideoCodecOperationFlagBitsKHR::eEncodeH265EXT ) | - VkFlags( VideoCodecOperationFlagBitsKHR::eDecodeH264EXT ) | - VkFlags( VideoCodecOperationFlagBitsKHR::eDecodeH265EXT ) -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodecOperationFlagsKHR - operator|( VideoCodecOperationFlagBitsKHR bit0, VideoCodecOperationFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodecOperationFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodecOperationFlagsKHR - operator&( VideoCodecOperationFlagBitsKHR bit0, VideoCodecOperationFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodecOperationFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodecOperationFlagsKHR - operator^( VideoCodecOperationFlagBitsKHR bit0, VideoCodecOperationFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodecOperationFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodecOperationFlagsKHR operator~( VideoCodecOperationFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( VideoCodecOperationFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoCodecOperationFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - if ( value & VideoCodecOperationFlagBitsKHR::eEncodeH264EXT ) - result += "EncodeH264EXT | "; - if ( value & VideoCodecOperationFlagBitsKHR::eEncodeH265EXT ) - result += "EncodeH265EXT | "; - if ( value & VideoCodecOperationFlagBitsKHR::eDecodeH264EXT ) - result += "DecodeH264EXT | "; - if ( value & VideoCodecOperationFlagBitsKHR::eDecodeH265EXT ) - result += "DecodeH265EXT | "; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoChromaSubsamplingFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoChromaSubsamplingFlagBitsKHR::eInvalid ) | - VkFlags( VideoChromaSubsamplingFlagBitsKHR::eMonochrome ) | - VkFlags( VideoChromaSubsamplingFlagBitsKHR::e420 ) | - VkFlags( VideoChromaSubsamplingFlagBitsKHR::e422 ) | VkFlags( VideoChromaSubsamplingFlagBitsKHR::e444 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoChromaSubsamplingFlagsKHR - operator|( VideoChromaSubsamplingFlagBitsKHR bit0, VideoChromaSubsamplingFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoChromaSubsamplingFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoChromaSubsamplingFlagsKHR - operator&( VideoChromaSubsamplingFlagBitsKHR bit0, VideoChromaSubsamplingFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoChromaSubsamplingFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoChromaSubsamplingFlagsKHR - operator^( VideoChromaSubsamplingFlagBitsKHR bit0, VideoChromaSubsamplingFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoChromaSubsamplingFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoChromaSubsamplingFlagsKHR - operator~( VideoChromaSubsamplingFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoChromaSubsamplingFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoChromaSubsamplingFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoChromaSubsamplingFlagBitsKHR::eMonochrome ) - result += "Monochrome | "; - if ( value & VideoChromaSubsamplingFlagBitsKHR::e420 ) - result += "420 | "; - if ( value & VideoChromaSubsamplingFlagBitsKHR::e422 ) - result += "422 | "; - if ( value & VideoChromaSubsamplingFlagBitsKHR::e444 ) - result += "444 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoComponentBitDepthFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoComponentBitDepthFlagBitsKHR::eInvalid ) | - VkFlags( VideoComponentBitDepthFlagBitsKHR::e8 ) | VkFlags( VideoComponentBitDepthFlagBitsKHR::e10 ) | - VkFlags( VideoComponentBitDepthFlagBitsKHR::e12 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoComponentBitDepthFlagsKHR - operator|( VideoComponentBitDepthFlagBitsKHR bit0, VideoComponentBitDepthFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoComponentBitDepthFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoComponentBitDepthFlagsKHR - operator&( VideoComponentBitDepthFlagBitsKHR bit0, VideoComponentBitDepthFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoComponentBitDepthFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoComponentBitDepthFlagsKHR - operator^( VideoComponentBitDepthFlagBitsKHR bit0, VideoComponentBitDepthFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoComponentBitDepthFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoComponentBitDepthFlagsKHR - operator~( VideoComponentBitDepthFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoComponentBitDepthFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoComponentBitDepthFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoComponentBitDepthFlagBitsKHR::e8 ) - result += "8 | "; - if ( value & VideoComponentBitDepthFlagBitsKHR::e10 ) - result += "10 | "; - if ( value & VideoComponentBitDepthFlagBitsKHR::e12 ) - result += "12 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoCapabilityFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoCapabilityFlagBitsKHR::eProtectedContent ) | - VkFlags( VideoCapabilityFlagBitsKHR::eSeparateReferenceImages ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCapabilityFlagsKHR - operator|( VideoCapabilityFlagBitsKHR bit0, VideoCapabilityFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCapabilityFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCapabilityFlagsKHR - operator&( VideoCapabilityFlagBitsKHR bit0, VideoCapabilityFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCapabilityFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCapabilityFlagsKHR - operator^( VideoCapabilityFlagBitsKHR bit0, VideoCapabilityFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCapabilityFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCapabilityFlagsKHR operator~( VideoCapabilityFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( VideoCapabilityFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoCapabilityFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoCapabilityFlagBitsKHR::eProtectedContent ) - result += "ProtectedContent | "; - if ( value & VideoCapabilityFlagBitsKHR::eSeparateReferenceImages ) - result += "SeparateReferenceImages | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoSessionCreateFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( VideoSessionCreateFlagBitsKHR::eDefault ) | VkFlags( VideoSessionCreateFlagBitsKHR::eProtectedContent ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoSessionCreateFlagsKHR - operator|( VideoSessionCreateFlagBitsKHR bit0, VideoSessionCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoSessionCreateFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoSessionCreateFlagsKHR - operator&( VideoSessionCreateFlagBitsKHR bit0, VideoSessionCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoSessionCreateFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoSessionCreateFlagsKHR - operator^( VideoSessionCreateFlagBitsKHR bit0, VideoSessionCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoSessionCreateFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoSessionCreateFlagsKHR operator~( VideoSessionCreateFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( VideoSessionCreateFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoSessionCreateFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoSessionCreateFlagBitsKHR::eProtectedContent ) - result += "ProtectedContent | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoBeginCodingFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( VideoBeginCodingFlagsKHR ) - { - return "{}"; - } - - using VideoEndCodingFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( VideoEndCodingFlagsKHR ) - { - return "{}"; - } - - using VideoCodingControlFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoCodingControlFlagBitsKHR::eDefault ) | VkFlags( VideoCodingControlFlagBitsKHR::eReset ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingControlFlagsKHR - operator|( VideoCodingControlFlagBitsKHR bit0, VideoCodingControlFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodingControlFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingControlFlagsKHR - operator&( VideoCodingControlFlagBitsKHR bit0, VideoCodingControlFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodingControlFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingControlFlagsKHR - operator^( VideoCodingControlFlagBitsKHR bit0, VideoCodingControlFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodingControlFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingControlFlagsKHR operator~( VideoCodingControlFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( VideoCodingControlFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoCodingControlFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoCodingControlFlagBitsKHR::eReset ) - result += "Reset | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoCodingQualityPresetFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoCodingQualityPresetFlagBitsKHR::eNormal ) | - VkFlags( VideoCodingQualityPresetFlagBitsKHR::ePower ) | - VkFlags( VideoCodingQualityPresetFlagBitsKHR::eQuality ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingQualityPresetFlagsKHR - operator|( VideoCodingQualityPresetFlagBitsKHR bit0, VideoCodingQualityPresetFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodingQualityPresetFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingQualityPresetFlagsKHR - operator&( VideoCodingQualityPresetFlagBitsKHR bit0, VideoCodingQualityPresetFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodingQualityPresetFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingQualityPresetFlagsKHR - operator^( VideoCodingQualityPresetFlagBitsKHR bit0, VideoCodingQualityPresetFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoCodingQualityPresetFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoCodingQualityPresetFlagsKHR - operator~( VideoCodingQualityPresetFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoCodingQualityPresetFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoCodingQualityPresetFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoCodingQualityPresetFlagBitsKHR::eNormal ) - result += "Normal | "; - if ( value & VideoCodingQualityPresetFlagBitsKHR::ePower ) - result += "Power | "; - if ( value & VideoCodingQualityPresetFlagBitsKHR::eQuality ) - result += "Quality | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - using VideoDecodeFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoDecodeFlagBitsKHR::eDefault ) | VkFlags( VideoDecodeFlagBitsKHR::eReserved0 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeFlagsKHR - operator|( VideoDecodeFlagBitsKHR bit0, VideoDecodeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoDecodeFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeFlagsKHR - operator&( VideoDecodeFlagBitsKHR bit0, VideoDecodeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoDecodeFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeFlagsKHR - operator^( VideoDecodeFlagBitsKHR bit0, VideoDecodeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoDecodeFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeFlagsKHR operator~( VideoDecodeFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( VideoDecodeFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoDecodeFlagBitsKHR::eReserved0 ) - result += "Reserved0 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - using PipelineRasterizationStateStreamCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationStateStreamCreateFlagsEXT ) - { - return "{}"; - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h264 === - - using VideoEncodeH264CapabilityFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eCabac ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eCavlc ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eWeightedBiPredImplicit ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eTransform8X8 ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eChromaQpOffset ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eSecondChromaQpOffset ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterDisabled ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterEnabled ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterPartial ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eMultipleSlicePerFrame ) | - VkFlags( VideoEncodeH264CapabilityFlagBitsEXT::eEvenlyDistributedSliceSize ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CapabilityFlagsEXT operator|( - VideoEncodeH264CapabilityFlagBitsEXT bit0, VideoEncodeH264CapabilityFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264CapabilityFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CapabilityFlagsEXT operator&( - VideoEncodeH264CapabilityFlagBitsEXT bit0, VideoEncodeH264CapabilityFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264CapabilityFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CapabilityFlagsEXT operator^( - VideoEncodeH264CapabilityFlagBitsEXT bit0, VideoEncodeH264CapabilityFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264CapabilityFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CapabilityFlagsEXT - operator~( VideoEncodeH264CapabilityFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH264CapabilityFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264CapabilityFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eCabac ) - result += "Cabac | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eCavlc ) - result += "Cavlc | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eWeightedBiPredImplicit ) - result += "WeightedBiPredImplicit | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eTransform8X8 ) - result += "Transform8X8 | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eChromaQpOffset ) - result += "ChromaQpOffset | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eSecondChromaQpOffset ) - result += "SecondChromaQpOffset | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterDisabled ) - result += "DeblockingFilterDisabled | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterEnabled ) - result += "DeblockingFilterEnabled | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eDeblockingFilterPartial ) - result += "DeblockingFilterPartial | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eMultipleSlicePerFrame ) - result += "MultipleSlicePerFrame | "; - if ( value & VideoEncodeH264CapabilityFlagBitsEXT::eEvenlyDistributedSliceSize ) - result += "EvenlyDistributedSliceSize | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH264InputModeFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH264InputModeFlagBitsEXT::eFrame ) | - VkFlags( VideoEncodeH264InputModeFlagBitsEXT::eSlice ) | - VkFlags( VideoEncodeH264InputModeFlagBitsEXT::eNonVcl ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264InputModeFlagsEXT - operator|( VideoEncodeH264InputModeFlagBitsEXT bit0, VideoEncodeH264InputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264InputModeFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264InputModeFlagsEXT - operator&( VideoEncodeH264InputModeFlagBitsEXT bit0, VideoEncodeH264InputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264InputModeFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264InputModeFlagsEXT - operator^( VideoEncodeH264InputModeFlagBitsEXT bit0, VideoEncodeH264InputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264InputModeFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264InputModeFlagsEXT - operator~( VideoEncodeH264InputModeFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH264InputModeFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264InputModeFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH264InputModeFlagBitsEXT::eFrame ) - result += "Frame | "; - if ( value & VideoEncodeH264InputModeFlagBitsEXT::eSlice ) - result += "Slice | "; - if ( value & VideoEncodeH264InputModeFlagBitsEXT::eNonVcl ) - result += "NonVcl | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH264OutputModeFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH264OutputModeFlagBitsEXT::eFrame ) | - VkFlags( VideoEncodeH264OutputModeFlagBitsEXT::eSlice ) | - VkFlags( VideoEncodeH264OutputModeFlagBitsEXT::eNonVcl ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264OutputModeFlagsEXT operator|( - VideoEncodeH264OutputModeFlagBitsEXT bit0, VideoEncodeH264OutputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264OutputModeFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264OutputModeFlagsEXT operator&( - VideoEncodeH264OutputModeFlagBitsEXT bit0, VideoEncodeH264OutputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264OutputModeFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264OutputModeFlagsEXT operator^( - VideoEncodeH264OutputModeFlagBitsEXT bit0, VideoEncodeH264OutputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264OutputModeFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264OutputModeFlagsEXT - operator~( VideoEncodeH264OutputModeFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH264OutputModeFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264OutputModeFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH264OutputModeFlagBitsEXT::eFrame ) - result += "Frame | "; - if ( value & VideoEncodeH264OutputModeFlagBitsEXT::eSlice ) - result += "Slice | "; - if ( value & VideoEncodeH264OutputModeFlagBitsEXT::eNonVcl ) - result += "NonVcl | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH264CreateFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = - VkFlags( VideoEncodeH264CreateFlagBitsEXT::eDefault ) | VkFlags( VideoEncodeH264CreateFlagBitsEXT::eReserved0 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CreateFlagsEXT - operator|( VideoEncodeH264CreateFlagBitsEXT bit0, VideoEncodeH264CreateFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264CreateFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CreateFlagsEXT - operator&( VideoEncodeH264CreateFlagBitsEXT bit0, VideoEncodeH264CreateFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264CreateFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CreateFlagsEXT - operator^( VideoEncodeH264CreateFlagBitsEXT bit0, VideoEncodeH264CreateFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264CreateFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264CreateFlagsEXT - operator~( VideoEncodeH264CreateFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH264CreateFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264CreateFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH264CreateFlagBitsEXT::eReserved0 ) - result += "Reserved0 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH264RateControlStructureFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH264RateControlStructureFlagBitsEXT::eUnknown ) | - VkFlags( VideoEncodeH264RateControlStructureFlagBitsEXT::eFlat ) | - VkFlags( VideoEncodeH264RateControlStructureFlagBitsEXT::eDyadic ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlStructureFlagsEXT - operator|( VideoEncodeH264RateControlStructureFlagBitsEXT bit0, - VideoEncodeH264RateControlStructureFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264RateControlStructureFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlStructureFlagsEXT - operator&( VideoEncodeH264RateControlStructureFlagBitsEXT bit0, - VideoEncodeH264RateControlStructureFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264RateControlStructureFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlStructureFlagsEXT - operator^( VideoEncodeH264RateControlStructureFlagBitsEXT bit0, - VideoEncodeH264RateControlStructureFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH264RateControlStructureFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlStructureFlagsEXT - operator~( VideoEncodeH264RateControlStructureFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH264RateControlStructureFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH264RateControlStructureFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH264RateControlStructureFlagBitsEXT::eFlat ) - result += "Flat | "; - if ( value & VideoEncodeH264RateControlStructureFlagBitsEXT::eDyadic ) - result += "Dyadic | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h265 === - - using VideoEncodeH265CapabilityFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265CapabilityFlagsEXT ) - { - return "{}"; - } - - using VideoEncodeH265InputModeFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH265InputModeFlagBitsEXT::eFrame ) | - VkFlags( VideoEncodeH265InputModeFlagBitsEXT::eSlice ) | - VkFlags( VideoEncodeH265InputModeFlagBitsEXT::eNonVcl ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265InputModeFlagsEXT - operator|( VideoEncodeH265InputModeFlagBitsEXT bit0, VideoEncodeH265InputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265InputModeFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265InputModeFlagsEXT - operator&( VideoEncodeH265InputModeFlagBitsEXT bit0, VideoEncodeH265InputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265InputModeFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265InputModeFlagsEXT - operator^( VideoEncodeH265InputModeFlagBitsEXT bit0, VideoEncodeH265InputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265InputModeFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265InputModeFlagsEXT - operator~( VideoEncodeH265InputModeFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH265InputModeFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265InputModeFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH265InputModeFlagBitsEXT::eFrame ) - result += "Frame | "; - if ( value & VideoEncodeH265InputModeFlagBitsEXT::eSlice ) - result += "Slice | "; - if ( value & VideoEncodeH265InputModeFlagBitsEXT::eNonVcl ) - result += "NonVcl | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH265OutputModeFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH265OutputModeFlagBitsEXT::eFrame ) | - VkFlags( VideoEncodeH265OutputModeFlagBitsEXT::eSlice ) | - VkFlags( VideoEncodeH265OutputModeFlagBitsEXT::eNonVcl ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265OutputModeFlagsEXT operator|( - VideoEncodeH265OutputModeFlagBitsEXT bit0, VideoEncodeH265OutputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265OutputModeFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265OutputModeFlagsEXT operator&( - VideoEncodeH265OutputModeFlagBitsEXT bit0, VideoEncodeH265OutputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265OutputModeFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265OutputModeFlagsEXT operator^( - VideoEncodeH265OutputModeFlagBitsEXT bit0, VideoEncodeH265OutputModeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265OutputModeFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265OutputModeFlagsEXT - operator~( VideoEncodeH265OutputModeFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH265OutputModeFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265OutputModeFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH265OutputModeFlagBitsEXT::eFrame ) - result += "Frame | "; - if ( value & VideoEncodeH265OutputModeFlagBitsEXT::eSlice ) - result += "Slice | "; - if ( value & VideoEncodeH265OutputModeFlagBitsEXT::eNonVcl ) - result += "NonVcl | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH265CreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265CreateFlagsEXT ) - { - return "{}"; - } - - using VideoEncodeH265CtbSizeFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH265CtbSizeFlagBitsEXT::e8 ) | VkFlags( VideoEncodeH265CtbSizeFlagBitsEXT::e16 ) | - VkFlags( VideoEncodeH265CtbSizeFlagBitsEXT::e32 ) | VkFlags( VideoEncodeH265CtbSizeFlagBitsEXT::e64 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265CtbSizeFlagsEXT - operator|( VideoEncodeH265CtbSizeFlagBitsEXT bit0, VideoEncodeH265CtbSizeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265CtbSizeFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265CtbSizeFlagsEXT - operator&( VideoEncodeH265CtbSizeFlagBitsEXT bit0, VideoEncodeH265CtbSizeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265CtbSizeFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265CtbSizeFlagsEXT - operator^( VideoEncodeH265CtbSizeFlagBitsEXT bit0, VideoEncodeH265CtbSizeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265CtbSizeFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265CtbSizeFlagsEXT - operator~( VideoEncodeH265CtbSizeFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH265CtbSizeFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265CtbSizeFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH265CtbSizeFlagBitsEXT::e8 ) - result += "8 | "; - if ( value & VideoEncodeH265CtbSizeFlagBitsEXT::e16 ) - result += "16 | "; - if ( value & VideoEncodeH265CtbSizeFlagBitsEXT::e32 ) - result += "32 | "; - if ( value & VideoEncodeH265CtbSizeFlagBitsEXT::e64 ) - result += "64 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeH265RateControlStructureFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeH265RateControlStructureFlagBitsEXT::eUnknown ) | - VkFlags( VideoEncodeH265RateControlStructureFlagBitsEXT::eFlat ) | - VkFlags( VideoEncodeH265RateControlStructureFlagBitsEXT::eDyadic ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlStructureFlagsEXT - operator|( VideoEncodeH265RateControlStructureFlagBitsEXT bit0, - VideoEncodeH265RateControlStructureFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265RateControlStructureFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlStructureFlagsEXT - operator&( VideoEncodeH265RateControlStructureFlagBitsEXT bit0, - VideoEncodeH265RateControlStructureFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265RateControlStructureFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlStructureFlagsEXT - operator^( VideoEncodeH265RateControlStructureFlagBitsEXT bit0, - VideoEncodeH265RateControlStructureFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeH265RateControlStructureFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlStructureFlagsEXT - operator~( VideoEncodeH265RateControlStructureFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeH265RateControlStructureFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeH265RateControlStructureFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeH265RateControlStructureFlagBitsEXT::eFlat ) - result += "Flat | "; - if ( value & VideoEncodeH265RateControlStructureFlagBitsEXT::eDyadic ) - result += "Dyadic | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h264 === - - using VideoDecodeH264PictureLayoutFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoDecodeH264PictureLayoutFlagBitsEXT::eProgressive ) | - VkFlags( VideoDecodeH264PictureLayoutFlagBitsEXT::eInterlacedInterleavedLines ) | - VkFlags( VideoDecodeH264PictureLayoutFlagBitsEXT::eInterlacedSeparatePlanes ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeH264PictureLayoutFlagsEXT operator|( - VideoDecodeH264PictureLayoutFlagBitsEXT bit0, VideoDecodeH264PictureLayoutFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoDecodeH264PictureLayoutFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeH264PictureLayoutFlagsEXT operator&( - VideoDecodeH264PictureLayoutFlagBitsEXT bit0, VideoDecodeH264PictureLayoutFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoDecodeH264PictureLayoutFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeH264PictureLayoutFlagsEXT operator^( - VideoDecodeH264PictureLayoutFlagBitsEXT bit0, VideoDecodeH264PictureLayoutFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoDecodeH264PictureLayoutFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoDecodeH264PictureLayoutFlagsEXT - operator~( VideoDecodeH264PictureLayoutFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoDecodeH264PictureLayoutFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeH264PictureLayoutFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoDecodeH264PictureLayoutFlagBitsEXT::eInterlacedInterleavedLines ) - result += "InterlacedInterleavedLines | "; - if ( value & VideoDecodeH264PictureLayoutFlagBitsEXT::eInterlacedSeparatePlanes ) - result += "InterlacedSeparatePlanes | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoDecodeH264CreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeH264CreateFlagsEXT ) - { - return "{}"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - using StreamDescriptorSurfaceCreateFlagsGGP = Flags; - - VULKAN_HPP_INLINE std::string to_string( StreamDescriptorSurfaceCreateFlagsGGP ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - - using ExternalMemoryHandleTypeFlagsNV = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalMemoryHandleTypeFlagBitsNV::eOpaqueWin32 ) | - VkFlags( ExternalMemoryHandleTypeFlagBitsNV::eOpaqueWin32Kmt ) | - VkFlags( ExternalMemoryHandleTypeFlagBitsNV::eD3D11Image ) | - VkFlags( ExternalMemoryHandleTypeFlagBitsNV::eD3D11ImageKmt ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlagsNV - operator|( ExternalMemoryHandleTypeFlagBitsNV bit0, ExternalMemoryHandleTypeFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryHandleTypeFlagsNV( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlagsNV - operator&( ExternalMemoryHandleTypeFlagBitsNV bit0, ExternalMemoryHandleTypeFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryHandleTypeFlagsNV( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlagsNV - operator^( ExternalMemoryHandleTypeFlagBitsNV bit0, ExternalMemoryHandleTypeFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryHandleTypeFlagsNV( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryHandleTypeFlagsNV - operator~( ExternalMemoryHandleTypeFlagBitsNV bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ExternalMemoryHandleTypeFlagsNV( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryHandleTypeFlagsNV value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalMemoryHandleTypeFlagBitsNV::eOpaqueWin32 ) - result += "OpaqueWin32 | "; - if ( value & ExternalMemoryHandleTypeFlagBitsNV::eOpaqueWin32Kmt ) - result += "OpaqueWin32Kmt | "; - if ( value & ExternalMemoryHandleTypeFlagBitsNV::eD3D11Image ) - result += "D3D11Image | "; - if ( value & ExternalMemoryHandleTypeFlagBitsNV::eD3D11ImageKmt ) - result += "D3D11ImageKmt | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using ExternalMemoryFeatureFlagsNV = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ExternalMemoryFeatureFlagBitsNV::eDedicatedOnly ) | - VkFlags( ExternalMemoryFeatureFlagBitsNV::eExportable ) | - VkFlags( ExternalMemoryFeatureFlagBitsNV::eImportable ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlagsNV - operator|( ExternalMemoryFeatureFlagBitsNV bit0, ExternalMemoryFeatureFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryFeatureFlagsNV( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlagsNV - operator&( ExternalMemoryFeatureFlagBitsNV bit0, ExternalMemoryFeatureFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryFeatureFlagsNV( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlagsNV - operator^( ExternalMemoryFeatureFlagBitsNV bit0, ExternalMemoryFeatureFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return ExternalMemoryFeatureFlagsNV( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ExternalMemoryFeatureFlagsNV operator~( ExternalMemoryFeatureFlagBitsNV bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ExternalMemoryFeatureFlagsNV( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ExternalMemoryFeatureFlagsNV value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ExternalMemoryFeatureFlagBitsNV::eDedicatedOnly ) - result += "DedicatedOnly | "; - if ( value & ExternalMemoryFeatureFlagBitsNV::eExportable ) - result += "Exportable | "; - if ( value & ExternalMemoryFeatureFlagBitsNV::eImportable ) - result += "Importable | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - using ViSurfaceCreateFlagsNN = Flags; - - VULKAN_HPP_INLINE std::string to_string( ViSurfaceCreateFlagsNN ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_EXT_conditional_rendering === - - using ConditionalRenderingFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ConditionalRenderingFlagBitsEXT::eInverted ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ConditionalRenderingFlagsEXT - operator|( ConditionalRenderingFlagBitsEXT bit0, ConditionalRenderingFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return ConditionalRenderingFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ConditionalRenderingFlagsEXT - operator&( ConditionalRenderingFlagBitsEXT bit0, ConditionalRenderingFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return ConditionalRenderingFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ConditionalRenderingFlagsEXT - operator^( ConditionalRenderingFlagBitsEXT bit0, ConditionalRenderingFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return ConditionalRenderingFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ConditionalRenderingFlagsEXT operator~( ConditionalRenderingFlagBitsEXT bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( ConditionalRenderingFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ConditionalRenderingFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ConditionalRenderingFlagBitsEXT::eInverted ) - result += "Inverted | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_EXT_display_surface_counter === - - using SurfaceCounterFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( SurfaceCounterFlagBitsEXT::eVblank ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceCounterFlagsEXT - operator|( SurfaceCounterFlagBitsEXT bit0, SurfaceCounterFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return SurfaceCounterFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceCounterFlagsEXT - operator&( SurfaceCounterFlagBitsEXT bit0, SurfaceCounterFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return SurfaceCounterFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceCounterFlagsEXT - operator^( SurfaceCounterFlagBitsEXT bit0, SurfaceCounterFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return SurfaceCounterFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR SurfaceCounterFlagsEXT operator~( SurfaceCounterFlagBitsEXT bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( SurfaceCounterFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( SurfaceCounterFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & SurfaceCounterFlagBitsEXT::eVblank ) - result += "Vblank | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_NV_viewport_swizzle === - - using PipelineViewportSwizzleStateCreateFlagsNV = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineViewportSwizzleStateCreateFlagsNV ) - { - return "{}"; - } - - //=== VK_EXT_discard_rectangles === - - using PipelineDiscardRectangleStateCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineDiscardRectangleStateCreateFlagsEXT ) - { - return "{}"; - } - - //=== VK_EXT_conservative_rasterization === - - using PipelineRasterizationConservativeStateCreateFlagsEXT = - Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationConservativeStateCreateFlagsEXT ) - { - return "{}"; - } - - //=== VK_EXT_depth_clip_enable === - - using PipelineRasterizationDepthClipStateCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationDepthClipStateCreateFlagsEXT ) - { - return "{}"; - } - - //=== VK_KHR_performance_query === - - using PerformanceCounterDescriptionFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( PerformanceCounterDescriptionFlagBitsKHR::ePerformanceImpacting ) | - VkFlags( PerformanceCounterDescriptionFlagBitsKHR::eConcurrentlyImpacted ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PerformanceCounterDescriptionFlagsKHR operator|( - PerformanceCounterDescriptionFlagBitsKHR bit0, PerformanceCounterDescriptionFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return PerformanceCounterDescriptionFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PerformanceCounterDescriptionFlagsKHR operator&( - PerformanceCounterDescriptionFlagBitsKHR bit0, PerformanceCounterDescriptionFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return PerformanceCounterDescriptionFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PerformanceCounterDescriptionFlagsKHR operator^( - PerformanceCounterDescriptionFlagBitsKHR bit0, PerformanceCounterDescriptionFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return PerformanceCounterDescriptionFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR PerformanceCounterDescriptionFlagsKHR - operator~( PerformanceCounterDescriptionFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( PerformanceCounterDescriptionFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( PerformanceCounterDescriptionFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & PerformanceCounterDescriptionFlagBitsKHR::ePerformanceImpacting ) - result += "PerformanceImpacting | "; - if ( value & PerformanceCounterDescriptionFlagBitsKHR::eConcurrentlyImpacted ) - result += "ConcurrentlyImpacted | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using AcquireProfilingLockFlagsKHR = Flags; - - VULKAN_HPP_INLINE std::string to_string( AcquireProfilingLockFlagsKHR ) - { - return "{}"; - } - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - using IOSSurfaceCreateFlagsMVK = Flags; - - VULKAN_HPP_INLINE std::string to_string( IOSSurfaceCreateFlagsMVK ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - using MacOSSurfaceCreateFlagsMVK = Flags; - - VULKAN_HPP_INLINE std::string to_string( MacOSSurfaceCreateFlagsMVK ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - using DebugUtilsMessageSeverityFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DebugUtilsMessageSeverityFlagBitsEXT::eVerbose ) | - VkFlags( DebugUtilsMessageSeverityFlagBitsEXT::eInfo ) | - VkFlags( DebugUtilsMessageSeverityFlagBitsEXT::eWarning ) | - VkFlags( DebugUtilsMessageSeverityFlagBitsEXT::eError ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageSeverityFlagsEXT operator|( - DebugUtilsMessageSeverityFlagBitsEXT bit0, DebugUtilsMessageSeverityFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugUtilsMessageSeverityFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageSeverityFlagsEXT operator&( - DebugUtilsMessageSeverityFlagBitsEXT bit0, DebugUtilsMessageSeverityFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugUtilsMessageSeverityFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageSeverityFlagsEXT operator^( - DebugUtilsMessageSeverityFlagBitsEXT bit0, DebugUtilsMessageSeverityFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugUtilsMessageSeverityFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageSeverityFlagsEXT - operator~( DebugUtilsMessageSeverityFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( DebugUtilsMessageSeverityFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessageSeverityFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DebugUtilsMessageSeverityFlagBitsEXT::eVerbose ) - result += "Verbose | "; - if ( value & DebugUtilsMessageSeverityFlagBitsEXT::eInfo ) - result += "Info | "; - if ( value & DebugUtilsMessageSeverityFlagBitsEXT::eWarning ) - result += "Warning | "; - if ( value & DebugUtilsMessageSeverityFlagBitsEXT::eError ) - result += "Error | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DebugUtilsMessageTypeFlagsEXT = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DebugUtilsMessageTypeFlagBitsEXT::eGeneral ) | - VkFlags( DebugUtilsMessageTypeFlagBitsEXT::eValidation ) | - VkFlags( DebugUtilsMessageTypeFlagBitsEXT::ePerformance ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageTypeFlagsEXT - operator|( DebugUtilsMessageTypeFlagBitsEXT bit0, DebugUtilsMessageTypeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugUtilsMessageTypeFlagsEXT( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageTypeFlagsEXT - operator&( DebugUtilsMessageTypeFlagBitsEXT bit0, DebugUtilsMessageTypeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugUtilsMessageTypeFlagsEXT( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageTypeFlagsEXT - operator^( DebugUtilsMessageTypeFlagBitsEXT bit0, DebugUtilsMessageTypeFlagBitsEXT bit1 ) VULKAN_HPP_NOEXCEPT - { - return DebugUtilsMessageTypeFlagsEXT( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DebugUtilsMessageTypeFlagsEXT - operator~( DebugUtilsMessageTypeFlagBitsEXT bits ) VULKAN_HPP_NOEXCEPT - { - return ~( DebugUtilsMessageTypeFlagsEXT( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessageTypeFlagsEXT value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DebugUtilsMessageTypeFlagBitsEXT::eGeneral ) - result += "General | "; - if ( value & DebugUtilsMessageTypeFlagBitsEXT::eValidation ) - result += "Validation | "; - if ( value & DebugUtilsMessageTypeFlagBitsEXT::ePerformance ) - result += "Performance | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using DebugUtilsMessengerCallbackDataFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessengerCallbackDataFlagsEXT ) - { - return "{}"; - } - - using DebugUtilsMessengerCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( DebugUtilsMessengerCreateFlagsEXT ) - { - return "{}"; - } - - //=== VK_NV_fragment_coverage_to_color === - - using PipelineCoverageToColorStateCreateFlagsNV = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineCoverageToColorStateCreateFlagsNV ) - { - return "{}"; - } - - //=== VK_KHR_acceleration_structure === - - using GeometryFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( GeometryFlagBitsKHR::eOpaque ) | VkFlags( GeometryFlagBitsKHR::eNoDuplicateAnyHitInvocation ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryFlagsKHR operator|( GeometryFlagBitsKHR bit0, - GeometryFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return GeometryFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryFlagsKHR operator&( GeometryFlagBitsKHR bit0, - GeometryFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return GeometryFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryFlagsKHR operator^( GeometryFlagBitsKHR bit0, - GeometryFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return GeometryFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryFlagsKHR operator~( GeometryFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( GeometryFlagsKHR( bits ) ); - } - - using GeometryFlagsNV = GeometryFlagsKHR; - - VULKAN_HPP_INLINE std::string to_string( GeometryFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & GeometryFlagBitsKHR::eOpaque ) - result += "Opaque | "; - if ( value & GeometryFlagBitsKHR::eNoDuplicateAnyHitInvocation ) - result += "NoDuplicateAnyHitInvocation | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using GeometryInstanceFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( GeometryInstanceFlagBitsKHR::eTriangleFacingCullDisable ) | - VkFlags( GeometryInstanceFlagBitsKHR::eTriangleFlipFacing ) | - VkFlags( GeometryInstanceFlagBitsKHR::eForceOpaque ) | - VkFlags( GeometryInstanceFlagBitsKHR::eForceNoOpaque ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryInstanceFlagsKHR - operator|( GeometryInstanceFlagBitsKHR bit0, GeometryInstanceFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return GeometryInstanceFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryInstanceFlagsKHR - operator&( GeometryInstanceFlagBitsKHR bit0, GeometryInstanceFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return GeometryInstanceFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryInstanceFlagsKHR - operator^( GeometryInstanceFlagBitsKHR bit0, GeometryInstanceFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return GeometryInstanceFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR GeometryInstanceFlagsKHR operator~( GeometryInstanceFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( GeometryInstanceFlagsKHR( bits ) ); - } - - using GeometryInstanceFlagsNV = GeometryInstanceFlagsKHR; - - VULKAN_HPP_INLINE std::string to_string( GeometryInstanceFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & GeometryInstanceFlagBitsKHR::eTriangleFacingCullDisable ) - result += "TriangleFacingCullDisable | "; - if ( value & GeometryInstanceFlagBitsKHR::eTriangleFlipFacing ) - result += "TriangleFlipFacing | "; - if ( value & GeometryInstanceFlagBitsKHR::eForceOpaque ) - result += "ForceOpaque | "; - if ( value & GeometryInstanceFlagBitsKHR::eForceNoOpaque ) - result += "ForceNoOpaque | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using BuildAccelerationStructureFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( BuildAccelerationStructureFlagBitsKHR::eAllowUpdate ) | - VkFlags( BuildAccelerationStructureFlagBitsKHR::eAllowCompaction ) | - VkFlags( BuildAccelerationStructureFlagBitsKHR::ePreferFastTrace ) | - VkFlags( BuildAccelerationStructureFlagBitsKHR::ePreferFastBuild ) | - VkFlags( BuildAccelerationStructureFlagBitsKHR::eLowMemory ) | - VkFlags( BuildAccelerationStructureFlagBitsKHR::eMotionNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BuildAccelerationStructureFlagsKHR operator|( - BuildAccelerationStructureFlagBitsKHR bit0, BuildAccelerationStructureFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return BuildAccelerationStructureFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BuildAccelerationStructureFlagsKHR operator&( - BuildAccelerationStructureFlagBitsKHR bit0, BuildAccelerationStructureFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return BuildAccelerationStructureFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BuildAccelerationStructureFlagsKHR operator^( - BuildAccelerationStructureFlagBitsKHR bit0, BuildAccelerationStructureFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return BuildAccelerationStructureFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR BuildAccelerationStructureFlagsKHR - operator~( BuildAccelerationStructureFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( BuildAccelerationStructureFlagsKHR( bits ) ); - } - - using BuildAccelerationStructureFlagsNV = BuildAccelerationStructureFlagsKHR; - - VULKAN_HPP_INLINE std::string to_string( BuildAccelerationStructureFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & BuildAccelerationStructureFlagBitsKHR::eAllowUpdate ) - result += "AllowUpdate | "; - if ( value & BuildAccelerationStructureFlagBitsKHR::eAllowCompaction ) - result += "AllowCompaction | "; - if ( value & BuildAccelerationStructureFlagBitsKHR::ePreferFastTrace ) - result += "PreferFastTrace | "; - if ( value & BuildAccelerationStructureFlagBitsKHR::ePreferFastBuild ) - result += "PreferFastBuild | "; - if ( value & BuildAccelerationStructureFlagBitsKHR::eLowMemory ) - result += "LowMemory | "; - if ( value & BuildAccelerationStructureFlagBitsKHR::eMotionNV ) - result += "MotionNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using AccelerationStructureCreateFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( AccelerationStructureCreateFlagBitsKHR::eDeviceAddressCaptureReplay ) | - VkFlags( AccelerationStructureCreateFlagBitsKHR::eMotionNV ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccelerationStructureCreateFlagsKHR operator|( - AccelerationStructureCreateFlagBitsKHR bit0, AccelerationStructureCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccelerationStructureCreateFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccelerationStructureCreateFlagsKHR operator&( - AccelerationStructureCreateFlagBitsKHR bit0, AccelerationStructureCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccelerationStructureCreateFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccelerationStructureCreateFlagsKHR operator^( - AccelerationStructureCreateFlagBitsKHR bit0, AccelerationStructureCreateFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return AccelerationStructureCreateFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR AccelerationStructureCreateFlagsKHR - operator~( AccelerationStructureCreateFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( AccelerationStructureCreateFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureCreateFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & AccelerationStructureCreateFlagBitsKHR::eDeviceAddressCaptureReplay ) - result += "DeviceAddressCaptureReplay | "; - if ( value & AccelerationStructureCreateFlagBitsKHR::eMotionNV ) - result += "MotionNV | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_NV_framebuffer_mixed_samples === - - using PipelineCoverageModulationStateCreateFlagsNV = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineCoverageModulationStateCreateFlagsNV ) - { - return "{}"; - } - - //=== VK_EXT_validation_cache === - - using ValidationCacheCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( ValidationCacheCreateFlagsEXT ) - { - return "{}"; - } - - //=== VK_AMD_pipeline_compiler_control === - - using PipelineCompilerControlFlagsAMD = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineCompilerControlFlagsAMD ) - { - return "{}"; - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h265 === - - using VideoDecodeH265CreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( VideoDecodeH265CreateFlagsEXT ) - { - return "{}"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - using ImagePipeSurfaceCreateFlagsFUCHSIA = Flags; - - VULKAN_HPP_INLINE std::string to_string( ImagePipeSurfaceCreateFlagsFUCHSIA ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - using MetalSurfaceCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( MetalSurfaceCreateFlagsEXT ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_AMD_shader_core_properties2 === - - using ShaderCorePropertiesFlagsAMD = Flags; - - VULKAN_HPP_INLINE std::string to_string( ShaderCorePropertiesFlagsAMD ) - { - return "{}"; - } - - //=== VK_NV_coverage_reduction_mode === - - using PipelineCoverageReductionStateCreateFlagsNV = Flags; - - VULKAN_HPP_INLINE std::string to_string( PipelineCoverageReductionStateCreateFlagsNV ) - { - return "{}"; - } - - //=== VK_EXT_headless_surface === - - using HeadlessSurfaceCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( HeadlessSurfaceCreateFlagsEXT ) - { - return "{}"; - } - - //=== VK_NV_device_generated_commands === - - using IndirectStateFlagsNV = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( IndirectStateFlagBitsNV::eFlagFrontface ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectStateFlagsNV - operator|( IndirectStateFlagBitsNV bit0, IndirectStateFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return IndirectStateFlagsNV( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectStateFlagsNV - operator&( IndirectStateFlagBitsNV bit0, IndirectStateFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return IndirectStateFlagsNV( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectStateFlagsNV - operator^( IndirectStateFlagBitsNV bit0, IndirectStateFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return IndirectStateFlagsNV( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectStateFlagsNV operator~( IndirectStateFlagBitsNV bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( IndirectStateFlagsNV( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( IndirectStateFlagsNV value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & IndirectStateFlagBitsNV::eFlagFrontface ) - result += "FlagFrontface | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using IndirectCommandsLayoutUsageFlagsNV = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( IndirectCommandsLayoutUsageFlagBitsNV::eExplicitPreprocess ) | - VkFlags( IndirectCommandsLayoutUsageFlagBitsNV::eIndexedSequences ) | - VkFlags( IndirectCommandsLayoutUsageFlagBitsNV::eUnorderedSequences ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutUsageFlagsNV operator|( - IndirectCommandsLayoutUsageFlagBitsNV bit0, IndirectCommandsLayoutUsageFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return IndirectCommandsLayoutUsageFlagsNV( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutUsageFlagsNV operator&( - IndirectCommandsLayoutUsageFlagBitsNV bit0, IndirectCommandsLayoutUsageFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return IndirectCommandsLayoutUsageFlagsNV( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutUsageFlagsNV operator^( - IndirectCommandsLayoutUsageFlagBitsNV bit0, IndirectCommandsLayoutUsageFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return IndirectCommandsLayoutUsageFlagsNV( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutUsageFlagsNV - operator~( IndirectCommandsLayoutUsageFlagBitsNV bits ) VULKAN_HPP_NOEXCEPT - { - return ~( IndirectCommandsLayoutUsageFlagsNV( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( IndirectCommandsLayoutUsageFlagsNV value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & IndirectCommandsLayoutUsageFlagBitsNV::eExplicitPreprocess ) - result += "ExplicitPreprocess | "; - if ( value & IndirectCommandsLayoutUsageFlagBitsNV::eIndexedSequences ) - result += "IndexedSequences | "; - if ( value & IndirectCommandsLayoutUsageFlagBitsNV::eUnorderedSequences ) - result += "UnorderedSequences | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_EXT_device_memory_report === - - using DeviceMemoryReportFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( DeviceMemoryReportFlagsEXT ) - { - return "{}"; - } - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - using VideoEncodeFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeFlagBitsKHR::eDefault ) | VkFlags( VideoEncodeFlagBitsKHR::eReserved0 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeFlagsKHR - operator|( VideoEncodeFlagBitsKHR bit0, VideoEncodeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeFlagsKHR - operator&( VideoEncodeFlagBitsKHR bit0, VideoEncodeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeFlagsKHR - operator^( VideoEncodeFlagBitsKHR bit0, VideoEncodeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeFlagsKHR operator~( VideoEncodeFlagBitsKHR bits ) - VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeFlagBitsKHR::eReserved0 ) - result += "Reserved0 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeRateControlFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeRateControlFlagBitsKHR::eDefault ) | - VkFlags( VideoEncodeRateControlFlagBitsKHR::eReserved0 ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlFlagsKHR - operator|( VideoEncodeRateControlFlagBitsKHR bit0, VideoEncodeRateControlFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeRateControlFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlFlagsKHR - operator&( VideoEncodeRateControlFlagBitsKHR bit0, VideoEncodeRateControlFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeRateControlFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlFlagsKHR - operator^( VideoEncodeRateControlFlagBitsKHR bit0, VideoEncodeRateControlFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeRateControlFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlFlagsKHR - operator~( VideoEncodeRateControlFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeRateControlFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeRateControlFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & VideoEncodeRateControlFlagBitsKHR::eReserved0 ) - result += "Reserved0 | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - using VideoEncodeRateControlModeFlagsKHR = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( VideoEncodeRateControlModeFlagBitsKHR::eNone ) | - VkFlags( VideoEncodeRateControlModeFlagBitsKHR::eCbr ) | - VkFlags( VideoEncodeRateControlModeFlagBitsKHR::eVbr ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlModeFlagsKHR operator|( - VideoEncodeRateControlModeFlagBitsKHR bit0, VideoEncodeRateControlModeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeRateControlModeFlagsKHR( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlModeFlagsKHR operator&( - VideoEncodeRateControlModeFlagBitsKHR bit0, VideoEncodeRateControlModeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeRateControlModeFlagsKHR( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlModeFlagsKHR operator^( - VideoEncodeRateControlModeFlagBitsKHR bit0, VideoEncodeRateControlModeFlagBitsKHR bit1 ) VULKAN_HPP_NOEXCEPT - { - return VideoEncodeRateControlModeFlagsKHR( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR VideoEncodeRateControlModeFlagsKHR - operator~( VideoEncodeRateControlModeFlagBitsKHR bits ) VULKAN_HPP_NOEXCEPT - { - return ~( VideoEncodeRateControlModeFlagsKHR( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( VideoEncodeRateControlModeFlagsKHR value ) - { - if ( !value ) - return "{}"; - - std::string result; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_device_diagnostics_config === - - using DeviceDiagnosticsConfigFlagsNV = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( DeviceDiagnosticsConfigFlagBitsNV::eEnableShaderDebugInfo ) | - VkFlags( DeviceDiagnosticsConfigFlagBitsNV::eEnableResourceTracking ) | - VkFlags( DeviceDiagnosticsConfigFlagBitsNV::eEnableAutomaticCheckpoints ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceDiagnosticsConfigFlagsNV - operator|( DeviceDiagnosticsConfigFlagBitsNV bit0, DeviceDiagnosticsConfigFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceDiagnosticsConfigFlagsNV( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceDiagnosticsConfigFlagsNV - operator&( DeviceDiagnosticsConfigFlagBitsNV bit0, DeviceDiagnosticsConfigFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceDiagnosticsConfigFlagsNV( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceDiagnosticsConfigFlagsNV - operator^( DeviceDiagnosticsConfigFlagBitsNV bit0, DeviceDiagnosticsConfigFlagBitsNV bit1 ) VULKAN_HPP_NOEXCEPT - { - return DeviceDiagnosticsConfigFlagsNV( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR DeviceDiagnosticsConfigFlagsNV - operator~( DeviceDiagnosticsConfigFlagBitsNV bits ) VULKAN_HPP_NOEXCEPT - { - return ~( DeviceDiagnosticsConfigFlagsNV( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( DeviceDiagnosticsConfigFlagsNV value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & DeviceDiagnosticsConfigFlagBitsNV::eEnableShaderDebugInfo ) - result += "EnableShaderDebugInfo | "; - if ( value & DeviceDiagnosticsConfigFlagBitsNV::eEnableResourceTracking ) - result += "EnableResourceTracking | "; - if ( value & DeviceDiagnosticsConfigFlagBitsNV::eEnableAutomaticCheckpoints ) - result += "EnableAutomaticCheckpoints | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } - - //=== VK_NV_ray_tracing_motion_blur === - - using AccelerationStructureMotionInfoFlagsNV = Flags; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureMotionInfoFlagsNV ) - { - return "{}"; - } - - using AccelerationStructureMotionInstanceFlagsNV = Flags; - - VULKAN_HPP_INLINE std::string to_string( AccelerationStructureMotionInstanceFlagsNV ) - { - return "{}"; - } - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - using DirectFBSurfaceCreateFlagsEXT = Flags; - - VULKAN_HPP_INLINE std::string to_string( DirectFBSurfaceCreateFlagsEXT ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - using ImageFormatConstraintsFlagsFUCHSIA = Flags; - - VULKAN_HPP_INLINE std::string to_string( ImageFormatConstraintsFlagsFUCHSIA ) - { - return "{}"; - } - - using ImageConstraintsInfoFlagsFUCHSIA = Flags; - - template <> - struct FlagTraits - { - enum : VkFlags - { - allFlags = VkFlags( ImageConstraintsInfoFlagBitsFUCHSIA::eCpuReadRarely ) | - VkFlags( ImageConstraintsInfoFlagBitsFUCHSIA::eCpuReadOften ) | - VkFlags( ImageConstraintsInfoFlagBitsFUCHSIA::eCpuWriteRarely ) | - VkFlags( ImageConstraintsInfoFlagBitsFUCHSIA::eCpuWriteOften ) | - VkFlags( ImageConstraintsInfoFlagBitsFUCHSIA::eProtectedOptional ) - }; - }; - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageConstraintsInfoFlagsFUCHSIA - operator|( ImageConstraintsInfoFlagBitsFUCHSIA bit0, ImageConstraintsInfoFlagBitsFUCHSIA bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageConstraintsInfoFlagsFUCHSIA( bit0 ) | bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageConstraintsInfoFlagsFUCHSIA - operator&( ImageConstraintsInfoFlagBitsFUCHSIA bit0, ImageConstraintsInfoFlagBitsFUCHSIA bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageConstraintsInfoFlagsFUCHSIA( bit0 ) & bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageConstraintsInfoFlagsFUCHSIA - operator^( ImageConstraintsInfoFlagBitsFUCHSIA bit0, ImageConstraintsInfoFlagBitsFUCHSIA bit1 ) VULKAN_HPP_NOEXCEPT - { - return ImageConstraintsInfoFlagsFUCHSIA( bit0 ) ^ bit1; - } - - VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR ImageConstraintsInfoFlagsFUCHSIA - operator~( ImageConstraintsInfoFlagBitsFUCHSIA bits ) VULKAN_HPP_NOEXCEPT - { - return ~( ImageConstraintsInfoFlagsFUCHSIA( bits ) ); - } - - VULKAN_HPP_INLINE std::string to_string( ImageConstraintsInfoFlagsFUCHSIA value ) - { - if ( !value ) - return "{}"; - - std::string result; - if ( value & ImageConstraintsInfoFlagBitsFUCHSIA::eCpuReadRarely ) - result += "CpuReadRarely | "; - if ( value & ImageConstraintsInfoFlagBitsFUCHSIA::eCpuReadOften ) - result += "CpuReadOften | "; - if ( value & ImageConstraintsInfoFlagBitsFUCHSIA::eCpuWriteRarely ) - result += "CpuWriteRarely | "; - if ( value & ImageConstraintsInfoFlagBitsFUCHSIA::eCpuWriteOften ) - result += "CpuWriteOften | "; - if ( value & ImageConstraintsInfoFlagBitsFUCHSIA::eProtectedOptional ) - result += "ProtectedOptional | "; - - return "{ " + result.substr( 0, result.size() - 3 ) + " }"; - } -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - using ScreenSurfaceCreateFlagsQNX = Flags; - - VULKAN_HPP_INLINE std::string to_string( ScreenSurfaceCreateFlagsQNX ) - { - return "{}"; - } -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - -} // namespace VULKAN_HPP_NAMESPACE -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_fuchsia.h b/Externals/Vulkan/Include/vulkan/vulkan_fuchsia.h deleted file mode 100644 index 61774ff9cb..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_fuchsia.h +++ /dev/null @@ -1,258 +0,0 @@ -#ifndef VULKAN_FUCHSIA_H_ -#define VULKAN_FUCHSIA_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_FUCHSIA_imagepipe_surface 1 -#define VK_FUCHSIA_IMAGEPIPE_SURFACE_SPEC_VERSION 1 -#define VK_FUCHSIA_IMAGEPIPE_SURFACE_EXTENSION_NAME "VK_FUCHSIA_imagepipe_surface" -typedef VkFlags VkImagePipeSurfaceCreateFlagsFUCHSIA; -typedef struct VkImagePipeSurfaceCreateInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkImagePipeSurfaceCreateFlagsFUCHSIA flags; - zx_handle_t imagePipeHandle; -} VkImagePipeSurfaceCreateInfoFUCHSIA; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateImagePipeSurfaceFUCHSIA)(VkInstance instance, const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateImagePipeSurfaceFUCHSIA( - VkInstance instance, - const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - - -#define VK_FUCHSIA_external_memory 1 -#define VK_FUCHSIA_EXTERNAL_MEMORY_SPEC_VERSION 1 -#define VK_FUCHSIA_EXTERNAL_MEMORY_EXTENSION_NAME "VK_FUCHSIA_external_memory" -typedef struct VkImportMemoryZirconHandleInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagBits handleType; - zx_handle_t handle; -} VkImportMemoryZirconHandleInfoFUCHSIA; - -typedef struct VkMemoryZirconHandlePropertiesFUCHSIA { - VkStructureType sType; - void* pNext; - uint32_t memoryTypeBits; -} VkMemoryZirconHandlePropertiesFUCHSIA; - -typedef struct VkMemoryGetZirconHandleInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; - VkExternalMemoryHandleTypeFlagBits handleType; -} VkMemoryGetZirconHandleInfoFUCHSIA; - -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryZirconHandleFUCHSIA)(VkDevice device, const VkMemoryGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, zx_handle_t* pZirconHandle); -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryZirconHandlePropertiesFUCHSIA)(VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, zx_handle_t zirconHandle, VkMemoryZirconHandlePropertiesFUCHSIA* pMemoryZirconHandleProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryZirconHandleFUCHSIA( - VkDevice device, - const VkMemoryGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, - zx_handle_t* pZirconHandle); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryZirconHandlePropertiesFUCHSIA( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle, - VkMemoryZirconHandlePropertiesFUCHSIA* pMemoryZirconHandleProperties); -#endif - - -#define VK_FUCHSIA_external_semaphore 1 -#define VK_FUCHSIA_EXTERNAL_SEMAPHORE_SPEC_VERSION 1 -#define VK_FUCHSIA_EXTERNAL_SEMAPHORE_EXTENSION_NAME "VK_FUCHSIA_external_semaphore" -typedef struct VkImportSemaphoreZirconHandleInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - VkSemaphoreImportFlags flags; - VkExternalSemaphoreHandleTypeFlagBits handleType; - zx_handle_t zirconHandle; -} VkImportSemaphoreZirconHandleInfoFUCHSIA; - -typedef struct VkSemaphoreGetZirconHandleInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - VkExternalSemaphoreHandleTypeFlagBits handleType; -} VkSemaphoreGetZirconHandleInfoFUCHSIA; - -typedef VkResult (VKAPI_PTR *PFN_vkImportSemaphoreZirconHandleFUCHSIA)(VkDevice device, const VkImportSemaphoreZirconHandleInfoFUCHSIA* pImportSemaphoreZirconHandleInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetSemaphoreZirconHandleFUCHSIA)(VkDevice device, const VkSemaphoreGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, zx_handle_t* pZirconHandle); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkImportSemaphoreZirconHandleFUCHSIA( - VkDevice device, - const VkImportSemaphoreZirconHandleInfoFUCHSIA* pImportSemaphoreZirconHandleInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetSemaphoreZirconHandleFUCHSIA( - VkDevice device, - const VkSemaphoreGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, - zx_handle_t* pZirconHandle); -#endif - - -#define VK_FUCHSIA_buffer_collection 1 -VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkBufferCollectionFUCHSIA) -#define VK_FUCHSIA_BUFFER_COLLECTION_SPEC_VERSION 2 -#define VK_FUCHSIA_BUFFER_COLLECTION_EXTENSION_NAME "VK_FUCHSIA_buffer_collection" -typedef VkFlags VkImageFormatConstraintsFlagsFUCHSIA; - -typedef enum VkImageConstraintsInfoFlagBitsFUCHSIA { - VK_IMAGE_CONSTRAINTS_INFO_CPU_READ_RARELY_FUCHSIA = 0x00000001, - VK_IMAGE_CONSTRAINTS_INFO_CPU_READ_OFTEN_FUCHSIA = 0x00000002, - VK_IMAGE_CONSTRAINTS_INFO_CPU_WRITE_RARELY_FUCHSIA = 0x00000004, - VK_IMAGE_CONSTRAINTS_INFO_CPU_WRITE_OFTEN_FUCHSIA = 0x00000008, - VK_IMAGE_CONSTRAINTS_INFO_PROTECTED_OPTIONAL_FUCHSIA = 0x00000010, - VK_IMAGE_CONSTRAINTS_INFO_FLAG_BITS_MAX_ENUM_FUCHSIA = 0x7FFFFFFF -} VkImageConstraintsInfoFlagBitsFUCHSIA; -typedef VkFlags VkImageConstraintsInfoFlagsFUCHSIA; -typedef struct VkBufferCollectionCreateInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - zx_handle_t collectionToken; -} VkBufferCollectionCreateInfoFUCHSIA; - -typedef struct VkImportMemoryBufferCollectionFUCHSIA { - VkStructureType sType; - const void* pNext; - VkBufferCollectionFUCHSIA collection; - uint32_t index; -} VkImportMemoryBufferCollectionFUCHSIA; - -typedef struct VkBufferCollectionImageCreateInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkBufferCollectionFUCHSIA collection; - uint32_t index; -} VkBufferCollectionImageCreateInfoFUCHSIA; - -typedef struct VkBufferCollectionConstraintsInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - uint32_t minBufferCount; - uint32_t maxBufferCount; - uint32_t minBufferCountForCamping; - uint32_t minBufferCountForDedicatedSlack; - uint32_t minBufferCountForSharedSlack; -} VkBufferCollectionConstraintsInfoFUCHSIA; - -typedef struct VkBufferConstraintsInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkBufferCreateInfo createInfo; - VkFormatFeatureFlags requiredFormatFeatures; - VkBufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints; -} VkBufferConstraintsInfoFUCHSIA; - -typedef struct VkBufferCollectionBufferCreateInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkBufferCollectionFUCHSIA collection; - uint32_t index; -} VkBufferCollectionBufferCreateInfoFUCHSIA; - -typedef struct VkSysmemColorSpaceFUCHSIA { - VkStructureType sType; - const void* pNext; - uint32_t colorSpace; -} VkSysmemColorSpaceFUCHSIA; - -typedef struct VkBufferCollectionPropertiesFUCHSIA { - VkStructureType sType; - void* pNext; - uint32_t memoryTypeBits; - uint32_t bufferCount; - uint32_t createInfoIndex; - uint64_t sysmemPixelFormat; - VkFormatFeatureFlags formatFeatures; - VkSysmemColorSpaceFUCHSIA sysmemColorSpaceIndex; - VkComponentMapping samplerYcbcrConversionComponents; - VkSamplerYcbcrModelConversion suggestedYcbcrModel; - VkSamplerYcbcrRange suggestedYcbcrRange; - VkChromaLocation suggestedXChromaOffset; - VkChromaLocation suggestedYChromaOffset; -} VkBufferCollectionPropertiesFUCHSIA; - -typedef struct VkImageFormatConstraintsInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - VkImageCreateInfo imageCreateInfo; - VkFormatFeatureFlags requiredFormatFeatures; - VkImageFormatConstraintsFlagsFUCHSIA flags; - uint64_t sysmemPixelFormat; - uint32_t colorSpaceCount; - const VkSysmemColorSpaceFUCHSIA* pColorSpaces; -} VkImageFormatConstraintsInfoFUCHSIA; - -typedef struct VkImageConstraintsInfoFUCHSIA { - VkStructureType sType; - const void* pNext; - uint32_t formatConstraintsCount; - const VkImageFormatConstraintsInfoFUCHSIA* pFormatConstraints; - VkBufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints; - VkImageConstraintsInfoFlagsFUCHSIA flags; -} VkImageConstraintsInfoFUCHSIA; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateBufferCollectionFUCHSIA)(VkDevice device, const VkBufferCollectionCreateInfoFUCHSIA* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferCollectionFUCHSIA* pCollection); -typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionImageConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkImageConstraintsInfoFUCHSIA* pImageConstraintsInfo); -typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkBufferConstraintsInfoFUCHSIA* pBufferConstraintsInfo); -typedef void (VKAPI_PTR *PFN_vkDestroyBufferCollectionFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkAllocationCallbacks* pAllocator); -typedef VkResult (VKAPI_PTR *PFN_vkGetBufferCollectionPropertiesFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, VkBufferCollectionPropertiesFUCHSIA* pProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateBufferCollectionFUCHSIA( - VkDevice device, - const VkBufferCollectionCreateInfoFUCHSIA* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkBufferCollectionFUCHSIA* pCollection); - -VKAPI_ATTR VkResult VKAPI_CALL vkSetBufferCollectionImageConstraintsFUCHSIA( - VkDevice device, - VkBufferCollectionFUCHSIA collection, - const VkImageConstraintsInfoFUCHSIA* pImageConstraintsInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkSetBufferCollectionBufferConstraintsFUCHSIA( - VkDevice device, - VkBufferCollectionFUCHSIA collection, - const VkBufferConstraintsInfoFUCHSIA* pBufferConstraintsInfo); - -VKAPI_ATTR void VKAPI_CALL vkDestroyBufferCollectionFUCHSIA( - VkDevice device, - VkBufferCollectionFUCHSIA collection, - const VkAllocationCallbacks* pAllocator); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetBufferCollectionPropertiesFUCHSIA( - VkDevice device, - VkBufferCollectionFUCHSIA collection, - VkBufferCollectionPropertiesFUCHSIA* pProperties); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_funcs.hpp b/Externals/Vulkan/Include/vulkan/vulkan_funcs.hpp deleted file mode 100644 index 8d556d68b7..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_funcs.hpp +++ /dev/null @@ -1,20957 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_FUNCS_HPP -#define VULKAN_FUNCS_HPP - -namespace VULKAN_HPP_NAMESPACE -{ - //=========================== - //=== COMMAND Definitions === - //=========================== - - //=== VK_VERSION_1_0 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - createInstance( const VULKAN_HPP_NAMESPACE::InstanceCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Instance * pInstance, - Dispatch const & d ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateInstance( reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pInstance ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - createInstance( const VULKAN_HPP_NAMESPACE::InstanceCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Instance instance; - Result result = static_cast( - d.vkCreateInstance( reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &instance ) ) ); - return createResultValue( result, instance, VULKAN_HPP_NAMESPACE_STRING "::createInstance" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createInstanceUnique( const VULKAN_HPP_NAMESPACE::InstanceCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Instance instance; - Result result = static_cast( - d.vkCreateInstance( reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &instance ) ) ); - ObjectDestroy deleter( allocator, d ); - return createResultValue( - result, instance, VULKAN_HPP_NAMESPACE_STRING "::createInstanceUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Instance::destroy( const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyInstance( m_instance, reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Instance::destroy( Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyInstance( m_instance, - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::enumeratePhysicalDevices( uint32_t * pPhysicalDeviceCount, - VULKAN_HPP_NAMESPACE::PhysicalDevice * pPhysicalDevices, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumeratePhysicalDevices( - m_instance, pPhysicalDeviceCount, reinterpret_cast( pPhysicalDevices ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::enumeratePhysicalDevices( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector physicalDevices; - uint32_t physicalDeviceCount; - Result result; - do - { - result = static_cast( d.vkEnumeratePhysicalDevices( m_instance, &physicalDeviceCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && physicalDeviceCount ) - { - physicalDevices.resize( physicalDeviceCount ); - result = static_cast( d.vkEnumeratePhysicalDevices( - m_instance, &physicalDeviceCount, reinterpret_cast( physicalDevices.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceCount <= physicalDevices.size() ); - if ( physicalDeviceCount < physicalDevices.size() ) - { - physicalDevices.resize( physicalDeviceCount ); - } - } - return createResultValue( - result, physicalDevices, VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDevices" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::enumeratePhysicalDevices( PhysicalDeviceAllocator & physicalDeviceAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector physicalDevices( physicalDeviceAllocator ); - uint32_t physicalDeviceCount; - Result result; - do - { - result = static_cast( d.vkEnumeratePhysicalDevices( m_instance, &physicalDeviceCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && physicalDeviceCount ) - { - physicalDevices.resize( physicalDeviceCount ); - result = static_cast( d.vkEnumeratePhysicalDevices( - m_instance, &physicalDeviceCount, reinterpret_cast( physicalDevices.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceCount <= physicalDevices.size() ); - if ( physicalDeviceCount < physicalDevices.size() ) - { - physicalDevices.resize( physicalDeviceCount ); - } - } - return createResultValue( - result, physicalDevices, VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDevices" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getFeatures( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures * pFeatures, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceFeatures( m_physicalDevice, reinterpret_cast( pFeatures ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures - PhysicalDevice::getFeatures( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures features; - d.vkGetPhysicalDeviceFeatures( m_physicalDevice, reinterpret_cast( &features ) ); - return features; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::FormatProperties * pFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceFormatProperties( - m_physicalDevice, static_cast( format ), reinterpret_cast( pFormatProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::FormatProperties - PhysicalDevice::getFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::FormatProperties formatProperties; - d.vkGetPhysicalDeviceFormatProperties( - m_physicalDevice, static_cast( format ), reinterpret_cast( &formatProperties ) ); - return formatProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - VULKAN_HPP_NAMESPACE::ImageFormatProperties * pImageFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceImageFormatProperties( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( tiling ), - static_cast( usage ), - static_cast( flags ), - reinterpret_cast( pImageFormatProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties; - Result result = static_cast( d.vkGetPhysicalDeviceImageFormatProperties( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( tiling ), - static_cast( usage ), - static_cast( flags ), - reinterpret_cast( &imageFormatProperties ) ) ); - return createResultValue( - result, imageFormatProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getProperties( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceProperties( m_physicalDevice, reinterpret_cast( pProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties - PhysicalDevice::getProperties( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties properties; - d.vkGetPhysicalDeviceProperties( m_physicalDevice, reinterpret_cast( &properties ) ); - return properties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getQueueFamilyProperties( uint32_t * pQueueFamilyPropertyCount, - VULKAN_HPP_NAMESPACE::QueueFamilyProperties * pQueueFamilyProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceQueueFamilyProperties( m_physicalDevice, - pQueueFamilyPropertyCount, - reinterpret_cast( pQueueFamilyProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector queueFamilyProperties; - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - queueFamilyProperties.resize( queueFamilyPropertyCount ); - d.vkGetPhysicalDeviceQueueFamilyProperties( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties( QueueFamilyPropertiesAllocator & queueFamilyPropertiesAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector queueFamilyProperties( - queueFamilyPropertiesAllocator ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - queueFamilyProperties.resize( queueFamilyPropertyCount ); - d.vkGetPhysicalDeviceQueueFamilyProperties( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - return queueFamilyProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getMemoryProperties( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties * pMemoryProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceMemoryProperties( m_physicalDevice, - reinterpret_cast( pMemoryProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties - PhysicalDevice::getMemoryProperties( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties memoryProperties; - d.vkGetPhysicalDeviceMemoryProperties( m_physicalDevice, - reinterpret_cast( &memoryProperties ) ); - return memoryProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE PFN_vkVoidFunction Instance::getProcAddr( const char * pName, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetInstanceProcAddr( m_instance, pName ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE PFN_vkVoidFunction Instance::getProcAddr( const std::string & name, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetInstanceProcAddr( m_instance, name.c_str() ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE PFN_vkVoidFunction Device::getProcAddr( const char * pName, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeviceProcAddr( m_device, pName ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE PFN_vkVoidFunction Device::getProcAddr( const std::string & name, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeviceProcAddr( m_device, name.c_str() ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::createDevice( const VULKAN_HPP_NAMESPACE::DeviceCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Device * pDevice, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateDevice( m_physicalDevice, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pDevice ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - PhysicalDevice::createDevice( const VULKAN_HPP_NAMESPACE::DeviceCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Device device; - Result result = static_cast( - d.vkCreateDevice( m_physicalDevice, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &device ) ) ); - return createResultValue( result, device, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::createDevice" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::createDeviceUnique( const VULKAN_HPP_NAMESPACE::DeviceCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Device device; - Result result = static_cast( - d.vkCreateDevice( m_physicalDevice, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &device ) ) ); - ObjectDestroy deleter( allocator, d ); - return createResultValue( - result, device, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::createDeviceUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDevice( m_device, reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDevice( m_device, - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - enumerateInstanceExtensionProperties( const char * pLayerName, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::ExtensionProperties * pProperties, - Dispatch const & d ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumerateInstanceExtensionProperties( - pLayerName, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - enumerateInstanceExtensionProperties( Optional layerName, Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::enumerateInstanceExtensionProperties" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - enumerateInstanceExtensionProperties( Optional layerName, - ExtensionPropertiesAllocator & extensionPropertiesAllocator, - Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( extensionPropertiesAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::enumerateInstanceExtensionProperties" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::enumerateDeviceExtensionProperties( const char * pLayerName, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::ExtensionProperties * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumerateDeviceExtensionProperties( - m_physicalDevice, pLayerName, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::enumerateDeviceExtensionProperties( Optional layerName, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkEnumerateDeviceExtensionProperties( - m_physicalDevice, layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkEnumerateDeviceExtensionProperties( m_physicalDevice, - layerName ? layerName->c_str() : nullptr, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateDeviceExtensionProperties" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::enumerateDeviceExtensionProperties( Optional layerName, - ExtensionPropertiesAllocator & extensionPropertiesAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( extensionPropertiesAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkEnumerateDeviceExtensionProperties( - m_physicalDevice, layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkEnumerateDeviceExtensionProperties( m_physicalDevice, - layerName ? layerName->c_str() : nullptr, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateDeviceExtensionProperties" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - enumerateInstanceLayerProperties( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::LayerProperties * pProperties, - Dispatch const & d ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkEnumerateInstanceLayerProperties( pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - enumerateInstanceLayerProperties( Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkEnumerateInstanceLayerProperties( &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkEnumerateInstanceLayerProperties( - &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING "::enumerateInstanceLayerProperties" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - enumerateInstanceLayerProperties( LayerPropertiesAllocator & layerPropertiesAllocator, Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( layerPropertiesAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkEnumerateInstanceLayerProperties( &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkEnumerateInstanceLayerProperties( - &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING "::enumerateInstanceLayerProperties" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::enumerateDeviceLayerProperties( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::LayerProperties * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumerateDeviceLayerProperties( - m_physicalDevice, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::enumerateDeviceLayerProperties( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkEnumerateDeviceLayerProperties( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkEnumerateDeviceLayerProperties( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateDeviceLayerProperties" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::enumerateDeviceLayerProperties( LayerPropertiesAllocator & layerPropertiesAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( layerPropertiesAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkEnumerateDeviceLayerProperties( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkEnumerateDeviceLayerProperties( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateDeviceLayerProperties" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getQueue( uint32_t queueFamilyIndex, - uint32_t queueIndex, - VULKAN_HPP_NAMESPACE::Queue * pQueue, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceQueue( m_device, queueFamilyIndex, queueIndex, reinterpret_cast( pQueue ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Queue - Device::getQueue( uint32_t queueFamilyIndex, uint32_t queueIndex, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Queue queue; - d.vkGetDeviceQueue( m_device, queueFamilyIndex, queueIndex, reinterpret_cast( &queue ) ); - return queue; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Queue::submit( uint32_t submitCount, - const VULKAN_HPP_NAMESPACE::SubmitInfo * pSubmits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkQueueSubmit( - m_queue, submitCount, reinterpret_cast( pSubmits ), static_cast( fence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Queue::submit( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkQueueSubmit( m_queue, - submits.size(), - reinterpret_cast( submits.data() ), - static_cast( fence ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::submit" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Queue::waitIdle( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkQueueWaitIdle( m_queue ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Queue::waitIdle( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkQueueWaitIdle( m_queue ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::waitIdle" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::waitIdle( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkDeviceWaitIdle( m_device ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::waitIdle( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkDeviceWaitIdle( m_device ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::waitIdle" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::allocateMemory( const VULKAN_HPP_NAMESPACE::MemoryAllocateInfo * pAllocateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DeviceMemory * pMemory, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkAllocateMemory( m_device, - reinterpret_cast( pAllocateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pMemory ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::allocateMemory( const VULKAN_HPP_NAMESPACE::MemoryAllocateInfo & allocateInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeviceMemory memory; - Result result = static_cast( - d.vkAllocateMemory( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &memory ) ) ); - return createResultValue( result, memory, VULKAN_HPP_NAMESPACE_STRING "::Device::allocateMemory" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::allocateMemoryUnique( const VULKAN_HPP_NAMESPACE::MemoryAllocateInfo & allocateInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeviceMemory memory; - Result result = static_cast( - d.vkAllocateMemory( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &memory ) ) ); - ObjectFree deleter( *this, allocator, d ); - return createResultValue( - result, memory, VULKAN_HPP_NAMESPACE_STRING "::Device::allocateMemoryUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::freeMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeMemory( - m_device, static_cast( memory ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::freeMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeMemory( m_device, - static_cast( memory ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::free( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeMemory( - m_device, static_cast( memory ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::free( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeMemory( m_device, - static_cast( memory ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::mapMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - VULKAN_HPP_NAMESPACE::MemoryMapFlags flags, - void ** ppData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkMapMemory( m_device, - static_cast( memory ), - static_cast( offset ), - static_cast( size ), - static_cast( flags ), - ppData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::mapMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - VULKAN_HPP_NAMESPACE::MemoryMapFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - void * pData; - Result result = static_cast( d.vkMapMemory( m_device, - static_cast( memory ), - static_cast( offset ), - static_cast( size ), - static_cast( flags ), - &pData ) ); - return createResultValue( result, pData, VULKAN_HPP_NAMESPACE_STRING "::Device::mapMemory" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::unmapMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUnmapMemory( m_device, static_cast( memory ) ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::flushMappedMemoryRanges( uint32_t memoryRangeCount, - const VULKAN_HPP_NAMESPACE::MappedMemoryRange * pMemoryRanges, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkFlushMappedMemoryRanges( - m_device, memoryRangeCount, reinterpret_cast( pMemoryRanges ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::flushMappedMemoryRanges( ArrayProxy const & memoryRanges, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkFlushMappedMemoryRanges( - m_device, memoryRanges.size(), reinterpret_cast( memoryRanges.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::flushMappedMemoryRanges" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::invalidateMappedMemoryRanges( uint32_t memoryRangeCount, - const VULKAN_HPP_NAMESPACE::MappedMemoryRange * pMemoryRanges, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkInvalidateMappedMemoryRanges( - m_device, memoryRangeCount, reinterpret_cast( pMemoryRanges ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::invalidateMappedMemoryRanges( - ArrayProxy const & memoryRanges, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkInvalidateMappedMemoryRanges( - m_device, memoryRanges.size(), reinterpret_cast( memoryRanges.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::invalidateMappedMemoryRanges" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getMemoryCommitment( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize * pCommittedMemoryInBytes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceMemoryCommitment( - m_device, static_cast( memory ), reinterpret_cast( pCommittedMemoryInBytes ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceSize - Device::getMemoryCommitment( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeviceSize committedMemoryInBytes; - d.vkGetDeviceMemoryCommitment( - m_device, static_cast( memory ), reinterpret_cast( &committedMemoryInBytes ) ); - return committedMemoryInBytes; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::bindBufferMemory( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBindBufferMemory( m_device, - static_cast( buffer ), - static_cast( memory ), - static_cast( memoryOffset ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindBufferMemory( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindBufferMemory( m_device, - static_cast( buffer ), - static_cast( memory ), - static_cast( memoryOffset ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindBufferMemory" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::bindImageMemory( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBindImageMemory( m_device, - static_cast( image ), - static_cast( memory ), - static_cast( memoryOffset ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindImageMemory( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindImageMemory( m_device, - static_cast( image ), - static_cast( memory ), - static_cast( memoryOffset ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindImageMemory" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getBufferMemoryRequirements( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::MemoryRequirements * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetBufferMemoryRequirements( - m_device, static_cast( buffer ), reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements - Device::getBufferMemoryRequirements( VULKAN_HPP_NAMESPACE::Buffer buffer, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements memoryRequirements; - d.vkGetBufferMemoryRequirements( - m_device, static_cast( buffer ), reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getImageMemoryRequirements( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::MemoryRequirements * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageMemoryRequirements( - m_device, static_cast( image ), reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements - Device::getImageMemoryRequirements( VULKAN_HPP_NAMESPACE::Image image, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements memoryRequirements; - d.vkGetImageMemoryRequirements( - m_device, static_cast( image ), reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getImageSparseMemoryRequirements( - VULKAN_HPP_NAMESPACE::Image image, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements * pSparseMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageSparseMemoryRequirements( - m_device, - static_cast( image ), - pSparseMemoryRequirementCount, - reinterpret_cast( pSparseMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements( VULKAN_HPP_NAMESPACE::Image image, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements; - uint32_t sparseMemoryRequirementCount; - d.vkGetImageSparseMemoryRequirements( - m_device, static_cast( image ), &sparseMemoryRequirementCount, nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetImageSparseMemoryRequirements( - m_device, - static_cast( image ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - template < - typename SparseImageMemoryRequirementsAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements( - VULKAN_HPP_NAMESPACE::Image image, - SparseImageMemoryRequirementsAllocator & sparseImageMemoryRequirementsAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements( - sparseImageMemoryRequirementsAllocator ); - uint32_t sparseMemoryRequirementCount; - d.vkGetImageSparseMemoryRequirements( - m_device, static_cast( image ), &sparseMemoryRequirementCount, nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetImageSparseMemoryRequirements( - m_device, - static_cast( image ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceSparseImageFormatProperties( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - pPropertyCount, - reinterpret_cast( pProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - d.vkGetPhysicalDeviceSparseImageFormatProperties( m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - &propertyCount, - nullptr ); - properties.resize( propertyCount ); - d.vkGetPhysicalDeviceSparseImageFormatProperties( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - return properties; - } - - template < - typename SparseImageFormatPropertiesAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - SparseImageFormatPropertiesAllocator & sparseImageFormatPropertiesAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - sparseImageFormatPropertiesAllocator ); - uint32_t propertyCount; - d.vkGetPhysicalDeviceSparseImageFormatProperties( m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - &propertyCount, - nullptr ); - properties.resize( propertyCount ); - d.vkGetPhysicalDeviceSparseImageFormatProperties( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - return properties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Queue::bindSparse( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindSparseInfo * pBindInfo, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkQueueBindSparse( m_queue, - bindInfoCount, - reinterpret_cast( pBindInfo ), - static_cast( fence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Queue::bindSparse( ArrayProxy const & bindInfo, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkQueueBindSparse( m_queue, - bindInfo.size(), - reinterpret_cast( bindInfo.data() ), - static_cast( fence ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::bindSparse" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createFence( const VULKAN_HPP_NAMESPACE::FenceCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Fence * pFence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateFence( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pFence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::createFence( const VULKAN_HPP_NAMESPACE::FenceCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Fence fence; - Result result = static_cast( - d.vkCreateFence( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &fence ) ) ); - return createResultValue( result, fence, VULKAN_HPP_NAMESPACE_STRING "::Device::createFence" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createFenceUnique( const VULKAN_HPP_NAMESPACE::FenceCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Fence fence; - Result result = static_cast( - d.vkCreateFence( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &fence ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, fence, VULKAN_HPP_NAMESPACE_STRING "::Device::createFenceUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyFence( VULKAN_HPP_NAMESPACE::Fence fence, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFence( - m_device, static_cast( fence ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyFence( VULKAN_HPP_NAMESPACE::Fence fence, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFence( m_device, - static_cast( fence ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Fence fence, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFence( - m_device, static_cast( fence ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Fence fence, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFence( m_device, - static_cast( fence ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::resetFences( uint32_t fenceCount, - const VULKAN_HPP_NAMESPACE::Fence * pFences, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkResetFences( m_device, fenceCount, reinterpret_cast( pFences ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::resetFences( ArrayProxy const & fences, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkResetFences( m_device, fences.size(), reinterpret_cast( fences.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::resetFences" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getFenceStatus( VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetFenceStatus( m_device, static_cast( fence ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getFenceStatus( VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkGetFenceStatus( m_device, static_cast( fence ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getFenceStatus", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eNotReady } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::waitForFences( uint32_t fenceCount, - const VULKAN_HPP_NAMESPACE::Fence * pFences, - VULKAN_HPP_NAMESPACE::Bool32 waitAll, - uint64_t timeout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkWaitForFences( - m_device, fenceCount, reinterpret_cast( pFences ), static_cast( waitAll ), timeout ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::waitForFences( ArrayProxy const & fences, - VULKAN_HPP_NAMESPACE::Bool32 waitAll, - uint64_t timeout, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkWaitForFences( m_device, - fences.size(), - reinterpret_cast( fences.data() ), - static_cast( waitAll ), - timeout ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::waitForFences", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eTimeout } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Semaphore * pSemaphore, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateSemaphore( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSemaphore ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Semaphore semaphore; - Result result = static_cast( - d.vkCreateSemaphore( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &semaphore ) ) ); - return createResultValue( result, semaphore, VULKAN_HPP_NAMESPACE_STRING "::Device::createSemaphore" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSemaphoreUnique( const VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Semaphore semaphore; - Result result = static_cast( - d.vkCreateSemaphore( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &semaphore ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, semaphore, VULKAN_HPP_NAMESPACE_STRING "::Device::createSemaphoreUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroySemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySemaphore( - m_device, static_cast( semaphore ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroySemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySemaphore( m_device, - static_cast( semaphore ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySemaphore( - m_device, static_cast( semaphore ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySemaphore( m_device, - static_cast( semaphore ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createEvent( const VULKAN_HPP_NAMESPACE::EventCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Event * pEvent, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateEvent( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pEvent ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::createEvent( const VULKAN_HPP_NAMESPACE::EventCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Event event; - Result result = static_cast( - d.vkCreateEvent( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &event ) ) ); - return createResultValue( result, event, VULKAN_HPP_NAMESPACE_STRING "::Device::createEvent" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createEventUnique( const VULKAN_HPP_NAMESPACE::EventCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Event event; - Result result = static_cast( - d.vkCreateEvent( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &event ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, event, VULKAN_HPP_NAMESPACE_STRING "::Device::createEventUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyEvent( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyEvent( - m_device, static_cast( event ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyEvent( VULKAN_HPP_NAMESPACE::Event event, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyEvent( m_device, - static_cast( event ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyEvent( - m_device, static_cast( event ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Event event, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyEvent( m_device, - static_cast( event ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getEventStatus( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetEventStatus( m_device, static_cast( event ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getEventStatus( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkGetEventStatus( m_device, static_cast( event ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getEventStatus", - { VULKAN_HPP_NAMESPACE::Result::eEventSet, VULKAN_HPP_NAMESPACE::Result::eEventReset } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::setEvent( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkSetEvent( m_device, static_cast( event ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::setEvent( VULKAN_HPP_NAMESPACE::Event event, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkSetEvent( m_device, static_cast( event ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setEvent" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::resetEvent( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkResetEvent( m_device, static_cast( event ) ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type Device::resetEvent( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkResetEvent( m_device, static_cast( event ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::resetEvent" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createQueryPool( const VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::QueryPool * pQueryPool, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateQueryPool( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pQueryPool ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createQueryPool( const VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::QueryPool queryPool; - Result result = static_cast( - d.vkCreateQueryPool( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &queryPool ) ) ); - return createResultValue( result, queryPool, VULKAN_HPP_NAMESPACE_STRING "::Device::createQueryPool" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createQueryPoolUnique( const VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::QueryPool queryPool; - Result result = static_cast( - d.vkCreateQueryPool( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &queryPool ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, queryPool, VULKAN_HPP_NAMESPACE_STRING "::Device::createQueryPoolUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyQueryPool( - m_device, static_cast( queryPool ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyQueryPool( m_device, - static_cast( queryPool ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyQueryPool( - m_device, static_cast( queryPool ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyQueryPool( m_device, - static_cast( queryPool ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - void * pData, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetQueryPoolResults( m_device, - static_cast( queryPool ), - firstQuery, - queryCount, - dataSize, - pData, - static_cast( stride ), - static_cast( flags ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_DEPRECATED( "This function is deprecated. Use one of the other flavours of it." ) - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE Result Device::getQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - ArrayProxy const & data, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkGetQueryPoolResults( m_device, - static_cast( queryPool ), - firstQuery, - queryCount, - data.size() * sizeof( T ), - reinterpret_cast( data.data() ), - static_cast( stride ), - static_cast( flags ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getQueryPoolResults", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eNotReady } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::getQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( d.vkGetQueryPoolResults( m_device, - static_cast( queryPool ), - firstQuery, - queryCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ), - static_cast( stride ), - static_cast( flags ) ) ); - return createResultValue( result, - data, - VULKAN_HPP_NAMESPACE_STRING "::Device::getQueryPoolResults", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eNotReady } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::getQueryPoolResult( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - DataType data; - Result result = static_cast( d.vkGetQueryPoolResults( m_device, - static_cast( queryPool ), - firstQuery, - queryCount, - sizeof( DataType ), - reinterpret_cast( &data ), - static_cast( stride ), - static_cast( flags ) ) ); - return createResultValue( result, - data, - VULKAN_HPP_NAMESPACE_STRING "::Device::getQueryPoolResult", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eNotReady } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createBuffer( const VULKAN_HPP_NAMESPACE::BufferCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Buffer * pBuffer, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateBuffer( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pBuffer ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::createBuffer( const VULKAN_HPP_NAMESPACE::BufferCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Buffer buffer; - Result result = static_cast( - d.vkCreateBuffer( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &buffer ) ) ); - return createResultValue( result, buffer, VULKAN_HPP_NAMESPACE_STRING "::Device::createBuffer" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createBufferUnique( const VULKAN_HPP_NAMESPACE::BufferCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Buffer buffer; - Result result = static_cast( - d.vkCreateBuffer( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &buffer ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, buffer, VULKAN_HPP_NAMESPACE_STRING "::Device::createBufferUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBuffer( - m_device, static_cast( buffer ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBuffer( m_device, - static_cast( buffer ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Buffer buffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBuffer( - m_device, static_cast( buffer ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Buffer buffer, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBuffer( m_device, - static_cast( buffer ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createBufferView( const VULKAN_HPP_NAMESPACE::BufferViewCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::BufferView * pView, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateBufferView( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pView ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createBufferView( const VULKAN_HPP_NAMESPACE::BufferViewCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::BufferView view; - Result result = static_cast( - d.vkCreateBufferView( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &view ) ) ); - return createResultValue( result, view, VULKAN_HPP_NAMESPACE_STRING "::Device::createBufferView" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createBufferViewUnique( const VULKAN_HPP_NAMESPACE::BufferViewCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::BufferView view; - Result result = static_cast( - d.vkCreateBufferView( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &view ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, view, VULKAN_HPP_NAMESPACE_STRING "::Device::createBufferViewUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyBufferView( VULKAN_HPP_NAMESPACE::BufferView bufferView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferView( m_device, - static_cast( bufferView ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyBufferView( VULKAN_HPP_NAMESPACE::BufferView bufferView, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferView( m_device, - static_cast( bufferView ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::BufferView bufferView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferView( m_device, - static_cast( bufferView ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::BufferView bufferView, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferView( m_device, - static_cast( bufferView ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createImage( const VULKAN_HPP_NAMESPACE::ImageCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Image * pImage, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateImage( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pImage ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::createImage( const VULKAN_HPP_NAMESPACE::ImageCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Image image; - Result result = static_cast( - d.vkCreateImage( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &image ) ) ); - return createResultValue( result, image, VULKAN_HPP_NAMESPACE_STRING "::Device::createImage" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createImageUnique( const VULKAN_HPP_NAMESPACE::ImageCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Image image; - Result result = static_cast( - d.vkCreateImage( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &image ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, image, VULKAN_HPP_NAMESPACE_STRING "::Device::createImageUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyImage( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImage( - m_device, static_cast( image ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyImage( VULKAN_HPP_NAMESPACE::Image image, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImage( m_device, - static_cast( image ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImage( - m_device, static_cast( image ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Image image, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImage( m_device, - static_cast( image ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getImageSubresourceLayout( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::ImageSubresource * pSubresource, - VULKAN_HPP_NAMESPACE::SubresourceLayout * pLayout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageSubresourceLayout( m_device, - static_cast( image ), - reinterpret_cast( pSubresource ), - reinterpret_cast( pLayout ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::SubresourceLayout - Device::getImageSubresourceLayout( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::ImageSubresource & subresource, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SubresourceLayout layout; - d.vkGetImageSubresourceLayout( m_device, - static_cast( image ), - reinterpret_cast( &subresource ), - reinterpret_cast( &layout ) ); - return layout; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createImageView( const VULKAN_HPP_NAMESPACE::ImageViewCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::ImageView * pView, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateImageView( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pView ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createImageView( const VULKAN_HPP_NAMESPACE::ImageViewCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageView view; - Result result = static_cast( - d.vkCreateImageView( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &view ) ) ); - return createResultValue( result, view, VULKAN_HPP_NAMESPACE_STRING "::Device::createImageView" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createImageViewUnique( const VULKAN_HPP_NAMESPACE::ImageViewCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageView view; - Result result = static_cast( - d.vkCreateImageView( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &view ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, view, VULKAN_HPP_NAMESPACE_STRING "::Device::createImageViewUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyImageView( VULKAN_HPP_NAMESPACE::ImageView imageView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImageView( - m_device, static_cast( imageView ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyImageView( VULKAN_HPP_NAMESPACE::ImageView imageView, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImageView( m_device, - static_cast( imageView ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::ImageView imageView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImageView( - m_device, static_cast( imageView ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::ImageView imageView, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyImageView( m_device, - static_cast( imageView ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createShaderModule( const VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::ShaderModule * pShaderModule, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateShaderModule( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pShaderModule ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createShaderModule( const VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ShaderModule shaderModule; - Result result = static_cast( - d.vkCreateShaderModule( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &shaderModule ) ) ); - return createResultValue( result, shaderModule, VULKAN_HPP_NAMESPACE_STRING "::Device::createShaderModule" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createShaderModuleUnique( const VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ShaderModule shaderModule; - Result result = static_cast( - d.vkCreateShaderModule( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &shaderModule ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, shaderModule, VULKAN_HPP_NAMESPACE_STRING "::Device::createShaderModuleUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyShaderModule( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyShaderModule( m_device, - static_cast( shaderModule ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyShaderModule( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyShaderModule( m_device, - static_cast( shaderModule ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyShaderModule( m_device, - static_cast( shaderModule ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyShaderModule( m_device, - static_cast( shaderModule ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createPipelineCache( const VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PipelineCache * pPipelineCache, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreatePipelineCache( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPipelineCache ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createPipelineCache( const VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache; - Result result = static_cast( - d.vkCreatePipelineCache( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipelineCache ) ) ); - return createResultValue( result, pipelineCache, VULKAN_HPP_NAMESPACE_STRING "::Device::createPipelineCache" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createPipelineCacheUnique( const VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache; - Result result = static_cast( - d.vkCreatePipelineCache( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipelineCache ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, pipelineCache, VULKAN_HPP_NAMESPACE_STRING "::Device::createPipelineCacheUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyPipelineCache( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineCache( m_device, - static_cast( pipelineCache ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyPipelineCache( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineCache( m_device, - static_cast( pipelineCache ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineCache( m_device, - static_cast( pipelineCache ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineCache( m_device, - static_cast( pipelineCache ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getPipelineCacheData( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - size_t * pDataSize, - void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPipelineCacheData( m_device, static_cast( pipelineCache ), pDataSize, pData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getPipelineCacheData( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector data; - size_t dataSize; - Result result; - do - { - result = static_cast( - d.vkGetPipelineCacheData( m_device, static_cast( pipelineCache ), &dataSize, nullptr ) ); - if ( ( result == Result::eSuccess ) && dataSize ) - { - data.resize( dataSize ); - result = static_cast( d.vkGetPipelineCacheData( m_device, - static_cast( pipelineCache ), - &dataSize, - reinterpret_cast( data.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( dataSize <= data.size() ); - if ( dataSize < data.size() ) - { - data.resize( dataSize ); - } - } - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineCacheData" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getPipelineCacheData( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - Uint8_tAllocator & uint8_tAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector data( uint8_tAllocator ); - size_t dataSize; - Result result; - do - { - result = static_cast( - d.vkGetPipelineCacheData( m_device, static_cast( pipelineCache ), &dataSize, nullptr ) ); - if ( ( result == Result::eSuccess ) && dataSize ) - { - data.resize( dataSize ); - result = static_cast( d.vkGetPipelineCacheData( m_device, - static_cast( pipelineCache ), - &dataSize, - reinterpret_cast( data.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( dataSize <= data.size() ); - if ( dataSize < data.size() ) - { - data.resize( dataSize ); - } - } - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineCacheData" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::mergePipelineCaches( VULKAN_HPP_NAMESPACE::PipelineCache dstCache, - uint32_t srcCacheCount, - const VULKAN_HPP_NAMESPACE::PipelineCache * pSrcCaches, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkMergePipelineCaches( m_device, - static_cast( dstCache ), - srcCacheCount, - reinterpret_cast( pSrcCaches ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::mergePipelineCaches( VULKAN_HPP_NAMESPACE::PipelineCache dstCache, - ArrayProxy const & srcCaches, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkMergePipelineCaches( m_device, - static_cast( dstCache ), - srcCaches.size(), - reinterpret_cast( srcCaches.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::mergePipelineCaches" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createGraphicsPipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - createInfoCount, - reinterpret_cast( pCreateInfos ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPipelines ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createGraphicsPipelines( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( - result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createGraphicsPipelines", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createGraphicsPipelines( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size(), pipelineAllocator ); - Result result = static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( - result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createGraphicsPipelines", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::createGraphicsPipeline( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Pipeline pipeline; - Result result = static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - return createResultValue( - result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createGraphicsPipeline", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createGraphicsPipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines; - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( - result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createGraphicsPipelinesUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template < - typename Dispatch, - typename PipelineAllocator, - typename B, - typename std::enable_if>::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createGraphicsPipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines( pipelineAllocator ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( - result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createGraphicsPipelinesUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createGraphicsPipelineUnique( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Pipeline pipeline; - Result result = static_cast( - d.vkCreateGraphicsPipelines( m_device, - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createGraphicsPipelineUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT }, - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createComputePipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - createInfoCount, - reinterpret_cast( pCreateInfos ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPipelines ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createComputePipelines( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( - result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createComputePipelines", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createComputePipelines( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size(), pipelineAllocator ); - Result result = static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( - result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createComputePipelines", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::createComputePipeline( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Pipeline pipeline; - Result result = static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - return createResultValue( - result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createComputePipeline", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createComputePipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines; - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( - result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createComputePipelinesUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template < - typename Dispatch, - typename PipelineAllocator, - typename B, - typename std::enable_if>::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createComputePipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines( pipelineAllocator ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( - result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createComputePipelinesUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createComputePipelineUnique( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Pipeline pipeline; - Result result = static_cast( - d.vkCreateComputePipelines( m_device, - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createComputePipelineUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT }, - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipeline( - m_device, static_cast( pipeline ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipeline( m_device, - static_cast( pipeline ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipeline( - m_device, static_cast( pipeline ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipeline( m_device, - static_cast( pipeline ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createPipelineLayout( const VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PipelineLayout * pPipelineLayout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreatePipelineLayout( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPipelineLayout ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createPipelineLayout( const VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout; - Result result = static_cast( - d.vkCreatePipelineLayout( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipelineLayout ) ) ); - return createResultValue( result, pipelineLayout, VULKAN_HPP_NAMESPACE_STRING "::Device::createPipelineLayout" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createPipelineLayoutUnique( const VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout; - Result result = static_cast( - d.vkCreatePipelineLayout( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipelineLayout ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, pipelineLayout, VULKAN_HPP_NAMESPACE_STRING "::Device::createPipelineLayoutUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyPipelineLayout( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineLayout( m_device, - static_cast( pipelineLayout ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyPipelineLayout( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineLayout( m_device, - static_cast( pipelineLayout ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineLayout( m_device, - static_cast( pipelineLayout ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPipelineLayout( m_device, - static_cast( pipelineLayout ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createSampler( const VULKAN_HPP_NAMESPACE::SamplerCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Sampler * pSampler, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateSampler( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSampler ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createSampler( const VULKAN_HPP_NAMESPACE::SamplerCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Sampler sampler; - Result result = static_cast( - d.vkCreateSampler( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &sampler ) ) ); - return createResultValue( result, sampler, VULKAN_HPP_NAMESPACE_STRING "::Device::createSampler" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSamplerUnique( const VULKAN_HPP_NAMESPACE::SamplerCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Sampler sampler; - Result result = static_cast( - d.vkCreateSampler( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &sampler ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, sampler, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroySampler( VULKAN_HPP_NAMESPACE::Sampler sampler, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySampler( - m_device, static_cast( sampler ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroySampler( VULKAN_HPP_NAMESPACE::Sampler sampler, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySampler( m_device, - static_cast( sampler ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Sampler sampler, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySampler( - m_device, static_cast( sampler ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Sampler sampler, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySampler( m_device, - static_cast( sampler ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createDescriptorSetLayout( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDescriptorSetLayout( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSetLayout ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createDescriptorSetLayout( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorSetLayout setLayout; - Result result = static_cast( - d.vkCreateDescriptorSetLayout( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &setLayout ) ) ); - return createResultValue( result, setLayout, VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorSetLayout" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createDescriptorSetLayoutUnique( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorSetLayout setLayout; - Result result = static_cast( - d.vkCreateDescriptorSetLayout( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &setLayout ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, setLayout, VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorSetLayoutUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorSetLayout( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorSetLayout( m_device, - static_cast( descriptorSetLayout ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorSetLayout( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorSetLayout( m_device, - static_cast( descriptorSetLayout ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorSetLayout( m_device, - static_cast( descriptorSetLayout ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorSetLayout( m_device, - static_cast( descriptorSetLayout ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createDescriptorPool( const VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorPool * pDescriptorPool, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDescriptorPool( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pDescriptorPool ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createDescriptorPool( const VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool; - Result result = static_cast( - d.vkCreateDescriptorPool( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &descriptorPool ) ) ); - return createResultValue( result, descriptorPool, VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorPool" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createDescriptorPoolUnique( const VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool; - Result result = static_cast( - d.vkCreateDescriptorPool( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &descriptorPool ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, descriptorPool, VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorPoolUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorPool( m_device, - static_cast( descriptorPool ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorPool( m_device, - static_cast( descriptorPool ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorPool( m_device, - static_cast( descriptorPool ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorPool( m_device, - static_cast( descriptorPool ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Result Device::resetDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - VULKAN_HPP_NAMESPACE::DescriptorPoolResetFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkResetDescriptorPool( - m_device, static_cast( descriptorPool ), static_cast( flags ) ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::resetDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - VULKAN_HPP_NAMESPACE::DescriptorPoolResetFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkResetDescriptorPool( - m_device, static_cast( descriptorPool ), static_cast( flags ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::resetDescriptorPool" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::allocateDescriptorSets( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo * pAllocateInfo, - VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkAllocateDescriptorSets( m_device, - reinterpret_cast( pAllocateInfo ), - reinterpret_cast( pDescriptorSets ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::allocateDescriptorSets( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector descriptorSets( - allocateInfo.descriptorSetCount ); - Result result = static_cast( - d.vkAllocateDescriptorSets( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( descriptorSets.data() ) ) ); - return createResultValue( result, descriptorSets, VULKAN_HPP_NAMESPACE_STRING "::Device::allocateDescriptorSets" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::allocateDescriptorSets( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - DescriptorSetAllocator & descriptorSetAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector descriptorSets( - allocateInfo.descriptorSetCount, descriptorSetAllocator ); - Result result = static_cast( - d.vkAllocateDescriptorSets( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( descriptorSets.data() ) ) ); - return createResultValue( result, descriptorSets, VULKAN_HPP_NAMESPACE_STRING "::Device::allocateDescriptorSets" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, DescriptorSetAllocator>>::type - Device::allocateDescriptorSetsUnique( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, DescriptorSetAllocator> uniqueDescriptorSets; - std::vector descriptorSets( allocateInfo.descriptorSetCount ); - Result result = static_cast( - d.vkAllocateDescriptorSets( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( descriptorSets.data() ) ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - uniqueDescriptorSets.reserve( allocateInfo.descriptorSetCount ); - PoolFree deleter( *this, allocateInfo.descriptorPool, d ); - for ( size_t i = 0; i < allocateInfo.descriptorSetCount; i++ ) - { - uniqueDescriptorSets.push_back( UniqueHandle( descriptorSets[i], deleter ) ); - } - } - return createResultValue( - result, std::move( uniqueDescriptorSets ), VULKAN_HPP_NAMESPACE_STRING "::Device::allocateDescriptorSetsUnique" ); - } - - template >::value, - int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, DescriptorSetAllocator>>::type - Device::allocateDescriptorSetsUnique( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - DescriptorSetAllocator & descriptorSetAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, DescriptorSetAllocator> uniqueDescriptorSets( - descriptorSetAllocator ); - std::vector descriptorSets( allocateInfo.descriptorSetCount ); - Result result = static_cast( - d.vkAllocateDescriptorSets( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( descriptorSets.data() ) ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - uniqueDescriptorSets.reserve( allocateInfo.descriptorSetCount ); - PoolFree deleter( *this, allocateInfo.descriptorPool, d ); - for ( size_t i = 0; i < allocateInfo.descriptorSetCount; i++ ) - { - uniqueDescriptorSets.push_back( UniqueHandle( descriptorSets[i], deleter ) ); - } - } - return createResultValue( - result, std::move( uniqueDescriptorSets ), VULKAN_HPP_NAMESPACE_STRING "::Device::allocateDescriptorSetsUnique" ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Result Device::freeDescriptorSets( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - uint32_t descriptorSetCount, - const VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkFreeDescriptorSets( m_device, - static_cast( descriptorPool ), - descriptorSetCount, - reinterpret_cast( pDescriptorSets ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::freeDescriptorSets( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - ArrayProxy const & descriptorSets, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkFreeDescriptorSets( m_device, - static_cast( descriptorPool ), - descriptorSets.size(), - reinterpret_cast( descriptorSets.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::freeDescriptorSets" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Result Device::free( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - uint32_t descriptorSetCount, - const VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkFreeDescriptorSets( m_device, - static_cast( descriptorPool ), - descriptorSetCount, - reinterpret_cast( pDescriptorSets ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::free( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - ArrayProxy const & descriptorSets, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkFreeDescriptorSets( m_device, - static_cast( descriptorPool ), - descriptorSets.size(), - reinterpret_cast( descriptorSets.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::free" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::updateDescriptorSets( uint32_t descriptorWriteCount, - const VULKAN_HPP_NAMESPACE::WriteDescriptorSet * pDescriptorWrites, - uint32_t descriptorCopyCount, - const VULKAN_HPP_NAMESPACE::CopyDescriptorSet * pDescriptorCopies, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUpdateDescriptorSets( m_device, - descriptorWriteCount, - reinterpret_cast( pDescriptorWrites ), - descriptorCopyCount, - reinterpret_cast( pDescriptorCopies ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::updateDescriptorSets( ArrayProxy const & descriptorWrites, - ArrayProxy const & descriptorCopies, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUpdateDescriptorSets( m_device, - descriptorWrites.size(), - reinterpret_cast( descriptorWrites.data() ), - descriptorCopies.size(), - reinterpret_cast( descriptorCopies.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createFramebuffer( const VULKAN_HPP_NAMESPACE::FramebufferCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Framebuffer * pFramebuffer, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateFramebuffer( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pFramebuffer ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createFramebuffer( const VULKAN_HPP_NAMESPACE::FramebufferCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer; - Result result = static_cast( - d.vkCreateFramebuffer( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &framebuffer ) ) ); - return createResultValue( result, framebuffer, VULKAN_HPP_NAMESPACE_STRING "::Device::createFramebuffer" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createFramebufferUnique( const VULKAN_HPP_NAMESPACE::FramebufferCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer; - Result result = static_cast( - d.vkCreateFramebuffer( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &framebuffer ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, framebuffer, VULKAN_HPP_NAMESPACE_STRING "::Device::createFramebufferUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFramebuffer( m_device, - static_cast( framebuffer ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFramebuffer( m_device, - static_cast( framebuffer ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFramebuffer( m_device, - static_cast( framebuffer ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyFramebuffer( m_device, - static_cast( framebuffer ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::RenderPass * pRenderPass, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateRenderPass( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pRenderPass ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RenderPass renderPass; - Result result = static_cast( - d.vkCreateRenderPass( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &renderPass ) ) ); - return createResultValue( result, renderPass, VULKAN_HPP_NAMESPACE_STRING "::Device::createRenderPass" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createRenderPassUnique( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RenderPass renderPass; - Result result = static_cast( - d.vkCreateRenderPass( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &renderPass ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, renderPass, VULKAN_HPP_NAMESPACE_STRING "::Device::createRenderPassUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyRenderPass( m_device, - static_cast( renderPass ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroyRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyRenderPass( m_device, - static_cast( renderPass ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyRenderPass( m_device, - static_cast( renderPass ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyRenderPass( m_device, - static_cast( renderPass ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getRenderAreaGranularity( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - VULKAN_HPP_NAMESPACE::Extent2D * pGranularity, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetRenderAreaGranularity( - m_device, static_cast( renderPass ), reinterpret_cast( pGranularity ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Extent2D - Device::getRenderAreaGranularity( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Extent2D granularity; - d.vkGetRenderAreaGranularity( - m_device, static_cast( renderPass ), reinterpret_cast( &granularity ) ); - return granularity; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createCommandPool( const VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::CommandPool * pCommandPool, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateCommandPool( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pCommandPool ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createCommandPool( const VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::CommandPool commandPool; - Result result = static_cast( - d.vkCreateCommandPool( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &commandPool ) ) ); - return createResultValue( result, commandPool, VULKAN_HPP_NAMESPACE_STRING "::Device::createCommandPool" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createCommandPoolUnique( const VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::CommandPool commandPool; - Result result = static_cast( - d.vkCreateCommandPool( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &commandPool ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, commandPool, VULKAN_HPP_NAMESPACE_STRING "::Device::createCommandPoolUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCommandPool( m_device, - static_cast( commandPool ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCommandPool( m_device, - static_cast( commandPool ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCommandPool( m_device, - static_cast( commandPool ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCommandPool( m_device, - static_cast( commandPool ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::resetCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolResetFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkResetCommandPool( - m_device, static_cast( commandPool ), static_cast( flags ) ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::resetCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolResetFlags flags, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkResetCommandPool( - m_device, static_cast( commandPool ), static_cast( flags ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::resetCommandPool" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::allocateCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo * pAllocateInfo, - VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkAllocateCommandBuffers( m_device, - reinterpret_cast( pAllocateInfo ), - reinterpret_cast( pCommandBuffers ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::allocateCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector commandBuffers( - allocateInfo.commandBufferCount ); - Result result = static_cast( - d.vkAllocateCommandBuffers( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( commandBuffers.data() ) ) ); - return createResultValue( result, commandBuffers, VULKAN_HPP_NAMESPACE_STRING "::Device::allocateCommandBuffers" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::allocateCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - CommandBufferAllocator & commandBufferAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector commandBuffers( - allocateInfo.commandBufferCount, commandBufferAllocator ); - Result result = static_cast( - d.vkAllocateCommandBuffers( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( commandBuffers.data() ) ) ); - return createResultValue( result, commandBuffers, VULKAN_HPP_NAMESPACE_STRING "::Device::allocateCommandBuffers" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, CommandBufferAllocator>>::type - Device::allocateCommandBuffersUnique( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, CommandBufferAllocator> uniqueCommandBuffers; - std::vector commandBuffers( allocateInfo.commandBufferCount ); - Result result = static_cast( - d.vkAllocateCommandBuffers( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( commandBuffers.data() ) ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - uniqueCommandBuffers.reserve( allocateInfo.commandBufferCount ); - PoolFree deleter( *this, allocateInfo.commandPool, d ); - for ( size_t i = 0; i < allocateInfo.commandBufferCount; i++ ) - { - uniqueCommandBuffers.push_back( UniqueHandle( commandBuffers[i], deleter ) ); - } - } - return createResultValue( - result, std::move( uniqueCommandBuffers ), VULKAN_HPP_NAMESPACE_STRING "::Device::allocateCommandBuffersUnique" ); - } - - template >::value, - int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, CommandBufferAllocator>>::type - Device::allocateCommandBuffersUnique( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - CommandBufferAllocator & commandBufferAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, CommandBufferAllocator> uniqueCommandBuffers( - commandBufferAllocator ); - std::vector commandBuffers( allocateInfo.commandBufferCount ); - Result result = static_cast( - d.vkAllocateCommandBuffers( m_device, - reinterpret_cast( &allocateInfo ), - reinterpret_cast( commandBuffers.data() ) ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - uniqueCommandBuffers.reserve( allocateInfo.commandBufferCount ); - PoolFree deleter( *this, allocateInfo.commandPool, d ); - for ( size_t i = 0; i < allocateInfo.commandBufferCount; i++ ) - { - uniqueCommandBuffers.push_back( UniqueHandle( commandBuffers[i], deleter ) ); - } - } - return createResultValue( - result, std::move( uniqueCommandBuffers ), VULKAN_HPP_NAMESPACE_STRING "::Device::allocateCommandBuffersUnique" ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::freeCommandBuffers( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - uint32_t commandBufferCount, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeCommandBuffers( m_device, - static_cast( commandPool ), - commandBufferCount, - reinterpret_cast( pCommandBuffers ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::freeCommandBuffers( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - ArrayProxy const & commandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeCommandBuffers( m_device, - static_cast( commandPool ), - commandBuffers.size(), - reinterpret_cast( commandBuffers.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::free( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - uint32_t commandBufferCount, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeCommandBuffers( m_device, - static_cast( commandPool ), - commandBufferCount, - reinterpret_cast( pCommandBuffers ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::free( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - ArrayProxy const & commandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkFreeCommandBuffers( m_device, - static_cast( commandPool ), - commandBuffers.size(), - reinterpret_cast( commandBuffers.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result CommandBuffer::begin( - const VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo * pBeginInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkBeginCommandBuffer( m_commandBuffer, reinterpret_cast( pBeginInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - CommandBuffer::begin( const VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo & beginInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkBeginCommandBuffer( m_commandBuffer, reinterpret_cast( &beginInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::begin" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result CommandBuffer::end( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEndCommandBuffer( m_commandBuffer ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - CommandBuffer::end( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkEndCommandBuffer( m_commandBuffer ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::end" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result CommandBuffer::reset( - VULKAN_HPP_NAMESPACE::CommandBufferResetFlags flags, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkResetCommandBuffer( m_commandBuffer, static_cast( flags ) ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type - CommandBuffer::reset( VULKAN_HPP_NAMESPACE::CommandBufferResetFlags flags, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkResetCommandBuffer( m_commandBuffer, static_cast( flags ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::reset" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::bindPipeline( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindPipeline( - m_commandBuffer, static_cast( pipelineBindPoint ), static_cast( pipeline ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setViewport( uint32_t firstViewport, - uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewport( - m_commandBuffer, firstViewport, viewportCount, reinterpret_cast( pViewports ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setViewport( uint32_t firstViewport, - ArrayProxy const & viewports, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewport( - m_commandBuffer, firstViewport, viewports.size(), reinterpret_cast( viewports.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setScissor( uint32_t firstScissor, - uint32_t scissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetScissor( m_commandBuffer, firstScissor, scissorCount, reinterpret_cast( pScissors ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setScissor( uint32_t firstScissor, - ArrayProxy const & scissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetScissor( - m_commandBuffer, firstScissor, scissors.size(), reinterpret_cast( scissors.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setLineWidth( float lineWidth, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetLineWidth( m_commandBuffer, lineWidth ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthBias( float depthBiasConstantFactor, - float depthBiasClamp, - float depthBiasSlopeFactor, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthBias( m_commandBuffer, depthBiasConstantFactor, depthBiasClamp, depthBiasSlopeFactor ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setBlendConstants( const float blendConstants[4], - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetBlendConstants( m_commandBuffer, blendConstants ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthBounds( float minDepthBounds, - float maxDepthBounds, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthBounds( m_commandBuffer, minDepthBounds, maxDepthBounds ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilCompareMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t compareMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilCompareMask( m_commandBuffer, static_cast( faceMask ), compareMask ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilWriteMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t writeMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilWriteMask( m_commandBuffer, static_cast( faceMask ), writeMask ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilReference( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t reference, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilReference( m_commandBuffer, static_cast( faceMask ), reference ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::bindDescriptorSets( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t firstSet, - uint32_t descriptorSetCount, - const VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - uint32_t dynamicOffsetCount, - const uint32_t * pDynamicOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindDescriptorSets( m_commandBuffer, - static_cast( pipelineBindPoint ), - static_cast( layout ), - firstSet, - descriptorSetCount, - reinterpret_cast( pDescriptorSets ), - dynamicOffsetCount, - pDynamicOffsets ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::bindDescriptorSets( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t firstSet, - ArrayProxy const & descriptorSets, - ArrayProxy const & dynamicOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindDescriptorSets( m_commandBuffer, - static_cast( pipelineBindPoint ), - static_cast( layout ), - firstSet, - descriptorSets.size(), - reinterpret_cast( descriptorSets.data() ), - dynamicOffsets.size(), - dynamicOffsets.data() ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::bindIndexBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::IndexType indexType, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindIndexBuffer( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( indexType ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::bindVertexBuffers( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindVertexBuffers( m_commandBuffer, - firstBinding, - bindingCount, - reinterpret_cast( pBuffers ), - reinterpret_cast( pOffsets ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::bindVertexBuffers( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers: buffers.size() != offsets.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBindVertexBuffers( m_commandBuffer, - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::draw( uint32_t vertexCount, - uint32_t instanceCount, - uint32_t firstVertex, - uint32_t firstInstance, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDraw( m_commandBuffer, vertexCount, instanceCount, firstVertex, firstInstance ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndexed( uint32_t indexCount, - uint32_t instanceCount, - uint32_t firstIndex, - int32_t vertexOffset, - uint32_t firstInstance, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndexed( m_commandBuffer, indexCount, instanceCount, firstIndex, vertexOffset, firstInstance ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndirect( - m_commandBuffer, static_cast( buffer ), static_cast( offset ), drawCount, stride ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndexedIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndexedIndirect( - m_commandBuffer, static_cast( buffer ), static_cast( offset ), drawCount, stride ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::dispatch( uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDispatch( m_commandBuffer, groupCountX, groupCountY, groupCountZ ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::dispatchIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDispatchIndirect( m_commandBuffer, static_cast( buffer ), static_cast( offset ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::BufferCopy * pRegions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBuffer( m_commandBuffer, - static_cast( srcBuffer ), - static_cast( dstBuffer ), - regionCount, - reinterpret_cast( pRegions ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBuffer( m_commandBuffer, - static_cast( srcBuffer ), - static_cast( dstBuffer ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::ImageCopy * pRegions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImage( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regionCount, - reinterpret_cast( pRegions ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImage( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::blitImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::ImageBlit * pRegions, - VULKAN_HPP_NAMESPACE::Filter filter, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBlitImage( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regionCount, - reinterpret_cast( pRegions ), - static_cast( filter ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::blitImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - VULKAN_HPP_NAMESPACE::Filter filter, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBlitImage( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ), - static_cast( filter ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyBufferToImage( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::BufferImageCopy * pRegions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBufferToImage( m_commandBuffer, - static_cast( srcBuffer ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regionCount, - reinterpret_cast( pRegions ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyBufferToImage( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBufferToImage( m_commandBuffer, - static_cast( srcBuffer ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyImageToBuffer( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::BufferImageCopy * pRegions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImageToBuffer( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstBuffer ), - regionCount, - reinterpret_cast( pRegions ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyImageToBuffer( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImageToBuffer( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstBuffer ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::updateBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize dataSize, - const void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdUpdateBuffer( m_commandBuffer, - static_cast( dstBuffer ), - static_cast( dstOffset ), - static_cast( dataSize ), - pData ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::updateBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - ArrayProxy const & data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdUpdateBuffer( m_commandBuffer, - static_cast( dstBuffer ), - static_cast( dstOffset ), - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::fillBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - uint32_t data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdFillBuffer( m_commandBuffer, - static_cast( dstBuffer ), - static_cast( dstOffset ), - static_cast( size ), - data ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::clearColorImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearColorValue * pColor, - uint32_t rangeCount, - const VULKAN_HPP_NAMESPACE::ImageSubresourceRange * pRanges, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdClearColorImage( m_commandBuffer, - static_cast( image ), - static_cast( imageLayout ), - reinterpret_cast( pColor ), - rangeCount, - reinterpret_cast( pRanges ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::clearColorImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearColorValue & color, - ArrayProxy const & ranges, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdClearColorImage( m_commandBuffer, - static_cast( image ), - static_cast( imageLayout ), - reinterpret_cast( &color ), - ranges.size(), - reinterpret_cast( ranges.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::clearDepthStencilImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearDepthStencilValue * pDepthStencil, - uint32_t rangeCount, - const VULKAN_HPP_NAMESPACE::ImageSubresourceRange * pRanges, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdClearDepthStencilImage( m_commandBuffer, - static_cast( image ), - static_cast( imageLayout ), - reinterpret_cast( pDepthStencil ), - rangeCount, - reinterpret_cast( pRanges ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::clearDepthStencilImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearDepthStencilValue & depthStencil, - ArrayProxy const & ranges, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdClearDepthStencilImage( m_commandBuffer, - static_cast( image ), - static_cast( imageLayout ), - reinterpret_cast( &depthStencil ), - ranges.size(), - reinterpret_cast( ranges.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::clearAttachments( uint32_t attachmentCount, - const VULKAN_HPP_NAMESPACE::ClearAttachment * pAttachments, - uint32_t rectCount, - const VULKAN_HPP_NAMESPACE::ClearRect * pRects, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdClearAttachments( m_commandBuffer, - attachmentCount, - reinterpret_cast( pAttachments ), - rectCount, - reinterpret_cast( pRects ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::clearAttachments( ArrayProxy const & attachments, - ArrayProxy const & rects, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdClearAttachments( m_commandBuffer, - attachments.size(), - reinterpret_cast( attachments.data() ), - rects.size(), - reinterpret_cast( rects.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::resolveImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::ImageResolve * pRegions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResolveImage( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regionCount, - reinterpret_cast( pRegions ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::resolveImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResolveImage( m_commandBuffer, - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetEvent( m_commandBuffer, static_cast( event ), static_cast( stageMask ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::resetEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResetEvent( m_commandBuffer, static_cast( event ), static_cast( stageMask ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::waitEvents( uint32_t eventCount, - const VULKAN_HPP_NAMESPACE::Event * pEvents, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - uint32_t memoryBarrierCount, - const VULKAN_HPP_NAMESPACE::MemoryBarrier * pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier * pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier * pImageMemoryBarriers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWaitEvents( m_commandBuffer, - eventCount, - reinterpret_cast( pEvents ), - static_cast( srcStageMask ), - static_cast( dstStageMask ), - memoryBarrierCount, - reinterpret_cast( pMemoryBarriers ), - bufferMemoryBarrierCount, - reinterpret_cast( pBufferMemoryBarriers ), - imageMemoryBarrierCount, - reinterpret_cast( pImageMemoryBarriers ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::waitEvents( ArrayProxy const & events, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWaitEvents( m_commandBuffer, - events.size(), - reinterpret_cast( events.data() ), - static_cast( srcStageMask ), - static_cast( dstStageMask ), - memoryBarriers.size(), - reinterpret_cast( memoryBarriers.data() ), - bufferMemoryBarriers.size(), - reinterpret_cast( bufferMemoryBarriers.data() ), - imageMemoryBarriers.size(), - reinterpret_cast( imageMemoryBarriers.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::pipelineBarrier( VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags, - uint32_t memoryBarrierCount, - const VULKAN_HPP_NAMESPACE::MemoryBarrier * pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier * pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier * pImageMemoryBarriers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPipelineBarrier( m_commandBuffer, - static_cast( srcStageMask ), - static_cast( dstStageMask ), - static_cast( dependencyFlags ), - memoryBarrierCount, - reinterpret_cast( pMemoryBarriers ), - bufferMemoryBarrierCount, - reinterpret_cast( pBufferMemoryBarriers ), - imageMemoryBarrierCount, - reinterpret_cast( pImageMemoryBarriers ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::pipelineBarrier( - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPipelineBarrier( m_commandBuffer, - static_cast( srcStageMask ), - static_cast( dstStageMask ), - static_cast( dependencyFlags ), - memoryBarriers.size(), - reinterpret_cast( memoryBarriers.data() ), - bufferMemoryBarriers.size(), - reinterpret_cast( bufferMemoryBarriers.data() ), - imageMemoryBarriers.size(), - reinterpret_cast( imageMemoryBarriers.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::beginQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginQuery( - m_commandBuffer, static_cast( queryPool ), query, static_cast( flags ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::endQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndQuery( m_commandBuffer, static_cast( queryPool ), query ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::resetQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResetQueryPool( m_commandBuffer, static_cast( queryPool ), firstQuery, queryCount ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::writeTimestamp( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteTimestamp( m_commandBuffer, - static_cast( pipelineStage ), - static_cast( queryPool ), - query ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::copyQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyQueryPoolResults( m_commandBuffer, - static_cast( queryPool ), - firstQuery, - queryCount, - static_cast( dstBuffer ), - static_cast( dstOffset ), - static_cast( stride ), - static_cast( flags ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::pushConstants( VULKAN_HPP_NAMESPACE::PipelineLayout layout, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags, - uint32_t offset, - uint32_t size, - const void * pValues, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPushConstants( m_commandBuffer, - static_cast( layout ), - static_cast( stageFlags ), - offset, - size, - pValues ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::pushConstants( VULKAN_HPP_NAMESPACE::PipelineLayout layout, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags, - uint32_t offset, - ArrayProxy const & values, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPushConstants( m_commandBuffer, - static_cast( layout ), - static_cast( stageFlags ), - offset, - values.size() * sizeof( ValuesType ), - reinterpret_cast( values.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo * pRenderPassBegin, - VULKAN_HPP_NAMESPACE::SubpassContents contents, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderPass( m_commandBuffer, - reinterpret_cast( pRenderPassBegin ), - static_cast( contents ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - VULKAN_HPP_NAMESPACE::SubpassContents contents, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderPass( m_commandBuffer, - reinterpret_cast( &renderPassBegin ), - static_cast( contents ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::nextSubpass( VULKAN_HPP_NAMESPACE::SubpassContents contents, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdNextSubpass( m_commandBuffer, static_cast( contents ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRenderPass( m_commandBuffer ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::executeCommands( uint32_t commandBufferCount, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdExecuteCommands( - m_commandBuffer, commandBufferCount, reinterpret_cast( pCommandBuffers ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::executeCommands( ArrayProxy const & commandBuffers, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdExecuteCommands( - m_commandBuffer, commandBuffers.size(), reinterpret_cast( commandBuffers.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_1 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result enumerateInstanceVersion( uint32_t * pApiVersion, - Dispatch const & d ) VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumerateInstanceVersion( pApiVersion ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type enumerateInstanceVersion( Dispatch const & d ) - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t apiVersion; - Result result = static_cast( d.vkEnumerateInstanceVersion( &apiVersion ) ); - return createResultValue( result, apiVersion, VULKAN_HPP_NAMESPACE_STRING "::enumerateInstanceVersion" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::bindBufferMemory2( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindBufferMemoryInfo * pBindInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBindBufferMemory2( - m_device, bindInfoCount, reinterpret_cast( pBindInfos ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindBufferMemory2( ArrayProxy const & bindInfos, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindBufferMemory2( - m_device, bindInfos.size(), reinterpret_cast( bindInfos.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindBufferMemory2" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::bindImageMemory2( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindImageMemoryInfo * pBindInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkBindImageMemory2( m_device, bindInfoCount, reinterpret_cast( pBindInfos ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindImageMemory2( ArrayProxy const & bindInfos, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindImageMemory2( - m_device, bindInfos.size(), reinterpret_cast( bindInfos.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindImageMemory2" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getGroupPeerMemoryFeatures( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags * pPeerMemoryFeatures, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceGroupPeerMemoryFeatures( m_device, - heapIndex, - localDeviceIndex, - remoteDeviceIndex, - reinterpret_cast( pPeerMemoryFeatures ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags - Device::getGroupPeerMemoryFeatures( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags peerMemoryFeatures; - d.vkGetDeviceGroupPeerMemoryFeatures( m_device, - heapIndex, - localDeviceIndex, - remoteDeviceIndex, - reinterpret_cast( &peerMemoryFeatures ) ); - return peerMemoryFeatures; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setDeviceMask( uint32_t deviceMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDeviceMask( m_commandBuffer, deviceMask ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::dispatchBase( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDispatchBase( m_commandBuffer, baseGroupX, baseGroupY, baseGroupZ, groupCountX, groupCountY, groupCountZ ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Instance::enumeratePhysicalDeviceGroups( - uint32_t * pPhysicalDeviceGroupCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties * pPhysicalDeviceGroupProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumeratePhysicalDeviceGroups( - m_instance, - pPhysicalDeviceGroupCount, - reinterpret_cast( pPhysicalDeviceGroupProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::enumeratePhysicalDeviceGroups( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector physicalDeviceGroupProperties; - uint32_t physicalDeviceGroupCount; - Result result; - do - { - result = - static_cast( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - result = static_cast( d.vkEnumeratePhysicalDeviceGroups( - m_instance, - &physicalDeviceGroupCount, - reinterpret_cast( physicalDeviceGroupProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() ); - if ( physicalDeviceGroupCount < physicalDeviceGroupProperties.size() ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - } - } - return createResultValue( - result, physicalDeviceGroupProperties, VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDeviceGroups" ); - } - - template < - typename PhysicalDeviceGroupPropertiesAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::enumeratePhysicalDeviceGroups( - PhysicalDeviceGroupPropertiesAllocator & physicalDeviceGroupPropertiesAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector physicalDeviceGroupProperties( - physicalDeviceGroupPropertiesAllocator ); - uint32_t physicalDeviceGroupCount; - Result result; - do - { - result = - static_cast( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - result = static_cast( d.vkEnumeratePhysicalDeviceGroups( - m_instance, - &physicalDeviceGroupCount, - reinterpret_cast( physicalDeviceGroupProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() ); - if ( physicalDeviceGroupCount < physicalDeviceGroupProperties.size() ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - } - } - return createResultValue( - result, physicalDeviceGroupProperties, VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDeviceGroups" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getImageMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageMemoryRequirements2( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetImageMemoryRequirements2( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getImageMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetImageMemoryRequirements2( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getBufferMemoryRequirements2( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetBufferMemoryRequirements2( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirements2( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetBufferMemoryRequirements2( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getBufferMemoryRequirements2( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetBufferMemoryRequirements2( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getImageSparseMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageSparseMemoryRequirements2( - m_device, - reinterpret_cast( pInfo ), - pSparseMemoryRequirementCount, - reinterpret_cast( pSparseMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements; - uint32_t sparseMemoryRequirementCount; - d.vkGetImageSparseMemoryRequirements2( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetImageSparseMemoryRequirements2( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - template < - typename SparseImageMemoryRequirements2Allocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements( - sparseImageMemoryRequirements2Allocator ); - uint32_t sparseMemoryRequirementCount; - d.vkGetImageSparseMemoryRequirements2( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetImageSparseMemoryRequirements2( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getFeatures2( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 * pFeatures, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceFeatures2( m_physicalDevice, reinterpret_cast( pFeatures ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 - PhysicalDevice::getFeatures2( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 features; - d.vkGetPhysicalDeviceFeatures2( m_physicalDevice, reinterpret_cast( &features ) ); - return features; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFeatures2( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 & features = - structureChain.template get(); - d.vkGetPhysicalDeviceFeatures2( m_physicalDevice, reinterpret_cast( &features ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getProperties2( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceProperties2( m_physicalDevice, - reinterpret_cast( pProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - PhysicalDevice::getProperties2( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 properties; - d.vkGetPhysicalDeviceProperties2( m_physicalDevice, - reinterpret_cast( &properties ) ); - return properties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getProperties2( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 & properties = - structureChain.template get(); - d.vkGetPhysicalDeviceProperties2( m_physicalDevice, - reinterpret_cast( &properties ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::FormatProperties2 * pFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceFormatProperties2( - m_physicalDevice, static_cast( format ), reinterpret_cast( pFormatProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::FormatProperties2 - PhysicalDevice::getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::FormatProperties2 formatProperties; - d.vkGetPhysicalDeviceFormatProperties2( - m_physicalDevice, static_cast( format ), reinterpret_cast( &formatProperties ) ); - return formatProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::FormatProperties2 & formatProperties = - structureChain.template get(); - d.vkGetPhysicalDeviceFormatProperties2( - m_physicalDevice, static_cast( format ), reinterpret_cast( &formatProperties ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 * pImageFormatInfo, - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 * pImageFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( pImageFormatInfo ), - reinterpret_cast( pImageFormatProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 imageFormatProperties; - Result result = static_cast( d.vkGetPhysicalDeviceImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - return createResultValue( - result, imageFormatProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 & imageFormatProperties = - structureChain.template get(); - Result result = static_cast( d.vkGetPhysicalDeviceImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - return createResultValue( - result, structureChain, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getQueueFamilyProperties2( uint32_t * pQueueFamilyPropertyCount, - VULKAN_HPP_NAMESPACE::QueueFamilyProperties2 * pQueueFamilyProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceQueueFamilyProperties2( - m_physicalDevice, - pQueueFamilyPropertyCount, - reinterpret_cast( pQueueFamilyProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector queueFamilyProperties; - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - queueFamilyProperties.resize( queueFamilyPropertyCount ); - d.vkGetPhysicalDeviceQueueFamilyProperties2( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2( QueueFamilyProperties2Allocator & queueFamilyProperties2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector queueFamilyProperties( - queueFamilyProperties2Allocator ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - queueFamilyProperties.resize( queueFamilyPropertyCount ); - d.vkGetPhysicalDeviceQueueFamilyProperties2( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - std::vector returnVector( queueFamilyPropertyCount ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - queueFamilyProperties[i].pNext = - returnVector[i].template get().pNext; - } - d.vkGetPhysicalDeviceQueueFamilyProperties2( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - returnVector[i].template get() = queueFamilyProperties[i]; - } - return returnVector; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2( StructureChainAllocator & structureChainAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - std::vector returnVector( queueFamilyPropertyCount, - structureChainAllocator ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - queueFamilyProperties[i].pNext = - returnVector[i].template get().pNext; - } - d.vkGetPhysicalDeviceQueueFamilyProperties2( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - returnVector[i].template get() = queueFamilyProperties[i]; - } - return returnVector; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getMemoryProperties2( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 * pMemoryProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceMemoryProperties2( - m_physicalDevice, reinterpret_cast( pMemoryProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - PhysicalDevice::getMemoryProperties2( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 memoryProperties; - d.vkGetPhysicalDeviceMemoryProperties2( - m_physicalDevice, reinterpret_cast( &memoryProperties ) ); - return memoryProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getMemoryProperties2( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 & memoryProperties = - structureChain.template get(); - d.vkGetPhysicalDeviceMemoryProperties2( - m_physicalDevice, reinterpret_cast( &memoryProperties ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getSparseImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 * pFormatInfo, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties2 * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceSparseImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( pFormatInfo ), - pPropertyCount, - reinterpret_cast( pProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - d.vkGetPhysicalDeviceSparseImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - nullptr ); - properties.resize( propertyCount ); - d.vkGetPhysicalDeviceSparseImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - return properties; - } - - template < - typename SparseImageFormatProperties2Allocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, - SparseImageFormatProperties2Allocator & sparseImageFormatProperties2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - sparseImageFormatProperties2Allocator ); - uint32_t propertyCount; - d.vkGetPhysicalDeviceSparseImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - nullptr ); - properties.resize( propertyCount ); - d.vkGetPhysicalDeviceSparseImageFormatProperties2( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - return properties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::trimCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkTrimCommandPool( - m_device, static_cast( commandPool ), static_cast( flags ) ); - } - - template - VULKAN_HPP_INLINE void Device::getQueue2( const VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 * pQueueInfo, - VULKAN_HPP_NAMESPACE::Queue * pQueue, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceQueue2( - m_device, reinterpret_cast( pQueueInfo ), reinterpret_cast( pQueue ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Queue - Device::getQueue2( const VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 & queueInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Queue queue; - d.vkGetDeviceQueue2( - m_device, reinterpret_cast( &queueInfo ), reinterpret_cast( &queue ) ); - return queue; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createSamplerYcbcrConversion( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion * pYcbcrConversion, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateSamplerYcbcrConversion( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pYcbcrConversion ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createSamplerYcbcrConversion( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; - Result result = static_cast( - d.vkCreateSamplerYcbcrConversion( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &ycbcrConversion ) ) ); - return createResultValue( - result, ycbcrConversion, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerYcbcrConversion" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSamplerYcbcrConversionUnique( - const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; - Result result = static_cast( - d.vkCreateSamplerYcbcrConversion( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &ycbcrConversion ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, ycbcrConversion, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerYcbcrConversionUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySamplerYcbcrConversion( m_device, - static_cast( ycbcrConversion ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySamplerYcbcrConversion( - m_device, - static_cast( ycbcrConversion ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySamplerYcbcrConversion( m_device, - static_cast( ycbcrConversion ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySamplerYcbcrConversion( - m_device, - static_cast( ycbcrConversion ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::createDescriptorUpdateTemplate( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate * pDescriptorUpdateTemplate, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateDescriptorUpdateTemplate( - m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pDescriptorUpdateTemplate ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createDescriptorUpdateTemplate( const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate; - Result result = static_cast( d.vkCreateDescriptorUpdateTemplate( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &descriptorUpdateTemplate ) ) ); - return createResultValue( - result, descriptorUpdateTemplate, VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorUpdateTemplate" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createDescriptorUpdateTemplateUnique( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate; - Result result = static_cast( d.vkCreateDescriptorUpdateTemplate( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &descriptorUpdateTemplate ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorUpdateTemplateUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorUpdateTemplate( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorUpdateTemplate( m_device, - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorUpdateTemplate( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorUpdateTemplate( - m_device, - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorUpdateTemplate( m_device, - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorUpdateTemplate( - m_device, - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::updateDescriptorSetWithTemplate( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUpdateDescriptorSetWithTemplate( m_device, - static_cast( descriptorSet ), - static_cast( descriptorUpdateTemplate ), - pData ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::updateDescriptorSetWithTemplate( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUpdateDescriptorSetWithTemplate( m_device, - static_cast( descriptorSet ), - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( &data ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getExternalBufferProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo * pExternalBufferInfo, - VULKAN_HPP_NAMESPACE::ExternalBufferProperties * pExternalBufferProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceExternalBufferProperties( - m_physicalDevice, - reinterpret_cast( pExternalBufferInfo ), - reinterpret_cast( pExternalBufferProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalBufferProperties - PhysicalDevice::getExternalBufferProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalBufferProperties externalBufferProperties; - d.vkGetPhysicalDeviceExternalBufferProperties( - m_physicalDevice, - reinterpret_cast( &externalBufferInfo ), - reinterpret_cast( &externalBufferProperties ) ); - return externalBufferProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getExternalFenceProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo * pExternalFenceInfo, - VULKAN_HPP_NAMESPACE::ExternalFenceProperties * pExternalFenceProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceExternalFenceProperties( - m_physicalDevice, - reinterpret_cast( pExternalFenceInfo ), - reinterpret_cast( pExternalFenceProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalFenceProperties - PhysicalDevice::getExternalFenceProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalFenceProperties externalFenceProperties; - d.vkGetPhysicalDeviceExternalFenceProperties( - m_physicalDevice, - reinterpret_cast( &externalFenceInfo ), - reinterpret_cast( &externalFenceProperties ) ); - return externalFenceProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getExternalSemaphoreProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo * pExternalSemaphoreInfo, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties * pExternalSemaphoreProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceExternalSemaphoreProperties( - m_physicalDevice, - reinterpret_cast( pExternalSemaphoreInfo ), - reinterpret_cast( pExternalSemaphoreProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties - PhysicalDevice::getExternalSemaphoreProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties externalSemaphoreProperties; - d.vkGetPhysicalDeviceExternalSemaphoreProperties( - m_physicalDevice, - reinterpret_cast( &externalSemaphoreInfo ), - reinterpret_cast( &externalSemaphoreProperties ) ); - return externalSemaphoreProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getDescriptorSetLayoutSupport( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo * pCreateInfo, - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport * pSupport, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDescriptorSetLayoutSupport( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pSupport ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport - Device::getDescriptorSetLayoutSupport( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport support; - d.vkGetDescriptorSetLayoutSupport( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return support; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getDescriptorSetLayoutSupport( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport & support = - structureChain.template get(); - d.vkGetDescriptorSetLayoutSupport( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_2 === - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndirectCount( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndexedIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndexedIndirectCount( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::RenderPass * pRenderPass, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateRenderPass2( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pRenderPass ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RenderPass renderPass; - Result result = static_cast( - d.vkCreateRenderPass2( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &renderPass ) ) ); - return createResultValue( result, renderPass, VULKAN_HPP_NAMESPACE_STRING "::Device::createRenderPass2" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createRenderPass2Unique( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RenderPass renderPass; - Result result = static_cast( - d.vkCreateRenderPass2( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &renderPass ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, renderPass, VULKAN_HPP_NAMESPACE_STRING "::Device::createRenderPass2Unique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo * pRenderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderPass2( m_commandBuffer, - reinterpret_cast( pRenderPassBegin ), - reinterpret_cast( pSubpassBeginInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderPass2( m_commandBuffer, - reinterpret_cast( &renderPassBegin ), - reinterpret_cast( &subpassBeginInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::nextSubpass2( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdNextSubpass2( m_commandBuffer, - reinterpret_cast( pSubpassBeginInfo ), - reinterpret_cast( pSubpassEndInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::nextSubpass2( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdNextSubpass2( m_commandBuffer, - reinterpret_cast( &subpassBeginInfo ), - reinterpret_cast( &subpassEndInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass2( const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRenderPass2( m_commandBuffer, reinterpret_cast( pSubpassEndInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass2( const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRenderPass2( m_commandBuffer, reinterpret_cast( &subpassEndInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::resetQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkResetQueryPool( m_device, static_cast( queryPool ), firstQuery, queryCount ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getSemaphoreCounterValue( - VULKAN_HPP_NAMESPACE::Semaphore semaphore, uint64_t * pValue, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetSemaphoreCounterValue( m_device, static_cast( semaphore ), pValue ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getSemaphoreCounterValue( VULKAN_HPP_NAMESPACE::Semaphore semaphore, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint64_t value; - Result result = - static_cast( d.vkGetSemaphoreCounterValue( m_device, static_cast( semaphore ), &value ) ); - return createResultValue( result, value, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreCounterValue" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::waitSemaphores( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo * pWaitInfo, - uint64_t timeout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkWaitSemaphores( m_device, reinterpret_cast( pWaitInfo ), timeout ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::waitSemaphores( - const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, uint64_t timeout, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkWaitSemaphores( m_device, reinterpret_cast( &waitInfo ), timeout ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::waitSemaphores", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eTimeout } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::signalSemaphore( - const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo * pSignalInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkSignalSemaphore( m_device, reinterpret_cast( pSignalInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::signalSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkSignalSemaphore( m_device, reinterpret_cast( &signalInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::signalSemaphore" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE DeviceAddress Device::getBufferAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetBufferDeviceAddress( m_device, reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE DeviceAddress Device::getBufferAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferDeviceAddress( m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE uint64_t Device::getBufferOpaqueCaptureAddress( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferOpaqueCaptureAddress( m_device, reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE uint64_t Device::getBufferOpaqueCaptureAddress( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferOpaqueCaptureAddress( m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE uint64_t - Device::getMemoryOpaqueCaptureAddress( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeviceMemoryOpaqueCaptureAddress( - m_device, reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE uint64_t - Device::getMemoryOpaqueCaptureAddress( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeviceMemoryOpaqueCaptureAddress( - m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_3 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getToolProperties( uint32_t * pToolCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceToolProperties * pToolProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceToolProperties( - m_physicalDevice, pToolCount, reinterpret_cast( pToolProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getToolProperties( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector toolProperties; - uint32_t toolCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceToolProperties( m_physicalDevice, &toolCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && toolCount ) - { - toolProperties.resize( toolCount ); - result = static_cast( d.vkGetPhysicalDeviceToolProperties( - m_physicalDevice, &toolCount, reinterpret_cast( toolProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( toolCount <= toolProperties.size() ); - if ( toolCount < toolProperties.size() ) - { - toolProperties.resize( toolCount ); - } - } - return createResultValue( - result, toolProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getToolProperties" ); - } - - template < - typename PhysicalDeviceToolPropertiesAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getToolProperties( PhysicalDeviceToolPropertiesAllocator & physicalDeviceToolPropertiesAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector toolProperties( - physicalDeviceToolPropertiesAllocator ); - uint32_t toolCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceToolProperties( m_physicalDevice, &toolCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && toolCount ) - { - toolProperties.resize( toolCount ); - result = static_cast( d.vkGetPhysicalDeviceToolProperties( - m_physicalDevice, &toolCount, reinterpret_cast( toolProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( toolCount <= toolProperties.size() ); - if ( toolCount < toolProperties.size() ) - { - toolProperties.resize( toolCount ); - } - } - return createResultValue( - result, toolProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getToolProperties" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createPrivateDataSlot( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PrivateDataSlot * pPrivateDataSlot, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreatePrivateDataSlot( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPrivateDataSlot ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::createPrivateDataSlot( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot; - Result result = static_cast( - d.vkCreatePrivateDataSlot( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &privateDataSlot ) ) ); - return createResultValue( result, privateDataSlot, VULKAN_HPP_NAMESPACE_STRING "::Device::createPrivateDataSlot" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Device::createPrivateDataSlotUnique( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot; - Result result = static_cast( - d.vkCreatePrivateDataSlot( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &privateDataSlot ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, privateDataSlot, VULKAN_HPP_NAMESPACE_STRING "::Device::createPrivateDataSlotUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyPrivateDataSlot( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPrivateDataSlot( m_device, - static_cast( privateDataSlot ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyPrivateDataSlot( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPrivateDataSlot( m_device, - static_cast( privateDataSlot ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPrivateDataSlot( m_device, - static_cast( privateDataSlot ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPrivateDataSlot( m_device, - static_cast( privateDataSlot ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::setPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkSetPrivateData( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - data ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::setPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkSetPrivateData( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - data ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setPrivateData" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPrivateData( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - pData ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t - Device::getPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint64_t data; - d.vkGetPrivateData( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - &data ); - return data; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setEvent2( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetEvent2( - m_commandBuffer, static_cast( event ), reinterpret_cast( pDependencyInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setEvent2( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetEvent2( - m_commandBuffer, static_cast( event ), reinterpret_cast( &dependencyInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::resetEvent2( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResetEvent2( - m_commandBuffer, static_cast( event ), static_cast( stageMask ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::waitEvents2( uint32_t eventCount, - const VULKAN_HPP_NAMESPACE::Event * pEvents, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWaitEvents2( m_commandBuffer, - eventCount, - reinterpret_cast( pEvents ), - reinterpret_cast( pDependencyInfos ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::waitEvents2( ArrayProxy const & events, - ArrayProxy const & dependencyInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( events.size() == dependencyInfos.size() ); -# else - if ( events.size() != dependencyInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::waitEvents2: events.size() != dependencyInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdWaitEvents2( m_commandBuffer, - events.size(), - reinterpret_cast( events.data() ), - reinterpret_cast( dependencyInfos.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::pipelineBarrier2( const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPipelineBarrier2( m_commandBuffer, reinterpret_cast( pDependencyInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::pipelineBarrier2( const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPipelineBarrier2( m_commandBuffer, reinterpret_cast( &dependencyInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::writeTimestamp2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteTimestamp2( - m_commandBuffer, static_cast( stage ), static_cast( queryPool ), query ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Queue::submit2( uint32_t submitCount, - const VULKAN_HPP_NAMESPACE::SubmitInfo2 * pSubmits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkQueueSubmit2( - m_queue, submitCount, reinterpret_cast( pSubmits ), static_cast( fence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Queue::submit2( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkQueueSubmit2( m_queue, - submits.size(), - reinterpret_cast( submits.data() ), - static_cast( fence ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::submit2" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer2( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 * pCopyBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBuffer2( m_commandBuffer, reinterpret_cast( pCopyBufferInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer2( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBuffer2( m_commandBuffer, reinterpret_cast( ©BufferInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyImage2( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 * pCopyImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImage2( m_commandBuffer, reinterpret_cast( pCopyImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyImage2( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImage2( m_commandBuffer, reinterpret_cast( ©ImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::copyBufferToImage2( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 * pCopyBufferToImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBufferToImage2( m_commandBuffer, - reinterpret_cast( pCopyBufferToImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyBufferToImage2( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBufferToImage2( m_commandBuffer, - reinterpret_cast( ©BufferToImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::copyImageToBuffer2( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 * pCopyImageToBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImageToBuffer2( m_commandBuffer, - reinterpret_cast( pCopyImageToBufferInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyImageToBuffer2( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImageToBuffer2( m_commandBuffer, - reinterpret_cast( ©ImageToBufferInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::blitImage2( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 * pBlitImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBlitImage2( m_commandBuffer, reinterpret_cast( pBlitImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::blitImage2( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBlitImage2( m_commandBuffer, reinterpret_cast( &blitImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::resolveImage2( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 * pResolveImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResolveImage2( m_commandBuffer, reinterpret_cast( pResolveImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::resolveImage2( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResolveImage2( m_commandBuffer, reinterpret_cast( &resolveImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::beginRendering( const VULKAN_HPP_NAMESPACE::RenderingInfo * pRenderingInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRendering( m_commandBuffer, reinterpret_cast( pRenderingInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::beginRendering( const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRendering( m_commandBuffer, reinterpret_cast( &renderingInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::endRendering( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRendering( m_commandBuffer ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setCullMode( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetCullMode( m_commandBuffer, static_cast( cullMode ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setFrontFace( VULKAN_HPP_NAMESPACE::FrontFace frontFace, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetFrontFace( m_commandBuffer, static_cast( frontFace ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setPrimitiveTopology( VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetPrimitiveTopology( m_commandBuffer, static_cast( primitiveTopology ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setViewportWithCount( uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportWithCount( m_commandBuffer, viewportCount, reinterpret_cast( pViewports ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setViewportWithCount( ArrayProxy const & viewports, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportWithCount( - m_commandBuffer, viewports.size(), reinterpret_cast( viewports.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setScissorWithCount( uint32_t scissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetScissorWithCount( m_commandBuffer, scissorCount, reinterpret_cast( pScissors ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setScissorWithCount( ArrayProxy const & scissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetScissorWithCount( - m_commandBuffer, scissors.size(), reinterpret_cast( scissors.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::bindVertexBuffers2( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - const VULKAN_HPP_NAMESPACE::DeviceSize * pSizes, - const VULKAN_HPP_NAMESPACE::DeviceSize * pStrides, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindVertexBuffers2( m_commandBuffer, - firstBinding, - bindingCount, - reinterpret_cast( pBuffers ), - reinterpret_cast( pOffsets ), - reinterpret_cast( pSizes ), - reinterpret_cast( pStrides ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::bindVertexBuffers2( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes, - ArrayProxy const & strides, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); - VULKAN_HPP_ASSERT( sizes.empty() || buffers.size() == sizes.size() ); - VULKAN_HPP_ASSERT( strides.empty() || buffers.size() == strides.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2: buffers.size() != offsets.size()" ); - } - if ( !sizes.empty() && buffers.size() != sizes.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2: buffers.size() != sizes.size()" ); - } - if ( !strides.empty() && buffers.size() != strides.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2: buffers.size() != strides.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBindVertexBuffers2( m_commandBuffer, - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ), - reinterpret_cast( sizes.data() ), - reinterpret_cast( strides.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthTestEnable( m_commandBuffer, static_cast( depthTestEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthWriteEnable( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthWriteEnable( m_commandBuffer, static_cast( depthWriteEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthCompareOp( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthCompareOp( m_commandBuffer, static_cast( depthCompareOp ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthBoundsTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthBoundsTestEnable( m_commandBuffer, static_cast( depthBoundsTestEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilTestEnable( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilTestEnable( m_commandBuffer, static_cast( stencilTestEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilOp( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilOp( m_commandBuffer, - static_cast( faceMask ), - static_cast( failOp ), - static_cast( passOp ), - static_cast( depthFailOp ), - static_cast( compareOp ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::setRasterizerDiscardEnable( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetRasterizerDiscardEnable( m_commandBuffer, static_cast( rasterizerDiscardEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthBiasEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthBiasEnable( m_commandBuffer, static_cast( depthBiasEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setPrimitiveRestartEnable( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetPrimitiveRestartEnable( m_commandBuffer, static_cast( primitiveRestartEnable ) ); - } - - template - VULKAN_HPP_INLINE void - Device::getBufferMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceBufferMemoryRequirements( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetDeviceBufferMemoryRequirements( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getBufferMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetDeviceBufferMemoryRequirements( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getImageMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceImageMemoryRequirements( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetDeviceImageMemoryRequirements( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getImageMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetDeviceImageMemoryRequirements( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getImageSparseMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceImageSparseMemoryRequirements( - m_device, - reinterpret_cast( pInfo ), - pSparseMemoryRequirementCount, - reinterpret_cast( pSparseMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements; - uint32_t sparseMemoryRequirementCount; - d.vkGetDeviceImageSparseMemoryRequirements( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetDeviceImageSparseMemoryRequirements( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - template < - typename SparseImageMemoryRequirements2Allocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements( - sparseImageMemoryRequirements2Allocator ); - uint32_t sparseMemoryRequirementCount; - d.vkGetDeviceImageSparseMemoryRequirements( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetDeviceImageSparseMemoryRequirements( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_surface === - - template - VULKAN_HPP_INLINE void Instance::destroySurfaceKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySurfaceKHR( - m_instance, static_cast( surface ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Instance::destroySurfaceKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySurfaceKHR( m_instance, - static_cast( surface ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySurfaceKHR( - m_instance, static_cast( surface ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySurfaceKHR( m_instance, - static_cast( surface ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getSurfaceSupportKHR( uint32_t queueFamilyIndex, - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::Bool32 * pSupported, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSurfaceSupportKHR( m_physicalDevice, - queueFamilyIndex, - static_cast( surface ), - reinterpret_cast( pSupported ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - PhysicalDevice::getSurfaceSupportKHR( uint32_t queueFamilyIndex, - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Bool32 supported; - Result result = - static_cast( d.vkGetPhysicalDeviceSurfaceSupportKHR( m_physicalDevice, - queueFamilyIndex, - static_cast( surface ), - reinterpret_cast( &supported ) ) ); - return createResultValue( result, supported, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceSupportKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getSurfaceCapabilitiesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR * pSurfaceCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSurfaceCapabilitiesKHR( - m_physicalDevice, - static_cast( surface ), - reinterpret_cast( pSurfaceCapabilities ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getSurfaceCapabilitiesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR surfaceCapabilities; - Result result = static_cast( d.vkGetPhysicalDeviceSurfaceCapabilitiesKHR( - m_physicalDevice, - static_cast( surface ), - reinterpret_cast( &surfaceCapabilities ) ) ); - return createResultValue( - result, surfaceCapabilities, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilitiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - uint32_t * pSurfaceFormatCount, - VULKAN_HPP_NAMESPACE::SurfaceFormatKHR * pSurfaceFormats, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceSurfaceFormatsKHR( m_physicalDevice, - static_cast( surface ), - pSurfaceFormatCount, - reinterpret_cast( pSurfaceFormats ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector surfaceFormats; - uint32_t surfaceFormatCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfaceFormatsKHR( - m_physicalDevice, static_cast( surface ), &surfaceFormatCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && surfaceFormatCount ) - { - surfaceFormats.resize( surfaceFormatCount ); - result = static_cast( - d.vkGetPhysicalDeviceSurfaceFormatsKHR( m_physicalDevice, - static_cast( surface ), - &surfaceFormatCount, - reinterpret_cast( surfaceFormats.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( surfaceFormatCount <= surfaceFormats.size() ); - if ( surfaceFormatCount < surfaceFormats.size() ) - { - surfaceFormats.resize( surfaceFormatCount ); - } - } - return createResultValue( - result, surfaceFormats, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceFormatsKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - SurfaceFormatKHRAllocator & surfaceFormatKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector surfaceFormats( surfaceFormatKHRAllocator ); - uint32_t surfaceFormatCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfaceFormatsKHR( - m_physicalDevice, static_cast( surface ), &surfaceFormatCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && surfaceFormatCount ) - { - surfaceFormats.resize( surfaceFormatCount ); - result = static_cast( - d.vkGetPhysicalDeviceSurfaceFormatsKHR( m_physicalDevice, - static_cast( surface ), - &surfaceFormatCount, - reinterpret_cast( surfaceFormats.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( surfaceFormatCount <= surfaceFormats.size() ); - if ( surfaceFormatCount < surfaceFormats.size() ) - { - surfaceFormats.resize( surfaceFormatCount ); - } - } - return createResultValue( - result, surfaceFormats, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceFormatsKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - uint32_t * pPresentModeCount, - VULKAN_HPP_NAMESPACE::PresentModeKHR * pPresentModes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceSurfacePresentModesKHR( m_physicalDevice, - static_cast( surface ), - pPresentModeCount, - reinterpret_cast( pPresentModes ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector presentModes; - uint32_t presentModeCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfacePresentModesKHR( - m_physicalDevice, static_cast( surface ), &presentModeCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && presentModeCount ) - { - presentModes.resize( presentModeCount ); - result = static_cast( - d.vkGetPhysicalDeviceSurfacePresentModesKHR( m_physicalDevice, - static_cast( surface ), - &presentModeCount, - reinterpret_cast( presentModes.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentModeCount <= presentModes.size() ); - if ( presentModeCount < presentModes.size() ) - { - presentModes.resize( presentModeCount ); - } - } - return createResultValue( - result, presentModes, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfacePresentModesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - PresentModeKHRAllocator & presentModeKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector presentModes( presentModeKHRAllocator ); - uint32_t presentModeCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfacePresentModesKHR( - m_physicalDevice, static_cast( surface ), &presentModeCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && presentModeCount ) - { - presentModes.resize( presentModeCount ); - result = static_cast( - d.vkGetPhysicalDeviceSurfacePresentModesKHR( m_physicalDevice, - static_cast( surface ), - &presentModeCount, - reinterpret_cast( presentModes.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentModeCount <= presentModes.size() ); - if ( presentModeCount < presentModes.size() ) - { - presentModes.resize( presentModeCount ); - } - } - return createResultValue( - result, presentModes, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfacePresentModesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_swapchain === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createSwapchainKHR( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchain, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateSwapchainKHR( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSwapchain ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createSwapchainKHR( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain; - Result result = static_cast( - d.vkCreateSwapchainKHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &swapchain ) ) ); - return createResultValue( result, swapchain, VULKAN_HPP_NAMESPACE_STRING "::Device::createSwapchainKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSwapchainKHRUnique( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain; - Result result = static_cast( - d.vkCreateSwapchainKHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &swapchain ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, swapchain, VULKAN_HPP_NAMESPACE_STRING "::Device::createSwapchainKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroySwapchainKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySwapchainKHR( m_device, - static_cast( swapchain ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroySwapchainKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySwapchainKHR( m_device, - static_cast( swapchain ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySwapchainKHR( m_device, - static_cast( swapchain ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySwapchainKHR( m_device, - static_cast( swapchain ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getSwapchainImagesKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint32_t * pSwapchainImageCount, - VULKAN_HPP_NAMESPACE::Image * pSwapchainImages, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetSwapchainImagesKHR( m_device, - static_cast( swapchain ), - pSwapchainImageCount, - reinterpret_cast( pSwapchainImages ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getSwapchainImagesKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector swapchainImages; - uint32_t swapchainImageCount; - Result result; - do - { - result = static_cast( d.vkGetSwapchainImagesKHR( - m_device, static_cast( swapchain ), &swapchainImageCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && swapchainImageCount ) - { - swapchainImages.resize( swapchainImageCount ); - result = - static_cast( d.vkGetSwapchainImagesKHR( m_device, - static_cast( swapchain ), - &swapchainImageCount, - reinterpret_cast( swapchainImages.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( swapchainImageCount <= swapchainImages.size() ); - if ( swapchainImageCount < swapchainImages.size() ) - { - swapchainImages.resize( swapchainImageCount ); - } - } - return createResultValue( result, swapchainImages, VULKAN_HPP_NAMESPACE_STRING "::Device::getSwapchainImagesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getSwapchainImagesKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - ImageAllocator & imageAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector swapchainImages( imageAllocator ); - uint32_t swapchainImageCount; - Result result; - do - { - result = static_cast( d.vkGetSwapchainImagesKHR( - m_device, static_cast( swapchain ), &swapchainImageCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && swapchainImageCount ) - { - swapchainImages.resize( swapchainImageCount ); - result = - static_cast( d.vkGetSwapchainImagesKHR( m_device, - static_cast( swapchain ), - &swapchainImageCount, - reinterpret_cast( swapchainImages.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( swapchainImageCount <= swapchainImages.size() ); - if ( swapchainImageCount < swapchainImages.size() ) - { - swapchainImages.resize( swapchainImageCount ); - } - } - return createResultValue( result, swapchainImages, VULKAN_HPP_NAMESPACE_STRING "::Device::getSwapchainImagesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::acquireNextImageKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t timeout, - VULKAN_HPP_NAMESPACE::Semaphore semaphore, - VULKAN_HPP_NAMESPACE::Fence fence, - uint32_t * pImageIndex, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkAcquireNextImageKHR( m_device, - static_cast( swapchain ), - timeout, - static_cast( semaphore ), - static_cast( fence ), - pImageIndex ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::acquireNextImageKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t timeout, - VULKAN_HPP_NAMESPACE::Semaphore semaphore, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t imageIndex; - Result result = static_cast( d.vkAcquireNextImageKHR( m_device, - static_cast( swapchain ), - timeout, - static_cast( semaphore ), - static_cast( fence ), - &imageIndex ) ); - return createResultValue( result, - imageIndex, - VULKAN_HPP_NAMESPACE_STRING "::Device::acquireNextImageKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eTimeout, - VULKAN_HPP_NAMESPACE::Result::eNotReady, - VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Queue::presentKHR( - const VULKAN_HPP_NAMESPACE::PresentInfoKHR * pPresentInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkQueuePresentKHR( m_queue, reinterpret_cast( pPresentInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Queue::presentKHR( const VULKAN_HPP_NAMESPACE::PresentInfoKHR & presentInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkQueuePresentKHR( m_queue, reinterpret_cast( &presentInfo ) ) ); - return createResultValue( - result, - VULKAN_HPP_NAMESPACE_STRING "::Queue::presentKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getGroupPresentCapabilitiesKHR( - VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR * pDeviceGroupPresentCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetDeviceGroupPresentCapabilitiesKHR( - m_device, reinterpret_cast( pDeviceGroupPresentCapabilities ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getGroupPresentCapabilitiesKHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR deviceGroupPresentCapabilities; - Result result = static_cast( d.vkGetDeviceGroupPresentCapabilitiesKHR( - m_device, reinterpret_cast( &deviceGroupPresentCapabilities ) ) ); - return createResultValue( - result, deviceGroupPresentCapabilities, VULKAN_HPP_NAMESPACE_STRING "::Device::getGroupPresentCapabilitiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getGroupSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR * pModes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDeviceGroupSurfacePresentModesKHR( m_device, - static_cast( surface ), - reinterpret_cast( pModes ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getGroupSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes; - Result result = static_cast( - d.vkGetDeviceGroupSurfacePresentModesKHR( m_device, - static_cast( surface ), - reinterpret_cast( &modes ) ) ); - return createResultValue( result, modes, VULKAN_HPP_NAMESPACE_STRING "::Device::getGroupSurfacePresentModesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - uint32_t * pRectCount, - VULKAN_HPP_NAMESPACE::Rect2D * pRects, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDevicePresentRectanglesKHR( - m_physicalDevice, static_cast( surface ), pRectCount, reinterpret_cast( pRects ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector rects; - uint32_t rectCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDevicePresentRectanglesKHR( - m_physicalDevice, static_cast( surface ), &rectCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && rectCount ) - { - rects.resize( rectCount ); - result = static_cast( - d.vkGetPhysicalDevicePresentRectanglesKHR( m_physicalDevice, - static_cast( surface ), - &rectCount, - reinterpret_cast( rects.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( rectCount <= rects.size() ); - if ( rectCount < rects.size() ) - { - rects.resize( rectCount ); - } - } - return createResultValue( result, rects, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getPresentRectanglesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Rect2DAllocator & rect2DAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector rects( rect2DAllocator ); - uint32_t rectCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDevicePresentRectanglesKHR( - m_physicalDevice, static_cast( surface ), &rectCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && rectCount ) - { - rects.resize( rectCount ); - result = static_cast( - d.vkGetPhysicalDevicePresentRectanglesKHR( m_physicalDevice, - static_cast( surface ), - &rectCount, - reinterpret_cast( rects.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( rectCount <= rects.size() ); - if ( rectCount < rects.size() ) - { - rects.resize( rectCount ); - } - } - return createResultValue( result, rects, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getPresentRectanglesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::acquireNextImage2KHR( const VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR * pAcquireInfo, - uint32_t * pImageIndex, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkAcquireNextImage2KHR( - m_device, reinterpret_cast( pAcquireInfo ), pImageIndex ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::acquireNextImage2KHR( const VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR & acquireInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t imageIndex; - Result result = static_cast( d.vkAcquireNextImage2KHR( - m_device, reinterpret_cast( &acquireInfo ), &imageIndex ) ); - return createResultValue( result, - imageIndex, - VULKAN_HPP_NAMESPACE_STRING "::Device::acquireNextImage2KHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eTimeout, - VULKAN_HPP_NAMESPACE::Result::eNotReady, - VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_display === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayPropertiesKHR( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayPropertiesKHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceDisplayPropertiesKHR( - m_physicalDevice, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayPropertiesKHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = - static_cast( d.vkGetPhysicalDeviceDisplayPropertiesKHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayPropertiesKHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPropertiesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayPropertiesKHR( DisplayPropertiesKHRAllocator & displayPropertiesKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( displayPropertiesKHRAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = - static_cast( d.vkGetPhysicalDeviceDisplayPropertiesKHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayPropertiesKHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPropertiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayPlanePropertiesKHR( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayPlanePropertiesKHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - m_physicalDevice, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayPlanePropertiesKHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceDisplayPlanePropertiesKHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlanePropertiesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayPlanePropertiesKHR( - DisplayPlanePropertiesKHRAllocator & displayPlanePropertiesKHRAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - displayPlanePropertiesKHRAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceDisplayPlanePropertiesKHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlanePropertiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex, - uint32_t * pDisplayCount, - VULKAN_HPP_NAMESPACE::DisplayKHR * pDisplays, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetDisplayPlaneSupportedDisplaysKHR( - m_physicalDevice, planeIndex, pDisplayCount, reinterpret_cast( pDisplays ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector displays; - uint32_t displayCount; - Result result; - do - { - result = static_cast( - d.vkGetDisplayPlaneSupportedDisplaysKHR( m_physicalDevice, planeIndex, &displayCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && displayCount ) - { - displays.resize( displayCount ); - result = static_cast( d.vkGetDisplayPlaneSupportedDisplaysKHR( - m_physicalDevice, planeIndex, &displayCount, reinterpret_cast( displays.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( displayCount <= displays.size() ); - if ( displayCount < displays.size() ) - { - displays.resize( displayCount ); - } - } - return createResultValue( - result, displays, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneSupportedDisplaysKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex, - DisplayKHRAllocator & displayKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector displays( displayKHRAllocator ); - uint32_t displayCount; - Result result; - do - { - result = static_cast( - d.vkGetDisplayPlaneSupportedDisplaysKHR( m_physicalDevice, planeIndex, &displayCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && displayCount ) - { - displays.resize( displayCount ); - result = static_cast( d.vkGetDisplayPlaneSupportedDisplaysKHR( - m_physicalDevice, planeIndex, &displayCount, reinterpret_cast( displays.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( displayCount <= displays.size() ); - if ( displayCount < displays.size() ) - { - displays.resize( displayCount ); - } - } - return createResultValue( - result, displays, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneSupportedDisplaysKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayModePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayModePropertiesKHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDisplayModePropertiesKHR( m_physicalDevice, - static_cast( display ), - pPropertyCount, - reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayModePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkGetDisplayModePropertiesKHR( - m_physicalDevice, static_cast( display ), &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkGetDisplayModePropertiesKHR( m_physicalDevice, - static_cast( display ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayModePropertiesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayModePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - DisplayModePropertiesKHRAllocator & displayModePropertiesKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - displayModePropertiesKHRAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkGetDisplayModePropertiesKHR( - m_physicalDevice, static_cast( display ), &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkGetDisplayModePropertiesKHR( m_physicalDevice, - static_cast( display ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayModePropertiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::createDisplayModeKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DisplayModeKHR * pMode, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDisplayModeKHR( m_physicalDevice, - static_cast( display ), - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pMode ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::createDisplayModeKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayModeKHR mode; - Result result = static_cast( - d.vkCreateDisplayModeKHR( m_physicalDevice, - static_cast( display ), - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &mode ) ) ); - return createResultValue( result, mode, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::createDisplayModeKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::createDisplayModeKHRUnique( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayModeKHR mode; - Result result = static_cast( - d.vkCreateDisplayModeKHR( m_physicalDevice, - static_cast( display ), - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &mode ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, mode, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::createDisplayModeKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayPlaneCapabilitiesKHR( VULKAN_HPP_NAMESPACE::DisplayModeKHR mode, - uint32_t planeIndex, - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR * pCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDisplayPlaneCapabilitiesKHR( m_physicalDevice, - static_cast( mode ), - planeIndex, - reinterpret_cast( pCapabilities ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getDisplayPlaneCapabilitiesKHR( VULKAN_HPP_NAMESPACE::DisplayModeKHR mode, - uint32_t planeIndex, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR capabilities; - Result result = static_cast( - d.vkGetDisplayPlaneCapabilitiesKHR( m_physicalDevice, - static_cast( mode ), - planeIndex, - reinterpret_cast( &capabilities ) ) ); - return createResultValue( - result, capabilities, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneCapabilitiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createDisplayPlaneSurfaceKHR( const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDisplayPlaneSurfaceKHR( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createDisplayPlaneSurfaceKHR( const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateDisplayPlaneSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDisplayPlaneSurfaceKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createDisplayPlaneSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateDisplayPlaneSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDisplayPlaneSurfaceKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_display_swapchain === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createSharedSwapchainsKHR( uint32_t swapchainCount, - const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - swapchainCount, - reinterpret_cast( pCreateInfos ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSwapchains ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSharedSwapchainsKHR( - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector swapchains( createInfos.size() ); - Result result = static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( swapchains.data() ) ) ); - return createResultValue( result, swapchains, VULKAN_HPP_NAMESPACE_STRING "::Device::createSharedSwapchainsKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSharedSwapchainsKHR( - ArrayProxy const & createInfos, - Optional allocator, - SwapchainKHRAllocator & swapchainKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector swapchains( createInfos.size(), - swapchainKHRAllocator ); - Result result = static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( swapchains.data() ) ) ); - return createResultValue( result, swapchains, VULKAN_HPP_NAMESPACE_STRING "::Device::createSharedSwapchainsKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createSharedSwapchainKHR( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain; - Result result = static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &swapchain ) ) ); - return createResultValue( result, swapchain, VULKAN_HPP_NAMESPACE_STRING "::Device::createSharedSwapchainKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, SwapchainKHRAllocator>>::type - Device::createSharedSwapchainsKHRUnique( - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, SwapchainKHRAllocator> uniqueSwapchains; - std::vector swapchains( createInfos.size() ); - Result result = static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( swapchains.data() ) ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - uniqueSwapchains.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniqueSwapchains.push_back( UniqueHandle( swapchains[i], deleter ) ); - } - } - return createResultValue( - result, std::move( uniqueSwapchains ), VULKAN_HPP_NAMESPACE_STRING "::Device::createSharedSwapchainsKHRUnique" ); - } - - template >::value, - int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, SwapchainKHRAllocator>>::type - Device::createSharedSwapchainsKHRUnique( - ArrayProxy const & createInfos, - Optional allocator, - SwapchainKHRAllocator & swapchainKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, SwapchainKHRAllocator> uniqueSwapchains( swapchainKHRAllocator ); - std::vector swapchains( createInfos.size() ); - Result result = static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( swapchains.data() ) ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - uniqueSwapchains.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniqueSwapchains.push_back( UniqueHandle( swapchains[i], deleter ) ); - } - } - return createResultValue( - result, std::move( uniqueSwapchains ), VULKAN_HPP_NAMESPACE_STRING "::Device::createSharedSwapchainsKHRUnique" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSharedSwapchainKHRUnique( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - SwapchainKHR swapchain; - Result result = static_cast( - d.vkCreateSharedSwapchainsKHR( m_device, - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &swapchain ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, swapchain, VULKAN_HPP_NAMESPACE_STRING "::Device::createSharedSwapchainKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createXlibSurfaceKHR( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateXlibSurfaceKHR( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createXlibSurfaceKHR( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateXlibSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createXlibSurfaceKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createXlibSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateXlibSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createXlibSurfaceKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getXlibPresentationSupportKHR( uint32_t queueFamilyIndex, - Display * dpy, - VisualID visualID, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceXlibPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, dpy, visualID ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getXlibPresentationSupportKHR( uint32_t queueFamilyIndex, - Display & dpy, - VisualID visualID, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetPhysicalDeviceXlibPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, &dpy, visualID ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createXcbSurfaceKHR( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateXcbSurfaceKHR( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createXcbSurfaceKHR( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateXcbSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createXcbSurfaceKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createXcbSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateXcbSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createXcbSurfaceKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getXcbPresentationSupportKHR( uint32_t queueFamilyIndex, - xcb_connection_t * connection, - xcb_visualid_t visual_id, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceXcbPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, connection, visual_id ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getXcbPresentationSupportKHR( uint32_t queueFamilyIndex, - xcb_connection_t & connection, - xcb_visualid_t visual_id, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetPhysicalDeviceXcbPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, &connection, visual_id ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createWaylandSurfaceKHR( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateWaylandSurfaceKHR( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createWaylandSurfaceKHR( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateWaylandSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createWaylandSurfaceKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createWaylandSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateWaylandSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createWaylandSurfaceKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getWaylandPresentationSupportKHR( - uint32_t queueFamilyIndex, struct wl_display * display, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceWaylandPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, display ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getWaylandPresentationSupportKHR( - uint32_t queueFamilyIndex, struct wl_display & display, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetPhysicalDeviceWaylandPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, &display ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createAndroidSurfaceKHR( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateAndroidSurfaceKHR( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createAndroidSurfaceKHR( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateAndroidSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createAndroidSurfaceKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createAndroidSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateAndroidSurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createAndroidSurfaceKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createWin32SurfaceKHR( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateWin32SurfaceKHR( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createWin32SurfaceKHR( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateWin32SurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createWin32SurfaceKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createWin32SurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateWin32SurfaceKHR( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createWin32SurfaceKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getWin32PresentationSupportKHR( - uint32_t queueFamilyIndex, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceWin32PresentationSupportKHR( m_physicalDevice, queueFamilyIndex ) ); - } -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createDebugReportCallbackEXT( const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT * pCallback, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDebugReportCallbackEXT( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pCallback ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Instance::createDebugReportCallbackEXT( const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback; - Result result = static_cast( - d.vkCreateDebugReportCallbackEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &callback ) ) ); - return createResultValue( - result, callback, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDebugReportCallbackEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Instance::createDebugReportCallbackEXTUnique( - const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback; - Result result = static_cast( - d.vkCreateDebugReportCallbackEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &callback ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, callback, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDebugReportCallbackEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Instance::destroyDebugReportCallbackEXT( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugReportCallbackEXT( m_instance, - static_cast( callback ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Instance::destroyDebugReportCallbackEXT( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugReportCallbackEXT( - m_instance, - static_cast( callback ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugReportCallbackEXT( m_instance, - static_cast( callback ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugReportCallbackEXT( - m_instance, - static_cast( callback ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Instance::debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const char * pLayerPrefix, - const char * pMessage, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDebugReportMessageEXT( m_instance, - static_cast( flags ), - static_cast( objectType ), - object, - location, - messageCode, - pLayerPrefix, - pMessage ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Instance::debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const std::string & layerPrefix, - const std::string & message, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDebugReportMessageEXT( m_instance, - static_cast( flags ), - static_cast( objectType ), - object, - location, - messageCode, - layerPrefix.c_str(), - message.c_str() ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_debug_marker === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::debugMarkerSetObjectTagEXT( - const VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT * pTagInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkDebugMarkerSetObjectTagEXT( m_device, reinterpret_cast( pTagInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::debugMarkerSetObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT & tagInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkDebugMarkerSetObjectTagEXT( m_device, reinterpret_cast( &tagInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::debugMarkerSetObjectTagEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::debugMarkerSetObjectNameEXT( - const VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT * pNameInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkDebugMarkerSetObjectNameEXT( - m_device, reinterpret_cast( pNameInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::debugMarkerSetObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT & nameInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkDebugMarkerSetObjectNameEXT( - m_device, reinterpret_cast( &nameInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::debugMarkerSetObjectNameEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::debugMarkerBeginEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT * pMarkerInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDebugMarkerBeginEXT( m_commandBuffer, reinterpret_cast( pMarkerInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::debugMarkerBeginEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDebugMarkerBeginEXT( m_commandBuffer, reinterpret_cast( &markerInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::debugMarkerEndEXT( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDebugMarkerEndEXT( m_commandBuffer ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::debugMarkerInsertEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT * pMarkerInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDebugMarkerInsertEXT( m_commandBuffer, reinterpret_cast( pMarkerInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::debugMarkerInsertEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDebugMarkerInsertEXT( m_commandBuffer, reinterpret_cast( &markerInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pVideoProfile, - VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR * pCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceVideoCapabilitiesKHR( m_physicalDevice, - reinterpret_cast( pVideoProfile ), - reinterpret_cast( pCapabilities ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR capabilities; - Result result = static_cast( - d.vkGetPhysicalDeviceVideoCapabilitiesKHR( m_physicalDevice, - reinterpret_cast( &videoProfile ), - reinterpret_cast( &capabilities ) ) ); - return createResultValue( - result, capabilities, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoCapabilitiesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR & capabilities = - structureChain.template get(); - Result result = static_cast( - d.vkGetPhysicalDeviceVideoCapabilitiesKHR( m_physicalDevice, - reinterpret_cast( &videoProfile ), - reinterpret_cast( &capabilities ) ) ); - return createResultValue( - result, structureChain, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoCapabilitiesKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getVideoFormatPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR * pVideoFormatInfo, - uint32_t * pVideoFormatPropertyCount, - VULKAN_HPP_NAMESPACE::VideoFormatPropertiesKHR * pVideoFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceVideoFormatPropertiesKHR( - m_physicalDevice, - reinterpret_cast( pVideoFormatInfo ), - pVideoFormatPropertyCount, - reinterpret_cast( pVideoFormatProperties ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getVideoFormatPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR & videoFormatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector videoFormatProperties; - uint32_t videoFormatPropertyCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceVideoFormatPropertiesKHR( - m_physicalDevice, - reinterpret_cast( &videoFormatInfo ), - &videoFormatPropertyCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && videoFormatPropertyCount ) - { - videoFormatProperties.resize( videoFormatPropertyCount ); - result = static_cast( d.vkGetPhysicalDeviceVideoFormatPropertiesKHR( - m_physicalDevice, - reinterpret_cast( &videoFormatInfo ), - &videoFormatPropertyCount, - reinterpret_cast( videoFormatProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( videoFormatPropertyCount <= videoFormatProperties.size() ); - if ( videoFormatPropertyCount < videoFormatProperties.size() ) - { - videoFormatProperties.resize( videoFormatPropertyCount ); - } - } - return createResultValue( - result, videoFormatProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoFormatPropertiesKHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getVideoFormatPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR & videoFormatInfo, - VideoFormatPropertiesKHRAllocator & videoFormatPropertiesKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector videoFormatProperties( - videoFormatPropertiesKHRAllocator ); - uint32_t videoFormatPropertyCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceVideoFormatPropertiesKHR( - m_physicalDevice, - reinterpret_cast( &videoFormatInfo ), - &videoFormatPropertyCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && videoFormatPropertyCount ) - { - videoFormatProperties.resize( videoFormatPropertyCount ); - result = static_cast( d.vkGetPhysicalDeviceVideoFormatPropertiesKHR( - m_physicalDevice, - reinterpret_cast( &videoFormatInfo ), - &videoFormatPropertyCount, - reinterpret_cast( videoFormatProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( videoFormatPropertyCount <= videoFormatProperties.size() ); - if ( videoFormatPropertyCount < videoFormatProperties.size() ) - { - videoFormatProperties.resize( videoFormatPropertyCount ); - } - } - return createResultValue( - result, videoFormatProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoFormatPropertiesKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createVideoSessionKHR( const VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::VideoSessionKHR * pVideoSession, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateVideoSessionKHR( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pVideoSession ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createVideoSessionKHR( const VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession; - Result result = static_cast( - d.vkCreateVideoSessionKHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &videoSession ) ) ); - return createResultValue( result, videoSession, VULKAN_HPP_NAMESPACE_STRING "::Device::createVideoSessionKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createVideoSessionKHRUnique( const VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession; - Result result = static_cast( - d.vkCreateVideoSessionKHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &videoSession ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, videoSession, VULKAN_HPP_NAMESPACE_STRING "::Device::createVideoSessionKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyVideoSessionKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionKHR( m_device, - static_cast( videoSession ), - reinterpret_cast( pAllocator ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyVideoSessionKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionKHR( m_device, - static_cast( videoSession ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionKHR( m_device, - static_cast( videoSession ), - reinterpret_cast( pAllocator ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionKHR( m_device, - static_cast( videoSession ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getVideoSessionMemoryRequirementsKHR( - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - uint32_t * pVideoSessionMemoryRequirementsCount, - VULKAN_HPP_NAMESPACE::VideoGetMemoryPropertiesKHR * pVideoSessionMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetVideoSessionMemoryRequirementsKHR( - m_device, - static_cast( videoSession ), - pVideoSessionMemoryRequirementsCount, - reinterpret_cast( pVideoSessionMemoryRequirements ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getVideoSessionMemoryRequirementsKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector videoSessionMemoryRequirements; - uint32_t videoSessionMemoryRequirementsCount; - Result result; - do - { - result = static_cast( d.vkGetVideoSessionMemoryRequirementsKHR( - m_device, static_cast( videoSession ), &videoSessionMemoryRequirementsCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && videoSessionMemoryRequirementsCount ) - { - videoSessionMemoryRequirements.resize( videoSessionMemoryRequirementsCount ); - result = static_cast( d.vkGetVideoSessionMemoryRequirementsKHR( - m_device, - static_cast( videoSession ), - &videoSessionMemoryRequirementsCount, - reinterpret_cast( videoSessionMemoryRequirements.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( videoSessionMemoryRequirementsCount <= videoSessionMemoryRequirements.size() ); - if ( videoSessionMemoryRequirementsCount < videoSessionMemoryRequirements.size() ) - { - videoSessionMemoryRequirements.resize( videoSessionMemoryRequirementsCount ); - } - } - return createResultValue( result, - videoSessionMemoryRequirements, - VULKAN_HPP_NAMESPACE_STRING "::Device::getVideoSessionMemoryRequirementsKHR" ); - } - - template < - typename VideoGetMemoryPropertiesKHRAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getVideoSessionMemoryRequirementsKHR( - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - VideoGetMemoryPropertiesKHRAllocator & videoGetMemoryPropertiesKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector videoSessionMemoryRequirements( - videoGetMemoryPropertiesKHRAllocator ); - uint32_t videoSessionMemoryRequirementsCount; - Result result; - do - { - result = static_cast( d.vkGetVideoSessionMemoryRequirementsKHR( - m_device, static_cast( videoSession ), &videoSessionMemoryRequirementsCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && videoSessionMemoryRequirementsCount ) - { - videoSessionMemoryRequirements.resize( videoSessionMemoryRequirementsCount ); - result = static_cast( d.vkGetVideoSessionMemoryRequirementsKHR( - m_device, - static_cast( videoSession ), - &videoSessionMemoryRequirementsCount, - reinterpret_cast( videoSessionMemoryRequirements.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( videoSessionMemoryRequirementsCount <= videoSessionMemoryRequirements.size() ); - if ( videoSessionMemoryRequirementsCount < videoSessionMemoryRequirements.size() ) - { - videoSessionMemoryRequirements.resize( videoSessionMemoryRequirementsCount ); - } - } - return createResultValue( result, - videoSessionMemoryRequirements, - VULKAN_HPP_NAMESPACE_STRING "::Device::getVideoSessionMemoryRequirementsKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::bindVideoSessionMemoryKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - uint32_t videoSessionBindMemoryCount, - const VULKAN_HPP_NAMESPACE::VideoBindMemoryKHR * pVideoSessionBindMemories, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkBindVideoSessionMemoryKHR( m_device, - static_cast( videoSession ), - videoSessionBindMemoryCount, - reinterpret_cast( pVideoSessionBindMemories ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindVideoSessionMemoryKHR( - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - ArrayProxy const & videoSessionBindMemories, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindVideoSessionMemoryKHR( - m_device, - static_cast( videoSession ), - videoSessionBindMemories.size(), - reinterpret_cast( videoSessionBindMemories.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindVideoSessionMemoryKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::createVideoSessionParametersKHR( - const VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR * pVideoSessionParameters, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateVideoSessionParametersKHR( - m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pVideoSessionParameters ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createVideoSessionParametersKHR( - const VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters; - Result result = static_cast( d.vkCreateVideoSessionParametersKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &videoSessionParameters ) ) ); - return createResultValue( - result, videoSessionParameters, VULKAN_HPP_NAMESPACE_STRING "::Device::createVideoSessionParametersKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createVideoSessionParametersKHRUnique( - const VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters; - Result result = static_cast( d.vkCreateVideoSessionParametersKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &videoSessionParameters ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - videoSessionParameters, - VULKAN_HPP_NAMESPACE_STRING "::Device::createVideoSessionParametersKHRUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::updateVideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR * pUpdateInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkUpdateVideoSessionParametersKHR( - m_device, - static_cast( videoSessionParameters ), - reinterpret_cast( pUpdateInfo ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::updateVideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR & updateInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkUpdateVideoSessionParametersKHR( - m_device, - static_cast( videoSessionParameters ), - reinterpret_cast( &updateInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::updateVideoSessionParametersKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyVideoSessionParametersKHR( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionParametersKHR( m_device, - static_cast( videoSessionParameters ), - reinterpret_cast( pAllocator ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyVideoSessionParametersKHR( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionParametersKHR( - m_device, - static_cast( videoSessionParameters ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionParametersKHR( m_device, - static_cast( videoSessionParameters ), - reinterpret_cast( pAllocator ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyVideoSessionParametersKHR( - m_device, - static_cast( videoSessionParameters ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::beginVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR * pBeginInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginVideoCodingKHR( m_commandBuffer, reinterpret_cast( pBeginInfo ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::beginVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR & beginInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginVideoCodingKHR( m_commandBuffer, reinterpret_cast( &beginInfo ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::endVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR * pEndCodingInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndVideoCodingKHR( m_commandBuffer, reinterpret_cast( pEndCodingInfo ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::endVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR & endCodingInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndVideoCodingKHR( m_commandBuffer, reinterpret_cast( &endCodingInfo ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::controlVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR * pCodingControlInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdControlVideoCodingKHR( m_commandBuffer, - reinterpret_cast( pCodingControlInfo ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::controlVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR & codingControlInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdControlVideoCodingKHR( m_commandBuffer, - reinterpret_cast( &codingControlInfo ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - template - VULKAN_HPP_INLINE void CommandBuffer::decodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR * pFrameInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDecodeVideoKHR( m_commandBuffer, reinterpret_cast( pFrameInfo ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::decodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR & frameInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDecodeVideoKHR( m_commandBuffer, reinterpret_cast( &frameInfo ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - template - VULKAN_HPP_INLINE void - CommandBuffer::bindTransformFeedbackBuffersEXT( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - const VULKAN_HPP_NAMESPACE::DeviceSize * pSizes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindTransformFeedbackBuffersEXT( m_commandBuffer, - firstBinding, - bindingCount, - reinterpret_cast( pBuffers ), - reinterpret_cast( pOffsets ), - reinterpret_cast( pSizes ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::bindTransformFeedbackBuffersEXT( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); - VULKAN_HPP_ASSERT( sizes.empty() || buffers.size() == sizes.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindTransformFeedbackBuffersEXT: buffers.size() != offsets.size()" ); - } - if ( !sizes.empty() && buffers.size() != sizes.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindTransformFeedbackBuffersEXT: buffers.size() != sizes.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBindTransformFeedbackBuffersEXT( m_commandBuffer, - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ), - reinterpret_cast( sizes.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::beginTransformFeedbackEXT( uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VULKAN_HPP_NAMESPACE::Buffer * pCounterBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pCounterBufferOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginTransformFeedbackEXT( m_commandBuffer, - firstCounterBuffer, - counterBufferCount, - reinterpret_cast( pCounterBuffers ), - reinterpret_cast( pCounterBufferOffsets ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::beginTransformFeedbackEXT( - uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( counterBufferOffsets.empty() || counterBuffers.size() == counterBufferOffsets.size() ); -# else - if ( !counterBufferOffsets.empty() && counterBuffers.size() != counterBufferOffsets.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::beginTransformFeedbackEXT: counterBuffers.size() != counterBufferOffsets.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBeginTransformFeedbackEXT( m_commandBuffer, - firstCounterBuffer, - counterBuffers.size(), - reinterpret_cast( counterBuffers.data() ), - reinterpret_cast( counterBufferOffsets.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::endTransformFeedbackEXT( uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VULKAN_HPP_NAMESPACE::Buffer * pCounterBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pCounterBufferOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndTransformFeedbackEXT( m_commandBuffer, - firstCounterBuffer, - counterBufferCount, - reinterpret_cast( pCounterBuffers ), - reinterpret_cast( pCounterBufferOffsets ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::endTransformFeedbackEXT( - uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( counterBufferOffsets.empty() || counterBuffers.size() == counterBufferOffsets.size() ); -# else - if ( !counterBufferOffsets.empty() && counterBuffers.size() != counterBufferOffsets.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::endTransformFeedbackEXT: counterBuffers.size() != counterBufferOffsets.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdEndTransformFeedbackEXT( m_commandBuffer, - firstCounterBuffer, - counterBuffers.size(), - reinterpret_cast( counterBuffers.data() ), - reinterpret_cast( counterBufferOffsets.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::beginQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags, - uint32_t index, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginQueryIndexedEXT( - m_commandBuffer, static_cast( queryPool ), query, static_cast( flags ), index ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::endQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - uint32_t index, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndQueryIndexedEXT( m_commandBuffer, static_cast( queryPool ), query, index ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectByteCountEXT( uint32_t instanceCount, - uint32_t firstInstance, - VULKAN_HPP_NAMESPACE::Buffer counterBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize counterBufferOffset, - uint32_t counterOffset, - uint32_t vertexStride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndirectByteCountEXT( m_commandBuffer, - instanceCount, - firstInstance, - static_cast( counterBuffer ), - static_cast( counterBufferOffset ), - counterOffset, - vertexStride ); - } - - //=== VK_NVX_binary_import === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createCuModuleNVX( const VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::CuModuleNVX * pModule, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateCuModuleNVX( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pModule ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createCuModuleNVX( const VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::CuModuleNVX module; - Result result = static_cast( - d.vkCreateCuModuleNVX( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &module ) ) ); - return createResultValue( result, module, VULKAN_HPP_NAMESPACE_STRING "::Device::createCuModuleNVX" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createCuModuleNVXUnique( const VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::CuModuleNVX module; - Result result = static_cast( - d.vkCreateCuModuleNVX( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &module ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, module, VULKAN_HPP_NAMESPACE_STRING "::Device::createCuModuleNVXUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createCuFunctionNVX( const VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::CuFunctionNVX * pFunction, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateCuFunctionNVX( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pFunction ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createCuFunctionNVX( const VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::CuFunctionNVX function; - Result result = static_cast( - d.vkCreateCuFunctionNVX( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &function ) ) ); - return createResultValue( result, function, VULKAN_HPP_NAMESPACE_STRING "::Device::createCuFunctionNVX" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createCuFunctionNVXUnique( const VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::CuFunctionNVX function; - Result result = static_cast( - d.vkCreateCuFunctionNVX( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &function ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, function, VULKAN_HPP_NAMESPACE_STRING "::Device::createCuFunctionNVXUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyCuModuleNVX( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuModuleNVX( - m_device, static_cast( module ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyCuModuleNVX( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuModuleNVX( m_device, - static_cast( module ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuModuleNVX( - m_device, static_cast( module ), reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuModuleNVX( m_device, - static_cast( module ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroyCuFunctionNVX( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuFunctionNVX( m_device, - static_cast( function ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyCuFunctionNVX( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuFunctionNVX( m_device, - static_cast( function ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuFunctionNVX( m_device, - static_cast( function ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyCuFunctionNVX( m_device, - static_cast( function ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::cuLaunchKernelNVX( const VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX * pLaunchInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCuLaunchKernelNVX( m_commandBuffer, reinterpret_cast( pLaunchInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::cuLaunchKernelNVX( const VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX & launchInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCuLaunchKernelNVX( m_commandBuffer, reinterpret_cast( &launchInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NVX_image_view_handle === - - template - VULKAN_HPP_INLINE uint32_t Device::getImageViewHandleNVX( const VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetImageViewHandleNVX( m_device, reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE uint32_t Device::getImageViewHandleNVX( const VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetImageViewHandleNVX( m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getImageViewAddressNVX( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetImageViewAddressNVX( m_device, - static_cast( imageView ), - reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getImageViewAddressNVX( VULKAN_HPP_NAMESPACE::ImageView imageView, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX properties; - Result result = static_cast( - d.vkGetImageViewAddressNVX( m_device, - static_cast( imageView ), - reinterpret_cast( &properties ) ) ); - return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING "::Device::getImageViewAddressNVX" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_AMD_draw_indirect_count === - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndirectCountAMD( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndexedIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndexedIndirectCountAMD( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - //=== VK_AMD_shader_info === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getShaderInfoAMD( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType, - size_t * pInfoSize, - void * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetShaderInfoAMD( m_device, - static_cast( pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - pInfoSize, - pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getShaderInfoAMD( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector info; - size_t infoSize; - Result result; - do - { - result = static_cast( d.vkGetShaderInfoAMD( m_device, - static_cast( pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - &infoSize, - nullptr ) ); - if ( ( result == Result::eSuccess ) && infoSize ) - { - info.resize( infoSize ); - result = static_cast( d.vkGetShaderInfoAMD( m_device, - static_cast( pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - &infoSize, - reinterpret_cast( info.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( infoSize <= info.size() ); - if ( infoSize < info.size() ) - { - info.resize( infoSize ); - } - } - return createResultValue( result, info, VULKAN_HPP_NAMESPACE_STRING "::Device::getShaderInfoAMD" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getShaderInfoAMD( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType, - Uint8_tAllocator & uint8_tAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector info( uint8_tAllocator ); - size_t infoSize; - Result result; - do - { - result = static_cast( d.vkGetShaderInfoAMD( m_device, - static_cast( pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - &infoSize, - nullptr ) ); - if ( ( result == Result::eSuccess ) && infoSize ) - { - info.resize( infoSize ); - result = static_cast( d.vkGetShaderInfoAMD( m_device, - static_cast( pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - &infoSize, - reinterpret_cast( info.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( infoSize <= info.size() ); - if ( infoSize < info.size() ) - { - info.resize( infoSize ); - } - } - return createResultValue( result, info, VULKAN_HPP_NAMESPACE_STRING "::Device::getShaderInfoAMD" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_dynamic_rendering === - - template - VULKAN_HPP_INLINE void CommandBuffer::beginRenderingKHR( const VULKAN_HPP_NAMESPACE::RenderingInfo * pRenderingInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderingKHR( m_commandBuffer, reinterpret_cast( pRenderingInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::beginRenderingKHR( const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderingKHR( m_commandBuffer, reinterpret_cast( &renderingInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::endRenderingKHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRenderingKHR( m_commandBuffer ); - } - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Instance::createStreamDescriptorSurfaceGGP( - const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateStreamDescriptorSurfaceGGP( - m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createStreamDescriptorSurfaceGGP( - const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( d.vkCreateStreamDescriptorSurfaceGGP( - m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createStreamDescriptorSurfaceGGP" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createStreamDescriptorSurfaceGGPUnique( - const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( d.vkCreateStreamDescriptorSurfaceGGP( - m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createStreamDescriptorSurfaceGGPUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV externalHandleType, - VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV * pExternalImageFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( tiling ), - static_cast( usage ), - static_cast( flags ), - static_cast( externalHandleType ), - reinterpret_cast( pExternalImageFormatProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV externalHandleType, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV externalImageFormatProperties; - Result result = static_cast( d.vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - m_physicalDevice, - static_cast( format ), - static_cast( type ), - static_cast( tiling ), - static_cast( usage ), - static_cast( flags ), - static_cast( externalHandleType ), - reinterpret_cast( &externalImageFormatProperties ) ) ); - return createResultValue( result, - externalImageFormatProperties, - VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getExternalImageFormatPropertiesNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getMemoryWin32HandleNV( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType, - HANDLE * pHandle, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetMemoryWin32HandleNV( m_device, - static_cast( memory ), - static_cast( handleType ), - pHandle ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryWin32HandleNV( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - HANDLE handle; - Result result = - static_cast( d.vkGetMemoryWin32HandleNV( m_device, - static_cast( memory ), - static_cast( handleType ), - &handle ) ); - return createResultValue( result, handle, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryWin32HandleNV" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_get_physical_device_properties2 === - - template - VULKAN_HPP_INLINE void PhysicalDevice::getFeatures2KHR( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 * pFeatures, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceFeatures2KHR( m_physicalDevice, reinterpret_cast( pFeatures ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 - PhysicalDevice::getFeatures2KHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 features; - d.vkGetPhysicalDeviceFeatures2KHR( m_physicalDevice, reinterpret_cast( &features ) ); - return features; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFeatures2KHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 & features = - structureChain.template get(); - d.vkGetPhysicalDeviceFeatures2KHR( m_physicalDevice, reinterpret_cast( &features ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getProperties2KHR( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceProperties2KHR( m_physicalDevice, - reinterpret_cast( pProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - PhysicalDevice::getProperties2KHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 properties; - d.vkGetPhysicalDeviceProperties2KHR( m_physicalDevice, - reinterpret_cast( &properties ) ); - return properties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getProperties2KHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 & properties = - structureChain.template get(); - d.vkGetPhysicalDeviceProperties2KHR( m_physicalDevice, - reinterpret_cast( &properties ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::FormatProperties2 * pFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceFormatProperties2KHR( - m_physicalDevice, static_cast( format ), reinterpret_cast( pFormatProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::FormatProperties2 - PhysicalDevice::getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::FormatProperties2 formatProperties; - d.vkGetPhysicalDeviceFormatProperties2KHR( - m_physicalDevice, static_cast( format ), reinterpret_cast( &formatProperties ) ); - return formatProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::FormatProperties2 & formatProperties = - structureChain.template get(); - d.vkGetPhysicalDeviceFormatProperties2KHR( - m_physicalDevice, static_cast( format ), reinterpret_cast( &formatProperties ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 * pImageFormatInfo, - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 * pImageFormatProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( pImageFormatInfo ), - reinterpret_cast( pImageFormatProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 imageFormatProperties; - Result result = static_cast( d.vkGetPhysicalDeviceImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - return createResultValue( - result, imageFormatProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2KHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 & imageFormatProperties = - structureChain.template get(); - Result result = static_cast( d.vkGetPhysicalDeviceImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - return createResultValue( - result, structureChain, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getQueueFamilyProperties2KHR( uint32_t * pQueueFamilyPropertyCount, - VULKAN_HPP_NAMESPACE::QueueFamilyProperties2 * pQueueFamilyProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( - m_physicalDevice, - pQueueFamilyPropertyCount, - reinterpret_cast( pQueueFamilyProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2KHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector queueFamilyProperties; - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - queueFamilyProperties.resize( queueFamilyPropertyCount ); - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2KHR( QueueFamilyProperties2Allocator & queueFamilyProperties2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector queueFamilyProperties( - queueFamilyProperties2Allocator ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - queueFamilyProperties.resize( queueFamilyPropertyCount ); - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2KHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - std::vector returnVector( queueFamilyPropertyCount ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - queueFamilyProperties[i].pNext = - returnVector[i].template get().pNext; - } - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - returnVector[i].template get() = queueFamilyProperties[i]; - } - return returnVector; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2KHR( StructureChainAllocator & structureChainAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t queueFamilyPropertyCount; - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( m_physicalDevice, &queueFamilyPropertyCount, nullptr ); - std::vector returnVector( queueFamilyPropertyCount, - structureChainAllocator ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - queueFamilyProperties[i].pNext = - returnVector[i].template get().pNext; - } - d.vkGetPhysicalDeviceQueueFamilyProperties2KHR( - m_physicalDevice, - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - returnVector[i].template get() = queueFamilyProperties[i]; - } - return returnVector; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - PhysicalDevice::getMemoryProperties2KHR( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 * pMemoryProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceMemoryProperties2KHR( - m_physicalDevice, reinterpret_cast( pMemoryProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - PhysicalDevice::getMemoryProperties2KHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 memoryProperties; - d.vkGetPhysicalDeviceMemoryProperties2KHR( - m_physicalDevice, reinterpret_cast( &memoryProperties ) ); - return memoryProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getMemoryProperties2KHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 & memoryProperties = - structureChain.template get(); - d.vkGetPhysicalDeviceMemoryProperties2KHR( - m_physicalDevice, reinterpret_cast( &memoryProperties ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getSparseImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 * pFormatInfo, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties2 * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( pFormatInfo ), - pPropertyCount, - reinterpret_cast( pProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - d.vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - nullptr ); - properties.resize( propertyCount ); - d.vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - return properties; - } - - template < - typename SparseImageFormatProperties2Allocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, - SparseImageFormatProperties2Allocator & sparseImageFormatProperties2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - sparseImageFormatProperties2Allocator ); - uint32_t propertyCount; - d.vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - nullptr ); - properties.resize( propertyCount ); - d.vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - m_physicalDevice, - reinterpret_cast( &formatInfo ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - return properties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_device_group === - - template - VULKAN_HPP_INLINE void - Device::getGroupPeerMemoryFeaturesKHR( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags * pPeerMemoryFeatures, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceGroupPeerMemoryFeaturesKHR( m_device, - heapIndex, - localDeviceIndex, - remoteDeviceIndex, - reinterpret_cast( pPeerMemoryFeatures ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags - Device::getGroupPeerMemoryFeaturesKHR( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags peerMemoryFeatures; - d.vkGetDeviceGroupPeerMemoryFeaturesKHR( m_device, - heapIndex, - localDeviceIndex, - remoteDeviceIndex, - reinterpret_cast( &peerMemoryFeatures ) ); - return peerMemoryFeatures; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setDeviceMaskKHR( uint32_t deviceMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDeviceMaskKHR( m_commandBuffer, deviceMask ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::dispatchBaseKHR( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDispatchBaseKHR( - m_commandBuffer, baseGroupX, baseGroupY, baseGroupZ, groupCountX, groupCountY, groupCountZ ); - } - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createViSurfaceNN( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateViSurfaceNN( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createViSurfaceNN( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateViSurfaceNN( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createViSurfaceNN" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createViSurfaceNNUnique( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateViSurfaceNN( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createViSurfaceNNUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_maintenance1 === - - template - VULKAN_HPP_INLINE void Device::trimCommandPoolKHR( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkTrimCommandPoolKHR( - m_device, static_cast( commandPool ), static_cast( flags ) ); - } - - //=== VK_KHR_device_group_creation === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Instance::enumeratePhysicalDeviceGroupsKHR( - uint32_t * pPhysicalDeviceGroupCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties * pPhysicalDeviceGroupProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumeratePhysicalDeviceGroupsKHR( - m_instance, - pPhysicalDeviceGroupCount, - reinterpret_cast( pPhysicalDeviceGroupProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::enumeratePhysicalDeviceGroupsKHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector physicalDeviceGroupProperties; - uint32_t physicalDeviceGroupCount; - Result result; - do - { - result = - static_cast( d.vkEnumeratePhysicalDeviceGroupsKHR( m_instance, &physicalDeviceGroupCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - result = static_cast( d.vkEnumeratePhysicalDeviceGroupsKHR( - m_instance, - &physicalDeviceGroupCount, - reinterpret_cast( physicalDeviceGroupProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() ); - if ( physicalDeviceGroupCount < physicalDeviceGroupProperties.size() ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - } - } - return createResultValue( result, - physicalDeviceGroupProperties, - VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDeviceGroupsKHR" ); - } - - template < - typename PhysicalDeviceGroupPropertiesAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::enumeratePhysicalDeviceGroupsKHR( - PhysicalDeviceGroupPropertiesAllocator & physicalDeviceGroupPropertiesAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector physicalDeviceGroupProperties( - physicalDeviceGroupPropertiesAllocator ); - uint32_t physicalDeviceGroupCount; - Result result; - do - { - result = - static_cast( d.vkEnumeratePhysicalDeviceGroupsKHR( m_instance, &physicalDeviceGroupCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - result = static_cast( d.vkEnumeratePhysicalDeviceGroupsKHR( - m_instance, - &physicalDeviceGroupCount, - reinterpret_cast( physicalDeviceGroupProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() ); - if ( physicalDeviceGroupCount < physicalDeviceGroupProperties.size() ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - } - } - return createResultValue( result, - physicalDeviceGroupProperties, - VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDeviceGroupsKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_external_memory_capabilities === - - template - VULKAN_HPP_INLINE void PhysicalDevice::getExternalBufferPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo * pExternalBufferInfo, - VULKAN_HPP_NAMESPACE::ExternalBufferProperties * pExternalBufferProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceExternalBufferPropertiesKHR( - m_physicalDevice, - reinterpret_cast( pExternalBufferInfo ), - reinterpret_cast( pExternalBufferProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalBufferProperties - PhysicalDevice::getExternalBufferPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalBufferProperties externalBufferProperties; - d.vkGetPhysicalDeviceExternalBufferPropertiesKHR( - m_physicalDevice, - reinterpret_cast( &externalBufferInfo ), - reinterpret_cast( &externalBufferProperties ) ); - return externalBufferProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getMemoryWin32HandleKHR( const VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryWin32HandleKHR( - m_device, reinterpret_cast( pGetWin32HandleInfo ), pHandle ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryWin32HandleKHR( const VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR & getWin32HandleInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - HANDLE handle; - Result result = static_cast( d.vkGetMemoryWin32HandleKHR( - m_device, reinterpret_cast( &getWin32HandleInfo ), &handle ) ); - return createResultValue( result, handle, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryWin32HandleKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getMemoryWin32HandlePropertiesKHR( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle, - VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR * pMemoryWin32HandleProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryWin32HandlePropertiesKHR( - m_device, - static_cast( handleType ), - handle, - reinterpret_cast( pMemoryWin32HandleProperties ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getMemoryWin32HandlePropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR memoryWin32HandleProperties; - Result result = static_cast( d.vkGetMemoryWin32HandlePropertiesKHR( - m_device, - static_cast( handleType ), - handle, - reinterpret_cast( &memoryWin32HandleProperties ) ) ); - return createResultValue( - result, memoryWin32HandleProperties, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryWin32HandlePropertiesKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getMemoryFdKHR( const VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR * pGetFdInfo, - int * pFd, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetMemoryFdKHR( m_device, reinterpret_cast( pGetFdInfo ), pFd ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryFdKHR( const VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR & getFdInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - int fd; - Result result = static_cast( - d.vkGetMemoryFdKHR( m_device, reinterpret_cast( &getFdInfo ), &fd ) ); - return createResultValue( result, fd, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryFdKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getMemoryFdPropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - int fd, - VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR * pMemoryFdProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetMemoryFdPropertiesKHR( m_device, - static_cast( handleType ), - fd, - reinterpret_cast( pMemoryFdProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getMemoryFdPropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - int fd, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR memoryFdProperties; - Result result = static_cast( - d.vkGetMemoryFdPropertiesKHR( m_device, - static_cast( handleType ), - fd, - reinterpret_cast( &memoryFdProperties ) ) ); - return createResultValue( - result, memoryFdProperties, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryFdPropertiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_external_semaphore_capabilities === - - template - VULKAN_HPP_INLINE void PhysicalDevice::getExternalSemaphorePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo * pExternalSemaphoreInfo, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties * pExternalSemaphoreProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - m_physicalDevice, - reinterpret_cast( pExternalSemaphoreInfo ), - reinterpret_cast( pExternalSemaphoreProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties - PhysicalDevice::getExternalSemaphorePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties externalSemaphoreProperties; - d.vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - m_physicalDevice, - reinterpret_cast( &externalSemaphoreInfo ), - reinterpret_cast( &externalSemaphoreProperties ) ); - return externalSemaphoreProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::importSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR * pImportSemaphoreWin32HandleInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkImportSemaphoreWin32HandleKHR( - m_device, reinterpret_cast( pImportSemaphoreWin32HandleInfo ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::importSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR & importSemaphoreWin32HandleInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkImportSemaphoreWin32HandleKHR( - m_device, reinterpret_cast( &importSemaphoreWin32HandleInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importSemaphoreWin32HandleKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetSemaphoreWin32HandleKHR( - m_device, reinterpret_cast( pGetWin32HandleInfo ), pHandle ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getSemaphoreWin32HandleKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR & getWin32HandleInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - HANDLE handle; - Result result = static_cast( d.vkGetSemaphoreWin32HandleKHR( - m_device, reinterpret_cast( &getWin32HandleInfo ), &handle ) ); - return createResultValue( result, handle, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreWin32HandleKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::importSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR * pImportSemaphoreFdInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkImportSemaphoreFdKHR( - m_device, reinterpret_cast( pImportSemaphoreFdInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::importSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR & importSemaphoreFdInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkImportSemaphoreFdKHR( - m_device, reinterpret_cast( &importSemaphoreFdInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importSemaphoreFdKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR * pGetFdInfo, - int * pFd, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetSemaphoreFdKHR( m_device, reinterpret_cast( pGetFdInfo ), pFd ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR & getFdInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - int fd; - Result result = static_cast( - d.vkGetSemaphoreFdKHR( m_device, reinterpret_cast( &getFdInfo ), &fd ) ); - return createResultValue( result, fd, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreFdKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_push_descriptor === - - template - VULKAN_HPP_INLINE void - CommandBuffer::pushDescriptorSetKHR( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - uint32_t descriptorWriteCount, - const VULKAN_HPP_NAMESPACE::WriteDescriptorSet * pDescriptorWrites, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPushDescriptorSetKHR( m_commandBuffer, - static_cast( pipelineBindPoint ), - static_cast( layout ), - set, - descriptorWriteCount, - reinterpret_cast( pDescriptorWrites ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::pushDescriptorSetKHR( - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - ArrayProxy const & descriptorWrites, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPushDescriptorSetKHR( m_commandBuffer, - static_cast( pipelineBindPoint ), - static_cast( layout ), - set, - descriptorWrites.size(), - reinterpret_cast( descriptorWrites.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::pushDescriptorSetWithTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - const void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPushDescriptorSetWithTemplateKHR( m_commandBuffer, - static_cast( descriptorUpdateTemplate ), - static_cast( layout ), - set, - pData ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::pushDescriptorSetWithTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - DataType const & data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPushDescriptorSetWithTemplateKHR( m_commandBuffer, - static_cast( descriptorUpdateTemplate ), - static_cast( layout ), - set, - reinterpret_cast( &data ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_conditional_rendering === - - template - VULKAN_HPP_INLINE void CommandBuffer::beginConditionalRenderingEXT( - const VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT * pConditionalRenderingBegin, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginConditionalRenderingEXT( - m_commandBuffer, reinterpret_cast( pConditionalRenderingBegin ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::beginConditionalRenderingEXT( - const VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT & conditionalRenderingBegin, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginConditionalRenderingEXT( - m_commandBuffer, reinterpret_cast( &conditionalRenderingBegin ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::endConditionalRenderingEXT( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndConditionalRenderingEXT( m_commandBuffer ); - } - - //=== VK_KHR_descriptor_update_template === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::createDescriptorUpdateTemplateKHR( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate * pDescriptorUpdateTemplate, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCreateDescriptorUpdateTemplateKHR( - m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pDescriptorUpdateTemplate ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createDescriptorUpdateTemplateKHR( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate; - Result result = static_cast( d.vkCreateDescriptorUpdateTemplateKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &descriptorUpdateTemplate ) ) ); - return createResultValue( - result, descriptorUpdateTemplate, VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorUpdateTemplateKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createDescriptorUpdateTemplateKHRUnique( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate; - Result result = static_cast( d.vkCreateDescriptorUpdateTemplateKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &descriptorUpdateTemplate ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE_STRING "::Device::createDescriptorUpdateTemplateKHRUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorUpdateTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorUpdateTemplateKHR( m_device, - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyDescriptorUpdateTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDescriptorUpdateTemplateKHR( - m_device, - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::updateDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUpdateDescriptorSetWithTemplateKHR( m_device, - static_cast( descriptorSet ), - static_cast( descriptorUpdateTemplate ), - pData ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::updateDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUpdateDescriptorSetWithTemplateKHR( m_device, - static_cast( descriptorSet ), - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( &data ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_clip_space_w_scaling === - - template - VULKAN_HPP_INLINE void - CommandBuffer::setViewportWScalingNV( uint32_t firstViewport, - uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::ViewportWScalingNV * pViewportWScalings, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportWScalingNV( m_commandBuffer, - firstViewport, - viewportCount, - reinterpret_cast( pViewportWScalings ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setViewportWScalingNV( - uint32_t firstViewport, - ArrayProxy const & viewportWScalings, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportWScalingNV( m_commandBuffer, - firstViewport, - viewportWScalings.size(), - reinterpret_cast( viewportWScalings.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_direct_mode_display === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Result PhysicalDevice::releaseDisplayEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkReleaseDisplayEXT( m_physicalDevice, static_cast( display ) ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type - PhysicalDevice::releaseDisplayEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkReleaseDisplayEXT( m_physicalDevice, static_cast( display ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::releaseDisplayEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::acquireXlibDisplayEXT( - Display * dpy, VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkAcquireXlibDisplayEXT( m_physicalDevice, dpy, static_cast( display ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - PhysicalDevice::acquireXlibDisplayEXT( Display & dpy, - VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkAcquireXlibDisplayEXT( m_physicalDevice, &dpy, static_cast( display ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::acquireXlibDisplayEXT" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getRandROutputDisplayEXT( Display * dpy, - RROutput rrOutput, - VULKAN_HPP_NAMESPACE::DisplayKHR * pDisplay, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetRandROutputDisplayEXT( m_physicalDevice, dpy, rrOutput, reinterpret_cast( pDisplay ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - PhysicalDevice::getRandROutputDisplayEXT( Display & dpy, RROutput rrOutput, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayKHR display; - Result result = static_cast( - d.vkGetRandROutputDisplayEXT( m_physicalDevice, &dpy, rrOutput, reinterpret_cast( &display ) ) ); - return createResultValue( - result, display, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getRandROutputDisplayEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getRandROutputDisplayEXTUnique( Display & dpy, RROutput rrOutput, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayKHR display; - Result result = static_cast( - d.vkGetRandROutputDisplayEXT( m_physicalDevice, &dpy, rrOutput, reinterpret_cast( &display ) ) ); - ObjectRelease deleter( *this, d ); - return createResultValue( - result, display, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getRandROutputDisplayEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getSurfaceCapabilities2EXT( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT * pSurfaceCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSurfaceCapabilities2EXT( - m_physicalDevice, - static_cast( surface ), - reinterpret_cast( pSurfaceCapabilities ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getSurfaceCapabilities2EXT( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT surfaceCapabilities; - Result result = static_cast( d.vkGetPhysicalDeviceSurfaceCapabilities2EXT( - m_physicalDevice, - static_cast( surface ), - reinterpret_cast( &surfaceCapabilities ) ) ); - return createResultValue( - result, surfaceCapabilities, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilities2EXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_display_control === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::displayPowerControlEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT * pDisplayPowerInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkDisplayPowerControlEXT( m_device, - static_cast( display ), - reinterpret_cast( pDisplayPowerInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::displayPowerControlEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT & displayPowerInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkDisplayPowerControlEXT( m_device, - static_cast( display ), - reinterpret_cast( &displayPowerInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::displayPowerControlEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::registerEventEXT( const VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT * pDeviceEventInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Fence * pFence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkRegisterDeviceEventEXT( m_device, - reinterpret_cast( pDeviceEventInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pFence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::registerEventEXT( const VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT & deviceEventInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Fence fence; - Result result = static_cast( - d.vkRegisterDeviceEventEXT( m_device, - reinterpret_cast( &deviceEventInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &fence ) ) ); - return createResultValue( result, fence, VULKAN_HPP_NAMESPACE_STRING "::Device::registerEventEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Device::registerEventEXTUnique( const VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT & deviceEventInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Fence fence; - Result result = static_cast( - d.vkRegisterDeviceEventEXT( m_device, - reinterpret_cast( &deviceEventInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &fence ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, fence, VULKAN_HPP_NAMESPACE_STRING "::Device::registerEventEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::registerDisplayEventEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT * pDisplayEventInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Fence * pFence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkRegisterDisplayEventEXT( m_device, - static_cast( display ), - reinterpret_cast( pDisplayEventInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pFence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::registerDisplayEventEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT & displayEventInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Fence fence; - Result result = static_cast( - d.vkRegisterDisplayEventEXT( m_device, - static_cast( display ), - reinterpret_cast( &displayEventInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &fence ) ) ); - return createResultValue( result, fence, VULKAN_HPP_NAMESPACE_STRING "::Device::registerDisplayEventEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Device::registerDisplayEventEXTUnique( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT & displayEventInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Fence fence; - Result result = static_cast( - d.vkRegisterDisplayEventEXT( m_device, - static_cast( display ), - reinterpret_cast( &displayEventInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &fence ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, fence, VULKAN_HPP_NAMESPACE_STRING "::Device::registerDisplayEventEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getSwapchainCounterEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagBitsEXT counter, - uint64_t * pCounterValue, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetSwapchainCounterEXT( m_device, - static_cast( swapchain ), - static_cast( counter ), - pCounterValue ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getSwapchainCounterEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagBitsEXT counter, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint64_t counterValue; - Result result = - static_cast( d.vkGetSwapchainCounterEXT( m_device, - static_cast( swapchain ), - static_cast( counter ), - &counterValue ) ); - return createResultValue( result, counterValue, VULKAN_HPP_NAMESPACE_STRING "::Device::getSwapchainCounterEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_GOOGLE_display_timing === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getRefreshCycleDurationGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE * pDisplayTimingProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetRefreshCycleDurationGOOGLE( - m_device, - static_cast( swapchain ), - reinterpret_cast( pDisplayTimingProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getRefreshCycleDurationGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE displayTimingProperties; - Result result = static_cast( d.vkGetRefreshCycleDurationGOOGLE( - m_device, - static_cast( swapchain ), - reinterpret_cast( &displayTimingProperties ) ) ); - return createResultValue( - result, displayTimingProperties, VULKAN_HPP_NAMESPACE_STRING "::Device::getRefreshCycleDurationGOOGLE" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getPastPresentationTimingGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint32_t * pPresentationTimingCount, - VULKAN_HPP_NAMESPACE::PastPresentationTimingGOOGLE * pPresentationTimings, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPastPresentationTimingGOOGLE( - m_device, - static_cast( swapchain ), - pPresentationTimingCount, - reinterpret_cast( pPresentationTimings ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getPastPresentationTimingGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector presentationTimings; - uint32_t presentationTimingCount; - Result result; - do - { - result = static_cast( d.vkGetPastPresentationTimingGOOGLE( - m_device, static_cast( swapchain ), &presentationTimingCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && presentationTimingCount ) - { - presentationTimings.resize( presentationTimingCount ); - result = static_cast( d.vkGetPastPresentationTimingGOOGLE( - m_device, - static_cast( swapchain ), - &presentationTimingCount, - reinterpret_cast( presentationTimings.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentationTimingCount <= presentationTimings.size() ); - if ( presentationTimingCount < presentationTimings.size() ) - { - presentationTimings.resize( presentationTimingCount ); - } - } - return createResultValue( - result, presentationTimings, VULKAN_HPP_NAMESPACE_STRING "::Device::getPastPresentationTimingGOOGLE" ); - } - - template < - typename PastPresentationTimingGOOGLEAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getPastPresentationTimingGOOGLE( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - PastPresentationTimingGOOGLEAllocator & pastPresentationTimingGOOGLEAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector presentationTimings( - pastPresentationTimingGOOGLEAllocator ); - uint32_t presentationTimingCount; - Result result; - do - { - result = static_cast( d.vkGetPastPresentationTimingGOOGLE( - m_device, static_cast( swapchain ), &presentationTimingCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && presentationTimingCount ) - { - presentationTimings.resize( presentationTimingCount ); - result = static_cast( d.vkGetPastPresentationTimingGOOGLE( - m_device, - static_cast( swapchain ), - &presentationTimingCount, - reinterpret_cast( presentationTimings.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentationTimingCount <= presentationTimings.size() ); - if ( presentationTimingCount < presentationTimings.size() ) - { - presentationTimings.resize( presentationTimingCount ); - } - } - return createResultValue( - result, presentationTimings, VULKAN_HPP_NAMESPACE_STRING "::Device::getPastPresentationTimingGOOGLE" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_discard_rectangles === - - template - VULKAN_HPP_INLINE void CommandBuffer::setDiscardRectangleEXT( uint32_t firstDiscardRectangle, - uint32_t discardRectangleCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pDiscardRectangles, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDiscardRectangleEXT( m_commandBuffer, - firstDiscardRectangle, - discardRectangleCount, - reinterpret_cast( pDiscardRectangles ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setDiscardRectangleEXT( uint32_t firstDiscardRectangle, - ArrayProxy const & discardRectangles, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDiscardRectangleEXT( m_commandBuffer, - firstDiscardRectangle, - discardRectangles.size(), - reinterpret_cast( discardRectangles.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_hdr_metadata === - - template - VULKAN_HPP_INLINE void Device::setHdrMetadataEXT( uint32_t swapchainCount, - const VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains, - const VULKAN_HPP_NAMESPACE::HdrMetadataEXT * pMetadata, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkSetHdrMetadataEXT( m_device, - swapchainCount, - reinterpret_cast( pSwapchains ), - reinterpret_cast( pMetadata ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::setHdrMetadataEXT( ArrayProxy const & swapchains, - ArrayProxy const & metadata, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( swapchains.size() == metadata.size() ); -# else - if ( swapchains.size() != metadata.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::Device::setHdrMetadataEXT: swapchains.size() != metadata.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkSetHdrMetadataEXT( m_device, - swapchains.size(), - reinterpret_cast( swapchains.data() ), - reinterpret_cast( metadata.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_create_renderpass2 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::RenderPass * pRenderPass, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateRenderPass2KHR( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pRenderPass ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RenderPass renderPass; - Result result = static_cast( - d.vkCreateRenderPass2KHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &renderPass ) ) ); - return createResultValue( result, renderPass, VULKAN_HPP_NAMESPACE_STRING "::Device::createRenderPass2KHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createRenderPass2KHRUnique( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RenderPass renderPass; - Result result = static_cast( - d.vkCreateRenderPass2KHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &renderPass ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, renderPass, VULKAN_HPP_NAMESPACE_STRING "::Device::createRenderPass2KHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo * pRenderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderPass2KHR( m_commandBuffer, - reinterpret_cast( pRenderPassBegin ), - reinterpret_cast( pSubpassBeginInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginRenderPass2KHR( m_commandBuffer, - reinterpret_cast( &renderPassBegin ), - reinterpret_cast( &subpassBeginInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::nextSubpass2KHR( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdNextSubpass2KHR( m_commandBuffer, - reinterpret_cast( pSubpassBeginInfo ), - reinterpret_cast( pSubpassEndInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::nextSubpass2KHR( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdNextSubpass2KHR( m_commandBuffer, - reinterpret_cast( &subpassBeginInfo ), - reinterpret_cast( &subpassEndInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass2KHR( const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRenderPass2KHR( m_commandBuffer, reinterpret_cast( pSubpassEndInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass2KHR( const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndRenderPass2KHR( m_commandBuffer, reinterpret_cast( &subpassEndInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_shared_presentable_image === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getSwapchainStatusKHR( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetSwapchainStatusKHR( m_device, static_cast( swapchain ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getSwapchainStatusKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkGetSwapchainStatusKHR( m_device, static_cast( swapchain ) ) ); - return createResultValue( - result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getSwapchainStatusKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_external_fence_capabilities === - - template - VULKAN_HPP_INLINE void PhysicalDevice::getExternalFencePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo * pExternalFenceInfo, - VULKAN_HPP_NAMESPACE::ExternalFenceProperties * pExternalFenceProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceExternalFencePropertiesKHR( - m_physicalDevice, - reinterpret_cast( pExternalFenceInfo ), - reinterpret_cast( pExternalFenceProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalFenceProperties - PhysicalDevice::getExternalFencePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ExternalFenceProperties externalFenceProperties; - d.vkGetPhysicalDeviceExternalFencePropertiesKHR( - m_physicalDevice, - reinterpret_cast( &externalFenceInfo ), - reinterpret_cast( &externalFenceProperties ) ); - return externalFenceProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::importFenceWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR * pImportFenceWin32HandleInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkImportFenceWin32HandleKHR( - m_device, reinterpret_cast( pImportFenceWin32HandleInfo ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::importFenceWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR & importFenceWin32HandleInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkImportFenceWin32HandleKHR( - m_device, reinterpret_cast( &importFenceWin32HandleInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importFenceWin32HandleKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getFenceWin32HandleKHR( const VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetFenceWin32HandleKHR( - m_device, reinterpret_cast( pGetWin32HandleInfo ), pHandle ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getFenceWin32HandleKHR( const VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR & getWin32HandleInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - HANDLE handle; - Result result = static_cast( d.vkGetFenceWin32HandleKHR( - m_device, reinterpret_cast( &getWin32HandleInfo ), &handle ) ); - return createResultValue( result, handle, VULKAN_HPP_NAMESPACE_STRING "::Device::getFenceWin32HandleKHR" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::importFenceFdKHR( const VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR * pImportFenceFdInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkImportFenceFdKHR( m_device, reinterpret_cast( pImportFenceFdInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::importFenceFdKHR( const VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR & importFenceFdInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkImportFenceFdKHR( m_device, reinterpret_cast( &importFenceFdInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importFenceFdKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getFenceFdKHR( const VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR * pGetFdInfo, - int * pFd, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetFenceFdKHR( m_device, reinterpret_cast( pGetFdInfo ), pFd ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getFenceFdKHR( const VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR & getFdInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - int fd; - Result result = static_cast( - d.vkGetFenceFdKHR( m_device, reinterpret_cast( &getFdInfo ), &fd ) ); - return createResultValue( result, fd, VULKAN_HPP_NAMESPACE_STRING "::Device::getFenceFdKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_performance_query === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR( - uint32_t queueFamilyIndex, - uint32_t * pCounterCount, - VULKAN_HPP_NAMESPACE::PerformanceCounterKHR * pCounters, - VULKAN_HPP_NAMESPACE::PerformanceCounterDescriptionKHR * pCounterDescriptions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - m_physicalDevice, - queueFamilyIndex, - pCounterCount, - reinterpret_cast( pCounters ), - reinterpret_cast( pCounterDescriptions ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::pair, - std::vector>>::type - PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR( uint32_t queueFamilyIndex, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::pair, - std::vector> - data; - std::vector & counters = data.first; - std::vector & counterDescriptions = - data.second; - uint32_t counterCount; - Result result; - do - { - result = static_cast( d.vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - m_physicalDevice, queueFamilyIndex, &counterCount, nullptr, nullptr ) ); - if ( ( result == Result::eSuccess ) && counterCount ) - { - counters.resize( counterCount ); - counterDescriptions.resize( counterCount ); - result = static_cast( d.vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - m_physicalDevice, - queueFamilyIndex, - &counterCount, - reinterpret_cast( counters.data() ), - reinterpret_cast( counterDescriptions.data() ) ) ); - VULKAN_HPP_ASSERT( counterCount <= counters.size() ); - } - } while ( result == Result::eIncomplete ); - if ( ( result == Result::eSuccess ) && ( counterCount < counters.size() ) ) - { - counters.resize( counterCount ); - counterDescriptions.resize( counterCount ); - } - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR" ); - } - - template ::value && - std::is_same::value, - int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::pair, - std::vector>>::type - PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR( - uint32_t queueFamilyIndex, - PerformanceCounterKHRAllocator & performanceCounterKHRAllocator, - PerformanceCounterDescriptionKHRAllocator & performanceCounterDescriptionKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::pair, - std::vector> - data( std::piecewise_construct, - std::forward_as_tuple( performanceCounterKHRAllocator ), - std::forward_as_tuple( performanceCounterDescriptionKHRAllocator ) ); - std::vector & counters = data.first; - std::vector & counterDescriptions = - data.second; - uint32_t counterCount; - Result result; - do - { - result = static_cast( d.vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - m_physicalDevice, queueFamilyIndex, &counterCount, nullptr, nullptr ) ); - if ( ( result == Result::eSuccess ) && counterCount ) - { - counters.resize( counterCount ); - counterDescriptions.resize( counterCount ); - result = static_cast( d.vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - m_physicalDevice, - queueFamilyIndex, - &counterCount, - reinterpret_cast( counters.data() ), - reinterpret_cast( counterDescriptions.data() ) ) ); - VULKAN_HPP_ASSERT( counterCount <= counters.size() ); - } - } while ( result == Result::eIncomplete ); - if ( ( result == Result::eSuccess ) && ( counterCount < counters.size() ) ) - { - counters.resize( counterCount ); - counterDescriptions.resize( counterCount ); - } - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getQueueFamilyPerformanceQueryPassesKHR( - const VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR * pPerformanceQueryCreateInfo, - uint32_t * pNumPasses, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - m_physicalDevice, - reinterpret_cast( pPerformanceQueryCreateInfo ), - pNumPasses ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint32_t PhysicalDevice::getQueueFamilyPerformanceQueryPassesKHR( - const VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR & performanceQueryCreateInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint32_t numPasses; - d.vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - m_physicalDevice, - reinterpret_cast( &performanceQueryCreateInfo ), - &numPasses ); - return numPasses; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::acquireProfilingLockKHR( - const VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR * pInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkAcquireProfilingLockKHR( m_device, reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::acquireProfilingLockKHR( const VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkAcquireProfilingLockKHR( m_device, reinterpret_cast( &info ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::acquireProfilingLockKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::releaseProfilingLockKHR( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkReleaseProfilingLockKHR( m_device ); - } - - //=== VK_KHR_get_surface_capabilities2 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getSurfaceCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR * pSurfaceCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSurfaceCapabilities2KHR( - m_physicalDevice, - reinterpret_cast( pSurfaceInfo ), - reinterpret_cast( pSurfaceCapabilities ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getSurfaceCapabilities2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR surfaceCapabilities; - Result result = static_cast( d.vkGetPhysicalDeviceSurfaceCapabilities2KHR( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - reinterpret_cast( &surfaceCapabilities ) ) ); - return createResultValue( - result, surfaceCapabilities, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilities2KHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType>::type - PhysicalDevice::getSurfaceCapabilities2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR & surfaceCapabilities = - structureChain.template get(); - Result result = static_cast( d.vkGetPhysicalDeviceSurfaceCapabilities2KHR( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - reinterpret_cast( &surfaceCapabilities ) ) ); - return createResultValue( - result, structureChain, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilities2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - uint32_t * pSurfaceFormatCount, - VULKAN_HPP_NAMESPACE::SurfaceFormat2KHR * pSurfaceFormats, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSurfaceFormats2KHR( - m_physicalDevice, - reinterpret_cast( pSurfaceInfo ), - pSurfaceFormatCount, - reinterpret_cast( pSurfaceFormats ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector surfaceFormats; - uint32_t surfaceFormatCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfaceFormats2KHR( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &surfaceFormatCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && surfaceFormatCount ) - { - surfaceFormats.resize( surfaceFormatCount ); - result = static_cast( d.vkGetPhysicalDeviceSurfaceFormats2KHR( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &surfaceFormatCount, - reinterpret_cast( surfaceFormats.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( surfaceFormatCount <= surfaceFormats.size() ); - if ( surfaceFormatCount < surfaceFormats.size() ) - { - surfaceFormats.resize( surfaceFormatCount ); - } - } - return createResultValue( - result, surfaceFormats, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceFormats2KHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - SurfaceFormat2KHRAllocator & surfaceFormat2KHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector surfaceFormats( surfaceFormat2KHRAllocator ); - uint32_t surfaceFormatCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfaceFormats2KHR( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &surfaceFormatCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && surfaceFormatCount ) - { - surfaceFormats.resize( surfaceFormatCount ); - result = static_cast( d.vkGetPhysicalDeviceSurfaceFormats2KHR( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &surfaceFormatCount, - reinterpret_cast( surfaceFormats.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( surfaceFormatCount <= surfaceFormats.size() ); - if ( surfaceFormatCount < surfaceFormats.size() ) - { - surfaceFormats.resize( surfaceFormatCount ); - } - } - return createResultValue( - result, surfaceFormats, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceFormats2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_get_display_properties2 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayProperties2KHR( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayProperties2KHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceDisplayProperties2KHR( - m_physicalDevice, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayProperties2KHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = - static_cast( d.vkGetPhysicalDeviceDisplayProperties2KHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayProperties2KHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayProperties2KHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayProperties2KHR( DisplayProperties2KHRAllocator & displayProperties2KHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( displayProperties2KHRAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = - static_cast( d.vkGetPhysicalDeviceDisplayProperties2KHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayProperties2KHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayProperties2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayPlaneProperties2KHR( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayPlaneProperties2KHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - m_physicalDevice, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayPlaneProperties2KHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceDisplayPlaneProperties2KHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneProperties2KHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayPlaneProperties2KHR( - DisplayPlaneProperties2KHRAllocator & displayPlaneProperties2KHRAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - displayPlaneProperties2KHRAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceDisplayPlaneProperties2KHR( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - m_physicalDevice, &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneProperties2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDisplayModeProperties2KHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayModeProperties2KHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDisplayModeProperties2KHR( m_physicalDevice, - static_cast( display ), - pPropertyCount, - reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayModeProperties2KHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkGetDisplayModeProperties2KHR( - m_physicalDevice, static_cast( display ), &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkGetDisplayModeProperties2KHR( m_physicalDevice, - static_cast( display ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayModeProperties2KHR" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDisplayModeProperties2KHR( - VULKAN_HPP_NAMESPACE::DisplayKHR display, - DisplayModeProperties2KHRAllocator & displayModeProperties2KHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - displayModeProperties2KHRAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( d.vkGetDisplayModeProperties2KHR( - m_physicalDevice, static_cast( display ), &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - d.vkGetDisplayModeProperties2KHR( m_physicalDevice, - static_cast( display ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayModeProperties2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getDisplayPlaneCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR * pDisplayPlaneInfo, - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR * pCapabilities, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDisplayPlaneCapabilities2KHR( m_physicalDevice, - reinterpret_cast( pDisplayPlaneInfo ), - reinterpret_cast( pCapabilities ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getDisplayPlaneCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR & displayPlaneInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR capabilities; - Result result = static_cast( - d.vkGetDisplayPlaneCapabilities2KHR( m_physicalDevice, - reinterpret_cast( &displayPlaneInfo ), - reinterpret_cast( &capabilities ) ) ); - return createResultValue( - result, capabilities, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneCapabilities2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createIOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateIOSSurfaceMVK( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createIOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateIOSSurfaceMVK( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createIOSSurfaceMVK" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createIOSSurfaceMVKUnique( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateIOSSurfaceMVK( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createIOSSurfaceMVKUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createMacOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateMacOSSurfaceMVK( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createMacOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateMacOSSurfaceMVK( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createMacOSSurfaceMVK" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createMacOSSurfaceMVKUnique( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateMacOSSurfaceMVK( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createMacOSSurfaceMVKUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::setDebugUtilsObjectNameEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT * pNameInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkSetDebugUtilsObjectNameEXT( - m_device, reinterpret_cast( pNameInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::setDebugUtilsObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT & nameInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkSetDebugUtilsObjectNameEXT( - m_device, reinterpret_cast( &nameInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setDebugUtilsObjectNameEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::setDebugUtilsObjectTagEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT * pTagInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkSetDebugUtilsObjectTagEXT( m_device, reinterpret_cast( pTagInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::setDebugUtilsObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT & tagInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkSetDebugUtilsObjectTagEXT( m_device, reinterpret_cast( &tagInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setDebugUtilsObjectTagEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Queue::beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkQueueBeginDebugUtilsLabelEXT( m_queue, reinterpret_cast( pLabelInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Queue::beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkQueueBeginDebugUtilsLabelEXT( m_queue, reinterpret_cast( &labelInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Queue::endDebugUtilsLabelEXT( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkQueueEndDebugUtilsLabelEXT( m_queue ); - } - - template - VULKAN_HPP_INLINE void Queue::insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkQueueInsertDebugUtilsLabelEXT( m_queue, reinterpret_cast( pLabelInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Queue::insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkQueueInsertDebugUtilsLabelEXT( m_queue, reinterpret_cast( &labelInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginDebugUtilsLabelEXT( m_commandBuffer, reinterpret_cast( pLabelInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBeginDebugUtilsLabelEXT( m_commandBuffer, reinterpret_cast( &labelInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::endDebugUtilsLabelEXT( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEndDebugUtilsLabelEXT( m_commandBuffer ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdInsertDebugUtilsLabelEXT( m_commandBuffer, reinterpret_cast( pLabelInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdInsertDebugUtilsLabelEXT( m_commandBuffer, reinterpret_cast( &labelInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createDebugUtilsMessengerEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT * pMessenger, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDebugUtilsMessengerEXT( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pMessenger ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Instance::createDebugUtilsMessengerEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger; - Result result = static_cast( - d.vkCreateDebugUtilsMessengerEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &messenger ) ) ); - return createResultValue( - result, messenger, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDebugUtilsMessengerEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Instance::createDebugUtilsMessengerEXTUnique( - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger; - Result result = static_cast( - d.vkCreateDebugUtilsMessengerEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &messenger ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, messenger, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDebugUtilsMessengerEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Instance::destroyDebugUtilsMessengerEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugUtilsMessengerEXT( m_instance, - static_cast( messenger ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Instance::destroyDebugUtilsMessengerEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugUtilsMessengerEXT( - m_instance, - static_cast( messenger ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugUtilsMessengerEXT( m_instance, - static_cast( messenger ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDebugUtilsMessengerEXT( - m_instance, - static_cast( messenger ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Instance::submitDebugUtilsMessageEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT * pCallbackData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkSubmitDebugUtilsMessageEXT( m_instance, - static_cast( messageSeverity ), - static_cast( messageTypes ), - reinterpret_cast( pCallbackData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Instance::submitDebugUtilsMessageEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT & callbackData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkSubmitDebugUtilsMessageEXT( m_instance, - static_cast( messageSeverity ), - static_cast( messageTypes ), - reinterpret_cast( &callbackData ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getAndroidHardwareBufferPropertiesANDROID( - const struct AHardwareBuffer * buffer, - VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetAndroidHardwareBufferPropertiesANDROID( - m_device, buffer, reinterpret_cast( pProperties ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID properties; - Result result = static_cast( d.vkGetAndroidHardwareBufferPropertiesANDROID( - m_device, &buffer, reinterpret_cast( &properties ) ) ); - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::Device::getAndroidHardwareBufferPropertiesANDROID" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID & properties = - structureChain.template get(); - Result result = static_cast( d.vkGetAndroidHardwareBufferPropertiesANDROID( - m_device, &buffer, reinterpret_cast( &properties ) ) ); - return createResultValue( - result, structureChain, VULKAN_HPP_NAMESPACE_STRING "::Device::getAndroidHardwareBufferPropertiesANDROID" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getMemoryAndroidHardwareBufferANDROID( - const VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID * pInfo, - struct AHardwareBuffer ** pBuffer, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryAndroidHardwareBufferANDROID( - m_device, reinterpret_cast( pInfo ), pBuffer ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryAndroidHardwareBufferANDROID( - const VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID & info, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - struct AHardwareBuffer * buffer; - Result result = static_cast( d.vkGetMemoryAndroidHardwareBufferANDROID( - m_device, reinterpret_cast( &info ), &buffer ) ); - return createResultValue( - result, buffer, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryAndroidHardwareBufferANDROID" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - - template - VULKAN_HPP_INLINE void - CommandBuffer::setSampleLocationsEXT( const VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT * pSampleLocationsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetSampleLocationsEXT( m_commandBuffer, - reinterpret_cast( pSampleLocationsInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setSampleLocationsEXT( const VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT & sampleLocationsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetSampleLocationsEXT( m_commandBuffer, - reinterpret_cast( &sampleLocationsInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void PhysicalDevice::getMultisamplePropertiesEXT( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT * pMultisampleProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPhysicalDeviceMultisamplePropertiesEXT( - m_physicalDevice, - static_cast( samples ), - reinterpret_cast( pMultisampleProperties ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT - PhysicalDevice::getMultisamplePropertiesEXT( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT multisampleProperties; - d.vkGetPhysicalDeviceMultisamplePropertiesEXT( - m_physicalDevice, - static_cast( samples ), - reinterpret_cast( &multisampleProperties ) ); - return multisampleProperties; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_get_memory_requirements2 === - - template - VULKAN_HPP_INLINE void - Device::getImageMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageMemoryRequirements2KHR( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetImageMemoryRequirements2KHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getImageMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetImageMemoryRequirements2KHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getBufferMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetBufferMemoryRequirements2KHR( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetBufferMemoryRequirements2KHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getBufferMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetBufferMemoryRequirements2KHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getImageSparseMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetImageSparseMemoryRequirements2KHR( - m_device, - reinterpret_cast( pInfo ), - pSparseMemoryRequirementCount, - reinterpret_cast( pSparseMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements; - uint32_t sparseMemoryRequirementCount; - d.vkGetImageSparseMemoryRequirements2KHR( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetImageSparseMemoryRequirements2KHR( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - template < - typename SparseImageMemoryRequirements2Allocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements( - sparseImageMemoryRequirements2Allocator ); - uint32_t sparseMemoryRequirementCount; - d.vkGetImageSparseMemoryRequirements2KHR( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetImageSparseMemoryRequirements2KHR( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_acceleration_structure === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::createAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructure, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateAccelerationStructureKHR( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pAccelerationStructure ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure; - Result result = static_cast( d.vkCreateAccelerationStructureKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &accelerationStructure ) ) ); - return createResultValue( - result, accelerationStructure, VULKAN_HPP_NAMESPACE_STRING "::Device::createAccelerationStructureKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createAccelerationStructureKHRUnique( - const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure; - Result result = static_cast( d.vkCreateAccelerationStructureKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &accelerationStructure ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - accelerationStructure, - VULKAN_HPP_NAMESPACE_STRING "::Device::createAccelerationStructureKHRUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureKHR( m_device, - static_cast( accelerationStructure ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureKHR( - m_device, - static_cast( accelerationStructure ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureKHR( m_device, - static_cast( accelerationStructure ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureKHR( - m_device, - static_cast( accelerationStructure ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructuresKHR( - uint32_t infoCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pInfos, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR * const * ppBuildRangeInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBuildAccelerationStructuresKHR( - m_commandBuffer, - infoCount, - reinterpret_cast( pInfos ), - reinterpret_cast( ppBuildRangeInfos ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructuresKHR( - ArrayProxy const & infos, - ArrayProxy const & pBuildRangeInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( infos.size() == pBuildRangeInfos.size() ); -# else - if ( infos.size() != pBuildRangeInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresKHR: infos.size() != pBuildRangeInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBuildAccelerationStructuresKHR( - m_commandBuffer, - infos.size(), - reinterpret_cast( infos.data() ), - reinterpret_cast( pBuildRangeInfos.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructuresIndirectKHR( - uint32_t infoCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pInfos, - const VULKAN_HPP_NAMESPACE::DeviceAddress * pIndirectDeviceAddresses, - const uint32_t * pIndirectStrides, - const uint32_t * const * ppMaxPrimitiveCounts, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBuildAccelerationStructuresIndirectKHR( - m_commandBuffer, - infoCount, - reinterpret_cast( pInfos ), - reinterpret_cast( pIndirectDeviceAddresses ), - pIndirectStrides, - ppMaxPrimitiveCounts ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructuresIndirectKHR( - ArrayProxy const & infos, - ArrayProxy const & indirectDeviceAddresses, - ArrayProxy const & indirectStrides, - ArrayProxy const & pMaxPrimitiveCounts, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( infos.size() == indirectDeviceAddresses.size() ); - VULKAN_HPP_ASSERT( infos.size() == indirectStrides.size() ); - VULKAN_HPP_ASSERT( infos.size() == pMaxPrimitiveCounts.size() ); -# else - if ( infos.size() != indirectDeviceAddresses.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresIndirectKHR: infos.size() != indirectDeviceAddresses.size()" ); - } - if ( infos.size() != indirectStrides.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresIndirectKHR: infos.size() != indirectStrides.size()" ); - } - if ( infos.size() != pMaxPrimitiveCounts.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresIndirectKHR: infos.size() != pMaxPrimitiveCounts.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBuildAccelerationStructuresIndirectKHR( - m_commandBuffer, - infos.size(), - reinterpret_cast( infos.data() ), - reinterpret_cast( indirectDeviceAddresses.data() ), - indirectStrides.data(), - pMaxPrimitiveCounts.data() ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::buildAccelerationStructuresKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - uint32_t infoCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pInfos, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR * const * ppBuildRangeInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBuildAccelerationStructuresKHR( - m_device, - static_cast( deferredOperation ), - infoCount, - reinterpret_cast( pInfos ), - reinterpret_cast( ppBuildRangeInfos ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Result Device::buildAccelerationStructuresKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - ArrayProxy const & infos, - ArrayProxy const & pBuildRangeInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( infos.size() == pBuildRangeInfos.size() ); -# else - if ( infos.size() != pBuildRangeInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::Device::buildAccelerationStructuresKHR: infos.size() != pBuildRangeInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - Result result = static_cast( d.vkBuildAccelerationStructuresKHR( - m_device, - static_cast( deferredOperation ), - infos.size(), - reinterpret_cast( infos.data() ), - reinterpret_cast( pBuildRangeInfos.data() ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::buildAccelerationStructuresKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::copyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCopyAccelerationStructureKHR( m_device, - static_cast( deferredOperation ), - reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::copyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkCopyAccelerationStructureKHR( m_device, - static_cast( deferredOperation ), - reinterpret_cast( &info ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::copyAccelerationStructureKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::copyAccelerationStructureToMemoryKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCopyAccelerationStructureToMemoryKHR( - m_device, - static_cast( deferredOperation ), - reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::copyAccelerationStructureToMemoryKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkCopyAccelerationStructureToMemoryKHR( - m_device, - static_cast( deferredOperation ), - reinterpret_cast( &info ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::copyAccelerationStructureToMemoryKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::copyMemoryToAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCopyMemoryToAccelerationStructureKHR( - m_device, - static_cast( deferredOperation ), - reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::copyMemoryToAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkCopyMemoryToAccelerationStructureKHR( - m_device, - static_cast( deferredOperation ), - reinterpret_cast( &info ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::copyMemoryToAccelerationStructureKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::writeAccelerationStructuresPropertiesKHR( - uint32_t accelerationStructureCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t dataSize, - void * pData, - size_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkWriteAccelerationStructuresPropertiesKHR( - m_device, - accelerationStructureCount, - reinterpret_cast( pAccelerationStructures ), - static_cast( queryType ), - dataSize, - pData, - stride ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_DEPRECATED( "This function is deprecated. Use one of the other flavours of it." ) - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type Device::writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - ArrayProxy const & data, - size_t stride, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkWriteAccelerationStructuresPropertiesKHR( - m_device, - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - data.size() * sizeof( T ), - reinterpret_cast( data.data() ), - stride ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertiesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t dataSize, - size_t stride, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( d.vkWriteAccelerationStructuresPropertiesKHR( - m_device, - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ), - stride ) ); - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertiesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::writeAccelerationStructuresPropertyKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t stride, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - DataType data; - Result result = static_cast( d.vkWriteAccelerationStructuresPropertiesKHR( - m_device, - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - sizeof( DataType ), - reinterpret_cast( &data ), - stride ) ); - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertyKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::copyAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyAccelerationStructureKHR( m_commandBuffer, - reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyAccelerationStructureKHR( m_commandBuffer, - reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyAccelerationStructureToMemoryKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyAccelerationStructureToMemoryKHR( - m_commandBuffer, reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyAccelerationStructureToMemoryKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyAccelerationStructureToMemoryKHR( - m_commandBuffer, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyMemoryToAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyMemoryToAccelerationStructureKHR( - m_commandBuffer, reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyMemoryToAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyMemoryToAccelerationStructureKHR( - m_commandBuffer, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE DeviceAddress Device::getAccelerationStructureAddressKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetAccelerationStructureDeviceAddressKHR( - m_device, reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE DeviceAddress Device::getAccelerationStructureAddressKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetAccelerationStructureDeviceAddressKHR( - m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::writeAccelerationStructuresPropertiesKHR( - uint32_t accelerationStructureCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteAccelerationStructuresPropertiesKHR( - m_commandBuffer, - accelerationStructureCount, - reinterpret_cast( pAccelerationStructures ), - static_cast( queryType ), - static_cast( queryPool ), - firstQuery ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteAccelerationStructuresPropertiesKHR( - m_commandBuffer, - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - static_cast( queryPool ), - firstQuery ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getAccelerationStructureCompatibilityKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR * pVersionInfo, - VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR * pCompatibility, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceAccelerationStructureCompatibilityKHR( - m_device, - reinterpret_cast( pVersionInfo ), - reinterpret_cast( pCompatibility ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR - Device::getAccelerationStructureCompatibilityKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR & versionInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR compatibility; - d.vkGetDeviceAccelerationStructureCompatibilityKHR( - m_device, - reinterpret_cast( &versionInfo ), - reinterpret_cast( &compatibility ) ); - return compatibility; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getAccelerationStructureBuildSizesKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildTypeKHR buildType, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pBuildInfo, - const uint32_t * pMaxPrimitiveCounts, - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR * pSizeInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetAccelerationStructureBuildSizesKHR( - m_device, - static_cast( buildType ), - reinterpret_cast( pBuildInfo ), - pMaxPrimitiveCounts, - reinterpret_cast( pSizeInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR - Device::getAccelerationStructureBuildSizesKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildTypeKHR buildType, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR & buildInfo, - ArrayProxy const & maxPrimitiveCounts, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( maxPrimitiveCounts.size() == buildInfo.geometryCount ); -# else - if ( maxPrimitiveCounts.size() != buildInfo.geometryCount ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Device::getAccelerationStructureBuildSizesKHR: maxPrimitiveCounts.size() != buildInfo.geometryCount" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR sizeInfo; - d.vkGetAccelerationStructureBuildSizesKHR( - m_device, - static_cast( buildType ), - reinterpret_cast( &buildInfo ), - maxPrimitiveCounts.data(), - reinterpret_cast( &sizeInfo ) ); - return sizeInfo; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_sampler_ycbcr_conversion === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createSamplerYcbcrConversionKHR( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion * pYcbcrConversion, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateSamplerYcbcrConversionKHR( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pYcbcrConversion ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createSamplerYcbcrConversionKHR( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; - Result result = static_cast( d.vkCreateSamplerYcbcrConversionKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &ycbcrConversion ) ) ); - return createResultValue( - result, ycbcrConversion, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerYcbcrConversionKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createSamplerYcbcrConversionKHRUnique( - const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; - Result result = static_cast( d.vkCreateSamplerYcbcrConversionKHR( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &ycbcrConversion ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, ycbcrConversion, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerYcbcrConversionKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroySamplerYcbcrConversionKHR( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySamplerYcbcrConversionKHR( m_device, - static_cast( ycbcrConversion ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroySamplerYcbcrConversionKHR( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroySamplerYcbcrConversionKHR( - m_device, - static_cast( ycbcrConversion ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_bind_memory2 === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::bindBufferMemory2KHR( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindBufferMemoryInfo * pBindInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBindBufferMemory2KHR( - m_device, bindInfoCount, reinterpret_cast( pBindInfos ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindBufferMemory2KHR( ArrayProxy const & bindInfos, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindBufferMemory2KHR( - m_device, bindInfos.size(), reinterpret_cast( bindInfos.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindBufferMemory2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::bindImageMemory2KHR( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindImageMemoryInfo * pBindInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBindImageMemory2KHR( - m_device, bindInfoCount, reinterpret_cast( pBindInfos ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindImageMemory2KHR( ArrayProxy const & bindInfos, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindImageMemory2KHR( - m_device, bindInfos.size(), reinterpret_cast( bindInfos.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindImageMemory2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_image_drm_format_modifier === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getImageDrmFormatModifierPropertiesEXT( - VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetImageDrmFormatModifierPropertiesEXT( - m_device, - static_cast( image ), - reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::getImageDrmFormatModifierPropertiesEXT( VULKAN_HPP_NAMESPACE::Image image, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT properties; - Result result = static_cast( d.vkGetImageDrmFormatModifierPropertiesEXT( - m_device, - static_cast( image ), - reinterpret_cast( &properties ) ) ); - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::Device::getImageDrmFormatModifierPropertiesEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_validation_cache === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createValidationCacheEXT( const VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::ValidationCacheEXT * pValidationCache, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateValidationCacheEXT( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pValidationCache ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::createValidationCacheEXT( const VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache; - Result result = static_cast( - d.vkCreateValidationCacheEXT( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &validationCache ) ) ); - return createResultValue( - result, validationCache, VULKAN_HPP_NAMESPACE_STRING "::Device::createValidationCacheEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Device::createValidationCacheEXTUnique( const VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache; - Result result = static_cast( - d.vkCreateValidationCacheEXT( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &validationCache ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, validationCache, VULKAN_HPP_NAMESPACE_STRING "::Device::createValidationCacheEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyValidationCacheEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyValidationCacheEXT( m_device, - static_cast( validationCache ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyValidationCacheEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyValidationCacheEXT( m_device, - static_cast( validationCache ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyValidationCacheEXT( m_device, - static_cast( validationCache ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyValidationCacheEXT( m_device, - static_cast( validationCache ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::mergeValidationCachesEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT dstCache, - uint32_t srcCacheCount, - const VULKAN_HPP_NAMESPACE::ValidationCacheEXT * pSrcCaches, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkMergeValidationCachesEXT( m_device, - static_cast( dstCache ), - srcCacheCount, - reinterpret_cast( pSrcCaches ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::mergeValidationCachesEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT dstCache, - ArrayProxy const & srcCaches, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkMergeValidationCachesEXT( m_device, - static_cast( dstCache ), - srcCaches.size(), - reinterpret_cast( srcCaches.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::mergeValidationCachesEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getValidationCacheDataEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - size_t * pDataSize, - void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetValidationCacheDataEXT( - m_device, static_cast( validationCache ), pDataSize, pData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getValidationCacheDataEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector data; - size_t dataSize; - Result result; - do - { - result = static_cast( d.vkGetValidationCacheDataEXT( - m_device, static_cast( validationCache ), &dataSize, nullptr ) ); - if ( ( result == Result::eSuccess ) && dataSize ) - { - data.resize( dataSize ); - result = - static_cast( d.vkGetValidationCacheDataEXT( m_device, - static_cast( validationCache ), - &dataSize, - reinterpret_cast( data.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( dataSize <= data.size() ); - if ( dataSize < data.size() ) - { - data.resize( dataSize ); - } - } - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getValidationCacheDataEXT" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType>::type - Device::getValidationCacheDataEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Uint8_tAllocator & uint8_tAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector data( uint8_tAllocator ); - size_t dataSize; - Result result; - do - { - result = static_cast( d.vkGetValidationCacheDataEXT( - m_device, static_cast( validationCache ), &dataSize, nullptr ) ); - if ( ( result == Result::eSuccess ) && dataSize ) - { - data.resize( dataSize ); - result = - static_cast( d.vkGetValidationCacheDataEXT( m_device, - static_cast( validationCache ), - &dataSize, - reinterpret_cast( data.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( dataSize <= data.size() ); - if ( dataSize < data.size() ) - { - data.resize( dataSize ); - } - } - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getValidationCacheDataEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_shading_rate_image === - - template - VULKAN_HPP_INLINE void CommandBuffer::bindShadingRateImageNV( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindShadingRateImageNV( - m_commandBuffer, static_cast( imageView ), static_cast( imageLayout ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setViewportShadingRatePaletteNV( - uint32_t firstViewport, - uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV * pShadingRatePalettes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportShadingRatePaletteNV( m_commandBuffer, - firstViewport, - viewportCount, - reinterpret_cast( pShadingRatePalettes ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setViewportShadingRatePaletteNV( - uint32_t firstViewport, - ArrayProxy const & shadingRatePalettes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportShadingRatePaletteNV( - m_commandBuffer, - firstViewport, - shadingRatePalettes.size(), - reinterpret_cast( shadingRatePalettes.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::setCoarseSampleOrderNV( VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType, - uint32_t customSampleOrderCount, - const VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV * pCustomSampleOrders, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetCoarseSampleOrderNV( m_commandBuffer, - static_cast( sampleOrderType ), - customSampleOrderCount, - reinterpret_cast( pCustomSampleOrders ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setCoarseSampleOrderNV( - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType, - ArrayProxy const & customSampleOrders, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetCoarseSampleOrderNV( m_commandBuffer, - static_cast( sampleOrderType ), - customSampleOrders.size(), - reinterpret_cast( customSampleOrders.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_ray_tracing === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructure, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateAccelerationStructureNV( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pAccelerationStructure ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::createAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure; - Result result = static_cast( d.vkCreateAccelerationStructureNV( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &accelerationStructure ) ) ); - return createResultValue( - result, accelerationStructure, VULKAN_HPP_NAMESPACE_STRING "::Device::createAccelerationStructureNV" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createAccelerationStructureNVUnique( - const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure; - Result result = static_cast( d.vkCreateAccelerationStructureNV( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &accelerationStructure ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - accelerationStructure, - VULKAN_HPP_NAMESPACE_STRING "::Device::createAccelerationStructureNVUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyAccelerationStructureNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureNV( m_device, - static_cast( accelerationStructure ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyAccelerationStructureNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureNV( - m_device, - static_cast( accelerationStructure ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureNV( m_device, - static_cast( accelerationStructure ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyAccelerationStructureNV( - m_device, - static_cast( accelerationStructure ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetAccelerationStructureMemoryRequirementsNV( - m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR - Device::getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR memoryRequirements; - d.vkGetAccelerationStructureMemoryRequirementsNV( - m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR & memoryRequirements = - structureChain.template get(); - d.vkGetAccelerationStructureMemoryRequirementsNV( - m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::bindAccelerationStructureMemoryNV( - uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindAccelerationStructureMemoryInfoNV * pBindInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkBindAccelerationStructureMemoryNV( - m_device, bindInfoCount, reinterpret_cast( pBindInfos ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::bindAccelerationStructureMemoryNV( - ArrayProxy const & bindInfos, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkBindAccelerationStructureMemoryNV( - m_device, - bindInfos.size(), - reinterpret_cast( bindInfos.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindAccelerationStructureMemoryNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::buildAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV * pInfo, - VULKAN_HPP_NAMESPACE::Buffer instanceData, - VULKAN_HPP_NAMESPACE::DeviceSize instanceOffset, - VULKAN_HPP_NAMESPACE::Bool32 update, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::Buffer scratch, - VULKAN_HPP_NAMESPACE::DeviceSize scratchOffset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBuildAccelerationStructureNV( m_commandBuffer, - reinterpret_cast( pInfo ), - static_cast( instanceData ), - static_cast( instanceOffset ), - static_cast( update ), - static_cast( dst ), - static_cast( src ), - static_cast( scratch ), - static_cast( scratchOffset ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::buildAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV & info, - VULKAN_HPP_NAMESPACE::Buffer instanceData, - VULKAN_HPP_NAMESPACE::DeviceSize instanceOffset, - VULKAN_HPP_NAMESPACE::Bool32 update, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::Buffer scratch, - VULKAN_HPP_NAMESPACE::DeviceSize scratchOffset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBuildAccelerationStructureNV( m_commandBuffer, - reinterpret_cast( &info ), - static_cast( instanceData ), - static_cast( instanceOffset ), - static_cast( update ), - static_cast( dst ), - static_cast( src ), - static_cast( scratch ), - static_cast( scratchOffset ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::copyAccelerationStructureNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyAccelerationStructureNV( m_commandBuffer, - static_cast( dst ), - static_cast( src ), - static_cast( mode ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::traceRaysNV( VULKAN_HPP_NAMESPACE::Buffer raygenShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize raygenShaderBindingOffset, - VULKAN_HPP_NAMESPACE::Buffer missShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer hitShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer callableShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingStride, - uint32_t width, - uint32_t height, - uint32_t depth, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdTraceRaysNV( m_commandBuffer, - static_cast( raygenShaderBindingTableBuffer ), - static_cast( raygenShaderBindingOffset ), - static_cast( missShaderBindingTableBuffer ), - static_cast( missShaderBindingOffset ), - static_cast( missShaderBindingStride ), - static_cast( hitShaderBindingTableBuffer ), - static_cast( hitShaderBindingOffset ), - static_cast( hitShaderBindingStride ), - static_cast( callableShaderBindingTableBuffer ), - static_cast( callableShaderBindingOffset ), - static_cast( callableShaderBindingStride ), - width, - height, - depth ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createRayTracingPipelinesNV( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - createInfoCount, - reinterpret_cast( pCreateInfos ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPipelines ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( - result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesNV", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size(), pipelineAllocator ); - Result result = static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( - result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesNV", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::createRayTracingPipelineNV( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Pipeline pipeline; - Result result = static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - return createResultValue( - result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelineNV", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createRayTracingPipelinesNVUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines; - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( - result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesNVUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template < - typename Dispatch, - typename PipelineAllocator, - typename B, - typename std::enable_if>::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createRayTracingPipelinesNVUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines( pipelineAllocator ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( - result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesNVUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createRayTracingPipelineNVUnique( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Pipeline pipeline; - Result result = static_cast( - d.vkCreateRayTracingPipelinesNV( m_device, - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelineNVUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT }, - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getRayTracingShaderGroupHandlesNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetRayTracingShaderGroupHandlesNV( - m_device, static_cast( pipeline ), firstGroup, groupCount, dataSize, pData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_DEPRECATED( "This function is deprecated. Use one of the other flavours of it." ) - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type Device::getRayTracingShaderGroupHandlesNV( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - ArrayProxy const & data, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkGetRayTracingShaderGroupHandlesNV( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( T ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingShaderGroupHandlesNV" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getRayTracingShaderGroupHandlesNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = - static_cast( d.vkGetRayTracingShaderGroupHandlesNV( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingShaderGroupHandlesNV" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getRayTracingShaderGroupHandleNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - DataType data; - Result result = static_cast( d.vkGetRayTracingShaderGroupHandlesNV( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingShaderGroupHandleNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getAccelerationStructureHandleNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - size_t dataSize, - void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetAccelerationStructureHandleNV( - m_device, static_cast( accelerationStructure ), dataSize, pData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_DEPRECATED( "This function is deprecated. Use one of the other flavours of it." ) - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type Device::getAccelerationStructureHandleNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - ArrayProxy const & data, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkGetAccelerationStructureHandleNV( m_device, - static_cast( accelerationStructure ), - data.size() * sizeof( T ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getAccelerationStructureHandleNV" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getAccelerationStructureHandleNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - size_t dataSize, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( - d.vkGetAccelerationStructureHandleNV( m_device, - static_cast( accelerationStructure ), - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getAccelerationStructureHandleNV" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getAccelerationStructureHandleNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - DataType data; - Result result = static_cast( - d.vkGetAccelerationStructureHandleNV( m_device, - static_cast( accelerationStructure ), - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getAccelerationStructureHandleNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::writeAccelerationStructuresPropertiesNV( - uint32_t accelerationStructureCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteAccelerationStructuresPropertiesNV( - m_commandBuffer, - accelerationStructureCount, - reinterpret_cast( pAccelerationStructures ), - static_cast( queryType ), - static_cast( queryPool ), - firstQuery ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::writeAccelerationStructuresPropertiesNV( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteAccelerationStructuresPropertiesNV( - m_commandBuffer, - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - static_cast( queryPool ), - firstQuery ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::compileDeferredNV( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, uint32_t shader, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCompileDeferredNV( m_device, static_cast( pipeline ), shader ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::compileDeferredNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, uint32_t shader, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkCompileDeferredNV( m_device, static_cast( pipeline ), shader ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::compileDeferredNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_maintenance3 === - - template - VULKAN_HPP_INLINE void - Device::getDescriptorSetLayoutSupportKHR( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo * pCreateInfo, - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport * pSupport, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDescriptorSetLayoutSupportKHR( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pSupport ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport - Device::getDescriptorSetLayoutSupportKHR( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport support; - d.vkGetDescriptorSetLayoutSupportKHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return support; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getDescriptorSetLayoutSupportKHR( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport & support = - structureChain.template get(); - d.vkGetDescriptorSetLayoutSupportKHR( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_draw_indirect_count === - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndirectCountKHR( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawIndexedIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawIndexedIndirectCountKHR( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - //=== VK_EXT_external_memory_host === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getMemoryHostPointerPropertiesEXT( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer, - VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT * pMemoryHostPointerProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryHostPointerPropertiesEXT( - m_device, - static_cast( handleType ), - pHostPointer, - reinterpret_cast( pMemoryHostPointerProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getMemoryHostPointerPropertiesEXT( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT memoryHostPointerProperties; - Result result = static_cast( d.vkGetMemoryHostPointerPropertiesEXT( - m_device, - static_cast( handleType ), - pHostPointer, - reinterpret_cast( &memoryHostPointerProperties ) ) ); - return createResultValue( - result, memoryHostPointerProperties, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryHostPointerPropertiesEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_AMD_buffer_marker === - - template - VULKAN_HPP_INLINE void CommandBuffer::writeBufferMarkerAMD( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteBufferMarkerAMD( m_commandBuffer, - static_cast( pipelineStage ), - static_cast( dstBuffer ), - static_cast( dstOffset ), - marker ); - } - - //=== VK_EXT_calibrated_timestamps === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getCalibrateableTimeDomainsEXT( uint32_t * pTimeDomainCount, - VULKAN_HPP_NAMESPACE::TimeDomainEXT * pTimeDomains, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - m_physicalDevice, pTimeDomainCount, reinterpret_cast( pTimeDomains ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getCalibrateableTimeDomainsEXT( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector timeDomains; - uint32_t timeDomainCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( m_physicalDevice, &timeDomainCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && timeDomainCount ) - { - timeDomains.resize( timeDomainCount ); - result = static_cast( d.vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - m_physicalDevice, &timeDomainCount, reinterpret_cast( timeDomains.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( timeDomainCount <= timeDomains.size() ); - if ( timeDomainCount < timeDomains.size() ) - { - timeDomains.resize( timeDomainCount ); - } - } - return createResultValue( - result, timeDomains, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getCalibrateableTimeDomainsEXT" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getCalibrateableTimeDomainsEXT( TimeDomainEXTAllocator & timeDomainEXTAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector timeDomains( timeDomainEXTAllocator ); - uint32_t timeDomainCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( m_physicalDevice, &timeDomainCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && timeDomainCount ) - { - timeDomains.resize( timeDomainCount ); - result = static_cast( d.vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - m_physicalDevice, &timeDomainCount, reinterpret_cast( timeDomains.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( timeDomainCount <= timeDomains.size() ); - if ( timeDomainCount < timeDomains.size() ) - { - timeDomains.resize( timeDomainCount ); - } - } - return createResultValue( - result, timeDomains, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getCalibrateableTimeDomainsEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getCalibratedTimestampsEXT( uint32_t timestampCount, - const VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT * pTimestampInfos, - uint64_t * pTimestamps, - uint64_t * pMaxDeviation, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetCalibratedTimestampsEXT( m_device, - timestampCount, - reinterpret_cast( pTimestampInfos ), - pTimestamps, - pMaxDeviation ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, uint64_t>>::type - Device::getCalibratedTimestampsEXT( - ArrayProxy const & timestampInfos, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::pair, uint64_t> data( - std::piecewise_construct, std::forward_as_tuple( timestampInfos.size() ), std::forward_as_tuple( 0 ) ); - std::vector & timestamps = data.first; - uint64_t & maxDeviation = data.second; - Result result = static_cast( - d.vkGetCalibratedTimestampsEXT( m_device, - timestampInfos.size(), - reinterpret_cast( timestampInfos.data() ), - timestamps.data(), - &maxDeviation ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getCalibratedTimestampsEXT" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType, uint64_t>>::type - Device::getCalibratedTimestampsEXT( - ArrayProxy const & timestampInfos, - Uint64_tAllocator & uint64_tAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::pair, uint64_t> data( - std::piecewise_construct, - std::forward_as_tuple( timestampInfos.size(), uint64_tAllocator ), - std::forward_as_tuple( 0 ) ); - std::vector & timestamps = data.first; - uint64_t & maxDeviation = data.second; - Result result = static_cast( - d.vkGetCalibratedTimestampsEXT( m_device, - timestampInfos.size(), - reinterpret_cast( timestampInfos.data() ), - timestamps.data(), - &maxDeviation ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getCalibratedTimestampsEXT" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getCalibratedTimestampEXT( const VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT & timestampInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::pair data; - uint64_t & timestamp = data.first; - uint64_t & maxDeviation = data.second; - Result result = static_cast( - d.vkGetCalibratedTimestampsEXT( m_device, - 1, - reinterpret_cast( ×tampInfo ), - ×tamp, - &maxDeviation ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getCalibratedTimestampEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_mesh_shader === - - template - VULKAN_HPP_INLINE void CommandBuffer::drawMeshTasksNV( uint32_t taskCount, - uint32_t firstTask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMeshTasksNV( m_commandBuffer, taskCount, firstTask ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::drawMeshTasksIndirectNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMeshTasksIndirectNV( - m_commandBuffer, static_cast( buffer ), static_cast( offset ), drawCount, stride ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::drawMeshTasksIndirectCountNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMeshTasksIndirectCountNV( m_commandBuffer, - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - //=== VK_NV_scissor_exclusive === - - template - VULKAN_HPP_INLINE void CommandBuffer::setExclusiveScissorNV( uint32_t firstExclusiveScissor, - uint32_t exclusiveScissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pExclusiveScissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetExclusiveScissorNV( m_commandBuffer, - firstExclusiveScissor, - exclusiveScissorCount, - reinterpret_cast( pExclusiveScissors ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setExclusiveScissorNV( uint32_t firstExclusiveScissor, - ArrayProxy const & exclusiveScissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetExclusiveScissorNV( m_commandBuffer, - firstExclusiveScissor, - exclusiveScissors.size(), - reinterpret_cast( exclusiveScissors.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_device_diagnostic_checkpoints === - - template - VULKAN_HPP_INLINE void CommandBuffer::setCheckpointNV( const void * pCheckpointMarker, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetCheckpointNV( m_commandBuffer, pCheckpointMarker ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setCheckpointNV( CheckpointMarkerType const & checkpointMarker, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetCheckpointNV( m_commandBuffer, reinterpret_cast( &checkpointMarker ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Queue::getCheckpointDataNV( uint32_t * pCheckpointDataCount, - VULKAN_HPP_NAMESPACE::CheckpointDataNV * pCheckpointData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetQueueCheckpointDataNV( - m_queue, pCheckpointDataCount, reinterpret_cast( pCheckpointData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Queue::getCheckpointDataNV( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector checkpointData; - uint32_t checkpointDataCount; - d.vkGetQueueCheckpointDataNV( m_queue, &checkpointDataCount, nullptr ); - checkpointData.resize( checkpointDataCount ); - d.vkGetQueueCheckpointDataNV( - m_queue, &checkpointDataCount, reinterpret_cast( checkpointData.data() ) ); - VULKAN_HPP_ASSERT( checkpointDataCount <= checkpointData.size() ); - return checkpointData; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Queue::getCheckpointDataNV( CheckpointDataNVAllocator & checkpointDataNVAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector checkpointData( checkpointDataNVAllocator ); - uint32_t checkpointDataCount; - d.vkGetQueueCheckpointDataNV( m_queue, &checkpointDataCount, nullptr ); - checkpointData.resize( checkpointDataCount ); - d.vkGetQueueCheckpointDataNV( - m_queue, &checkpointDataCount, reinterpret_cast( checkpointData.data() ) ); - VULKAN_HPP_ASSERT( checkpointDataCount <= checkpointData.size() ); - return checkpointData; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_timeline_semaphore === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getSemaphoreCounterValueKHR( - VULKAN_HPP_NAMESPACE::Semaphore semaphore, uint64_t * pValue, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetSemaphoreCounterValueKHR( m_device, static_cast( semaphore ), pValue ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getSemaphoreCounterValueKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint64_t value; - Result result = - static_cast( d.vkGetSemaphoreCounterValueKHR( m_device, static_cast( semaphore ), &value ) ); - return createResultValue( result, value, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreCounterValueKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::waitSemaphoresKHR( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo * pWaitInfo, - uint64_t timeout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkWaitSemaphoresKHR( m_device, reinterpret_cast( pWaitInfo ), timeout ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::waitSemaphoresKHR( - const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, uint64_t timeout, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkWaitSemaphoresKHR( m_device, reinterpret_cast( &waitInfo ), timeout ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::waitSemaphoresKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eTimeout } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::signalSemaphoreKHR( - const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo * pSignalInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkSignalSemaphoreKHR( m_device, reinterpret_cast( pSignalInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::signalSemaphoreKHR( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkSignalSemaphoreKHR( m_device, reinterpret_cast( &signalInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::signalSemaphoreKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_INTEL_performance_query === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::initializePerformanceApiINTEL( - const VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL * pInitializeInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkInitializePerformanceApiINTEL( - m_device, reinterpret_cast( pInitializeInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::initializePerformanceApiINTEL( - const VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL & initializeInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkInitializePerformanceApiINTEL( - m_device, reinterpret_cast( &initializeInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::initializePerformanceApiINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::uninitializePerformanceApiINTEL( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkUninitializePerformanceApiINTEL( m_device ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result CommandBuffer::setPerformanceMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL * pMarkerInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCmdSetPerformanceMarkerINTEL( - m_commandBuffer, reinterpret_cast( pMarkerInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - CommandBuffer::setPerformanceMarkerINTEL( const VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL & markerInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkCmdSetPerformanceMarkerINTEL( - m_commandBuffer, reinterpret_cast( &markerInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::setPerformanceMarkerINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result CommandBuffer::setPerformanceStreamMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL * pMarkerInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCmdSetPerformanceStreamMarkerINTEL( - m_commandBuffer, reinterpret_cast( pMarkerInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - CommandBuffer::setPerformanceStreamMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL & markerInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkCmdSetPerformanceStreamMarkerINTEL( - m_commandBuffer, reinterpret_cast( &markerInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::setPerformanceStreamMarkerINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result CommandBuffer::setPerformanceOverrideINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL * pOverrideInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkCmdSetPerformanceOverrideINTEL( - m_commandBuffer, reinterpret_cast( pOverrideInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - CommandBuffer::setPerformanceOverrideINTEL( const VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL & overrideInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkCmdSetPerformanceOverrideINTEL( - m_commandBuffer, reinterpret_cast( &overrideInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::setPerformanceOverrideINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::acquirePerformanceConfigurationINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL * pAcquireInfo, - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL * pConfiguration, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkAcquirePerformanceConfigurationINTEL( - m_device, - reinterpret_cast( pAcquireInfo ), - reinterpret_cast( pConfiguration ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::acquirePerformanceConfigurationINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL & acquireInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration; - Result result = static_cast( d.vkAcquirePerformanceConfigurationINTEL( - m_device, - reinterpret_cast( &acquireInfo ), - reinterpret_cast( &configuration ) ) ); - return createResultValue( - result, configuration, VULKAN_HPP_NAMESPACE_STRING "::Device::acquirePerformanceConfigurationINTEL" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::acquirePerformanceConfigurationINTELUnique( - const VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL & acquireInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration; - Result result = static_cast( d.vkAcquirePerformanceConfigurationINTEL( - m_device, - reinterpret_cast( &acquireInfo ), - reinterpret_cast( &configuration ) ) ); - ObjectRelease deleter( *this, d ); - return createResultValue( - result, - configuration, - VULKAN_HPP_NAMESPACE_STRING "::Device::acquirePerformanceConfigurationINTELUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::releasePerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkReleasePerformanceConfigurationINTEL( - m_device, static_cast( configuration ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::releasePerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkReleasePerformanceConfigurationINTEL( - m_device, static_cast( configuration ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::releasePerformanceConfigurationINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::release( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkReleasePerformanceConfigurationINTEL( - m_device, static_cast( configuration ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::release( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkReleasePerformanceConfigurationINTEL( - m_device, static_cast( configuration ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::release" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Queue::setPerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkQueueSetPerformanceConfigurationINTEL( - m_queue, static_cast( configuration ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Queue::setPerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkQueueSetPerformanceConfigurationINTEL( - m_queue, static_cast( configuration ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::setPerformanceConfigurationINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getPerformanceParameterINTEL( VULKAN_HPP_NAMESPACE::PerformanceParameterTypeINTEL parameter, - VULKAN_HPP_NAMESPACE::PerformanceValueINTEL * pValue, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPerformanceParameterINTEL( m_device, - static_cast( parameter ), - reinterpret_cast( pValue ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getPerformanceParameterINTEL( VULKAN_HPP_NAMESPACE::PerformanceParameterTypeINTEL parameter, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PerformanceValueINTEL value; - Result result = - static_cast( d.vkGetPerformanceParameterINTEL( m_device, - static_cast( parameter ), - reinterpret_cast( &value ) ) ); - return createResultValue( result, value, VULKAN_HPP_NAMESPACE_STRING "::Device::getPerformanceParameterINTEL" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_AMD_display_native_hdr === - - template - VULKAN_HPP_INLINE void Device::setLocalDimmingAMD( VULKAN_HPP_NAMESPACE::SwapchainKHR swapChain, - VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkSetLocalDimmingAMD( - m_device, static_cast( swapChain ), static_cast( localDimmingEnable ) ); - } - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Instance::createImagePipeSurfaceFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateImagePipeSurfaceFUCHSIA( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createImagePipeSurfaceFUCHSIA( const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( d.vkCreateImagePipeSurfaceFUCHSIA( - m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createImagePipeSurfaceFUCHSIA" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createImagePipeSurfaceFUCHSIAUnique( - const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( d.vkCreateImagePipeSurfaceFUCHSIA( - m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createImagePipeSurfaceFUCHSIAUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createMetalSurfaceEXT( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateMetalSurfaceEXT( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createMetalSurfaceEXT( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateMetalSurfaceEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createMetalSurfaceEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createMetalSurfaceEXTUnique( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateMetalSurfaceEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createMetalSurfaceEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_KHR_fragment_shading_rate === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getFragmentShadingRatesKHR( - uint32_t * pFragmentShadingRateCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateKHR * pFragmentShadingRates, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceFragmentShadingRatesKHR( - m_physicalDevice, - pFragmentShadingRateCount, - reinterpret_cast( pFragmentShadingRates ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::vector>::type - PhysicalDevice::getFragmentShadingRatesKHR( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector - fragmentShadingRates; - uint32_t fragmentShadingRateCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceFragmentShadingRatesKHR( m_physicalDevice, &fragmentShadingRateCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && fragmentShadingRateCount ) - { - fragmentShadingRates.resize( fragmentShadingRateCount ); - result = static_cast( d.vkGetPhysicalDeviceFragmentShadingRatesKHR( - m_physicalDevice, - &fragmentShadingRateCount, - reinterpret_cast( fragmentShadingRates.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( fragmentShadingRateCount <= fragmentShadingRates.size() ); - if ( fragmentShadingRateCount < fragmentShadingRates.size() ) - { - fragmentShadingRates.resize( fragmentShadingRateCount ); - } - } - return createResultValue( - result, fragmentShadingRates, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getFragmentShadingRatesKHR" ); - } - - template ::value, - int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::vector>::type - PhysicalDevice::getFragmentShadingRatesKHR( - PhysicalDeviceFragmentShadingRateKHRAllocator & physicalDeviceFragmentShadingRateKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector - fragmentShadingRates( physicalDeviceFragmentShadingRateKHRAllocator ); - uint32_t fragmentShadingRateCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceFragmentShadingRatesKHR( m_physicalDevice, &fragmentShadingRateCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && fragmentShadingRateCount ) - { - fragmentShadingRates.resize( fragmentShadingRateCount ); - result = static_cast( d.vkGetPhysicalDeviceFragmentShadingRatesKHR( - m_physicalDevice, - &fragmentShadingRateCount, - reinterpret_cast( fragmentShadingRates.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( fragmentShadingRateCount <= fragmentShadingRates.size() ); - if ( fragmentShadingRateCount < fragmentShadingRates.size() ) - { - fragmentShadingRates.resize( fragmentShadingRateCount ); - } - } - return createResultValue( - result, fragmentShadingRates, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getFragmentShadingRatesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setFragmentShadingRateKHR( - const VULKAN_HPP_NAMESPACE::Extent2D * pFragmentSize, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2], - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetFragmentShadingRateKHR( m_commandBuffer, - reinterpret_cast( pFragmentSize ), - reinterpret_cast( combinerOps ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setFragmentShadingRateKHR( - const VULKAN_HPP_NAMESPACE::Extent2D & fragmentSize, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2], - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetFragmentShadingRateKHR( m_commandBuffer, - reinterpret_cast( &fragmentSize ), - reinterpret_cast( combinerOps ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_buffer_device_address === - - template - VULKAN_HPP_INLINE DeviceAddress Device::getBufferAddressEXT( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetBufferDeviceAddressEXT( m_device, reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE DeviceAddress Device::getBufferAddressEXT( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferDeviceAddressEXT( m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_tooling_info === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getToolPropertiesEXT( uint32_t * pToolCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceToolProperties * pToolProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceToolPropertiesEXT( - m_physicalDevice, pToolCount, reinterpret_cast( pToolProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getToolPropertiesEXT( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector toolProperties; - uint32_t toolCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceToolPropertiesEXT( m_physicalDevice, &toolCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && toolCount ) - { - toolProperties.resize( toolCount ); - result = static_cast( d.vkGetPhysicalDeviceToolPropertiesEXT( - m_physicalDevice, &toolCount, reinterpret_cast( toolProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( toolCount <= toolProperties.size() ); - if ( toolCount < toolProperties.size() ) - { - toolProperties.resize( toolCount ); - } - } - return createResultValue( - result, toolProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getToolPropertiesEXT" ); - } - - template < - typename PhysicalDeviceToolPropertiesAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getToolPropertiesEXT( PhysicalDeviceToolPropertiesAllocator & physicalDeviceToolPropertiesAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector toolProperties( - physicalDeviceToolPropertiesAllocator ); - uint32_t toolCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceToolPropertiesEXT( m_physicalDevice, &toolCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && toolCount ) - { - toolProperties.resize( toolCount ); - result = static_cast( d.vkGetPhysicalDeviceToolPropertiesEXT( - m_physicalDevice, &toolCount, reinterpret_cast( toolProperties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( toolCount <= toolProperties.size() ); - if ( toolCount < toolProperties.size() ) - { - toolProperties.resize( toolCount ); - } - } - return createResultValue( - result, toolProperties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getToolPropertiesEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_present_wait === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::waitForPresentKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t presentId, - uint64_t timeout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkWaitForPresentKHR( m_device, static_cast( swapchain ), presentId, timeout ) ); - } -#else - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::waitForPresentKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t presentId, - uint64_t timeout, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkWaitForPresentKHR( m_device, static_cast( swapchain ), presentId, timeout ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::waitForPresentKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eTimeout } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_cooperative_matrix === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getCooperativeMatrixPropertiesNV( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::CooperativeMatrixPropertiesNV * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - m_physicalDevice, pPropertyCount, reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getCooperativeMatrixPropertiesNV( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - m_physicalDevice, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getCooperativeMatrixPropertiesNV" ); - } - - template < - typename CooperativeMatrixPropertiesNVAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getCooperativeMatrixPropertiesNV( - CooperativeMatrixPropertiesNVAllocator & cooperativeMatrixPropertiesNVAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - cooperativeMatrixPropertiesNVAllocator ); - uint32_t propertyCount; - Result result; - do - { - result = static_cast( - d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, &propertyCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - m_physicalDevice, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getCooperativeMatrixPropertiesNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_coverage_reduction_mode === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV( - uint32_t * pCombinationCount, - VULKAN_HPP_NAMESPACE::FramebufferMixedSamplesCombinationNV * pCombinations, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - m_physicalDevice, - pCombinationCount, - reinterpret_cast( pCombinations ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::vector>::type - PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector combinations; - uint32_t combinationCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - m_physicalDevice, &combinationCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && combinationCount ) - { - combinations.resize( combinationCount ); - result = static_cast( d.vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - m_physicalDevice, - &combinationCount, - reinterpret_cast( combinations.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( combinationCount <= combinations.size() ); - if ( combinationCount < combinations.size() ) - { - combinations.resize( combinationCount ); - } - } - return createResultValue( result, - combinations, - VULKAN_HPP_NAMESPACE_STRING - "::PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV" ); - } - - template ::value, - int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::vector>::type - PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV( - FramebufferMixedSamplesCombinationNVAllocator & framebufferMixedSamplesCombinationNVAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector combinations( - framebufferMixedSamplesCombinationNVAllocator ); - uint32_t combinationCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - m_physicalDevice, &combinationCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && combinationCount ) - { - combinations.resize( combinationCount ); - result = static_cast( d.vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - m_physicalDevice, - &combinationCount, - reinterpret_cast( combinations.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( combinationCount <= combinations.size() ); - if ( combinationCount < combinations.size() ) - { - combinations.resize( combinationCount ); - } - } - return createResultValue( result, - combinations, - VULKAN_HPP_NAMESPACE_STRING - "::PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::getSurfacePresentModes2EXT( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - uint32_t * pPresentModeCount, - VULKAN_HPP_NAMESPACE::PresentModeKHR * pPresentModes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPhysicalDeviceSurfacePresentModes2EXT( - m_physicalDevice, - reinterpret_cast( pSurfaceInfo ), - pPresentModeCount, - reinterpret_cast( pPresentModes ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector presentModes; - uint32_t presentModeCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfacePresentModes2EXT( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &presentModeCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && presentModeCount ) - { - presentModes.resize( presentModeCount ); - result = static_cast( d.vkGetPhysicalDeviceSurfacePresentModes2EXT( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &presentModeCount, - reinterpret_cast( presentModes.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentModeCount <= presentModes.size() ); - if ( presentModeCount < presentModes.size() ) - { - presentModes.resize( presentModeCount ); - } - } - return createResultValue( - result, presentModes, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfacePresentModes2EXT" ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - PresentModeKHRAllocator & presentModeKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector presentModes( presentModeKHRAllocator ); - uint32_t presentModeCount; - Result result; - do - { - result = static_cast( d.vkGetPhysicalDeviceSurfacePresentModes2EXT( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &presentModeCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && presentModeCount ) - { - presentModes.resize( presentModeCount ); - result = static_cast( d.vkGetPhysicalDeviceSurfacePresentModes2EXT( - m_physicalDevice, - reinterpret_cast( &surfaceInfo ), - &presentModeCount, - reinterpret_cast( presentModes.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentModeCount <= presentModes.size() ); - if ( presentModeCount < presentModes.size() ) - { - presentModes.resize( presentModeCount ); - } - } - return createResultValue( - result, presentModes, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfacePresentModes2EXT" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -# ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::acquireFullScreenExclusiveModeEXT( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkAcquireFullScreenExclusiveModeEXT( m_device, static_cast( swapchain ) ) ); - } -# else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::acquireFullScreenExclusiveModeEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkAcquireFullScreenExclusiveModeEXT( m_device, static_cast( swapchain ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::acquireFullScreenExclusiveModeEXT" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -# ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::releaseFullScreenExclusiveModeEXT( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkReleaseFullScreenExclusiveModeEXT( m_device, static_cast( swapchain ) ) ); - } -# else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::releaseFullScreenExclusiveModeEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkReleaseFullScreenExclusiveModeEXT( m_device, static_cast( swapchain ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::releaseFullScreenExclusiveModeEXT" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getGroupSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR * pModes, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetDeviceGroupSurfacePresentModes2EXT( - m_device, - reinterpret_cast( pSurfaceInfo ), - reinterpret_cast( pModes ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getGroupSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes; - Result result = static_cast( d.vkGetDeviceGroupSurfacePresentModes2EXT( - m_device, - reinterpret_cast( &surfaceInfo ), - reinterpret_cast( &modes ) ) ); - return createResultValue( result, modes, VULKAN_HPP_NAMESPACE_STRING "::Device::getGroupSurfacePresentModes2EXT" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createHeadlessSurfaceEXT( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateHeadlessSurfaceEXT( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createHeadlessSurfaceEXT( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateHeadlessSurfaceEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createHeadlessSurfaceEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createHeadlessSurfaceEXTUnique( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateHeadlessSurfaceEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createHeadlessSurfaceEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_buffer_device_address === - - template - VULKAN_HPP_INLINE DeviceAddress Device::getBufferAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetBufferDeviceAddressKHR( m_device, reinterpret_cast( pInfo ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE DeviceAddress Device::getBufferAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferDeviceAddressKHR( m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE uint64_t Device::getBufferOpaqueCaptureAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferOpaqueCaptureAddressKHR( m_device, - reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE uint64_t Device::getBufferOpaqueCaptureAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetBufferOpaqueCaptureAddressKHR( m_device, - reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE uint64_t - Device::getMemoryOpaqueCaptureAddressKHR( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo * pInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeviceMemoryOpaqueCaptureAddressKHR( - m_device, reinterpret_cast( pInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE uint64_t - Device::getMemoryOpaqueCaptureAddressKHR( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeviceMemoryOpaqueCaptureAddressKHR( - m_device, reinterpret_cast( &info ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_line_rasterization === - - template - VULKAN_HPP_INLINE void CommandBuffer::setLineStippleEXT( uint32_t lineStippleFactor, - uint16_t lineStipplePattern, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetLineStippleEXT( m_commandBuffer, lineStippleFactor, lineStipplePattern ); - } - - //=== VK_EXT_host_query_reset === - - template - VULKAN_HPP_INLINE void Device::resetQueryPoolEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkResetQueryPoolEXT( m_device, static_cast( queryPool ), firstQuery, queryCount ); - } - - //=== VK_EXT_extended_dynamic_state === - - template - VULKAN_HPP_INLINE void CommandBuffer::setCullModeEXT( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetCullModeEXT( m_commandBuffer, static_cast( cullMode ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setFrontFaceEXT( VULKAN_HPP_NAMESPACE::FrontFace frontFace, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetFrontFaceEXT( m_commandBuffer, static_cast( frontFace ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::setPrimitiveTopologyEXT( VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetPrimitiveTopologyEXT( m_commandBuffer, static_cast( primitiveTopology ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setViewportWithCountEXT( uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportWithCountEXT( - m_commandBuffer, viewportCount, reinterpret_cast( pViewports ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setViewportWithCountEXT( ArrayProxy const & viewports, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetViewportWithCountEXT( - m_commandBuffer, viewports.size(), reinterpret_cast( viewports.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setScissorWithCountEXT( uint32_t scissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetScissorWithCountEXT( m_commandBuffer, scissorCount, reinterpret_cast( pScissors ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setScissorWithCountEXT( ArrayProxy const & scissors, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetScissorWithCountEXT( - m_commandBuffer, scissors.size(), reinterpret_cast( scissors.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::bindVertexBuffers2EXT( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - const VULKAN_HPP_NAMESPACE::DeviceSize * pSizes, - const VULKAN_HPP_NAMESPACE::DeviceSize * pStrides, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindVertexBuffers2EXT( m_commandBuffer, - firstBinding, - bindingCount, - reinterpret_cast( pBuffers ), - reinterpret_cast( pOffsets ), - reinterpret_cast( pSizes ), - reinterpret_cast( pStrides ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::bindVertexBuffers2EXT( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes, - ArrayProxy const & strides, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); - VULKAN_HPP_ASSERT( sizes.empty() || buffers.size() == sizes.size() ); - VULKAN_HPP_ASSERT( strides.empty() || buffers.size() == strides.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2EXT: buffers.size() != offsets.size()" ); - } - if ( !sizes.empty() && buffers.size() != sizes.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2EXT: buffers.size() != sizes.size()" ); - } - if ( !strides.empty() && buffers.size() != strides.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2EXT: buffers.size() != strides.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdBindVertexBuffers2EXT( m_commandBuffer, - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ), - reinterpret_cast( sizes.data() ), - reinterpret_cast( strides.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthTestEnableEXT( m_commandBuffer, static_cast( depthTestEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthWriteEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthWriteEnableEXT( m_commandBuffer, static_cast( depthWriteEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthCompareOpEXT( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthCompareOpEXT( m_commandBuffer, static_cast( depthCompareOp ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthBoundsTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthBoundsTestEnableEXT( m_commandBuffer, static_cast( depthBoundsTestEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilTestEnableEXT( m_commandBuffer, static_cast( stencilTestEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setStencilOpEXT( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetStencilOpEXT( m_commandBuffer, - static_cast( faceMask ), - static_cast( failOp ), - static_cast( passOp ), - static_cast( depthFailOp ), - static_cast( compareOp ) ); - } - - //=== VK_KHR_deferred_host_operations === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createDeferredOperationKHR( const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DeferredOperationKHR * pDeferredOperation, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDeferredOperationKHR( m_device, - reinterpret_cast( pAllocator ), - reinterpret_cast( pDeferredOperation ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::createDeferredOperationKHR( Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation; - Result result = static_cast( - d.vkCreateDeferredOperationKHR( m_device, - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &deferredOperation ) ) ); - return createResultValue( - result, deferredOperation, VULKAN_HPP_NAMESPACE_STRING "::Device::createDeferredOperationKHR" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Device::createDeferredOperationKHRUnique( Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation; - Result result = static_cast( - d.vkCreateDeferredOperationKHR( m_device, - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &deferredOperation ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, deferredOperation, VULKAN_HPP_NAMESPACE_STRING "::Device::createDeferredOperationKHRUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyDeferredOperationKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDeferredOperationKHR( m_device, - static_cast( operation ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyDeferredOperationKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDeferredOperationKHR( m_device, - static_cast( operation ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDeferredOperationKHR( m_device, - static_cast( operation ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyDeferredOperationKHR( m_device, - static_cast( operation ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE uint32_t Device::getDeferredOperationMaxConcurrencyKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetDeferredOperationMaxConcurrencyKHR( m_device, static_cast( operation ) ); - } - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getDeferredOperationResultKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDeferredOperationResultKHR( m_device, static_cast( operation ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getDeferredOperationResultKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkGetDeferredOperationResultKHR( m_device, static_cast( operation ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getDeferredOperationResultKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eNotReady } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::deferredOperationJoinKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkDeferredOperationJoinKHR( m_device, static_cast( operation ) ) ); - } -#else - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::deferredOperationJoinKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkDeferredOperationJoinKHR( m_device, static_cast( operation ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::deferredOperationJoinKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eThreadDoneKHR, - VULKAN_HPP_NAMESPACE::Result::eThreadIdleKHR } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_pipeline_executable_properties === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getPipelineExecutablePropertiesKHR( const VULKAN_HPP_NAMESPACE::PipelineInfoKHR * pPipelineInfo, - uint32_t * pExecutableCount, - VULKAN_HPP_NAMESPACE::PipelineExecutablePropertiesKHR * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPipelineExecutablePropertiesKHR( m_device, - reinterpret_cast( pPipelineInfo ), - pExecutableCount, - reinterpret_cast( pProperties ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::vector>::type - Device::getPipelineExecutablePropertiesKHR( const VULKAN_HPP_NAMESPACE::PipelineInfoKHR & pipelineInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties; - uint32_t executableCount; - Result result; - do - { - result = static_cast( d.vkGetPipelineExecutablePropertiesKHR( - m_device, reinterpret_cast( &pipelineInfo ), &executableCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && executableCount ) - { - properties.resize( executableCount ); - result = static_cast( d.vkGetPipelineExecutablePropertiesKHR( - m_device, - reinterpret_cast( &pipelineInfo ), - &executableCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( executableCount <= properties.size() ); - if ( executableCount < properties.size() ) - { - properties.resize( executableCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutablePropertiesKHR" ); - } - - template < - typename PipelineExecutablePropertiesKHRAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE typename ResultValueType< - std::vector>::type - Device::getPipelineExecutablePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PipelineInfoKHR & pipelineInfo, - PipelineExecutablePropertiesKHRAllocator & pipelineExecutablePropertiesKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector properties( - pipelineExecutablePropertiesKHRAllocator ); - uint32_t executableCount; - Result result; - do - { - result = static_cast( d.vkGetPipelineExecutablePropertiesKHR( - m_device, reinterpret_cast( &pipelineInfo ), &executableCount, nullptr ) ); - if ( ( result == Result::eSuccess ) && executableCount ) - { - properties.resize( executableCount ); - result = static_cast( d.vkGetPipelineExecutablePropertiesKHR( - m_device, - reinterpret_cast( &pipelineInfo ), - &executableCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( executableCount <= properties.size() ); - if ( executableCount < properties.size() ) - { - properties.resize( executableCount ); - } - } - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutablePropertiesKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getPipelineExecutableStatisticsKHR( const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR * pExecutableInfo, - uint32_t * pStatisticCount, - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticKHR * pStatistics, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPipelineExecutableStatisticsKHR( m_device, - reinterpret_cast( pExecutableInfo ), - pStatisticCount, - reinterpret_cast( pStatistics ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getPipelineExecutableStatisticsKHR( const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector statistics; - uint32_t statisticCount; - Result result; - do - { - result = static_cast( d.vkGetPipelineExecutableStatisticsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &statisticCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && statisticCount ) - { - statistics.resize( statisticCount ); - result = static_cast( d.vkGetPipelineExecutableStatisticsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &statisticCount, - reinterpret_cast( statistics.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( statisticCount <= statistics.size() ); - if ( statisticCount < statistics.size() ) - { - statistics.resize( statisticCount ); - } - } - return createResultValue( - result, statistics, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutableStatisticsKHR" ); - } - - template < - typename PipelineExecutableStatisticKHRAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getPipelineExecutableStatisticsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - PipelineExecutableStatisticKHRAllocator & pipelineExecutableStatisticKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector statistics( - pipelineExecutableStatisticKHRAllocator ); - uint32_t statisticCount; - Result result; - do - { - result = static_cast( d.vkGetPipelineExecutableStatisticsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &statisticCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && statisticCount ) - { - statistics.resize( statisticCount ); - result = static_cast( d.vkGetPipelineExecutableStatisticsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &statisticCount, - reinterpret_cast( statistics.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( statisticCount <= statistics.size() ); - if ( statisticCount < statistics.size() ) - { - statistics.resize( statisticCount ); - } - } - return createResultValue( - result, statistics, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutableStatisticsKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR * pExecutableInfo, - uint32_t * pInternalRepresentationCount, - VULKAN_HPP_NAMESPACE::PipelineExecutableInternalRepresentationKHR * pInternalRepresentations, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetPipelineExecutableInternalRepresentationsKHR( - m_device, - reinterpret_cast( pExecutableInfo ), - pInternalRepresentationCount, - reinterpret_cast( pInternalRepresentations ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector - internalRepresentations; - uint32_t internalRepresentationCount; - Result result; - do - { - result = static_cast( d.vkGetPipelineExecutableInternalRepresentationsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &internalRepresentationCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && internalRepresentationCount ) - { - internalRepresentations.resize( internalRepresentationCount ); - result = static_cast( d.vkGetPipelineExecutableInternalRepresentationsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &internalRepresentationCount, - reinterpret_cast( internalRepresentations.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( internalRepresentationCount <= internalRepresentations.size() ); - if ( internalRepresentationCount < internalRepresentations.size() ) - { - internalRepresentations.resize( internalRepresentationCount ); - } - } - return createResultValue( result, - internalRepresentations, - VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutableInternalRepresentationsKHR" ); - } - - template < - typename PipelineExecutableInternalRepresentationKHRAllocator, - typename Dispatch, - typename B, - typename std::enable_if::value, - int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - PipelineExecutableInternalRepresentationKHRAllocator & pipelineExecutableInternalRepresentationKHRAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector - internalRepresentations( pipelineExecutableInternalRepresentationKHRAllocator ); - uint32_t internalRepresentationCount; - Result result; - do - { - result = static_cast( d.vkGetPipelineExecutableInternalRepresentationsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &internalRepresentationCount, - nullptr ) ); - if ( ( result == Result::eSuccess ) && internalRepresentationCount ) - { - internalRepresentations.resize( internalRepresentationCount ); - result = static_cast( d.vkGetPipelineExecutableInternalRepresentationsKHR( - m_device, - reinterpret_cast( &executableInfo ), - &internalRepresentationCount, - reinterpret_cast( internalRepresentations.data() ) ) ); - } - } while ( result == Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( internalRepresentationCount <= internalRepresentations.size() ); - if ( internalRepresentationCount < internalRepresentations.size() ) - { - internalRepresentations.resize( internalRepresentationCount ); - } - } - return createResultValue( result, - internalRepresentations, - VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutableInternalRepresentationsKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_device_generated_commands === - - template - VULKAN_HPP_INLINE void Device::getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetGeneratedCommandsMemoryRequirementsNV( - m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetGeneratedCommandsMemoryRequirementsNV( - m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetGeneratedCommandsMemoryRequirementsNV( - m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::preprocessGeneratedCommandsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV * pGeneratedCommandsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPreprocessGeneratedCommandsNV( - m_commandBuffer, reinterpret_cast( pGeneratedCommandsInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::preprocessGeneratedCommandsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPreprocessGeneratedCommandsNV( - m_commandBuffer, reinterpret_cast( &generatedCommandsInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::executeGeneratedCommandsNV( - VULKAN_HPP_NAMESPACE::Bool32 isPreprocessed, - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV * pGeneratedCommandsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdExecuteGeneratedCommandsNV( m_commandBuffer, - static_cast( isPreprocessed ), - reinterpret_cast( pGeneratedCommandsInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::executeGeneratedCommandsNV( - VULKAN_HPP_NAMESPACE::Bool32 isPreprocessed, - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdExecuteGeneratedCommandsNV( m_commandBuffer, - static_cast( isPreprocessed ), - reinterpret_cast( &generatedCommandsInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::bindPipelineShaderGroupNV( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t groupIndex, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindPipelineShaderGroupNV( m_commandBuffer, - static_cast( pipelineBindPoint ), - static_cast( pipeline ), - groupIndex ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::createIndirectCommandsLayoutNV( - const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV * pIndirectCommandsLayout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateIndirectCommandsLayoutNV( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pIndirectCommandsLayout ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createIndirectCommandsLayoutNV( const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout; - Result result = static_cast( d.vkCreateIndirectCommandsLayoutNV( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &indirectCommandsLayout ) ) ); - return createResultValue( - result, indirectCommandsLayout, VULKAN_HPP_NAMESPACE_STRING "::Device::createIndirectCommandsLayoutNV" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createIndirectCommandsLayoutNVUnique( - const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout; - Result result = static_cast( d.vkCreateIndirectCommandsLayoutNV( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &indirectCommandsLayout ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, - indirectCommandsLayout, - VULKAN_HPP_NAMESPACE_STRING "::Device::createIndirectCommandsLayoutNVUnique", - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyIndirectCommandsLayoutNV( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyIndirectCommandsLayoutNV( m_device, - static_cast( indirectCommandsLayout ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyIndirectCommandsLayoutNV( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyIndirectCommandsLayoutNV( - m_device, - static_cast( indirectCommandsLayout ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyIndirectCommandsLayoutNV( m_device, - static_cast( indirectCommandsLayout ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyIndirectCommandsLayoutNV( - m_device, - static_cast( indirectCommandsLayout ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_acquire_drm_display === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::acquireDrmDisplayEXT( - int32_t drmFd, VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkAcquireDrmDisplayEXT( m_physicalDevice, drmFd, static_cast( display ) ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type PhysicalDevice::acquireDrmDisplayEXT( - int32_t drmFd, VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkAcquireDrmDisplayEXT( m_physicalDevice, drmFd, static_cast( display ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::acquireDrmDisplayEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getDrmDisplayEXT( int32_t drmFd, - uint32_t connectorId, - VULKAN_HPP_NAMESPACE::DisplayKHR * display, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetDrmDisplayEXT( m_physicalDevice, drmFd, connectorId, reinterpret_cast( display ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getDrmDisplayEXT( int32_t drmFd, uint32_t connectorId, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayKHR display; - Result result = static_cast( - d.vkGetDrmDisplayEXT( m_physicalDevice, drmFd, connectorId, reinterpret_cast( &display ) ) ); - return createResultValue( result, display, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDrmDisplayEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getDrmDisplayEXTUnique( int32_t drmFd, uint32_t connectorId, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayKHR display; - Result result = static_cast( - d.vkGetDrmDisplayEXT( m_physicalDevice, drmFd, connectorId, reinterpret_cast( &display ) ) ); - ObjectRelease deleter( *this, d ); - return createResultValue( - result, display, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDrmDisplayEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_private_data === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createPrivateDataSlotEXT( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PrivateDataSlot * pPrivateDataSlot, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreatePrivateDataSlotEXT( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPrivateDataSlot ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::createPrivateDataSlotEXT( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot; - Result result = static_cast( - d.vkCreatePrivateDataSlotEXT( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &privateDataSlot ) ) ); - return createResultValue( - result, privateDataSlot, VULKAN_HPP_NAMESPACE_STRING "::Device::createPrivateDataSlotEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - Device::createPrivateDataSlotEXTUnique( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot; - Result result = static_cast( - d.vkCreatePrivateDataSlotEXT( m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &privateDataSlot ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, privateDataSlot, VULKAN_HPP_NAMESPACE_STRING "::Device::createPrivateDataSlotEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyPrivateDataSlotEXT( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPrivateDataSlotEXT( m_device, - static_cast( privateDataSlot ), - reinterpret_cast( pAllocator ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyPrivateDataSlotEXT( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyPrivateDataSlotEXT( m_device, - static_cast( privateDataSlot ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::setPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkSetPrivateDataEXT( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - data ) ); - } -#else - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::setPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkSetPrivateDataEXT( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - data ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setPrivateDataEXT" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetPrivateDataEXT( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - pData ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t - Device::getPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - uint64_t data; - d.vkGetPrivateDataEXT( m_device, - static_cast( objectType ), - objectHandle, - static_cast( privateDataSlot ), - &data ); - return data; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - template - VULKAN_HPP_INLINE void CommandBuffer::encodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR * pEncodeInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEncodeVideoKHR( m_commandBuffer, reinterpret_cast( pEncodeInfo ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::encodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR & encodeInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdEncodeVideoKHR( m_commandBuffer, reinterpret_cast( &encodeInfo ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - - template - VULKAN_HPP_INLINE void CommandBuffer::setEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetEvent2KHR( - m_commandBuffer, static_cast( event ), reinterpret_cast( pDependencyInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetEvent2KHR( - m_commandBuffer, static_cast( event ), reinterpret_cast( &dependencyInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::resetEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResetEvent2KHR( - m_commandBuffer, static_cast( event ), static_cast( stageMask ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::waitEvents2KHR( uint32_t eventCount, - const VULKAN_HPP_NAMESPACE::Event * pEvents, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWaitEvents2KHR( m_commandBuffer, - eventCount, - reinterpret_cast( pEvents ), - reinterpret_cast( pDependencyInfos ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::waitEvents2KHR( ArrayProxy const & events, - ArrayProxy const & dependencyInfos, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( events.size() == dependencyInfos.size() ); -# else - if ( events.size() != dependencyInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::waitEvents2KHR: events.size() != dependencyInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - d.vkCmdWaitEvents2KHR( m_commandBuffer, - events.size(), - reinterpret_cast( events.data() ), - reinterpret_cast( dependencyInfos.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::pipelineBarrier2KHR( const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPipelineBarrier2KHR( m_commandBuffer, reinterpret_cast( pDependencyInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::pipelineBarrier2KHR( const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdPipelineBarrier2KHR( m_commandBuffer, reinterpret_cast( &dependencyInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::writeTimestamp2KHR( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteTimestamp2KHR( - m_commandBuffer, static_cast( stage ), static_cast( queryPool ), query ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Queue::submit2KHR( uint32_t submitCount, - const VULKAN_HPP_NAMESPACE::SubmitInfo2 * pSubmits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkQueueSubmit2KHR( - m_queue, submitCount, reinterpret_cast( pSubmits ), static_cast( fence ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Queue::submit2KHR( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkQueueSubmit2KHR( m_queue, - submits.size(), - reinterpret_cast( submits.data() ), - static_cast( fence ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::submit2KHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::writeBufferMarker2AMD( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdWriteBufferMarker2AMD( m_commandBuffer, - static_cast( stage ), - static_cast( dstBuffer ), - static_cast( dstOffset ), - marker ); - } - - template - VULKAN_HPP_INLINE void Queue::getCheckpointData2NV( uint32_t * pCheckpointDataCount, - VULKAN_HPP_NAMESPACE::CheckpointData2NV * pCheckpointData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetQueueCheckpointData2NV( - m_queue, pCheckpointDataCount, reinterpret_cast( pCheckpointData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Queue::getCheckpointData2NV( Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector checkpointData; - uint32_t checkpointDataCount; - d.vkGetQueueCheckpointData2NV( m_queue, &checkpointDataCount, nullptr ); - checkpointData.resize( checkpointDataCount ); - d.vkGetQueueCheckpointData2NV( - m_queue, &checkpointDataCount, reinterpret_cast( checkpointData.data() ) ); - VULKAN_HPP_ASSERT( checkpointDataCount <= checkpointData.size() ); - return checkpointData; - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Queue::getCheckpointData2NV( CheckpointData2NVAllocator & checkpointData2NVAllocator, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector checkpointData( checkpointData2NVAllocator ); - uint32_t checkpointDataCount; - d.vkGetQueueCheckpointData2NV( m_queue, &checkpointDataCount, nullptr ); - checkpointData.resize( checkpointDataCount ); - d.vkGetQueueCheckpointData2NV( - m_queue, &checkpointDataCount, reinterpret_cast( checkpointData.data() ) ); - VULKAN_HPP_ASSERT( checkpointDataCount <= checkpointData.size() ); - return checkpointData; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_fragment_shading_rate_enums === - - template - VULKAN_HPP_INLINE void CommandBuffer::setFragmentShadingRateEnumNV( - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2], - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetFragmentShadingRateEnumNV( m_commandBuffer, - static_cast( shadingRate ), - reinterpret_cast( combinerOps ) ); - } - - //=== VK_KHR_copy_commands2 === - - template - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 * pCopyBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBuffer2KHR( m_commandBuffer, reinterpret_cast( pCopyBufferInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBuffer2KHR( m_commandBuffer, reinterpret_cast( ©BufferInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::copyImage2KHR( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 * pCopyImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImage2KHR( m_commandBuffer, reinterpret_cast( pCopyImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::copyImage2KHR( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImage2KHR( m_commandBuffer, reinterpret_cast( ©ImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::copyBufferToImage2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 * pCopyBufferToImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBufferToImage2KHR( m_commandBuffer, - reinterpret_cast( pCopyBufferToImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyBufferToImage2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyBufferToImage2KHR( m_commandBuffer, - reinterpret_cast( ©BufferToImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::copyImageToBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 * pCopyImageToBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImageToBuffer2KHR( m_commandBuffer, - reinterpret_cast( pCopyImageToBufferInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::copyImageToBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdCopyImageToBuffer2KHR( m_commandBuffer, - reinterpret_cast( ©ImageToBufferInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::blitImage2KHR( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 * pBlitImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBlitImage2KHR( m_commandBuffer, reinterpret_cast( pBlitImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::blitImage2KHR( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBlitImage2KHR( m_commandBuffer, reinterpret_cast( &blitImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::resolveImage2KHR( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 * pResolveImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResolveImage2KHR( m_commandBuffer, reinterpret_cast( pResolveImageInfo ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::resolveImage2KHR( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdResolveImage2KHR( m_commandBuffer, reinterpret_cast( &resolveImageInfo ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - -# ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result PhysicalDevice::acquireWinrtDisplayNV( - VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkAcquireWinrtDisplayNV( m_physicalDevice, static_cast( display ) ) ); - } -# else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - PhysicalDevice::acquireWinrtDisplayNV( VULKAN_HPP_NAMESPACE::DisplayKHR display, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkAcquireWinrtDisplayNV( m_physicalDevice, static_cast( display ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::acquireWinrtDisplayNV" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - PhysicalDevice::getWinrtDisplayNV( uint32_t deviceRelativeId, - VULKAN_HPP_NAMESPACE::DisplayKHR * pDisplay, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetWinrtDisplayNV( m_physicalDevice, deviceRelativeId, reinterpret_cast( pDisplay ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - PhysicalDevice::getWinrtDisplayNV( uint32_t deviceRelativeId, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayKHR display; - Result result = static_cast( - d.vkGetWinrtDisplayNV( m_physicalDevice, deviceRelativeId, reinterpret_cast( &display ) ) ); - return createResultValue( result, display, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getWinrtDisplayNV" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - PhysicalDevice::getWinrtDisplayNVUnique( uint32_t deviceRelativeId, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::DisplayKHR display; - Result result = static_cast( - d.vkGetWinrtDisplayNV( m_physicalDevice, deviceRelativeId, reinterpret_cast( &display ) ) ); - ObjectRelease deleter( *this, d ); - return createResultValue( - result, display, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getWinrtDisplayNVUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createDirectFBSurfaceEXT( const VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateDirectFBSurfaceEXT( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createDirectFBSurfaceEXT( const VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateDirectFBSurfaceEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDirectFBSurfaceEXT" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createDirectFBSurfaceEXTUnique( const VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateDirectFBSurfaceEXT( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createDirectFBSurfaceEXTUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getDirectFBPresentationSupportEXT( - uint32_t queueFamilyIndex, IDirectFB * dfb, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceDirectFBPresentationSupportEXT( m_physicalDevice, queueFamilyIndex, dfb ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getDirectFBPresentationSupportEXT( - uint32_t queueFamilyIndex, IDirectFB & dfb, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetPhysicalDeviceDirectFBPresentationSupportEXT( m_physicalDevice, queueFamilyIndex, &dfb ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - - template - VULKAN_HPP_INLINE void CommandBuffer::traceRaysKHR( - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pRaygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pMissShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pHitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pCallableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdTraceRaysKHR( m_commandBuffer, - reinterpret_cast( pRaygenShaderBindingTable ), - reinterpret_cast( pMissShaderBindingTable ), - reinterpret_cast( pHitShaderBindingTable ), - reinterpret_cast( pCallableShaderBindingTable ), - width, - height, - depth ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::traceRaysKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdTraceRaysKHR( m_commandBuffer, - reinterpret_cast( &raygenShaderBindingTable ), - reinterpret_cast( &missShaderBindingTable ), - reinterpret_cast( &hitShaderBindingTable ), - reinterpret_cast( &callableShaderBindingTable ), - width, - height, - depth ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createRayTracingPipelinesKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateRayTracingPipelinesKHR( m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - createInfoCount, - reinterpret_cast( pCreateInfos ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pPipelines ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( d.vkCreateRayTracingPipelinesKHR( - m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template ::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector pipelines( createInfos.size(), pipelineAllocator ); - Result result = static_cast( d.vkCreateRayTracingPipelinesKHR( - m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - return createResultValue( result, - pipelines, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::createRayTracingPipelineKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Pipeline pipeline; - Result result = static_cast( - d.vkCreateRayTracingPipelinesKHR( m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - return createResultValue( result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelineKHR", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createRayTracingPipelinesKHRUnique( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines; - std::vector pipelines( createInfos.size() ); - Result result = static_cast( d.vkCreateRayTracingPipelinesKHR( - m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) || - ( result == VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesKHRUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template < - typename Dispatch, - typename PipelineAllocator, - typename B, - typename std::enable_if>::value, int>::type> - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue, PipelineAllocator>> - Device::createRayTracingPipelinesKHRUnique( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector, PipelineAllocator> uniquePipelines( pipelineAllocator ); - std::vector pipelines( createInfos.size() ); - Result result = static_cast( d.vkCreateRayTracingPipelinesKHR( - m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( pipelines.data() ) ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) || - ( result == VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - uniquePipelines.reserve( createInfos.size() ); - ObjectDestroy deleter( *this, allocator, d ); - for ( size_t i = 0; i < createInfos.size(); i++ ) - { - uniquePipelines.push_back( UniqueHandle( pipelines[i], deleter ) ); - } - } - return createResultValue( result, - std::move( uniquePipelines ), - VULKAN_HPP_NAMESPACE_STRING "::Device::createRayTracingPipelinesKHRUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT } ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue> - Device::createRayTracingPipelineKHRUnique( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Pipeline pipeline; - Result result = static_cast( - d.vkCreateRayTracingPipelinesKHR( m_device, - static_cast( deferredOperation ), - static_cast( pipelineCache ), - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &pipeline ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( result, - pipeline, - VULKAN_HPP_NAMESPACE_STRING - "::Device::createRayTracingPipelineKHRUnique", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, - VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR, - VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT }, - deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getRayTracingShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetRayTracingShaderGroupHandlesKHR( - m_device, static_cast( pipeline ), firstGroup, groupCount, dataSize, pData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_DEPRECATED( "This function is deprecated. Use one of the other flavours of it." ) - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type Device::getRayTracingShaderGroupHandlesKHR( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - ArrayProxy const & data, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = - static_cast( d.vkGetRayTracingShaderGroupHandlesKHR( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( T ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingShaderGroupHandlesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getRayTracingShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = - static_cast( d.vkGetRayTracingShaderGroupHandlesKHR( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingShaderGroupHandlesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getRayTracingShaderGroupHandleKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - DataType data; - Result result = static_cast( d.vkGetRayTracingShaderGroupHandlesKHR( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - return createResultValue( result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingShaderGroupHandleKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getRayTracingCaptureReplayShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( - m_device, static_cast( pipeline ), firstGroup, groupCount, dataSize, pData ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_DEPRECATED( "This function is deprecated. Use one of the other flavours of it." ) - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type Device::getRayTracingCaptureReplayShaderGroupHandlesKHR( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - ArrayProxy const & data, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( - d.vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( T ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingCaptureReplayShaderGroupHandlesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::getRayTracingCaptureReplayShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( - d.vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingCaptureReplayShaderGroupHandlesKHR" ); - } - - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getRayTracingCaptureReplayShaderGroupHandleKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - DataType data; - Result result = - static_cast( d.vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( m_device, - static_cast( pipeline ), - firstGroup, - groupCount, - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - return createResultValue( - result, data, VULKAN_HPP_NAMESPACE_STRING "::Device::getRayTracingCaptureReplayShaderGroupHandleKHR" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::traceRaysIndirectKHR( - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pRaygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pMissShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pHitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pCallableShaderBindingTable, - VULKAN_HPP_NAMESPACE::DeviceAddress indirectDeviceAddress, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdTraceRaysIndirectKHR( - m_commandBuffer, - reinterpret_cast( pRaygenShaderBindingTable ), - reinterpret_cast( pMissShaderBindingTable ), - reinterpret_cast( pHitShaderBindingTable ), - reinterpret_cast( pCallableShaderBindingTable ), - static_cast( indirectDeviceAddress ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::traceRaysIndirectKHR( - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - VULKAN_HPP_NAMESPACE::DeviceAddress indirectDeviceAddress, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdTraceRaysIndirectKHR( - m_commandBuffer, - reinterpret_cast( &raygenShaderBindingTable ), - reinterpret_cast( &missShaderBindingTable ), - reinterpret_cast( &hitShaderBindingTable ), - reinterpret_cast( &callableShaderBindingTable ), - static_cast( indirectDeviceAddress ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE DeviceSize - Device::getRayTracingShaderGroupStackSizeKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t group, - VULKAN_HPP_NAMESPACE::ShaderGroupShaderKHR groupShader, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetRayTracingShaderGroupStackSizeKHR( - m_device, static_cast( pipeline ), group, static_cast( groupShader ) ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::setRayTracingPipelineStackSizeKHR( uint32_t pipelineStackSize, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetRayTracingPipelineStackSizeKHR( m_commandBuffer, pipelineStackSize ); - } - - //=== VK_EXT_vertex_input_dynamic_state === - - template - VULKAN_HPP_INLINE void CommandBuffer::setVertexInputEXT( - uint32_t vertexBindingDescriptionCount, - const VULKAN_HPP_NAMESPACE::VertexInputBindingDescription2EXT * pVertexBindingDescriptions, - uint32_t vertexAttributeDescriptionCount, - const VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription2EXT * pVertexAttributeDescriptions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetVertexInputEXT( - m_commandBuffer, - vertexBindingDescriptionCount, - reinterpret_cast( pVertexBindingDescriptions ), - vertexAttributeDescriptionCount, - reinterpret_cast( pVertexAttributeDescriptions ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::setVertexInputEXT( - ArrayProxy const & vertexBindingDescriptions, - ArrayProxy const & vertexAttributeDescriptions, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetVertexInputEXT( - m_commandBuffer, - vertexBindingDescriptions.size(), - reinterpret_cast( vertexBindingDescriptions.data() ), - vertexAttributeDescriptions.size(), - reinterpret_cast( vertexAttributeDescriptions.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getMemoryZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA * pGetZirconHandleInfo, - zx_handle_t * pZirconHandle, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryZirconHandleFUCHSIA( - m_device, reinterpret_cast( pGetZirconHandleInfo ), pZirconHandle ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA & getZirconHandleInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - zx_handle_t zirconHandle; - Result result = static_cast( d.vkGetMemoryZirconHandleFUCHSIA( - m_device, reinterpret_cast( &getZirconHandleInfo ), &zirconHandle ) ); - return createResultValue( - result, zirconHandle, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryZirconHandleFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getMemoryZirconHandlePropertiesFUCHSIA( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle, - VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA * pMemoryZirconHandleProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryZirconHandlePropertiesFUCHSIA( - m_device, - static_cast( handleType ), - zirconHandle, - reinterpret_cast( pMemoryZirconHandleProperties ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryZirconHandlePropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA memoryZirconHandleProperties; - Result result = static_cast( d.vkGetMemoryZirconHandlePropertiesFUCHSIA( - m_device, - static_cast( handleType ), - zirconHandle, - reinterpret_cast( &memoryZirconHandleProperties ) ) ); - return createResultValue( result, - memoryZirconHandleProperties, - VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryZirconHandlePropertiesFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::importSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA * pImportSemaphoreZirconHandleInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkImportSemaphoreZirconHandleFUCHSIA( - m_device, - reinterpret_cast( pImportSemaphoreZirconHandleInfo ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::importSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA & importSemaphoreZirconHandleInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkImportSemaphoreZirconHandleFUCHSIA( - m_device, - reinterpret_cast( &importSemaphoreZirconHandleInfo ) ) ); - return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importSemaphoreZirconHandleFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA * pGetZirconHandleInfo, - zx_handle_t * pZirconHandle, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetSemaphoreZirconHandleFUCHSIA( - m_device, - reinterpret_cast( pGetZirconHandleInfo ), - pZirconHandle ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::getSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA & getZirconHandleInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - zx_handle_t zirconHandle; - Result result = static_cast( d.vkGetSemaphoreZirconHandleFUCHSIA( - m_device, - reinterpret_cast( &getZirconHandleInfo ), - &zirconHandle ) ); - return createResultValue( - result, zirconHandle, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreZirconHandleFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::createBufferCollectionFUCHSIA( const VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA * pCollection, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateBufferCollectionFUCHSIA( m_device, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pCollection ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::createBufferCollectionFUCHSIA( const VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection; - Result result = static_cast( d.vkCreateBufferCollectionFUCHSIA( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &collection ) ) ); - return createResultValue( - result, collection, VULKAN_HPP_NAMESPACE_STRING "::Device::createBufferCollectionFUCHSIA" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Device::createBufferCollectionFUCHSIAUnique( - const VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection; - Result result = static_cast( d.vkCreateBufferCollectionFUCHSIA( - m_device, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &collection ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, collection, VULKAN_HPP_NAMESPACE_STRING "::Device::createBufferCollectionFUCHSIAUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::setBufferCollectionImageConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA * pImageConstraintsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkSetBufferCollectionImageConstraintsFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( pImageConstraintsInfo ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::setBufferCollectionImageConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA & imageConstraintsInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkSetBufferCollectionImageConstraintsFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( &imageConstraintsInfo ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::setBufferCollectionImageConstraintsFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::setBufferCollectionBufferConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA * pBufferConstraintsInfo, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkSetBufferCollectionBufferConstraintsFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( pBufferConstraintsInfo ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE typename ResultValueType::type - Device::setBufferCollectionBufferConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA & bufferConstraintsInfo, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - Result result = static_cast( d.vkSetBufferCollectionBufferConstraintsFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( &bufferConstraintsInfo ) ) ); - return createResultValue( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::setBufferCollectionBufferConstraintsFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::destroyBufferCollectionFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferCollectionFUCHSIA( m_device, - static_cast( collection ), - reinterpret_cast( pAllocator ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - Device::destroyBufferCollectionFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferCollectionFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferCollectionFUCHSIA( m_device, - static_cast( collection ), - reinterpret_cast( pAllocator ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void Device::destroy( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - Optional allocator, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkDestroyBufferCollectionFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( - static_cast( allocator ) ) ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getBufferCollectionPropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA * pProperties, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetBufferCollectionPropertiesFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( pProperties ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Device::getBufferCollectionPropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA properties; - Result result = static_cast( d.vkGetBufferCollectionPropertiesFUCHSIA( - m_device, - static_cast( collection ), - reinterpret_cast( &properties ) ) ); - return createResultValue( - result, properties, VULKAN_HPP_NAMESPACE_STRING "::Device::getBufferCollectionPropertiesFUCHSIA" ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Device::getSubpassShadingMaxWorkgroupSizeHUAWEI( VULKAN_HPP_NAMESPACE::RenderPass renderpass, - VULKAN_HPP_NAMESPACE::Extent2D * pMaxWorkgroupSize, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - m_device, static_cast( renderpass ), reinterpret_cast( pMaxWorkgroupSize ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE ResultValue - Device::getSubpassShadingMaxWorkgroupSizeHUAWEI( VULKAN_HPP_NAMESPACE::RenderPass renderpass, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::Extent2D maxWorkgroupSize; - Result result = static_cast( d.vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - m_device, static_cast( renderpass ), reinterpret_cast( &maxWorkgroupSize ) ) ); - return createResultValue( result, - maxWorkgroupSize, - VULKAN_HPP_NAMESPACE_STRING "::Device::getSubpassShadingMaxWorkgroupSizeHUAWEI", - { VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eIncomplete } ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void CommandBuffer::subpassShadingHUAWEI( Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSubpassShadingHUAWEI( m_commandBuffer ); - } - - //=== VK_HUAWEI_invocation_mask === - - template - VULKAN_HPP_INLINE void CommandBuffer::bindInvocationMaskHUAWEI( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdBindInvocationMaskHUAWEI( - m_commandBuffer, static_cast( imageView ), static_cast( imageLayout ) ); - } - - //=== VK_NV_external_memory_rdma === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result Device::getMemoryRemoteAddressNV( - const VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV * pMemoryGetRemoteAddressInfo, - VULKAN_HPP_NAMESPACE::RemoteAddressNV * pAddress, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( d.vkGetMemoryRemoteAddressNV( - m_device, - reinterpret_cast( pMemoryGetRemoteAddressInfo ), - reinterpret_cast( pAddress ) ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE typename ResultValueType::type - Device::getMemoryRemoteAddressNV( - const VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV & memoryGetRemoteAddressInfo, Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::RemoteAddressNV address; - Result result = static_cast( d.vkGetMemoryRemoteAddressNV( - m_device, - reinterpret_cast( &memoryGetRemoteAddressInfo ), - reinterpret_cast( &address ) ) ); - return createResultValue( result, address, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryRemoteAddressNV" ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_extended_dynamic_state2 === - - template - VULKAN_HPP_INLINE void CommandBuffer::setPatchControlPointsEXT( uint32_t patchControlPoints, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetPatchControlPointsEXT( m_commandBuffer, patchControlPoints ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::setRasterizerDiscardEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetRasterizerDiscardEnableEXT( m_commandBuffer, static_cast( rasterizerDiscardEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setDepthBiasEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetDepthBiasEnableEXT( m_commandBuffer, static_cast( depthBiasEnable ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::setLogicOpEXT( VULKAN_HPP_NAMESPACE::LogicOp logicOp, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetLogicOpEXT( m_commandBuffer, static_cast( logicOp ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::setPrimitiveRestartEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetPrimitiveRestartEnableEXT( m_commandBuffer, static_cast( primitiveRestartEnable ) ); - } - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE Result - Instance::createScreenSurfaceQNX( const VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkCreateScreenSurfaceQNX( m_instance, - reinterpret_cast( pCreateInfo ), - reinterpret_cast( pAllocator ), - reinterpret_cast( pSurface ) ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType::type - Instance::createScreenSurfaceQNX( const VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateScreenSurfaceQNX( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createScreenSurfaceQNX" ); - } - -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - Instance::createScreenSurfaceQNXUnique( const VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX & createInfo, - Optional allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::SurfaceKHR surface; - Result result = static_cast( - d.vkCreateScreenSurfaceQNX( m_instance, - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &surface ) ) ); - ObjectDestroy deleter( *this, allocator, d ); - return createResultValue( - result, surface, VULKAN_HPP_NAMESPACE_STRING "::Instance::createScreenSurfaceQNXUnique", deleter ); - } -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getScreenPresentationSupportQNX( - uint32_t queueFamilyIndex, struct _screen_window * window, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return static_cast( - d.vkGetPhysicalDeviceScreenPresentationSupportQNX( m_physicalDevice, queueFamilyIndex, window ) ); - } - -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE Bool32 PhysicalDevice::getScreenPresentationSupportQNX( - uint32_t queueFamilyIndex, struct _screen_window & window, Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - return d.vkGetPhysicalDeviceScreenPresentationSupportQNX( m_physicalDevice, queueFamilyIndex, &window ); - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - //=== VK_EXT_color_write_enable === - - template - VULKAN_HPP_INLINE void CommandBuffer::setColorWriteEnableEXT( uint32_t attachmentCount, - const VULKAN_HPP_NAMESPACE::Bool32 * pColorWriteEnables, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetColorWriteEnableEXT( - m_commandBuffer, attachmentCount, reinterpret_cast( pColorWriteEnables ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::setColorWriteEnableEXT( ArrayProxy const & colorWriteEnables, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdSetColorWriteEnableEXT( - m_commandBuffer, colorWriteEnables.size(), reinterpret_cast( colorWriteEnables.data() ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_multi_draw === - - template - VULKAN_HPP_INLINE void CommandBuffer::drawMultiEXT( uint32_t drawCount, - const VULKAN_HPP_NAMESPACE::MultiDrawInfoEXT * pVertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMultiEXT( m_commandBuffer, - drawCount, - reinterpret_cast( pVertexInfo ), - instanceCount, - firstInstance, - stride ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void - CommandBuffer::drawMultiEXT( ArrayProxy const & vertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMultiEXT( m_commandBuffer, - vertexInfo.size(), - reinterpret_cast( vertexInfo.data() ), - instanceCount, - firstInstance, - stride ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - CommandBuffer::drawMultiIndexedEXT( uint32_t drawCount, - const VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT * pIndexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - const int32_t * pVertexOffset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMultiIndexedEXT( m_commandBuffer, - drawCount, - reinterpret_cast( pIndexInfo ), - instanceCount, - firstInstance, - stride, - pVertexOffset ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_INLINE void CommandBuffer::drawMultiIndexedEXT( - ArrayProxy const & indexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Optional vertexOffset, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkCmdDrawMultiIndexedEXT( m_commandBuffer, - indexInfo.size(), - reinterpret_cast( indexInfo.data() ), - instanceCount, - firstInstance, - stride, - static_cast( vertexOffset ) ); - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_pageable_device_local_memory === - - template - VULKAN_HPP_INLINE void Device::setMemoryPriorityEXT( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - float priority, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkSetDeviceMemoryPriorityEXT( m_device, static_cast( memory ), priority ); - } - - //=== VK_KHR_maintenance4 === - - template - VULKAN_HPP_INLINE void - Device::getBufferMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceBufferMemoryRequirementsKHR( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetDeviceBufferMemoryRequirementsKHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getBufferMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetDeviceBufferMemoryRequirementsKHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void - Device::getImageMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceImageMemoryRequirementsKHR( m_device, - reinterpret_cast( pInfo ), - reinterpret_cast( pMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - d.vkGetDeviceImageMemoryRequirementsKHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getImageMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - d.vkGetDeviceImageMemoryRequirementsKHR( m_device, - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_INLINE void Device::getImageSparseMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - d.vkGetDeviceImageSparseMemoryRequirementsKHR( - m_device, - reinterpret_cast( pInfo ), - pSparseMemoryRequirementCount, - reinterpret_cast( pSparseMemoryRequirements ) ); - } - -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements; - uint32_t sparseMemoryRequirementCount; - d.vkGetDeviceImageSparseMemoryRequirementsKHR( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetDeviceImageSparseMemoryRequirementsKHR( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - template < - typename SparseImageMemoryRequirements2Allocator, - typename Dispatch, - typename B, - typename std::enable_if::value, int>::type> - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d ) const - { - VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION ); - std::vector sparseMemoryRequirements( - sparseImageMemoryRequirements2Allocator ); - uint32_t sparseMemoryRequirementCount; - d.vkGetDeviceImageSparseMemoryRequirementsKHR( m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - sparseMemoryRequirements.resize( sparseMemoryRequirementCount ); - d.vkGetDeviceImageSparseMemoryRequirementsKHR( - m_device, - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount <= sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -} // namespace VULKAN_HPP_NAMESPACE -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_ggp.h b/Externals/Vulkan/Include/vulkan/vulkan_ggp.h deleted file mode 100644 index 19dfd22617..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_ggp.h +++ /dev/null @@ -1,58 +0,0 @@ -#ifndef VULKAN_GGP_H_ -#define VULKAN_GGP_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_GGP_stream_descriptor_surface 1 -#define VK_GGP_STREAM_DESCRIPTOR_SURFACE_SPEC_VERSION 1 -#define VK_GGP_STREAM_DESCRIPTOR_SURFACE_EXTENSION_NAME "VK_GGP_stream_descriptor_surface" -typedef VkFlags VkStreamDescriptorSurfaceCreateFlagsGGP; -typedef struct VkStreamDescriptorSurfaceCreateInfoGGP { - VkStructureType sType; - const void* pNext; - VkStreamDescriptorSurfaceCreateFlagsGGP flags; - GgpStreamDescriptor streamDescriptor; -} VkStreamDescriptorSurfaceCreateInfoGGP; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateStreamDescriptorSurfaceGGP)(VkInstance instance, const VkStreamDescriptorSurfaceCreateInfoGGP* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateStreamDescriptorSurfaceGGP( - VkInstance instance, - const VkStreamDescriptorSurfaceCreateInfoGGP* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - - -#define VK_GGP_frame_token 1 -#define VK_GGP_FRAME_TOKEN_SPEC_VERSION 1 -#define VK_GGP_FRAME_TOKEN_EXTENSION_NAME "VK_GGP_frame_token" -typedef struct VkPresentFrameTokenGGP { - VkStructureType sType; - const void* pNext; - GgpFrameToken frameToken; -} VkPresentFrameTokenGGP; - - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_handles.hpp b/Externals/Vulkan/Include/vulkan/vulkan_handles.hpp deleted file mode 100644 index aa81afc94a..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_handles.hpp +++ /dev/null @@ -1,14971 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_HANDLES_HPP -#define VULKAN_HANDLES_HPP - -namespace VULKAN_HPP_NAMESPACE -{ - //=================================== - //=== STRUCT forward declarations === - //=================================== - - //=== VK_VERSION_1_0 === - struct Extent2D; - struct Extent3D; - struct Offset2D; - struct Offset3D; - struct Rect2D; - struct BaseInStructure; - struct BaseOutStructure; - struct BufferMemoryBarrier; - struct DispatchIndirectCommand; - struct DrawIndexedIndirectCommand; - struct DrawIndirectCommand; - struct ImageMemoryBarrier; - struct MemoryBarrier; - struct PipelineCacheHeaderVersionOne; - struct AllocationCallbacks; - struct ApplicationInfo; - struct FormatProperties; - struct ImageFormatProperties; - struct InstanceCreateInfo; - struct MemoryHeap; - struct MemoryType; - struct PhysicalDeviceFeatures; - struct PhysicalDeviceLimits; - struct PhysicalDeviceMemoryProperties; - struct PhysicalDeviceProperties; - struct PhysicalDeviceSparseProperties; - struct QueueFamilyProperties; - struct DeviceCreateInfo; - struct DeviceQueueCreateInfo; - struct ExtensionProperties; - struct LayerProperties; - struct SubmitInfo; - struct MappedMemoryRange; - struct MemoryAllocateInfo; - struct MemoryRequirements; - struct BindSparseInfo; - struct ImageSubresource; - struct SparseBufferMemoryBindInfo; - struct SparseImageFormatProperties; - struct SparseImageMemoryBind; - struct SparseImageMemoryBindInfo; - struct SparseImageMemoryRequirements; - struct SparseImageOpaqueMemoryBindInfo; - struct SparseMemoryBind; - struct FenceCreateInfo; - struct SemaphoreCreateInfo; - struct EventCreateInfo; - struct QueryPoolCreateInfo; - struct BufferCreateInfo; - struct BufferViewCreateInfo; - struct ImageCreateInfo; - struct SubresourceLayout; - struct ComponentMapping; - struct ImageSubresourceRange; - struct ImageViewCreateInfo; - struct ShaderModuleCreateInfo; - struct PipelineCacheCreateInfo; - struct ComputePipelineCreateInfo; - struct GraphicsPipelineCreateInfo; - struct PipelineColorBlendAttachmentState; - struct PipelineColorBlendStateCreateInfo; - struct PipelineDepthStencilStateCreateInfo; - struct PipelineDynamicStateCreateInfo; - struct PipelineInputAssemblyStateCreateInfo; - struct PipelineMultisampleStateCreateInfo; - struct PipelineRasterizationStateCreateInfo; - struct PipelineShaderStageCreateInfo; - struct PipelineTessellationStateCreateInfo; - struct PipelineVertexInputStateCreateInfo; - struct PipelineViewportStateCreateInfo; - struct SpecializationInfo; - struct SpecializationMapEntry; - struct StencilOpState; - struct VertexInputAttributeDescription; - struct VertexInputBindingDescription; - struct Viewport; - struct PipelineLayoutCreateInfo; - struct PushConstantRange; - struct SamplerCreateInfo; - struct CopyDescriptorSet; - struct DescriptorBufferInfo; - struct DescriptorImageInfo; - struct DescriptorPoolCreateInfo; - struct DescriptorPoolSize; - struct DescriptorSetAllocateInfo; - struct DescriptorSetLayoutBinding; - struct DescriptorSetLayoutCreateInfo; - struct WriteDescriptorSet; - struct AttachmentDescription; - struct AttachmentReference; - struct FramebufferCreateInfo; - struct RenderPassCreateInfo; - struct SubpassDependency; - struct SubpassDescription; - struct CommandPoolCreateInfo; - struct CommandBufferAllocateInfo; - struct CommandBufferBeginInfo; - struct CommandBufferInheritanceInfo; - struct BufferCopy; - struct BufferImageCopy; - struct ClearAttachment; - union ClearColorValue; - struct ClearDepthStencilValue; - struct ClearRect; - union ClearValue; - struct ImageBlit; - struct ImageCopy; - struct ImageResolve; - struct ImageSubresourceLayers; - struct RenderPassBeginInfo; - - //=== VK_VERSION_1_1 === - struct PhysicalDeviceSubgroupProperties; - struct BindBufferMemoryInfo; - using BindBufferMemoryInfoKHR = BindBufferMemoryInfo; - struct BindImageMemoryInfo; - using BindImageMemoryInfoKHR = BindImageMemoryInfo; - struct PhysicalDevice16BitStorageFeatures; - using PhysicalDevice16BitStorageFeaturesKHR = PhysicalDevice16BitStorageFeatures; - struct MemoryDedicatedRequirements; - using MemoryDedicatedRequirementsKHR = MemoryDedicatedRequirements; - struct MemoryDedicatedAllocateInfo; - using MemoryDedicatedAllocateInfoKHR = MemoryDedicatedAllocateInfo; - struct MemoryAllocateFlagsInfo; - using MemoryAllocateFlagsInfoKHR = MemoryAllocateFlagsInfo; - struct DeviceGroupRenderPassBeginInfo; - using DeviceGroupRenderPassBeginInfoKHR = DeviceGroupRenderPassBeginInfo; - struct DeviceGroupCommandBufferBeginInfo; - using DeviceGroupCommandBufferBeginInfoKHR = DeviceGroupCommandBufferBeginInfo; - struct DeviceGroupSubmitInfo; - using DeviceGroupSubmitInfoKHR = DeviceGroupSubmitInfo; - struct DeviceGroupBindSparseInfo; - using DeviceGroupBindSparseInfoKHR = DeviceGroupBindSparseInfo; - struct BindBufferMemoryDeviceGroupInfo; - using BindBufferMemoryDeviceGroupInfoKHR = BindBufferMemoryDeviceGroupInfo; - struct BindImageMemoryDeviceGroupInfo; - using BindImageMemoryDeviceGroupInfoKHR = BindImageMemoryDeviceGroupInfo; - struct PhysicalDeviceGroupProperties; - using PhysicalDeviceGroupPropertiesKHR = PhysicalDeviceGroupProperties; - struct DeviceGroupDeviceCreateInfo; - using DeviceGroupDeviceCreateInfoKHR = DeviceGroupDeviceCreateInfo; - struct BufferMemoryRequirementsInfo2; - using BufferMemoryRequirementsInfo2KHR = BufferMemoryRequirementsInfo2; - struct ImageMemoryRequirementsInfo2; - using ImageMemoryRequirementsInfo2KHR = ImageMemoryRequirementsInfo2; - struct ImageSparseMemoryRequirementsInfo2; - using ImageSparseMemoryRequirementsInfo2KHR = ImageSparseMemoryRequirementsInfo2; - struct MemoryRequirements2; - using MemoryRequirements2KHR = MemoryRequirements2; - struct SparseImageMemoryRequirements2; - using SparseImageMemoryRequirements2KHR = SparseImageMemoryRequirements2; - struct PhysicalDeviceFeatures2; - using PhysicalDeviceFeatures2KHR = PhysicalDeviceFeatures2; - struct PhysicalDeviceProperties2; - using PhysicalDeviceProperties2KHR = PhysicalDeviceProperties2; - struct FormatProperties2; - using FormatProperties2KHR = FormatProperties2; - struct ImageFormatProperties2; - using ImageFormatProperties2KHR = ImageFormatProperties2; - struct PhysicalDeviceImageFormatInfo2; - using PhysicalDeviceImageFormatInfo2KHR = PhysicalDeviceImageFormatInfo2; - struct QueueFamilyProperties2; - using QueueFamilyProperties2KHR = QueueFamilyProperties2; - struct PhysicalDeviceMemoryProperties2; - using PhysicalDeviceMemoryProperties2KHR = PhysicalDeviceMemoryProperties2; - struct SparseImageFormatProperties2; - using SparseImageFormatProperties2KHR = SparseImageFormatProperties2; - struct PhysicalDeviceSparseImageFormatInfo2; - using PhysicalDeviceSparseImageFormatInfo2KHR = PhysicalDeviceSparseImageFormatInfo2; - struct PhysicalDevicePointClippingProperties; - using PhysicalDevicePointClippingPropertiesKHR = PhysicalDevicePointClippingProperties; - struct RenderPassInputAttachmentAspectCreateInfo; - using RenderPassInputAttachmentAspectCreateInfoKHR = RenderPassInputAttachmentAspectCreateInfo; - struct InputAttachmentAspectReference; - using InputAttachmentAspectReferenceKHR = InputAttachmentAspectReference; - struct ImageViewUsageCreateInfo; - using ImageViewUsageCreateInfoKHR = ImageViewUsageCreateInfo; - struct PipelineTessellationDomainOriginStateCreateInfo; - using PipelineTessellationDomainOriginStateCreateInfoKHR = PipelineTessellationDomainOriginStateCreateInfo; - struct RenderPassMultiviewCreateInfo; - using RenderPassMultiviewCreateInfoKHR = RenderPassMultiviewCreateInfo; - struct PhysicalDeviceMultiviewFeatures; - using PhysicalDeviceMultiviewFeaturesKHR = PhysicalDeviceMultiviewFeatures; - struct PhysicalDeviceMultiviewProperties; - using PhysicalDeviceMultiviewPropertiesKHR = PhysicalDeviceMultiviewProperties; - struct PhysicalDeviceVariablePointersFeatures; - using PhysicalDeviceVariablePointerFeatures = PhysicalDeviceVariablePointersFeatures; - using PhysicalDeviceVariablePointerFeaturesKHR = PhysicalDeviceVariablePointersFeatures; - using PhysicalDeviceVariablePointersFeaturesKHR = PhysicalDeviceVariablePointersFeatures; - struct PhysicalDeviceProtectedMemoryFeatures; - struct PhysicalDeviceProtectedMemoryProperties; - struct DeviceQueueInfo2; - struct ProtectedSubmitInfo; - struct SamplerYcbcrConversionCreateInfo; - using SamplerYcbcrConversionCreateInfoKHR = SamplerYcbcrConversionCreateInfo; - struct SamplerYcbcrConversionInfo; - using SamplerYcbcrConversionInfoKHR = SamplerYcbcrConversionInfo; - struct BindImagePlaneMemoryInfo; - using BindImagePlaneMemoryInfoKHR = BindImagePlaneMemoryInfo; - struct ImagePlaneMemoryRequirementsInfo; - using ImagePlaneMemoryRequirementsInfoKHR = ImagePlaneMemoryRequirementsInfo; - struct PhysicalDeviceSamplerYcbcrConversionFeatures; - using PhysicalDeviceSamplerYcbcrConversionFeaturesKHR = PhysicalDeviceSamplerYcbcrConversionFeatures; - struct SamplerYcbcrConversionImageFormatProperties; - using SamplerYcbcrConversionImageFormatPropertiesKHR = SamplerYcbcrConversionImageFormatProperties; - struct DescriptorUpdateTemplateEntry; - using DescriptorUpdateTemplateEntryKHR = DescriptorUpdateTemplateEntry; - struct DescriptorUpdateTemplateCreateInfo; - using DescriptorUpdateTemplateCreateInfoKHR = DescriptorUpdateTemplateCreateInfo; - struct ExternalMemoryProperties; - using ExternalMemoryPropertiesKHR = ExternalMemoryProperties; - struct PhysicalDeviceExternalImageFormatInfo; - using PhysicalDeviceExternalImageFormatInfoKHR = PhysicalDeviceExternalImageFormatInfo; - struct ExternalImageFormatProperties; - using ExternalImageFormatPropertiesKHR = ExternalImageFormatProperties; - struct PhysicalDeviceExternalBufferInfo; - using PhysicalDeviceExternalBufferInfoKHR = PhysicalDeviceExternalBufferInfo; - struct ExternalBufferProperties; - using ExternalBufferPropertiesKHR = ExternalBufferProperties; - struct PhysicalDeviceIDProperties; - using PhysicalDeviceIDPropertiesKHR = PhysicalDeviceIDProperties; - struct ExternalMemoryImageCreateInfo; - using ExternalMemoryImageCreateInfoKHR = ExternalMemoryImageCreateInfo; - struct ExternalMemoryBufferCreateInfo; - using ExternalMemoryBufferCreateInfoKHR = ExternalMemoryBufferCreateInfo; - struct ExportMemoryAllocateInfo; - using ExportMemoryAllocateInfoKHR = ExportMemoryAllocateInfo; - struct PhysicalDeviceExternalFenceInfo; - using PhysicalDeviceExternalFenceInfoKHR = PhysicalDeviceExternalFenceInfo; - struct ExternalFenceProperties; - using ExternalFencePropertiesKHR = ExternalFenceProperties; - struct ExportFenceCreateInfo; - using ExportFenceCreateInfoKHR = ExportFenceCreateInfo; - struct ExportSemaphoreCreateInfo; - using ExportSemaphoreCreateInfoKHR = ExportSemaphoreCreateInfo; - struct PhysicalDeviceExternalSemaphoreInfo; - using PhysicalDeviceExternalSemaphoreInfoKHR = PhysicalDeviceExternalSemaphoreInfo; - struct ExternalSemaphoreProperties; - using ExternalSemaphorePropertiesKHR = ExternalSemaphoreProperties; - struct PhysicalDeviceMaintenance3Properties; - using PhysicalDeviceMaintenance3PropertiesKHR = PhysicalDeviceMaintenance3Properties; - struct DescriptorSetLayoutSupport; - using DescriptorSetLayoutSupportKHR = DescriptorSetLayoutSupport; - struct PhysicalDeviceShaderDrawParametersFeatures; - using PhysicalDeviceShaderDrawParameterFeatures = PhysicalDeviceShaderDrawParametersFeatures; - - //=== VK_VERSION_1_2 === - struct PhysicalDeviceVulkan11Features; - struct PhysicalDeviceVulkan11Properties; - struct PhysicalDeviceVulkan12Features; - struct PhysicalDeviceVulkan12Properties; - struct ImageFormatListCreateInfo; - using ImageFormatListCreateInfoKHR = ImageFormatListCreateInfo; - struct RenderPassCreateInfo2; - using RenderPassCreateInfo2KHR = RenderPassCreateInfo2; - struct AttachmentDescription2; - using AttachmentDescription2KHR = AttachmentDescription2; - struct AttachmentReference2; - using AttachmentReference2KHR = AttachmentReference2; - struct SubpassDescription2; - using SubpassDescription2KHR = SubpassDescription2; - struct SubpassDependency2; - using SubpassDependency2KHR = SubpassDependency2; - struct SubpassBeginInfo; - using SubpassBeginInfoKHR = SubpassBeginInfo; - struct SubpassEndInfo; - using SubpassEndInfoKHR = SubpassEndInfo; - struct PhysicalDevice8BitStorageFeatures; - using PhysicalDevice8BitStorageFeaturesKHR = PhysicalDevice8BitStorageFeatures; - struct ConformanceVersion; - using ConformanceVersionKHR = ConformanceVersion; - struct PhysicalDeviceDriverProperties; - using PhysicalDeviceDriverPropertiesKHR = PhysicalDeviceDriverProperties; - struct PhysicalDeviceShaderAtomicInt64Features; - using PhysicalDeviceShaderAtomicInt64FeaturesKHR = PhysicalDeviceShaderAtomicInt64Features; - struct PhysicalDeviceShaderFloat16Int8Features; - using PhysicalDeviceFloat16Int8FeaturesKHR = PhysicalDeviceShaderFloat16Int8Features; - using PhysicalDeviceShaderFloat16Int8FeaturesKHR = PhysicalDeviceShaderFloat16Int8Features; - struct PhysicalDeviceFloatControlsProperties; - using PhysicalDeviceFloatControlsPropertiesKHR = PhysicalDeviceFloatControlsProperties; - struct DescriptorSetLayoutBindingFlagsCreateInfo; - using DescriptorSetLayoutBindingFlagsCreateInfoEXT = DescriptorSetLayoutBindingFlagsCreateInfo; - struct PhysicalDeviceDescriptorIndexingFeatures; - using PhysicalDeviceDescriptorIndexingFeaturesEXT = PhysicalDeviceDescriptorIndexingFeatures; - struct PhysicalDeviceDescriptorIndexingProperties; - using PhysicalDeviceDescriptorIndexingPropertiesEXT = PhysicalDeviceDescriptorIndexingProperties; - struct DescriptorSetVariableDescriptorCountAllocateInfo; - using DescriptorSetVariableDescriptorCountAllocateInfoEXT = DescriptorSetVariableDescriptorCountAllocateInfo; - struct DescriptorSetVariableDescriptorCountLayoutSupport; - using DescriptorSetVariableDescriptorCountLayoutSupportEXT = DescriptorSetVariableDescriptorCountLayoutSupport; - struct SubpassDescriptionDepthStencilResolve; - using SubpassDescriptionDepthStencilResolveKHR = SubpassDescriptionDepthStencilResolve; - struct PhysicalDeviceDepthStencilResolveProperties; - using PhysicalDeviceDepthStencilResolvePropertiesKHR = PhysicalDeviceDepthStencilResolveProperties; - struct PhysicalDeviceScalarBlockLayoutFeatures; - using PhysicalDeviceScalarBlockLayoutFeaturesEXT = PhysicalDeviceScalarBlockLayoutFeatures; - struct ImageStencilUsageCreateInfo; - using ImageStencilUsageCreateInfoEXT = ImageStencilUsageCreateInfo; - struct SamplerReductionModeCreateInfo; - using SamplerReductionModeCreateInfoEXT = SamplerReductionModeCreateInfo; - struct PhysicalDeviceSamplerFilterMinmaxProperties; - using PhysicalDeviceSamplerFilterMinmaxPropertiesEXT = PhysicalDeviceSamplerFilterMinmaxProperties; - struct PhysicalDeviceVulkanMemoryModelFeatures; - using PhysicalDeviceVulkanMemoryModelFeaturesKHR = PhysicalDeviceVulkanMemoryModelFeatures; - struct PhysicalDeviceImagelessFramebufferFeatures; - using PhysicalDeviceImagelessFramebufferFeaturesKHR = PhysicalDeviceImagelessFramebufferFeatures; - struct FramebufferAttachmentsCreateInfo; - using FramebufferAttachmentsCreateInfoKHR = FramebufferAttachmentsCreateInfo; - struct FramebufferAttachmentImageInfo; - using FramebufferAttachmentImageInfoKHR = FramebufferAttachmentImageInfo; - struct RenderPassAttachmentBeginInfo; - using RenderPassAttachmentBeginInfoKHR = RenderPassAttachmentBeginInfo; - struct PhysicalDeviceUniformBufferStandardLayoutFeatures; - using PhysicalDeviceUniformBufferStandardLayoutFeaturesKHR = PhysicalDeviceUniformBufferStandardLayoutFeatures; - struct PhysicalDeviceShaderSubgroupExtendedTypesFeatures; - using PhysicalDeviceShaderSubgroupExtendedTypesFeaturesKHR = PhysicalDeviceShaderSubgroupExtendedTypesFeatures; - struct PhysicalDeviceSeparateDepthStencilLayoutsFeatures; - using PhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR = PhysicalDeviceSeparateDepthStencilLayoutsFeatures; - struct AttachmentReferenceStencilLayout; - using AttachmentReferenceStencilLayoutKHR = AttachmentReferenceStencilLayout; - struct AttachmentDescriptionStencilLayout; - using AttachmentDescriptionStencilLayoutKHR = AttachmentDescriptionStencilLayout; - struct PhysicalDeviceHostQueryResetFeatures; - using PhysicalDeviceHostQueryResetFeaturesEXT = PhysicalDeviceHostQueryResetFeatures; - struct PhysicalDeviceTimelineSemaphoreFeatures; - using PhysicalDeviceTimelineSemaphoreFeaturesKHR = PhysicalDeviceTimelineSemaphoreFeatures; - struct PhysicalDeviceTimelineSemaphoreProperties; - using PhysicalDeviceTimelineSemaphorePropertiesKHR = PhysicalDeviceTimelineSemaphoreProperties; - struct SemaphoreTypeCreateInfo; - using SemaphoreTypeCreateInfoKHR = SemaphoreTypeCreateInfo; - struct TimelineSemaphoreSubmitInfo; - using TimelineSemaphoreSubmitInfoKHR = TimelineSemaphoreSubmitInfo; - struct SemaphoreWaitInfo; - using SemaphoreWaitInfoKHR = SemaphoreWaitInfo; - struct SemaphoreSignalInfo; - using SemaphoreSignalInfoKHR = SemaphoreSignalInfo; - struct PhysicalDeviceBufferDeviceAddressFeatures; - using PhysicalDeviceBufferDeviceAddressFeaturesKHR = PhysicalDeviceBufferDeviceAddressFeatures; - struct BufferDeviceAddressInfo; - using BufferDeviceAddressInfoEXT = BufferDeviceAddressInfo; - using BufferDeviceAddressInfoKHR = BufferDeviceAddressInfo; - struct BufferOpaqueCaptureAddressCreateInfo; - using BufferOpaqueCaptureAddressCreateInfoKHR = BufferOpaqueCaptureAddressCreateInfo; - struct MemoryOpaqueCaptureAddressAllocateInfo; - using MemoryOpaqueCaptureAddressAllocateInfoKHR = MemoryOpaqueCaptureAddressAllocateInfo; - struct DeviceMemoryOpaqueCaptureAddressInfo; - using DeviceMemoryOpaqueCaptureAddressInfoKHR = DeviceMemoryOpaqueCaptureAddressInfo; - - //=== VK_VERSION_1_3 === - struct PhysicalDeviceVulkan13Features; - struct PhysicalDeviceVulkan13Properties; - struct PipelineCreationFeedbackCreateInfo; - using PipelineCreationFeedbackCreateInfoEXT = PipelineCreationFeedbackCreateInfo; - struct PipelineCreationFeedback; - using PipelineCreationFeedbackEXT = PipelineCreationFeedback; - struct PhysicalDeviceShaderTerminateInvocationFeatures; - using PhysicalDeviceShaderTerminateInvocationFeaturesKHR = PhysicalDeviceShaderTerminateInvocationFeatures; - struct PhysicalDeviceToolProperties; - using PhysicalDeviceToolPropertiesEXT = PhysicalDeviceToolProperties; - struct PhysicalDeviceShaderDemoteToHelperInvocationFeatures; - using PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT = PhysicalDeviceShaderDemoteToHelperInvocationFeatures; - struct PhysicalDevicePrivateDataFeatures; - using PhysicalDevicePrivateDataFeaturesEXT = PhysicalDevicePrivateDataFeatures; - struct DevicePrivateDataCreateInfo; - using DevicePrivateDataCreateInfoEXT = DevicePrivateDataCreateInfo; - struct PrivateDataSlotCreateInfo; - using PrivateDataSlotCreateInfoEXT = PrivateDataSlotCreateInfo; - struct PhysicalDevicePipelineCreationCacheControlFeatures; - using PhysicalDevicePipelineCreationCacheControlFeaturesEXT = PhysicalDevicePipelineCreationCacheControlFeatures; - struct MemoryBarrier2; - using MemoryBarrier2KHR = MemoryBarrier2; - struct BufferMemoryBarrier2; - using BufferMemoryBarrier2KHR = BufferMemoryBarrier2; - struct ImageMemoryBarrier2; - using ImageMemoryBarrier2KHR = ImageMemoryBarrier2; - struct DependencyInfo; - using DependencyInfoKHR = DependencyInfo; - struct SubmitInfo2; - using SubmitInfo2KHR = SubmitInfo2; - struct SemaphoreSubmitInfo; - using SemaphoreSubmitInfoKHR = SemaphoreSubmitInfo; - struct CommandBufferSubmitInfo; - using CommandBufferSubmitInfoKHR = CommandBufferSubmitInfo; - struct PhysicalDeviceSynchronization2Features; - using PhysicalDeviceSynchronization2FeaturesKHR = PhysicalDeviceSynchronization2Features; - struct PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - using PhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesKHR = PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - struct PhysicalDeviceImageRobustnessFeatures; - using PhysicalDeviceImageRobustnessFeaturesEXT = PhysicalDeviceImageRobustnessFeatures; - struct CopyBufferInfo2; - using CopyBufferInfo2KHR = CopyBufferInfo2; - struct CopyImageInfo2; - using CopyImageInfo2KHR = CopyImageInfo2; - struct CopyBufferToImageInfo2; - using CopyBufferToImageInfo2KHR = CopyBufferToImageInfo2; - struct CopyImageToBufferInfo2; - using CopyImageToBufferInfo2KHR = CopyImageToBufferInfo2; - struct BlitImageInfo2; - using BlitImageInfo2KHR = BlitImageInfo2; - struct ResolveImageInfo2; - using ResolveImageInfo2KHR = ResolveImageInfo2; - struct BufferCopy2; - using BufferCopy2KHR = BufferCopy2; - struct ImageCopy2; - using ImageCopy2KHR = ImageCopy2; - struct ImageBlit2; - using ImageBlit2KHR = ImageBlit2; - struct BufferImageCopy2; - using BufferImageCopy2KHR = BufferImageCopy2; - struct ImageResolve2; - using ImageResolve2KHR = ImageResolve2; - struct PhysicalDeviceSubgroupSizeControlFeatures; - using PhysicalDeviceSubgroupSizeControlFeaturesEXT = PhysicalDeviceSubgroupSizeControlFeatures; - struct PhysicalDeviceSubgroupSizeControlProperties; - using PhysicalDeviceSubgroupSizeControlPropertiesEXT = PhysicalDeviceSubgroupSizeControlProperties; - struct PipelineShaderStageRequiredSubgroupSizeCreateInfo; - using PipelineShaderStageRequiredSubgroupSizeCreateInfoEXT = PipelineShaderStageRequiredSubgroupSizeCreateInfo; - struct PhysicalDeviceInlineUniformBlockFeatures; - using PhysicalDeviceInlineUniformBlockFeaturesEXT = PhysicalDeviceInlineUniformBlockFeatures; - struct PhysicalDeviceInlineUniformBlockProperties; - using PhysicalDeviceInlineUniformBlockPropertiesEXT = PhysicalDeviceInlineUniformBlockProperties; - struct WriteDescriptorSetInlineUniformBlock; - using WriteDescriptorSetInlineUniformBlockEXT = WriteDescriptorSetInlineUniformBlock; - struct DescriptorPoolInlineUniformBlockCreateInfo; - using DescriptorPoolInlineUniformBlockCreateInfoEXT = DescriptorPoolInlineUniformBlockCreateInfo; - struct PhysicalDeviceTextureCompressionASTCHDRFeatures; - using PhysicalDeviceTextureCompressionASTCHDRFeaturesEXT = PhysicalDeviceTextureCompressionASTCHDRFeatures; - struct RenderingInfo; - using RenderingInfoKHR = RenderingInfo; - struct RenderingAttachmentInfo; - using RenderingAttachmentInfoKHR = RenderingAttachmentInfo; - struct PipelineRenderingCreateInfo; - using PipelineRenderingCreateInfoKHR = PipelineRenderingCreateInfo; - struct PhysicalDeviceDynamicRenderingFeatures; - using PhysicalDeviceDynamicRenderingFeaturesKHR = PhysicalDeviceDynamicRenderingFeatures; - struct CommandBufferInheritanceRenderingInfo; - using CommandBufferInheritanceRenderingInfoKHR = CommandBufferInheritanceRenderingInfo; - struct PhysicalDeviceShaderIntegerDotProductFeatures; - using PhysicalDeviceShaderIntegerDotProductFeaturesKHR = PhysicalDeviceShaderIntegerDotProductFeatures; - struct PhysicalDeviceShaderIntegerDotProductProperties; - using PhysicalDeviceShaderIntegerDotProductPropertiesKHR = PhysicalDeviceShaderIntegerDotProductProperties; - struct PhysicalDeviceTexelBufferAlignmentProperties; - using PhysicalDeviceTexelBufferAlignmentPropertiesEXT = PhysicalDeviceTexelBufferAlignmentProperties; - struct FormatProperties3; - using FormatProperties3KHR = FormatProperties3; - struct PhysicalDeviceMaintenance4Features; - using PhysicalDeviceMaintenance4FeaturesKHR = PhysicalDeviceMaintenance4Features; - struct PhysicalDeviceMaintenance4Properties; - using PhysicalDeviceMaintenance4PropertiesKHR = PhysicalDeviceMaintenance4Properties; - struct DeviceBufferMemoryRequirements; - using DeviceBufferMemoryRequirementsKHR = DeviceBufferMemoryRequirements; - struct DeviceImageMemoryRequirements; - using DeviceImageMemoryRequirementsKHR = DeviceImageMemoryRequirements; - - //=== VK_KHR_surface === - struct SurfaceCapabilitiesKHR; - struct SurfaceFormatKHR; - - //=== VK_KHR_swapchain === - struct SwapchainCreateInfoKHR; - struct PresentInfoKHR; - struct ImageSwapchainCreateInfoKHR; - struct BindImageMemorySwapchainInfoKHR; - struct AcquireNextImageInfoKHR; - struct DeviceGroupPresentCapabilitiesKHR; - struct DeviceGroupPresentInfoKHR; - struct DeviceGroupSwapchainCreateInfoKHR; - - //=== VK_KHR_display === - struct DisplayModeCreateInfoKHR; - struct DisplayModeParametersKHR; - struct DisplayModePropertiesKHR; - struct DisplayPlaneCapabilitiesKHR; - struct DisplayPlanePropertiesKHR; - struct DisplayPropertiesKHR; - struct DisplaySurfaceCreateInfoKHR; - - //=== VK_KHR_display_swapchain === - struct DisplayPresentInfoKHR; - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - struct XlibSurfaceCreateInfoKHR; -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - struct XcbSurfaceCreateInfoKHR; -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - struct WaylandSurfaceCreateInfoKHR; -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - struct AndroidSurfaceCreateInfoKHR; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - struct Win32SurfaceCreateInfoKHR; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - struct DebugReportCallbackCreateInfoEXT; - - //=== VK_AMD_rasterization_order === - struct PipelineRasterizationStateRasterizationOrderAMD; - - //=== VK_EXT_debug_marker === - struct DebugMarkerObjectNameInfoEXT; - struct DebugMarkerObjectTagInfoEXT; - struct DebugMarkerMarkerInfoEXT; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - struct QueueFamilyQueryResultStatusProperties2KHR; - struct VideoQueueFamilyProperties2KHR; - struct VideoProfileKHR; - struct VideoProfilesKHR; - struct VideoCapabilitiesKHR; - struct PhysicalDeviceVideoFormatInfoKHR; - struct VideoFormatPropertiesKHR; - struct VideoPictureResourceKHR; - struct VideoReferenceSlotKHR; - struct VideoGetMemoryPropertiesKHR; - struct VideoBindMemoryKHR; - struct VideoSessionCreateInfoKHR; - struct VideoSessionParametersCreateInfoKHR; - struct VideoSessionParametersUpdateInfoKHR; - struct VideoBeginCodingInfoKHR; - struct VideoEndCodingInfoKHR; - struct VideoCodingControlInfoKHR; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - struct VideoDecodeInfoKHR; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_dedicated_allocation === - struct DedicatedAllocationImageCreateInfoNV; - struct DedicatedAllocationBufferCreateInfoNV; - struct DedicatedAllocationMemoryAllocateInfoNV; - - //=== VK_EXT_transform_feedback === - struct PhysicalDeviceTransformFeedbackFeaturesEXT; - struct PhysicalDeviceTransformFeedbackPropertiesEXT; - struct PipelineRasterizationStateStreamCreateInfoEXT; - - //=== VK_NVX_binary_import === - struct CuModuleCreateInfoNVX; - struct CuFunctionCreateInfoNVX; - struct CuLaunchInfoNVX; - - //=== VK_NVX_image_view_handle === - struct ImageViewHandleInfoNVX; - struct ImageViewAddressPropertiesNVX; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h264 === - struct VideoEncodeH264CapabilitiesEXT; - struct VideoEncodeH264SessionCreateInfoEXT; - struct VideoEncodeH264SessionParametersCreateInfoEXT; - struct VideoEncodeH264SessionParametersAddInfoEXT; - struct VideoEncodeH264VclFrameInfoEXT; - struct VideoEncodeH264EmitPictureParametersEXT; - struct VideoEncodeH264DpbSlotInfoEXT; - struct VideoEncodeH264NaluSliceEXT; - struct VideoEncodeH264ProfileEXT; - struct VideoEncodeH264RateControlInfoEXT; - struct VideoEncodeH264RateControlLayerInfoEXT; - struct VideoEncodeH264QpEXT; - struct VideoEncodeH264FrameSizeEXT; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_encode_h265 === - struct VideoEncodeH265CapabilitiesEXT; - struct VideoEncodeH265SessionCreateInfoEXT; - struct VideoEncodeH265SessionParametersCreateInfoEXT; - struct VideoEncodeH265SessionParametersAddInfoEXT; - struct VideoEncodeH265VclFrameInfoEXT; - struct VideoEncodeH265EmitPictureParametersEXT; - struct VideoEncodeH265DpbSlotInfoEXT; - struct VideoEncodeH265NaluSliceEXT; - struct VideoEncodeH265ProfileEXT; - struct VideoEncodeH265ReferenceListsEXT; - struct VideoEncodeH265RateControlInfoEXT; - struct VideoEncodeH265RateControlLayerInfoEXT; - struct VideoEncodeH265QpEXT; - struct VideoEncodeH265FrameSizeEXT; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h264 === - struct VideoDecodeH264ProfileEXT; - struct VideoDecodeH264CapabilitiesEXT; - struct VideoDecodeH264SessionCreateInfoEXT; - struct VideoDecodeH264SessionParametersCreateInfoEXT; - struct VideoDecodeH264SessionParametersAddInfoEXT; - struct VideoDecodeH264PictureInfoEXT; - struct VideoDecodeH264MvcEXT; - struct VideoDecodeH264DpbSlotInfoEXT; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_AMD_texture_gather_bias_lod === - struct TextureLODGatherFormatPropertiesAMD; - - //=== VK_AMD_shader_info === - struct ShaderResourceUsageAMD; - struct ShaderStatisticsInfoAMD; - - //=== VK_KHR_dynamic_rendering === - struct RenderingFragmentShadingRateAttachmentInfoKHR; - struct RenderingFragmentDensityMapAttachmentInfoEXT; - struct AttachmentSampleCountInfoAMD; - using AttachmentSampleCountInfoNV = AttachmentSampleCountInfoAMD; - struct MultiviewPerViewAttributesInfoNVX; - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - struct StreamDescriptorSurfaceCreateInfoGGP; -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_corner_sampled_image === - struct PhysicalDeviceCornerSampledImageFeaturesNV; - - //=== VK_NV_external_memory_capabilities === - struct ExternalImageFormatPropertiesNV; - - //=== VK_NV_external_memory === - struct ExternalMemoryImageCreateInfoNV; - struct ExportMemoryAllocateInfoNV; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - struct ImportMemoryWin32HandleInfoNV; - struct ExportMemoryWin32HandleInfoNV; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_win32_keyed_mutex === - struct Win32KeyedMutexAcquireReleaseInfoNV; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_validation_flags === - struct ValidationFlagsEXT; - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - struct ViSurfaceCreateInfoNN; -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_EXT_astc_decode_mode === - struct ImageViewASTCDecodeModeEXT; - struct PhysicalDeviceASTCDecodeFeaturesEXT; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - struct ImportMemoryWin32HandleInfoKHR; - struct ExportMemoryWin32HandleInfoKHR; - struct MemoryWin32HandlePropertiesKHR; - struct MemoryGetWin32HandleInfoKHR; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - struct ImportMemoryFdInfoKHR; - struct MemoryFdPropertiesKHR; - struct MemoryGetFdInfoKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_keyed_mutex === - struct Win32KeyedMutexAcquireReleaseInfoKHR; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - struct ImportSemaphoreWin32HandleInfoKHR; - struct ExportSemaphoreWin32HandleInfoKHR; - struct D3D12FenceSubmitInfoKHR; - struct SemaphoreGetWin32HandleInfoKHR; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - struct ImportSemaphoreFdInfoKHR; - struct SemaphoreGetFdInfoKHR; - - //=== VK_KHR_push_descriptor === - struct PhysicalDevicePushDescriptorPropertiesKHR; - - //=== VK_EXT_conditional_rendering === - struct ConditionalRenderingBeginInfoEXT; - struct PhysicalDeviceConditionalRenderingFeaturesEXT; - struct CommandBufferInheritanceConditionalRenderingInfoEXT; - - //=== VK_KHR_incremental_present === - struct PresentRegionsKHR; - struct PresentRegionKHR; - struct RectLayerKHR; - - //=== VK_NV_clip_space_w_scaling === - struct ViewportWScalingNV; - struct PipelineViewportWScalingStateCreateInfoNV; - - //=== VK_EXT_display_surface_counter === - struct SurfaceCapabilities2EXT; - - //=== VK_EXT_display_control === - struct DisplayPowerInfoEXT; - struct DeviceEventInfoEXT; - struct DisplayEventInfoEXT; - struct SwapchainCounterCreateInfoEXT; - - //=== VK_GOOGLE_display_timing === - struct RefreshCycleDurationGOOGLE; - struct PastPresentationTimingGOOGLE; - struct PresentTimesInfoGOOGLE; - struct PresentTimeGOOGLE; - - //=== VK_NVX_multiview_per_view_attributes === - struct PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX; - - //=== VK_NV_viewport_swizzle === - struct ViewportSwizzleNV; - struct PipelineViewportSwizzleStateCreateInfoNV; - - //=== VK_EXT_discard_rectangles === - struct PhysicalDeviceDiscardRectanglePropertiesEXT; - struct PipelineDiscardRectangleStateCreateInfoEXT; - - //=== VK_EXT_conservative_rasterization === - struct PhysicalDeviceConservativeRasterizationPropertiesEXT; - struct PipelineRasterizationConservativeStateCreateInfoEXT; - - //=== VK_EXT_depth_clip_enable === - struct PhysicalDeviceDepthClipEnableFeaturesEXT; - struct PipelineRasterizationDepthClipStateCreateInfoEXT; - - //=== VK_EXT_hdr_metadata === - struct HdrMetadataEXT; - struct XYColorEXT; - - //=== VK_KHR_shared_presentable_image === - struct SharedPresentSurfaceCapabilitiesKHR; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - struct ImportFenceWin32HandleInfoKHR; - struct ExportFenceWin32HandleInfoKHR; - struct FenceGetWin32HandleInfoKHR; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - struct ImportFenceFdInfoKHR; - struct FenceGetFdInfoKHR; - - //=== VK_KHR_performance_query === - struct PhysicalDevicePerformanceQueryFeaturesKHR; - struct PhysicalDevicePerformanceQueryPropertiesKHR; - struct PerformanceCounterKHR; - struct PerformanceCounterDescriptionKHR; - struct QueryPoolPerformanceCreateInfoKHR; - union PerformanceCounterResultKHR; - struct AcquireProfilingLockInfoKHR; - struct PerformanceQuerySubmitInfoKHR; - - //=== VK_KHR_get_surface_capabilities2 === - struct PhysicalDeviceSurfaceInfo2KHR; - struct SurfaceCapabilities2KHR; - struct SurfaceFormat2KHR; - - //=== VK_KHR_get_display_properties2 === - struct DisplayProperties2KHR; - struct DisplayPlaneProperties2KHR; - struct DisplayModeProperties2KHR; - struct DisplayPlaneInfo2KHR; - struct DisplayPlaneCapabilities2KHR; - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - struct IOSSurfaceCreateInfoMVK; -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - struct MacOSSurfaceCreateInfoMVK; -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - struct DebugUtilsLabelEXT; - struct DebugUtilsMessengerCallbackDataEXT; - struct DebugUtilsMessengerCreateInfoEXT; - struct DebugUtilsObjectNameInfoEXT; - struct DebugUtilsObjectTagInfoEXT; - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - struct AndroidHardwareBufferUsageANDROID; - struct AndroidHardwareBufferPropertiesANDROID; - struct AndroidHardwareBufferFormatPropertiesANDROID; - struct ImportAndroidHardwareBufferInfoANDROID; - struct MemoryGetAndroidHardwareBufferInfoANDROID; - struct ExternalFormatANDROID; - struct AndroidHardwareBufferFormatProperties2ANDROID; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - struct SampleLocationEXT; - struct SampleLocationsInfoEXT; - struct AttachmentSampleLocationsEXT; - struct SubpassSampleLocationsEXT; - struct RenderPassSampleLocationsBeginInfoEXT; - struct PipelineSampleLocationsStateCreateInfoEXT; - struct PhysicalDeviceSampleLocationsPropertiesEXT; - struct MultisamplePropertiesEXT; - - //=== VK_EXT_blend_operation_advanced === - struct PhysicalDeviceBlendOperationAdvancedFeaturesEXT; - struct PhysicalDeviceBlendOperationAdvancedPropertiesEXT; - struct PipelineColorBlendAdvancedStateCreateInfoEXT; - - //=== VK_NV_fragment_coverage_to_color === - struct PipelineCoverageToColorStateCreateInfoNV; - - //=== VK_KHR_acceleration_structure === - union DeviceOrHostAddressKHR; - union DeviceOrHostAddressConstKHR; - struct AccelerationStructureBuildRangeInfoKHR; - struct AabbPositionsKHR; - using AabbPositionsNV = AabbPositionsKHR; - struct AccelerationStructureGeometryTrianglesDataKHR; - struct TransformMatrixKHR; - using TransformMatrixNV = TransformMatrixKHR; - struct AccelerationStructureBuildGeometryInfoKHR; - struct AccelerationStructureGeometryAabbsDataKHR; - struct AccelerationStructureInstanceKHR; - using AccelerationStructureInstanceNV = AccelerationStructureInstanceKHR; - struct AccelerationStructureGeometryInstancesDataKHR; - union AccelerationStructureGeometryDataKHR; - struct AccelerationStructureGeometryKHR; - struct AccelerationStructureCreateInfoKHR; - struct WriteDescriptorSetAccelerationStructureKHR; - struct PhysicalDeviceAccelerationStructureFeaturesKHR; - struct PhysicalDeviceAccelerationStructurePropertiesKHR; - struct AccelerationStructureDeviceAddressInfoKHR; - struct AccelerationStructureVersionInfoKHR; - struct CopyAccelerationStructureToMemoryInfoKHR; - struct CopyMemoryToAccelerationStructureInfoKHR; - struct CopyAccelerationStructureInfoKHR; - struct AccelerationStructureBuildSizesInfoKHR; - - //=== VK_NV_framebuffer_mixed_samples === - struct PipelineCoverageModulationStateCreateInfoNV; - - //=== VK_NV_shader_sm_builtins === - struct PhysicalDeviceShaderSMBuiltinsPropertiesNV; - struct PhysicalDeviceShaderSMBuiltinsFeaturesNV; - - //=== VK_EXT_image_drm_format_modifier === - struct DrmFormatModifierPropertiesListEXT; - struct DrmFormatModifierPropertiesEXT; - struct PhysicalDeviceImageDrmFormatModifierInfoEXT; - struct ImageDrmFormatModifierListCreateInfoEXT; - struct ImageDrmFormatModifierExplicitCreateInfoEXT; - struct ImageDrmFormatModifierPropertiesEXT; - struct DrmFormatModifierPropertiesList2EXT; - struct DrmFormatModifierProperties2EXT; - - //=== VK_EXT_validation_cache === - struct ValidationCacheCreateInfoEXT; - struct ShaderModuleValidationCacheCreateInfoEXT; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_portability_subset === - struct PhysicalDevicePortabilitySubsetFeaturesKHR; - struct PhysicalDevicePortabilitySubsetPropertiesKHR; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_shading_rate_image === - struct ShadingRatePaletteNV; - struct PipelineViewportShadingRateImageStateCreateInfoNV; - struct PhysicalDeviceShadingRateImageFeaturesNV; - struct PhysicalDeviceShadingRateImagePropertiesNV; - struct CoarseSampleLocationNV; - struct CoarseSampleOrderCustomNV; - struct PipelineViewportCoarseSampleOrderStateCreateInfoNV; - - //=== VK_NV_ray_tracing === - struct RayTracingShaderGroupCreateInfoNV; - struct RayTracingPipelineCreateInfoNV; - struct GeometryTrianglesNV; - struct GeometryAABBNV; - struct GeometryDataNV; - struct GeometryNV; - struct AccelerationStructureInfoNV; - struct AccelerationStructureCreateInfoNV; - struct BindAccelerationStructureMemoryInfoNV; - struct WriteDescriptorSetAccelerationStructureNV; - struct AccelerationStructureMemoryRequirementsInfoNV; - struct PhysicalDeviceRayTracingPropertiesNV; - - //=== VK_NV_representative_fragment_test === - struct PhysicalDeviceRepresentativeFragmentTestFeaturesNV; - struct PipelineRepresentativeFragmentTestStateCreateInfoNV; - - //=== VK_EXT_filter_cubic === - struct PhysicalDeviceImageViewImageFormatInfoEXT; - struct FilterCubicImageViewImageFormatPropertiesEXT; - - //=== VK_EXT_external_memory_host === - struct ImportMemoryHostPointerInfoEXT; - struct MemoryHostPointerPropertiesEXT; - struct PhysicalDeviceExternalMemoryHostPropertiesEXT; - - //=== VK_KHR_shader_clock === - struct PhysicalDeviceShaderClockFeaturesKHR; - - //=== VK_AMD_pipeline_compiler_control === - struct PipelineCompilerControlCreateInfoAMD; - - //=== VK_EXT_calibrated_timestamps === - struct CalibratedTimestampInfoEXT; - - //=== VK_AMD_shader_core_properties === - struct PhysicalDeviceShaderCorePropertiesAMD; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_EXT_video_decode_h265 === - struct VideoDecodeH265ProfileEXT; - struct VideoDecodeH265CapabilitiesEXT; - struct VideoDecodeH265SessionCreateInfoEXT; - struct VideoDecodeH265SessionParametersCreateInfoEXT; - struct VideoDecodeH265SessionParametersAddInfoEXT; - struct VideoDecodeH265PictureInfoEXT; - struct VideoDecodeH265DpbSlotInfoEXT; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_global_priority === - struct DeviceQueueGlobalPriorityCreateInfoKHR; - using DeviceQueueGlobalPriorityCreateInfoEXT = DeviceQueueGlobalPriorityCreateInfoKHR; - struct PhysicalDeviceGlobalPriorityQueryFeaturesKHR; - using PhysicalDeviceGlobalPriorityQueryFeaturesEXT = PhysicalDeviceGlobalPriorityQueryFeaturesKHR; - struct QueueFamilyGlobalPriorityPropertiesKHR; - using QueueFamilyGlobalPriorityPropertiesEXT = QueueFamilyGlobalPriorityPropertiesKHR; - - //=== VK_AMD_memory_overallocation_behavior === - struct DeviceMemoryOverallocationCreateInfoAMD; - - //=== VK_EXT_vertex_attribute_divisor === - struct PhysicalDeviceVertexAttributeDivisorPropertiesEXT; - struct VertexInputBindingDivisorDescriptionEXT; - struct PipelineVertexInputDivisorStateCreateInfoEXT; - struct PhysicalDeviceVertexAttributeDivisorFeaturesEXT; - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_frame_token === - struct PresentFrameTokenGGP; -#endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_compute_shader_derivatives === - struct PhysicalDeviceComputeShaderDerivativesFeaturesNV; - - //=== VK_NV_mesh_shader === - struct PhysicalDeviceMeshShaderFeaturesNV; - struct PhysicalDeviceMeshShaderPropertiesNV; - struct DrawMeshTasksIndirectCommandNV; - - //=== VK_NV_fragment_shader_barycentric === - struct PhysicalDeviceFragmentShaderBarycentricFeaturesNV; - - //=== VK_NV_shader_image_footprint === - struct PhysicalDeviceShaderImageFootprintFeaturesNV; - - //=== VK_NV_scissor_exclusive === - struct PipelineViewportExclusiveScissorStateCreateInfoNV; - struct PhysicalDeviceExclusiveScissorFeaturesNV; - - //=== VK_NV_device_diagnostic_checkpoints === - struct QueueFamilyCheckpointPropertiesNV; - struct CheckpointDataNV; - - //=== VK_INTEL_shader_integer_functions2 === - struct PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL; - - //=== VK_INTEL_performance_query === - union PerformanceValueDataINTEL; - struct PerformanceValueINTEL; - struct InitializePerformanceApiInfoINTEL; - struct QueryPoolPerformanceQueryCreateInfoINTEL; - using QueryPoolCreateInfoINTEL = QueryPoolPerformanceQueryCreateInfoINTEL; - struct PerformanceMarkerInfoINTEL; - struct PerformanceStreamMarkerInfoINTEL; - struct PerformanceOverrideInfoINTEL; - struct PerformanceConfigurationAcquireInfoINTEL; - - //=== VK_EXT_pci_bus_info === - struct PhysicalDevicePCIBusInfoPropertiesEXT; - - //=== VK_AMD_display_native_hdr === - struct DisplayNativeHdrSurfaceCapabilitiesAMD; - struct SwapchainDisplayNativeHdrCreateInfoAMD; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - struct ImagePipeSurfaceCreateInfoFUCHSIA; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - struct MetalSurfaceCreateInfoEXT; -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_EXT_fragment_density_map === - struct PhysicalDeviceFragmentDensityMapFeaturesEXT; - struct PhysicalDeviceFragmentDensityMapPropertiesEXT; - struct RenderPassFragmentDensityMapCreateInfoEXT; - - //=== VK_KHR_fragment_shading_rate === - struct FragmentShadingRateAttachmentInfoKHR; - struct PipelineFragmentShadingRateStateCreateInfoKHR; - struct PhysicalDeviceFragmentShadingRateFeaturesKHR; - struct PhysicalDeviceFragmentShadingRatePropertiesKHR; - struct PhysicalDeviceFragmentShadingRateKHR; - - //=== VK_AMD_shader_core_properties2 === - struct PhysicalDeviceShaderCoreProperties2AMD; - - //=== VK_AMD_device_coherent_memory === - struct PhysicalDeviceCoherentMemoryFeaturesAMD; - - //=== VK_EXT_shader_image_atomic_int64 === - struct PhysicalDeviceShaderImageAtomicInt64FeaturesEXT; - - //=== VK_EXT_memory_budget === - struct PhysicalDeviceMemoryBudgetPropertiesEXT; - - //=== VK_EXT_memory_priority === - struct PhysicalDeviceMemoryPriorityFeaturesEXT; - struct MemoryPriorityAllocateInfoEXT; - - //=== VK_KHR_surface_protected_capabilities === - struct SurfaceProtectedCapabilitiesKHR; - - //=== VK_NV_dedicated_allocation_image_aliasing === - struct PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV; - - //=== VK_EXT_buffer_device_address === - struct PhysicalDeviceBufferDeviceAddressFeaturesEXT; - using PhysicalDeviceBufferAddressFeaturesEXT = PhysicalDeviceBufferDeviceAddressFeaturesEXT; - struct BufferDeviceAddressCreateInfoEXT; - - //=== VK_EXT_validation_features === - struct ValidationFeaturesEXT; - - //=== VK_KHR_present_wait === - struct PhysicalDevicePresentWaitFeaturesKHR; - - //=== VK_NV_cooperative_matrix === - struct CooperativeMatrixPropertiesNV; - struct PhysicalDeviceCooperativeMatrixFeaturesNV; - struct PhysicalDeviceCooperativeMatrixPropertiesNV; - - //=== VK_NV_coverage_reduction_mode === - struct PhysicalDeviceCoverageReductionModeFeaturesNV; - struct PipelineCoverageReductionStateCreateInfoNV; - struct FramebufferMixedSamplesCombinationNV; - - //=== VK_EXT_fragment_shader_interlock === - struct PhysicalDeviceFragmentShaderInterlockFeaturesEXT; - - //=== VK_EXT_ycbcr_image_arrays === - struct PhysicalDeviceYcbcrImageArraysFeaturesEXT; - - //=== VK_EXT_provoking_vertex === - struct PhysicalDeviceProvokingVertexFeaturesEXT; - struct PhysicalDeviceProvokingVertexPropertiesEXT; - struct PipelineRasterizationProvokingVertexStateCreateInfoEXT; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - struct SurfaceFullScreenExclusiveInfoEXT; - struct SurfaceCapabilitiesFullScreenExclusiveEXT; - struct SurfaceFullScreenExclusiveWin32InfoEXT; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - struct HeadlessSurfaceCreateInfoEXT; - - //=== VK_EXT_line_rasterization === - struct PhysicalDeviceLineRasterizationFeaturesEXT; - struct PhysicalDeviceLineRasterizationPropertiesEXT; - struct PipelineRasterizationLineStateCreateInfoEXT; - - //=== VK_EXT_shader_atomic_float === - struct PhysicalDeviceShaderAtomicFloatFeaturesEXT; - - //=== VK_EXT_index_type_uint8 === - struct PhysicalDeviceIndexTypeUint8FeaturesEXT; - - //=== VK_EXT_extended_dynamic_state === - struct PhysicalDeviceExtendedDynamicStateFeaturesEXT; - - //=== VK_KHR_pipeline_executable_properties === - struct PhysicalDevicePipelineExecutablePropertiesFeaturesKHR; - struct PipelineInfoKHR; - struct PipelineExecutablePropertiesKHR; - struct PipelineExecutableInfoKHR; - union PipelineExecutableStatisticValueKHR; - struct PipelineExecutableStatisticKHR; - struct PipelineExecutableInternalRepresentationKHR; - - //=== VK_EXT_shader_atomic_float2 === - struct PhysicalDeviceShaderAtomicFloat2FeaturesEXT; - - //=== VK_NV_device_generated_commands === - struct PhysicalDeviceDeviceGeneratedCommandsPropertiesNV; - struct PhysicalDeviceDeviceGeneratedCommandsFeaturesNV; - struct GraphicsShaderGroupCreateInfoNV; - struct GraphicsPipelineShaderGroupsCreateInfoNV; - struct BindShaderGroupIndirectCommandNV; - struct BindIndexBufferIndirectCommandNV; - struct BindVertexBufferIndirectCommandNV; - struct SetStateFlagsIndirectCommandNV; - struct IndirectCommandsStreamNV; - struct IndirectCommandsLayoutTokenNV; - struct IndirectCommandsLayoutCreateInfoNV; - struct GeneratedCommandsInfoNV; - struct GeneratedCommandsMemoryRequirementsInfoNV; - - //=== VK_NV_inherited_viewport_scissor === - struct PhysicalDeviceInheritedViewportScissorFeaturesNV; - struct CommandBufferInheritanceViewportScissorInfoNV; - - //=== VK_EXT_texel_buffer_alignment === - struct PhysicalDeviceTexelBufferAlignmentFeaturesEXT; - - //=== VK_QCOM_render_pass_transform === - struct RenderPassTransformBeginInfoQCOM; - struct CommandBufferInheritanceRenderPassTransformInfoQCOM; - - //=== VK_EXT_device_memory_report === - struct PhysicalDeviceDeviceMemoryReportFeaturesEXT; - struct DeviceDeviceMemoryReportCreateInfoEXT; - struct DeviceMemoryReportCallbackDataEXT; - - //=== VK_EXT_robustness2 === - struct PhysicalDeviceRobustness2FeaturesEXT; - struct PhysicalDeviceRobustness2PropertiesEXT; - - //=== VK_EXT_custom_border_color === - struct SamplerCustomBorderColorCreateInfoEXT; - struct PhysicalDeviceCustomBorderColorPropertiesEXT; - struct PhysicalDeviceCustomBorderColorFeaturesEXT; - - //=== VK_KHR_pipeline_library === - struct PipelineLibraryCreateInfoKHR; - - //=== VK_KHR_present_id === - struct PresentIdKHR; - struct PhysicalDevicePresentIdFeaturesKHR; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - struct VideoEncodeInfoKHR; - struct VideoEncodeRateControlInfoKHR; - struct VideoEncodeRateControlLayerInfoKHR; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_device_diagnostics_config === - struct PhysicalDeviceDiagnosticsConfigFeaturesNV; - struct DeviceDiagnosticsConfigCreateInfoNV; - - //=== VK_KHR_synchronization2 === - struct QueueFamilyCheckpointProperties2NV; - struct CheckpointData2NV; - - //=== VK_KHR_shader_subgroup_uniform_control_flow === - struct PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR; - - //=== VK_NV_fragment_shading_rate_enums === - struct PhysicalDeviceFragmentShadingRateEnumsFeaturesNV; - struct PhysicalDeviceFragmentShadingRateEnumsPropertiesNV; - struct PipelineFragmentShadingRateEnumStateCreateInfoNV; - - //=== VK_NV_ray_tracing_motion_blur === - struct AccelerationStructureGeometryMotionTrianglesDataNV; - struct AccelerationStructureMotionInfoNV; - struct AccelerationStructureMotionInstanceNV; - union AccelerationStructureMotionInstanceDataNV; - struct AccelerationStructureMatrixMotionInstanceNV; - struct AccelerationStructureSRTMotionInstanceNV; - struct SRTDataNV; - struct PhysicalDeviceRayTracingMotionBlurFeaturesNV; - - //=== VK_EXT_ycbcr_2plane_444_formats === - struct PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT; - - //=== VK_EXT_fragment_density_map2 === - struct PhysicalDeviceFragmentDensityMap2FeaturesEXT; - struct PhysicalDeviceFragmentDensityMap2PropertiesEXT; - - //=== VK_QCOM_rotated_copy_commands === - struct CopyCommandTransformInfoQCOM; - - //=== VK_KHR_workgroup_memory_explicit_layout === - struct PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR; - - //=== VK_EXT_4444_formats === - struct PhysicalDevice4444FormatsFeaturesEXT; - - //=== VK_ARM_rasterization_order_attachment_access === - struct PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM; - - //=== VK_EXT_rgba10x6_formats === - struct PhysicalDeviceRGBA10X6FormatsFeaturesEXT; - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - struct DirectFBSurfaceCreateInfoEXT; -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - struct RayTracingShaderGroupCreateInfoKHR; - struct RayTracingPipelineCreateInfoKHR; - struct PhysicalDeviceRayTracingPipelineFeaturesKHR; - struct PhysicalDeviceRayTracingPipelinePropertiesKHR; - struct StridedDeviceAddressRegionKHR; - struct TraceRaysIndirectCommandKHR; - struct RayTracingPipelineInterfaceCreateInfoKHR; - - //=== VK_KHR_ray_query === - struct PhysicalDeviceRayQueryFeaturesKHR; - - //=== VK_VALVE_mutable_descriptor_type === - struct PhysicalDeviceMutableDescriptorTypeFeaturesVALVE; - struct MutableDescriptorTypeListVALVE; - struct MutableDescriptorTypeCreateInfoVALVE; - - //=== VK_EXT_vertex_input_dynamic_state === - struct PhysicalDeviceVertexInputDynamicStateFeaturesEXT; - struct VertexInputBindingDescription2EXT; - struct VertexInputAttributeDescription2EXT; - - //=== VK_EXT_physical_device_drm === - struct PhysicalDeviceDrmPropertiesEXT; - - //=== VK_EXT_depth_clip_control === - struct PhysicalDeviceDepthClipControlFeaturesEXT; - struct PipelineViewportDepthClipControlCreateInfoEXT; - - //=== VK_EXT_primitive_topology_list_restart === - struct PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - struct ImportMemoryZirconHandleInfoFUCHSIA; - struct MemoryZirconHandlePropertiesFUCHSIA; - struct MemoryGetZirconHandleInfoFUCHSIA; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - struct ImportSemaphoreZirconHandleInfoFUCHSIA; - struct SemaphoreGetZirconHandleInfoFUCHSIA; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - struct BufferCollectionCreateInfoFUCHSIA; - struct ImportMemoryBufferCollectionFUCHSIA; - struct BufferCollectionImageCreateInfoFUCHSIA; - struct BufferConstraintsInfoFUCHSIA; - struct BufferCollectionBufferCreateInfoFUCHSIA; - struct BufferCollectionPropertiesFUCHSIA; - struct SysmemColorSpaceFUCHSIA; - struct ImageConstraintsInfoFUCHSIA; - struct ImageFormatConstraintsInfoFUCHSIA; - struct BufferCollectionConstraintsInfoFUCHSIA; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - struct SubpassShadingPipelineCreateInfoHUAWEI; - struct PhysicalDeviceSubpassShadingFeaturesHUAWEI; - struct PhysicalDeviceSubpassShadingPropertiesHUAWEI; - - //=== VK_HUAWEI_invocation_mask === - struct PhysicalDeviceInvocationMaskFeaturesHUAWEI; - - //=== VK_NV_external_memory_rdma === - struct MemoryGetRemoteAddressInfoNV; - struct PhysicalDeviceExternalMemoryRDMAFeaturesNV; - - //=== VK_EXT_extended_dynamic_state2 === - struct PhysicalDeviceExtendedDynamicState2FeaturesEXT; - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - struct ScreenSurfaceCreateInfoQNX; -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - //=== VK_EXT_color_write_enable === - struct PhysicalDeviceColorWriteEnableFeaturesEXT; - struct PipelineColorWriteCreateInfoEXT; - - //=== VK_EXT_image_view_min_lod === - struct PhysicalDeviceImageViewMinLodFeaturesEXT; - struct ImageViewMinLodCreateInfoEXT; - - //=== VK_EXT_multi_draw === - struct PhysicalDeviceMultiDrawFeaturesEXT; - struct PhysicalDeviceMultiDrawPropertiesEXT; - struct MultiDrawInfoEXT; - struct MultiDrawIndexedInfoEXT; - - //=== VK_EXT_border_color_swizzle === - struct PhysicalDeviceBorderColorSwizzleFeaturesEXT; - struct SamplerBorderColorComponentMappingCreateInfoEXT; - - //=== VK_EXT_pageable_device_local_memory === - struct PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT; - - //=== VK_QCOM_fragment_density_map_offset === - struct PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM; - struct PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM; - struct SubpassFragmentDensityMapOffsetEndInfoQCOM; - - //=== VK_NV_linear_color_attachment === - struct PhysicalDeviceLinearColorAttachmentFeaturesNV; - - //=============== - //=== HANDLEs === - //=============== - - class SurfaceKHR - { - public: - using CType = VkSurfaceKHR; - using NativeType = VkSurfaceKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSurfaceKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSurfaceKHR; - - public: - VULKAN_HPP_CONSTEXPR SurfaceKHR() = default; - VULKAN_HPP_CONSTEXPR SurfaceKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT SurfaceKHR( VkSurfaceKHR surfaceKHR ) VULKAN_HPP_NOEXCEPT : m_surfaceKHR( surfaceKHR ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - SurfaceKHR & operator=( VkSurfaceKHR surfaceKHR ) VULKAN_HPP_NOEXCEPT - { - m_surfaceKHR = surfaceKHR; - return *this; - } -#endif - - SurfaceKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_surfaceKHR = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceKHR const & ) const = default; -#else - bool operator==( SurfaceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_surfaceKHR == rhs.m_surfaceKHR; - } - - bool operator!=( SurfaceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_surfaceKHR != rhs.m_surfaceKHR; - } - - bool operator<( SurfaceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_surfaceKHR < rhs.m_surfaceKHR; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkSurfaceKHR() const VULKAN_HPP_NOEXCEPT - { - return m_surfaceKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_surfaceKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_surfaceKHR == VK_NULL_HANDLE; - } - - private: - VkSurfaceKHR m_surfaceKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceKHR ) == sizeof( VkSurfaceKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SurfaceKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::SurfaceKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::SurfaceKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::SurfaceKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DebugReportCallbackEXT - { - public: - using CType = VkDebugReportCallbackEXT; - using NativeType = VkDebugReportCallbackEXT; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDebugReportCallbackEXT; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDebugReportCallbackEXT; - - public: - VULKAN_HPP_CONSTEXPR DebugReportCallbackEXT() = default; - VULKAN_HPP_CONSTEXPR DebugReportCallbackEXT( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - DebugReportCallbackEXT( VkDebugReportCallbackEXT debugReportCallbackEXT ) VULKAN_HPP_NOEXCEPT - : m_debugReportCallbackEXT( debugReportCallbackEXT ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DebugReportCallbackEXT & operator=( VkDebugReportCallbackEXT debugReportCallbackEXT ) VULKAN_HPP_NOEXCEPT - { - m_debugReportCallbackEXT = debugReportCallbackEXT; - return *this; - } -#endif - - DebugReportCallbackEXT & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_debugReportCallbackEXT = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DebugReportCallbackEXT const & ) const = default; -#else - bool operator==( DebugReportCallbackEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_debugReportCallbackEXT == rhs.m_debugReportCallbackEXT; - } - - bool operator!=( DebugReportCallbackEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_debugReportCallbackEXT != rhs.m_debugReportCallbackEXT; - } - - bool operator<( DebugReportCallbackEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_debugReportCallbackEXT < rhs.m_debugReportCallbackEXT; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDebugReportCallbackEXT() const VULKAN_HPP_NOEXCEPT - { - return m_debugReportCallbackEXT; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_debugReportCallbackEXT != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_debugReportCallbackEXT == VK_NULL_HANDLE; - } - - private: - VkDebugReportCallbackEXT m_debugReportCallbackEXT = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT ) == - sizeof( VkDebugReportCallbackEXT ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DebugReportCallbackEXT is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DebugUtilsMessengerEXT - { - public: - using CType = VkDebugUtilsMessengerEXT; - using NativeType = VkDebugUtilsMessengerEXT; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDebugUtilsMessengerEXT; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR DebugUtilsMessengerEXT() = default; - VULKAN_HPP_CONSTEXPR DebugUtilsMessengerEXT( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - DebugUtilsMessengerEXT( VkDebugUtilsMessengerEXT debugUtilsMessengerEXT ) VULKAN_HPP_NOEXCEPT - : m_debugUtilsMessengerEXT( debugUtilsMessengerEXT ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DebugUtilsMessengerEXT & operator=( VkDebugUtilsMessengerEXT debugUtilsMessengerEXT ) VULKAN_HPP_NOEXCEPT - { - m_debugUtilsMessengerEXT = debugUtilsMessengerEXT; - return *this; - } -#endif - - DebugUtilsMessengerEXT & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_debugUtilsMessengerEXT = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DebugUtilsMessengerEXT const & ) const = default; -#else - bool operator==( DebugUtilsMessengerEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_debugUtilsMessengerEXT == rhs.m_debugUtilsMessengerEXT; - } - - bool operator!=( DebugUtilsMessengerEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_debugUtilsMessengerEXT != rhs.m_debugUtilsMessengerEXT; - } - - bool operator<( DebugUtilsMessengerEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_debugUtilsMessengerEXT < rhs.m_debugUtilsMessengerEXT; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDebugUtilsMessengerEXT() const VULKAN_HPP_NOEXCEPT - { - return m_debugUtilsMessengerEXT; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_debugUtilsMessengerEXT != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_debugUtilsMessengerEXT == VK_NULL_HANDLE; - } - - private: - VkDebugUtilsMessengerEXT m_debugUtilsMessengerEXT = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT ) == - sizeof( VkDebugUtilsMessengerEXT ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DebugUtilsMessengerEXT is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DisplayKHR - { - public: - using CType = VkDisplayKHR; - using NativeType = VkDisplayKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDisplayKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayKHR; - - public: - VULKAN_HPP_CONSTEXPR DisplayKHR() = default; - VULKAN_HPP_CONSTEXPR DisplayKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DisplayKHR( VkDisplayKHR displayKHR ) VULKAN_HPP_NOEXCEPT : m_displayKHR( displayKHR ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DisplayKHR & operator=( VkDisplayKHR displayKHR ) VULKAN_HPP_NOEXCEPT - { - m_displayKHR = displayKHR; - return *this; - } -#endif - - DisplayKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_displayKHR = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayKHR const & ) const = default; -#else - bool operator==( DisplayKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_displayKHR == rhs.m_displayKHR; - } - - bool operator!=( DisplayKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_displayKHR != rhs.m_displayKHR; - } - - bool operator<( DisplayKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_displayKHR < rhs.m_displayKHR; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDisplayKHR() const VULKAN_HPP_NOEXCEPT - { - return m_displayKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_displayKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_displayKHR == VK_NULL_HANDLE; - } - - private: - VkDisplayKHR m_displayKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayKHR ) == sizeof( VkDisplayKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DisplayKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DisplayKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DisplayKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class SwapchainKHR - { - public: - using CType = VkSwapchainKHR; - using NativeType = VkSwapchainKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSwapchainKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSwapchainKHR; - - public: - VULKAN_HPP_CONSTEXPR SwapchainKHR() = default; - VULKAN_HPP_CONSTEXPR SwapchainKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT SwapchainKHR( VkSwapchainKHR swapchainKHR ) VULKAN_HPP_NOEXCEPT - : m_swapchainKHR( swapchainKHR ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - SwapchainKHR & operator=( VkSwapchainKHR swapchainKHR ) VULKAN_HPP_NOEXCEPT - { - m_swapchainKHR = swapchainKHR; - return *this; - } -#endif - - SwapchainKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_swapchainKHR = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SwapchainKHR const & ) const = default; -#else - bool operator==( SwapchainKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_swapchainKHR == rhs.m_swapchainKHR; - } - - bool operator!=( SwapchainKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_swapchainKHR != rhs.m_swapchainKHR; - } - - bool operator<( SwapchainKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_swapchainKHR < rhs.m_swapchainKHR; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkSwapchainKHR() const VULKAN_HPP_NOEXCEPT - { - return m_swapchainKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_swapchainKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_swapchainKHR == VK_NULL_HANDLE; - } - - private: - VkSwapchainKHR m_swapchainKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SwapchainKHR ) == sizeof( VkSwapchainKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SwapchainKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::SwapchainKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::SwapchainKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::SwapchainKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Semaphore - { - public: - using CType = VkSemaphore; - using NativeType = VkSemaphore; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSemaphore; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSemaphore; - - public: - VULKAN_HPP_CONSTEXPR Semaphore() = default; - VULKAN_HPP_CONSTEXPR Semaphore( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Semaphore( VkSemaphore semaphore ) VULKAN_HPP_NOEXCEPT : m_semaphore( semaphore ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Semaphore & operator=( VkSemaphore semaphore ) VULKAN_HPP_NOEXCEPT - { - m_semaphore = semaphore; - return *this; - } -#endif - - Semaphore & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_semaphore = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Semaphore const & ) const = default; -#else - bool operator==( Semaphore const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_semaphore == rhs.m_semaphore; - } - - bool operator!=( Semaphore const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_semaphore != rhs.m_semaphore; - } - - bool operator<( Semaphore const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_semaphore < rhs.m_semaphore; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkSemaphore() const VULKAN_HPP_NOEXCEPT - { - return m_semaphore; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_semaphore != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_semaphore == VK_NULL_HANDLE; - } - - private: - VkSemaphore m_semaphore = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Semaphore ) == sizeof( VkSemaphore ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Semaphore is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Semaphore; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Semaphore; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Semaphore; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Fence - { - public: - using CType = VkFence; - using NativeType = VkFence; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eFence; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFence; - - public: - VULKAN_HPP_CONSTEXPR Fence() = default; - VULKAN_HPP_CONSTEXPR Fence( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Fence( VkFence fence ) VULKAN_HPP_NOEXCEPT : m_fence( fence ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Fence & operator=( VkFence fence ) VULKAN_HPP_NOEXCEPT - { - m_fence = fence; - return *this; - } -#endif - - Fence & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_fence = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Fence const & ) const = default; -#else - bool operator==( Fence const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_fence == rhs.m_fence; - } - - bool operator!=( Fence const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_fence != rhs.m_fence; - } - - bool operator<( Fence const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_fence < rhs.m_fence; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkFence() const VULKAN_HPP_NOEXCEPT - { - return m_fence; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_fence != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_fence == VK_NULL_HANDLE; - } - - private: - VkFence m_fence = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Fence ) == sizeof( VkFence ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Fence is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Fence; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Fence; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Fence; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class PerformanceConfigurationINTEL - { - public: - using CType = VkPerformanceConfigurationINTEL; - using NativeType = VkPerformanceConfigurationINTEL; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePerformanceConfigurationINTEL; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR PerformanceConfigurationINTEL() = default; - VULKAN_HPP_CONSTEXPR PerformanceConfigurationINTEL( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - PerformanceConfigurationINTEL( VkPerformanceConfigurationINTEL performanceConfigurationINTEL ) VULKAN_HPP_NOEXCEPT - : m_performanceConfigurationINTEL( performanceConfigurationINTEL ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - PerformanceConfigurationINTEL & - operator=( VkPerformanceConfigurationINTEL performanceConfigurationINTEL ) VULKAN_HPP_NOEXCEPT - { - m_performanceConfigurationINTEL = performanceConfigurationINTEL; - return *this; - } -#endif - - PerformanceConfigurationINTEL & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_performanceConfigurationINTEL = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceConfigurationINTEL const & ) const = default; -#else - bool operator==( PerformanceConfigurationINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_performanceConfigurationINTEL == rhs.m_performanceConfigurationINTEL; - } - - bool operator!=( PerformanceConfigurationINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_performanceConfigurationINTEL != rhs.m_performanceConfigurationINTEL; - } - - bool operator<( PerformanceConfigurationINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_performanceConfigurationINTEL < rhs.m_performanceConfigurationINTEL; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPerformanceConfigurationINTEL() const VULKAN_HPP_NOEXCEPT - { - return m_performanceConfigurationINTEL; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_performanceConfigurationINTEL != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_performanceConfigurationINTEL == VK_NULL_HANDLE; - } - - private: - VkPerformanceConfigurationINTEL m_performanceConfigurationINTEL = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL ) == - sizeof( VkPerformanceConfigurationINTEL ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PerformanceConfigurationINTEL is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class QueryPool - { - public: - using CType = VkQueryPool; - using NativeType = VkQueryPool; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eQueryPool; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueryPool; - - public: - VULKAN_HPP_CONSTEXPR QueryPool() = default; - VULKAN_HPP_CONSTEXPR QueryPool( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT QueryPool( VkQueryPool queryPool ) VULKAN_HPP_NOEXCEPT : m_queryPool( queryPool ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - QueryPool & operator=( VkQueryPool queryPool ) VULKAN_HPP_NOEXCEPT - { - m_queryPool = queryPool; - return *this; - } -#endif - - QueryPool & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_queryPool = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueryPool const & ) const = default; -#else - bool operator==( QueryPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_queryPool == rhs.m_queryPool; - } - - bool operator!=( QueryPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_queryPool != rhs.m_queryPool; - } - - bool operator<( QueryPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_queryPool < rhs.m_queryPool; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkQueryPool() const VULKAN_HPP_NOEXCEPT - { - return m_queryPool; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_queryPool != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_queryPool == VK_NULL_HANDLE; - } - - private: - VkQueryPool m_queryPool = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueryPool ) == sizeof( VkQueryPool ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "QueryPool is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::QueryPool; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::QueryPool; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::QueryPool; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Buffer - { - public: - using CType = VkBuffer; - using NativeType = VkBuffer; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eBuffer; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBuffer; - - public: - VULKAN_HPP_CONSTEXPR Buffer() = default; - VULKAN_HPP_CONSTEXPR Buffer( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Buffer( VkBuffer buffer ) VULKAN_HPP_NOEXCEPT : m_buffer( buffer ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Buffer & operator=( VkBuffer buffer ) VULKAN_HPP_NOEXCEPT - { - m_buffer = buffer; - return *this; - } -#endif - - Buffer & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_buffer = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Buffer const & ) const = default; -#else - bool operator==( Buffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_buffer == rhs.m_buffer; - } - - bool operator!=( Buffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_buffer != rhs.m_buffer; - } - - bool operator<( Buffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_buffer < rhs.m_buffer; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkBuffer() const VULKAN_HPP_NOEXCEPT - { - return m_buffer; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_buffer != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_buffer == VK_NULL_HANDLE; - } - - private: - VkBuffer m_buffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Buffer ) == sizeof( VkBuffer ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Buffer is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Buffer; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Buffer; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Buffer; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class PipelineLayout - { - public: - using CType = VkPipelineLayout; - using NativeType = VkPipelineLayout; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePipelineLayout; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineLayout; - - public: - VULKAN_HPP_CONSTEXPR PipelineLayout() = default; - VULKAN_HPP_CONSTEXPR PipelineLayout( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT PipelineLayout( VkPipelineLayout pipelineLayout ) VULKAN_HPP_NOEXCEPT - : m_pipelineLayout( pipelineLayout ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - PipelineLayout & operator=( VkPipelineLayout pipelineLayout ) VULKAN_HPP_NOEXCEPT - { - m_pipelineLayout = pipelineLayout; - return *this; - } -#endif - - PipelineLayout & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_pipelineLayout = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineLayout const & ) const = default; -#else - bool operator==( PipelineLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout == rhs.m_pipelineLayout; - } - - bool operator!=( PipelineLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout != rhs.m_pipelineLayout; - } - - bool operator<( PipelineLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout < rhs.m_pipelineLayout; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPipelineLayout() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout == VK_NULL_HANDLE; - } - - private: - VkPipelineLayout m_pipelineLayout = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineLayout ) == sizeof( VkPipelineLayout ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineLayout is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::PipelineLayout; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PipelineLayout; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PipelineLayout; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DescriptorSet - { - public: - using CType = VkDescriptorSet; - using NativeType = VkDescriptorSet; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorSet; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSet; - - public: - VULKAN_HPP_CONSTEXPR DescriptorSet() = default; - VULKAN_HPP_CONSTEXPR DescriptorSet( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DescriptorSet( VkDescriptorSet descriptorSet ) VULKAN_HPP_NOEXCEPT - : m_descriptorSet( descriptorSet ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DescriptorSet & operator=( VkDescriptorSet descriptorSet ) VULKAN_HPP_NOEXCEPT - { - m_descriptorSet = descriptorSet; - return *this; - } -#endif - - DescriptorSet & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_descriptorSet = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSet const & ) const = default; -#else - bool operator==( DescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet == rhs.m_descriptorSet; - } - - bool operator!=( DescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet != rhs.m_descriptorSet; - } - - bool operator<( DescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet < rhs.m_descriptorSet; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDescriptorSet() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet == VK_NULL_HANDLE; - } - - private: - VkDescriptorSet m_descriptorSet = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSet ) == sizeof( VkDescriptorSet ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorSet is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DescriptorSet; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorSet; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorSet; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class ImageView - { - public: - using CType = VkImageView; - using NativeType = VkImageView; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eImageView; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImageView; - - public: - VULKAN_HPP_CONSTEXPR ImageView() = default; - VULKAN_HPP_CONSTEXPR ImageView( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT ImageView( VkImageView imageView ) VULKAN_HPP_NOEXCEPT : m_imageView( imageView ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - ImageView & operator=( VkImageView imageView ) VULKAN_HPP_NOEXCEPT - { - m_imageView = imageView; - return *this; - } -#endif - - ImageView & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_imageView = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageView const & ) const = default; -#else - bool operator==( ImageView const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_imageView == rhs.m_imageView; - } - - bool operator!=( ImageView const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_imageView != rhs.m_imageView; - } - - bool operator<( ImageView const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_imageView < rhs.m_imageView; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkImageView() const VULKAN_HPP_NOEXCEPT - { - return m_imageView; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_imageView != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_imageView == VK_NULL_HANDLE; - } - - private: - VkImageView m_imageView = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageView ) == sizeof( VkImageView ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageView is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::ImageView; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::ImageView; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::ImageView; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Pipeline - { - public: - using CType = VkPipeline; - using NativeType = VkPipeline; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePipeline; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipeline; - - public: - VULKAN_HPP_CONSTEXPR Pipeline() = default; - VULKAN_HPP_CONSTEXPR Pipeline( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Pipeline( VkPipeline pipeline ) VULKAN_HPP_NOEXCEPT : m_pipeline( pipeline ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Pipeline & operator=( VkPipeline pipeline ) VULKAN_HPP_NOEXCEPT - { - m_pipeline = pipeline; - return *this; - } -#endif - - Pipeline & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_pipeline = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Pipeline const & ) const = default; -#else - bool operator==( Pipeline const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipeline == rhs.m_pipeline; - } - - bool operator!=( Pipeline const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipeline != rhs.m_pipeline; - } - - bool operator<( Pipeline const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipeline < rhs.m_pipeline; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPipeline() const VULKAN_HPP_NOEXCEPT - { - return m_pipeline; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_pipeline != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_pipeline == VK_NULL_HANDLE; - } - - private: - VkPipeline m_pipeline = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Pipeline ) == sizeof( VkPipeline ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Pipeline is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Pipeline; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Pipeline; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Pipeline; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Image - { - public: - using CType = VkImage; - using NativeType = VkImage; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eImage; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImage; - - public: - VULKAN_HPP_CONSTEXPR Image() = default; - VULKAN_HPP_CONSTEXPR Image( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Image( VkImage image ) VULKAN_HPP_NOEXCEPT : m_image( image ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Image & operator=( VkImage image ) VULKAN_HPP_NOEXCEPT - { - m_image = image; - return *this; - } -#endif - - Image & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_image = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Image const & ) const = default; -#else - bool operator==( Image const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_image == rhs.m_image; - } - - bool operator!=( Image const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_image != rhs.m_image; - } - - bool operator<( Image const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_image < rhs.m_image; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkImage() const VULKAN_HPP_NOEXCEPT - { - return m_image; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_image != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_image == VK_NULL_HANDLE; - } - - private: - VkImage m_image = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Image ) == sizeof( VkImage ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Image is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Image; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Image; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Image; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class AccelerationStructureNV - { - public: - using CType = VkAccelerationStructureNV; - using NativeType = VkAccelerationStructureNV; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eAccelerationStructureNV; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eAccelerationStructureNV; - - public: - VULKAN_HPP_CONSTEXPR AccelerationStructureNV() = default; - VULKAN_HPP_CONSTEXPR AccelerationStructureNV( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - AccelerationStructureNV( VkAccelerationStructureNV accelerationStructureNV ) VULKAN_HPP_NOEXCEPT - : m_accelerationStructureNV( accelerationStructureNV ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - AccelerationStructureNV & operator=( VkAccelerationStructureNV accelerationStructureNV ) VULKAN_HPP_NOEXCEPT - { - m_accelerationStructureNV = accelerationStructureNV; - return *this; - } -#endif - - AccelerationStructureNV & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_accelerationStructureNV = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureNV const & ) const = default; -#else - bool operator==( AccelerationStructureNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureNV == rhs.m_accelerationStructureNV; - } - - bool operator!=( AccelerationStructureNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureNV != rhs.m_accelerationStructureNV; - } - - bool operator<( AccelerationStructureNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureNV < rhs.m_accelerationStructureNV; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkAccelerationStructureNV() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureNV; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureNV != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureNV == VK_NULL_HANDLE; - } - - private: - VkAccelerationStructureNV m_accelerationStructureNV = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureNV ) == - sizeof( VkAccelerationStructureNV ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AccelerationStructureNV is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::AccelerationStructureNV; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::AccelerationStructureNV; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::AccelerationStructureNV; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DescriptorUpdateTemplate - { - public: - using CType = VkDescriptorUpdateTemplate; - using NativeType = VkDescriptorUpdateTemplate; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorUpdateTemplate; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorUpdateTemplate; - - public: - VULKAN_HPP_CONSTEXPR DescriptorUpdateTemplate() = default; - VULKAN_HPP_CONSTEXPR DescriptorUpdateTemplate( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - DescriptorUpdateTemplate( VkDescriptorUpdateTemplate descriptorUpdateTemplate ) VULKAN_HPP_NOEXCEPT - : m_descriptorUpdateTemplate( descriptorUpdateTemplate ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DescriptorUpdateTemplate & operator=( VkDescriptorUpdateTemplate descriptorUpdateTemplate ) VULKAN_HPP_NOEXCEPT - { - m_descriptorUpdateTemplate = descriptorUpdateTemplate; - return *this; - } -#endif - - DescriptorUpdateTemplate & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_descriptorUpdateTemplate = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorUpdateTemplate const & ) const = default; -#else - bool operator==( DescriptorUpdateTemplate const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate == rhs.m_descriptorUpdateTemplate; - } - - bool operator!=( DescriptorUpdateTemplate const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate != rhs.m_descriptorUpdateTemplate; - } - - bool operator<( DescriptorUpdateTemplate const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate < rhs.m_descriptorUpdateTemplate; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDescriptorUpdateTemplate() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate == VK_NULL_HANDLE; - } - - private: - VkDescriptorUpdateTemplate m_descriptorUpdateTemplate = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate ) == - sizeof( VkDescriptorUpdateTemplate ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorUpdateTemplate is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - using DescriptorUpdateTemplateKHR = DescriptorUpdateTemplate; - - class Event - { - public: - using CType = VkEvent; - using NativeType = VkEvent; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eEvent; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eEvent; - - public: - VULKAN_HPP_CONSTEXPR Event() = default; - VULKAN_HPP_CONSTEXPR Event( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Event( VkEvent event ) VULKAN_HPP_NOEXCEPT : m_event( event ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Event & operator=( VkEvent event ) VULKAN_HPP_NOEXCEPT - { - m_event = event; - return *this; - } -#endif - - Event & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_event = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Event const & ) const = default; -#else - bool operator==( Event const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_event == rhs.m_event; - } - - bool operator!=( Event const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_event != rhs.m_event; - } - - bool operator<( Event const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_event < rhs.m_event; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkEvent() const VULKAN_HPP_NOEXCEPT - { - return m_event; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_event != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_event == VK_NULL_HANDLE; - } - - private: - VkEvent m_event = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Event ) == sizeof( VkEvent ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Event is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Event; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Event; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Event; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class AccelerationStructureKHR - { - public: - using CType = VkAccelerationStructureKHR; - using NativeType = VkAccelerationStructureKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eAccelerationStructureKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eAccelerationStructureKHR; - - public: - VULKAN_HPP_CONSTEXPR AccelerationStructureKHR() = default; - VULKAN_HPP_CONSTEXPR AccelerationStructureKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - AccelerationStructureKHR( VkAccelerationStructureKHR accelerationStructureKHR ) VULKAN_HPP_NOEXCEPT - : m_accelerationStructureKHR( accelerationStructureKHR ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - AccelerationStructureKHR & operator=( VkAccelerationStructureKHR accelerationStructureKHR ) VULKAN_HPP_NOEXCEPT - { - m_accelerationStructureKHR = accelerationStructureKHR; - return *this; - } -#endif - - AccelerationStructureKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_accelerationStructureKHR = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureKHR const & ) const = default; -#else - bool operator==( AccelerationStructureKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureKHR == rhs.m_accelerationStructureKHR; - } - - bool operator!=( AccelerationStructureKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureKHR != rhs.m_accelerationStructureKHR; - } - - bool operator<( AccelerationStructureKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureKHR < rhs.m_accelerationStructureKHR; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkAccelerationStructureKHR() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructureKHR == VK_NULL_HANDLE; - } - - private: - VkAccelerationStructureKHR m_accelerationStructureKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR ) == - sizeof( VkAccelerationStructureKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AccelerationStructureKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::AccelerationStructureKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::AccelerationStructureKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::AccelerationStructureKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class CommandBuffer - { - public: - using CType = VkCommandBuffer; - using NativeType = VkCommandBuffer; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCommandBuffer; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandBuffer; - - public: - VULKAN_HPP_CONSTEXPR CommandBuffer() = default; - VULKAN_HPP_CONSTEXPR CommandBuffer( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT CommandBuffer( VkCommandBuffer commandBuffer ) VULKAN_HPP_NOEXCEPT - : m_commandBuffer( commandBuffer ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - CommandBuffer & operator=( VkCommandBuffer commandBuffer ) VULKAN_HPP_NOEXCEPT - { - m_commandBuffer = commandBuffer; - return *this; - } -#endif - - CommandBuffer & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_commandBuffer = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBuffer const & ) const = default; -#else - bool operator==( CommandBuffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer == rhs.m_commandBuffer; - } - - bool operator!=( CommandBuffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer != rhs.m_commandBuffer; - } - - bool operator<( CommandBuffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer < rhs.m_commandBuffer; - } -#endif - - //=== VK_VERSION_1_0 === - - template - VULKAN_HPP_NODISCARD Result - begin( const VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo * pBeginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - begin( const VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo & beginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - end( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - end( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - reset( VULKAN_HPP_NAMESPACE::CommandBufferResetFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - reset( VULKAN_HPP_NAMESPACE::CommandBufferResetFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void bindPipeline( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setViewport( uint32_t firstViewport, - uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setViewport( uint32_t firstViewport, - ArrayProxy const & viewports, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setScissor( uint32_t firstScissor, - uint32_t scissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setScissor( uint32_t firstScissor, - ArrayProxy const & scissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setLineWidth( float lineWidth, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setDepthBias( float depthBiasConstantFactor, - float depthBiasClamp, - float depthBiasSlopeFactor, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setBlendConstants( const float blendConstants[4], - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setDepthBounds( float minDepthBounds, - float maxDepthBounds, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setStencilCompareMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t compareMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setStencilWriteMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t writeMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setStencilReference( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t reference, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void bindDescriptorSets( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t firstSet, - uint32_t descriptorSetCount, - const VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - uint32_t dynamicOffsetCount, - const uint32_t * pDynamicOffsets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void bindDescriptorSets( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t firstSet, - ArrayProxy const & descriptorSets, - ArrayProxy const & dynamicOffsets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void bindIndexBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::IndexType indexType, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void bindVertexBuffers( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void bindVertexBuffers( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void draw( uint32_t vertexCount, - uint32_t instanceCount, - uint32_t firstVertex, - uint32_t firstInstance, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void drawIndexed( uint32_t indexCount, - uint32_t instanceCount, - uint32_t firstIndex, - int32_t vertexOffset, - uint32_t firstInstance, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void drawIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void drawIndexedIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void dispatch( uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void dispatchIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void copyBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::BufferCopy * pRegions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::ImageCopy * pRegions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void blitImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::ImageBlit * pRegions, - VULKAN_HPP_NAMESPACE::Filter filter, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void blitImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - VULKAN_HPP_NAMESPACE::Filter filter, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyBufferToImage( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::BufferImageCopy * pRegions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyBufferToImage( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyImageToBuffer( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::BufferImageCopy * pRegions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyImageToBuffer( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void updateBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize dataSize, - const void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void updateBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - ArrayProxy const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void fillBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - uint32_t data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void clearColorImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearColorValue * pColor, - uint32_t rangeCount, - const VULKAN_HPP_NAMESPACE::ImageSubresourceRange * pRanges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void clearColorImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearColorValue & color, - ArrayProxy const & ranges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - clearDepthStencilImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearDepthStencilValue * pDepthStencil, - uint32_t rangeCount, - const VULKAN_HPP_NAMESPACE::ImageSubresourceRange * pRanges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - clearDepthStencilImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearDepthStencilValue & depthStencil, - ArrayProxy const & ranges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void clearAttachments( uint32_t attachmentCount, - const VULKAN_HPP_NAMESPACE::ClearAttachment * pAttachments, - uint32_t rectCount, - const VULKAN_HPP_NAMESPACE::ClearRect * pRects, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void clearAttachments( ArrayProxy const & attachments, - ArrayProxy const & rects, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void resolveImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - uint32_t regionCount, - const VULKAN_HPP_NAMESPACE::ImageResolve * pRegions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void resolveImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void resetEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void waitEvents( uint32_t eventCount, - const VULKAN_HPP_NAMESPACE::Event * pEvents, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - uint32_t memoryBarrierCount, - const VULKAN_HPP_NAMESPACE::MemoryBarrier * pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier * pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier * pImageMemoryBarriers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void waitEvents( ArrayProxy const & events, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void pipelineBarrier( VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags, - uint32_t memoryBarrierCount, - const VULKAN_HPP_NAMESPACE::MemoryBarrier * pMemoryBarriers, - uint32_t bufferMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier * pBufferMemoryBarriers, - uint32_t imageMemoryBarrierCount, - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier * pImageMemoryBarriers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void pipelineBarrier( VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void beginQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void endQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void resetQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void writeTimestamp( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void copyQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void pushConstants( VULKAN_HPP_NAMESPACE::PipelineLayout layout, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags, - uint32_t offset, - uint32_t size, - const void * pValues, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void pushConstants( VULKAN_HPP_NAMESPACE::PipelineLayout layout, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags, - uint32_t offset, - ArrayProxy const & values, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void beginRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo * pRenderPassBegin, - VULKAN_HPP_NAMESPACE::SubpassContents contents, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - VULKAN_HPP_NAMESPACE::SubpassContents contents, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void nextSubpass( VULKAN_HPP_NAMESPACE::SubpassContents contents, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void endRenderPass( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void executeCommands( uint32_t commandBufferCount, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void executeCommands( ArrayProxy const & commandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_1 === - - template - void setDeviceMask( uint32_t deviceMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void dispatchBase( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_2 === - - template - void drawIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - drawIndexedIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void beginRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo * pRenderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void nextSubpass2( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void nextSubpass2( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endRenderPass2( const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void endRenderPass2( const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_3 === - - template - void setEvent2( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setEvent2( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void resetEvent2( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void waitEvents2( uint32_t eventCount, - const VULKAN_HPP_NAMESPACE::Event * pEvents, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void waitEvents2( ArrayProxy const & events, - ArrayProxy const & dependencyInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void pipelineBarrier2( const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void pipelineBarrier2( const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void writeTimestamp2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void copyBuffer2( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 * pCopyBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyBuffer2( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyImage2( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 * pCopyImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyImage2( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyBufferToImage2( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 * pCopyBufferToImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyBufferToImage2( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyImageToBuffer2( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 * pCopyImageToBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyImageToBuffer2( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void blitImage2( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 * pBlitImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void blitImage2( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void resolveImage2( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 * pResolveImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void resolveImage2( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void beginRendering( const VULKAN_HPP_NAMESPACE::RenderingInfo * pRenderingInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginRendering( const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endRendering( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setCullMode( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setFrontFace( VULKAN_HPP_NAMESPACE::FrontFace frontFace, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setPrimitiveTopology( VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setViewportWithCount( uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setViewportWithCount( ArrayProxy const & viewports, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setScissorWithCount( uint32_t scissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setScissorWithCount( ArrayProxy const & scissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void bindVertexBuffers2( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - const VULKAN_HPP_NAMESPACE::DeviceSize * pSizes, - const VULKAN_HPP_NAMESPACE::DeviceSize * pStrides, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void bindVertexBuffers2( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - ArrayProxy const & strides VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setDepthTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setDepthWriteEnable( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setDepthCompareOp( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - setDepthBoundsTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setStencilTestEnable( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setStencilOp( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setRasterizerDiscardEnable( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - template - void setDepthBiasEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setPrimitiveRestartEnable( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_debug_marker === - - template - void debugMarkerBeginEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT * pMarkerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void debugMarkerBeginEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void debugMarkerEndEXT( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void debugMarkerInsertEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT * pMarkerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void debugMarkerInsertEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - template - void beginVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR * pBeginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR & beginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR * pEndCodingInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void endVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR & endCodingInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void controlVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR * pCodingControlInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void controlVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR & codingControlInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - template - void decodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR * pFrameInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void decodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR & frameInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - template - void bindTransformFeedbackBuffersEXT( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - const VULKAN_HPP_NAMESPACE::DeviceSize * pSizes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void bindTransformFeedbackBuffersEXT( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void beginTransformFeedbackEXT( uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VULKAN_HPP_NAMESPACE::Buffer * pCounterBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pCounterBufferOffsets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginTransformFeedbackEXT( uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - endTransformFeedbackEXT( uint32_t firstCounterBuffer, - uint32_t counterBufferCount, - const VULKAN_HPP_NAMESPACE::Buffer * pCounterBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pCounterBufferOffsets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void endTransformFeedbackEXT( uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void beginQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags, - uint32_t index, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void endQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - uint32_t index, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - drawIndirectByteCountEXT( uint32_t instanceCount, - uint32_t firstInstance, - VULKAN_HPP_NAMESPACE::Buffer counterBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize counterBufferOffset, - uint32_t counterOffset, - uint32_t vertexStride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NVX_binary_import === - - template - void cuLaunchKernelNVX( const VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX * pLaunchInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void cuLaunchKernelNVX( const VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX & launchInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_AMD_draw_indirect_count === - - template - void drawIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void drawIndexedIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_dynamic_rendering === - - template - void beginRenderingKHR( const VULKAN_HPP_NAMESPACE::RenderingInfo * pRenderingInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginRenderingKHR( const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endRenderingKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_device_group === - - template - void setDeviceMaskKHR( uint32_t deviceMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void dispatchBaseKHR( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_push_descriptor === - - template - void pushDescriptorSetKHR( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - uint32_t descriptorWriteCount, - const VULKAN_HPP_NAMESPACE::WriteDescriptorSet * pDescriptorWrites, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void pushDescriptorSetKHR( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - ArrayProxy const & descriptorWrites, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void pushDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - const void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void pushDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - DataType const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_conditional_rendering === - - template - void beginConditionalRenderingEXT( - const VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT * pConditionalRenderingBegin, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginConditionalRenderingEXT( - const VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT & conditionalRenderingBegin, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endConditionalRenderingEXT( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_clip_space_w_scaling === - - template - void setViewportWScalingNV( uint32_t firstViewport, - uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::ViewportWScalingNV * pViewportWScalings, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setViewportWScalingNV( uint32_t firstViewport, - ArrayProxy const & viewportWScalings, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_discard_rectangles === - - template - void - setDiscardRectangleEXT( uint32_t firstDiscardRectangle, - uint32_t discardRectangleCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pDiscardRectangles, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - setDiscardRectangleEXT( uint32_t firstDiscardRectangle, - ArrayProxy const & discardRectangles, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_create_renderpass2 === - - template - void beginRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo * pRenderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void beginRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void nextSubpass2KHR( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo * pSubpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void nextSubpass2KHR( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endRenderPass2KHR( const VULKAN_HPP_NAMESPACE::SubpassEndInfo * pSubpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void endRenderPass2KHR( const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_debug_utils === - - template - void - beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endDebugUtilsLabelEXT( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_sample_locations === - - template - void setSampleLocationsEXT( const VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT * pSampleLocationsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setSampleLocationsEXT( const VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT & sampleLocationsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_acceleration_structure === - - template - void buildAccelerationStructuresKHR( - uint32_t infoCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pInfos, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR * const * ppBuildRangeInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void buildAccelerationStructuresKHR( - ArrayProxy const & infos, - ArrayProxy const & pBuildRangeInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void buildAccelerationStructuresIndirectKHR( - uint32_t infoCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pInfos, - const VULKAN_HPP_NAMESPACE::DeviceAddress * pIndirectDeviceAddresses, - const uint32_t * pIndirectStrides, - const uint32_t * const * ppMaxPrimitiveCounts, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void buildAccelerationStructuresIndirectKHR( - ArrayProxy const & infos, - ArrayProxy const & indirectDeviceAddresses, - ArrayProxy const & indirectStrides, - ArrayProxy const & pMaxPrimitiveCounts, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyAccelerationStructureToMemoryKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyAccelerationStructureToMemoryKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyMemoryToAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyMemoryToAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void writeAccelerationStructuresPropertiesKHR( - uint32_t accelerationStructureCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_shading_rate_image === - - template - void - bindShadingRateImageNV( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setViewportShadingRatePaletteNV( uint32_t firstViewport, - uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV * pShadingRatePalettes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setViewportShadingRatePaletteNV( - uint32_t firstViewport, - ArrayProxy const & shadingRatePalettes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - setCoarseSampleOrderNV( VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType, - uint32_t customSampleOrderCount, - const VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV * pCustomSampleOrders, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setCoarseSampleOrderNV( - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType, - ArrayProxy const & customSampleOrders, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_ray_tracing === - - template - void buildAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV * pInfo, - VULKAN_HPP_NAMESPACE::Buffer instanceData, - VULKAN_HPP_NAMESPACE::DeviceSize instanceOffset, - VULKAN_HPP_NAMESPACE::Bool32 update, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::Buffer scratch, - VULKAN_HPP_NAMESPACE::DeviceSize scratchOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void buildAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV & info, - VULKAN_HPP_NAMESPACE::Buffer instanceData, - VULKAN_HPP_NAMESPACE::DeviceSize instanceOffset, - VULKAN_HPP_NAMESPACE::Bool32 update, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::Buffer scratch, - VULKAN_HPP_NAMESPACE::DeviceSize scratchOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyAccelerationStructureNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - template - void traceRaysNV( VULKAN_HPP_NAMESPACE::Buffer raygenShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize raygenShaderBindingOffset, - VULKAN_HPP_NAMESPACE::Buffer missShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer hitShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer callableShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingStride, - uint32_t width, - uint32_t height, - uint32_t depth, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void writeAccelerationStructuresPropertiesNV( - uint32_t accelerationStructureCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void writeAccelerationStructuresPropertiesNV( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_draw_indirect_count === - - template - void drawIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void drawIndexedIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_AMD_buffer_marker === - - template - void writeBufferMarkerAMD( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_mesh_shader === - - template - void drawMeshTasksNV( uint32_t taskCount, - uint32_t firstTask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - drawMeshTasksIndirectNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void drawMeshTasksIndirectCountNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_scissor_exclusive === - - template - void setExclusiveScissorNV( uint32_t firstExclusiveScissor, - uint32_t exclusiveScissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pExclusiveScissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setExclusiveScissorNV( uint32_t firstExclusiveScissor, - ArrayProxy const & exclusiveScissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_device_diagnostic_checkpoints === - - template - void setCheckpointNV( const void * pCheckpointMarker, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setCheckpointNV( CheckpointMarkerType const & checkpointMarker, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_INTEL_performance_query === - - template - VULKAN_HPP_NODISCARD Result setPerformanceMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL * pMarkerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setPerformanceMarkerINTEL( const VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL & markerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result setPerformanceStreamMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL * pMarkerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setPerformanceStreamMarkerINTEL( const VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL & markerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result setPerformanceOverrideINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL * pOverrideInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setPerformanceOverrideINTEL( const VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL & overrideInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_fragment_shading_rate === - - template - void setFragmentShadingRateKHR( const VULKAN_HPP_NAMESPACE::Extent2D * pFragmentSize, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2], - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setFragmentShadingRateKHR( const VULKAN_HPP_NAMESPACE::Extent2D & fragmentSize, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2], - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_line_rasterization === - - template - void setLineStippleEXT( uint32_t lineStippleFactor, - uint16_t lineStipplePattern, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_extended_dynamic_state === - - template - void setCullModeEXT( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setFrontFaceEXT( VULKAN_HPP_NAMESPACE::FrontFace frontFace, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - setPrimitiveTopologyEXT( VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - setViewportWithCountEXT( uint32_t viewportCount, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - setViewportWithCountEXT( ArrayProxy const & viewports, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - setScissorWithCountEXT( uint32_t scissorCount, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - setScissorWithCountEXT( ArrayProxy const & scissors, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void bindVertexBuffers2EXT( uint32_t firstBinding, - uint32_t bindingCount, - const VULKAN_HPP_NAMESPACE::Buffer * pBuffers, - const VULKAN_HPP_NAMESPACE::DeviceSize * pOffsets, - const VULKAN_HPP_NAMESPACE::DeviceSize * pSizes, - const VULKAN_HPP_NAMESPACE::DeviceSize * pStrides, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void bindVertexBuffers2EXT( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - ArrayProxy const & strides VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setDepthTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - setDepthWriteEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setDepthCompareOpEXT( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setDepthBoundsTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - template - void - setStencilTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setStencilOpEXT( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_device_generated_commands === - - template - void preprocessGeneratedCommandsNV( const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV * pGeneratedCommandsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void preprocessGeneratedCommandsNV( const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void executeGeneratedCommandsNV( VULKAN_HPP_NAMESPACE::Bool32 isPreprocessed, - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV * pGeneratedCommandsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void executeGeneratedCommandsNV( VULKAN_HPP_NAMESPACE::Bool32 isPreprocessed, - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void bindPipelineShaderGroupNV( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t groupIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - template - void encodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR * pEncodeInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void encodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR & encodeInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - - template - void setEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void resetEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void waitEvents2KHR( uint32_t eventCount, - const VULKAN_HPP_NAMESPACE::Event * pEvents, - const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void waitEvents2KHR( ArrayProxy const & events, - ArrayProxy const & dependencyInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void pipelineBarrier2KHR( const VULKAN_HPP_NAMESPACE::DependencyInfo * pDependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void pipelineBarrier2KHR( const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void writeTimestamp2KHR( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void writeBufferMarker2AMD( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_fragment_shading_rate_enums === - - template - void setFragmentShadingRateEnumNV( VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2], - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_copy_commands2 === - - template - void copyBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 * pCopyBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyImage2KHR( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 * pCopyImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyImage2KHR( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyBufferToImage2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 * pCopyBufferToImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyBufferToImage2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void copyImageToBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 * pCopyImageToBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void copyImageToBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void blitImage2KHR( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 * pBlitImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void blitImage2KHR( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void resolveImage2KHR( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 * pResolveImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void resolveImage2KHR( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_ray_tracing_pipeline === - - template - void traceRaysKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pRaygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pMissShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pHitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pCallableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void traceRaysKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void traceRaysIndirectKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pRaygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pMissShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pHitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR * pCallableShaderBindingTable, - VULKAN_HPP_NAMESPACE::DeviceAddress indirectDeviceAddress, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void traceRaysIndirectKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - VULKAN_HPP_NAMESPACE::DeviceAddress indirectDeviceAddress, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void setRayTracingPipelineStackSizeKHR( uint32_t pipelineStackSize, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_vertex_input_dynamic_state === - - template - void - setVertexInputEXT( uint32_t vertexBindingDescriptionCount, - const VULKAN_HPP_NAMESPACE::VertexInputBindingDescription2EXT * pVertexBindingDescriptions, - uint32_t vertexAttributeDescriptionCount, - const VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription2EXT * pVertexAttributeDescriptions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setVertexInputEXT( - ArrayProxy const & vertexBindingDescriptions, - ArrayProxy const & vertexAttributeDescriptions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_HUAWEI_subpass_shading === - - template - void subpassShadingHUAWEI( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_HUAWEI_invocation_mask === - - template - void - bindInvocationMaskHUAWEI( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_extended_dynamic_state2 === - - template - void - setPatchControlPointsEXT( uint32_t patchControlPoints, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setRasterizerDiscardEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - template - void setDepthBiasEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setLogicOpEXT( VULKAN_HPP_NAMESPACE::LogicOp logicOp, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void setPrimitiveRestartEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_color_write_enable === - - template - void - setColorWriteEnableEXT( uint32_t attachmentCount, - const VULKAN_HPP_NAMESPACE::Bool32 * pColorWriteEnables, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - setColorWriteEnableEXT( ArrayProxy const & colorWriteEnables, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_multi_draw === - - template - void drawMultiEXT( uint32_t drawCount, - const VULKAN_HPP_NAMESPACE::MultiDrawInfoEXT * pVertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void drawMultiEXT( ArrayProxy const & vertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void drawMultiIndexedEXT( uint32_t drawCount, - const VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT * pIndexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - const int32_t * pVertexOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void drawMultiIndexedEXT( ArrayProxy const & indexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Optional vertexOffset VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkCommandBuffer() const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer == VK_NULL_HANDLE; - } - - private: - VkCommandBuffer m_commandBuffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBuffer ) == sizeof( VkCommandBuffer ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CommandBuffer is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::CommandBuffer; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CommandBuffer; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CommandBuffer; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DeviceMemory - { - public: - using CType = VkDeviceMemory; - using NativeType = VkDeviceMemory; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDeviceMemory; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDeviceMemory; - - public: - VULKAN_HPP_CONSTEXPR DeviceMemory() = default; - VULKAN_HPP_CONSTEXPR DeviceMemory( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DeviceMemory( VkDeviceMemory deviceMemory ) VULKAN_HPP_NOEXCEPT - : m_deviceMemory( deviceMemory ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DeviceMemory & operator=( VkDeviceMemory deviceMemory ) VULKAN_HPP_NOEXCEPT - { - m_deviceMemory = deviceMemory; - return *this; - } -#endif - - DeviceMemory & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_deviceMemory = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceMemory const & ) const = default; -#else - bool operator==( DeviceMemory const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_deviceMemory == rhs.m_deviceMemory; - } - - bool operator!=( DeviceMemory const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_deviceMemory != rhs.m_deviceMemory; - } - - bool operator<( DeviceMemory const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_deviceMemory < rhs.m_deviceMemory; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDeviceMemory() const VULKAN_HPP_NOEXCEPT - { - return m_deviceMemory; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_deviceMemory != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_deviceMemory == VK_NULL_HANDLE; - } - - private: - VkDeviceMemory m_deviceMemory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceMemory ) == sizeof( VkDeviceMemory ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceMemory is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DeviceMemory; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DeviceMemory; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DeviceMemory; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - class VideoSessionKHR - { - public: - using CType = VkVideoSessionKHR; - using NativeType = VkVideoSessionKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eVideoSessionKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR VideoSessionKHR() = default; - VULKAN_HPP_CONSTEXPR VideoSessionKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT VideoSessionKHR( VkVideoSessionKHR videoSessionKHR ) VULKAN_HPP_NOEXCEPT - : m_videoSessionKHR( videoSessionKHR ) - {} - -# if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - VideoSessionKHR & operator=( VkVideoSessionKHR videoSessionKHR ) VULKAN_HPP_NOEXCEPT - { - m_videoSessionKHR = videoSessionKHR; - return *this; - } -# endif - - VideoSessionKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_videoSessionKHR = {}; - return *this; - } - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoSessionKHR const & ) const = default; -# else - bool operator==( VideoSessionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionKHR == rhs.m_videoSessionKHR; - } - - bool operator!=( VideoSessionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionKHR != rhs.m_videoSessionKHR; - } - - bool operator<( VideoSessionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionKHR < rhs.m_videoSessionKHR; - } -# endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkVideoSessionKHR() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionKHR == VK_NULL_HANDLE; - } - - private: - VkVideoSessionKHR m_videoSessionKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoSessionKHR ) == sizeof( VkVideoSessionKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoSessionKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::VideoSessionKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::VideoSessionKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - class DeferredOperationKHR - { - public: - using CType = VkDeferredOperationKHR; - using NativeType = VkDeferredOperationKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDeferredOperationKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR DeferredOperationKHR() = default; - VULKAN_HPP_CONSTEXPR DeferredOperationKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DeferredOperationKHR( VkDeferredOperationKHR deferredOperationKHR ) VULKAN_HPP_NOEXCEPT - : m_deferredOperationKHR( deferredOperationKHR ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DeferredOperationKHR & operator=( VkDeferredOperationKHR deferredOperationKHR ) VULKAN_HPP_NOEXCEPT - { - m_deferredOperationKHR = deferredOperationKHR; - return *this; - } -#endif - - DeferredOperationKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_deferredOperationKHR = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeferredOperationKHR const & ) const = default; -#else - bool operator==( DeferredOperationKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_deferredOperationKHR == rhs.m_deferredOperationKHR; - } - - bool operator!=( DeferredOperationKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_deferredOperationKHR != rhs.m_deferredOperationKHR; - } - - bool operator<( DeferredOperationKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_deferredOperationKHR < rhs.m_deferredOperationKHR; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDeferredOperationKHR() const VULKAN_HPP_NOEXCEPT - { - return m_deferredOperationKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_deferredOperationKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_deferredOperationKHR == VK_NULL_HANDLE; - } - - private: - VkDeferredOperationKHR m_deferredOperationKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeferredOperationKHR ) == sizeof( VkDeferredOperationKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeferredOperationKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DeferredOperationKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DeferredOperationKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - class BufferCollectionFUCHSIA - { - public: - using CType = VkBufferCollectionFUCHSIA; - using NativeType = VkBufferCollectionFUCHSIA; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eBufferCollectionFUCHSIA; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferCollectionFUCHSIA; - - public: - VULKAN_HPP_CONSTEXPR BufferCollectionFUCHSIA() = default; - VULKAN_HPP_CONSTEXPR BufferCollectionFUCHSIA( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - BufferCollectionFUCHSIA( VkBufferCollectionFUCHSIA bufferCollectionFUCHSIA ) VULKAN_HPP_NOEXCEPT - : m_bufferCollectionFUCHSIA( bufferCollectionFUCHSIA ) - {} - -# if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - BufferCollectionFUCHSIA & operator=( VkBufferCollectionFUCHSIA bufferCollectionFUCHSIA ) VULKAN_HPP_NOEXCEPT - { - m_bufferCollectionFUCHSIA = bufferCollectionFUCHSIA; - return *this; - } -# endif - - BufferCollectionFUCHSIA & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_bufferCollectionFUCHSIA = {}; - return *this; - } - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCollectionFUCHSIA const & ) const = default; -# else - bool operator==( BufferCollectionFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_bufferCollectionFUCHSIA == rhs.m_bufferCollectionFUCHSIA; - } - - bool operator!=( BufferCollectionFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_bufferCollectionFUCHSIA != rhs.m_bufferCollectionFUCHSIA; - } - - bool operator<( BufferCollectionFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_bufferCollectionFUCHSIA < rhs.m_bufferCollectionFUCHSIA; - } -# endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkBufferCollectionFUCHSIA() const VULKAN_HPP_NOEXCEPT - { - return m_bufferCollectionFUCHSIA; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_bufferCollectionFUCHSIA != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_bufferCollectionFUCHSIA == VK_NULL_HANDLE; - } - - private: - VkBufferCollectionFUCHSIA m_bufferCollectionFUCHSIA = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA ) == - sizeof( VkBufferCollectionFUCHSIA ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferCollectionFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - class BufferView - { - public: - using CType = VkBufferView; - using NativeType = VkBufferView; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eBufferView; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferView; - - public: - VULKAN_HPP_CONSTEXPR BufferView() = default; - VULKAN_HPP_CONSTEXPR BufferView( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT BufferView( VkBufferView bufferView ) VULKAN_HPP_NOEXCEPT : m_bufferView( bufferView ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - BufferView & operator=( VkBufferView bufferView ) VULKAN_HPP_NOEXCEPT - { - m_bufferView = bufferView; - return *this; - } -#endif - - BufferView & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_bufferView = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferView const & ) const = default; -#else - bool operator==( BufferView const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_bufferView == rhs.m_bufferView; - } - - bool operator!=( BufferView const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_bufferView != rhs.m_bufferView; - } - - bool operator<( BufferView const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_bufferView < rhs.m_bufferView; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkBufferView() const VULKAN_HPP_NOEXCEPT - { - return m_bufferView; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_bufferView != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_bufferView == VK_NULL_HANDLE; - } - - private: - VkBufferView m_bufferView = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferView ) == sizeof( VkBufferView ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferView is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::BufferView; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::BufferView; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::BufferView; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class CommandPool - { - public: - using CType = VkCommandPool; - using NativeType = VkCommandPool; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCommandPool; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandPool; - - public: - VULKAN_HPP_CONSTEXPR CommandPool() = default; - VULKAN_HPP_CONSTEXPR CommandPool( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT CommandPool( VkCommandPool commandPool ) VULKAN_HPP_NOEXCEPT - : m_commandPool( commandPool ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - CommandPool & operator=( VkCommandPool commandPool ) VULKAN_HPP_NOEXCEPT - { - m_commandPool = commandPool; - return *this; - } -#endif - - CommandPool & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_commandPool = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandPool const & ) const = default; -#else - bool operator==( CommandPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_commandPool == rhs.m_commandPool; - } - - bool operator!=( CommandPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_commandPool != rhs.m_commandPool; - } - - bool operator<( CommandPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_commandPool < rhs.m_commandPool; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkCommandPool() const VULKAN_HPP_NOEXCEPT - { - return m_commandPool; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_commandPool != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_commandPool == VK_NULL_HANDLE; - } - - private: - VkCommandPool m_commandPool = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandPool ) == sizeof( VkCommandPool ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CommandPool is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::CommandPool; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CommandPool; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CommandPool; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class PipelineCache - { - public: - using CType = VkPipelineCache; - using NativeType = VkPipelineCache; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePipelineCache; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineCache; - - public: - VULKAN_HPP_CONSTEXPR PipelineCache() = default; - VULKAN_HPP_CONSTEXPR PipelineCache( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT PipelineCache( VkPipelineCache pipelineCache ) VULKAN_HPP_NOEXCEPT - : m_pipelineCache( pipelineCache ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - PipelineCache & operator=( VkPipelineCache pipelineCache ) VULKAN_HPP_NOEXCEPT - { - m_pipelineCache = pipelineCache; - return *this; - } -#endif - - PipelineCache & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_pipelineCache = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCache const & ) const = default; -#else - bool operator==( PipelineCache const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache == rhs.m_pipelineCache; - } - - bool operator!=( PipelineCache const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache != rhs.m_pipelineCache; - } - - bool operator<( PipelineCache const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache < rhs.m_pipelineCache; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPipelineCache() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache == VK_NULL_HANDLE; - } - - private: - VkPipelineCache m_pipelineCache = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCache ) == sizeof( VkPipelineCache ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineCache is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::PipelineCache; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PipelineCache; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PipelineCache; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class CuFunctionNVX - { - public: - using CType = VkCuFunctionNVX; - using NativeType = VkCuFunctionNVX; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCuFunctionNVX; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCuFunctionNVX; - - public: - VULKAN_HPP_CONSTEXPR CuFunctionNVX() = default; - VULKAN_HPP_CONSTEXPR CuFunctionNVX( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT CuFunctionNVX( VkCuFunctionNVX cuFunctionNVX ) VULKAN_HPP_NOEXCEPT - : m_cuFunctionNVX( cuFunctionNVX ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - CuFunctionNVX & operator=( VkCuFunctionNVX cuFunctionNVX ) VULKAN_HPP_NOEXCEPT - { - m_cuFunctionNVX = cuFunctionNVX; - return *this; - } -#endif - - CuFunctionNVX & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_cuFunctionNVX = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CuFunctionNVX const & ) const = default; -#else - bool operator==( CuFunctionNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_cuFunctionNVX == rhs.m_cuFunctionNVX; - } - - bool operator!=( CuFunctionNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_cuFunctionNVX != rhs.m_cuFunctionNVX; - } - - bool operator<( CuFunctionNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_cuFunctionNVX < rhs.m_cuFunctionNVX; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkCuFunctionNVX() const VULKAN_HPP_NOEXCEPT - { - return m_cuFunctionNVX; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_cuFunctionNVX != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_cuFunctionNVX == VK_NULL_HANDLE; - } - - private: - VkCuFunctionNVX m_cuFunctionNVX = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CuFunctionNVX ) == sizeof( VkCuFunctionNVX ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CuFunctionNVX is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::CuFunctionNVX; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CuFunctionNVX; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CuFunctionNVX; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class CuModuleNVX - { - public: - using CType = VkCuModuleNVX; - using NativeType = VkCuModuleNVX; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCuModuleNVX; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCuModuleNVX; - - public: - VULKAN_HPP_CONSTEXPR CuModuleNVX() = default; - VULKAN_HPP_CONSTEXPR CuModuleNVX( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT CuModuleNVX( VkCuModuleNVX cuModuleNVX ) VULKAN_HPP_NOEXCEPT - : m_cuModuleNVX( cuModuleNVX ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - CuModuleNVX & operator=( VkCuModuleNVX cuModuleNVX ) VULKAN_HPP_NOEXCEPT - { - m_cuModuleNVX = cuModuleNVX; - return *this; - } -#endif - - CuModuleNVX & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_cuModuleNVX = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CuModuleNVX const & ) const = default; -#else - bool operator==( CuModuleNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_cuModuleNVX == rhs.m_cuModuleNVX; - } - - bool operator!=( CuModuleNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_cuModuleNVX != rhs.m_cuModuleNVX; - } - - bool operator<( CuModuleNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_cuModuleNVX < rhs.m_cuModuleNVX; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkCuModuleNVX() const VULKAN_HPP_NOEXCEPT - { - return m_cuModuleNVX; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_cuModuleNVX != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_cuModuleNVX == VK_NULL_HANDLE; - } - - private: - VkCuModuleNVX m_cuModuleNVX = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CuModuleNVX ) == sizeof( VkCuModuleNVX ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CuModuleNVX is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::CuModuleNVX; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CuModuleNVX; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::CuModuleNVX; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DescriptorPool - { - public: - using CType = VkDescriptorPool; - using NativeType = VkDescriptorPool; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorPool; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorPool; - - public: - VULKAN_HPP_CONSTEXPR DescriptorPool() = default; - VULKAN_HPP_CONSTEXPR DescriptorPool( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DescriptorPool( VkDescriptorPool descriptorPool ) VULKAN_HPP_NOEXCEPT - : m_descriptorPool( descriptorPool ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DescriptorPool & operator=( VkDescriptorPool descriptorPool ) VULKAN_HPP_NOEXCEPT - { - m_descriptorPool = descriptorPool; - return *this; - } -#endif - - DescriptorPool & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_descriptorPool = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorPool const & ) const = default; -#else - bool operator==( DescriptorPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool == rhs.m_descriptorPool; - } - - bool operator!=( DescriptorPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool != rhs.m_descriptorPool; - } - - bool operator<( DescriptorPool const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool < rhs.m_descriptorPool; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDescriptorPool() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool == VK_NULL_HANDLE; - } - - private: - VkDescriptorPool m_descriptorPool = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorPool ) == sizeof( VkDescriptorPool ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorPool is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DescriptorPool; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorPool; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorPool; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DescriptorSetLayout - { - public: - using CType = VkDescriptorSetLayout; - using NativeType = VkDescriptorSetLayout; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorSetLayout; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSetLayout; - - public: - VULKAN_HPP_CONSTEXPR DescriptorSetLayout() = default; - VULKAN_HPP_CONSTEXPR DescriptorSetLayout( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DescriptorSetLayout( VkDescriptorSetLayout descriptorSetLayout ) VULKAN_HPP_NOEXCEPT - : m_descriptorSetLayout( descriptorSetLayout ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DescriptorSetLayout & operator=( VkDescriptorSetLayout descriptorSetLayout ) VULKAN_HPP_NOEXCEPT - { - m_descriptorSetLayout = descriptorSetLayout; - return *this; - } -#endif - - DescriptorSetLayout & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_descriptorSetLayout = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetLayout const & ) const = default; -#else - bool operator==( DescriptorSetLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout == rhs.m_descriptorSetLayout; - } - - bool operator!=( DescriptorSetLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout != rhs.m_descriptorSetLayout; - } - - bool operator<( DescriptorSetLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout < rhs.m_descriptorSetLayout; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDescriptorSetLayout() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout == VK_NULL_HANDLE; - } - - private: - VkDescriptorSetLayout m_descriptorSetLayout = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetLayout ) == sizeof( VkDescriptorSetLayout ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorSetLayout is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DescriptorSetLayout; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorSetLayout; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DescriptorSetLayout; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Framebuffer - { - public: - using CType = VkFramebuffer; - using NativeType = VkFramebuffer; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eFramebuffer; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFramebuffer; - - public: - VULKAN_HPP_CONSTEXPR Framebuffer() = default; - VULKAN_HPP_CONSTEXPR Framebuffer( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Framebuffer( VkFramebuffer framebuffer ) VULKAN_HPP_NOEXCEPT - : m_framebuffer( framebuffer ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Framebuffer & operator=( VkFramebuffer framebuffer ) VULKAN_HPP_NOEXCEPT - { - m_framebuffer = framebuffer; - return *this; - } -#endif - - Framebuffer & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_framebuffer = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Framebuffer const & ) const = default; -#else - bool operator==( Framebuffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer == rhs.m_framebuffer; - } - - bool operator!=( Framebuffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer != rhs.m_framebuffer; - } - - bool operator<( Framebuffer const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer < rhs.m_framebuffer; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkFramebuffer() const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer == VK_NULL_HANDLE; - } - - private: - VkFramebuffer m_framebuffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Framebuffer ) == sizeof( VkFramebuffer ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Framebuffer is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Framebuffer; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Framebuffer; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Framebuffer; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class IndirectCommandsLayoutNV - { - public: - using CType = VkIndirectCommandsLayoutNV; - using NativeType = VkIndirectCommandsLayoutNV; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eIndirectCommandsLayoutNV; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutNV() = default; - VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutNV( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - IndirectCommandsLayoutNV( VkIndirectCommandsLayoutNV indirectCommandsLayoutNV ) VULKAN_HPP_NOEXCEPT - : m_indirectCommandsLayoutNV( indirectCommandsLayoutNV ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - IndirectCommandsLayoutNV & operator=( VkIndirectCommandsLayoutNV indirectCommandsLayoutNV ) VULKAN_HPP_NOEXCEPT - { - m_indirectCommandsLayoutNV = indirectCommandsLayoutNV; - return *this; - } -#endif - - IndirectCommandsLayoutNV & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_indirectCommandsLayoutNV = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( IndirectCommandsLayoutNV const & ) const = default; -#else - bool operator==( IndirectCommandsLayoutNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayoutNV == rhs.m_indirectCommandsLayoutNV; - } - - bool operator!=( IndirectCommandsLayoutNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayoutNV != rhs.m_indirectCommandsLayoutNV; - } - - bool operator<( IndirectCommandsLayoutNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayoutNV < rhs.m_indirectCommandsLayoutNV; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkIndirectCommandsLayoutNV() const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayoutNV; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayoutNV != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayoutNV == VK_NULL_HANDLE; - } - - private: - VkIndirectCommandsLayoutNV m_indirectCommandsLayoutNV = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV ) == - sizeof( VkIndirectCommandsLayoutNV ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "IndirectCommandsLayoutNV is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class PrivateDataSlot - { - public: - using CType = VkPrivateDataSlot; - using NativeType = VkPrivateDataSlot; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePrivateDataSlot; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR PrivateDataSlot() = default; - VULKAN_HPP_CONSTEXPR PrivateDataSlot( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT PrivateDataSlot( VkPrivateDataSlot privateDataSlot ) VULKAN_HPP_NOEXCEPT - : m_privateDataSlot( privateDataSlot ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - PrivateDataSlot & operator=( VkPrivateDataSlot privateDataSlot ) VULKAN_HPP_NOEXCEPT - { - m_privateDataSlot = privateDataSlot; - return *this; - } -#endif - - PrivateDataSlot & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_privateDataSlot = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PrivateDataSlot const & ) const = default; -#else - bool operator==( PrivateDataSlot const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot == rhs.m_privateDataSlot; - } - - bool operator!=( PrivateDataSlot const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot != rhs.m_privateDataSlot; - } - - bool operator<( PrivateDataSlot const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot < rhs.m_privateDataSlot; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPrivateDataSlot() const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot == VK_NULL_HANDLE; - } - - private: - VkPrivateDataSlot m_privateDataSlot = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PrivateDataSlot ) == sizeof( VkPrivateDataSlot ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PrivateDataSlot is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::PrivateDataSlot; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PrivateDataSlot; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - using PrivateDataSlotEXT = PrivateDataSlot; - - class RenderPass - { - public: - using CType = VkRenderPass; - using NativeType = VkRenderPass; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eRenderPass; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eRenderPass; - - public: - VULKAN_HPP_CONSTEXPR RenderPass() = default; - VULKAN_HPP_CONSTEXPR RenderPass( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT RenderPass( VkRenderPass renderPass ) VULKAN_HPP_NOEXCEPT : m_renderPass( renderPass ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - RenderPass & operator=( VkRenderPass renderPass ) VULKAN_HPP_NOEXCEPT - { - m_renderPass = renderPass; - return *this; - } -#endif - - RenderPass & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_renderPass = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPass const & ) const = default; -#else - bool operator==( RenderPass const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_renderPass == rhs.m_renderPass; - } - - bool operator!=( RenderPass const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_renderPass != rhs.m_renderPass; - } - - bool operator<( RenderPass const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_renderPass < rhs.m_renderPass; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkRenderPass() const VULKAN_HPP_NOEXCEPT - { - return m_renderPass; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_renderPass != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_renderPass == VK_NULL_HANDLE; - } - - private: - VkRenderPass m_renderPass = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPass ) == sizeof( VkRenderPass ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RenderPass is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::RenderPass; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::RenderPass; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::RenderPass; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class Sampler - { - public: - using CType = VkSampler; - using NativeType = VkSampler; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSampler; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSampler; - - public: - VULKAN_HPP_CONSTEXPR Sampler() = default; - VULKAN_HPP_CONSTEXPR Sampler( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Sampler( VkSampler sampler ) VULKAN_HPP_NOEXCEPT : m_sampler( sampler ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Sampler & operator=( VkSampler sampler ) VULKAN_HPP_NOEXCEPT - { - m_sampler = sampler; - return *this; - } -#endif - - Sampler & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_sampler = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Sampler const & ) const = default; -#else - bool operator==( Sampler const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_sampler == rhs.m_sampler; - } - - bool operator!=( Sampler const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_sampler != rhs.m_sampler; - } - - bool operator<( Sampler const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_sampler < rhs.m_sampler; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkSampler() const VULKAN_HPP_NOEXCEPT - { - return m_sampler; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_sampler != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_sampler == VK_NULL_HANDLE; - } - - private: - VkSampler m_sampler = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Sampler ) == sizeof( VkSampler ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Sampler is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Sampler; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Sampler; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Sampler; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class SamplerYcbcrConversion - { - public: - using CType = VkSamplerYcbcrConversion; - using NativeType = VkSamplerYcbcrConversion; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSamplerYcbcrConversion; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSamplerYcbcrConversion; - - public: - VULKAN_HPP_CONSTEXPR SamplerYcbcrConversion() = default; - VULKAN_HPP_CONSTEXPR SamplerYcbcrConversion( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - SamplerYcbcrConversion( VkSamplerYcbcrConversion samplerYcbcrConversion ) VULKAN_HPP_NOEXCEPT - : m_samplerYcbcrConversion( samplerYcbcrConversion ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - SamplerYcbcrConversion & operator=( VkSamplerYcbcrConversion samplerYcbcrConversion ) VULKAN_HPP_NOEXCEPT - { - m_samplerYcbcrConversion = samplerYcbcrConversion; - return *this; - } -#endif - - SamplerYcbcrConversion & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_samplerYcbcrConversion = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerYcbcrConversion const & ) const = default; -#else - bool operator==( SamplerYcbcrConversion const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_samplerYcbcrConversion == rhs.m_samplerYcbcrConversion; - } - - bool operator!=( SamplerYcbcrConversion const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_samplerYcbcrConversion != rhs.m_samplerYcbcrConversion; - } - - bool operator<( SamplerYcbcrConversion const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_samplerYcbcrConversion < rhs.m_samplerYcbcrConversion; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkSamplerYcbcrConversion() const VULKAN_HPP_NOEXCEPT - { - return m_samplerYcbcrConversion; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_samplerYcbcrConversion != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_samplerYcbcrConversion == VK_NULL_HANDLE; - } - - private: - VkSamplerYcbcrConversion m_samplerYcbcrConversion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ) == - sizeof( VkSamplerYcbcrConversion ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SamplerYcbcrConversion is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - using SamplerYcbcrConversionKHR = SamplerYcbcrConversion; - - class ShaderModule - { - public: - using CType = VkShaderModule; - using NativeType = VkShaderModule; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eShaderModule; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eShaderModule; - - public: - VULKAN_HPP_CONSTEXPR ShaderModule() = default; - VULKAN_HPP_CONSTEXPR ShaderModule( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT ShaderModule( VkShaderModule shaderModule ) VULKAN_HPP_NOEXCEPT - : m_shaderModule( shaderModule ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - ShaderModule & operator=( VkShaderModule shaderModule ) VULKAN_HPP_NOEXCEPT - { - m_shaderModule = shaderModule; - return *this; - } -#endif - - ShaderModule & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_shaderModule = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ShaderModule const & ) const = default; -#else - bool operator==( ShaderModule const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule == rhs.m_shaderModule; - } - - bool operator!=( ShaderModule const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule != rhs.m_shaderModule; - } - - bool operator<( ShaderModule const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule < rhs.m_shaderModule; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkShaderModule() const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule == VK_NULL_HANDLE; - } - - private: - VkShaderModule m_shaderModule = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ShaderModule ) == sizeof( VkShaderModule ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ShaderModule is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::ShaderModule; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::ShaderModule; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::ShaderModule; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class ValidationCacheEXT - { - public: - using CType = VkValidationCacheEXT; - using NativeType = VkValidationCacheEXT; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eValidationCacheEXT; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eValidationCacheEXT; - - public: - VULKAN_HPP_CONSTEXPR ValidationCacheEXT() = default; - VULKAN_HPP_CONSTEXPR ValidationCacheEXT( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT ValidationCacheEXT( VkValidationCacheEXT validationCacheEXT ) VULKAN_HPP_NOEXCEPT - : m_validationCacheEXT( validationCacheEXT ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - ValidationCacheEXT & operator=( VkValidationCacheEXT validationCacheEXT ) VULKAN_HPP_NOEXCEPT - { - m_validationCacheEXT = validationCacheEXT; - return *this; - } -#endif - - ValidationCacheEXT & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_validationCacheEXT = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ValidationCacheEXT const & ) const = default; -#else - bool operator==( ValidationCacheEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_validationCacheEXT == rhs.m_validationCacheEXT; - } - - bool operator!=( ValidationCacheEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_validationCacheEXT != rhs.m_validationCacheEXT; - } - - bool operator<( ValidationCacheEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_validationCacheEXT < rhs.m_validationCacheEXT; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkValidationCacheEXT() const VULKAN_HPP_NOEXCEPT - { - return m_validationCacheEXT; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_validationCacheEXT != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_validationCacheEXT == VK_NULL_HANDLE; - } - - private: - VkValidationCacheEXT m_validationCacheEXT = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ValidationCacheEXT ) == sizeof( VkValidationCacheEXT ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ValidationCacheEXT is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::ValidationCacheEXT; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::ValidationCacheEXT; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::ValidationCacheEXT; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - class VideoSessionParametersKHR - { - public: - using CType = VkVideoSessionParametersKHR; - using NativeType = VkVideoSessionParametersKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eVideoSessionParametersKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VULKAN_HPP_CONSTEXPR VideoSessionParametersKHR() = default; - VULKAN_HPP_CONSTEXPR VideoSessionParametersKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT - VideoSessionParametersKHR( VkVideoSessionParametersKHR videoSessionParametersKHR ) VULKAN_HPP_NOEXCEPT - : m_videoSessionParametersKHR( videoSessionParametersKHR ) - {} - -# if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - VideoSessionParametersKHR & operator=( VkVideoSessionParametersKHR videoSessionParametersKHR ) VULKAN_HPP_NOEXCEPT - { - m_videoSessionParametersKHR = videoSessionParametersKHR; - return *this; - } -# endif - - VideoSessionParametersKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_videoSessionParametersKHR = {}; - return *this; - } - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoSessionParametersKHR const & ) const = default; -# else - bool operator==( VideoSessionParametersKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParametersKHR == rhs.m_videoSessionParametersKHR; - } - - bool operator!=( VideoSessionParametersKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParametersKHR != rhs.m_videoSessionParametersKHR; - } - - bool operator<( VideoSessionParametersKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParametersKHR < rhs.m_videoSessionParametersKHR; - } -# endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkVideoSessionParametersKHR() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParametersKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParametersKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParametersKHR == VK_NULL_HANDLE; - } - - private: - VkVideoSessionParametersKHR m_videoSessionParametersKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR ) == - sizeof( VkVideoSessionParametersKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoSessionParametersKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - class Queue - { - public: - using CType = VkQueue; - using NativeType = VkQueue; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eQueue; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueue; - - public: - VULKAN_HPP_CONSTEXPR Queue() = default; - VULKAN_HPP_CONSTEXPR Queue( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Queue( VkQueue queue ) VULKAN_HPP_NOEXCEPT : m_queue( queue ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Queue & operator=( VkQueue queue ) VULKAN_HPP_NOEXCEPT - { - m_queue = queue; - return *this; - } -#endif - - Queue & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_queue = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Queue const & ) const = default; -#else - bool operator==( Queue const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_queue == rhs.m_queue; - } - - bool operator!=( Queue const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_queue != rhs.m_queue; - } - - bool operator<( Queue const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_queue < rhs.m_queue; - } -#endif - - //=== VK_VERSION_1_0 === - - template - VULKAN_HPP_NODISCARD Result - submit( uint32_t submitCount, - const VULKAN_HPP_NAMESPACE::SubmitInfo * pSubmits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - submit( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - waitIdle( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - waitIdle( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - bindSparse( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindSparseInfo * pBindInfo, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindSparse( ArrayProxy const & bindInfo, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_3 === - - template - VULKAN_HPP_NODISCARD Result - submit2( uint32_t submitCount, - const VULKAN_HPP_NAMESPACE::SubmitInfo2 * pSubmits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - submit2( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_swapchain === - - template - VULKAN_HPP_NODISCARD Result - presentKHR( const VULKAN_HPP_NAMESPACE::PresentInfoKHR * pPresentInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result presentKHR( const VULKAN_HPP_NAMESPACE::PresentInfoKHR & presentInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_debug_utils === - - template - void - beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void endDebugUtilsLabelEXT( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void - insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pLabelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_device_diagnostic_checkpoints === - - template - void getCheckpointDataNV( uint32_t * pCheckpointDataCount, - VULKAN_HPP_NAMESPACE::CheckpointDataNV * pCheckpointData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getCheckpointDataNV( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = CheckpointDataNVAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getCheckpointDataNV( CheckpointDataNVAllocator & checkpointDataNVAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_INTEL_performance_query === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result setPerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setPerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_synchronization2 === - - template - VULKAN_HPP_NODISCARD Result - submit2KHR( uint32_t submitCount, - const VULKAN_HPP_NAMESPACE::SubmitInfo2 * pSubmits, - VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - submit2KHR( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getCheckpointData2NV( uint32_t * pCheckpointDataCount, - VULKAN_HPP_NAMESPACE::CheckpointData2NV * pCheckpointData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getCheckpointData2NV( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = CheckpointData2NVAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getCheckpointData2NV( CheckpointData2NVAllocator & checkpointData2NVAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkQueue() const VULKAN_HPP_NOEXCEPT - { - return m_queue; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_queue != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_queue == VK_NULL_HANDLE; - } - - private: - VkQueue m_queue = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Queue ) == sizeof( VkQueue ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Queue is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Queue; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Queue; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Queue; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - -#ifndef VULKAN_HPP_NO_SMART_HANDLE - class Device; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueAccelerationStructureKHR = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueAccelerationStructureNV = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueBuffer = UniqueHandle; -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueBufferCollectionFUCHSIA = UniqueHandle; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueBufferView = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = PoolFree; - }; - using UniqueCommandBuffer = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueCommandPool = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueCuFunctionNVX = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueCuModuleNVX = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDeferredOperationKHR = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDescriptorPool = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = PoolFree; - }; - using UniqueDescriptorSet = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDescriptorSetLayout = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDescriptorUpdateTemplate = UniqueHandle; - using UniqueDescriptorUpdateTemplateKHR = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectFree; - }; - using UniqueDeviceMemory = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueEvent = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueFence = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueFramebuffer = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueImage = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueImageView = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueIndirectCommandsLayoutNV = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniquePipeline = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniquePipelineCache = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniquePipelineLayout = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniquePrivateDataSlot = UniqueHandle; - using UniquePrivateDataSlotEXT = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueQueryPool = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueRenderPass = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueSampler = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueSamplerYcbcrConversion = UniqueHandle; - using UniqueSamplerYcbcrConversionKHR = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueSemaphore = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueShaderModule = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueSwapchainKHR = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueValidationCacheEXT = UniqueHandle; -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueVideoSessionKHR = UniqueHandle; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueVideoSessionParametersKHR = UniqueHandle; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ -#endif /*VULKAN_HPP_NO_SMART_HANDLE*/ - - class Device - { - public: - using CType = VkDevice; - using NativeType = VkDevice; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDevice; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDevice; - - public: - VULKAN_HPP_CONSTEXPR Device() = default; - VULKAN_HPP_CONSTEXPR Device( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Device( VkDevice device ) VULKAN_HPP_NOEXCEPT : m_device( device ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Device & operator=( VkDevice device ) VULKAN_HPP_NOEXCEPT - { - m_device = device; - return *this; - } -#endif - - Device & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_device = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Device const & ) const = default; -#else - bool operator==( Device const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_device == rhs.m_device; - } - - bool operator!=( Device const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_device != rhs.m_device; - } - - bool operator<( Device const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_device < rhs.m_device; - } -#endif - - //=== VK_VERSION_1_0 === - - template - PFN_vkVoidFunction - getProcAddr( const char * pName, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - PFN_vkVoidFunction - getProcAddr( const std::string & name, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getQueue( uint32_t queueFamilyIndex, - uint32_t queueIndex, - VULKAN_HPP_NAMESPACE::Queue * pQueue, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Queue - getQueue( uint32_t queueFamilyIndex, - uint32_t queueIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - waitIdle( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - waitIdle( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - allocateMemory( const VULKAN_HPP_NAMESPACE::MemoryAllocateInfo * pAllocateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DeviceMemory * pMemory, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - allocateMemory( const VULKAN_HPP_NAMESPACE::MemoryAllocateInfo & allocateInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - allocateMemoryUnique( const VULKAN_HPP_NAMESPACE::MemoryAllocateInfo & allocateInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void freeMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void freeMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void free( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void free( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - mapMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - VULKAN_HPP_NAMESPACE::MemoryMapFlags flags, - void ** ppData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - mapMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - VULKAN_HPP_NAMESPACE::MemoryMapFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void unmapMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD Result - flushMappedMemoryRanges( uint32_t memoryRangeCount, - const VULKAN_HPP_NAMESPACE::MappedMemoryRange * pMemoryRanges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - flushMappedMemoryRanges( ArrayProxy const & memoryRanges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result invalidateMappedMemoryRanges( - uint32_t memoryRangeCount, - const VULKAN_HPP_NAMESPACE::MappedMemoryRange * pMemoryRanges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - invalidateMappedMemoryRanges( ArrayProxy const & memoryRanges, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getMemoryCommitment( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize * pCommittedMemoryInBytes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceSize - getMemoryCommitment( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - bindBufferMemory( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindBufferMemory( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - bindImageMemory( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindImageMemory( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getBufferMemoryRequirements( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::MemoryRequirements * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements getBufferMemoryRequirements( - VULKAN_HPP_NAMESPACE::Buffer buffer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageMemoryRequirements( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::MemoryRequirements * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements getImageMemoryRequirements( - VULKAN_HPP_NAMESPACE::Image image, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageSparseMemoryRequirements( - VULKAN_HPP_NAMESPACE::Image image, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements * pSparseMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements( VULKAN_HPP_NAMESPACE::Image image, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageMemoryRequirementsAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements( VULKAN_HPP_NAMESPACE::Image image, - SparseImageMemoryRequirementsAllocator & sparseImageMemoryRequirementsAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createFence( const VULKAN_HPP_NAMESPACE::FenceCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Fence * pFence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createFence( const VULKAN_HPP_NAMESPACE::FenceCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createFenceUnique( const VULKAN_HPP_NAMESPACE::FenceCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyFence( VULKAN_HPP_NAMESPACE::Fence fence, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyFence( VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Fence fence, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Fence fence, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - resetFences( uint32_t fenceCount, - const VULKAN_HPP_NAMESPACE::Fence * pFences, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - resetFences( ArrayProxy const & fences, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - getFenceStatus( VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD Result getFenceStatus( VULKAN_HPP_NAMESPACE::Fence fence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - waitForFences( uint32_t fenceCount, - const VULKAN_HPP_NAMESPACE::Fence * pFences, - VULKAN_HPP_NAMESPACE::Bool32 waitAll, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result waitForFences( ArrayProxy const & fences, - VULKAN_HPP_NAMESPACE::Bool32 waitAll, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Semaphore * pSemaphore, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createSemaphoreUnique( const VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroySemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroySemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createEvent( const VULKAN_HPP_NAMESPACE::EventCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Event * pEvent, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createEvent( const VULKAN_HPP_NAMESPACE::EventCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createEventUnique( const VULKAN_HPP_NAMESPACE::EventCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyEvent( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyEvent( VULKAN_HPP_NAMESPACE::Event event VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Event event, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - getEventStatus( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD Result getEventStatus( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - setEvent( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setEvent( VULKAN_HPP_NAMESPACE::Event event, Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - resetEvent( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - resetEvent( VULKAN_HPP_NAMESPACE::Event event, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createQueryPool( const VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::QueryPool * pQueryPool, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createQueryPool( const VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createQueryPoolUnique( const VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - void * pData, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - getQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - ArrayProxy const & data, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD ResultValue> - getQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue - getQueryPoolResult( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createBuffer( const VULKAN_HPP_NAMESPACE::BufferCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Buffer * pBuffer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createBuffer( const VULKAN_HPP_NAMESPACE::BufferCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createBufferUnique( const VULKAN_HPP_NAMESPACE::BufferCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Buffer buffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Buffer buffer, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createBufferView( const VULKAN_HPP_NAMESPACE::BufferViewCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::BufferView * pView, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createBufferView( const VULKAN_HPP_NAMESPACE::BufferViewCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createBufferViewUnique( const VULKAN_HPP_NAMESPACE::BufferViewCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyBufferView( VULKAN_HPP_NAMESPACE::BufferView bufferView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyBufferView( VULKAN_HPP_NAMESPACE::BufferView bufferView VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::BufferView bufferView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::BufferView bufferView, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createImage( const VULKAN_HPP_NAMESPACE::ImageCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Image * pImage, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createImage( const VULKAN_HPP_NAMESPACE::ImageCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createImageUnique( const VULKAN_HPP_NAMESPACE::ImageCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyImage( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyImage( VULKAN_HPP_NAMESPACE::Image image VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Image image, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageSubresourceLayout( VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::ImageSubresource * pSubresource, - VULKAN_HPP_NAMESPACE::SubresourceLayout * pLayout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::SubresourceLayout getImageSubresourceLayout( - VULKAN_HPP_NAMESPACE::Image image, - const VULKAN_HPP_NAMESPACE::ImageSubresource & subresource, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createImageView( const VULKAN_HPP_NAMESPACE::ImageViewCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::ImageView * pView, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createImageView( const VULKAN_HPP_NAMESPACE::ImageViewCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createImageViewUnique( const VULKAN_HPP_NAMESPACE::ImageViewCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyImageView( VULKAN_HPP_NAMESPACE::ImageView imageView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyImageView( VULKAN_HPP_NAMESPACE::ImageView imageView VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::ImageView imageView, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::ImageView imageView, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createShaderModule( const VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::ShaderModule * pShaderModule, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createShaderModule( const VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createShaderModuleUnique( const VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyShaderModule( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyShaderModule( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::ShaderModule shaderModule, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createPipelineCache( const VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PipelineCache * pPipelineCache, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createPipelineCache( const VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createPipelineCacheUnique( const VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyPipelineCache( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyPipelineCache( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getPipelineCacheData( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - size_t * pDataSize, - void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getPipelineCacheData( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = Uint8_tAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getPipelineCacheData( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - Uint8_tAllocator & uint8_tAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - mergePipelineCaches( VULKAN_HPP_NAMESPACE::PipelineCache dstCache, - uint32_t srcCacheCount, - const VULKAN_HPP_NAMESPACE::PipelineCache * pSrcCaches, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - mergePipelineCaches( VULKAN_HPP_NAMESPACE::PipelineCache dstCache, - ArrayProxy const & srcCaches, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createGraphicsPipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD ResultValue> - createGraphicsPipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue> - createGraphicsPipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue - createGraphicsPipeline( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createGraphicsPipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template >, - typename B = PipelineAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createGraphicsPipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue> - createGraphicsPipelineUnique( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createComputePipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD ResultValue> - createComputePipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue> - createComputePipelines( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue - createComputePipeline( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createComputePipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template >, - typename B = PipelineAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createComputePipelinesUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue> - createComputePipelineUnique( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createPipelineLayout( const VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PipelineLayout * pPipelineLayout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createPipelineLayout( const VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createPipelineLayoutUnique( const VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyPipelineLayout( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - destroyPipelineLayout( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createSampler( const VULKAN_HPP_NAMESPACE::SamplerCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Sampler * pSampler, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createSampler( const VULKAN_HPP_NAMESPACE::SamplerCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createSamplerUnique( const VULKAN_HPP_NAMESPACE::SamplerCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroySampler( VULKAN_HPP_NAMESPACE::Sampler sampler, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroySampler( VULKAN_HPP_NAMESPACE::Sampler sampler VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Sampler sampler, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Sampler sampler, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result createDescriptorSetLayout( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createDescriptorSetLayout( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDescriptorSetLayoutUnique( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDescriptorSetLayout( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyDescriptorSetLayout( - VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createDescriptorPool( const VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorPool * pDescriptorPool, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createDescriptorPool( const VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDescriptorPoolUnique( const VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - destroyDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Result resetDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - VULKAN_HPP_NAMESPACE::DescriptorPoolResetFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - resetDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - VULKAN_HPP_NAMESPACE::DescriptorPoolResetFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - allocateDescriptorSets( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo * pAllocateInfo, - VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType>::type - allocateDescriptorSets( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DescriptorSetAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType>::type - allocateDescriptorSets( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - DescriptorSetAllocator & descriptorSetAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, DescriptorSetAllocator>>::type - allocateDescriptorSetsUnique( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename DescriptorSetAllocator = std::allocator>, - typename B = DescriptorSetAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, DescriptorSetAllocator>>::type - allocateDescriptorSetsUnique( const VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo & allocateInfo, - DescriptorSetAllocator & descriptorSetAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - Result freeDescriptorSets( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - uint32_t descriptorSetCount, - const VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - freeDescriptorSets( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - ArrayProxy const & descriptorSets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - Result free( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - uint32_t descriptorSetCount, - const VULKAN_HPP_NAMESPACE::DescriptorSet * pDescriptorSets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - free( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool, - ArrayProxy const & descriptorSets, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void updateDescriptorSets( uint32_t descriptorWriteCount, - const VULKAN_HPP_NAMESPACE::WriteDescriptorSet * pDescriptorWrites, - uint32_t descriptorCopyCount, - const VULKAN_HPP_NAMESPACE::CopyDescriptorSet * pDescriptorCopies, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void updateDescriptorSets( ArrayProxy const & descriptorWrites, - ArrayProxy const & descriptorCopies, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createFramebuffer( const VULKAN_HPP_NAMESPACE::FramebufferCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Framebuffer * pFramebuffer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createFramebuffer( const VULKAN_HPP_NAMESPACE::FramebufferCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createFramebufferUnique( const VULKAN_HPP_NAMESPACE::FramebufferCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::RenderPass * pRenderPass, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createRenderPassUnique( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - getRenderAreaGranularity( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - VULKAN_HPP_NAMESPACE::Extent2D * pGranularity, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Extent2D - getRenderAreaGranularity( VULKAN_HPP_NAMESPACE::RenderPass renderPass, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createCommandPool( const VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::CommandPool * pCommandPool, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createCommandPool( const VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createCommandPoolUnique( const VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - resetCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolResetFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - resetCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolResetFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - allocateCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo * pAllocateInfo, - VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType>::type - allocateCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = CommandBufferAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType>::type - allocateCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - CommandBufferAllocator & commandBufferAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, CommandBufferAllocator>>::type - allocateCommandBuffersUnique( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename CommandBufferAllocator = std::allocator>, - typename B = CommandBufferAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, CommandBufferAllocator>>::type - allocateCommandBuffersUnique( const VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo & allocateInfo, - CommandBufferAllocator & commandBufferAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void freeCommandBuffers( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - uint32_t commandBufferCount, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void freeCommandBuffers( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - ArrayProxy const & commandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void free( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - uint32_t commandBufferCount, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void free( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - ArrayProxy const & commandBuffers, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_1 === - - template - VULKAN_HPP_NODISCARD Result - bindBufferMemory2( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindBufferMemoryInfo * pBindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindBufferMemory2( ArrayProxy const & bindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - bindImageMemory2( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindImageMemoryInfo * pBindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindImageMemory2( ArrayProxy const & bindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getGroupPeerMemoryFeatures( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags * pPeerMemoryFeatures, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags getGroupPeerMemoryFeatures( - uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getBufferMemoryRequirements2( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageSparseMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageMemoryRequirements2Allocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void trimCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void getQueue2( const VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 * pQueueInfo, - VULKAN_HPP_NAMESPACE::Queue * pQueue, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Queue - getQueue2( const VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 & queueInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result createSamplerYcbcrConversion( - const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion * pYcbcrConversion, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createSamplerYcbcrConversion( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createSamplerYcbcrConversionUnique( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroySamplerYcbcrConversion( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result createDescriptorUpdateTemplate( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate * pDescriptorUpdateTemplate, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - createDescriptorUpdateTemplate( const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDescriptorUpdateTemplateUnique( const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDescriptorUpdateTemplate( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyDescriptorUpdateTemplate( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void updateDescriptorSetWithTemplate( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void updateDescriptorSetWithTemplate( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getDescriptorSetLayoutSupport( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo * pCreateInfo, - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport * pSupport, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport getDescriptorSetLayoutSupport( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getDescriptorSetLayoutSupport( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_2 === - - template - VULKAN_HPP_NODISCARD Result - createRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::RenderPass * pRenderPass, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createRenderPass2Unique( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void resetQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD Result - getSemaphoreCounterValue( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - uint64_t * pValue, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSemaphoreCounterValue( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - waitSemaphores( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo * pWaitInfo, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result waitSemaphores( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - signalSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo * pSignalInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - signalSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - DeviceAddress - getBufferAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - DeviceAddress - getBufferAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - uint64_t getBufferOpaqueCaptureAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - uint64_t getBufferOpaqueCaptureAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - uint64_t getMemoryOpaqueCaptureAddress( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - uint64_t getMemoryOpaqueCaptureAddress( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_3 === - - template - VULKAN_HPP_NODISCARD Result - createPrivateDataSlot( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PrivateDataSlot * pPrivateDataSlot, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createPrivateDataSlot( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - createPrivateDataSlotUnique( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - destroyPrivateDataSlot( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyPrivateDataSlot( - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - setPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - setPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD uint64_t - getPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getBufferMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageSparseMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageMemoryRequirements2Allocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_swapchain === - - template - VULKAN_HPP_NODISCARD Result - createSwapchainKHR( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createSwapchainKHR( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createSwapchainKHRUnique( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroySwapchainKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroySwapchainKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getSwapchainImagesKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint32_t * pSwapchainImageCount, - VULKAN_HPP_NAMESPACE::Image * pSwapchainImages, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSwapchainImagesKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = ImageAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSwapchainImagesKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - ImageAllocator & imageAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - acquireNextImageKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t timeout, - VULKAN_HPP_NAMESPACE::Semaphore semaphore, - VULKAN_HPP_NAMESPACE::Fence fence, - uint32_t * pImageIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD ResultValue - acquireNextImageKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t timeout, - VULKAN_HPP_NAMESPACE::Semaphore semaphore VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getGroupPresentCapabilitiesKHR( - VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR * pDeviceGroupPresentCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getGroupPresentCapabilitiesKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getGroupSurfacePresentModesKHR( - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR * pModes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getGroupSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - acquireNextImage2KHR( const VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR * pAcquireInfo, - uint32_t * pImageIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD ResultValue - acquireNextImage2KHR( const VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR & acquireInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_display_swapchain === - - template - VULKAN_HPP_NODISCARD Result createSharedSwapchainsKHR( - uint32_t swapchainCount, - const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType>::type - createSharedSwapchainsKHR( ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SwapchainKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType>::type - createSharedSwapchainsKHR( ArrayProxy const & createInfos, - Optional allocator, - SwapchainKHRAllocator & swapchainKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createSharedSwapchainKHR( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, SwapchainKHRAllocator>>::type - createSharedSwapchainsKHRUnique( - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template >, - typename B = SwapchainKHRAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, SwapchainKHRAllocator>>::type - createSharedSwapchainsKHRUnique( - ArrayProxy const & createInfos, - Optional allocator, - SwapchainKHRAllocator & swapchainKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - createSharedSwapchainKHRUnique( const VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_debug_marker === - - template - VULKAN_HPP_NODISCARD Result debugMarkerSetObjectTagEXT( - const VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT * pTagInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - debugMarkerSetObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT & tagInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result debugMarkerSetObjectNameEXT( - const VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT * pNameInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - debugMarkerSetObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT & nameInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - template - VULKAN_HPP_NODISCARD Result - createVideoSessionKHR( const VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::VideoSessionKHR * pVideoSession, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createVideoSessionKHR( const VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createVideoSessionKHRUnique( const VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - destroyVideoSessionKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void - destroyVideoSessionKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getVideoSessionMemoryRequirementsKHR( - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - uint32_t * pVideoSessionMemoryRequirementsCount, - VULKAN_HPP_NAMESPACE::VideoGetMemoryPropertiesKHR * pVideoSessionMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getVideoSessionMemoryRequirementsKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename VideoGetMemoryPropertiesKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = VideoGetMemoryPropertiesKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getVideoSessionMemoryRequirementsKHR( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - VideoGetMemoryPropertiesKHRAllocator & videoGetMemoryPropertiesKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result bindVideoSessionMemoryKHR( - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - uint32_t videoSessionBindMemoryCount, - const VULKAN_HPP_NAMESPACE::VideoBindMemoryKHR * pVideoSessionBindMemories, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type bindVideoSessionMemoryKHR( - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession, - ArrayProxy const & videoSessionBindMemories, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result createVideoSessionParametersKHR( - const VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR * pVideoSessionParameters, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - createVideoSessionParametersKHR( const VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createVideoSessionParametersKHRUnique( - const VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result updateVideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR * pUpdateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - updateVideoSessionParametersKHR( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR & updateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyVideoSessionParametersKHR( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyVideoSessionParametersKHR( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NVX_binary_import === - - template - VULKAN_HPP_NODISCARD Result - createCuModuleNVX( const VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::CuModuleNVX * pModule, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createCuModuleNVX( const VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createCuModuleNVXUnique( const VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createCuFunctionNVX( const VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::CuFunctionNVX * pFunction, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createCuFunctionNVX( const VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createCuFunctionNVXUnique( const VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyCuModuleNVX( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyCuModuleNVX( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::CuModuleNVX module, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyCuFunctionNVX( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyCuFunctionNVX( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::CuFunctionNVX function, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NVX_image_view_handle === - - template - uint32_t - getImageViewHandleNVX( const VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - uint32_t - getImageViewHandleNVX( const VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getImageViewAddressNVX( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getImageViewAddressNVX( VULKAN_HPP_NAMESPACE::ImageView imageView, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_AMD_shader_info === - - template - VULKAN_HPP_NODISCARD Result - getShaderInfoAMD( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType, - size_t * pInfoSize, - void * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getShaderInfoAMD( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = Uint8_tAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getShaderInfoAMD( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType, - Uint8_tAllocator & uint8_tAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - - template - VULKAN_HPP_NODISCARD Result - getMemoryWin32HandleNV( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType, - HANDLE * pHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getMemoryWin32HandleNV( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_device_group === - - template - void getGroupPeerMemoryFeaturesKHR( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags * pPeerMemoryFeatures, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags getGroupPeerMemoryFeaturesKHR( - uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_maintenance1 === - - template - void trimCommandPoolKHR( VULKAN_HPP_NAMESPACE::CommandPool commandPool, - VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - - template - VULKAN_HPP_NODISCARD Result - getMemoryWin32HandleKHR( const VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getMemoryWin32HandleKHR( const VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR & getWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getMemoryWin32HandlePropertiesKHR( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle, - VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR * pMemoryWin32HandleProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getMemoryWin32HandlePropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - - template - VULKAN_HPP_NODISCARD Result - getMemoryFdKHR( const VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR * pGetFdInfo, - int * pFd, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getMemoryFdKHR( const VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR & getFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getMemoryFdPropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - int fd, - VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR * pMemoryFdProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getMemoryFdPropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - int fd, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - - template - VULKAN_HPP_NODISCARD Result importSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR * pImportSemaphoreWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type importSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR & importSemaphoreWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSemaphoreWin32HandleKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR & getWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - - template - VULKAN_HPP_NODISCARD Result - importSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR * pImportSemaphoreFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - importSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR & importSemaphoreFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR * pGetFdInfo, - int * pFd, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR & getFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_descriptor_update_template === - - template - VULKAN_HPP_NODISCARD Result createDescriptorUpdateTemplateKHR( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate * pDescriptorUpdateTemplate, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - createDescriptorUpdateTemplateKHR( const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDescriptorUpdateTemplateKHRUnique( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDescriptorUpdateTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyDescriptorUpdateTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void updateDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - const void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void updateDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorSet descriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_display_control === - - template - VULKAN_HPP_NODISCARD Result - displayPowerControlEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT * pDisplayPowerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - displayPowerControlEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT & displayPowerInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - registerEventEXT( const VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT * pDeviceEventInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Fence * pFence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - registerEventEXT( const VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT & deviceEventInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - registerEventEXTUnique( const VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT & deviceEventInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - registerDisplayEventEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT * pDisplayEventInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Fence * pFence, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - registerDisplayEventEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT & displayEventInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - registerDisplayEventEXTUnique( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT & displayEventInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getSwapchainCounterEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagBitsEXT counter, - uint64_t * pCounterValue, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSwapchainCounterEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagBitsEXT counter, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_GOOGLE_display_timing === - - template - VULKAN_HPP_NODISCARD Result getRefreshCycleDurationGOOGLE( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE * pDisplayTimingProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getRefreshCycleDurationGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getPastPresentationTimingGOOGLE( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint32_t * pPresentationTimingCount, - VULKAN_HPP_NAMESPACE::PastPresentationTimingGOOGLE * pPresentationTimings, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getPastPresentationTimingGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename PastPresentationTimingGOOGLEAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PastPresentationTimingGOOGLEAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getPastPresentationTimingGOOGLE( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - PastPresentationTimingGOOGLEAllocator & pastPresentationTimingGOOGLEAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_hdr_metadata === - - template - void setHdrMetadataEXT( uint32_t swapchainCount, - const VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains, - const VULKAN_HPP_NAMESPACE::HdrMetadataEXT * pMetadata, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void setHdrMetadataEXT( ArrayProxy const & swapchains, - ArrayProxy const & metadata, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_create_renderpass2 === - - template - VULKAN_HPP_NODISCARD Result - createRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::RenderPass * pRenderPass, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createRenderPass2KHRUnique( const VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_shared_presentable_image === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - getSwapchainStatusKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD Result getSwapchainStatusKHR( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - - template - VULKAN_HPP_NODISCARD Result importFenceWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR * pImportFenceWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - importFenceWin32HandleKHR( const VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR & importFenceWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getFenceWin32HandleKHR( const VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR * pGetWin32HandleInfo, - HANDLE * pHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getFenceWin32HandleKHR( const VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR & getWin32HandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - - template - VULKAN_HPP_NODISCARD Result - importFenceFdKHR( const VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR * pImportFenceFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - importFenceFdKHR( const VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR & importFenceFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getFenceFdKHR( const VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR * pGetFdInfo, - int * pFd, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getFenceFdKHR( const VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR & getFdInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_performance_query === - - template - VULKAN_HPP_NODISCARD Result - acquireProfilingLockKHR( const VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - acquireProfilingLockKHR( const VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - releaseProfilingLockKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_debug_utils === - - template - VULKAN_HPP_NODISCARD Result setDebugUtilsObjectNameEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT * pNameInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setDebugUtilsObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT & nameInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result setDebugUtilsObjectTagEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT * pTagInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setDebugUtilsObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT & tagInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - - template - VULKAN_HPP_NODISCARD Result getAndroidHardwareBufferPropertiesANDROID( - const struct AHardwareBuffer * buffer, - VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getMemoryAndroidHardwareBufferANDROID( - const VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID * pInfo, - struct AHardwareBuffer ** pBuffer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getMemoryAndroidHardwareBufferANDROID( - const VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_KHR_get_memory_requirements2 === - - template - void getImageMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getBufferMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageSparseMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageMemoryRequirements2Allocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_acceleration_structure === - - template - VULKAN_HPP_NODISCARD Result createAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructure, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - createAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createAccelerationStructureKHRUnique( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result buildAccelerationStructuresKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - uint32_t infoCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pInfos, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR * const * ppBuildRangeInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Result buildAccelerationStructuresKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - ArrayProxy const & infos, - ArrayProxy const & pBuildRangeInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result copyAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - copyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result copyAccelerationStructureToMemoryKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - copyAccelerationStructureToMemoryKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result copyMemoryToAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - copyMemoryToAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result writeAccelerationStructuresPropertiesKHR( - uint32_t accelerationStructureCount, - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t dataSize, - void * pData, - size_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - ArrayProxy const & data, - size_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t dataSize, - size_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - writeAccelerationStructuresPropertyKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t stride, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - DeviceAddress getAccelerationStructureAddressKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - DeviceAddress getAccelerationStructureAddressKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getAccelerationStructureCompatibilityKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR * pVersionInfo, - VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR * pCompatibility, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR - getAccelerationStructureCompatibilityKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR & versionInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getAccelerationStructureBuildSizesKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildTypeKHR buildType, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR * pBuildInfo, - const uint32_t * pMaxPrimitiveCounts, - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR * pSizeInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR - getAccelerationStructureBuildSizesKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildTypeKHR buildType, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR & buildInfo, - ArrayProxy const & maxPrimitiveCounts VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_sampler_ycbcr_conversion === - - template - VULKAN_HPP_NODISCARD Result createSamplerYcbcrConversionKHR( - const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion * pYcbcrConversion, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createSamplerYcbcrConversionKHR( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createSamplerYcbcrConversionKHRUnique( const VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroySamplerYcbcrConversionKHR( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroySamplerYcbcrConversionKHR( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_bind_memory2 === - - template - VULKAN_HPP_NODISCARD Result - bindBufferMemory2KHR( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindBufferMemoryInfo * pBindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindBufferMemory2KHR( ArrayProxy const & bindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - bindImageMemory2KHR( uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindImageMemoryInfo * pBindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - bindImageMemory2KHR( ArrayProxy const & bindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_image_drm_format_modifier === - - template - VULKAN_HPP_NODISCARD Result getImageDrmFormatModifierPropertiesEXT( - VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - getImageDrmFormatModifierPropertiesEXT( VULKAN_HPP_NAMESPACE::Image image, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_validation_cache === - - template - VULKAN_HPP_NODISCARD Result - createValidationCacheEXT( const VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::ValidationCacheEXT * pValidationCache, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createValidationCacheEXT( const VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - createValidationCacheEXTUnique( const VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyValidationCacheEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyValidationCacheEXT( - VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - mergeValidationCachesEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT dstCache, - uint32_t srcCacheCount, - const VULKAN_HPP_NAMESPACE::ValidationCacheEXT * pSrcCaches, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - mergeValidationCachesEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT dstCache, - ArrayProxy const & srcCaches, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getValidationCacheDataEXT( - VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - size_t * pDataSize, - void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getValidationCacheDataEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = Uint8_tAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getValidationCacheDataEXT( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache, - Uint8_tAllocator & uint8_tAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_ray_tracing === - - template - VULKAN_HPP_NODISCARD Result createAccelerationStructureNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructure, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE - typename ResultValueType>::type - createAccelerationStructureNVUnique( const VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyAccelerationStructureNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyAccelerationStructureNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result bindAccelerationStructureMemoryNV( - uint32_t bindInfoCount, - const VULKAN_HPP_NAMESPACE::BindAccelerationStructureMemoryInfoNV * pBindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type bindAccelerationStructureMemoryNV( - ArrayProxy const & bindInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD ResultValue> - createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue> - createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue - createRayTracingPipelineNV( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createRayTracingPipelinesNVUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template >, - typename B = PipelineAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createRayTracingPipelinesNVUnique( - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue> - createRayTracingPipelineNVUnique( VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getRayTracingShaderGroupHandlesNV( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getRayTracingShaderGroupHandlesNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - ArrayProxy const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getRayTracingShaderGroupHandlesNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getRayTracingShaderGroupHandleNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getAccelerationStructureHandleNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - size_t dataSize, - void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getAccelerationStructureHandleNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - ArrayProxy const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getAccelerationStructureHandleNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - size_t dataSize, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getAccelerationStructureHandleNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - compileDeferredNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t shader, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - compileDeferredNV( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t shader, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_maintenance3 === - - template - void getDescriptorSetLayoutSupportKHR( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo * pCreateInfo, - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport * pSupport, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport getDescriptorSetLayoutSupportKHR( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getDescriptorSetLayoutSupportKHR( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_external_memory_host === - - template - VULKAN_HPP_NODISCARD Result getMemoryHostPointerPropertiesEXT( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer, - VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT * pMemoryHostPointerProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getMemoryHostPointerPropertiesEXT( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_calibrated_timestamps === - - template - VULKAN_HPP_NODISCARD Result getCalibratedTimestampsEXT( - uint32_t timestampCount, - const VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT * pTimestampInfos, - uint64_t * pTimestamps, - uint64_t * pMaxDeviation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, uint64_t>>::type - getCalibratedTimestampsEXT( - ArrayProxy const & timestampInfos, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = Uint64_tAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType, uint64_t>>::type - getCalibratedTimestampsEXT( - ArrayProxy const & timestampInfos, - Uint64_tAllocator & uint64_tAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getCalibratedTimestampEXT( const VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT & timestampInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_timeline_semaphore === - - template - VULKAN_HPP_NODISCARD Result getSemaphoreCounterValueKHR( - VULKAN_HPP_NAMESPACE::Semaphore semaphore, - uint64_t * pValue, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSemaphoreCounterValueKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - waitSemaphoresKHR( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo * pWaitInfo, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result waitSemaphoresKHR( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - signalSemaphoreKHR( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo * pSignalInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - signalSemaphoreKHR( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_INTEL_performance_query === - - template - VULKAN_HPP_NODISCARD Result initializePerformanceApiINTEL( - const VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL * pInitializeInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - initializePerformanceApiINTEL( const VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL & initializeInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void uninitializePerformanceApiINTEL( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD Result acquirePerformanceConfigurationINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL * pAcquireInfo, - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL * pConfiguration, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - acquirePerformanceConfigurationINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL & acquireInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - acquirePerformanceConfigurationINTELUnique( - const VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL & acquireInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result releasePerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type releasePerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - release( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - release( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getPerformanceParameterINTEL( - VULKAN_HPP_NAMESPACE::PerformanceParameterTypeINTEL parameter, - VULKAN_HPP_NAMESPACE::PerformanceValueINTEL * pValue, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getPerformanceParameterINTEL( VULKAN_HPP_NAMESPACE::PerformanceParameterTypeINTEL parameter, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_AMD_display_native_hdr === - - template - void setLocalDimmingAMD( VULKAN_HPP_NAMESPACE::SwapchainKHR swapChain, - VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_buffer_device_address === - - template - DeviceAddress - getBufferAddressEXT( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - DeviceAddress - getBufferAddressEXT( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_present_wait === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - waitForPresentKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t presentId, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD Result waitForPresentKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - uint64_t presentId, - uint64_t timeout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - -# ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result acquireFullScreenExclusiveModeEXT( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - acquireFullScreenExclusiveModeEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -# ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result releaseFullScreenExclusiveModeEXT( - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - releaseFullScreenExclusiveModeEXT( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getGroupSurfacePresentModes2EXT( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR * pModes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getGroupSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_buffer_device_address === - - template - DeviceAddress - getBufferAddressKHR( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - DeviceAddress - getBufferAddressKHR( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - uint64_t getBufferOpaqueCaptureAddressKHR( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - uint64_t getBufferOpaqueCaptureAddressKHR( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - uint64_t getMemoryOpaqueCaptureAddressKHR( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo * pInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - uint64_t getMemoryOpaqueCaptureAddressKHR( const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_host_query_reset === - - template - void resetQueryPoolEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_deferred_host_operations === - - template - VULKAN_HPP_NODISCARD Result createDeferredOperationKHR( - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DeferredOperationKHR * pDeferredOperation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createDeferredOperationKHR( Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - createDeferredOperationKHRUnique( Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDeferredOperationKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyDeferredOperationKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - uint32_t getDeferredOperationMaxConcurrencyKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result getDeferredOperationResultKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD Result - getDeferredOperationResultKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - deferredOperationJoinKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - VULKAN_HPP_NODISCARD Result - deferredOperationJoinKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR operation, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_pipeline_executable_properties === - - template - VULKAN_HPP_NODISCARD Result getPipelineExecutablePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PipelineInfoKHR * pPipelineInfo, - uint32_t * pExecutableCount, - VULKAN_HPP_NAMESPACE::PipelineExecutablePropertiesKHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getPipelineExecutablePropertiesKHR( const VULKAN_HPP_NAMESPACE::PipelineInfoKHR & pipelineInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineExecutablePropertiesKHRAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getPipelineExecutablePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PipelineInfoKHR & pipelineInfo, - PipelineExecutablePropertiesKHRAllocator & pipelineExecutablePropertiesKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getPipelineExecutableStatisticsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR * pExecutableInfo, - uint32_t * pStatisticCount, - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticKHR * pStatistics, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getPipelineExecutableStatisticsKHR( const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineExecutableStatisticKHRAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getPipelineExecutableStatisticsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - PipelineExecutableStatisticKHRAllocator & pipelineExecutableStatisticKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR * pExecutableInfo, - uint32_t * pInternalRepresentationCount, - VULKAN_HPP_NAMESPACE::PipelineExecutableInternalRepresentationKHR * pInternalRepresentations, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename PipelineExecutableInternalRepresentationKHRAllocator = - std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineExecutableInternalRepresentationKHRAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo, - PipelineExecutableInternalRepresentationKHRAllocator & pipelineExecutableInternalRepresentationKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_device_generated_commands === - - template - void getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result createIndirectCommandsLayoutNV( - const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV * pIndirectCommandsLayout, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - createIndirectCommandsLayoutNV( const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createIndirectCommandsLayoutNVUnique( const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyIndirectCommandsLayoutNV( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyIndirectCommandsLayoutNV( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_private_data === - - template - VULKAN_HPP_NODISCARD Result - createPrivateDataSlotEXT( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::PrivateDataSlot * pPrivateDataSlot, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createPrivateDataSlotEXT( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - createPrivateDataSlotEXTUnique( const VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyPrivateDataSlotEXT( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyPrivateDataSlotEXT( - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - setPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - setPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD uint64_t - getPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_ray_tracing_pipeline === - - template - VULKAN_HPP_NODISCARD Result createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - uint32_t createInfoCount, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR * pCreateInfos, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Pipeline * pPipelines, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD ResultValue> - createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PipelineAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue> - createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue - createRayTracingPipelineKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template >> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createRayTracingPipelinesKHRUnique( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template >, - typename B = PipelineAllocator, - typename std::enable_if>::value, - int>::type = 0> - VULKAN_HPP_NODISCARD ResultValue, PipelineAllocator>> - createRayTracingPipelinesKHRUnique( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - ArrayProxy const & createInfos, - Optional allocator, - PipelineAllocator & pipelineAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD ResultValue> - createRayTracingPipelineKHRUnique( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - VULKAN_HPP_NAMESPACE::PipelineCache pipelineCache, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getRayTracingShaderGroupHandlesKHR( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getRayTracingShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - ArrayProxy const & data, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getRayTracingShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getRayTracingShaderGroupHandleKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getRayTracingCaptureReplayShaderGroupHandlesKHR( - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - void * pData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getRayTracingCaptureReplayShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - ArrayProxy const & data, - Dispatch const & d - VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getRayTracingCaptureReplayShaderGroupHandlesKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize, - Dispatch const & d - VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getRayTracingCaptureReplayShaderGroupHandleKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t firstGroup, - uint32_t groupCount, - Dispatch const & d - VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - DeviceSize getRayTracingShaderGroupStackSizeKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t group, - VULKAN_HPP_NAMESPACE::ShaderGroupShaderKHR groupShader, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - - template - VULKAN_HPP_NODISCARD Result getMemoryZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA * pGetZirconHandleInfo, - zx_handle_t * pZirconHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getMemoryZirconHandleFUCHSIA( const VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA & getZirconHandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getMemoryZirconHandlePropertiesFUCHSIA( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle, - VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA * pMemoryZirconHandleProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - getMemoryZirconHandlePropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - - template - VULKAN_HPP_NODISCARD Result importSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA * pImportSemaphoreZirconHandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type importSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA & importSemaphoreZirconHandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA * pGetZirconHandleInfo, - zx_handle_t * pZirconHandle, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type getSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA & getZirconHandleInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - template - VULKAN_HPP_NODISCARD Result createBufferCollectionFUCHSIA( - const VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA * pCollection, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - createBufferCollectionFUCHSIA( const VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createBufferCollectionFUCHSIAUnique( const VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result setBufferCollectionImageConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA * pImageConstraintsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setBufferCollectionImageConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA & imageConstraintsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result setBufferCollectionBufferConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA * pBufferConstraintsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - setBufferCollectionBufferConstraintsFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA & bufferConstraintsInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyBufferCollectionFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyBufferCollectionFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getBufferCollectionPropertiesFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getBufferCollectionPropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - - template - VULKAN_HPP_NODISCARD Result getSubpassShadingMaxWorkgroupSizeHUAWEI( - VULKAN_HPP_NAMESPACE::RenderPass renderpass, - VULKAN_HPP_NAMESPACE::Extent2D * pMaxWorkgroupSize, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD ResultValue - getSubpassShadingMaxWorkgroupSizeHUAWEI( VULKAN_HPP_NAMESPACE::RenderPass renderpass, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_external_memory_rdma === - - template - VULKAN_HPP_NODISCARD Result - getMemoryRemoteAddressNV( const VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV * pMemoryGetRemoteAddressInfo, - VULKAN_HPP_NAMESPACE::RemoteAddressNV * pAddress, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - getMemoryRemoteAddressNV( const VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV & memoryGetRemoteAddressInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_pageable_device_local_memory === - - template - void setMemoryPriorityEXT( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - float priority, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_maintenance4 === - - template - void getBufferMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getImageSparseMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements * pInfo, - uint32_t * pSparseMemoryRequirementCount, - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 * pSparseMemoryRequirements, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageMemoryRequirements2Allocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info, - SparseImageMemoryRequirements2Allocator & sparseImageMemoryRequirements2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDevice() const VULKAN_HPP_NOEXCEPT - { - return m_device; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_device != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_device == VK_NULL_HANDLE; - } - - private: - VkDevice m_device = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Device ) == sizeof( VkDevice ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Device is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Device; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Device; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Device; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - class DisplayModeKHR - { - public: - using CType = VkDisplayModeKHR; - using NativeType = VkDisplayModeKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDisplayModeKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayModeKHR; - - public: - VULKAN_HPP_CONSTEXPR DisplayModeKHR() = default; - VULKAN_HPP_CONSTEXPR DisplayModeKHR( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT DisplayModeKHR( VkDisplayModeKHR displayModeKHR ) VULKAN_HPP_NOEXCEPT - : m_displayModeKHR( displayModeKHR ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - DisplayModeKHR & operator=( VkDisplayModeKHR displayModeKHR ) VULKAN_HPP_NOEXCEPT - { - m_displayModeKHR = displayModeKHR; - return *this; - } -#endif - - DisplayModeKHR & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_displayModeKHR = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayModeKHR const & ) const = default; -#else - bool operator==( DisplayModeKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR == rhs.m_displayModeKHR; - } - - bool operator!=( DisplayModeKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR != rhs.m_displayModeKHR; - } - - bool operator<( DisplayModeKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR < rhs.m_displayModeKHR; - } -#endif - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDisplayModeKHR() const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR == VK_NULL_HANDLE; - } - - private: - VkDisplayModeKHR m_displayModeKHR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayModeKHR ) == sizeof( VkDisplayModeKHR ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayModeKHR is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::DisplayModeKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DisplayModeKHR; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::DisplayModeKHR; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - -#ifndef VULKAN_HPP_NO_SMART_HANDLE - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDevice = UniqueHandle; -#endif /*VULKAN_HPP_NO_SMART_HANDLE*/ - - class PhysicalDevice - { - public: - using CType = VkPhysicalDevice; - using NativeType = VkPhysicalDevice; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePhysicalDevice; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePhysicalDevice; - - public: - VULKAN_HPP_CONSTEXPR PhysicalDevice() = default; - VULKAN_HPP_CONSTEXPR PhysicalDevice( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT PhysicalDevice( VkPhysicalDevice physicalDevice ) VULKAN_HPP_NOEXCEPT - : m_physicalDevice( physicalDevice ) - {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - PhysicalDevice & operator=( VkPhysicalDevice physicalDevice ) VULKAN_HPP_NOEXCEPT - { - m_physicalDevice = physicalDevice; - return *this; - } -#endif - - PhysicalDevice & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_physicalDevice = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevice const & ) const = default; -#else - bool operator==( PhysicalDevice const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice == rhs.m_physicalDevice; - } - - bool operator!=( PhysicalDevice const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice != rhs.m_physicalDevice; - } - - bool operator<( PhysicalDevice const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice < rhs.m_physicalDevice; - } -#endif - - //=== VK_VERSION_1_0 === - - template - void getFeatures( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures * pFeatures, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures - getFeatures( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::FormatProperties * pFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::FormatProperties - getFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - VULKAN_HPP_NAMESPACE::ImageFormatProperties * pImageFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getProperties( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties - getProperties( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - getQueueFamilyProperties( uint32_t * pQueueFamilyPropertyCount, - VULKAN_HPP_NAMESPACE::QueueFamilyProperties * pQueueFamilyProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename QueueFamilyPropertiesAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = QueueFamilyPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties( QueueFamilyPropertiesAllocator & queueFamilyPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getMemoryProperties( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties * pMemoryProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties - getMemoryProperties( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createDevice( const VULKAN_HPP_NAMESPACE::DeviceCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Device * pDevice, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createDevice( const VULKAN_HPP_NAMESPACE::DeviceCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDeviceUnique( const VULKAN_HPP_NAMESPACE::DeviceCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result enumerateDeviceExtensionProperties( - const char * pLayerName, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::ExtensionProperties * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateDeviceExtensionProperties( Optional layerName - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = ExtensionPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateDeviceExtensionProperties( Optional layerName, - ExtensionPropertiesAllocator & extensionPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result enumerateDeviceLayerProperties( - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::LayerProperties * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateDeviceLayerProperties( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = LayerPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateDeviceLayerProperties( LayerPropertiesAllocator & layerPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename SparseImageFormatPropertiesAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageFormatPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - SparseImageFormatPropertiesAllocator & sparseImageFormatPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_1 === - - template - void getFeatures2( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 * pFeatures, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 - getFeatures2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getFeatures2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getProperties2( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - getProperties2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getProperties2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::FormatProperties2 * pFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::FormatProperties2 - getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 * pImageFormatInfo, - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 * pImageFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getImageFormatProperties2( const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getImageFormatProperties2( const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getQueueFamilyProperties2( uint32_t * pQueueFamilyPropertyCount, - VULKAN_HPP_NAMESPACE::QueueFamilyProperties2 * pQueueFamilyProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename QueueFamilyProperties2Allocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = QueueFamilyProperties2Allocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2( QueueFamilyProperties2Allocator & queueFamilyProperties2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = StructureChainAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2( StructureChainAllocator & structureChainAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getMemoryProperties2( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 * pMemoryProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - getMemoryProperties2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getMemoryProperties2( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getSparseImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 * pFormatInfo, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties2 * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties2( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename SparseImageFormatProperties2Allocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageFormatProperties2Allocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties2( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, - SparseImageFormatProperties2Allocator & sparseImageFormatProperties2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getExternalBufferProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo * pExternalBufferInfo, - VULKAN_HPP_NAMESPACE::ExternalBufferProperties * pExternalBufferProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalBufferProperties getExternalBufferProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getExternalFenceProperties( const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo * pExternalFenceInfo, - VULKAN_HPP_NAMESPACE::ExternalFenceProperties * pExternalFenceProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalFenceProperties getExternalFenceProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getExternalSemaphoreProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo * pExternalSemaphoreInfo, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties * pExternalSemaphoreProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties getExternalSemaphoreProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_3 === - - template - VULKAN_HPP_NODISCARD Result - getToolProperties( uint32_t * pToolCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceToolProperties * pToolProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getToolProperties( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename PhysicalDeviceToolPropertiesAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PhysicalDeviceToolPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getToolProperties( PhysicalDeviceToolPropertiesAllocator & physicalDeviceToolPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_surface === - - template - VULKAN_HPP_NODISCARD Result - getSurfaceSupportKHR( uint32_t queueFamilyIndex, - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::Bool32 * pSupported, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSurfaceSupportKHR( uint32_t queueFamilyIndex, - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getSurfaceCapabilitiesKHR( - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR * pSurfaceCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getSurfaceCapabilitiesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - uint32_t * pSurfaceFormatCount, - VULKAN_HPP_NAMESPACE::SurfaceFormatKHR * pSurfaceFormats, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SurfaceFormatKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - SurfaceFormatKHRAllocator & surfaceFormatKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getSurfacePresentModesKHR( - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - uint32_t * pPresentModeCount, - VULKAN_HPP_NAMESPACE::PresentModeKHR * pPresentModes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PresentModeKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - PresentModeKHRAllocator & presentModeKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_swapchain === - - template - VULKAN_HPP_NODISCARD Result - getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - uint32_t * pRectCount, - VULKAN_HPP_NAMESPACE::Rect2D * pRects, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = Rect2DAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Rect2DAllocator & rect2DAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_display === - - template - VULKAN_HPP_NODISCARD Result - getDisplayPropertiesKHR( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayPropertiesKHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayPropertiesKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayPropertiesKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayPropertiesKHR( DisplayPropertiesKHRAllocator & displayPropertiesKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayPlanePropertiesKHR( - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayPlanePropertiesKHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayPlanePropertiesKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename DisplayPlanePropertiesKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayPlanePropertiesKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayPlanePropertiesKHR( DisplayPlanePropertiesKHRAllocator & displayPlanePropertiesKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayPlaneSupportedDisplaysKHR( - uint32_t planeIndex, - uint32_t * pDisplayCount, - VULKAN_HPP_NAMESPACE::DisplayKHR * pDisplays, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex, - DisplayKHRAllocator & displayKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayModePropertiesKHR( - VULKAN_HPP_NAMESPACE::DisplayKHR display, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayModePropertiesKHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayModePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename DisplayModePropertiesKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayModePropertiesKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayModePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - DisplayModePropertiesKHRAllocator & displayModePropertiesKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - createDisplayModeKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DisplayModeKHR * pMode, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createDisplayModeKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDisplayModeKHRUnique( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayPlaneCapabilitiesKHR( - VULKAN_HPP_NAMESPACE::DisplayModeKHR mode, - uint32_t planeIndex, - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR * pCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getDisplayPlaneCapabilitiesKHR( VULKAN_HPP_NAMESPACE::DisplayModeKHR mode, - uint32_t planeIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - template - Bool32 getXlibPresentationSupportKHR( uint32_t queueFamilyIndex, - Display * dpy, - VisualID visualID, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Bool32 getXlibPresentationSupportKHR( uint32_t queueFamilyIndex, - Display & dpy, - VisualID visualID, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - template - Bool32 getXcbPresentationSupportKHR( uint32_t queueFamilyIndex, - xcb_connection_t * connection, - xcb_visualid_t visual_id, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Bool32 getXcbPresentationSupportKHR( uint32_t queueFamilyIndex, - xcb_connection_t & connection, - xcb_visualid_t visual_id, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - template - Bool32 getWaylandPresentationSupportKHR( uint32_t queueFamilyIndex, - struct wl_display * display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Bool32 getWaylandPresentationSupportKHR( uint32_t queueFamilyIndex, - struct wl_display & display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - template - Bool32 getWin32PresentationSupportKHR( uint32_t queueFamilyIndex, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - template - VULKAN_HPP_NODISCARD Result - getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pVideoProfile, - VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR * pCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getVideoFormatPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR * pVideoFormatInfo, - uint32_t * pVideoFormatPropertyCount, - VULKAN_HPP_NAMESPACE::VideoFormatPropertiesKHR * pVideoFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getVideoFormatPropertiesKHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR & videoFormatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename VideoFormatPropertiesKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = VideoFormatPropertiesKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getVideoFormatPropertiesKHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR & videoFormatInfo, - VideoFormatPropertiesKHRAllocator & videoFormatPropertiesKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_external_memory_capabilities === - - template - VULKAN_HPP_NODISCARD Result getExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV externalHandleType, - VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV * pExternalImageFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV externalHandleType VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_get_physical_device_properties2 === - - template - void getFeatures2KHR( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 * pFeatures, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 - getFeatures2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getFeatures2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getProperties2KHR( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - getProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::FormatProperties2 * pFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::FormatProperties2 - getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 * pImageFormatInfo, - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 * pImageFormatProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getImageFormatProperties2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getImageFormatProperties2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getQueueFamilyProperties2KHR( uint32_t * pQueueFamilyPropertyCount, - VULKAN_HPP_NAMESPACE::QueueFamilyProperties2 * pQueueFamilyProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename QueueFamilyProperties2Allocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = QueueFamilyProperties2Allocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2KHR( QueueFamilyProperties2Allocator & queueFamilyProperties2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = StructureChainAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2KHR( StructureChainAllocator & structureChainAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void - getMemoryProperties2KHR( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 * pMemoryProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - getMemoryProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - template - VULKAN_HPP_NODISCARD StructureChain - getMemoryProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getSparseImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 * pFormatInfo, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties2 * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename SparseImageFormatProperties2Allocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SparseImageFormatProperties2Allocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo, - SparseImageFormatProperties2Allocator & sparseImageFormatProperties2Allocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_external_memory_capabilities === - - template - void getExternalBufferPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo * pExternalBufferInfo, - VULKAN_HPP_NAMESPACE::ExternalBufferProperties * pExternalBufferProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalBufferProperties getExternalBufferPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_external_semaphore_capabilities === - - template - void getExternalSemaphorePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo * pExternalSemaphoreInfo, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties * pExternalSemaphoreProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties getExternalSemaphorePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_direct_mode_display === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Result releaseDisplayEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - releaseDisplayEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - - template - VULKAN_HPP_NODISCARD Result - acquireXlibDisplayEXT( Display * dpy, - VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - acquireXlibDisplayEXT( Display & dpy, - VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getRandROutputDisplayEXT( Display * dpy, - RROutput rrOutput, - VULKAN_HPP_NAMESPACE::DisplayKHR * pDisplay, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type getRandROutputDisplayEXT( - Display & dpy, RROutput rrOutput, Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE typename ResultValueType>::type - getRandROutputDisplayEXTUnique( Display & dpy, - RROutput rrOutput, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - - template - VULKAN_HPP_NODISCARD Result getSurfaceCapabilities2EXT( - VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT * pSurfaceCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getSurfaceCapabilities2EXT( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_external_fence_capabilities === - - template - void getExternalFencePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo * pExternalFenceInfo, - VULKAN_HPP_NAMESPACE::ExternalFenceProperties * pExternalFenceProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalFenceProperties getExternalFencePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_performance_query === - - template - VULKAN_HPP_NODISCARD Result enumerateQueueFamilyPerformanceQueryCountersKHR( - uint32_t queueFamilyIndex, - uint32_t * pCounterCount, - VULKAN_HPP_NAMESPACE::PerformanceCounterKHR * pCounters, - VULKAN_HPP_NAMESPACE::PerformanceCounterDescriptionKHR * pCounterDescriptions, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename PerformanceCounterDescriptionKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::pair, - std::vector>>::type - enumerateQueueFamilyPerformanceQueryCountersKHR( - uint32_t queueFamilyIndex, Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename PerformanceCounterDescriptionKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B1 = PerformanceCounterKHRAllocator, - typename B2 = PerformanceCounterDescriptionKHRAllocator, - typename std::enable_if::value && - std::is_same::value, - int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::pair, - std::vector>>::type - enumerateQueueFamilyPerformanceQueryCountersKHR( - uint32_t queueFamilyIndex, - PerformanceCounterKHRAllocator & performanceCounterKHRAllocator, - PerformanceCounterDescriptionKHRAllocator & performanceCounterDescriptionKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void getQueueFamilyPerformanceQueryPassesKHR( - const VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR * pPerformanceQueryCreateInfo, - uint32_t * pNumPasses, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD uint32_t getQueueFamilyPerformanceQueryPassesKHR( - const VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR & performanceQueryCreateInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_get_surface_capabilities2 === - - template - VULKAN_HPP_NODISCARD Result getSurfaceCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR * pSurfaceCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getSurfaceCapabilities2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType>::type - getSurfaceCapabilities2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - uint32_t * pSurfaceFormatCount, - VULKAN_HPP_NAMESPACE::SurfaceFormat2KHR * pSurfaceFormats, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = SurfaceFormat2KHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - SurfaceFormat2KHRAllocator & surfaceFormat2KHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_get_display_properties2 === - - template - VULKAN_HPP_NODISCARD Result - getDisplayProperties2KHR( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayProperties2KHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename DisplayProperties2KHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayProperties2KHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayProperties2KHR( DisplayProperties2KHRAllocator & displayProperties2KHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayPlaneProperties2KHR( - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayPlaneProperties2KHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayPlaneProperties2KHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename DisplayPlaneProperties2KHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayPlaneProperties2KHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayPlaneProperties2KHR( DisplayPlaneProperties2KHRAllocator & displayPlaneProperties2KHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayModeProperties2KHR( - VULKAN_HPP_NAMESPACE::DisplayKHR display, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::DisplayModeProperties2KHR * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayModeProperties2KHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename DisplayModeProperties2KHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = DisplayModeProperties2KHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getDisplayModeProperties2KHR( VULKAN_HPP_NAMESPACE::DisplayKHR display, - DisplayModeProperties2KHRAllocator & displayModeProperties2KHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result getDisplayPlaneCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR * pDisplayPlaneInfo, - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR * pCapabilities, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS - typename ResultValueType::type - getDisplayPlaneCapabilities2KHR( const VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR & displayPlaneInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_sample_locations === - - template - void getMultisamplePropertiesEXT( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT * pMultisampleProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT getMultisamplePropertiesEXT( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_calibrated_timestamps === - - template - VULKAN_HPP_NODISCARD Result getCalibrateableTimeDomainsEXT( - uint32_t * pTimeDomainCount, - VULKAN_HPP_NAMESPACE::TimeDomainEXT * pTimeDomains, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getCalibrateableTimeDomainsEXT( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = TimeDomainEXTAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getCalibrateableTimeDomainsEXT( TimeDomainEXTAllocator & timeDomainEXTAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_fragment_shading_rate === - - template - VULKAN_HPP_NODISCARD Result getFragmentShadingRatesKHR( - uint32_t * pFragmentShadingRateCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateKHR * pFragmentShadingRates, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template < - typename PhysicalDeviceFragmentShadingRateKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getFragmentShadingRatesKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename PhysicalDeviceFragmentShadingRateKHRAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PhysicalDeviceFragmentShadingRateKHRAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getFragmentShadingRatesKHR( - PhysicalDeviceFragmentShadingRateKHRAllocator & physicalDeviceFragmentShadingRateKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_EXT_tooling_info === - - template - VULKAN_HPP_NODISCARD Result - getToolPropertiesEXT( uint32_t * pToolCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceToolProperties * pToolProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getToolPropertiesEXT( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename PhysicalDeviceToolPropertiesAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PhysicalDeviceToolPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getToolPropertiesEXT( PhysicalDeviceToolPropertiesAllocator & physicalDeviceToolPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_cooperative_matrix === - - template - VULKAN_HPP_NODISCARD Result getCooperativeMatrixPropertiesNV( - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::CooperativeMatrixPropertiesNV * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getCooperativeMatrixPropertiesNV( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = CooperativeMatrixPropertiesNVAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - getCooperativeMatrixPropertiesNV( CooperativeMatrixPropertiesNVAllocator & cooperativeMatrixPropertiesNVAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_NV_coverage_reduction_mode === - - template - VULKAN_HPP_NODISCARD Result getSupportedFramebufferMixedSamplesCombinationsNV( - uint32_t * pCombinationCount, - VULKAN_HPP_NAMESPACE::FramebufferMixedSamplesCombinationNV * pCombinations, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template < - typename FramebufferMixedSamplesCombinationNVAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getSupportedFramebufferMixedSamplesCombinationsNV( - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template < - typename FramebufferMixedSamplesCombinationNVAllocator = std::allocator, - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = FramebufferMixedSamplesCombinationNVAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType< - std::vector>::type - getSupportedFramebufferMixedSamplesCombinationsNV( - FramebufferMixedSamplesCombinationNVAllocator & framebufferMixedSamplesCombinationNVAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - template - VULKAN_HPP_NODISCARD Result getSurfacePresentModes2EXT( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR * pSurfaceInfo, - uint32_t * pPresentModeCount, - VULKAN_HPP_NAMESPACE::PresentModeKHR * pPresentModes, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PresentModeKHRAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - getSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo, - PresentModeKHRAllocator & presentModeKHRAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_acquire_drm_display === - -#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - acquireDrmDisplayEXT( int32_t drmFd, - VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#else - template - typename ResultValueType::type - acquireDrmDisplayEXT( int32_t drmFd, - VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getDrmDisplayEXT( int32_t drmFd, - uint32_t connectorId, - VULKAN_HPP_NAMESPACE::DisplayKHR * display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getDrmDisplayEXT( int32_t drmFd, - uint32_t connectorId, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - getDrmDisplayEXTUnique( int32_t drmFd, - uint32_t connectorId, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - -# ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD Result - acquireWinrtDisplayNV( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# else - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - acquireWinrtDisplayNV( VULKAN_HPP_NAMESPACE::DisplayKHR display, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - getWinrtDisplayNV( uint32_t deviceRelativeId, - VULKAN_HPP_NAMESPACE::DisplayKHR * pDisplay, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - getWinrtDisplayNV( uint32_t deviceRelativeId, Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - getWinrtDisplayNVUnique( uint32_t deviceRelativeId, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - template - Bool32 getDirectFBPresentationSupportEXT( uint32_t queueFamilyIndex, - IDirectFB * dfb, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Bool32 getDirectFBPresentationSupportEXT( uint32_t queueFamilyIndex, - IDirectFB & dfb, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - template - Bool32 getScreenPresentationSupportQNX( uint32_t queueFamilyIndex, - struct _screen_window * window, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - Bool32 getScreenPresentationSupportQNX( uint32_t queueFamilyIndex, - struct _screen_window & window, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPhysicalDevice() const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice == VK_NULL_HANDLE; - } - - private: - VkPhysicalDevice m_physicalDevice = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevice ) == sizeof( VkPhysicalDevice ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDevice is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( - "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::PhysicalDevice; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PhysicalDevice; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::PhysicalDevice; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - -#ifndef VULKAN_HPP_NO_SMART_HANDLE - class Instance; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDebugReportCallbackEXT = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueDebugUtilsMessengerEXT = UniqueHandle; - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueSurfaceKHR = UniqueHandle; -#endif /*VULKAN_HPP_NO_SMART_HANDLE*/ - - class Instance - { - public: - using CType = VkInstance; - using NativeType = VkInstance; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eInstance; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eInstance; - - public: - VULKAN_HPP_CONSTEXPR Instance() = default; - VULKAN_HPP_CONSTEXPR Instance( std::nullptr_t ) VULKAN_HPP_NOEXCEPT {} - VULKAN_HPP_TYPESAFE_EXPLICIT Instance( VkInstance instance ) VULKAN_HPP_NOEXCEPT : m_instance( instance ) {} - -#if defined( VULKAN_HPP_TYPESAFE_CONVERSION ) - Instance & operator=( VkInstance instance ) VULKAN_HPP_NOEXCEPT - { - m_instance = instance; - return *this; - } -#endif - - Instance & operator=( std::nullptr_t ) VULKAN_HPP_NOEXCEPT - { - m_instance = {}; - return *this; - } - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Instance const & ) const = default; -#else - bool operator==( Instance const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_instance == rhs.m_instance; - } - - bool operator!=( Instance const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_instance != rhs.m_instance; - } - - bool operator<( Instance const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return m_instance < rhs.m_instance; - } -#endif - - //=== VK_VERSION_1_0 === - - template - void destroy( const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - enumeratePhysicalDevices( uint32_t * pPhysicalDeviceCount, - VULKAN_HPP_NAMESPACE::PhysicalDevice * pPhysicalDevices, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumeratePhysicalDevices( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PhysicalDeviceAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumeratePhysicalDevices( PhysicalDeviceAllocator & physicalDeviceAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - PFN_vkVoidFunction - getProcAddr( const char * pName, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - PFN_vkVoidFunction - getProcAddr( const std::string & name, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_1 === - - template - VULKAN_HPP_NODISCARD Result enumeratePhysicalDeviceGroups( - uint32_t * pPhysicalDeviceGroupCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties * pPhysicalDeviceGroupProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - enumeratePhysicalDeviceGroups( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PhysicalDeviceGroupPropertiesAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - enumeratePhysicalDeviceGroups( PhysicalDeviceGroupPropertiesAllocator & physicalDeviceGroupPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_surface === - - template - void destroySurfaceKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroySurfaceKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_KHR_display === - - template - VULKAN_HPP_NODISCARD Result createDisplayPlaneSurfaceKHR( - const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createDisplayPlaneSurfaceKHR( const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDisplayPlaneSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - template - VULKAN_HPP_NODISCARD Result - createXlibSurfaceKHR( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createXlibSurfaceKHR( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createXlibSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - template - VULKAN_HPP_NODISCARD Result - createXcbSurfaceKHR( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createXcbSurfaceKHR( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createXcbSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - template - VULKAN_HPP_NODISCARD Result - createWaylandSurfaceKHR( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createWaylandSurfaceKHR( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createWaylandSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - template - VULKAN_HPP_NODISCARD Result - createAndroidSurfaceKHR( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createAndroidSurfaceKHR( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createAndroidSurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - template - VULKAN_HPP_NODISCARD Result - createWin32SurfaceKHR( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createWin32SurfaceKHR( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createWin32SurfaceKHRUnique( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - template - VULKAN_HPP_NODISCARD Result createDebugReportCallbackEXT( - const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT * pCallback, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createDebugReportCallbackEXT( const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE - typename ResultValueType>::type - createDebugReportCallbackEXTUnique( const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDebugReportCallbackEXT( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyDebugReportCallbackEXT( - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const char * pLayerPrefix, - const char * pMessage, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType, - uint64_t object, - size_t location, - int32_t messageCode, - const std::string & layerPrefix, - const std::string & message, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - template - VULKAN_HPP_NODISCARD Result createStreamDescriptorSurfaceGGP( - const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createStreamDescriptorSurfaceGGP( const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createStreamDescriptorSurfaceGGPUnique( - const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_GGP*/ - -#if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - template - VULKAN_HPP_NODISCARD Result - createViSurfaceNN( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createViSurfaceNN( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createViSurfaceNNUnique( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_device_group_creation === - - template - VULKAN_HPP_NODISCARD Result enumeratePhysicalDeviceGroupsKHR( - uint32_t * pPhysicalDeviceGroupCount, - VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties * pPhysicalDeviceGroupProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - enumeratePhysicalDeviceGroupsKHR( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = PhysicalDeviceGroupPropertiesAllocator, - typename std::enable_if::value, - int>::type = 0> - VULKAN_HPP_NODISCARD - typename ResultValueType>::type - enumeratePhysicalDeviceGroupsKHR( PhysicalDeviceGroupPropertiesAllocator & physicalDeviceGroupPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - template - VULKAN_HPP_NODISCARD Result - createIOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createIOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createIOSSurfaceMVKUnique( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - template - VULKAN_HPP_NODISCARD Result - createMacOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createMacOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createMacOSSurfaceMVKUnique( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - template - VULKAN_HPP_NODISCARD Result createDebugUtilsMessengerEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT * pMessenger, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - createDebugUtilsMessengerEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_INLINE - typename ResultValueType>::type - createDebugUtilsMessengerEXTUnique( const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroyDebugUtilsMessengerEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroyDebugUtilsMessengerEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void destroy( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void destroy( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - void submitDebugUtilsMessageEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT * pCallbackData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - void submitDebugUtilsMessageEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT & callbackData, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - template - VULKAN_HPP_NODISCARD Result createImagePipeSurfaceFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createImagePipeSurfaceFUCHSIA( const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createImagePipeSurfaceFUCHSIAUnique( const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - template - VULKAN_HPP_NODISCARD Result - createMetalSurfaceEXT( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createMetalSurfaceEXT( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createMetalSurfaceEXTUnique( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_EXT_headless_surface === - - template - VULKAN_HPP_NODISCARD Result - createHeadlessSurfaceEXT( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createHeadlessSurfaceEXT( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createHeadlessSurfaceEXTUnique( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - template - VULKAN_HPP_NODISCARD Result - createDirectFBSurfaceEXT( const VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createDirectFBSurfaceEXT( const VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createDirectFBSurfaceEXTUnique( const VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - template - VULKAN_HPP_NODISCARD Result - createScreenSurfaceQNX( const VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::SurfaceKHR * pSurface, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; -# ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type - createScreenSurfaceQNX( const VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createScreenSurfaceQNXUnique( const VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) const; -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - VULKAN_HPP_TYPESAFE_EXPLICIT operator VkInstance() const VULKAN_HPP_NOEXCEPT - { - return m_instance; - } - - explicit operator bool() const VULKAN_HPP_NOEXCEPT - { - return m_instance != VK_NULL_HANDLE; - } - - bool operator!() const VULKAN_HPP_NOEXCEPT - { - return m_instance == VK_NULL_HANDLE; - } - - private: - VkInstance m_instance = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Instance ) == sizeof( VkInstance ), - "handle and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Instance is not nothrow_move_constructible!" ); - - template <> - struct VULKAN_HPP_DEPRECATED( "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type - { - using type = VULKAN_HPP_NAMESPACE::Instance; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Instance; - }; - - template <> - struct CppType - { - using Type = VULKAN_HPP_NAMESPACE::Instance; - }; - - template <> - struct isVulkanHandleType - { - static VULKAN_HPP_CONST_OR_CONSTEXPR bool value = true; - }; - - //=== VK_VERSION_1_0 === - -#ifndef VULKAN_HPP_NO_SMART_HANDLE - template - class UniqueHandleTraits - { - public: - using deleter = ObjectDestroy; - }; - using UniqueInstance = UniqueHandle; -#endif /*VULKAN_HPP_NO_SMART_HANDLE*/ - - template - VULKAN_HPP_NODISCARD Result createInstance( const VULKAN_HPP_NAMESPACE::InstanceCreateInfo * pCreateInfo, - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * pAllocator, - VULKAN_HPP_NAMESPACE::Instance * pInstance, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) - VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS typename ResultValueType::type createInstance( - const VULKAN_HPP_NAMESPACE::InstanceCreateInfo & createInfo, - Optional allocator VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); -# ifndef VULKAN_HPP_NO_SMART_HANDLE - template - VULKAN_HPP_NODISCARD_WHEN_NO_EXCEPTIONS VULKAN_HPP_INLINE - typename ResultValueType>::type - createInstanceUnique( const VULKAN_HPP_NAMESPACE::InstanceCreateInfo & createInfo, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); -# endif /*VULKAN_HPP_NO_SMART_HANDLE*/ -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result enumerateInstanceExtensionProperties( - const char * pLayerName, - uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::ExtensionProperties * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateInstanceExtensionProperties( Optional layerName - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = ExtensionPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateInstanceExtensionProperties( Optional layerName, - ExtensionPropertiesAllocator & extensionPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - template - VULKAN_HPP_NODISCARD Result - enumerateInstanceLayerProperties( uint32_t * pPropertyCount, - VULKAN_HPP_NAMESPACE::LayerProperties * pProperties, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateInstanceLayerProperties( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); - template , - typename Dispatch = VULKAN_HPP_DEFAULT_DISPATCHER_TYPE, - typename B = LayerPropertiesAllocator, - typename std::enable_if::value, int>::type = 0> - VULKAN_HPP_NODISCARD typename ResultValueType>::type - enumerateInstanceLayerProperties( LayerPropertiesAllocator & layerPropertiesAllocator, - Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - //=== VK_VERSION_1_1 === - - template - VULKAN_HPP_NODISCARD Result enumerateInstanceVersion( - uint32_t * pApiVersion, Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ) VULKAN_HPP_NOEXCEPT; -#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE - template - typename ResultValueType::type - enumerateInstanceVersion( Dispatch const & d VULKAN_HPP_DEFAULT_DISPATCHER_ASSIGNMENT ); -#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - -} // namespace VULKAN_HPP_NAMESPACE -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_hash.hpp b/Externals/Vulkan/Include/vulkan/vulkan_hash.hpp deleted file mode 100644 index f5e13e58ce..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_hash.hpp +++ /dev/null @@ -1,13191 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_HASH_HPP -#define VULKAN_HASH_HPP - -#include - -namespace std -{ - //======================================= - //=== HASH structures for Flags types === - //======================================= - - template - struct hash> - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Flags const & flags ) const VULKAN_HPP_NOEXCEPT - { - return std::hash::type>{}( - static_cast::type>( flags ) ); - } - }; - - //=================================== - //=== HASH structures for handles === - //=================================== - - //=== VK_VERSION_1_0 === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Instance const & instance ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( instance ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevice const & physicalDevice ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( physicalDevice ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Device const & device ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( device ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Queue const & queue ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( queue ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceMemory const & deviceMemory ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( deviceMemory ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Fence const & fence ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( fence ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Semaphore const & semaphore ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( semaphore ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Event const & event ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( event ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueryPool const & queryPool ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( queryPool ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Buffer const & buffer ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( buffer ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferView const & bufferView ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( bufferView ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Image const & image ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( image ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageView const & imageView ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( imageView ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ShaderModule const & shaderModule ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( shaderModule ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCache const & pipelineCache ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( pipelineCache ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Pipeline const & pipeline ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( pipeline ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineLayout const & pipelineLayout ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( pipelineLayout ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Sampler const & sampler ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( sampler ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorPool const & descriptorPool ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( descriptorPool ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSet const & descriptorSet ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( descriptorSet ) ); - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DescriptorSetLayout const & descriptorSetLayout ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( descriptorSetLayout ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Framebuffer const & framebuffer ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( framebuffer ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPass const & renderPass ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( renderPass ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandPool const & commandPool ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( commandPool ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBuffer const & commandBuffer ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( commandBuffer ) ); - } - }; - - //=== VK_VERSION_1_1 === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion const & samplerYcbcrConversion ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( samplerYcbcrConversion ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate const & descriptorUpdateTemplate ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( descriptorUpdateTemplate ) ); - } - }; - - //=== VK_VERSION_1_3 === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PrivateDataSlot const & privateDataSlot ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( privateDataSlot ) ); - } - }; - - //=== VK_KHR_surface === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceKHR const & surfaceKHR ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( surfaceKHR ) ); - } - }; - - //=== VK_KHR_swapchain === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SwapchainKHR const & swapchainKHR ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( swapchainKHR ) ); - } - }; - - //=== VK_KHR_display === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayKHR const & displayKHR ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( displayKHR ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayModeKHR const & displayModeKHR ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( displayModeKHR ) ); - } - }; - - //=== VK_EXT_debug_report === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT const & debugReportCallbackEXT ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( debugReportCallbackEXT ) ); - } - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoSessionKHR const & videoSessionKHR ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( videoSessionKHR ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR const & videoSessionParametersKHR ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( videoSessionParametersKHR ) ); - } - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NVX_binary_import === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CuModuleNVX const & cuModuleNVX ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( cuModuleNVX ) ); - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CuFunctionNVX const & cuFunctionNVX ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( cuFunctionNVX ) ); - } - }; - - //=== VK_EXT_debug_utils === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT const & debugUtilsMessengerEXT ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( debugUtilsMessengerEXT ) ); - } - }; - - //=== VK_KHR_acceleration_structure === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR const & accelerationStructureKHR ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( accelerationStructureKHR ) ); - } - }; - - //=== VK_EXT_validation_cache === - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ValidationCacheEXT const & validationCacheEXT ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( validationCacheEXT ) ); - } - }; - - //=== VK_NV_ray_tracing === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureNV const & accelerationStructureNV ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( accelerationStructureNV ) ); - } - }; - - //=== VK_INTEL_performance_query === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL const & performanceConfigurationINTEL ) - const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( performanceConfigurationINTEL ) ); - } - }; - - //=== VK_KHR_deferred_host_operations === - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DeferredOperationKHR const & deferredOperationKHR ) const VULKAN_HPP_NOEXCEPT - { - return std::hash{}( static_cast( deferredOperationKHR ) ); - } - }; - - //=== VK_NV_device_generated_commands === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV const & indirectCommandsLayoutNV ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( indirectCommandsLayoutNV ) ); - } - }; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA const & bufferCollectionFUCHSIA ) const - VULKAN_HPP_NOEXCEPT - { - return std::hash{}( - static_cast( bufferCollectionFUCHSIA ) ); - } - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if 14 <= VULKAN_HPP_CPP_VERSION - //====================================== - //=== HASH structures for structures === - //====================================== - -# if !defined( VULKAN_HPP_HASH_COMBINE ) -# define VULKAN_HPP_HASH_COMBINE( seed, value ) \ - seed ^= std::hash::type>{}( value ) + 0x9e3779b9 + ( seed << 6 ) + ( seed >> 2 ) -# endif - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AabbPositionsKHR const & aabbPositionsKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, aabbPositionsKHR.minX ); - VULKAN_HPP_HASH_COMBINE( seed, aabbPositionsKHR.minY ); - VULKAN_HPP_HASH_COMBINE( seed, aabbPositionsKHR.minZ ); - VULKAN_HPP_HASH_COMBINE( seed, aabbPositionsKHR.maxX ); - VULKAN_HPP_HASH_COMBINE( seed, aabbPositionsKHR.maxY ); - VULKAN_HPP_HASH_COMBINE( seed, aabbPositionsKHR.maxZ ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR const & - accelerationStructureBuildRangeInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildRangeInfoKHR.primitiveCount ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildRangeInfoKHR.primitiveOffset ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildRangeInfoKHR.firstVertex ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildRangeInfoKHR.transformOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR const & - accelerationStructureBuildSizesInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildSizesInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildSizesInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildSizesInfoKHR.accelerationStructureSize ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildSizesInfoKHR.updateScratchSize ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureBuildSizesInfoKHR.buildScratchSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR const & - accelerationStructureCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.createFlags ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.offset ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.size ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.type ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoKHR.deviceAddress ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::GeometryTrianglesNV const & geometryTrianglesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.vertexData ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.vertexOffset ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.vertexCount ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.vertexStride ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.vertexFormat ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.indexData ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.indexOffset ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.indexCount ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.indexType ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.transformData ); - VULKAN_HPP_HASH_COMBINE( seed, geometryTrianglesNV.transformOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GeometryAABBNV const & geometryAABBNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, geometryAABBNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, geometryAABBNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, geometryAABBNV.aabbData ); - VULKAN_HPP_HASH_COMBINE( seed, geometryAABBNV.numAABBs ); - VULKAN_HPP_HASH_COMBINE( seed, geometryAABBNV.stride ); - VULKAN_HPP_HASH_COMBINE( seed, geometryAABBNV.offset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GeometryDataNV const & geometryDataNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, geometryDataNV.triangles ); - VULKAN_HPP_HASH_COMBINE( seed, geometryDataNV.aabbs ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GeometryNV const & geometryNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, geometryNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, geometryNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, geometryNV.geometryType ); - VULKAN_HPP_HASH_COMBINE( seed, geometryNV.geometry ); - VULKAN_HPP_HASH_COMBINE( seed, geometryNV.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV const & accelerationStructureInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.type ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.instanceCount ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.geometryCount ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInfoNV.pGeometries ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV const & - accelerationStructureCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoNV.compactedSize ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureCreateInfoNV.info ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR const & - accelerationStructureDeviceAddressInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureDeviceAddressInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureDeviceAddressInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureDeviceAddressInfoKHR.accelerationStructure ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::TransformMatrixKHR const & transformMatrixKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - for ( size_t i = 0; i < 3; ++i ) - { - for ( size_t j = 0; j < 4; ++j ) - { - VULKAN_HPP_HASH_COMBINE( seed, transformMatrixKHR.matrix[i][j] ); - } - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureInstanceKHR const & - accelerationStructureInstanceKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInstanceKHR.transform ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInstanceKHR.instanceCustomIndex ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInstanceKHR.mask ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInstanceKHR.instanceShaderBindingTableRecordOffset ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInstanceKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureInstanceKHR.accelerationStructureReference ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureMatrixMotionInstanceNV const & - accelerationStructureMatrixMotionInstanceNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMatrixMotionInstanceNV.transformT0 ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMatrixMotionInstanceNV.transformT1 ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMatrixMotionInstanceNV.instanceCustomIndex ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMatrixMotionInstanceNV.mask ); - VULKAN_HPP_HASH_COMBINE( seed, - accelerationStructureMatrixMotionInstanceNV.instanceShaderBindingTableRecordOffset ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMatrixMotionInstanceNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMatrixMotionInstanceNV.accelerationStructureReference ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV const & - accelerationStructureMemoryRequirementsInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMemoryRequirementsInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMemoryRequirementsInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMemoryRequirementsInfoNV.type ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMemoryRequirementsInfoNV.accelerationStructure ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInfoNV const & - accelerationStructureMotionInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMotionInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMotionInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMotionInfoNV.maxInstances ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureMotionInfoNV.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SRTDataNV const & sRTDataNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.sx ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.a ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.b ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.pvx ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.sy ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.c ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.pvy ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.sz ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.pvz ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.qx ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.qy ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.qz ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.qw ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.tx ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.ty ); - VULKAN_HPP_HASH_COMBINE( seed, sRTDataNV.tz ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureSRTMotionInstanceNV const & - accelerationStructureSRTMotionInstanceNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.transformT0 ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.transformT1 ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.instanceCustomIndex ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.mask ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.instanceShaderBindingTableRecordOffset ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureSRTMotionInstanceNV.accelerationStructureReference ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR const & - accelerationStructureVersionInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureVersionInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureVersionInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, accelerationStructureVersionInfoKHR.pVersionData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR const & acquireNextImageInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.swapchain ); - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.timeout ); - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.fence ); - VULKAN_HPP_HASH_COMBINE( seed, acquireNextImageInfoKHR.deviceMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR const & acquireProfilingLockInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, acquireProfilingLockInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, acquireProfilingLockInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, acquireProfilingLockInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, acquireProfilingLockInfoKHR.timeout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::AllocationCallbacks const & allocationCallbacks ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, allocationCallbacks.pUserData ); - VULKAN_HPP_HASH_COMBINE( seed, allocationCallbacks.pfnAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, allocationCallbacks.pfnReallocation ); - VULKAN_HPP_HASH_COMBINE( seed, allocationCallbacks.pfnFree ); - VULKAN_HPP_HASH_COMBINE( seed, allocationCallbacks.pfnInternalAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, allocationCallbacks.pfnInternalFree ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ComponentMapping const & componentMapping ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, componentMapping.r ); - VULKAN_HPP_HASH_COMBINE( seed, componentMapping.g ); - VULKAN_HPP_HASH_COMBINE( seed, componentMapping.b ); - VULKAN_HPP_HASH_COMBINE( seed, componentMapping.a ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferFormatProperties2ANDROID const & - androidHardwareBufferFormatProperties2ANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.format ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.externalFormat ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.formatFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.samplerYcbcrConversionComponents ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.suggestedYcbcrModel ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.suggestedYcbcrRange ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.suggestedXChromaOffset ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatProperties2ANDROID.suggestedYChromaOffset ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferFormatPropertiesANDROID const & - androidHardwareBufferFormatPropertiesANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.format ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.externalFormat ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.formatFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.samplerYcbcrConversionComponents ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.suggestedYcbcrModel ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.suggestedYcbcrRange ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.suggestedXChromaOffset ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferFormatPropertiesANDROID.suggestedYChromaOffset ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID const & - androidHardwareBufferPropertiesANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferPropertiesANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferPropertiesANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferPropertiesANDROID.allocationSize ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferPropertiesANDROID.memoryTypeBits ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferUsageANDROID const & - androidHardwareBufferUsageANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferUsageANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferUsageANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, androidHardwareBufferUsageANDROID.androidHardwareBufferUsage ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR const & androidSurfaceCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, androidSurfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, androidSurfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, androidSurfaceCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, androidSurfaceCreateInfoKHR.window ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ApplicationInfo const & applicationInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, applicationInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, applicationInfo.pNext ); - for ( const char * p = applicationInfo.pApplicationName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - VULKAN_HPP_HASH_COMBINE( seed, applicationInfo.applicationVersion ); - for ( const char * p = applicationInfo.pEngineName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - VULKAN_HPP_HASH_COMBINE( seed, applicationInfo.engineVersion ); - VULKAN_HPP_HASH_COMBINE( seed, applicationInfo.apiVersion ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::AttachmentDescription const & attachmentDescription ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.flags ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.format ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.samples ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.loadOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.storeOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.stencilLoadOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.stencilStoreOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.initialLayout ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription.finalLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AttachmentDescription2 const & attachmentDescription2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.flags ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.format ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.samples ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.loadOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.storeOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.stencilLoadOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.stencilStoreOp ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.initialLayout ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescription2.finalLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AttachmentDescriptionStencilLayout const & - attachmentDescriptionStencilLayout ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescriptionStencilLayout.sType ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescriptionStencilLayout.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescriptionStencilLayout.stencilInitialLayout ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentDescriptionStencilLayout.stencilFinalLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::AttachmentReference const & attachmentReference ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference.attachment ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference.layout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::AttachmentReference2 const & attachmentReference2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference2.attachment ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference2.layout ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReference2.aspectMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AttachmentReferenceStencilLayout const & - attachmentReferenceStencilLayout ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentReferenceStencilLayout.sType ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReferenceStencilLayout.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentReferenceStencilLayout.stencilLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AttachmentSampleCountInfoAMD const & attachmentSampleCountInfoAMD ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleCountInfoAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleCountInfoAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleCountInfoAMD.colorAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleCountInfoAMD.pColorAttachmentSamples ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleCountInfoAMD.depthStencilAttachmentSamples ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Extent2D const & extent2D ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, extent2D.width ); - VULKAN_HPP_HASH_COMBINE( seed, extent2D.height ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SampleLocationEXT const & sampleLocationEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationEXT.x ); - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationEXT.y ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT const & sampleLocationsInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationsInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationsInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationsInfoEXT.sampleLocationsPerPixel ); - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationsInfoEXT.sampleLocationGridSize ); - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationsInfoEXT.sampleLocationsCount ); - VULKAN_HPP_HASH_COMBINE( seed, sampleLocationsInfoEXT.pSampleLocations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::AttachmentSampleLocationsEXT const & attachmentSampleLocationsEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleLocationsEXT.attachmentIndex ); - VULKAN_HPP_HASH_COMBINE( seed, attachmentSampleLocationsEXT.sampleLocationsInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BaseInStructure const & baseInStructure ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, baseInStructure.sType ); - VULKAN_HPP_HASH_COMBINE( seed, baseInStructure.pNext ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BaseOutStructure const & baseOutStructure ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, baseOutStructure.sType ); - VULKAN_HPP_HASH_COMBINE( seed, baseOutStructure.pNext ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BindAccelerationStructureMemoryInfoNV const & - bindAccelerationStructureMemoryInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.accelerationStructure ); - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.memory ); - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.memoryOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.deviceIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindAccelerationStructureMemoryInfoNV.pDeviceIndices ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BindBufferMemoryDeviceGroupInfo const & bindBufferMemoryDeviceGroupInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryDeviceGroupInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryDeviceGroupInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryDeviceGroupInfo.deviceIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryDeviceGroupInfo.pDeviceIndices ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BindBufferMemoryInfo const & bindBufferMemoryInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryInfo.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryInfo.memory ); - VULKAN_HPP_HASH_COMBINE( seed, bindBufferMemoryInfo.memoryOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Offset2D const & offset2D ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, offset2D.x ); - VULKAN_HPP_HASH_COMBINE( seed, offset2D.y ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Rect2D const & rect2D ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rect2D.offset ); - VULKAN_HPP_HASH_COMBINE( seed, rect2D.extent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BindImageMemoryDeviceGroupInfo const & bindImageMemoryDeviceGroupInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryDeviceGroupInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryDeviceGroupInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryDeviceGroupInfo.deviceIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryDeviceGroupInfo.pDeviceIndices ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryDeviceGroupInfo.splitInstanceBindRegionCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryDeviceGroupInfo.pSplitInstanceBindRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BindImageMemoryInfo const & bindImageMemoryInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryInfo.image ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryInfo.memory ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemoryInfo.memoryOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BindImageMemorySwapchainInfoKHR const & bindImageMemorySwapchainInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemorySwapchainInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemorySwapchainInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemorySwapchainInfoKHR.swapchain ); - VULKAN_HPP_HASH_COMBINE( seed, bindImageMemorySwapchainInfoKHR.imageIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BindImagePlaneMemoryInfo const & bindImagePlaneMemoryInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindImagePlaneMemoryInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindImagePlaneMemoryInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindImagePlaneMemoryInfo.planeAspect ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BindIndexBufferIndirectCommandNV const & - bindIndexBufferIndirectCommandNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindIndexBufferIndirectCommandNV.bufferAddress ); - VULKAN_HPP_HASH_COMBINE( seed, bindIndexBufferIndirectCommandNV.size ); - VULKAN_HPP_HASH_COMBINE( seed, bindIndexBufferIndirectCommandNV.indexType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BindShaderGroupIndirectCommandNV const & - bindShaderGroupIndirectCommandNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindShaderGroupIndirectCommandNV.groupIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SparseMemoryBind const & sparseMemoryBind ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseMemoryBind.resourceOffset ); - VULKAN_HPP_HASH_COMBINE( seed, sparseMemoryBind.size ); - VULKAN_HPP_HASH_COMBINE( seed, sparseMemoryBind.memory ); - VULKAN_HPP_HASH_COMBINE( seed, sparseMemoryBind.memoryOffset ); - VULKAN_HPP_HASH_COMBINE( seed, sparseMemoryBind.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SparseBufferMemoryBindInfo const & sparseBufferMemoryBindInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseBufferMemoryBindInfo.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, sparseBufferMemoryBindInfo.bindCount ); - VULKAN_HPP_HASH_COMBINE( seed, sparseBufferMemoryBindInfo.pBinds ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SparseImageOpaqueMemoryBindInfo const & sparseImageOpaqueMemoryBindInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageOpaqueMemoryBindInfo.image ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageOpaqueMemoryBindInfo.bindCount ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageOpaqueMemoryBindInfo.pBinds ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageSubresource const & imageSubresource ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageSubresource.aspectMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresource.mipLevel ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresource.arrayLayer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Offset3D const & offset3D ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, offset3D.x ); - VULKAN_HPP_HASH_COMBINE( seed, offset3D.y ); - VULKAN_HPP_HASH_COMBINE( seed, offset3D.z ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Extent3D const & extent3D ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, extent3D.width ); - VULKAN_HPP_HASH_COMBINE( seed, extent3D.height ); - VULKAN_HPP_HASH_COMBINE( seed, extent3D.depth ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SparseImageMemoryBind const & sparseImageMemoryBind ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBind.subresource ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBind.offset ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBind.extent ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBind.memory ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBind.memoryOffset ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBind.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SparseImageMemoryBindInfo const & sparseImageMemoryBindInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBindInfo.image ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBindInfo.bindCount ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryBindInfo.pBinds ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BindSparseInfo const & bindSparseInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.waitSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.pWaitSemaphores ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.bufferBindCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.pBufferBinds ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.imageOpaqueBindCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.pImageOpaqueBinds ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.imageBindCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.pImageBinds ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.signalSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, bindSparseInfo.pSignalSemaphores ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BindVertexBufferIndirectCommandNV const & - bindVertexBufferIndirectCommandNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bindVertexBufferIndirectCommandNV.bufferAddress ); - VULKAN_HPP_HASH_COMBINE( seed, bindVertexBufferIndirectCommandNV.size ); - VULKAN_HPP_HASH_COMBINE( seed, bindVertexBufferIndirectCommandNV.stride ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & imageSubresourceLayers ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceLayers.aspectMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceLayers.mipLevel ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceLayers.baseArrayLayer ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceLayers.layerCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageBlit2 const & imageBlit2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageBlit2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageBlit2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageBlit2.srcSubresource ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, imageBlit2.srcOffsets[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, imageBlit2.dstSubresource ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, imageBlit2.dstOffsets[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BlitImageInfo2 const & blitImageInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.srcImage ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.srcImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.dstImage ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.dstImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.regionCount ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.pRegions ); - VULKAN_HPP_HASH_COMBINE( seed, blitImageInfo2.filter ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCollectionBufferCreateInfoFUCHSIA const & - bufferCollectionBufferCreateInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionBufferCreateInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionBufferCreateInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionBufferCreateInfoFUCHSIA.collection ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionBufferCreateInfoFUCHSIA.index ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA const & - bufferCollectionConstraintsInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.minBufferCount ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.maxBufferCount ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.minBufferCountForCamping ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.minBufferCountForDedicatedSlack ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionConstraintsInfoFUCHSIA.minBufferCountForSharedSlack ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA const & - bufferCollectionCreateInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionCreateInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionCreateInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionCreateInfoFUCHSIA.collectionToken ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCollectionImageCreateInfoFUCHSIA const & - bufferCollectionImageCreateInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionImageCreateInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionImageCreateInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionImageCreateInfoFUCHSIA.collection ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionImageCreateInfoFUCHSIA.index ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA const & sysmemColorSpaceFUCHSIA ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sysmemColorSpaceFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, sysmemColorSpaceFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, sysmemColorSpaceFUCHSIA.colorSpace ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA const & - bufferCollectionPropertiesFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.memoryTypeBits ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.bufferCount ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.createInfoIndex ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.sysmemPixelFormat ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.formatFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.sysmemColorSpaceIndex ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.samplerYcbcrConversionComponents ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.suggestedYcbcrModel ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.suggestedYcbcrRange ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.suggestedXChromaOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCollectionPropertiesFUCHSIA.suggestedYChromaOffset ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCreateInfo const & bufferCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.size ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.usage ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.sharingMode ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.queueFamilyIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCreateInfo.pQueueFamilyIndices ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA const & bufferConstraintsInfoFUCHSIA ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferConstraintsInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferConstraintsInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferConstraintsInfoFUCHSIA.createInfo ); - VULKAN_HPP_HASH_COMBINE( seed, bufferConstraintsInfoFUCHSIA.requiredFormatFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, bufferConstraintsInfoFUCHSIA.bufferCollectionConstraints ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCopy const & bufferCopy ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy.srcOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy.dstOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferCopy2 const & bufferCopy2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy2.srcOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy2.dstOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferCopy2.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferDeviceAddressCreateInfoEXT const & - bufferDeviceAddressCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferDeviceAddressCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferDeviceAddressCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferDeviceAddressCreateInfoEXT.deviceAddress ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo const & bufferDeviceAddressInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferDeviceAddressInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferDeviceAddressInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferDeviceAddressInfo.buffer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferImageCopy const & bufferImageCopy ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy.bufferOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy.bufferRowLength ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy.bufferImageHeight ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy.imageSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy.imageOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy.imageExtent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferImageCopy2 const & bufferImageCopy2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.bufferOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.bufferRowLength ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.bufferImageHeight ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.imageSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.imageOffset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferImageCopy2.imageExtent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BufferMemoryBarrier const & bufferMemoryBarrier ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.dstAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.srcQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.dstQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.offset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BufferMemoryBarrier2 const & bufferMemoryBarrier2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.srcStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.dstStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.dstAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.srcQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.dstQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.offset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryBarrier2.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 const & bufferMemoryRequirementsInfo2 ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryRequirementsInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryRequirementsInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferMemoryRequirementsInfo2.buffer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::BufferOpaqueCaptureAddressCreateInfo const & - bufferOpaqueCaptureAddressCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferOpaqueCaptureAddressCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferOpaqueCaptureAddressCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferOpaqueCaptureAddressCreateInfo.opaqueCaptureAddress ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::BufferViewCreateInfo const & bufferViewCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.format ); - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.offset ); - VULKAN_HPP_HASH_COMBINE( seed, bufferViewCreateInfo.range ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT const & calibratedTimestampInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, calibratedTimestampInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, calibratedTimestampInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, calibratedTimestampInfoEXT.timeDomain ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::CheckpointData2NV const & checkpointData2NV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, checkpointData2NV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, checkpointData2NV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, checkpointData2NV.stage ); - VULKAN_HPP_HASH_COMBINE( seed, checkpointData2NV.pCheckpointMarker ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CheckpointDataNV const & checkpointDataNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, checkpointDataNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, checkpointDataNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, checkpointDataNV.stage ); - VULKAN_HPP_HASH_COMBINE( seed, checkpointDataNV.pCheckpointMarker ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ClearDepthStencilValue const & clearDepthStencilValue ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, clearDepthStencilValue.depth ); - VULKAN_HPP_HASH_COMBINE( seed, clearDepthStencilValue.stencil ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ClearRect const & clearRect ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, clearRect.rect ); - VULKAN_HPP_HASH_COMBINE( seed, clearRect.baseArrayLayer ); - VULKAN_HPP_HASH_COMBINE( seed, clearRect.layerCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV const & coarseSampleLocationNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleLocationNV.pixelX ); - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleLocationNV.pixelY ); - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleLocationNV.sample ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV const & coarseSampleOrderCustomNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleOrderCustomNV.shadingRate ); - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleOrderCustomNV.sampleCount ); - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleOrderCustomNV.sampleLocationCount ); - VULKAN_HPP_HASH_COMBINE( seed, coarseSampleOrderCustomNV.pSampleLocations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo const & commandBufferAllocateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.commandPool ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.level ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.commandBufferCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo const & commandBufferInheritanceInfo ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.renderPass ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.subpass ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.framebuffer ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.occlusionQueryEnable ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.queryFlags ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceInfo.pipelineStatistics ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo const & commandBufferBeginInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferBeginInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferBeginInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferBeginInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferBeginInfo.pInheritanceInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceConditionalRenderingInfoEXT const & - commandBufferInheritanceConditionalRenderingInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceConditionalRenderingInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceConditionalRenderingInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceConditionalRenderingInfoEXT.conditionalRenderingEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceRenderPassTransformInfoQCOM const & - commandBufferInheritanceRenderPassTransformInfoQCOM ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderPassTransformInfoQCOM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderPassTransformInfoQCOM.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderPassTransformInfoQCOM.transform ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderPassTransformInfoQCOM.renderArea ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceRenderingInfo const & - commandBufferInheritanceRenderingInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.viewMask ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.colorAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.pColorAttachmentFormats ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.depthAttachmentFormat ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.stencilAttachmentFormat ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceRenderingInfo.rasterizationSamples ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Viewport const & viewport ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, viewport.x ); - VULKAN_HPP_HASH_COMBINE( seed, viewport.y ); - VULKAN_HPP_HASH_COMBINE( seed, viewport.width ); - VULKAN_HPP_HASH_COMBINE( seed, viewport.height ); - VULKAN_HPP_HASH_COMBINE( seed, viewport.minDepth ); - VULKAN_HPP_HASH_COMBINE( seed, viewport.maxDepth ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceViewportScissorInfoNV const & - commandBufferInheritanceViewportScissorInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceViewportScissorInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceViewportScissorInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceViewportScissorInfoNV.viewportScissor2D ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceViewportScissorInfoNV.viewportDepthCount ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferInheritanceViewportScissorInfoNV.pViewportDepths ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferSubmitInfo const & commandBufferSubmitInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandBufferSubmitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferSubmitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferSubmitInfo.commandBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, commandBufferSubmitInfo.deviceMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo const & commandPoolCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, commandPoolCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, commandPoolCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, commandPoolCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, commandPoolCreateInfo.queueFamilyIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SpecializationMapEntry const & specializationMapEntry ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, specializationMapEntry.constantID ); - VULKAN_HPP_HASH_COMBINE( seed, specializationMapEntry.offset ); - VULKAN_HPP_HASH_COMBINE( seed, specializationMapEntry.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SpecializationInfo const & specializationInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, specializationInfo.mapEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, specializationInfo.pMapEntries ); - VULKAN_HPP_HASH_COMBINE( seed, specializationInfo.dataSize ); - VULKAN_HPP_HASH_COMBINE( seed, specializationInfo.pData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo const & pipelineShaderStageCreateInfo ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageCreateInfo.stage ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageCreateInfo.module ); - for ( const char * p = pipelineShaderStageCreateInfo.pName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageCreateInfo.pSpecializationInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo const & computePipelineCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.stage ); - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.layout ); - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.basePipelineHandle ); - VULKAN_HPP_HASH_COMBINE( seed, computePipelineCreateInfo.basePipelineIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT const & - conditionalRenderingBeginInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, conditionalRenderingBeginInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, conditionalRenderingBeginInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, conditionalRenderingBeginInfoEXT.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, conditionalRenderingBeginInfoEXT.offset ); - VULKAN_HPP_HASH_COMBINE( seed, conditionalRenderingBeginInfoEXT.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ConformanceVersion const & conformanceVersion ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, conformanceVersion.major ); - VULKAN_HPP_HASH_COMBINE( seed, conformanceVersion.minor ); - VULKAN_HPP_HASH_COMBINE( seed, conformanceVersion.subminor ); - VULKAN_HPP_HASH_COMBINE( seed, conformanceVersion.patch ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CooperativeMatrixPropertiesNV const & cooperativeMatrixPropertiesNV ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.MSize ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.NSize ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.KSize ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.AType ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.BType ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.CType ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.DType ); - VULKAN_HPP_HASH_COMBINE( seed, cooperativeMatrixPropertiesNV.scope ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR const & - copyAccelerationStructureInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyAccelerationStructureInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyAccelerationStructureInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyAccelerationStructureInfoKHR.src ); - VULKAN_HPP_HASH_COMBINE( seed, copyAccelerationStructureInfoKHR.dst ); - VULKAN_HPP_HASH_COMBINE( seed, copyAccelerationStructureInfoKHR.mode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CopyBufferInfo2 const & copyBufferInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyBufferInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferInfo2.srcBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferInfo2.dstBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferInfo2.regionCount ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferInfo2.pRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 const & copyBufferToImageInfo2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.srcBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.dstImage ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.dstImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.regionCount ); - VULKAN_HPP_HASH_COMBINE( seed, copyBufferToImageInfo2.pRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CopyCommandTransformInfoQCOM const & copyCommandTransformInfoQCOM ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyCommandTransformInfoQCOM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyCommandTransformInfoQCOM.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyCommandTransformInfoQCOM.transform ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::CopyDescriptorSet const & copyDescriptorSet ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.srcSet ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.srcBinding ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.srcArrayElement ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.dstSet ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.dstBinding ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.dstArrayElement ); - VULKAN_HPP_HASH_COMBINE( seed, copyDescriptorSet.descriptorCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageCopy2 const & imageCopy2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.srcSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.srcOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.dstSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.dstOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy2.extent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CopyImageInfo2 const & copyImageInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.srcImage ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.srcImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.dstImage ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.dstImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.regionCount ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageInfo2.pRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 const & copyImageToBufferInfo2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.srcImage ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.srcImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.dstBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.regionCount ); - VULKAN_HPP_HASH_COMBINE( seed, copyImageToBufferInfo2.pRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX const & cuFunctionCreateInfoNVX ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, cuFunctionCreateInfoNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, cuFunctionCreateInfoNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, cuFunctionCreateInfoNVX.module ); - for ( const char * p = cuFunctionCreateInfoNVX.pName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX const & cuLaunchInfoNVX ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.function ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.gridDimX ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.gridDimY ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.gridDimZ ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.blockDimX ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.blockDimY ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.blockDimZ ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.sharedMemBytes ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.paramCount ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.pParams ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.extraCount ); - VULKAN_HPP_HASH_COMBINE( seed, cuLaunchInfoNVX.pExtras ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX const & cuModuleCreateInfoNVX ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, cuModuleCreateInfoNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, cuModuleCreateInfoNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, cuModuleCreateInfoNVX.dataSize ); - VULKAN_HPP_HASH_COMBINE( seed, cuModuleCreateInfoNVX.pData ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::D3D12FenceSubmitInfoKHR const & d3D12FenceSubmitInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, d3D12FenceSubmitInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, d3D12FenceSubmitInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, d3D12FenceSubmitInfoKHR.waitSemaphoreValuesCount ); - VULKAN_HPP_HASH_COMBINE( seed, d3D12FenceSubmitInfoKHR.pWaitSemaphoreValues ); - VULKAN_HPP_HASH_COMBINE( seed, d3D12FenceSubmitInfoKHR.signalSemaphoreValuesCount ); - VULKAN_HPP_HASH_COMBINE( seed, d3D12FenceSubmitInfoKHR.pSignalSemaphoreValues ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT const & debugMarkerMarkerInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerMarkerInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerMarkerInfoEXT.pNext ); - for ( const char * p = debugMarkerMarkerInfoEXT.pMarkerName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - for ( size_t i = 0; i < 4; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerMarkerInfoEXT.color[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT const & debugMarkerObjectNameInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectNameInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectNameInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectNameInfoEXT.objectType ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectNameInfoEXT.object ); - for ( const char * p = debugMarkerObjectNameInfoEXT.pObjectName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT const & debugMarkerObjectTagInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.objectType ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.object ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.tagName ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.tagSize ); - VULKAN_HPP_HASH_COMBINE( seed, debugMarkerObjectTagInfoEXT.pTag ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT const & - debugReportCallbackCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugReportCallbackCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugReportCallbackCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugReportCallbackCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, debugReportCallbackCreateInfoEXT.pfnCallback ); - VULKAN_HPP_HASH_COMBINE( seed, debugReportCallbackCreateInfoEXT.pUserData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT const & debugUtilsLabelEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsLabelEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsLabelEXT.pNext ); - for ( const char * p = debugUtilsLabelEXT.pLabelName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - for ( size_t i = 0; i < 4; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsLabelEXT.color[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT const & debugUtilsObjectNameInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectNameInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectNameInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectNameInfoEXT.objectType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectNameInfoEXT.objectHandle ); - for ( const char * p = debugUtilsObjectNameInfoEXT.pObjectName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT const & - debugUtilsMessengerCallbackDataEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.flags ); - for ( const char * p = debugUtilsMessengerCallbackDataEXT.pMessageIdName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.messageIdNumber ); - for ( const char * p = debugUtilsMessengerCallbackDataEXT.pMessage; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.queueLabelCount ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.pQueueLabels ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.cmdBufLabelCount ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.pCmdBufLabels ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.objectCount ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCallbackDataEXT.pObjects ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT const & - debugUtilsMessengerCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.messageSeverity ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.messageType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.pfnUserCallback ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsMessengerCreateInfoEXT.pUserData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT const & debugUtilsObjectTagInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.objectType ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.objectHandle ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.tagName ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.tagSize ); - VULKAN_HPP_HASH_COMBINE( seed, debugUtilsObjectTagInfoEXT.pTag ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DedicatedAllocationBufferCreateInfoNV const & - dedicatedAllocationBufferCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationBufferCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationBufferCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationBufferCreateInfoNV.dedicatedAllocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV const & - dedicatedAllocationImageCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationImageCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationImageCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationImageCreateInfoNV.dedicatedAllocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DedicatedAllocationMemoryAllocateInfoNV const & - dedicatedAllocationMemoryAllocateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationMemoryAllocateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationMemoryAllocateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationMemoryAllocateInfoNV.image ); - VULKAN_HPP_HASH_COMBINE( seed, dedicatedAllocationMemoryAllocateInfoNV.buffer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryBarrier2 const & memoryBarrier2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier2.srcStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier2.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier2.dstStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier2.dstAccessMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImageSubresourceRange const & imageSubresourceRange ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceRange.aspectMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceRange.baseMipLevel ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceRange.levelCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceRange.baseArrayLayer ); - VULKAN_HPP_HASH_COMBINE( seed, imageSubresourceRange.layerCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImageMemoryBarrier2 const & imageMemoryBarrier2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.srcStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.dstStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.dstAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.oldLayout ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.newLayout ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.srcQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.dstQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.image ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier2.subresourceRange ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DependencyInfo const & dependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.dependencyFlags ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.memoryBarrierCount ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.pMemoryBarriers ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.bufferMemoryBarrierCount ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.pBufferMemoryBarriers ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.imageMemoryBarrierCount ); - VULKAN_HPP_HASH_COMBINE( seed, dependencyInfo.pImageMemoryBarriers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DescriptorBufferInfo const & descriptorBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorBufferInfo.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorBufferInfo.offset ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorBufferInfo.range ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DescriptorImageInfo const & descriptorImageInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorImageInfo.sampler ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorImageInfo.imageView ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorImageInfo.imageLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DescriptorPoolSize const & descriptorPoolSize ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolSize.type ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolSize.descriptorCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo const & descriptorPoolCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolCreateInfo.maxSets ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolCreateInfo.poolSizeCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolCreateInfo.pPoolSizes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorPoolInlineUniformBlockCreateInfo const & - descriptorPoolInlineUniformBlockCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolInlineUniformBlockCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolInlineUniformBlockCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorPoolInlineUniformBlockCreateInfo.maxInlineUniformBlockBindings ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo const & descriptorSetAllocateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetAllocateInfo.descriptorPool ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetAllocateInfo.descriptorSetCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetAllocateInfo.pSetLayouts ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBinding const & descriptorSetLayoutBinding ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBinding.binding ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBinding.descriptorType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBinding.descriptorCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBinding.stageFlags ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBinding.pImmutableSamplers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBindingFlagsCreateInfo const & - descriptorSetLayoutBindingFlagsCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBindingFlagsCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBindingFlagsCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBindingFlagsCreateInfo.bindingCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutBindingFlagsCreateInfo.pBindingFlags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo const & descriptorSetLayoutCreateInfo ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutCreateInfo.bindingCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutCreateInfo.pBindings ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport const & descriptorSetLayoutSupport ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutSupport.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutSupport.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetLayoutSupport.supported ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetVariableDescriptorCountAllocateInfo const & - descriptorSetVariableDescriptorCountAllocateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountAllocateInfo.descriptorSetCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountAllocateInfo.pDescriptorCounts ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorSetVariableDescriptorCountLayoutSupport const & - descriptorSetVariableDescriptorCountLayoutSupport ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountLayoutSupport.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountLayoutSupport.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorSetVariableDescriptorCountLayoutSupport.maxVariableDescriptorCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateEntry const & descriptorUpdateTemplateEntry ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateEntry.dstBinding ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateEntry.dstArrayElement ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateEntry.descriptorCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateEntry.descriptorType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateEntry.offset ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateEntry.stride ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo const & - descriptorUpdateTemplateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.descriptorUpdateEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.pDescriptorUpdateEntries ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.templateType ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.descriptorSetLayout ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.pipelineBindPoint ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.pipelineLayout ); - VULKAN_HPP_HASH_COMBINE( seed, descriptorUpdateTemplateCreateInfo.set ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements const & deviceBufferMemoryRequirements ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceBufferMemoryRequirements.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceBufferMemoryRequirements.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceBufferMemoryRequirements.pCreateInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DeviceQueueCreateInfo const & deviceQueueCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueCreateInfo.queueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueCreateInfo.queueCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueCreateInfo.pQueuePriorities ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures const & physicalDeviceFeatures ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.robustBufferAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.fullDrawIndexUint32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.imageCubeArray ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.independentBlend ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.geometryShader ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.tessellationShader ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sampleRateShading ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.dualSrcBlend ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.logicOp ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.multiDrawIndirect ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.drawIndirectFirstInstance ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.depthClamp ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.depthBiasClamp ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.fillModeNonSolid ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.depthBounds ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.wideLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.largePoints ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.alphaToOne ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.multiViewport ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.samplerAnisotropy ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.textureCompressionETC2 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.textureCompressionASTC_LDR ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.textureCompressionBC ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.occlusionQueryPrecise ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.pipelineStatisticsQuery ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.vertexPipelineStoresAndAtomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.fragmentStoresAndAtomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderTessellationAndGeometryPointSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderImageGatherExtended ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderStorageImageExtendedFormats ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderStorageImageMultisample ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderStorageImageReadWithoutFormat ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderStorageImageWriteWithoutFormat ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderUniformBufferArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderSampledImageArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderStorageBufferArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderStorageImageArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderClipDistance ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderCullDistance ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderInt64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderInt16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderResourceResidency ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.shaderResourceMinLod ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseBinding ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidencyBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidencyImage2D ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidencyImage3D ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidency2Samples ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidency4Samples ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidency8Samples ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidency16Samples ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.sparseResidencyAliased ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.variableMultisampleRate ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures.inheritedQueries ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceCreateInfo const & deviceCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.queueCreateInfoCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.pQueueCreateInfos ); - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.enabledLayerCount ); - for ( size_t i = 0; i < deviceCreateInfo.enabledLayerCount; ++i ) - { - for ( const char * p = deviceCreateInfo.ppEnabledLayerNames[i]; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - } - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.enabledExtensionCount ); - for ( size_t i = 0; i < deviceCreateInfo.enabledExtensionCount; ++i ) - { - for ( const char * p = deviceCreateInfo.ppEnabledExtensionNames[i]; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - } - VULKAN_HPP_HASH_COMBINE( seed, deviceCreateInfo.pEnabledFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceDeviceMemoryReportCreateInfoEXT const & - deviceDeviceMemoryReportCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceDeviceMemoryReportCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceDeviceMemoryReportCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceDeviceMemoryReportCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, deviceDeviceMemoryReportCreateInfoEXT.pfnUserCallback ); - VULKAN_HPP_HASH_COMBINE( seed, deviceDeviceMemoryReportCreateInfoEXT.pUserData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceDiagnosticsConfigCreateInfoNV const & - deviceDiagnosticsConfigCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceDiagnosticsConfigCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceDiagnosticsConfigCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceDiagnosticsConfigCreateInfoNV.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT const & deviceEventInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceEventInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceEventInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceEventInfoEXT.deviceEvent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceGroupBindSparseInfo const & deviceGroupBindSparseInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupBindSparseInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupBindSparseInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupBindSparseInfo.resourceDeviceIndex ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupBindSparseInfo.memoryDeviceIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceGroupCommandBufferBeginInfo const & - deviceGroupCommandBufferBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupCommandBufferBeginInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupCommandBufferBeginInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupCommandBufferBeginInfo.deviceMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::DeviceGroupDeviceCreateInfo const & deviceGroupDeviceCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupDeviceCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupDeviceCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupDeviceCreateInfo.physicalDeviceCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupDeviceCreateInfo.pPhysicalDevices ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR const & - deviceGroupPresentCapabilitiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentCapabilitiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentCapabilitiesKHR.pNext ); - for ( size_t i = 0; i < VK_MAX_DEVICE_GROUP_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentCapabilitiesKHR.presentMask[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentCapabilitiesKHR.modes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceGroupPresentInfoKHR const & deviceGroupPresentInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentInfoKHR.swapchainCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentInfoKHR.pDeviceMasks ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupPresentInfoKHR.mode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DeviceGroupRenderPassBeginInfo const & deviceGroupRenderPassBeginInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupRenderPassBeginInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupRenderPassBeginInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupRenderPassBeginInfo.deviceMask ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupRenderPassBeginInfo.deviceRenderAreaCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupRenderPassBeginInfo.pDeviceRenderAreas ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const & deviceGroupSubmitInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.waitSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.pWaitSemaphoreDeviceIndices ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.commandBufferCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.pCommandBufferDeviceMasks ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.signalSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSubmitInfo.pSignalSemaphoreDeviceIndices ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceGroupSwapchainCreateInfoKHR const & - deviceGroupSwapchainCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSwapchainCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSwapchainCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceGroupSwapchainCreateInfoKHR.modes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageCreateInfo const & imageCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.imageType ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.format ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.extent ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.mipLevels ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.arrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.samples ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.tiling ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.usage ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.sharingMode ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.queueFamilyIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.pQueueFamilyIndices ); - VULKAN_HPP_HASH_COMBINE( seed, imageCreateInfo.initialLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements const & deviceImageMemoryRequirements ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceImageMemoryRequirements.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceImageMemoryRequirements.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceImageMemoryRequirements.pCreateInfo ); - VULKAN_HPP_HASH_COMBINE( seed, deviceImageMemoryRequirements.planeAspect ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo const & - deviceMemoryOpaqueCaptureAddressInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryOpaqueCaptureAddressInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryOpaqueCaptureAddressInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryOpaqueCaptureAddressInfo.memory ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceMemoryOverallocationCreateInfoAMD const & - deviceMemoryOverallocationCreateInfoAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryOverallocationCreateInfoAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryOverallocationCreateInfoAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryOverallocationCreateInfoAMD.overallocationBehavior ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceMemoryReportCallbackDataEXT const & - deviceMemoryReportCallbackDataEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.type ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.memoryObjectId ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.size ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.objectType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.objectHandle ); - VULKAN_HPP_HASH_COMBINE( seed, deviceMemoryReportCallbackDataEXT.heapIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::DevicePrivateDataCreateInfo const & devicePrivateDataCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, devicePrivateDataCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, devicePrivateDataCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, devicePrivateDataCreateInfo.privateDataSlotRequestCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceQueueGlobalPriorityCreateInfoKHR const & - deviceQueueGlobalPriorityCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueGlobalPriorityCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueGlobalPriorityCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueGlobalPriorityCreateInfoKHR.globalPriority ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 const & deviceQueueInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueInfo2.flags ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueInfo2.queueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, deviceQueueInfo2.queueIndex ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT const & directFBSurfaceCreateInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, directFBSurfaceCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, directFBSurfaceCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, directFBSurfaceCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, directFBSurfaceCreateInfoEXT.dfb ); - VULKAN_HPP_HASH_COMBINE( seed, directFBSurfaceCreateInfoEXT.surface ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const & dispatchIndirectCommand ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, dispatchIndirectCommand.x ); - VULKAN_HPP_HASH_COMBINE( seed, dispatchIndirectCommand.y ); - VULKAN_HPP_HASH_COMBINE( seed, dispatchIndirectCommand.z ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT const & displayEventInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayEventInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayEventInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayEventInfoEXT.displayEvent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR const & displayModeParametersKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayModeParametersKHR.visibleRegion ); - VULKAN_HPP_HASH_COMBINE( seed, displayModeParametersKHR.refreshRate ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR const & displayModeCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayModeCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayModeCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayModeCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, displayModeCreateInfoKHR.parameters ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayModePropertiesKHR const & displayModePropertiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayModePropertiesKHR.displayMode ); - VULKAN_HPP_HASH_COMBINE( seed, displayModePropertiesKHR.parameters ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayModeProperties2KHR const & displayModeProperties2KHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayModeProperties2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayModeProperties2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayModeProperties2KHR.displayModeProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayNativeHdrSurfaceCapabilitiesAMD const & - displayNativeHdrSurfaceCapabilitiesAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayNativeHdrSurfaceCapabilitiesAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayNativeHdrSurfaceCapabilitiesAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayNativeHdrSurfaceCapabilitiesAMD.localDimmingSupport ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR const & displayPlaneCapabilitiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.supportedAlpha ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.minSrcPosition ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.maxSrcPosition ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.minSrcExtent ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.maxSrcExtent ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.minDstPosition ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.maxDstPosition ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.minDstExtent ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilitiesKHR.maxDstExtent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR const & displayPlaneCapabilities2KHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilities2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilities2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneCapabilities2KHR.capabilities ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR const & displayPlaneInfo2KHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneInfo2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneInfo2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneInfo2KHR.mode ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneInfo2KHR.planeIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayPlanePropertiesKHR const & displayPlanePropertiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPlanePropertiesKHR.currentDisplay ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlanePropertiesKHR.currentStackIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DisplayPlaneProperties2KHR const & displayPlaneProperties2KHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneProperties2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneProperties2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayPlaneProperties2KHR.displayPlaneProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT const & displayPowerInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPowerInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayPowerInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayPowerInfoEXT.powerState ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DisplayPresentInfoKHR const & displayPresentInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPresentInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayPresentInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayPresentInfoKHR.srcRect ); - VULKAN_HPP_HASH_COMBINE( seed, displayPresentInfoKHR.dstRect ); - VULKAN_HPP_HASH_COMBINE( seed, displayPresentInfoKHR.persistent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DisplayPropertiesKHR const & displayPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayPropertiesKHR.display ); - for ( const char * p = displayPropertiesKHR.displayName; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - VULKAN_HPP_HASH_COMBINE( seed, displayPropertiesKHR.physicalDimensions ); - VULKAN_HPP_HASH_COMBINE( seed, displayPropertiesKHR.physicalResolution ); - VULKAN_HPP_HASH_COMBINE( seed, displayPropertiesKHR.supportedTransforms ); - VULKAN_HPP_HASH_COMBINE( seed, displayPropertiesKHR.planeReorderPossible ); - VULKAN_HPP_HASH_COMBINE( seed, displayPropertiesKHR.persistentContent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DisplayProperties2KHR const & displayProperties2KHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displayProperties2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displayProperties2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displayProperties2KHR.displayProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR const & displaySurfaceCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.displayMode ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.planeIndex ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.planeStackIndex ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.transform ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.globalAlpha ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.alphaMode ); - VULKAN_HPP_HASH_COMBINE( seed, displaySurfaceCreateInfoKHR.imageExtent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DrawIndexedIndirectCommand const & drawIndexedIndirectCommand ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drawIndexedIndirectCommand.indexCount ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndexedIndirectCommand.instanceCount ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndexedIndirectCommand.firstIndex ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndexedIndirectCommand.vertexOffset ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndexedIndirectCommand.firstInstance ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DrawIndirectCommand const & drawIndirectCommand ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drawIndirectCommand.vertexCount ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndirectCommand.instanceCount ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndirectCommand.firstVertex ); - VULKAN_HPP_HASH_COMBINE( seed, drawIndirectCommand.firstInstance ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DrawMeshTasksIndirectCommandNV const & drawMeshTasksIndirectCommandNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drawMeshTasksIndirectCommandNV.taskCount ); - VULKAN_HPP_HASH_COMBINE( seed, drawMeshTasksIndirectCommandNV.firstTask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DrmFormatModifierProperties2EXT const & drmFormatModifierProperties2EXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierProperties2EXT.drmFormatModifier ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierProperties2EXT.drmFormatModifierPlaneCount ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierProperties2EXT.drmFormatModifierTilingFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT const & drmFormatModifierPropertiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesEXT.drmFormatModifier ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesEXT.drmFormatModifierPlaneCount ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesEXT.drmFormatModifierTilingFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesList2EXT const & - drmFormatModifierPropertiesList2EXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesList2EXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesList2EXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesList2EXT.drmFormatModifierCount ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesList2EXT.pDrmFormatModifierProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesListEXT const & - drmFormatModifierPropertiesListEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesListEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesListEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesListEXT.drmFormatModifierCount ); - VULKAN_HPP_HASH_COMBINE( seed, drmFormatModifierPropertiesListEXT.pDrmFormatModifierProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::EventCreateInfo const & eventCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, eventCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, eventCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, eventCreateInfo.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExportFenceCreateInfo const & exportFenceCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportFenceCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportFenceCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportFenceCreateInfo.handleTypes ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExportFenceWin32HandleInfoKHR const & exportFenceWin32HandleInfoKHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportFenceWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportFenceWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportFenceWin32HandleInfoKHR.pAttributes ); - VULKAN_HPP_HASH_COMBINE( seed, exportFenceWin32HandleInfoKHR.dwAccess ); - VULKAN_HPP_HASH_COMBINE( seed, exportFenceWin32HandleInfoKHR.name ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExportMemoryAllocateInfo const & exportMemoryAllocateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryAllocateInfo.handleTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExportMemoryAllocateInfoNV const & exportMemoryAllocateInfoNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryAllocateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryAllocateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryAllocateInfoNV.handleTypes ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExportMemoryWin32HandleInfoKHR const & exportMemoryWin32HandleInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoKHR.pAttributes ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoKHR.dwAccess ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoKHR.name ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExportMemoryWin32HandleInfoNV const & exportMemoryWin32HandleInfoNV ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoNV.pAttributes ); - VULKAN_HPP_HASH_COMBINE( seed, exportMemoryWin32HandleInfoNV.dwAccess ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExportSemaphoreCreateInfo const & exportSemaphoreCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreCreateInfo.handleTypes ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExportSemaphoreWin32HandleInfoKHR const & - exportSemaphoreWin32HandleInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreWin32HandleInfoKHR.pAttributes ); - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreWin32HandleInfoKHR.dwAccess ); - VULKAN_HPP_HASH_COMBINE( seed, exportSemaphoreWin32HandleInfoKHR.name ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExtensionProperties const & extensionProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - for ( size_t i = 0; i < VK_MAX_EXTENSION_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, extensionProperties.extensionName[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, extensionProperties.specVersion ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExternalMemoryProperties const & externalMemoryProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryProperties.externalMemoryFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryProperties.exportFromImportedHandleTypes ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryProperties.compatibleHandleTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExternalBufferProperties const & externalBufferProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalBufferProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalBufferProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalBufferProperties.externalMemoryProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExternalFenceProperties const & externalFenceProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalFenceProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalFenceProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalFenceProperties.exportFromImportedHandleTypes ); - VULKAN_HPP_HASH_COMBINE( seed, externalFenceProperties.compatibleHandleTypes ); - VULKAN_HPP_HASH_COMBINE( seed, externalFenceProperties.externalFenceFeatures ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExternalFormatANDROID const & externalFormatANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalFormatANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalFormatANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalFormatANDROID.externalFormat ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExternalImageFormatProperties const & externalImageFormatProperties ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatProperties.externalMemoryProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImageFormatProperties const & imageFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties.maxExtent ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties.maxMipLevels ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties.maxArrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties.sampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties.maxResourceSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV const & externalImageFormatPropertiesNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatPropertiesNV.imageFormatProperties ); - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatPropertiesNV.externalMemoryFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatPropertiesNV.exportFromImportedHandleTypes ); - VULKAN_HPP_HASH_COMBINE( seed, externalImageFormatPropertiesNV.compatibleHandleTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExternalMemoryBufferCreateInfo const & externalMemoryBufferCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryBufferCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryBufferCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryBufferCreateInfo.handleTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ExternalMemoryImageCreateInfo const & externalMemoryImageCreateInfo ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryImageCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryImageCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryImageCreateInfo.handleTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ExternalMemoryImageCreateInfoNV const & externalMemoryImageCreateInfoNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryImageCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryImageCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalMemoryImageCreateInfoNV.handleTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties const & externalSemaphoreProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, externalSemaphoreProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, externalSemaphoreProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, externalSemaphoreProperties.exportFromImportedHandleTypes ); - VULKAN_HPP_HASH_COMBINE( seed, externalSemaphoreProperties.compatibleHandleTypes ); - VULKAN_HPP_HASH_COMBINE( seed, externalSemaphoreProperties.externalSemaphoreFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FenceCreateInfo const & fenceCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, fenceCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, fenceCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, fenceCreateInfo.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR const & fenceGetFdInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, fenceGetFdInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, fenceGetFdInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, fenceGetFdInfoKHR.fence ); - VULKAN_HPP_HASH_COMBINE( seed, fenceGetFdInfoKHR.handleType ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR const & fenceGetWin32HandleInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, fenceGetWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, fenceGetWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, fenceGetWin32HandleInfoKHR.fence ); - VULKAN_HPP_HASH_COMBINE( seed, fenceGetWin32HandleInfoKHR.handleType ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FilterCubicImageViewImageFormatPropertiesEXT const & - filterCubicImageViewImageFormatPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, filterCubicImageViewImageFormatPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, filterCubicImageViewImageFormatPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, filterCubicImageViewImageFormatPropertiesEXT.filterCubic ); - VULKAN_HPP_HASH_COMBINE( seed, filterCubicImageViewImageFormatPropertiesEXT.filterCubicMinmax ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FormatProperties const & formatProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, formatProperties.linearTilingFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties.optimalTilingFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties.bufferFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::FormatProperties2 const & formatProperties2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, formatProperties2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties2.formatProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::FormatProperties3 const & formatProperties3 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, formatProperties3.sType ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties3.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties3.linearTilingFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties3.optimalTilingFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, formatProperties3.bufferFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FragmentShadingRateAttachmentInfoKHR const & - fragmentShadingRateAttachmentInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, fragmentShadingRateAttachmentInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, fragmentShadingRateAttachmentInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, fragmentShadingRateAttachmentInfoKHR.pFragmentShadingRateAttachment ); - VULKAN_HPP_HASH_COMBINE( seed, fragmentShadingRateAttachmentInfoKHR.shadingRateAttachmentTexelSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfo const & framebufferAttachmentImageInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.usage ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.width ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.height ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.layerCount ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.viewFormatCount ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentImageInfo.pViewFormats ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FramebufferAttachmentsCreateInfo const & - framebufferAttachmentsCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentsCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentsCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentsCreateInfo.attachmentImageInfoCount ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferAttachmentsCreateInfo.pAttachmentImageInfos ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::FramebufferCreateInfo const & framebufferCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.renderPass ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.attachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.pAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.width ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.height ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferCreateInfo.layers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::FramebufferMixedSamplesCombinationNV const & - framebufferMixedSamplesCombinationNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, framebufferMixedSamplesCombinationNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferMixedSamplesCombinationNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferMixedSamplesCombinationNV.coverageReductionMode ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferMixedSamplesCombinationNV.rasterizationSamples ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferMixedSamplesCombinationNV.depthStencilSamples ); - VULKAN_HPP_HASH_COMBINE( seed, framebufferMixedSamplesCombinationNV.colorSamples ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::IndirectCommandsStreamNV const & indirectCommandsStreamNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsStreamNV.buffer ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsStreamNV.offset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV const & generatedCommandsInfoNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.pipelineBindPoint ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.pipeline ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.indirectCommandsLayout ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.streamCount ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.pStreams ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.sequencesCount ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.preprocessBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.preprocessOffset ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.preprocessSize ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.sequencesCountBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.sequencesCountOffset ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.sequencesIndexBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsInfoNV.sequencesIndexOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV const & - generatedCommandsMemoryRequirementsInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsMemoryRequirementsInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsMemoryRequirementsInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsMemoryRequirementsInfoNV.pipelineBindPoint ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsMemoryRequirementsInfoNV.pipeline ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsMemoryRequirementsInfoNV.indirectCommandsLayout ); - VULKAN_HPP_HASH_COMBINE( seed, generatedCommandsMemoryRequirementsInfoNV.maxSequencesCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VertexInputBindingDescription const & vertexInputBindingDescription ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription.binding ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription.stride ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription.inputRate ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription const & vertexInputAttributeDescription ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription.location ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription.binding ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription.format ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription.offset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo const & - pipelineVertexInputStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.vertexBindingDescriptionCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.pVertexBindingDescriptions ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.vertexAttributeDescriptionCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputStateCreateInfo.pVertexAttributeDescriptions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateInfo const & - pipelineInputAssemblyStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineInputAssemblyStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineInputAssemblyStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineInputAssemblyStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineInputAssemblyStateCreateInfo.topology ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineInputAssemblyStateCreateInfo.primitiveRestartEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo const & - pipelineTessellationStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationStateCreateInfo.patchControlPoints ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateInfo const & pipelineViewportStateCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.viewportCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.pViewports ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.scissorCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportStateCreateInfo.pScissors ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateInfo const & - pipelineRasterizationStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.depthClampEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.rasterizerDiscardEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.polygonMode ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.cullMode ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.frontFace ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.depthBiasEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.depthBiasConstantFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.depthBiasClamp ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.depthBiasSlopeFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateCreateInfo.lineWidth ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateInfo const & - pipelineMultisampleStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.rasterizationSamples ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.sampleShadingEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.minSampleShading ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.pSampleMask ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.alphaToCoverageEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineMultisampleStateCreateInfo.alphaToOneEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::StencilOpState const & stencilOpState ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.failOp ); - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.passOp ); - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.depthFailOp ); - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.compareOp ); - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.compareMask ); - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.writeMask ); - VULKAN_HPP_HASH_COMBINE( seed, stencilOpState.reference ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo const & - pipelineDepthStencilStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.depthTestEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.depthWriteEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.depthCompareOp ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.depthBoundsTestEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.stencilTestEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.front ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.back ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.minDepthBounds ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDepthStencilStateCreateInfo.maxDepthBounds ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState const & - pipelineColorBlendAttachmentState ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.blendEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.srcColorBlendFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.dstColorBlendFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.colorBlendOp ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.srcAlphaBlendFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.dstAlphaBlendFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.alphaBlendOp ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAttachmentState.colorWriteMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateInfo const & - pipelineColorBlendStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.logicOpEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.logicOp ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.attachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.pAttachments ); - for ( size_t i = 0; i < 4; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendStateCreateInfo.blendConstants[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo const & pipelineDynamicStateCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineDynamicStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDynamicStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDynamicStateCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDynamicStateCreateInfo.dynamicStateCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDynamicStateCreateInfo.pDynamicStates ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo const & graphicsPipelineCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.stageCount ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pStages ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pVertexInputState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pInputAssemblyState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pTessellationState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pViewportState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pRasterizationState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pMultisampleState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pDepthStencilState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pColorBlendState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.pDynamicState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.layout ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.renderPass ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.subpass ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.basePipelineHandle ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineCreateInfo.basePipelineIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::GraphicsShaderGroupCreateInfoNV const & graphicsShaderGroupCreateInfoNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, graphicsShaderGroupCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsShaderGroupCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsShaderGroupCreateInfoNV.stageCount ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsShaderGroupCreateInfoNV.pStages ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsShaderGroupCreateInfoNV.pVertexInputState ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsShaderGroupCreateInfoNV.pTessellationState ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::GraphicsPipelineShaderGroupsCreateInfoNV const & - graphicsPipelineShaderGroupsCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineShaderGroupsCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineShaderGroupsCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineShaderGroupsCreateInfoNV.groupCount ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineShaderGroupsCreateInfoNV.pGroups ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineShaderGroupsCreateInfoNV.pipelineCount ); - VULKAN_HPP_HASH_COMBINE( seed, graphicsPipelineShaderGroupsCreateInfoNV.pPipelines ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::XYColorEXT const & xYColorEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, xYColorEXT.x ); - VULKAN_HPP_HASH_COMBINE( seed, xYColorEXT.y ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::HdrMetadataEXT const & hdrMetadataEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.displayPrimaryRed ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.displayPrimaryGreen ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.displayPrimaryBlue ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.whitePoint ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.maxLuminance ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.minLuminance ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.maxContentLightLevel ); - VULKAN_HPP_HASH_COMBINE( seed, hdrMetadataEXT.maxFrameAverageLightLevel ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT const & headlessSurfaceCreateInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, headlessSurfaceCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, headlessSurfaceCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, headlessSurfaceCreateInfoEXT.flags ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK const & iOSSurfaceCreateInfoMVK ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, iOSSurfaceCreateInfoMVK.sType ); - VULKAN_HPP_HASH_COMBINE( seed, iOSSurfaceCreateInfoMVK.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, iOSSurfaceCreateInfoMVK.flags ); - VULKAN_HPP_HASH_COMBINE( seed, iOSSurfaceCreateInfoMVK.pView ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageBlit const & imageBlit ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageBlit.srcSubresource ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, imageBlit.srcOffsets[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, imageBlit.dstSubresource ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, imageBlit.dstOffsets[i] ); - } - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA const & - imageFormatConstraintsInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.imageCreateInfo ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.requiredFormatFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.flags ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.sysmemPixelFormat ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.colorSpaceCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatConstraintsInfoFUCHSIA.pColorSpaces ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA const & imageConstraintsInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageConstraintsInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageConstraintsInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageConstraintsInfoFUCHSIA.formatConstraintsCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageConstraintsInfoFUCHSIA.pFormatConstraints ); - VULKAN_HPP_HASH_COMBINE( seed, imageConstraintsInfoFUCHSIA.bufferCollectionConstraints ); - VULKAN_HPP_HASH_COMBINE( seed, imageConstraintsInfoFUCHSIA.flags ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageCopy const & imageCopy ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageCopy.srcSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy.srcOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy.dstSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy.dstOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageCopy.extent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SubresourceLayout const & subresourceLayout ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.offset ); - VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.size ); - VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.rowPitch ); - VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.arrayPitch ); - VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.depthPitch ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierExplicitCreateInfoEXT const & - imageDrmFormatModifierExplicitCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierExplicitCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierExplicitCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierExplicitCreateInfoEXT.drmFormatModifier ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierExplicitCreateInfoEXT.drmFormatModifierPlaneCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierExplicitCreateInfoEXT.pPlaneLayouts ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierListCreateInfoEXT const & - imageDrmFormatModifierListCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierListCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierListCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierListCreateInfoEXT.drmFormatModifierCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierListCreateInfoEXT.pDrmFormatModifiers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT const & - imageDrmFormatModifierPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageDrmFormatModifierPropertiesEXT.drmFormatModifier ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageFormatListCreateInfo const & imageFormatListCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageFormatListCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatListCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatListCreateInfo.viewFormatCount ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatListCreateInfo.pViewFormats ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageFormatProperties2 const & imageFormatProperties2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageFormatProperties2.imageFormatProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImageMemoryBarrier const & imageMemoryBarrier ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.dstAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.oldLayout ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.newLayout ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.srcQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.dstQueueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.image ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryBarrier.subresourceRange ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 const & imageMemoryRequirementsInfo2 ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryRequirementsInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryRequirementsInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageMemoryRequirementsInfo2.image ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA const & - imagePipeSurfaceCreateInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imagePipeSurfaceCreateInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imagePipeSurfaceCreateInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imagePipeSurfaceCreateInfoFUCHSIA.flags ); - VULKAN_HPP_HASH_COMBINE( seed, imagePipeSurfaceCreateInfoFUCHSIA.imagePipeHandle ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImagePlaneMemoryRequirementsInfo const & - imagePlaneMemoryRequirementsInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imagePlaneMemoryRequirementsInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imagePlaneMemoryRequirementsInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imagePlaneMemoryRequirementsInfo.planeAspect ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageResolve const & imageResolve ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageResolve.srcSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve.srcOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve.dstSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve.dstOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve.extent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageResolve2 const & imageResolve2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.srcSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.srcOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.dstSubresource ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.dstOffset ); - VULKAN_HPP_HASH_COMBINE( seed, imageResolve2.extent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 const & - imageSparseMemoryRequirementsInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageSparseMemoryRequirementsInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageSparseMemoryRequirementsInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageSparseMemoryRequirementsInfo2.image ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::ImageStencilUsageCreateInfo const & imageStencilUsageCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageStencilUsageCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageStencilUsageCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageStencilUsageCreateInfo.stencilUsage ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::ImageSwapchainCreateInfoKHR const & imageSwapchainCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageSwapchainCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageSwapchainCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageSwapchainCreateInfoKHR.swapchain ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageViewASTCDecodeModeEXT const & imageViewASTCDecodeModeEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageViewASTCDecodeModeEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewASTCDecodeModeEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewASTCDecodeModeEXT.decodeMode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX const & imageViewAddressPropertiesNVX ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageViewAddressPropertiesNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewAddressPropertiesNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewAddressPropertiesNVX.deviceAddress ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewAddressPropertiesNVX.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImageViewCreateInfo const & imageViewCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.image ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.viewType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.format ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.components ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewCreateInfo.subresourceRange ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX const & imageViewHandleInfoNVX ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageViewHandleInfoNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewHandleInfoNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewHandleInfoNVX.imageView ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewHandleInfoNVX.descriptorType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewHandleInfoNVX.sampler ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageViewMinLodCreateInfoEXT const & imageViewMinLodCreateInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageViewMinLodCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewMinLodCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewMinLodCreateInfoEXT.minLod ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImageViewUsageCreateInfo const & imageViewUsageCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, imageViewUsageCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewUsageCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, imageViewUsageCreateInfo.usage ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportAndroidHardwareBufferInfoANDROID const & - importAndroidHardwareBufferInfoANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importAndroidHardwareBufferInfoANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importAndroidHardwareBufferInfoANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importAndroidHardwareBufferInfoANDROID.buffer ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR const & importFenceFdInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importFenceFdInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceFdInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceFdInfoKHR.fence ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceFdInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceFdInfoKHR.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceFdInfoKHR.fd ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR const & importFenceWin32HandleInfoKHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.fence ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.handle ); - VULKAN_HPP_HASH_COMBINE( seed, importFenceWin32HandleInfoKHR.name ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportMemoryBufferCollectionFUCHSIA const & - importMemoryBufferCollectionFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importMemoryBufferCollectionFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryBufferCollectionFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryBufferCollectionFUCHSIA.collection ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryBufferCollectionFUCHSIA.index ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImportMemoryFdInfoKHR const & importMemoryFdInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importMemoryFdInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryFdInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryFdInfoKHR.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryFdInfoKHR.fd ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImportMemoryHostPointerInfoEXT const & importMemoryHostPointerInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importMemoryHostPointerInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryHostPointerInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryHostPointerInfoEXT.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryHostPointerInfoEXT.pHostPointer ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ImportMemoryWin32HandleInfoKHR const & importMemoryWin32HandleInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoKHR.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoKHR.handle ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoKHR.name ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportMemoryWin32HandleInfoNV const & importMemoryWin32HandleInfoNV ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoNV.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryWin32HandleInfoNV.handle ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportMemoryZirconHandleInfoFUCHSIA const & - importMemoryZirconHandleInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importMemoryZirconHandleInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryZirconHandleInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryZirconHandleInfoFUCHSIA.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importMemoryZirconHandleInfoFUCHSIA.handle ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR const & importSemaphoreFdInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreFdInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreFdInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreFdInfoKHR.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreFdInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreFdInfoKHR.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreFdInfoKHR.fd ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR const & - importSemaphoreWin32HandleInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.handle ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreWin32HandleInfoKHR.name ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA const & - importSemaphoreZirconHandleInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreZirconHandleInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreZirconHandleInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreZirconHandleInfoFUCHSIA.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreZirconHandleInfoFUCHSIA.flags ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreZirconHandleInfoFUCHSIA.handleType ); - VULKAN_HPP_HASH_COMBINE( seed, importSemaphoreZirconHandleInfoFUCHSIA.zirconHandle ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNV const & indirectCommandsLayoutTokenNV ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.tokenType ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.stream ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.offset ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.vertexBindingUnit ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.vertexDynamicStride ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pushconstantPipelineLayout ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pushconstantShaderStageFlags ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pushconstantOffset ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pushconstantSize ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.indirectStateFlags ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.indexTypeCount ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pIndexTypes ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutTokenNV.pIndexTypeValues ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV const & - indirectCommandsLayoutCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.pipelineBindPoint ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.tokenCount ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.pTokens ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.streamCount ); - VULKAN_HPP_HASH_COMBINE( seed, indirectCommandsLayoutCreateInfoNV.pStreamStrides ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL const & - initializePerformanceApiInfoINTEL ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, initializePerformanceApiInfoINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, initializePerformanceApiInfoINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, initializePerformanceApiInfoINTEL.pUserData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference const & inputAttachmentAspectReference ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, inputAttachmentAspectReference.subpass ); - VULKAN_HPP_HASH_COMBINE( seed, inputAttachmentAspectReference.inputAttachmentIndex ); - VULKAN_HPP_HASH_COMBINE( seed, inputAttachmentAspectReference.aspectMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::InstanceCreateInfo const & instanceCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, instanceCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, instanceCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, instanceCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, instanceCreateInfo.pApplicationInfo ); - VULKAN_HPP_HASH_COMBINE( seed, instanceCreateInfo.enabledLayerCount ); - for ( size_t i = 0; i < instanceCreateInfo.enabledLayerCount; ++i ) - { - for ( const char * p = instanceCreateInfo.ppEnabledLayerNames[i]; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - } - VULKAN_HPP_HASH_COMBINE( seed, instanceCreateInfo.enabledExtensionCount ); - for ( size_t i = 0; i < instanceCreateInfo.enabledExtensionCount; ++i ) - { - for ( const char * p = instanceCreateInfo.ppEnabledExtensionNames[i]; *p != '\0'; ++p ) - { - VULKAN_HPP_HASH_COMBINE( seed, *p ); - } - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::LayerProperties const & layerProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - for ( size_t i = 0; i < VK_MAX_EXTENSION_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, layerProperties.layerName[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, layerProperties.specVersion ); - VULKAN_HPP_HASH_COMBINE( seed, layerProperties.implementationVersion ); - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, layerProperties.description[i] ); - } - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK const & macOSSurfaceCreateInfoMVK ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, macOSSurfaceCreateInfoMVK.sType ); - VULKAN_HPP_HASH_COMBINE( seed, macOSSurfaceCreateInfoMVK.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, macOSSurfaceCreateInfoMVK.flags ); - VULKAN_HPP_HASH_COMBINE( seed, macOSSurfaceCreateInfoMVK.pView ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MappedMemoryRange const & mappedMemoryRange ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, mappedMemoryRange.sType ); - VULKAN_HPP_HASH_COMBINE( seed, mappedMemoryRange.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, mappedMemoryRange.memory ); - VULKAN_HPP_HASH_COMBINE( seed, mappedMemoryRange.offset ); - VULKAN_HPP_HASH_COMBINE( seed, mappedMemoryRange.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryAllocateFlagsInfo const & memoryAllocateFlagsInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateFlagsInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateFlagsInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateFlagsInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateFlagsInfo.deviceMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryAllocateInfo const & memoryAllocateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.allocationSize ); - VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.memoryTypeIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryBarrier const & memoryBarrier ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, memoryBarrier.dstAccessMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::MemoryDedicatedAllocateInfo const & memoryDedicatedAllocateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedAllocateInfo.image ); - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedAllocateInfo.buffer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::MemoryDedicatedRequirements const & memoryDedicatedRequirements ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedRequirements.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedRequirements.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedRequirements.prefersDedicatedAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, memoryDedicatedRequirements.requiresDedicatedAllocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR const & memoryFdPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryFdPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryFdPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryFdPropertiesKHR.memoryTypeBits ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID const & - memoryGetAndroidHardwareBufferInfoANDROID ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryGetAndroidHardwareBufferInfoANDROID.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetAndroidHardwareBufferInfoANDROID.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetAndroidHardwareBufferInfoANDROID.memory ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR const & memoryGetFdInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryGetFdInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetFdInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetFdInfoKHR.memory ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetFdInfoKHR.handleType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV const & memoryGetRemoteAddressInfoNV ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryGetRemoteAddressInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetRemoteAddressInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetRemoteAddressInfoNV.memory ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetRemoteAddressInfoNV.handleType ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR const & memoryGetWin32HandleInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryGetWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetWin32HandleInfoKHR.memory ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetWin32HandleInfoKHR.handleType ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA const & - memoryGetZirconHandleInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryGetZirconHandleInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetZirconHandleInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetZirconHandleInfoFUCHSIA.memory ); - VULKAN_HPP_HASH_COMBINE( seed, memoryGetZirconHandleInfoFUCHSIA.handleType ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryHeap const & memoryHeap ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryHeap.size ); - VULKAN_HPP_HASH_COMBINE( seed, memoryHeap.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT const & memoryHostPointerPropertiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryHostPointerPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryHostPointerPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryHostPointerPropertiesEXT.memoryTypeBits ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryOpaqueCaptureAddressAllocateInfo const & - memoryOpaqueCaptureAddressAllocateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryOpaqueCaptureAddressAllocateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryOpaqueCaptureAddressAllocateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryOpaqueCaptureAddressAllocateInfo.opaqueCaptureAddress ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryPriorityAllocateInfoEXT const & memoryPriorityAllocateInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryPriorityAllocateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryPriorityAllocateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryPriorityAllocateInfoEXT.priority ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryRequirements const & memoryRequirements ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryRequirements.size ); - VULKAN_HPP_HASH_COMBINE( seed, memoryRequirements.alignment ); - VULKAN_HPP_HASH_COMBINE( seed, memoryRequirements.memoryTypeBits ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryRequirements2 const & memoryRequirements2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryRequirements2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryRequirements2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryRequirements2.memoryRequirements ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryType const & memoryType ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryType.propertyFlags ); - VULKAN_HPP_HASH_COMBINE( seed, memoryType.heapIndex ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR const & memoryWin32HandlePropertiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryWin32HandlePropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryWin32HandlePropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryWin32HandlePropertiesKHR.memoryTypeBits ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA const & - memoryZirconHandlePropertiesFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, memoryZirconHandlePropertiesFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, memoryZirconHandlePropertiesFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, memoryZirconHandlePropertiesFUCHSIA.memoryTypeBits ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT const & metalSurfaceCreateInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, metalSurfaceCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, metalSurfaceCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, metalSurfaceCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, metalSurfaceCreateInfoEXT.pLayer ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT const & multiDrawIndexedInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, multiDrawIndexedInfoEXT.firstIndex ); - VULKAN_HPP_HASH_COMBINE( seed, multiDrawIndexedInfoEXT.indexCount ); - VULKAN_HPP_HASH_COMBINE( seed, multiDrawIndexedInfoEXT.vertexOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MultiDrawInfoEXT const & multiDrawInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, multiDrawInfoEXT.firstVertex ); - VULKAN_HPP_HASH_COMBINE( seed, multiDrawInfoEXT.vertexCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT const & multisamplePropertiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, multisamplePropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, multisamplePropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, multisamplePropertiesEXT.maxSampleLocationGridSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MultiviewPerViewAttributesInfoNVX const & - multiviewPerViewAttributesInfoNVX ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, multiviewPerViewAttributesInfoNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, multiviewPerViewAttributesInfoNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, multiviewPerViewAttributesInfoNVX.perViewAttributes ); - VULKAN_HPP_HASH_COMBINE( seed, multiviewPerViewAttributesInfoNVX.perViewAttributesPositionXOnly ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::MutableDescriptorTypeListVALVE const & mutableDescriptorTypeListVALVE ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, mutableDescriptorTypeListVALVE.descriptorTypeCount ); - VULKAN_HPP_HASH_COMBINE( seed, mutableDescriptorTypeListVALVE.pDescriptorTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::MutableDescriptorTypeCreateInfoVALVE const & - mutableDescriptorTypeCreateInfoVALVE ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, mutableDescriptorTypeCreateInfoVALVE.sType ); - VULKAN_HPP_HASH_COMBINE( seed, mutableDescriptorTypeCreateInfoVALVE.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, mutableDescriptorTypeCreateInfoVALVE.mutableDescriptorTypeListCount ); - VULKAN_HPP_HASH_COMBINE( seed, mutableDescriptorTypeCreateInfoVALVE.pMutableDescriptorTypeLists ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PastPresentationTimingGOOGLE const & pastPresentationTimingGOOGLE ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pastPresentationTimingGOOGLE.presentID ); - VULKAN_HPP_HASH_COMBINE( seed, pastPresentationTimingGOOGLE.desiredPresentTime ); - VULKAN_HPP_HASH_COMBINE( seed, pastPresentationTimingGOOGLE.actualPresentTime ); - VULKAN_HPP_HASH_COMBINE( seed, pastPresentationTimingGOOGLE.earliestPresentTime ); - VULKAN_HPP_HASH_COMBINE( seed, pastPresentationTimingGOOGLE.presentMargin ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL const & - performanceConfigurationAcquireInfoINTEL ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceConfigurationAcquireInfoINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceConfigurationAcquireInfoINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceConfigurationAcquireInfoINTEL.type ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceCounterDescriptionKHR const & - performanceCounterDescriptionKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterDescriptionKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterDescriptionKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterDescriptionKHR.flags ); - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterDescriptionKHR.name[i] ); - } - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterDescriptionKHR.category[i] ); - } - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterDescriptionKHR.description[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PerformanceCounterKHR const & performanceCounterKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterKHR.unit ); - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterKHR.scope ); - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterKHR.storage ); - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, performanceCounterKHR.uuid[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL const & performanceMarkerInfoINTEL ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceMarkerInfoINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceMarkerInfoINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceMarkerInfoINTEL.marker ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL const & performanceOverrideInfoINTEL ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceOverrideInfoINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceOverrideInfoINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceOverrideInfoINTEL.type ); - VULKAN_HPP_HASH_COMBINE( seed, performanceOverrideInfoINTEL.enable ); - VULKAN_HPP_HASH_COMBINE( seed, performanceOverrideInfoINTEL.parameter ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceQuerySubmitInfoKHR const & performanceQuerySubmitInfoKHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceQuerySubmitInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceQuerySubmitInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceQuerySubmitInfoKHR.counterPassIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL const & - performanceStreamMarkerInfoINTEL ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, performanceStreamMarkerInfoINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, performanceStreamMarkerInfoINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, performanceStreamMarkerInfoINTEL.marker ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevice16BitStorageFeatures const & - physicalDevice16BitStorageFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice16BitStorageFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice16BitStorageFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice16BitStorageFeatures.storageBuffer16BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice16BitStorageFeatures.uniformAndStorageBuffer16BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice16BitStorageFeatures.storagePushConstant16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice16BitStorageFeatures.storageInputOutput16 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevice4444FormatsFeaturesEXT const & - physicalDevice4444FormatsFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice4444FormatsFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice4444FormatsFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice4444FormatsFeaturesEXT.formatA4R4G4B4 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice4444FormatsFeaturesEXT.formatA4B4G4R4 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevice8BitStorageFeatures const & - physicalDevice8BitStorageFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice8BitStorageFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice8BitStorageFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice8BitStorageFeatures.storageBuffer8BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice8BitStorageFeatures.uniformAndStorageBuffer8BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevice8BitStorageFeatures.storagePushConstant8 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceASTCDecodeFeaturesEXT const & - physicalDeviceASTCDecodeFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceASTCDecodeFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceASTCDecodeFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceASTCDecodeFeaturesEXT.decodeModeSharedExponent ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceAccelerationStructureFeaturesKHR const & - physicalDeviceAccelerationStructureFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructureFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructureFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructureFeaturesKHR.accelerationStructure ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceAccelerationStructureFeaturesKHR.accelerationStructureCaptureReplay ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceAccelerationStructureFeaturesKHR.accelerationStructureIndirectBuild ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructureFeaturesKHR.accelerationStructureHostCommands ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceAccelerationStructureFeaturesKHR.descriptorBindingAccelerationStructureUpdateAfterBind ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceAccelerationStructurePropertiesKHR const & - physicalDeviceAccelerationStructurePropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructurePropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructurePropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructurePropertiesKHR.maxGeometryCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructurePropertiesKHR.maxInstanceCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceAccelerationStructurePropertiesKHR.maxPrimitiveCount ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceAccelerationStructurePropertiesKHR.maxPerStageDescriptorAccelerationStructures ); - VULKAN_HPP_HASH_COMBINE( - seed, - physicalDeviceAccelerationStructurePropertiesKHR.maxPerStageDescriptorUpdateAfterBindAccelerationStructures ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceAccelerationStructurePropertiesKHR.maxDescriptorSetAccelerationStructures ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceAccelerationStructurePropertiesKHR.maxDescriptorSetUpdateAfterBindAccelerationStructures ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceAccelerationStructurePropertiesKHR.minAccelerationStructureScratchOffsetAlignment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceBlendOperationAdvancedFeaturesEXT const & - physicalDeviceBlendOperationAdvancedFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedFeaturesEXT.advancedBlendCoherentOperations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceBlendOperationAdvancedPropertiesEXT const & - physicalDeviceBlendOperationAdvancedPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceBlendOperationAdvancedPropertiesEXT.advancedBlendMaxColorAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.advancedBlendIndependentBlend ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.advancedBlendNonPremultipliedSrcColor ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.advancedBlendNonPremultipliedDstColor ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.advancedBlendCorrelatedOverlap ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBlendOperationAdvancedPropertiesEXT.advancedBlendAllOperations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceBorderColorSwizzleFeaturesEXT const & - physicalDeviceBorderColorSwizzleFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBorderColorSwizzleFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBorderColorSwizzleFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBorderColorSwizzleFeaturesEXT.borderColorSwizzle ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBorderColorSwizzleFeaturesEXT.borderColorSwizzleFromImage ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceBufferDeviceAddressFeatures const & - physicalDeviceBufferDeviceAddressFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeatures.bufferDeviceAddress ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeatures.bufferDeviceAddressCaptureReplay ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeatures.bufferDeviceAddressMultiDevice ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceBufferDeviceAddressFeaturesEXT const & - physicalDeviceBufferDeviceAddressFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeaturesEXT.bufferDeviceAddress ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeaturesEXT.bufferDeviceAddressCaptureReplay ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceBufferDeviceAddressFeaturesEXT.bufferDeviceAddressMultiDevice ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCoherentMemoryFeaturesAMD const & - physicalDeviceCoherentMemoryFeaturesAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCoherentMemoryFeaturesAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCoherentMemoryFeaturesAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCoherentMemoryFeaturesAMD.deviceCoherentMemory ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceColorWriteEnableFeaturesEXT const & - physicalDeviceColorWriteEnableFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceColorWriteEnableFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceColorWriteEnableFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceColorWriteEnableFeaturesEXT.colorWriteEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceComputeShaderDerivativesFeaturesNV const & - physicalDeviceComputeShaderDerivativesFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceComputeShaderDerivativesFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceComputeShaderDerivativesFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceComputeShaderDerivativesFeaturesNV.computeDerivativeGroupQuads ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceComputeShaderDerivativesFeaturesNV.computeDerivativeGroupLinear ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceConditionalRenderingFeaturesEXT const & - physicalDeviceConditionalRenderingFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConditionalRenderingFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConditionalRenderingFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConditionalRenderingFeaturesEXT.conditionalRendering ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConditionalRenderingFeaturesEXT.inheritedConditionalRendering ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceConservativeRasterizationPropertiesEXT const & - physicalDeviceConservativeRasterizationPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConservativeRasterizationPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConservativeRasterizationPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConservativeRasterizationPropertiesEXT.primitiveOverestimationSize ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceConservativeRasterizationPropertiesEXT.maxExtraPrimitiveOverestimationSize ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceConservativeRasterizationPropertiesEXT.extraPrimitiveOverestimationSizeGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConservativeRasterizationPropertiesEXT.primitiveUnderestimation ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceConservativeRasterizationPropertiesEXT.conservativePointAndLineRasterization ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceConservativeRasterizationPropertiesEXT.degenerateTrianglesRasterized ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceConservativeRasterizationPropertiesEXT.degenerateLinesRasterized ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceConservativeRasterizationPropertiesEXT.fullyCoveredFragmentShaderInputVariable ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceConservativeRasterizationPropertiesEXT.conservativeRasterizationPostDepthCoverage ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCooperativeMatrixFeaturesNV const & - physicalDeviceCooperativeMatrixFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixFeaturesNV.cooperativeMatrix ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixFeaturesNV.cooperativeMatrixRobustBufferAccess ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCooperativeMatrixPropertiesNV const & - physicalDeviceCooperativeMatrixPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCooperativeMatrixPropertiesNV.cooperativeMatrixSupportedStages ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCornerSampledImageFeaturesNV const & - physicalDeviceCornerSampledImageFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCornerSampledImageFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCornerSampledImageFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCornerSampledImageFeaturesNV.cornerSampledImage ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCoverageReductionModeFeaturesNV const & - physicalDeviceCoverageReductionModeFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCoverageReductionModeFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCoverageReductionModeFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCoverageReductionModeFeaturesNV.coverageReductionMode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCustomBorderColorFeaturesEXT const & - physicalDeviceCustomBorderColorFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorFeaturesEXT.customBorderColors ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorFeaturesEXT.customBorderColorWithoutFormat ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceCustomBorderColorPropertiesEXT const & - physicalDeviceCustomBorderColorPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceCustomBorderColorPropertiesEXT.maxCustomBorderColorSamplers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & - physicalDeviceDedicatedAllocationImageAliasingFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDedicatedAllocationImageAliasingFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDedicatedAllocationImageAliasingFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDedicatedAllocationImageAliasingFeaturesNV.dedicatedAllocationImageAliasing ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDepthClipControlFeaturesEXT const & - physicalDeviceDepthClipControlFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthClipControlFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthClipControlFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthClipControlFeaturesEXT.depthClipControl ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDepthClipEnableFeaturesEXT const & - physicalDeviceDepthClipEnableFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthClipEnableFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthClipEnableFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthClipEnableFeaturesEXT.depthClipEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDepthStencilResolveProperties const & - physicalDeviceDepthStencilResolveProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthStencilResolveProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthStencilResolveProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthStencilResolveProperties.supportedDepthResolveModes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthStencilResolveProperties.supportedStencilResolveModes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthStencilResolveProperties.independentResolveNone ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDepthStencilResolveProperties.independentResolve ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingFeatures const & - physicalDeviceDescriptorIndexingFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderInputAttachmentArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderUniformTexelBufferArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderStorageTexelBufferArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderUniformBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderSampledImageArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderStorageBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderStorageImageArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.shaderInputAttachmentArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingFeatures.shaderUniformTexelBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingFeatures.shaderStorageTexelBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.descriptorBindingUniformBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.descriptorBindingSampledImageUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.descriptorBindingStorageImageUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.descriptorBindingStorageBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingFeatures.descriptorBindingUniformTexelBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingFeatures.descriptorBindingStorageTexelBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.descriptorBindingUpdateUnusedWhilePending ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingFeatures.descriptorBindingPartiallyBound ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingFeatures.descriptorBindingVariableDescriptorCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingFeatures.runtimeDescriptorArray ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties const & - physicalDeviceDescriptorIndexingProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingProperties.maxUpdateAfterBindDescriptorsInAllPools ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.shaderUniformBufferArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.shaderSampledImageArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.shaderStorageBufferArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.shaderStorageImageArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.shaderInputAttachmentArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingProperties.robustBufferAccessUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingProperties.quadDivergentImplicitLod ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxPerStageDescriptorUpdateAfterBindSamplers ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxPerStageDescriptorUpdateAfterBindUniformBuffers ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxPerStageDescriptorUpdateAfterBindStorageBuffers ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxPerStageDescriptorUpdateAfterBindSampledImages ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxPerStageDescriptorUpdateAfterBindStorageImages ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxPerStageDescriptorUpdateAfterBindInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDescriptorIndexingProperties.maxPerStageUpdateAfterBindResources ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindSamplers ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindUniformBuffers ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindUniformBuffersDynamic ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindStorageBuffers ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindStorageBuffersDynamic ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindSampledImages ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindStorageImages ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDescriptorIndexingProperties.maxDescriptorSetUpdateAfterBindInputAttachments ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & - physicalDeviceDeviceGeneratedCommandsFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsFeaturesNV.deviceGeneratedCommands ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & - physicalDeviceDeviceGeneratedCommandsPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.maxGraphicsShaderGroupCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.maxIndirectSequenceCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.maxIndirectCommandsTokenCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.maxIndirectCommandsStreamCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.maxIndirectCommandsTokenOffset ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceDeviceGeneratedCommandsPropertiesNV.maxIndirectCommandsStreamStride ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.minSequencesCountBufferOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.minSequencesIndexBufferOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceDeviceGeneratedCommandsPropertiesNV.minIndirectCommandsBufferOffsetAlignment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDeviceMemoryReportFeaturesEXT const & - physicalDeviceDeviceMemoryReportFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceMemoryReportFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceMemoryReportFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDeviceMemoryReportFeaturesEXT.deviceMemoryReport ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDiagnosticsConfigFeaturesNV const & - physicalDeviceDiagnosticsConfigFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDiagnosticsConfigFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDiagnosticsConfigFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDiagnosticsConfigFeaturesNV.diagnosticsConfig ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDiscardRectanglePropertiesEXT const & - physicalDeviceDiscardRectanglePropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDiscardRectanglePropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDiscardRectanglePropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDiscardRectanglePropertiesEXT.maxDiscardRectangles ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDriverProperties const & physicalDeviceDriverProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDriverProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDriverProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDriverProperties.driverID ); - for ( size_t i = 0; i < VK_MAX_DRIVER_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDriverProperties.driverName[i] ); - } - for ( size_t i = 0; i < VK_MAX_DRIVER_INFO_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDriverProperties.driverInfo[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDriverProperties.conformanceVersion ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDrmPropertiesEXT const & physicalDeviceDrmPropertiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.hasPrimary ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.hasRender ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.primaryMajor ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.primaryMinor ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.renderMajor ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDrmPropertiesEXT.renderMinor ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceDynamicRenderingFeatures const & - physicalDeviceDynamicRenderingFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDynamicRenderingFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDynamicRenderingFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceDynamicRenderingFeatures.dynamicRendering ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExclusiveScissorFeaturesNV const & - physicalDeviceExclusiveScissorFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExclusiveScissorFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExclusiveScissorFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExclusiveScissorFeaturesNV.exclusiveScissor ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExtendedDynamicState2FeaturesEXT const & - physicalDeviceExtendedDynamicState2FeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicState2FeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicState2FeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicState2FeaturesEXT.extendedDynamicState2 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicState2FeaturesEXT.extendedDynamicState2LogicOp ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceExtendedDynamicState2FeaturesEXT.extendedDynamicState2PatchControlPoints ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExtendedDynamicStateFeaturesEXT const & - physicalDeviceExtendedDynamicStateFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicStateFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicStateFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExtendedDynamicStateFeaturesEXT.extendedDynamicState ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo const & - physicalDeviceExternalBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalBufferInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalBufferInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalBufferInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalBufferInfo.usage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalBufferInfo.handleType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo const & physicalDeviceExternalFenceInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalFenceInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalFenceInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalFenceInfo.handleType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalImageFormatInfo const & - physicalDeviceExternalImageFormatInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalImageFormatInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalImageFormatInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalImageFormatInfo.handleType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalMemoryHostPropertiesEXT const & - physicalDeviceExternalMemoryHostPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalMemoryHostPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalMemoryHostPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalMemoryHostPropertiesEXT.minImportedHostPointerAlignment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalMemoryRDMAFeaturesNV const & - physicalDeviceExternalMemoryRDMAFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalMemoryRDMAFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalMemoryRDMAFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalMemoryRDMAFeaturesNV.externalMemoryRDMA ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo const & - physicalDeviceExternalSemaphoreInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalSemaphoreInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalSemaphoreInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceExternalSemaphoreInfo.handleType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 const & physicalDeviceFeatures2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFeatures2.features ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFloatControlsProperties const & - physicalDeviceFloatControlsProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.denormBehaviorIndependence ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.roundingModeIndependence ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderSignedZeroInfNanPreserveFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderSignedZeroInfNanPreserveFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderSignedZeroInfNanPreserveFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderDenormPreserveFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderDenormPreserveFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderDenormPreserveFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderDenormFlushToZeroFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderDenormFlushToZeroFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderDenormFlushToZeroFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderRoundingModeRTEFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderRoundingModeRTEFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderRoundingModeRTEFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderRoundingModeRTZFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderRoundingModeRTZFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFloatControlsProperties.shaderRoundingModeRTZFloat64 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMap2FeaturesEXT const & - physicalDeviceFragmentDensityMap2FeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2FeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2FeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2FeaturesEXT.fragmentDensityMapDeferred ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMap2PropertiesEXT const & - physicalDeviceFragmentDensityMap2PropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2PropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2PropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2PropertiesEXT.subsampledLoads ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentDensityMap2PropertiesEXT.subsampledCoarseReconstructionEarlyAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMap2PropertiesEXT.maxSubsampledArrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentDensityMap2PropertiesEXT.maxDescriptorSetSubsampledSamplers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapFeaturesEXT const & - physicalDeviceFragmentDensityMapFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapFeaturesEXT.fragmentDensityMap ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapFeaturesEXT.fragmentDensityMapDynamic ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentDensityMapFeaturesEXT.fragmentDensityMapNonSubsampledImages ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & - physicalDeviceFragmentDensityMapOffsetFeaturesQCOM ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapOffsetFeaturesQCOM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapOffsetFeaturesQCOM.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapOffsetFeaturesQCOM.fragmentDensityMapOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & - physicalDeviceFragmentDensityMapOffsetPropertiesQCOM ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapOffsetPropertiesQCOM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapOffsetPropertiesQCOM.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentDensityMapOffsetPropertiesQCOM.fragmentDensityOffsetGranularity ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapPropertiesEXT const & - physicalDeviceFragmentDensityMapPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapPropertiesEXT.minFragmentDensityTexelSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapPropertiesEXT.maxFragmentDensityTexelSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentDensityMapPropertiesEXT.fragmentDensityInvocations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShaderBarycentricFeaturesNV const & - physicalDeviceFragmentShaderBarycentricFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderBarycentricFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderBarycentricFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderBarycentricFeaturesNV.fragmentShaderBarycentric ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShaderInterlockFeaturesEXT const & - physicalDeviceFragmentShaderInterlockFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderInterlockFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderInterlockFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderInterlockFeaturesEXT.fragmentShaderSampleInterlock ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShaderInterlockFeaturesEXT.fragmentShaderPixelInterlock ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentShaderInterlockFeaturesEXT.fragmentShaderShadingRateInterlock ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & - physicalDeviceFragmentShadingRateEnumsFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateEnumsFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateEnumsFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateEnumsFeaturesNV.fragmentShadingRateEnums ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateEnumsFeaturesNV.supersampleFragmentShadingRates ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentShadingRateEnumsFeaturesNV.noInvocationFragmentShadingRates ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & - physicalDeviceFragmentShadingRateEnumsPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateEnumsPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateEnumsPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRateEnumsPropertiesNV.maxFragmentShadingRateInvocationCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateFeaturesKHR const & - physicalDeviceFragmentShadingRateFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateFeaturesKHR.pipelineFragmentShadingRate ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateFeaturesKHR.primitiveFragmentShadingRate ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateFeaturesKHR.attachmentFragmentShadingRate ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateKHR const & - physicalDeviceFragmentShadingRateKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateKHR.sampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRateKHR.fragmentSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRatePropertiesKHR const & - physicalDeviceFragmentShadingRatePropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRatePropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRatePropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.minFragmentShadingRateAttachmentTexelSize ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.maxFragmentShadingRateAttachmentTexelSize ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.maxFragmentShadingRateAttachmentTexelSizeAspectRatio ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.primitiveFragmentShadingRateWithMultipleViewports ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRatePropertiesKHR.layeredShadingRateAttachments ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateNonTrivialCombinerOps ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRatePropertiesKHR.maxFragmentSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRatePropertiesKHR.maxFragmentSizeAspectRatio ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentShadingRatePropertiesKHR.maxFragmentShadingRateCoverageSamples ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.maxFragmentShadingRateRasterizationSamples ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateWithShaderDepthStencilWrites ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateWithSampleMask ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateWithShaderSampleMask ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateWithConservativeRasterization ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateWithFragmentShaderInterlock ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateWithCustomSampleLocations ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceFragmentShadingRatePropertiesKHR.fragmentShadingRateStrictMultiplyCombiner ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceGlobalPriorityQueryFeaturesKHR const & - physicalDeviceGlobalPriorityQueryFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGlobalPriorityQueryFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGlobalPriorityQueryFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGlobalPriorityQueryFeaturesKHR.globalPriorityQuery ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties const & physicalDeviceGroupProperties ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGroupProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGroupProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGroupProperties.physicalDeviceCount ); - for ( size_t i = 0; i < VK_MAX_DEVICE_GROUP_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGroupProperties.physicalDevices[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceGroupProperties.subsetAllocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceHostQueryResetFeatures const & - physicalDeviceHostQueryResetFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceHostQueryResetFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceHostQueryResetFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceHostQueryResetFeatures.hostQueryReset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceIDProperties const & physicalDeviceIDProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.pNext ); - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.deviceUUID[i] ); - } - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.driverUUID[i] ); - } - for ( size_t i = 0; i < VK_LUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.deviceLUID[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.deviceNodeMask ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIDProperties.deviceLUIDValid ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageDrmFormatModifierInfoEXT const & - physicalDeviceImageDrmFormatModifierInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageDrmFormatModifierInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageDrmFormatModifierInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageDrmFormatModifierInfoEXT.drmFormatModifier ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageDrmFormatModifierInfoEXT.sharingMode ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageDrmFormatModifierInfoEXT.queueFamilyIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageDrmFormatModifierInfoEXT.pQueueFamilyIndices ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 const & physicalDeviceImageFormatInfo2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.format ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.type ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.tiling ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.usage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageFormatInfo2.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageRobustnessFeatures const & - physicalDeviceImageRobustnessFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageRobustnessFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageRobustnessFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageRobustnessFeatures.robustImageAccess ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageViewImageFormatInfoEXT const & - physicalDeviceImageViewImageFormatInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageViewImageFormatInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageViewImageFormatInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageViewImageFormatInfoEXT.imageViewType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageViewMinLodFeaturesEXT const & - physicalDeviceImageViewMinLodFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageViewMinLodFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageViewMinLodFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImageViewMinLodFeaturesEXT.minLod ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceImagelessFramebufferFeatures const & - physicalDeviceImagelessFramebufferFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImagelessFramebufferFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImagelessFramebufferFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceImagelessFramebufferFeatures.imagelessFramebuffer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceIndexTypeUint8FeaturesEXT const & - physicalDeviceIndexTypeUint8FeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIndexTypeUint8FeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIndexTypeUint8FeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceIndexTypeUint8FeaturesEXT.indexTypeUint8 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceInheritedViewportScissorFeaturesNV const & - physicalDeviceInheritedViewportScissorFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInheritedViewportScissorFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInheritedViewportScissorFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInheritedViewportScissorFeaturesNV.inheritedViewportScissor2D ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceInlineUniformBlockFeatures const & - physicalDeviceInlineUniformBlockFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockFeatures.inlineUniformBlock ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceInlineUniformBlockFeatures.descriptorBindingInlineUniformBlockUpdateAfterBind ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceInlineUniformBlockProperties const & - physicalDeviceInlineUniformBlockProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockProperties.maxInlineUniformBlockSize ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceInlineUniformBlockProperties.maxPerStageDescriptorInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceInlineUniformBlockProperties.maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInlineUniformBlockProperties.maxDescriptorSetInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceInlineUniformBlockProperties.maxDescriptorSetUpdateAfterBindInlineUniformBlocks ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceInvocationMaskFeaturesHUAWEI const & - physicalDeviceInvocationMaskFeaturesHUAWEI ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInvocationMaskFeaturesHUAWEI.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInvocationMaskFeaturesHUAWEI.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceInvocationMaskFeaturesHUAWEI.invocationMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceLimits const & physicalDeviceLimits ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxImageDimension1D ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxImageDimension2D ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxImageDimension3D ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxImageDimensionCube ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxImageArrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTexelBufferElements ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxUniformBufferRange ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxStorageBufferRange ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPushConstantsSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxMemoryAllocationCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxSamplerAllocationCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.bufferImageGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.sparseAddressSpaceSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxBoundDescriptorSets ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageDescriptorSamplers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageDescriptorUniformBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageDescriptorStorageBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageDescriptorSampledImages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageDescriptorStorageImages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageDescriptorInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxPerStageResources ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetSamplers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetUniformBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetUniformBuffersDynamic ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetStorageBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetStorageBuffersDynamic ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetSampledImages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetStorageImages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDescriptorSetInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxVertexInputAttributes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxVertexInputBindings ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxVertexInputAttributeOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxVertexInputBindingStride ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxVertexOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationGenerationLevel ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationPatchSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationControlPerVertexInputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationControlPerVertexOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationControlPerPatchOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationControlTotalOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationEvaluationInputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTessellationEvaluationOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxGeometryShaderInvocations ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxGeometryInputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxGeometryOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxGeometryOutputVertices ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxGeometryTotalOutputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFragmentInputComponents ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFragmentOutputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFragmentDualSrcAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFragmentCombinedOutputResources ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxComputeSharedMemorySize ); - for ( size_t i = 0; i < 3; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxComputeWorkGroupCount[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxComputeWorkGroupInvocations ); - for ( size_t i = 0; i < 3; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxComputeWorkGroupSize[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.subPixelPrecisionBits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.subTexelPrecisionBits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.mipmapPrecisionBits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDrawIndexedIndexValue ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxDrawIndirectCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxSamplerLodBias ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxSamplerAnisotropy ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxViewports ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxViewportDimensions[i] ); - } - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.viewportBoundsRange[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.viewportSubPixelBits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minMemoryMapAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minTexelBufferOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minUniformBufferOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minStorageBufferOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minTexelOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTexelOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minTexelGatherOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxTexelGatherOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.minInterpolationOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxInterpolationOffset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.subPixelInterpolationOffsetBits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFramebufferWidth ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFramebufferHeight ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxFramebufferLayers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.framebufferColorSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.framebufferDepthSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.framebufferStencilSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.framebufferNoAttachmentsSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxColorAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.sampledImageColorSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.sampledImageIntegerSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.sampledImageDepthSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.sampledImageStencilSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.storageImageSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxSampleMaskWords ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.timestampComputeAndGraphics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.timestampPeriod ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxClipDistances ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxCullDistances ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.maxCombinedClipAndCullDistances ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.discreteQueuePriorities ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.pointSizeRange[i] ); - } - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.lineWidthRange[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.pointSizeGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.lineWidthGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.strictLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.standardSampleLocations ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.optimalBufferCopyOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.optimalBufferCopyRowPitchAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLimits.nonCoherentAtomSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceLineRasterizationFeaturesEXT const & - physicalDeviceLineRasterizationFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.rectangularLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.bresenhamLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.smoothLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.stippledRectangularLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.stippledBresenhamLines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationFeaturesEXT.stippledSmoothLines ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceLineRasterizationPropertiesEXT const & - physicalDeviceLineRasterizationPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLineRasterizationPropertiesEXT.lineSubPixelPrecisionBits ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceLinearColorAttachmentFeaturesNV const & - physicalDeviceLinearColorAttachmentFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLinearColorAttachmentFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLinearColorAttachmentFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceLinearColorAttachmentFeaturesNV.linearColorAttachment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties const & - physicalDeviceMaintenance3Properties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance3Properties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance3Properties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance3Properties.maxPerSetDescriptors ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance3Properties.maxMemoryAllocationSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance4Features const & - physicalDeviceMaintenance4Features ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance4Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance4Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance4Features.maintenance4 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance4Properties const & - physicalDeviceMaintenance4Properties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance4Properties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance4Properties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMaintenance4Properties.maxBufferSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryBudgetPropertiesEXT const & - physicalDeviceMemoryBudgetPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryBudgetPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryBudgetPropertiesEXT.pNext ); - for ( size_t i = 0; i < VK_MAX_MEMORY_HEAPS; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryBudgetPropertiesEXT.heapBudget[i] ); - } - for ( size_t i = 0; i < VK_MAX_MEMORY_HEAPS; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryBudgetPropertiesEXT.heapUsage[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryPriorityFeaturesEXT const & - physicalDeviceMemoryPriorityFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryPriorityFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryPriorityFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryPriorityFeaturesEXT.memoryPriority ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties const & physicalDeviceMemoryProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties.memoryTypeCount ); - for ( size_t i = 0; i < VK_MAX_MEMORY_TYPES; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties.memoryTypes[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties.memoryHeapCount ); - for ( size_t i = 0; i < VK_MAX_MEMORY_HEAPS; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties.memoryHeaps[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 const & physicalDeviceMemoryProperties2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMemoryProperties2.memoryProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMeshShaderFeaturesNV const & - physicalDeviceMeshShaderFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderFeaturesNV.taskShader ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderFeaturesNV.meshShader ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMeshShaderPropertiesNV const & - physicalDeviceMeshShaderPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxDrawMeshTasksCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxTaskWorkGroupInvocations ); - for ( size_t i = 0; i < 3; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxTaskWorkGroupSize[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxTaskTotalMemorySize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxTaskOutputCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxMeshWorkGroupInvocations ); - for ( size_t i = 0; i < 3; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxMeshWorkGroupSize[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxMeshTotalMemorySize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxMeshOutputVertices ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxMeshOutputPrimitives ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.maxMeshMultiviewViewCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.meshOutputPerVertexGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMeshShaderPropertiesNV.meshOutputPerPrimitiveGranularity ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiDrawFeaturesEXT const & - physicalDeviceMultiDrawFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiDrawFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiDrawFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiDrawFeaturesEXT.multiDraw ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiDrawPropertiesEXT const & - physicalDeviceMultiDrawPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiDrawPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiDrawPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiDrawPropertiesEXT.maxMultiDrawCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewFeatures const & physicalDeviceMultiviewFeatures ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewFeatures.multiview ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewFeatures.multiviewGeometryShader ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewFeatures.multiviewTessellationShader ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & - physicalDeviceMultiviewPerViewAttributesPropertiesNVX ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewPerViewAttributesPropertiesNVX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewPerViewAttributesPropertiesNVX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceMultiviewPerViewAttributesPropertiesNVX.perViewPositionAllComponents ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewProperties const & - physicalDeviceMultiviewProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewProperties.maxMultiviewViewCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMultiviewProperties.maxMultiviewInstanceIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & - physicalDeviceMutableDescriptorTypeFeaturesVALVE ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMutableDescriptorTypeFeaturesVALVE.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMutableDescriptorTypeFeaturesVALVE.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceMutableDescriptorTypeFeaturesVALVE.mutableDescriptorType ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePCIBusInfoPropertiesEXT const & - physicalDevicePCIBusInfoPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePCIBusInfoPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePCIBusInfoPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePCIBusInfoPropertiesEXT.pciDomain ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePCIBusInfoPropertiesEXT.pciBus ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePCIBusInfoPropertiesEXT.pciDevice ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePCIBusInfoPropertiesEXT.pciFunction ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & - physicalDevicePageableDeviceLocalMemoryFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePageableDeviceLocalMemoryFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePageableDeviceLocalMemoryFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePageableDeviceLocalMemoryFeaturesEXT.pageableDeviceLocalMemory ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePerformanceQueryFeaturesKHR const & - physicalDevicePerformanceQueryFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryFeaturesKHR.performanceCounterQueryPools ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryFeaturesKHR.performanceCounterMultipleQueryPools ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePerformanceQueryPropertiesKHR const & - physicalDevicePerformanceQueryPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePerformanceQueryPropertiesKHR.allowCommandBufferQueryCopies ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePipelineCreationCacheControlFeatures const & - physicalDevicePipelineCreationCacheControlFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePipelineCreationCacheControlFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePipelineCreationCacheControlFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePipelineCreationCacheControlFeatures.pipelineCreationCacheControl ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & - physicalDevicePipelineExecutablePropertiesFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePipelineExecutablePropertiesFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePipelineExecutablePropertiesFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePipelineExecutablePropertiesFeaturesKHR.pipelineExecutableInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePointClippingProperties const & - physicalDevicePointClippingProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePointClippingProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePointClippingProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePointClippingProperties.pointClippingBehavior ); - return seed; - } - }; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePortabilitySubsetFeaturesKHR const & - physicalDevicePortabilitySubsetFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.constantAlphaColorBlendFactors ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.events ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.imageViewFormatReinterpretation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.imageViewFormatSwizzle ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.imageView2DOn3DImage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.multisampleArrayImage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.mutableComparisonSamplers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.pointPolygons ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.samplerMipLodBias ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.separateStencilMaskRef ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDevicePortabilitySubsetFeaturesKHR.shaderSampleRateInterpolationFunctions ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.tessellationIsolines ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.tessellationPointMode ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.triangleFans ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetFeaturesKHR.vertexAttributeAccessBeyondStride ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePortabilitySubsetPropertiesKHR const & - physicalDevicePortabilitySubsetPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePortabilitySubsetPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDevicePortabilitySubsetPropertiesKHR.minVertexInputBindingStrideAlignment ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePresentIdFeaturesKHR const & - physicalDevicePresentIdFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePresentIdFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePresentIdFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePresentIdFeaturesKHR.presentId ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePresentWaitFeaturesKHR const & - physicalDevicePresentWaitFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePresentWaitFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePresentWaitFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePresentWaitFeaturesKHR.presentWait ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & - physicalDevicePrimitiveTopologyListRestartFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePrimitiveTopologyListRestartFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePrimitiveTopologyListRestartFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDevicePrimitiveTopologyListRestartFeaturesEXT.primitiveTopologyListRestart ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDevicePrimitiveTopologyListRestartFeaturesEXT.primitiveTopologyPatchListRestart ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePrivateDataFeatures const & - physicalDevicePrivateDataFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePrivateDataFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePrivateDataFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePrivateDataFeatures.privateData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseProperties const & physicalDeviceSparseProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseProperties.residencyStandard2DBlockShape ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseProperties.residencyStandard2DMultisampleBlockShape ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseProperties.residencyStandard3DBlockShape ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseProperties.residencyAlignedMipSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseProperties.residencyNonResidentStrict ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties const & physicalDeviceProperties ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.apiVersion ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.driverVersion ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.vendorID ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.deviceID ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.deviceType ); - for ( size_t i = 0; i < VK_MAX_PHYSICAL_DEVICE_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.deviceName[i] ); - } - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.pipelineCacheUUID[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.limits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.sparseProperties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 const & physicalDeviceProperties2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties2.properties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceProtectedMemoryFeatures const & - physicalDeviceProtectedMemoryFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProtectedMemoryFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProtectedMemoryFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProtectedMemoryFeatures.protectedMemory ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceProtectedMemoryProperties const & - physicalDeviceProtectedMemoryProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProtectedMemoryProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProtectedMemoryProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProtectedMemoryProperties.protectedNoFault ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceProvokingVertexFeaturesEXT const & - physicalDeviceProvokingVertexFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProvokingVertexFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProvokingVertexFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProvokingVertexFeaturesEXT.provokingVertexLast ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceProvokingVertexFeaturesEXT.transformFeedbackPreservesProvokingVertex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceProvokingVertexPropertiesEXT const & - physicalDeviceProvokingVertexPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProvokingVertexPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProvokingVertexPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProvokingVertexPropertiesEXT.provokingVertexModePerPipeline ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceProvokingVertexPropertiesEXT.transformFeedbackPreservesTriangleFanProvokingVertex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDevicePushDescriptorPropertiesKHR const & - physicalDevicePushDescriptorPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePushDescriptorPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePushDescriptorPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDevicePushDescriptorPropertiesKHR.maxPushDescriptors ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRGBA10X6FormatsFeaturesEXT const & - physicalDeviceRGBA10X6FormatsFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRGBA10X6FormatsFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRGBA10X6FormatsFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRGBA10X6FormatsFeaturesEXT.formatRgba10x6WithoutYCbCrSampler ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & - physicalDeviceRasterizationOrderAttachmentAccessFeaturesARM ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRasterizationOrderAttachmentAccessFeaturesARM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRasterizationOrderAttachmentAccessFeaturesARM.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceRasterizationOrderAttachmentAccessFeaturesARM.rasterizationOrderColorAttachmentAccess ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceRasterizationOrderAttachmentAccessFeaturesARM.rasterizationOrderDepthAttachmentAccess ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceRasterizationOrderAttachmentAccessFeaturesARM.rasterizationOrderStencilAttachmentAccess ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayQueryFeaturesKHR const & - physicalDeviceRayQueryFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayQueryFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayQueryFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayQueryFeaturesKHR.rayQuery ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingMotionBlurFeaturesNV const & - physicalDeviceRayTracingMotionBlurFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingMotionBlurFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingMotionBlurFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingMotionBlurFeaturesNV.rayTracingMotionBlur ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceRayTracingMotionBlurFeaturesNV.rayTracingMotionBlurPipelineTraceRaysIndirect ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingPipelineFeaturesKHR const & - physicalDeviceRayTracingPipelineFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelineFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelineFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelineFeaturesKHR.rayTracingPipeline ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceRayTracingPipelineFeaturesKHR.rayTracingPipelineShaderGroupHandleCaptureReplay ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceRayTracingPipelineFeaturesKHR.rayTracingPipelineShaderGroupHandleCaptureReplayMixed ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelineFeaturesKHR.rayTracingPipelineTraceRaysIndirect ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelineFeaturesKHR.rayTraversalPrimitiveCulling ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingPipelinePropertiesKHR const & - physicalDeviceRayTracingPipelinePropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.shaderGroupHandleSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.maxRayRecursionDepth ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.maxShaderGroupStride ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.shaderGroupBaseAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.shaderGroupHandleCaptureReplaySize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.maxRayDispatchInvocationCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.shaderGroupHandleAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPipelinePropertiesKHR.maxRayHitAttributeSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingPropertiesNV const & - physicalDeviceRayTracingPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.shaderGroupHandleSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.maxRecursionDepth ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.maxShaderGroupStride ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.shaderGroupBaseAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.maxGeometryCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.maxInstanceCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.maxTriangleCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRayTracingPropertiesNV.maxDescriptorSetAccelerationStructures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRepresentativeFragmentTestFeaturesNV const & - physicalDeviceRepresentativeFragmentTestFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRepresentativeFragmentTestFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRepresentativeFragmentTestFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRepresentativeFragmentTestFeaturesNV.representativeFragmentTest ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2FeaturesEXT const & - physicalDeviceRobustness2FeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2FeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2FeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2FeaturesEXT.robustBufferAccess2 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2FeaturesEXT.robustImageAccess2 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2FeaturesEXT.nullDescriptor ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT const & - physicalDeviceRobustness2PropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2PropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2PropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2PropertiesEXT.robustStorageBufferAccessSizeAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceRobustness2PropertiesEXT.robustUniformBufferAccessSizeAlignment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSampleLocationsPropertiesEXT const & - physicalDeviceSampleLocationsPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.sampleLocationSampleCounts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.maxSampleLocationGridSize ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.sampleLocationCoordinateRange[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.sampleLocationSubPixelBits ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSampleLocationsPropertiesEXT.variableSampleLocations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSamplerFilterMinmaxProperties const & - physicalDeviceSamplerFilterMinmaxProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerFilterMinmaxProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerFilterMinmaxProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerFilterMinmaxProperties.filterMinmaxSingleComponentFormats ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerFilterMinmaxProperties.filterMinmaxImageComponentMapping ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSamplerYcbcrConversionFeatures const & - physicalDeviceSamplerYcbcrConversionFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerYcbcrConversionFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerYcbcrConversionFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSamplerYcbcrConversionFeatures.samplerYcbcrConversion ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures const & - physicalDeviceScalarBlockLayoutFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceScalarBlockLayoutFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceScalarBlockLayoutFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceScalarBlockLayoutFeatures.scalarBlockLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSeparateDepthStencilLayoutsFeatures const & - physicalDeviceSeparateDepthStencilLayoutsFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSeparateDepthStencilLayoutsFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSeparateDepthStencilLayoutsFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSeparateDepthStencilLayoutsFeatures.separateDepthStencilLayouts ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderAtomicFloat2FeaturesEXT const & - physicalDeviceShaderAtomicFloat2FeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderBufferFloat16Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderBufferFloat16AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderBufferFloat16AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderBufferFloat32AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderBufferFloat64AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderSharedFloat16Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderSharedFloat16AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderSharedFloat16AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderSharedFloat32AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderSharedFloat64AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.shaderImageFloat32AtomicMinMax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloat2FeaturesEXT.sparseImageFloat32AtomicMinMax ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderAtomicFloatFeaturesEXT const & - physicalDeviceShaderAtomicFloatFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderBufferFloat32Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderBufferFloat32AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderBufferFloat64Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderBufferFloat64AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderSharedFloat32Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderSharedFloat32AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderSharedFloat64Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderSharedFloat64AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderImageFloat32Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.shaderImageFloat32AtomicAdd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.sparseImageFloat32Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicFloatFeaturesEXT.sparseImageFloat32AtomicAdd ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderAtomicInt64Features const & - physicalDeviceShaderAtomicInt64Features ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicInt64Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicInt64Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicInt64Features.shaderBufferInt64Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderAtomicInt64Features.shaderSharedInt64Atomics ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderClockFeaturesKHR const & - physicalDeviceShaderClockFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderClockFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderClockFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderClockFeaturesKHR.shaderSubgroupClock ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderClockFeaturesKHR.shaderDeviceClock ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderCoreProperties2AMD const & - physicalDeviceShaderCoreProperties2AMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCoreProperties2AMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCoreProperties2AMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCoreProperties2AMD.shaderCoreFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCoreProperties2AMD.activeComputeUnitCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderCorePropertiesAMD const & - physicalDeviceShaderCorePropertiesAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.shaderEngineCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.shaderArraysPerEngineCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.computeUnitsPerShaderArray ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.simdPerComputeUnit ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.wavefrontsPerSimd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.wavefrontSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.sgprsPerSimd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.minSgprAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.maxSgprAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.sgprAllocationGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.vgprsPerSimd ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.minVgprAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.maxVgprAllocation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderCorePropertiesAMD.vgprAllocationGranularity ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderDemoteToHelperInvocationFeatures const & - physicalDeviceShaderDemoteToHelperInvocationFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderDemoteToHelperInvocationFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderDemoteToHelperInvocationFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderDemoteToHelperInvocationFeatures.shaderDemoteToHelperInvocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderDrawParametersFeatures const & - physicalDeviceShaderDrawParametersFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderDrawParametersFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderDrawParametersFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderDrawParametersFeatures.shaderDrawParameters ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderFloat16Int8Features const & - physicalDeviceShaderFloat16Int8Features ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderFloat16Int8Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderFloat16Int8Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderFloat16Int8Features.shaderFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderFloat16Int8Features.shaderInt8 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & - physicalDeviceShaderImageAtomicInt64FeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageAtomicInt64FeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageAtomicInt64FeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageAtomicInt64FeaturesEXT.shaderImageInt64Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageAtomicInt64FeaturesEXT.sparseImageInt64Atomics ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderImageFootprintFeaturesNV const & - physicalDeviceShaderImageFootprintFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageFootprintFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageFootprintFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderImageFootprintFeaturesNV.imageFootprint ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderIntegerDotProductFeatures const & - physicalDeviceShaderIntegerDotProductFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerDotProductFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerDotProductFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerDotProductFeatures.shaderIntegerDotProduct ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderIntegerDotProductProperties const & - physicalDeviceShaderIntegerDotProductProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerDotProductProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerDotProductProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct8BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties.integerDotProduct8BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct8BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct4x8BitPackedUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct4x8BitPackedSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct4x8BitPackedMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct16BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct16BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct16BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct32BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct32BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct32BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct64BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct64BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderIntegerDotProductProperties.integerDotProduct64BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating8BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, - physicalDeviceShaderIntegerDotProductProperties.integerDotProductAccumulatingSaturating8BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating16BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, - physicalDeviceShaderIntegerDotProductProperties.integerDotProductAccumulatingSaturating16BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating32BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, - physicalDeviceShaderIntegerDotProductProperties.integerDotProductAccumulatingSaturating32BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating64BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, - physicalDeviceShaderIntegerDotProductProperties.integerDotProductAccumulatingSaturating64BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceShaderIntegerDotProductProperties - .integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & - physicalDeviceShaderIntegerFunctions2FeaturesINTEL ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerFunctions2FeaturesINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerFunctions2FeaturesINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderIntegerFunctions2FeaturesINTEL.shaderIntegerFunctions2 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSMBuiltinsFeaturesNV const & - physicalDeviceShaderSMBuiltinsFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsFeaturesNV.shaderSMBuiltins ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSMBuiltinsPropertiesNV const & - physicalDeviceShaderSMBuiltinsPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsPropertiesNV.shaderSMCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSMBuiltinsPropertiesNV.shaderWarpsPerSM ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSubgroupExtendedTypesFeatures const & - physicalDeviceShaderSubgroupExtendedTypesFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSubgroupExtendedTypesFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSubgroupExtendedTypesFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSubgroupExtendedTypesFeatures.shaderSubgroupExtendedTypes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & - physicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR.shaderSubgroupUniformControlFlow ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderTerminateInvocationFeatures const & - physicalDeviceShaderTerminateInvocationFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderTerminateInvocationFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderTerminateInvocationFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShaderTerminateInvocationFeatures.shaderTerminateInvocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShadingRateImageFeaturesNV const & - physicalDeviceShadingRateImageFeaturesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImageFeaturesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImageFeaturesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImageFeaturesNV.shadingRateImage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImageFeaturesNV.shadingRateCoarseSampleOrder ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceShadingRateImagePropertiesNV const & - physicalDeviceShadingRateImagePropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImagePropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImagePropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImagePropertiesNV.shadingRateTexelSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImagePropertiesNV.shadingRatePaletteSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceShadingRateImagePropertiesNV.shadingRateMaxCoarseSamples ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 const & - physicalDeviceSparseImageFormatInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.format ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.type ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.samples ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.usage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSparseImageFormatInfo2.tiling ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubgroupProperties const & - physicalDeviceSubgroupProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupProperties.subgroupSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupProperties.supportedStages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupProperties.supportedOperations ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupProperties.quadOperationsInAllStages ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubgroupSizeControlFeatures const & - physicalDeviceSubgroupSizeControlFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlFeatures.subgroupSizeControl ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlFeatures.computeFullSubgroups ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubgroupSizeControlProperties const & - physicalDeviceSubgroupSizeControlProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlProperties.minSubgroupSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlProperties.maxSubgroupSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlProperties.maxComputeWorkgroupSubgroups ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubgroupSizeControlProperties.requiredSubgroupSizeStages ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubpassShadingFeaturesHUAWEI const & - physicalDeviceSubpassShadingFeaturesHUAWEI ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubpassShadingFeaturesHUAWEI.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubpassShadingFeaturesHUAWEI.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubpassShadingFeaturesHUAWEI.subpassShading ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubpassShadingPropertiesHUAWEI const & - physicalDeviceSubpassShadingPropertiesHUAWEI ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubpassShadingPropertiesHUAWEI.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSubpassShadingPropertiesHUAWEI.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceSubpassShadingPropertiesHUAWEI.maxSubpassShadingWorkgroupSizeAspectRatio ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR const & physicalDeviceSurfaceInfo2KHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSurfaceInfo2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSurfaceInfo2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSurfaceInfo2KHR.surface ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceSynchronization2Features const & - physicalDeviceSynchronization2Features ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSynchronization2Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSynchronization2Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceSynchronization2Features.synchronization2 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentFeaturesEXT const & - physicalDeviceTexelBufferAlignmentFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTexelBufferAlignmentFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTexelBufferAlignmentFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTexelBufferAlignmentFeaturesEXT.texelBufferAlignment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentProperties const & - physicalDeviceTexelBufferAlignmentProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTexelBufferAlignmentProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTexelBufferAlignmentProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceTexelBufferAlignmentProperties.storageTexelBufferOffsetAlignmentBytes ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceTexelBufferAlignmentProperties.storageTexelBufferOffsetSingleTexelAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceTexelBufferAlignmentProperties.uniformTexelBufferOffsetAlignmentBytes ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceTexelBufferAlignmentProperties.uniformTexelBufferOffsetSingleTexelAlignment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTextureCompressionASTCHDRFeatures const & - physicalDeviceTextureCompressionASTCHDRFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTextureCompressionASTCHDRFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTextureCompressionASTCHDRFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTextureCompressionASTCHDRFeatures.textureCompressionASTC_HDR ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures const & - physicalDeviceTimelineSemaphoreFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTimelineSemaphoreFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTimelineSemaphoreFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTimelineSemaphoreFeatures.timelineSemaphore ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties const & - physicalDeviceTimelineSemaphoreProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTimelineSemaphoreProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTimelineSemaphoreProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTimelineSemaphoreProperties.maxTimelineSemaphoreValueDifference ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceToolProperties const & physicalDeviceToolProperties ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.pNext ); - for ( size_t i = 0; i < VK_MAX_EXTENSION_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.name[i] ); - } - for ( size_t i = 0; i < VK_MAX_EXTENSION_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.version[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.purposes ); - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.description[i] ); - } - for ( size_t i = 0; i < VK_MAX_EXTENSION_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceToolProperties.layer[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTransformFeedbackFeaturesEXT const & - physicalDeviceTransformFeedbackFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackFeaturesEXT.transformFeedback ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackFeaturesEXT.geometryStreams ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceTransformFeedbackPropertiesEXT const & - physicalDeviceTransformFeedbackPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.maxTransformFeedbackStreams ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.maxTransformFeedbackBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.maxTransformFeedbackBufferSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.maxTransformFeedbackStreamDataSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.maxTransformFeedbackBufferDataSize ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceTransformFeedbackPropertiesEXT.maxTransformFeedbackBufferDataStride ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.transformFeedbackQueries ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceTransformFeedbackPropertiesEXT.transformFeedbackStreamsLinesTriangles ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceTransformFeedbackPropertiesEXT.transformFeedbackRasterizationStreamSelect ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceTransformFeedbackPropertiesEXT.transformFeedbackDraw ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceUniformBufferStandardLayoutFeatures const & - physicalDeviceUniformBufferStandardLayoutFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceUniformBufferStandardLayoutFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceUniformBufferStandardLayoutFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceUniformBufferStandardLayoutFeatures.uniformBufferStandardLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVariablePointersFeatures const & - physicalDeviceVariablePointersFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVariablePointersFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVariablePointersFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVariablePointersFeatures.variablePointersStorageBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVariablePointersFeatures.variablePointers ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexAttributeDivisorFeaturesEXT const & - physicalDeviceVertexAttributeDivisorFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexAttributeDivisorFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexAttributeDivisorFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVertexAttributeDivisorFeaturesEXT.vertexAttributeInstanceRateDivisor ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVertexAttributeDivisorFeaturesEXT.vertexAttributeInstanceRateZeroDivisor ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexAttributeDivisorPropertiesEXT const & - physicalDeviceVertexAttributeDivisorPropertiesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexAttributeDivisorPropertiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexAttributeDivisorPropertiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexAttributeDivisorPropertiesEXT.maxVertexAttribDivisor ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexInputDynamicStateFeaturesEXT const & - physicalDeviceVertexInputDynamicStateFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexInputDynamicStateFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexInputDynamicStateFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVertexInputDynamicStateFeaturesEXT.vertexInputDynamicState ); - return seed; - } - }; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoProfileKHR const & videoProfileKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoProfileKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfileKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfileKHR.videoCodecOperation ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfileKHR.chromaSubsampling ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfileKHR.lumaBitDepth ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfileKHR.chromaBitDepth ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoProfilesKHR const & videoProfilesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoProfilesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfilesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfilesKHR.profileCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoProfilesKHR.pProfiles ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR const & - physicalDeviceVideoFormatInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVideoFormatInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVideoFormatInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVideoFormatInfoKHR.imageUsage ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVideoFormatInfoKHR.pVideoProfiles ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan11Features const & physicalDeviceVulkan11Features ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.storageBuffer16BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.uniformAndStorageBuffer16BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.storagePushConstant16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.storageInputOutput16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.multiview ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.multiviewGeometryShader ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.multiviewTessellationShader ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.variablePointersStorageBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.variablePointers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.protectedMemory ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.samplerYcbcrConversion ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Features.shaderDrawParameters ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan11Properties const & - physicalDeviceVulkan11Properties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.pNext ); - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.deviceUUID[i] ); - } - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.driverUUID[i] ); - } - for ( size_t i = 0; i < VK_LUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.deviceLUID[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.deviceNodeMask ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.deviceLUIDValid ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.subgroupSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.subgroupSupportedStages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.subgroupSupportedOperations ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.subgroupQuadOperationsInAllStages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.pointClippingBehavior ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.maxMultiviewViewCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.maxMultiviewInstanceIndex ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.protectedNoFault ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.maxPerSetDescriptors ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan11Properties.maxMemoryAllocationSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan12Features const & physicalDeviceVulkan12Features ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.samplerMirrorClampToEdge ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.drawIndirectCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.storageBuffer8BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.uniformAndStorageBuffer8BitAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.storagePushConstant8 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderBufferInt64Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderSharedInt64Atomics ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderInt8 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderInputAttachmentArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderUniformTexelBufferArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderStorageTexelBufferArrayDynamicIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderUniformBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderSampledImageArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderStorageBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderStorageImageArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderInputAttachmentArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderUniformTexelBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderStorageTexelBufferArrayNonUniformIndexing ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingUniformBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingSampledImageUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingStorageImageUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingStorageBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Features.descriptorBindingUniformTexelBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Features.descriptorBindingStorageTexelBufferUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingUpdateUnusedWhilePending ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingPartiallyBound ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.descriptorBindingVariableDescriptorCount ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.runtimeDescriptorArray ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.samplerFilterMinmax ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.scalarBlockLayout ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.imagelessFramebuffer ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.uniformBufferStandardLayout ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderSubgroupExtendedTypes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.separateDepthStencilLayouts ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.hostQueryReset ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.timelineSemaphore ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.bufferDeviceAddress ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.bufferDeviceAddressCaptureReplay ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.bufferDeviceAddressMultiDevice ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.vulkanMemoryModel ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.vulkanMemoryModelDeviceScope ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.vulkanMemoryModelAvailabilityVisibilityChains ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderOutputViewportIndex ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.shaderOutputLayer ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Features.subgroupBroadcastDynamicId ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan12Properties const & - physicalDeviceVulkan12Properties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.driverID ); - for ( size_t i = 0; i < VK_MAX_DRIVER_NAME_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.driverName[i] ); - } - for ( size_t i = 0; i < VK_MAX_DRIVER_INFO_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.driverInfo[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.conformanceVersion ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.denormBehaviorIndependence ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.roundingModeIndependence ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderSignedZeroInfNanPreserveFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderSignedZeroInfNanPreserveFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderSignedZeroInfNanPreserveFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderDenormPreserveFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderDenormPreserveFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderDenormPreserveFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderDenormFlushToZeroFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderDenormFlushToZeroFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderDenormFlushToZeroFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderRoundingModeRTEFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderRoundingModeRTEFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderRoundingModeRTEFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderRoundingModeRTZFloat16 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderRoundingModeRTZFloat32 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderRoundingModeRTZFloat64 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxUpdateAfterBindDescriptorsInAllPools ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.shaderUniformBufferArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderSampledImageArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.shaderStorageBufferArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.shaderStorageImageArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.shaderInputAttachmentArrayNonUniformIndexingNative ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.robustBufferAccessUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.quadDivergentImplicitLod ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxPerStageDescriptorUpdateAfterBindSamplers ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxPerStageDescriptorUpdateAfterBindUniformBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxPerStageDescriptorUpdateAfterBindStorageBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxPerStageDescriptorUpdateAfterBindSampledImages ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxPerStageDescriptorUpdateAfterBindStorageImages ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxPerStageDescriptorUpdateAfterBindInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxPerStageUpdateAfterBindResources ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindSamplers ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindUniformBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindUniformBuffersDynamic ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindStorageBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindStorageBuffersDynamic ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindSampledImages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindStorageImages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxDescriptorSetUpdateAfterBindInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.supportedDepthResolveModes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.supportedStencilResolveModes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.independentResolveNone ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.independentResolve ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.filterMinmaxSingleComponentFormats ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.filterMinmaxImageComponentMapping ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.maxTimelineSemaphoreValueDifference ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan12Properties.framebufferIntegerColorSampleCounts ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan13Features const & physicalDeviceVulkan13Features ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.robustImageAccess ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.inlineUniformBlock ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Features.descriptorBindingInlineUniformBlockUpdateAfterBind ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.pipelineCreationCacheControl ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.privateData ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.shaderDemoteToHelperInvocation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.shaderTerminateInvocation ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.subgroupSizeControl ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.computeFullSubgroups ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.synchronization2 ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.textureCompressionASTC_HDR ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.shaderZeroInitializeWorkgroupMemory ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.dynamicRendering ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.shaderIntegerDotProduct ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Features.maintenance4 ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan13Properties const & - physicalDeviceVulkan13Properties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.minSubgroupSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxSubgroupSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxComputeWorkgroupSubgroups ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.requiredSubgroupSizeStages ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxInlineUniformBlockSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxPerStageDescriptorInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxDescriptorSetInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Properties.maxDescriptorSetUpdateAfterBindInlineUniformBlocks ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxInlineUniformTotalSize ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct8BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct8BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct8BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Properties.integerDotProduct4x8BitPackedUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct4x8BitPackedSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProduct4x8BitPackedMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct16BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct16BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Properties.integerDotProduct16BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct32BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct32BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Properties.integerDotProduct32BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct64BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.integerDotProduct64BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Properties.integerDotProduct64BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating8BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating8BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkan13Properties - .integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating16BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating16BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating32BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating32BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating64BitUnsignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating64BitSignedAccelerated ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceVulkan13Properties.integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.storageTexelBufferOffsetAlignmentBytes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.storageTexelBufferOffsetSingleTexelAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.uniformTexelBufferOffsetAlignmentBytes ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.uniformTexelBufferOffsetSingleTexelAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkan13Properties.maxBufferSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkanMemoryModelFeatures const & - physicalDeviceVulkanMemoryModelFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkanMemoryModelFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkanMemoryModelFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkanMemoryModelFeatures.vulkanMemoryModel ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceVulkanMemoryModelFeatures.vulkanMemoryModelDeviceScope ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceVulkanMemoryModelFeatures.vulkanMemoryModelAvailabilityVisibilityChains ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & - physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.workgroupMemoryExplicitLayout ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.workgroupMemoryExplicitLayoutScalarBlockLayout ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.workgroupMemoryExplicitLayout8BitAccess ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.workgroupMemoryExplicitLayout16BitAccess ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & - physicalDeviceYcbcr2Plane444FormatsFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceYcbcr2Plane444FormatsFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceYcbcr2Plane444FormatsFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceYcbcr2Plane444FormatsFeaturesEXT.ycbcr2plane444Formats ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceYcbcrImageArraysFeaturesEXT const & - physicalDeviceYcbcrImageArraysFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceYcbcrImageArraysFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceYcbcrImageArraysFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceYcbcrImageArraysFeaturesEXT.ycbcrImageArrays ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & - physicalDeviceZeroInitializeWorkgroupMemoryFeatures ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceZeroInitializeWorkgroupMemoryFeatures.sType ); - VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceZeroInitializeWorkgroupMemoryFeatures.pNext ); - VULKAN_HPP_HASH_COMBINE( - seed, physicalDeviceZeroInitializeWorkgroupMemoryFeatures.shaderZeroInitializeWorkgroupMemory ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo const & pipelineCacheCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheCreateInfo.initialDataSize ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheCreateInfo.pInitialData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersionOne const & pipelineCacheHeaderVersionOne ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheHeaderVersionOne.headerSize ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheHeaderVersionOne.headerVersion ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheHeaderVersionOne.vendorID ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheHeaderVersionOne.deviceID ); - for ( size_t i = 0; i < VK_UUID_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineCacheHeaderVersionOne.pipelineCacheUUID[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineColorBlendAdvancedStateCreateInfoEXT const & - pipelineColorBlendAdvancedStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAdvancedStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAdvancedStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAdvancedStateCreateInfoEXT.srcPremultiplied ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAdvancedStateCreateInfoEXT.dstPremultiplied ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorBlendAdvancedStateCreateInfoEXT.blendOverlap ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PipelineColorWriteCreateInfoEXT const & pipelineColorWriteCreateInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorWriteCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorWriteCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorWriteCreateInfoEXT.attachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineColorWriteCreateInfoEXT.pColorWriteEnables ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCompilerControlCreateInfoAMD const & - pipelineCompilerControlCreateInfoAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCompilerControlCreateInfoAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCompilerControlCreateInfoAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCompilerControlCreateInfoAMD.compilerControlFlags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCoverageModulationStateCreateInfoNV const & - pipelineCoverageModulationStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.coverageModulationMode ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.coverageModulationTableEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.coverageModulationTableCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageModulationStateCreateInfoNV.pCoverageModulationTable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCoverageReductionStateCreateInfoNV const & - pipelineCoverageReductionStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageReductionStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageReductionStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageReductionStateCreateInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageReductionStateCreateInfoNV.coverageReductionMode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCoverageToColorStateCreateInfoNV const & - pipelineCoverageToColorStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageToColorStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageToColorStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageToColorStateCreateInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageToColorStateCreateInfoNV.coverageToColorEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCoverageToColorStateCreateInfoNV.coverageToColorLocation ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCreationFeedback const & pipelineCreationFeedback ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedback.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedback.duration ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineCreationFeedbackCreateInfo const & - pipelineCreationFeedbackCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedbackCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedbackCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedbackCreateInfo.pPipelineCreationFeedback ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedbackCreateInfo.pipelineStageCreationFeedbackCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineCreationFeedbackCreateInfo.pPipelineStageCreationFeedbacks ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineDiscardRectangleStateCreateInfoEXT const & - pipelineDiscardRectangleStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineDiscardRectangleStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDiscardRectangleStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDiscardRectangleStateCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDiscardRectangleStateCreateInfoEXT.discardRectangleMode ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDiscardRectangleStateCreateInfoEXT.discardRectangleCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineDiscardRectangleStateCreateInfoEXT.pDiscardRectangles ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR const & pipelineExecutableInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInfoKHR.pipeline ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInfoKHR.executableIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineExecutableInternalRepresentationKHR const & - pipelineExecutableInternalRepresentationKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.pNext ); - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.name[i] ); - } - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.description[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.isText ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.dataSize ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutableInternalRepresentationKHR.pData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PipelineExecutablePropertiesKHR const & pipelineExecutablePropertiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutablePropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutablePropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutablePropertiesKHR.stages ); - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutablePropertiesKHR.name[i] ); - } - for ( size_t i = 0; i < VK_MAX_DESCRIPTION_SIZE; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutablePropertiesKHR.description[i] ); - } - VULKAN_HPP_HASH_COMBINE( seed, pipelineExecutablePropertiesKHR.subgroupSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineFragmentShadingRateEnumStateCreateInfoNV const & - pipelineFragmentShadingRateEnumStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateEnumStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateEnumStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateEnumStateCreateInfoNV.shadingRateType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateEnumStateCreateInfoNV.shadingRate ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateEnumStateCreateInfoNV.combinerOps[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineFragmentShadingRateStateCreateInfoKHR const & - pipelineFragmentShadingRateStateCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateStateCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateStateCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateStateCreateInfoKHR.fragmentSize ); - for ( size_t i = 0; i < 2; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, pipelineFragmentShadingRateStateCreateInfoKHR.combinerOps[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineInfoKHR const & pipelineInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineInfoKHR.pipeline ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PushConstantRange const & pushConstantRange ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pushConstantRange.stageFlags ); - VULKAN_HPP_HASH_COMBINE( seed, pushConstantRange.offset ); - VULKAN_HPP_HASH_COMBINE( seed, pushConstantRange.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo const & pipelineLayoutCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.setLayoutCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.pSetLayouts ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.pushConstantRangeCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLayoutCreateInfo.pPushConstantRanges ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineLibraryCreateInfoKHR const & pipelineLibraryCreateInfoKHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineLibraryCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLibraryCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLibraryCreateInfoKHR.libraryCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineLibraryCreateInfoKHR.pLibraries ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationConservativeStateCreateInfoEXT const & - pipelineRasterizationConservativeStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationConservativeStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationConservativeStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationConservativeStateCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, - pipelineRasterizationConservativeStateCreateInfoEXT.conservativeRasterizationMode ); - VULKAN_HPP_HASH_COMBINE( seed, - pipelineRasterizationConservativeStateCreateInfoEXT.extraPrimitiveOverestimationSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationDepthClipStateCreateInfoEXT const & - pipelineRasterizationDepthClipStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationDepthClipStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationDepthClipStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationDepthClipStateCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationDepthClipStateCreateInfoEXT.depthClipEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationLineStateCreateInfoEXT const & - pipelineRasterizationLineStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationLineStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationLineStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationLineStateCreateInfoEXT.lineRasterizationMode ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationLineStateCreateInfoEXT.stippledLineEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationLineStateCreateInfoEXT.lineStippleFactor ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationLineStateCreateInfoEXT.lineStipplePattern ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationProvokingVertexStateCreateInfoEXT const & - pipelineRasterizationProvokingVertexStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationProvokingVertexStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationProvokingVertexStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationProvokingVertexStateCreateInfoEXT.provokingVertexMode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateRasterizationOrderAMD const & - pipelineRasterizationStateRasterizationOrderAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateRasterizationOrderAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateRasterizationOrderAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateRasterizationOrderAMD.rasterizationOrder ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateStreamCreateInfoEXT const & - pipelineRasterizationStateStreamCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateStreamCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateStreamCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateStreamCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRasterizationStateStreamCreateInfoEXT.rasterizationStream ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::PipelineRenderingCreateInfo const & pipelineRenderingCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.viewMask ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.colorAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.pColorAttachmentFormats ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.depthAttachmentFormat ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRenderingCreateInfo.stencilAttachmentFormat ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineRepresentativeFragmentTestStateCreateInfoNV const & - pipelineRepresentativeFragmentTestStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineRepresentativeFragmentTestStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineRepresentativeFragmentTestStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, - pipelineRepresentativeFragmentTestStateCreateInfoNV.representativeFragmentTestEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineSampleLocationsStateCreateInfoEXT const & - pipelineSampleLocationsStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineSampleLocationsStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineSampleLocationsStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineSampleLocationsStateCreateInfoEXT.sampleLocationsEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineSampleLocationsStateCreateInfoEXT.sampleLocationsInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineShaderStageRequiredSubgroupSizeCreateInfo const & - pipelineShaderStageRequiredSubgroupSizeCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageRequiredSubgroupSizeCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageRequiredSubgroupSizeCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineShaderStageRequiredSubgroupSizeCreateInfo.requiredSubgroupSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineTessellationDomainOriginStateCreateInfo const & - pipelineTessellationDomainOriginStateCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationDomainOriginStateCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationDomainOriginStateCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineTessellationDomainOriginStateCreateInfo.domainOrigin ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT const & - vertexInputBindingDivisorDescriptionEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDivisorDescriptionEXT.binding ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDivisorDescriptionEXT.divisor ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineVertexInputDivisorStateCreateInfoEXT const & - pipelineVertexInputDivisorStateCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputDivisorStateCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputDivisorStateCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputDivisorStateCreateInfoEXT.vertexBindingDivisorCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineVertexInputDivisorStateCreateInfoEXT.pVertexBindingDivisors ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineViewportCoarseSampleOrderStateCreateInfoNV const & - pipelineViewportCoarseSampleOrderStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportCoarseSampleOrderStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportCoarseSampleOrderStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportCoarseSampleOrderStateCreateInfoNV.sampleOrderType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportCoarseSampleOrderStateCreateInfoNV.customSampleOrderCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportCoarseSampleOrderStateCreateInfoNV.pCustomSampleOrders ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineViewportDepthClipControlCreateInfoEXT const & - pipelineViewportDepthClipControlCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportDepthClipControlCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportDepthClipControlCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportDepthClipControlCreateInfoEXT.negativeOneToOne ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineViewportExclusiveScissorStateCreateInfoNV const & - pipelineViewportExclusiveScissorStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportExclusiveScissorStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportExclusiveScissorStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportExclusiveScissorStateCreateInfoNV.exclusiveScissorCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportExclusiveScissorStateCreateInfoNV.pExclusiveScissors ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV const & shadingRatePaletteNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, shadingRatePaletteNV.shadingRatePaletteEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, shadingRatePaletteNV.pShadingRatePaletteEntries ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineViewportShadingRateImageStateCreateInfoNV const & - pipelineViewportShadingRateImageStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportShadingRateImageStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportShadingRateImageStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportShadingRateImageStateCreateInfoNV.shadingRateImageEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportShadingRateImageStateCreateInfoNV.viewportCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportShadingRateImageStateCreateInfoNV.pShadingRatePalettes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ViewportSwizzleNV const & viewportSwizzleNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, viewportSwizzleNV.x ); - VULKAN_HPP_HASH_COMBINE( seed, viewportSwizzleNV.y ); - VULKAN_HPP_HASH_COMBINE( seed, viewportSwizzleNV.z ); - VULKAN_HPP_HASH_COMBINE( seed, viewportSwizzleNV.w ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineViewportSwizzleStateCreateInfoNV const & - pipelineViewportSwizzleStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportSwizzleStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportSwizzleStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportSwizzleStateCreateInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportSwizzleStateCreateInfoNV.viewportCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportSwizzleStateCreateInfoNV.pViewportSwizzles ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ViewportWScalingNV const & viewportWScalingNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, viewportWScalingNV.xcoeff ); - VULKAN_HPP_HASH_COMBINE( seed, viewportWScalingNV.ycoeff ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PipelineViewportWScalingStateCreateInfoNV const & - pipelineViewportWScalingStateCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportWScalingStateCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportWScalingStateCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportWScalingStateCreateInfoNV.viewportWScalingEnable ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportWScalingStateCreateInfoNV.viewportCount ); - VULKAN_HPP_HASH_COMBINE( seed, pipelineViewportWScalingStateCreateInfoNV.pViewportWScalings ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_GGP ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PresentFrameTokenGGP const & presentFrameTokenGGP ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentFrameTokenGGP.sType ); - VULKAN_HPP_HASH_COMBINE( seed, presentFrameTokenGGP.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, presentFrameTokenGGP.frameToken ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_GGP*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PresentIdKHR const & presentIdKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentIdKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, presentIdKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, presentIdKHR.swapchainCount ); - VULKAN_HPP_HASH_COMBINE( seed, presentIdKHR.pPresentIds ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PresentInfoKHR const & presentInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.waitSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.pWaitSemaphores ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.swapchainCount ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.pSwapchains ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.pImageIndices ); - VULKAN_HPP_HASH_COMBINE( seed, presentInfoKHR.pResults ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RectLayerKHR const & rectLayerKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rectLayerKHR.offset ); - VULKAN_HPP_HASH_COMBINE( seed, rectLayerKHR.extent ); - VULKAN_HPP_HASH_COMBINE( seed, rectLayerKHR.layer ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PresentRegionKHR const & presentRegionKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentRegionKHR.rectangleCount ); - VULKAN_HPP_HASH_COMBINE( seed, presentRegionKHR.pRectangles ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PresentRegionsKHR const & presentRegionsKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentRegionsKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, presentRegionsKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, presentRegionsKHR.swapchainCount ); - VULKAN_HPP_HASH_COMBINE( seed, presentRegionsKHR.pRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::PresentTimeGOOGLE const & presentTimeGOOGLE ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentTimeGOOGLE.presentID ); - VULKAN_HPP_HASH_COMBINE( seed, presentTimeGOOGLE.desiredPresentTime ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PresentTimesInfoGOOGLE const & presentTimesInfoGOOGLE ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, presentTimesInfoGOOGLE.sType ); - VULKAN_HPP_HASH_COMBINE( seed, presentTimesInfoGOOGLE.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, presentTimesInfoGOOGLE.swapchainCount ); - VULKAN_HPP_HASH_COMBINE( seed, presentTimesInfoGOOGLE.pTimes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo const & privateDataSlotCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, privateDataSlotCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, privateDataSlotCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, privateDataSlotCreateInfo.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ProtectedSubmitInfo const & protectedSubmitInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, protectedSubmitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, protectedSubmitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, protectedSubmitInfo.protectedSubmit ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo const & queryPoolCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queryPoolCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolCreateInfo.queryType ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolCreateInfo.queryCount ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolCreateInfo.pipelineStatistics ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR const & - queryPoolPerformanceCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceCreateInfoKHR.queueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceCreateInfoKHR.counterIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceCreateInfoKHR.pCounterIndices ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueryPoolPerformanceQueryCreateInfoINTEL const & - queryPoolPerformanceQueryCreateInfoINTEL ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceQueryCreateInfoINTEL.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceQueryCreateInfoINTEL.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queryPoolPerformanceQueryCreateInfoINTEL.performanceCountersSampling ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointProperties2NV const & - queueFamilyCheckpointProperties2NV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyCheckpointProperties2NV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyCheckpointProperties2NV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyCheckpointProperties2NV.checkpointExecutionStageMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV const & - queueFamilyCheckpointPropertiesNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyCheckpointPropertiesNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyCheckpointPropertiesNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyCheckpointPropertiesNV.checkpointExecutionStageMask ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueueFamilyGlobalPriorityPropertiesKHR const & - queueFamilyGlobalPriorityPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyGlobalPriorityPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyGlobalPriorityPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyGlobalPriorityPropertiesKHR.priorityCount ); - for ( size_t i = 0; i < VK_MAX_GLOBAL_PRIORITY_SIZE_KHR; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyGlobalPriorityPropertiesKHR.priorities[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::QueueFamilyProperties const & queueFamilyProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties.queueFlags ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties.queueCount ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties.timestampValidBits ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties.minImageTransferGranularity ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueueFamilyProperties2 const & queueFamilyProperties2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties2.queueFamilyProperties ); - return seed; - } - }; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::QueueFamilyQueryResultStatusProperties2KHR const & - queueFamilyQueryResultStatusProperties2KHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyQueryResultStatusProperties2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyQueryResultStatusProperties2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, queueFamilyQueryResultStatusProperties2KHR.supported ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR const & - rayTracingShaderGroupCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.type ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.generalShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.closestHitShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.anyHitShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.intersectionShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoKHR.pShaderGroupCaptureReplayHandle ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RayTracingPipelineInterfaceCreateInfoKHR const & - rayTracingPipelineInterfaceCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineInterfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineInterfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineInterfaceCreateInfoKHR.maxPipelineRayPayloadSize ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineInterfaceCreateInfoKHR.maxPipelineRayHitAttributeSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR const & rayTracingPipelineCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.stageCount ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.pStages ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.groupCount ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.pGroups ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.maxPipelineRayRecursionDepth ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.pLibraryInfo ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.pLibraryInterface ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.pDynamicState ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.layout ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.basePipelineHandle ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoKHR.basePipelineIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV const & - rayTracingShaderGroupCreateInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.type ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.generalShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.closestHitShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.anyHitShader ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingShaderGroupCreateInfoNV.intersectionShader ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV const & rayTracingPipelineCreateInfoNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.flags ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.stageCount ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.pStages ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.groupCount ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.pGroups ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.maxRecursionDepth ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.layout ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.basePipelineHandle ); - VULKAN_HPP_HASH_COMBINE( seed, rayTracingPipelineCreateInfoNV.basePipelineIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE const & refreshCycleDurationGOOGLE ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, refreshCycleDurationGOOGLE.refreshDuration ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPassAttachmentBeginInfo const & renderPassAttachmentBeginInfo ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassAttachmentBeginInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassAttachmentBeginInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassAttachmentBeginInfo.attachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassAttachmentBeginInfo.pAttachments ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::RenderPassBeginInfo const & renderPassBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.renderPass ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.framebuffer ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.renderArea ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.clearValueCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassBeginInfo.pClearValues ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SubpassDescription const & subpassDescription ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.flags ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.pipelineBindPoint ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.inputAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.pInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.colorAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.pColorAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.pResolveAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.pDepthStencilAttachment ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.preserveAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription.pPreserveAttachments ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SubpassDependency const & subpassDependency ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.srcSubpass ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.dstSubpass ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.srcStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.dstStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.dstAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency.dependencyFlags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::RenderPassCreateInfo const & renderPassCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.attachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.pAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.subpassCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.pSubpasses ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.dependencyCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo.pDependencies ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SubpassDescription2 const & subpassDescription2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.flags ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pipelineBindPoint ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.viewMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.inputAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pInputAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.colorAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pColorAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pResolveAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pDepthStencilAttachment ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.preserveAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescription2.pPreserveAttachments ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SubpassDependency2 const & subpassDependency2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.srcSubpass ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.dstSubpass ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.srcStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.dstStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.srcAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.dstAccessMask ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.dependencyFlags ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDependency2.viewOffset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 const & renderPassCreateInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.flags ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.attachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.pAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.subpassCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.pSubpasses ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.dependencyCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.pDependencies ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.correlatedViewMaskCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassCreateInfo2.pCorrelatedViewMasks ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPassFragmentDensityMapCreateInfoEXT const & - renderPassFragmentDensityMapCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassFragmentDensityMapCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassFragmentDensityMapCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassFragmentDensityMapCreateInfoEXT.fragmentDensityMapAttachment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo const & - renderPassInputAttachmentAspectCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassInputAttachmentAspectCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassInputAttachmentAspectCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassInputAttachmentAspectCreateInfo.aspectReferenceCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassInputAttachmentAspectCreateInfo.pAspectReferences ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPassMultiviewCreateInfo const & renderPassMultiviewCreateInfo ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.subpassCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.pViewMasks ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.dependencyCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.pViewOffsets ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.correlationMaskCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassMultiviewCreateInfo.pCorrelationMasks ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubpassSampleLocationsEXT const & subpassSampleLocationsEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassSampleLocationsEXT.subpassIndex ); - VULKAN_HPP_HASH_COMBINE( seed, subpassSampleLocationsEXT.sampleLocationsInfo ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPassSampleLocationsBeginInfoEXT const & - renderPassSampleLocationsBeginInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassSampleLocationsBeginInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassSampleLocationsBeginInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassSampleLocationsBeginInfoEXT.attachmentInitialSampleLocationsCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassSampleLocationsBeginInfoEXT.pAttachmentInitialSampleLocations ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassSampleLocationsBeginInfoEXT.postSubpassSampleLocationsCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassSampleLocationsBeginInfoEXT.pPostSubpassSampleLocations ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderPassTransformBeginInfoQCOM const & - renderPassTransformBeginInfoQCOM ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderPassTransformBeginInfoQCOM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassTransformBeginInfoQCOM.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderPassTransformBeginInfoQCOM.transform ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderingFragmentDensityMapAttachmentInfoEXT const & - renderingFragmentDensityMapAttachmentInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentDensityMapAttachmentInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentDensityMapAttachmentInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentDensityMapAttachmentInfoEXT.imageView ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentDensityMapAttachmentInfoEXT.imageLayout ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderingFragmentShadingRateAttachmentInfoKHR const & - renderingFragmentShadingRateAttachmentInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentShadingRateAttachmentInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentShadingRateAttachmentInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentShadingRateAttachmentInfoKHR.imageView ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentShadingRateAttachmentInfoKHR.imageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, renderingFragmentShadingRateAttachmentInfoKHR.shadingRateAttachmentTexelSize ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::RenderingInfo const & renderingInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.renderArea ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.layerCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.viewMask ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.colorAttachmentCount ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.pColorAttachments ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.pDepthAttachment ); - VULKAN_HPP_HASH_COMBINE( seed, renderingInfo.pStencilAttachment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ResolveImageInfo2 const & resolveImageInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.srcImage ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.srcImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.dstImage ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.dstImageLayout ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.regionCount ); - VULKAN_HPP_HASH_COMBINE( seed, resolveImageInfo2.pRegions ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SamplerBorderColorComponentMappingCreateInfoEXT const & - samplerBorderColorComponentMappingCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, samplerBorderColorComponentMappingCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, samplerBorderColorComponentMappingCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, samplerBorderColorComponentMappingCreateInfoEXT.components ); - VULKAN_HPP_HASH_COMBINE( seed, samplerBorderColorComponentMappingCreateInfoEXT.srgb ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SamplerCreateInfo const & samplerCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.magFilter ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.minFilter ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.mipmapMode ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.addressModeU ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.addressModeV ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.addressModeW ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.mipLodBias ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.anisotropyEnable ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.maxAnisotropy ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.compareEnable ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.compareOp ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.minLod ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.maxLod ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.borderColor ); - VULKAN_HPP_HASH_COMBINE( seed, samplerCreateInfo.unnormalizedCoordinates ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SamplerReductionModeCreateInfo const & samplerReductionModeCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, samplerReductionModeCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, samplerReductionModeCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, samplerReductionModeCreateInfo.reductionMode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo const & - samplerYcbcrConversionCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.format ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.ycbcrModel ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.ycbcrRange ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.components ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.xChromaOffset ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.yChromaOffset ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.chromaFilter ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionCreateInfo.forceExplicitReconstruction ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionImageFormatProperties const & - samplerYcbcrConversionImageFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionImageFormatProperties.sType ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionImageFormatProperties.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionImageFormatProperties.combinedImageSamplerDescriptorCount ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionInfo const & samplerYcbcrConversionInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, samplerYcbcrConversionInfo.conversion ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX const & screenSurfaceCreateInfoQNX ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, screenSurfaceCreateInfoQNX.sType ); - VULKAN_HPP_HASH_COMBINE( seed, screenSurfaceCreateInfoQNX.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, screenSurfaceCreateInfoQNX.flags ); - VULKAN_HPP_HASH_COMBINE( seed, screenSurfaceCreateInfoQNX.context ); - VULKAN_HPP_HASH_COMBINE( seed, screenSurfaceCreateInfoQNX.window ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo const & semaphoreCreateInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreCreateInfo.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR const & semaphoreGetFdInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetFdInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetFdInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetFdInfoKHR.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetFdInfoKHR.handleType ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR const & semaphoreGetWin32HandleInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetWin32HandleInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetWin32HandleInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetWin32HandleInfoKHR.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetWin32HandleInfoKHR.handleType ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA const & - semaphoreGetZirconHandleInfoFUCHSIA ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetZirconHandleInfoFUCHSIA.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetZirconHandleInfoFUCHSIA.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetZirconHandleInfoFUCHSIA.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreGetZirconHandleInfoFUCHSIA.handleType ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo const & semaphoreSignalInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSignalInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSignalInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSignalInfo.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSignalInfo.value ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo const & semaphoreSubmitInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSubmitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSubmitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSubmitInfo.semaphore ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSubmitInfo.value ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSubmitInfo.stageMask ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreSubmitInfo.deviceIndex ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SemaphoreTypeCreateInfo const & semaphoreTypeCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreTypeCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreTypeCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreTypeCreateInfo.semaphoreType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreTypeCreateInfo.initialValue ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo const & semaphoreWaitInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, semaphoreWaitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreWaitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreWaitInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreWaitInfo.semaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreWaitInfo.pSemaphores ); - VULKAN_HPP_HASH_COMBINE( seed, semaphoreWaitInfo.pValues ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SetStateFlagsIndirectCommandNV const & setStateFlagsIndirectCommandNV ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, setStateFlagsIndirectCommandNV.data ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo const & shaderModuleCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleCreateInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleCreateInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleCreateInfo.flags ); - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleCreateInfo.codeSize ); - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleCreateInfo.pCode ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ShaderModuleValidationCacheCreateInfoEXT const & - shaderModuleValidationCacheCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleValidationCacheCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleValidationCacheCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, shaderModuleValidationCacheCreateInfoEXT.validationCache ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ShaderResourceUsageAMD const & shaderResourceUsageAMD ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, shaderResourceUsageAMD.numUsedVgprs ); - VULKAN_HPP_HASH_COMBINE( seed, shaderResourceUsageAMD.numUsedSgprs ); - VULKAN_HPP_HASH_COMBINE( seed, shaderResourceUsageAMD.ldsSizePerLocalWorkGroup ); - VULKAN_HPP_HASH_COMBINE( seed, shaderResourceUsageAMD.ldsUsageSizeInBytes ); - VULKAN_HPP_HASH_COMBINE( seed, shaderResourceUsageAMD.scratchMemUsageInBytes ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ShaderStatisticsInfoAMD const & shaderStatisticsInfoAMD ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.shaderStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.resourceUsage ); - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.numPhysicalVgprs ); - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.numPhysicalSgprs ); - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.numAvailableVgprs ); - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.numAvailableSgprs ); - for ( size_t i = 0; i < 3; ++i ) - { - VULKAN_HPP_HASH_COMBINE( seed, shaderStatisticsInfoAMD.computeWorkGroupSize[i] ); - } - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SharedPresentSurfaceCapabilitiesKHR const & - sharedPresentSurfaceCapabilitiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sharedPresentSurfaceCapabilitiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, sharedPresentSurfaceCapabilitiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, sharedPresentSurfaceCapabilitiesKHR.sharedPresentSupportedUsageFlags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties const & sparseImageFormatProperties ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageFormatProperties.aspectMask ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageFormatProperties.imageGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageFormatProperties.flags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SparseImageFormatProperties2 const & sparseImageFormatProperties2 ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageFormatProperties2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageFormatProperties2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageFormatProperties2.properties ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements const & sparseImageMemoryRequirements ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements.formatProperties ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements.imageMipTailFirstLod ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements.imageMipTailSize ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements.imageMipTailOffset ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements.imageMipTailStride ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 const & sparseImageMemoryRequirements2 ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, sparseImageMemoryRequirements2.memoryRequirements ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_GGP ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP const & - streamDescriptorSurfaceCreateInfoGGP ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, streamDescriptorSurfaceCreateInfoGGP.sType ); - VULKAN_HPP_HASH_COMBINE( seed, streamDescriptorSurfaceCreateInfoGGP.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, streamDescriptorSurfaceCreateInfoGGP.flags ); - VULKAN_HPP_HASH_COMBINE( seed, streamDescriptorSurfaceCreateInfoGGP.streamDescriptor ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_GGP*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR const & stridedDeviceAddressRegionKHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, stridedDeviceAddressRegionKHR.deviceAddress ); - VULKAN_HPP_HASH_COMBINE( seed, stridedDeviceAddressRegionKHR.stride ); - VULKAN_HPP_HASH_COMBINE( seed, stridedDeviceAddressRegionKHR.size ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubmitInfo const & submitInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.waitSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.pWaitSemaphores ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.pWaitDstStageMask ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.commandBufferCount ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.pCommandBuffers ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.signalSemaphoreCount ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo.pSignalSemaphores ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubmitInfo2 const & submitInfo2 ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.sType ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.flags ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.waitSemaphoreInfoCount ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.pWaitSemaphoreInfos ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.commandBufferInfoCount ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.pCommandBufferInfos ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.signalSemaphoreInfoCount ); - VULKAN_HPP_HASH_COMBINE( seed, submitInfo2.pSignalSemaphoreInfos ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubpassBeginInfo const & subpassBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassBeginInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassBeginInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, subpassBeginInfo.contents ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubpassDescriptionDepthStencilResolve const & - subpassDescriptionDepthStencilResolve ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassDescriptionDepthStencilResolve.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescriptionDepthStencilResolve.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescriptionDepthStencilResolve.depthResolveMode ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescriptionDepthStencilResolve.stencilResolveMode ); - VULKAN_HPP_HASH_COMBINE( seed, subpassDescriptionDepthStencilResolve.pDepthStencilResolveAttachment ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubpassEndInfo const & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassEndInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassEndInfo.pNext ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubpassFragmentDensityMapOffsetEndInfoQCOM const & - subpassFragmentDensityMapOffsetEndInfoQCOM ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassFragmentDensityMapOffsetEndInfoQCOM.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassFragmentDensityMapOffsetEndInfoQCOM.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, subpassFragmentDensityMapOffsetEndInfoQCOM.fragmentDensityOffsetCount ); - VULKAN_HPP_HASH_COMBINE( seed, subpassFragmentDensityMapOffsetEndInfoQCOM.pFragmentDensityOffsets ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SubpassShadingPipelineCreateInfoHUAWEI const & - subpassShadingPipelineCreateInfoHUAWEI ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, subpassShadingPipelineCreateInfoHUAWEI.sType ); - VULKAN_HPP_HASH_COMBINE( seed, subpassShadingPipelineCreateInfoHUAWEI.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, subpassShadingPipelineCreateInfoHUAWEI.renderPass ); - VULKAN_HPP_HASH_COMBINE( seed, subpassShadingPipelineCreateInfoHUAWEI.subpass ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT const & surfaceCapabilities2EXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.minImageCount ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.maxImageCount ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.currentExtent ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.minImageExtent ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.maxImageExtent ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.maxImageArrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.supportedTransforms ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.currentTransform ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.supportedCompositeAlpha ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.supportedUsageFlags ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2EXT.supportedSurfaceCounters ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR const & surfaceCapabilitiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.minImageCount ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.maxImageCount ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.currentExtent ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.minImageExtent ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.maxImageExtent ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.maxImageArrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.supportedTransforms ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.currentTransform ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.supportedCompositeAlpha ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesKHR.supportedUsageFlags ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR const & surfaceCapabilities2KHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilities2KHR.surfaceCapabilities ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesFullScreenExclusiveEXT const & - surfaceCapabilitiesFullScreenExclusiveEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesFullScreenExclusiveEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesFullScreenExclusiveEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceCapabilitiesFullScreenExclusiveEXT.fullScreenExclusiveSupported ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceFormatKHR const & surfaceFormatKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceFormatKHR.format ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFormatKHR.colorSpace ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SurfaceFormat2KHR const & surfaceFormat2KHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceFormat2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFormat2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFormat2KHR.surfaceFormat ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceFullScreenExclusiveInfoEXT const & - surfaceFullScreenExclusiveInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceFullScreenExclusiveInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFullScreenExclusiveInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFullScreenExclusiveInfoEXT.fullScreenExclusive ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SurfaceFullScreenExclusiveWin32InfoEXT const & - surfaceFullScreenExclusiveWin32InfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceFullScreenExclusiveWin32InfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFullScreenExclusiveWin32InfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceFullScreenExclusiveWin32InfoEXT.hmonitor ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::SurfaceProtectedCapabilitiesKHR const & surfaceProtectedCapabilitiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, surfaceProtectedCapabilitiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceProtectedCapabilitiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, surfaceProtectedCapabilitiesKHR.supportsProtected ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SwapchainCounterCreateInfoEXT const & swapchainCounterCreateInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, swapchainCounterCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCounterCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCounterCreateInfoEXT.surfaceCounters ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR const & swapchainCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.surface ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.minImageCount ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.imageFormat ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.imageColorSpace ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.imageExtent ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.imageArrayLayers ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.imageUsage ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.imageSharingMode ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.queueFamilyIndexCount ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.pQueueFamilyIndices ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.preTransform ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.compositeAlpha ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.presentMode ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.clipped ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainCreateInfoKHR.oldSwapchain ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::SwapchainDisplayNativeHdrCreateInfoAMD const & - swapchainDisplayNativeHdrCreateInfoAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, swapchainDisplayNativeHdrCreateInfoAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainDisplayNativeHdrCreateInfoAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, swapchainDisplayNativeHdrCreateInfoAMD.localDimmingEnable ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::TextureLODGatherFormatPropertiesAMD const & - textureLODGatherFormatPropertiesAMD ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, textureLODGatherFormatPropertiesAMD.sType ); - VULKAN_HPP_HASH_COMBINE( seed, textureLODGatherFormatPropertiesAMD.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, textureLODGatherFormatPropertiesAMD.supportsTextureGatherLODBiasAMD ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::TimelineSemaphoreSubmitInfo const & timelineSemaphoreSubmitInfo ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, timelineSemaphoreSubmitInfo.sType ); - VULKAN_HPP_HASH_COMBINE( seed, timelineSemaphoreSubmitInfo.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, timelineSemaphoreSubmitInfo.waitSemaphoreValueCount ); - VULKAN_HPP_HASH_COMBINE( seed, timelineSemaphoreSubmitInfo.pWaitSemaphoreValues ); - VULKAN_HPP_HASH_COMBINE( seed, timelineSemaphoreSubmitInfo.signalSemaphoreValueCount ); - VULKAN_HPP_HASH_COMBINE( seed, timelineSemaphoreSubmitInfo.pSignalSemaphoreValues ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::TraceRaysIndirectCommandKHR const & traceRaysIndirectCommandKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, traceRaysIndirectCommandKHR.width ); - VULKAN_HPP_HASH_COMBINE( seed, traceRaysIndirectCommandKHR.height ); - VULKAN_HPP_HASH_COMBINE( seed, traceRaysIndirectCommandKHR.depth ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT const & validationCacheCreateInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, validationCacheCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, validationCacheCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, validationCacheCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, validationCacheCreateInfoEXT.initialDataSize ); - VULKAN_HPP_HASH_COMBINE( seed, validationCacheCreateInfoEXT.pInitialData ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ValidationFeaturesEXT const & validationFeaturesEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, validationFeaturesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, validationFeaturesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, validationFeaturesEXT.enabledValidationFeatureCount ); - VULKAN_HPP_HASH_COMBINE( seed, validationFeaturesEXT.pEnabledValidationFeatures ); - VULKAN_HPP_HASH_COMBINE( seed, validationFeaturesEXT.disabledValidationFeatureCount ); - VULKAN_HPP_HASH_COMBINE( seed, validationFeaturesEXT.pDisabledValidationFeatures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ValidationFlagsEXT const & validationFlagsEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, validationFlagsEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, validationFlagsEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, validationFlagsEXT.disabledValidationCheckCount ); - VULKAN_HPP_HASH_COMBINE( seed, validationFlagsEXT.pDisabledValidationChecks ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription2EXT const & - vertexInputAttributeDescription2EXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription2EXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription2EXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription2EXT.location ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription2EXT.binding ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription2EXT.format ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputAttributeDescription2EXT.offset ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VertexInputBindingDescription2EXT const & - vertexInputBindingDescription2EXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription2EXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription2EXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription2EXT.binding ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription2EXT.stride ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription2EXT.inputRate ); - VULKAN_HPP_HASH_COMBINE( seed, vertexInputBindingDescription2EXT.divisor ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_VI_NN ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN const & viSurfaceCreateInfoNN ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, viSurfaceCreateInfoNN.sType ); - VULKAN_HPP_HASH_COMBINE( seed, viSurfaceCreateInfoNN.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, viSurfaceCreateInfoNN.flags ); - VULKAN_HPP_HASH_COMBINE( seed, viSurfaceCreateInfoNN.window ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_VI_NN*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR const & videoPictureResourceKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoPictureResourceKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoPictureResourceKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoPictureResourceKHR.codedOffset ); - VULKAN_HPP_HASH_COMBINE( seed, videoPictureResourceKHR.codedExtent ); - VULKAN_HPP_HASH_COMBINE( seed, videoPictureResourceKHR.baseArrayLayer ); - VULKAN_HPP_HASH_COMBINE( seed, videoPictureResourceKHR.imageViewBinding ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR const & videoReferenceSlotKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoReferenceSlotKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoReferenceSlotKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoReferenceSlotKHR.slotIndex ); - VULKAN_HPP_HASH_COMBINE( seed, videoReferenceSlotKHR.pPictureResource ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR const & videoBeginCodingInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.codecQualityPreset ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.videoSession ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.videoSessionParameters ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.referenceSlotCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoBeginCodingInfoKHR.pReferenceSlots ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoBindMemoryKHR const & videoBindMemoryKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoBindMemoryKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoBindMemoryKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoBindMemoryKHR.memoryBindIndex ); - VULKAN_HPP_HASH_COMBINE( seed, videoBindMemoryKHR.memory ); - VULKAN_HPP_HASH_COMBINE( seed, videoBindMemoryKHR.memoryOffset ); - VULKAN_HPP_HASH_COMBINE( seed, videoBindMemoryKHR.memorySize ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR const & videoCapabilitiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.capabilityFlags ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.minBitstreamBufferOffsetAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.minBitstreamBufferSizeAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.videoPictureExtentGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.minExtent ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.maxExtent ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.maxReferencePicturesSlotsCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoCapabilitiesKHR.maxReferencePicturesActiveCount ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR const & videoCodingControlInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoCodingControlInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoCodingControlInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoCodingControlInfoKHR.flags ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264CapabilitiesEXT const & videoDecodeH264CapabilitiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264CapabilitiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264CapabilitiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264CapabilitiesEXT.maxLevel ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264CapabilitiesEXT.fieldOffsetGranularity ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264CapabilitiesEXT.stdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264DpbSlotInfoEXT const & videoDecodeH264DpbSlotInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264DpbSlotInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264DpbSlotInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264DpbSlotInfoEXT.pStdReferenceInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264MvcEXT const & videoDecodeH264MvcEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264MvcEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264MvcEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264MvcEXT.pStdMvc ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264PictureInfoEXT const & videoDecodeH264PictureInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264PictureInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264PictureInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264PictureInfoEXT.pStdPictureInfo ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264PictureInfoEXT.slicesCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264PictureInfoEXT.pSlicesDataOffsets ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264ProfileEXT const & videoDecodeH264ProfileEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264ProfileEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264ProfileEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264ProfileEXT.stdProfileIdc ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264ProfileEXT.pictureLayout ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionCreateInfoEXT const & - videoDecodeH264SessionCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionCreateInfoEXT.pStdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersAddInfoEXT const & - videoDecodeH264SessionParametersAddInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersAddInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersAddInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersAddInfoEXT.spsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersAddInfoEXT.pSpsStd ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersAddInfoEXT.ppsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersAddInfoEXT.pPpsStd ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersCreateInfoEXT const & - videoDecodeH264SessionParametersCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersCreateInfoEXT.maxSpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersCreateInfoEXT.maxPpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264SessionParametersCreateInfoEXT.pParametersAddInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265CapabilitiesEXT const & videoDecodeH265CapabilitiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265CapabilitiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265CapabilitiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265CapabilitiesEXT.maxLevel ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265CapabilitiesEXT.stdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265DpbSlotInfoEXT const & videoDecodeH265DpbSlotInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265DpbSlotInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265DpbSlotInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265DpbSlotInfoEXT.pStdReferenceInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265PictureInfoEXT const & videoDecodeH265PictureInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265PictureInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265PictureInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265PictureInfoEXT.pStdPictureInfo ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265PictureInfoEXT.slicesCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265PictureInfoEXT.pSlicesDataOffsets ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265ProfileEXT const & videoDecodeH265ProfileEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265ProfileEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265ProfileEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265ProfileEXT.stdProfileIdc ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionCreateInfoEXT const & - videoDecodeH265SessionCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionCreateInfoEXT.pStdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersAddInfoEXT const & - videoDecodeH265SessionParametersAddInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersAddInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersAddInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersAddInfoEXT.spsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersAddInfoEXT.pSpsStd ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersAddInfoEXT.ppsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersAddInfoEXT.pPpsStd ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersCreateInfoEXT const & - videoDecodeH265SessionParametersCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersCreateInfoEXT.maxSpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersCreateInfoEXT.maxPpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH265SessionParametersCreateInfoEXT.pParametersAddInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR const & videoDecodeInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.codedOffset ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.codedExtent ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.srcBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.srcBufferOffset ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.srcBufferRange ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.dstPictureResource ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.pSetupReferenceSlot ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.referenceSlotCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoDecodeInfoKHR.pReferenceSlots ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264CapabilitiesEXT const & videoEncodeH264CapabilitiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.inputModeFlags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.outputModeFlags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.minPictureSizeInMbs ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.maxPictureSizeInMbs ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.inputImageDataAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.maxNumL0ReferenceForP ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.maxNumL0ReferenceForB ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.maxNumL1Reference ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.qualityLevelCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264CapabilitiesEXT.stdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT const & videoEncodeH264DpbSlotInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264DpbSlotInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264DpbSlotInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264DpbSlotInfoEXT.slotIndex ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264DpbSlotInfoEXT.pStdPictureInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264EmitPictureParametersEXT const & - videoEncodeH264EmitPictureParametersEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264EmitPictureParametersEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264EmitPictureParametersEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264EmitPictureParametersEXT.spsId ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264EmitPictureParametersEXT.emitSpsEnable ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264EmitPictureParametersEXT.ppsIdEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264EmitPictureParametersEXT.ppsIdEntries ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::VideoEncodeH264FrameSizeEXT const & videoEncodeH264FrameSizeEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264FrameSizeEXT.frameISize ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264FrameSizeEXT.framePSize ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264FrameSizeEXT.frameBSize ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::VideoEncodeH264NaluSliceEXT const & videoEncodeH264NaluSliceEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.pSliceHeaderStd ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.mbCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.refFinalList0EntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.pRefFinalList0Entries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.refFinalList1EntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264NaluSliceEXT.pRefFinalList1Entries ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264ProfileEXT const & videoEncodeH264ProfileEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264ProfileEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264ProfileEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264ProfileEXT.stdProfileIdc ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT const & videoEncodeH264QpEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264QpEXT.qpI ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264QpEXT.qpP ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264QpEXT.qpB ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlInfoEXT const & - videoEncodeH264RateControlInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.gopFrameCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.idrPeriod ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.consecutiveBFrameCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.rateControlStructure ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlInfoEXT.temporalLayerCount ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlLayerInfoEXT const & - videoEncodeH264RateControlLayerInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.temporalLayerId ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.useInitialRcQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.initialRcQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.useMinQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.minQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.useMaxQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.maxQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.useMaxFrameSize ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264RateControlLayerInfoEXT.maxFrameSize ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionCreateInfoEXT const & - videoEncodeH264SessionCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionCreateInfoEXT.maxPictureSizeInMbs ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionCreateInfoEXT.pStdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersAddInfoEXT const & - videoEncodeH264SessionParametersAddInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersAddInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersAddInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersAddInfoEXT.spsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersAddInfoEXT.pSpsStd ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersAddInfoEXT.ppsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersAddInfoEXT.pPpsStd ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersCreateInfoEXT const & - videoEncodeH264SessionParametersCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersCreateInfoEXT.maxSpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersCreateInfoEXT.maxPpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264SessionParametersCreateInfoEXT.pParametersAddInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH264VclFrameInfoEXT const & videoEncodeH264VclFrameInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.refDefaultFinalList0EntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.pRefDefaultFinalList0Entries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.refDefaultFinalList1EntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.pRefDefaultFinalList1Entries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.naluSliceEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.pNaluSliceEntries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH264VclFrameInfoEXT.pCurrentPictureInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265CapabilitiesEXT const & videoEncodeH265CapabilitiesEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.inputModeFlags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.outputModeFlags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.ctbSizes ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.inputImageDataAlignment ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.maxNumL0ReferenceForP ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.maxNumL0ReferenceForB ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.maxNumL1Reference ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.maxNumSubLayers ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.qualityLevelCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265CapabilitiesEXT.stdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT const & videoEncodeH265DpbSlotInfoEXT ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265DpbSlotInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265DpbSlotInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265DpbSlotInfoEXT.slotIndex ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265DpbSlotInfoEXT.pStdReferenceInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265EmitPictureParametersEXT const & - videoEncodeH265EmitPictureParametersEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.vpsId ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.spsId ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.emitVpsEnable ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.emitSpsEnable ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.ppsIdEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265EmitPictureParametersEXT.ppsIdEntries ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::VideoEncodeH265FrameSizeEXT const & videoEncodeH265FrameSizeEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265FrameSizeEXT.frameISize ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265FrameSizeEXT.framePSize ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265FrameSizeEXT.frameBSize ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT const & - videoEncodeH265ReferenceListsEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.referenceList0EntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.pReferenceList0Entries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.referenceList1EntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.pReferenceList1Entries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ReferenceListsEXT.pReferenceModifications ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::VideoEncodeH265NaluSliceEXT const & videoEncodeH265NaluSliceEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265NaluSliceEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265NaluSliceEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265NaluSliceEXT.ctbCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265NaluSliceEXT.pReferenceFinalLists ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265NaluSliceEXT.pSliceHeaderStd ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265ProfileEXT const & videoEncodeH265ProfileEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ProfileEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ProfileEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265ProfileEXT.stdProfileIdc ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT const & videoEncodeH265QpEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265QpEXT.qpI ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265QpEXT.qpP ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265QpEXT.qpB ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlInfoEXT const & - videoEncodeH265RateControlInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.gopFrameCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.idrPeriod ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.consecutiveBFrameCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.rateControlStructure ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlInfoEXT.subLayerCount ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlLayerInfoEXT const & - videoEncodeH265RateControlLayerInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.temporalId ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.useInitialRcQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.initialRcQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.useMinQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.minQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.useMaxQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.maxQp ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.useMaxFrameSize ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265RateControlLayerInfoEXT.maxFrameSize ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionCreateInfoEXT const & - videoEncodeH265SessionCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionCreateInfoEXT.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionCreateInfoEXT.pStdExtensionVersion ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersAddInfoEXT const & - videoEncodeH265SessionParametersAddInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.vpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.pVpsStd ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.spsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.pSpsStd ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.ppsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersAddInfoEXT.pPpsStd ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersCreateInfoEXT const & - videoEncodeH265SessionParametersCreateInfoEXT ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersCreateInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersCreateInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersCreateInfoEXT.maxVpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersCreateInfoEXT.maxSpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersCreateInfoEXT.maxPpsStdCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265SessionParametersCreateInfoEXT.pParametersAddInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeH265VclFrameInfoEXT const & videoEncodeH265VclFrameInfoEXT ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265VclFrameInfoEXT.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265VclFrameInfoEXT.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265VclFrameInfoEXT.pReferenceFinalLists ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265VclFrameInfoEXT.naluSliceEntryCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265VclFrameInfoEXT.pNaluSliceEntries ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeH265VclFrameInfoEXT.pCurrentPictureInfo ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR const & videoEncodeInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.qualityLevel ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.codedExtent ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.dstBitstreamBuffer ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.dstBitstreamBufferOffset ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.dstBitstreamBufferMaxRange ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.srcPictureResource ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.pSetupReferenceSlot ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.referenceSlotCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.pReferenceSlots ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeInfoKHR.precedingExternallyEncodedBytes ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR const & - videoEncodeRateControlLayerInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.averageBitrate ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.maxBitrate ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.frameRateNumerator ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.frameRateDenominator ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.virtualBufferSizeInMs ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlLayerInfoKHR.initialVirtualBufferSizeInMs ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoEncodeRateControlInfoKHR const & videoEncodeRateControlInfoKHR ) - const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlInfoKHR.rateControlMode ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlInfoKHR.layerCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoEncodeRateControlInfoKHR.pLayerConfigs ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR const & videoEndCodingInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoEndCodingInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoEndCodingInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoEndCodingInfoKHR.flags ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoFormatPropertiesKHR const & videoFormatPropertiesKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoFormatPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoFormatPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoFormatPropertiesKHR.format ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::VideoGetMemoryPropertiesKHR const & videoGetMemoryPropertiesKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoGetMemoryPropertiesKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoGetMemoryPropertiesKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoGetMemoryPropertiesKHR.memoryBindIndex ); - VULKAN_HPP_HASH_COMBINE( seed, videoGetMemoryPropertiesKHR.pMemoryRequirements ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::VideoQueueFamilyProperties2KHR const & videoQueueFamilyProperties2KHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoQueueFamilyProperties2KHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoQueueFamilyProperties2KHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoQueueFamilyProperties2KHR.videoCodecOperations ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR const & videoSessionCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.queueFamilyIndex ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.pVideoProfile ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.pictureFormat ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.maxCodedExtent ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.referencePicturesFormat ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.maxReferencePicturesSlotsCount ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionCreateInfoKHR.maxReferencePicturesActiveCount ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR const & - videoSessionParametersCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersCreateInfoKHR.videoSessionParametersTemplate ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersCreateInfoKHR.videoSession ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR const & - videoSessionParametersUpdateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersUpdateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersUpdateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, videoSessionParametersUpdateInfoKHR.updateSequenceCount ); - return seed; - } - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - template <> - struct hash - { - std::size_t operator()( - VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR const & waylandSurfaceCreateInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, waylandSurfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, waylandSurfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, waylandSurfaceCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, waylandSurfaceCreateInfoKHR.display ); - VULKAN_HPP_HASH_COMBINE( seed, waylandSurfaceCreateInfoKHR.surface ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Win32KeyedMutexAcquireReleaseInfoKHR const & - win32KeyedMutexAcquireReleaseInfoKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.acquireCount ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.pAcquireSyncs ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.pAcquireKeys ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.pAcquireTimeouts ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.releaseCount ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.pReleaseSyncs ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoKHR.pReleaseKeys ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Win32KeyedMutexAcquireReleaseInfoNV const & - win32KeyedMutexAcquireReleaseInfoNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.acquireCount ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.pAcquireSyncs ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.pAcquireKeys ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.pAcquireTimeoutMilliseconds ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.releaseCount ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.pReleaseSyncs ); - VULKAN_HPP_HASH_COMBINE( seed, win32KeyedMutexAcquireReleaseInfoNV.pReleaseKeys ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR const & win32SurfaceCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, win32SurfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, win32SurfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, win32SurfaceCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, win32SurfaceCreateInfoKHR.hinstance ); - VULKAN_HPP_HASH_COMBINE( seed, win32SurfaceCreateInfoKHR.hwnd ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - template <> - struct hash - { - std::size_t - operator()( VULKAN_HPP_NAMESPACE::WriteDescriptorSet const & writeDescriptorSet ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.sType ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.dstSet ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.dstBinding ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.dstArrayElement ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.descriptorCount ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.descriptorType ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.pImageInfo ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.pBufferInfo ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSet.pTexelBufferView ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::WriteDescriptorSetAccelerationStructureKHR const & - writeDescriptorSetAccelerationStructureKHR ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureKHR.accelerationStructureCount ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureKHR.pAccelerationStructures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::WriteDescriptorSetAccelerationStructureNV const & - writeDescriptorSetAccelerationStructureNV ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureNV.sType ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureNV.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureNV.accelerationStructureCount ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetAccelerationStructureNV.pAccelerationStructures ); - return seed; - } - }; - - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::WriteDescriptorSetInlineUniformBlock const & - writeDescriptorSetInlineUniformBlock ) const VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetInlineUniformBlock.sType ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetInlineUniformBlock.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetInlineUniformBlock.dataSize ); - VULKAN_HPP_HASH_COMBINE( seed, writeDescriptorSetInlineUniformBlock.pData ); - return seed; - } - }; - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR const & xcbSurfaceCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, xcbSurfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, xcbSurfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, xcbSurfaceCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, xcbSurfaceCreateInfoKHR.connection ); - VULKAN_HPP_HASH_COMBINE( seed, xcbSurfaceCreateInfoKHR.window ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - template <> - struct hash - { - std::size_t operator()( VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR const & xlibSurfaceCreateInfoKHR ) const - VULKAN_HPP_NOEXCEPT - { - std::size_t seed = 0; - VULKAN_HPP_HASH_COMBINE( seed, xlibSurfaceCreateInfoKHR.sType ); - VULKAN_HPP_HASH_COMBINE( seed, xlibSurfaceCreateInfoKHR.pNext ); - VULKAN_HPP_HASH_COMBINE( seed, xlibSurfaceCreateInfoKHR.flags ); - VULKAN_HPP_HASH_COMBINE( seed, xlibSurfaceCreateInfoKHR.dpy ); - VULKAN_HPP_HASH_COMBINE( seed, xlibSurfaceCreateInfoKHR.window ); - return seed; - } - }; -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -#endif // 14 <= VULKAN_HPP_CPP_VERSION - -} // namespace std -#endif // VULKAN_HASH_HPP diff --git a/Externals/Vulkan/Include/vulkan/vulkan_ios.h b/Externals/Vulkan/Include/vulkan/vulkan_ios.h deleted file mode 100644 index 5792205439..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_ios.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef VULKAN_IOS_H_ -#define VULKAN_IOS_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_MVK_ios_surface 1 -#define VK_MVK_IOS_SURFACE_SPEC_VERSION 3 -#define VK_MVK_IOS_SURFACE_EXTENSION_NAME "VK_MVK_ios_surface" -typedef VkFlags VkIOSSurfaceCreateFlagsMVK; -typedef struct VkIOSSurfaceCreateInfoMVK { - VkStructureType sType; - const void* pNext; - VkIOSSurfaceCreateFlagsMVK flags; - const void* pView; -} VkIOSSurfaceCreateInfoMVK; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateIOSSurfaceMVK)(VkInstance instance, const VkIOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateIOSSurfaceMVK( - VkInstance instance, - const VkIOSSurfaceCreateInfoMVK* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_macos.h b/Externals/Vulkan/Include/vulkan/vulkan_macos.h deleted file mode 100644 index 8e197c7cff..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_macos.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef VULKAN_MACOS_H_ -#define VULKAN_MACOS_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_MVK_macos_surface 1 -#define VK_MVK_MACOS_SURFACE_SPEC_VERSION 3 -#define VK_MVK_MACOS_SURFACE_EXTENSION_NAME "VK_MVK_macos_surface" -typedef VkFlags VkMacOSSurfaceCreateFlagsMVK; -typedef struct VkMacOSSurfaceCreateInfoMVK { - VkStructureType sType; - const void* pNext; - VkMacOSSurfaceCreateFlagsMVK flags; - const void* pView; -} VkMacOSSurfaceCreateInfoMVK; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateMacOSSurfaceMVK)(VkInstance instance, const VkMacOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateMacOSSurfaceMVK( - VkInstance instance, - const VkMacOSSurfaceCreateInfoMVK* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_metal.h b/Externals/Vulkan/Include/vulkan/vulkan_metal.h deleted file mode 100644 index 3631f1200a..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_metal.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef VULKAN_METAL_H_ -#define VULKAN_METAL_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_EXT_metal_surface 1 - -#ifdef __OBJC__ -@class CAMetalLayer; -#else -typedef void CAMetalLayer; -#endif - -#define VK_EXT_METAL_SURFACE_SPEC_VERSION 1 -#define VK_EXT_METAL_SURFACE_EXTENSION_NAME "VK_EXT_metal_surface" -typedef VkFlags VkMetalSurfaceCreateFlagsEXT; -typedef struct VkMetalSurfaceCreateInfoEXT { - VkStructureType sType; - const void* pNext; - VkMetalSurfaceCreateFlagsEXT flags; - const CAMetalLayer* pLayer; -} VkMetalSurfaceCreateInfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateMetalSurfaceEXT)(VkInstance instance, const VkMetalSurfaceCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateMetalSurfaceEXT( - VkInstance instance, - const VkMetalSurfaceCreateInfoEXT* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_raii.hpp b/Externals/Vulkan/Include/vulkan/vulkan_raii.hpp deleted file mode 100644 index a5304301d7..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_raii.hpp +++ /dev/null @@ -1,18669 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_RAII_HPP -#define VULKAN_RAII_HPP - -#include - -#if !defined( VULKAN_HPP_RAII_NAMESPACE ) -# define VULKAN_HPP_RAII_NAMESPACE raii -#endif - -namespace VULKAN_HPP_NAMESPACE -{ - namespace VULKAN_HPP_RAII_NAMESPACE - { -#if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) && !defined( VULKAN_HPP_NO_EXCEPTIONS ) - - template - VULKAN_HPP_CONSTEXPR_14 VULKAN_HPP_INLINE T exchange( T & obj, U && newValue ) - { -# if ( 14 <= VULKAN_HPP_CPP_VERSION ) - return std::exchange( obj, std::forward( newValue ) ); -# else - T oldValue = std::move( obj ); - obj = std::forward( newValue ); - return oldValue; -# endif - } - - class ContextDispatcher : public DispatchLoaderBase - { - public: - ContextDispatcher( PFN_vkGetInstanceProcAddr getProcAddr ) - : vkGetInstanceProcAddr( getProcAddr ) - //=== VK_VERSION_1_0 === - , vkCreateInstance( PFN_vkCreateInstance( getProcAddr( NULL, "vkCreateInstance" ) ) ) - , vkEnumerateInstanceExtensionProperties( PFN_vkEnumerateInstanceExtensionProperties( - getProcAddr( NULL, "vkEnumerateInstanceExtensionProperties" ) ) ) - , vkEnumerateInstanceLayerProperties( - PFN_vkEnumerateInstanceLayerProperties( getProcAddr( NULL, "vkEnumerateInstanceLayerProperties" ) ) ) - //=== VK_VERSION_1_1 === - , vkEnumerateInstanceVersion( - PFN_vkEnumerateInstanceVersion( getProcAddr( NULL, "vkEnumerateInstanceVersion" ) ) ) - {} - - public: - PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr = 0; - - //=== VK_VERSION_1_0 === - PFN_vkCreateInstance vkCreateInstance = 0; - PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties = 0; - PFN_vkEnumerateInstanceLayerProperties vkEnumerateInstanceLayerProperties = 0; - - //=== VK_VERSION_1_1 === - PFN_vkEnumerateInstanceVersion vkEnumerateInstanceVersion = 0; - }; - - class InstanceDispatcher : public DispatchLoaderBase - { - public: - InstanceDispatcher( PFN_vkGetInstanceProcAddr getProcAddr, VkInstance instance ) - : vkGetInstanceProcAddr( getProcAddr ) - { - //=== VK_VERSION_1_0 === - vkDestroyInstance = PFN_vkDestroyInstance( vkGetInstanceProcAddr( instance, "vkDestroyInstance" ) ); - vkEnumeratePhysicalDevices = - PFN_vkEnumeratePhysicalDevices( vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDevices" ) ); - vkGetPhysicalDeviceFeatures = - PFN_vkGetPhysicalDeviceFeatures( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFeatures" ) ); - vkGetPhysicalDeviceFormatProperties = PFN_vkGetPhysicalDeviceFormatProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFormatProperties" ) ); - vkGetPhysicalDeviceImageFormatProperties = PFN_vkGetPhysicalDeviceImageFormatProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceImageFormatProperties" ) ); - vkGetPhysicalDeviceProperties = - PFN_vkGetPhysicalDeviceProperties( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceProperties" ) ); - vkGetPhysicalDeviceQueueFamilyProperties = PFN_vkGetPhysicalDeviceQueueFamilyProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyProperties" ) ); - vkGetPhysicalDeviceMemoryProperties = PFN_vkGetPhysicalDeviceMemoryProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMemoryProperties" ) ); - vkCreateDevice = PFN_vkCreateDevice( vkGetInstanceProcAddr( instance, "vkCreateDevice" ) ); - vkEnumerateDeviceExtensionProperties = PFN_vkEnumerateDeviceExtensionProperties( - vkGetInstanceProcAddr( instance, "vkEnumerateDeviceExtensionProperties" ) ); - vkEnumerateDeviceLayerProperties = - PFN_vkEnumerateDeviceLayerProperties( vkGetInstanceProcAddr( instance, "vkEnumerateDeviceLayerProperties" ) ); - vkGetPhysicalDeviceSparseImageFormatProperties = PFN_vkGetPhysicalDeviceSparseImageFormatProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSparseImageFormatProperties" ) ); - - //=== VK_VERSION_1_1 === - vkEnumeratePhysicalDeviceGroups = - PFN_vkEnumeratePhysicalDeviceGroups( vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDeviceGroups" ) ); - vkGetPhysicalDeviceFeatures2 = - PFN_vkGetPhysicalDeviceFeatures2( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFeatures2" ) ); - vkGetPhysicalDeviceProperties2 = - PFN_vkGetPhysicalDeviceProperties2( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceProperties2" ) ); - vkGetPhysicalDeviceFormatProperties2 = PFN_vkGetPhysicalDeviceFormatProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFormatProperties2" ) ); - vkGetPhysicalDeviceImageFormatProperties2 = PFN_vkGetPhysicalDeviceImageFormatProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceImageFormatProperties2" ) ); - vkGetPhysicalDeviceQueueFamilyProperties2 = PFN_vkGetPhysicalDeviceQueueFamilyProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyProperties2" ) ); - vkGetPhysicalDeviceMemoryProperties2 = PFN_vkGetPhysicalDeviceMemoryProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMemoryProperties2" ) ); - vkGetPhysicalDeviceSparseImageFormatProperties2 = PFN_vkGetPhysicalDeviceSparseImageFormatProperties2( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSparseImageFormatProperties2" ) ); - vkGetPhysicalDeviceExternalBufferProperties = PFN_vkGetPhysicalDeviceExternalBufferProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalBufferProperties" ) ); - vkGetPhysicalDeviceExternalFenceProperties = PFN_vkGetPhysicalDeviceExternalFenceProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalFenceProperties" ) ); - vkGetPhysicalDeviceExternalSemaphoreProperties = PFN_vkGetPhysicalDeviceExternalSemaphoreProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalSemaphoreProperties" ) ); - - //=== VK_VERSION_1_3 === - vkGetPhysicalDeviceToolProperties = PFN_vkGetPhysicalDeviceToolProperties( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceToolProperties" ) ); - - //=== VK_EXT_acquire_drm_display === - vkAcquireDrmDisplayEXT = - PFN_vkAcquireDrmDisplayEXT( vkGetInstanceProcAddr( instance, "vkAcquireDrmDisplayEXT" ) ); - vkGetDrmDisplayEXT = PFN_vkGetDrmDisplayEXT( vkGetInstanceProcAddr( instance, "vkGetDrmDisplayEXT" ) ); - -# if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - vkAcquireXlibDisplayEXT = - PFN_vkAcquireXlibDisplayEXT( vkGetInstanceProcAddr( instance, "vkAcquireXlibDisplayEXT" ) ); - vkGetRandROutputDisplayEXT = - PFN_vkGetRandROutputDisplayEXT( vkGetInstanceProcAddr( instance, "vkGetRandROutputDisplayEXT" ) ); -# endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_calibrated_timestamps === - vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCalibrateableTimeDomainsEXT" ) ); - - //=== VK_EXT_debug_report === - vkCreateDebugReportCallbackEXT = - PFN_vkCreateDebugReportCallbackEXT( vkGetInstanceProcAddr( instance, "vkCreateDebugReportCallbackEXT" ) ); - vkDestroyDebugReportCallbackEXT = - PFN_vkDestroyDebugReportCallbackEXT( vkGetInstanceProcAddr( instance, "vkDestroyDebugReportCallbackEXT" ) ); - vkDebugReportMessageEXT = - PFN_vkDebugReportMessageEXT( vkGetInstanceProcAddr( instance, "vkDebugReportMessageEXT" ) ); - - //=== VK_EXT_debug_utils === - vkCreateDebugUtilsMessengerEXT = - PFN_vkCreateDebugUtilsMessengerEXT( vkGetInstanceProcAddr( instance, "vkCreateDebugUtilsMessengerEXT" ) ); - vkDestroyDebugUtilsMessengerEXT = - PFN_vkDestroyDebugUtilsMessengerEXT( vkGetInstanceProcAddr( instance, "vkDestroyDebugUtilsMessengerEXT" ) ); - vkSubmitDebugUtilsMessageEXT = - PFN_vkSubmitDebugUtilsMessageEXT( vkGetInstanceProcAddr( instance, "vkSubmitDebugUtilsMessageEXT" ) ); - - //=== VK_EXT_direct_mode_display === - vkReleaseDisplayEXT = PFN_vkReleaseDisplayEXT( vkGetInstanceProcAddr( instance, "vkReleaseDisplayEXT" ) ); - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - vkCreateDirectFBSurfaceEXT = - PFN_vkCreateDirectFBSurfaceEXT( vkGetInstanceProcAddr( instance, "vkCreateDirectFBSurfaceEXT" ) ); - vkGetPhysicalDeviceDirectFBPresentationSupportEXT = PFN_vkGetPhysicalDeviceDirectFBPresentationSupportEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDirectFBPresentationSupportEXT" ) ); -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_EXT_display_surface_counter === - vkGetPhysicalDeviceSurfaceCapabilities2EXT = PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceCapabilities2EXT" ) ); - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - vkGetPhysicalDeviceSurfacePresentModes2EXT = PFN_vkGetPhysicalDeviceSurfacePresentModes2EXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfacePresentModes2EXT" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - vkCreateHeadlessSurfaceEXT = - PFN_vkCreateHeadlessSurfaceEXT( vkGetInstanceProcAddr( instance, "vkCreateHeadlessSurfaceEXT" ) ); - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - vkCreateMetalSurfaceEXT = - PFN_vkCreateMetalSurfaceEXT( vkGetInstanceProcAddr( instance, "vkCreateMetalSurfaceEXT" ) ); -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_EXT_sample_locations === - vkGetPhysicalDeviceMultisamplePropertiesEXT = PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMultisamplePropertiesEXT" ) ); - - //=== VK_EXT_tooling_info === - vkGetPhysicalDeviceToolPropertiesEXT = PFN_vkGetPhysicalDeviceToolPropertiesEXT( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceToolPropertiesEXT" ) ); - if ( !vkGetPhysicalDeviceToolProperties ) - vkGetPhysicalDeviceToolProperties = vkGetPhysicalDeviceToolPropertiesEXT; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - vkCreateImagePipeSurfaceFUCHSIA = - PFN_vkCreateImagePipeSurfaceFUCHSIA( vkGetInstanceProcAddr( instance, "vkCreateImagePipeSurfaceFUCHSIA" ) ); -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - vkCreateStreamDescriptorSurfaceGGP = PFN_vkCreateStreamDescriptorSurfaceGGP( - vkGetInstanceProcAddr( instance, "vkCreateStreamDescriptorSurfaceGGP" ) ); -# endif /*VK_USE_PLATFORM_GGP*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - vkCreateAndroidSurfaceKHR = - PFN_vkCreateAndroidSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateAndroidSurfaceKHR" ) ); -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_KHR_device_group === - vkGetPhysicalDevicePresentRectanglesKHR = PFN_vkGetPhysicalDevicePresentRectanglesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDevicePresentRectanglesKHR" ) ); - - //=== VK_KHR_device_group_creation === - vkEnumeratePhysicalDeviceGroupsKHR = PFN_vkEnumeratePhysicalDeviceGroupsKHR( - vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDeviceGroupsKHR" ) ); - if ( !vkEnumeratePhysicalDeviceGroups ) - vkEnumeratePhysicalDeviceGroups = vkEnumeratePhysicalDeviceGroupsKHR; - - //=== VK_KHR_display === - vkGetPhysicalDeviceDisplayPropertiesKHR = PFN_vkGetPhysicalDeviceDisplayPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPropertiesKHR" ) ); - vkGetPhysicalDeviceDisplayPlanePropertiesKHR = PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlanePropertiesKHR" ) ); - vkGetDisplayPlaneSupportedDisplaysKHR = PFN_vkGetDisplayPlaneSupportedDisplaysKHR( - vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneSupportedDisplaysKHR" ) ); - vkGetDisplayModePropertiesKHR = - PFN_vkGetDisplayModePropertiesKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayModePropertiesKHR" ) ); - vkCreateDisplayModeKHR = - PFN_vkCreateDisplayModeKHR( vkGetInstanceProcAddr( instance, "vkCreateDisplayModeKHR" ) ); - vkGetDisplayPlaneCapabilitiesKHR = - PFN_vkGetDisplayPlaneCapabilitiesKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneCapabilitiesKHR" ) ); - vkCreateDisplayPlaneSurfaceKHR = - PFN_vkCreateDisplayPlaneSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateDisplayPlaneSurfaceKHR" ) ); - - //=== VK_KHR_external_fence_capabilities === - vkGetPhysicalDeviceExternalFencePropertiesKHR = PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalFencePropertiesKHR" ) ); - if ( !vkGetPhysicalDeviceExternalFenceProperties ) - vkGetPhysicalDeviceExternalFenceProperties = vkGetPhysicalDeviceExternalFencePropertiesKHR; - - //=== VK_KHR_external_memory_capabilities === - vkGetPhysicalDeviceExternalBufferPropertiesKHR = PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalBufferPropertiesKHR" ) ); - if ( !vkGetPhysicalDeviceExternalBufferProperties ) - vkGetPhysicalDeviceExternalBufferProperties = vkGetPhysicalDeviceExternalBufferPropertiesKHR; - - //=== VK_KHR_external_semaphore_capabilities === - vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalSemaphorePropertiesKHR" ) ); - if ( !vkGetPhysicalDeviceExternalSemaphoreProperties ) - vkGetPhysicalDeviceExternalSemaphoreProperties = vkGetPhysicalDeviceExternalSemaphorePropertiesKHR; - - //=== VK_KHR_fragment_shading_rate === - vkGetPhysicalDeviceFragmentShadingRatesKHR = PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFragmentShadingRatesKHR" ) ); - - //=== VK_KHR_get_display_properties2 === - vkGetPhysicalDeviceDisplayProperties2KHR = PFN_vkGetPhysicalDeviceDisplayProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayProperties2KHR" ) ); - vkGetPhysicalDeviceDisplayPlaneProperties2KHR = PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlaneProperties2KHR" ) ); - vkGetDisplayModeProperties2KHR = - PFN_vkGetDisplayModeProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetDisplayModeProperties2KHR" ) ); - vkGetDisplayPlaneCapabilities2KHR = PFN_vkGetDisplayPlaneCapabilities2KHR( - vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneCapabilities2KHR" ) ); - - //=== VK_KHR_get_physical_device_properties2 === - vkGetPhysicalDeviceFeatures2KHR = - PFN_vkGetPhysicalDeviceFeatures2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFeatures2KHR" ) ); - if ( !vkGetPhysicalDeviceFeatures2 ) - vkGetPhysicalDeviceFeatures2 = vkGetPhysicalDeviceFeatures2KHR; - vkGetPhysicalDeviceProperties2KHR = PFN_vkGetPhysicalDeviceProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceProperties2 ) - vkGetPhysicalDeviceProperties2 = vkGetPhysicalDeviceProperties2KHR; - vkGetPhysicalDeviceFormatProperties2KHR = PFN_vkGetPhysicalDeviceFormatProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceFormatProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceFormatProperties2 ) - vkGetPhysicalDeviceFormatProperties2 = vkGetPhysicalDeviceFormatProperties2KHR; - vkGetPhysicalDeviceImageFormatProperties2KHR = PFN_vkGetPhysicalDeviceImageFormatProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceImageFormatProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceImageFormatProperties2 ) - vkGetPhysicalDeviceImageFormatProperties2 = vkGetPhysicalDeviceImageFormatProperties2KHR; - vkGetPhysicalDeviceQueueFamilyProperties2KHR = PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceQueueFamilyProperties2 ) - vkGetPhysicalDeviceQueueFamilyProperties2 = vkGetPhysicalDeviceQueueFamilyProperties2KHR; - vkGetPhysicalDeviceMemoryProperties2KHR = PFN_vkGetPhysicalDeviceMemoryProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceMemoryProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceMemoryProperties2 ) - vkGetPhysicalDeviceMemoryProperties2 = vkGetPhysicalDeviceMemoryProperties2KHR; - vkGetPhysicalDeviceSparseImageFormatProperties2KHR = PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSparseImageFormatProperties2KHR" ) ); - if ( !vkGetPhysicalDeviceSparseImageFormatProperties2 ) - vkGetPhysicalDeviceSparseImageFormatProperties2 = vkGetPhysicalDeviceSparseImageFormatProperties2KHR; - - //=== VK_KHR_get_surface_capabilities2 === - vkGetPhysicalDeviceSurfaceCapabilities2KHR = PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceCapabilities2KHR" ) ); - vkGetPhysicalDeviceSurfaceFormats2KHR = PFN_vkGetPhysicalDeviceSurfaceFormats2KHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceFormats2KHR" ) ); - - //=== VK_KHR_performance_query === - vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR = - PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - vkGetInstanceProcAddr( instance, "vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR" ) ); - vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR = - PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR" ) ); - - //=== VK_KHR_surface === - vkDestroySurfaceKHR = PFN_vkDestroySurfaceKHR( vkGetInstanceProcAddr( instance, "vkDestroySurfaceKHR" ) ); - vkGetPhysicalDeviceSurfaceSupportKHR = PFN_vkGetPhysicalDeviceSurfaceSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceSupportKHR" ) ); - vkGetPhysicalDeviceSurfaceCapabilitiesKHR = PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" ) ); - vkGetPhysicalDeviceSurfaceFormatsKHR = PFN_vkGetPhysicalDeviceSurfaceFormatsKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfaceFormatsKHR" ) ); - vkGetPhysicalDeviceSurfacePresentModesKHR = PFN_vkGetPhysicalDeviceSurfacePresentModesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSurfacePresentModesKHR" ) ); - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - vkGetPhysicalDeviceVideoCapabilitiesKHR = PFN_vkGetPhysicalDeviceVideoCapabilitiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceVideoCapabilitiesKHR" ) ); - vkGetPhysicalDeviceVideoFormatPropertiesKHR = PFN_vkGetPhysicalDeviceVideoFormatPropertiesKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceVideoFormatPropertiesKHR" ) ); -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - vkCreateWaylandSurfaceKHR = - PFN_vkCreateWaylandSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateWaylandSurfaceKHR" ) ); - vkGetPhysicalDeviceWaylandPresentationSupportKHR = PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceWaylandPresentationSupportKHR" ) ); -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - vkCreateWin32SurfaceKHR = - PFN_vkCreateWin32SurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateWin32SurfaceKHR" ) ); - vkGetPhysicalDeviceWin32PresentationSupportKHR = PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceWin32PresentationSupportKHR" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - vkCreateXcbSurfaceKHR = PFN_vkCreateXcbSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateXcbSurfaceKHR" ) ); - vkGetPhysicalDeviceXcbPresentationSupportKHR = PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceXcbPresentationSupportKHR" ) ); -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - vkCreateXlibSurfaceKHR = - PFN_vkCreateXlibSurfaceKHR( vkGetInstanceProcAddr( instance, "vkCreateXlibSurfaceKHR" ) ); - vkGetPhysicalDeviceXlibPresentationSupportKHR = PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceXlibPresentationSupportKHR" ) ); -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - vkCreateIOSSurfaceMVK = PFN_vkCreateIOSSurfaceMVK( vkGetInstanceProcAddr( instance, "vkCreateIOSSurfaceMVK" ) ); -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - vkCreateMacOSSurfaceMVK = - PFN_vkCreateMacOSSurfaceMVK( vkGetInstanceProcAddr( instance, "vkCreateMacOSSurfaceMVK" ) ); -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - -# if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - vkCreateViSurfaceNN = PFN_vkCreateViSurfaceNN( vkGetInstanceProcAddr( instance, "vkCreateViSurfaceNN" ) ); -# endif /*VK_USE_PLATFORM_VI_NN*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - vkAcquireWinrtDisplayNV = - PFN_vkAcquireWinrtDisplayNV( vkGetInstanceProcAddr( instance, "vkAcquireWinrtDisplayNV" ) ); - vkGetWinrtDisplayNV = PFN_vkGetWinrtDisplayNV( vkGetInstanceProcAddr( instance, "vkGetWinrtDisplayNV" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_NV_cooperative_matrix === - vkGetPhysicalDeviceCooperativeMatrixPropertiesNV = PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCooperativeMatrixPropertiesNV" ) ); - - //=== VK_NV_coverage_reduction_mode === - vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV = - PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV" ) ); - - //=== VK_NV_external_memory_capabilities === - vkGetPhysicalDeviceExternalImageFormatPropertiesNV = PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceExternalImageFormatPropertiesNV" ) ); - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - vkCreateScreenSurfaceQNX = - PFN_vkCreateScreenSurfaceQNX( vkGetInstanceProcAddr( instance, "vkCreateScreenSurfaceQNX" ) ); - vkGetPhysicalDeviceScreenPresentationSupportQNX = PFN_vkGetPhysicalDeviceScreenPresentationSupportQNX( - vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceScreenPresentationSupportQNX" ) ); -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - vkGetDeviceProcAddr = PFN_vkGetDeviceProcAddr( vkGetInstanceProcAddr( instance, "vkGetDeviceProcAddr" ) ); - } - - public: - //=== VK_VERSION_1_0 === - PFN_vkDestroyInstance vkDestroyInstance = 0; - PFN_vkEnumeratePhysicalDevices vkEnumeratePhysicalDevices = 0; - PFN_vkGetPhysicalDeviceFeatures vkGetPhysicalDeviceFeatures = 0; - PFN_vkGetPhysicalDeviceFormatProperties vkGetPhysicalDeviceFormatProperties = 0; - PFN_vkGetPhysicalDeviceImageFormatProperties vkGetPhysicalDeviceImageFormatProperties = 0; - PFN_vkGetPhysicalDeviceProperties vkGetPhysicalDeviceProperties = 0; - PFN_vkGetPhysicalDeviceQueueFamilyProperties vkGetPhysicalDeviceQueueFamilyProperties = 0; - PFN_vkGetPhysicalDeviceMemoryProperties vkGetPhysicalDeviceMemoryProperties = 0; - PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr = 0; - PFN_vkCreateDevice vkCreateDevice = 0; - PFN_vkEnumerateDeviceExtensionProperties vkEnumerateDeviceExtensionProperties = 0; - PFN_vkEnumerateDeviceLayerProperties vkEnumerateDeviceLayerProperties = 0; - PFN_vkGetPhysicalDeviceSparseImageFormatProperties vkGetPhysicalDeviceSparseImageFormatProperties = 0; - - //=== VK_VERSION_1_1 === - PFN_vkEnumeratePhysicalDeviceGroups vkEnumeratePhysicalDeviceGroups = 0; - PFN_vkGetPhysicalDeviceFeatures2 vkGetPhysicalDeviceFeatures2 = 0; - PFN_vkGetPhysicalDeviceProperties2 vkGetPhysicalDeviceProperties2 = 0; - PFN_vkGetPhysicalDeviceFormatProperties2 vkGetPhysicalDeviceFormatProperties2 = 0; - PFN_vkGetPhysicalDeviceImageFormatProperties2 vkGetPhysicalDeviceImageFormatProperties2 = 0; - PFN_vkGetPhysicalDeviceQueueFamilyProperties2 vkGetPhysicalDeviceQueueFamilyProperties2 = 0; - PFN_vkGetPhysicalDeviceMemoryProperties2 vkGetPhysicalDeviceMemoryProperties2 = 0; - PFN_vkGetPhysicalDeviceSparseImageFormatProperties2 vkGetPhysicalDeviceSparseImageFormatProperties2 = 0; - PFN_vkGetPhysicalDeviceExternalBufferProperties vkGetPhysicalDeviceExternalBufferProperties = 0; - PFN_vkGetPhysicalDeviceExternalFenceProperties vkGetPhysicalDeviceExternalFenceProperties = 0; - PFN_vkGetPhysicalDeviceExternalSemaphoreProperties vkGetPhysicalDeviceExternalSemaphoreProperties = 0; - - //=== VK_VERSION_1_3 === - PFN_vkGetPhysicalDeviceToolProperties vkGetPhysicalDeviceToolProperties = 0; - - //=== VK_EXT_acquire_drm_display === - PFN_vkAcquireDrmDisplayEXT vkAcquireDrmDisplayEXT = 0; - PFN_vkGetDrmDisplayEXT vkGetDrmDisplayEXT = 0; - -# if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - PFN_vkAcquireXlibDisplayEXT vkAcquireXlibDisplayEXT = 0; - PFN_vkGetRandROutputDisplayEXT vkGetRandROutputDisplayEXT = 0; -# else - PFN_dummy vkAcquireXlibDisplayEXT_placeholder = 0; - PFN_dummy vkGetRandROutputDisplayEXT_placeholder = 0; -# endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_calibrated_timestamps === - PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = 0; - - //=== VK_EXT_debug_report === - PFN_vkCreateDebugReportCallbackEXT vkCreateDebugReportCallbackEXT = 0; - PFN_vkDestroyDebugReportCallbackEXT vkDestroyDebugReportCallbackEXT = 0; - PFN_vkDebugReportMessageEXT vkDebugReportMessageEXT = 0; - - //=== VK_EXT_debug_utils === - PFN_vkCreateDebugUtilsMessengerEXT vkCreateDebugUtilsMessengerEXT = 0; - PFN_vkDestroyDebugUtilsMessengerEXT vkDestroyDebugUtilsMessengerEXT = 0; - PFN_vkSubmitDebugUtilsMessageEXT vkSubmitDebugUtilsMessageEXT = 0; - - //=== VK_EXT_direct_mode_display === - PFN_vkReleaseDisplayEXT vkReleaseDisplayEXT = 0; - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - PFN_vkCreateDirectFBSurfaceEXT vkCreateDirectFBSurfaceEXT = 0; - PFN_vkGetPhysicalDeviceDirectFBPresentationSupportEXT vkGetPhysicalDeviceDirectFBPresentationSupportEXT = 0; -# else - PFN_dummy vkCreateDirectFBSurfaceEXT_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceDirectFBPresentationSupportEXT_placeholder = 0; -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_EXT_display_surface_counter === - PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT vkGetPhysicalDeviceSurfaceCapabilities2EXT = 0; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - PFN_vkGetPhysicalDeviceSurfacePresentModes2EXT vkGetPhysicalDeviceSurfacePresentModes2EXT = 0; -# else - PFN_dummy vkGetPhysicalDeviceSurfacePresentModes2EXT_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - PFN_vkCreateHeadlessSurfaceEXT vkCreateHeadlessSurfaceEXT = 0; - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - PFN_vkCreateMetalSurfaceEXT vkCreateMetalSurfaceEXT = 0; -# else - PFN_dummy vkCreateMetalSurfaceEXT_placeholder = 0; -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_EXT_sample_locations === - PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT vkGetPhysicalDeviceMultisamplePropertiesEXT = 0; - - //=== VK_EXT_tooling_info === - PFN_vkGetPhysicalDeviceToolPropertiesEXT vkGetPhysicalDeviceToolPropertiesEXT = 0; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - PFN_vkCreateImagePipeSurfaceFUCHSIA vkCreateImagePipeSurfaceFUCHSIA = 0; -# else - PFN_dummy vkCreateImagePipeSurfaceFUCHSIA_placeholder = 0; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - PFN_vkCreateStreamDescriptorSurfaceGGP vkCreateStreamDescriptorSurfaceGGP = 0; -# else - PFN_dummy vkCreateStreamDescriptorSurfaceGGP_placeholder = 0; -# endif /*VK_USE_PLATFORM_GGP*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - PFN_vkCreateAndroidSurfaceKHR vkCreateAndroidSurfaceKHR = 0; -# else - PFN_dummy vkCreateAndroidSurfaceKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_KHR_device_group === - PFN_vkGetPhysicalDevicePresentRectanglesKHR vkGetPhysicalDevicePresentRectanglesKHR = 0; - - //=== VK_KHR_device_group_creation === - PFN_vkEnumeratePhysicalDeviceGroupsKHR vkEnumeratePhysicalDeviceGroupsKHR = 0; - - //=== VK_KHR_display === - PFN_vkGetPhysicalDeviceDisplayPropertiesKHR vkGetPhysicalDeviceDisplayPropertiesKHR = 0; - PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR vkGetPhysicalDeviceDisplayPlanePropertiesKHR = 0; - PFN_vkGetDisplayPlaneSupportedDisplaysKHR vkGetDisplayPlaneSupportedDisplaysKHR = 0; - PFN_vkGetDisplayModePropertiesKHR vkGetDisplayModePropertiesKHR = 0; - PFN_vkCreateDisplayModeKHR vkCreateDisplayModeKHR = 0; - PFN_vkGetDisplayPlaneCapabilitiesKHR vkGetDisplayPlaneCapabilitiesKHR = 0; - PFN_vkCreateDisplayPlaneSurfaceKHR vkCreateDisplayPlaneSurfaceKHR = 0; - - //=== VK_KHR_external_fence_capabilities === - PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR vkGetPhysicalDeviceExternalFencePropertiesKHR = 0; - - //=== VK_KHR_external_memory_capabilities === - PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR vkGetPhysicalDeviceExternalBufferPropertiesKHR = 0; - - //=== VK_KHR_external_semaphore_capabilities === - PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = 0; - - //=== VK_KHR_fragment_shading_rate === - PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR vkGetPhysicalDeviceFragmentShadingRatesKHR = 0; - - //=== VK_KHR_get_display_properties2 === - PFN_vkGetPhysicalDeviceDisplayProperties2KHR vkGetPhysicalDeviceDisplayProperties2KHR = 0; - PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR vkGetPhysicalDeviceDisplayPlaneProperties2KHR = 0; - PFN_vkGetDisplayModeProperties2KHR vkGetDisplayModeProperties2KHR = 0; - PFN_vkGetDisplayPlaneCapabilities2KHR vkGetDisplayPlaneCapabilities2KHR = 0; - - //=== VK_KHR_get_physical_device_properties2 === - PFN_vkGetPhysicalDeviceFeatures2KHR vkGetPhysicalDeviceFeatures2KHR = 0; - PFN_vkGetPhysicalDeviceProperties2KHR vkGetPhysicalDeviceProperties2KHR = 0; - PFN_vkGetPhysicalDeviceFormatProperties2KHR vkGetPhysicalDeviceFormatProperties2KHR = 0; - PFN_vkGetPhysicalDeviceImageFormatProperties2KHR vkGetPhysicalDeviceImageFormatProperties2KHR = 0; - PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR vkGetPhysicalDeviceQueueFamilyProperties2KHR = 0; - PFN_vkGetPhysicalDeviceMemoryProperties2KHR vkGetPhysicalDeviceMemoryProperties2KHR = 0; - PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR vkGetPhysicalDeviceSparseImageFormatProperties2KHR = 0; - - //=== VK_KHR_get_surface_capabilities2 === - PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR vkGetPhysicalDeviceSurfaceCapabilities2KHR = 0; - PFN_vkGetPhysicalDeviceSurfaceFormats2KHR vkGetPhysicalDeviceSurfaceFormats2KHR = 0; - - //=== VK_KHR_performance_query === - PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR - vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR = 0; - PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR - vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR = 0; - - //=== VK_KHR_surface === - PFN_vkDestroySurfaceKHR vkDestroySurfaceKHR = 0; - PFN_vkGetPhysicalDeviceSurfaceSupportKHR vkGetPhysicalDeviceSurfaceSupportKHR = 0; - PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR vkGetPhysicalDeviceSurfaceCapabilitiesKHR = 0; - PFN_vkGetPhysicalDeviceSurfaceFormatsKHR vkGetPhysicalDeviceSurfaceFormatsKHR = 0; - PFN_vkGetPhysicalDeviceSurfacePresentModesKHR vkGetPhysicalDeviceSurfacePresentModesKHR = 0; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - PFN_vkGetPhysicalDeviceVideoCapabilitiesKHR vkGetPhysicalDeviceVideoCapabilitiesKHR = 0; - PFN_vkGetPhysicalDeviceVideoFormatPropertiesKHR vkGetPhysicalDeviceVideoFormatPropertiesKHR = 0; -# else - PFN_dummy vkGetPhysicalDeviceVideoCapabilitiesKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceVideoFormatPropertiesKHR_placeholder = 0; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - PFN_vkCreateWaylandSurfaceKHR vkCreateWaylandSurfaceKHR = 0; - PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR vkGetPhysicalDeviceWaylandPresentationSupportKHR = 0; -# else - PFN_dummy vkCreateWaylandSurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceWaylandPresentationSupportKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - PFN_vkCreateWin32SurfaceKHR vkCreateWin32SurfaceKHR = 0; - PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR vkGetPhysicalDeviceWin32PresentationSupportKHR = 0; -# else - PFN_dummy vkCreateWin32SurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceWin32PresentationSupportKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - PFN_vkCreateXcbSurfaceKHR vkCreateXcbSurfaceKHR = 0; - PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR vkGetPhysicalDeviceXcbPresentationSupportKHR = 0; -# else - PFN_dummy vkCreateXcbSurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceXcbPresentationSupportKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - PFN_vkCreateXlibSurfaceKHR vkCreateXlibSurfaceKHR = 0; - PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR vkGetPhysicalDeviceXlibPresentationSupportKHR = 0; -# else - PFN_dummy vkCreateXlibSurfaceKHR_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceXlibPresentationSupportKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - PFN_vkCreateIOSSurfaceMVK vkCreateIOSSurfaceMVK = 0; -# else - PFN_dummy vkCreateIOSSurfaceMVK_placeholder = 0; -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - PFN_vkCreateMacOSSurfaceMVK vkCreateMacOSSurfaceMVK = 0; -# else - PFN_dummy vkCreateMacOSSurfaceMVK_placeholder = 0; -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - -# if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - PFN_vkCreateViSurfaceNN vkCreateViSurfaceNN = 0; -# else - PFN_dummy vkCreateViSurfaceNN_placeholder = 0; -# endif /*VK_USE_PLATFORM_VI_NN*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - PFN_vkAcquireWinrtDisplayNV vkAcquireWinrtDisplayNV = 0; - PFN_vkGetWinrtDisplayNV vkGetWinrtDisplayNV = 0; -# else - PFN_dummy vkAcquireWinrtDisplayNV_placeholder = 0; - PFN_dummy vkGetWinrtDisplayNV_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_NV_cooperative_matrix === - PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV vkGetPhysicalDeviceCooperativeMatrixPropertiesNV = 0; - - //=== VK_NV_coverage_reduction_mode === - PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV - vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV = 0; - - //=== VK_NV_external_memory_capabilities === - PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV vkGetPhysicalDeviceExternalImageFormatPropertiesNV = 0; - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - PFN_vkCreateScreenSurfaceQNX vkCreateScreenSurfaceQNX = 0; - PFN_vkGetPhysicalDeviceScreenPresentationSupportQNX vkGetPhysicalDeviceScreenPresentationSupportQNX = 0; -# else - PFN_dummy vkCreateScreenSurfaceQNX_placeholder = 0; - PFN_dummy vkGetPhysicalDeviceScreenPresentationSupportQNX_placeholder = 0; -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - PFN_vkGetDeviceProcAddr vkGetDeviceProcAddr = 0; - }; - - class DeviceDispatcher : public DispatchLoaderBase - { - public: - DeviceDispatcher( PFN_vkGetDeviceProcAddr getProcAddr, VkDevice device ) : vkGetDeviceProcAddr( getProcAddr ) - { - //=== VK_VERSION_1_0 === - vkGetDeviceProcAddr = PFN_vkGetDeviceProcAddr( vkGetDeviceProcAddr( device, "vkGetDeviceProcAddr" ) ); - vkDestroyDevice = PFN_vkDestroyDevice( vkGetDeviceProcAddr( device, "vkDestroyDevice" ) ); - vkGetDeviceQueue = PFN_vkGetDeviceQueue( vkGetDeviceProcAddr( device, "vkGetDeviceQueue" ) ); - vkQueueSubmit = PFN_vkQueueSubmit( vkGetDeviceProcAddr( device, "vkQueueSubmit" ) ); - vkQueueWaitIdle = PFN_vkQueueWaitIdle( vkGetDeviceProcAddr( device, "vkQueueWaitIdle" ) ); - vkDeviceWaitIdle = PFN_vkDeviceWaitIdle( vkGetDeviceProcAddr( device, "vkDeviceWaitIdle" ) ); - vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) ); - vkFreeMemory = PFN_vkFreeMemory( vkGetDeviceProcAddr( device, "vkFreeMemory" ) ); - vkMapMemory = PFN_vkMapMemory( vkGetDeviceProcAddr( device, "vkMapMemory" ) ); - vkUnmapMemory = PFN_vkUnmapMemory( vkGetDeviceProcAddr( device, "vkUnmapMemory" ) ); - vkFlushMappedMemoryRanges = - PFN_vkFlushMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkFlushMappedMemoryRanges" ) ); - vkInvalidateMappedMemoryRanges = - PFN_vkInvalidateMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkInvalidateMappedMemoryRanges" ) ); - vkGetDeviceMemoryCommitment = - PFN_vkGetDeviceMemoryCommitment( vkGetDeviceProcAddr( device, "vkGetDeviceMemoryCommitment" ) ); - vkBindBufferMemory = PFN_vkBindBufferMemory( vkGetDeviceProcAddr( device, "vkBindBufferMemory" ) ); - vkBindImageMemory = PFN_vkBindImageMemory( vkGetDeviceProcAddr( device, "vkBindImageMemory" ) ); - vkGetBufferMemoryRequirements = - PFN_vkGetBufferMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetBufferMemoryRequirements" ) ); - vkGetImageMemoryRequirements = - PFN_vkGetImageMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetImageMemoryRequirements" ) ); - vkGetImageSparseMemoryRequirements = - PFN_vkGetImageSparseMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetImageSparseMemoryRequirements" ) ); - vkQueueBindSparse = PFN_vkQueueBindSparse( vkGetDeviceProcAddr( device, "vkQueueBindSparse" ) ); - vkCreateFence = PFN_vkCreateFence( vkGetDeviceProcAddr( device, "vkCreateFence" ) ); - vkDestroyFence = PFN_vkDestroyFence( vkGetDeviceProcAddr( device, "vkDestroyFence" ) ); - vkResetFences = PFN_vkResetFences( vkGetDeviceProcAddr( device, "vkResetFences" ) ); - vkGetFenceStatus = PFN_vkGetFenceStatus( vkGetDeviceProcAddr( device, "vkGetFenceStatus" ) ); - vkWaitForFences = PFN_vkWaitForFences( vkGetDeviceProcAddr( device, "vkWaitForFences" ) ); - vkCreateSemaphore = PFN_vkCreateSemaphore( vkGetDeviceProcAddr( device, "vkCreateSemaphore" ) ); - vkDestroySemaphore = PFN_vkDestroySemaphore( vkGetDeviceProcAddr( device, "vkDestroySemaphore" ) ); - vkCreateEvent = PFN_vkCreateEvent( vkGetDeviceProcAddr( device, "vkCreateEvent" ) ); - vkDestroyEvent = PFN_vkDestroyEvent( vkGetDeviceProcAddr( device, "vkDestroyEvent" ) ); - vkGetEventStatus = PFN_vkGetEventStatus( vkGetDeviceProcAddr( device, "vkGetEventStatus" ) ); - vkSetEvent = PFN_vkSetEvent( vkGetDeviceProcAddr( device, "vkSetEvent" ) ); - vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); - vkCreateQueryPool = PFN_vkCreateQueryPool( vkGetDeviceProcAddr( device, "vkCreateQueryPool" ) ); - vkDestroyQueryPool = PFN_vkDestroyQueryPool( vkGetDeviceProcAddr( device, "vkDestroyQueryPool" ) ); - vkGetQueryPoolResults = PFN_vkGetQueryPoolResults( vkGetDeviceProcAddr( device, "vkGetQueryPoolResults" ) ); - vkCreateBuffer = PFN_vkCreateBuffer( vkGetDeviceProcAddr( device, "vkCreateBuffer" ) ); - vkDestroyBuffer = PFN_vkDestroyBuffer( vkGetDeviceProcAddr( device, "vkDestroyBuffer" ) ); - vkCreateBufferView = PFN_vkCreateBufferView( vkGetDeviceProcAddr( device, "vkCreateBufferView" ) ); - vkDestroyBufferView = PFN_vkDestroyBufferView( vkGetDeviceProcAddr( device, "vkDestroyBufferView" ) ); - vkCreateImage = PFN_vkCreateImage( vkGetDeviceProcAddr( device, "vkCreateImage" ) ); - vkDestroyImage = PFN_vkDestroyImage( vkGetDeviceProcAddr( device, "vkDestroyImage" ) ); - vkGetImageSubresourceLayout = - PFN_vkGetImageSubresourceLayout( vkGetDeviceProcAddr( device, "vkGetImageSubresourceLayout" ) ); - vkCreateImageView = PFN_vkCreateImageView( vkGetDeviceProcAddr( device, "vkCreateImageView" ) ); - vkDestroyImageView = PFN_vkDestroyImageView( vkGetDeviceProcAddr( device, "vkDestroyImageView" ) ); - vkCreateShaderModule = PFN_vkCreateShaderModule( vkGetDeviceProcAddr( device, "vkCreateShaderModule" ) ); - vkDestroyShaderModule = PFN_vkDestroyShaderModule( vkGetDeviceProcAddr( device, "vkDestroyShaderModule" ) ); - vkCreatePipelineCache = PFN_vkCreatePipelineCache( vkGetDeviceProcAddr( device, "vkCreatePipelineCache" ) ); - vkDestroyPipelineCache = PFN_vkDestroyPipelineCache( vkGetDeviceProcAddr( device, "vkDestroyPipelineCache" ) ); - vkGetPipelineCacheData = PFN_vkGetPipelineCacheData( vkGetDeviceProcAddr( device, "vkGetPipelineCacheData" ) ); - vkMergePipelineCaches = PFN_vkMergePipelineCaches( vkGetDeviceProcAddr( device, "vkMergePipelineCaches" ) ); - vkCreateGraphicsPipelines = - PFN_vkCreateGraphicsPipelines( vkGetDeviceProcAddr( device, "vkCreateGraphicsPipelines" ) ); - vkCreateComputePipelines = - PFN_vkCreateComputePipelines( vkGetDeviceProcAddr( device, "vkCreateComputePipelines" ) ); - vkDestroyPipeline = PFN_vkDestroyPipeline( vkGetDeviceProcAddr( device, "vkDestroyPipeline" ) ); - vkCreatePipelineLayout = PFN_vkCreatePipelineLayout( vkGetDeviceProcAddr( device, "vkCreatePipelineLayout" ) ); - vkDestroyPipelineLayout = - PFN_vkDestroyPipelineLayout( vkGetDeviceProcAddr( device, "vkDestroyPipelineLayout" ) ); - vkCreateSampler = PFN_vkCreateSampler( vkGetDeviceProcAddr( device, "vkCreateSampler" ) ); - vkDestroySampler = PFN_vkDestroySampler( vkGetDeviceProcAddr( device, "vkDestroySampler" ) ); - vkCreateDescriptorSetLayout = - PFN_vkCreateDescriptorSetLayout( vkGetDeviceProcAddr( device, "vkCreateDescriptorSetLayout" ) ); - vkDestroyDescriptorSetLayout = - PFN_vkDestroyDescriptorSetLayout( vkGetDeviceProcAddr( device, "vkDestroyDescriptorSetLayout" ) ); - vkCreateDescriptorPool = PFN_vkCreateDescriptorPool( vkGetDeviceProcAddr( device, "vkCreateDescriptorPool" ) ); - vkDestroyDescriptorPool = - PFN_vkDestroyDescriptorPool( vkGetDeviceProcAddr( device, "vkDestroyDescriptorPool" ) ); - vkResetDescriptorPool = PFN_vkResetDescriptorPool( vkGetDeviceProcAddr( device, "vkResetDescriptorPool" ) ); - vkAllocateDescriptorSets = - PFN_vkAllocateDescriptorSets( vkGetDeviceProcAddr( device, "vkAllocateDescriptorSets" ) ); - vkFreeDescriptorSets = PFN_vkFreeDescriptorSets( vkGetDeviceProcAddr( device, "vkFreeDescriptorSets" ) ); - vkUpdateDescriptorSets = PFN_vkUpdateDescriptorSets( vkGetDeviceProcAddr( device, "vkUpdateDescriptorSets" ) ); - vkCreateFramebuffer = PFN_vkCreateFramebuffer( vkGetDeviceProcAddr( device, "vkCreateFramebuffer" ) ); - vkDestroyFramebuffer = PFN_vkDestroyFramebuffer( vkGetDeviceProcAddr( device, "vkDestroyFramebuffer" ) ); - vkCreateRenderPass = PFN_vkCreateRenderPass( vkGetDeviceProcAddr( device, "vkCreateRenderPass" ) ); - vkDestroyRenderPass = PFN_vkDestroyRenderPass( vkGetDeviceProcAddr( device, "vkDestroyRenderPass" ) ); - vkGetRenderAreaGranularity = - PFN_vkGetRenderAreaGranularity( vkGetDeviceProcAddr( device, "vkGetRenderAreaGranularity" ) ); - vkCreateCommandPool = PFN_vkCreateCommandPool( vkGetDeviceProcAddr( device, "vkCreateCommandPool" ) ); - vkDestroyCommandPool = PFN_vkDestroyCommandPool( vkGetDeviceProcAddr( device, "vkDestroyCommandPool" ) ); - vkResetCommandPool = PFN_vkResetCommandPool( vkGetDeviceProcAddr( device, "vkResetCommandPool" ) ); - vkAllocateCommandBuffers = - PFN_vkAllocateCommandBuffers( vkGetDeviceProcAddr( device, "vkAllocateCommandBuffers" ) ); - vkFreeCommandBuffers = PFN_vkFreeCommandBuffers( vkGetDeviceProcAddr( device, "vkFreeCommandBuffers" ) ); - vkBeginCommandBuffer = PFN_vkBeginCommandBuffer( vkGetDeviceProcAddr( device, "vkBeginCommandBuffer" ) ); - vkEndCommandBuffer = PFN_vkEndCommandBuffer( vkGetDeviceProcAddr( device, "vkEndCommandBuffer" ) ); - vkResetCommandBuffer = PFN_vkResetCommandBuffer( vkGetDeviceProcAddr( device, "vkResetCommandBuffer" ) ); - vkCmdBindPipeline = PFN_vkCmdBindPipeline( vkGetDeviceProcAddr( device, "vkCmdBindPipeline" ) ); - vkCmdSetViewport = PFN_vkCmdSetViewport( vkGetDeviceProcAddr( device, "vkCmdSetViewport" ) ); - vkCmdSetScissor = PFN_vkCmdSetScissor( vkGetDeviceProcAddr( device, "vkCmdSetScissor" ) ); - vkCmdSetLineWidth = PFN_vkCmdSetLineWidth( vkGetDeviceProcAddr( device, "vkCmdSetLineWidth" ) ); - vkCmdSetDepthBias = PFN_vkCmdSetDepthBias( vkGetDeviceProcAddr( device, "vkCmdSetDepthBias" ) ); - vkCmdSetBlendConstants = PFN_vkCmdSetBlendConstants( vkGetDeviceProcAddr( device, "vkCmdSetBlendConstants" ) ); - vkCmdSetDepthBounds = PFN_vkCmdSetDepthBounds( vkGetDeviceProcAddr( device, "vkCmdSetDepthBounds" ) ); - vkCmdSetStencilCompareMask = - PFN_vkCmdSetStencilCompareMask( vkGetDeviceProcAddr( device, "vkCmdSetStencilCompareMask" ) ); - vkCmdSetStencilWriteMask = - PFN_vkCmdSetStencilWriteMask( vkGetDeviceProcAddr( device, "vkCmdSetStencilWriteMask" ) ); - vkCmdSetStencilReference = - PFN_vkCmdSetStencilReference( vkGetDeviceProcAddr( device, "vkCmdSetStencilReference" ) ); - vkCmdBindDescriptorSets = - PFN_vkCmdBindDescriptorSets( vkGetDeviceProcAddr( device, "vkCmdBindDescriptorSets" ) ); - vkCmdBindIndexBuffer = PFN_vkCmdBindIndexBuffer( vkGetDeviceProcAddr( device, "vkCmdBindIndexBuffer" ) ); - vkCmdBindVertexBuffers = PFN_vkCmdBindVertexBuffers( vkGetDeviceProcAddr( device, "vkCmdBindVertexBuffers" ) ); - vkCmdDraw = PFN_vkCmdDraw( vkGetDeviceProcAddr( device, "vkCmdDraw" ) ); - vkCmdDrawIndexed = PFN_vkCmdDrawIndexed( vkGetDeviceProcAddr( device, "vkCmdDrawIndexed" ) ); - vkCmdDrawIndirect = PFN_vkCmdDrawIndirect( vkGetDeviceProcAddr( device, "vkCmdDrawIndirect" ) ); - vkCmdDrawIndexedIndirect = - PFN_vkCmdDrawIndexedIndirect( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirect" ) ); - vkCmdDispatch = PFN_vkCmdDispatch( vkGetDeviceProcAddr( device, "vkCmdDispatch" ) ); - vkCmdDispatchIndirect = PFN_vkCmdDispatchIndirect( vkGetDeviceProcAddr( device, "vkCmdDispatchIndirect" ) ); - vkCmdCopyBuffer = PFN_vkCmdCopyBuffer( vkGetDeviceProcAddr( device, "vkCmdCopyBuffer" ) ); - vkCmdCopyImage = PFN_vkCmdCopyImage( vkGetDeviceProcAddr( device, "vkCmdCopyImage" ) ); - vkCmdBlitImage = PFN_vkCmdBlitImage( vkGetDeviceProcAddr( device, "vkCmdBlitImage" ) ); - vkCmdCopyBufferToImage = PFN_vkCmdCopyBufferToImage( vkGetDeviceProcAddr( device, "vkCmdCopyBufferToImage" ) ); - vkCmdCopyImageToBuffer = PFN_vkCmdCopyImageToBuffer( vkGetDeviceProcAddr( device, "vkCmdCopyImageToBuffer" ) ); - vkCmdUpdateBuffer = PFN_vkCmdUpdateBuffer( vkGetDeviceProcAddr( device, "vkCmdUpdateBuffer" ) ); - vkCmdFillBuffer = PFN_vkCmdFillBuffer( vkGetDeviceProcAddr( device, "vkCmdFillBuffer" ) ); - vkCmdClearColorImage = PFN_vkCmdClearColorImage( vkGetDeviceProcAddr( device, "vkCmdClearColorImage" ) ); - vkCmdClearDepthStencilImage = - PFN_vkCmdClearDepthStencilImage( vkGetDeviceProcAddr( device, "vkCmdClearDepthStencilImage" ) ); - vkCmdClearAttachments = PFN_vkCmdClearAttachments( vkGetDeviceProcAddr( device, "vkCmdClearAttachments" ) ); - vkCmdResolveImage = PFN_vkCmdResolveImage( vkGetDeviceProcAddr( device, "vkCmdResolveImage" ) ); - vkCmdSetEvent = PFN_vkCmdSetEvent( vkGetDeviceProcAddr( device, "vkCmdSetEvent" ) ); - vkCmdResetEvent = PFN_vkCmdResetEvent( vkGetDeviceProcAddr( device, "vkCmdResetEvent" ) ); - vkCmdWaitEvents = PFN_vkCmdWaitEvents( vkGetDeviceProcAddr( device, "vkCmdWaitEvents" ) ); - vkCmdPipelineBarrier = PFN_vkCmdPipelineBarrier( vkGetDeviceProcAddr( device, "vkCmdPipelineBarrier" ) ); - vkCmdBeginQuery = PFN_vkCmdBeginQuery( vkGetDeviceProcAddr( device, "vkCmdBeginQuery" ) ); - vkCmdEndQuery = PFN_vkCmdEndQuery( vkGetDeviceProcAddr( device, "vkCmdEndQuery" ) ); - vkCmdResetQueryPool = PFN_vkCmdResetQueryPool( vkGetDeviceProcAddr( device, "vkCmdResetQueryPool" ) ); - vkCmdWriteTimestamp = PFN_vkCmdWriteTimestamp( vkGetDeviceProcAddr( device, "vkCmdWriteTimestamp" ) ); - vkCmdCopyQueryPoolResults = - PFN_vkCmdCopyQueryPoolResults( vkGetDeviceProcAddr( device, "vkCmdCopyQueryPoolResults" ) ); - vkCmdPushConstants = PFN_vkCmdPushConstants( vkGetDeviceProcAddr( device, "vkCmdPushConstants" ) ); - vkCmdBeginRenderPass = PFN_vkCmdBeginRenderPass( vkGetDeviceProcAddr( device, "vkCmdBeginRenderPass" ) ); - vkCmdNextSubpass = PFN_vkCmdNextSubpass( vkGetDeviceProcAddr( device, "vkCmdNextSubpass" ) ); - vkCmdEndRenderPass = PFN_vkCmdEndRenderPass( vkGetDeviceProcAddr( device, "vkCmdEndRenderPass" ) ); - vkCmdExecuteCommands = PFN_vkCmdExecuteCommands( vkGetDeviceProcAddr( device, "vkCmdExecuteCommands" ) ); - - //=== VK_VERSION_1_1 === - vkBindBufferMemory2 = PFN_vkBindBufferMemory2( vkGetDeviceProcAddr( device, "vkBindBufferMemory2" ) ); - vkBindImageMemory2 = PFN_vkBindImageMemory2( vkGetDeviceProcAddr( device, "vkBindImageMemory2" ) ); - vkGetDeviceGroupPeerMemoryFeatures = - PFN_vkGetDeviceGroupPeerMemoryFeatures( vkGetDeviceProcAddr( device, "vkGetDeviceGroupPeerMemoryFeatures" ) ); - vkCmdSetDeviceMask = PFN_vkCmdSetDeviceMask( vkGetDeviceProcAddr( device, "vkCmdSetDeviceMask" ) ); - vkCmdDispatchBase = PFN_vkCmdDispatchBase( vkGetDeviceProcAddr( device, "vkCmdDispatchBase" ) ); - vkGetImageMemoryRequirements2 = - PFN_vkGetImageMemoryRequirements2( vkGetDeviceProcAddr( device, "vkGetImageMemoryRequirements2" ) ); - vkGetBufferMemoryRequirements2 = - PFN_vkGetBufferMemoryRequirements2( vkGetDeviceProcAddr( device, "vkGetBufferMemoryRequirements2" ) ); - vkGetImageSparseMemoryRequirements2 = PFN_vkGetImageSparseMemoryRequirements2( - vkGetDeviceProcAddr( device, "vkGetImageSparseMemoryRequirements2" ) ); - vkTrimCommandPool = PFN_vkTrimCommandPool( vkGetDeviceProcAddr( device, "vkTrimCommandPool" ) ); - vkGetDeviceQueue2 = PFN_vkGetDeviceQueue2( vkGetDeviceProcAddr( device, "vkGetDeviceQueue2" ) ); - vkCreateSamplerYcbcrConversion = - PFN_vkCreateSamplerYcbcrConversion( vkGetDeviceProcAddr( device, "vkCreateSamplerYcbcrConversion" ) ); - vkDestroySamplerYcbcrConversion = - PFN_vkDestroySamplerYcbcrConversion( vkGetDeviceProcAddr( device, "vkDestroySamplerYcbcrConversion" ) ); - vkCreateDescriptorUpdateTemplate = - PFN_vkCreateDescriptorUpdateTemplate( vkGetDeviceProcAddr( device, "vkCreateDescriptorUpdateTemplate" ) ); - vkDestroyDescriptorUpdateTemplate = - PFN_vkDestroyDescriptorUpdateTemplate( vkGetDeviceProcAddr( device, "vkDestroyDescriptorUpdateTemplate" ) ); - vkUpdateDescriptorSetWithTemplate = - PFN_vkUpdateDescriptorSetWithTemplate( vkGetDeviceProcAddr( device, "vkUpdateDescriptorSetWithTemplate" ) ); - vkGetDescriptorSetLayoutSupport = - PFN_vkGetDescriptorSetLayoutSupport( vkGetDeviceProcAddr( device, "vkGetDescriptorSetLayoutSupport" ) ); - - //=== VK_VERSION_1_2 === - vkCmdDrawIndirectCount = PFN_vkCmdDrawIndirectCount( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectCount" ) ); - vkCmdDrawIndexedIndirectCount = - PFN_vkCmdDrawIndexedIndirectCount( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirectCount" ) ); - vkCreateRenderPass2 = PFN_vkCreateRenderPass2( vkGetDeviceProcAddr( device, "vkCreateRenderPass2" ) ); - vkCmdBeginRenderPass2 = PFN_vkCmdBeginRenderPass2( vkGetDeviceProcAddr( device, "vkCmdBeginRenderPass2" ) ); - vkCmdNextSubpass2 = PFN_vkCmdNextSubpass2( vkGetDeviceProcAddr( device, "vkCmdNextSubpass2" ) ); - vkCmdEndRenderPass2 = PFN_vkCmdEndRenderPass2( vkGetDeviceProcAddr( device, "vkCmdEndRenderPass2" ) ); - vkResetQueryPool = PFN_vkResetQueryPool( vkGetDeviceProcAddr( device, "vkResetQueryPool" ) ); - vkGetSemaphoreCounterValue = - PFN_vkGetSemaphoreCounterValue( vkGetDeviceProcAddr( device, "vkGetSemaphoreCounterValue" ) ); - vkWaitSemaphores = PFN_vkWaitSemaphores( vkGetDeviceProcAddr( device, "vkWaitSemaphores" ) ); - vkSignalSemaphore = PFN_vkSignalSemaphore( vkGetDeviceProcAddr( device, "vkSignalSemaphore" ) ); - vkGetBufferDeviceAddress = - PFN_vkGetBufferDeviceAddress( vkGetDeviceProcAddr( device, "vkGetBufferDeviceAddress" ) ); - vkGetBufferOpaqueCaptureAddress = - PFN_vkGetBufferOpaqueCaptureAddress( vkGetDeviceProcAddr( device, "vkGetBufferOpaqueCaptureAddress" ) ); - vkGetDeviceMemoryOpaqueCaptureAddress = PFN_vkGetDeviceMemoryOpaqueCaptureAddress( - vkGetDeviceProcAddr( device, "vkGetDeviceMemoryOpaqueCaptureAddress" ) ); - - //=== VK_VERSION_1_3 === - vkCreatePrivateDataSlot = - PFN_vkCreatePrivateDataSlot( vkGetDeviceProcAddr( device, "vkCreatePrivateDataSlot" ) ); - vkDestroyPrivateDataSlot = - PFN_vkDestroyPrivateDataSlot( vkGetDeviceProcAddr( device, "vkDestroyPrivateDataSlot" ) ); - vkSetPrivateData = PFN_vkSetPrivateData( vkGetDeviceProcAddr( device, "vkSetPrivateData" ) ); - vkGetPrivateData = PFN_vkGetPrivateData( vkGetDeviceProcAddr( device, "vkGetPrivateData" ) ); - vkCmdSetEvent2 = PFN_vkCmdSetEvent2( vkGetDeviceProcAddr( device, "vkCmdSetEvent2" ) ); - vkCmdResetEvent2 = PFN_vkCmdResetEvent2( vkGetDeviceProcAddr( device, "vkCmdResetEvent2" ) ); - vkCmdWaitEvents2 = PFN_vkCmdWaitEvents2( vkGetDeviceProcAddr( device, "vkCmdWaitEvents2" ) ); - vkCmdPipelineBarrier2 = PFN_vkCmdPipelineBarrier2( vkGetDeviceProcAddr( device, "vkCmdPipelineBarrier2" ) ); - vkCmdWriteTimestamp2 = PFN_vkCmdWriteTimestamp2( vkGetDeviceProcAddr( device, "vkCmdWriteTimestamp2" ) ); - vkQueueSubmit2 = PFN_vkQueueSubmit2( vkGetDeviceProcAddr( device, "vkQueueSubmit2" ) ); - vkCmdCopyBuffer2 = PFN_vkCmdCopyBuffer2( vkGetDeviceProcAddr( device, "vkCmdCopyBuffer2" ) ); - vkCmdCopyImage2 = PFN_vkCmdCopyImage2( vkGetDeviceProcAddr( device, "vkCmdCopyImage2" ) ); - vkCmdCopyBufferToImage2 = - PFN_vkCmdCopyBufferToImage2( vkGetDeviceProcAddr( device, "vkCmdCopyBufferToImage2" ) ); - vkCmdCopyImageToBuffer2 = - PFN_vkCmdCopyImageToBuffer2( vkGetDeviceProcAddr( device, "vkCmdCopyImageToBuffer2" ) ); - vkCmdBlitImage2 = PFN_vkCmdBlitImage2( vkGetDeviceProcAddr( device, "vkCmdBlitImage2" ) ); - vkCmdResolveImage2 = PFN_vkCmdResolveImage2( vkGetDeviceProcAddr( device, "vkCmdResolveImage2" ) ); - vkCmdBeginRendering = PFN_vkCmdBeginRendering( vkGetDeviceProcAddr( device, "vkCmdBeginRendering" ) ); - vkCmdEndRendering = PFN_vkCmdEndRendering( vkGetDeviceProcAddr( device, "vkCmdEndRendering" ) ); - vkCmdSetCullMode = PFN_vkCmdSetCullMode( vkGetDeviceProcAddr( device, "vkCmdSetCullMode" ) ); - vkCmdSetFrontFace = PFN_vkCmdSetFrontFace( vkGetDeviceProcAddr( device, "vkCmdSetFrontFace" ) ); - vkCmdSetPrimitiveTopology = - PFN_vkCmdSetPrimitiveTopology( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveTopology" ) ); - vkCmdSetViewportWithCount = - PFN_vkCmdSetViewportWithCount( vkGetDeviceProcAddr( device, "vkCmdSetViewportWithCount" ) ); - vkCmdSetScissorWithCount = - PFN_vkCmdSetScissorWithCount( vkGetDeviceProcAddr( device, "vkCmdSetScissorWithCount" ) ); - vkCmdBindVertexBuffers2 = - PFN_vkCmdBindVertexBuffers2( vkGetDeviceProcAddr( device, "vkCmdBindVertexBuffers2" ) ); - vkCmdSetDepthTestEnable = - PFN_vkCmdSetDepthTestEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthTestEnable" ) ); - vkCmdSetDepthWriteEnable = - PFN_vkCmdSetDepthWriteEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthWriteEnable" ) ); - vkCmdSetDepthCompareOp = PFN_vkCmdSetDepthCompareOp( vkGetDeviceProcAddr( device, "vkCmdSetDepthCompareOp" ) ); - vkCmdSetDepthBoundsTestEnable = - PFN_vkCmdSetDepthBoundsTestEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthBoundsTestEnable" ) ); - vkCmdSetStencilTestEnable = - PFN_vkCmdSetStencilTestEnable( vkGetDeviceProcAddr( device, "vkCmdSetStencilTestEnable" ) ); - vkCmdSetStencilOp = PFN_vkCmdSetStencilOp( vkGetDeviceProcAddr( device, "vkCmdSetStencilOp" ) ); - vkCmdSetRasterizerDiscardEnable = - PFN_vkCmdSetRasterizerDiscardEnable( vkGetDeviceProcAddr( device, "vkCmdSetRasterizerDiscardEnable" ) ); - vkCmdSetDepthBiasEnable = - PFN_vkCmdSetDepthBiasEnable( vkGetDeviceProcAddr( device, "vkCmdSetDepthBiasEnable" ) ); - vkCmdSetPrimitiveRestartEnable = - PFN_vkCmdSetPrimitiveRestartEnable( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveRestartEnable" ) ); - vkGetDeviceBufferMemoryRequirements = PFN_vkGetDeviceBufferMemoryRequirements( - vkGetDeviceProcAddr( device, "vkGetDeviceBufferMemoryRequirements" ) ); - vkGetDeviceImageMemoryRequirements = - PFN_vkGetDeviceImageMemoryRequirements( vkGetDeviceProcAddr( device, "vkGetDeviceImageMemoryRequirements" ) ); - vkGetDeviceImageSparseMemoryRequirements = PFN_vkGetDeviceImageSparseMemoryRequirements( - vkGetDeviceProcAddr( device, "vkGetDeviceImageSparseMemoryRequirements" ) ); - - //=== VK_AMD_buffer_marker === - vkCmdWriteBufferMarkerAMD = - PFN_vkCmdWriteBufferMarkerAMD( vkGetDeviceProcAddr( device, "vkCmdWriteBufferMarkerAMD" ) ); - - //=== VK_AMD_display_native_hdr === - vkSetLocalDimmingAMD = PFN_vkSetLocalDimmingAMD( vkGetDeviceProcAddr( device, "vkSetLocalDimmingAMD" ) ); - - //=== VK_AMD_draw_indirect_count === - vkCmdDrawIndirectCountAMD = - PFN_vkCmdDrawIndirectCountAMD( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectCountAMD" ) ); - if ( !vkCmdDrawIndirectCount ) - vkCmdDrawIndirectCount = vkCmdDrawIndirectCountAMD; - vkCmdDrawIndexedIndirectCountAMD = - PFN_vkCmdDrawIndexedIndirectCountAMD( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirectCountAMD" ) ); - if ( !vkCmdDrawIndexedIndirectCount ) - vkCmdDrawIndexedIndirectCount = vkCmdDrawIndexedIndirectCountAMD; - - //=== VK_AMD_shader_info === - vkGetShaderInfoAMD = PFN_vkGetShaderInfoAMD( vkGetDeviceProcAddr( device, "vkGetShaderInfoAMD" ) ); - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - vkGetAndroidHardwareBufferPropertiesANDROID = PFN_vkGetAndroidHardwareBufferPropertiesANDROID( - vkGetDeviceProcAddr( device, "vkGetAndroidHardwareBufferPropertiesANDROID" ) ); - vkGetMemoryAndroidHardwareBufferANDROID = PFN_vkGetMemoryAndroidHardwareBufferANDROID( - vkGetDeviceProcAddr( device, "vkGetMemoryAndroidHardwareBufferANDROID" ) ); -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_buffer_device_address === - vkGetBufferDeviceAddressEXT = - PFN_vkGetBufferDeviceAddressEXT( vkGetDeviceProcAddr( device, "vkGetBufferDeviceAddressEXT" ) ); - if ( !vkGetBufferDeviceAddress ) - vkGetBufferDeviceAddress = vkGetBufferDeviceAddressEXT; - - //=== VK_EXT_calibrated_timestamps === - vkGetCalibratedTimestampsEXT = - PFN_vkGetCalibratedTimestampsEXT( vkGetDeviceProcAddr( device, "vkGetCalibratedTimestampsEXT" ) ); - - //=== VK_EXT_color_write_enable === - vkCmdSetColorWriteEnableEXT = - PFN_vkCmdSetColorWriteEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetColorWriteEnableEXT" ) ); - - //=== VK_EXT_conditional_rendering === - vkCmdBeginConditionalRenderingEXT = - PFN_vkCmdBeginConditionalRenderingEXT( vkGetDeviceProcAddr( device, "vkCmdBeginConditionalRenderingEXT" ) ); - vkCmdEndConditionalRenderingEXT = - PFN_vkCmdEndConditionalRenderingEXT( vkGetDeviceProcAddr( device, "vkCmdEndConditionalRenderingEXT" ) ); - - //=== VK_EXT_debug_marker === - vkDebugMarkerSetObjectTagEXT = - PFN_vkDebugMarkerSetObjectTagEXT( vkGetDeviceProcAddr( device, "vkDebugMarkerSetObjectTagEXT" ) ); - vkDebugMarkerSetObjectNameEXT = - PFN_vkDebugMarkerSetObjectNameEXT( vkGetDeviceProcAddr( device, "vkDebugMarkerSetObjectNameEXT" ) ); - vkCmdDebugMarkerBeginEXT = - PFN_vkCmdDebugMarkerBeginEXT( vkGetDeviceProcAddr( device, "vkCmdDebugMarkerBeginEXT" ) ); - vkCmdDebugMarkerEndEXT = PFN_vkCmdDebugMarkerEndEXT( vkGetDeviceProcAddr( device, "vkCmdDebugMarkerEndEXT" ) ); - vkCmdDebugMarkerInsertEXT = - PFN_vkCmdDebugMarkerInsertEXT( vkGetDeviceProcAddr( device, "vkCmdDebugMarkerInsertEXT" ) ); - - //=== VK_EXT_debug_utils === - vkSetDebugUtilsObjectNameEXT = - PFN_vkSetDebugUtilsObjectNameEXT( vkGetDeviceProcAddr( device, "vkSetDebugUtilsObjectNameEXT" ) ); - vkSetDebugUtilsObjectTagEXT = - PFN_vkSetDebugUtilsObjectTagEXT( vkGetDeviceProcAddr( device, "vkSetDebugUtilsObjectTagEXT" ) ); - vkQueueBeginDebugUtilsLabelEXT = - PFN_vkQueueBeginDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkQueueBeginDebugUtilsLabelEXT" ) ); - vkQueueEndDebugUtilsLabelEXT = - PFN_vkQueueEndDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkQueueEndDebugUtilsLabelEXT" ) ); - vkQueueInsertDebugUtilsLabelEXT = - PFN_vkQueueInsertDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkQueueInsertDebugUtilsLabelEXT" ) ); - vkCmdBeginDebugUtilsLabelEXT = - PFN_vkCmdBeginDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkCmdBeginDebugUtilsLabelEXT" ) ); - vkCmdEndDebugUtilsLabelEXT = - PFN_vkCmdEndDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkCmdEndDebugUtilsLabelEXT" ) ); - vkCmdInsertDebugUtilsLabelEXT = - PFN_vkCmdInsertDebugUtilsLabelEXT( vkGetDeviceProcAddr( device, "vkCmdInsertDebugUtilsLabelEXT" ) ); - - //=== VK_EXT_discard_rectangles === - vkCmdSetDiscardRectangleEXT = - PFN_vkCmdSetDiscardRectangleEXT( vkGetDeviceProcAddr( device, "vkCmdSetDiscardRectangleEXT" ) ); - - //=== VK_EXT_display_control === - vkDisplayPowerControlEXT = - PFN_vkDisplayPowerControlEXT( vkGetDeviceProcAddr( device, "vkDisplayPowerControlEXT" ) ); - vkRegisterDeviceEventEXT = - PFN_vkRegisterDeviceEventEXT( vkGetDeviceProcAddr( device, "vkRegisterDeviceEventEXT" ) ); - vkRegisterDisplayEventEXT = - PFN_vkRegisterDisplayEventEXT( vkGetDeviceProcAddr( device, "vkRegisterDisplayEventEXT" ) ); - vkGetSwapchainCounterEXT = - PFN_vkGetSwapchainCounterEXT( vkGetDeviceProcAddr( device, "vkGetSwapchainCounterEXT" ) ); - - //=== VK_EXT_extended_dynamic_state === - vkCmdSetCullModeEXT = PFN_vkCmdSetCullModeEXT( vkGetDeviceProcAddr( device, "vkCmdSetCullModeEXT" ) ); - if ( !vkCmdSetCullMode ) - vkCmdSetCullMode = vkCmdSetCullModeEXT; - vkCmdSetFrontFaceEXT = PFN_vkCmdSetFrontFaceEXT( vkGetDeviceProcAddr( device, "vkCmdSetFrontFaceEXT" ) ); - if ( !vkCmdSetFrontFace ) - vkCmdSetFrontFace = vkCmdSetFrontFaceEXT; - vkCmdSetPrimitiveTopologyEXT = - PFN_vkCmdSetPrimitiveTopologyEXT( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveTopologyEXT" ) ); - if ( !vkCmdSetPrimitiveTopology ) - vkCmdSetPrimitiveTopology = vkCmdSetPrimitiveTopologyEXT; - vkCmdSetViewportWithCountEXT = - PFN_vkCmdSetViewportWithCountEXT( vkGetDeviceProcAddr( device, "vkCmdSetViewportWithCountEXT" ) ); - if ( !vkCmdSetViewportWithCount ) - vkCmdSetViewportWithCount = vkCmdSetViewportWithCountEXT; - vkCmdSetScissorWithCountEXT = - PFN_vkCmdSetScissorWithCountEXT( vkGetDeviceProcAddr( device, "vkCmdSetScissorWithCountEXT" ) ); - if ( !vkCmdSetScissorWithCount ) - vkCmdSetScissorWithCount = vkCmdSetScissorWithCountEXT; - vkCmdBindVertexBuffers2EXT = - PFN_vkCmdBindVertexBuffers2EXT( vkGetDeviceProcAddr( device, "vkCmdBindVertexBuffers2EXT" ) ); - if ( !vkCmdBindVertexBuffers2 ) - vkCmdBindVertexBuffers2 = vkCmdBindVertexBuffers2EXT; - vkCmdSetDepthTestEnableEXT = - PFN_vkCmdSetDepthTestEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthTestEnableEXT" ) ); - if ( !vkCmdSetDepthTestEnable ) - vkCmdSetDepthTestEnable = vkCmdSetDepthTestEnableEXT; - vkCmdSetDepthWriteEnableEXT = - PFN_vkCmdSetDepthWriteEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthWriteEnableEXT" ) ); - if ( !vkCmdSetDepthWriteEnable ) - vkCmdSetDepthWriteEnable = vkCmdSetDepthWriteEnableEXT; - vkCmdSetDepthCompareOpEXT = - PFN_vkCmdSetDepthCompareOpEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthCompareOpEXT" ) ); - if ( !vkCmdSetDepthCompareOp ) - vkCmdSetDepthCompareOp = vkCmdSetDepthCompareOpEXT; - vkCmdSetDepthBoundsTestEnableEXT = - PFN_vkCmdSetDepthBoundsTestEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthBoundsTestEnableEXT" ) ); - if ( !vkCmdSetDepthBoundsTestEnable ) - vkCmdSetDepthBoundsTestEnable = vkCmdSetDepthBoundsTestEnableEXT; - vkCmdSetStencilTestEnableEXT = - PFN_vkCmdSetStencilTestEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetStencilTestEnableEXT" ) ); - if ( !vkCmdSetStencilTestEnable ) - vkCmdSetStencilTestEnable = vkCmdSetStencilTestEnableEXT; - vkCmdSetStencilOpEXT = PFN_vkCmdSetStencilOpEXT( vkGetDeviceProcAddr( device, "vkCmdSetStencilOpEXT" ) ); - if ( !vkCmdSetStencilOp ) - vkCmdSetStencilOp = vkCmdSetStencilOpEXT; - - //=== VK_EXT_extended_dynamic_state2 === - vkCmdSetPatchControlPointsEXT = - PFN_vkCmdSetPatchControlPointsEXT( vkGetDeviceProcAddr( device, "vkCmdSetPatchControlPointsEXT" ) ); - vkCmdSetRasterizerDiscardEnableEXT = - PFN_vkCmdSetRasterizerDiscardEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetRasterizerDiscardEnableEXT" ) ); - if ( !vkCmdSetRasterizerDiscardEnable ) - vkCmdSetRasterizerDiscardEnable = vkCmdSetRasterizerDiscardEnableEXT; - vkCmdSetDepthBiasEnableEXT = - PFN_vkCmdSetDepthBiasEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetDepthBiasEnableEXT" ) ); - if ( !vkCmdSetDepthBiasEnable ) - vkCmdSetDepthBiasEnable = vkCmdSetDepthBiasEnableEXT; - vkCmdSetLogicOpEXT = PFN_vkCmdSetLogicOpEXT( vkGetDeviceProcAddr( device, "vkCmdSetLogicOpEXT" ) ); - vkCmdSetPrimitiveRestartEnableEXT = - PFN_vkCmdSetPrimitiveRestartEnableEXT( vkGetDeviceProcAddr( device, "vkCmdSetPrimitiveRestartEnableEXT" ) ); - if ( !vkCmdSetPrimitiveRestartEnable ) - vkCmdSetPrimitiveRestartEnable = vkCmdSetPrimitiveRestartEnableEXT; - - //=== VK_EXT_external_memory_host === - vkGetMemoryHostPointerPropertiesEXT = PFN_vkGetMemoryHostPointerPropertiesEXT( - vkGetDeviceProcAddr( device, "vkGetMemoryHostPointerPropertiesEXT" ) ); - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - vkAcquireFullScreenExclusiveModeEXT = PFN_vkAcquireFullScreenExclusiveModeEXT( - vkGetDeviceProcAddr( device, "vkAcquireFullScreenExclusiveModeEXT" ) ); - vkReleaseFullScreenExclusiveModeEXT = PFN_vkReleaseFullScreenExclusiveModeEXT( - vkGetDeviceProcAddr( device, "vkReleaseFullScreenExclusiveModeEXT" ) ); - vkGetDeviceGroupSurfacePresentModes2EXT = PFN_vkGetDeviceGroupSurfacePresentModes2EXT( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupSurfacePresentModes2EXT" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_hdr_metadata === - vkSetHdrMetadataEXT = PFN_vkSetHdrMetadataEXT( vkGetDeviceProcAddr( device, "vkSetHdrMetadataEXT" ) ); - - //=== VK_EXT_host_query_reset === - vkResetQueryPoolEXT = PFN_vkResetQueryPoolEXT( vkGetDeviceProcAddr( device, "vkResetQueryPoolEXT" ) ); - if ( !vkResetQueryPool ) - vkResetQueryPool = vkResetQueryPoolEXT; - - //=== VK_EXT_image_drm_format_modifier === - vkGetImageDrmFormatModifierPropertiesEXT = PFN_vkGetImageDrmFormatModifierPropertiesEXT( - vkGetDeviceProcAddr( device, "vkGetImageDrmFormatModifierPropertiesEXT" ) ); - - //=== VK_EXT_line_rasterization === - vkCmdSetLineStippleEXT = PFN_vkCmdSetLineStippleEXT( vkGetDeviceProcAddr( device, "vkCmdSetLineStippleEXT" ) ); - - //=== VK_EXT_multi_draw === - vkCmdDrawMultiEXT = PFN_vkCmdDrawMultiEXT( vkGetDeviceProcAddr( device, "vkCmdDrawMultiEXT" ) ); - vkCmdDrawMultiIndexedEXT = - PFN_vkCmdDrawMultiIndexedEXT( vkGetDeviceProcAddr( device, "vkCmdDrawMultiIndexedEXT" ) ); - - //=== VK_EXT_pageable_device_local_memory === - vkSetDeviceMemoryPriorityEXT = - PFN_vkSetDeviceMemoryPriorityEXT( vkGetDeviceProcAddr( device, "vkSetDeviceMemoryPriorityEXT" ) ); - - //=== VK_EXT_private_data === - vkCreatePrivateDataSlotEXT = - PFN_vkCreatePrivateDataSlotEXT( vkGetDeviceProcAddr( device, "vkCreatePrivateDataSlotEXT" ) ); - if ( !vkCreatePrivateDataSlot ) - vkCreatePrivateDataSlot = vkCreatePrivateDataSlotEXT; - vkDestroyPrivateDataSlotEXT = - PFN_vkDestroyPrivateDataSlotEXT( vkGetDeviceProcAddr( device, "vkDestroyPrivateDataSlotEXT" ) ); - if ( !vkDestroyPrivateDataSlot ) - vkDestroyPrivateDataSlot = vkDestroyPrivateDataSlotEXT; - vkSetPrivateDataEXT = PFN_vkSetPrivateDataEXT( vkGetDeviceProcAddr( device, "vkSetPrivateDataEXT" ) ); - if ( !vkSetPrivateData ) - vkSetPrivateData = vkSetPrivateDataEXT; - vkGetPrivateDataEXT = PFN_vkGetPrivateDataEXT( vkGetDeviceProcAddr( device, "vkGetPrivateDataEXT" ) ); - if ( !vkGetPrivateData ) - vkGetPrivateData = vkGetPrivateDataEXT; - - //=== VK_EXT_sample_locations === - vkCmdSetSampleLocationsEXT = - PFN_vkCmdSetSampleLocationsEXT( vkGetDeviceProcAddr( device, "vkCmdSetSampleLocationsEXT" ) ); - - //=== VK_EXT_transform_feedback === - vkCmdBindTransformFeedbackBuffersEXT = PFN_vkCmdBindTransformFeedbackBuffersEXT( - vkGetDeviceProcAddr( device, "vkCmdBindTransformFeedbackBuffersEXT" ) ); - vkCmdBeginTransformFeedbackEXT = - PFN_vkCmdBeginTransformFeedbackEXT( vkGetDeviceProcAddr( device, "vkCmdBeginTransformFeedbackEXT" ) ); - vkCmdEndTransformFeedbackEXT = - PFN_vkCmdEndTransformFeedbackEXT( vkGetDeviceProcAddr( device, "vkCmdEndTransformFeedbackEXT" ) ); - vkCmdBeginQueryIndexedEXT = - PFN_vkCmdBeginQueryIndexedEXT( vkGetDeviceProcAddr( device, "vkCmdBeginQueryIndexedEXT" ) ); - vkCmdEndQueryIndexedEXT = - PFN_vkCmdEndQueryIndexedEXT( vkGetDeviceProcAddr( device, "vkCmdEndQueryIndexedEXT" ) ); - vkCmdDrawIndirectByteCountEXT = - PFN_vkCmdDrawIndirectByteCountEXT( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectByteCountEXT" ) ); - - //=== VK_EXT_validation_cache === - vkCreateValidationCacheEXT = - PFN_vkCreateValidationCacheEXT( vkGetDeviceProcAddr( device, "vkCreateValidationCacheEXT" ) ); - vkDestroyValidationCacheEXT = - PFN_vkDestroyValidationCacheEXT( vkGetDeviceProcAddr( device, "vkDestroyValidationCacheEXT" ) ); - vkMergeValidationCachesEXT = - PFN_vkMergeValidationCachesEXT( vkGetDeviceProcAddr( device, "vkMergeValidationCachesEXT" ) ); - vkGetValidationCacheDataEXT = - PFN_vkGetValidationCacheDataEXT( vkGetDeviceProcAddr( device, "vkGetValidationCacheDataEXT" ) ); - - //=== VK_EXT_vertex_input_dynamic_state === - vkCmdSetVertexInputEXT = PFN_vkCmdSetVertexInputEXT( vkGetDeviceProcAddr( device, "vkCmdSetVertexInputEXT" ) ); - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - vkCreateBufferCollectionFUCHSIA = - PFN_vkCreateBufferCollectionFUCHSIA( vkGetDeviceProcAddr( device, "vkCreateBufferCollectionFUCHSIA" ) ); - vkSetBufferCollectionImageConstraintsFUCHSIA = PFN_vkSetBufferCollectionImageConstraintsFUCHSIA( - vkGetDeviceProcAddr( device, "vkSetBufferCollectionImageConstraintsFUCHSIA" ) ); - vkSetBufferCollectionBufferConstraintsFUCHSIA = PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA( - vkGetDeviceProcAddr( device, "vkSetBufferCollectionBufferConstraintsFUCHSIA" ) ); - vkDestroyBufferCollectionFUCHSIA = - PFN_vkDestroyBufferCollectionFUCHSIA( vkGetDeviceProcAddr( device, "vkDestroyBufferCollectionFUCHSIA" ) ); - vkGetBufferCollectionPropertiesFUCHSIA = PFN_vkGetBufferCollectionPropertiesFUCHSIA( - vkGetDeviceProcAddr( device, "vkGetBufferCollectionPropertiesFUCHSIA" ) ); -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - vkGetMemoryZirconHandleFUCHSIA = - PFN_vkGetMemoryZirconHandleFUCHSIA( vkGetDeviceProcAddr( device, "vkGetMemoryZirconHandleFUCHSIA" ) ); - vkGetMemoryZirconHandlePropertiesFUCHSIA = PFN_vkGetMemoryZirconHandlePropertiesFUCHSIA( - vkGetDeviceProcAddr( device, "vkGetMemoryZirconHandlePropertiesFUCHSIA" ) ); -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - vkImportSemaphoreZirconHandleFUCHSIA = PFN_vkImportSemaphoreZirconHandleFUCHSIA( - vkGetDeviceProcAddr( device, "vkImportSemaphoreZirconHandleFUCHSIA" ) ); - vkGetSemaphoreZirconHandleFUCHSIA = - PFN_vkGetSemaphoreZirconHandleFUCHSIA( vkGetDeviceProcAddr( device, "vkGetSemaphoreZirconHandleFUCHSIA" ) ); -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_GOOGLE_display_timing === - vkGetRefreshCycleDurationGOOGLE = - PFN_vkGetRefreshCycleDurationGOOGLE( vkGetDeviceProcAddr( device, "vkGetRefreshCycleDurationGOOGLE" ) ); - vkGetPastPresentationTimingGOOGLE = - PFN_vkGetPastPresentationTimingGOOGLE( vkGetDeviceProcAddr( device, "vkGetPastPresentationTimingGOOGLE" ) ); - - //=== VK_HUAWEI_invocation_mask === - vkCmdBindInvocationMaskHUAWEI = - PFN_vkCmdBindInvocationMaskHUAWEI( vkGetDeviceProcAddr( device, "vkCmdBindInvocationMaskHUAWEI" ) ); - - //=== VK_HUAWEI_subpass_shading === - vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI = PFN_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - vkGetDeviceProcAddr( device, "vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI" ) ); - vkCmdSubpassShadingHUAWEI = - PFN_vkCmdSubpassShadingHUAWEI( vkGetDeviceProcAddr( device, "vkCmdSubpassShadingHUAWEI" ) ); - - //=== VK_INTEL_performance_query === - vkInitializePerformanceApiINTEL = - PFN_vkInitializePerformanceApiINTEL( vkGetDeviceProcAddr( device, "vkInitializePerformanceApiINTEL" ) ); - vkUninitializePerformanceApiINTEL = - PFN_vkUninitializePerformanceApiINTEL( vkGetDeviceProcAddr( device, "vkUninitializePerformanceApiINTEL" ) ); - vkCmdSetPerformanceMarkerINTEL = - PFN_vkCmdSetPerformanceMarkerINTEL( vkGetDeviceProcAddr( device, "vkCmdSetPerformanceMarkerINTEL" ) ); - vkCmdSetPerformanceStreamMarkerINTEL = PFN_vkCmdSetPerformanceStreamMarkerINTEL( - vkGetDeviceProcAddr( device, "vkCmdSetPerformanceStreamMarkerINTEL" ) ); - vkCmdSetPerformanceOverrideINTEL = - PFN_vkCmdSetPerformanceOverrideINTEL( vkGetDeviceProcAddr( device, "vkCmdSetPerformanceOverrideINTEL" ) ); - vkAcquirePerformanceConfigurationINTEL = PFN_vkAcquirePerformanceConfigurationINTEL( - vkGetDeviceProcAddr( device, "vkAcquirePerformanceConfigurationINTEL" ) ); - vkReleasePerformanceConfigurationINTEL = PFN_vkReleasePerformanceConfigurationINTEL( - vkGetDeviceProcAddr( device, "vkReleasePerformanceConfigurationINTEL" ) ); - vkQueueSetPerformanceConfigurationINTEL = PFN_vkQueueSetPerformanceConfigurationINTEL( - vkGetDeviceProcAddr( device, "vkQueueSetPerformanceConfigurationINTEL" ) ); - vkGetPerformanceParameterINTEL = - PFN_vkGetPerformanceParameterINTEL( vkGetDeviceProcAddr( device, "vkGetPerformanceParameterINTEL" ) ); - - //=== VK_KHR_acceleration_structure === - vkCreateAccelerationStructureKHR = - PFN_vkCreateAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkCreateAccelerationStructureKHR" ) ); - vkDestroyAccelerationStructureKHR = - PFN_vkDestroyAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkDestroyAccelerationStructureKHR" ) ); - vkCmdBuildAccelerationStructuresKHR = PFN_vkCmdBuildAccelerationStructuresKHR( - vkGetDeviceProcAddr( device, "vkCmdBuildAccelerationStructuresKHR" ) ); - vkCmdBuildAccelerationStructuresIndirectKHR = PFN_vkCmdBuildAccelerationStructuresIndirectKHR( - vkGetDeviceProcAddr( device, "vkCmdBuildAccelerationStructuresIndirectKHR" ) ); - vkBuildAccelerationStructuresKHR = - PFN_vkBuildAccelerationStructuresKHR( vkGetDeviceProcAddr( device, "vkBuildAccelerationStructuresKHR" ) ); - vkCopyAccelerationStructureKHR = - PFN_vkCopyAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkCopyAccelerationStructureKHR" ) ); - vkCopyAccelerationStructureToMemoryKHR = PFN_vkCopyAccelerationStructureToMemoryKHR( - vkGetDeviceProcAddr( device, "vkCopyAccelerationStructureToMemoryKHR" ) ); - vkCopyMemoryToAccelerationStructureKHR = PFN_vkCopyMemoryToAccelerationStructureKHR( - vkGetDeviceProcAddr( device, "vkCopyMemoryToAccelerationStructureKHR" ) ); - vkWriteAccelerationStructuresPropertiesKHR = PFN_vkWriteAccelerationStructuresPropertiesKHR( - vkGetDeviceProcAddr( device, "vkWriteAccelerationStructuresPropertiesKHR" ) ); - vkCmdCopyAccelerationStructureKHR = - PFN_vkCmdCopyAccelerationStructureKHR( vkGetDeviceProcAddr( device, "vkCmdCopyAccelerationStructureKHR" ) ); - vkCmdCopyAccelerationStructureToMemoryKHR = PFN_vkCmdCopyAccelerationStructureToMemoryKHR( - vkGetDeviceProcAddr( device, "vkCmdCopyAccelerationStructureToMemoryKHR" ) ); - vkCmdCopyMemoryToAccelerationStructureKHR = PFN_vkCmdCopyMemoryToAccelerationStructureKHR( - vkGetDeviceProcAddr( device, "vkCmdCopyMemoryToAccelerationStructureKHR" ) ); - vkGetAccelerationStructureDeviceAddressKHR = PFN_vkGetAccelerationStructureDeviceAddressKHR( - vkGetDeviceProcAddr( device, "vkGetAccelerationStructureDeviceAddressKHR" ) ); - vkCmdWriteAccelerationStructuresPropertiesKHR = PFN_vkCmdWriteAccelerationStructuresPropertiesKHR( - vkGetDeviceProcAddr( device, "vkCmdWriteAccelerationStructuresPropertiesKHR" ) ); - vkGetDeviceAccelerationStructureCompatibilityKHR = PFN_vkGetDeviceAccelerationStructureCompatibilityKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceAccelerationStructureCompatibilityKHR" ) ); - vkGetAccelerationStructureBuildSizesKHR = PFN_vkGetAccelerationStructureBuildSizesKHR( - vkGetDeviceProcAddr( device, "vkGetAccelerationStructureBuildSizesKHR" ) ); - - //=== VK_KHR_bind_memory2 === - vkBindBufferMemory2KHR = PFN_vkBindBufferMemory2KHR( vkGetDeviceProcAddr( device, "vkBindBufferMemory2KHR" ) ); - if ( !vkBindBufferMemory2 ) - vkBindBufferMemory2 = vkBindBufferMemory2KHR; - vkBindImageMemory2KHR = PFN_vkBindImageMemory2KHR( vkGetDeviceProcAddr( device, "vkBindImageMemory2KHR" ) ); - if ( !vkBindImageMemory2 ) - vkBindImageMemory2 = vkBindImageMemory2KHR; - - //=== VK_KHR_buffer_device_address === - vkGetBufferDeviceAddressKHR = - PFN_vkGetBufferDeviceAddressKHR( vkGetDeviceProcAddr( device, "vkGetBufferDeviceAddressKHR" ) ); - if ( !vkGetBufferDeviceAddress ) - vkGetBufferDeviceAddress = vkGetBufferDeviceAddressKHR; - vkGetBufferOpaqueCaptureAddressKHR = - PFN_vkGetBufferOpaqueCaptureAddressKHR( vkGetDeviceProcAddr( device, "vkGetBufferOpaqueCaptureAddressKHR" ) ); - if ( !vkGetBufferOpaqueCaptureAddress ) - vkGetBufferOpaqueCaptureAddress = vkGetBufferOpaqueCaptureAddressKHR; - vkGetDeviceMemoryOpaqueCaptureAddressKHR = PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceMemoryOpaqueCaptureAddressKHR" ) ); - if ( !vkGetDeviceMemoryOpaqueCaptureAddress ) - vkGetDeviceMemoryOpaqueCaptureAddress = vkGetDeviceMemoryOpaqueCaptureAddressKHR; - - //=== VK_KHR_copy_commands2 === - vkCmdCopyBuffer2KHR = PFN_vkCmdCopyBuffer2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyBuffer2KHR" ) ); - if ( !vkCmdCopyBuffer2 ) - vkCmdCopyBuffer2 = vkCmdCopyBuffer2KHR; - vkCmdCopyImage2KHR = PFN_vkCmdCopyImage2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyImage2KHR" ) ); - if ( !vkCmdCopyImage2 ) - vkCmdCopyImage2 = vkCmdCopyImage2KHR; - vkCmdCopyBufferToImage2KHR = - PFN_vkCmdCopyBufferToImage2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyBufferToImage2KHR" ) ); - if ( !vkCmdCopyBufferToImage2 ) - vkCmdCopyBufferToImage2 = vkCmdCopyBufferToImage2KHR; - vkCmdCopyImageToBuffer2KHR = - PFN_vkCmdCopyImageToBuffer2KHR( vkGetDeviceProcAddr( device, "vkCmdCopyImageToBuffer2KHR" ) ); - if ( !vkCmdCopyImageToBuffer2 ) - vkCmdCopyImageToBuffer2 = vkCmdCopyImageToBuffer2KHR; - vkCmdBlitImage2KHR = PFN_vkCmdBlitImage2KHR( vkGetDeviceProcAddr( device, "vkCmdBlitImage2KHR" ) ); - if ( !vkCmdBlitImage2 ) - vkCmdBlitImage2 = vkCmdBlitImage2KHR; - vkCmdResolveImage2KHR = PFN_vkCmdResolveImage2KHR( vkGetDeviceProcAddr( device, "vkCmdResolveImage2KHR" ) ); - if ( !vkCmdResolveImage2 ) - vkCmdResolveImage2 = vkCmdResolveImage2KHR; - - //=== VK_KHR_create_renderpass2 === - vkCreateRenderPass2KHR = PFN_vkCreateRenderPass2KHR( vkGetDeviceProcAddr( device, "vkCreateRenderPass2KHR" ) ); - if ( !vkCreateRenderPass2 ) - vkCreateRenderPass2 = vkCreateRenderPass2KHR; - vkCmdBeginRenderPass2KHR = - PFN_vkCmdBeginRenderPass2KHR( vkGetDeviceProcAddr( device, "vkCmdBeginRenderPass2KHR" ) ); - if ( !vkCmdBeginRenderPass2 ) - vkCmdBeginRenderPass2 = vkCmdBeginRenderPass2KHR; - vkCmdNextSubpass2KHR = PFN_vkCmdNextSubpass2KHR( vkGetDeviceProcAddr( device, "vkCmdNextSubpass2KHR" ) ); - if ( !vkCmdNextSubpass2 ) - vkCmdNextSubpass2 = vkCmdNextSubpass2KHR; - vkCmdEndRenderPass2KHR = PFN_vkCmdEndRenderPass2KHR( vkGetDeviceProcAddr( device, "vkCmdEndRenderPass2KHR" ) ); - if ( !vkCmdEndRenderPass2 ) - vkCmdEndRenderPass2 = vkCmdEndRenderPass2KHR; - - //=== VK_KHR_deferred_host_operations === - vkCreateDeferredOperationKHR = - PFN_vkCreateDeferredOperationKHR( vkGetDeviceProcAddr( device, "vkCreateDeferredOperationKHR" ) ); - vkDestroyDeferredOperationKHR = - PFN_vkDestroyDeferredOperationKHR( vkGetDeviceProcAddr( device, "vkDestroyDeferredOperationKHR" ) ); - vkGetDeferredOperationMaxConcurrencyKHR = PFN_vkGetDeferredOperationMaxConcurrencyKHR( - vkGetDeviceProcAddr( device, "vkGetDeferredOperationMaxConcurrencyKHR" ) ); - vkGetDeferredOperationResultKHR = - PFN_vkGetDeferredOperationResultKHR( vkGetDeviceProcAddr( device, "vkGetDeferredOperationResultKHR" ) ); - vkDeferredOperationJoinKHR = - PFN_vkDeferredOperationJoinKHR( vkGetDeviceProcAddr( device, "vkDeferredOperationJoinKHR" ) ); - - //=== VK_KHR_descriptor_update_template === - vkCreateDescriptorUpdateTemplateKHR = PFN_vkCreateDescriptorUpdateTemplateKHR( - vkGetDeviceProcAddr( device, "vkCreateDescriptorUpdateTemplateKHR" ) ); - if ( !vkCreateDescriptorUpdateTemplate ) - vkCreateDescriptorUpdateTemplate = vkCreateDescriptorUpdateTemplateKHR; - vkDestroyDescriptorUpdateTemplateKHR = PFN_vkDestroyDescriptorUpdateTemplateKHR( - vkGetDeviceProcAddr( device, "vkDestroyDescriptorUpdateTemplateKHR" ) ); - if ( !vkDestroyDescriptorUpdateTemplate ) - vkDestroyDescriptorUpdateTemplate = vkDestroyDescriptorUpdateTemplateKHR; - vkUpdateDescriptorSetWithTemplateKHR = PFN_vkUpdateDescriptorSetWithTemplateKHR( - vkGetDeviceProcAddr( device, "vkUpdateDescriptorSetWithTemplateKHR" ) ); - if ( !vkUpdateDescriptorSetWithTemplate ) - vkUpdateDescriptorSetWithTemplate = vkUpdateDescriptorSetWithTemplateKHR; - vkCmdPushDescriptorSetWithTemplateKHR = PFN_vkCmdPushDescriptorSetWithTemplateKHR( - vkGetDeviceProcAddr( device, "vkCmdPushDescriptorSetWithTemplateKHR" ) ); - - //=== VK_KHR_device_group === - vkGetDeviceGroupPeerMemoryFeaturesKHR = PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupPeerMemoryFeaturesKHR" ) ); - if ( !vkGetDeviceGroupPeerMemoryFeatures ) - vkGetDeviceGroupPeerMemoryFeatures = vkGetDeviceGroupPeerMemoryFeaturesKHR; - vkCmdSetDeviceMaskKHR = PFN_vkCmdSetDeviceMaskKHR( vkGetDeviceProcAddr( device, "vkCmdSetDeviceMaskKHR" ) ); - if ( !vkCmdSetDeviceMask ) - vkCmdSetDeviceMask = vkCmdSetDeviceMaskKHR; - vkCmdDispatchBaseKHR = PFN_vkCmdDispatchBaseKHR( vkGetDeviceProcAddr( device, "vkCmdDispatchBaseKHR" ) ); - if ( !vkCmdDispatchBase ) - vkCmdDispatchBase = vkCmdDispatchBaseKHR; - vkGetDeviceGroupPresentCapabilitiesKHR = PFN_vkGetDeviceGroupPresentCapabilitiesKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupPresentCapabilitiesKHR" ) ); - vkGetDeviceGroupSurfacePresentModesKHR = PFN_vkGetDeviceGroupSurfacePresentModesKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceGroupSurfacePresentModesKHR" ) ); - vkAcquireNextImage2KHR = PFN_vkAcquireNextImage2KHR( vkGetDeviceProcAddr( device, "vkAcquireNextImage2KHR" ) ); - - //=== VK_KHR_display_swapchain === - vkCreateSharedSwapchainsKHR = - PFN_vkCreateSharedSwapchainsKHR( vkGetDeviceProcAddr( device, "vkCreateSharedSwapchainsKHR" ) ); - - //=== VK_KHR_draw_indirect_count === - vkCmdDrawIndirectCountKHR = - PFN_vkCmdDrawIndirectCountKHR( vkGetDeviceProcAddr( device, "vkCmdDrawIndirectCountKHR" ) ); - if ( !vkCmdDrawIndirectCount ) - vkCmdDrawIndirectCount = vkCmdDrawIndirectCountKHR; - vkCmdDrawIndexedIndirectCountKHR = - PFN_vkCmdDrawIndexedIndirectCountKHR( vkGetDeviceProcAddr( device, "vkCmdDrawIndexedIndirectCountKHR" ) ); - if ( !vkCmdDrawIndexedIndirectCount ) - vkCmdDrawIndexedIndirectCount = vkCmdDrawIndexedIndirectCountKHR; - - //=== VK_KHR_dynamic_rendering === - vkCmdBeginRenderingKHR = PFN_vkCmdBeginRenderingKHR( vkGetDeviceProcAddr( device, "vkCmdBeginRenderingKHR" ) ); - if ( !vkCmdBeginRendering ) - vkCmdBeginRendering = vkCmdBeginRenderingKHR; - vkCmdEndRenderingKHR = PFN_vkCmdEndRenderingKHR( vkGetDeviceProcAddr( device, "vkCmdEndRenderingKHR" ) ); - if ( !vkCmdEndRendering ) - vkCmdEndRendering = vkCmdEndRenderingKHR; - - //=== VK_KHR_external_fence_fd === - vkImportFenceFdKHR = PFN_vkImportFenceFdKHR( vkGetDeviceProcAddr( device, "vkImportFenceFdKHR" ) ); - vkGetFenceFdKHR = PFN_vkGetFenceFdKHR( vkGetDeviceProcAddr( device, "vkGetFenceFdKHR" ) ); - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - vkImportFenceWin32HandleKHR = - PFN_vkImportFenceWin32HandleKHR( vkGetDeviceProcAddr( device, "vkImportFenceWin32HandleKHR" ) ); - vkGetFenceWin32HandleKHR = - PFN_vkGetFenceWin32HandleKHR( vkGetDeviceProcAddr( device, "vkGetFenceWin32HandleKHR" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - vkGetMemoryFdKHR = PFN_vkGetMemoryFdKHR( vkGetDeviceProcAddr( device, "vkGetMemoryFdKHR" ) ); - vkGetMemoryFdPropertiesKHR = - PFN_vkGetMemoryFdPropertiesKHR( vkGetDeviceProcAddr( device, "vkGetMemoryFdPropertiesKHR" ) ); - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - vkGetMemoryWin32HandleKHR = - PFN_vkGetMemoryWin32HandleKHR( vkGetDeviceProcAddr( device, "vkGetMemoryWin32HandleKHR" ) ); - vkGetMemoryWin32HandlePropertiesKHR = PFN_vkGetMemoryWin32HandlePropertiesKHR( - vkGetDeviceProcAddr( device, "vkGetMemoryWin32HandlePropertiesKHR" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - vkImportSemaphoreFdKHR = PFN_vkImportSemaphoreFdKHR( vkGetDeviceProcAddr( device, "vkImportSemaphoreFdKHR" ) ); - vkGetSemaphoreFdKHR = PFN_vkGetSemaphoreFdKHR( vkGetDeviceProcAddr( device, "vkGetSemaphoreFdKHR" ) ); - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - vkImportSemaphoreWin32HandleKHR = - PFN_vkImportSemaphoreWin32HandleKHR( vkGetDeviceProcAddr( device, "vkImportSemaphoreWin32HandleKHR" ) ); - vkGetSemaphoreWin32HandleKHR = - PFN_vkGetSemaphoreWin32HandleKHR( vkGetDeviceProcAddr( device, "vkGetSemaphoreWin32HandleKHR" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_fragment_shading_rate === - vkCmdSetFragmentShadingRateKHR = - PFN_vkCmdSetFragmentShadingRateKHR( vkGetDeviceProcAddr( device, "vkCmdSetFragmentShadingRateKHR" ) ); - - //=== VK_KHR_get_memory_requirements2 === - vkGetImageMemoryRequirements2KHR = - PFN_vkGetImageMemoryRequirements2KHR( vkGetDeviceProcAddr( device, "vkGetImageMemoryRequirements2KHR" ) ); - if ( !vkGetImageMemoryRequirements2 ) - vkGetImageMemoryRequirements2 = vkGetImageMemoryRequirements2KHR; - vkGetBufferMemoryRequirements2KHR = - PFN_vkGetBufferMemoryRequirements2KHR( vkGetDeviceProcAddr( device, "vkGetBufferMemoryRequirements2KHR" ) ); - if ( !vkGetBufferMemoryRequirements2 ) - vkGetBufferMemoryRequirements2 = vkGetBufferMemoryRequirements2KHR; - vkGetImageSparseMemoryRequirements2KHR = PFN_vkGetImageSparseMemoryRequirements2KHR( - vkGetDeviceProcAddr( device, "vkGetImageSparseMemoryRequirements2KHR" ) ); - if ( !vkGetImageSparseMemoryRequirements2 ) - vkGetImageSparseMemoryRequirements2 = vkGetImageSparseMemoryRequirements2KHR; - - //=== VK_KHR_maintenance1 === - vkTrimCommandPoolKHR = PFN_vkTrimCommandPoolKHR( vkGetDeviceProcAddr( device, "vkTrimCommandPoolKHR" ) ); - if ( !vkTrimCommandPool ) - vkTrimCommandPool = vkTrimCommandPoolKHR; - - //=== VK_KHR_maintenance3 === - vkGetDescriptorSetLayoutSupportKHR = - PFN_vkGetDescriptorSetLayoutSupportKHR( vkGetDeviceProcAddr( device, "vkGetDescriptorSetLayoutSupportKHR" ) ); - if ( !vkGetDescriptorSetLayoutSupport ) - vkGetDescriptorSetLayoutSupport = vkGetDescriptorSetLayoutSupportKHR; - - //=== VK_KHR_maintenance4 === - vkGetDeviceBufferMemoryRequirementsKHR = PFN_vkGetDeviceBufferMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceBufferMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceBufferMemoryRequirements ) - vkGetDeviceBufferMemoryRequirements = vkGetDeviceBufferMemoryRequirementsKHR; - vkGetDeviceImageMemoryRequirementsKHR = PFN_vkGetDeviceImageMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceImageMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceImageMemoryRequirements ) - vkGetDeviceImageMemoryRequirements = vkGetDeviceImageMemoryRequirementsKHR; - vkGetDeviceImageSparseMemoryRequirementsKHR = PFN_vkGetDeviceImageSparseMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetDeviceImageSparseMemoryRequirementsKHR" ) ); - if ( !vkGetDeviceImageSparseMemoryRequirements ) - vkGetDeviceImageSparseMemoryRequirements = vkGetDeviceImageSparseMemoryRequirementsKHR; - - //=== VK_KHR_performance_query === - vkAcquireProfilingLockKHR = - PFN_vkAcquireProfilingLockKHR( vkGetDeviceProcAddr( device, "vkAcquireProfilingLockKHR" ) ); - vkReleaseProfilingLockKHR = - PFN_vkReleaseProfilingLockKHR( vkGetDeviceProcAddr( device, "vkReleaseProfilingLockKHR" ) ); - - //=== VK_KHR_pipeline_executable_properties === - vkGetPipelineExecutablePropertiesKHR = PFN_vkGetPipelineExecutablePropertiesKHR( - vkGetDeviceProcAddr( device, "vkGetPipelineExecutablePropertiesKHR" ) ); - vkGetPipelineExecutableStatisticsKHR = PFN_vkGetPipelineExecutableStatisticsKHR( - vkGetDeviceProcAddr( device, "vkGetPipelineExecutableStatisticsKHR" ) ); - vkGetPipelineExecutableInternalRepresentationsKHR = PFN_vkGetPipelineExecutableInternalRepresentationsKHR( - vkGetDeviceProcAddr( device, "vkGetPipelineExecutableInternalRepresentationsKHR" ) ); - - //=== VK_KHR_present_wait === - vkWaitForPresentKHR = PFN_vkWaitForPresentKHR( vkGetDeviceProcAddr( device, "vkWaitForPresentKHR" ) ); - - //=== VK_KHR_push_descriptor === - vkCmdPushDescriptorSetKHR = - PFN_vkCmdPushDescriptorSetKHR( vkGetDeviceProcAddr( device, "vkCmdPushDescriptorSetKHR" ) ); - - //=== VK_KHR_ray_tracing_pipeline === - vkCmdTraceRaysKHR = PFN_vkCmdTraceRaysKHR( vkGetDeviceProcAddr( device, "vkCmdTraceRaysKHR" ) ); - vkCreateRayTracingPipelinesKHR = - PFN_vkCreateRayTracingPipelinesKHR( vkGetDeviceProcAddr( device, "vkCreateRayTracingPipelinesKHR" ) ); - vkGetRayTracingShaderGroupHandlesKHR = PFN_vkGetRayTracingShaderGroupHandlesKHR( - vkGetDeviceProcAddr( device, "vkGetRayTracingShaderGroupHandlesKHR" ) ); - vkGetRayTracingCaptureReplayShaderGroupHandlesKHR = PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( - vkGetDeviceProcAddr( device, "vkGetRayTracingCaptureReplayShaderGroupHandlesKHR" ) ); - vkCmdTraceRaysIndirectKHR = - PFN_vkCmdTraceRaysIndirectKHR( vkGetDeviceProcAddr( device, "vkCmdTraceRaysIndirectKHR" ) ); - vkGetRayTracingShaderGroupStackSizeKHR = PFN_vkGetRayTracingShaderGroupStackSizeKHR( - vkGetDeviceProcAddr( device, "vkGetRayTracingShaderGroupStackSizeKHR" ) ); - vkCmdSetRayTracingPipelineStackSizeKHR = PFN_vkCmdSetRayTracingPipelineStackSizeKHR( - vkGetDeviceProcAddr( device, "vkCmdSetRayTracingPipelineStackSizeKHR" ) ); - - //=== VK_KHR_sampler_ycbcr_conversion === - vkCreateSamplerYcbcrConversionKHR = - PFN_vkCreateSamplerYcbcrConversionKHR( vkGetDeviceProcAddr( device, "vkCreateSamplerYcbcrConversionKHR" ) ); - if ( !vkCreateSamplerYcbcrConversion ) - vkCreateSamplerYcbcrConversion = vkCreateSamplerYcbcrConversionKHR; - vkDestroySamplerYcbcrConversionKHR = - PFN_vkDestroySamplerYcbcrConversionKHR( vkGetDeviceProcAddr( device, "vkDestroySamplerYcbcrConversionKHR" ) ); - if ( !vkDestroySamplerYcbcrConversion ) - vkDestroySamplerYcbcrConversion = vkDestroySamplerYcbcrConversionKHR; - - //=== VK_KHR_shared_presentable_image === - vkGetSwapchainStatusKHR = - PFN_vkGetSwapchainStatusKHR( vkGetDeviceProcAddr( device, "vkGetSwapchainStatusKHR" ) ); - - //=== VK_KHR_swapchain === - vkCreateSwapchainKHR = PFN_vkCreateSwapchainKHR( vkGetDeviceProcAddr( device, "vkCreateSwapchainKHR" ) ); - vkDestroySwapchainKHR = PFN_vkDestroySwapchainKHR( vkGetDeviceProcAddr( device, "vkDestroySwapchainKHR" ) ); - vkGetSwapchainImagesKHR = - PFN_vkGetSwapchainImagesKHR( vkGetDeviceProcAddr( device, "vkGetSwapchainImagesKHR" ) ); - vkAcquireNextImageKHR = PFN_vkAcquireNextImageKHR( vkGetDeviceProcAddr( device, "vkAcquireNextImageKHR" ) ); - vkQueuePresentKHR = PFN_vkQueuePresentKHR( vkGetDeviceProcAddr( device, "vkQueuePresentKHR" ) ); - - //=== VK_KHR_synchronization2 === - vkCmdSetEvent2KHR = PFN_vkCmdSetEvent2KHR( vkGetDeviceProcAddr( device, "vkCmdSetEvent2KHR" ) ); - if ( !vkCmdSetEvent2 ) - vkCmdSetEvent2 = vkCmdSetEvent2KHR; - vkCmdResetEvent2KHR = PFN_vkCmdResetEvent2KHR( vkGetDeviceProcAddr( device, "vkCmdResetEvent2KHR" ) ); - if ( !vkCmdResetEvent2 ) - vkCmdResetEvent2 = vkCmdResetEvent2KHR; - vkCmdWaitEvents2KHR = PFN_vkCmdWaitEvents2KHR( vkGetDeviceProcAddr( device, "vkCmdWaitEvents2KHR" ) ); - if ( !vkCmdWaitEvents2 ) - vkCmdWaitEvents2 = vkCmdWaitEvents2KHR; - vkCmdPipelineBarrier2KHR = - PFN_vkCmdPipelineBarrier2KHR( vkGetDeviceProcAddr( device, "vkCmdPipelineBarrier2KHR" ) ); - if ( !vkCmdPipelineBarrier2 ) - vkCmdPipelineBarrier2 = vkCmdPipelineBarrier2KHR; - vkCmdWriteTimestamp2KHR = - PFN_vkCmdWriteTimestamp2KHR( vkGetDeviceProcAddr( device, "vkCmdWriteTimestamp2KHR" ) ); - if ( !vkCmdWriteTimestamp2 ) - vkCmdWriteTimestamp2 = vkCmdWriteTimestamp2KHR; - vkQueueSubmit2KHR = PFN_vkQueueSubmit2KHR( vkGetDeviceProcAddr( device, "vkQueueSubmit2KHR" ) ); - if ( !vkQueueSubmit2 ) - vkQueueSubmit2 = vkQueueSubmit2KHR; - vkCmdWriteBufferMarker2AMD = - PFN_vkCmdWriteBufferMarker2AMD( vkGetDeviceProcAddr( device, "vkCmdWriteBufferMarker2AMD" ) ); - vkGetQueueCheckpointData2NV = - PFN_vkGetQueueCheckpointData2NV( vkGetDeviceProcAddr( device, "vkGetQueueCheckpointData2NV" ) ); - - //=== VK_KHR_timeline_semaphore === - vkGetSemaphoreCounterValueKHR = - PFN_vkGetSemaphoreCounterValueKHR( vkGetDeviceProcAddr( device, "vkGetSemaphoreCounterValueKHR" ) ); - if ( !vkGetSemaphoreCounterValue ) - vkGetSemaphoreCounterValue = vkGetSemaphoreCounterValueKHR; - vkWaitSemaphoresKHR = PFN_vkWaitSemaphoresKHR( vkGetDeviceProcAddr( device, "vkWaitSemaphoresKHR" ) ); - if ( !vkWaitSemaphores ) - vkWaitSemaphores = vkWaitSemaphoresKHR; - vkSignalSemaphoreKHR = PFN_vkSignalSemaphoreKHR( vkGetDeviceProcAddr( device, "vkSignalSemaphoreKHR" ) ); - if ( !vkSignalSemaphore ) - vkSignalSemaphore = vkSignalSemaphoreKHR; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - vkCmdDecodeVideoKHR = PFN_vkCmdDecodeVideoKHR( vkGetDeviceProcAddr( device, "vkCmdDecodeVideoKHR" ) ); -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - vkCmdEncodeVideoKHR = PFN_vkCmdEncodeVideoKHR( vkGetDeviceProcAddr( device, "vkCmdEncodeVideoKHR" ) ); -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - vkCreateVideoSessionKHR = - PFN_vkCreateVideoSessionKHR( vkGetDeviceProcAddr( device, "vkCreateVideoSessionKHR" ) ); - vkDestroyVideoSessionKHR = - PFN_vkDestroyVideoSessionKHR( vkGetDeviceProcAddr( device, "vkDestroyVideoSessionKHR" ) ); - vkGetVideoSessionMemoryRequirementsKHR = PFN_vkGetVideoSessionMemoryRequirementsKHR( - vkGetDeviceProcAddr( device, "vkGetVideoSessionMemoryRequirementsKHR" ) ); - vkBindVideoSessionMemoryKHR = - PFN_vkBindVideoSessionMemoryKHR( vkGetDeviceProcAddr( device, "vkBindVideoSessionMemoryKHR" ) ); - vkCreateVideoSessionParametersKHR = - PFN_vkCreateVideoSessionParametersKHR( vkGetDeviceProcAddr( device, "vkCreateVideoSessionParametersKHR" ) ); - vkUpdateVideoSessionParametersKHR = - PFN_vkUpdateVideoSessionParametersKHR( vkGetDeviceProcAddr( device, "vkUpdateVideoSessionParametersKHR" ) ); - vkDestroyVideoSessionParametersKHR = - PFN_vkDestroyVideoSessionParametersKHR( vkGetDeviceProcAddr( device, "vkDestroyVideoSessionParametersKHR" ) ); - vkCmdBeginVideoCodingKHR = - PFN_vkCmdBeginVideoCodingKHR( vkGetDeviceProcAddr( device, "vkCmdBeginVideoCodingKHR" ) ); - vkCmdEndVideoCodingKHR = PFN_vkCmdEndVideoCodingKHR( vkGetDeviceProcAddr( device, "vkCmdEndVideoCodingKHR" ) ); - vkCmdControlVideoCodingKHR = - PFN_vkCmdControlVideoCodingKHR( vkGetDeviceProcAddr( device, "vkCmdControlVideoCodingKHR" ) ); -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NVX_binary_import === - vkCreateCuModuleNVX = PFN_vkCreateCuModuleNVX( vkGetDeviceProcAddr( device, "vkCreateCuModuleNVX" ) ); - vkCreateCuFunctionNVX = PFN_vkCreateCuFunctionNVX( vkGetDeviceProcAddr( device, "vkCreateCuFunctionNVX" ) ); - vkDestroyCuModuleNVX = PFN_vkDestroyCuModuleNVX( vkGetDeviceProcAddr( device, "vkDestroyCuModuleNVX" ) ); - vkDestroyCuFunctionNVX = PFN_vkDestroyCuFunctionNVX( vkGetDeviceProcAddr( device, "vkDestroyCuFunctionNVX" ) ); - vkCmdCuLaunchKernelNVX = PFN_vkCmdCuLaunchKernelNVX( vkGetDeviceProcAddr( device, "vkCmdCuLaunchKernelNVX" ) ); - - //=== VK_NVX_image_view_handle === - vkGetImageViewHandleNVX = - PFN_vkGetImageViewHandleNVX( vkGetDeviceProcAddr( device, "vkGetImageViewHandleNVX" ) ); - vkGetImageViewAddressNVX = - PFN_vkGetImageViewAddressNVX( vkGetDeviceProcAddr( device, "vkGetImageViewAddressNVX" ) ); - - //=== VK_NV_clip_space_w_scaling === - vkCmdSetViewportWScalingNV = - PFN_vkCmdSetViewportWScalingNV( vkGetDeviceProcAddr( device, "vkCmdSetViewportWScalingNV" ) ); - - //=== VK_NV_device_diagnostic_checkpoints === - vkCmdSetCheckpointNV = PFN_vkCmdSetCheckpointNV( vkGetDeviceProcAddr( device, "vkCmdSetCheckpointNV" ) ); - vkGetQueueCheckpointDataNV = - PFN_vkGetQueueCheckpointDataNV( vkGetDeviceProcAddr( device, "vkGetQueueCheckpointDataNV" ) ); - - //=== VK_NV_device_generated_commands === - vkGetGeneratedCommandsMemoryRequirementsNV = PFN_vkGetGeneratedCommandsMemoryRequirementsNV( - vkGetDeviceProcAddr( device, "vkGetGeneratedCommandsMemoryRequirementsNV" ) ); - vkCmdPreprocessGeneratedCommandsNV = - PFN_vkCmdPreprocessGeneratedCommandsNV( vkGetDeviceProcAddr( device, "vkCmdPreprocessGeneratedCommandsNV" ) ); - vkCmdExecuteGeneratedCommandsNV = - PFN_vkCmdExecuteGeneratedCommandsNV( vkGetDeviceProcAddr( device, "vkCmdExecuteGeneratedCommandsNV" ) ); - vkCmdBindPipelineShaderGroupNV = - PFN_vkCmdBindPipelineShaderGroupNV( vkGetDeviceProcAddr( device, "vkCmdBindPipelineShaderGroupNV" ) ); - vkCreateIndirectCommandsLayoutNV = - PFN_vkCreateIndirectCommandsLayoutNV( vkGetDeviceProcAddr( device, "vkCreateIndirectCommandsLayoutNV" ) ); - vkDestroyIndirectCommandsLayoutNV = - PFN_vkDestroyIndirectCommandsLayoutNV( vkGetDeviceProcAddr( device, "vkDestroyIndirectCommandsLayoutNV" ) ); - - //=== VK_NV_external_memory_rdma === - vkGetMemoryRemoteAddressNV = - PFN_vkGetMemoryRemoteAddressNV( vkGetDeviceProcAddr( device, "vkGetMemoryRemoteAddressNV" ) ); - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - vkGetMemoryWin32HandleNV = - PFN_vkGetMemoryWin32HandleNV( vkGetDeviceProcAddr( device, "vkGetMemoryWin32HandleNV" ) ); -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_NV_fragment_shading_rate_enums === - vkCmdSetFragmentShadingRateEnumNV = - PFN_vkCmdSetFragmentShadingRateEnumNV( vkGetDeviceProcAddr( device, "vkCmdSetFragmentShadingRateEnumNV" ) ); - - //=== VK_NV_mesh_shader === - vkCmdDrawMeshTasksNV = PFN_vkCmdDrawMeshTasksNV( vkGetDeviceProcAddr( device, "vkCmdDrawMeshTasksNV" ) ); - vkCmdDrawMeshTasksIndirectNV = - PFN_vkCmdDrawMeshTasksIndirectNV( vkGetDeviceProcAddr( device, "vkCmdDrawMeshTasksIndirectNV" ) ); - vkCmdDrawMeshTasksIndirectCountNV = - PFN_vkCmdDrawMeshTasksIndirectCountNV( vkGetDeviceProcAddr( device, "vkCmdDrawMeshTasksIndirectCountNV" ) ); - - //=== VK_NV_ray_tracing === - vkCreateAccelerationStructureNV = - PFN_vkCreateAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkCreateAccelerationStructureNV" ) ); - vkDestroyAccelerationStructureNV = - PFN_vkDestroyAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkDestroyAccelerationStructureNV" ) ); - vkGetAccelerationStructureMemoryRequirementsNV = PFN_vkGetAccelerationStructureMemoryRequirementsNV( - vkGetDeviceProcAddr( device, "vkGetAccelerationStructureMemoryRequirementsNV" ) ); - vkBindAccelerationStructureMemoryNV = PFN_vkBindAccelerationStructureMemoryNV( - vkGetDeviceProcAddr( device, "vkBindAccelerationStructureMemoryNV" ) ); - vkCmdBuildAccelerationStructureNV = - PFN_vkCmdBuildAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkCmdBuildAccelerationStructureNV" ) ); - vkCmdCopyAccelerationStructureNV = - PFN_vkCmdCopyAccelerationStructureNV( vkGetDeviceProcAddr( device, "vkCmdCopyAccelerationStructureNV" ) ); - vkCmdTraceRaysNV = PFN_vkCmdTraceRaysNV( vkGetDeviceProcAddr( device, "vkCmdTraceRaysNV" ) ); - vkCreateRayTracingPipelinesNV = - PFN_vkCreateRayTracingPipelinesNV( vkGetDeviceProcAddr( device, "vkCreateRayTracingPipelinesNV" ) ); - vkGetRayTracingShaderGroupHandlesNV = PFN_vkGetRayTracingShaderGroupHandlesNV( - vkGetDeviceProcAddr( device, "vkGetRayTracingShaderGroupHandlesNV" ) ); - if ( !vkGetRayTracingShaderGroupHandlesKHR ) - vkGetRayTracingShaderGroupHandlesKHR = vkGetRayTracingShaderGroupHandlesNV; - vkGetAccelerationStructureHandleNV = - PFN_vkGetAccelerationStructureHandleNV( vkGetDeviceProcAddr( device, "vkGetAccelerationStructureHandleNV" ) ); - vkCmdWriteAccelerationStructuresPropertiesNV = PFN_vkCmdWriteAccelerationStructuresPropertiesNV( - vkGetDeviceProcAddr( device, "vkCmdWriteAccelerationStructuresPropertiesNV" ) ); - vkCompileDeferredNV = PFN_vkCompileDeferredNV( vkGetDeviceProcAddr( device, "vkCompileDeferredNV" ) ); - - //=== VK_NV_scissor_exclusive === - vkCmdSetExclusiveScissorNV = - PFN_vkCmdSetExclusiveScissorNV( vkGetDeviceProcAddr( device, "vkCmdSetExclusiveScissorNV" ) ); - - //=== VK_NV_shading_rate_image === - vkCmdBindShadingRateImageNV = - PFN_vkCmdBindShadingRateImageNV( vkGetDeviceProcAddr( device, "vkCmdBindShadingRateImageNV" ) ); - vkCmdSetViewportShadingRatePaletteNV = PFN_vkCmdSetViewportShadingRatePaletteNV( - vkGetDeviceProcAddr( device, "vkCmdSetViewportShadingRatePaletteNV" ) ); - vkCmdSetCoarseSampleOrderNV = - PFN_vkCmdSetCoarseSampleOrderNV( vkGetDeviceProcAddr( device, "vkCmdSetCoarseSampleOrderNV" ) ); - } - - public: - //=== VK_VERSION_1_0 === - PFN_vkGetDeviceProcAddr vkGetDeviceProcAddr = 0; - PFN_vkDestroyDevice vkDestroyDevice = 0; - PFN_vkGetDeviceQueue vkGetDeviceQueue = 0; - PFN_vkQueueSubmit vkQueueSubmit = 0; - PFN_vkQueueWaitIdle vkQueueWaitIdle = 0; - PFN_vkDeviceWaitIdle vkDeviceWaitIdle = 0; - PFN_vkAllocateMemory vkAllocateMemory = 0; - PFN_vkFreeMemory vkFreeMemory = 0; - PFN_vkMapMemory vkMapMemory = 0; - PFN_vkUnmapMemory vkUnmapMemory = 0; - PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges = 0; - PFN_vkInvalidateMappedMemoryRanges vkInvalidateMappedMemoryRanges = 0; - PFN_vkGetDeviceMemoryCommitment vkGetDeviceMemoryCommitment = 0; - PFN_vkBindBufferMemory vkBindBufferMemory = 0; - PFN_vkBindImageMemory vkBindImageMemory = 0; - PFN_vkGetBufferMemoryRequirements vkGetBufferMemoryRequirements = 0; - PFN_vkGetImageMemoryRequirements vkGetImageMemoryRequirements = 0; - PFN_vkGetImageSparseMemoryRequirements vkGetImageSparseMemoryRequirements = 0; - PFN_vkQueueBindSparse vkQueueBindSparse = 0; - PFN_vkCreateFence vkCreateFence = 0; - PFN_vkDestroyFence vkDestroyFence = 0; - PFN_vkResetFences vkResetFences = 0; - PFN_vkGetFenceStatus vkGetFenceStatus = 0; - PFN_vkWaitForFences vkWaitForFences = 0; - PFN_vkCreateSemaphore vkCreateSemaphore = 0; - PFN_vkDestroySemaphore vkDestroySemaphore = 0; - PFN_vkCreateEvent vkCreateEvent = 0; - PFN_vkDestroyEvent vkDestroyEvent = 0; - PFN_vkGetEventStatus vkGetEventStatus = 0; - PFN_vkSetEvent vkSetEvent = 0; - PFN_vkResetEvent vkResetEvent = 0; - PFN_vkCreateQueryPool vkCreateQueryPool = 0; - PFN_vkDestroyQueryPool vkDestroyQueryPool = 0; - PFN_vkGetQueryPoolResults vkGetQueryPoolResults = 0; - PFN_vkCreateBuffer vkCreateBuffer = 0; - PFN_vkDestroyBuffer vkDestroyBuffer = 0; - PFN_vkCreateBufferView vkCreateBufferView = 0; - PFN_vkDestroyBufferView vkDestroyBufferView = 0; - PFN_vkCreateImage vkCreateImage = 0; - PFN_vkDestroyImage vkDestroyImage = 0; - PFN_vkGetImageSubresourceLayout vkGetImageSubresourceLayout = 0; - PFN_vkCreateImageView vkCreateImageView = 0; - PFN_vkDestroyImageView vkDestroyImageView = 0; - PFN_vkCreateShaderModule vkCreateShaderModule = 0; - PFN_vkDestroyShaderModule vkDestroyShaderModule = 0; - PFN_vkCreatePipelineCache vkCreatePipelineCache = 0; - PFN_vkDestroyPipelineCache vkDestroyPipelineCache = 0; - PFN_vkGetPipelineCacheData vkGetPipelineCacheData = 0; - PFN_vkMergePipelineCaches vkMergePipelineCaches = 0; - PFN_vkCreateGraphicsPipelines vkCreateGraphicsPipelines = 0; - PFN_vkCreateComputePipelines vkCreateComputePipelines = 0; - PFN_vkDestroyPipeline vkDestroyPipeline = 0; - PFN_vkCreatePipelineLayout vkCreatePipelineLayout = 0; - PFN_vkDestroyPipelineLayout vkDestroyPipelineLayout = 0; - PFN_vkCreateSampler vkCreateSampler = 0; - PFN_vkDestroySampler vkDestroySampler = 0; - PFN_vkCreateDescriptorSetLayout vkCreateDescriptorSetLayout = 0; - PFN_vkDestroyDescriptorSetLayout vkDestroyDescriptorSetLayout = 0; - PFN_vkCreateDescriptorPool vkCreateDescriptorPool = 0; - PFN_vkDestroyDescriptorPool vkDestroyDescriptorPool = 0; - PFN_vkResetDescriptorPool vkResetDescriptorPool = 0; - PFN_vkAllocateDescriptorSets vkAllocateDescriptorSets = 0; - PFN_vkFreeDescriptorSets vkFreeDescriptorSets = 0; - PFN_vkUpdateDescriptorSets vkUpdateDescriptorSets = 0; - PFN_vkCreateFramebuffer vkCreateFramebuffer = 0; - PFN_vkDestroyFramebuffer vkDestroyFramebuffer = 0; - PFN_vkCreateRenderPass vkCreateRenderPass = 0; - PFN_vkDestroyRenderPass vkDestroyRenderPass = 0; - PFN_vkGetRenderAreaGranularity vkGetRenderAreaGranularity = 0; - PFN_vkCreateCommandPool vkCreateCommandPool = 0; - PFN_vkDestroyCommandPool vkDestroyCommandPool = 0; - PFN_vkResetCommandPool vkResetCommandPool = 0; - PFN_vkAllocateCommandBuffers vkAllocateCommandBuffers = 0; - PFN_vkFreeCommandBuffers vkFreeCommandBuffers = 0; - PFN_vkBeginCommandBuffer vkBeginCommandBuffer = 0; - PFN_vkEndCommandBuffer vkEndCommandBuffer = 0; - PFN_vkResetCommandBuffer vkResetCommandBuffer = 0; - PFN_vkCmdBindPipeline vkCmdBindPipeline = 0; - PFN_vkCmdSetViewport vkCmdSetViewport = 0; - PFN_vkCmdSetScissor vkCmdSetScissor = 0; - PFN_vkCmdSetLineWidth vkCmdSetLineWidth = 0; - PFN_vkCmdSetDepthBias vkCmdSetDepthBias = 0; - PFN_vkCmdSetBlendConstants vkCmdSetBlendConstants = 0; - PFN_vkCmdSetDepthBounds vkCmdSetDepthBounds = 0; - PFN_vkCmdSetStencilCompareMask vkCmdSetStencilCompareMask = 0; - PFN_vkCmdSetStencilWriteMask vkCmdSetStencilWriteMask = 0; - PFN_vkCmdSetStencilReference vkCmdSetStencilReference = 0; - PFN_vkCmdBindDescriptorSets vkCmdBindDescriptorSets = 0; - PFN_vkCmdBindIndexBuffer vkCmdBindIndexBuffer = 0; - PFN_vkCmdBindVertexBuffers vkCmdBindVertexBuffers = 0; - PFN_vkCmdDraw vkCmdDraw = 0; - PFN_vkCmdDrawIndexed vkCmdDrawIndexed = 0; - PFN_vkCmdDrawIndirect vkCmdDrawIndirect = 0; - PFN_vkCmdDrawIndexedIndirect vkCmdDrawIndexedIndirect = 0; - PFN_vkCmdDispatch vkCmdDispatch = 0; - PFN_vkCmdDispatchIndirect vkCmdDispatchIndirect = 0; - PFN_vkCmdCopyBuffer vkCmdCopyBuffer = 0; - PFN_vkCmdCopyImage vkCmdCopyImage = 0; - PFN_vkCmdBlitImage vkCmdBlitImage = 0; - PFN_vkCmdCopyBufferToImage vkCmdCopyBufferToImage = 0; - PFN_vkCmdCopyImageToBuffer vkCmdCopyImageToBuffer = 0; - PFN_vkCmdUpdateBuffer vkCmdUpdateBuffer = 0; - PFN_vkCmdFillBuffer vkCmdFillBuffer = 0; - PFN_vkCmdClearColorImage vkCmdClearColorImage = 0; - PFN_vkCmdClearDepthStencilImage vkCmdClearDepthStencilImage = 0; - PFN_vkCmdClearAttachments vkCmdClearAttachments = 0; - PFN_vkCmdResolveImage vkCmdResolveImage = 0; - PFN_vkCmdSetEvent vkCmdSetEvent = 0; - PFN_vkCmdResetEvent vkCmdResetEvent = 0; - PFN_vkCmdWaitEvents vkCmdWaitEvents = 0; - PFN_vkCmdPipelineBarrier vkCmdPipelineBarrier = 0; - PFN_vkCmdBeginQuery vkCmdBeginQuery = 0; - PFN_vkCmdEndQuery vkCmdEndQuery = 0; - PFN_vkCmdResetQueryPool vkCmdResetQueryPool = 0; - PFN_vkCmdWriteTimestamp vkCmdWriteTimestamp = 0; - PFN_vkCmdCopyQueryPoolResults vkCmdCopyQueryPoolResults = 0; - PFN_vkCmdPushConstants vkCmdPushConstants = 0; - PFN_vkCmdBeginRenderPass vkCmdBeginRenderPass = 0; - PFN_vkCmdNextSubpass vkCmdNextSubpass = 0; - PFN_vkCmdEndRenderPass vkCmdEndRenderPass = 0; - PFN_vkCmdExecuteCommands vkCmdExecuteCommands = 0; - - //=== VK_VERSION_1_1 === - PFN_vkBindBufferMemory2 vkBindBufferMemory2 = 0; - PFN_vkBindImageMemory2 vkBindImageMemory2 = 0; - PFN_vkGetDeviceGroupPeerMemoryFeatures vkGetDeviceGroupPeerMemoryFeatures = 0; - PFN_vkCmdSetDeviceMask vkCmdSetDeviceMask = 0; - PFN_vkCmdDispatchBase vkCmdDispatchBase = 0; - PFN_vkGetImageMemoryRequirements2 vkGetImageMemoryRequirements2 = 0; - PFN_vkGetBufferMemoryRequirements2 vkGetBufferMemoryRequirements2 = 0; - PFN_vkGetImageSparseMemoryRequirements2 vkGetImageSparseMemoryRequirements2 = 0; - PFN_vkTrimCommandPool vkTrimCommandPool = 0; - PFN_vkGetDeviceQueue2 vkGetDeviceQueue2 = 0; - PFN_vkCreateSamplerYcbcrConversion vkCreateSamplerYcbcrConversion = 0; - PFN_vkDestroySamplerYcbcrConversion vkDestroySamplerYcbcrConversion = 0; - PFN_vkCreateDescriptorUpdateTemplate vkCreateDescriptorUpdateTemplate = 0; - PFN_vkDestroyDescriptorUpdateTemplate vkDestroyDescriptorUpdateTemplate = 0; - PFN_vkUpdateDescriptorSetWithTemplate vkUpdateDescriptorSetWithTemplate = 0; - PFN_vkGetDescriptorSetLayoutSupport vkGetDescriptorSetLayoutSupport = 0; - - //=== VK_VERSION_1_2 === - PFN_vkCmdDrawIndirectCount vkCmdDrawIndirectCount = 0; - PFN_vkCmdDrawIndexedIndirectCount vkCmdDrawIndexedIndirectCount = 0; - PFN_vkCreateRenderPass2 vkCreateRenderPass2 = 0; - PFN_vkCmdBeginRenderPass2 vkCmdBeginRenderPass2 = 0; - PFN_vkCmdNextSubpass2 vkCmdNextSubpass2 = 0; - PFN_vkCmdEndRenderPass2 vkCmdEndRenderPass2 = 0; - PFN_vkResetQueryPool vkResetQueryPool = 0; - PFN_vkGetSemaphoreCounterValue vkGetSemaphoreCounterValue = 0; - PFN_vkWaitSemaphores vkWaitSemaphores = 0; - PFN_vkSignalSemaphore vkSignalSemaphore = 0; - PFN_vkGetBufferDeviceAddress vkGetBufferDeviceAddress = 0; - PFN_vkGetBufferOpaqueCaptureAddress vkGetBufferOpaqueCaptureAddress = 0; - PFN_vkGetDeviceMemoryOpaqueCaptureAddress vkGetDeviceMemoryOpaqueCaptureAddress = 0; - - //=== VK_VERSION_1_3 === - PFN_vkCreatePrivateDataSlot vkCreatePrivateDataSlot = 0; - PFN_vkDestroyPrivateDataSlot vkDestroyPrivateDataSlot = 0; - PFN_vkSetPrivateData vkSetPrivateData = 0; - PFN_vkGetPrivateData vkGetPrivateData = 0; - PFN_vkCmdSetEvent2 vkCmdSetEvent2 = 0; - PFN_vkCmdResetEvent2 vkCmdResetEvent2 = 0; - PFN_vkCmdWaitEvents2 vkCmdWaitEvents2 = 0; - PFN_vkCmdPipelineBarrier2 vkCmdPipelineBarrier2 = 0; - PFN_vkCmdWriteTimestamp2 vkCmdWriteTimestamp2 = 0; - PFN_vkQueueSubmit2 vkQueueSubmit2 = 0; - PFN_vkCmdCopyBuffer2 vkCmdCopyBuffer2 = 0; - PFN_vkCmdCopyImage2 vkCmdCopyImage2 = 0; - PFN_vkCmdCopyBufferToImage2 vkCmdCopyBufferToImage2 = 0; - PFN_vkCmdCopyImageToBuffer2 vkCmdCopyImageToBuffer2 = 0; - PFN_vkCmdBlitImage2 vkCmdBlitImage2 = 0; - PFN_vkCmdResolveImage2 vkCmdResolveImage2 = 0; - PFN_vkCmdBeginRendering vkCmdBeginRendering = 0; - PFN_vkCmdEndRendering vkCmdEndRendering = 0; - PFN_vkCmdSetCullMode vkCmdSetCullMode = 0; - PFN_vkCmdSetFrontFace vkCmdSetFrontFace = 0; - PFN_vkCmdSetPrimitiveTopology vkCmdSetPrimitiveTopology = 0; - PFN_vkCmdSetViewportWithCount vkCmdSetViewportWithCount = 0; - PFN_vkCmdSetScissorWithCount vkCmdSetScissorWithCount = 0; - PFN_vkCmdBindVertexBuffers2 vkCmdBindVertexBuffers2 = 0; - PFN_vkCmdSetDepthTestEnable vkCmdSetDepthTestEnable = 0; - PFN_vkCmdSetDepthWriteEnable vkCmdSetDepthWriteEnable = 0; - PFN_vkCmdSetDepthCompareOp vkCmdSetDepthCompareOp = 0; - PFN_vkCmdSetDepthBoundsTestEnable vkCmdSetDepthBoundsTestEnable = 0; - PFN_vkCmdSetStencilTestEnable vkCmdSetStencilTestEnable = 0; - PFN_vkCmdSetStencilOp vkCmdSetStencilOp = 0; - PFN_vkCmdSetRasterizerDiscardEnable vkCmdSetRasterizerDiscardEnable = 0; - PFN_vkCmdSetDepthBiasEnable vkCmdSetDepthBiasEnable = 0; - PFN_vkCmdSetPrimitiveRestartEnable vkCmdSetPrimitiveRestartEnable = 0; - PFN_vkGetDeviceBufferMemoryRequirements vkGetDeviceBufferMemoryRequirements = 0; - PFN_vkGetDeviceImageMemoryRequirements vkGetDeviceImageMemoryRequirements = 0; - PFN_vkGetDeviceImageSparseMemoryRequirements vkGetDeviceImageSparseMemoryRequirements = 0; - - //=== VK_AMD_buffer_marker === - PFN_vkCmdWriteBufferMarkerAMD vkCmdWriteBufferMarkerAMD = 0; - - //=== VK_AMD_display_native_hdr === - PFN_vkSetLocalDimmingAMD vkSetLocalDimmingAMD = 0; - - //=== VK_AMD_draw_indirect_count === - PFN_vkCmdDrawIndirectCountAMD vkCmdDrawIndirectCountAMD = 0; - PFN_vkCmdDrawIndexedIndirectCountAMD vkCmdDrawIndexedIndirectCountAMD = 0; - - //=== VK_AMD_shader_info === - PFN_vkGetShaderInfoAMD vkGetShaderInfoAMD = 0; - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - PFN_vkGetAndroidHardwareBufferPropertiesANDROID vkGetAndroidHardwareBufferPropertiesANDROID = 0; - PFN_vkGetMemoryAndroidHardwareBufferANDROID vkGetMemoryAndroidHardwareBufferANDROID = 0; -# else - PFN_dummy vkGetAndroidHardwareBufferPropertiesANDROID_placeholder = 0; - PFN_dummy vkGetMemoryAndroidHardwareBufferANDROID_placeholder = 0; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_buffer_device_address === - PFN_vkGetBufferDeviceAddressEXT vkGetBufferDeviceAddressEXT = 0; - - //=== VK_EXT_calibrated_timestamps === - PFN_vkGetCalibratedTimestampsEXT vkGetCalibratedTimestampsEXT = 0; - - //=== VK_EXT_color_write_enable === - PFN_vkCmdSetColorWriteEnableEXT vkCmdSetColorWriteEnableEXT = 0; - - //=== VK_EXT_conditional_rendering === - PFN_vkCmdBeginConditionalRenderingEXT vkCmdBeginConditionalRenderingEXT = 0; - PFN_vkCmdEndConditionalRenderingEXT vkCmdEndConditionalRenderingEXT = 0; - - //=== VK_EXT_debug_marker === - PFN_vkDebugMarkerSetObjectTagEXT vkDebugMarkerSetObjectTagEXT = 0; - PFN_vkDebugMarkerSetObjectNameEXT vkDebugMarkerSetObjectNameEXT = 0; - PFN_vkCmdDebugMarkerBeginEXT vkCmdDebugMarkerBeginEXT = 0; - PFN_vkCmdDebugMarkerEndEXT vkCmdDebugMarkerEndEXT = 0; - PFN_vkCmdDebugMarkerInsertEXT vkCmdDebugMarkerInsertEXT = 0; - - //=== VK_EXT_debug_utils === - PFN_vkSetDebugUtilsObjectNameEXT vkSetDebugUtilsObjectNameEXT = 0; - PFN_vkSetDebugUtilsObjectTagEXT vkSetDebugUtilsObjectTagEXT = 0; - PFN_vkQueueBeginDebugUtilsLabelEXT vkQueueBeginDebugUtilsLabelEXT = 0; - PFN_vkQueueEndDebugUtilsLabelEXT vkQueueEndDebugUtilsLabelEXT = 0; - PFN_vkQueueInsertDebugUtilsLabelEXT vkQueueInsertDebugUtilsLabelEXT = 0; - PFN_vkCmdBeginDebugUtilsLabelEXT vkCmdBeginDebugUtilsLabelEXT = 0; - PFN_vkCmdEndDebugUtilsLabelEXT vkCmdEndDebugUtilsLabelEXT = 0; - PFN_vkCmdInsertDebugUtilsLabelEXT vkCmdInsertDebugUtilsLabelEXT = 0; - - //=== VK_EXT_discard_rectangles === - PFN_vkCmdSetDiscardRectangleEXT vkCmdSetDiscardRectangleEXT = 0; - - //=== VK_EXT_display_control === - PFN_vkDisplayPowerControlEXT vkDisplayPowerControlEXT = 0; - PFN_vkRegisterDeviceEventEXT vkRegisterDeviceEventEXT = 0; - PFN_vkRegisterDisplayEventEXT vkRegisterDisplayEventEXT = 0; - PFN_vkGetSwapchainCounterEXT vkGetSwapchainCounterEXT = 0; - - //=== VK_EXT_extended_dynamic_state === - PFN_vkCmdSetCullModeEXT vkCmdSetCullModeEXT = 0; - PFN_vkCmdSetFrontFaceEXT vkCmdSetFrontFaceEXT = 0; - PFN_vkCmdSetPrimitiveTopologyEXT vkCmdSetPrimitiveTopologyEXT = 0; - PFN_vkCmdSetViewportWithCountEXT vkCmdSetViewportWithCountEXT = 0; - PFN_vkCmdSetScissorWithCountEXT vkCmdSetScissorWithCountEXT = 0; - PFN_vkCmdBindVertexBuffers2EXT vkCmdBindVertexBuffers2EXT = 0; - PFN_vkCmdSetDepthTestEnableEXT vkCmdSetDepthTestEnableEXT = 0; - PFN_vkCmdSetDepthWriteEnableEXT vkCmdSetDepthWriteEnableEXT = 0; - PFN_vkCmdSetDepthCompareOpEXT vkCmdSetDepthCompareOpEXT = 0; - PFN_vkCmdSetDepthBoundsTestEnableEXT vkCmdSetDepthBoundsTestEnableEXT = 0; - PFN_vkCmdSetStencilTestEnableEXT vkCmdSetStencilTestEnableEXT = 0; - PFN_vkCmdSetStencilOpEXT vkCmdSetStencilOpEXT = 0; - - //=== VK_EXT_extended_dynamic_state2 === - PFN_vkCmdSetPatchControlPointsEXT vkCmdSetPatchControlPointsEXT = 0; - PFN_vkCmdSetRasterizerDiscardEnableEXT vkCmdSetRasterizerDiscardEnableEXT = 0; - PFN_vkCmdSetDepthBiasEnableEXT vkCmdSetDepthBiasEnableEXT = 0; - PFN_vkCmdSetLogicOpEXT vkCmdSetLogicOpEXT = 0; - PFN_vkCmdSetPrimitiveRestartEnableEXT vkCmdSetPrimitiveRestartEnableEXT = 0; - - //=== VK_EXT_external_memory_host === - PFN_vkGetMemoryHostPointerPropertiesEXT vkGetMemoryHostPointerPropertiesEXT = 0; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - PFN_vkAcquireFullScreenExclusiveModeEXT vkAcquireFullScreenExclusiveModeEXT = 0; - PFN_vkReleaseFullScreenExclusiveModeEXT vkReleaseFullScreenExclusiveModeEXT = 0; - PFN_vkGetDeviceGroupSurfacePresentModes2EXT vkGetDeviceGroupSurfacePresentModes2EXT = 0; -# else - PFN_dummy vkAcquireFullScreenExclusiveModeEXT_placeholder = 0; - PFN_dummy vkReleaseFullScreenExclusiveModeEXT_placeholder = 0; - PFN_dummy vkGetDeviceGroupSurfacePresentModes2EXT_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_hdr_metadata === - PFN_vkSetHdrMetadataEXT vkSetHdrMetadataEXT = 0; - - //=== VK_EXT_host_query_reset === - PFN_vkResetQueryPoolEXT vkResetQueryPoolEXT = 0; - - //=== VK_EXT_image_drm_format_modifier === - PFN_vkGetImageDrmFormatModifierPropertiesEXT vkGetImageDrmFormatModifierPropertiesEXT = 0; - - //=== VK_EXT_line_rasterization === - PFN_vkCmdSetLineStippleEXT vkCmdSetLineStippleEXT = 0; - - //=== VK_EXT_multi_draw === - PFN_vkCmdDrawMultiEXT vkCmdDrawMultiEXT = 0; - PFN_vkCmdDrawMultiIndexedEXT vkCmdDrawMultiIndexedEXT = 0; - - //=== VK_EXT_pageable_device_local_memory === - PFN_vkSetDeviceMemoryPriorityEXT vkSetDeviceMemoryPriorityEXT = 0; - - //=== VK_EXT_private_data === - PFN_vkCreatePrivateDataSlotEXT vkCreatePrivateDataSlotEXT = 0; - PFN_vkDestroyPrivateDataSlotEXT vkDestroyPrivateDataSlotEXT = 0; - PFN_vkSetPrivateDataEXT vkSetPrivateDataEXT = 0; - PFN_vkGetPrivateDataEXT vkGetPrivateDataEXT = 0; - - //=== VK_EXT_sample_locations === - PFN_vkCmdSetSampleLocationsEXT vkCmdSetSampleLocationsEXT = 0; - - //=== VK_EXT_transform_feedback === - PFN_vkCmdBindTransformFeedbackBuffersEXT vkCmdBindTransformFeedbackBuffersEXT = 0; - PFN_vkCmdBeginTransformFeedbackEXT vkCmdBeginTransformFeedbackEXT = 0; - PFN_vkCmdEndTransformFeedbackEXT vkCmdEndTransformFeedbackEXT = 0; - PFN_vkCmdBeginQueryIndexedEXT vkCmdBeginQueryIndexedEXT = 0; - PFN_vkCmdEndQueryIndexedEXT vkCmdEndQueryIndexedEXT = 0; - PFN_vkCmdDrawIndirectByteCountEXT vkCmdDrawIndirectByteCountEXT = 0; - - //=== VK_EXT_validation_cache === - PFN_vkCreateValidationCacheEXT vkCreateValidationCacheEXT = 0; - PFN_vkDestroyValidationCacheEXT vkDestroyValidationCacheEXT = 0; - PFN_vkMergeValidationCachesEXT vkMergeValidationCachesEXT = 0; - PFN_vkGetValidationCacheDataEXT vkGetValidationCacheDataEXT = 0; - - //=== VK_EXT_vertex_input_dynamic_state === - PFN_vkCmdSetVertexInputEXT vkCmdSetVertexInputEXT = 0; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - PFN_vkCreateBufferCollectionFUCHSIA vkCreateBufferCollectionFUCHSIA = 0; - PFN_vkSetBufferCollectionImageConstraintsFUCHSIA vkSetBufferCollectionImageConstraintsFUCHSIA = 0; - PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA vkSetBufferCollectionBufferConstraintsFUCHSIA = 0; - PFN_vkDestroyBufferCollectionFUCHSIA vkDestroyBufferCollectionFUCHSIA = 0; - PFN_vkGetBufferCollectionPropertiesFUCHSIA vkGetBufferCollectionPropertiesFUCHSIA = 0; -# else - PFN_dummy vkCreateBufferCollectionFUCHSIA_placeholder = 0; - PFN_dummy vkSetBufferCollectionImageConstraintsFUCHSIA_placeholder = 0; - PFN_dummy vkSetBufferCollectionBufferConstraintsFUCHSIA_placeholder = 0; - PFN_dummy vkDestroyBufferCollectionFUCHSIA_placeholder = 0; - PFN_dummy vkGetBufferCollectionPropertiesFUCHSIA_placeholder = 0; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - PFN_vkGetMemoryZirconHandleFUCHSIA vkGetMemoryZirconHandleFUCHSIA = 0; - PFN_vkGetMemoryZirconHandlePropertiesFUCHSIA vkGetMemoryZirconHandlePropertiesFUCHSIA = 0; -# else - PFN_dummy vkGetMemoryZirconHandleFUCHSIA_placeholder = 0; - PFN_dummy vkGetMemoryZirconHandlePropertiesFUCHSIA_placeholder = 0; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - PFN_vkImportSemaphoreZirconHandleFUCHSIA vkImportSemaphoreZirconHandleFUCHSIA = 0; - PFN_vkGetSemaphoreZirconHandleFUCHSIA vkGetSemaphoreZirconHandleFUCHSIA = 0; -# else - PFN_dummy vkImportSemaphoreZirconHandleFUCHSIA_placeholder = 0; - PFN_dummy vkGetSemaphoreZirconHandleFUCHSIA_placeholder = 0; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_GOOGLE_display_timing === - PFN_vkGetRefreshCycleDurationGOOGLE vkGetRefreshCycleDurationGOOGLE = 0; - PFN_vkGetPastPresentationTimingGOOGLE vkGetPastPresentationTimingGOOGLE = 0; - - //=== VK_HUAWEI_invocation_mask === - PFN_vkCmdBindInvocationMaskHUAWEI vkCmdBindInvocationMaskHUAWEI = 0; - - //=== VK_HUAWEI_subpass_shading === - PFN_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI = 0; - PFN_vkCmdSubpassShadingHUAWEI vkCmdSubpassShadingHUAWEI = 0; - - //=== VK_INTEL_performance_query === - PFN_vkInitializePerformanceApiINTEL vkInitializePerformanceApiINTEL = 0; - PFN_vkUninitializePerformanceApiINTEL vkUninitializePerformanceApiINTEL = 0; - PFN_vkCmdSetPerformanceMarkerINTEL vkCmdSetPerformanceMarkerINTEL = 0; - PFN_vkCmdSetPerformanceStreamMarkerINTEL vkCmdSetPerformanceStreamMarkerINTEL = 0; - PFN_vkCmdSetPerformanceOverrideINTEL vkCmdSetPerformanceOverrideINTEL = 0; - PFN_vkAcquirePerformanceConfigurationINTEL vkAcquirePerformanceConfigurationINTEL = 0; - PFN_vkReleasePerformanceConfigurationINTEL vkReleasePerformanceConfigurationINTEL = 0; - PFN_vkQueueSetPerformanceConfigurationINTEL vkQueueSetPerformanceConfigurationINTEL = 0; - PFN_vkGetPerformanceParameterINTEL vkGetPerformanceParameterINTEL = 0; - - //=== VK_KHR_acceleration_structure === - PFN_vkCreateAccelerationStructureKHR vkCreateAccelerationStructureKHR = 0; - PFN_vkDestroyAccelerationStructureKHR vkDestroyAccelerationStructureKHR = 0; - PFN_vkCmdBuildAccelerationStructuresKHR vkCmdBuildAccelerationStructuresKHR = 0; - PFN_vkCmdBuildAccelerationStructuresIndirectKHR vkCmdBuildAccelerationStructuresIndirectKHR = 0; - PFN_vkBuildAccelerationStructuresKHR vkBuildAccelerationStructuresKHR = 0; - PFN_vkCopyAccelerationStructureKHR vkCopyAccelerationStructureKHR = 0; - PFN_vkCopyAccelerationStructureToMemoryKHR vkCopyAccelerationStructureToMemoryKHR = 0; - PFN_vkCopyMemoryToAccelerationStructureKHR vkCopyMemoryToAccelerationStructureKHR = 0; - PFN_vkWriteAccelerationStructuresPropertiesKHR vkWriteAccelerationStructuresPropertiesKHR = 0; - PFN_vkCmdCopyAccelerationStructureKHR vkCmdCopyAccelerationStructureKHR = 0; - PFN_vkCmdCopyAccelerationStructureToMemoryKHR vkCmdCopyAccelerationStructureToMemoryKHR = 0; - PFN_vkCmdCopyMemoryToAccelerationStructureKHR vkCmdCopyMemoryToAccelerationStructureKHR = 0; - PFN_vkGetAccelerationStructureDeviceAddressKHR vkGetAccelerationStructureDeviceAddressKHR = 0; - PFN_vkCmdWriteAccelerationStructuresPropertiesKHR vkCmdWriteAccelerationStructuresPropertiesKHR = 0; - PFN_vkGetDeviceAccelerationStructureCompatibilityKHR vkGetDeviceAccelerationStructureCompatibilityKHR = 0; - PFN_vkGetAccelerationStructureBuildSizesKHR vkGetAccelerationStructureBuildSizesKHR = 0; - - //=== VK_KHR_bind_memory2 === - PFN_vkBindBufferMemory2KHR vkBindBufferMemory2KHR = 0; - PFN_vkBindImageMemory2KHR vkBindImageMemory2KHR = 0; - - //=== VK_KHR_buffer_device_address === - PFN_vkGetBufferDeviceAddressKHR vkGetBufferDeviceAddressKHR = 0; - PFN_vkGetBufferOpaqueCaptureAddressKHR vkGetBufferOpaqueCaptureAddressKHR = 0; - PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR vkGetDeviceMemoryOpaqueCaptureAddressKHR = 0; - - //=== VK_KHR_copy_commands2 === - PFN_vkCmdCopyBuffer2KHR vkCmdCopyBuffer2KHR = 0; - PFN_vkCmdCopyImage2KHR vkCmdCopyImage2KHR = 0; - PFN_vkCmdCopyBufferToImage2KHR vkCmdCopyBufferToImage2KHR = 0; - PFN_vkCmdCopyImageToBuffer2KHR vkCmdCopyImageToBuffer2KHR = 0; - PFN_vkCmdBlitImage2KHR vkCmdBlitImage2KHR = 0; - PFN_vkCmdResolveImage2KHR vkCmdResolveImage2KHR = 0; - - //=== VK_KHR_create_renderpass2 === - PFN_vkCreateRenderPass2KHR vkCreateRenderPass2KHR = 0; - PFN_vkCmdBeginRenderPass2KHR vkCmdBeginRenderPass2KHR = 0; - PFN_vkCmdNextSubpass2KHR vkCmdNextSubpass2KHR = 0; - PFN_vkCmdEndRenderPass2KHR vkCmdEndRenderPass2KHR = 0; - - //=== VK_KHR_deferred_host_operations === - PFN_vkCreateDeferredOperationKHR vkCreateDeferredOperationKHR = 0; - PFN_vkDestroyDeferredOperationKHR vkDestroyDeferredOperationKHR = 0; - PFN_vkGetDeferredOperationMaxConcurrencyKHR vkGetDeferredOperationMaxConcurrencyKHR = 0; - PFN_vkGetDeferredOperationResultKHR vkGetDeferredOperationResultKHR = 0; - PFN_vkDeferredOperationJoinKHR vkDeferredOperationJoinKHR = 0; - - //=== VK_KHR_descriptor_update_template === - PFN_vkCreateDescriptorUpdateTemplateKHR vkCreateDescriptorUpdateTemplateKHR = 0; - PFN_vkDestroyDescriptorUpdateTemplateKHR vkDestroyDescriptorUpdateTemplateKHR = 0; - PFN_vkUpdateDescriptorSetWithTemplateKHR vkUpdateDescriptorSetWithTemplateKHR = 0; - PFN_vkCmdPushDescriptorSetWithTemplateKHR vkCmdPushDescriptorSetWithTemplateKHR = 0; - - //=== VK_KHR_device_group === - PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR vkGetDeviceGroupPeerMemoryFeaturesKHR = 0; - PFN_vkCmdSetDeviceMaskKHR vkCmdSetDeviceMaskKHR = 0; - PFN_vkCmdDispatchBaseKHR vkCmdDispatchBaseKHR = 0; - PFN_vkGetDeviceGroupPresentCapabilitiesKHR vkGetDeviceGroupPresentCapabilitiesKHR = 0; - PFN_vkGetDeviceGroupSurfacePresentModesKHR vkGetDeviceGroupSurfacePresentModesKHR = 0; - PFN_vkAcquireNextImage2KHR vkAcquireNextImage2KHR = 0; - - //=== VK_KHR_display_swapchain === - PFN_vkCreateSharedSwapchainsKHR vkCreateSharedSwapchainsKHR = 0; - - //=== VK_KHR_draw_indirect_count === - PFN_vkCmdDrawIndirectCountKHR vkCmdDrawIndirectCountKHR = 0; - PFN_vkCmdDrawIndexedIndirectCountKHR vkCmdDrawIndexedIndirectCountKHR = 0; - - //=== VK_KHR_dynamic_rendering === - PFN_vkCmdBeginRenderingKHR vkCmdBeginRenderingKHR = 0; - PFN_vkCmdEndRenderingKHR vkCmdEndRenderingKHR = 0; - - //=== VK_KHR_external_fence_fd === - PFN_vkImportFenceFdKHR vkImportFenceFdKHR = 0; - PFN_vkGetFenceFdKHR vkGetFenceFdKHR = 0; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - PFN_vkImportFenceWin32HandleKHR vkImportFenceWin32HandleKHR = 0; - PFN_vkGetFenceWin32HandleKHR vkGetFenceWin32HandleKHR = 0; -# else - PFN_dummy vkImportFenceWin32HandleKHR_placeholder = 0; - PFN_dummy vkGetFenceWin32HandleKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - PFN_vkGetMemoryFdKHR vkGetMemoryFdKHR = 0; - PFN_vkGetMemoryFdPropertiesKHR vkGetMemoryFdPropertiesKHR = 0; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - PFN_vkGetMemoryWin32HandleKHR vkGetMemoryWin32HandleKHR = 0; - PFN_vkGetMemoryWin32HandlePropertiesKHR vkGetMemoryWin32HandlePropertiesKHR = 0; -# else - PFN_dummy vkGetMemoryWin32HandleKHR_placeholder = 0; - PFN_dummy vkGetMemoryWin32HandlePropertiesKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - PFN_vkImportSemaphoreFdKHR vkImportSemaphoreFdKHR = 0; - PFN_vkGetSemaphoreFdKHR vkGetSemaphoreFdKHR = 0; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - PFN_vkImportSemaphoreWin32HandleKHR vkImportSemaphoreWin32HandleKHR = 0; - PFN_vkGetSemaphoreWin32HandleKHR vkGetSemaphoreWin32HandleKHR = 0; -# else - PFN_dummy vkImportSemaphoreWin32HandleKHR_placeholder = 0; - PFN_dummy vkGetSemaphoreWin32HandleKHR_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_fragment_shading_rate === - PFN_vkCmdSetFragmentShadingRateKHR vkCmdSetFragmentShadingRateKHR = 0; - - //=== VK_KHR_get_memory_requirements2 === - PFN_vkGetImageMemoryRequirements2KHR vkGetImageMemoryRequirements2KHR = 0; - PFN_vkGetBufferMemoryRequirements2KHR vkGetBufferMemoryRequirements2KHR = 0; - PFN_vkGetImageSparseMemoryRequirements2KHR vkGetImageSparseMemoryRequirements2KHR = 0; - - //=== VK_KHR_maintenance1 === - PFN_vkTrimCommandPoolKHR vkTrimCommandPoolKHR = 0; - - //=== VK_KHR_maintenance3 === - PFN_vkGetDescriptorSetLayoutSupportKHR vkGetDescriptorSetLayoutSupportKHR = 0; - - //=== VK_KHR_maintenance4 === - PFN_vkGetDeviceBufferMemoryRequirementsKHR vkGetDeviceBufferMemoryRequirementsKHR = 0; - PFN_vkGetDeviceImageMemoryRequirementsKHR vkGetDeviceImageMemoryRequirementsKHR = 0; - PFN_vkGetDeviceImageSparseMemoryRequirementsKHR vkGetDeviceImageSparseMemoryRequirementsKHR = 0; - - //=== VK_KHR_performance_query === - PFN_vkAcquireProfilingLockKHR vkAcquireProfilingLockKHR = 0; - PFN_vkReleaseProfilingLockKHR vkReleaseProfilingLockKHR = 0; - - //=== VK_KHR_pipeline_executable_properties === - PFN_vkGetPipelineExecutablePropertiesKHR vkGetPipelineExecutablePropertiesKHR = 0; - PFN_vkGetPipelineExecutableStatisticsKHR vkGetPipelineExecutableStatisticsKHR = 0; - PFN_vkGetPipelineExecutableInternalRepresentationsKHR vkGetPipelineExecutableInternalRepresentationsKHR = 0; - - //=== VK_KHR_present_wait === - PFN_vkWaitForPresentKHR vkWaitForPresentKHR = 0; - - //=== VK_KHR_push_descriptor === - PFN_vkCmdPushDescriptorSetKHR vkCmdPushDescriptorSetKHR = 0; - - //=== VK_KHR_ray_tracing_pipeline === - PFN_vkCmdTraceRaysKHR vkCmdTraceRaysKHR = 0; - PFN_vkCreateRayTracingPipelinesKHR vkCreateRayTracingPipelinesKHR = 0; - PFN_vkGetRayTracingShaderGroupHandlesKHR vkGetRayTracingShaderGroupHandlesKHR = 0; - PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR vkGetRayTracingCaptureReplayShaderGroupHandlesKHR = 0; - PFN_vkCmdTraceRaysIndirectKHR vkCmdTraceRaysIndirectKHR = 0; - PFN_vkGetRayTracingShaderGroupStackSizeKHR vkGetRayTracingShaderGroupStackSizeKHR = 0; - PFN_vkCmdSetRayTracingPipelineStackSizeKHR vkCmdSetRayTracingPipelineStackSizeKHR = 0; - - //=== VK_KHR_sampler_ycbcr_conversion === - PFN_vkCreateSamplerYcbcrConversionKHR vkCreateSamplerYcbcrConversionKHR = 0; - PFN_vkDestroySamplerYcbcrConversionKHR vkDestroySamplerYcbcrConversionKHR = 0; - - //=== VK_KHR_shared_presentable_image === - PFN_vkGetSwapchainStatusKHR vkGetSwapchainStatusKHR = 0; - - //=== VK_KHR_swapchain === - PFN_vkCreateSwapchainKHR vkCreateSwapchainKHR = 0; - PFN_vkDestroySwapchainKHR vkDestroySwapchainKHR = 0; - PFN_vkGetSwapchainImagesKHR vkGetSwapchainImagesKHR = 0; - PFN_vkAcquireNextImageKHR vkAcquireNextImageKHR = 0; - PFN_vkQueuePresentKHR vkQueuePresentKHR = 0; - - //=== VK_KHR_synchronization2 === - PFN_vkCmdSetEvent2KHR vkCmdSetEvent2KHR = 0; - PFN_vkCmdResetEvent2KHR vkCmdResetEvent2KHR = 0; - PFN_vkCmdWaitEvents2KHR vkCmdWaitEvents2KHR = 0; - PFN_vkCmdPipelineBarrier2KHR vkCmdPipelineBarrier2KHR = 0; - PFN_vkCmdWriteTimestamp2KHR vkCmdWriteTimestamp2KHR = 0; - PFN_vkQueueSubmit2KHR vkQueueSubmit2KHR = 0; - PFN_vkCmdWriteBufferMarker2AMD vkCmdWriteBufferMarker2AMD = 0; - PFN_vkGetQueueCheckpointData2NV vkGetQueueCheckpointData2NV = 0; - - //=== VK_KHR_timeline_semaphore === - PFN_vkGetSemaphoreCounterValueKHR vkGetSemaphoreCounterValueKHR = 0; - PFN_vkWaitSemaphoresKHR vkWaitSemaphoresKHR = 0; - PFN_vkSignalSemaphoreKHR vkSignalSemaphoreKHR = 0; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - PFN_vkCmdDecodeVideoKHR vkCmdDecodeVideoKHR = 0; -# else - PFN_dummy vkCmdDecodeVideoKHR_placeholder = 0; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - PFN_vkCmdEncodeVideoKHR vkCmdEncodeVideoKHR = 0; -# else - PFN_dummy vkCmdEncodeVideoKHR_placeholder = 0; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - PFN_vkCreateVideoSessionKHR vkCreateVideoSessionKHR = 0; - PFN_vkDestroyVideoSessionKHR vkDestroyVideoSessionKHR = 0; - PFN_vkGetVideoSessionMemoryRequirementsKHR vkGetVideoSessionMemoryRequirementsKHR = 0; - PFN_vkBindVideoSessionMemoryKHR vkBindVideoSessionMemoryKHR = 0; - PFN_vkCreateVideoSessionParametersKHR vkCreateVideoSessionParametersKHR = 0; - PFN_vkUpdateVideoSessionParametersKHR vkUpdateVideoSessionParametersKHR = 0; - PFN_vkDestroyVideoSessionParametersKHR vkDestroyVideoSessionParametersKHR = 0; - PFN_vkCmdBeginVideoCodingKHR vkCmdBeginVideoCodingKHR = 0; - PFN_vkCmdEndVideoCodingKHR vkCmdEndVideoCodingKHR = 0; - PFN_vkCmdControlVideoCodingKHR vkCmdControlVideoCodingKHR = 0; -# else - PFN_dummy vkCreateVideoSessionKHR_placeholder = 0; - PFN_dummy vkDestroyVideoSessionKHR_placeholder = 0; - PFN_dummy vkGetVideoSessionMemoryRequirementsKHR_placeholder = 0; - PFN_dummy vkBindVideoSessionMemoryKHR_placeholder = 0; - PFN_dummy vkCreateVideoSessionParametersKHR_placeholder = 0; - PFN_dummy vkUpdateVideoSessionParametersKHR_placeholder = 0; - PFN_dummy vkDestroyVideoSessionParametersKHR_placeholder = 0; - PFN_dummy vkCmdBeginVideoCodingKHR_placeholder = 0; - PFN_dummy vkCmdEndVideoCodingKHR_placeholder = 0; - PFN_dummy vkCmdControlVideoCodingKHR_placeholder = 0; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NVX_binary_import === - PFN_vkCreateCuModuleNVX vkCreateCuModuleNVX = 0; - PFN_vkCreateCuFunctionNVX vkCreateCuFunctionNVX = 0; - PFN_vkDestroyCuModuleNVX vkDestroyCuModuleNVX = 0; - PFN_vkDestroyCuFunctionNVX vkDestroyCuFunctionNVX = 0; - PFN_vkCmdCuLaunchKernelNVX vkCmdCuLaunchKernelNVX = 0; - - //=== VK_NVX_image_view_handle === - PFN_vkGetImageViewHandleNVX vkGetImageViewHandleNVX = 0; - PFN_vkGetImageViewAddressNVX vkGetImageViewAddressNVX = 0; - - //=== VK_NV_clip_space_w_scaling === - PFN_vkCmdSetViewportWScalingNV vkCmdSetViewportWScalingNV = 0; - - //=== VK_NV_device_diagnostic_checkpoints === - PFN_vkCmdSetCheckpointNV vkCmdSetCheckpointNV = 0; - PFN_vkGetQueueCheckpointDataNV vkGetQueueCheckpointDataNV = 0; - - //=== VK_NV_device_generated_commands === - PFN_vkGetGeneratedCommandsMemoryRequirementsNV vkGetGeneratedCommandsMemoryRequirementsNV = 0; - PFN_vkCmdPreprocessGeneratedCommandsNV vkCmdPreprocessGeneratedCommandsNV = 0; - PFN_vkCmdExecuteGeneratedCommandsNV vkCmdExecuteGeneratedCommandsNV = 0; - PFN_vkCmdBindPipelineShaderGroupNV vkCmdBindPipelineShaderGroupNV = 0; - PFN_vkCreateIndirectCommandsLayoutNV vkCreateIndirectCommandsLayoutNV = 0; - PFN_vkDestroyIndirectCommandsLayoutNV vkDestroyIndirectCommandsLayoutNV = 0; - - //=== VK_NV_external_memory_rdma === - PFN_vkGetMemoryRemoteAddressNV vkGetMemoryRemoteAddressNV = 0; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - PFN_vkGetMemoryWin32HandleNV vkGetMemoryWin32HandleNV = 0; -# else - PFN_dummy vkGetMemoryWin32HandleNV_placeholder = 0; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_NV_fragment_shading_rate_enums === - PFN_vkCmdSetFragmentShadingRateEnumNV vkCmdSetFragmentShadingRateEnumNV = 0; - - //=== VK_NV_mesh_shader === - PFN_vkCmdDrawMeshTasksNV vkCmdDrawMeshTasksNV = 0; - PFN_vkCmdDrawMeshTasksIndirectNV vkCmdDrawMeshTasksIndirectNV = 0; - PFN_vkCmdDrawMeshTasksIndirectCountNV vkCmdDrawMeshTasksIndirectCountNV = 0; - - //=== VK_NV_ray_tracing === - PFN_vkCreateAccelerationStructureNV vkCreateAccelerationStructureNV = 0; - PFN_vkDestroyAccelerationStructureNV vkDestroyAccelerationStructureNV = 0; - PFN_vkGetAccelerationStructureMemoryRequirementsNV vkGetAccelerationStructureMemoryRequirementsNV = 0; - PFN_vkBindAccelerationStructureMemoryNV vkBindAccelerationStructureMemoryNV = 0; - PFN_vkCmdBuildAccelerationStructureNV vkCmdBuildAccelerationStructureNV = 0; - PFN_vkCmdCopyAccelerationStructureNV vkCmdCopyAccelerationStructureNV = 0; - PFN_vkCmdTraceRaysNV vkCmdTraceRaysNV = 0; - PFN_vkCreateRayTracingPipelinesNV vkCreateRayTracingPipelinesNV = 0; - PFN_vkGetRayTracingShaderGroupHandlesNV vkGetRayTracingShaderGroupHandlesNV = 0; - PFN_vkGetAccelerationStructureHandleNV vkGetAccelerationStructureHandleNV = 0; - PFN_vkCmdWriteAccelerationStructuresPropertiesNV vkCmdWriteAccelerationStructuresPropertiesNV = 0; - PFN_vkCompileDeferredNV vkCompileDeferredNV = 0; - - //=== VK_NV_scissor_exclusive === - PFN_vkCmdSetExclusiveScissorNV vkCmdSetExclusiveScissorNV = 0; - - //=== VK_NV_shading_rate_image === - PFN_vkCmdBindShadingRateImageNV vkCmdBindShadingRateImageNV = 0; - PFN_vkCmdSetViewportShadingRatePaletteNV vkCmdSetViewportShadingRatePaletteNV = 0; - PFN_vkCmdSetCoarseSampleOrderNV vkCmdSetCoarseSampleOrderNV = 0; - }; - - //======================================== - //=== RAII HANDLE forward declarations === - //======================================== - - //=== VK_VERSION_1_0 === - class Instance; - class PhysicalDevice; - class Device; - class Queue; - class DeviceMemory; - class Fence; - class Semaphore; - class Event; - class QueryPool; - class Buffer; - class BufferView; - class Image; - class ImageView; - class ShaderModule; - class PipelineCache; - class Pipeline; - class PipelineLayout; - class Sampler; - class DescriptorPool; - class DescriptorSet; - class DescriptorSetLayout; - class Framebuffer; - class RenderPass; - class CommandPool; - class CommandBuffer; - - //=== VK_VERSION_1_1 === - class SamplerYcbcrConversion; - class DescriptorUpdateTemplate; - - //=== VK_VERSION_1_3 === - class PrivateDataSlot; - - //=== VK_KHR_surface === - class SurfaceKHR; - - //=== VK_KHR_swapchain === - class SwapchainKHR; - - //=== VK_KHR_display === - class DisplayKHR; - class DisplayModeKHR; - - //=== VK_EXT_debug_report === - class DebugReportCallbackEXT; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - class VideoSessionKHR; - class VideoSessionParametersKHR; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NVX_binary_import === - class CuModuleNVX; - class CuFunctionNVX; - - //=== VK_EXT_debug_utils === - class DebugUtilsMessengerEXT; - - //=== VK_KHR_acceleration_structure === - class AccelerationStructureKHR; - - //=== VK_EXT_validation_cache === - class ValidationCacheEXT; - - //=== VK_NV_ray_tracing === - class AccelerationStructureNV; - - //=== VK_INTEL_performance_query === - class PerformanceConfigurationINTEL; - - //=== VK_KHR_deferred_host_operations === - class DeferredOperationKHR; - - //=== VK_NV_device_generated_commands === - class IndirectCommandsLayoutNV; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - class BufferCollectionFUCHSIA; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //==================== - //=== RAII HANDLES === - //==================== - - class Context - { - public: -# if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL - Context() - : m_dispatcher( new VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::ContextDispatcher( - m_dynamicLoader.getProcAddress( "vkGetInstanceProcAddr" ) ) ) -# else - Context( PFN_vkGetInstanceProcAddr getInstanceProcAddr ) - : m_dispatcher( new VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::ContextDispatcher( getInstanceProcAddr ) ) -# endif - {} - - ~Context() = default; - - Context( Context const & ) = delete; - Context( Context && rhs ) VULKAN_HPP_NOEXCEPT -# if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL - : m_dynamicLoader( std::move( rhs.m_dynamicLoader ) ) - , m_dispatcher( rhs.m_dispatcher.release() ) -# else - : m_dispatcher( rhs.m_dispatcher.release() ) -# endif - {} - Context & operator=( Context const & ) = delete; - Context & operator =( Context && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { -# if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL - m_dynamicLoader = std::move( rhs.m_dynamicLoader ); -# endif - m_dispatcher.reset( rhs.m_dispatcher.release() ); - } - return *this; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Instance createInstance( - VULKAN_HPP_NAMESPACE::InstanceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD std::vector enumerateInstanceExtensionProperties( - Optional layerName VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const; - - VULKAN_HPP_NODISCARD std::vector enumerateInstanceLayerProperties() const; - - //=== VK_VERSION_1_1 === - - VULKAN_HPP_NODISCARD uint32_t enumerateInstanceVersion() const; - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::ContextDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return &*m_dispatcher; - } - - private: -# if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL - VULKAN_HPP_NAMESPACE::DynamicLoader m_dynamicLoader; -# endif - std::unique_ptr m_dispatcher; - }; - - class Instance - { - public: - using CType = VkInstance; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eInstance; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eInstance; - - public: - Instance( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Context const & context, - VULKAN_HPP_NAMESPACE::InstanceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_allocator( static_cast( allocator ) ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - context.getDispatcher()->vkCreateInstance( reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_instance ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateInstance" ); - } - m_dispatcher.reset( new VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher( - context.getDispatcher()->vkGetInstanceProcAddr, static_cast( m_instance ) ) ); - } - - Instance( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Context const & context, - VkInstance instance, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( instance ) - , m_allocator( static_cast( allocator ) ) - { - m_dispatcher.reset( new VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher( - context.getDispatcher()->vkGetInstanceProcAddr, static_cast( m_instance ) ) ); - } - - Instance( std::nullptr_t ) {} - - ~Instance() - { - if ( m_instance ) - { - getDispatcher()->vkDestroyInstance( static_cast( m_instance ), - reinterpret_cast( m_allocator ) ); - } - } - - Instance() = delete; - Instance( Instance const & ) = delete; - Instance( Instance && rhs ) VULKAN_HPP_NOEXCEPT - : m_instance( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( rhs.m_dispatcher.release() ) - {} - Instance & operator=( Instance const & ) = delete; - Instance & operator =( Instance && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_instance ) - { - getDispatcher()->vkDestroyInstance( static_cast( m_instance ), - reinterpret_cast( m_allocator ) ); - } - m_instance = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher.reset( rhs.m_dispatcher.release() ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Instance const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_instance; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return &*m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD std::vector enumeratePhysicalDevices() const; - - VULKAN_HPP_NODISCARD PFN_vkVoidFunction getProcAddr( const std::string & name ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_1 === - - VULKAN_HPP_NODISCARD std::vector - enumeratePhysicalDeviceGroups() const; - - //=== VK_KHR_display === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createDisplayPlaneSurfaceKHR( - VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createXlibSurfaceKHR( - VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createXcbSurfaceKHR( - VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createWaylandSurfaceKHR( - VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createAndroidSurfaceKHR( - VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createWin32SurfaceKHR( - VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DebugReportCallbackEXT createDebugReportCallbackEXT( - VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_, - uint64_t object, - size_t location, - int32_t messageCode, - const std::string & layerPrefix, - const std::string & message ) const VULKAN_HPP_NOEXCEPT; - -# if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createStreamDescriptorSurfaceGGP( - VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_GGP*/ - -# if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createViSurfaceNN( - VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_device_group_creation === - - VULKAN_HPP_NODISCARD std::vector - enumeratePhysicalDeviceGroupsKHR() const; - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createIOSSurfaceMVK( - VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createMacOSSurfaceMVK( - VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DebugUtilsMessengerEXT createDebugUtilsMessengerEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void submitDebugUtilsMessageEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT & callbackData ) const VULKAN_HPP_NOEXCEPT; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createImagePipeSurfaceFUCHSIA( - VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createMetalSurfaceEXT( - VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_EXT_headless_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createHeadlessSurfaceEXT( - VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createDirectFBSurfaceEXT( - VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR createScreenSurfaceQNX( - VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - private: - VULKAN_HPP_NAMESPACE::Instance m_instance = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - std::unique_ptr m_dispatcher; - }; - - class PhysicalDevice - { - public: - using CType = VkPhysicalDevice; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePhysicalDevice; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePhysicalDevice; - - public: - PhysicalDevice( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VkPhysicalDevice physicalDevice ) - : m_physicalDevice( physicalDevice ), m_dispatcher( instance.getDispatcher() ) - {} - - PhysicalDevice( std::nullptr_t ) {} - - PhysicalDevice() = delete; - PhysicalDevice( PhysicalDevice const & ) = delete; - PhysicalDevice( PhysicalDevice && rhs ) VULKAN_HPP_NOEXCEPT - : m_physicalDevice( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_physicalDevice, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - PhysicalDevice & operator=( PhysicalDevice const & ) = delete; - PhysicalDevice & operator =( PhysicalDevice && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - m_physicalDevice = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_physicalDevice, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::PhysicalDevice const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_physicalDevice; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures getFeatures() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::FormatProperties - getFormatProperties( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ImageFormatProperties getImageFormatProperties( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties getProperties() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties - getMemoryProperties() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Device createDevice( - VULKAN_HPP_NAMESPACE::DeviceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD std::vector enumerateDeviceExtensionProperties( - Optional layerName VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const; - - VULKAN_HPP_NODISCARD std::vector enumerateDeviceLayerProperties() const; - - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_1 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 getFeatures2() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getFeatures2() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 getProperties2() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getProperties2() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::FormatProperties2 - getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain - getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ImageFormatProperties2 - getImageFormatProperties2( const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const; - - template - VULKAN_HPP_NODISCARD StructureChain - getImageFormatProperties2( const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const; - - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD std::vector getQueueFamilyProperties2() const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - getMemoryProperties2() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getMemoryProperties2() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalBufferProperties getExternalBufferProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalFenceProperties getExternalFenceProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties getExternalSemaphoreProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_3 === - - VULKAN_HPP_NODISCARD std::vector getToolProperties() const; - - //=== VK_KHR_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 - getSurfaceSupportKHR( uint32_t queueFamilyIndex, VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR - getSurfaceCapabilitiesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const; - - VULKAN_HPP_NODISCARD std::vector - getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - VULKAN_HPP_NODISCARD std::vector getSurfacePresentModesKHR( - VULKAN_HPP_NAMESPACE::SurfaceKHR surface VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_KHR_swapchain === - - VULKAN_HPP_NODISCARD std::vector - getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const; - - //=== VK_KHR_display === - - VULKAN_HPP_NODISCARD std::vector getDisplayPropertiesKHR() const; - - VULKAN_HPP_NODISCARD std::vector - getDisplayPlanePropertiesKHR() const; - - VULKAN_HPP_NODISCARD std::vector - getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex ) const; - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 getXlibPresentationSupportKHR( - uint32_t queueFamilyIndex, Display & dpy, VisualID visualID ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 getXcbPresentationSupportKHR( - uint32_t queueFamilyIndex, xcb_connection_t & connection, xcb_visualid_t visual_id ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 - getWaylandPresentationSupportKHR( uint32_t queueFamilyIndex, - struct wl_display & display ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 - getWin32PresentationSupportKHR( uint32_t queueFamilyIndex ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR - getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile ) const; - - template - VULKAN_HPP_NODISCARD StructureChain - getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile ) const; - - VULKAN_HPP_NODISCARD std::vector getVideoFormatPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR & videoFormatInfo ) const; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NV_external_memory_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV getExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV externalHandleType - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_KHR_get_physical_device_properties2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 getFeatures2KHR() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getFeatures2KHR() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - getProperties2KHR() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getProperties2KHR() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::FormatProperties2 - getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain - getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ImageFormatProperties2 getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const; - - template - VULKAN_HPP_NODISCARD StructureChain getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const; - - VULKAN_HPP_NODISCARD std::vector - getQueueFamilyProperties2KHR() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD std::vector getQueueFamilyProperties2KHR() const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - getMemoryProperties2KHR() const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getMemoryProperties2KHR() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getSparseImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_external_memory_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalBufferProperties getExternalBufferPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_external_semaphore_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties getExternalSemaphorePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo ) const - VULKAN_HPP_NOEXCEPT; - -# if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - - void acquireXlibDisplayEXT( Display & dpy, VULKAN_HPP_NAMESPACE::DisplayKHR display ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DisplayKHR getRandROutputDisplayEXT( Display & dpy, - RROutput rrOutput ) const; -# endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT - getSurfaceCapabilities2EXT( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const; - - //=== VK_KHR_external_fence_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ExternalFenceProperties getExternalFencePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_performance_query === - - VULKAN_HPP_NODISCARD std::pair, std::vector> - enumerateQueueFamilyPerformanceQueryCountersKHR( uint32_t queueFamilyIndex ) const; - - VULKAN_HPP_NODISCARD uint32_t getQueueFamilyPerformanceQueryPassesKHR( - const VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR & performanceQueryCreateInfo ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_get_surface_capabilities2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR - getSurfaceCapabilities2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const; - - template - VULKAN_HPP_NODISCARD StructureChain - getSurfaceCapabilities2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const; - - VULKAN_HPP_NODISCARD std::vector - getSurfaceFormats2KHR( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const; - - //=== VK_KHR_get_display_properties2 === - - VULKAN_HPP_NODISCARD std::vector getDisplayProperties2KHR() const; - - VULKAN_HPP_NODISCARD std::vector - getDisplayPlaneProperties2KHR() const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR - getDisplayPlaneCapabilities2KHR( const VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR & displayPlaneInfo ) const; - - //=== VK_EXT_sample_locations === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT - getMultisamplePropertiesEXT( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_calibrated_timestamps === - - VULKAN_HPP_NODISCARD std::vector getCalibrateableTimeDomainsEXT() const; - - //=== VK_KHR_fragment_shading_rate === - - VULKAN_HPP_NODISCARD std::vector - getFragmentShadingRatesKHR() const; - - //=== VK_EXT_tooling_info === - - VULKAN_HPP_NODISCARD std::vector getToolPropertiesEXT() const; - - //=== VK_NV_cooperative_matrix === - - VULKAN_HPP_NODISCARD std::vector - getCooperativeMatrixPropertiesNV() const; - - //=== VK_NV_coverage_reduction_mode === - - VULKAN_HPP_NODISCARD std::vector - getSupportedFramebufferMixedSamplesCombinationsNV() const; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - VULKAN_HPP_NODISCARD std::vector - getSurfacePresentModes2EXT( const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_acquire_drm_display === - - void acquireDrmDisplayEXT( int32_t drmFd, VULKAN_HPP_NAMESPACE::DisplayKHR display ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DisplayKHR getDrmDisplayEXT( int32_t drmFd, - uint32_t connectorId ) const; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DisplayKHR getWinrtDisplayNV( uint32_t deviceRelativeId ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 - getDirectFBPresentationSupportEXT( uint32_t queueFamilyIndex, IDirectFB & dfb ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Bool32 - getScreenPresentationSupportQNX( uint32_t queueFamilyIndex, - struct _screen_window & window ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - private: - VULKAN_HPP_NAMESPACE::PhysicalDevice m_physicalDevice = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * m_dispatcher = nullptr; - }; - - class PhysicalDevices : public std::vector - { - public: - PhysicalDevices( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * dispatcher = - instance.getDispatcher(); - std::vector physicalDevices; - uint32_t physicalDeviceCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( dispatcher->vkEnumeratePhysicalDevices( - static_cast( *instance ), &physicalDeviceCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && physicalDeviceCount ) - { - physicalDevices.resize( physicalDeviceCount ); - result = static_cast( dispatcher->vkEnumeratePhysicalDevices( - static_cast( *instance ), &physicalDeviceCount, physicalDevices.data() ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceCount <= physicalDevices.size() ); - this->reserve( physicalDeviceCount ); - for ( auto const & physicalDevice : physicalDevices ) - { - this->emplace_back( instance, physicalDevice ); - } - } - else - { - throwResultException( result, "vkEnumeratePhysicalDevices" ); - } - } - - PhysicalDevices() = delete; - PhysicalDevices( PhysicalDevices const & ) = delete; - PhysicalDevices( PhysicalDevices && rhs ) = default; - PhysicalDevices & operator=( PhysicalDevices const & ) = delete; - PhysicalDevices & operator=( PhysicalDevices && rhs ) = default; - }; - - class Device - { - public: - using CType = VkDevice; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDevice; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDevice; - - public: - Device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - VULKAN_HPP_NAMESPACE::DeviceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_allocator( static_cast( allocator ) ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( physicalDevice.getDispatcher()->vkCreateDevice( - static_cast( *physicalDevice ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_device ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDevice" ); - } - m_dispatcher.reset( new VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher( - physicalDevice.getDispatcher()->vkGetDeviceProcAddr, static_cast( m_device ) ) ); - } - - Device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - VkDevice device, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( device ), m_allocator( static_cast( allocator ) ) - { - m_dispatcher.reset( new VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher( - physicalDevice.getDispatcher()->vkGetDeviceProcAddr, static_cast( m_device ) ) ); - } - - Device( std::nullptr_t ) {} - - ~Device() - { - if ( m_device ) - { - getDispatcher()->vkDestroyDevice( static_cast( m_device ), - reinterpret_cast( m_allocator ) ); - } - } - - Device() = delete; - Device( Device const & ) = delete; - Device( Device && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( rhs.m_dispatcher.release() ) - {} - Device & operator=( Device const & ) = delete; - Device & operator =( Device && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_device ) - { - getDispatcher()->vkDestroyDevice( static_cast( m_device ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher.reset( rhs.m_dispatcher.release() ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Device const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return &*m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD PFN_vkVoidFunction getProcAddr( const std::string & name ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Queue getQueue( uint32_t queueFamilyIndex, - uint32_t queueIndex ) const; - - void waitIdle() const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DeviceMemory allocateMemory( - VULKAN_HPP_NAMESPACE::MemoryAllocateInfo const & allocateInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void - flushMappedMemoryRanges( ArrayProxy const & memoryRanges ) const; - - void invalidateMappedMemoryRanges( - ArrayProxy const & memoryRanges ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Fence createFence( - VULKAN_HPP_NAMESPACE::FenceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void resetFences( ArrayProxy const & fences ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result - waitForFences( ArrayProxy const & fences, - VULKAN_HPP_NAMESPACE::Bool32 waitAll, - uint64_t timeout ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Semaphore createSemaphore( - VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Event createEvent( - VULKAN_HPP_NAMESPACE::EventCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::QueryPool createQueryPool( - VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Buffer createBuffer( - VULKAN_HPP_NAMESPACE::BufferCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::BufferView createBufferView( - VULKAN_HPP_NAMESPACE::BufferViewCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Image createImage( - VULKAN_HPP_NAMESPACE::ImageCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::ImageView createImageView( - VULKAN_HPP_NAMESPACE::ImageViewCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::ShaderModule createShaderModule( - VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::PipelineCache createPipelineCache( - VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD std::vector createGraphicsPipelines( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Pipeline createGraphicsPipeline( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD std::vector createComputePipelines( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Pipeline createComputePipeline( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::PipelineLayout createPipelineLayout( - VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Sampler createSampler( - VULKAN_HPP_NAMESPACE::SamplerCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DescriptorSetLayout createDescriptorSetLayout( - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DescriptorPool createDescriptorPool( - VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD std::vector - allocateDescriptorSets( VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo const & allocateInfo ) const; - - void updateDescriptorSets( - ArrayProxy const & descriptorWrites, - ArrayProxy const & descriptorCopies ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Framebuffer createFramebuffer( - VULKAN_HPP_NAMESPACE::FramebufferCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::RenderPass createRenderPass( - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::CommandPool createCommandPool( - VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD std::vector - allocateCommandBuffers( VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo const & allocateInfo ) const; - - //=== VK_VERSION_1_1 === - - void bindBufferMemory2( ArrayProxy const & bindInfos ) const; - - void bindImageMemory2( ArrayProxy const & bindInfos ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags getGroupPeerMemoryFeatures( - uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info ) const - VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Queue - getQueue2( VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 const & queueInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SamplerYcbcrConversion createSamplerYcbcrConversion( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DescriptorUpdateTemplate createDescriptorUpdateTemplate( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport getDescriptorSetLayoutSupport( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getDescriptorSetLayoutSupport( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::RenderPass createRenderPass2( - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result - waitSemaphores( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, uint64_t timeout ) const; - - void signalSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceAddress - getBufferAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD uint64_t getBufferOpaqueCaptureAddress( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD uint64_t getMemoryOpaqueCaptureAddress( - const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_3 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::PrivateDataSlot createPrivateDataSlot( - VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void setPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data ) const; - - VULKAN_HPP_NODISCARD uint64_t - getPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_swapchain === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SwapchainKHR createSwapchainKHR( - VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR - getGroupPresentCapabilitiesKHR() const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR - getGroupSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const; - - VULKAN_HPP_NODISCARD std::pair - acquireNextImage2KHR( const VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR & acquireInfo ) const; - - //=== VK_KHR_display_swapchain === - - VULKAN_HPP_NODISCARD std::vector createSharedSwapchainsKHR( - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SwapchainKHR createSharedSwapchainKHR( - VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_EXT_debug_marker === - - void debugMarkerSetObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT & tagInfo ) const; - - void debugMarkerSetObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT & nameInfo ) const; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::VideoSessionKHR createVideoSessionKHR( - VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::VideoSessionParametersKHR createVideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_NVX_binary_import === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::CuModuleNVX createCuModuleNVX( - VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::CuFunctionNVX createCuFunctionNVX( - VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_NVX_image_view_handle === - - VULKAN_HPP_NODISCARD uint32_t - getImageViewHandleNVX( const VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX & info ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_device_group === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags getGroupPeerMemoryFeaturesKHR( - uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex ) const VULKAN_HPP_NOEXCEPT; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - - VULKAN_HPP_NODISCARD HANDLE - getMemoryWin32HandleKHR( const VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR & getWin32HandleInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR - getMemoryWin32HandlePropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - - VULKAN_HPP_NODISCARD int getMemoryFdKHR( const VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR & getFdInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR - getMemoryFdPropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, int fd ) const; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - - void importSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR & importSemaphoreWin32HandleInfo ) const; - - VULKAN_HPP_NODISCARD HANDLE getSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR & getWin32HandleInfo ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - - void importSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR & importSemaphoreFdInfo ) const; - - VULKAN_HPP_NODISCARD int getSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR & getFdInfo ) const; - - //=== VK_KHR_descriptor_update_template === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DescriptorUpdateTemplate createDescriptorUpdateTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void destroyDescriptorUpdateTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_display_control === - - void displayPowerControlEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT & displayPowerInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Fence registerEventEXT( - VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT const & deviceEventInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Fence registerDisplayEventEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DisplayKHR const & display, - VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT const & displayEventInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_EXT_hdr_metadata === - - void setHdrMetadataEXT( ArrayProxy const & swapchains, - ArrayProxy const & metadata ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - //=== VK_KHR_create_renderpass2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::RenderPass createRenderPass2KHR( - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - - void importFenceWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR & importFenceWin32HandleInfo ) const; - - VULKAN_HPP_NODISCARD HANDLE - getFenceWin32HandleKHR( const VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR & getWin32HandleInfo ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - - void importFenceFdKHR( const VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR & importFenceFdInfo ) const; - - VULKAN_HPP_NODISCARD int getFenceFdKHR( const VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR & getFdInfo ) const; - - //=== VK_KHR_performance_query === - - void acquireProfilingLockKHR( const VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR & info ) const; - - void releaseProfilingLockKHR() const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_debug_utils === - - void setDebugUtilsObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT & nameInfo ) const; - - void setDebugUtilsObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT & tagInfo ) const; - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID - getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer ) const; - - template - VULKAN_HPP_NODISCARD StructureChain - getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer ) const; - - VULKAN_HPP_NODISCARD struct AHardwareBuffer * getMemoryAndroidHardwareBufferANDROID( - const VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID & info ) const; -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_KHR_get_memory_requirements2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_acceleration_structure === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::AccelerationStructureKHR createAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result buildAccelerationStructuresKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - ArrayProxy const & infos, - ArrayProxy const & - pBuildRangeInfos ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result - copyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result copyAccelerationStructureToMemoryKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result copyMemoryToAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info ) const; - - template - VULKAN_HPP_NODISCARD std::vector writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t dataSize, - size_t stride ) const; - - template - VULKAN_HPP_NODISCARD DataType writeAccelerationStructuresPropertyKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t stride ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceAddress getAccelerationStructureAddressKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR - getAccelerationStructureCompatibilityKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR & versionInfo ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR - getAccelerationStructureBuildSizesKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildTypeKHR buildType, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR & buildInfo, - ArrayProxy const & maxPrimitiveCounts VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_sampler_ycbcr_conversion === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::SamplerYcbcrConversion createSamplerYcbcrConversionKHR( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void destroySamplerYcbcrConversionKHR( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_bind_memory2 === - - void bindBufferMemory2KHR( ArrayProxy const & bindInfos ) const; - - void bindImageMemory2KHR( ArrayProxy const & bindInfos ) const; - - //=== VK_EXT_validation_cache === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::ValidationCacheEXT createValidationCacheEXT( - VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_NV_ray_tracing === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::AccelerationStructureNV createAccelerationStructureNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT; - - void bindAccelerationStructureMemoryNV( - ArrayProxy const & bindInfos ) const; - - VULKAN_HPP_NODISCARD std::vector createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Pipeline createRayTracingPipelineNV( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_KHR_maintenance3 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport getDescriptorSetLayoutSupportKHR( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getDescriptorSetLayoutSupportKHR( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_external_memory_host === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT - getMemoryHostPointerPropertiesEXT( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer ) const; - - //=== VK_EXT_calibrated_timestamps === - - VULKAN_HPP_NODISCARD std::pair, uint64_t> getCalibratedTimestampsEXT( - ArrayProxy const & timestampInfos ) const; - - VULKAN_HPP_NODISCARD std::pair - getCalibratedTimestampEXT( const VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT & timestampInfo ) const; - - //=== VK_KHR_timeline_semaphore === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result - waitSemaphoresKHR( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, uint64_t timeout ) const; - - void signalSemaphoreKHR( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo ) const; - - //=== VK_INTEL_performance_query === - - void initializePerformanceApiINTEL( - const VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL & initializeInfo ) const; - - void uninitializePerformanceApiINTEL() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::PerformanceConfigurationINTEL - acquirePerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL const & acquireInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::PerformanceValueINTEL - getPerformanceParameterINTEL( VULKAN_HPP_NAMESPACE::PerformanceParameterTypeINTEL parameter ) const; - - //=== VK_EXT_buffer_device_address === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceAddress - getBufferAddressEXT( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR getGroupSurfacePresentModes2EXT( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_buffer_device_address === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceAddress - getBufferAddressKHR( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD uint64_t getBufferOpaqueCaptureAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD uint64_t getMemoryOpaqueCaptureAddressKHR( - const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_deferred_host_operations === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR createDeferredOperationKHR( - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_KHR_pipeline_executable_properties === - - VULKAN_HPP_NODISCARD std::vector - getPipelineExecutablePropertiesKHR( const VULKAN_HPP_NAMESPACE::PipelineInfoKHR & pipelineInfo ) const; - - VULKAN_HPP_NODISCARD std::vector - getPipelineExecutableStatisticsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo ) const; - - VULKAN_HPP_NODISCARD std::vector - getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo ) const; - - //=== VK_NV_device_generated_commands === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::IndirectCommandsLayoutNV createIndirectCommandsLayoutNV( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_EXT_private_data === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::PrivateDataSlot createPrivateDataSlotEXT( - VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - void destroyPrivateDataSlotEXT( VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - Optional allocator - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - void setPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data ) const; - - VULKAN_HPP_NODISCARD uint64_t - getPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_ray_tracing_pipeline === - - VULKAN_HPP_NODISCARD std::vector createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::Optional< - const VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR> const & deferredOperation, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::Pipeline createRayTracingPipelineKHR( - VULKAN_HPP_NAMESPACE::Optional< - const VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR> const & deferredOperation, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - - VULKAN_HPP_NODISCARD zx_handle_t getMemoryZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA & getZirconHandleInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA - getMemoryZirconHandlePropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle ) const; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - - void importSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA & importSemaphoreZirconHandleInfo ) const; - - VULKAN_HPP_NODISCARD zx_handle_t getSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA & getZirconHandleInfo ) const; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::BufferCollectionFUCHSIA createBufferCollectionFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_NV_external_memory_rdma === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::RemoteAddressNV getMemoryRemoteAddressNV( - const VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV & memoryGetRemoteAddressInfo ) const; - - //=== VK_KHR_maintenance4 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getBufferMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getBufferMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements2 getImageMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - template - VULKAN_HPP_NODISCARD StructureChain getImageMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getImageSparseMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const - VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - std::unique_ptr m_dispatcher; - }; - - class AccelerationStructureKHR - { - public: - using CType = VkAccelerationStructureKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eAccelerationStructureKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eAccelerationStructureKHR; - - public: - AccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateAccelerationStructureKHR( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_accelerationStructure ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateAccelerationStructureKHR" ); - } - } - - AccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkAccelerationStructureKHR accelerationStructure, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_accelerationStructure( accelerationStructure ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - AccelerationStructureKHR( std::nullptr_t ) {} - - ~AccelerationStructureKHR() - { - if ( m_accelerationStructure ) - { - getDispatcher()->vkDestroyAccelerationStructureKHR( - static_cast( m_device ), - static_cast( m_accelerationStructure ), - reinterpret_cast( m_allocator ) ); - } - } - - AccelerationStructureKHR() = delete; - AccelerationStructureKHR( AccelerationStructureKHR const & ) = delete; - AccelerationStructureKHR( AccelerationStructureKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_accelerationStructure( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_accelerationStructure, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - AccelerationStructureKHR & operator=( AccelerationStructureKHR const & ) = delete; - AccelerationStructureKHR & operator=( AccelerationStructureKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_accelerationStructure ) - { - getDispatcher()->vkDestroyAccelerationStructureKHR( - static_cast( m_device ), - static_cast( m_accelerationStructure ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_accelerationStructure = - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_accelerationStructure, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructure; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR m_accelerationStructure = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class AccelerationStructureNV - { - public: - using CType = VkAccelerationStructureNV; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eAccelerationStructureNV; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eAccelerationStructureNV; - - public: - AccelerationStructureNV( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateAccelerationStructureNV( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_accelerationStructure ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateAccelerationStructureNV" ); - } - } - - AccelerationStructureNV( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkAccelerationStructureNV accelerationStructure, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_accelerationStructure( accelerationStructure ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - AccelerationStructureNV( std::nullptr_t ) {} - - ~AccelerationStructureNV() - { - if ( m_accelerationStructure ) - { - getDispatcher()->vkDestroyAccelerationStructureNV( - static_cast( m_device ), - static_cast( m_accelerationStructure ), - reinterpret_cast( m_allocator ) ); - } - } - - AccelerationStructureNV() = delete; - AccelerationStructureNV( AccelerationStructureNV const & ) = delete; - AccelerationStructureNV( AccelerationStructureNV && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_accelerationStructure( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_accelerationStructure, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - AccelerationStructureNV & operator=( AccelerationStructureNV const & ) = delete; - AccelerationStructureNV & operator=( AccelerationStructureNV && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_accelerationStructure ) - { - getDispatcher()->vkDestroyAccelerationStructureNV( - static_cast( m_device ), - static_cast( m_accelerationStructure ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_accelerationStructure = - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_accelerationStructure, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::AccelerationStructureNV const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_accelerationStructure; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_NV_ray_tracing === - - template - VULKAN_HPP_NODISCARD std::vector getHandle( size_t dataSize ) const; - - template - VULKAN_HPP_NODISCARD DataType getHandle() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureNV m_accelerationStructure = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Buffer - { - public: - using CType = VkBuffer; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eBuffer; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBuffer; - - public: - Buffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::BufferCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateBuffer( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_buffer ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateBuffer" ); - } - } - - Buffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkBuffer buffer, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_buffer( buffer ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Buffer( std::nullptr_t ) {} - - ~Buffer() - { - if ( m_buffer ) - { - getDispatcher()->vkDestroyBuffer( static_cast( m_device ), - static_cast( m_buffer ), - reinterpret_cast( m_allocator ) ); - } - } - - Buffer() = delete; - Buffer( Buffer const & ) = delete; - Buffer( Buffer && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_buffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_buffer, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Buffer & operator=( Buffer const & ) = delete; - Buffer & operator =( Buffer && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_buffer ) - { - getDispatcher()->vkDestroyBuffer( static_cast( m_device ), - static_cast( m_buffer ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_buffer = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_buffer, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Buffer const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_buffer; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - void bindMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements getMemoryRequirements() const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Buffer m_buffer = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - class BufferCollectionFUCHSIA - { - public: - using CType = VkBufferCollectionFUCHSIA; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eBufferCollectionFUCHSIA; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferCollectionFUCHSIA; - - public: - BufferCollectionFUCHSIA( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateBufferCollectionFUCHSIA( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_collection ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateBufferCollectionFUCHSIA" ); - } - } - - BufferCollectionFUCHSIA( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkBufferCollectionFUCHSIA collection, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_collection( collection ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - BufferCollectionFUCHSIA( std::nullptr_t ) {} - - ~BufferCollectionFUCHSIA() - { - if ( m_collection ) - { - getDispatcher()->vkDestroyBufferCollectionFUCHSIA( - static_cast( m_device ), - static_cast( m_collection ), - reinterpret_cast( m_allocator ) ); - } - } - - BufferCollectionFUCHSIA() = delete; - BufferCollectionFUCHSIA( BufferCollectionFUCHSIA const & ) = delete; - BufferCollectionFUCHSIA( BufferCollectionFUCHSIA && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_collection( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_collection, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - BufferCollectionFUCHSIA & operator=( BufferCollectionFUCHSIA const & ) = delete; - BufferCollectionFUCHSIA & operator=( BufferCollectionFUCHSIA && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_collection ) - { - getDispatcher()->vkDestroyBufferCollectionFUCHSIA( - static_cast( m_device ), - static_cast( m_collection ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_collection = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_collection, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_collection; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_FUCHSIA_buffer_collection === - - void setImageConstraints( const VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA & imageConstraintsInfo ) const; - - void - setBufferConstraints( const VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA & bufferConstraintsInfo ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA getProperties() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA m_collection = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - class BufferView - { - public: - using CType = VkBufferView; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eBufferView; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferView; - - public: - BufferView( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::BufferViewCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateBufferView( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_bufferView ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateBufferView" ); - } - } - - BufferView( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkBufferView bufferView, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_bufferView( bufferView ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - BufferView( std::nullptr_t ) {} - - ~BufferView() - { - if ( m_bufferView ) - { - getDispatcher()->vkDestroyBufferView( static_cast( m_device ), - static_cast( m_bufferView ), - reinterpret_cast( m_allocator ) ); - } - } - - BufferView() = delete; - BufferView( BufferView const & ) = delete; - BufferView( BufferView && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_bufferView( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_bufferView, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - BufferView & operator=( BufferView const & ) = delete; - BufferView & operator =( BufferView && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_bufferView ) - { - getDispatcher()->vkDestroyBufferView( static_cast( m_device ), - static_cast( m_bufferView ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_bufferView = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_bufferView, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::BufferView const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_bufferView; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::BufferView m_bufferView = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class CommandPool - { - public: - using CType = VkCommandPool; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCommandPool; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandPool; - - public: - CommandPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateCommandPool( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_commandPool ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateCommandPool" ); - } - } - - CommandPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkCommandPool commandPool, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_commandPool( commandPool ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - CommandPool( std::nullptr_t ) {} - - ~CommandPool() - { - if ( m_commandPool ) - { - getDispatcher()->vkDestroyCommandPool( static_cast( m_device ), - static_cast( m_commandPool ), - reinterpret_cast( m_allocator ) ); - } - } - - CommandPool() = delete; - CommandPool( CommandPool const & ) = delete; - CommandPool( CommandPool && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_commandPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_commandPool, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - CommandPool & operator=( CommandPool const & ) = delete; - CommandPool & operator =( CommandPool && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_commandPool ) - { - getDispatcher()->vkDestroyCommandPool( static_cast( m_device ), - static_cast( m_commandPool ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_commandPool = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_commandPool, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::CommandPool const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_commandPool; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - void reset( VULKAN_HPP_NAMESPACE::CommandPoolResetFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_VERSION_1_1 === - - void trim( VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_maintenance1 === - - void trimKHR( VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::CommandPool m_commandPool = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class CommandBuffer - { - public: - using CType = VkCommandBuffer; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCommandBuffer; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandBuffer; - - public: - CommandBuffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkCommandBuffer commandBuffer, - VkCommandPool commandPool ) - : m_device( *device ) - , m_commandPool( commandPool ) - , m_commandBuffer( commandBuffer ) - , m_dispatcher( device.getDispatcher() ) - {} - - CommandBuffer( std::nullptr_t ) {} - - ~CommandBuffer() - { - if ( m_commandBuffer ) - { - getDispatcher()->vkFreeCommandBuffers( static_cast( m_device ), - static_cast( m_commandPool ), - 1, - reinterpret_cast( &m_commandBuffer ) ); - } - } - - CommandBuffer() = delete; - CommandBuffer( CommandBuffer const & ) = delete; - CommandBuffer( CommandBuffer && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_commandPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_commandPool, {} ) ) - , m_commandBuffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_commandBuffer, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - CommandBuffer & operator=( CommandBuffer const & ) = delete; - CommandBuffer & operator =( CommandBuffer && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_commandBuffer ) - { - getDispatcher()->vkFreeCommandBuffers( static_cast( m_device ), - static_cast( m_commandPool ), - 1, - reinterpret_cast( &m_commandBuffer ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_commandPool = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_commandPool, {} ); - m_commandBuffer = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_commandBuffer, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::CommandBuffer const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_commandBuffer; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - void begin( const VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo & beginInfo ) const; - - void end() const; - - void reset( VULKAN_HPP_NAMESPACE::CommandBufferResetFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - void bindPipeline( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline ) const VULKAN_HPP_NOEXCEPT; - - void setViewport( uint32_t firstViewport, - ArrayProxy const & viewports ) const VULKAN_HPP_NOEXCEPT; - - void setScissor( uint32_t firstScissor, - ArrayProxy const & scissors ) const VULKAN_HPP_NOEXCEPT; - - void setLineWidth( float lineWidth ) const VULKAN_HPP_NOEXCEPT; - - void setDepthBias( float depthBiasConstantFactor, - float depthBiasClamp, - float depthBiasSlopeFactor ) const VULKAN_HPP_NOEXCEPT; - - void setBlendConstants( const float blendConstants[4] ) const VULKAN_HPP_NOEXCEPT; - - void setDepthBounds( float minDepthBounds, float maxDepthBounds ) const VULKAN_HPP_NOEXCEPT; - - void setStencilCompareMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t compareMask ) const VULKAN_HPP_NOEXCEPT; - - void setStencilWriteMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t writeMask ) const VULKAN_HPP_NOEXCEPT; - - void setStencilReference( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t reference ) const VULKAN_HPP_NOEXCEPT; - - void bindDescriptorSets( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t firstSet, - ArrayProxy const & descriptorSets, - ArrayProxy const & dynamicOffsets ) const VULKAN_HPP_NOEXCEPT; - - void bindIndexBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::IndexType indexType ) const VULKAN_HPP_NOEXCEPT; - - void bindVertexBuffers( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void draw( uint32_t vertexCount, - uint32_t instanceCount, - uint32_t firstVertex, - uint32_t firstInstance ) const VULKAN_HPP_NOEXCEPT; - - void drawIndexed( uint32_t indexCount, - uint32_t instanceCount, - uint32_t firstIndex, - int32_t vertexOffset, - uint32_t firstInstance ) const VULKAN_HPP_NOEXCEPT; - - void drawIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void drawIndexedIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void dispatch( uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT; - - void dispatchIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset ) const VULKAN_HPP_NOEXCEPT; - - void copyBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT; - - void copyImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT; - - void blitImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - VULKAN_HPP_NAMESPACE::Filter filter ) const VULKAN_HPP_NOEXCEPT; - - void copyBufferToImage( VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions ) const - VULKAN_HPP_NOEXCEPT; - - void copyImageToBuffer( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions ) const - VULKAN_HPP_NOEXCEPT; - - template - void updateBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - ArrayProxy const & data ) const VULKAN_HPP_NOEXCEPT; - - void fillBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - uint32_t data ) const VULKAN_HPP_NOEXCEPT; - - void clearColorImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearColorValue & color, - ArrayProxy const & ranges ) const - VULKAN_HPP_NOEXCEPT; - - void clearDepthStencilImage( VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearDepthStencilValue & depthStencil, - ArrayProxy const & ranges ) const - VULKAN_HPP_NOEXCEPT; - - void - clearAttachments( ArrayProxy const & attachments, - ArrayProxy const & rects ) const VULKAN_HPP_NOEXCEPT; - - void - resolveImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT; - - void setEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - void resetEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - void waitEvents( ArrayProxy const & events, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers ) const - VULKAN_HPP_NOEXCEPT; - - void pipelineBarrier( VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers ) - const VULKAN_HPP_NOEXCEPT; - - void beginQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - void endQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, uint32_t query ) const VULKAN_HPP_NOEXCEPT; - - void resetQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT; - - void writeTimestamp( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT; - - void copyQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - template - void pushConstants( VULKAN_HPP_NAMESPACE::PipelineLayout layout, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags, - uint32_t offset, - ArrayProxy const & values ) const VULKAN_HPP_NOEXCEPT; - - void beginRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - VULKAN_HPP_NAMESPACE::SubpassContents contents ) const VULKAN_HPP_NOEXCEPT; - - void nextSubpass( VULKAN_HPP_NAMESPACE::SubpassContents contents ) const VULKAN_HPP_NOEXCEPT; - - void endRenderPass() const VULKAN_HPP_NOEXCEPT; - - void executeCommands( ArrayProxy const & commandBuffers ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_1 === - - void setDeviceMask( uint32_t deviceMask ) const VULKAN_HPP_NOEXCEPT; - - void dispatchBase( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_2 === - - void drawIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void drawIndexedIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void - beginRenderPass2( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo ) const VULKAN_HPP_NOEXCEPT; - - void nextSubpass2( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT; - - void endRenderPass2( const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_VERSION_1_3 === - - void setEvent2( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT; - - void resetEvent2( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - void waitEvents2( ArrayProxy const & events, - ArrayProxy const & dependencyInfos ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void pipelineBarrier2( const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT; - - void writeTimestamp2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT; - - void copyBuffer2( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo ) const VULKAN_HPP_NOEXCEPT; - - void copyImage2( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo ) const VULKAN_HPP_NOEXCEPT; - - void copyBufferToImage2( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo ) const - VULKAN_HPP_NOEXCEPT; - - void copyImageToBuffer2( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo ) const - VULKAN_HPP_NOEXCEPT; - - void blitImage2( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo ) const VULKAN_HPP_NOEXCEPT; - - void resolveImage2( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo ) const VULKAN_HPP_NOEXCEPT; - - void beginRendering( const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo ) const VULKAN_HPP_NOEXCEPT; - - void endRendering() const VULKAN_HPP_NOEXCEPT; - - void setCullMode( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - void setFrontFace( VULKAN_HPP_NAMESPACE::FrontFace frontFace ) const VULKAN_HPP_NOEXCEPT; - - void setPrimitiveTopology( VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology ) const VULKAN_HPP_NOEXCEPT; - - void setViewportWithCount( ArrayProxy const & viewports ) const - VULKAN_HPP_NOEXCEPT; - - void setScissorWithCount( ArrayProxy const & scissors ) const - VULKAN_HPP_NOEXCEPT; - - void bindVertexBuffers2( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - ArrayProxy const & strides - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void setDepthTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable ) const VULKAN_HPP_NOEXCEPT; - - void setDepthWriteEnable( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable ) const VULKAN_HPP_NOEXCEPT; - - void setDepthCompareOp( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp ) const VULKAN_HPP_NOEXCEPT; - - void setDepthBoundsTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable ) const VULKAN_HPP_NOEXCEPT; - - void setStencilTestEnable( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable ) const VULKAN_HPP_NOEXCEPT; - - void setStencilOp( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp ) const VULKAN_HPP_NOEXCEPT; - - void setRasterizerDiscardEnable( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable ) const VULKAN_HPP_NOEXCEPT; - - void setDepthBiasEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable ) const VULKAN_HPP_NOEXCEPT; - - void setPrimitiveRestartEnable( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_debug_marker === - - void debugMarkerBeginEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo ) const - VULKAN_HPP_NOEXCEPT; - - void debugMarkerEndEXT() const VULKAN_HPP_NOEXCEPT; - - void debugMarkerInsertEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo ) const - VULKAN_HPP_NOEXCEPT; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - void beginVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR & beginInfo ) const - VULKAN_HPP_NOEXCEPT; - - void endVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR & endCodingInfo ) const - VULKAN_HPP_NOEXCEPT; - - void controlVideoCodingKHR( const VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR & codingControlInfo ) const - VULKAN_HPP_NOEXCEPT; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - void decodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR & frameInfo ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - void bindTransformFeedbackBuffersEXT( uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void beginTransformFeedbackEXT( uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void endTransformFeedbackEXT( uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void beginQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags, - uint32_t index ) const VULKAN_HPP_NOEXCEPT; - - void endQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - uint32_t index ) const VULKAN_HPP_NOEXCEPT; - - void drawIndirectByteCountEXT( uint32_t instanceCount, - uint32_t firstInstance, - VULKAN_HPP_NAMESPACE::Buffer counterBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize counterBufferOffset, - uint32_t counterOffset, - uint32_t vertexStride ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NVX_binary_import === - - void cuLaunchKernelNVX( const VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX & launchInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_AMD_draw_indirect_count === - - void drawIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void drawIndexedIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_dynamic_rendering === - - void beginRenderingKHR( const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo ) const VULKAN_HPP_NOEXCEPT; - - void endRenderingKHR() const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_device_group === - - void setDeviceMaskKHR( uint32_t deviceMask ) const VULKAN_HPP_NOEXCEPT; - - void dispatchBaseKHR( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_push_descriptor === - - void pushDescriptorSetKHR( - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - ArrayProxy const & descriptorWrites ) const VULKAN_HPP_NOEXCEPT; - - template - void pushDescriptorSetWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - DataType const & data ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_conditional_rendering === - - void beginConditionalRenderingEXT( const VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT & - conditionalRenderingBegin ) const VULKAN_HPP_NOEXCEPT; - - void endConditionalRenderingEXT() const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_clip_space_w_scaling === - - void setViewportWScalingNV( uint32_t firstViewport, - ArrayProxy const & viewportWScalings ) - const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_discard_rectangles === - - void setDiscardRectangleEXT( uint32_t firstDiscardRectangle, - ArrayProxy const & discardRectangles ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_create_renderpass2 === - - void beginRenderPass2KHR( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo ) const - VULKAN_HPP_NOEXCEPT; - - void nextSubpass2KHR( const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT; - - void endRenderPass2KHR( const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_debug_utils === - - void - beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const VULKAN_HPP_NOEXCEPT; - - void endDebugUtilsLabelEXT() const VULKAN_HPP_NOEXCEPT; - - void insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_sample_locations === - - void setSampleLocationsEXT( const VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT & sampleLocationsInfo ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_acceleration_structure === - - void buildAccelerationStructuresKHR( - ArrayProxy const & infos, - ArrayProxy const & - pBuildRangeInfos ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void buildAccelerationStructuresIndirectKHR( - ArrayProxy const & infos, - ArrayProxy const & indirectDeviceAddresses, - ArrayProxy const & indirectStrides, - ArrayProxy const & pMaxPrimitiveCounts ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void copyAccelerationStructureKHR( const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info ) const - VULKAN_HPP_NOEXCEPT; - - void copyAccelerationStructureToMemoryKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info ) const VULKAN_HPP_NOEXCEPT; - - void copyMemoryToAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info ) const VULKAN_HPP_NOEXCEPT; - - void writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_shading_rate_image === - - void bindShadingRateImageNV( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout ) const VULKAN_HPP_NOEXCEPT; - - void setViewportShadingRatePaletteNV( uint32_t firstViewport, - ArrayProxy const & - shadingRatePalettes ) const VULKAN_HPP_NOEXCEPT; - - void setCoarseSampleOrderNV( VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType, - ArrayProxy const & - customSampleOrders ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_ray_tracing === - - void buildAccelerationStructureNV( const VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV & info, - VULKAN_HPP_NAMESPACE::Buffer instanceData, - VULKAN_HPP_NAMESPACE::DeviceSize instanceOffset, - VULKAN_HPP_NAMESPACE::Bool32 update, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::Buffer scratch, - VULKAN_HPP_NAMESPACE::DeviceSize scratchOffset ) const VULKAN_HPP_NOEXCEPT; - - void copyAccelerationStructureNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode ) const - VULKAN_HPP_NOEXCEPT; - - void traceRaysNV( VULKAN_HPP_NAMESPACE::Buffer raygenShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize raygenShaderBindingOffset, - VULKAN_HPP_NAMESPACE::Buffer missShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer hitShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer callableShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingStride, - uint32_t width, - uint32_t height, - uint32_t depth ) const VULKAN_HPP_NOEXCEPT; - - void writeAccelerationStructuresPropertiesNV( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_draw_indirect_count === - - void drawIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void drawIndexedIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_AMD_buffer_marker === - - void writeBufferMarkerAMD( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_mesh_shader === - - void drawMeshTasksNV( uint32_t taskCount, uint32_t firstTask ) const VULKAN_HPP_NOEXCEPT; - - void drawMeshTasksIndirectNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void drawMeshTasksIndirectCountNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_scissor_exclusive === - - void setExclusiveScissorNV( uint32_t firstExclusiveScissor, - ArrayProxy const & exclusiveScissors ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_device_diagnostic_checkpoints === - - template - void setCheckpointNV( CheckpointMarkerType const & checkpointMarker ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_INTEL_performance_query === - - void setPerformanceMarkerINTEL( const VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL & markerInfo ) const; - - void setPerformanceStreamMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL & markerInfo ) const; - - void setPerformanceOverrideINTEL( const VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL & overrideInfo ) const; - - //=== VK_KHR_fragment_shading_rate === - - void setFragmentShadingRateKHR( - const VULKAN_HPP_NAMESPACE::Extent2D & fragmentSize, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2] ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_line_rasterization === - - void setLineStippleEXT( uint32_t lineStippleFactor, uint16_t lineStipplePattern ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_extended_dynamic_state === - - void setCullModeEXT( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - void setFrontFaceEXT( VULKAN_HPP_NAMESPACE::FrontFace frontFace ) const VULKAN_HPP_NOEXCEPT; - - void - setPrimitiveTopologyEXT( VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology ) const VULKAN_HPP_NOEXCEPT; - - void setViewportWithCountEXT( ArrayProxy const & viewports ) const - VULKAN_HPP_NOEXCEPT; - - void setScissorWithCountEXT( ArrayProxy const & scissors ) const - VULKAN_HPP_NOEXCEPT; - - void bindVertexBuffers2EXT( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT, - ArrayProxy const & strides - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void setDepthTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable ) const VULKAN_HPP_NOEXCEPT; - - void setDepthWriteEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable ) const VULKAN_HPP_NOEXCEPT; - - void setDepthCompareOpEXT( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp ) const VULKAN_HPP_NOEXCEPT; - - void setDepthBoundsTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable ) const VULKAN_HPP_NOEXCEPT; - - void setStencilTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable ) const VULKAN_HPP_NOEXCEPT; - - void setStencilOpEXT( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_device_generated_commands === - - void preprocessGeneratedCommandsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo ) const VULKAN_HPP_NOEXCEPT; - - void executeGeneratedCommandsNV( - VULKAN_HPP_NAMESPACE::Bool32 isPreprocessed, - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo ) const VULKAN_HPP_NOEXCEPT; - - void bindPipelineShaderGroupNV( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t groupIndex ) const VULKAN_HPP_NOEXCEPT; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - void encodeVideoKHR( const VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR & encodeInfo ) const VULKAN_HPP_NOEXCEPT; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - - void setEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT; - - void resetEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask - VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - void waitEvents2KHR( ArrayProxy const & events, - ArrayProxy const & dependencyInfos ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS; - - void pipelineBarrier2KHR( const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT; - - void writeTimestamp2KHR( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT; - - void writeBufferMarker2AMD( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_fragment_shading_rate_enums === - - void setFragmentShadingRateEnumNV( - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2] ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_copy_commands2 === - - void copyBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo ) const VULKAN_HPP_NOEXCEPT; - - void copyImage2KHR( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo ) const VULKAN_HPP_NOEXCEPT; - - void copyBufferToImage2KHR( const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo ) const - VULKAN_HPP_NOEXCEPT; - - void copyImageToBuffer2KHR( const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo ) const - VULKAN_HPP_NOEXCEPT; - - void blitImage2KHR( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo ) const VULKAN_HPP_NOEXCEPT; - - void - resolveImage2KHR( const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_ray_tracing_pipeline === - - void traceRaysKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth ) const VULKAN_HPP_NOEXCEPT; - - void traceRaysIndirectKHR( const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - VULKAN_HPP_NAMESPACE::DeviceAddress indirectDeviceAddress ) const VULKAN_HPP_NOEXCEPT; - - void setRayTracingPipelineStackSizeKHR( uint32_t pipelineStackSize ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_vertex_input_dynamic_state === - - void setVertexInputEXT( - ArrayProxy const & vertexBindingDescriptions, - ArrayProxy const & - vertexAttributeDescriptions ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_HUAWEI_subpass_shading === - - void subpassShadingHUAWEI() const VULKAN_HPP_NOEXCEPT; - - //=== VK_HUAWEI_invocation_mask === - - void bindInvocationMaskHUAWEI( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_extended_dynamic_state2 === - - void setPatchControlPointsEXT( uint32_t patchControlPoints ) const VULKAN_HPP_NOEXCEPT; - - void - setRasterizerDiscardEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable ) const VULKAN_HPP_NOEXCEPT; - - void setDepthBiasEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable ) const VULKAN_HPP_NOEXCEPT; - - void setLogicOpEXT( VULKAN_HPP_NAMESPACE::LogicOp logicOp ) const VULKAN_HPP_NOEXCEPT; - - void - setPrimitiveRestartEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_color_write_enable === - - void setColorWriteEnableEXT( ArrayProxy const & colorWriteEnables ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_multi_draw === - - void drawMultiEXT( ArrayProxy const & vertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT; - - void drawMultiIndexedEXT( ArrayProxy const & indexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Optional vertexOffset - VULKAN_HPP_DEFAULT_ARGUMENT_NULLPTR_ASSIGNMENT ) const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::CommandPool m_commandPool = {}; - VULKAN_HPP_NAMESPACE::CommandBuffer m_commandBuffer = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class CommandBuffers : public std::vector - { - public: - CommandBuffers( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo const & allocateInfo ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector commandBuffers( allocateInfo.commandBufferCount ); - VULKAN_HPP_NAMESPACE::Result result = static_cast( - dispatcher->vkAllocateCommandBuffers( static_cast( *device ), - reinterpret_cast( &allocateInfo ), - commandBuffers.data() ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - this->reserve( allocateInfo.commandBufferCount ); - for ( auto const & commandBuffer : commandBuffers ) - { - this->emplace_back( device, commandBuffer, static_cast( allocateInfo.commandPool ) ); - } - } - else - { - throwResultException( result, "vkAllocateCommandBuffers" ); - } - } - - CommandBuffers() = delete; - CommandBuffers( CommandBuffers const & ) = delete; - CommandBuffers( CommandBuffers && rhs ) = default; - CommandBuffers & operator=( CommandBuffers const & ) = delete; - CommandBuffers & operator=( CommandBuffers && rhs ) = default; - }; - - class CuFunctionNVX - { - public: - using CType = VkCuFunctionNVX; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCuFunctionNVX; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCuFunctionNVX; - - public: - CuFunctionNVX( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateCuFunctionNVX( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_function ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateCuFunctionNVX" ); - } - } - - CuFunctionNVX( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkCuFunctionNVX function, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_function( function ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - CuFunctionNVX( std::nullptr_t ) {} - - ~CuFunctionNVX() - { - if ( m_function ) - { - getDispatcher()->vkDestroyCuFunctionNVX( static_cast( m_device ), - static_cast( m_function ), - reinterpret_cast( m_allocator ) ); - } - } - - CuFunctionNVX() = delete; - CuFunctionNVX( CuFunctionNVX const & ) = delete; - CuFunctionNVX( CuFunctionNVX && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_function( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_function, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - CuFunctionNVX & operator=( CuFunctionNVX const & ) = delete; - CuFunctionNVX & operator =( CuFunctionNVX && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_function ) - { - getDispatcher()->vkDestroyCuFunctionNVX( static_cast( m_device ), - static_cast( m_function ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_function = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_function, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::CuFunctionNVX const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_function; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::CuFunctionNVX m_function = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class CuModuleNVX - { - public: - using CType = VkCuModuleNVX; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eCuModuleNVX; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCuModuleNVX; - - public: - CuModuleNVX( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateCuModuleNVX( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_module ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateCuModuleNVX" ); - } - } - - CuModuleNVX( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkCuModuleNVX module, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_module( module ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - CuModuleNVX( std::nullptr_t ) {} - - ~CuModuleNVX() - { - if ( m_module ) - { - getDispatcher()->vkDestroyCuModuleNVX( static_cast( m_device ), - static_cast( m_module ), - reinterpret_cast( m_allocator ) ); - } - } - - CuModuleNVX() = delete; - CuModuleNVX( CuModuleNVX const & ) = delete; - CuModuleNVX( CuModuleNVX && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_module( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_module, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - CuModuleNVX & operator=( CuModuleNVX const & ) = delete; - CuModuleNVX & operator =( CuModuleNVX && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_module ) - { - getDispatcher()->vkDestroyCuModuleNVX( static_cast( m_device ), - static_cast( m_module ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_module = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_module, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::CuModuleNVX const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_module; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::CuModuleNVX m_module = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DebugReportCallbackEXT - { - public: - using CType = VkDebugReportCallbackEXT; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDebugReportCallbackEXT; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDebugReportCallbackEXT; - - public: - DebugReportCallbackEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateDebugReportCallbackEXT( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_callback ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDebugReportCallbackEXT" ); - } - } - - DebugReportCallbackEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VkDebugReportCallbackEXT callback, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_callback( callback ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - {} - - DebugReportCallbackEXT( std::nullptr_t ) {} - - ~DebugReportCallbackEXT() - { - if ( m_callback ) - { - getDispatcher()->vkDestroyDebugReportCallbackEXT( - static_cast( m_instance ), - static_cast( m_callback ), - reinterpret_cast( m_allocator ) ); - } - } - - DebugReportCallbackEXT() = delete; - DebugReportCallbackEXT( DebugReportCallbackEXT const & ) = delete; - DebugReportCallbackEXT( DebugReportCallbackEXT && rhs ) VULKAN_HPP_NOEXCEPT - : m_instance( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ) ) - , m_callback( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_callback, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DebugReportCallbackEXT & operator=( DebugReportCallbackEXT const & ) = delete; - DebugReportCallbackEXT & operator=( DebugReportCallbackEXT && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_callback ) - { - getDispatcher()->vkDestroyDebugReportCallbackEXT( - static_cast( m_instance ), - static_cast( m_callback ), - reinterpret_cast( m_allocator ) ); - } - m_instance = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ); - m_callback = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_callback, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_callback; - } - - VULKAN_HPP_NAMESPACE::Instance getInstance() const - { - return m_instance; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Instance m_instance = {}; - VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT m_callback = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * m_dispatcher = nullptr; - }; - - class DebugUtilsMessengerEXT - { - public: - using CType = VkDebugUtilsMessengerEXT; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDebugUtilsMessengerEXT; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - DebugUtilsMessengerEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateDebugUtilsMessengerEXT( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_messenger ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDebugUtilsMessengerEXT" ); - } - } - - DebugUtilsMessengerEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VkDebugUtilsMessengerEXT messenger, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_messenger( messenger ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - {} - - DebugUtilsMessengerEXT( std::nullptr_t ) {} - - ~DebugUtilsMessengerEXT() - { - if ( m_messenger ) - { - getDispatcher()->vkDestroyDebugUtilsMessengerEXT( - static_cast( m_instance ), - static_cast( m_messenger ), - reinterpret_cast( m_allocator ) ); - } - } - - DebugUtilsMessengerEXT() = delete; - DebugUtilsMessengerEXT( DebugUtilsMessengerEXT const & ) = delete; - DebugUtilsMessengerEXT( DebugUtilsMessengerEXT && rhs ) VULKAN_HPP_NOEXCEPT - : m_instance( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ) ) - , m_messenger( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_messenger, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DebugUtilsMessengerEXT & operator=( DebugUtilsMessengerEXT const & ) = delete; - DebugUtilsMessengerEXT & operator=( DebugUtilsMessengerEXT && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_messenger ) - { - getDispatcher()->vkDestroyDebugUtilsMessengerEXT( - static_cast( m_instance ), - static_cast( m_messenger ), - reinterpret_cast( m_allocator ) ); - } - m_instance = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ); - m_messenger = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_messenger, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_messenger; - } - - VULKAN_HPP_NAMESPACE::Instance getInstance() const - { - return m_instance; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Instance m_instance = {}; - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT m_messenger = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * m_dispatcher = nullptr; - }; - - class DeferredOperationKHR - { - public: - using CType = VkDeferredOperationKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDeferredOperationKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - DeferredOperationKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateDeferredOperationKHR( - static_cast( *device ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_operation ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDeferredOperationKHR" ); - } - } - - DeferredOperationKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkDeferredOperationKHR operation, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_operation( operation ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - DeferredOperationKHR( std::nullptr_t ) {} - - ~DeferredOperationKHR() - { - if ( m_operation ) - { - getDispatcher()->vkDestroyDeferredOperationKHR( - static_cast( m_device ), - static_cast( m_operation ), - reinterpret_cast( m_allocator ) ); - } - } - - DeferredOperationKHR() = delete; - DeferredOperationKHR( DeferredOperationKHR const & ) = delete; - DeferredOperationKHR( DeferredOperationKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_operation( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_operation, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DeferredOperationKHR & operator=( DeferredOperationKHR const & ) = delete; - DeferredOperationKHR & operator=( DeferredOperationKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_operation ) - { - getDispatcher()->vkDestroyDeferredOperationKHR( - static_cast( m_device ), - static_cast( m_operation ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_operation = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_operation, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DeferredOperationKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_operation; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_KHR_deferred_host_operations === - - VULKAN_HPP_NODISCARD uint32_t getMaxConcurrency() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result getResult() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result join() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::DeferredOperationKHR m_operation = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DescriptorPool - { - public: - using CType = VkDescriptorPool; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorPool; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorPool; - - public: - DescriptorPool( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateDescriptorPool( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_descriptorPool ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDescriptorPool" ); - } - } - - DescriptorPool( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkDescriptorPool descriptorPool, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_descriptorPool( descriptorPool ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - DescriptorPool( std::nullptr_t ) {} - - ~DescriptorPool() - { - if ( m_descriptorPool ) - { - getDispatcher()->vkDestroyDescriptorPool( static_cast( m_device ), - static_cast( m_descriptorPool ), - reinterpret_cast( m_allocator ) ); - } - } - - DescriptorPool() = delete; - DescriptorPool( DescriptorPool const & ) = delete; - DescriptorPool( DescriptorPool && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_descriptorPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorPool, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DescriptorPool & operator=( DescriptorPool const & ) = delete; - DescriptorPool & operator =( DescriptorPool && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_descriptorPool ) - { - getDispatcher()->vkDestroyDescriptorPool( static_cast( m_device ), - static_cast( m_descriptorPool ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_descriptorPool = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorPool, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DescriptorPool const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorPool; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - void reset( VULKAN_HPP_NAMESPACE::DescriptorPoolResetFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const - VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::DescriptorPool m_descriptorPool = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DescriptorSet - { - public: - using CType = VkDescriptorSet; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorSet; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSet; - - public: - DescriptorSet( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkDescriptorSet descriptorSet, - VkDescriptorPool descriptorPool ) - : m_device( *device ) - , m_descriptorPool( descriptorPool ) - , m_descriptorSet( descriptorSet ) - , m_dispatcher( device.getDispatcher() ) - {} - - DescriptorSet( std::nullptr_t ) {} - - ~DescriptorSet() - { - if ( m_descriptorSet ) - { - getDispatcher()->vkFreeDescriptorSets( static_cast( m_device ), - static_cast( m_descriptorPool ), - 1, - reinterpret_cast( &m_descriptorSet ) ); - } - } - - DescriptorSet() = delete; - DescriptorSet( DescriptorSet const & ) = delete; - DescriptorSet( DescriptorSet && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_descriptorPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorPool, {} ) ) - , m_descriptorSet( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorSet, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DescriptorSet & operator=( DescriptorSet const & ) = delete; - DescriptorSet & operator =( DescriptorSet && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_descriptorSet ) - { - getDispatcher()->vkFreeDescriptorSets( static_cast( m_device ), - static_cast( m_descriptorPool ), - 1, - reinterpret_cast( &m_descriptorSet ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_descriptorPool = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorPool, {} ); - m_descriptorSet = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorSet, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DescriptorSet const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSet; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_1 === - - template - void updateWithTemplate( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_descriptor_update_template === - - template - void updateWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data ) const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::DescriptorPool m_descriptorPool = {}; - VULKAN_HPP_NAMESPACE::DescriptorSet m_descriptorSet = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DescriptorSets : public std::vector - { - public: - DescriptorSets( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo const & allocateInfo ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector descriptorSets( allocateInfo.descriptorSetCount ); - VULKAN_HPP_NAMESPACE::Result result = static_cast( - dispatcher->vkAllocateDescriptorSets( static_cast( *device ), - reinterpret_cast( &allocateInfo ), - descriptorSets.data() ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - this->reserve( allocateInfo.descriptorSetCount ); - for ( auto const & descriptorSet : descriptorSets ) - { - this->emplace_back( device, descriptorSet, static_cast( allocateInfo.descriptorPool ) ); - } - } - else - { - throwResultException( result, "vkAllocateDescriptorSets" ); - } - } - - DescriptorSets() = delete; - DescriptorSets( DescriptorSets const & ) = delete; - DescriptorSets( DescriptorSets && rhs ) = default; - DescriptorSets & operator=( DescriptorSets const & ) = delete; - DescriptorSets & operator=( DescriptorSets && rhs ) = default; - }; - - class DescriptorSetLayout - { - public: - using CType = VkDescriptorSetLayout; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorSetLayout; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSetLayout; - - public: - DescriptorSetLayout( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateDescriptorSetLayout( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_descriptorSetLayout ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDescriptorSetLayout" ); - } - } - - DescriptorSetLayout( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkDescriptorSetLayout descriptorSetLayout, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_descriptorSetLayout( descriptorSetLayout ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - DescriptorSetLayout( std::nullptr_t ) {} - - ~DescriptorSetLayout() - { - if ( m_descriptorSetLayout ) - { - getDispatcher()->vkDestroyDescriptorSetLayout( - static_cast( m_device ), - static_cast( m_descriptorSetLayout ), - reinterpret_cast( m_allocator ) ); - } - } - - DescriptorSetLayout() = delete; - DescriptorSetLayout( DescriptorSetLayout const & ) = delete; - DescriptorSetLayout( DescriptorSetLayout && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_descriptorSetLayout( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorSetLayout, - {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DescriptorSetLayout & operator=( DescriptorSetLayout const & ) = delete; - DescriptorSetLayout & operator =( DescriptorSetLayout && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_descriptorSetLayout ) - { - getDispatcher()->vkDestroyDescriptorSetLayout( - static_cast( m_device ), - static_cast( m_descriptorSetLayout ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_descriptorSetLayout = - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorSetLayout, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DescriptorSetLayout const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorSetLayout; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::DescriptorSetLayout m_descriptorSetLayout = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DescriptorUpdateTemplate - { - public: - using CType = VkDescriptorUpdateTemplate; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDescriptorUpdateTemplate; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorUpdateTemplate; - - public: - DescriptorUpdateTemplate( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateDescriptorUpdateTemplate( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_descriptorUpdateTemplate ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDescriptorUpdateTemplate" ); - } - } - - DescriptorUpdateTemplate( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkDescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_descriptorUpdateTemplate( descriptorUpdateTemplate ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - DescriptorUpdateTemplate( std::nullptr_t ) {} - - ~DescriptorUpdateTemplate() - { - if ( m_descriptorUpdateTemplate ) - { - getDispatcher()->vkDestroyDescriptorUpdateTemplate( - static_cast( m_device ), - static_cast( m_descriptorUpdateTemplate ), - reinterpret_cast( m_allocator ) ); - } - } - - DescriptorUpdateTemplate() = delete; - DescriptorUpdateTemplate( DescriptorUpdateTemplate const & ) = delete; - DescriptorUpdateTemplate( DescriptorUpdateTemplate && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_descriptorUpdateTemplate( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorUpdateTemplate, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DescriptorUpdateTemplate & operator=( DescriptorUpdateTemplate const & ) = delete; - DescriptorUpdateTemplate & operator=( DescriptorUpdateTemplate && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_descriptorUpdateTemplate ) - { - getDispatcher()->vkDestroyDescriptorUpdateTemplate( - static_cast( m_device ), - static_cast( m_descriptorUpdateTemplate ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_descriptorUpdateTemplate = - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_descriptorUpdateTemplate, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_descriptorUpdateTemplate; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate m_descriptorUpdateTemplate = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DeviceMemory - { - public: - using CType = VkDeviceMemory; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDeviceMemory; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDeviceMemory; - - public: - DeviceMemory( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::MemoryAllocateInfo const & allocateInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkAllocateMemory( static_cast( *device ), - reinterpret_cast( &allocateInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_memory ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkAllocateMemory" ); - } - } - - DeviceMemory( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkDeviceMemory memory, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_memory( memory ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - DeviceMemory( std::nullptr_t ) {} - - ~DeviceMemory() - { - if ( m_memory ) - { - getDispatcher()->vkFreeMemory( static_cast( m_device ), - static_cast( m_memory ), - reinterpret_cast( m_allocator ) ); - } - } - - DeviceMemory() = delete; - DeviceMemory( DeviceMemory const & ) = delete; - DeviceMemory( DeviceMemory && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_memory( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_memory, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DeviceMemory & operator=( DeviceMemory const & ) = delete; - DeviceMemory & operator =( DeviceMemory && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_memory ) - { - getDispatcher()->vkFreeMemory( static_cast( m_device ), - static_cast( m_memory ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_memory = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_memory, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DeviceMemory const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_memory; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD void * - mapMemory( VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - VULKAN_HPP_NAMESPACE::MemoryMapFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - void unmapMemory() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceSize getCommitment() const VULKAN_HPP_NOEXCEPT; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - - VULKAN_HPP_NODISCARD HANDLE - getMemoryWin32HandleNV( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType ) const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_pageable_device_local_memory === - - void setPriorityEXT( float priority ) const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory m_memory = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class DisplayKHR - { - public: - using CType = VkDisplayKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDisplayKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayKHR; - - public: - DisplayKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - int32_t drmFd, - uint32_t connectorId ) - : m_physicalDevice( *physicalDevice ), m_dispatcher( physicalDevice.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - physicalDevice.getDispatcher()->vkGetDrmDisplayEXT( static_cast( *physicalDevice ), - drmFd, - connectorId, - reinterpret_cast( &m_display ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkGetDrmDisplayEXT" ); - } - } - -# if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - DisplayKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - Display & dpy, - RROutput rrOutput ) - : m_physicalDevice( *physicalDevice ), m_dispatcher( physicalDevice.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( physicalDevice.getDispatcher()->vkGetRandROutputDisplayEXT( - static_cast( *physicalDevice ), - &dpy, - rrOutput, - reinterpret_cast( &m_display ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkGetRandROutputDisplayEXT" ); - } - } -# endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - DisplayKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - uint32_t deviceRelativeId ) - : m_physicalDevice( *physicalDevice ), m_dispatcher( physicalDevice.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - physicalDevice.getDispatcher()->vkGetWinrtDisplayNV( static_cast( *physicalDevice ), - deviceRelativeId, - reinterpret_cast( &m_display ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkGetWinrtDisplayNV" ); - } - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - DisplayKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - VkDisplayKHR display ) - : m_physicalDevice( *physicalDevice ), m_display( display ), m_dispatcher( physicalDevice.getDispatcher() ) - {} - - DisplayKHR( std::nullptr_t ) {} - - ~DisplayKHR() - { - if ( m_display ) - { - getDispatcher()->vkReleaseDisplayEXT( static_cast( m_physicalDevice ), - static_cast( m_display ) ); - } - } - - DisplayKHR() = delete; - DisplayKHR( DisplayKHR const & ) = delete; - DisplayKHR( DisplayKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_physicalDevice( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_physicalDevice, {} ) ) - , m_display( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_display, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DisplayKHR & operator=( DisplayKHR const & ) = delete; - DisplayKHR & operator =( DisplayKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_display ) - { - getDispatcher()->vkReleaseDisplayEXT( static_cast( m_physicalDevice ), - static_cast( m_display ) ); - } - m_physicalDevice = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_physicalDevice, {} ); - m_display = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_display, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DisplayKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_display; - } - - VULKAN_HPP_NAMESPACE::PhysicalDevice getPhysicalDevice() const - { - return m_physicalDevice; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_KHR_display === - - VULKAN_HPP_NODISCARD std::vector getModeProperties() const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_RAII_NAMESPACE::DisplayModeKHR createMode( - VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) const; - - //=== VK_KHR_get_display_properties2 === - - VULKAN_HPP_NODISCARD std::vector getModeProperties2() const; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - - void acquireWinrtNV() const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - private: - VULKAN_HPP_NAMESPACE::PhysicalDevice m_physicalDevice = {}; - VULKAN_HPP_NAMESPACE::DisplayKHR m_display = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * m_dispatcher = nullptr; - }; - - class DisplayKHRs : public std::vector - { - public: - DisplayKHRs( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::PhysicalDevice const & physicalDevice, - uint32_t planeIndex ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * dispatcher = - physicalDevice.getDispatcher(); - std::vector displays; - uint32_t displayCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( dispatcher->vkGetDisplayPlaneSupportedDisplaysKHR( - static_cast( *physicalDevice ), planeIndex, &displayCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && displayCount ) - { - displays.resize( displayCount ); - result = static_cast( dispatcher->vkGetDisplayPlaneSupportedDisplaysKHR( - static_cast( *physicalDevice ), planeIndex, &displayCount, displays.data() ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( displayCount <= displays.size() ); - this->reserve( displayCount ); - for ( auto const & displayKHR : displays ) - { - this->emplace_back( physicalDevice, displayKHR ); - } - } - else - { - throwResultException( result, "vkGetDisplayPlaneSupportedDisplaysKHR" ); - } - } - - DisplayKHRs() = delete; - DisplayKHRs( DisplayKHRs const & ) = delete; - DisplayKHRs( DisplayKHRs && rhs ) = default; - DisplayKHRs & operator=( DisplayKHRs const & ) = delete; - DisplayKHRs & operator=( DisplayKHRs && rhs ) = default; - }; - - class DisplayModeKHR - { - public: - using CType = VkDisplayModeKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eDisplayModeKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayModeKHR; - - public: - DisplayModeKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DisplayKHR const & display, - VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_physicalDevice( display.getPhysicalDevice() ), m_dispatcher( display.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( display.getDispatcher()->vkCreateDisplayModeKHR( - static_cast( display.getPhysicalDevice() ), - static_cast( *display ), - reinterpret_cast( &createInfo ), - reinterpret_cast( - static_cast( allocator ) ), - reinterpret_cast( &m_displayModeKHR ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDisplayModeKHR" ); - } - } - - DisplayModeKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DisplayKHR const & display, - VkDisplayModeKHR displayModeKHR ) - : m_physicalDevice( display.getPhysicalDevice() ) - , m_displayModeKHR( displayModeKHR ) - , m_dispatcher( display.getDispatcher() ) - {} - - DisplayModeKHR( std::nullptr_t ) {} - - DisplayModeKHR() = delete; - DisplayModeKHR( DisplayModeKHR const & ) = delete; - DisplayModeKHR( DisplayModeKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_physicalDevice( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_physicalDevice, {} ) ) - , m_displayModeKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_displayModeKHR, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - DisplayModeKHR & operator=( DisplayModeKHR const & ) = delete; - DisplayModeKHR & operator =( DisplayModeKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - m_physicalDevice = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_physicalDevice, {} ); - m_displayModeKHR = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_displayModeKHR, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::DisplayModeKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_displayModeKHR; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_KHR_display === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR - getDisplayPlaneCapabilities( uint32_t planeIndex ) const; - - private: - VULKAN_HPP_NAMESPACE::PhysicalDevice m_physicalDevice = {}; - VULKAN_HPP_NAMESPACE::DisplayModeKHR m_displayModeKHR = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * m_dispatcher = nullptr; - }; - - class Event - { - public: - using CType = VkEvent; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eEvent; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eEvent; - - public: - Event( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::EventCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateEvent( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_event ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateEvent" ); - } - } - - Event( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkEvent event, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_event( event ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Event( std::nullptr_t ) {} - - ~Event() - { - if ( m_event ) - { - getDispatcher()->vkDestroyEvent( static_cast( m_device ), - static_cast( m_event ), - reinterpret_cast( m_allocator ) ); - } - } - - Event() = delete; - Event( Event const & ) = delete; - Event( Event && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_event( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_event, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Event & operator=( Event const & ) = delete; - Event & operator =( Event && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_event ) - { - getDispatcher()->vkDestroyEvent( static_cast( m_device ), - static_cast( m_event ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_event = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_event, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Event const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_event; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result getStatus() const; - - void set() const; - - void reset() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Event m_event = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Fence - { - public: - using CType = VkFence; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eFence; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFence; - - public: - Fence( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::FenceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateFence( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateFence" ); - } - } - - Fence( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT const & deviceEventInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkRegisterDeviceEventEXT( - static_cast( *device ), - reinterpret_cast( &deviceEventInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkRegisterDeviceEventEXT" ); - } - } - - Fence( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DisplayKHR const & display, - VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT const & displayEventInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkRegisterDisplayEventEXT( - static_cast( *device ), - static_cast( *display ), - reinterpret_cast( &displayEventInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkRegisterDisplayEventEXT" ); - } - } - - Fence( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkFence fence, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_fence( fence ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Fence( std::nullptr_t ) {} - - ~Fence() - { - if ( m_fence ) - { - getDispatcher()->vkDestroyFence( static_cast( m_device ), - static_cast( m_fence ), - reinterpret_cast( m_allocator ) ); - } - } - - Fence() = delete; - Fence( Fence const & ) = delete; - Fence( Fence && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_fence( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_fence, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Fence & operator=( Fence const & ) = delete; - Fence & operator =( Fence && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_fence ) - { - getDispatcher()->vkDestroyFence( static_cast( m_device ), - static_cast( m_fence ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_fence = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_fence, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Fence const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_fence; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result getStatus() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Fence m_fence = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Framebuffer - { - public: - using CType = VkFramebuffer; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eFramebuffer; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFramebuffer; - - public: - Framebuffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::FramebufferCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateFramebuffer( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_framebuffer ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateFramebuffer" ); - } - } - - Framebuffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkFramebuffer framebuffer, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_framebuffer( framebuffer ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Framebuffer( std::nullptr_t ) {} - - ~Framebuffer() - { - if ( m_framebuffer ) - { - getDispatcher()->vkDestroyFramebuffer( static_cast( m_device ), - static_cast( m_framebuffer ), - reinterpret_cast( m_allocator ) ); - } - } - - Framebuffer() = delete; - Framebuffer( Framebuffer const & ) = delete; - Framebuffer( Framebuffer && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_framebuffer( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_framebuffer, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Framebuffer & operator=( Framebuffer const & ) = delete; - Framebuffer & operator =( Framebuffer && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_framebuffer ) - { - getDispatcher()->vkDestroyFramebuffer( static_cast( m_device ), - static_cast( m_framebuffer ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_framebuffer = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_framebuffer, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Framebuffer const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_framebuffer; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Framebuffer m_framebuffer = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Image - { - public: - using CType = VkImage; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eImage; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImage; - - public: - Image( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::ImageCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateImage( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_image ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateImage" ); - } - } - - Image( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkImage image, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_image( image ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Image( std::nullptr_t ) {} - - ~Image() - { - if ( m_image ) - { - getDispatcher()->vkDestroyImage( static_cast( m_device ), - static_cast( m_image ), - reinterpret_cast( m_allocator ) ); - } - } - - Image() = delete; - Image( Image const & ) = delete; - Image( Image && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_image( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_image, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Image & operator=( Image const & ) = delete; - Image & operator =( Image && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_image ) - { - getDispatcher()->vkDestroyImage( static_cast( m_device ), - static_cast( m_image ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_image = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_image, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Image const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_image; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - void bindMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::MemoryRequirements getMemoryRequirements() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD std::vector - getSparseMemoryRequirements() const VULKAN_HPP_NOEXCEPT; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::SubresourceLayout - getSubresourceLayout( const VULKAN_HPP_NAMESPACE::ImageSubresource & subresource ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_image_drm_format_modifier === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT - getDrmFormatModifierPropertiesEXT() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Image m_image = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class ImageView - { - public: - using CType = VkImageView; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eImageView; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImageView; - - public: - ImageView( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::ImageViewCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateImageView( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_imageView ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateImageView" ); - } - } - - ImageView( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkImageView imageView, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_imageView( imageView ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - ImageView( std::nullptr_t ) {} - - ~ImageView() - { - if ( m_imageView ) - { - getDispatcher()->vkDestroyImageView( static_cast( m_device ), - static_cast( m_imageView ), - reinterpret_cast( m_allocator ) ); - } - } - - ImageView() = delete; - ImageView( ImageView const & ) = delete; - ImageView( ImageView && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_imageView( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_imageView, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - ImageView & operator=( ImageView const & ) = delete; - ImageView & operator =( ImageView && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_imageView ) - { - getDispatcher()->vkDestroyImageView( static_cast( m_device ), - static_cast( m_imageView ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_imageView = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_imageView, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::ImageView const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_imageView; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_NVX_image_view_handle === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX getAddressNVX() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::ImageView m_imageView = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class IndirectCommandsLayoutNV - { - public: - using CType = VkIndirectCommandsLayoutNV; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eIndirectCommandsLayoutNV; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - IndirectCommandsLayoutNV( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateIndirectCommandsLayoutNV( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_indirectCommandsLayout ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateIndirectCommandsLayoutNV" ); - } - } - - IndirectCommandsLayoutNV( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkIndirectCommandsLayoutNV indirectCommandsLayout, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_indirectCommandsLayout( indirectCommandsLayout ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - IndirectCommandsLayoutNV( std::nullptr_t ) {} - - ~IndirectCommandsLayoutNV() - { - if ( m_indirectCommandsLayout ) - { - getDispatcher()->vkDestroyIndirectCommandsLayoutNV( - static_cast( m_device ), - static_cast( m_indirectCommandsLayout ), - reinterpret_cast( m_allocator ) ); - } - } - - IndirectCommandsLayoutNV() = delete; - IndirectCommandsLayoutNV( IndirectCommandsLayoutNV const & ) = delete; - IndirectCommandsLayoutNV( IndirectCommandsLayoutNV && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_indirectCommandsLayout( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_indirectCommandsLayout, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - IndirectCommandsLayoutNV & operator=( IndirectCommandsLayoutNV const & ) = delete; - IndirectCommandsLayoutNV & operator=( IndirectCommandsLayoutNV && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_indirectCommandsLayout ) - { - getDispatcher()->vkDestroyIndirectCommandsLayoutNV( - static_cast( m_device ), - static_cast( m_indirectCommandsLayout ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_indirectCommandsLayout = - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_indirectCommandsLayout, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_indirectCommandsLayout; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV m_indirectCommandsLayout = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class PerformanceConfigurationINTEL - { - public: - using CType = VkPerformanceConfigurationINTEL; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePerformanceConfigurationINTEL; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - PerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL const & acquireInfo ) - : m_device( *device ), m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkAcquirePerformanceConfigurationINTEL( - static_cast( *device ), - reinterpret_cast( &acquireInfo ), - reinterpret_cast( &m_configuration ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkAcquirePerformanceConfigurationINTEL" ); - } - } - - PerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkPerformanceConfigurationINTEL configuration ) - : m_device( *device ), m_configuration( configuration ), m_dispatcher( device.getDispatcher() ) - {} - - PerformanceConfigurationINTEL( std::nullptr_t ) {} - - ~PerformanceConfigurationINTEL() - { - if ( m_configuration ) - { - getDispatcher()->vkReleasePerformanceConfigurationINTEL( - static_cast( m_device ), static_cast( m_configuration ) ); - } - } - - PerformanceConfigurationINTEL() = delete; - PerformanceConfigurationINTEL( PerformanceConfigurationINTEL const & ) = delete; - PerformanceConfigurationINTEL( PerformanceConfigurationINTEL && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_configuration( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_configuration, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - PerformanceConfigurationINTEL & operator=( PerformanceConfigurationINTEL const & ) = delete; - PerformanceConfigurationINTEL & operator=( PerformanceConfigurationINTEL && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_configuration ) - { - getDispatcher()->vkReleasePerformanceConfigurationINTEL( - static_cast( m_device ), static_cast( m_configuration ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_configuration = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_configuration, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_configuration; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL m_configuration = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class PipelineCache - { - public: - using CType = VkPipelineCache; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePipelineCache; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineCache; - - public: - PipelineCache( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreatePipelineCache( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_pipelineCache ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreatePipelineCache" ); - } - } - - PipelineCache( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkPipelineCache pipelineCache, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_pipelineCache( pipelineCache ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - PipelineCache( std::nullptr_t ) {} - - ~PipelineCache() - { - if ( m_pipelineCache ) - { - getDispatcher()->vkDestroyPipelineCache( static_cast( m_device ), - static_cast( m_pipelineCache ), - reinterpret_cast( m_allocator ) ); - } - } - - PipelineCache() = delete; - PipelineCache( PipelineCache const & ) = delete; - PipelineCache( PipelineCache && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_pipelineCache( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_pipelineCache, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - PipelineCache & operator=( PipelineCache const & ) = delete; - PipelineCache & operator =( PipelineCache && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_pipelineCache ) - { - getDispatcher()->vkDestroyPipelineCache( static_cast( m_device ), - static_cast( m_pipelineCache ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_pipelineCache = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_pipelineCache, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::PipelineCache const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineCache; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD std::vector getData() const; - - void merge( ArrayProxy const & srcCaches ) const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::PipelineCache m_pipelineCache = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Pipeline - { - public: - using CType = VkPipeline; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePipeline; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipeline; - - public: - Pipeline( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - m_constructorSuccessCode = static_cast( getDispatcher()->vkCreateComputePipelines( - static_cast( *device ), - pipelineCache ? static_cast( **pipelineCache ) : 0, - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_pipeline ) ) ); - if ( ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - throwResultException( m_constructorSuccessCode, "vkCreateComputePipelines" ); - } - } - - Pipeline( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - m_constructorSuccessCode = - static_cast( getDispatcher()->vkCreateGraphicsPipelines( - static_cast( *device ), - pipelineCache ? static_cast( **pipelineCache ) : 0, - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_pipeline ) ) ); - if ( ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - throwResultException( m_constructorSuccessCode, "vkCreateGraphicsPipelines" ); - } - } - - Pipeline( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional< - const VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR> const & deferredOperation, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - m_constructorSuccessCode = - static_cast( getDispatcher()->vkCreateRayTracingPipelinesKHR( - static_cast( *device ), - deferredOperation ? static_cast( **deferredOperation ) : 0, - pipelineCache ? static_cast( **pipelineCache ) : 0, - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_pipeline ) ) ); - if ( ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) && - ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) && - ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - throwResultException( m_constructorSuccessCode, "vkCreateRayTracingPipelinesKHR" ); - } - } - - Pipeline( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - m_constructorSuccessCode = - static_cast( getDispatcher()->vkCreateRayTracingPipelinesNV( - static_cast( *device ), - pipelineCache ? static_cast( **pipelineCache ) : 0, - 1, - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_pipeline ) ) ); - if ( ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( m_constructorSuccessCode != VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - throwResultException( m_constructorSuccessCode, "vkCreateRayTracingPipelinesNV" ); - } - } - - Pipeline( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkPipeline pipeline, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr, - VULKAN_HPP_NAMESPACE::Result successCode = VULKAN_HPP_NAMESPACE::Result::eSuccess ) - : m_device( *device ) - , m_pipeline( pipeline ) - , m_allocator( static_cast( allocator ) ) - , m_constructorSuccessCode( successCode ) - , m_dispatcher( device.getDispatcher() ) - {} - - Pipeline( std::nullptr_t ) {} - - ~Pipeline() - { - if ( m_pipeline ) - { - getDispatcher()->vkDestroyPipeline( static_cast( m_device ), - static_cast( m_pipeline ), - reinterpret_cast( m_allocator ) ); - } - } - - Pipeline() = delete; - Pipeline( Pipeline const & ) = delete; - Pipeline( Pipeline && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_pipeline( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_pipeline, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Pipeline & operator=( Pipeline const & ) = delete; - Pipeline & operator =( Pipeline && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_pipeline ) - { - getDispatcher()->vkDestroyPipeline( static_cast( m_device ), - static_cast( m_pipeline ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_pipeline = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_pipeline, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Pipeline const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_pipeline; - } - - VULKAN_HPP_NAMESPACE::Result getConstructorSuccessCode() const - { - return m_constructorSuccessCode; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_AMD_shader_info === - - VULKAN_HPP_NODISCARD std::vector - getShaderInfoAMD( VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType ) const; - - //=== VK_NV_ray_tracing === - - template - VULKAN_HPP_NODISCARD std::vector - getRayTracingShaderGroupHandlesNV( uint32_t firstGroup, uint32_t groupCount, size_t dataSize ) const; - - template - VULKAN_HPP_NODISCARD DataType getRayTracingShaderGroupHandleNV( uint32_t firstGroup, uint32_t groupCount ) const; - - void compileDeferredNV( uint32_t shader ) const; - - //=== VK_KHR_ray_tracing_pipeline === - - template - VULKAN_HPP_NODISCARD std::vector - getRayTracingShaderGroupHandlesKHR( uint32_t firstGroup, uint32_t groupCount, size_t dataSize ) const; - - template - VULKAN_HPP_NODISCARD DataType getRayTracingShaderGroupHandleKHR( uint32_t firstGroup, uint32_t groupCount ) const; - - template - VULKAN_HPP_NODISCARD std::vector getRayTracingCaptureReplayShaderGroupHandlesKHR( - uint32_t firstGroup, uint32_t groupCount, size_t dataSize ) const; - - template - VULKAN_HPP_NODISCARD DataType getRayTracingCaptureReplayShaderGroupHandleKHR( uint32_t firstGroup, - uint32_t groupCount ) const; - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::DeviceSize getRayTracingShaderGroupStackSizeKHR( - uint32_t group, VULKAN_HPP_NAMESPACE::ShaderGroupShaderKHR groupShader ) const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Pipeline m_pipeline = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::Result m_constructorSuccessCode; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Pipelines : public std::vector - { - public: - Pipelines( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector pipelines( createInfos.size() ); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( dispatcher->vkCreateComputePipelines( - static_cast( *device ), - pipelineCache ? static_cast( **pipelineCache ) : 0, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - pipelines.data() ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - this->reserve( createInfos.size() ); - for ( auto const & pipeline : pipelines ) - { - this->emplace_back( device, pipeline, allocator, result ); - } - } - else - { - throwResultException( result, "vkCreateComputePipelines" ); - } - } - - Pipelines( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector pipelines( createInfos.size() ); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( dispatcher->vkCreateGraphicsPipelines( - static_cast( *device ), - pipelineCache ? static_cast( **pipelineCache ) : 0, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - pipelines.data() ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - this->reserve( createInfos.size() ); - for ( auto const & pipeline : pipelines ) - { - this->emplace_back( device, pipeline, allocator, result ); - } - } - else - { - throwResultException( result, "vkCreateGraphicsPipelines" ); - } - } - - Pipelines( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional< - const VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR> const & deferredOperation, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector pipelines( createInfos.size() ); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( dispatcher->vkCreateRayTracingPipelinesKHR( - static_cast( *device ), - deferredOperation ? static_cast( **deferredOperation ) : 0, - pipelineCache ? static_cast( **pipelineCache ) : 0, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - pipelines.data() ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) || - ( result == VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - this->reserve( createInfos.size() ); - for ( auto const & pipeline : pipelines ) - { - this->emplace_back( device, pipeline, allocator, result ); - } - } - else - { - throwResultException( result, "vkCreateRayTracingPipelinesKHR" ); - } - } - - Pipelines( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector pipelines( createInfos.size() ); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( dispatcher->vkCreateRayTracingPipelinesNV( - static_cast( *device ), - pipelineCache ? static_cast( **pipelineCache ) : 0, - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - pipelines.data() ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) || - ( result == VULKAN_HPP_NAMESPACE::Result::ePipelineCompileRequiredEXT ) ) - { - this->reserve( createInfos.size() ); - for ( auto const & pipeline : pipelines ) - { - this->emplace_back( device, pipeline, allocator, result ); - } - } - else - { - throwResultException( result, "vkCreateRayTracingPipelinesNV" ); - } - } - - Pipelines() = delete; - Pipelines( Pipelines const & ) = delete; - Pipelines( Pipelines && rhs ) = default; - Pipelines & operator=( Pipelines const & ) = delete; - Pipelines & operator=( Pipelines && rhs ) = default; - }; - - class PipelineLayout - { - public: - using CType = VkPipelineLayout; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePipelineLayout; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineLayout; - - public: - PipelineLayout( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreatePipelineLayout( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_pipelineLayout ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreatePipelineLayout" ); - } - } - - PipelineLayout( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkPipelineLayout pipelineLayout, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_pipelineLayout( pipelineLayout ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - PipelineLayout( std::nullptr_t ) {} - - ~PipelineLayout() - { - if ( m_pipelineLayout ) - { - getDispatcher()->vkDestroyPipelineLayout( static_cast( m_device ), - static_cast( m_pipelineLayout ), - reinterpret_cast( m_allocator ) ); - } - } - - PipelineLayout() = delete; - PipelineLayout( PipelineLayout const & ) = delete; - PipelineLayout( PipelineLayout && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_pipelineLayout( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_pipelineLayout, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - PipelineLayout & operator=( PipelineLayout const & ) = delete; - PipelineLayout & operator =( PipelineLayout && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_pipelineLayout ) - { - getDispatcher()->vkDestroyPipelineLayout( static_cast( m_device ), - static_cast( m_pipelineLayout ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_pipelineLayout = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_pipelineLayout, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::PipelineLayout const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_pipelineLayout; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::PipelineLayout m_pipelineLayout = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class PrivateDataSlot - { - public: - using CType = VkPrivateDataSlot; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::ePrivateDataSlot; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - PrivateDataSlot( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreatePrivateDataSlot( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_privateDataSlot ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreatePrivateDataSlot" ); - } - } - - PrivateDataSlot( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkPrivateDataSlot privateDataSlot, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_privateDataSlot( privateDataSlot ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - PrivateDataSlot( std::nullptr_t ) {} - - ~PrivateDataSlot() - { - if ( m_privateDataSlot ) - { - getDispatcher()->vkDestroyPrivateDataSlot( static_cast( m_device ), - static_cast( m_privateDataSlot ), - reinterpret_cast( m_allocator ) ); - } - } - - PrivateDataSlot() = delete; - PrivateDataSlot( PrivateDataSlot const & ) = delete; - PrivateDataSlot( PrivateDataSlot && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_privateDataSlot( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_privateDataSlot, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - PrivateDataSlot & operator=( PrivateDataSlot const & ) = delete; - PrivateDataSlot & operator =( PrivateDataSlot && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_privateDataSlot ) - { - getDispatcher()->vkDestroyPrivateDataSlot( static_cast( m_device ), - static_cast( m_privateDataSlot ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_privateDataSlot = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_privateDataSlot, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::PrivateDataSlot const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_privateDataSlot; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::PrivateDataSlot m_privateDataSlot = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class QueryPool - { - public: - using CType = VkQueryPool; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eQueryPool; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueryPool; - - public: - QueryPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateQueryPool( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_queryPool ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateQueryPool" ); - } - } - - QueryPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkQueryPool queryPool, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_queryPool( queryPool ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - QueryPool( std::nullptr_t ) {} - - ~QueryPool() - { - if ( m_queryPool ) - { - getDispatcher()->vkDestroyQueryPool( static_cast( m_device ), - static_cast( m_queryPool ), - reinterpret_cast( m_allocator ) ); - } - } - - QueryPool() = delete; - QueryPool( QueryPool const & ) = delete; - QueryPool( QueryPool && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_queryPool( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_queryPool, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - QueryPool & operator=( QueryPool const & ) = delete; - QueryPool & operator =( QueryPool && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_queryPool ) - { - getDispatcher()->vkDestroyQueryPool( static_cast( m_device ), - static_cast( m_queryPool ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_queryPool = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_queryPool, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::QueryPool const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_queryPool; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - template - VULKAN_HPP_NODISCARD std::pair> - getResults( uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - template - VULKAN_HPP_NODISCARD std::pair - getResult( uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_VERSION_1_2 === - - void reset( uint32_t firstQuery, uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_EXT_host_query_reset === - - void resetEXT( uint32_t firstQuery, uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::QueryPool m_queryPool = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Queue - { - public: - using CType = VkQueue; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eQueue; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueue; - - public: - Queue( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - uint32_t queueFamilyIndex, - uint32_t queueIndex ) - : m_dispatcher( device.getDispatcher() ) - { - getDispatcher()->vkGetDeviceQueue( - static_cast( *device ), queueFamilyIndex, queueIndex, reinterpret_cast( &m_queue ) ); - } - - Queue( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 const & queueInfo ) - : m_dispatcher( device.getDispatcher() ) - { - getDispatcher()->vkGetDeviceQueue2( static_cast( *device ), - reinterpret_cast( &queueInfo ), - reinterpret_cast( &m_queue ) ); - } - - Queue( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, VkQueue queue ) - : m_queue( queue ), m_dispatcher( device.getDispatcher() ) - {} - - Queue( std::nullptr_t ) {} - - Queue() = delete; - Queue( Queue const & ) = delete; - Queue( Queue && rhs ) VULKAN_HPP_NOEXCEPT - : m_queue( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_queue, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Queue & operator=( Queue const & ) = delete; - Queue & operator =( Queue && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - m_queue = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_queue, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Queue const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_queue; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - void submit( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - void waitIdle() const; - - void bindSparse( ArrayProxy const & bindInfo, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_VERSION_1_3 === - - void submit2( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_KHR_swapchain === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result - presentKHR( const VULKAN_HPP_NAMESPACE::PresentInfoKHR & presentInfo ) const; - - //=== VK_EXT_debug_utils === - - void - beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const VULKAN_HPP_NOEXCEPT; - - void endDebugUtilsLabelEXT() const VULKAN_HPP_NOEXCEPT; - - void insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const - VULKAN_HPP_NOEXCEPT; - - //=== VK_NV_device_diagnostic_checkpoints === - - VULKAN_HPP_NODISCARD std::vector - getCheckpointDataNV() const VULKAN_HPP_NOEXCEPT; - - //=== VK_INTEL_performance_query === - - void setPerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration ) const; - - //=== VK_KHR_synchronization2 === - - void submit2KHR( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - VULKAN_HPP_NODISCARD std::vector - getCheckpointData2NV() const VULKAN_HPP_NOEXCEPT; - - private: - VULKAN_HPP_NAMESPACE::Queue m_queue = {}; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class RenderPass - { - public: - using CType = VkRenderPass; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eRenderPass; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eRenderPass; - - public: - RenderPass( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateRenderPass( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_renderPass ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateRenderPass" ); - } - } - - RenderPass( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateRenderPass2( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_renderPass ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateRenderPass2" ); - } - } - - RenderPass( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkRenderPass renderPass, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_renderPass( renderPass ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - RenderPass( std::nullptr_t ) {} - - ~RenderPass() - { - if ( m_renderPass ) - { - getDispatcher()->vkDestroyRenderPass( static_cast( m_device ), - static_cast( m_renderPass ), - reinterpret_cast( m_allocator ) ); - } - } - - RenderPass() = delete; - RenderPass( RenderPass const & ) = delete; - RenderPass( RenderPass && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_renderPass( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_renderPass, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - RenderPass & operator=( RenderPass const & ) = delete; - RenderPass & operator =( RenderPass && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_renderPass ) - { - getDispatcher()->vkDestroyRenderPass( static_cast( m_device ), - static_cast( m_renderPass ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_renderPass = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_renderPass, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::RenderPass const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_renderPass; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Extent2D getRenderAreaGranularity() const VULKAN_HPP_NOEXCEPT; - - //=== VK_HUAWEI_subpass_shading === - - VULKAN_HPP_NODISCARD std::pair - getSubpassShadingMaxWorkgroupSizeHUAWEI() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::RenderPass m_renderPass = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Sampler - { - public: - using CType = VkSampler; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSampler; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSampler; - - public: - Sampler( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::SamplerCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateSampler( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_sampler ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateSampler" ); - } - } - - Sampler( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkSampler sampler, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_sampler( sampler ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Sampler( std::nullptr_t ) {} - - ~Sampler() - { - if ( m_sampler ) - { - getDispatcher()->vkDestroySampler( static_cast( m_device ), - static_cast( m_sampler ), - reinterpret_cast( m_allocator ) ); - } - } - - Sampler() = delete; - Sampler( Sampler const & ) = delete; - Sampler( Sampler && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_sampler( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_sampler, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Sampler & operator=( Sampler const & ) = delete; - Sampler & operator =( Sampler && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_sampler ) - { - getDispatcher()->vkDestroySampler( static_cast( m_device ), - static_cast( m_sampler ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_sampler = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_sampler, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Sampler const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_sampler; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Sampler m_sampler = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class SamplerYcbcrConversion - { - public: - using CType = VkSamplerYcbcrConversion; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSamplerYcbcrConversion; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSamplerYcbcrConversion; - - public: - SamplerYcbcrConversion( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateSamplerYcbcrConversion( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_ycbcrConversion ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateSamplerYcbcrConversion" ); - } - } - - SamplerYcbcrConversion( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkSamplerYcbcrConversion ycbcrConversion, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_ycbcrConversion( ycbcrConversion ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - SamplerYcbcrConversion( std::nullptr_t ) {} - - ~SamplerYcbcrConversion() - { - if ( m_ycbcrConversion ) - { - getDispatcher()->vkDestroySamplerYcbcrConversion( - static_cast( m_device ), - static_cast( m_ycbcrConversion ), - reinterpret_cast( m_allocator ) ); - } - } - - SamplerYcbcrConversion() = delete; - SamplerYcbcrConversion( SamplerYcbcrConversion const & ) = delete; - SamplerYcbcrConversion( SamplerYcbcrConversion && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_ycbcrConversion( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_ycbcrConversion, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - SamplerYcbcrConversion & operator=( SamplerYcbcrConversion const & ) = delete; - SamplerYcbcrConversion & operator=( SamplerYcbcrConversion && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_ycbcrConversion ) - { - getDispatcher()->vkDestroySamplerYcbcrConversion( - static_cast( m_device ), - static_cast( m_ycbcrConversion ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_ycbcrConversion = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_ycbcrConversion, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_ycbcrConversion; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion m_ycbcrConversion = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class Semaphore - { - public: - using CType = VkSemaphore; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSemaphore; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSemaphore; - - public: - Semaphore( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - device.getDispatcher()->vkCreateSemaphore( static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_semaphore ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateSemaphore" ); - } - } - - Semaphore( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkSemaphore semaphore, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_semaphore( semaphore ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - Semaphore( std::nullptr_t ) {} - - ~Semaphore() - { - if ( m_semaphore ) - { - getDispatcher()->vkDestroySemaphore( static_cast( m_device ), - static_cast( m_semaphore ), - reinterpret_cast( m_allocator ) ); - } - } - - Semaphore() = delete; - Semaphore( Semaphore const & ) = delete; - Semaphore( Semaphore && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_semaphore( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_semaphore, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - Semaphore & operator=( Semaphore const & ) = delete; - Semaphore & operator =( Semaphore && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_semaphore ) - { - getDispatcher()->vkDestroySemaphore( static_cast( m_device ), - static_cast( m_semaphore ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_semaphore = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_semaphore, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::Semaphore const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_semaphore; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_VERSION_1_2 === - - VULKAN_HPP_NODISCARD uint64_t getCounterValue() const; - - //=== VK_KHR_timeline_semaphore === - - VULKAN_HPP_NODISCARD uint64_t getCounterValueKHR() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::Semaphore m_semaphore = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class ShaderModule - { - public: - using CType = VkShaderModule; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eShaderModule; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eShaderModule; - - public: - ShaderModule( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateShaderModule( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_shaderModule ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateShaderModule" ); - } - } - - ShaderModule( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkShaderModule shaderModule, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_shaderModule( shaderModule ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - ShaderModule( std::nullptr_t ) {} - - ~ShaderModule() - { - if ( m_shaderModule ) - { - getDispatcher()->vkDestroyShaderModule( static_cast( m_device ), - static_cast( m_shaderModule ), - reinterpret_cast( m_allocator ) ); - } - } - - ShaderModule() = delete; - ShaderModule( ShaderModule const & ) = delete; - ShaderModule( ShaderModule && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_shaderModule( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_shaderModule, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - ShaderModule & operator=( ShaderModule const & ) = delete; - ShaderModule & operator =( ShaderModule && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_shaderModule ) - { - getDispatcher()->vkDestroyShaderModule( static_cast( m_device ), - static_cast( m_shaderModule ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_shaderModule = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_shaderModule, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::ShaderModule const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_shaderModule; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::ShaderModule m_shaderModule = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class SurfaceKHR - { - public: - using CType = VkSurfaceKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSurfaceKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSurfaceKHR; - - public: -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateAndroidSurfaceKHR( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateAndroidSurfaceKHR" ); - } - } -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateDirectFBSurfaceEXT( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDirectFBSurfaceEXT" ); - } - } -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateDisplayPlaneSurfaceKHR( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateDisplayPlaneSurfaceKHR" ); - } - } - - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateHeadlessSurfaceEXT( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateHeadlessSurfaceEXT" ); - } - } - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateIOSSurfaceMVK( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateIOSSurfaceMVK" ); - } - } -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateImagePipeSurfaceFUCHSIA( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateImagePipeSurfaceFUCHSIA" ); - } - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateMacOSSurfaceMVK( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateMacOSSurfaceMVK" ); - } - } -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateMetalSurfaceEXT( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateMetalSurfaceEXT" ); - } - } -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateScreenSurfaceQNX( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateScreenSurfaceQNX" ); - } - } -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - -# if defined( VK_USE_PLATFORM_GGP ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateStreamDescriptorSurfaceGGP( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateStreamDescriptorSurfaceGGP" ); - } - } -# endif /*VK_USE_PLATFORM_GGP*/ - -# if defined( VK_USE_PLATFORM_VI_NN ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateViSurfaceNN( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateViSurfaceNN" ); - } - } -# endif /*VK_USE_PLATFORM_VI_NN*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateWaylandSurfaceKHR( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateWaylandSurfaceKHR" ); - } - } -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateWin32SurfaceKHR( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateWin32SurfaceKHR" ); - } - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateXcbSurfaceKHR( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateXcbSurfaceKHR" ); - } - } -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( instance.getDispatcher()->vkCreateXlibSurfaceKHR( - static_cast( *instance ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_surface ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateXlibSurfaceKHR" ); - } - } -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - - SurfaceKHR( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Instance const & instance, - VkSurfaceKHR surface, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_instance( *instance ) - , m_surface( surface ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( instance.getDispatcher() ) - {} - - SurfaceKHR( std::nullptr_t ) {} - - ~SurfaceKHR() - { - if ( m_surface ) - { - getDispatcher()->vkDestroySurfaceKHR( static_cast( m_instance ), - static_cast( m_surface ), - reinterpret_cast( m_allocator ) ); - } - } - - SurfaceKHR() = delete; - SurfaceKHR( SurfaceKHR const & ) = delete; - SurfaceKHR( SurfaceKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_instance( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ) ) - , m_surface( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_surface, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - SurfaceKHR & operator=( SurfaceKHR const & ) = delete; - SurfaceKHR & operator =( SurfaceKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_surface ) - { - getDispatcher()->vkDestroySurfaceKHR( static_cast( m_instance ), - static_cast( m_surface ), - reinterpret_cast( m_allocator ) ); - } - m_instance = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_instance, {} ); - m_surface = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_surface, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::SurfaceKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_surface; - } - - VULKAN_HPP_NAMESPACE::Instance getInstance() const - { - return m_instance; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - private: - VULKAN_HPP_NAMESPACE::Instance m_instance = {}; - VULKAN_HPP_NAMESPACE::SurfaceKHR m_surface = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::InstanceDispatcher const * m_dispatcher = nullptr; - }; - - class SwapchainKHR - { - public: - using CType = VkSwapchainKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eSwapchainKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSwapchainKHR; - - public: - SwapchainKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateSwapchainKHR( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_swapchain ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateSwapchainKHR" ); - } - } - - SwapchainKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkSwapchainKHR swapchain, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_swapchain( swapchain ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - SwapchainKHR( std::nullptr_t ) {} - - ~SwapchainKHR() - { - if ( m_swapchain ) - { - getDispatcher()->vkDestroySwapchainKHR( static_cast( m_device ), - static_cast( m_swapchain ), - reinterpret_cast( m_allocator ) ); - } - } - - SwapchainKHR() = delete; - SwapchainKHR( SwapchainKHR const & ) = delete; - SwapchainKHR( SwapchainKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_swapchain( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_swapchain, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - SwapchainKHR & operator=( SwapchainKHR const & ) = delete; - SwapchainKHR & operator =( SwapchainKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_swapchain ) - { - getDispatcher()->vkDestroySwapchainKHR( static_cast( m_device ), - static_cast( m_swapchain ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_swapchain = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_swapchain, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::SwapchainKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_swapchain; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_KHR_swapchain === - - VULKAN_HPP_NODISCARD std::vector getImages() const; - - VULKAN_HPP_NODISCARD std::pair - acquireNextImage( uint64_t timeout, - VULKAN_HPP_NAMESPACE::Semaphore semaphore VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT, - VULKAN_HPP_NAMESPACE::Fence fence VULKAN_HPP_DEFAULT_ARGUMENT_ASSIGNMENT ) const; - - //=== VK_EXT_display_control === - - VULKAN_HPP_NODISCARD uint64_t getCounterEXT( VULKAN_HPP_NAMESPACE::SurfaceCounterFlagBitsEXT counter ) const; - - //=== VK_GOOGLE_display_timing === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE getRefreshCycleDurationGOOGLE() const; - - VULKAN_HPP_NODISCARD std::vector - getPastPresentationTimingGOOGLE() const; - - //=== VK_KHR_shared_presentable_image === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result getStatus() const; - - //=== VK_AMD_display_native_hdr === - - void setLocalDimmingAMD( VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable ) const VULKAN_HPP_NOEXCEPT; - - //=== VK_KHR_present_wait === - - VULKAN_HPP_NODISCARD VULKAN_HPP_NAMESPACE::Result waitForPresent( uint64_t presentId, uint64_t timeout ) const; - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - void acquireFullScreenExclusiveModeEXT() const; - - void releaseFullScreenExclusiveModeEXT() const; -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::SwapchainKHR m_swapchain = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - - class SwapchainKHRs : public std::vector - { - public: - SwapchainKHRs( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - { - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * dispatcher = device.getDispatcher(); - std::vector swapchains( createInfos.size() ); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( dispatcher->vkCreateSharedSwapchainsKHR( - static_cast( *device ), - createInfos.size(), - reinterpret_cast( createInfos.data() ), - reinterpret_cast( - static_cast( allocator ) ), - swapchains.data() ) ); - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - this->reserve( createInfos.size() ); - for ( auto const & swapchainKHR : swapchains ) - { - this->emplace_back( device, swapchainKHR, allocator ); - } - } - else - { - throwResultException( result, "vkCreateSharedSwapchainsKHR" ); - } - } - - SwapchainKHRs() = delete; - SwapchainKHRs( SwapchainKHRs const & ) = delete; - SwapchainKHRs( SwapchainKHRs && rhs ) = default; - SwapchainKHRs & operator=( SwapchainKHRs const & ) = delete; - SwapchainKHRs & operator=( SwapchainKHRs && rhs ) = default; - }; - - class ValidationCacheEXT - { - public: - using CType = VkValidationCacheEXT; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eValidationCacheEXT; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eValidationCacheEXT; - - public: - ValidationCacheEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateValidationCacheEXT( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_validationCache ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateValidationCacheEXT" ); - } - } - - ValidationCacheEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkValidationCacheEXT validationCache, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_validationCache( validationCache ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - ValidationCacheEXT( std::nullptr_t ) {} - - ~ValidationCacheEXT() - { - if ( m_validationCache ) - { - getDispatcher()->vkDestroyValidationCacheEXT( - static_cast( m_device ), - static_cast( m_validationCache ), - reinterpret_cast( m_allocator ) ); - } - } - - ValidationCacheEXT() = delete; - ValidationCacheEXT( ValidationCacheEXT const & ) = delete; - ValidationCacheEXT( ValidationCacheEXT && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_validationCache( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_validationCache, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - ValidationCacheEXT & operator=( ValidationCacheEXT const & ) = delete; - ValidationCacheEXT & operator =( ValidationCacheEXT && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_validationCache ) - { - getDispatcher()->vkDestroyValidationCacheEXT( - static_cast( m_device ), - static_cast( m_validationCache ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_validationCache = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_validationCache, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::ValidationCacheEXT const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_validationCache; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_EXT_validation_cache === - - void merge( ArrayProxy const & srcCaches ) const; - - VULKAN_HPP_NODISCARD std::vector getData() const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::ValidationCacheEXT m_validationCache = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - class VideoSessionKHR - { - public: - using CType = VkVideoSessionKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eVideoSessionKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VideoSessionKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateVideoSessionKHR( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_videoSession ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateVideoSessionKHR" ); - } - } - - VideoSessionKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkVideoSessionKHR videoSession, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_videoSession( videoSession ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - VideoSessionKHR( std::nullptr_t ) {} - - ~VideoSessionKHR() - { - if ( m_videoSession ) - { - getDispatcher()->vkDestroyVideoSessionKHR( static_cast( m_device ), - static_cast( m_videoSession ), - reinterpret_cast( m_allocator ) ); - } - } - - VideoSessionKHR() = delete; - VideoSessionKHR( VideoSessionKHR const & ) = delete; - VideoSessionKHR( VideoSessionKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_videoSession( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_videoSession, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - VideoSessionKHR & operator=( VideoSessionKHR const & ) = delete; - VideoSessionKHR & operator =( VideoSessionKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_videoSession ) - { - getDispatcher()->vkDestroyVideoSessionKHR( static_cast( m_device ), - static_cast( m_videoSession ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_videoSession = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_videoSession, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::VideoSessionKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_videoSession; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_KHR_video_queue === - - VULKAN_HPP_NODISCARD std::vector getMemoryRequirements() const; - - void - bindMemory( ArrayProxy const & videoSessionBindMemories ) const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::VideoSessionKHR m_videoSession = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - class VideoSessionParametersKHR - { - public: - using CType = VkVideoSessionParametersKHR; - - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = - VULKAN_HPP_NAMESPACE::ObjectType::eVideoSessionParametersKHR; - static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - - public: - VideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( device.getDispatcher()->vkCreateVideoSessionParametersKHR( - static_cast( *device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( m_allocator ), - reinterpret_cast( &m_videoSessionParameters ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, "vkCreateVideoSessionParametersKHR" ); - } - } - - VideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::Device const & device, - VkVideoSessionParametersKHR videoSessionParameters, - VULKAN_HPP_NAMESPACE::Optional allocator = nullptr ) - : m_device( *device ) - , m_videoSessionParameters( videoSessionParameters ) - , m_allocator( static_cast( allocator ) ) - , m_dispatcher( device.getDispatcher() ) - {} - - VideoSessionParametersKHR( std::nullptr_t ) {} - - ~VideoSessionParametersKHR() - { - if ( m_videoSessionParameters ) - { - getDispatcher()->vkDestroyVideoSessionParametersKHR( - static_cast( m_device ), - static_cast( m_videoSessionParameters ), - reinterpret_cast( m_allocator ) ); - } - } - - VideoSessionParametersKHR() = delete; - VideoSessionParametersKHR( VideoSessionParametersKHR const & ) = delete; - VideoSessionParametersKHR( VideoSessionParametersKHR && rhs ) VULKAN_HPP_NOEXCEPT - : m_device( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ) ) - , m_videoSessionParameters( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_videoSessionParameters, {} ) ) - , m_allocator( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ) ) - , m_dispatcher( VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ) ) - {} - VideoSessionParametersKHR & operator=( VideoSessionParametersKHR const & ) = delete; - VideoSessionParametersKHR & operator=( VideoSessionParametersKHR && rhs ) VULKAN_HPP_NOEXCEPT - { - if ( this != &rhs ) - { - if ( m_videoSessionParameters ) - { - getDispatcher()->vkDestroyVideoSessionParametersKHR( - static_cast( m_device ), - static_cast( m_videoSessionParameters ), - reinterpret_cast( m_allocator ) ); - } - m_device = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_device, {} ); - m_videoSessionParameters = - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_videoSessionParameters, {} ); - m_allocator = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_allocator, {} ); - m_dispatcher = VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::exchange( rhs.m_dispatcher, nullptr ); - } - return *this; - } - - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR const & operator*() const VULKAN_HPP_NOEXCEPT - { - return m_videoSessionParameters; - } - - VULKAN_HPP_NAMESPACE::Device getDevice() const - { - return m_device; - } - - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * getDispatcher() const - { - VULKAN_HPP_ASSERT( m_dispatcher->getVkHeaderVersion() == VK_HEADER_VERSION ); - return m_dispatcher; - } - - //=== VK_KHR_video_queue === - - void update( const VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR & updateInfo ) const; - - private: - VULKAN_HPP_NAMESPACE::Device m_device = {}; - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR m_videoSessionParameters = {}; - const VULKAN_HPP_NAMESPACE::AllocationCallbacks * m_allocator = nullptr; - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher const * m_dispatcher = nullptr; - }; -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=========================== - //=== COMMAND Definitions === - //=========================== - - //=== VK_VERSION_1_0 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Instance Context::createInstance( - VULKAN_HPP_NAMESPACE::InstanceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Instance( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Instance::enumeratePhysicalDevices() const - { - return VULKAN_HPP_RAII_NAMESPACE::PhysicalDevices( *this ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures - PhysicalDevice::getFeatures() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures features; - getDispatcher()->vkGetPhysicalDeviceFeatures( static_cast( m_physicalDevice ), - reinterpret_cast( &features ) ); - return features; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::FormatProperties - PhysicalDevice::getFormatProperties( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::FormatProperties formatProperties; - getDispatcher()->vkGetPhysicalDeviceFormatProperties( - static_cast( m_physicalDevice ), - static_cast( format ), - reinterpret_cast( &formatProperties ) ); - return formatProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ImageFormatProperties - PhysicalDevice::getImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags ) const - { - VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceImageFormatProperties( - static_cast( m_physicalDevice ), - static_cast( format ), - static_cast( type ), - static_cast( tiling ), - static_cast( usage ), - static_cast( flags ), - reinterpret_cast( &imageFormatProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties" ); - } - return imageFormatProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties - PhysicalDevice::getProperties() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties properties; - getDispatcher()->vkGetPhysicalDeviceProperties( static_cast( m_physicalDevice ), - reinterpret_cast( &properties ) ); - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties() const VULKAN_HPP_NOEXCEPT - { - uint32_t queueFamilyPropertyCount; - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties( - static_cast( m_physicalDevice ), &queueFamilyPropertyCount, nullptr ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties( - static_cast( m_physicalDevice ), - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount == queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties - PhysicalDevice::getMemoryProperties() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties memoryProperties; - getDispatcher()->vkGetPhysicalDeviceMemoryProperties( - static_cast( m_physicalDevice ), - reinterpret_cast( &memoryProperties ) ); - return memoryProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE PFN_vkVoidFunction - Instance::getProcAddr( const std::string & name ) const VULKAN_HPP_NOEXCEPT - { - return getDispatcher()->vkGetInstanceProcAddr( static_cast( m_instance ), name.c_str() ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE PFN_vkVoidFunction - Device::getProcAddr( const std::string & name ) const VULKAN_HPP_NOEXCEPT - { - return getDispatcher()->vkGetDeviceProcAddr( static_cast( m_device ), name.c_str() ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Device PhysicalDevice::createDevice( - VULKAN_HPP_NAMESPACE::DeviceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Device( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Context::enumerateInstanceExtensionProperties( Optional layerName ) const - { - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkEnumerateInstanceExtensionProperties( - layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkEnumerateInstanceExtensionProperties( - layerName ? layerName->c_str() : nullptr, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Context::enumerateInstanceExtensionProperties" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::enumerateDeviceExtensionProperties( Optional layerName ) const - { - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkEnumerateDeviceExtensionProperties( static_cast( m_physicalDevice ), - layerName ? layerName->c_str() : nullptr, - &propertyCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkEnumerateDeviceExtensionProperties( - static_cast( m_physicalDevice ), - layerName ? layerName->c_str() : nullptr, - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateDeviceExtensionProperties" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Context::enumerateInstanceLayerProperties() const - { - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkEnumerateInstanceLayerProperties( &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkEnumerateInstanceLayerProperties( - &propertyCount, reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Context::enumerateInstanceLayerProperties" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::enumerateDeviceLayerProperties() const - { - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkEnumerateDeviceLayerProperties( - static_cast( m_physicalDevice ), &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkEnumerateDeviceLayerProperties( - static_cast( m_physicalDevice ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateDeviceLayerProperties" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Queue - Device::getQueue( uint32_t queueFamilyIndex, uint32_t queueIndex ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Queue( *this, queueFamilyIndex, queueIndex ); - } - - VULKAN_HPP_INLINE void Queue::submit( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkQueueSubmit( static_cast( m_queue ), - submits.size(), - reinterpret_cast( submits.data() ), - static_cast( fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::submit" ); - } - } - - VULKAN_HPP_INLINE void Queue::waitIdle() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkQueueWaitIdle( static_cast( m_queue ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::waitIdle" ); - } - } - - VULKAN_HPP_INLINE void Device::waitIdle() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkDeviceWaitIdle( static_cast( m_device ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::waitIdle" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DeviceMemory Device::allocateMemory( - VULKAN_HPP_NAMESPACE::MemoryAllocateInfo const & allocateInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DeviceMemory( *this, allocateInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE void * - DeviceMemory::mapMemory( VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - VULKAN_HPP_NAMESPACE::MemoryMapFlags flags ) const - { - void * pData; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkMapMemory( static_cast( m_device ), - static_cast( m_memory ), - static_cast( offset ), - static_cast( size ), - static_cast( flags ), - &pData ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DeviceMemory::mapMemory" ); - } - return pData; - } - - VULKAN_HPP_INLINE void DeviceMemory::unmapMemory() const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkUnmapMemory( static_cast( m_device ), static_cast( m_memory ) ); - } - - VULKAN_HPP_INLINE void Device::flushMappedMemoryRanges( - ArrayProxy const & memoryRanges ) const - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkFlushMappedMemoryRanges( - static_cast( m_device ), - memoryRanges.size(), - reinterpret_cast( memoryRanges.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::flushMappedMemoryRanges" ); - } - } - - VULKAN_HPP_INLINE void Device::invalidateMappedMemoryRanges( - ArrayProxy const & memoryRanges ) const - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkInvalidateMappedMemoryRanges( - static_cast( m_device ), - memoryRanges.size(), - reinterpret_cast( memoryRanges.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::invalidateMappedMemoryRanges" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceSize - DeviceMemory::getCommitment() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::DeviceSize committedMemoryInBytes; - getDispatcher()->vkGetDeviceMemoryCommitment( static_cast( m_device ), - static_cast( m_memory ), - reinterpret_cast( &committedMemoryInBytes ) ); - return committedMemoryInBytes; - } - - VULKAN_HPP_INLINE void Buffer::bindMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkBindBufferMemory( static_cast( m_device ), - static_cast( m_buffer ), - static_cast( memory ), - static_cast( memoryOffset ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Buffer::bindMemory" ); - } - } - - VULKAN_HPP_INLINE void Image::bindMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkBindImageMemory( static_cast( m_device ), - static_cast( m_image ), - static_cast( memory ), - static_cast( memoryOffset ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Image::bindMemory" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements - Buffer::getMemoryRequirements() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::MemoryRequirements memoryRequirements; - getDispatcher()->vkGetBufferMemoryRequirements( static_cast( m_device ), - static_cast( m_buffer ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements - Image::getMemoryRequirements() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::MemoryRequirements memoryRequirements; - getDispatcher()->vkGetImageMemoryRequirements( static_cast( m_device ), - static_cast( m_image ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Image::getSparseMemoryRequirements() const VULKAN_HPP_NOEXCEPT - { - uint32_t sparseMemoryRequirementCount; - getDispatcher()->vkGetImageSparseMemoryRequirements( - static_cast( m_device ), static_cast( m_image ), &sparseMemoryRequirementCount, nullptr ); - std::vector sparseMemoryRequirements( - sparseMemoryRequirementCount ); - getDispatcher()->vkGetImageSparseMemoryRequirements( - static_cast( m_device ), - static_cast( m_image ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount == sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties( VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageTiling tiling ) const - VULKAN_HPP_NOEXCEPT - { - uint32_t propertyCount; - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties( - static_cast( m_physicalDevice ), - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - &propertyCount, - nullptr ); - std::vector properties( propertyCount ); - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties( - static_cast( m_physicalDevice ), - static_cast( format ), - static_cast( type ), - static_cast( samples ), - static_cast( usage ), - static_cast( tiling ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount == properties.size() ); - return properties; - } - - VULKAN_HPP_INLINE void Queue::bindSparse( ArrayProxy const & bindInfo, - VULKAN_HPP_NAMESPACE::Fence fence ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkQueueBindSparse( static_cast( m_queue ), - bindInfo.size(), - reinterpret_cast( bindInfo.data() ), - static_cast( fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::bindSparse" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Fence Device::createFence( - VULKAN_HPP_NAMESPACE::FenceCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Fence( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Device::resetFences( ArrayProxy const & fences ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( getDispatcher()->vkResetFences( - static_cast( m_device ), fences.size(), reinterpret_cast( fences.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::resetFences" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result Fence::getStatus() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkGetFenceStatus( static_cast( m_device ), static_cast( m_fence ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eNotReady ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Fence::getStatus" ); - } - return result; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - Device::waitForFences( ArrayProxy const & fences, - VULKAN_HPP_NAMESPACE::Bool32 waitAll, - uint64_t timeout ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkWaitForFences( static_cast( m_device ), - fences.size(), - reinterpret_cast( fences.data() ), - static_cast( waitAll ), - timeout ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eTimeout ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::waitForFences" ); - } - return result; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Semaphore Device::createSemaphore( - VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Semaphore( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Event Device::createEvent( - VULKAN_HPP_NAMESPACE::EventCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Event( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result Event::getStatus() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkGetEventStatus( static_cast( m_device ), static_cast( m_event ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eEventSet ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eEventReset ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Event::getStatus" ); - } - return result; - } - - VULKAN_HPP_INLINE void Event::set() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkSetEvent( static_cast( m_device ), static_cast( m_event ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Event::set" ); - } - } - - VULKAN_HPP_INLINE void Event::reset() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkResetEvent( static_cast( m_device ), static_cast( m_event ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Event::reset" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::QueryPool Device::createQueryPool( - VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::QueryPool( *this, createInfo, allocator ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::pair> - QueryPool::getResults( uint32_t firstQuery, - uint32_t queryCount, - size_t dataSize, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags ) const - { - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = - static_cast( getDispatcher()->vkGetQueryPoolResults( static_cast( m_device ), - static_cast( m_queryPool ), - firstQuery, - queryCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ), - static_cast( stride ), - static_cast( flags ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eNotReady ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::QueryPool::getResults" ); - } - return std::make_pair( result, data ); - } - - template - VULKAN_HPP_NODISCARD std::pair - QueryPool::getResult( uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags ) const - { - DataType data; - Result result = - static_cast( getDispatcher()->vkGetQueryPoolResults( static_cast( m_device ), - static_cast( m_queryPool ), - firstQuery, - queryCount, - sizeof( DataType ), - reinterpret_cast( &data ), - static_cast( stride ), - static_cast( flags ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eNotReady ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::QueryPool::getResult" ); - } - return std::make_pair( result, data ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Buffer Device::createBuffer( - VULKAN_HPP_NAMESPACE::BufferCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Buffer( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::BufferView Device::createBufferView( - VULKAN_HPP_NAMESPACE::BufferViewCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::BufferView( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Image Device::createImage( - VULKAN_HPP_NAMESPACE::ImageCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Image( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::SubresourceLayout Image::getSubresourceLayout( - const VULKAN_HPP_NAMESPACE::ImageSubresource & subresource ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::SubresourceLayout layout; - getDispatcher()->vkGetImageSubresourceLayout( static_cast( m_device ), - static_cast( m_image ), - reinterpret_cast( &subresource ), - reinterpret_cast( &layout ) ); - return layout; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::ImageView Device::createImageView( - VULKAN_HPP_NAMESPACE::ImageViewCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::ImageView( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::ShaderModule Device::createShaderModule( - VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::ShaderModule( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::PipelineCache Device::createPipelineCache( - VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::PipelineCache( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector PipelineCache::getData() const - { - std::vector data; - size_t dataSize; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPipelineCacheData( - static_cast( m_device ), static_cast( m_pipelineCache ), &dataSize, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && dataSize ) - { - data.resize( dataSize ); - result = static_cast( - getDispatcher()->vkGetPipelineCacheData( static_cast( m_device ), - static_cast( m_pipelineCache ), - &dataSize, - reinterpret_cast( data.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PipelineCache::getData" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( dataSize <= data.size() ); - if ( dataSize < data.size() ) - { - data.resize( dataSize ); - } - } - return data; - } - - VULKAN_HPP_INLINE void - PipelineCache::merge( ArrayProxy const & srcCaches ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkMergePipelineCaches( static_cast( m_device ), - static_cast( m_pipelineCache ), - srcCaches.size(), - reinterpret_cast( srcCaches.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PipelineCache::merge" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::createGraphicsPipelines( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipelines( *this, pipelineCache, createInfos, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Pipeline Device::createGraphicsPipeline( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipeline( *this, pipelineCache, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::createComputePipelines( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipelines( *this, pipelineCache, createInfos, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Pipeline Device::createComputePipeline( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipeline( *this, pipelineCache, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::PipelineLayout Device::createPipelineLayout( - VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::PipelineLayout( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Sampler Device::createSampler( - VULKAN_HPP_NAMESPACE::SamplerCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Sampler( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DescriptorSetLayout - Device::createDescriptorSetLayout( - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DescriptorSetLayout( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DescriptorPool Device::createDescriptorPool( - VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DescriptorPool( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void - DescriptorPool::reset( VULKAN_HPP_NAMESPACE::DescriptorPoolResetFlags flags ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkResetDescriptorPool( static_cast( m_device ), - static_cast( m_descriptorPool ), - static_cast( flags ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::allocateDescriptorSets( VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo const & allocateInfo ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DescriptorSets( *this, allocateInfo ); - } - - VULKAN_HPP_INLINE void Device::updateDescriptorSets( - ArrayProxy const & descriptorWrites, - ArrayProxy const & descriptorCopies ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkUpdateDescriptorSets( - static_cast( m_device ), - descriptorWrites.size(), - reinterpret_cast( descriptorWrites.data() ), - descriptorCopies.size(), - reinterpret_cast( descriptorCopies.data() ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Framebuffer Device::createFramebuffer( - VULKAN_HPP_NAMESPACE::FramebufferCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Framebuffer( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::RenderPass Device::createRenderPass( - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::RenderPass( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Extent2D - RenderPass::getRenderAreaGranularity() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::Extent2D granularity; - getDispatcher()->vkGetRenderAreaGranularity( static_cast( m_device ), - static_cast( m_renderPass ), - reinterpret_cast( &granularity ) ); - return granularity; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::CommandPool Device::createCommandPool( - VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::CommandPool( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void CommandPool::reset( VULKAN_HPP_NAMESPACE::CommandPoolResetFlags flags ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkResetCommandPool( static_cast( m_device ), - static_cast( m_commandPool ), - static_cast( flags ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandPool::reset" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::allocateCommandBuffers( VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo const & allocateInfo ) const - { - return VULKAN_HPP_RAII_NAMESPACE::CommandBuffers( *this, allocateInfo ); - } - - VULKAN_HPP_INLINE void CommandBuffer::begin( const VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo & beginInfo ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkBeginCommandBuffer( static_cast( m_commandBuffer ), - reinterpret_cast( &beginInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::begin" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::end() const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkEndCommandBuffer( static_cast( m_commandBuffer ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::end" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::reset( VULKAN_HPP_NAMESPACE::CommandBufferResetFlags flags ) const - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkResetCommandBuffer( - static_cast( m_commandBuffer ), static_cast( flags ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::reset" ); - } - } - - VULKAN_HPP_INLINE void - CommandBuffer::bindPipeline( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBindPipeline( static_cast( m_commandBuffer ), - static_cast( pipelineBindPoint ), - static_cast( pipeline ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setViewport( - uint32_t firstViewport, - ArrayProxy const & viewports ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetViewport( static_cast( m_commandBuffer ), - firstViewport, - viewports.size(), - reinterpret_cast( viewports.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setScissor( - uint32_t firstScissor, ArrayProxy const & scissors ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetScissor( static_cast( m_commandBuffer ), - firstScissor, - scissors.size(), - reinterpret_cast( scissors.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setLineWidth( float lineWidth ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetLineWidth( static_cast( m_commandBuffer ), lineWidth ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setDepthBias( float depthBiasConstantFactor, - float depthBiasClamp, - float depthBiasSlopeFactor ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthBias( static_cast( m_commandBuffer ), - depthBiasConstantFactor, - depthBiasClamp, - depthBiasSlopeFactor ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setBlendConstants( const float blendConstants[4] ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetBlendConstants( static_cast( m_commandBuffer ), blendConstants ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setDepthBounds( float minDepthBounds, - float maxDepthBounds ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthBounds( - static_cast( m_commandBuffer ), minDepthBounds, maxDepthBounds ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setStencilCompareMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t compareMask ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetStencilCompareMask( - static_cast( m_commandBuffer ), static_cast( faceMask ), compareMask ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setStencilWriteMask( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t writeMask ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetStencilWriteMask( - static_cast( m_commandBuffer ), static_cast( faceMask ), writeMask ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setStencilReference( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - uint32_t reference ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetStencilReference( - static_cast( m_commandBuffer ), static_cast( faceMask ), reference ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::bindDescriptorSets( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t firstSet, - ArrayProxy const & descriptorSets, - ArrayProxy const & dynamicOffsets ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBindDescriptorSets( static_cast( m_commandBuffer ), - static_cast( pipelineBindPoint ), - static_cast( layout ), - firstSet, - descriptorSets.size(), - reinterpret_cast( descriptorSets.data() ), - dynamicOffsets.size(), - dynamicOffsets.data() ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::bindIndexBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::IndexType indexType ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBindIndexBuffer( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( indexType ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::bindVertexBuffers( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers: buffers.size() != offsets.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBindVertexBuffers( static_cast( m_commandBuffer ), - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::draw( uint32_t vertexCount, - uint32_t instanceCount, - uint32_t firstVertex, - uint32_t firstInstance ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDraw( - static_cast( m_commandBuffer ), vertexCount, instanceCount, firstVertex, firstInstance ); - } - - VULKAN_HPP_INLINE void CommandBuffer::drawIndexed( uint32_t indexCount, - uint32_t instanceCount, - uint32_t firstIndex, - int32_t vertexOffset, - uint32_t firstInstance ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDrawIndexed( static_cast( m_commandBuffer ), - indexCount, - instanceCount, - firstIndex, - vertexOffset, - firstInstance ); - } - - VULKAN_HPP_INLINE void CommandBuffer::drawIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDrawIndirect( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - drawCount, - stride ); - } - - VULKAN_HPP_INLINE void CommandBuffer::drawIndexedIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDrawIndexedIndirect( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - drawCount, - stride ); - } - - VULKAN_HPP_INLINE void CommandBuffer::dispatch( uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDispatch( - static_cast( m_commandBuffer ), groupCountX, groupCountY, groupCountZ ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::dispatchIndirect( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDispatchIndirect( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer( - VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyBuffer( static_cast( m_commandBuffer ), - static_cast( srcBuffer ), - static_cast( dstBuffer ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyImage( - VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyImage( static_cast( m_commandBuffer ), - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::blitImage( VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions, - VULKAN_HPP_NAMESPACE::Filter filter ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBlitImage( static_cast( m_commandBuffer ), - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ), - static_cast( filter ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyBufferToImage( - VULKAN_HPP_NAMESPACE::Buffer srcBuffer, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyBufferToImage( static_cast( m_commandBuffer ), - static_cast( srcBuffer ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyImageToBuffer( - VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyImageToBuffer( static_cast( m_commandBuffer ), - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstBuffer ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::updateBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - ArrayProxy const & data ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdUpdateBuffer( static_cast( m_commandBuffer ), - static_cast( dstBuffer ), - static_cast( dstOffset ), - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::fillBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize size, - uint32_t data ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdFillBuffer( static_cast( m_commandBuffer ), - static_cast( dstBuffer ), - static_cast( dstOffset ), - static_cast( size ), - data ); - } - - VULKAN_HPP_INLINE void CommandBuffer::clearColorImage( - VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearColorValue & color, - ArrayProxy const & ranges ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdClearColorImage( static_cast( m_commandBuffer ), - static_cast( image ), - static_cast( imageLayout ), - reinterpret_cast( &color ), - ranges.size(), - reinterpret_cast( ranges.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::clearDepthStencilImage( - VULKAN_HPP_NAMESPACE::Image image, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout, - const VULKAN_HPP_NAMESPACE::ClearDepthStencilValue & depthStencil, - ArrayProxy const & ranges ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdClearDepthStencilImage( - static_cast( m_commandBuffer ), - static_cast( image ), - static_cast( imageLayout ), - reinterpret_cast( &depthStencil ), - ranges.size(), - reinterpret_cast( ranges.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::clearAttachments( - ArrayProxy const & attachments, - ArrayProxy const & rects ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdClearAttachments( static_cast( m_commandBuffer ), - attachments.size(), - reinterpret_cast( attachments.data() ), - rects.size(), - reinterpret_cast( rects.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::resolveImage( - VULKAN_HPP_NAMESPACE::Image srcImage, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout, - VULKAN_HPP_NAMESPACE::Image dstImage, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout, - ArrayProxy const & regions ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdResolveImage( static_cast( m_commandBuffer ), - static_cast( srcImage ), - static_cast( srcImageLayout ), - static_cast( dstImage ), - static_cast( dstImageLayout ), - regions.size(), - reinterpret_cast( regions.data() ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetEvent( static_cast( m_commandBuffer ), - static_cast( event ), - static_cast( stageMask ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::resetEvent( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags stageMask ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdResetEvent( static_cast( m_commandBuffer ), - static_cast( event ), - static_cast( stageMask ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::waitEvents( - ArrayProxy const & events, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdWaitEvents( static_cast( m_commandBuffer ), - events.size(), - reinterpret_cast( events.data() ), - static_cast( srcStageMask ), - static_cast( dstStageMask ), - memoryBarriers.size(), - reinterpret_cast( memoryBarriers.data() ), - bufferMemoryBarriers.size(), - reinterpret_cast( bufferMemoryBarriers.data() ), - imageMemoryBarriers.size(), - reinterpret_cast( imageMemoryBarriers.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::pipelineBarrier( - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags, - ArrayProxy const & memoryBarriers, - ArrayProxy const & bufferMemoryBarriers, - ArrayProxy const & imageMemoryBarriers ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdPipelineBarrier( - static_cast( m_commandBuffer ), - static_cast( srcStageMask ), - static_cast( dstStageMask ), - static_cast( dependencyFlags ), - memoryBarriers.size(), - reinterpret_cast( memoryBarriers.data() ), - bufferMemoryBarriers.size(), - reinterpret_cast( bufferMemoryBarriers.data() ), - imageMemoryBarriers.size(), - reinterpret_cast( imageMemoryBarriers.data() ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::beginQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBeginQuery( static_cast( m_commandBuffer ), - static_cast( queryPool ), - query, - static_cast( flags ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endQuery( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdEndQuery( - static_cast( m_commandBuffer ), static_cast( queryPool ), query ); - } - - VULKAN_HPP_INLINE void CommandBuffer::resetQueryPool( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdResetQueryPool( static_cast( m_commandBuffer ), - static_cast( queryPool ), - firstQuery, - queryCount ); - } - - VULKAN_HPP_INLINE void CommandBuffer::writeTimestamp( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdWriteTimestamp( static_cast( m_commandBuffer ), - static_cast( pipelineStage ), - static_cast( queryPool ), - query ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::copyQueryPoolResults( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery, - uint32_t queryCount, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - VULKAN_HPP_NAMESPACE::DeviceSize stride, - VULKAN_HPP_NAMESPACE::QueryResultFlags flags ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyQueryPoolResults( static_cast( m_commandBuffer ), - static_cast( queryPool ), - firstQuery, - queryCount, - static_cast( dstBuffer ), - static_cast( dstOffset ), - static_cast( stride ), - static_cast( flags ) ); - } - - template - VULKAN_HPP_INLINE void - CommandBuffer::pushConstants( VULKAN_HPP_NAMESPACE::PipelineLayout layout, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags, - uint32_t offset, - ArrayProxy const & values ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdPushConstants( static_cast( m_commandBuffer ), - static_cast( layout ), - static_cast( stageFlags ), - offset, - values.size() * sizeof( ValuesType ), - reinterpret_cast( values.data() ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::beginRenderPass( const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - VULKAN_HPP_NAMESPACE::SubpassContents contents ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBeginRenderPass( static_cast( m_commandBuffer ), - reinterpret_cast( &renderPassBegin ), - static_cast( contents ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::nextSubpass( VULKAN_HPP_NAMESPACE::SubpassContents contents ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdNextSubpass( static_cast( m_commandBuffer ), - static_cast( contents ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass() const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdEndRenderPass( static_cast( m_commandBuffer ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::executeCommands( - ArrayProxy const & commandBuffers ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdExecuteCommands( static_cast( m_commandBuffer ), - commandBuffers.size(), - reinterpret_cast( commandBuffers.data() ) ); - } - - //=== VK_VERSION_1_1 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint32_t Context::enumerateInstanceVersion() const - { - uint32_t apiVersion; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkEnumerateInstanceVersion( &apiVersion ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Context::enumerateInstanceVersion" ); - } - return apiVersion; - } - - VULKAN_HPP_INLINE void - Device::bindBufferMemory2( ArrayProxy const & bindInfos ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkBindBufferMemory2( static_cast( m_device ), - bindInfos.size(), - reinterpret_cast( bindInfos.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindBufferMemory2" ); - } - } - - VULKAN_HPP_INLINE void - Device::bindImageMemory2( ArrayProxy const & bindInfos ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkBindImageMemory2( static_cast( m_device ), - bindInfos.size(), - reinterpret_cast( bindInfos.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindImageMemory2" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags - Device::getGroupPeerMemoryFeatures( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags peerMemoryFeatures; - getDispatcher()->vkGetDeviceGroupPeerMemoryFeatures( - static_cast( m_device ), - heapIndex, - localDeviceIndex, - remoteDeviceIndex, - reinterpret_cast( &peerMemoryFeatures ) ); - return peerMemoryFeatures; - } - - VULKAN_HPP_INLINE void CommandBuffer::setDeviceMask( uint32_t deviceMask ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDeviceMask( static_cast( m_commandBuffer ), deviceMask ); - } - - VULKAN_HPP_INLINE void CommandBuffer::dispatchBase( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDispatchBase( static_cast( m_commandBuffer ), - baseGroupX, - baseGroupY, - baseGroupZ, - groupCountX, - groupCountY, - groupCountZ ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Instance::enumeratePhysicalDeviceGroups() const - { - std::vector physicalDeviceGroupProperties; - uint32_t physicalDeviceGroupCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkEnumeratePhysicalDeviceGroups( - static_cast( m_instance ), &physicalDeviceGroupCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && physicalDeviceGroupCount ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - result = static_cast( getDispatcher()->vkEnumeratePhysicalDeviceGroups( - static_cast( m_instance ), - &physicalDeviceGroupCount, - reinterpret_cast( physicalDeviceGroupProperties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDeviceGroups" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() ); - if ( physicalDeviceGroupCount < physicalDeviceGroupProperties.size() ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - } - } - return physicalDeviceGroupProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirements2( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetImageMemoryRequirements2( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getImageMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetImageMemoryRequirements2( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirements2( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetBufferMemoryRequirements2( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getBufferMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetBufferMemoryRequirements2( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements2( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT - { - uint32_t sparseMemoryRequirementCount; - getDispatcher()->vkGetImageSparseMemoryRequirements2( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - std::vector sparseMemoryRequirements( - sparseMemoryRequirementCount ); - getDispatcher()->vkGetImageSparseMemoryRequirements2( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount == sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 - PhysicalDevice::getFeatures2() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 features; - getDispatcher()->vkGetPhysicalDeviceFeatures2( static_cast( m_physicalDevice ), - reinterpret_cast( &features ) ); - return features; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFeatures2() const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 & features = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceFeatures2( static_cast( m_physicalDevice ), - reinterpret_cast( &features ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - PhysicalDevice::getProperties2() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 properties; - getDispatcher()->vkGetPhysicalDeviceProperties2( static_cast( m_physicalDevice ), - reinterpret_cast( &properties ) ); - return properties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getProperties2() const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 & properties = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceProperties2( static_cast( m_physicalDevice ), - reinterpret_cast( &properties ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::FormatProperties2 - PhysicalDevice::getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::FormatProperties2 formatProperties; - getDispatcher()->vkGetPhysicalDeviceFormatProperties2( - static_cast( m_physicalDevice ), - static_cast( format ), - reinterpret_cast( &formatProperties ) ); - return formatProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFormatProperties2( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::FormatProperties2 & formatProperties = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceFormatProperties2( - static_cast( m_physicalDevice ), - static_cast( format ), - reinterpret_cast( &formatProperties ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ImageFormatProperties2 - PhysicalDevice::getImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const - { - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 imageFormatProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceImageFormatProperties2( - static_cast( m_physicalDevice ), - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2" ); - } - return imageFormatProperties; - } - - template - VULKAN_HPP_NODISCARD StructureChain PhysicalDevice::getImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 & imageFormatProperties = - structureChain.template get(); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceImageFormatProperties2( - static_cast( m_physicalDevice ), - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2" ); - } - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2() const VULKAN_HPP_NOEXCEPT - { - uint32_t queueFamilyPropertyCount; - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2( - static_cast( m_physicalDevice ), &queueFamilyPropertyCount, nullptr ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2( - static_cast( m_physicalDevice ), - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount == queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector PhysicalDevice::getQueueFamilyProperties2() const - { - uint32_t queueFamilyPropertyCount; - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2( - static_cast( m_physicalDevice ), &queueFamilyPropertyCount, nullptr ); - std::vector returnVector( queueFamilyPropertyCount ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - queueFamilyProperties[i].pNext = - returnVector[i].template get().pNext; - } - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2( - static_cast( m_physicalDevice ), - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - returnVector[i].template get() = queueFamilyProperties[i]; - } - return returnVector; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - PhysicalDevice::getMemoryProperties2() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 memoryProperties; - getDispatcher()->vkGetPhysicalDeviceMemoryProperties2( - static_cast( m_physicalDevice ), - reinterpret_cast( &memoryProperties ) ); - return memoryProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getMemoryProperties2() const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 & memoryProperties = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceMemoryProperties2( - static_cast( m_physicalDevice ), - reinterpret_cast( &memoryProperties ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties2( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo ) const VULKAN_HPP_NOEXCEPT - { - uint32_t propertyCount; - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties2( - static_cast( m_physicalDevice ), - reinterpret_cast( &formatInfo ), - &propertyCount, - nullptr ); - std::vector properties( propertyCount ); - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties2( - static_cast( m_physicalDevice ), - reinterpret_cast( &formatInfo ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount == properties.size() ); - return properties; - } - - VULKAN_HPP_INLINE void - CommandPool::trim( VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkTrimCommandPool( static_cast( m_device ), - static_cast( m_commandPool ), - static_cast( flags ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Queue - Device::getQueue2( VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 const & queueInfo ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Queue( *this, queueInfo ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SamplerYcbcrConversion - Device::createSamplerYcbcrConversion( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SamplerYcbcrConversion( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DescriptorUpdateTemplate - Device::createDescriptorUpdateTemplate( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DescriptorUpdateTemplate( *this, createInfo, allocator ); - } - - template - VULKAN_HPP_INLINE void - DescriptorSet::updateWithTemplate( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkUpdateDescriptorSetWithTemplate( - static_cast( m_device ), - static_cast( m_descriptorSet ), - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( &data ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalBufferProperties - PhysicalDevice::getExternalBufferProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::ExternalBufferProperties externalBufferProperties; - getDispatcher()->vkGetPhysicalDeviceExternalBufferProperties( - static_cast( m_physicalDevice ), - reinterpret_cast( &externalBufferInfo ), - reinterpret_cast( &externalBufferProperties ) ); - return externalBufferProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalFenceProperties - PhysicalDevice::getExternalFenceProperties( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::ExternalFenceProperties externalFenceProperties; - getDispatcher()->vkGetPhysicalDeviceExternalFenceProperties( - static_cast( m_physicalDevice ), - reinterpret_cast( &externalFenceInfo ), - reinterpret_cast( &externalFenceProperties ) ); - return externalFenceProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties - PhysicalDevice::getExternalSemaphoreProperties( const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & - externalSemaphoreInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties externalSemaphoreProperties; - getDispatcher()->vkGetPhysicalDeviceExternalSemaphoreProperties( - static_cast( m_physicalDevice ), - reinterpret_cast( &externalSemaphoreInfo ), - reinterpret_cast( &externalSemaphoreProperties ) ); - return externalSemaphoreProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport - Device::getDescriptorSetLayoutSupport( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport support; - getDispatcher()->vkGetDescriptorSetLayoutSupport( - static_cast( m_device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return support; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getDescriptorSetLayoutSupport( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport & support = - structureChain.template get(); - getDispatcher()->vkGetDescriptorSetLayoutSupport( - static_cast( m_device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return structureChain; - } - - //=== VK_VERSION_1_2 === - - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDrawIndirectCount( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - VULKAN_HPP_INLINE void CommandBuffer::drawIndexedIndirectCount( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdDrawIndexedIndirectCount( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::RenderPass Device::createRenderPass2( - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::RenderPass( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void CommandBuffer::beginRenderPass2( - const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBeginRenderPass2( static_cast( m_commandBuffer ), - reinterpret_cast( &renderPassBegin ), - reinterpret_cast( &subpassBeginInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::nextSubpass2( - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdNextSubpass2( static_cast( m_commandBuffer ), - reinterpret_cast( &subpassBeginInfo ), - reinterpret_cast( &subpassEndInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass2( - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdEndRenderPass2( static_cast( m_commandBuffer ), - reinterpret_cast( &subpassEndInfo ) ); - } - - VULKAN_HPP_INLINE void QueryPool::reset( uint32_t firstQuery, uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkResetQueryPool( - static_cast( m_device ), static_cast( m_queryPool ), firstQuery, queryCount ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t Semaphore::getCounterValue() const - { - uint64_t value; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetSemaphoreCounterValue( - static_cast( m_device ), static_cast( m_semaphore ), &value ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Semaphore::getCounterValue" ); - } - return value; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - Device::waitSemaphores( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, uint64_t timeout ) const - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkWaitSemaphores( - static_cast( m_device ), reinterpret_cast( &waitInfo ), timeout ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eTimeout ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::waitSemaphores" ); - } - return result; - } - - VULKAN_HPP_INLINE void Device::signalSemaphore( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo ) const - { - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkSignalSemaphore( - static_cast( m_device ), reinterpret_cast( &signalInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::signalSemaphore" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceAddress - Device::getBufferAddress( const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - return static_cast( getDispatcher()->vkGetBufferDeviceAddress( - static_cast( m_device ), reinterpret_cast( &info ) ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t Device::getBufferOpaqueCaptureAddress( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - return getDispatcher()->vkGetBufferOpaqueCaptureAddress( - static_cast( m_device ), reinterpret_cast( &info ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t Device::getMemoryOpaqueCaptureAddress( - const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - return getDispatcher()->vkGetDeviceMemoryOpaqueCaptureAddress( - static_cast( m_device ), reinterpret_cast( &info ) ); - } - - //=== VK_VERSION_1_3 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getToolProperties() const - { - std::vector toolProperties; - uint32_t toolCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceToolProperties( - static_cast( m_physicalDevice ), &toolCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && toolCount ) - { - toolProperties.resize( toolCount ); - result = static_cast( getDispatcher()->vkGetPhysicalDeviceToolProperties( - static_cast( m_physicalDevice ), - &toolCount, - reinterpret_cast( toolProperties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getToolProperties" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( toolCount <= toolProperties.size() ); - if ( toolCount < toolProperties.size() ) - { - toolProperties.resize( toolCount ); - } - } - return toolProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::PrivateDataSlot Device::createPrivateDataSlot( - VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::PrivateDataSlot( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Device::setPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkSetPrivateData( static_cast( m_device ), - static_cast( objectType_ ), - objectHandle, - static_cast( privateDataSlot ), - data ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setPrivateData" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t - Device::getPrivateData( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot ) const VULKAN_HPP_NOEXCEPT - { - uint64_t data; - getDispatcher()->vkGetPrivateData( static_cast( m_device ), - static_cast( objectType_ ), - objectHandle, - static_cast( privateDataSlot ), - &data ); - return data; - } - - VULKAN_HPP_INLINE void - CommandBuffer::setEvent2( VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetEvent2( static_cast( m_commandBuffer ), - static_cast( event ), - reinterpret_cast( &dependencyInfo ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::resetEvent2( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdResetEvent2( static_cast( m_commandBuffer ), - static_cast( event ), - static_cast( stageMask ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::waitEvents2( ArrayProxy const & events, - ArrayProxy const & dependencyInfos ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( events.size() == dependencyInfos.size() ); -# else - if ( events.size() != dependencyInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::waitEvents2: events.size() != dependencyInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdWaitEvents2( static_cast( m_commandBuffer ), - events.size(), - reinterpret_cast( events.data() ), - reinterpret_cast( dependencyInfos.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::pipelineBarrier2( - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdPipelineBarrier2( static_cast( m_commandBuffer ), - reinterpret_cast( &dependencyInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::writeTimestamp2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdWriteTimestamp2( static_cast( m_commandBuffer ), - static_cast( stage ), - static_cast( queryPool ), - query ); - } - - VULKAN_HPP_INLINE void Queue::submit2( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence ) const - { - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkQueueSubmit2( static_cast( m_queue ), - submits.size(), - reinterpret_cast( submits.data() ), - static_cast( fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::submit2" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer2( - const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyBuffer2( static_cast( m_commandBuffer ), - reinterpret_cast( ©BufferInfo ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::copyImage2( const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyImage2( static_cast( m_commandBuffer ), - reinterpret_cast( ©ImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyBufferToImage2( - const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyBufferToImage2( - static_cast( m_commandBuffer ), - reinterpret_cast( ©BufferToImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyImageToBuffer2( - const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdCopyImageToBuffer2( - static_cast( m_commandBuffer ), - reinterpret_cast( ©ImageToBufferInfo ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::blitImage2( const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBlitImage2( static_cast( m_commandBuffer ), - reinterpret_cast( &blitImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::resolveImage2( - const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdResolveImage2( static_cast( m_commandBuffer ), - reinterpret_cast( &resolveImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::beginRendering( - const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdBeginRendering( static_cast( m_commandBuffer ), - reinterpret_cast( &renderingInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endRendering() const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdEndRendering( static_cast( m_commandBuffer ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setCullMode( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetCullMode( static_cast( m_commandBuffer ), - static_cast( cullMode ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setFrontFace( VULKAN_HPP_NAMESPACE::FrontFace frontFace ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetFrontFace( static_cast( m_commandBuffer ), - static_cast( frontFace ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setPrimitiveTopology( - VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetPrimitiveTopology( static_cast( m_commandBuffer ), - static_cast( primitiveTopology ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setViewportWithCount( - ArrayProxy const & viewports ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetViewportWithCount( static_cast( m_commandBuffer ), - viewports.size(), - reinterpret_cast( viewports.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setScissorWithCount( - ArrayProxy const & scissors ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetScissorWithCount( static_cast( m_commandBuffer ), - scissors.size(), - reinterpret_cast( scissors.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::bindVertexBuffers2( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes, - ArrayProxy const & strides ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); - VULKAN_HPP_ASSERT( sizes.empty() || buffers.size() == sizes.size() ); - VULKAN_HPP_ASSERT( strides.empty() || buffers.size() == strides.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2: buffers.size() != offsets.size()" ); - } - if ( !sizes.empty() && buffers.size() != sizes.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2: buffers.size() != sizes.size()" ); - } - if ( !strides.empty() && buffers.size() != strides.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2: buffers.size() != strides.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBindVertexBuffers2( static_cast( m_commandBuffer ), - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ), - reinterpret_cast( sizes.data() ), - reinterpret_cast( strides.data() ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthTestEnable( static_cast( m_commandBuffer ), - static_cast( depthTestEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthWriteEnable( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthWriteEnable( static_cast( m_commandBuffer ), - static_cast( depthWriteEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthCompareOp( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthCompareOp( static_cast( m_commandBuffer ), - static_cast( depthCompareOp ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setDepthBoundsTestEnable( - VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthBoundsTestEnable( static_cast( m_commandBuffer ), - static_cast( depthBoundsTestEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setStencilTestEnable( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetStencilTestEnable( static_cast( m_commandBuffer ), - static_cast( stencilTestEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setStencilOp( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetStencilOp( static_cast( m_commandBuffer ), - static_cast( faceMask ), - static_cast( failOp ), - static_cast( passOp ), - static_cast( depthFailOp ), - static_cast( compareOp ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setRasterizerDiscardEnable( - VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetRasterizerDiscardEnable( static_cast( m_commandBuffer ), - static_cast( rasterizerDiscardEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthBiasEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetDepthBiasEnable( static_cast( m_commandBuffer ), - static_cast( depthBiasEnable ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setPrimitiveRestartEnable( - VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable ) const VULKAN_HPP_NOEXCEPT - { - getDispatcher()->vkCmdSetPrimitiveRestartEnable( static_cast( m_commandBuffer ), - static_cast( primitiveRestartEnable ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetDeviceBufferMemoryRequirements( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getBufferMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetDeviceBufferMemoryRequirements( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 Device::getImageMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetDeviceImageMemoryRequirements( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getImageMemoryRequirements( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetDeviceImageMemoryRequirements( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const - VULKAN_HPP_NOEXCEPT - { - uint32_t sparseMemoryRequirementCount; - getDispatcher()->vkGetDeviceImageSparseMemoryRequirements( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - std::vector sparseMemoryRequirements( - sparseMemoryRequirementCount ); - getDispatcher()->vkGetDeviceImageSparseMemoryRequirements( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount == sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - //=== VK_KHR_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 - PhysicalDevice::getSurfaceSupportKHR( uint32_t queueFamilyIndex, VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetPhysicalDeviceSurfaceSupportKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Bool32 supported; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkGetPhysicalDeviceSurfaceSupportKHR( static_cast( m_physicalDevice ), - queueFamilyIndex, - static_cast( surface ), - reinterpret_cast( &supported ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceSupportKHR" ); - } - return supported; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR - PhysicalDevice::getSurfaceCapabilitiesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilitiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR surfaceCapabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilitiesKHR( - static_cast( m_physicalDevice ), - static_cast( surface ), - reinterpret_cast( &surfaceCapabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilitiesKHR" ); - } - return surfaceCapabilities; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSurfaceFormatsKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetPhysicalDeviceSurfaceFormatsKHR && - "Function needs extension enabled!" ); - - std::vector surfaceFormats; - uint32_t surfaceFormatCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetPhysicalDeviceSurfaceFormatsKHR( static_cast( m_physicalDevice ), - static_cast( surface ), - &surfaceFormatCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && surfaceFormatCount ) - { - surfaceFormats.resize( surfaceFormatCount ); - result = static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceFormatsKHR( - static_cast( m_physicalDevice ), - static_cast( surface ), - &surfaceFormatCount, - reinterpret_cast( surfaceFormats.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceFormatsKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( surfaceFormatCount <= surfaceFormats.size() ); - if ( surfaceFormatCount < surfaceFormats.size() ) - { - surfaceFormats.resize( surfaceFormatCount ); - } - } - return surfaceFormats; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSurfacePresentModesKHR && - "Function needs extension enabled!" ); - - std::vector presentModes; - uint32_t presentModeCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetPhysicalDeviceSurfacePresentModesKHR( static_cast( m_physicalDevice ), - static_cast( surface ), - &presentModeCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && presentModeCount ) - { - presentModes.resize( presentModeCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceSurfacePresentModesKHR( - static_cast( m_physicalDevice ), - static_cast( surface ), - &presentModeCount, - reinterpret_cast( presentModes.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfacePresentModesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentModeCount <= presentModes.size() ); - if ( presentModeCount < presentModes.size() ) - { - presentModes.resize( presentModeCount ); - } - } - return presentModes; - } - - //=== VK_KHR_swapchain === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SwapchainKHR Device::createSwapchainKHR( - VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SwapchainKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector SwapchainKHR::getImages() const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetSwapchainImagesKHR && - "Function needs extension enabled!" ); - - std::vector swapchainImages; - uint32_t swapchainImageCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetSwapchainImagesKHR( static_cast( m_device ), - static_cast( m_swapchain ), - &swapchainImageCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && swapchainImageCount ) - { - swapchainImages.resize( swapchainImageCount ); - result = static_cast( - getDispatcher()->vkGetSwapchainImagesKHR( static_cast( m_device ), - static_cast( m_swapchain ), - &swapchainImageCount, - swapchainImages.data() ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::getImages" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( swapchainImageCount <= swapchainImages.size() ); - if ( swapchainImageCount < swapchainImages.size() ) - { - swapchainImages.resize( swapchainImageCount ); - } - } - return swapchainImages; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::pair - SwapchainKHR::acquireNextImage( uint64_t timeout, - VULKAN_HPP_NAMESPACE::Semaphore semaphore, - VULKAN_HPP_NAMESPACE::Fence fence ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkAcquireNextImageKHR && - "Function needs extension enabled!" ); - - uint32_t imageIndex; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkAcquireNextImageKHR( static_cast( m_device ), - static_cast( m_swapchain ), - timeout, - static_cast( semaphore ), - static_cast( fence ), - &imageIndex ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eTimeout ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eNotReady ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::acquireNextImage" ); - } - return std::make_pair( result, imageIndex ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - Queue::presentKHR( const VULKAN_HPP_NAMESPACE::PresentInfoKHR & presentInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkQueuePresentKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkQueuePresentKHR( - static_cast( m_queue ), reinterpret_cast( &presentInfo ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::presentKHR" ); - } - return result; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR - Device::getGroupPresentCapabilitiesKHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceGroupPresentCapabilitiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR deviceGroupPresentCapabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetDeviceGroupPresentCapabilitiesKHR( - static_cast( m_device ), - reinterpret_cast( &deviceGroupPresentCapabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getGroupPresentCapabilitiesKHR" ); - } - return deviceGroupPresentCapabilities; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR - Device::getGroupSurfacePresentModesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceGroupSurfacePresentModesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetDeviceGroupSurfacePresentModesKHR( - static_cast( m_device ), - static_cast( surface ), - reinterpret_cast( &modes ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getGroupSurfacePresentModesKHR" ); - } - return modes; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getPresentRectanglesKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDevicePresentRectanglesKHR && - "Function needs extension enabled!" ); - - std::vector rects; - uint32_t rectCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetPhysicalDevicePresentRectanglesKHR( static_cast( m_physicalDevice ), - static_cast( surface ), - &rectCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && rectCount ) - { - rects.resize( rectCount ); - result = static_cast( - getDispatcher()->vkGetPhysicalDevicePresentRectanglesKHR( static_cast( m_physicalDevice ), - static_cast( surface ), - &rectCount, - reinterpret_cast( rects.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getPresentRectanglesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( rectCount <= rects.size() ); - if ( rectCount < rects.size() ) - { - rects.resize( rectCount ); - } - } - return rects; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::pair - Device::acquireNextImage2KHR( const VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR & acquireInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkAcquireNextImage2KHR && - "Function needs extension enabled!" ); - - uint32_t imageIndex; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkAcquireNextImage2KHR( static_cast( m_device ), - reinterpret_cast( &acquireInfo ), - &imageIndex ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eTimeout ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eNotReady ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::acquireNextImage2KHR" ); - } - return std::make_pair( result, imageIndex ); - } - - //=== VK_KHR_display === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getDisplayPropertiesKHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceDisplayPropertiesKHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayPropertiesKHR( - static_cast( m_physicalDevice ), &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayPropertiesKHR( - static_cast( m_physicalDevice ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPropertiesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getDisplayPlanePropertiesKHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceDisplayPlanePropertiesKHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - static_cast( m_physicalDevice ), &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayPlanePropertiesKHR( - static_cast( m_physicalDevice ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlanePropertiesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getDisplayPlaneSupportedDisplaysKHR( uint32_t planeIndex ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DisplayKHRs( *this, planeIndex ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - DisplayKHR::getModeProperties() const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetDisplayModePropertiesKHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetDisplayModePropertiesKHR( static_cast( m_physicalDevice ), - static_cast( m_display ), - &propertyCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkGetDisplayModePropertiesKHR( - static_cast( m_physicalDevice ), - static_cast( m_display ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DisplayKHR::getModeProperties" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DisplayModeKHR DisplayKHR::createMode( - VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DisplayModeKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR - DisplayModeKHR::getDisplayPlaneCapabilities( uint32_t planeIndex ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetDisplayPlaneCapabilitiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR capabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetDisplayPlaneCapabilitiesKHR( - static_cast( m_physicalDevice ), - static_cast( m_displayModeKHR ), - planeIndex, - reinterpret_cast( &capabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DisplayModeKHR::getDisplayPlaneCapabilities" ); - } - return capabilities; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createDisplayPlaneSurfaceKHR( - VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - //=== VK_KHR_display_swapchain === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::createSharedSwapchainsKHR( - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SwapchainKHRs( *this, createInfos, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SwapchainKHR Device::createSharedSwapchainKHR( - VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SwapchainKHR( *this, createInfo, allocator ); - } - -# if defined( VK_USE_PLATFORM_XLIB_KHR ) - //=== VK_KHR_xlib_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createXlibSurfaceKHR( - VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 PhysicalDevice::getXlibPresentationSupportKHR( - uint32_t queueFamilyIndex, Display & dpy, VisualID visualID ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceXlibPresentationSupportKHR && - "Function needs extension enabled!" ); - - return static_cast( getDispatcher()->vkGetPhysicalDeviceXlibPresentationSupportKHR( - static_cast( m_physicalDevice ), queueFamilyIndex, &dpy, visualID ) ); - } -# endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -# if defined( VK_USE_PLATFORM_XCB_KHR ) - //=== VK_KHR_xcb_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createXcbSurfaceKHR( - VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 PhysicalDevice::getXcbPresentationSupportKHR( - uint32_t queueFamilyIndex, xcb_connection_t & connection, xcb_visualid_t visual_id ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceXcbPresentationSupportKHR && - "Function needs extension enabled!" ); - - return static_cast( getDispatcher()->vkGetPhysicalDeviceXcbPresentationSupportKHR( - static_cast( m_physicalDevice ), queueFamilyIndex, &connection, visual_id ) ); - } -# endif /*VK_USE_PLATFORM_XCB_KHR*/ - -# if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - //=== VK_KHR_wayland_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createWaylandSurfaceKHR( - VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 - PhysicalDevice::getWaylandPresentationSupportKHR( uint32_t queueFamilyIndex, - struct wl_display & display ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceWaylandPresentationSupportKHR && - "Function needs extension enabled!" ); - - return static_cast( - getDispatcher()->vkGetPhysicalDeviceWaylandPresentationSupportKHR( - static_cast( m_physicalDevice ), queueFamilyIndex, &display ) ); - } -# endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_KHR_android_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createAndroidSurfaceKHR( - VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_win32_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createWin32SurfaceKHR( - VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 - PhysicalDevice::getWin32PresentationSupportKHR( uint32_t queueFamilyIndex ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceWin32PresentationSupportKHR && - "Function needs extension enabled!" ); - - return static_cast( getDispatcher()->vkGetPhysicalDeviceWin32PresentationSupportKHR( - static_cast( m_physicalDevice ), queueFamilyIndex ) ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_debug_report === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DebugReportCallbackEXT - Instance::createDebugReportCallbackEXT( - VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DebugReportCallbackEXT( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Instance::debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_, - uint64_t object, - size_t location, - int32_t messageCode, - const std::string & layerPrefix, - const std::string & message ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkDebugReportMessageEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkDebugReportMessageEXT( static_cast( m_instance ), - static_cast( flags ), - static_cast( objectType_ ), - object, - location, - messageCode, - layerPrefix.c_str(), - message.c_str() ); - } - - //=== VK_EXT_debug_marker === - - VULKAN_HPP_INLINE void - Device::debugMarkerSetObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT & tagInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkDebugMarkerSetObjectTagEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkDebugMarkerSetObjectTagEXT( - static_cast( m_device ), reinterpret_cast( &tagInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::debugMarkerSetObjectTagEXT" ); - } - } - - VULKAN_HPP_INLINE void - Device::debugMarkerSetObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT & nameInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkDebugMarkerSetObjectNameEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkDebugMarkerSetObjectNameEXT( - static_cast( m_device ), reinterpret_cast( &nameInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::debugMarkerSetObjectNameEXT" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::debugMarkerBeginEXT( - const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDebugMarkerBeginEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDebugMarkerBeginEXT( static_cast( m_commandBuffer ), - reinterpret_cast( &markerInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::debugMarkerEndEXT() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDebugMarkerEndEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDebugMarkerEndEXT( static_cast( m_commandBuffer ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::debugMarkerInsertEXT( - const VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT & markerInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDebugMarkerInsertEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDebugMarkerInsertEXT( static_cast( m_commandBuffer ), - reinterpret_cast( &markerInfo ) ); - } - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_queue === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR - PhysicalDevice::getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceVideoCapabilitiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR capabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceVideoCapabilitiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &videoProfile ), - reinterpret_cast( &capabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoCapabilitiesKHR" ); - } - return capabilities; - } - - template - VULKAN_HPP_NODISCARD StructureChain - PhysicalDevice::getVideoCapabilitiesKHR( const VULKAN_HPP_NAMESPACE::VideoProfileKHR & videoProfile ) const - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR & capabilities = - structureChain.template get(); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceVideoCapabilitiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &videoProfile ), - reinterpret_cast( &capabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoCapabilitiesKHR" ); - } - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getVideoFormatPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR & videoFormatInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceVideoFormatPropertiesKHR && - "Function needs extension enabled!" ); - - std::vector videoFormatProperties; - uint32_t videoFormatPropertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceVideoFormatPropertiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &videoFormatInfo ), - &videoFormatPropertyCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && videoFormatPropertyCount ) - { - videoFormatProperties.resize( videoFormatPropertyCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceVideoFormatPropertiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &videoFormatInfo ), - &videoFormatPropertyCount, - reinterpret_cast( videoFormatProperties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getVideoFormatPropertiesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( videoFormatPropertyCount <= videoFormatProperties.size() ); - if ( videoFormatPropertyCount < videoFormatProperties.size() ) - { - videoFormatProperties.resize( videoFormatPropertyCount ); - } - } - return videoFormatProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::VideoSessionKHR Device::createVideoSessionKHR( - VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::VideoSessionKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - VideoSessionKHR::getMemoryRequirements() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetVideoSessionMemoryRequirementsKHR && - "Function needs extension enabled!" ); - - std::vector videoSessionMemoryRequirements; - uint32_t videoSessionMemoryRequirementsCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetVideoSessionMemoryRequirementsKHR( static_cast( m_device ), - static_cast( m_videoSession ), - &videoSessionMemoryRequirementsCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && videoSessionMemoryRequirementsCount ) - { - videoSessionMemoryRequirements.resize( videoSessionMemoryRequirementsCount ); - result = static_cast( getDispatcher()->vkGetVideoSessionMemoryRequirementsKHR( - static_cast( m_device ), - static_cast( m_videoSession ), - &videoSessionMemoryRequirementsCount, - reinterpret_cast( videoSessionMemoryRequirements.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::VideoSessionKHR::getMemoryRequirements" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( videoSessionMemoryRequirementsCount <= videoSessionMemoryRequirements.size() ); - if ( videoSessionMemoryRequirementsCount < videoSessionMemoryRequirements.size() ) - { - videoSessionMemoryRequirements.resize( videoSessionMemoryRequirementsCount ); - } - } - return videoSessionMemoryRequirements; - } - - VULKAN_HPP_INLINE void VideoSessionKHR::bindMemory( - ArrayProxy const & videoSessionBindMemories ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkBindVideoSessionMemoryKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkBindVideoSessionMemoryKHR( - static_cast( m_device ), - static_cast( m_videoSession ), - videoSessionBindMemories.size(), - reinterpret_cast( videoSessionBindMemories.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::VideoSessionKHR::bindMemory" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::VideoSessionParametersKHR - Device::createVideoSessionParametersKHR( - VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::VideoSessionParametersKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void VideoSessionParametersKHR::update( - const VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR & updateInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkUpdateVideoSessionParametersKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkUpdateVideoSessionParametersKHR( - static_cast( m_device ), - static_cast( m_videoSessionParameters ), - reinterpret_cast( &updateInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::VideoSessionParametersKHR::update" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::beginVideoCodingKHR( - const VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR & beginInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBeginVideoCodingKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBeginVideoCodingKHR( static_cast( m_commandBuffer ), - reinterpret_cast( &beginInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endVideoCodingKHR( - const VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR & endCodingInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdEndVideoCodingKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEndVideoCodingKHR( static_cast( m_commandBuffer ), - reinterpret_cast( &endCodingInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::controlVideoCodingKHR( - const VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR & codingControlInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdControlVideoCodingKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdControlVideoCodingKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &codingControlInfo ) ); - } -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_decode_queue === - - VULKAN_HPP_INLINE void CommandBuffer::decodeVideoKHR( - const VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR & frameInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDecodeVideoKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDecodeVideoKHR( static_cast( m_commandBuffer ), - reinterpret_cast( &frameInfo ) ); - } -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_EXT_transform_feedback === - - VULKAN_HPP_INLINE void CommandBuffer::bindTransformFeedbackBuffersEXT( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBindTransformFeedbackBuffersEXT && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); - VULKAN_HPP_ASSERT( sizes.empty() || buffers.size() == sizes.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindTransformFeedbackBuffersEXT: buffers.size() != offsets.size()" ); - } - if ( !sizes.empty() && buffers.size() != sizes.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindTransformFeedbackBuffersEXT: buffers.size() != sizes.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBindTransformFeedbackBuffersEXT( static_cast( m_commandBuffer ), - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ), - reinterpret_cast( sizes.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::beginTransformFeedbackEXT( - uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBeginTransformFeedbackEXT && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( counterBufferOffsets.empty() || counterBuffers.size() == counterBufferOffsets.size() ); -# else - if ( !counterBufferOffsets.empty() && counterBuffers.size() != counterBufferOffsets.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::beginTransformFeedbackEXT: counterBuffers.size() != counterBufferOffsets.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBeginTransformFeedbackEXT( - static_cast( m_commandBuffer ), - firstCounterBuffer, - counterBuffers.size(), - reinterpret_cast( counterBuffers.data() ), - reinterpret_cast( counterBufferOffsets.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endTransformFeedbackEXT( - uint32_t firstCounterBuffer, - ArrayProxy const & counterBuffers, - ArrayProxy const & counterBufferOffsets ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdEndTransformFeedbackEXT && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( counterBufferOffsets.empty() || counterBuffers.size() == counterBufferOffsets.size() ); -# else - if ( !counterBufferOffsets.empty() && counterBuffers.size() != counterBufferOffsets.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::endTransformFeedbackEXT: counterBuffers.size() != counterBufferOffsets.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdEndTransformFeedbackEXT( - static_cast( m_commandBuffer ), - firstCounterBuffer, - counterBuffers.size(), - reinterpret_cast( counterBuffers.data() ), - reinterpret_cast( counterBufferOffsets.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::beginQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - VULKAN_HPP_NAMESPACE::QueryControlFlags flags, - uint32_t index ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBeginQueryIndexedEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBeginQueryIndexedEXT( static_cast( m_commandBuffer ), - static_cast( queryPool ), - query, - static_cast( flags ), - index ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endQueryIndexedEXT( VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query, - uint32_t index ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdEndQueryIndexedEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEndQueryIndexedEXT( - static_cast( m_commandBuffer ), static_cast( queryPool ), query, index ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::drawIndirectByteCountEXT( uint32_t instanceCount, - uint32_t firstInstance, - VULKAN_HPP_NAMESPACE::Buffer counterBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize counterBufferOffset, - uint32_t counterOffset, - uint32_t vertexStride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdDrawIndirectByteCountEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawIndirectByteCountEXT( static_cast( m_commandBuffer ), - instanceCount, - firstInstance, - static_cast( counterBuffer ), - static_cast( counterBufferOffset ), - counterOffset, - vertexStride ); - } - - //=== VK_NVX_binary_import === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::CuModuleNVX Device::createCuModuleNVX( - VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::CuModuleNVX( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::CuFunctionNVX Device::createCuFunctionNVX( - VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::CuFunctionNVX( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void CommandBuffer::cuLaunchKernelNVX( - const VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX & launchInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdCuLaunchKernelNVX && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCuLaunchKernelNVX( static_cast( m_commandBuffer ), - reinterpret_cast( &launchInfo ) ); - } - - //=== VK_NVX_image_view_handle === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint32_t Device::getImageViewHandleNVX( - const VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetImageViewHandleNVX && - "Function needs extension enabled!" ); - - return getDispatcher()->vkGetImageViewHandleNVX( static_cast( m_device ), - reinterpret_cast( &info ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX - ImageView::getAddressNVX() const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetImageViewAddressNVX && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX properties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetImageViewAddressNVX( - static_cast( m_device ), - static_cast( m_imageView ), - reinterpret_cast( &properties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::ImageView::getAddressNVX" ); - } - return properties; - } - - //=== VK_AMD_draw_indirect_count === - - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawIndirectCountAMD && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawIndirectCountAMD( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::drawIndexedIndirectCountAMD( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdDrawIndexedIndirectCountAMD && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawIndexedIndirectCountAMD( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - //=== VK_AMD_shader_info === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Pipeline::getShaderInfoAMD( VULKAN_HPP_NAMESPACE::ShaderStageFlagBits shaderStage, - VULKAN_HPP_NAMESPACE::ShaderInfoTypeAMD infoType ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetShaderInfoAMD && - "Function needs extension enabled!" ); - - std::vector info; - size_t infoSize; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetShaderInfoAMD( static_cast( m_device ), - static_cast( m_pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - &infoSize, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && infoSize ) - { - info.resize( infoSize ); - result = static_cast( - getDispatcher()->vkGetShaderInfoAMD( static_cast( m_device ), - static_cast( m_pipeline ), - static_cast( shaderStage ), - static_cast( infoType ), - &infoSize, - reinterpret_cast( info.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getShaderInfoAMD" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( infoSize <= info.size() ); - if ( infoSize < info.size() ) - { - info.resize( infoSize ); - } - } - return info; - } - - //=== VK_KHR_dynamic_rendering === - - VULKAN_HPP_INLINE void CommandBuffer::beginRenderingKHR( - const VULKAN_HPP_NAMESPACE::RenderingInfo & renderingInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBeginRenderingKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBeginRenderingKHR( static_cast( m_commandBuffer ), - reinterpret_cast( &renderingInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endRenderingKHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdEndRenderingKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEndRenderingKHR( static_cast( m_commandBuffer ) ); - } - -# if defined( VK_USE_PLATFORM_GGP ) - //=== VK_GGP_stream_descriptor_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR - Instance::createStreamDescriptorSurfaceGGP( - VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_GGP*/ - - //=== VK_NV_external_memory_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV - PhysicalDevice::getExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::Format format, - VULKAN_HPP_NAMESPACE::ImageType type, - VULKAN_HPP_NAMESPACE::ImageTiling tiling, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV externalHandleType ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceExternalImageFormatPropertiesNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV externalImageFormatProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceExternalImageFormatPropertiesNV( - static_cast( m_physicalDevice ), - static_cast( format ), - static_cast( type ), - static_cast( tiling ), - static_cast( usage ), - static_cast( flags ), - static_cast( externalHandleType ), - reinterpret_cast( &externalImageFormatProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getExternalImageFormatPropertiesNV" ); - } - return externalImageFormatProperties; - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_external_memory_win32 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE HANDLE - DeviceMemory::getMemoryWin32HandleNV( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetMemoryWin32HandleNV && - "Function needs extension enabled!" ); - - HANDLE handle; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkGetMemoryWin32HandleNV( static_cast( m_device ), - static_cast( m_memory ), - static_cast( handleType ), - &handle ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DeviceMemory::getMemoryWin32HandleNV" ); - } - return handle; - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_get_physical_device_properties2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 - PhysicalDevice::getFeatures2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceFeatures2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 features; - getDispatcher()->vkGetPhysicalDeviceFeatures2KHR( static_cast( m_physicalDevice ), - reinterpret_cast( &features ) ); - return features; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFeatures2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceFeatures2KHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 & features = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceFeatures2KHR( static_cast( m_physicalDevice ), - reinterpret_cast( &features ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 - PhysicalDevice::getProperties2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceProperties2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 properties; - getDispatcher()->vkGetPhysicalDeviceProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &properties ) ); - return properties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getProperties2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceProperties2KHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 & properties = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &properties ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::FormatProperties2 - PhysicalDevice::getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceFormatProperties2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::FormatProperties2 formatProperties; - getDispatcher()->vkGetPhysicalDeviceFormatProperties2KHR( - static_cast( m_physicalDevice ), - static_cast( format ), - reinterpret_cast( &formatProperties ) ); - return formatProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getFormatProperties2KHR( VULKAN_HPP_NAMESPACE::Format format ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceFormatProperties2KHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::FormatProperties2 & formatProperties = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceFormatProperties2KHR( - static_cast( m_physicalDevice ), - static_cast( format ), - reinterpret_cast( &formatProperties ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ImageFormatProperties2 - PhysicalDevice::getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceImageFormatProperties2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 imageFormatProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceImageFormatProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2KHR" ); - } - return imageFormatProperties; - } - - template - VULKAN_HPP_NODISCARD StructureChain PhysicalDevice::getImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 & imageFormatInfo ) const - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::ImageFormatProperties2 & imageFormatProperties = - structureChain.template get(); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceImageFormatProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &imageFormatInfo ), - reinterpret_cast( &imageFormatProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getImageFormatProperties2KHR" ); - } - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2KHR && - "Function needs extension enabled!" ); - - uint32_t queueFamilyPropertyCount; - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2KHR( - static_cast( m_physicalDevice ), &queueFamilyPropertyCount, nullptr ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2KHR( - static_cast( m_physicalDevice ), - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount == queueFamilyProperties.size() ); - return queueFamilyProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getQueueFamilyProperties2KHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2KHR && - "Function needs extension enabled!" ); - - uint32_t queueFamilyPropertyCount; - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2KHR( - static_cast( m_physicalDevice ), &queueFamilyPropertyCount, nullptr ); - std::vector returnVector( queueFamilyPropertyCount ); - std::vector queueFamilyProperties( queueFamilyPropertyCount ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - queueFamilyProperties[i].pNext = - returnVector[i].template get().pNext; - } - getDispatcher()->vkGetPhysicalDeviceQueueFamilyProperties2KHR( - static_cast( m_physicalDevice ), - &queueFamilyPropertyCount, - reinterpret_cast( queueFamilyProperties.data() ) ); - VULKAN_HPP_ASSERT( queueFamilyPropertyCount <= queueFamilyProperties.size() ); - for ( uint32_t i = 0; i < queueFamilyPropertyCount; i++ ) - { - returnVector[i].template get() = queueFamilyProperties[i]; - } - return returnVector; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 - PhysicalDevice::getMemoryProperties2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceMemoryProperties2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 memoryProperties; - getDispatcher()->vkGetPhysicalDeviceMemoryProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &memoryProperties ) ); - return memoryProperties; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - PhysicalDevice::getMemoryProperties2KHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceMemoryProperties2KHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 & memoryProperties = - structureChain.template get(); - getDispatcher()->vkGetPhysicalDeviceMemoryProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &memoryProperties ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSparseImageFormatProperties2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 & formatInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties2KHR && - "Function needs extension enabled!" ); - - uint32_t propertyCount; - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &formatInfo ), - &propertyCount, - nullptr ); - std::vector properties( propertyCount ); - getDispatcher()->vkGetPhysicalDeviceSparseImageFormatProperties2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &formatInfo ), - &propertyCount, - reinterpret_cast( properties.data() ) ); - VULKAN_HPP_ASSERT( propertyCount == properties.size() ); - return properties; - } - - //=== VK_KHR_device_group === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags - Device::getGroupPeerMemoryFeaturesKHR( uint32_t heapIndex, - uint32_t localDeviceIndex, - uint32_t remoteDeviceIndex ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceGroupPeerMemoryFeaturesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::PeerMemoryFeatureFlags peerMemoryFeatures; - getDispatcher()->vkGetDeviceGroupPeerMemoryFeaturesKHR( - static_cast( m_device ), - heapIndex, - localDeviceIndex, - remoteDeviceIndex, - reinterpret_cast( &peerMemoryFeatures ) ); - return peerMemoryFeatures; - } - - VULKAN_HPP_INLINE void CommandBuffer::setDeviceMaskKHR( uint32_t deviceMask ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetDeviceMaskKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDeviceMaskKHR( static_cast( m_commandBuffer ), deviceMask ); - } - - VULKAN_HPP_INLINE void CommandBuffer::dispatchBaseKHR( uint32_t baseGroupX, - uint32_t baseGroupY, - uint32_t baseGroupZ, - uint32_t groupCountX, - uint32_t groupCountY, - uint32_t groupCountZ ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDispatchBaseKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDispatchBaseKHR( static_cast( m_commandBuffer ), - baseGroupX, - baseGroupY, - baseGroupZ, - groupCountX, - groupCountY, - groupCountZ ); - } - -# if defined( VK_USE_PLATFORM_VI_NN ) - //=== VK_NN_vi_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createViSurfaceNN( - VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_VI_NN*/ - - //=== VK_KHR_maintenance1 === - - VULKAN_HPP_INLINE void - CommandPool::trimKHR( VULKAN_HPP_NAMESPACE::CommandPoolTrimFlags flags ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkTrimCommandPoolKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkTrimCommandPoolKHR( static_cast( m_device ), - static_cast( m_commandPool ), - static_cast( flags ) ); - } - - //=== VK_KHR_device_group_creation === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Instance::enumeratePhysicalDeviceGroupsKHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkEnumeratePhysicalDeviceGroupsKHR && - "Function needs extension enabled!" ); - - std::vector physicalDeviceGroupProperties; - uint32_t physicalDeviceGroupCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkEnumeratePhysicalDeviceGroupsKHR( - static_cast( m_instance ), &physicalDeviceGroupCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && physicalDeviceGroupCount ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - result = static_cast( getDispatcher()->vkEnumeratePhysicalDeviceGroupsKHR( - static_cast( m_instance ), - &physicalDeviceGroupCount, - reinterpret_cast( physicalDeviceGroupProperties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Instance::enumeratePhysicalDeviceGroupsKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() ); - if ( physicalDeviceGroupCount < physicalDeviceGroupProperties.size() ) - { - physicalDeviceGroupProperties.resize( physicalDeviceGroupCount ); - } - } - return physicalDeviceGroupProperties; - } - - //=== VK_KHR_external_memory_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalBufferProperties - PhysicalDevice::getExternalBufferPropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo & externalBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceExternalBufferPropertiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ExternalBufferProperties externalBufferProperties; - getDispatcher()->vkGetPhysicalDeviceExternalBufferPropertiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &externalBufferInfo ), - reinterpret_cast( &externalBufferProperties ) ); - return externalBufferProperties; - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_memory_win32 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE HANDLE Device::getMemoryWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR & getWin32HandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryWin32HandleKHR && - "Function needs extension enabled!" ); - - HANDLE handle; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryWin32HandleKHR( - static_cast( m_device ), - reinterpret_cast( &getWin32HandleInfo ), - &handle ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryWin32HandleKHR" ); - } - return handle; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR - Device::getMemoryWin32HandlePropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryWin32HandlePropertiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR memoryWin32HandleProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryWin32HandlePropertiesKHR( - static_cast( m_device ), - static_cast( handleType ), - handle, - reinterpret_cast( &memoryWin32HandleProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryWin32HandlePropertiesKHR" ); - } - return memoryWin32HandleProperties; - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_memory_fd === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE int - Device::getMemoryFdKHR( const VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR & getFdInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetMemoryFdKHR && - "Function needs extension enabled!" ); - - int fd; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryFdKHR( - static_cast( m_device ), reinterpret_cast( &getFdInfo ), &fd ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryFdKHR" ); - } - return fd; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR - Device::getMemoryFdPropertiesKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - int fd ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetMemoryFdPropertiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR memoryFdProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryFdPropertiesKHR( - static_cast( m_device ), - static_cast( handleType ), - fd, - reinterpret_cast( &memoryFdProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryFdPropertiesKHR" ); - } - return memoryFdProperties; - } - - //=== VK_KHR_external_semaphore_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties - PhysicalDevice::getExternalSemaphorePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo & externalSemaphoreInfo ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceExternalSemaphorePropertiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties externalSemaphoreProperties; - getDispatcher()->vkGetPhysicalDeviceExternalSemaphorePropertiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &externalSemaphoreInfo ), - reinterpret_cast( &externalSemaphoreProperties ) ); - return externalSemaphoreProperties; - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_semaphore_win32 === - - VULKAN_HPP_INLINE void Device::importSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR & importSemaphoreWin32HandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkImportSemaphoreWin32HandleKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkImportSemaphoreWin32HandleKHR( - static_cast( m_device ), - reinterpret_cast( &importSemaphoreWin32HandleInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importSemaphoreWin32HandleKHR" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE HANDLE Device::getSemaphoreWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR & getWin32HandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetSemaphoreWin32HandleKHR && - "Function needs extension enabled!" ); - - HANDLE handle; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetSemaphoreWin32HandleKHR( - static_cast( m_device ), - reinterpret_cast( &getWin32HandleInfo ), - &handle ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreWin32HandleKHR" ); - } - return handle; - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_semaphore_fd === - - VULKAN_HPP_INLINE void - Device::importSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR & importSemaphoreFdInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkImportSemaphoreFdKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkImportSemaphoreFdKHR( - static_cast( m_device ), - reinterpret_cast( &importSemaphoreFdInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importSemaphoreFdKHR" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE int - Device::getSemaphoreFdKHR( const VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR & getFdInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetSemaphoreFdKHR && - "Function needs extension enabled!" ); - - int fd; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetSemaphoreFdKHR( - static_cast( m_device ), reinterpret_cast( &getFdInfo ), &fd ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreFdKHR" ); - } - return fd; - } - - //=== VK_KHR_push_descriptor === - - VULKAN_HPP_INLINE void CommandBuffer::pushDescriptorSetKHR( - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - ArrayProxy const & descriptorWrites ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdPushDescriptorSetKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdPushDescriptorSetKHR( - static_cast( m_commandBuffer ), - static_cast( pipelineBindPoint ), - static_cast( layout ), - set, - descriptorWrites.size(), - reinterpret_cast( descriptorWrites.data() ) ); - } - - template - VULKAN_HPP_INLINE void CommandBuffer::pushDescriptorSetWithTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - VULKAN_HPP_NAMESPACE::PipelineLayout layout, - uint32_t set, - DataType const & data ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdPushDescriptorSetWithTemplateKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdPushDescriptorSetWithTemplateKHR( - static_cast( m_commandBuffer ), - static_cast( descriptorUpdateTemplate ), - static_cast( layout ), - set, - reinterpret_cast( &data ) ); - } - - //=== VK_EXT_conditional_rendering === - - VULKAN_HPP_INLINE void CommandBuffer::beginConditionalRenderingEXT( - const VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT & conditionalRenderingBegin ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBeginConditionalRenderingEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBeginConditionalRenderingEXT( - static_cast( m_commandBuffer ), - reinterpret_cast( &conditionalRenderingBegin ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endConditionalRenderingEXT() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdEndConditionalRenderingEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEndConditionalRenderingEXT( static_cast( m_commandBuffer ) ); - } - - //=== VK_KHR_descriptor_update_template === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DescriptorUpdateTemplate - Device::createDescriptorUpdateTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DescriptorUpdateTemplate( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Device::destroyDescriptorUpdateTemplateKHR( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - Optional allocator ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkDestroyDescriptorUpdateTemplateKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkDestroyDescriptorUpdateTemplateKHR( - static_cast( m_device ), - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( - static_cast( allocator ) ) ); - } - - template - VULKAN_HPP_INLINE void - DescriptorSet::updateWithTemplateKHR( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplate descriptorUpdateTemplate, - DataType const & data ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkUpdateDescriptorSetWithTemplateKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkUpdateDescriptorSetWithTemplateKHR( - static_cast( m_device ), - static_cast( m_descriptorSet ), - static_cast( descriptorUpdateTemplate ), - reinterpret_cast( &data ) ); - } - - //=== VK_NV_clip_space_w_scaling === - - VULKAN_HPP_INLINE void CommandBuffer::setViewportWScalingNV( - uint32_t firstViewport, - ArrayProxy const & viewportWScalings ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetViewportWScalingNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetViewportWScalingNV( - static_cast( m_commandBuffer ), - firstViewport, - viewportWScalings.size(), - reinterpret_cast( viewportWScalings.data() ) ); - } - -# if defined( VK_USE_PLATFORM_XLIB_XRANDR_EXT ) - //=== VK_EXT_acquire_xlib_display === - - VULKAN_HPP_INLINE void PhysicalDevice::acquireXlibDisplayEXT( Display & dpy, - VULKAN_HPP_NAMESPACE::DisplayKHR display ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkAcquireXlibDisplayEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkAcquireXlibDisplayEXT( - static_cast( m_physicalDevice ), &dpy, static_cast( display ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::acquireXlibDisplayEXT" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DisplayKHR - PhysicalDevice::getRandROutputDisplayEXT( Display & dpy, RROutput rrOutput ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DisplayKHR( *this, dpy, rrOutput ); - } -# endif /*VK_USE_PLATFORM_XLIB_XRANDR_EXT*/ - - //=== VK_EXT_display_surface_counter === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT - PhysicalDevice::getSurfaceCapabilities2EXT( VULKAN_HPP_NAMESPACE::SurfaceKHR surface ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilities2EXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT surfaceCapabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilities2EXT( - static_cast( m_physicalDevice ), - static_cast( surface ), - reinterpret_cast( &surfaceCapabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilities2EXT" ); - } - return surfaceCapabilities; - } - - //=== VK_EXT_display_control === - - VULKAN_HPP_INLINE void - Device::displayPowerControlEXT( VULKAN_HPP_NAMESPACE::DisplayKHR display, - const VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT & displayPowerInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkDisplayPowerControlEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkDisplayPowerControlEXT( - static_cast( m_device ), - static_cast( display ), - reinterpret_cast( &displayPowerInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::displayPowerControlEXT" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Fence Device::registerEventEXT( - VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT const & deviceEventInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Fence( *this, deviceEventInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Fence Device::registerDisplayEventEXT( - VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DisplayKHR const & display, - VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT const & displayEventInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Fence( *this, display, displayEventInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t - SwapchainKHR::getCounterEXT( VULKAN_HPP_NAMESPACE::SurfaceCounterFlagBitsEXT counter ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetSwapchainCounterEXT && - "Function needs extension enabled!" ); - - uint64_t counterValue; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkGetSwapchainCounterEXT( static_cast( m_device ), - static_cast( m_swapchain ), - static_cast( counter ), - &counterValue ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::getCounterEXT" ); - } - return counterValue; - } - - //=== VK_GOOGLE_display_timing === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE - SwapchainKHR::getRefreshCycleDurationGOOGLE() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetRefreshCycleDurationGOOGLE && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE displayTimingProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetRefreshCycleDurationGOOGLE( - static_cast( m_device ), - static_cast( m_swapchain ), - reinterpret_cast( &displayTimingProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::getRefreshCycleDurationGOOGLE" ); - } - return displayTimingProperties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - SwapchainKHR::getPastPresentationTimingGOOGLE() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPastPresentationTimingGOOGLE && - "Function needs extension enabled!" ); - - std::vector presentationTimings; - uint32_t presentationTimingCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetPastPresentationTimingGOOGLE( static_cast( m_device ), - static_cast( m_swapchain ), - &presentationTimingCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && presentationTimingCount ) - { - presentationTimings.resize( presentationTimingCount ); - result = static_cast( getDispatcher()->vkGetPastPresentationTimingGOOGLE( - static_cast( m_device ), - static_cast( m_swapchain ), - &presentationTimingCount, - reinterpret_cast( presentationTimings.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::getPastPresentationTimingGOOGLE" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentationTimingCount <= presentationTimings.size() ); - if ( presentationTimingCount < presentationTimings.size() ) - { - presentationTimings.resize( presentationTimingCount ); - } - } - return presentationTimings; - } - - //=== VK_EXT_discard_rectangles === - - VULKAN_HPP_INLINE void CommandBuffer::setDiscardRectangleEXT( - uint32_t firstDiscardRectangle, - ArrayProxy const & discardRectangles ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetDiscardRectangleEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDiscardRectangleEXT( static_cast( m_commandBuffer ), - firstDiscardRectangle, - discardRectangles.size(), - reinterpret_cast( discardRectangles.data() ) ); - } - - //=== VK_EXT_hdr_metadata === - - VULKAN_HPP_INLINE void - Device::setHdrMetadataEXT( ArrayProxy const & swapchains, - ArrayProxy const & metadata ) const - VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSetHdrMetadataEXT && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( swapchains.size() == metadata.size() ); -# else - if ( swapchains.size() != metadata.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::Device::setHdrMetadataEXT: swapchains.size() != metadata.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkSetHdrMetadataEXT( static_cast( m_device ), - swapchains.size(), - reinterpret_cast( swapchains.data() ), - reinterpret_cast( metadata.data() ) ); - } - - //=== VK_KHR_create_renderpass2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::RenderPass Device::createRenderPass2KHR( - VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::RenderPass( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void CommandBuffer::beginRenderPass2KHR( - const VULKAN_HPP_NAMESPACE::RenderPassBeginInfo & renderPassBegin, - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBeginRenderPass2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBeginRenderPass2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( &renderPassBegin ), - reinterpret_cast( &subpassBeginInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::nextSubpass2KHR( - const VULKAN_HPP_NAMESPACE::SubpassBeginInfo & subpassBeginInfo, - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdNextSubpass2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdNextSubpass2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( &subpassBeginInfo ), - reinterpret_cast( &subpassEndInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endRenderPass2KHR( - const VULKAN_HPP_NAMESPACE::SubpassEndInfo & subpassEndInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdEndRenderPass2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEndRenderPass2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( &subpassEndInfo ) ); - } - - //=== VK_KHR_shared_presentable_image === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result SwapchainKHR::getStatus() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetSwapchainStatusKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetSwapchainStatusKHR( - static_cast( m_device ), static_cast( m_swapchain ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eSuboptimalKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::getStatus" ); - } - return result; - } - - //=== VK_KHR_external_fence_capabilities === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ExternalFenceProperties - PhysicalDevice::getExternalFencePropertiesKHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo & externalFenceInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceExternalFencePropertiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ExternalFenceProperties externalFenceProperties; - getDispatcher()->vkGetPhysicalDeviceExternalFencePropertiesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &externalFenceInfo ), - reinterpret_cast( &externalFenceProperties ) ); - return externalFenceProperties; - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_KHR_external_fence_win32 === - - VULKAN_HPP_INLINE void Device::importFenceWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR & importFenceWin32HandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkImportFenceWin32HandleKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkImportFenceWin32HandleKHR( - static_cast( m_device ), - reinterpret_cast( &importFenceWin32HandleInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importFenceWin32HandleKHR" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE HANDLE Device::getFenceWin32HandleKHR( - const VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR & getWin32HandleInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetFenceWin32HandleKHR && - "Function needs extension enabled!" ); - - HANDLE handle; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetFenceWin32HandleKHR( - static_cast( m_device ), - reinterpret_cast( &getWin32HandleInfo ), - &handle ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getFenceWin32HandleKHR" ); - } - return handle; - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_KHR_external_fence_fd === - - VULKAN_HPP_INLINE void - Device::importFenceFdKHR( const VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR & importFenceFdInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkImportFenceFdKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkImportFenceFdKHR( - static_cast( m_device ), reinterpret_cast( &importFenceFdInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importFenceFdKHR" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE int - Device::getFenceFdKHR( const VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR & getFdInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetFenceFdKHR && - "Function needs extension enabled!" ); - - int fd; - VULKAN_HPP_NAMESPACE::Result result = static_cast( getDispatcher()->vkGetFenceFdKHR( - static_cast( m_device ), reinterpret_cast( &getFdInfo ), &fd ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getFenceFdKHR" ); - } - return fd; - } - - //=== VK_KHR_performance_query === - - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::pair, std::vector> - PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR( uint32_t queueFamilyIndex ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR && - "Function needs extension enabled!" ); - - std::pair, std::vector> data; - std::vector & counters = data.first; - std::vector & counterDescriptions = data.second; - uint32_t counterCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - static_cast( m_physicalDevice ), queueFamilyIndex, &counterCount, nullptr, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && counterCount ) - { - counters.resize( counterCount ); - counterDescriptions.resize( counterCount ); - result = static_cast( - getDispatcher()->vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR( - static_cast( m_physicalDevice ), - queueFamilyIndex, - &counterCount, - reinterpret_cast( counters.data() ), - reinterpret_cast( counterDescriptions.data() ) ) ); - VULKAN_HPP_ASSERT( counterCount <= counters.size() ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && ( counterCount < counters.size() ) ) - { - counters.resize( counterCount ); - counterDescriptions.resize( counterCount ); - } - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( - result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::enumerateQueueFamilyPerformanceQueryCountersKHR" ); - } - return data; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint32_t PhysicalDevice::getQueueFamilyPerformanceQueryPassesKHR( - const VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR & performanceQueryCreateInfo ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR && - "Function needs extension enabled!" ); - - uint32_t numPasses; - getDispatcher()->vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &performanceQueryCreateInfo ), - &numPasses ); - return numPasses; - } - - VULKAN_HPP_INLINE void - Device::acquireProfilingLockKHR( const VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR & info ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkAcquireProfilingLockKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkAcquireProfilingLockKHR( - static_cast( m_device ), reinterpret_cast( &info ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::acquireProfilingLockKHR" ); - } - } - - VULKAN_HPP_INLINE void Device::releaseProfilingLockKHR() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkReleaseProfilingLockKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkReleaseProfilingLockKHR( static_cast( m_device ) ); - } - - //=== VK_KHR_get_surface_capabilities2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR - PhysicalDevice::getSurfaceCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilities2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR surfaceCapabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilities2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &surfaceInfo ), - reinterpret_cast( &surfaceCapabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilities2KHR" ); - } - return surfaceCapabilities; - } - - template - VULKAN_HPP_NODISCARD StructureChain PhysicalDevice::getSurfaceCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR & surfaceCapabilities = - structureChain.template get(); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceCapabilities2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &surfaceInfo ), - reinterpret_cast( &surfaceCapabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceCapabilities2KHR" ); - } - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSurfaceFormats2KHR( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSurfaceFormats2KHR && - "Function needs extension enabled!" ); - - std::vector surfaceFormats; - uint32_t surfaceFormatCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceFormats2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &surfaceInfo ), - &surfaceFormatCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && surfaceFormatCount ) - { - surfaceFormats.resize( surfaceFormatCount ); - result = static_cast( getDispatcher()->vkGetPhysicalDeviceSurfaceFormats2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &surfaceInfo ), - &surfaceFormatCount, - reinterpret_cast( surfaceFormats.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfaceFormats2KHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( surfaceFormatCount <= surfaceFormats.size() ); - if ( surfaceFormatCount < surfaceFormats.size() ) - { - surfaceFormats.resize( surfaceFormatCount ); - } - } - return surfaceFormats; - } - - //=== VK_KHR_get_display_properties2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getDisplayProperties2KHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceDisplayProperties2KHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayProperties2KHR( - static_cast( m_physicalDevice ), &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayProperties2KHR( - static_cast( m_physicalDevice ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayProperties2KHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getDisplayPlaneProperties2KHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceDisplayPlaneProperties2KHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - static_cast( m_physicalDevice ), &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceDisplayPlaneProperties2KHR( - static_cast( m_physicalDevice ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneProperties2KHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - DisplayKHR::getModeProperties2() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDisplayModeProperties2KHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetDisplayModeProperties2KHR( static_cast( m_physicalDevice ), - static_cast( m_display ), - &propertyCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( getDispatcher()->vkGetDisplayModeProperties2KHR( - static_cast( m_physicalDevice ), - static_cast( m_display ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DisplayKHR::getModeProperties2" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR - PhysicalDevice::getDisplayPlaneCapabilities2KHR( - const VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR & displayPlaneInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDisplayPlaneCapabilities2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR capabilities; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetDisplayPlaneCapabilities2KHR( - static_cast( m_physicalDevice ), - reinterpret_cast( &displayPlaneInfo ), - reinterpret_cast( &capabilities ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getDisplayPlaneCapabilities2KHR" ); - } - return capabilities; - } - -# if defined( VK_USE_PLATFORM_IOS_MVK ) - //=== VK_MVK_ios_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createIOSSurfaceMVK( - VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_IOS_MVK*/ - -# if defined( VK_USE_PLATFORM_MACOS_MVK ) - //=== VK_MVK_macos_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createMacOSSurfaceMVK( - VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - //=== VK_EXT_debug_utils === - - VULKAN_HPP_INLINE void - Device::setDebugUtilsObjectNameEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT & nameInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSetDebugUtilsObjectNameEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkSetDebugUtilsObjectNameEXT( - static_cast( m_device ), reinterpret_cast( &nameInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setDebugUtilsObjectNameEXT" ); - } - } - - VULKAN_HPP_INLINE void - Device::setDebugUtilsObjectTagEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT & tagInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSetDebugUtilsObjectTagEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkSetDebugUtilsObjectTagEXT( - static_cast( m_device ), reinterpret_cast( &tagInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setDebugUtilsObjectTagEXT" ); - } - } - - VULKAN_HPP_INLINE void Queue::beginDebugUtilsLabelEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkQueueBeginDebugUtilsLabelEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkQueueBeginDebugUtilsLabelEXT( static_cast( m_queue ), - reinterpret_cast( &labelInfo ) ); - } - - VULKAN_HPP_INLINE void Queue::endDebugUtilsLabelEXT() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkQueueEndDebugUtilsLabelEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkQueueEndDebugUtilsLabelEXT( static_cast( m_queue ) ); - } - - VULKAN_HPP_INLINE void Queue::insertDebugUtilsLabelEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkQueueInsertDebugUtilsLabelEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkQueueInsertDebugUtilsLabelEXT( static_cast( m_queue ), - reinterpret_cast( &labelInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::beginDebugUtilsLabelEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBeginDebugUtilsLabelEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBeginDebugUtilsLabelEXT( static_cast( m_commandBuffer ), - reinterpret_cast( &labelInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::endDebugUtilsLabelEXT() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdEndDebugUtilsLabelEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEndDebugUtilsLabelEXT( static_cast( m_commandBuffer ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::insertDebugUtilsLabelEXT( - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT & labelInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdInsertDebugUtilsLabelEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdInsertDebugUtilsLabelEXT( static_cast( m_commandBuffer ), - reinterpret_cast( &labelInfo ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DebugUtilsMessengerEXT - Instance::createDebugUtilsMessengerEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DebugUtilsMessengerEXT( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Instance::submitDebugUtilsMessageEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, - const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT & callbackData ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSubmitDebugUtilsMessageEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkSubmitDebugUtilsMessageEXT( - static_cast( m_instance ), - static_cast( messageSeverity ), - static_cast( messageTypes ), - reinterpret_cast( &callbackData ) ); - } - -# if defined( VK_USE_PLATFORM_ANDROID_KHR ) - //=== VK_ANDROID_external_memory_android_hardware_buffer === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID - Device::getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetAndroidHardwareBufferPropertiesANDROID && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID properties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetAndroidHardwareBufferPropertiesANDROID( - static_cast( m_device ), - &buffer, - reinterpret_cast( &properties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getAndroidHardwareBufferPropertiesANDROID" ); - } - return properties; - } - - template - VULKAN_HPP_NODISCARD StructureChain - Device::getAndroidHardwareBufferPropertiesANDROID( const struct AHardwareBuffer & buffer ) const - { - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID & properties = - structureChain.template get(); - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetAndroidHardwareBufferPropertiesANDROID( - static_cast( m_device ), - &buffer, - reinterpret_cast( &properties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getAndroidHardwareBufferPropertiesANDROID" ); - } - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE struct AHardwareBuffer * Device::getMemoryAndroidHardwareBufferANDROID( - const VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID & info ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryAndroidHardwareBufferANDROID && - "Function needs extension enabled!" ); - - struct AHardwareBuffer * buffer; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryAndroidHardwareBufferANDROID( - static_cast( m_device ), - reinterpret_cast( &info ), - &buffer ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryAndroidHardwareBufferANDROID" ); - } - return buffer; - } -# endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - //=== VK_EXT_sample_locations === - - VULKAN_HPP_INLINE void CommandBuffer::setSampleLocationsEXT( - const VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT & sampleLocationsInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetSampleLocationsEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetSampleLocationsEXT( - static_cast( m_commandBuffer ), - reinterpret_cast( &sampleLocationsInfo ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT - PhysicalDevice::getMultisamplePropertiesEXT( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceMultisamplePropertiesEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT multisampleProperties; - getDispatcher()->vkGetPhysicalDeviceMultisamplePropertiesEXT( - static_cast( m_physicalDevice ), - static_cast( samples ), - reinterpret_cast( &multisampleProperties ) ); - return multisampleProperties; - } - - //=== VK_KHR_get_memory_requirements2 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetImageMemoryRequirements2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetImageMemoryRequirements2KHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getImageMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetImageMemoryRequirements2KHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetImageMemoryRequirements2KHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirements2KHR( const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetBufferMemoryRequirements2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetBufferMemoryRequirements2KHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getBufferMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetBufferMemoryRequirements2KHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetBufferMemoryRequirements2KHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirements2KHR( - const VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetImageSparseMemoryRequirements2KHR && - "Function needs extension enabled!" ); - - uint32_t sparseMemoryRequirementCount; - getDispatcher()->vkGetImageSparseMemoryRequirements2KHR( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - std::vector sparseMemoryRequirements( - sparseMemoryRequirementCount ); - getDispatcher()->vkGetImageSparseMemoryRequirements2KHR( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount == sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - - //=== VK_KHR_acceleration_structure === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::AccelerationStructureKHR - Device::createAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::AccelerationStructureKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructuresKHR( - ArrayProxy const & infos, - ArrayProxy const & pBuildRangeInfos ) - const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBuildAccelerationStructuresKHR && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( infos.size() == pBuildRangeInfos.size() ); -# else - if ( infos.size() != pBuildRangeInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresKHR: infos.size() != pBuildRangeInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBuildAccelerationStructuresKHR( - static_cast( m_commandBuffer ), - infos.size(), - reinterpret_cast( infos.data() ), - reinterpret_cast( pBuildRangeInfos.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructuresIndirectKHR( - ArrayProxy const & infos, - ArrayProxy const & indirectDeviceAddresses, - ArrayProxy const & indirectStrides, - ArrayProxy const & pMaxPrimitiveCounts ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBuildAccelerationStructuresIndirectKHR && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( infos.size() == indirectDeviceAddresses.size() ); - VULKAN_HPP_ASSERT( infos.size() == indirectStrides.size() ); - VULKAN_HPP_ASSERT( infos.size() == pMaxPrimitiveCounts.size() ); -# else - if ( infos.size() != indirectDeviceAddresses.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresIndirectKHR: infos.size() != indirectDeviceAddresses.size()" ); - } - if ( infos.size() != indirectStrides.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresIndirectKHR: infos.size() != indirectStrides.size()" ); - } - if ( infos.size() != pMaxPrimitiveCounts.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::buildAccelerationStructuresIndirectKHR: infos.size() != pMaxPrimitiveCounts.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBuildAccelerationStructuresIndirectKHR( - static_cast( m_commandBuffer ), - infos.size(), - reinterpret_cast( infos.data() ), - reinterpret_cast( indirectDeviceAddresses.data() ), - indirectStrides.data(), - pMaxPrimitiveCounts.data() ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result Device::buildAccelerationStructuresKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - ArrayProxy const & infos, - ArrayProxy const & pBuildRangeInfos ) - const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkBuildAccelerationStructuresKHR && - "Function needs extension enabled!" ); - if ( infos.size() != pBuildRangeInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::Device::buildAccelerationStructuresKHR: infos.size() != pBuildRangeInfos.size()" ); - } - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkBuildAccelerationStructuresKHR( - static_cast( m_device ), - static_cast( deferredOperation ), - infos.size(), - reinterpret_cast( infos.data() ), - reinterpret_cast( pBuildRangeInfos.data() ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::buildAccelerationStructuresKHR" ); - } - return result; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - Device::copyAccelerationStructureKHR( VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCopyAccelerationStructureKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCopyAccelerationStructureKHR( - static_cast( m_device ), - static_cast( deferredOperation ), - reinterpret_cast( &info ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::copyAccelerationStructureKHR" ); - } - return result; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result Device::copyAccelerationStructureToMemoryKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCopyAccelerationStructureToMemoryKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCopyAccelerationStructureToMemoryKHR( - static_cast( m_device ), - static_cast( deferredOperation ), - reinterpret_cast( &info ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::copyAccelerationStructureToMemoryKHR" ); - } - return result; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result Device::copyMemoryToAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::DeferredOperationKHR deferredOperation, - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCopyMemoryToAccelerationStructureKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCopyMemoryToAccelerationStructureKHR( - static_cast( m_device ), - static_cast( deferredOperation ), - reinterpret_cast( &info ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationDeferredKHR ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eOperationNotDeferredKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::copyMemoryToAccelerationStructureKHR" ); - } - return result; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector Device::writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t dataSize, - size_t stride ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR( - static_cast( m_device ), - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ), - stride ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertiesKHR" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD DataType Device::writeAccelerationStructuresPropertyKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - size_t stride ) const - { - DataType data; - Result result = static_cast( getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR( - static_cast( m_device ), - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - sizeof( DataType ), - reinterpret_cast( &data ), - stride ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertyKHR" ); - } - return data; - } - - VULKAN_HPP_INLINE void CommandBuffer::copyAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdCopyAccelerationStructureKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyAccelerationStructureKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &info ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyAccelerationStructureToMemoryKHR( - const VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdCopyAccelerationStructureToMemoryKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyAccelerationStructureToMemoryKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &info ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyMemoryToAccelerationStructureKHR( - const VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdCopyMemoryToAccelerationStructureKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyMemoryToAccelerationStructureKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &info ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceAddress - Device::getAccelerationStructureAddressKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetAccelerationStructureDeviceAddressKHR && - "Function needs extension enabled!" ); - - return static_cast( - getDispatcher()->vkGetAccelerationStructureDeviceAddressKHR( - static_cast( m_device ), - reinterpret_cast( &info ) ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::writeAccelerationStructuresPropertiesKHR( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdWriteAccelerationStructuresPropertiesKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdWriteAccelerationStructuresPropertiesKHR( - static_cast( m_commandBuffer ), - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - static_cast( queryPool ), - firstQuery ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR - Device::getAccelerationStructureCompatibilityKHR( - const VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR & versionInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceAccelerationStructureCompatibilityKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::AccelerationStructureCompatibilityKHR compatibility; - getDispatcher()->vkGetDeviceAccelerationStructureCompatibilityKHR( - static_cast( m_device ), - reinterpret_cast( &versionInfo ), - reinterpret_cast( &compatibility ) ); - return compatibility; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR - Device::getAccelerationStructureBuildSizesKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildTypeKHR buildType, - const VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR & buildInfo, - ArrayProxy const & maxPrimitiveCounts ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetAccelerationStructureBuildSizesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR sizeInfo; - getDispatcher()->vkGetAccelerationStructureBuildSizesKHR( - static_cast( m_device ), - static_cast( buildType ), - reinterpret_cast( &buildInfo ), - maxPrimitiveCounts.data(), - reinterpret_cast( &sizeInfo ) ); - return sizeInfo; - } - - //=== VK_KHR_sampler_ycbcr_conversion === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SamplerYcbcrConversion - Device::createSamplerYcbcrConversionKHR( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SamplerYcbcrConversion( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Device::destroySamplerYcbcrConversionKHR( - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, - Optional allocator ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkDestroySamplerYcbcrConversionKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkDestroySamplerYcbcrConversionKHR( - static_cast( m_device ), - static_cast( ycbcrConversion ), - reinterpret_cast( - static_cast( allocator ) ) ); - } - - //=== VK_KHR_bind_memory2 === - - VULKAN_HPP_INLINE void Device::bindBufferMemory2KHR( - ArrayProxy const & bindInfos ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkBindBufferMemory2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkBindBufferMemory2KHR( - static_cast( m_device ), - bindInfos.size(), - reinterpret_cast( bindInfos.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindBufferMemory2KHR" ); - } - } - - VULKAN_HPP_INLINE void - Device::bindImageMemory2KHR( ArrayProxy const & bindInfos ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkBindImageMemory2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkBindImageMemory2KHR( static_cast( m_device ), - bindInfos.size(), - reinterpret_cast( bindInfos.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindImageMemory2KHR" ); - } - } - - //=== VK_EXT_image_drm_format_modifier === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT - Image::getDrmFormatModifierPropertiesEXT() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetImageDrmFormatModifierPropertiesEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT properties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetImageDrmFormatModifierPropertiesEXT( - static_cast( m_device ), - static_cast( m_image ), - reinterpret_cast( &properties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Image::getDrmFormatModifierPropertiesEXT" ); - } - return properties; - } - - //=== VK_EXT_validation_cache === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::ValidationCacheEXT - Device::createValidationCacheEXT( - VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::ValidationCacheEXT( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void - ValidationCacheEXT::merge( ArrayProxy const & srcCaches ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkMergeValidationCachesEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkMergeValidationCachesEXT( - static_cast( m_device ), - static_cast( m_validationCache ), - srcCaches.size(), - reinterpret_cast( srcCaches.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::ValidationCacheEXT::merge" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector ValidationCacheEXT::getData() const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetValidationCacheDataEXT && - "Function needs extension enabled!" ); - - std::vector data; - size_t dataSize; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetValidationCacheDataEXT( static_cast( m_device ), - static_cast( m_validationCache ), - &dataSize, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && dataSize ) - { - data.resize( dataSize ); - result = static_cast( - getDispatcher()->vkGetValidationCacheDataEXT( static_cast( m_device ), - static_cast( m_validationCache ), - &dataSize, - reinterpret_cast( data.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::ValidationCacheEXT::getData" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( dataSize <= data.size() ); - if ( dataSize < data.size() ) - { - data.resize( dataSize ); - } - } - return data; - } - - //=== VK_NV_shading_rate_image === - - VULKAN_HPP_INLINE void - CommandBuffer::bindShadingRateImageNV( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBindShadingRateImageNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBindShadingRateImageNV( static_cast( m_commandBuffer ), - static_cast( imageView ), - static_cast( imageLayout ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setViewportShadingRatePaletteNV( - uint32_t firstViewport, ArrayProxy const & shadingRatePalettes ) - const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetViewportShadingRatePaletteNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetViewportShadingRatePaletteNV( - static_cast( m_commandBuffer ), - firstViewport, - shadingRatePalettes.size(), - reinterpret_cast( shadingRatePalettes.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setCoarseSampleOrderNV( - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType, - ArrayProxy const & customSampleOrders ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetCoarseSampleOrderNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetCoarseSampleOrderNV( - static_cast( m_commandBuffer ), - static_cast( sampleOrderType ), - customSampleOrders.size(), - reinterpret_cast( customSampleOrders.data() ) ); - } - - //=== VK_NV_ray_tracing === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::AccelerationStructureNV - Device::createAccelerationStructureNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::AccelerationStructureNV( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR - Device::getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetAccelerationStructureMemoryRequirementsNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR memoryRequirements; - getDispatcher()->vkGetAccelerationStructureMemoryRequirementsNV( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain - Device::getAccelerationStructureMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetAccelerationStructureMemoryRequirementsNV && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2KHR & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetAccelerationStructureMemoryRequirementsNV( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_INLINE void Device::bindAccelerationStructureMemoryNV( - ArrayProxy const & bindInfos ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkBindAccelerationStructureMemoryNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkBindAccelerationStructureMemoryNV( - static_cast( m_device ), - bindInfos.size(), - reinterpret_cast( bindInfos.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::bindAccelerationStructureMemoryNV" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::buildAccelerationStructureNV( - const VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV & info, - VULKAN_HPP_NAMESPACE::Buffer instanceData, - VULKAN_HPP_NAMESPACE::DeviceSize instanceOffset, - VULKAN_HPP_NAMESPACE::Bool32 update, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::Buffer scratch, - VULKAN_HPP_NAMESPACE::DeviceSize scratchOffset ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBuildAccelerationStructureNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBuildAccelerationStructureNV( - static_cast( m_commandBuffer ), - reinterpret_cast( &info ), - static_cast( instanceData ), - static_cast( instanceOffset ), - static_cast( update ), - static_cast( dst ), - static_cast( src ), - static_cast( scratch ), - static_cast( scratchOffset ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyAccelerationStructureNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV dst, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV src, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdCopyAccelerationStructureNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyAccelerationStructureNV( static_cast( m_commandBuffer ), - static_cast( dst ), - static_cast( src ), - static_cast( mode ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::traceRaysNV( VULKAN_HPP_NAMESPACE::Buffer raygenShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize raygenShaderBindingOffset, - VULKAN_HPP_NAMESPACE::Buffer missShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize missShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer hitShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize hitShaderBindingStride, - VULKAN_HPP_NAMESPACE::Buffer callableShaderBindingTableBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingOffset, - VULKAN_HPP_NAMESPACE::DeviceSize callableShaderBindingStride, - uint32_t width, - uint32_t height, - uint32_t depth ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdTraceRaysNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdTraceRaysNV( static_cast( m_commandBuffer ), - static_cast( raygenShaderBindingTableBuffer ), - static_cast( raygenShaderBindingOffset ), - static_cast( missShaderBindingTableBuffer ), - static_cast( missShaderBindingOffset ), - static_cast( missShaderBindingStride ), - static_cast( hitShaderBindingTableBuffer ), - static_cast( hitShaderBindingOffset ), - static_cast( hitShaderBindingStride ), - static_cast( callableShaderBindingTableBuffer ), - static_cast( callableShaderBindingOffset ), - static_cast( callableShaderBindingStride ), - width, - height, - depth ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::createRayTracingPipelinesNV( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipelines( *this, pipelineCache, createInfos, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Pipeline Device::createRayTracingPipelineNV( - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipeline( *this, pipelineCache, createInfo, allocator ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Pipeline::getRayTracingShaderGroupHandlesNV( uint32_t firstGroup, uint32_t groupCount, size_t dataSize ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetRayTracingShaderGroupHandlesNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( - getDispatcher()->vkGetRayTracingShaderGroupHandlesNV( static_cast( m_device ), - static_cast( m_pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandlesNV" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD DataType Pipeline::getRayTracingShaderGroupHandleNV( uint32_t firstGroup, - uint32_t groupCount ) const - { - DataType data; - Result result = static_cast( - getDispatcher()->vkGetRayTracingShaderGroupHandlesNV( static_cast( m_device ), - static_cast( m_pipeline ), - firstGroup, - groupCount, - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandleNV" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - AccelerationStructureNV::getHandle( size_t dataSize ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetAccelerationStructureHandleNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( getDispatcher()->vkGetAccelerationStructureHandleNV( - static_cast( m_device ), - static_cast( m_accelerationStructure ), - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::AccelerationStructureNV::getHandle" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD DataType AccelerationStructureNV::getHandle() const - { - DataType data; - Result result = static_cast( getDispatcher()->vkGetAccelerationStructureHandleNV( - static_cast( m_device ), - static_cast( m_accelerationStructure ), - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::AccelerationStructureNV::getHandle" ); - } - return data; - } - - VULKAN_HPP_INLINE void CommandBuffer::writeAccelerationStructuresPropertiesNV( - ArrayProxy const & accelerationStructures, - VULKAN_HPP_NAMESPACE::QueryType queryType, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t firstQuery ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdWriteAccelerationStructuresPropertiesNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdWriteAccelerationStructuresPropertiesNV( - static_cast( m_commandBuffer ), - accelerationStructures.size(), - reinterpret_cast( accelerationStructures.data() ), - static_cast( queryType ), - static_cast( queryPool ), - firstQuery ); - } - - VULKAN_HPP_INLINE void Pipeline::compileDeferredNV( uint32_t shader ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCompileDeferredNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCompileDeferredNV( - static_cast( m_device ), static_cast( m_pipeline ), shader ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::compileDeferredNV" ); - } - } - - //=== VK_KHR_maintenance3 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport - Device::getDescriptorSetLayoutSupportKHR( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDescriptorSetLayoutSupportKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport support; - getDispatcher()->vkGetDescriptorSetLayoutSupportKHR( - static_cast( m_device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return support; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getDescriptorSetLayoutSupportKHR( - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo & createInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDescriptorSetLayoutSupportKHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport & support = - structureChain.template get(); - getDispatcher()->vkGetDescriptorSetLayoutSupportKHR( - static_cast( m_device ), - reinterpret_cast( &createInfo ), - reinterpret_cast( &support ) ); - return structureChain; - } - - //=== VK_KHR_draw_indirect_count === - - VULKAN_HPP_INLINE void CommandBuffer::drawIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawIndirectCountKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawIndirectCountKHR( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::drawIndexedIndirectCountKHR( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdDrawIndexedIndirectCountKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawIndexedIndirectCountKHR( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - //=== VK_EXT_external_memory_host === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT - Device::getMemoryHostPointerPropertiesEXT( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - const void * pHostPointer ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryHostPointerPropertiesEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT memoryHostPointerProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryHostPointerPropertiesEXT( - static_cast( m_device ), - static_cast( handleType ), - pHostPointer, - reinterpret_cast( &memoryHostPointerProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryHostPointerPropertiesEXT" ); - } - return memoryHostPointerProperties; - } - - //=== VK_AMD_buffer_marker === - - VULKAN_HPP_INLINE void - CommandBuffer::writeBufferMarkerAMD( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits pipelineStage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdWriteBufferMarkerAMD && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdWriteBufferMarkerAMD( static_cast( m_commandBuffer ), - static_cast( pipelineStage ), - static_cast( dstBuffer ), - static_cast( dstOffset ), - marker ); - } - - //=== VK_EXT_calibrated_timestamps === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getCalibrateableTimeDomainsEXT() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceCalibrateableTimeDomainsEXT && - "Function needs extension enabled!" ); - - std::vector timeDomains; - uint32_t timeDomainCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - static_cast( m_physicalDevice ), &timeDomainCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && timeDomainCount ) - { - timeDomains.resize( timeDomainCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( - static_cast( m_physicalDevice ), - &timeDomainCount, - reinterpret_cast( timeDomains.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getCalibrateableTimeDomainsEXT" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( timeDomainCount <= timeDomains.size() ); - if ( timeDomainCount < timeDomains.size() ) - { - timeDomains.resize( timeDomainCount ); - } - } - return timeDomains; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::pair, uint64_t> - Device::getCalibratedTimestampsEXT( - ArrayProxy const & timestampInfos ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetCalibratedTimestampsEXT && - "Function needs extension enabled!" ); - - std::pair, uint64_t> data( - std::piecewise_construct, std::forward_as_tuple( timestampInfos.size() ), std::forward_as_tuple( 0 ) ); - std::vector & timestamps = data.first; - uint64_t & maxDeviation = data.second; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetCalibratedTimestampsEXT( - static_cast( m_device ), - timestampInfos.size(), - reinterpret_cast( timestampInfos.data() ), - timestamps.data(), - &maxDeviation ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getCalibratedTimestampsEXT" ); - } - return data; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::pair - Device::getCalibratedTimestampEXT( const VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT & timestampInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetCalibratedTimestampsEXT && - "Function needs extension enabled!" ); - - std::pair data; - uint64_t & timestamp = data.first; - uint64_t & maxDeviation = data.second; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetCalibratedTimestampsEXT( - static_cast( m_device ), - 1, - reinterpret_cast( ×tampInfo ), - ×tamp, - &maxDeviation ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getCalibratedTimestampEXT" ); - } - return data; - } - - //=== VK_NV_mesh_shader === - - VULKAN_HPP_INLINE void CommandBuffer::drawMeshTasksNV( uint32_t taskCount, - uint32_t firstTask ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawMeshTasksNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawMeshTasksNV( static_cast( m_commandBuffer ), taskCount, firstTask ); - } - - VULKAN_HPP_INLINE void CommandBuffer::drawMeshTasksIndirectNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - uint32_t drawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawMeshTasksIndirectNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawMeshTasksIndirectNV( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - drawCount, - stride ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::drawMeshTasksIndirectCountNV( VULKAN_HPP_NAMESPACE::Buffer buffer, - VULKAN_HPP_NAMESPACE::DeviceSize offset, - VULKAN_HPP_NAMESPACE::Buffer countBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize countBufferOffset, - uint32_t maxDrawCount, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawMeshTasksIndirectCountNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawMeshTasksIndirectCountNV( static_cast( m_commandBuffer ), - static_cast( buffer ), - static_cast( offset ), - static_cast( countBuffer ), - static_cast( countBufferOffset ), - maxDrawCount, - stride ); - } - - //=== VK_NV_scissor_exclusive === - - VULKAN_HPP_INLINE void CommandBuffer::setExclusiveScissorNV( - uint32_t firstExclusiveScissor, - ArrayProxy const & exclusiveScissors ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetExclusiveScissorNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetExclusiveScissorNV( static_cast( m_commandBuffer ), - firstExclusiveScissor, - exclusiveScissors.size(), - reinterpret_cast( exclusiveScissors.data() ) ); - } - - //=== VK_NV_device_diagnostic_checkpoints === - - template - VULKAN_HPP_INLINE void - CommandBuffer::setCheckpointNV( CheckpointMarkerType const & checkpointMarker ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetCheckpointNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetCheckpointNV( static_cast( m_commandBuffer ), - reinterpret_cast( &checkpointMarker ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Queue::getCheckpointDataNV() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetQueueCheckpointDataNV && - "Function needs extension enabled!" ); - - uint32_t checkpointDataCount; - getDispatcher()->vkGetQueueCheckpointDataNV( static_cast( m_queue ), &checkpointDataCount, nullptr ); - std::vector checkpointData( checkpointDataCount ); - getDispatcher()->vkGetQueueCheckpointDataNV( static_cast( m_queue ), - &checkpointDataCount, - reinterpret_cast( checkpointData.data() ) ); - VULKAN_HPP_ASSERT( checkpointDataCount == checkpointData.size() ); - return checkpointData; - } - - //=== VK_KHR_timeline_semaphore === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t Semaphore::getCounterValueKHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetSemaphoreCounterValueKHR && - "Function needs extension enabled!" ); - - uint64_t value; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetSemaphoreCounterValueKHR( - static_cast( m_device ), static_cast( m_semaphore ), &value ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Semaphore::getCounterValueKHR" ); - } - return value; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - Device::waitSemaphoresKHR( const VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo & waitInfo, uint64_t timeout ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkWaitSemaphoresKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkWaitSemaphoresKHR( - static_cast( m_device ), reinterpret_cast( &waitInfo ), timeout ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eTimeout ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::waitSemaphoresKHR" ); - } - return result; - } - - VULKAN_HPP_INLINE void - Device::signalSemaphoreKHR( const VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo & signalInfo ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSignalSemaphoreKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkSignalSemaphoreKHR( - static_cast( m_device ), reinterpret_cast( &signalInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::signalSemaphoreKHR" ); - } - } - - //=== VK_INTEL_performance_query === - - VULKAN_HPP_INLINE void Device::initializePerformanceApiINTEL( - const VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL & initializeInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkInitializePerformanceApiINTEL && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkInitializePerformanceApiINTEL( - static_cast( m_device ), - reinterpret_cast( &initializeInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::initializePerformanceApiINTEL" ); - } - } - - VULKAN_HPP_INLINE void Device::uninitializePerformanceApiINTEL() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkUninitializePerformanceApiINTEL && - "Function needs extension enabled!" ); - - getDispatcher()->vkUninitializePerformanceApiINTEL( static_cast( m_device ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setPerformanceMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL & markerInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetPerformanceMarkerINTEL && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCmdSetPerformanceMarkerINTEL( - static_cast( m_commandBuffer ), - reinterpret_cast( &markerInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::setPerformanceMarkerINTEL" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::setPerformanceStreamMarkerINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL & markerInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetPerformanceStreamMarkerINTEL && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCmdSetPerformanceStreamMarkerINTEL( - static_cast( m_commandBuffer ), - reinterpret_cast( &markerInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::setPerformanceStreamMarkerINTEL" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::setPerformanceOverrideINTEL( - const VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL & overrideInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetPerformanceOverrideINTEL && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkCmdSetPerformanceOverrideINTEL( - static_cast( m_commandBuffer ), - reinterpret_cast( &overrideInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::CommandBuffer::setPerformanceOverrideINTEL" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::PerformanceConfigurationINTEL - Device::acquirePerformanceConfigurationINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL const & acquireInfo ) const - { - return VULKAN_HPP_RAII_NAMESPACE::PerformanceConfigurationINTEL( *this, acquireInfo ); - } - - VULKAN_HPP_INLINE void - Queue::setPerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkQueueSetPerformanceConfigurationINTEL && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkQueueSetPerformanceConfigurationINTEL( - static_cast( m_queue ), static_cast( configuration ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::setPerformanceConfigurationINTEL" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::PerformanceValueINTEL - Device::getPerformanceParameterINTEL( VULKAN_HPP_NAMESPACE::PerformanceParameterTypeINTEL parameter ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPerformanceParameterINTEL && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::PerformanceValueINTEL value; - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkGetPerformanceParameterINTEL( static_cast( m_device ), - static_cast( parameter ), - reinterpret_cast( &value ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getPerformanceParameterINTEL" ); - } - return value; - } - - //=== VK_AMD_display_native_hdr === - - VULKAN_HPP_INLINE void - SwapchainKHR::setLocalDimmingAMD( VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSetLocalDimmingAMD && - "Function needs extension enabled!" ); - - getDispatcher()->vkSetLocalDimmingAMD( static_cast( m_device ), - static_cast( m_swapchain ), - static_cast( localDimmingEnable ) ); - } - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_imagepipe_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR - Instance::createImagePipeSurfaceFUCHSIA( - VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_METAL_EXT ) - //=== VK_EXT_metal_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createMetalSurfaceEXT( - VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } -# endif /*VK_USE_PLATFORM_METAL_EXT*/ - - //=== VK_KHR_fragment_shading_rate === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getFragmentShadingRatesKHR() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceFragmentShadingRatesKHR && - "Function needs extension enabled!" ); - - std::vector fragmentShadingRates; - uint32_t fragmentShadingRateCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceFragmentShadingRatesKHR( - static_cast( m_physicalDevice ), &fragmentShadingRateCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && fragmentShadingRateCount ) - { - fragmentShadingRates.resize( fragmentShadingRateCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceFragmentShadingRatesKHR( - static_cast( m_physicalDevice ), - &fragmentShadingRateCount, - reinterpret_cast( fragmentShadingRates.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getFragmentShadingRatesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( fragmentShadingRateCount <= fragmentShadingRates.size() ); - if ( fragmentShadingRateCount < fragmentShadingRates.size() ) - { - fragmentShadingRates.resize( fragmentShadingRateCount ); - } - } - return fragmentShadingRates; - } - - VULKAN_HPP_INLINE void CommandBuffer::setFragmentShadingRateKHR( - const VULKAN_HPP_NAMESPACE::Extent2D & fragmentSize, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2] ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetFragmentShadingRateKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetFragmentShadingRateKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &fragmentSize ), - reinterpret_cast( combinerOps ) ); - } - - //=== VK_EXT_buffer_device_address === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceAddress Device::getBufferAddressEXT( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetBufferDeviceAddressEXT && - "Function needs extension enabled!" ); - - return static_cast( getDispatcher()->vkGetBufferDeviceAddressEXT( - static_cast( m_device ), reinterpret_cast( &info ) ) ); - } - - //=== VK_EXT_tooling_info === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getToolPropertiesEXT() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceToolPropertiesEXT && - "Function needs extension enabled!" ); - - std::vector toolProperties; - uint32_t toolCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceToolPropertiesEXT( - static_cast( m_physicalDevice ), &toolCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && toolCount ) - { - toolProperties.resize( toolCount ); - result = static_cast( getDispatcher()->vkGetPhysicalDeviceToolPropertiesEXT( - static_cast( m_physicalDevice ), - &toolCount, - reinterpret_cast( toolProperties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getToolPropertiesEXT" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( toolCount <= toolProperties.size() ); - if ( toolCount < toolProperties.size() ) - { - toolProperties.resize( toolCount ); - } - } - return toolProperties; - } - - //=== VK_KHR_present_wait === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - SwapchainKHR::waitForPresent( uint64_t presentId, uint64_t timeout ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkWaitForPresentKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkWaitForPresentKHR( - static_cast( m_device ), static_cast( m_swapchain ), presentId, timeout ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eTimeout ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::waitForPresent" ); - } - return result; - } - - //=== VK_NV_cooperative_matrix === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getCooperativeMatrixPropertiesNV() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceCooperativeMatrixPropertiesNV && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t propertyCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - static_cast( m_physicalDevice ), &propertyCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && propertyCount ) - { - properties.resize( propertyCount ); - result = static_cast( - getDispatcher()->vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( - static_cast( m_physicalDevice ), - &propertyCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getCooperativeMatrixPropertiesNV" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( propertyCount <= properties.size() ); - if ( propertyCount < properties.size() ) - { - properties.resize( propertyCount ); - } - } - return properties; - } - - //=== VK_NV_coverage_reduction_mode === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV && - "Function needs extension enabled!" ); - - std::vector combinations; - uint32_t combinationCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( - getDispatcher()->vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - static_cast( m_physicalDevice ), &combinationCount, nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && combinationCount ) - { - combinations.resize( combinationCount ); - result = static_cast( - getDispatcher()->vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV( - static_cast( m_physicalDevice ), - &combinationCount, - reinterpret_cast( combinations.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( - result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSupportedFramebufferMixedSamplesCombinationsNV" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( combinationCount <= combinations.size() ); - if ( combinationCount < combinations.size() ) - { - combinations.resize( combinationCount ); - } - } - return combinations; - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_EXT_full_screen_exclusive === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - PhysicalDevice::getSurfacePresentModes2EXT( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceSurfacePresentModes2EXT && - "Function needs extension enabled!" ); - - std::vector presentModes; - uint32_t presentModeCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPhysicalDeviceSurfacePresentModes2EXT( - static_cast( m_physicalDevice ), - reinterpret_cast( &surfaceInfo ), - &presentModeCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && presentModeCount ) - { - presentModes.resize( presentModeCount ); - result = - static_cast( getDispatcher()->vkGetPhysicalDeviceSurfacePresentModes2EXT( - static_cast( m_physicalDevice ), - reinterpret_cast( &surfaceInfo ), - &presentModeCount, - reinterpret_cast( presentModes.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::getSurfacePresentModes2EXT" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( presentModeCount <= presentModes.size() ); - if ( presentModeCount < presentModes.size() ) - { - presentModes.resize( presentModeCount ); - } - } - return presentModes; - } - - VULKAN_HPP_INLINE void SwapchainKHR::acquireFullScreenExclusiveModeEXT() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkAcquireFullScreenExclusiveModeEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkAcquireFullScreenExclusiveModeEXT( - static_cast( m_device ), static_cast( m_swapchain ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::acquireFullScreenExclusiveModeEXT" ); - } - } - - VULKAN_HPP_INLINE void SwapchainKHR::releaseFullScreenExclusiveModeEXT() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkReleaseFullScreenExclusiveModeEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkReleaseFullScreenExclusiveModeEXT( - static_cast( m_device ), static_cast( m_swapchain ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::SwapchainKHR::releaseFullScreenExclusiveModeEXT" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR - Device::getGroupSurfacePresentModes2EXT( - const VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR & surfaceInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceGroupSurfacePresentModes2EXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetDeviceGroupSurfacePresentModes2EXT( - static_cast( m_device ), - reinterpret_cast( &surfaceInfo ), - reinterpret_cast( &modes ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getGroupSurfacePresentModes2EXT" ); - } - return modes; - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - //=== VK_EXT_headless_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createHeadlessSurfaceEXT( - VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - //=== VK_KHR_buffer_device_address === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceAddress Device::getBufferAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetBufferDeviceAddressKHR && - "Function needs extension enabled!" ); - - return static_cast( getDispatcher()->vkGetBufferDeviceAddressKHR( - static_cast( m_device ), reinterpret_cast( &info ) ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t Device::getBufferOpaqueCaptureAddressKHR( - const VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetBufferOpaqueCaptureAddressKHR && - "Function needs extension enabled!" ); - - return getDispatcher()->vkGetBufferOpaqueCaptureAddressKHR( - static_cast( m_device ), reinterpret_cast( &info ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t Device::getMemoryOpaqueCaptureAddressKHR( - const VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceMemoryOpaqueCaptureAddressKHR && - "Function needs extension enabled!" ); - - return getDispatcher()->vkGetDeviceMemoryOpaqueCaptureAddressKHR( - static_cast( m_device ), reinterpret_cast( &info ) ); - } - - //=== VK_EXT_line_rasterization === - - VULKAN_HPP_INLINE void CommandBuffer::setLineStippleEXT( uint32_t lineStippleFactor, - uint16_t lineStipplePattern ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetLineStippleEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetLineStippleEXT( - static_cast( m_commandBuffer ), lineStippleFactor, lineStipplePattern ); - } - - //=== VK_EXT_host_query_reset === - - VULKAN_HPP_INLINE void QueryPool::resetEXT( uint32_t firstQuery, uint32_t queryCount ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkResetQueryPoolEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkResetQueryPoolEXT( - static_cast( m_device ), static_cast( m_queryPool ), firstQuery, queryCount ); - } - - //=== VK_EXT_extended_dynamic_state === - - VULKAN_HPP_INLINE void - CommandBuffer::setCullModeEXT( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetCullModeEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetCullModeEXT( static_cast( m_commandBuffer ), - static_cast( cullMode ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setFrontFaceEXT( VULKAN_HPP_NAMESPACE::FrontFace frontFace ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetFrontFaceEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetFrontFaceEXT( static_cast( m_commandBuffer ), - static_cast( frontFace ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setPrimitiveTopologyEXT( - VULKAN_HPP_NAMESPACE::PrimitiveTopology primitiveTopology ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetPrimitiveTopologyEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetPrimitiveTopologyEXT( static_cast( m_commandBuffer ), - static_cast( primitiveTopology ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setViewportWithCountEXT( - ArrayProxy const & viewports ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetViewportWithCountEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetViewportWithCountEXT( static_cast( m_commandBuffer ), - viewports.size(), - reinterpret_cast( viewports.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setScissorWithCountEXT( - ArrayProxy const & scissors ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetScissorWithCountEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetScissorWithCountEXT( static_cast( m_commandBuffer ), - scissors.size(), - reinterpret_cast( scissors.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::bindVertexBuffers2EXT( - uint32_t firstBinding, - ArrayProxy const & buffers, - ArrayProxy const & offsets, - ArrayProxy const & sizes, - ArrayProxy const & strides ) const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBindVertexBuffers2EXT && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( buffers.size() == offsets.size() ); - VULKAN_HPP_ASSERT( sizes.empty() || buffers.size() == sizes.size() ); - VULKAN_HPP_ASSERT( strides.empty() || buffers.size() == strides.size() ); -# else - if ( buffers.size() != offsets.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2EXT: buffers.size() != offsets.size()" ); - } - if ( !sizes.empty() && buffers.size() != sizes.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2EXT: buffers.size() != sizes.size()" ); - } - if ( !strides.empty() && buffers.size() != strides.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::bindVertexBuffers2EXT: buffers.size() != strides.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdBindVertexBuffers2EXT( static_cast( m_commandBuffer ), - firstBinding, - buffers.size(), - reinterpret_cast( buffers.data() ), - reinterpret_cast( offsets.data() ), - reinterpret_cast( sizes.data() ), - reinterpret_cast( strides.data() ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetDepthTestEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDepthTestEnableEXT( static_cast( m_commandBuffer ), - static_cast( depthTestEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthWriteEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetDepthWriteEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDepthWriteEnableEXT( static_cast( m_commandBuffer ), - static_cast( depthWriteEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthCompareOpEXT( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetDepthCompareOpEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDepthCompareOpEXT( static_cast( m_commandBuffer ), - static_cast( depthCompareOp ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setDepthBoundsTestEnableEXT( - VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetDepthBoundsTestEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDepthBoundsTestEnableEXT( static_cast( m_commandBuffer ), - static_cast( depthBoundsTestEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setStencilTestEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetStencilTestEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetStencilTestEnableEXT( static_cast( m_commandBuffer ), - static_cast( stencilTestEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setStencilOpEXT( VULKAN_HPP_NAMESPACE::StencilFaceFlags faceMask, - VULKAN_HPP_NAMESPACE::StencilOp failOp, - VULKAN_HPP_NAMESPACE::StencilOp passOp, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp, - VULKAN_HPP_NAMESPACE::CompareOp compareOp ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetStencilOpEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetStencilOpEXT( static_cast( m_commandBuffer ), - static_cast( faceMask ), - static_cast( failOp ), - static_cast( passOp ), - static_cast( depthFailOp ), - static_cast( compareOp ) ); - } - - //=== VK_KHR_deferred_host_operations === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR - Device::createDeferredOperationKHR( - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR( *this, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint32_t DeferredOperationKHR::getMaxConcurrency() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeferredOperationMaxConcurrencyKHR && - "Function needs extension enabled!" ); - - return getDispatcher()->vkGetDeferredOperationMaxConcurrencyKHR( - static_cast( m_device ), static_cast( m_operation ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result - DeferredOperationKHR::getResult() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeferredOperationResultKHR && - "Function needs extension enabled!" ); - - return static_cast( getDispatcher()->vkGetDeferredOperationResultKHR( - static_cast( m_device ), static_cast( m_operation ) ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Result DeferredOperationKHR::join() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkDeferredOperationJoinKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkDeferredOperationJoinKHR( - static_cast( m_device ), static_cast( m_operation ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eThreadDoneKHR ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eThreadIdleKHR ) ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DeferredOperationKHR::join" ); - } - return result; - } - - //=== VK_KHR_pipeline_executable_properties === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::getPipelineExecutablePropertiesKHR( const VULKAN_HPP_NAMESPACE::PipelineInfoKHR & pipelineInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPipelineExecutablePropertiesKHR && - "Function needs extension enabled!" ); - - std::vector properties; - uint32_t executableCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPipelineExecutablePropertiesKHR( - static_cast( m_device ), - reinterpret_cast( &pipelineInfo ), - &executableCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && executableCount ) - { - properties.resize( executableCount ); - result = static_cast( getDispatcher()->vkGetPipelineExecutablePropertiesKHR( - static_cast( m_device ), - reinterpret_cast( &pipelineInfo ), - &executableCount, - reinterpret_cast( properties.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutablePropertiesKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( executableCount <= properties.size() ); - if ( executableCount < properties.size() ) - { - properties.resize( executableCount ); - } - } - return properties; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::getPipelineExecutableStatisticsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPipelineExecutableStatisticsKHR && - "Function needs extension enabled!" ); - - std::vector statistics; - uint32_t statisticCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = static_cast( getDispatcher()->vkGetPipelineExecutableStatisticsKHR( - static_cast( m_device ), - reinterpret_cast( &executableInfo ), - &statisticCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && statisticCount ) - { - statistics.resize( statisticCount ); - result = static_cast( getDispatcher()->vkGetPipelineExecutableStatisticsKHR( - static_cast( m_device ), - reinterpret_cast( &executableInfo ), - &statisticCount, - reinterpret_cast( statistics.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutableStatisticsKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( statisticCount <= statistics.size() ); - if ( statisticCount < statistics.size() ) - { - statistics.resize( statisticCount ); - } - } - return statistics; - } - - VULKAN_HPP_NODISCARD - VULKAN_HPP_INLINE std::vector - Device::getPipelineExecutableInternalRepresentationsKHR( - const VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR & executableInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPipelineExecutableInternalRepresentationsKHR && - "Function needs extension enabled!" ); - - std::vector internalRepresentations; - uint32_t internalRepresentationCount; - VULKAN_HPP_NAMESPACE::Result result; - do - { - result = - static_cast( getDispatcher()->vkGetPipelineExecutableInternalRepresentationsKHR( - static_cast( m_device ), - reinterpret_cast( &executableInfo ), - &internalRepresentationCount, - nullptr ) ); - if ( ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) && internalRepresentationCount ) - { - internalRepresentations.resize( internalRepresentationCount ); - result = static_cast( - getDispatcher()->vkGetPipelineExecutableInternalRepresentationsKHR( - static_cast( m_device ), - reinterpret_cast( &executableInfo ), - &internalRepresentationCount, - reinterpret_cast( internalRepresentations.data() ) ) ); - } - } while ( result == VULKAN_HPP_NAMESPACE::Result::eIncomplete ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::Device::getPipelineExecutableInternalRepresentationsKHR" ); - } - if ( result == VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - VULKAN_HPP_ASSERT( internalRepresentationCount <= internalRepresentations.size() ); - if ( internalRepresentationCount < internalRepresentations.size() ) - { - internalRepresentations.resize( internalRepresentationCount ); - } - } - return internalRepresentations; - } - - //=== VK_NV_device_generated_commands === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetGeneratedCommandsMemoryRequirementsNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetGeneratedCommandsMemoryRequirementsNV( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getGeneratedCommandsMemoryRequirementsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetGeneratedCommandsMemoryRequirementsNV && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetGeneratedCommandsMemoryRequirementsNV( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_INLINE void CommandBuffer::preprocessGeneratedCommandsNV( - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdPreprocessGeneratedCommandsNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdPreprocessGeneratedCommandsNV( - static_cast( m_commandBuffer ), - reinterpret_cast( &generatedCommandsInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::executeGeneratedCommandsNV( - VULKAN_HPP_NAMESPACE::Bool32 isPreprocessed, - const VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV & generatedCommandsInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdExecuteGeneratedCommandsNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdExecuteGeneratedCommandsNV( - static_cast( m_commandBuffer ), - static_cast( isPreprocessed ), - reinterpret_cast( &generatedCommandsInfo ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::bindPipelineShaderGroupNV( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint, - VULKAN_HPP_NAMESPACE::Pipeline pipeline, - uint32_t groupIndex ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBindPipelineShaderGroupNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBindPipelineShaderGroupNV( static_cast( m_commandBuffer ), - static_cast( pipelineBindPoint ), - static_cast( pipeline ), - groupIndex ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::IndirectCommandsLayoutNV - Device::createIndirectCommandsLayoutNV( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::IndirectCommandsLayoutNV( *this, createInfo, allocator ); - } - - //=== VK_EXT_acquire_drm_display === - - VULKAN_HPP_INLINE void PhysicalDevice::acquireDrmDisplayEXT( int32_t drmFd, - VULKAN_HPP_NAMESPACE::DisplayKHR display ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkAcquireDrmDisplayEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkAcquireDrmDisplayEXT( - static_cast( m_physicalDevice ), drmFd, static_cast( display ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::PhysicalDevice::acquireDrmDisplayEXT" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DisplayKHR - PhysicalDevice::getDrmDisplayEXT( int32_t drmFd, uint32_t connectorId ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DisplayKHR( *this, drmFd, connectorId ); - } - - //=== VK_EXT_private_data === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::PrivateDataSlot Device::createPrivateDataSlotEXT( - VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::PrivateDataSlot( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void Device::destroyPrivateDataSlotEXT( - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - Optional allocator ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkDestroyPrivateDataSlotEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkDestroyPrivateDataSlotEXT( - static_cast( m_device ), - static_cast( privateDataSlot ), - reinterpret_cast( - static_cast( allocator ) ) ); - } - - VULKAN_HPP_INLINE void Device::setPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot, - uint64_t data ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkSetPrivateDataEXT && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkSetPrivateDataEXT( static_cast( m_device ), - static_cast( objectType_ ), - objectHandle, - static_cast( privateDataSlot ), - data ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::setPrivateDataEXT" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE uint64_t - Device::getPrivateDataEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle, - VULKAN_HPP_NAMESPACE::PrivateDataSlot privateDataSlot ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetPrivateDataEXT && - "Function needs extension enabled!" ); - - uint64_t data; - getDispatcher()->vkGetPrivateDataEXT( static_cast( m_device ), - static_cast( objectType_ ), - objectHandle, - static_cast( privateDataSlot ), - &data ); - return data; - } - -# if defined( VK_ENABLE_BETA_EXTENSIONS ) - //=== VK_KHR_video_encode_queue === - - VULKAN_HPP_INLINE void CommandBuffer::encodeVideoKHR( - const VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR & encodeInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdEncodeVideoKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdEncodeVideoKHR( static_cast( m_commandBuffer ), - reinterpret_cast( &encodeInfo ) ); - } -# endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - //=== VK_KHR_synchronization2 === - - VULKAN_HPP_INLINE void CommandBuffer::setEvent2KHR( - VULKAN_HPP_NAMESPACE::Event event, - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetEvent2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetEvent2KHR( static_cast( m_commandBuffer ), - static_cast( event ), - reinterpret_cast( &dependencyInfo ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::resetEvent2KHR( VULKAN_HPP_NAMESPACE::Event event, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdResetEvent2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdResetEvent2KHR( static_cast( m_commandBuffer ), - static_cast( event ), - static_cast( stageMask ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::waitEvents2KHR( ArrayProxy const & events, - ArrayProxy const & dependencyInfos ) - const VULKAN_HPP_NOEXCEPT_WHEN_NO_EXCEPTIONS - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdWaitEvents2KHR && - "Function needs extension enabled!" ); - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( events.size() == dependencyInfos.size() ); -# else - if ( events.size() != dependencyInfos.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::CommandBuffer::waitEvents2KHR: events.size() != dependencyInfos.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - - getDispatcher()->vkCmdWaitEvents2KHR( static_cast( m_commandBuffer ), - events.size(), - reinterpret_cast( events.data() ), - reinterpret_cast( dependencyInfos.data() ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::pipelineBarrier2KHR( - const VULKAN_HPP_NAMESPACE::DependencyInfo & dependencyInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdPipelineBarrier2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdPipelineBarrier2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( &dependencyInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::writeTimestamp2KHR( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::QueryPool queryPool, - uint32_t query ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdWriteTimestamp2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdWriteTimestamp2KHR( static_cast( m_commandBuffer ), - static_cast( stage ), - static_cast( queryPool ), - query ); - } - - VULKAN_HPP_INLINE void Queue::submit2KHR( ArrayProxy const & submits, - VULKAN_HPP_NAMESPACE::Fence fence ) const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkQueueSubmit2KHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = static_cast( - getDispatcher()->vkQueueSubmit2KHR( static_cast( m_queue ), - submits.size(), - reinterpret_cast( submits.data() ), - static_cast( fence ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Queue::submit2KHR" ); - } - } - - VULKAN_HPP_INLINE void CommandBuffer::writeBufferMarker2AMD( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset, - uint32_t marker ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdWriteBufferMarker2AMD && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdWriteBufferMarker2AMD( static_cast( m_commandBuffer ), - static_cast( stage ), - static_cast( dstBuffer ), - static_cast( dstOffset ), - marker ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Queue::getCheckpointData2NV() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkGetQueueCheckpointData2NV && - "Function needs extension enabled!" ); - - uint32_t checkpointDataCount; - getDispatcher()->vkGetQueueCheckpointData2NV( static_cast( m_queue ), &checkpointDataCount, nullptr ); - std::vector checkpointData( checkpointDataCount ); - getDispatcher()->vkGetQueueCheckpointData2NV( static_cast( m_queue ), - &checkpointDataCount, - reinterpret_cast( checkpointData.data() ) ); - VULKAN_HPP_ASSERT( checkpointDataCount == checkpointData.size() ); - return checkpointData; - } - - //=== VK_NV_fragment_shading_rate_enums === - - VULKAN_HPP_INLINE void CommandBuffer::setFragmentShadingRateEnumNV( - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate, - const VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR combinerOps[2] ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetFragmentShadingRateEnumNV && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetFragmentShadingRateEnumNV( - static_cast( m_commandBuffer ), - static_cast( shadingRate ), - reinterpret_cast( combinerOps ) ); - } - - //=== VK_KHR_copy_commands2 === - - VULKAN_HPP_INLINE void CommandBuffer::copyBuffer2KHR( - const VULKAN_HPP_NAMESPACE::CopyBufferInfo2 & copyBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdCopyBuffer2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyBuffer2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( ©BufferInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyImage2KHR( - const VULKAN_HPP_NAMESPACE::CopyImageInfo2 & copyImageInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdCopyImage2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyImage2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( ©ImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyBufferToImage2KHR( - const VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 & copyBufferToImageInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdCopyBufferToImage2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyBufferToImage2KHR( - static_cast( m_commandBuffer ), - reinterpret_cast( ©BufferToImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::copyImageToBuffer2KHR( - const VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 & copyImageToBufferInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdCopyImageToBuffer2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdCopyImageToBuffer2KHR( - static_cast( m_commandBuffer ), - reinterpret_cast( ©ImageToBufferInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::blitImage2KHR( - const VULKAN_HPP_NAMESPACE::BlitImageInfo2 & blitImageInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdBlitImage2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBlitImage2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( &blitImageInfo ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::resolveImage2KHR( - const VULKAN_HPP_NAMESPACE::ResolveImageInfo2 & resolveImageInfo ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdResolveImage2KHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdResolveImage2KHR( static_cast( m_commandBuffer ), - reinterpret_cast( &resolveImageInfo ) ); - } - -# if defined( VK_USE_PLATFORM_WIN32_KHR ) - //=== VK_NV_acquire_winrt_display === - - VULKAN_HPP_INLINE void DisplayKHR::acquireWinrtNV() const - { - VULKAN_HPP_ASSERT( getDispatcher()->vkAcquireWinrtDisplayNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkAcquireWinrtDisplayNV( - static_cast( m_physicalDevice ), static_cast( m_display ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::DisplayKHR::acquireWinrtNV" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::DisplayKHR - PhysicalDevice::getWinrtDisplayNV( uint32_t deviceRelativeId ) const - { - return VULKAN_HPP_RAII_NAMESPACE::DisplayKHR( *this, deviceRelativeId ); - } -# endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -# if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - //=== VK_EXT_directfb_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createDirectFBSurfaceEXT( - VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 - PhysicalDevice::getDirectFBPresentationSupportEXT( uint32_t queueFamilyIndex, - IDirectFB & dfb ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceDirectFBPresentationSupportEXT && - "Function needs extension enabled!" ); - - return static_cast( - getDispatcher()->vkGetPhysicalDeviceDirectFBPresentationSupportEXT( - static_cast( m_physicalDevice ), queueFamilyIndex, &dfb ) ); - } -# endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - //=== VK_KHR_ray_tracing_pipeline === - - VULKAN_HPP_INLINE void CommandBuffer::traceRaysKHR( - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - uint32_t width, - uint32_t height, - uint32_t depth ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdTraceRaysKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdTraceRaysKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &raygenShaderBindingTable ), - reinterpret_cast( &missShaderBindingTable ), - reinterpret_cast( &hitShaderBindingTable ), - reinterpret_cast( &callableShaderBindingTable ), - width, - height, - depth ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::createRayTracingPipelinesKHR( - VULKAN_HPP_NAMESPACE::Optional< - const VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR> const & deferredOperation, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::ArrayProxy const & createInfos, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipelines( *this, deferredOperation, pipelineCache, createInfos, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::Pipeline Device::createRayTracingPipelineKHR( - VULKAN_HPP_NAMESPACE::Optional< - const VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeferredOperationKHR> const & deferredOperation, - VULKAN_HPP_NAMESPACE::Optional const & - pipelineCache, - VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::Pipeline( *this, deferredOperation, pipelineCache, createInfo, allocator ); - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Pipeline::getRayTracingShaderGroupHandlesKHR( uint32_t firstGroup, uint32_t groupCount, size_t dataSize ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( - getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR( static_cast( m_device ), - static_cast( m_pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandlesKHR" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD DataType Pipeline::getRayTracingShaderGroupHandleKHR( uint32_t firstGroup, - uint32_t groupCount ) const - { - DataType data; - Result result = static_cast( - getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR( static_cast( m_device ), - static_cast( m_pipeline ), - firstGroup, - groupCount, - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandleKHR" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Pipeline::getRayTracingCaptureReplayShaderGroupHandlesKHR( uint32_t firstGroup, - uint32_t groupCount, - size_t dataSize ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 ); - std::vector data( dataSize / sizeof( DataType ) ); - Result result = static_cast( - getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( static_cast( m_device ), - static_cast( m_pipeline ), - firstGroup, - groupCount, - data.size() * sizeof( DataType ), - reinterpret_cast( data.data() ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( - result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingCaptureReplayShaderGroupHandlesKHR" ); - } - return data; - } - - template - VULKAN_HPP_NODISCARD DataType Pipeline::getRayTracingCaptureReplayShaderGroupHandleKHR( uint32_t firstGroup, - uint32_t groupCount ) const - { - DataType data; - Result result = static_cast( - getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( static_cast( m_device ), - static_cast( m_pipeline ), - firstGroup, - groupCount, - sizeof( DataType ), - reinterpret_cast( &data ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( - result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingCaptureReplayShaderGroupHandleKHR" ); - } - return data; - } - - VULKAN_HPP_INLINE void CommandBuffer::traceRaysIndirectKHR( - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & raygenShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & missShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & hitShaderBindingTable, - const VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR & callableShaderBindingTable, - VULKAN_HPP_NAMESPACE::DeviceAddress indirectDeviceAddress ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdTraceRaysIndirectKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdTraceRaysIndirectKHR( - static_cast( m_commandBuffer ), - reinterpret_cast( &raygenShaderBindingTable ), - reinterpret_cast( &missShaderBindingTable ), - reinterpret_cast( &hitShaderBindingTable ), - reinterpret_cast( &callableShaderBindingTable ), - static_cast( indirectDeviceAddress ) ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::DeviceSize - Pipeline::getRayTracingShaderGroupStackSizeKHR( - uint32_t group, VULKAN_HPP_NAMESPACE::ShaderGroupShaderKHR groupShader ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetRayTracingShaderGroupStackSizeKHR && - "Function needs extension enabled!" ); - - return static_cast( - getDispatcher()->vkGetRayTracingShaderGroupStackSizeKHR( static_cast( m_device ), - static_cast( m_pipeline ), - group, - static_cast( groupShader ) ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setRayTracingPipelineStackSizeKHR( uint32_t pipelineStackSize ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetRayTracingPipelineStackSizeKHR && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetRayTracingPipelineStackSizeKHR( static_cast( m_commandBuffer ), - pipelineStackSize ); - } - - //=== VK_EXT_vertex_input_dynamic_state === - - VULKAN_HPP_INLINE void CommandBuffer::setVertexInputEXT( - ArrayProxy const & vertexBindingDescriptions, - ArrayProxy const & vertexAttributeDescriptions ) - const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetVertexInputEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetVertexInputEXT( - static_cast( m_commandBuffer ), - vertexBindingDescriptions.size(), - reinterpret_cast( vertexBindingDescriptions.data() ), - vertexAttributeDescriptions.size(), - reinterpret_cast( vertexAttributeDescriptions.data() ) ); - } - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_memory === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE zx_handle_t Device::getMemoryZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA & getZirconHandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryZirconHandleFUCHSIA && - "Function needs extension enabled!" ); - - zx_handle_t zirconHandle; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryZirconHandleFUCHSIA( - static_cast( m_device ), - reinterpret_cast( &getZirconHandleInfo ), - &zirconHandle ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryZirconHandleFUCHSIA" ); - } - return zirconHandle; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA - Device::getMemoryZirconHandlePropertiesFUCHSIA( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType, - zx_handle_t zirconHandle ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryZirconHandlePropertiesFUCHSIA && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA memoryZirconHandleProperties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryZirconHandlePropertiesFUCHSIA( - static_cast( m_device ), - static_cast( handleType ), - zirconHandle, - reinterpret_cast( &memoryZirconHandleProperties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryZirconHandlePropertiesFUCHSIA" ); - } - return memoryZirconHandleProperties; - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_external_semaphore === - - VULKAN_HPP_INLINE void Device::importSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA & importSemaphoreZirconHandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkImportSemaphoreZirconHandleFUCHSIA && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkImportSemaphoreZirconHandleFUCHSIA( - static_cast( m_device ), - reinterpret_cast( &importSemaphoreZirconHandleInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::importSemaphoreZirconHandleFUCHSIA" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE zx_handle_t Device::getSemaphoreZirconHandleFUCHSIA( - const VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA & getZirconHandleInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetSemaphoreZirconHandleFUCHSIA && - "Function needs extension enabled!" ); - - zx_handle_t zirconHandle; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetSemaphoreZirconHandleFUCHSIA( - static_cast( m_device ), - reinterpret_cast( &getZirconHandleInfo ), - &zirconHandle ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getSemaphoreZirconHandleFUCHSIA" ); - } - return zirconHandle; - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - -# if defined( VK_USE_PLATFORM_FUCHSIA ) - //=== VK_FUCHSIA_buffer_collection === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::BufferCollectionFUCHSIA - Device::createBufferCollectionFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::BufferCollectionFUCHSIA( *this, createInfo, allocator ); - } - - VULKAN_HPP_INLINE void BufferCollectionFUCHSIA::setImageConstraints( - const VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA & imageConstraintsInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkSetBufferCollectionImageConstraintsFUCHSIA && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkSetBufferCollectionImageConstraintsFUCHSIA( - static_cast( m_device ), - static_cast( m_collection ), - reinterpret_cast( &imageConstraintsInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::BufferCollectionFUCHSIA::setImageConstraints" ); - } - } - - VULKAN_HPP_INLINE void BufferCollectionFUCHSIA::setBufferConstraints( - const VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA & bufferConstraintsInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkSetBufferCollectionBufferConstraintsFUCHSIA && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkSetBufferCollectionBufferConstraintsFUCHSIA( - static_cast( m_device ), - static_cast( m_collection ), - reinterpret_cast( &bufferConstraintsInfo ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::BufferCollectionFUCHSIA::setBufferConstraints" ); - } - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA - BufferCollectionFUCHSIA::getProperties() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetBufferCollectionPropertiesFUCHSIA && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA properties; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetBufferCollectionPropertiesFUCHSIA( - static_cast( m_device ), - static_cast( m_collection ), - reinterpret_cast( &properties ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::BufferCollectionFUCHSIA::getProperties" ); - } - return properties; - } -# endif /*VK_USE_PLATFORM_FUCHSIA*/ - - //=== VK_HUAWEI_subpass_shading === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::pair - RenderPass::getSubpassShadingMaxWorkgroupSizeHUAWEI() const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::Extent2D maxWorkgroupSize; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI( - static_cast( m_device ), - static_cast( m_renderPass ), - reinterpret_cast( &maxWorkgroupSize ) ) ); - if ( ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) && - ( result != VULKAN_HPP_NAMESPACE::Result::eIncomplete ) ) - { - throwResultException( result, - VULKAN_HPP_NAMESPACE_STRING "::RenderPass::getSubpassShadingMaxWorkgroupSizeHUAWEI" ); - } - return std::make_pair( result, maxWorkgroupSize ); - } - - VULKAN_HPP_INLINE void CommandBuffer::subpassShadingHUAWEI() const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSubpassShadingHUAWEI && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSubpassShadingHUAWEI( static_cast( m_commandBuffer ) ); - } - - //=== VK_HUAWEI_invocation_mask === - - VULKAN_HPP_INLINE void - CommandBuffer::bindInvocationMaskHUAWEI( VULKAN_HPP_NAMESPACE::ImageView imageView, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdBindInvocationMaskHUAWEI && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdBindInvocationMaskHUAWEI( static_cast( m_commandBuffer ), - static_cast( imageView ), - static_cast( imageLayout ) ); - } - - //=== VK_NV_external_memory_rdma === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::RemoteAddressNV Device::getMemoryRemoteAddressNV( - const VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV & memoryGetRemoteAddressInfo ) const - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetMemoryRemoteAddressNV && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::RemoteAddressNV address; - VULKAN_HPP_NAMESPACE::Result result = - static_cast( getDispatcher()->vkGetMemoryRemoteAddressNV( - static_cast( m_device ), - reinterpret_cast( &memoryGetRemoteAddressInfo ), - reinterpret_cast( &address ) ) ); - if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess ) - { - throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::getMemoryRemoteAddressNV" ); - } - return address; - } - - //=== VK_EXT_extended_dynamic_state2 === - - VULKAN_HPP_INLINE void - CommandBuffer::setPatchControlPointsEXT( uint32_t patchControlPoints ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetPatchControlPointsEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetPatchControlPointsEXT( static_cast( m_commandBuffer ), - patchControlPoints ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setRasterizerDiscardEnableEXT( - VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetRasterizerDiscardEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetRasterizerDiscardEnableEXT( static_cast( m_commandBuffer ), - static_cast( rasterizerDiscardEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setDepthBiasEnableEXT( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetDepthBiasEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetDepthBiasEnableEXT( static_cast( m_commandBuffer ), - static_cast( depthBiasEnable ) ); - } - - VULKAN_HPP_INLINE void - CommandBuffer::setLogicOpEXT( VULKAN_HPP_NAMESPACE::LogicOp logicOp ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdSetLogicOpEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetLogicOpEXT( static_cast( m_commandBuffer ), - static_cast( logicOp ) ); - } - - VULKAN_HPP_INLINE void CommandBuffer::setPrimitiveRestartEnableEXT( - VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetPrimitiveRestartEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetPrimitiveRestartEnableEXT( static_cast( m_commandBuffer ), - static_cast( primitiveRestartEnable ) ); - } - -# if defined( VK_USE_PLATFORM_SCREEN_QNX ) - //=== VK_QNX_screen_surface === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR Instance::createScreenSurfaceQNX( - VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX const & createInfo, - VULKAN_HPP_NAMESPACE::Optional allocator ) const - { - return VULKAN_HPP_RAII_NAMESPACE::SurfaceKHR( *this, createInfo, allocator ); - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::Bool32 - PhysicalDevice::getScreenPresentationSupportQNX( uint32_t queueFamilyIndex, - struct _screen_window & window ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetPhysicalDeviceScreenPresentationSupportQNX && - "Function needs extension enabled!" ); - - return static_cast( - getDispatcher()->vkGetPhysicalDeviceScreenPresentationSupportQNX( - static_cast( m_physicalDevice ), queueFamilyIndex, &window ) ); - } -# endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - //=== VK_EXT_color_write_enable === - - VULKAN_HPP_INLINE void CommandBuffer::setColorWriteEnableEXT( - ArrayProxy const & colorWriteEnables ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkCmdSetColorWriteEnableEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdSetColorWriteEnableEXT( static_cast( m_commandBuffer ), - colorWriteEnables.size(), - reinterpret_cast( colorWriteEnables.data() ) ); - } - - //=== VK_EXT_multi_draw === - - VULKAN_HPP_INLINE void - CommandBuffer::drawMultiEXT( ArrayProxy const & vertexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawMultiEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawMultiEXT( static_cast( m_commandBuffer ), - vertexInfo.size(), - reinterpret_cast( vertexInfo.data() ), - instanceCount, - firstInstance, - stride ); - } - - VULKAN_HPP_INLINE void CommandBuffer::drawMultiIndexedEXT( - ArrayProxy const & indexInfo, - uint32_t instanceCount, - uint32_t firstInstance, - uint32_t stride, - Optional vertexOffset ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( getDispatcher()->vkCmdDrawMultiIndexedEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkCmdDrawMultiIndexedEXT( - static_cast( m_commandBuffer ), - indexInfo.size(), - reinterpret_cast( indexInfo.data() ), - instanceCount, - firstInstance, - stride, - static_cast( vertexOffset ) ); - } - - //=== VK_EXT_pageable_device_local_memory === - - VULKAN_HPP_INLINE void DeviceMemory::setPriorityEXT( float priority ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkSetDeviceMemoryPriorityEXT && - "Function needs extension enabled!" ); - - getDispatcher()->vkSetDeviceMemoryPriorityEXT( - static_cast( m_device ), static_cast( m_memory ), priority ); - } - - //=== VK_KHR_maintenance4 === - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getBufferMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceBufferMemoryRequirementsKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetDeviceBufferMemoryRequirementsKHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getBufferMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceBufferMemoryRequirementsKHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetDeviceBufferMemoryRequirementsKHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE VULKAN_HPP_NAMESPACE::MemoryRequirements2 - Device::getImageMemoryRequirementsKHR( const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const - VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceImageMemoryRequirementsKHR && - "Function needs extension enabled!" ); - - VULKAN_HPP_NAMESPACE::MemoryRequirements2 memoryRequirements; - getDispatcher()->vkGetDeviceImageMemoryRequirementsKHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return memoryRequirements; - } - - template - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE StructureChain Device::getImageMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceImageMemoryRequirementsKHR && - "Function needs extension enabled!" ); - - StructureChain structureChain; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 & memoryRequirements = - structureChain.template get(); - getDispatcher()->vkGetDeviceImageMemoryRequirementsKHR( - static_cast( m_device ), - reinterpret_cast( &info ), - reinterpret_cast( &memoryRequirements ) ); - return structureChain; - } - - VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector - Device::getImageSparseMemoryRequirementsKHR( - const VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements & info ) const VULKAN_HPP_NOEXCEPT - { - VULKAN_HPP_ASSERT( - getDispatcher()->vkGetDeviceImageSparseMemoryRequirementsKHR && - "Function needs extension enabled!" ); - - uint32_t sparseMemoryRequirementCount; - getDispatcher()->vkGetDeviceImageSparseMemoryRequirementsKHR( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - nullptr ); - std::vector sparseMemoryRequirements( - sparseMemoryRequirementCount ); - getDispatcher()->vkGetDeviceImageSparseMemoryRequirementsKHR( - static_cast( m_device ), - reinterpret_cast( &info ), - &sparseMemoryRequirementCount, - reinterpret_cast( sparseMemoryRequirements.data() ) ); - VULKAN_HPP_ASSERT( sparseMemoryRequirementCount == sparseMemoryRequirements.size() ); - return sparseMemoryRequirements; - } - -#endif - } // namespace VULKAN_HPP_RAII_NAMESPACE -} // namespace VULKAN_HPP_NAMESPACE -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_screen.h b/Externals/Vulkan/Include/vulkan/vulkan_screen.h deleted file mode 100644 index f0ef40a6ca..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_screen.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef VULKAN_SCREEN_H_ -#define VULKAN_SCREEN_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_QNX_screen_surface 1 -#define VK_QNX_SCREEN_SURFACE_SPEC_VERSION 1 -#define VK_QNX_SCREEN_SURFACE_EXTENSION_NAME "VK_QNX_screen_surface" -typedef VkFlags VkScreenSurfaceCreateFlagsQNX; -typedef struct VkScreenSurfaceCreateInfoQNX { - VkStructureType sType; - const void* pNext; - VkScreenSurfaceCreateFlagsQNX flags; - struct _screen_context* context; - struct _screen_window* window; -} VkScreenSurfaceCreateInfoQNX; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateScreenSurfaceQNX)(VkInstance instance, const VkScreenSurfaceCreateInfoQNX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); -typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceScreenPresentationSupportQNX)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, struct _screen_window* window); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateScreenSurfaceQNX( - VkInstance instance, - const VkScreenSurfaceCreateInfoQNX* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); - -VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceScreenPresentationSupportQNX( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - struct _screen_window* window); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_structs.hpp b/Externals/Vulkan/Include/vulkan/vulkan_structs.hpp deleted file mode 100644 index 1f55ae3333..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_structs.hpp +++ /dev/null @@ -1,102190 +0,0 @@ -// Copyright 2015-2022 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 OR MIT -// - -// This header is generated from the Khronos Vulkan XML API Registry. - -#ifndef VULKAN_STRUCTS_HPP -#define VULKAN_STRUCTS_HPP - -namespace VULKAN_HPP_NAMESPACE -{ - //=============== - //=== STRUCTS === - //=============== - - struct AabbPositionsKHR - { - using NativeType = VkAabbPositionsKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AabbPositionsKHR( float minX_ = {}, - float minY_ = {}, - float minZ_ = {}, - float maxX_ = {}, - float maxY_ = {}, - float maxZ_ = {} ) VULKAN_HPP_NOEXCEPT - : minX( minX_ ) - , minY( minY_ ) - , minZ( minZ_ ) - , maxX( maxX_ ) - , maxY( maxY_ ) - , maxZ( maxZ_ ) - {} - - VULKAN_HPP_CONSTEXPR AabbPositionsKHR( AabbPositionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AabbPositionsKHR( VkAabbPositionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AabbPositionsKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AabbPositionsKHR & operator=( AabbPositionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AabbPositionsKHR & operator=( VkAabbPositionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AabbPositionsKHR & setMinX( float minX_ ) VULKAN_HPP_NOEXCEPT - { - minX = minX_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AabbPositionsKHR & setMinY( float minY_ ) VULKAN_HPP_NOEXCEPT - { - minY = minY_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AabbPositionsKHR & setMinZ( float minZ_ ) VULKAN_HPP_NOEXCEPT - { - minZ = minZ_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AabbPositionsKHR & setMaxX( float maxX_ ) VULKAN_HPP_NOEXCEPT - { - maxX = maxX_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AabbPositionsKHR & setMaxY( float maxY_ ) VULKAN_HPP_NOEXCEPT - { - maxY = maxY_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AabbPositionsKHR & setMaxZ( float maxZ_ ) VULKAN_HPP_NOEXCEPT - { - maxZ = maxZ_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAabbPositionsKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAabbPositionsKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( minX, minY, minZ, maxX, maxY, maxZ ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AabbPositionsKHR const & ) const = default; -#else - bool operator==( AabbPositionsKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( minX == rhs.minX ) && ( minY == rhs.minY ) && ( minZ == rhs.minZ ) && ( maxX == rhs.maxX ) && - ( maxY == rhs.maxY ) && ( maxZ == rhs.maxZ ); -# endif - } - - bool operator!=( AabbPositionsKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float minX = {}; - float minY = {}; - float minZ = {}; - float maxX = {}; - float maxY = {}; - float maxZ = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AabbPositionsKHR ) == sizeof( VkAabbPositionsKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AabbPositionsKHR is not nothrow_move_constructible!" ); - using AabbPositionsNV = AabbPositionsKHR; - - union DeviceOrHostAddressConstKHR - { - using NativeType = VkDeviceOrHostAddressConstKHR; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressConstKHR( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {} ) - : deviceAddress( deviceAddress_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressConstKHR( const void * hostAddress_ ) : hostAddress( hostAddress_ ) {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressConstKHR & - setDeviceAddress( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - deviceAddress = deviceAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressConstKHR & - setHostAddress( const void * hostAddress_ ) VULKAN_HPP_NOEXCEPT - { - hostAddress = hostAddress_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkDeviceOrHostAddressConstKHR const &() const - { - return *reinterpret_cast( this ); - } - - operator VkDeviceOrHostAddressConstKHR &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress; - const void * hostAddress; -#else - VkDeviceAddress deviceAddress; - const void * hostAddress; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct AccelerationStructureGeometryTrianglesDataKHR - { - using NativeType = VkAccelerationStructureGeometryTrianglesDataKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureGeometryTrianglesDataKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR( - VULKAN_HPP_NAMESPACE::Format vertexFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR vertexData_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize vertexStride_ = {}, - uint32_t maxVertex_ = {}, - VULKAN_HPP_NAMESPACE::IndexType indexType_ = VULKAN_HPP_NAMESPACE::IndexType::eUint16, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR indexData_ = {}, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR transformData_ = {} ) VULKAN_HPP_NOEXCEPT - : vertexFormat( vertexFormat_ ) - , vertexData( vertexData_ ) - , vertexStride( vertexStride_ ) - , maxVertex( maxVertex_ ) - , indexType( indexType_ ) - , indexData( indexData_ ) - , transformData( transformData_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR( - AccelerationStructureGeometryTrianglesDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryTrianglesDataKHR( VkAccelerationStructureGeometryTrianglesDataKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureGeometryTrianglesDataKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureGeometryTrianglesDataKHR & - operator=( AccelerationStructureGeometryTrianglesDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryTrianglesDataKHR & - operator=( VkAccelerationStructureGeometryTrianglesDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setVertexFormat( VULKAN_HPP_NAMESPACE::Format vertexFormat_ ) VULKAN_HPP_NOEXCEPT - { - vertexFormat = vertexFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setVertexData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & vertexData_ ) VULKAN_HPP_NOEXCEPT - { - vertexData = vertexData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setVertexStride( VULKAN_HPP_NAMESPACE::DeviceSize vertexStride_ ) VULKAN_HPP_NOEXCEPT - { - vertexStride = vertexStride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setMaxVertex( uint32_t maxVertex_ ) VULKAN_HPP_NOEXCEPT - { - maxVertex = maxVertex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setIndexType( VULKAN_HPP_NAMESPACE::IndexType indexType_ ) VULKAN_HPP_NOEXCEPT - { - indexType = indexType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setIndexData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & indexData_ ) VULKAN_HPP_NOEXCEPT - { - indexData = indexData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryTrianglesDataKHR & - setTransformData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & transformData_ ) VULKAN_HPP_NOEXCEPT - { - transformData = transformData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureGeometryTrianglesDataKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureGeometryTrianglesDataKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, vertexFormat, vertexData, vertexStride, maxVertex, indexType, indexData, transformData ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureGeometryTrianglesDataKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format vertexFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR vertexData = {}; - VULKAN_HPP_NAMESPACE::DeviceSize vertexStride = {}; - uint32_t maxVertex = {}; - VULKAN_HPP_NAMESPACE::IndexType indexType = VULKAN_HPP_NAMESPACE::IndexType::eUint16; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR indexData = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR transformData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryTrianglesDataKHR ) == - sizeof( VkAccelerationStructureGeometryTrianglesDataKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureGeometryTrianglesDataKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureGeometryTrianglesDataKHR; - }; - - struct AccelerationStructureGeometryAabbsDataKHR - { - using NativeType = VkAccelerationStructureGeometryAabbsDataKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureGeometryAabbsDataKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - AccelerationStructureGeometryAabbsDataKHR( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR data_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize stride_ = {} ) VULKAN_HPP_NOEXCEPT - : data( data_ ) - , stride( stride_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryAabbsDataKHR( - AccelerationStructureGeometryAabbsDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryAabbsDataKHR( VkAccelerationStructureGeometryAabbsDataKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureGeometryAabbsDataKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureGeometryAabbsDataKHR & - operator=( AccelerationStructureGeometryAabbsDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryAabbsDataKHR & - operator=( VkAccelerationStructureGeometryAabbsDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryAabbsDataKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryAabbsDataKHR & - setData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & data_ ) VULKAN_HPP_NOEXCEPT - { - data = data_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryAabbsDataKHR & - setStride( VULKAN_HPP_NAMESPACE::DeviceSize stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureGeometryAabbsDataKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureGeometryAabbsDataKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, data, stride ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureGeometryAabbsDataKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR data = {}; - VULKAN_HPP_NAMESPACE::DeviceSize stride = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryAabbsDataKHR ) == - sizeof( VkAccelerationStructureGeometryAabbsDataKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureGeometryAabbsDataKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureGeometryAabbsDataKHR; - }; - - struct AccelerationStructureGeometryInstancesDataKHR - { - using NativeType = VkAccelerationStructureGeometryInstancesDataKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureGeometryInstancesDataKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryInstancesDataKHR( - VULKAN_HPP_NAMESPACE::Bool32 arrayOfPointers_ = {}, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR data_ = {} ) VULKAN_HPP_NOEXCEPT - : arrayOfPointers( arrayOfPointers_ ) - , data( data_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryInstancesDataKHR( - AccelerationStructureGeometryInstancesDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryInstancesDataKHR( VkAccelerationStructureGeometryInstancesDataKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureGeometryInstancesDataKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureGeometryInstancesDataKHR & - operator=( AccelerationStructureGeometryInstancesDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryInstancesDataKHR & - operator=( VkAccelerationStructureGeometryInstancesDataKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryInstancesDataKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryInstancesDataKHR & - setArrayOfPointers( VULKAN_HPP_NAMESPACE::Bool32 arrayOfPointers_ ) VULKAN_HPP_NOEXCEPT - { - arrayOfPointers = arrayOfPointers_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryInstancesDataKHR & - setData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & data_ ) VULKAN_HPP_NOEXCEPT - { - data = data_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureGeometryInstancesDataKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureGeometryInstancesDataKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, arrayOfPointers, data ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureGeometryInstancesDataKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 arrayOfPointers = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR data = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryInstancesDataKHR ) == - sizeof( VkAccelerationStructureGeometryInstancesDataKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureGeometryInstancesDataKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureGeometryInstancesDataKHR; - }; - - union AccelerationStructureGeometryDataKHR - { - using NativeType = VkAccelerationStructureGeometryDataKHR; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryDataKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryTrianglesDataKHR triangles_ = {} ) - : triangles( triangles_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - AccelerationStructureGeometryDataKHR( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryAabbsDataKHR aabbs_ ) - : aabbs( aabbs_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryDataKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryInstancesDataKHR instances_ ) - : instances( instances_ ) - {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryDataKHR & setTriangles( - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryTrianglesDataKHR const & triangles_ ) VULKAN_HPP_NOEXCEPT - { - triangles = triangles_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryDataKHR & - setAabbs( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryAabbsDataKHR const & aabbs_ ) VULKAN_HPP_NOEXCEPT - { - aabbs = aabbs_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryDataKHR & setInstances( - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryInstancesDataKHR const & instances_ ) VULKAN_HPP_NOEXCEPT - { - instances = instances_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkAccelerationStructureGeometryDataKHR const &() const - { - return *reinterpret_cast( this ); - } - - operator VkAccelerationStructureGeometryDataKHR &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryTrianglesDataKHR triangles; - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryAabbsDataKHR aabbs; - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryInstancesDataKHR instances; -#else - VkAccelerationStructureGeometryTrianglesDataKHR triangles; - VkAccelerationStructureGeometryAabbsDataKHR aabbs; - VkAccelerationStructureGeometryInstancesDataKHR instances; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct AccelerationStructureGeometryKHR - { - using NativeType = VkAccelerationStructureGeometryKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAccelerationStructureGeometryKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryKHR( - VULKAN_HPP_NAMESPACE::GeometryTypeKHR geometryType_ = VULKAN_HPP_NAMESPACE::GeometryTypeKHR::eTriangles, - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryDataKHR geometry_ = {}, - VULKAN_HPP_NAMESPACE::GeometryFlagsKHR flags_ = {} ) VULKAN_HPP_NOEXCEPT - : geometryType( geometryType_ ) - , geometry( geometry_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - AccelerationStructureGeometryKHR( AccelerationStructureGeometryKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryKHR( VkAccelerationStructureGeometryKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureGeometryKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureGeometryKHR & - operator=( AccelerationStructureGeometryKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryKHR & operator=( VkAccelerationStructureGeometryKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryKHR & - setGeometryType( VULKAN_HPP_NAMESPACE::GeometryTypeKHR geometryType_ ) VULKAN_HPP_NOEXCEPT - { - geometryType = geometryType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryKHR & - setGeometry( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryDataKHR const & geometry_ ) VULKAN_HPP_NOEXCEPT - { - geometry = geometry_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryKHR & - setFlags( VULKAN_HPP_NAMESPACE::GeometryFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureGeometryKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureGeometryKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, geometryType, geometry, flags ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureGeometryKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::GeometryTypeKHR geometryType = VULKAN_HPP_NAMESPACE::GeometryTypeKHR::eTriangles; - VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryDataKHR geometry = {}; - VULKAN_HPP_NAMESPACE::GeometryFlagsKHR flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR ) == - sizeof( VkAccelerationStructureGeometryKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureGeometryKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureGeometryKHR; - }; - - union DeviceOrHostAddressKHR - { - using NativeType = VkDeviceOrHostAddressKHR; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressKHR( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {} ) - : deviceAddress( deviceAddress_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressKHR( void * hostAddress_ ) : hostAddress( hostAddress_ ) {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressKHR & - setDeviceAddress( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - deviceAddress = deviceAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceOrHostAddressKHR & setHostAddress( void * hostAddress_ ) VULKAN_HPP_NOEXCEPT - { - hostAddress = hostAddress_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkDeviceOrHostAddressKHR const &() const - { - return *reinterpret_cast( this ); - } - - operator VkDeviceOrHostAddressKHR &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress; - void * hostAddress; -#else - VkDeviceAddress deviceAddress; - void * hostAddress; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct AccelerationStructureBuildGeometryInfoKHR - { - using NativeType = VkAccelerationStructureBuildGeometryInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureBuildGeometryInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type_ = - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR::eTopLevel, - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureModeKHR mode_ = - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureModeKHR::eBuild, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR srcAccelerationStructure_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dstAccelerationStructure_ = {}, - uint32_t geometryCount_ = {}, - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * pGeometries_ = {}, - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * const * ppGeometries_ = {}, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR scratchData_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , flags( flags_ ) - , mode( mode_ ) - , srcAccelerationStructure( srcAccelerationStructure_ ) - , dstAccelerationStructure( dstAccelerationStructure_ ) - , geometryCount( geometryCount_ ) - , pGeometries( pGeometries_ ) - , ppGeometries( ppGeometries_ ) - , scratchData( scratchData_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR( - AccelerationStructureBuildGeometryInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureBuildGeometryInfoKHR( VkAccelerationStructureBuildGeometryInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureBuildGeometryInfoKHR( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AccelerationStructureBuildGeometryInfoKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type_, - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsKHR flags_, - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureModeKHR mode_, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR srcAccelerationStructure_, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dstAccelerationStructure_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR> const & geometries_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * const> const & pGeometries_ = {}, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR scratchData_ = {} ) - : type( type_ ) - , flags( flags_ ) - , mode( mode_ ) - , srcAccelerationStructure( srcAccelerationStructure_ ) - , dstAccelerationStructure( dstAccelerationStructure_ ) - , geometryCount( static_cast( !geometries_.empty() ? geometries_.size() : pGeometries_.size() ) ) - , pGeometries( geometries_.data() ) - , ppGeometries( pGeometries_.data() ) - , scratchData( scratchData_ ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( ( !geometries_.empty() + !pGeometries_.empty() ) <= 1 ); -# else - if ( 1 < ( !geometries_.empty() + !pGeometries_.empty() ) ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::AccelerationStructureBuildGeometryInfoKHR::AccelerationStructureBuildGeometryInfoKHR: 1 < ( !geometries_.empty() + !pGeometries_.empty() )" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureBuildGeometryInfoKHR & - operator=( AccelerationStructureBuildGeometryInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureBuildGeometryInfoKHR & - operator=( VkAccelerationStructureBuildGeometryInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setType( VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setMode( VULKAN_HPP_NAMESPACE::BuildAccelerationStructureModeKHR mode_ ) VULKAN_HPP_NOEXCEPT - { - mode = mode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & setSrcAccelerationStructure( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR srcAccelerationStructure_ ) VULKAN_HPP_NOEXCEPT - { - srcAccelerationStructure = srcAccelerationStructure_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & setDstAccelerationStructure( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dstAccelerationStructure_ ) VULKAN_HPP_NOEXCEPT - { - dstAccelerationStructure = dstAccelerationStructure_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setGeometryCount( uint32_t geometryCount_ ) VULKAN_HPP_NOEXCEPT - { - geometryCount = geometryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setPGeometries( const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * pGeometries_ ) VULKAN_HPP_NOEXCEPT - { - pGeometries = pGeometries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AccelerationStructureBuildGeometryInfoKHR & setGeometries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR> const & geometries_ ) VULKAN_HPP_NOEXCEPT - { - geometryCount = static_cast( geometries_.size() ); - pGeometries = geometries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & setPpGeometries( - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * const * ppGeometries_ ) VULKAN_HPP_NOEXCEPT - { - ppGeometries = ppGeometries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AccelerationStructureBuildGeometryInfoKHR & setPGeometries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * const> const & pGeometries_ ) VULKAN_HPP_NOEXCEPT - { - geometryCount = static_cast( pGeometries_.size() ); - ppGeometries = pGeometries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildGeometryInfoKHR & - setScratchData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR const & scratchData_ ) VULKAN_HPP_NOEXCEPT - { - scratchData = scratchData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureBuildGeometryInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureBuildGeometryInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - type, - flags, - mode, - srcAccelerationStructure, - dstAccelerationStructure, - geometryCount, - pGeometries, - ppGeometries, - scratchData ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureBuildGeometryInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type = - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR::eTopLevel; - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureModeKHR mode = - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureModeKHR::eBuild; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR srcAccelerationStructure = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dstAccelerationStructure = {}; - uint32_t geometryCount = {}; - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * pGeometries = {}; - const VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR * const * ppGeometries = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR scratchData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR ) == - sizeof( VkAccelerationStructureBuildGeometryInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureBuildGeometryInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureBuildGeometryInfoKHR; - }; - - struct AccelerationStructureBuildRangeInfoKHR - { - using NativeType = VkAccelerationStructureBuildRangeInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureBuildRangeInfoKHR( uint32_t primitiveCount_ = {}, - uint32_t primitiveOffset_ = {}, - uint32_t firstVertex_ = {}, - uint32_t transformOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : primitiveCount( primitiveCount_ ) - , primitiveOffset( primitiveOffset_ ) - , firstVertex( firstVertex_ ) - , transformOffset( transformOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureBuildRangeInfoKHR( AccelerationStructureBuildRangeInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureBuildRangeInfoKHR( VkAccelerationStructureBuildRangeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureBuildRangeInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureBuildRangeInfoKHR & - operator=( AccelerationStructureBuildRangeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureBuildRangeInfoKHR & - operator=( VkAccelerationStructureBuildRangeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildRangeInfoKHR & - setPrimitiveCount( uint32_t primitiveCount_ ) VULKAN_HPP_NOEXCEPT - { - primitiveCount = primitiveCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildRangeInfoKHR & - setPrimitiveOffset( uint32_t primitiveOffset_ ) VULKAN_HPP_NOEXCEPT - { - primitiveOffset = primitiveOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildRangeInfoKHR & - setFirstVertex( uint32_t firstVertex_ ) VULKAN_HPP_NOEXCEPT - { - firstVertex = firstVertex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildRangeInfoKHR & - setTransformOffset( uint32_t transformOffset_ ) VULKAN_HPP_NOEXCEPT - { - transformOffset = transformOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureBuildRangeInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureBuildRangeInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( primitiveCount, primitiveOffset, firstVertex, transformOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureBuildRangeInfoKHR const & ) const = default; -#else - bool operator==( AccelerationStructureBuildRangeInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( primitiveCount == rhs.primitiveCount ) && ( primitiveOffset == rhs.primitiveOffset ) && - ( firstVertex == rhs.firstVertex ) && ( transformOffset == rhs.transformOffset ); -# endif - } - - bool operator!=( AccelerationStructureBuildRangeInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t primitiveCount = {}; - uint32_t primitiveOffset = {}; - uint32_t firstVertex = {}; - uint32_t transformOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR ) == - sizeof( VkAccelerationStructureBuildRangeInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureBuildRangeInfoKHR is not nothrow_move_constructible!" ); - - struct AccelerationStructureBuildSizesInfoKHR - { - using NativeType = VkAccelerationStructureBuildSizesInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureBuildSizesInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureBuildSizesInfoKHR( - VULKAN_HPP_NAMESPACE::DeviceSize accelerationStructureSize_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize updateScratchSize_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize buildScratchSize_ = {} ) VULKAN_HPP_NOEXCEPT - : accelerationStructureSize( accelerationStructureSize_ ) - , updateScratchSize( updateScratchSize_ ) - , buildScratchSize( buildScratchSize_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureBuildSizesInfoKHR( AccelerationStructureBuildSizesInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureBuildSizesInfoKHR( VkAccelerationStructureBuildSizesInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureBuildSizesInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureBuildSizesInfoKHR & - operator=( AccelerationStructureBuildSizesInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureBuildSizesInfoKHR & - operator=( VkAccelerationStructureBuildSizesInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildSizesInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildSizesInfoKHR & - setAccelerationStructureSize( VULKAN_HPP_NAMESPACE::DeviceSize accelerationStructureSize_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureSize = accelerationStructureSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildSizesInfoKHR & - setUpdateScratchSize( VULKAN_HPP_NAMESPACE::DeviceSize updateScratchSize_ ) VULKAN_HPP_NOEXCEPT - { - updateScratchSize = updateScratchSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureBuildSizesInfoKHR & - setBuildScratchSize( VULKAN_HPP_NAMESPACE::DeviceSize buildScratchSize_ ) VULKAN_HPP_NOEXCEPT - { - buildScratchSize = buildScratchSize_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureBuildSizesInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureBuildSizesInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, accelerationStructureSize, updateScratchSize, buildScratchSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureBuildSizesInfoKHR const & ) const = default; -#else - bool operator==( AccelerationStructureBuildSizesInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( accelerationStructureSize == rhs.accelerationStructureSize ) && - ( updateScratchSize == rhs.updateScratchSize ) && ( buildScratchSize == rhs.buildScratchSize ); -# endif - } - - bool operator!=( AccelerationStructureBuildSizesInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureBuildSizesInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize accelerationStructureSize = {}; - VULKAN_HPP_NAMESPACE::DeviceSize updateScratchSize = {}; - VULKAN_HPP_NAMESPACE::DeviceSize buildScratchSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR ) == - sizeof( VkAccelerationStructureBuildSizesInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureBuildSizesInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureBuildSizesInfoKHR; - }; - - struct AccelerationStructureCreateInfoKHR - { - using NativeType = VkAccelerationStructureCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AccelerationStructureCreateInfoKHR( VULKAN_HPP_NAMESPACE::AccelerationStructureCreateFlagsKHR createFlags_ = {}, - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type_ = - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR::eTopLevel, - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {} ) VULKAN_HPP_NOEXCEPT - : createFlags( createFlags_ ) - , buffer( buffer_ ) - , offset( offset_ ) - , size( size_ ) - , type( type_ ) - , deviceAddress( deviceAddress_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureCreateInfoKHR( AccelerationStructureCreateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureCreateInfoKHR( VkAccelerationStructureCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureCreateInfoKHR & - operator=( AccelerationStructureCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureCreateInfoKHR & - operator=( VkAccelerationStructureCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & - setCreateFlags( VULKAN_HPP_NAMESPACE::AccelerationStructureCreateFlagsKHR createFlags_ ) VULKAN_HPP_NOEXCEPT - { - createFlags = createFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & - setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & - setType( VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoKHR & - setDeviceAddress( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - deviceAddress = deviceAddress_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, createFlags, buffer, offset, size, type, deviceAddress ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureCreateInfoKHR const & ) const = default; -#else - bool operator==( AccelerationStructureCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( createFlags == rhs.createFlags ) && - ( buffer == rhs.buffer ) && ( offset == rhs.offset ) && ( size == rhs.size ) && ( type == rhs.type ) && - ( deviceAddress == rhs.deviceAddress ); -# endif - } - - bool operator!=( AccelerationStructureCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureCreateFlagsKHR createFlags = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR type = - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeKHR::eTopLevel; - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR ) == - sizeof( VkAccelerationStructureCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureCreateInfoKHR; - }; - - struct GeometryTrianglesNV - { - using NativeType = VkGeometryTrianglesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eGeometryTrianglesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - GeometryTrianglesNV( VULKAN_HPP_NAMESPACE::Buffer vertexData_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize vertexOffset_ = {}, - uint32_t vertexCount_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize vertexStride_ = {}, - VULKAN_HPP_NAMESPACE::Format vertexFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Buffer indexData_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize indexOffset_ = {}, - uint32_t indexCount_ = {}, - VULKAN_HPP_NAMESPACE::IndexType indexType_ = VULKAN_HPP_NAMESPACE::IndexType::eUint16, - VULKAN_HPP_NAMESPACE::Buffer transformData_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize transformOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : vertexData( vertexData_ ) - , vertexOffset( vertexOffset_ ) - , vertexCount( vertexCount_ ) - , vertexStride( vertexStride_ ) - , vertexFormat( vertexFormat_ ) - , indexData( indexData_ ) - , indexOffset( indexOffset_ ) - , indexCount( indexCount_ ) - , indexType( indexType_ ) - , transformData( transformData_ ) - , transformOffset( transformOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR GeometryTrianglesNV( GeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryTrianglesNV( VkGeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : GeometryTrianglesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GeometryTrianglesNV & operator=( GeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryTrianglesNV & operator=( VkGeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setVertexData( VULKAN_HPP_NAMESPACE::Buffer vertexData_ ) VULKAN_HPP_NOEXCEPT - { - vertexData = vertexData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setVertexOffset( VULKAN_HPP_NAMESPACE::DeviceSize vertexOffset_ ) VULKAN_HPP_NOEXCEPT - { - vertexOffset = vertexOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & setVertexCount( uint32_t vertexCount_ ) VULKAN_HPP_NOEXCEPT - { - vertexCount = vertexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setVertexStride( VULKAN_HPP_NAMESPACE::DeviceSize vertexStride_ ) VULKAN_HPP_NOEXCEPT - { - vertexStride = vertexStride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setVertexFormat( VULKAN_HPP_NAMESPACE::Format vertexFormat_ ) VULKAN_HPP_NOEXCEPT - { - vertexFormat = vertexFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setIndexData( VULKAN_HPP_NAMESPACE::Buffer indexData_ ) VULKAN_HPP_NOEXCEPT - { - indexData = indexData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setIndexOffset( VULKAN_HPP_NAMESPACE::DeviceSize indexOffset_ ) VULKAN_HPP_NOEXCEPT - { - indexOffset = indexOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & setIndexCount( uint32_t indexCount_ ) VULKAN_HPP_NOEXCEPT - { - indexCount = indexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setIndexType( VULKAN_HPP_NAMESPACE::IndexType indexType_ ) VULKAN_HPP_NOEXCEPT - { - indexType = indexType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setTransformData( VULKAN_HPP_NAMESPACE::Buffer transformData_ ) VULKAN_HPP_NOEXCEPT - { - transformData = transformData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryTrianglesNV & - setTransformOffset( VULKAN_HPP_NAMESPACE::DeviceSize transformOffset_ ) VULKAN_HPP_NOEXCEPT - { - transformOffset = transformOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGeometryTrianglesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGeometryTrianglesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - vertexData, - vertexOffset, - vertexCount, - vertexStride, - vertexFormat, - indexData, - indexOffset, - indexCount, - indexType, - transformData, - transformOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GeometryTrianglesNV const & ) const = default; -#else - bool operator==( GeometryTrianglesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( vertexData == rhs.vertexData ) && - ( vertexOffset == rhs.vertexOffset ) && ( vertexCount == rhs.vertexCount ) && - ( vertexStride == rhs.vertexStride ) && ( vertexFormat == rhs.vertexFormat ) && - ( indexData == rhs.indexData ) && ( indexOffset == rhs.indexOffset ) && ( indexCount == rhs.indexCount ) && - ( indexType == rhs.indexType ) && ( transformData == rhs.transformData ) && - ( transformOffset == rhs.transformOffset ); -# endif - } - - bool operator!=( GeometryTrianglesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeometryTrianglesNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer vertexData = {}; - VULKAN_HPP_NAMESPACE::DeviceSize vertexOffset = {}; - uint32_t vertexCount = {}; - VULKAN_HPP_NAMESPACE::DeviceSize vertexStride = {}; - VULKAN_HPP_NAMESPACE::Format vertexFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::Buffer indexData = {}; - VULKAN_HPP_NAMESPACE::DeviceSize indexOffset = {}; - uint32_t indexCount = {}; - VULKAN_HPP_NAMESPACE::IndexType indexType = VULKAN_HPP_NAMESPACE::IndexType::eUint16; - VULKAN_HPP_NAMESPACE::Buffer transformData = {}; - VULKAN_HPP_NAMESPACE::DeviceSize transformOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GeometryTrianglesNV ) == sizeof( VkGeometryTrianglesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "GeometryTrianglesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GeometryTrianglesNV; - }; - - struct GeometryAABBNV - { - using NativeType = VkGeometryAABBNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eGeometryAabbNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GeometryAABBNV( VULKAN_HPP_NAMESPACE::Buffer aabbData_ = {}, - uint32_t numAABBs_ = {}, - uint32_t stride_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {} ) VULKAN_HPP_NOEXCEPT - : aabbData( aabbData_ ) - , numAABBs( numAABBs_ ) - , stride( stride_ ) - , offset( offset_ ) - {} - - VULKAN_HPP_CONSTEXPR GeometryAABBNV( GeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryAABBNV( VkGeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT - : GeometryAABBNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GeometryAABBNV & operator=( GeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryAABBNV & operator=( VkGeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GeometryAABBNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryAABBNV & setAabbData( VULKAN_HPP_NAMESPACE::Buffer aabbData_ ) VULKAN_HPP_NOEXCEPT - { - aabbData = aabbData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryAABBNV & setNumAABBs( uint32_t numAABBs_ ) VULKAN_HPP_NOEXCEPT - { - numAABBs = numAABBs_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryAABBNV & setStride( uint32_t stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryAABBNV & setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGeometryAABBNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGeometryAABBNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, aabbData, numAABBs, stride, offset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GeometryAABBNV const & ) const = default; -#else - bool operator==( GeometryAABBNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( aabbData == rhs.aabbData ) && - ( numAABBs == rhs.numAABBs ) && ( stride == rhs.stride ) && ( offset == rhs.offset ); -# endif - } - - bool operator!=( GeometryAABBNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeometryAabbNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer aabbData = {}; - uint32_t numAABBs = {}; - uint32_t stride = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GeometryAABBNV ) == sizeof( VkGeometryAABBNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "GeometryAABBNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GeometryAABBNV; - }; - - struct GeometryDataNV - { - using NativeType = VkGeometryDataNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GeometryDataNV( VULKAN_HPP_NAMESPACE::GeometryTrianglesNV triangles_ = {}, - VULKAN_HPP_NAMESPACE::GeometryAABBNV aabbs_ = {} ) VULKAN_HPP_NOEXCEPT - : triangles( triangles_ ) - , aabbs( aabbs_ ) - {} - - VULKAN_HPP_CONSTEXPR GeometryDataNV( GeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryDataNV( VkGeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - : GeometryDataNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GeometryDataNV & operator=( GeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryDataNV & operator=( VkGeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GeometryDataNV & - setTriangles( VULKAN_HPP_NAMESPACE::GeometryTrianglesNV const & triangles_ ) VULKAN_HPP_NOEXCEPT - { - triangles = triangles_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryDataNV & - setAabbs( VULKAN_HPP_NAMESPACE::GeometryAABBNV const & aabbs_ ) VULKAN_HPP_NOEXCEPT - { - aabbs = aabbs_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGeometryDataNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGeometryDataNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( triangles, aabbs ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GeometryDataNV const & ) const = default; -#else - bool operator==( GeometryDataNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( triangles == rhs.triangles ) && ( aabbs == rhs.aabbs ); -# endif - } - - bool operator!=( GeometryDataNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::GeometryTrianglesNV triangles = {}; - VULKAN_HPP_NAMESPACE::GeometryAABBNV aabbs = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GeometryDataNV ) == sizeof( VkGeometryDataNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "GeometryDataNV is not nothrow_move_constructible!" ); - - struct GeometryNV - { - using NativeType = VkGeometryNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eGeometryNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GeometryNV( - VULKAN_HPP_NAMESPACE::GeometryTypeKHR geometryType_ = VULKAN_HPP_NAMESPACE::GeometryTypeKHR::eTriangles, - VULKAN_HPP_NAMESPACE::GeometryDataNV geometry_ = {}, - VULKAN_HPP_NAMESPACE::GeometryFlagsKHR flags_ = {} ) VULKAN_HPP_NOEXCEPT - : geometryType( geometryType_ ) - , geometry( geometry_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR GeometryNV( GeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryNV( VkGeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT - : GeometryNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GeometryNV & operator=( GeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeometryNV & operator=( VkGeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GeometryNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryNV & - setGeometryType( VULKAN_HPP_NAMESPACE::GeometryTypeKHR geometryType_ ) VULKAN_HPP_NOEXCEPT - { - geometryType = geometryType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryNV & - setGeometry( VULKAN_HPP_NAMESPACE::GeometryDataNV const & geometry_ ) VULKAN_HPP_NOEXCEPT - { - geometry = geometry_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeometryNV & setFlags( VULKAN_HPP_NAMESPACE::GeometryFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGeometryNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGeometryNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, geometryType, geometry, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GeometryNV const & ) const = default; -#else - bool operator==( GeometryNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( geometryType == rhs.geometryType ) && - ( geometry == rhs.geometry ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( GeometryNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeometryNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::GeometryTypeKHR geometryType = VULKAN_HPP_NAMESPACE::GeometryTypeKHR::eTriangles; - VULKAN_HPP_NAMESPACE::GeometryDataNV geometry = {}; - VULKAN_HPP_NAMESPACE::GeometryFlagsKHR flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GeometryNV ) == sizeof( VkGeometryNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "GeometryNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GeometryNV; - }; - - struct AccelerationStructureInfoNV - { - using NativeType = VkAccelerationStructureInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAccelerationStructureInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AccelerationStructureInfoNV( VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type_ = {}, - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags_ = {}, - uint32_t instanceCount_ = {}, - uint32_t geometryCount_ = {}, - const VULKAN_HPP_NAMESPACE::GeometryNV * pGeometries_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , flags( flags_ ) - , instanceCount( instanceCount_ ) - , geometryCount( geometryCount_ ) - , pGeometries( pGeometries_ ) - {} - - VULKAN_HPP_CONSTEXPR - AccelerationStructureInfoNV( AccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureInfoNV( VkAccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureInfoNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AccelerationStructureInfoNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type_, - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags_, - uint32_t instanceCount_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & geometries_ ) - : type( type_ ) - , flags( flags_ ) - , instanceCount( instanceCount_ ) - , geometryCount( static_cast( geometries_.size() ) ) - , pGeometries( geometries_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureInfoNV & operator=( AccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureInfoNV & operator=( VkAccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInfoNV & - setType( VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInfoNV & - setInstanceCount( uint32_t instanceCount_ ) VULKAN_HPP_NOEXCEPT - { - instanceCount = instanceCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInfoNV & - setGeometryCount( uint32_t geometryCount_ ) VULKAN_HPP_NOEXCEPT - { - geometryCount = geometryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInfoNV & - setPGeometries( const VULKAN_HPP_NAMESPACE::GeometryNV * pGeometries_ ) VULKAN_HPP_NOEXCEPT - { - pGeometries = pGeometries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AccelerationStructureInfoNV & setGeometries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & geometries_ ) - VULKAN_HPP_NOEXCEPT - { - geometryCount = static_cast( geometries_.size() ); - pGeometries = geometries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, type, flags, instanceCount, geometryCount, pGeometries ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureInfoNV const & ) const = default; -#else - bool operator==( AccelerationStructureInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( type == rhs.type ) && ( flags == rhs.flags ) && - ( instanceCount == rhs.instanceCount ) && ( geometryCount == rhs.geometryCount ) && - ( pGeometries == rhs.pGeometries ); -# endif - } - - bool operator!=( AccelerationStructureInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type = {}; - VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags = {}; - uint32_t instanceCount = {}; - uint32_t geometryCount = {}; - const VULKAN_HPP_NAMESPACE::GeometryNV * pGeometries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV ) == - sizeof( VkAccelerationStructureInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureInfoNV; - }; - - struct AccelerationStructureCreateInfoNV - { - using NativeType = VkAccelerationStructureCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureCreateInfoNV( - VULKAN_HPP_NAMESPACE::DeviceSize compactedSize_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV info_ = {} ) VULKAN_HPP_NOEXCEPT - : compactedSize( compactedSize_ ) - , info( info_ ) - {} - - VULKAN_HPP_CONSTEXPR - AccelerationStructureCreateInfoNV( AccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureCreateInfoNV( VkAccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureCreateInfoNV & - operator=( AccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureCreateInfoNV & operator=( VkAccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoNV & - setCompactedSize( VULKAN_HPP_NAMESPACE::DeviceSize compactedSize_ ) VULKAN_HPP_NOEXCEPT - { - compactedSize = compactedSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureCreateInfoNV & - setInfo( VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV const & info_ ) VULKAN_HPP_NOEXCEPT - { - info = info_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, compactedSize, info ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureCreateInfoNV const & ) const = default; -#else - bool operator==( AccelerationStructureCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( compactedSize == rhs.compactedSize ) && - ( info == rhs.info ); -# endif - } - - bool operator!=( AccelerationStructureCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize compactedSize = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV info = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV ) == - sizeof( VkAccelerationStructureCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureCreateInfoNV; - }; - - struct AccelerationStructureDeviceAddressInfoKHR - { - using NativeType = VkAccelerationStructureDeviceAddressInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureDeviceAddressInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureDeviceAddressInfoKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure_ = {} ) VULKAN_HPP_NOEXCEPT - : accelerationStructure( accelerationStructure_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureDeviceAddressInfoKHR( - AccelerationStructureDeviceAddressInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureDeviceAddressInfoKHR( VkAccelerationStructureDeviceAddressInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureDeviceAddressInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureDeviceAddressInfoKHR & - operator=( AccelerationStructureDeviceAddressInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureDeviceAddressInfoKHR & - operator=( VkAccelerationStructureDeviceAddressInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureDeviceAddressInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureDeviceAddressInfoKHR & setAccelerationStructure( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructure = accelerationStructure_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureDeviceAddressInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureDeviceAddressInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, accelerationStructure ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureDeviceAddressInfoKHR const & ) const = default; -#else - bool operator==( AccelerationStructureDeviceAddressInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( accelerationStructure == rhs.accelerationStructure ); -# endif - } - - bool operator!=( AccelerationStructureDeviceAddressInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureDeviceAddressInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR accelerationStructure = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureDeviceAddressInfoKHR ) == - sizeof( VkAccelerationStructureDeviceAddressInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureDeviceAddressInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureDeviceAddressInfoKHR; - }; - - struct AccelerationStructureGeometryMotionTrianglesDataNV - { - using NativeType = VkAccelerationStructureGeometryMotionTrianglesDataNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureGeometryMotionTrianglesDataNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryMotionTrianglesDataNV( - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR vertexData_ = {} ) VULKAN_HPP_NOEXCEPT - : vertexData( vertexData_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryMotionTrianglesDataNV( - AccelerationStructureGeometryMotionTrianglesDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryMotionTrianglesDataNV( - VkAccelerationStructureGeometryMotionTrianglesDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureGeometryMotionTrianglesDataNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureGeometryMotionTrianglesDataNV & - operator=( AccelerationStructureGeometryMotionTrianglesDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureGeometryMotionTrianglesDataNV & - operator=( VkAccelerationStructureGeometryMotionTrianglesDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryMotionTrianglesDataNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureGeometryMotionTrianglesDataNV & - setVertexData( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & vertexData_ ) VULKAN_HPP_NOEXCEPT - { - vertexData = vertexData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureGeometryMotionTrianglesDataNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureGeometryMotionTrianglesDataNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, vertexData ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureGeometryMotionTrianglesDataNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR vertexData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryMotionTrianglesDataNV ) == - sizeof( VkAccelerationStructureGeometryMotionTrianglesDataNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureGeometryMotionTrianglesDataNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureGeometryMotionTrianglesDataNV; - }; - - struct TransformMatrixKHR - { - using NativeType = VkTransformMatrixKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - TransformMatrixKHR( std::array, 3> const & matrix_ = {} ) VULKAN_HPP_NOEXCEPT - : matrix( matrix_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 TransformMatrixKHR( TransformMatrixKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TransformMatrixKHR( VkTransformMatrixKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : TransformMatrixKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - TransformMatrixKHR & operator=( TransformMatrixKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TransformMatrixKHR & operator=( VkTransformMatrixKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 TransformMatrixKHR & - setMatrix( std::array, 3> matrix_ ) VULKAN_HPP_NOEXCEPT - { - matrix = matrix_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkTransformMatrixKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkTransformMatrixKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( matrix ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( TransformMatrixKHR const & ) const = default; -#else - bool operator==( TransformMatrixKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( matrix == rhs.matrix ); -# endif - } - - bool operator!=( TransformMatrixKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ArrayWrapper2D matrix = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::TransformMatrixKHR ) == sizeof( VkTransformMatrixKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "TransformMatrixKHR is not nothrow_move_constructible!" ); - using TransformMatrixNV = TransformMatrixKHR; - - struct AccelerationStructureInstanceKHR - { - using NativeType = VkAccelerationStructureInstanceKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - AccelerationStructureInstanceKHR( VULKAN_HPP_NAMESPACE::TransformMatrixKHR transform_ = {}, - uint32_t instanceCustomIndex_ = {}, - uint32_t mask_ = {}, - uint32_t instanceShaderBindingTableRecordOffset_ = {}, - VULKAN_HPP_NAMESPACE::GeometryInstanceFlagsKHR flags_ = {}, - uint64_t accelerationStructureReference_ = {} ) VULKAN_HPP_NOEXCEPT - : transform( transform_ ) - , instanceCustomIndex( instanceCustomIndex_ ) - , mask( mask_ ) - , instanceShaderBindingTableRecordOffset( instanceShaderBindingTableRecordOffset_ ) - , flags( flags_ ) - , accelerationStructureReference( accelerationStructureReference_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - AccelerationStructureInstanceKHR( AccelerationStructureInstanceKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureInstanceKHR( VkAccelerationStructureInstanceKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureInstanceKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureInstanceKHR & - operator=( AccelerationStructureInstanceKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureInstanceKHR & operator=( VkAccelerationStructureInstanceKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInstanceKHR & - setTransform( VULKAN_HPP_NAMESPACE::TransformMatrixKHR const & transform_ ) VULKAN_HPP_NOEXCEPT - { - transform = transform_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInstanceKHR & - setInstanceCustomIndex( uint32_t instanceCustomIndex_ ) VULKAN_HPP_NOEXCEPT - { - instanceCustomIndex = instanceCustomIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInstanceKHR & setMask( uint32_t mask_ ) VULKAN_HPP_NOEXCEPT - { - mask = mask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInstanceKHR & - setInstanceShaderBindingTableRecordOffset( uint32_t instanceShaderBindingTableRecordOffset_ ) VULKAN_HPP_NOEXCEPT - { - instanceShaderBindingTableRecordOffset = instanceShaderBindingTableRecordOffset_; - return *this; - } - - AccelerationStructureInstanceKHR & - setFlags( VULKAN_HPP_NAMESPACE::GeometryInstanceFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = *reinterpret_cast( &flags_ ); - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureInstanceKHR & - setAccelerationStructureReference( uint64_t accelerationStructureReference_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureReference = accelerationStructureReference_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureInstanceKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureInstanceKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( transform, - instanceCustomIndex, - mask, - instanceShaderBindingTableRecordOffset, - flags, - accelerationStructureReference ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureInstanceKHR const & ) const = default; -#else - bool operator==( AccelerationStructureInstanceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( transform == rhs.transform ) && ( instanceCustomIndex == rhs.instanceCustomIndex ) && - ( mask == rhs.mask ) && - ( instanceShaderBindingTableRecordOffset == rhs.instanceShaderBindingTableRecordOffset ) && - ( flags == rhs.flags ) && ( accelerationStructureReference == rhs.accelerationStructureReference ); -# endif - } - - bool operator!=( AccelerationStructureInstanceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::TransformMatrixKHR transform = {}; - uint32_t instanceCustomIndex : 24; - uint32_t mask : 8; - uint32_t instanceShaderBindingTableRecordOffset : 24; - VkGeometryInstanceFlagsKHR flags : 8; - uint64_t accelerationStructureReference = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureInstanceKHR ) == - sizeof( VkAccelerationStructureInstanceKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureInstanceKHR is not nothrow_move_constructible!" ); - using AccelerationStructureInstanceNV = AccelerationStructureInstanceKHR; - - struct AccelerationStructureMatrixMotionInstanceNV - { - using NativeType = VkAccelerationStructureMatrixMotionInstanceNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - AccelerationStructureMatrixMotionInstanceNV( VULKAN_HPP_NAMESPACE::TransformMatrixKHR transformT0_ = {}, - VULKAN_HPP_NAMESPACE::TransformMatrixKHR transformT1_ = {}, - uint32_t instanceCustomIndex_ = {}, - uint32_t mask_ = {}, - uint32_t instanceShaderBindingTableRecordOffset_ = {}, - VULKAN_HPP_NAMESPACE::GeometryInstanceFlagsKHR flags_ = {}, - uint64_t accelerationStructureReference_ = {} ) VULKAN_HPP_NOEXCEPT - : transformT0( transformT0_ ) - , transformT1( transformT1_ ) - , instanceCustomIndex( instanceCustomIndex_ ) - , mask( mask_ ) - , instanceShaderBindingTableRecordOffset( instanceShaderBindingTableRecordOffset_ ) - , flags( flags_ ) - , accelerationStructureReference( accelerationStructureReference_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV( - AccelerationStructureMatrixMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMatrixMotionInstanceNV( VkAccelerationStructureMatrixMotionInstanceNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureMatrixMotionInstanceNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureMatrixMotionInstanceNV & - operator=( AccelerationStructureMatrixMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMatrixMotionInstanceNV & - operator=( VkAccelerationStructureMatrixMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV & - setTransformT0( VULKAN_HPP_NAMESPACE::TransformMatrixKHR const & transformT0_ ) VULKAN_HPP_NOEXCEPT - { - transformT0 = transformT0_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV & - setTransformT1( VULKAN_HPP_NAMESPACE::TransformMatrixKHR const & transformT1_ ) VULKAN_HPP_NOEXCEPT - { - transformT1 = transformT1_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV & - setInstanceCustomIndex( uint32_t instanceCustomIndex_ ) VULKAN_HPP_NOEXCEPT - { - instanceCustomIndex = instanceCustomIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV & setMask( uint32_t mask_ ) VULKAN_HPP_NOEXCEPT - { - mask = mask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV & - setInstanceShaderBindingTableRecordOffset( uint32_t instanceShaderBindingTableRecordOffset_ ) VULKAN_HPP_NOEXCEPT - { - instanceShaderBindingTableRecordOffset = instanceShaderBindingTableRecordOffset_; - return *this; - } - - AccelerationStructureMatrixMotionInstanceNV & - setFlags( VULKAN_HPP_NAMESPACE::GeometryInstanceFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = *reinterpret_cast( &flags_ ); - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMatrixMotionInstanceNV & - setAccelerationStructureReference( uint64_t accelerationStructureReference_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureReference = accelerationStructureReference_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureMatrixMotionInstanceNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureMatrixMotionInstanceNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( transformT0, - transformT1, - instanceCustomIndex, - mask, - instanceShaderBindingTableRecordOffset, - flags, - accelerationStructureReference ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureMatrixMotionInstanceNV const & ) const = default; -#else - bool operator==( AccelerationStructureMatrixMotionInstanceNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( transformT0 == rhs.transformT0 ) && ( transformT1 == rhs.transformT1 ) && - ( instanceCustomIndex == rhs.instanceCustomIndex ) && ( mask == rhs.mask ) && - ( instanceShaderBindingTableRecordOffset == rhs.instanceShaderBindingTableRecordOffset ) && - ( flags == rhs.flags ) && ( accelerationStructureReference == rhs.accelerationStructureReference ); -# endif - } - - bool operator!=( AccelerationStructureMatrixMotionInstanceNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::TransformMatrixKHR transformT0 = {}; - VULKAN_HPP_NAMESPACE::TransformMatrixKHR transformT1 = {}; - uint32_t instanceCustomIndex : 24; - uint32_t mask : 8; - uint32_t instanceShaderBindingTableRecordOffset : 24; - VkGeometryInstanceFlagsKHR flags : 8; - uint64_t accelerationStructureReference = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureMatrixMotionInstanceNV ) == - sizeof( VkAccelerationStructureMatrixMotionInstanceNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureMatrixMotionInstanceNV is not nothrow_move_constructible!" ); - - struct AccelerationStructureMemoryRequirementsInfoNV - { - using NativeType = VkAccelerationStructureMemoryRequirementsInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureMemoryRequirementsInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureMemoryRequirementsInfoNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV type_ = - VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV::eObject, - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , accelerationStructure( accelerationStructure_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureMemoryRequirementsInfoNV( - AccelerationStructureMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMemoryRequirementsInfoNV( VkAccelerationStructureMemoryRequirementsInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureMemoryRequirementsInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureMemoryRequirementsInfoNV & - operator=( AccelerationStructureMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMemoryRequirementsInfoNV & - operator=( VkAccelerationStructureMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMemoryRequirementsInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMemoryRequirementsInfoNV & - setType( VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMemoryRequirementsInfoNV & setAccelerationStructure( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructure = accelerationStructure_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureMemoryRequirementsInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureMemoryRequirementsInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, type, accelerationStructure ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureMemoryRequirementsInfoNV const & ) const = default; -#else - bool operator==( AccelerationStructureMemoryRequirementsInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( type == rhs.type ) && - ( accelerationStructure == rhs.accelerationStructure ); -# endif - } - - bool operator!=( AccelerationStructureMemoryRequirementsInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureMemoryRequirementsInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV type = - VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV::eObject; - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV ) == - sizeof( VkAccelerationStructureMemoryRequirementsInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureMemoryRequirementsInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureMemoryRequirementsInfoNV; - }; - - struct AccelerationStructureMotionInfoNV - { - using NativeType = VkAccelerationStructureMotionInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureMotionInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureMotionInfoNV( - uint32_t maxInstances_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInfoFlagsNV flags_ = {} ) VULKAN_HPP_NOEXCEPT - : maxInstances( maxInstances_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - AccelerationStructureMotionInfoNV( AccelerationStructureMotionInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMotionInfoNV( VkAccelerationStructureMotionInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureMotionInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureMotionInfoNV & - operator=( AccelerationStructureMotionInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMotionInfoNV & operator=( VkAccelerationStructureMotionInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInfoNV & - setMaxInstances( uint32_t maxInstances_ ) VULKAN_HPP_NOEXCEPT - { - maxInstances = maxInstances_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInfoFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureMotionInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureMotionInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxInstances, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureMotionInfoNV const & ) const = default; -#else - bool operator==( AccelerationStructureMotionInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxInstances == rhs.maxInstances ) && - ( flags == rhs.flags ); -# endif - } - - bool operator!=( AccelerationStructureMotionInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureMotionInfoNV; - const void * pNext = {}; - uint32_t maxInstances = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInfoFlagsNV flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInfoNV ) == - sizeof( VkAccelerationStructureMotionInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureMotionInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureMotionInfoNV; - }; - - struct SRTDataNV - { - using NativeType = VkSRTDataNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SRTDataNV( float sx_ = {}, - float a_ = {}, - float b_ = {}, - float pvx_ = {}, - float sy_ = {}, - float c_ = {}, - float pvy_ = {}, - float sz_ = {}, - float pvz_ = {}, - float qx_ = {}, - float qy_ = {}, - float qz_ = {}, - float qw_ = {}, - float tx_ = {}, - float ty_ = {}, - float tz_ = {} ) VULKAN_HPP_NOEXCEPT - : sx( sx_ ) - , a( a_ ) - , b( b_ ) - , pvx( pvx_ ) - , sy( sy_ ) - , c( c_ ) - , pvy( pvy_ ) - , sz( sz_ ) - , pvz( pvz_ ) - , qx( qx_ ) - , qy( qy_ ) - , qz( qz_ ) - , qw( qw_ ) - , tx( tx_ ) - , ty( ty_ ) - , tz( tz_ ) - {} - - VULKAN_HPP_CONSTEXPR SRTDataNV( SRTDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SRTDataNV( VkSRTDataNV const & rhs ) VULKAN_HPP_NOEXCEPT : SRTDataNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SRTDataNV & operator=( SRTDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SRTDataNV & operator=( VkSRTDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setSx( float sx_ ) VULKAN_HPP_NOEXCEPT - { - sx = sx_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setA( float a_ ) VULKAN_HPP_NOEXCEPT - { - a = a_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setB( float b_ ) VULKAN_HPP_NOEXCEPT - { - b = b_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setPvx( float pvx_ ) VULKAN_HPP_NOEXCEPT - { - pvx = pvx_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setSy( float sy_ ) VULKAN_HPP_NOEXCEPT - { - sy = sy_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setC( float c_ ) VULKAN_HPP_NOEXCEPT - { - c = c_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setPvy( float pvy_ ) VULKAN_HPP_NOEXCEPT - { - pvy = pvy_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setSz( float sz_ ) VULKAN_HPP_NOEXCEPT - { - sz = sz_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setPvz( float pvz_ ) VULKAN_HPP_NOEXCEPT - { - pvz = pvz_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setQx( float qx_ ) VULKAN_HPP_NOEXCEPT - { - qx = qx_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setQy( float qy_ ) VULKAN_HPP_NOEXCEPT - { - qy = qy_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setQz( float qz_ ) VULKAN_HPP_NOEXCEPT - { - qz = qz_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setQw( float qw_ ) VULKAN_HPP_NOEXCEPT - { - qw = qw_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setTx( float tx_ ) VULKAN_HPP_NOEXCEPT - { - tx = tx_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setTy( float ty_ ) VULKAN_HPP_NOEXCEPT - { - ty = ty_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SRTDataNV & setTz( float tz_ ) VULKAN_HPP_NOEXCEPT - { - tz = tz_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSRTDataNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSRTDataNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sx, a, b, pvx, sy, c, pvy, sz, pvz, qx, qy, qz, qw, tx, ty, tz ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SRTDataNV const & ) const = default; -#else - bool operator==( SRTDataNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sx == rhs.sx ) && ( a == rhs.a ) && ( b == rhs.b ) && ( pvx == rhs.pvx ) && ( sy == rhs.sy ) && - ( c == rhs.c ) && ( pvy == rhs.pvy ) && ( sz == rhs.sz ) && ( pvz == rhs.pvz ) && ( qx == rhs.qx ) && - ( qy == rhs.qy ) && ( qz == rhs.qz ) && ( qw == rhs.qw ) && ( tx == rhs.tx ) && ( ty == rhs.ty ) && - ( tz == rhs.tz ); -# endif - } - - bool operator!=( SRTDataNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float sx = {}; - float a = {}; - float b = {}; - float pvx = {}; - float sy = {}; - float c = {}; - float pvy = {}; - float sz = {}; - float pvz = {}; - float qx = {}; - float qy = {}; - float qz = {}; - float qw = {}; - float tx = {}; - float ty = {}; - float tz = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SRTDataNV ) == sizeof( VkSRTDataNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SRTDataNV is not nothrow_move_constructible!" ); - - struct AccelerationStructureSRTMotionInstanceNV - { - using NativeType = VkAccelerationStructureSRTMotionInstanceNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AccelerationStructureSRTMotionInstanceNV( VULKAN_HPP_NAMESPACE::SRTDataNV transformT0_ = {}, - VULKAN_HPP_NAMESPACE::SRTDataNV transformT1_ = {}, - uint32_t instanceCustomIndex_ = {}, - uint32_t mask_ = {}, - uint32_t instanceShaderBindingTableRecordOffset_ = {}, - VULKAN_HPP_NAMESPACE::GeometryInstanceFlagsKHR flags_ = {}, - uint64_t accelerationStructureReference_ = {} ) VULKAN_HPP_NOEXCEPT - : transformT0( transformT0_ ) - , transformT1( transformT1_ ) - , instanceCustomIndex( instanceCustomIndex_ ) - , mask( mask_ ) - , instanceShaderBindingTableRecordOffset( instanceShaderBindingTableRecordOffset_ ) - , flags( flags_ ) - , accelerationStructureReference( accelerationStructureReference_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureSRTMotionInstanceNV( - AccelerationStructureSRTMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureSRTMotionInstanceNV( VkAccelerationStructureSRTMotionInstanceNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : AccelerationStructureSRTMotionInstanceNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureSRTMotionInstanceNV & - operator=( AccelerationStructureSRTMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureSRTMotionInstanceNV & - operator=( VkAccelerationStructureSRTMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureSRTMotionInstanceNV & - setTransformT0( VULKAN_HPP_NAMESPACE::SRTDataNV const & transformT0_ ) VULKAN_HPP_NOEXCEPT - { - transformT0 = transformT0_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureSRTMotionInstanceNV & - setTransformT1( VULKAN_HPP_NAMESPACE::SRTDataNV const & transformT1_ ) VULKAN_HPP_NOEXCEPT - { - transformT1 = transformT1_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureSRTMotionInstanceNV & - setInstanceCustomIndex( uint32_t instanceCustomIndex_ ) VULKAN_HPP_NOEXCEPT - { - instanceCustomIndex = instanceCustomIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureSRTMotionInstanceNV & setMask( uint32_t mask_ ) VULKAN_HPP_NOEXCEPT - { - mask = mask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureSRTMotionInstanceNV & - setInstanceShaderBindingTableRecordOffset( uint32_t instanceShaderBindingTableRecordOffset_ ) VULKAN_HPP_NOEXCEPT - { - instanceShaderBindingTableRecordOffset = instanceShaderBindingTableRecordOffset_; - return *this; - } - - AccelerationStructureSRTMotionInstanceNV & - setFlags( VULKAN_HPP_NAMESPACE::GeometryInstanceFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = *reinterpret_cast( &flags_ ); - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureSRTMotionInstanceNV & - setAccelerationStructureReference( uint64_t accelerationStructureReference_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureReference = accelerationStructureReference_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureSRTMotionInstanceNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureSRTMotionInstanceNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( transformT0, - transformT1, - instanceCustomIndex, - mask, - instanceShaderBindingTableRecordOffset, - flags, - accelerationStructureReference ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureSRTMotionInstanceNV const & ) const = default; -#else - bool operator==( AccelerationStructureSRTMotionInstanceNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( transformT0 == rhs.transformT0 ) && ( transformT1 == rhs.transformT1 ) && - ( instanceCustomIndex == rhs.instanceCustomIndex ) && ( mask == rhs.mask ) && - ( instanceShaderBindingTableRecordOffset == rhs.instanceShaderBindingTableRecordOffset ) && - ( flags == rhs.flags ) && ( accelerationStructureReference == rhs.accelerationStructureReference ); -# endif - } - - bool operator!=( AccelerationStructureSRTMotionInstanceNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::SRTDataNV transformT0 = {}; - VULKAN_HPP_NAMESPACE::SRTDataNV transformT1 = {}; - uint32_t instanceCustomIndex : 24; - uint32_t mask : 8; - uint32_t instanceShaderBindingTableRecordOffset : 24; - VkGeometryInstanceFlagsKHR flags : 8; - uint64_t accelerationStructureReference = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureSRTMotionInstanceNV ) == - sizeof( VkAccelerationStructureSRTMotionInstanceNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureSRTMotionInstanceNV is not nothrow_move_constructible!" ); - - union AccelerationStructureMotionInstanceDataNV - { - using NativeType = VkAccelerationStructureMotionInstanceDataNV; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceDataNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureInstanceKHR staticInstance_ = {} ) - : staticInstance( staticInstance_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceDataNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureMatrixMotionInstanceNV matrixMotionInstance_ ) - : matrixMotionInstance( matrixMotionInstance_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceDataNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureSRTMotionInstanceNV srtMotionInstance_ ) - : srtMotionInstance( srtMotionInstance_ ) - {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceDataNV & setStaticInstance( - VULKAN_HPP_NAMESPACE::AccelerationStructureInstanceKHR const & staticInstance_ ) VULKAN_HPP_NOEXCEPT - { - staticInstance = staticInstance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceDataNV & setMatrixMotionInstance( - VULKAN_HPP_NAMESPACE::AccelerationStructureMatrixMotionInstanceNV const & matrixMotionInstance_ ) - VULKAN_HPP_NOEXCEPT - { - matrixMotionInstance = matrixMotionInstance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceDataNV & setSrtMotionInstance( - VULKAN_HPP_NAMESPACE::AccelerationStructureSRTMotionInstanceNV const & srtMotionInstance_ ) VULKAN_HPP_NOEXCEPT - { - srtMotionInstance = srtMotionInstance_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkAccelerationStructureMotionInstanceDataNV const &() const - { - return *reinterpret_cast( this ); - } - - operator VkAccelerationStructureMotionInstanceDataNV &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - VULKAN_HPP_NAMESPACE::AccelerationStructureInstanceKHR staticInstance; - VULKAN_HPP_NAMESPACE::AccelerationStructureMatrixMotionInstanceNV matrixMotionInstance; - VULKAN_HPP_NAMESPACE::AccelerationStructureSRTMotionInstanceNV srtMotionInstance; -#else - VkAccelerationStructureInstanceKHR staticInstance; - VkAccelerationStructureMatrixMotionInstanceNV matrixMotionInstance; - VkAccelerationStructureSRTMotionInstanceNV srtMotionInstance; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct AccelerationStructureMotionInstanceNV - { - using NativeType = VkAccelerationStructureMotionInstanceNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceTypeNV type_ = - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceTypeNV::eStatic, - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceFlagsNV flags_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceDataNV data_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , flags( flags_ ) - , data( data_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceNV( AccelerationStructureMotionInstanceNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMotionInstanceNV( VkAccelerationStructureMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureMotionInstanceNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureMotionInstanceNV & - operator=( AccelerationStructureMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureMotionInstanceNV & - operator=( VkAccelerationStructureMotionInstanceNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceNV & - setType( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceTypeNV type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceNV & - setFlags( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureMotionInstanceNV & - setData( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceDataNV const & data_ ) VULKAN_HPP_NOEXCEPT - { - data = data_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureMotionInstanceNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureMotionInstanceNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( type, flags, data ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceTypeNV type = - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceTypeNV::eStatic; - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceFlagsNV flags = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceDataNV data = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureMotionInstanceNV ) == - sizeof( VkAccelerationStructureMotionInstanceNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureMotionInstanceNV is not nothrow_move_constructible!" ); - - struct AccelerationStructureVersionInfoKHR - { - using NativeType = VkAccelerationStructureVersionInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAccelerationStructureVersionInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AccelerationStructureVersionInfoKHR( const uint8_t * pVersionData_ = {} ) VULKAN_HPP_NOEXCEPT - : pVersionData( pVersionData_ ) - {} - - VULKAN_HPP_CONSTEXPR AccelerationStructureVersionInfoKHR( AccelerationStructureVersionInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureVersionInfoKHR( VkAccelerationStructureVersionInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AccelerationStructureVersionInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AccelerationStructureVersionInfoKHR & - operator=( AccelerationStructureVersionInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AccelerationStructureVersionInfoKHR & - operator=( VkAccelerationStructureVersionInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureVersionInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AccelerationStructureVersionInfoKHR & - setPVersionData( const uint8_t * pVersionData_ ) VULKAN_HPP_NOEXCEPT - { - pVersionData = pVersionData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAccelerationStructureVersionInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAccelerationStructureVersionInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pVersionData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AccelerationStructureVersionInfoKHR const & ) const = default; -#else - bool operator==( AccelerationStructureVersionInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pVersionData == rhs.pVersionData ); -# endif - } - - bool operator!=( AccelerationStructureVersionInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureVersionInfoKHR; - const void * pNext = {}; - const uint8_t * pVersionData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AccelerationStructureVersionInfoKHR ) == - sizeof( VkAccelerationStructureVersionInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AccelerationStructureVersionInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AccelerationStructureVersionInfoKHR; - }; - - struct AcquireNextImageInfoKHR - { - using NativeType = VkAcquireNextImageInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAcquireNextImageInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AcquireNextImageInfoKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ = {}, - uint64_t timeout_ = {}, - VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::Fence fence_ = {}, - uint32_t deviceMask_ = {} ) VULKAN_HPP_NOEXCEPT - : swapchain( swapchain_ ) - , timeout( timeout_ ) - , semaphore( semaphore_ ) - , fence( fence_ ) - , deviceMask( deviceMask_ ) - {} - - VULKAN_HPP_CONSTEXPR AcquireNextImageInfoKHR( AcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AcquireNextImageInfoKHR( VkAcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AcquireNextImageInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AcquireNextImageInfoKHR & operator=( AcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AcquireNextImageInfoKHR & operator=( VkAcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AcquireNextImageInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireNextImageInfoKHR & - setSwapchain( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ ) VULKAN_HPP_NOEXCEPT - { - swapchain = swapchain_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireNextImageInfoKHR & setTimeout( uint64_t timeout_ ) VULKAN_HPP_NOEXCEPT - { - timeout = timeout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireNextImageInfoKHR & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireNextImageInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT - { - fence = fence_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireNextImageInfoKHR & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT - { - deviceMask = deviceMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAcquireNextImageInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAcquireNextImageInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchain, timeout, semaphore, fence, deviceMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AcquireNextImageInfoKHR const & ) const = default; -#else - bool operator==( AcquireNextImageInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchain == rhs.swapchain ) && - ( timeout == rhs.timeout ) && ( semaphore == rhs.semaphore ) && ( fence == rhs.fence ) && - ( deviceMask == rhs.deviceMask ); -# endif - } - - bool operator!=( AcquireNextImageInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAcquireNextImageInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain = {}; - uint64_t timeout = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::Fence fence = {}; - uint32_t deviceMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR ) == - sizeof( VkAcquireNextImageInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AcquireNextImageInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AcquireNextImageInfoKHR; - }; - - struct AcquireProfilingLockInfoKHR - { - using NativeType = VkAcquireProfilingLockInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAcquireProfilingLockInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AcquireProfilingLockInfoKHR( VULKAN_HPP_NAMESPACE::AcquireProfilingLockFlagsKHR flags_ = {}, - uint64_t timeout_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , timeout( timeout_ ) - {} - - VULKAN_HPP_CONSTEXPR - AcquireProfilingLockInfoKHR( AcquireProfilingLockInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AcquireProfilingLockInfoKHR( VkAcquireProfilingLockInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AcquireProfilingLockInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AcquireProfilingLockInfoKHR & operator=( AcquireProfilingLockInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AcquireProfilingLockInfoKHR & operator=( VkAcquireProfilingLockInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AcquireProfilingLockInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireProfilingLockInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::AcquireProfilingLockFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AcquireProfilingLockInfoKHR & setTimeout( uint64_t timeout_ ) VULKAN_HPP_NOEXCEPT - { - timeout = timeout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAcquireProfilingLockInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAcquireProfilingLockInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, timeout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AcquireProfilingLockInfoKHR const & ) const = default; -#else - bool operator==( AcquireProfilingLockInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( timeout == rhs.timeout ); -# endif - } - - bool operator!=( AcquireProfilingLockInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAcquireProfilingLockInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AcquireProfilingLockFlagsKHR flags = {}; - uint64_t timeout = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AcquireProfilingLockInfoKHR ) == - sizeof( VkAcquireProfilingLockInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AcquireProfilingLockInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AcquireProfilingLockInfoKHR; - }; - - struct AllocationCallbacks - { - using NativeType = VkAllocationCallbacks; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AllocationCallbacks( void * pUserData_ = {}, - PFN_vkAllocationFunction pfnAllocation_ = {}, - PFN_vkReallocationFunction pfnReallocation_ = {}, - PFN_vkFreeFunction pfnFree_ = {}, - PFN_vkInternalAllocationNotification pfnInternalAllocation_ = {}, - PFN_vkInternalFreeNotification pfnInternalFree_ = {} ) VULKAN_HPP_NOEXCEPT - : pUserData( pUserData_ ) - , pfnAllocation( pfnAllocation_ ) - , pfnReallocation( pfnReallocation_ ) - , pfnFree( pfnFree_ ) - , pfnInternalAllocation( pfnInternalAllocation_ ) - , pfnInternalFree( pfnInternalFree_ ) - {} - - VULKAN_HPP_CONSTEXPR AllocationCallbacks( AllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AllocationCallbacks( VkAllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT - : AllocationCallbacks( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AllocationCallbacks & operator=( AllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AllocationCallbacks & operator=( VkAllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AllocationCallbacks & setPUserData( void * pUserData_ ) VULKAN_HPP_NOEXCEPT - { - pUserData = pUserData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AllocationCallbacks & - setPfnAllocation( PFN_vkAllocationFunction pfnAllocation_ ) VULKAN_HPP_NOEXCEPT - { - pfnAllocation = pfnAllocation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AllocationCallbacks & - setPfnReallocation( PFN_vkReallocationFunction pfnReallocation_ ) VULKAN_HPP_NOEXCEPT - { - pfnReallocation = pfnReallocation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AllocationCallbacks & setPfnFree( PFN_vkFreeFunction pfnFree_ ) VULKAN_HPP_NOEXCEPT - { - pfnFree = pfnFree_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AllocationCallbacks & - setPfnInternalAllocation( PFN_vkInternalAllocationNotification pfnInternalAllocation_ ) VULKAN_HPP_NOEXCEPT - { - pfnInternalAllocation = pfnInternalAllocation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AllocationCallbacks & - setPfnInternalFree( PFN_vkInternalFreeNotification pfnInternalFree_ ) VULKAN_HPP_NOEXCEPT - { - pfnInternalFree = pfnInternalFree_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAllocationCallbacks const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAllocationCallbacks &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( pUserData, pfnAllocation, pfnReallocation, pfnFree, pfnInternalAllocation, pfnInternalFree ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AllocationCallbacks const & ) const = default; -#else - bool operator==( AllocationCallbacks const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( pUserData == rhs.pUserData ) && ( pfnAllocation == rhs.pfnAllocation ) && - ( pfnReallocation == rhs.pfnReallocation ) && ( pfnFree == rhs.pfnFree ) && - ( pfnInternalAllocation == rhs.pfnInternalAllocation ) && ( pfnInternalFree == rhs.pfnInternalFree ); -# endif - } - - bool operator!=( AllocationCallbacks const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - void * pUserData = {}; - PFN_vkAllocationFunction pfnAllocation = {}; - PFN_vkReallocationFunction pfnReallocation = {}; - PFN_vkFreeFunction pfnFree = {}; - PFN_vkInternalAllocationNotification pfnInternalAllocation = {}; - PFN_vkInternalFreeNotification pfnInternalFree = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AllocationCallbacks ) == sizeof( VkAllocationCallbacks ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AllocationCallbacks is not nothrow_move_constructible!" ); - - struct ComponentMapping - { - using NativeType = VkComponentMapping; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ComponentMapping( VULKAN_HPP_NAMESPACE::ComponentSwizzle r_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity, - VULKAN_HPP_NAMESPACE::ComponentSwizzle g_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity, - VULKAN_HPP_NAMESPACE::ComponentSwizzle b_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity, - VULKAN_HPP_NAMESPACE::ComponentSwizzle a_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity ) - VULKAN_HPP_NOEXCEPT - : r( r_ ) - , g( g_ ) - , b( b_ ) - , a( a_ ) - {} - - VULKAN_HPP_CONSTEXPR ComponentMapping( ComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ComponentMapping( VkComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT - : ComponentMapping( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ComponentMapping & operator=( ComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ComponentMapping & operator=( VkComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ComponentMapping & setR( VULKAN_HPP_NAMESPACE::ComponentSwizzle r_ ) VULKAN_HPP_NOEXCEPT - { - r = r_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComponentMapping & setG( VULKAN_HPP_NAMESPACE::ComponentSwizzle g_ ) VULKAN_HPP_NOEXCEPT - { - g = g_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComponentMapping & setB( VULKAN_HPP_NAMESPACE::ComponentSwizzle b_ ) VULKAN_HPP_NOEXCEPT - { - b = b_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComponentMapping & setA( VULKAN_HPP_NAMESPACE::ComponentSwizzle a_ ) VULKAN_HPP_NOEXCEPT - { - a = a_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkComponentMapping const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkComponentMapping &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( r, g, b, a ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ComponentMapping const & ) const = default; -#else - bool operator==( ComponentMapping const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( r == rhs.r ) && ( g == rhs.g ) && ( b == rhs.b ) && ( a == rhs.a ); -# endif - } - - bool operator!=( ComponentMapping const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ComponentSwizzle r = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity; - VULKAN_HPP_NAMESPACE::ComponentSwizzle g = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity; - VULKAN_HPP_NAMESPACE::ComponentSwizzle b = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity; - VULKAN_HPP_NAMESPACE::ComponentSwizzle a = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ComponentMapping ) == sizeof( VkComponentMapping ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ComponentMapping is not nothrow_move_constructible!" ); - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct AndroidHardwareBufferFormatProperties2ANDROID - { - using NativeType = VkAndroidHardwareBufferFormatProperties2ANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAndroidHardwareBufferFormatProperties2ANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AndroidHardwareBufferFormatProperties2ANDROID( - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - uint64_t externalFormat_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 formatFeatures_ = {}, - VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents_ = {}, - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel_ = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity, - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange_ = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull, - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven, - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset_ = - VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - , externalFormat( externalFormat_ ) - , formatFeatures( formatFeatures_ ) - , samplerYcbcrConversionComponents( samplerYcbcrConversionComponents_ ) - , suggestedYcbcrModel( suggestedYcbcrModel_ ) - , suggestedYcbcrRange( suggestedYcbcrRange_ ) - , suggestedXChromaOffset( suggestedXChromaOffset_ ) - , suggestedYChromaOffset( suggestedYChromaOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR AndroidHardwareBufferFormatProperties2ANDROID( - AndroidHardwareBufferFormatProperties2ANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferFormatProperties2ANDROID( VkAndroidHardwareBufferFormatProperties2ANDROID const & rhs ) - VULKAN_HPP_NOEXCEPT - : AndroidHardwareBufferFormatProperties2ANDROID( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AndroidHardwareBufferFormatProperties2ANDROID & - operator=( AndroidHardwareBufferFormatProperties2ANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferFormatProperties2ANDROID & - operator=( VkAndroidHardwareBufferFormatProperties2ANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkAndroidHardwareBufferFormatProperties2ANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAndroidHardwareBufferFormatProperties2ANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - format, - externalFormat, - formatFeatures, - samplerYcbcrConversionComponents, - suggestedYcbcrModel, - suggestedYcbcrRange, - suggestedXChromaOffset, - suggestedYChromaOffset ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AndroidHardwareBufferFormatProperties2ANDROID const & ) const = default; -# else - bool operator==( AndroidHardwareBufferFormatProperties2ANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( format == rhs.format ) && - ( externalFormat == rhs.externalFormat ) && ( formatFeatures == rhs.formatFeatures ) && - ( samplerYcbcrConversionComponents == rhs.samplerYcbcrConversionComponents ) && - ( suggestedYcbcrModel == rhs.suggestedYcbcrModel ) && ( suggestedYcbcrRange == rhs.suggestedYcbcrRange ) && - ( suggestedXChromaOffset == rhs.suggestedXChromaOffset ) && - ( suggestedYChromaOffset == rhs.suggestedYChromaOffset ); -# endif - } - - bool operator!=( AndroidHardwareBufferFormatProperties2ANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferFormatProperties2ANDROID; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - uint64_t externalFormat = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 formatFeatures = {}; - VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents = {}; - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity; - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull; - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferFormatProperties2ANDROID ) == - sizeof( VkAndroidHardwareBufferFormatProperties2ANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AndroidHardwareBufferFormatProperties2ANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AndroidHardwareBufferFormatProperties2ANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct AndroidHardwareBufferFormatPropertiesANDROID - { - using NativeType = VkAndroidHardwareBufferFormatPropertiesANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAndroidHardwareBufferFormatPropertiesANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AndroidHardwareBufferFormatPropertiesANDROID( - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - uint64_t externalFormat_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures_ = {}, - VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents_ = {}, - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel_ = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity, - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange_ = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull, - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven, - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset_ = - VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - , externalFormat( externalFormat_ ) - , formatFeatures( formatFeatures_ ) - , samplerYcbcrConversionComponents( samplerYcbcrConversionComponents_ ) - , suggestedYcbcrModel( suggestedYcbcrModel_ ) - , suggestedYcbcrRange( suggestedYcbcrRange_ ) - , suggestedXChromaOffset( suggestedXChromaOffset_ ) - , suggestedYChromaOffset( suggestedYChromaOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR AndroidHardwareBufferFormatPropertiesANDROID( - AndroidHardwareBufferFormatPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferFormatPropertiesANDROID( VkAndroidHardwareBufferFormatPropertiesANDROID const & rhs ) - VULKAN_HPP_NOEXCEPT - : AndroidHardwareBufferFormatPropertiesANDROID( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AndroidHardwareBufferFormatPropertiesANDROID & - operator=( AndroidHardwareBufferFormatPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferFormatPropertiesANDROID & - operator=( VkAndroidHardwareBufferFormatPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkAndroidHardwareBufferFormatPropertiesANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAndroidHardwareBufferFormatPropertiesANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - format, - externalFormat, - formatFeatures, - samplerYcbcrConversionComponents, - suggestedYcbcrModel, - suggestedYcbcrRange, - suggestedXChromaOffset, - suggestedYChromaOffset ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AndroidHardwareBufferFormatPropertiesANDROID const & ) const = default; -# else - bool operator==( AndroidHardwareBufferFormatPropertiesANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( format == rhs.format ) && - ( externalFormat == rhs.externalFormat ) && ( formatFeatures == rhs.formatFeatures ) && - ( samplerYcbcrConversionComponents == rhs.samplerYcbcrConversionComponents ) && - ( suggestedYcbcrModel == rhs.suggestedYcbcrModel ) && ( suggestedYcbcrRange == rhs.suggestedYcbcrRange ) && - ( suggestedXChromaOffset == rhs.suggestedXChromaOffset ) && - ( suggestedYChromaOffset == rhs.suggestedYChromaOffset ); -# endif - } - - bool operator!=( AndroidHardwareBufferFormatPropertiesANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferFormatPropertiesANDROID; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - uint64_t externalFormat = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures = {}; - VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents = {}; - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity; - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull; - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferFormatPropertiesANDROID ) == - sizeof( VkAndroidHardwareBufferFormatPropertiesANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AndroidHardwareBufferFormatPropertiesANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AndroidHardwareBufferFormatPropertiesANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct AndroidHardwareBufferPropertiesANDROID - { - using NativeType = VkAndroidHardwareBufferPropertiesANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAndroidHardwareBufferPropertiesANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AndroidHardwareBufferPropertiesANDROID( VULKAN_HPP_NAMESPACE::DeviceSize allocationSize_ = {}, - uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT - : allocationSize( allocationSize_ ) - , memoryTypeBits( memoryTypeBits_ ) - {} - - VULKAN_HPP_CONSTEXPR AndroidHardwareBufferPropertiesANDROID( AndroidHardwareBufferPropertiesANDROID const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferPropertiesANDROID( VkAndroidHardwareBufferPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - : AndroidHardwareBufferPropertiesANDROID( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AndroidHardwareBufferPropertiesANDROID & - operator=( AndroidHardwareBufferPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferPropertiesANDROID & - operator=( VkAndroidHardwareBufferPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkAndroidHardwareBufferPropertiesANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAndroidHardwareBufferPropertiesANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, allocationSize, memoryTypeBits ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AndroidHardwareBufferPropertiesANDROID const & ) const = default; -# else - bool operator==( AndroidHardwareBufferPropertiesANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( allocationSize == rhs.allocationSize ) && - ( memoryTypeBits == rhs.memoryTypeBits ); -# endif - } - - bool operator!=( AndroidHardwareBufferPropertiesANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferPropertiesANDROID; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize allocationSize = {}; - uint32_t memoryTypeBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID ) == - sizeof( VkAndroidHardwareBufferPropertiesANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AndroidHardwareBufferPropertiesANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AndroidHardwareBufferPropertiesANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct AndroidHardwareBufferUsageANDROID - { - using NativeType = VkAndroidHardwareBufferUsageANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAndroidHardwareBufferUsageANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AndroidHardwareBufferUsageANDROID( uint64_t androidHardwareBufferUsage_ = {} ) VULKAN_HPP_NOEXCEPT - : androidHardwareBufferUsage( androidHardwareBufferUsage_ ) - {} - - VULKAN_HPP_CONSTEXPR - AndroidHardwareBufferUsageANDROID( AndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferUsageANDROID( VkAndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - : AndroidHardwareBufferUsageANDROID( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AndroidHardwareBufferUsageANDROID & - operator=( AndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidHardwareBufferUsageANDROID & operator=( VkAndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkAndroidHardwareBufferUsageANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAndroidHardwareBufferUsageANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, androidHardwareBufferUsage ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AndroidHardwareBufferUsageANDROID const & ) const = default; -# else - bool operator==( AndroidHardwareBufferUsageANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( androidHardwareBufferUsage == rhs.androidHardwareBufferUsage ); -# endif - } - - bool operator!=( AndroidHardwareBufferUsageANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferUsageANDROID; - void * pNext = {}; - uint64_t androidHardwareBufferUsage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AndroidHardwareBufferUsageANDROID ) == - sizeof( VkAndroidHardwareBufferUsageANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AndroidHardwareBufferUsageANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AndroidHardwareBufferUsageANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct AndroidSurfaceCreateInfoKHR - { - using NativeType = VkAndroidSurfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAndroidSurfaceCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AndroidSurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateFlagsKHR flags_ = {}, - struct ANativeWindow * window_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , window( window_ ) - {} - - VULKAN_HPP_CONSTEXPR - AndroidSurfaceCreateInfoKHR( AndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidSurfaceCreateInfoKHR( VkAndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : AndroidSurfaceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AndroidSurfaceCreateInfoKHR & operator=( AndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AndroidSurfaceCreateInfoKHR & operator=( VkAndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AndroidSurfaceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AndroidSurfaceCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AndroidSurfaceCreateInfoKHR & - setWindow( struct ANativeWindow * window_ ) VULKAN_HPP_NOEXCEPT - { - window = window_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAndroidSurfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAndroidSurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, window ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AndroidSurfaceCreateInfoKHR const & ) const = default; -# else - bool operator==( AndroidSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( window == rhs.window ); -# endif - } - - bool operator!=( AndroidSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidSurfaceCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateFlagsKHR flags = {}; - struct ANativeWindow * window = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR ) == - sizeof( VkAndroidSurfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AndroidSurfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AndroidSurfaceCreateInfoKHR; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - struct ApplicationInfo - { - using NativeType = VkApplicationInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eApplicationInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ApplicationInfo( const char * pApplicationName_ = {}, - uint32_t applicationVersion_ = {}, - const char * pEngineName_ = {}, - uint32_t engineVersion_ = {}, - uint32_t apiVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : pApplicationName( pApplicationName_ ) - , applicationVersion( applicationVersion_ ) - , pEngineName( pEngineName_ ) - , engineVersion( engineVersion_ ) - , apiVersion( apiVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR ApplicationInfo( ApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ApplicationInfo( VkApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ApplicationInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ApplicationInfo & operator=( ApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ApplicationInfo & operator=( VkApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ApplicationInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ApplicationInfo & setPApplicationName( const char * pApplicationName_ ) VULKAN_HPP_NOEXCEPT - { - pApplicationName = pApplicationName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ApplicationInfo & setApplicationVersion( uint32_t applicationVersion_ ) VULKAN_HPP_NOEXCEPT - { - applicationVersion = applicationVersion_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ApplicationInfo & setPEngineName( const char * pEngineName_ ) VULKAN_HPP_NOEXCEPT - { - pEngineName = pEngineName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ApplicationInfo & setEngineVersion( uint32_t engineVersion_ ) VULKAN_HPP_NOEXCEPT - { - engineVersion = engineVersion_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ApplicationInfo & setApiVersion( uint32_t apiVersion_ ) VULKAN_HPP_NOEXCEPT - { - apiVersion = apiVersion_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkApplicationInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkApplicationInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pApplicationName, applicationVersion, pEngineName, engineVersion, apiVersion ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( ApplicationInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( pApplicationName != rhs.pApplicationName ) - if ( auto cmp = strcmp( pApplicationName, rhs.pApplicationName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = applicationVersion <=> rhs.applicationVersion; cmp != 0 ) - return cmp; - if ( pEngineName != rhs.pEngineName ) - if ( auto cmp = strcmp( pEngineName, rhs.pEngineName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = engineVersion <=> rhs.engineVersion; cmp != 0 ) - return cmp; - if ( auto cmp = apiVersion <=> rhs.apiVersion; cmp != 0 ) - return cmp; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( ApplicationInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( ( pApplicationName == rhs.pApplicationName ) || - ( strcmp( pApplicationName, rhs.pApplicationName ) == 0 ) ) && - ( applicationVersion == rhs.applicationVersion ) && - ( ( pEngineName == rhs.pEngineName ) || ( strcmp( pEngineName, rhs.pEngineName ) == 0 ) ) && - ( engineVersion == rhs.engineVersion ) && ( apiVersion == rhs.apiVersion ); - } - - bool operator!=( ApplicationInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eApplicationInfo; - const void * pNext = {}; - const char * pApplicationName = {}; - uint32_t applicationVersion = {}; - const char * pEngineName = {}; - uint32_t engineVersion = {}; - uint32_t apiVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ApplicationInfo ) == sizeof( VkApplicationInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ApplicationInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ApplicationInfo; - }; - - struct AttachmentDescription - { - using NativeType = VkAttachmentDescription; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AttachmentDescription( - VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad, - VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore, - VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad, - VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore, - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) - VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , format( format_ ) - , samples( samples_ ) - , loadOp( loadOp_ ) - , storeOp( storeOp_ ) - , stencilLoadOp( stencilLoadOp_ ) - , stencilStoreOp( stencilStoreOp_ ) - , initialLayout( initialLayout_ ) - , finalLayout( finalLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR AttachmentDescription( AttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentDescription( VkAttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentDescription( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentDescription & operator=( AttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentDescription & operator=( VkAttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setFlags( VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ ) VULKAN_HPP_NOEXCEPT - { - samples = samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ ) VULKAN_HPP_NOEXCEPT - { - loadOp = loadOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ ) VULKAN_HPP_NOEXCEPT - { - storeOp = storeOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setStencilLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ ) VULKAN_HPP_NOEXCEPT - { - stencilLoadOp = stencilLoadOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setStencilStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ ) VULKAN_HPP_NOEXCEPT - { - stencilStoreOp = stencilStoreOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setInitialLayout( VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ ) VULKAN_HPP_NOEXCEPT - { - initialLayout = initialLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription & - setFinalLayout( VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ ) VULKAN_HPP_NOEXCEPT - { - finalLayout = finalLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentDescription const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentDescription &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - flags, format, samples, loadOp, storeOp, stencilLoadOp, stencilStoreOp, initialLayout, finalLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentDescription const & ) const = default; -#else - bool operator==( AttachmentDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( flags == rhs.flags ) && ( format == rhs.format ) && ( samples == rhs.samples ) && - ( loadOp == rhs.loadOp ) && ( storeOp == rhs.storeOp ) && ( stencilLoadOp == rhs.stencilLoadOp ) && - ( stencilStoreOp == rhs.stencilStoreOp ) && ( initialLayout == rhs.initialLayout ) && - ( finalLayout == rhs.finalLayout ); -# endif - } - - bool operator!=( AttachmentDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad; - VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore; - VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad; - VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore; - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ImageLayout finalLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentDescription ) == sizeof( VkAttachmentDescription ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AttachmentDescription is not nothrow_move_constructible!" ); - - struct AttachmentDescription2 - { - using NativeType = VkAttachmentDescription2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAttachmentDescription2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AttachmentDescription2( - VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad, - VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore, - VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad, - VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore, - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) - VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , format( format_ ) - , samples( samples_ ) - , loadOp( loadOp_ ) - , storeOp( storeOp_ ) - , stencilLoadOp( stencilLoadOp_ ) - , stencilStoreOp( stencilStoreOp_ ) - , initialLayout( initialLayout_ ) - , finalLayout( finalLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR AttachmentDescription2( AttachmentDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentDescription2( VkAttachmentDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentDescription2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentDescription2 & operator=( AttachmentDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentDescription2 & operator=( VkAttachmentDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setFlags( VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ ) VULKAN_HPP_NOEXCEPT - { - samples = samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ ) VULKAN_HPP_NOEXCEPT - { - loadOp = loadOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ ) VULKAN_HPP_NOEXCEPT - { - storeOp = storeOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setStencilLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ ) VULKAN_HPP_NOEXCEPT - { - stencilLoadOp = stencilLoadOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setStencilStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ ) VULKAN_HPP_NOEXCEPT - { - stencilStoreOp = stencilStoreOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setInitialLayout( VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ ) VULKAN_HPP_NOEXCEPT - { - initialLayout = initialLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescription2 & - setFinalLayout( VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ ) VULKAN_HPP_NOEXCEPT - { - finalLayout = finalLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentDescription2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentDescription2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - format, - samples, - loadOp, - storeOp, - stencilLoadOp, - stencilStoreOp, - initialLayout, - finalLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentDescription2 const & ) const = default; -#else - bool operator==( AttachmentDescription2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( format == rhs.format ) && - ( samples == rhs.samples ) && ( loadOp == rhs.loadOp ) && ( storeOp == rhs.storeOp ) && - ( stencilLoadOp == rhs.stencilLoadOp ) && ( stencilStoreOp == rhs.stencilStoreOp ) && - ( initialLayout == rhs.initialLayout ) && ( finalLayout == rhs.finalLayout ); -# endif - } - - bool operator!=( AttachmentDescription2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentDescription2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad; - VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore; - VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad; - VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore; - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ImageLayout finalLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentDescription2 ) == - sizeof( VkAttachmentDescription2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AttachmentDescription2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AttachmentDescription2; - }; - using AttachmentDescription2KHR = AttachmentDescription2; - - struct AttachmentDescriptionStencilLayout - { - using NativeType = VkAttachmentDescriptionStencilLayout; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eAttachmentDescriptionStencilLayout; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AttachmentDescriptionStencilLayout( - VULKAN_HPP_NAMESPACE::ImageLayout stencilInitialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ImageLayout stencilFinalLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) - VULKAN_HPP_NOEXCEPT - : stencilInitialLayout( stencilInitialLayout_ ) - , stencilFinalLayout( stencilFinalLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR AttachmentDescriptionStencilLayout( AttachmentDescriptionStencilLayout const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - AttachmentDescriptionStencilLayout( VkAttachmentDescriptionStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentDescriptionStencilLayout( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentDescriptionStencilLayout & - operator=( AttachmentDescriptionStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentDescriptionStencilLayout & - operator=( VkAttachmentDescriptionStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentDescriptionStencilLayout & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescriptionStencilLayout & - setStencilInitialLayout( VULKAN_HPP_NAMESPACE::ImageLayout stencilInitialLayout_ ) VULKAN_HPP_NOEXCEPT - { - stencilInitialLayout = stencilInitialLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentDescriptionStencilLayout & - setStencilFinalLayout( VULKAN_HPP_NAMESPACE::ImageLayout stencilFinalLayout_ ) VULKAN_HPP_NOEXCEPT - { - stencilFinalLayout = stencilFinalLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentDescriptionStencilLayout const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentDescriptionStencilLayout &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stencilInitialLayout, stencilFinalLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentDescriptionStencilLayout const & ) const = default; -#else - bool operator==( AttachmentDescriptionStencilLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stencilInitialLayout == rhs.stencilInitialLayout ) && - ( stencilFinalLayout == rhs.stencilFinalLayout ); -# endif - } - - bool operator!=( AttachmentDescriptionStencilLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentDescriptionStencilLayout; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageLayout stencilInitialLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ImageLayout stencilFinalLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentDescriptionStencilLayout ) == - sizeof( VkAttachmentDescriptionStencilLayout ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AttachmentDescriptionStencilLayout is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AttachmentDescriptionStencilLayout; - }; - using AttachmentDescriptionStencilLayoutKHR = AttachmentDescriptionStencilLayout; - - struct AttachmentReference - { - using NativeType = VkAttachmentReference; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AttachmentReference( - uint32_t attachment_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout layout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) VULKAN_HPP_NOEXCEPT - : attachment( attachment_ ) - , layout( layout_ ) - {} - - VULKAN_HPP_CONSTEXPR AttachmentReference( AttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentReference( VkAttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentReference( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentReference & operator=( AttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentReference & operator=( VkAttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentReference & setAttachment( uint32_t attachment_ ) VULKAN_HPP_NOEXCEPT - { - attachment = attachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentReference & - setLayout( VULKAN_HPP_NAMESPACE::ImageLayout layout_ ) VULKAN_HPP_NOEXCEPT - { - layout = layout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentReference const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentReference &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( attachment, layout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentReference const & ) const = default; -#else - bool operator==( AttachmentReference const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( attachment == rhs.attachment ) && ( layout == rhs.layout ); -# endif - } - - bool operator!=( AttachmentReference const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t attachment = {}; - VULKAN_HPP_NAMESPACE::ImageLayout layout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentReference ) == sizeof( VkAttachmentReference ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AttachmentReference is not nothrow_move_constructible!" ); - - struct AttachmentReference2 - { - using NativeType = VkAttachmentReference2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAttachmentReference2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AttachmentReference2( uint32_t attachment_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout layout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {} ) VULKAN_HPP_NOEXCEPT - : attachment( attachment_ ) - , layout( layout_ ) - , aspectMask( aspectMask_ ) - {} - - VULKAN_HPP_CONSTEXPR AttachmentReference2( AttachmentReference2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentReference2( VkAttachmentReference2 const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentReference2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentReference2 & operator=( AttachmentReference2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentReference2 & operator=( VkAttachmentReference2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentReference2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentReference2 & setAttachment( uint32_t attachment_ ) VULKAN_HPP_NOEXCEPT - { - attachment = attachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentReference2 & - setLayout( VULKAN_HPP_NAMESPACE::ImageLayout layout_ ) VULKAN_HPP_NOEXCEPT - { - layout = layout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentReference2 & - setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT - { - aspectMask = aspectMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentReference2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentReference2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, attachment, layout, aspectMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentReference2 const & ) const = default; -#else - bool operator==( AttachmentReference2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( attachment == rhs.attachment ) && - ( layout == rhs.layout ) && ( aspectMask == rhs.aspectMask ); -# endif - } - - bool operator!=( AttachmentReference2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentReference2; - const void * pNext = {}; - uint32_t attachment = {}; - VULKAN_HPP_NAMESPACE::ImageLayout layout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentReference2 ) == sizeof( VkAttachmentReference2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "AttachmentReference2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AttachmentReference2; - }; - using AttachmentReference2KHR = AttachmentReference2; - - struct AttachmentReferenceStencilLayout - { - using NativeType = VkAttachmentReferenceStencilLayout; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAttachmentReferenceStencilLayout; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AttachmentReferenceStencilLayout( VULKAN_HPP_NAMESPACE::ImageLayout stencilLayout_ = - VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) VULKAN_HPP_NOEXCEPT - : stencilLayout( stencilLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR - AttachmentReferenceStencilLayout( AttachmentReferenceStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentReferenceStencilLayout( VkAttachmentReferenceStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentReferenceStencilLayout( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentReferenceStencilLayout & - operator=( AttachmentReferenceStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentReferenceStencilLayout & operator=( VkAttachmentReferenceStencilLayout const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentReferenceStencilLayout & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentReferenceStencilLayout & - setStencilLayout( VULKAN_HPP_NAMESPACE::ImageLayout stencilLayout_ ) VULKAN_HPP_NOEXCEPT - { - stencilLayout = stencilLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentReferenceStencilLayout const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentReferenceStencilLayout &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stencilLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentReferenceStencilLayout const & ) const = default; -#else - bool operator==( AttachmentReferenceStencilLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stencilLayout == rhs.stencilLayout ); -# endif - } - - bool operator!=( AttachmentReferenceStencilLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentReferenceStencilLayout; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageLayout stencilLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentReferenceStencilLayout ) == - sizeof( VkAttachmentReferenceStencilLayout ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AttachmentReferenceStencilLayout is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AttachmentReferenceStencilLayout; - }; - using AttachmentReferenceStencilLayoutKHR = AttachmentReferenceStencilLayout; - - struct AttachmentSampleCountInfoAMD - { - using NativeType = VkAttachmentSampleCountInfoAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eAttachmentSampleCountInfoAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - AttachmentSampleCountInfoAMD( uint32_t colorAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::SampleCountFlagBits * pColorAttachmentSamples_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits depthStencilAttachmentSamples_ = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1 ) VULKAN_HPP_NOEXCEPT - : colorAttachmentCount( colorAttachmentCount_ ) - , pColorAttachmentSamples( pColorAttachmentSamples_ ) - , depthStencilAttachmentSamples( depthStencilAttachmentSamples_ ) - {} - - VULKAN_HPP_CONSTEXPR - AttachmentSampleCountInfoAMD( AttachmentSampleCountInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentSampleCountInfoAMD( VkAttachmentSampleCountInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentSampleCountInfoAMD( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AttachmentSampleCountInfoAMD( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::SampleCountFlagBits> const & colorAttachmentSamples_, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits depthStencilAttachmentSamples_ = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1 ) - : colorAttachmentCount( static_cast( colorAttachmentSamples_.size() ) ) - , pColorAttachmentSamples( colorAttachmentSamples_.data() ) - , depthStencilAttachmentSamples( depthStencilAttachmentSamples_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentSampleCountInfoAMD & operator=( AttachmentSampleCountInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentSampleCountInfoAMD & operator=( VkAttachmentSampleCountInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentSampleCountInfoAMD & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentSampleCountInfoAMD & - setColorAttachmentCount( uint32_t colorAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = colorAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentSampleCountInfoAMD & setPColorAttachmentSamples( - const VULKAN_HPP_NAMESPACE::SampleCountFlagBits * pColorAttachmentSamples_ ) VULKAN_HPP_NOEXCEPT - { - pColorAttachmentSamples = pColorAttachmentSamples_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - AttachmentSampleCountInfoAMD & setColorAttachmentSamples( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachmentSamples_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( colorAttachmentSamples_.size() ); - pColorAttachmentSamples = colorAttachmentSamples_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 AttachmentSampleCountInfoAMD & setDepthStencilAttachmentSamples( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits depthStencilAttachmentSamples_ ) VULKAN_HPP_NOEXCEPT - { - depthStencilAttachmentSamples = depthStencilAttachmentSamples_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentSampleCountInfoAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentSampleCountInfoAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, colorAttachmentCount, pColorAttachmentSamples, depthStencilAttachmentSamples ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentSampleCountInfoAMD const & ) const = default; -#else - bool operator==( AttachmentSampleCountInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( colorAttachmentCount == rhs.colorAttachmentCount ) && - ( pColorAttachmentSamples == rhs.pColorAttachmentSamples ) && - ( depthStencilAttachmentSamples == rhs.depthStencilAttachmentSamples ); -# endif - } - - bool operator!=( AttachmentSampleCountInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentSampleCountInfoAMD; - const void * pNext = {}; - uint32_t colorAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::SampleCountFlagBits * pColorAttachmentSamples = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits depthStencilAttachmentSamples = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentSampleCountInfoAMD ) == - sizeof( VkAttachmentSampleCountInfoAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AttachmentSampleCountInfoAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = AttachmentSampleCountInfoAMD; - }; - using AttachmentSampleCountInfoNV = AttachmentSampleCountInfoAMD; - - struct Extent2D - { - using NativeType = VkExtent2D; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR Extent2D( uint32_t width_ = {}, uint32_t height_ = {} ) VULKAN_HPP_NOEXCEPT - : width( width_ ) - , height( height_ ) - {} - - VULKAN_HPP_CONSTEXPR Extent2D( Extent2D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Extent2D( VkExtent2D const & rhs ) VULKAN_HPP_NOEXCEPT : Extent2D( *reinterpret_cast( &rhs ) ) {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Extent2D & operator=( Extent2D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Extent2D & operator=( VkExtent2D const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Extent2D & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT - { - width = width_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Extent2D & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT - { - height = height_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExtent2D const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExtent2D &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( width, height ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Extent2D const & ) const = default; -#else - bool operator==( Extent2D const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( width == rhs.width ) && ( height == rhs.height ); -# endif - } - - bool operator!=( Extent2D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t width = {}; - uint32_t height = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Extent2D ) == sizeof( VkExtent2D ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Extent2D is not nothrow_move_constructible!" ); - - struct SampleLocationEXT - { - using NativeType = VkSampleLocationEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SampleLocationEXT( float x_ = {}, float y_ = {} ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - {} - - VULKAN_HPP_CONSTEXPR SampleLocationEXT( SampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SampleLocationEXT( VkSampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SampleLocationEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SampleLocationEXT & operator=( SampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SampleLocationEXT & operator=( VkSampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SampleLocationEXT & setX( float x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SampleLocationEXT & setY( float y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSampleLocationEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSampleLocationEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SampleLocationEXT const & ) const = default; -#else - bool operator==( SampleLocationEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ); -# endif - } - - bool operator!=( SampleLocationEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float x = {}; - float y = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SampleLocationEXT ) == sizeof( VkSampleLocationEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SampleLocationEXT is not nothrow_move_constructible!" ); - - struct SampleLocationsInfoEXT - { - using NativeType = VkSampleLocationsInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSampleLocationsInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SampleLocationsInfoEXT( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel_ = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::Extent2D sampleLocationGridSize_ = {}, - uint32_t sampleLocationsCount_ = {}, - const VULKAN_HPP_NAMESPACE::SampleLocationEXT * pSampleLocations_ = {} ) VULKAN_HPP_NOEXCEPT - : sampleLocationsPerPixel( sampleLocationsPerPixel_ ) - , sampleLocationGridSize( sampleLocationGridSize_ ) - , sampleLocationsCount( sampleLocationsCount_ ) - , pSampleLocations( pSampleLocations_ ) - {} - - VULKAN_HPP_CONSTEXPR SampleLocationsInfoEXT( SampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SampleLocationsInfoEXT( VkSampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SampleLocationsInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SampleLocationsInfoEXT( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel_, - VULKAN_HPP_NAMESPACE::Extent2D sampleLocationGridSize_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - sampleLocations_ ) - : sampleLocationsPerPixel( sampleLocationsPerPixel_ ) - , sampleLocationGridSize( sampleLocationGridSize_ ) - , sampleLocationsCount( static_cast( sampleLocations_.size() ) ) - , pSampleLocations( sampleLocations_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SampleLocationsInfoEXT & operator=( SampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SampleLocationsInfoEXT & operator=( VkSampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SampleLocationsInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SampleLocationsInfoEXT & setSampleLocationsPerPixel( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsPerPixel = sampleLocationsPerPixel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SampleLocationsInfoEXT & - setSampleLocationGridSize( VULKAN_HPP_NAMESPACE::Extent2D const & sampleLocationGridSize_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationGridSize = sampleLocationGridSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SampleLocationsInfoEXT & - setSampleLocationsCount( uint32_t sampleLocationsCount_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsCount = sampleLocationsCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SampleLocationsInfoEXT & - setPSampleLocations( const VULKAN_HPP_NAMESPACE::SampleLocationEXT * pSampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - pSampleLocations = pSampleLocations_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SampleLocationsInfoEXT & setSampleLocations( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - sampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsCount = static_cast( sampleLocations_.size() ); - pSampleLocations = sampleLocations_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSampleLocationsInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSampleLocationsInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, sampleLocationsPerPixel, sampleLocationGridSize, sampleLocationsCount, pSampleLocations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SampleLocationsInfoEXT const & ) const = default; -#else - bool operator==( SampleLocationsInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( sampleLocationsPerPixel == rhs.sampleLocationsPerPixel ) && - ( sampleLocationGridSize == rhs.sampleLocationGridSize ) && - ( sampleLocationsCount == rhs.sampleLocationsCount ) && ( pSampleLocations == rhs.pSampleLocations ); -# endif - } - - bool operator!=( SampleLocationsInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSampleLocationsInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::Extent2D sampleLocationGridSize = {}; - uint32_t sampleLocationsCount = {}; - const VULKAN_HPP_NAMESPACE::SampleLocationEXT * pSampleLocations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT ) == - sizeof( VkSampleLocationsInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SampleLocationsInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SampleLocationsInfoEXT; - }; - - struct AttachmentSampleLocationsEXT - { - using NativeType = VkAttachmentSampleLocationsEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR AttachmentSampleLocationsEXT( - uint32_t attachmentIndex_ = {}, - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : attachmentIndex( attachmentIndex_ ) - , sampleLocationsInfo( sampleLocationsInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - AttachmentSampleLocationsEXT( AttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentSampleLocationsEXT( VkAttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : AttachmentSampleLocationsEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - AttachmentSampleLocationsEXT & operator=( AttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - AttachmentSampleLocationsEXT & operator=( VkAttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 AttachmentSampleLocationsEXT & - setAttachmentIndex( uint32_t attachmentIndex_ ) VULKAN_HPP_NOEXCEPT - { - attachmentIndex = attachmentIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 AttachmentSampleLocationsEXT & setSampleLocationsInfo( - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT const & sampleLocationsInfo_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsInfo = sampleLocationsInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkAttachmentSampleLocationsEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkAttachmentSampleLocationsEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( attachmentIndex, sampleLocationsInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( AttachmentSampleLocationsEXT const & ) const = default; -#else - bool operator==( AttachmentSampleLocationsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( attachmentIndex == rhs.attachmentIndex ) && ( sampleLocationsInfo == rhs.sampleLocationsInfo ); -# endif - } - - bool operator!=( AttachmentSampleLocationsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t attachmentIndex = {}; - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::AttachmentSampleLocationsEXT ) == - sizeof( VkAttachmentSampleLocationsEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "AttachmentSampleLocationsEXT is not nothrow_move_constructible!" ); - - struct BaseInStructure - { - using NativeType = VkBaseInStructure; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - BaseInStructure( VULKAN_HPP_NAMESPACE::StructureType sType_ = - VULKAN_HPP_NAMESPACE::StructureType::eApplicationInfo ) VULKAN_HPP_NOEXCEPT : sType( sType_ ) - {} - - BaseInStructure( BaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BaseInStructure( VkBaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT - : BaseInStructure( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BaseInStructure & operator=( BaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BaseInStructure & operator=( VkBaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BaseInStructure & - setPNext( const struct VULKAN_HPP_NAMESPACE::BaseInStructure * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBaseInStructure const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBaseInStructure &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BaseInStructure const & ) const = default; -#else - bool operator==( BaseInStructure const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ); -# endif - } - - bool operator!=( BaseInStructure const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = VULKAN_HPP_NAMESPACE::StructureType::eApplicationInfo; - const struct VULKAN_HPP_NAMESPACE::BaseInStructure * pNext = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BaseInStructure ) == sizeof( VkBaseInStructure ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BaseInStructure is not nothrow_move_constructible!" ); - - struct BaseOutStructure - { - using NativeType = VkBaseOutStructure; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - BaseOutStructure( VULKAN_HPP_NAMESPACE::StructureType sType_ = - VULKAN_HPP_NAMESPACE::StructureType::eApplicationInfo ) VULKAN_HPP_NOEXCEPT : sType( sType_ ) - {} - - BaseOutStructure( BaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BaseOutStructure( VkBaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT - : BaseOutStructure( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BaseOutStructure & operator=( BaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BaseOutStructure & operator=( VkBaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BaseOutStructure & - setPNext( struct VULKAN_HPP_NAMESPACE::BaseOutStructure * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBaseOutStructure const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBaseOutStructure &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BaseOutStructure const & ) const = default; -#else - bool operator==( BaseOutStructure const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ); -# endif - } - - bool operator!=( BaseOutStructure const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = VULKAN_HPP_NAMESPACE::StructureType::eApplicationInfo; - struct VULKAN_HPP_NAMESPACE::BaseOutStructure * pNext = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BaseOutStructure ) == sizeof( VkBaseOutStructure ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BaseOutStructure is not nothrow_move_constructible!" ); - - struct BindAccelerationStructureMemoryInfoNV - { - using NativeType = VkBindAccelerationStructureMemoryInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBindAccelerationStructureMemoryInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BindAccelerationStructureMemoryInfoNV( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ = {}, - uint32_t deviceIndexCount_ = {}, - const uint32_t * pDeviceIndices_ = {} ) VULKAN_HPP_NOEXCEPT - : accelerationStructure( accelerationStructure_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - , deviceIndexCount( deviceIndexCount_ ) - , pDeviceIndices( pDeviceIndices_ ) - {} - - VULKAN_HPP_CONSTEXPR BindAccelerationStructureMemoryInfoNV( BindAccelerationStructureMemoryInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - BindAccelerationStructureMemoryInfoNV( VkBindAccelerationStructureMemoryInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : BindAccelerationStructureMemoryInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindAccelerationStructureMemoryInfoNV( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceIndices_ ) - : accelerationStructure( accelerationStructure_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - , deviceIndexCount( static_cast( deviceIndices_.size() ) ) - , pDeviceIndices( deviceIndices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindAccelerationStructureMemoryInfoNV & - operator=( BindAccelerationStructureMemoryInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindAccelerationStructureMemoryInfoNV & - operator=( VkBindAccelerationStructureMemoryInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindAccelerationStructureMemoryInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindAccelerationStructureMemoryInfoNV & setAccelerationStructure( - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructure = accelerationStructure_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindAccelerationStructureMemoryInfoNV & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindAccelerationStructureMemoryInfoNV & - setMemoryOffset( VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ ) VULKAN_HPP_NOEXCEPT - { - memoryOffset = memoryOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindAccelerationStructureMemoryInfoNV & - setDeviceIndexCount( uint32_t deviceIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndexCount = deviceIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindAccelerationStructureMemoryInfoNV & - setPDeviceIndices( const uint32_t * pDeviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - pDeviceIndices = pDeviceIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindAccelerationStructureMemoryInfoNV & setDeviceIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndexCount = static_cast( deviceIndices_.size() ); - pDeviceIndices = deviceIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindAccelerationStructureMemoryInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindAccelerationStructureMemoryInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, accelerationStructure, memory, memoryOffset, deviceIndexCount, pDeviceIndices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindAccelerationStructureMemoryInfoNV const & ) const = default; -#else - bool operator==( BindAccelerationStructureMemoryInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( accelerationStructure == rhs.accelerationStructure ) && ( memory == rhs.memory ) && - ( memoryOffset == rhs.memoryOffset ) && ( deviceIndexCount == rhs.deviceIndexCount ) && - ( pDeviceIndices == rhs.pDeviceIndices ); -# endif - } - - bool operator!=( BindAccelerationStructureMemoryInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindAccelerationStructureMemoryInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset = {}; - uint32_t deviceIndexCount = {}; - const uint32_t * pDeviceIndices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindAccelerationStructureMemoryInfoNV ) == - sizeof( VkBindAccelerationStructureMemoryInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindAccelerationStructureMemoryInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindAccelerationStructureMemoryInfoNV; - }; - - struct BindBufferMemoryDeviceGroupInfo - { - using NativeType = VkBindBufferMemoryDeviceGroupInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindBufferMemoryDeviceGroupInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindBufferMemoryDeviceGroupInfo( uint32_t deviceIndexCount_ = {}, - const uint32_t * pDeviceIndices_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceIndexCount( deviceIndexCount_ ) - , pDeviceIndices( pDeviceIndices_ ) - {} - - VULKAN_HPP_CONSTEXPR - BindBufferMemoryDeviceGroupInfo( BindBufferMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindBufferMemoryDeviceGroupInfo( VkBindBufferMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BindBufferMemoryDeviceGroupInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindBufferMemoryDeviceGroupInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceIndices_ ) - : deviceIndexCount( static_cast( deviceIndices_.size() ) ), pDeviceIndices( deviceIndices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindBufferMemoryDeviceGroupInfo & - operator=( BindBufferMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindBufferMemoryDeviceGroupInfo & operator=( VkBindBufferMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryDeviceGroupInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryDeviceGroupInfo & - setDeviceIndexCount( uint32_t deviceIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndexCount = deviceIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryDeviceGroupInfo & - setPDeviceIndices( const uint32_t * pDeviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - pDeviceIndices = pDeviceIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindBufferMemoryDeviceGroupInfo & setDeviceIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndexCount = static_cast( deviceIndices_.size() ); - pDeviceIndices = deviceIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindBufferMemoryDeviceGroupInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindBufferMemoryDeviceGroupInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceIndexCount, pDeviceIndices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindBufferMemoryDeviceGroupInfo const & ) const = default; -#else - bool operator==( BindBufferMemoryDeviceGroupInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceIndexCount == rhs.deviceIndexCount ) && - ( pDeviceIndices == rhs.pDeviceIndices ); -# endif - } - - bool operator!=( BindBufferMemoryDeviceGroupInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindBufferMemoryDeviceGroupInfo; - const void * pNext = {}; - uint32_t deviceIndexCount = {}; - const uint32_t * pDeviceIndices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindBufferMemoryDeviceGroupInfo ) == - sizeof( VkBindBufferMemoryDeviceGroupInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindBufferMemoryDeviceGroupInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindBufferMemoryDeviceGroupInfo; - }; - using BindBufferMemoryDeviceGroupInfoKHR = BindBufferMemoryDeviceGroupInfo; - - struct BindBufferMemoryInfo - { - using NativeType = VkBindBufferMemoryInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindBufferMemoryInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindBufferMemoryInfo( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR BindBufferMemoryInfo( BindBufferMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindBufferMemoryInfo( VkBindBufferMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BindBufferMemoryInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindBufferMemoryInfo & operator=( BindBufferMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindBufferMemoryInfo & operator=( VkBindBufferMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryInfo & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryInfo & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindBufferMemoryInfo & - setMemoryOffset( VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ ) VULKAN_HPP_NOEXCEPT - { - memoryOffset = memoryOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindBufferMemoryInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindBufferMemoryInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, buffer, memory, memoryOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindBufferMemoryInfo const & ) const = default; -#else - bool operator==( BindBufferMemoryInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( buffer == rhs.buffer ) && ( memory == rhs.memory ) && - ( memoryOffset == rhs.memoryOffset ); -# endif - } - - bool operator!=( BindBufferMemoryInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindBufferMemoryInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindBufferMemoryInfo ) == sizeof( VkBindBufferMemoryInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BindBufferMemoryInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindBufferMemoryInfo; - }; - using BindBufferMemoryInfoKHR = BindBufferMemoryInfo; - - struct Offset2D - { - using NativeType = VkOffset2D; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR Offset2D( int32_t x_ = {}, int32_t y_ = {} ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - {} - - VULKAN_HPP_CONSTEXPR Offset2D( Offset2D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Offset2D( VkOffset2D const & rhs ) VULKAN_HPP_NOEXCEPT : Offset2D( *reinterpret_cast( &rhs ) ) {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Offset2D & operator=( Offset2D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Offset2D & operator=( VkOffset2D const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Offset2D & setX( int32_t x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Offset2D & setY( int32_t y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkOffset2D const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkOffset2D &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Offset2D const & ) const = default; -#else - bool operator==( Offset2D const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ); -# endif - } - - bool operator!=( Offset2D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - int32_t x = {}; - int32_t y = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Offset2D ) == sizeof( VkOffset2D ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Offset2D is not nothrow_move_constructible!" ); - - struct Rect2D - { - using NativeType = VkRect2D; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR Rect2D( VULKAN_HPP_NAMESPACE::Offset2D offset_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D extent_ = {} ) VULKAN_HPP_NOEXCEPT - : offset( offset_ ) - , extent( extent_ ) - {} - - VULKAN_HPP_CONSTEXPR Rect2D( Rect2D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Rect2D( VkRect2D const & rhs ) VULKAN_HPP_NOEXCEPT : Rect2D( *reinterpret_cast( &rhs ) ) {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Rect2D & operator=( Rect2D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Rect2D & operator=( VkRect2D const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Rect2D & setOffset( VULKAN_HPP_NAMESPACE::Offset2D const & offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Rect2D & setExtent( VULKAN_HPP_NAMESPACE::Extent2D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRect2D const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRect2D &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( offset, extent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Rect2D const & ) const = default; -#else - bool operator==( Rect2D const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( offset == rhs.offset ) && ( extent == rhs.extent ); -# endif - } - - bool operator!=( Rect2D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Offset2D offset = {}; - VULKAN_HPP_NAMESPACE::Extent2D extent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Rect2D ) == sizeof( VkRect2D ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Rect2D is not nothrow_move_constructible!" ); - - struct BindImageMemoryDeviceGroupInfo - { - using NativeType = VkBindImageMemoryDeviceGroupInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindImageMemoryDeviceGroupInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindImageMemoryDeviceGroupInfo( - uint32_t deviceIndexCount_ = {}, - const uint32_t * pDeviceIndices_ = {}, - uint32_t splitInstanceBindRegionCount_ = {}, - const VULKAN_HPP_NAMESPACE::Rect2D * pSplitInstanceBindRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceIndexCount( deviceIndexCount_ ) - , pDeviceIndices( pDeviceIndices_ ) - , splitInstanceBindRegionCount( splitInstanceBindRegionCount_ ) - , pSplitInstanceBindRegions( pSplitInstanceBindRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR - BindImageMemoryDeviceGroupInfo( BindImageMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImageMemoryDeviceGroupInfo( VkBindImageMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BindImageMemoryDeviceGroupInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindImageMemoryDeviceGroupInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceIndices_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - splitInstanceBindRegions_ = {} ) - : deviceIndexCount( static_cast( deviceIndices_.size() ) ) - , pDeviceIndices( deviceIndices_.data() ) - , splitInstanceBindRegionCount( static_cast( splitInstanceBindRegions_.size() ) ) - , pSplitInstanceBindRegions( splitInstanceBindRegions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindImageMemoryDeviceGroupInfo & - operator=( BindImageMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImageMemoryDeviceGroupInfo & operator=( VkBindImageMemoryDeviceGroupInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryDeviceGroupInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryDeviceGroupInfo & - setDeviceIndexCount( uint32_t deviceIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndexCount = deviceIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryDeviceGroupInfo & - setPDeviceIndices( const uint32_t * pDeviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - pDeviceIndices = pDeviceIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindImageMemoryDeviceGroupInfo & setDeviceIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndexCount = static_cast( deviceIndices_.size() ); - pDeviceIndices = deviceIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryDeviceGroupInfo & - setSplitInstanceBindRegionCount( uint32_t splitInstanceBindRegionCount_ ) VULKAN_HPP_NOEXCEPT - { - splitInstanceBindRegionCount = splitInstanceBindRegionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryDeviceGroupInfo & setPSplitInstanceBindRegions( - const VULKAN_HPP_NAMESPACE::Rect2D * pSplitInstanceBindRegions_ ) VULKAN_HPP_NOEXCEPT - { - pSplitInstanceBindRegions = pSplitInstanceBindRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindImageMemoryDeviceGroupInfo & setSplitInstanceBindRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - splitInstanceBindRegions_ ) VULKAN_HPP_NOEXCEPT - { - splitInstanceBindRegionCount = static_cast( splitInstanceBindRegions_.size() ); - pSplitInstanceBindRegions = splitInstanceBindRegions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindImageMemoryDeviceGroupInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindImageMemoryDeviceGroupInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, deviceIndexCount, pDeviceIndices, splitInstanceBindRegionCount, pSplitInstanceBindRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindImageMemoryDeviceGroupInfo const & ) const = default; -#else - bool operator==( BindImageMemoryDeviceGroupInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceIndexCount == rhs.deviceIndexCount ) && - ( pDeviceIndices == rhs.pDeviceIndices ) && - ( splitInstanceBindRegionCount == rhs.splitInstanceBindRegionCount ) && - ( pSplitInstanceBindRegions == rhs.pSplitInstanceBindRegions ); -# endif - } - - bool operator!=( BindImageMemoryDeviceGroupInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindImageMemoryDeviceGroupInfo; - const void * pNext = {}; - uint32_t deviceIndexCount = {}; - const uint32_t * pDeviceIndices = {}; - uint32_t splitInstanceBindRegionCount = {}; - const VULKAN_HPP_NAMESPACE::Rect2D * pSplitInstanceBindRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindImageMemoryDeviceGroupInfo ) == - sizeof( VkBindImageMemoryDeviceGroupInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindImageMemoryDeviceGroupInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindImageMemoryDeviceGroupInfo; - }; - using BindImageMemoryDeviceGroupInfoKHR = BindImageMemoryDeviceGroupInfo; - - struct BindImageMemoryInfo - { - using NativeType = VkBindImageMemoryInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindImageMemoryInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindImageMemoryInfo( VULKAN_HPP_NAMESPACE::Image image_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR BindImageMemoryInfo( BindImageMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImageMemoryInfo( VkBindImageMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BindImageMemoryInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindImageMemoryInfo & operator=( BindImageMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImageMemoryInfo & operator=( VkBindImageMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryInfo & setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryInfo & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemoryInfo & - setMemoryOffset( VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ ) VULKAN_HPP_NOEXCEPT - { - memoryOffset = memoryOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindImageMemoryInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindImageMemoryInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, image, memory, memoryOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindImageMemoryInfo const & ) const = default; -#else - bool operator==( BindImageMemoryInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( image == rhs.image ) && ( memory == rhs.memory ) && - ( memoryOffset == rhs.memoryOffset ); -# endif - } - - bool operator!=( BindImageMemoryInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindImageMemoryInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindImageMemoryInfo ) == sizeof( VkBindImageMemoryInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BindImageMemoryInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindImageMemoryInfo; - }; - using BindImageMemoryInfoKHR = BindImageMemoryInfo; - - struct BindImageMemorySwapchainInfoKHR - { - using NativeType = VkBindImageMemorySwapchainInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindImageMemorySwapchainInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindImageMemorySwapchainInfoKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ = {}, - uint32_t imageIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : swapchain( swapchain_ ) - , imageIndex( imageIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - BindImageMemorySwapchainInfoKHR( BindImageMemorySwapchainInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImageMemorySwapchainInfoKHR( VkBindImageMemorySwapchainInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : BindImageMemorySwapchainInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindImageMemorySwapchainInfoKHR & - operator=( BindImageMemorySwapchainInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImageMemorySwapchainInfoKHR & operator=( VkBindImageMemorySwapchainInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindImageMemorySwapchainInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemorySwapchainInfoKHR & - setSwapchain( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ ) VULKAN_HPP_NOEXCEPT - { - swapchain = swapchain_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImageMemorySwapchainInfoKHR & setImageIndex( uint32_t imageIndex_ ) VULKAN_HPP_NOEXCEPT - { - imageIndex = imageIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindImageMemorySwapchainInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindImageMemorySwapchainInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchain, imageIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindImageMemorySwapchainInfoKHR const & ) const = default; -#else - bool operator==( BindImageMemorySwapchainInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchain == rhs.swapchain ) && - ( imageIndex == rhs.imageIndex ); -# endif - } - - bool operator!=( BindImageMemorySwapchainInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindImageMemorySwapchainInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain = {}; - uint32_t imageIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindImageMemorySwapchainInfoKHR ) == - sizeof( VkBindImageMemorySwapchainInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindImageMemorySwapchainInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindImageMemorySwapchainInfoKHR; - }; - - struct BindImagePlaneMemoryInfo - { - using NativeType = VkBindImagePlaneMemoryInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindImagePlaneMemoryInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BindImagePlaneMemoryInfo( VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect_ = - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits::eColor ) VULKAN_HPP_NOEXCEPT - : planeAspect( planeAspect_ ) - {} - - VULKAN_HPP_CONSTEXPR BindImagePlaneMemoryInfo( BindImagePlaneMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImagePlaneMemoryInfo( VkBindImagePlaneMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BindImagePlaneMemoryInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindImagePlaneMemoryInfo & operator=( BindImagePlaneMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindImagePlaneMemoryInfo & operator=( VkBindImagePlaneMemoryInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindImagePlaneMemoryInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindImagePlaneMemoryInfo & - setPlaneAspect( VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect_ ) VULKAN_HPP_NOEXCEPT - { - planeAspect = planeAspect_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindImagePlaneMemoryInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindImagePlaneMemoryInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, planeAspect ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindImagePlaneMemoryInfo const & ) const = default; -#else - bool operator==( BindImagePlaneMemoryInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( planeAspect == rhs.planeAspect ); -# endif - } - - bool operator!=( BindImagePlaneMemoryInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindImagePlaneMemoryInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect = VULKAN_HPP_NAMESPACE::ImageAspectFlagBits::eColor; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindImagePlaneMemoryInfo ) == - sizeof( VkBindImagePlaneMemoryInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BindImagePlaneMemoryInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindImagePlaneMemoryInfo; - }; - using BindImagePlaneMemoryInfoKHR = BindImagePlaneMemoryInfo; - - struct BindIndexBufferIndirectCommandNV - { - using NativeType = VkBindIndexBufferIndirectCommandNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindIndexBufferIndirectCommandNV( - VULKAN_HPP_NAMESPACE::DeviceAddress bufferAddress_ = {}, - uint32_t size_ = {}, - VULKAN_HPP_NAMESPACE::IndexType indexType_ = VULKAN_HPP_NAMESPACE::IndexType::eUint16 ) VULKAN_HPP_NOEXCEPT - : bufferAddress( bufferAddress_ ) - , size( size_ ) - , indexType( indexType_ ) - {} - - VULKAN_HPP_CONSTEXPR - BindIndexBufferIndirectCommandNV( BindIndexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindIndexBufferIndirectCommandNV( VkBindIndexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - : BindIndexBufferIndirectCommandNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindIndexBufferIndirectCommandNV & - operator=( BindIndexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindIndexBufferIndirectCommandNV & operator=( VkBindIndexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindIndexBufferIndirectCommandNV & - setBufferAddress( VULKAN_HPP_NAMESPACE::DeviceAddress bufferAddress_ ) VULKAN_HPP_NOEXCEPT - { - bufferAddress = bufferAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindIndexBufferIndirectCommandNV & setSize( uint32_t size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindIndexBufferIndirectCommandNV & - setIndexType( VULKAN_HPP_NAMESPACE::IndexType indexType_ ) VULKAN_HPP_NOEXCEPT - { - indexType = indexType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindIndexBufferIndirectCommandNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindIndexBufferIndirectCommandNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( bufferAddress, size, indexType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindIndexBufferIndirectCommandNV const & ) const = default; -#else - bool operator==( BindIndexBufferIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( bufferAddress == rhs.bufferAddress ) && ( size == rhs.size ) && ( indexType == rhs.indexType ); -# endif - } - - bool operator!=( BindIndexBufferIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceAddress bufferAddress = {}; - uint32_t size = {}; - VULKAN_HPP_NAMESPACE::IndexType indexType = VULKAN_HPP_NAMESPACE::IndexType::eUint16; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindIndexBufferIndirectCommandNV ) == - sizeof( VkBindIndexBufferIndirectCommandNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindIndexBufferIndirectCommandNV is not nothrow_move_constructible!" ); - - struct BindShaderGroupIndirectCommandNV - { - using NativeType = VkBindShaderGroupIndirectCommandNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindShaderGroupIndirectCommandNV( uint32_t groupIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : groupIndex( groupIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - BindShaderGroupIndirectCommandNV( BindShaderGroupIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindShaderGroupIndirectCommandNV( VkBindShaderGroupIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - : BindShaderGroupIndirectCommandNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindShaderGroupIndirectCommandNV & - operator=( BindShaderGroupIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindShaderGroupIndirectCommandNV & operator=( VkBindShaderGroupIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindShaderGroupIndirectCommandNV & setGroupIndex( uint32_t groupIndex_ ) VULKAN_HPP_NOEXCEPT - { - groupIndex = groupIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindShaderGroupIndirectCommandNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindShaderGroupIndirectCommandNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( groupIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindShaderGroupIndirectCommandNV const & ) const = default; -#else - bool operator==( BindShaderGroupIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( groupIndex == rhs.groupIndex ); -# endif - } - - bool operator!=( BindShaderGroupIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t groupIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindShaderGroupIndirectCommandNV ) == - sizeof( VkBindShaderGroupIndirectCommandNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindShaderGroupIndirectCommandNV is not nothrow_move_constructible!" ); - - struct SparseMemoryBind - { - using NativeType = VkSparseMemoryBind; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SparseMemoryBind( VULKAN_HPP_NAMESPACE::DeviceSize resourceOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ = {}, - VULKAN_HPP_NAMESPACE::SparseMemoryBindFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : resourceOffset( resourceOffset_ ) - , size( size_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR SparseMemoryBind( SparseMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseMemoryBind( VkSparseMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseMemoryBind( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseMemoryBind & operator=( SparseMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseMemoryBind & operator=( VkSparseMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SparseMemoryBind & - setResourceOffset( VULKAN_HPP_NAMESPACE::DeviceSize resourceOffset_ ) VULKAN_HPP_NOEXCEPT - { - resourceOffset = resourceOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseMemoryBind & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseMemoryBind & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseMemoryBind & - setMemoryOffset( VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ ) VULKAN_HPP_NOEXCEPT - { - memoryOffset = memoryOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseMemoryBind & - setFlags( VULKAN_HPP_NAMESPACE::SparseMemoryBindFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSparseMemoryBind const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseMemoryBind &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( resourceOffset, size, memory, memoryOffset, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseMemoryBind const & ) const = default; -#else - bool operator==( SparseMemoryBind const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( resourceOffset == rhs.resourceOffset ) && ( size == rhs.size ) && ( memory == rhs.memory ) && - ( memoryOffset == rhs.memoryOffset ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( SparseMemoryBind const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceSize resourceOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset = {}; - VULKAN_HPP_NAMESPACE::SparseMemoryBindFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseMemoryBind ) == sizeof( VkSparseMemoryBind ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SparseMemoryBind is not nothrow_move_constructible!" ); - - struct SparseBufferMemoryBindInfo - { - using NativeType = VkSparseBufferMemoryBindInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SparseBufferMemoryBindInfo( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - uint32_t bindCount_ = {}, - const VULKAN_HPP_NAMESPACE::SparseMemoryBind * pBinds_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - , bindCount( bindCount_ ) - , pBinds( pBinds_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseBufferMemoryBindInfo( SparseBufferMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseBufferMemoryBindInfo( VkSparseBufferMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseBufferMemoryBindInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SparseBufferMemoryBindInfo( - VULKAN_HPP_NAMESPACE::Buffer buffer_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & binds_ ) - : buffer( buffer_ ), bindCount( static_cast( binds_.size() ) ), pBinds( binds_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseBufferMemoryBindInfo & operator=( SparseBufferMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseBufferMemoryBindInfo & operator=( VkSparseBufferMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SparseBufferMemoryBindInfo & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseBufferMemoryBindInfo & setBindCount( uint32_t bindCount_ ) VULKAN_HPP_NOEXCEPT - { - bindCount = bindCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseBufferMemoryBindInfo & - setPBinds( const VULKAN_HPP_NAMESPACE::SparseMemoryBind * pBinds_ ) VULKAN_HPP_NOEXCEPT - { - pBinds = pBinds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SparseBufferMemoryBindInfo & setBinds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & binds_ ) - VULKAN_HPP_NOEXCEPT - { - bindCount = static_cast( binds_.size() ); - pBinds = binds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSparseBufferMemoryBindInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseBufferMemoryBindInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( buffer, bindCount, pBinds ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseBufferMemoryBindInfo const & ) const = default; -#else - bool operator==( SparseBufferMemoryBindInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( buffer == rhs.buffer ) && ( bindCount == rhs.bindCount ) && ( pBinds == rhs.pBinds ); -# endif - } - - bool operator!=( SparseBufferMemoryBindInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - uint32_t bindCount = {}; - const VULKAN_HPP_NAMESPACE::SparseMemoryBind * pBinds = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseBufferMemoryBindInfo ) == - sizeof( VkSparseBufferMemoryBindInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SparseBufferMemoryBindInfo is not nothrow_move_constructible!" ); - - struct SparseImageOpaqueMemoryBindInfo - { - using NativeType = VkSparseImageOpaqueMemoryBindInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SparseImageOpaqueMemoryBindInfo( VULKAN_HPP_NAMESPACE::Image image_ = {}, - uint32_t bindCount_ = {}, - const VULKAN_HPP_NAMESPACE::SparseMemoryBind * pBinds_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - , bindCount( bindCount_ ) - , pBinds( pBinds_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseImageOpaqueMemoryBindInfo( SparseImageOpaqueMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageOpaqueMemoryBindInfo( VkSparseImageOpaqueMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageOpaqueMemoryBindInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SparseImageOpaqueMemoryBindInfo( - VULKAN_HPP_NAMESPACE::Image image_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & binds_ ) - : image( image_ ), bindCount( static_cast( binds_.size() ) ), pBinds( binds_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageOpaqueMemoryBindInfo & - operator=( SparseImageOpaqueMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageOpaqueMemoryBindInfo & operator=( VkSparseImageOpaqueMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SparseImageOpaqueMemoryBindInfo & - setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageOpaqueMemoryBindInfo & setBindCount( uint32_t bindCount_ ) VULKAN_HPP_NOEXCEPT - { - bindCount = bindCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageOpaqueMemoryBindInfo & - setPBinds( const VULKAN_HPP_NAMESPACE::SparseMemoryBind * pBinds_ ) VULKAN_HPP_NOEXCEPT - { - pBinds = pBinds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SparseImageOpaqueMemoryBindInfo & setBinds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & binds_ ) - VULKAN_HPP_NOEXCEPT - { - bindCount = static_cast( binds_.size() ); - pBinds = binds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSparseImageOpaqueMemoryBindInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageOpaqueMemoryBindInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( image, bindCount, pBinds ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageOpaqueMemoryBindInfo const & ) const = default; -#else - bool operator==( SparseImageOpaqueMemoryBindInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( image == rhs.image ) && ( bindCount == rhs.bindCount ) && ( pBinds == rhs.pBinds ); -# endif - } - - bool operator!=( SparseImageOpaqueMemoryBindInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Image image = {}; - uint32_t bindCount = {}; - const VULKAN_HPP_NAMESPACE::SparseMemoryBind * pBinds = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageOpaqueMemoryBindInfo ) == - sizeof( VkSparseImageOpaqueMemoryBindInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SparseImageOpaqueMemoryBindInfo is not nothrow_move_constructible!" ); - - struct ImageSubresource - { - using NativeType = VkImageSubresource; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageSubresource( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {}, - uint32_t mipLevel_ = {}, - uint32_t arrayLayer_ = {} ) VULKAN_HPP_NOEXCEPT - : aspectMask( aspectMask_ ) - , mipLevel( mipLevel_ ) - , arrayLayer( arrayLayer_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageSubresource( ImageSubresource const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSubresource( VkImageSubresource const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageSubresource( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageSubresource & operator=( ImageSubresource const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSubresource & operator=( VkImageSubresource const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageSubresource & - setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT - { - aspectMask = aspectMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresource & setMipLevel( uint32_t mipLevel_ ) VULKAN_HPP_NOEXCEPT - { - mipLevel = mipLevel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresource & setArrayLayer( uint32_t arrayLayer_ ) VULKAN_HPP_NOEXCEPT - { - arrayLayer = arrayLayer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageSubresource const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageSubresource &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( aspectMask, mipLevel, arrayLayer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageSubresource const & ) const = default; -#else - bool operator==( ImageSubresource const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( aspectMask == rhs.aspectMask ) && ( mipLevel == rhs.mipLevel ) && ( arrayLayer == rhs.arrayLayer ); -# endif - } - - bool operator!=( ImageSubresource const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - uint32_t mipLevel = {}; - uint32_t arrayLayer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageSubresource ) == sizeof( VkImageSubresource ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageSubresource is not nothrow_move_constructible!" ); - - struct Offset3D - { - using NativeType = VkOffset3D; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR Offset3D( int32_t x_ = {}, int32_t y_ = {}, int32_t z_ = {} ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - , z( z_ ) - {} - - VULKAN_HPP_CONSTEXPR Offset3D( Offset3D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Offset3D( VkOffset3D const & rhs ) VULKAN_HPP_NOEXCEPT : Offset3D( *reinterpret_cast( &rhs ) ) {} - - explicit Offset3D( Offset2D const & offset2D, int32_t z_ = {} ) : x( offset2D.x ), y( offset2D.y ), z( z_ ) {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Offset3D & operator=( Offset3D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Offset3D & operator=( VkOffset3D const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Offset3D & setX( int32_t x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Offset3D & setY( int32_t y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Offset3D & setZ( int32_t z_ ) VULKAN_HPP_NOEXCEPT - { - z = z_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkOffset3D const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkOffset3D &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y, z ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Offset3D const & ) const = default; -#else - bool operator==( Offset3D const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ) && ( z == rhs.z ); -# endif - } - - bool operator!=( Offset3D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - int32_t x = {}; - int32_t y = {}; - int32_t z = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Offset3D ) == sizeof( VkOffset3D ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Offset3D is not nothrow_move_constructible!" ); - - struct Extent3D - { - using NativeType = VkExtent3D; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - Extent3D( uint32_t width_ = {}, uint32_t height_ = {}, uint32_t depth_ = {} ) VULKAN_HPP_NOEXCEPT - : width( width_ ) - , height( height_ ) - , depth( depth_ ) - {} - - VULKAN_HPP_CONSTEXPR Extent3D( Extent3D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Extent3D( VkExtent3D const & rhs ) VULKAN_HPP_NOEXCEPT : Extent3D( *reinterpret_cast( &rhs ) ) {} - - explicit Extent3D( Extent2D const & extent2D, uint32_t depth_ = {} ) - : width( extent2D.width ), height( extent2D.height ), depth( depth_ ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Extent3D & operator=( Extent3D const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Extent3D & operator=( VkExtent3D const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Extent3D & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT - { - width = width_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Extent3D & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT - { - height = height_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Extent3D & setDepth( uint32_t depth_ ) VULKAN_HPP_NOEXCEPT - { - depth = depth_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExtent3D const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExtent3D &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( width, height, depth ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Extent3D const & ) const = default; -#else - bool operator==( Extent3D const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( width == rhs.width ) && ( height == rhs.height ) && ( depth == rhs.depth ); -# endif - } - - bool operator!=( Extent3D const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t width = {}; - uint32_t height = {}; - uint32_t depth = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Extent3D ) == sizeof( VkExtent3D ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Extent3D is not nothrow_move_constructible!" ); - - struct SparseImageMemoryBind - { - using NativeType = VkSparseImageMemoryBind; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SparseImageMemoryBind( VULKAN_HPP_NAMESPACE::ImageSubresource subresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D offset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D extent_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ = {}, - VULKAN_HPP_NAMESPACE::SparseMemoryBindFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : subresource( subresource_ ) - , offset( offset_ ) - , extent( extent_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR SparseImageMemoryBind( SparseImageMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryBind( VkSparseImageMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageMemoryBind( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageMemoryBind & operator=( SparseImageMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryBind & operator=( VkSparseImageMemoryBind const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBind & - setSubresource( VULKAN_HPP_NAMESPACE::ImageSubresource const & subresource_ ) VULKAN_HPP_NOEXCEPT - { - subresource = subresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBind & - setOffset( VULKAN_HPP_NAMESPACE::Offset3D const & offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBind & - setExtent( VULKAN_HPP_NAMESPACE::Extent3D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBind & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBind & - setMemoryOffset( VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ ) VULKAN_HPP_NOEXCEPT - { - memoryOffset = memoryOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBind & - setFlags( VULKAN_HPP_NAMESPACE::SparseMemoryBindFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSparseImageMemoryBind const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageMemoryBind &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( subresource, offset, extent, memory, memoryOffset, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageMemoryBind const & ) const = default; -#else - bool operator==( SparseImageMemoryBind const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( subresource == rhs.subresource ) && ( offset == rhs.offset ) && ( extent == rhs.extent ) && - ( memory == rhs.memory ) && ( memoryOffset == rhs.memoryOffset ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( SparseImageMemoryBind const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageSubresource subresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D offset = {}; - VULKAN_HPP_NAMESPACE::Extent3D extent = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset = {}; - VULKAN_HPP_NAMESPACE::SparseMemoryBindFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageMemoryBind ) == sizeof( VkSparseImageMemoryBind ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SparseImageMemoryBind is not nothrow_move_constructible!" ); - - struct SparseImageMemoryBindInfo - { - using NativeType = VkSparseImageMemoryBindInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SparseImageMemoryBindInfo( VULKAN_HPP_NAMESPACE::Image image_ = {}, - uint32_t bindCount_ = {}, - const VULKAN_HPP_NAMESPACE::SparseImageMemoryBind * pBinds_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - , bindCount( bindCount_ ) - , pBinds( pBinds_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseImageMemoryBindInfo( SparseImageMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryBindInfo( VkSparseImageMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageMemoryBindInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SparseImageMemoryBindInfo( - VULKAN_HPP_NAMESPACE::Image image_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & binds_ ) - : image( image_ ), bindCount( static_cast( binds_.size() ) ), pBinds( binds_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageMemoryBindInfo & operator=( SparseImageMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryBindInfo & operator=( VkSparseImageMemoryBindInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBindInfo & - setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBindInfo & setBindCount( uint32_t bindCount_ ) VULKAN_HPP_NOEXCEPT - { - bindCount = bindCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SparseImageMemoryBindInfo & - setPBinds( const VULKAN_HPP_NAMESPACE::SparseImageMemoryBind * pBinds_ ) VULKAN_HPP_NOEXCEPT - { - pBinds = pBinds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SparseImageMemoryBindInfo & setBinds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & binds_ ) - VULKAN_HPP_NOEXCEPT - { - bindCount = static_cast( binds_.size() ); - pBinds = binds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSparseImageMemoryBindInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageMemoryBindInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( image, bindCount, pBinds ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageMemoryBindInfo const & ) const = default; -#else - bool operator==( SparseImageMemoryBindInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( image == rhs.image ) && ( bindCount == rhs.bindCount ) && ( pBinds == rhs.pBinds ); -# endif - } - - bool operator!=( SparseImageMemoryBindInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Image image = {}; - uint32_t bindCount = {}; - const VULKAN_HPP_NAMESPACE::SparseImageMemoryBind * pBinds = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageMemoryBindInfo ) == - sizeof( VkSparseImageMemoryBindInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SparseImageMemoryBindInfo is not nothrow_move_constructible!" ); - - struct BindSparseInfo - { - using NativeType = VkBindSparseInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBindSparseInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BindSparseInfo( uint32_t waitSemaphoreCount_ = {}, - const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores_ = {}, - uint32_t bufferBindCount_ = {}, - const VULKAN_HPP_NAMESPACE::SparseBufferMemoryBindInfo * pBufferBinds_ = {}, - uint32_t imageOpaqueBindCount_ = {}, - const VULKAN_HPP_NAMESPACE::SparseImageOpaqueMemoryBindInfo * pImageOpaqueBinds_ = {}, - uint32_t imageBindCount_ = {}, - const VULKAN_HPP_NAMESPACE::SparseImageMemoryBindInfo * pImageBinds_ = {}, - uint32_t signalSemaphoreCount_ = {}, - const VULKAN_HPP_NAMESPACE::Semaphore * pSignalSemaphores_ = {} ) VULKAN_HPP_NOEXCEPT - : waitSemaphoreCount( waitSemaphoreCount_ ) - , pWaitSemaphores( pWaitSemaphores_ ) - , bufferBindCount( bufferBindCount_ ) - , pBufferBinds( pBufferBinds_ ) - , imageOpaqueBindCount( imageOpaqueBindCount_ ) - , pImageOpaqueBinds( pImageOpaqueBinds_ ) - , imageBindCount( imageBindCount_ ) - , pImageBinds( pImageBinds_ ) - , signalSemaphoreCount( signalSemaphoreCount_ ) - , pSignalSemaphores( pSignalSemaphores_ ) - {} - - VULKAN_HPP_CONSTEXPR BindSparseInfo( BindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindSparseInfo( VkBindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BindSparseInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindSparseInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphores_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bufferBinds_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageOpaqueBinds_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageBinds_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - signalSemaphores_ = {} ) - : waitSemaphoreCount( static_cast( waitSemaphores_.size() ) ) - , pWaitSemaphores( waitSemaphores_.data() ) - , bufferBindCount( static_cast( bufferBinds_.size() ) ) - , pBufferBinds( bufferBinds_.data() ) - , imageOpaqueBindCount( static_cast( imageOpaqueBinds_.size() ) ) - , pImageOpaqueBinds( imageOpaqueBinds_.data() ) - , imageBindCount( static_cast( imageBinds_.size() ) ) - , pImageBinds( imageBinds_.data() ) - , signalSemaphoreCount( static_cast( signalSemaphores_.size() ) ) - , pSignalSemaphores( signalSemaphores_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindSparseInfo & operator=( BindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindSparseInfo & operator=( VkBindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = waitSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & - setPWaitSemaphores( const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphores = pWaitSemaphores_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindSparseInfo & setWaitSemaphores( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphores_ ) - VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = static_cast( waitSemaphores_.size() ); - pWaitSemaphores = waitSemaphores_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & setBufferBindCount( uint32_t bufferBindCount_ ) VULKAN_HPP_NOEXCEPT - { - bufferBindCount = bufferBindCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & - setPBufferBinds( const VULKAN_HPP_NAMESPACE::SparseBufferMemoryBindInfo * pBufferBinds_ ) VULKAN_HPP_NOEXCEPT - { - pBufferBinds = pBufferBinds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindSparseInfo & setBufferBinds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bufferBinds_ ) VULKAN_HPP_NOEXCEPT - { - bufferBindCount = static_cast( bufferBinds_.size() ); - pBufferBinds = bufferBinds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & - setImageOpaqueBindCount( uint32_t imageOpaqueBindCount_ ) VULKAN_HPP_NOEXCEPT - { - imageOpaqueBindCount = imageOpaqueBindCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & setPImageOpaqueBinds( - const VULKAN_HPP_NAMESPACE::SparseImageOpaqueMemoryBindInfo * pImageOpaqueBinds_ ) VULKAN_HPP_NOEXCEPT - { - pImageOpaqueBinds = pImageOpaqueBinds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindSparseInfo & setImageOpaqueBinds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageOpaqueBinds_ ) VULKAN_HPP_NOEXCEPT - { - imageOpaqueBindCount = static_cast( imageOpaqueBinds_.size() ); - pImageOpaqueBinds = imageOpaqueBinds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & setImageBindCount( uint32_t imageBindCount_ ) VULKAN_HPP_NOEXCEPT - { - imageBindCount = imageBindCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & - setPImageBinds( const VULKAN_HPP_NAMESPACE::SparseImageMemoryBindInfo * pImageBinds_ ) VULKAN_HPP_NOEXCEPT - { - pImageBinds = pImageBinds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindSparseInfo & setImageBinds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageBinds_ ) VULKAN_HPP_NOEXCEPT - { - imageBindCount = static_cast( imageBinds_.size() ); - pImageBinds = imageBinds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & - setSignalSemaphoreCount( uint32_t signalSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreCount = signalSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindSparseInfo & - setPSignalSemaphores( const VULKAN_HPP_NAMESPACE::Semaphore * pSignalSemaphores_ ) VULKAN_HPP_NOEXCEPT - { - pSignalSemaphores = pSignalSemaphores_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BindSparseInfo & setSignalSemaphores( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphores_ ) - VULKAN_HPP_NOEXCEPT - { - signalSemaphoreCount = static_cast( signalSemaphores_.size() ); - pSignalSemaphores = signalSemaphores_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindSparseInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindSparseInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - waitSemaphoreCount, - pWaitSemaphores, - bufferBindCount, - pBufferBinds, - imageOpaqueBindCount, - pImageOpaqueBinds, - imageBindCount, - pImageBinds, - signalSemaphoreCount, - pSignalSemaphores ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindSparseInfo const & ) const = default; -#else - bool operator==( BindSparseInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( waitSemaphoreCount == rhs.waitSemaphoreCount ) && - ( pWaitSemaphores == rhs.pWaitSemaphores ) && ( bufferBindCount == rhs.bufferBindCount ) && - ( pBufferBinds == rhs.pBufferBinds ) && ( imageOpaqueBindCount == rhs.imageOpaqueBindCount ) && - ( pImageOpaqueBinds == rhs.pImageOpaqueBinds ) && ( imageBindCount == rhs.imageBindCount ) && - ( pImageBinds == rhs.pImageBinds ) && ( signalSemaphoreCount == rhs.signalSemaphoreCount ) && - ( pSignalSemaphores == rhs.pSignalSemaphores ); -# endif - } - - bool operator!=( BindSparseInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBindSparseInfo; - const void * pNext = {}; - uint32_t waitSemaphoreCount = {}; - const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores = {}; - uint32_t bufferBindCount = {}; - const VULKAN_HPP_NAMESPACE::SparseBufferMemoryBindInfo * pBufferBinds = {}; - uint32_t imageOpaqueBindCount = {}; - const VULKAN_HPP_NAMESPACE::SparseImageOpaqueMemoryBindInfo * pImageOpaqueBinds = {}; - uint32_t imageBindCount = {}; - const VULKAN_HPP_NAMESPACE::SparseImageMemoryBindInfo * pImageBinds = {}; - uint32_t signalSemaphoreCount = {}; - const VULKAN_HPP_NAMESPACE::Semaphore * pSignalSemaphores = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindSparseInfo ) == sizeof( VkBindSparseInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BindSparseInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BindSparseInfo; - }; - - struct BindVertexBufferIndirectCommandNV - { - using NativeType = VkBindVertexBufferIndirectCommandNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BindVertexBufferIndirectCommandNV( VULKAN_HPP_NAMESPACE::DeviceAddress bufferAddress_ = {}, - uint32_t size_ = {}, - uint32_t stride_ = {} ) VULKAN_HPP_NOEXCEPT - : bufferAddress( bufferAddress_ ) - , size( size_ ) - , stride( stride_ ) - {} - - VULKAN_HPP_CONSTEXPR - BindVertexBufferIndirectCommandNV( BindVertexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindVertexBufferIndirectCommandNV( VkBindVertexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - : BindVertexBufferIndirectCommandNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BindVertexBufferIndirectCommandNV & - operator=( BindVertexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BindVertexBufferIndirectCommandNV & operator=( VkBindVertexBufferIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BindVertexBufferIndirectCommandNV & - setBufferAddress( VULKAN_HPP_NAMESPACE::DeviceAddress bufferAddress_ ) VULKAN_HPP_NOEXCEPT - { - bufferAddress = bufferAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindVertexBufferIndirectCommandNV & setSize( uint32_t size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BindVertexBufferIndirectCommandNV & setStride( uint32_t stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBindVertexBufferIndirectCommandNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBindVertexBufferIndirectCommandNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( bufferAddress, size, stride ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BindVertexBufferIndirectCommandNV const & ) const = default; -#else - bool operator==( BindVertexBufferIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( bufferAddress == rhs.bufferAddress ) && ( size == rhs.size ) && ( stride == rhs.stride ); -# endif - } - - bool operator!=( BindVertexBufferIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceAddress bufferAddress = {}; - uint32_t size = {}; - uint32_t stride = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BindVertexBufferIndirectCommandNV ) == - sizeof( VkBindVertexBufferIndirectCommandNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BindVertexBufferIndirectCommandNV is not nothrow_move_constructible!" ); - - struct ImageSubresourceLayers - { - using NativeType = VkImageSubresourceLayers; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageSubresourceLayers( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {}, - uint32_t mipLevel_ = {}, - uint32_t baseArrayLayer_ = {}, - uint32_t layerCount_ = {} ) VULKAN_HPP_NOEXCEPT - : aspectMask( aspectMask_ ) - , mipLevel( mipLevel_ ) - , baseArrayLayer( baseArrayLayer_ ) - , layerCount( layerCount_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageSubresourceLayers( ImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSubresourceLayers( VkImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageSubresourceLayers( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageSubresourceLayers & operator=( ImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSubresourceLayers & operator=( VkImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceLayers & - setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT - { - aspectMask = aspectMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceLayers & setMipLevel( uint32_t mipLevel_ ) VULKAN_HPP_NOEXCEPT - { - mipLevel = mipLevel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceLayers & setBaseArrayLayer( uint32_t baseArrayLayer_ ) VULKAN_HPP_NOEXCEPT - { - baseArrayLayer = baseArrayLayer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceLayers & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = layerCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageSubresourceLayers const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageSubresourceLayers &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( aspectMask, mipLevel, baseArrayLayer, layerCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageSubresourceLayers const & ) const = default; -#else - bool operator==( ImageSubresourceLayers const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( aspectMask == rhs.aspectMask ) && ( mipLevel == rhs.mipLevel ) && - ( baseArrayLayer == rhs.baseArrayLayer ) && ( layerCount == rhs.layerCount ); -# endif - } - - bool operator!=( ImageSubresourceLayers const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - uint32_t mipLevel = {}; - uint32_t baseArrayLayer = {}; - uint32_t layerCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers ) == - sizeof( VkImageSubresourceLayers ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageSubresourceLayers is not nothrow_move_constructible!" ); - - struct ImageBlit2 - { - using NativeType = VkImageBlit2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageBlit2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - ImageBlit2( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource_ = {}, - std::array const & srcOffsets_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource_ = {}, - std::array const & dstOffsets_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubresource( srcSubresource_ ) - , srcOffsets( srcOffsets_ ) - , dstSubresource( dstSubresource_ ) - , dstOffsets( dstOffsets_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 ImageBlit2( ImageBlit2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageBlit2( VkImageBlit2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageBlit2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageBlit2 & operator=( ImageBlit2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageBlit2 & operator=( VkImageBlit2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageBlit2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit2 & - setSrcSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & srcSubresource_ ) VULKAN_HPP_NOEXCEPT - { - srcSubresource = srcSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit2 & - setSrcOffsets( std::array const & srcOffsets_ ) VULKAN_HPP_NOEXCEPT - { - srcOffsets = srcOffsets_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit2 & - setDstSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & dstSubresource_ ) VULKAN_HPP_NOEXCEPT - { - dstSubresource = dstSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit2 & - setDstOffsets( std::array const & dstOffsets_ ) VULKAN_HPP_NOEXCEPT - { - dstOffsets = dstOffsets_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageBlit2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageBlit2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcSubresource, srcOffsets, dstSubresource, dstOffsets ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageBlit2 const & ) const = default; -#else - bool operator==( ImageBlit2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcSubresource == rhs.srcSubresource ) && - ( srcOffsets == rhs.srcOffsets ) && ( dstSubresource == rhs.dstSubresource ) && - ( dstOffsets == rhs.dstOffsets ); -# endif - } - - bool operator!=( ImageBlit2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageBlit2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D srcOffsets = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D dstOffsets = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageBlit2 ) == sizeof( VkImageBlit2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageBlit2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageBlit2; - }; - using ImageBlit2KHR = ImageBlit2; - - struct BlitImageInfo2 - { - using NativeType = VkBlitImageInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBlitImageInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::Image dstImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - uint32_t regionCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageBlit2 * pRegions_ = {}, - VULKAN_HPP_NAMESPACE::Filter filter_ = VULKAN_HPP_NAMESPACE::Filter::eNearest ) VULKAN_HPP_NOEXCEPT - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( regionCount_ ) - , pRegions( pRegions_ ) - , filter( filter_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2( BlitImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BlitImageInfo2( VkBlitImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : BlitImageInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BlitImageInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_, - VULKAN_HPP_NAMESPACE::Image dstImage_, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_, - VULKAN_HPP_NAMESPACE::Filter filter_ = VULKAN_HPP_NAMESPACE::Filter::eNearest ) - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( static_cast( regions_.size() ) ) - , pRegions( regions_.data() ) - , filter( filter_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BlitImageInfo2 & operator=( BlitImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BlitImageInfo2 & operator=( VkBlitImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & setSrcImage( VULKAN_HPP_NAMESPACE::Image srcImage_ ) VULKAN_HPP_NOEXCEPT - { - srcImage = srcImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & - setSrcImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - srcImageLayout = srcImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & setDstImage( VULKAN_HPP_NAMESPACE::Image dstImage_ ) VULKAN_HPP_NOEXCEPT - { - dstImage = dstImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & - setDstImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - dstImageLayout = dstImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & setRegionCount( uint32_t regionCount_ ) VULKAN_HPP_NOEXCEPT - { - regionCount = regionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & - setPRegions( const VULKAN_HPP_NAMESPACE::ImageBlit2 * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BlitImageInfo2 & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - regionCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 BlitImageInfo2 & setFilter( VULKAN_HPP_NAMESPACE::Filter filter_ ) VULKAN_HPP_NOEXCEPT - { - filter = filter_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBlitImageInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBlitImageInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions, filter ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BlitImageInfo2 const & ) const = default; -#else - bool operator==( BlitImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcImage == rhs.srcImage ) && - ( srcImageLayout == rhs.srcImageLayout ) && ( dstImage == rhs.dstImage ) && - ( dstImageLayout == rhs.dstImageLayout ) && ( regionCount == rhs.regionCount ) && - ( pRegions == rhs.pRegions ) && ( filter == rhs.filter ); -# endif - } - - bool operator!=( BlitImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBlitImageInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image srcImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::Image dstImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - uint32_t regionCount = {}; - const VULKAN_HPP_NAMESPACE::ImageBlit2 * pRegions = {}; - VULKAN_HPP_NAMESPACE::Filter filter = VULKAN_HPP_NAMESPACE::Filter::eNearest; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BlitImageInfo2 ) == sizeof( VkBlitImageInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BlitImageInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BlitImageInfo2; - }; - using BlitImageInfo2KHR = BlitImageInfo2; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct BufferCollectionBufferCreateInfoFUCHSIA - { - using NativeType = VkBufferCollectionBufferCreateInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBufferCollectionBufferCreateInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BufferCollectionBufferCreateInfoFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection_ = {}, - uint32_t index_ = {} ) VULKAN_HPP_NOEXCEPT - : collection( collection_ ) - , index( index_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferCollectionBufferCreateInfoFUCHSIA( BufferCollectionBufferCreateInfoFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionBufferCreateInfoFUCHSIA( VkBufferCollectionBufferCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCollectionBufferCreateInfoFUCHSIA( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCollectionBufferCreateInfoFUCHSIA & - operator=( BufferCollectionBufferCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionBufferCreateInfoFUCHSIA & - operator=( VkBufferCollectionBufferCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCollectionBufferCreateInfoFUCHSIA & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionBufferCreateInfoFUCHSIA & - setCollection( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection_ ) VULKAN_HPP_NOEXCEPT - { - collection = collection_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionBufferCreateInfoFUCHSIA & setIndex( uint32_t index_ ) VULKAN_HPP_NOEXCEPT - { - index = index_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCollectionBufferCreateInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCollectionBufferCreateInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, collection, index ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCollectionBufferCreateInfoFUCHSIA const & ) const = default; -# else - bool operator==( BufferCollectionBufferCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( collection == rhs.collection ) && - ( index == rhs.index ); -# endif - } - - bool operator!=( BufferCollectionBufferCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCollectionBufferCreateInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection = {}; - uint32_t index = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCollectionBufferCreateInfoFUCHSIA ) == - sizeof( VkBufferCollectionBufferCreateInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferCollectionBufferCreateInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCollectionBufferCreateInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct BufferCollectionConstraintsInfoFUCHSIA - { - using NativeType = VkBufferCollectionConstraintsInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBufferCollectionConstraintsInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BufferCollectionConstraintsInfoFUCHSIA( uint32_t minBufferCount_ = {}, - uint32_t maxBufferCount_ = {}, - uint32_t minBufferCountForCamping_ = {}, - uint32_t minBufferCountForDedicatedSlack_ = {}, - uint32_t minBufferCountForSharedSlack_ = {} ) VULKAN_HPP_NOEXCEPT - : minBufferCount( minBufferCount_ ) - , maxBufferCount( maxBufferCount_ ) - , minBufferCountForCamping( minBufferCountForCamping_ ) - , minBufferCountForDedicatedSlack( minBufferCountForDedicatedSlack_ ) - , minBufferCountForSharedSlack( minBufferCountForSharedSlack_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferCollectionConstraintsInfoFUCHSIA( BufferCollectionConstraintsInfoFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionConstraintsInfoFUCHSIA( VkBufferCollectionConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCollectionConstraintsInfoFUCHSIA( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCollectionConstraintsInfoFUCHSIA & - operator=( BufferCollectionConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionConstraintsInfoFUCHSIA & - operator=( VkBufferCollectionConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCollectionConstraintsInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionConstraintsInfoFUCHSIA & - setMinBufferCount( uint32_t minBufferCount_ ) VULKAN_HPP_NOEXCEPT - { - minBufferCount = minBufferCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionConstraintsInfoFUCHSIA & - setMaxBufferCount( uint32_t maxBufferCount_ ) VULKAN_HPP_NOEXCEPT - { - maxBufferCount = maxBufferCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionConstraintsInfoFUCHSIA & - setMinBufferCountForCamping( uint32_t minBufferCountForCamping_ ) VULKAN_HPP_NOEXCEPT - { - minBufferCountForCamping = minBufferCountForCamping_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionConstraintsInfoFUCHSIA & - setMinBufferCountForDedicatedSlack( uint32_t minBufferCountForDedicatedSlack_ ) VULKAN_HPP_NOEXCEPT - { - minBufferCountForDedicatedSlack = minBufferCountForDedicatedSlack_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionConstraintsInfoFUCHSIA & - setMinBufferCountForSharedSlack( uint32_t minBufferCountForSharedSlack_ ) VULKAN_HPP_NOEXCEPT - { - minBufferCountForSharedSlack = minBufferCountForSharedSlack_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCollectionConstraintsInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCollectionConstraintsInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - minBufferCount, - maxBufferCount, - minBufferCountForCamping, - minBufferCountForDedicatedSlack, - minBufferCountForSharedSlack ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCollectionConstraintsInfoFUCHSIA const & ) const = default; -# else - bool operator==( BufferCollectionConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( minBufferCount == rhs.minBufferCount ) && - ( maxBufferCount == rhs.maxBufferCount ) && ( minBufferCountForCamping == rhs.minBufferCountForCamping ) && - ( minBufferCountForDedicatedSlack == rhs.minBufferCountForDedicatedSlack ) && - ( minBufferCountForSharedSlack == rhs.minBufferCountForSharedSlack ); -# endif - } - - bool operator!=( BufferCollectionConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCollectionConstraintsInfoFUCHSIA; - const void * pNext = {}; - uint32_t minBufferCount = {}; - uint32_t maxBufferCount = {}; - uint32_t minBufferCountForCamping = {}; - uint32_t minBufferCountForDedicatedSlack = {}; - uint32_t minBufferCountForSharedSlack = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA ) == - sizeof( VkBufferCollectionConstraintsInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferCollectionConstraintsInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCollectionConstraintsInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct BufferCollectionCreateInfoFUCHSIA - { - using NativeType = VkBufferCollectionCreateInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBufferCollectionCreateInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferCollectionCreateInfoFUCHSIA( zx_handle_t collectionToken_ = {} ) VULKAN_HPP_NOEXCEPT - : collectionToken( collectionToken_ ) - {} - - VULKAN_HPP_CONSTEXPR - BufferCollectionCreateInfoFUCHSIA( BufferCollectionCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionCreateInfoFUCHSIA( VkBufferCollectionCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCollectionCreateInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCollectionCreateInfoFUCHSIA & - operator=( BufferCollectionCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionCreateInfoFUCHSIA & operator=( VkBufferCollectionCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCollectionCreateInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionCreateInfoFUCHSIA & - setCollectionToken( zx_handle_t collectionToken_ ) VULKAN_HPP_NOEXCEPT - { - collectionToken = collectionToken_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCollectionCreateInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCollectionCreateInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, collectionToken ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( BufferCollectionCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &collectionToken, &rhs.collectionToken, sizeof( zx_handle_t ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( BufferCollectionCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( memcmp( &collectionToken, &rhs.collectionToken, sizeof( zx_handle_t ) ) == 0 ); - } - - bool operator!=( BufferCollectionCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCollectionCreateInfoFUCHSIA; - const void * pNext = {}; - zx_handle_t collectionToken = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCollectionCreateInfoFUCHSIA ) == - sizeof( VkBufferCollectionCreateInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferCollectionCreateInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCollectionCreateInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct BufferCollectionImageCreateInfoFUCHSIA - { - using NativeType = VkBufferCollectionImageCreateInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBufferCollectionImageCreateInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BufferCollectionImageCreateInfoFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection_ = {}, - uint32_t index_ = {} ) VULKAN_HPP_NOEXCEPT - : collection( collection_ ) - , index( index_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferCollectionImageCreateInfoFUCHSIA( BufferCollectionImageCreateInfoFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionImageCreateInfoFUCHSIA( VkBufferCollectionImageCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCollectionImageCreateInfoFUCHSIA( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCollectionImageCreateInfoFUCHSIA & - operator=( BufferCollectionImageCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionImageCreateInfoFUCHSIA & - operator=( VkBufferCollectionImageCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCollectionImageCreateInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionImageCreateInfoFUCHSIA & - setCollection( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection_ ) VULKAN_HPP_NOEXCEPT - { - collection = collection_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionImageCreateInfoFUCHSIA & setIndex( uint32_t index_ ) VULKAN_HPP_NOEXCEPT - { - index = index_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCollectionImageCreateInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCollectionImageCreateInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, collection, index ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCollectionImageCreateInfoFUCHSIA const & ) const = default; -# else - bool operator==( BufferCollectionImageCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( collection == rhs.collection ) && - ( index == rhs.index ); -# endif - } - - bool operator!=( BufferCollectionImageCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCollectionImageCreateInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection = {}; - uint32_t index = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCollectionImageCreateInfoFUCHSIA ) == - sizeof( VkBufferCollectionImageCreateInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferCollectionImageCreateInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCollectionImageCreateInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct SysmemColorSpaceFUCHSIA - { - using NativeType = VkSysmemColorSpaceFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSysmemColorSpaceFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SysmemColorSpaceFUCHSIA( uint32_t colorSpace_ = {} ) VULKAN_HPP_NOEXCEPT - : colorSpace( colorSpace_ ) - {} - - VULKAN_HPP_CONSTEXPR SysmemColorSpaceFUCHSIA( SysmemColorSpaceFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SysmemColorSpaceFUCHSIA( VkSysmemColorSpaceFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : SysmemColorSpaceFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SysmemColorSpaceFUCHSIA & operator=( SysmemColorSpaceFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SysmemColorSpaceFUCHSIA & operator=( VkSysmemColorSpaceFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SysmemColorSpaceFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SysmemColorSpaceFUCHSIA & setColorSpace( uint32_t colorSpace_ ) VULKAN_HPP_NOEXCEPT - { - colorSpace = colorSpace_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSysmemColorSpaceFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSysmemColorSpaceFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, colorSpace ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SysmemColorSpaceFUCHSIA const & ) const = default; -# else - bool operator==( SysmemColorSpaceFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( colorSpace == rhs.colorSpace ); -# endif - } - - bool operator!=( SysmemColorSpaceFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSysmemColorSpaceFUCHSIA; - const void * pNext = {}; - uint32_t colorSpace = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA ) == - sizeof( VkSysmemColorSpaceFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SysmemColorSpaceFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SysmemColorSpaceFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct BufferCollectionPropertiesFUCHSIA - { - using NativeType = VkBufferCollectionPropertiesFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBufferCollectionPropertiesFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferCollectionPropertiesFUCHSIA( - uint32_t memoryTypeBits_ = {}, - uint32_t bufferCount_ = {}, - uint32_t createInfoIndex_ = {}, - uint64_t sysmemPixelFormat_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures_ = {}, - VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA sysmemColorSpaceIndex_ = {}, - VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents_ = {}, - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel_ = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity, - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange_ = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull, - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven, - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset_ = - VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven ) VULKAN_HPP_NOEXCEPT - : memoryTypeBits( memoryTypeBits_ ) - , bufferCount( bufferCount_ ) - , createInfoIndex( createInfoIndex_ ) - , sysmemPixelFormat( sysmemPixelFormat_ ) - , formatFeatures( formatFeatures_ ) - , sysmemColorSpaceIndex( sysmemColorSpaceIndex_ ) - , samplerYcbcrConversionComponents( samplerYcbcrConversionComponents_ ) - , suggestedYcbcrModel( suggestedYcbcrModel_ ) - , suggestedYcbcrRange( suggestedYcbcrRange_ ) - , suggestedXChromaOffset( suggestedXChromaOffset_ ) - , suggestedYChromaOffset( suggestedYChromaOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR - BufferCollectionPropertiesFUCHSIA( BufferCollectionPropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionPropertiesFUCHSIA( VkBufferCollectionPropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCollectionPropertiesFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCollectionPropertiesFUCHSIA & - operator=( BufferCollectionPropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCollectionPropertiesFUCHSIA & operator=( VkBufferCollectionPropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setMemoryTypeBits( uint32_t memoryTypeBits_ ) VULKAN_HPP_NOEXCEPT - { - memoryTypeBits = memoryTypeBits_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setBufferCount( uint32_t bufferCount_ ) VULKAN_HPP_NOEXCEPT - { - bufferCount = bufferCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setCreateInfoIndex( uint32_t createInfoIndex_ ) VULKAN_HPP_NOEXCEPT - { - createInfoIndex = createInfoIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setSysmemPixelFormat( uint64_t sysmemPixelFormat_ ) VULKAN_HPP_NOEXCEPT - { - sysmemPixelFormat = sysmemPixelFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setFormatFeatures( VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures_ ) VULKAN_HPP_NOEXCEPT - { - formatFeatures = formatFeatures_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & setSysmemColorSpaceIndex( - VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA const & sysmemColorSpaceIndex_ ) VULKAN_HPP_NOEXCEPT - { - sysmemColorSpaceIndex = sysmemColorSpaceIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & setSamplerYcbcrConversionComponents( - VULKAN_HPP_NAMESPACE::ComponentMapping const & samplerYcbcrConversionComponents_ ) VULKAN_HPP_NOEXCEPT - { - samplerYcbcrConversionComponents = samplerYcbcrConversionComponents_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & setSuggestedYcbcrModel( - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel_ ) VULKAN_HPP_NOEXCEPT - { - suggestedYcbcrModel = suggestedYcbcrModel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setSuggestedYcbcrRange( VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange_ ) VULKAN_HPP_NOEXCEPT - { - suggestedYcbcrRange = suggestedYcbcrRange_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setSuggestedXChromaOffset( VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset_ ) VULKAN_HPP_NOEXCEPT - { - suggestedXChromaOffset = suggestedXChromaOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCollectionPropertiesFUCHSIA & - setSuggestedYChromaOffset( VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset_ ) VULKAN_HPP_NOEXCEPT - { - suggestedYChromaOffset = suggestedYChromaOffset_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCollectionPropertiesFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCollectionPropertiesFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - memoryTypeBits, - bufferCount, - createInfoIndex, - sysmemPixelFormat, - formatFeatures, - sysmemColorSpaceIndex, - samplerYcbcrConversionComponents, - suggestedYcbcrModel, - suggestedYcbcrRange, - suggestedXChromaOffset, - suggestedYChromaOffset ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCollectionPropertiesFUCHSIA const & ) const = default; -# else - bool operator==( BufferCollectionPropertiesFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryTypeBits == rhs.memoryTypeBits ) && - ( bufferCount == rhs.bufferCount ) && ( createInfoIndex == rhs.createInfoIndex ) && - ( sysmemPixelFormat == rhs.sysmemPixelFormat ) && ( formatFeatures == rhs.formatFeatures ) && - ( sysmemColorSpaceIndex == rhs.sysmemColorSpaceIndex ) && - ( samplerYcbcrConversionComponents == rhs.samplerYcbcrConversionComponents ) && - ( suggestedYcbcrModel == rhs.suggestedYcbcrModel ) && ( suggestedYcbcrRange == rhs.suggestedYcbcrRange ) && - ( suggestedXChromaOffset == rhs.suggestedXChromaOffset ) && - ( suggestedYChromaOffset == rhs.suggestedYChromaOffset ); -# endif - } - - bool operator!=( BufferCollectionPropertiesFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCollectionPropertiesFUCHSIA; - void * pNext = {}; - uint32_t memoryTypeBits = {}; - uint32_t bufferCount = {}; - uint32_t createInfoIndex = {}; - uint64_t sysmemPixelFormat = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures = {}; - VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA sysmemColorSpaceIndex = {}; - VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents = {}; - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity; - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull; - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCollectionPropertiesFUCHSIA ) == - sizeof( VkBufferCollectionPropertiesFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferCollectionPropertiesFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCollectionPropertiesFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct BufferCreateInfo - { - using NativeType = VkBufferCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BufferCreateInfo( VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_ = {}, - VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive, - uint32_t queueFamilyIndexCount_ = {}, - const uint32_t * pQueueFamilyIndices_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , size( size_ ) - , usage( usage_ ) - , sharingMode( sharingMode_ ) - , queueFamilyIndexCount( queueFamilyIndexCount_ ) - , pQueueFamilyIndices( pQueueFamilyIndices_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferCreateInfo( BufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCreateInfo( VkBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BufferCreateInfo( VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_, - VULKAN_HPP_NAMESPACE::DeviceSize size_, - VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_, - VULKAN_HPP_NAMESPACE::SharingMode sharingMode_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_ ) - : flags( flags_ ) - , size( size_ ) - , usage( usage_ ) - , sharingMode( sharingMode_ ) - , queueFamilyIndexCount( static_cast( queueFamilyIndices_.size() ) ) - , pQueueFamilyIndices( queueFamilyIndices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCreateInfo & operator=( BufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCreateInfo & operator=( VkBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & - setUsage( VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & - setSharingMode( VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ ) VULKAN_HPP_NOEXCEPT - { - sharingMode = sharingMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & - setQueueFamilyIndexCount( uint32_t queueFamilyIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = queueFamilyIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCreateInfo & - setPQueueFamilyIndices( const uint32_t * pQueueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - pQueueFamilyIndices = pQueueFamilyIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - BufferCreateInfo & setQueueFamilyIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = static_cast( queueFamilyIndices_.size() ); - pQueueFamilyIndices = queueFamilyIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, size, usage, sharingMode, queueFamilyIndexCount, pQueueFamilyIndices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCreateInfo const & ) const = default; -#else - bool operator==( BufferCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( size == rhs.size ) && - ( usage == rhs.usage ) && ( sharingMode == rhs.sharingMode ) && - ( queueFamilyIndexCount == rhs.queueFamilyIndexCount ) && - ( pQueueFamilyIndices == rhs.pQueueFamilyIndices ); -# endif - } - - bool operator!=( BufferCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::BufferUsageFlags usage = {}; - VULKAN_HPP_NAMESPACE::SharingMode sharingMode = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive; - uint32_t queueFamilyIndexCount = {}; - const uint32_t * pQueueFamilyIndices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCreateInfo ) == sizeof( VkBufferCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCreateInfo; - }; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct BufferConstraintsInfoFUCHSIA - { - using NativeType = VkBufferConstraintsInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferConstraintsInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferConstraintsInfoFUCHSIA( - VULKAN_HPP_NAMESPACE::BufferCreateInfo createInfo_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags requiredFormatFeatures_ = {}, - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints_ = {} ) - VULKAN_HPP_NOEXCEPT - : createInfo( createInfo_ ) - , requiredFormatFeatures( requiredFormatFeatures_ ) - , bufferCollectionConstraints( bufferCollectionConstraints_ ) - {} - - VULKAN_HPP_CONSTEXPR - BufferConstraintsInfoFUCHSIA( BufferConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferConstraintsInfoFUCHSIA( VkBufferConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferConstraintsInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferConstraintsInfoFUCHSIA & operator=( BufferConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferConstraintsInfoFUCHSIA & operator=( VkBufferConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferConstraintsInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferConstraintsInfoFUCHSIA & - setCreateInfo( VULKAN_HPP_NAMESPACE::BufferCreateInfo const & createInfo_ ) VULKAN_HPP_NOEXCEPT - { - createInfo = createInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferConstraintsInfoFUCHSIA & - setRequiredFormatFeatures( VULKAN_HPP_NAMESPACE::FormatFeatureFlags requiredFormatFeatures_ ) VULKAN_HPP_NOEXCEPT - { - requiredFormatFeatures = requiredFormatFeatures_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferConstraintsInfoFUCHSIA & setBufferCollectionConstraints( - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA const & bufferCollectionConstraints_ ) - VULKAN_HPP_NOEXCEPT - { - bufferCollectionConstraints = bufferCollectionConstraints_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferConstraintsInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferConstraintsInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, createInfo, requiredFormatFeatures, bufferCollectionConstraints ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferConstraintsInfoFUCHSIA const & ) const = default; -# else - bool operator==( BufferConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( createInfo == rhs.createInfo ) && - ( requiredFormatFeatures == rhs.requiredFormatFeatures ) && - ( bufferCollectionConstraints == rhs.bufferCollectionConstraints ); -# endif - } - - bool operator!=( BufferConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferConstraintsInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferCreateInfo createInfo = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags requiredFormatFeatures = {}; - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferConstraintsInfoFUCHSIA ) == - sizeof( VkBufferConstraintsInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferConstraintsInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferConstraintsInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct BufferCopy - { - using NativeType = VkBufferCopy; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferCopy( VULKAN_HPP_NAMESPACE::DeviceSize srcOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : srcOffset( srcOffset_ ) - , dstOffset( dstOffset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferCopy( BufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCopy( VkBufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCopy( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCopy & operator=( BufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCopy & operator=( VkBufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCopy & setSrcOffset( VULKAN_HPP_NAMESPACE::DeviceSize srcOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcOffset = srcOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCopy & setDstOffset( VULKAN_HPP_NAMESPACE::DeviceSize dstOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstOffset = dstOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCopy & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCopy const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCopy &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( srcOffset, dstOffset, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCopy const & ) const = default; -#else - bool operator==( BufferCopy const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( srcOffset == rhs.srcOffset ) && ( dstOffset == rhs.dstOffset ) && ( size == rhs.size ); -# endif - } - - bool operator!=( BufferCopy const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceSize srcOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCopy ) == sizeof( VkBufferCopy ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferCopy is not nothrow_move_constructible!" ); - - struct BufferCopy2 - { - using NativeType = VkBufferCopy2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferCopy2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferCopy2( VULKAN_HPP_NAMESPACE::DeviceSize srcOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : srcOffset( srcOffset_ ) - , dstOffset( dstOffset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferCopy2( BufferCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCopy2( VkBufferCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferCopy2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferCopy2 & operator=( BufferCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferCopy2 & operator=( VkBufferCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferCopy2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCopy2 & - setSrcOffset( VULKAN_HPP_NAMESPACE::DeviceSize srcOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcOffset = srcOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCopy2 & - setDstOffset( VULKAN_HPP_NAMESPACE::DeviceSize dstOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstOffset = dstOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferCopy2 & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferCopy2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferCopy2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcOffset, dstOffset, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferCopy2 const & ) const = default; -#else - bool operator==( BufferCopy2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcOffset == rhs.srcOffset ) && - ( dstOffset == rhs.dstOffset ) && ( size == rhs.size ); -# endif - } - - bool operator!=( BufferCopy2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCopy2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize srcOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize dstOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferCopy2 ) == sizeof( VkBufferCopy2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferCopy2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferCopy2; - }; - using BufferCopy2KHR = BufferCopy2; - - struct BufferDeviceAddressCreateInfoEXT - { - using NativeType = VkBufferDeviceAddressCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferDeviceAddressCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BufferDeviceAddressCreateInfoEXT( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceAddress( deviceAddress_ ) - {} - - VULKAN_HPP_CONSTEXPR - BufferDeviceAddressCreateInfoEXT( BufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferDeviceAddressCreateInfoEXT( VkBufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferDeviceAddressCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferDeviceAddressCreateInfoEXT & - operator=( BufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferDeviceAddressCreateInfoEXT & operator=( VkBufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferDeviceAddressCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferDeviceAddressCreateInfoEXT & - setDeviceAddress( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - deviceAddress = deviceAddress_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferDeviceAddressCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferDeviceAddressCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceAddress ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferDeviceAddressCreateInfoEXT const & ) const = default; -#else - bool operator==( BufferDeviceAddressCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceAddress == rhs.deviceAddress ); -# endif - } - - bool operator!=( BufferDeviceAddressCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferDeviceAddressCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferDeviceAddressCreateInfoEXT ) == - sizeof( VkBufferDeviceAddressCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferDeviceAddressCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferDeviceAddressCreateInfoEXT; - }; - - struct BufferDeviceAddressInfo - { - using NativeType = VkBufferDeviceAddressInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferDeviceAddressInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferDeviceAddressInfo( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferDeviceAddressInfo( BufferDeviceAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferDeviceAddressInfo( VkBufferDeviceAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferDeviceAddressInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferDeviceAddressInfo & operator=( BufferDeviceAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferDeviceAddressInfo & operator=( VkBufferDeviceAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferDeviceAddressInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferDeviceAddressInfo & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferDeviceAddressInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferDeviceAddressInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, buffer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferDeviceAddressInfo const & ) const = default; -#else - bool operator==( BufferDeviceAddressInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( buffer == rhs.buffer ); -# endif - } - - bool operator!=( BufferDeviceAddressInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferDeviceAddressInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfo ) == - sizeof( VkBufferDeviceAddressInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferDeviceAddressInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferDeviceAddressInfo; - }; - using BufferDeviceAddressInfoEXT = BufferDeviceAddressInfo; - using BufferDeviceAddressInfoKHR = BufferDeviceAddressInfo; - - struct BufferImageCopy - { - using NativeType = VkBufferImageCopy; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferImageCopy( VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset_ = {}, - uint32_t bufferRowLength_ = {}, - uint32_t bufferImageHeight_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D imageOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D imageExtent_ = {} ) VULKAN_HPP_NOEXCEPT - : bufferOffset( bufferOffset_ ) - , bufferRowLength( bufferRowLength_ ) - , bufferImageHeight( bufferImageHeight_ ) - , imageSubresource( imageSubresource_ ) - , imageOffset( imageOffset_ ) - , imageExtent( imageExtent_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferImageCopy( BufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferImageCopy( VkBufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferImageCopy( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferImageCopy & operator=( BufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferImageCopy & operator=( VkBufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy & - setBufferOffset( VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset_ ) VULKAN_HPP_NOEXCEPT - { - bufferOffset = bufferOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy & setBufferRowLength( uint32_t bufferRowLength_ ) VULKAN_HPP_NOEXCEPT - { - bufferRowLength = bufferRowLength_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy & setBufferImageHeight( uint32_t bufferImageHeight_ ) VULKAN_HPP_NOEXCEPT - { - bufferImageHeight = bufferImageHeight_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy & - setImageSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & imageSubresource_ ) VULKAN_HPP_NOEXCEPT - { - imageSubresource = imageSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy & - setImageOffset( VULKAN_HPP_NAMESPACE::Offset3D const & imageOffset_ ) VULKAN_HPP_NOEXCEPT - { - imageOffset = imageOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy & - setImageExtent( VULKAN_HPP_NAMESPACE::Extent3D const & imageExtent_ ) VULKAN_HPP_NOEXCEPT - { - imageExtent = imageExtent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferImageCopy const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferImageCopy &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( bufferOffset, bufferRowLength, bufferImageHeight, imageSubresource, imageOffset, imageExtent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferImageCopy const & ) const = default; -#else - bool operator==( BufferImageCopy const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( bufferOffset == rhs.bufferOffset ) && ( bufferRowLength == rhs.bufferRowLength ) && - ( bufferImageHeight == rhs.bufferImageHeight ) && ( imageSubresource == rhs.imageSubresource ) && - ( imageOffset == rhs.imageOffset ) && ( imageExtent == rhs.imageExtent ); -# endif - } - - bool operator!=( BufferImageCopy const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset = {}; - uint32_t bufferRowLength = {}; - uint32_t bufferImageHeight = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D imageOffset = {}; - VULKAN_HPP_NAMESPACE::Extent3D imageExtent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferImageCopy ) == sizeof( VkBufferImageCopy ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferImageCopy is not nothrow_move_constructible!" ); - - struct BufferImageCopy2 - { - using NativeType = VkBufferImageCopy2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferImageCopy2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferImageCopy2( VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset_ = {}, - uint32_t bufferRowLength_ = {}, - uint32_t bufferImageHeight_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D imageOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D imageExtent_ = {} ) VULKAN_HPP_NOEXCEPT - : bufferOffset( bufferOffset_ ) - , bufferRowLength( bufferRowLength_ ) - , bufferImageHeight( bufferImageHeight_ ) - , imageSubresource( imageSubresource_ ) - , imageOffset( imageOffset_ ) - , imageExtent( imageExtent_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferImageCopy2( BufferImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferImageCopy2( VkBufferImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferImageCopy2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferImageCopy2 & operator=( BufferImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferImageCopy2 & operator=( VkBufferImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & - setBufferOffset( VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset_ ) VULKAN_HPP_NOEXCEPT - { - bufferOffset = bufferOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & setBufferRowLength( uint32_t bufferRowLength_ ) VULKAN_HPP_NOEXCEPT - { - bufferRowLength = bufferRowLength_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & setBufferImageHeight( uint32_t bufferImageHeight_ ) VULKAN_HPP_NOEXCEPT - { - bufferImageHeight = bufferImageHeight_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & - setImageSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & imageSubresource_ ) VULKAN_HPP_NOEXCEPT - { - imageSubresource = imageSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & - setImageOffset( VULKAN_HPP_NAMESPACE::Offset3D const & imageOffset_ ) VULKAN_HPP_NOEXCEPT - { - imageOffset = imageOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferImageCopy2 & - setImageExtent( VULKAN_HPP_NAMESPACE::Extent3D const & imageExtent_ ) VULKAN_HPP_NOEXCEPT - { - imageExtent = imageExtent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferImageCopy2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferImageCopy2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, bufferOffset, bufferRowLength, bufferImageHeight, imageSubresource, imageOffset, imageExtent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferImageCopy2 const & ) const = default; -#else - bool operator==( BufferImageCopy2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( bufferOffset == rhs.bufferOffset ) && - ( bufferRowLength == rhs.bufferRowLength ) && ( bufferImageHeight == rhs.bufferImageHeight ) && - ( imageSubresource == rhs.imageSubresource ) && ( imageOffset == rhs.imageOffset ) && - ( imageExtent == rhs.imageExtent ); -# endif - } - - bool operator!=( BufferImageCopy2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferImageCopy2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset = {}; - uint32_t bufferRowLength = {}; - uint32_t bufferImageHeight = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D imageOffset = {}; - VULKAN_HPP_NAMESPACE::Extent3D imageExtent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferImageCopy2 ) == sizeof( VkBufferImageCopy2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferImageCopy2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferImageCopy2; - }; - using BufferImageCopy2KHR = BufferImageCopy2; - - struct BufferMemoryBarrier - { - using NativeType = VkBufferMemoryBarrier; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferMemoryBarrier; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferMemoryBarrier( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ = {}, - uint32_t srcQueueFamilyIndex_ = {}, - uint32_t dstQueueFamilyIndex_ = {}, - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : srcAccessMask( srcAccessMask_ ) - , dstAccessMask( dstAccessMask_ ) - , srcQueueFamilyIndex( srcQueueFamilyIndex_ ) - , dstQueueFamilyIndex( dstQueueFamilyIndex_ ) - , buffer( buffer_ ) - , offset( offset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferMemoryBarrier( BufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferMemoryBarrier( VkBufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferMemoryBarrier( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferMemoryBarrier & operator=( BufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferMemoryBarrier & operator=( VkBufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & - setSrcQueueFamilyIndex( uint32_t srcQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - srcQueueFamilyIndex = srcQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & - setDstQueueFamilyIndex( uint32_t dstQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - dstQueueFamilyIndex = dstQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferMemoryBarrier const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferMemoryBarrier &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, srcAccessMask, dstAccessMask, srcQueueFamilyIndex, dstQueueFamilyIndex, buffer, offset, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferMemoryBarrier const & ) const = default; -#else - bool operator==( BufferMemoryBarrier const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcAccessMask == rhs.srcAccessMask ) && - ( dstAccessMask == rhs.dstAccessMask ) && ( srcQueueFamilyIndex == rhs.srcQueueFamilyIndex ) && - ( dstQueueFamilyIndex == rhs.dstQueueFamilyIndex ) && ( buffer == rhs.buffer ) && - ( offset == rhs.offset ) && ( size == rhs.size ); -# endif - } - - bool operator!=( BufferMemoryBarrier const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferMemoryBarrier; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask = {}; - uint32_t srcQueueFamilyIndex = {}; - uint32_t dstQueueFamilyIndex = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferMemoryBarrier ) == sizeof( VkBufferMemoryBarrier ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferMemoryBarrier is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferMemoryBarrier; - }; - - struct BufferMemoryBarrier2 - { - using NativeType = VkBufferMemoryBarrier2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferMemoryBarrier2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferMemoryBarrier2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask_ = {}, - uint32_t srcQueueFamilyIndex_ = {}, - uint32_t dstQueueFamilyIndex_ = {}, - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : srcStageMask( srcStageMask_ ) - , srcAccessMask( srcAccessMask_ ) - , dstStageMask( dstStageMask_ ) - , dstAccessMask( dstAccessMask_ ) - , srcQueueFamilyIndex( srcQueueFamilyIndex_ ) - , dstQueueFamilyIndex( dstQueueFamilyIndex_ ) - , buffer( buffer_ ) - , offset( offset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferMemoryBarrier2( BufferMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferMemoryBarrier2( VkBufferMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferMemoryBarrier2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferMemoryBarrier2 & operator=( BufferMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferMemoryBarrier2 & operator=( VkBufferMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setSrcStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask_ ) VULKAN_HPP_NOEXCEPT - { - srcStageMask = srcStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setDstStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - dstStageMask = dstStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setSrcQueueFamilyIndex( uint32_t srcQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - srcQueueFamilyIndex = srcQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setDstQueueFamilyIndex( uint32_t dstQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - dstQueueFamilyIndex = dstQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryBarrier2 & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferMemoryBarrier2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferMemoryBarrier2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - srcStageMask, - srcAccessMask, - dstStageMask, - dstAccessMask, - srcQueueFamilyIndex, - dstQueueFamilyIndex, - buffer, - offset, - size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferMemoryBarrier2 const & ) const = default; -#else - bool operator==( BufferMemoryBarrier2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcStageMask == rhs.srcStageMask ) && - ( srcAccessMask == rhs.srcAccessMask ) && ( dstStageMask == rhs.dstStageMask ) && - ( dstAccessMask == rhs.dstAccessMask ) && ( srcQueueFamilyIndex == rhs.srcQueueFamilyIndex ) && - ( dstQueueFamilyIndex == rhs.dstQueueFamilyIndex ) && ( buffer == rhs.buffer ) && - ( offset == rhs.offset ) && ( size == rhs.size ); -# endif - } - - bool operator!=( BufferMemoryBarrier2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferMemoryBarrier2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask = {}; - uint32_t srcQueueFamilyIndex = {}; - uint32_t dstQueueFamilyIndex = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferMemoryBarrier2 ) == sizeof( VkBufferMemoryBarrier2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferMemoryBarrier2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferMemoryBarrier2; - }; - using BufferMemoryBarrier2KHR = BufferMemoryBarrier2; - - struct BufferMemoryRequirementsInfo2 - { - using NativeType = VkBufferMemoryRequirementsInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferMemoryRequirementsInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferMemoryRequirementsInfo2( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - {} - - VULKAN_HPP_CONSTEXPR - BufferMemoryRequirementsInfo2( BufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferMemoryRequirementsInfo2( VkBufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferMemoryRequirementsInfo2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferMemoryRequirementsInfo2 & - operator=( BufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferMemoryRequirementsInfo2 & operator=( VkBufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferMemoryRequirementsInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferMemoryRequirementsInfo2 & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferMemoryRequirementsInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferMemoryRequirementsInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, buffer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferMemoryRequirementsInfo2 const & ) const = default; -#else - bool operator==( BufferMemoryRequirementsInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( buffer == rhs.buffer ); -# endif - } - - bool operator!=( BufferMemoryRequirementsInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferMemoryRequirementsInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 ) == - sizeof( VkBufferMemoryRequirementsInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferMemoryRequirementsInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferMemoryRequirementsInfo2; - }; - using BufferMemoryRequirementsInfo2KHR = BufferMemoryRequirementsInfo2; - - struct BufferOpaqueCaptureAddressCreateInfo - { - using NativeType = VkBufferOpaqueCaptureAddressCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eBufferOpaqueCaptureAddressCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR BufferOpaqueCaptureAddressCreateInfo( uint64_t opaqueCaptureAddress_ = {} ) VULKAN_HPP_NOEXCEPT - : opaqueCaptureAddress( opaqueCaptureAddress_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferOpaqueCaptureAddressCreateInfo( BufferOpaqueCaptureAddressCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - BufferOpaqueCaptureAddressCreateInfo( VkBufferOpaqueCaptureAddressCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferOpaqueCaptureAddressCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferOpaqueCaptureAddressCreateInfo & - operator=( BufferOpaqueCaptureAddressCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferOpaqueCaptureAddressCreateInfo & - operator=( VkBufferOpaqueCaptureAddressCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferOpaqueCaptureAddressCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferOpaqueCaptureAddressCreateInfo & - setOpaqueCaptureAddress( uint64_t opaqueCaptureAddress_ ) VULKAN_HPP_NOEXCEPT - { - opaqueCaptureAddress = opaqueCaptureAddress_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferOpaqueCaptureAddressCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferOpaqueCaptureAddressCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, opaqueCaptureAddress ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferOpaqueCaptureAddressCreateInfo const & ) const = default; -#else - bool operator==( BufferOpaqueCaptureAddressCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( opaqueCaptureAddress == rhs.opaqueCaptureAddress ); -# endif - } - - bool operator!=( BufferOpaqueCaptureAddressCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferOpaqueCaptureAddressCreateInfo; - const void * pNext = {}; - uint64_t opaqueCaptureAddress = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferOpaqueCaptureAddressCreateInfo ) == - sizeof( VkBufferOpaqueCaptureAddressCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "BufferOpaqueCaptureAddressCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferOpaqueCaptureAddressCreateInfo; - }; - using BufferOpaqueCaptureAddressCreateInfoKHR = BufferOpaqueCaptureAddressCreateInfo; - - struct BufferViewCreateInfo - { - using NativeType = VkBufferViewCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eBufferViewCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - BufferViewCreateInfo( VULKAN_HPP_NAMESPACE::BufferViewCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize range_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , buffer( buffer_ ) - , format( format_ ) - , offset( offset_ ) - , range( range_ ) - {} - - VULKAN_HPP_CONSTEXPR BufferViewCreateInfo( BufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferViewCreateInfo( VkBufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : BufferViewCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - BufferViewCreateInfo & operator=( BufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - BufferViewCreateInfo & operator=( VkBufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 BufferViewCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferViewCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::BufferViewCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferViewCreateInfo & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferViewCreateInfo & setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferViewCreateInfo & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 BufferViewCreateInfo & - setRange( VULKAN_HPP_NAMESPACE::DeviceSize range_ ) VULKAN_HPP_NOEXCEPT - { - range = range_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkBufferViewCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkBufferViewCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, buffer, format, offset, range ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( BufferViewCreateInfo const & ) const = default; -#else - bool operator==( BufferViewCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( buffer == rhs.buffer ) && - ( format == rhs.format ) && ( offset == rhs.offset ) && ( range == rhs.range ); -# endif - } - - bool operator!=( BufferViewCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferViewCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferViewCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize range = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::BufferViewCreateInfo ) == sizeof( VkBufferViewCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "BufferViewCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = BufferViewCreateInfo; - }; - - struct CalibratedTimestampInfoEXT - { - using NativeType = VkCalibratedTimestampInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCalibratedTimestampInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - CalibratedTimestampInfoEXT( VULKAN_HPP_NAMESPACE::TimeDomainEXT timeDomain_ = - VULKAN_HPP_NAMESPACE::TimeDomainEXT::eDevice ) VULKAN_HPP_NOEXCEPT - : timeDomain( timeDomain_ ) - {} - - VULKAN_HPP_CONSTEXPR - CalibratedTimestampInfoEXT( CalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CalibratedTimestampInfoEXT( VkCalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : CalibratedTimestampInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CalibratedTimestampInfoEXT & operator=( CalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CalibratedTimestampInfoEXT & operator=( VkCalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CalibratedTimestampInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CalibratedTimestampInfoEXT & - setTimeDomain( VULKAN_HPP_NAMESPACE::TimeDomainEXT timeDomain_ ) VULKAN_HPP_NOEXCEPT - { - timeDomain = timeDomain_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCalibratedTimestampInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCalibratedTimestampInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, timeDomain ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CalibratedTimestampInfoEXT const & ) const = default; -#else - bool operator==( CalibratedTimestampInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( timeDomain == rhs.timeDomain ); -# endif - } - - bool operator!=( CalibratedTimestampInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCalibratedTimestampInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::TimeDomainEXT timeDomain = VULKAN_HPP_NAMESPACE::TimeDomainEXT::eDevice; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT ) == - sizeof( VkCalibratedTimestampInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CalibratedTimestampInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CalibratedTimestampInfoEXT; - }; - - struct CheckpointData2NV - { - using NativeType = VkCheckpointData2NV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCheckpointData2NV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CheckpointData2NV( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage_ = {}, - void * pCheckpointMarker_ = {} ) VULKAN_HPP_NOEXCEPT - : stage( stage_ ) - , pCheckpointMarker( pCheckpointMarker_ ) - {} - - VULKAN_HPP_CONSTEXPR CheckpointData2NV( CheckpointData2NV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CheckpointData2NV( VkCheckpointData2NV const & rhs ) VULKAN_HPP_NOEXCEPT - : CheckpointData2NV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CheckpointData2NV & operator=( CheckpointData2NV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CheckpointData2NV & operator=( VkCheckpointData2NV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkCheckpointData2NV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCheckpointData2NV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stage, pCheckpointMarker ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CheckpointData2NV const & ) const = default; -#else - bool operator==( CheckpointData2NV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stage == rhs.stage ) && - ( pCheckpointMarker == rhs.pCheckpointMarker ); -# endif - } - - bool operator!=( CheckpointData2NV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCheckpointData2NV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stage = {}; - void * pCheckpointMarker = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CheckpointData2NV ) == sizeof( VkCheckpointData2NV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CheckpointData2NV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CheckpointData2NV; - }; - - struct CheckpointDataNV - { - using NativeType = VkCheckpointDataNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCheckpointDataNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CheckpointDataNV( - VULKAN_HPP_NAMESPACE::PipelineStageFlagBits stage_ = VULKAN_HPP_NAMESPACE::PipelineStageFlagBits::eTopOfPipe, - void * pCheckpointMarker_ = {} ) VULKAN_HPP_NOEXCEPT - : stage( stage_ ) - , pCheckpointMarker( pCheckpointMarker_ ) - {} - - VULKAN_HPP_CONSTEXPR CheckpointDataNV( CheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CheckpointDataNV( VkCheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - : CheckpointDataNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CheckpointDataNV & operator=( CheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CheckpointDataNV & operator=( VkCheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkCheckpointDataNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCheckpointDataNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stage, pCheckpointMarker ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CheckpointDataNV const & ) const = default; -#else - bool operator==( CheckpointDataNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stage == rhs.stage ) && - ( pCheckpointMarker == rhs.pCheckpointMarker ); -# endif - } - - bool operator!=( CheckpointDataNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCheckpointDataNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlagBits stage = VULKAN_HPP_NAMESPACE::PipelineStageFlagBits::eTopOfPipe; - void * pCheckpointMarker = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CheckpointDataNV ) == sizeof( VkCheckpointDataNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CheckpointDataNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CheckpointDataNV; - }; - - union ClearColorValue - { - using NativeType = VkClearColorValue; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 ClearColorValue( const std::array & float32_ = {} ) : float32( float32_ ) {} - - VULKAN_HPP_CONSTEXPR_14 ClearColorValue( const std::array & int32_ ) : int32( int32_ ) {} - - VULKAN_HPP_CONSTEXPR_14 ClearColorValue( const std::array & uint32_ ) : uint32( uint32_ ) {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ClearColorValue & setFloat32( std::array float32_ ) VULKAN_HPP_NOEXCEPT - { - float32 = float32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearColorValue & setInt32( std::array int32_ ) VULKAN_HPP_NOEXCEPT - { - int32 = int32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearColorValue & setUint32( std::array uint32_ ) VULKAN_HPP_NOEXCEPT - { - uint32 = uint32_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkClearColorValue const &() const - { - return *reinterpret_cast( this ); - } - - operator VkClearColorValue &() - { - return *reinterpret_cast( this ); - } - - VULKAN_HPP_NAMESPACE::ArrayWrapper1D float32; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D int32; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D uint32; - }; - - struct ClearDepthStencilValue - { - using NativeType = VkClearDepthStencilValue; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ClearDepthStencilValue( float depth_ = {}, uint32_t stencil_ = {} ) VULKAN_HPP_NOEXCEPT - : depth( depth_ ) - , stencil( stencil_ ) - {} - - VULKAN_HPP_CONSTEXPR ClearDepthStencilValue( ClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ClearDepthStencilValue( VkClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT - : ClearDepthStencilValue( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ClearDepthStencilValue & operator=( ClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ClearDepthStencilValue & operator=( VkClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ClearDepthStencilValue & setDepth( float depth_ ) VULKAN_HPP_NOEXCEPT - { - depth = depth_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearDepthStencilValue & setStencil( uint32_t stencil_ ) VULKAN_HPP_NOEXCEPT - { - stencil = stencil_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkClearDepthStencilValue const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkClearDepthStencilValue &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( depth, stencil ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ClearDepthStencilValue const & ) const = default; -#else - bool operator==( ClearDepthStencilValue const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( depth == rhs.depth ) && ( stencil == rhs.stencil ); -# endif - } - - bool operator!=( ClearDepthStencilValue const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float depth = {}; - uint32_t stencil = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ClearDepthStencilValue ) == - sizeof( VkClearDepthStencilValue ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ClearDepthStencilValue is not nothrow_move_constructible!" ); - - union ClearValue - { - using NativeType = VkClearValue; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 ClearValue( VULKAN_HPP_NAMESPACE::ClearColorValue color_ = {} ) : color( color_ ) {} - - VULKAN_HPP_CONSTEXPR_14 ClearValue( VULKAN_HPP_NAMESPACE::ClearDepthStencilValue depthStencil_ ) - : depthStencil( depthStencil_ ) - {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ClearValue & - setColor( VULKAN_HPP_NAMESPACE::ClearColorValue const & color_ ) VULKAN_HPP_NOEXCEPT - { - color = color_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearValue & - setDepthStencil( VULKAN_HPP_NAMESPACE::ClearDepthStencilValue const & depthStencil_ ) VULKAN_HPP_NOEXCEPT - { - depthStencil = depthStencil_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkClearValue const &() const - { - return *reinterpret_cast( this ); - } - - operator VkClearValue &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - VULKAN_HPP_NAMESPACE::ClearColorValue color; - VULKAN_HPP_NAMESPACE::ClearDepthStencilValue depthStencil; -#else - VkClearColorValue color; - VkClearDepthStencilValue depthStencil; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct ClearAttachment - { - using NativeType = VkClearAttachment; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 ClearAttachment( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {}, - uint32_t colorAttachment_ = {}, - VULKAN_HPP_NAMESPACE::ClearValue clearValue_ = {} ) VULKAN_HPP_NOEXCEPT - : aspectMask( aspectMask_ ) - , colorAttachment( colorAttachment_ ) - , clearValue( clearValue_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 ClearAttachment( ClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ClearAttachment( VkClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT - : ClearAttachment( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ClearAttachment & operator=( ClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ClearAttachment & operator=( VkClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ClearAttachment & - setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT - { - aspectMask = aspectMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearAttachment & setColorAttachment( uint32_t colorAttachment_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachment = colorAttachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearAttachment & - setClearValue( VULKAN_HPP_NAMESPACE::ClearValue const & clearValue_ ) VULKAN_HPP_NOEXCEPT - { - clearValue = clearValue_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkClearAttachment const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkClearAttachment &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( aspectMask, colorAttachment, clearValue ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - uint32_t colorAttachment = {}; - VULKAN_HPP_NAMESPACE::ClearValue clearValue = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ClearAttachment ) == sizeof( VkClearAttachment ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ClearAttachment is not nothrow_move_constructible!" ); - - struct ClearRect - { - using NativeType = VkClearRect; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ClearRect( VULKAN_HPP_NAMESPACE::Rect2D rect_ = {}, - uint32_t baseArrayLayer_ = {}, - uint32_t layerCount_ = {} ) VULKAN_HPP_NOEXCEPT - : rect( rect_ ) - , baseArrayLayer( baseArrayLayer_ ) - , layerCount( layerCount_ ) - {} - - VULKAN_HPP_CONSTEXPR ClearRect( ClearRect const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ClearRect( VkClearRect const & rhs ) VULKAN_HPP_NOEXCEPT : ClearRect( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ClearRect & operator=( ClearRect const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ClearRect & operator=( VkClearRect const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ClearRect & setRect( VULKAN_HPP_NAMESPACE::Rect2D const & rect_ ) VULKAN_HPP_NOEXCEPT - { - rect = rect_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearRect & setBaseArrayLayer( uint32_t baseArrayLayer_ ) VULKAN_HPP_NOEXCEPT - { - baseArrayLayer = baseArrayLayer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ClearRect & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = layerCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkClearRect const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkClearRect &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( rect, baseArrayLayer, layerCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ClearRect const & ) const = default; -#else - bool operator==( ClearRect const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( rect == rhs.rect ) && ( baseArrayLayer == rhs.baseArrayLayer ) && ( layerCount == rhs.layerCount ); -# endif - } - - bool operator!=( ClearRect const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Rect2D rect = {}; - uint32_t baseArrayLayer = {}; - uint32_t layerCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ClearRect ) == sizeof( VkClearRect ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ClearRect is not nothrow_move_constructible!" ); - - struct CoarseSampleLocationNV - { - using NativeType = VkCoarseSampleLocationNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - CoarseSampleLocationNV( uint32_t pixelX_ = {}, uint32_t pixelY_ = {}, uint32_t sample_ = {} ) VULKAN_HPP_NOEXCEPT - : pixelX( pixelX_ ) - , pixelY( pixelY_ ) - , sample( sample_ ) - {} - - VULKAN_HPP_CONSTEXPR CoarseSampleLocationNV( CoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CoarseSampleLocationNV( VkCoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT - : CoarseSampleLocationNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CoarseSampleLocationNV & operator=( CoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CoarseSampleLocationNV & operator=( VkCoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CoarseSampleLocationNV & setPixelX( uint32_t pixelX_ ) VULKAN_HPP_NOEXCEPT - { - pixelX = pixelX_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CoarseSampleLocationNV & setPixelY( uint32_t pixelY_ ) VULKAN_HPP_NOEXCEPT - { - pixelY = pixelY_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CoarseSampleLocationNV & setSample( uint32_t sample_ ) VULKAN_HPP_NOEXCEPT - { - sample = sample_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCoarseSampleLocationNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCoarseSampleLocationNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( pixelX, pixelY, sample ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CoarseSampleLocationNV const & ) const = default; -#else - bool operator==( CoarseSampleLocationNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( pixelX == rhs.pixelX ) && ( pixelY == rhs.pixelY ) && ( sample == rhs.sample ); -# endif - } - - bool operator!=( CoarseSampleLocationNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t pixelX = {}; - uint32_t pixelY = {}; - uint32_t sample = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV ) == - sizeof( VkCoarseSampleLocationNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CoarseSampleLocationNV is not nothrow_move_constructible!" ); - - struct CoarseSampleOrderCustomNV - { - using NativeType = VkCoarseSampleOrderCustomNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CoarseSampleOrderCustomNV( - VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate_ = - VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV::eNoInvocations, - uint32_t sampleCount_ = {}, - uint32_t sampleLocationCount_ = {}, - const VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV * pSampleLocations_ = {} ) VULKAN_HPP_NOEXCEPT - : shadingRate( shadingRate_ ) - , sampleCount( sampleCount_ ) - , sampleLocationCount( sampleLocationCount_ ) - , pSampleLocations( pSampleLocations_ ) - {} - - VULKAN_HPP_CONSTEXPR - CoarseSampleOrderCustomNV( CoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CoarseSampleOrderCustomNV( VkCoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT - : CoarseSampleOrderCustomNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CoarseSampleOrderCustomNV( - VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate_, - uint32_t sampleCount_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - sampleLocations_ ) - : shadingRate( shadingRate_ ) - , sampleCount( sampleCount_ ) - , sampleLocationCount( static_cast( sampleLocations_.size() ) ) - , pSampleLocations( sampleLocations_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CoarseSampleOrderCustomNV & operator=( CoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CoarseSampleOrderCustomNV & operator=( VkCoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CoarseSampleOrderCustomNV & - setShadingRate( VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate_ ) VULKAN_HPP_NOEXCEPT - { - shadingRate = shadingRate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CoarseSampleOrderCustomNV & setSampleCount( uint32_t sampleCount_ ) VULKAN_HPP_NOEXCEPT - { - sampleCount = sampleCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CoarseSampleOrderCustomNV & - setSampleLocationCount( uint32_t sampleLocationCount_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationCount = sampleLocationCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CoarseSampleOrderCustomNV & - setPSampleLocations( const VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV * pSampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - pSampleLocations = pSampleLocations_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CoarseSampleOrderCustomNV & setSampleLocations( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - sampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationCount = static_cast( sampleLocations_.size() ); - pSampleLocations = sampleLocations_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCoarseSampleOrderCustomNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCoarseSampleOrderCustomNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( shadingRate, sampleCount, sampleLocationCount, pSampleLocations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CoarseSampleOrderCustomNV const & ) const = default; -#else - bool operator==( CoarseSampleOrderCustomNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( shadingRate == rhs.shadingRate ) && ( sampleCount == rhs.sampleCount ) && - ( sampleLocationCount == rhs.sampleLocationCount ) && ( pSampleLocations == rhs.pSampleLocations ); -# endif - } - - bool operator!=( CoarseSampleOrderCustomNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate = - VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV::eNoInvocations; - uint32_t sampleCount = {}; - uint32_t sampleLocationCount = {}; - const VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV * pSampleLocations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV ) == - sizeof( VkCoarseSampleOrderCustomNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CoarseSampleOrderCustomNV is not nothrow_move_constructible!" ); - - struct CommandBufferAllocateInfo - { - using NativeType = VkCommandBufferAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferAllocateInfo( - VULKAN_HPP_NAMESPACE::CommandPool commandPool_ = {}, - VULKAN_HPP_NAMESPACE::CommandBufferLevel level_ = VULKAN_HPP_NAMESPACE::CommandBufferLevel::ePrimary, - uint32_t commandBufferCount_ = {} ) VULKAN_HPP_NOEXCEPT - : commandPool( commandPool_ ) - , level( level_ ) - , commandBufferCount( commandBufferCount_ ) - {} - - VULKAN_HPP_CONSTEXPR - CommandBufferAllocateInfo( CommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferAllocateInfo( VkCommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferAllocateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferAllocateInfo & operator=( CommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferAllocateInfo & operator=( VkCommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferAllocateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferAllocateInfo & - setCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool_ ) VULKAN_HPP_NOEXCEPT - { - commandPool = commandPool_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferAllocateInfo & - setLevel( VULKAN_HPP_NAMESPACE::CommandBufferLevel level_ ) VULKAN_HPP_NOEXCEPT - { - level = level_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferAllocateInfo & - setCommandBufferCount( uint32_t commandBufferCount_ ) VULKAN_HPP_NOEXCEPT - { - commandBufferCount = commandBufferCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, commandPool, level, commandBufferCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferAllocateInfo const & ) const = default; -#else - bool operator==( CommandBufferAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( commandPool == rhs.commandPool ) && - ( level == rhs.level ) && ( commandBufferCount == rhs.commandBufferCount ); -# endif - } - - bool operator!=( CommandBufferAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferAllocateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CommandPool commandPool = {}; - VULKAN_HPP_NAMESPACE::CommandBufferLevel level = VULKAN_HPP_NAMESPACE::CommandBufferLevel::ePrimary; - uint32_t commandBufferCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo ) == - sizeof( VkCommandBufferAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CommandBufferAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferAllocateInfo; - }; - - struct CommandBufferInheritanceInfo - { - using NativeType = VkCommandBufferInheritanceInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferInheritanceInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceInfo( - VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {}, - uint32_t subpass_ = {}, - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryEnable_ = {}, - VULKAN_HPP_NAMESPACE::QueryControlFlags queryFlags_ = {}, - VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics_ = {} ) VULKAN_HPP_NOEXCEPT - : renderPass( renderPass_ ) - , subpass( subpass_ ) - , framebuffer( framebuffer_ ) - , occlusionQueryEnable( occlusionQueryEnable_ ) - , queryFlags( queryFlags_ ) - , pipelineStatistics( pipelineStatistics_ ) - {} - - VULKAN_HPP_CONSTEXPR - CommandBufferInheritanceInfo( CommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceInfo( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferInheritanceInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferInheritanceInfo & operator=( CommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceInfo & operator=( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & - setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT - { - renderPass = renderPass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT - { - subpass = subpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & - setFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_ ) VULKAN_HPP_NOEXCEPT - { - framebuffer = framebuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & - setOcclusionQueryEnable( VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryEnable_ ) VULKAN_HPP_NOEXCEPT - { - occlusionQueryEnable = occlusionQueryEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & - setQueryFlags( VULKAN_HPP_NAMESPACE::QueryControlFlags queryFlags_ ) VULKAN_HPP_NOEXCEPT - { - queryFlags = queryFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & - setPipelineStatistics( VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics_ ) VULKAN_HPP_NOEXCEPT - { - pipelineStatistics = pipelineStatistics_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferInheritanceInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferInheritanceInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, renderPass, subpass, framebuffer, occlusionQueryEnable, queryFlags, pipelineStatistics ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferInheritanceInfo const & ) const = default; -#else - bool operator==( CommandBufferInheritanceInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( renderPass == rhs.renderPass ) && - ( subpass == rhs.subpass ) && ( framebuffer == rhs.framebuffer ) && - ( occlusionQueryEnable == rhs.occlusionQueryEnable ) && ( queryFlags == rhs.queryFlags ) && - ( pipelineStatistics == rhs.pipelineStatistics ); -# endif - } - - bool operator!=( CommandBufferInheritanceInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderPass renderPass = {}; - uint32_t subpass = {}; - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer = {}; - VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryEnable = {}; - VULKAN_HPP_NAMESPACE::QueryControlFlags queryFlags = {}; - VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo ) == - sizeof( VkCommandBufferInheritanceInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CommandBufferInheritanceInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferInheritanceInfo; - }; - - struct CommandBufferBeginInfo - { - using NativeType = VkCommandBufferBeginInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferBeginInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferBeginInfo( - VULKAN_HPP_NAMESPACE::CommandBufferUsageFlags flags_ = {}, - const VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo * pInheritanceInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pInheritanceInfo( pInheritanceInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandBufferBeginInfo( CommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferBeginInfo( VkCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferBeginInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferBeginInfo & operator=( CommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferBeginInfo & operator=( VkCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferBeginInfo & - setFlags( VULKAN_HPP_NAMESPACE::CommandBufferUsageFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferBeginInfo & setPInheritanceInfo( - const VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo * pInheritanceInfo_ ) VULKAN_HPP_NOEXCEPT - { - pInheritanceInfo = pInheritanceInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferBeginInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferBeginInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pInheritanceInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferBeginInfo const & ) const = default; -#else - bool operator==( CommandBufferBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pInheritanceInfo == rhs.pInheritanceInfo ); -# endif - } - - bool operator!=( CommandBufferBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferBeginInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CommandBufferUsageFlags flags = {}; - const VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo * pInheritanceInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo ) == - sizeof( VkCommandBufferBeginInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CommandBufferBeginInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferBeginInfo; - }; - - struct CommandBufferInheritanceConditionalRenderingInfoEXT - { - using NativeType = VkCommandBufferInheritanceConditionalRenderingInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eCommandBufferInheritanceConditionalRenderingInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceConditionalRenderingInfoEXT( - VULKAN_HPP_NAMESPACE::Bool32 conditionalRenderingEnable_ = {} ) VULKAN_HPP_NOEXCEPT - : conditionalRenderingEnable( conditionalRenderingEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceConditionalRenderingInfoEXT( - CommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceConditionalRenderingInfoEXT( - VkCommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferInheritanceConditionalRenderingInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferInheritanceConditionalRenderingInfoEXT & - operator=( CommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceConditionalRenderingInfoEXT & - operator=( VkCommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceConditionalRenderingInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceConditionalRenderingInfoEXT & - setConditionalRenderingEnable( VULKAN_HPP_NAMESPACE::Bool32 conditionalRenderingEnable_ ) VULKAN_HPP_NOEXCEPT - { - conditionalRenderingEnable = conditionalRenderingEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferInheritanceConditionalRenderingInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferInheritanceConditionalRenderingInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, conditionalRenderingEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferInheritanceConditionalRenderingInfoEXT const & ) const = default; -#else - bool operator==( CommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( conditionalRenderingEnable == rhs.conditionalRenderingEnable ); -# endif - } - - bool operator!=( CommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceConditionalRenderingInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 conditionalRenderingEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceConditionalRenderingInfoEXT ) == - sizeof( VkCommandBufferInheritanceConditionalRenderingInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::CommandBufferInheritanceConditionalRenderingInfoEXT>::value, - "CommandBufferInheritanceConditionalRenderingInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferInheritanceConditionalRenderingInfoEXT; - }; - - struct CommandBufferInheritanceRenderPassTransformInfoQCOM - { - using NativeType = VkCommandBufferInheritanceRenderPassTransformInfoQCOM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eCommandBufferInheritanceRenderPassTransformInfoQCOM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceRenderPassTransformInfoQCOM( - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity, - VULKAN_HPP_NAMESPACE::Rect2D renderArea_ = {} ) VULKAN_HPP_NOEXCEPT - : transform( transform_ ) - , renderArea( renderArea_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceRenderPassTransformInfoQCOM( - CommandBufferInheritanceRenderPassTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceRenderPassTransformInfoQCOM( - VkCommandBufferInheritanceRenderPassTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferInheritanceRenderPassTransformInfoQCOM( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferInheritanceRenderPassTransformInfoQCOM & - operator=( CommandBufferInheritanceRenderPassTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceRenderPassTransformInfoQCOM & - operator=( VkCommandBufferInheritanceRenderPassTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderPassTransformInfoQCOM & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderPassTransformInfoQCOM & - setTransform( VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ ) VULKAN_HPP_NOEXCEPT - { - transform = transform_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderPassTransformInfoQCOM & - setRenderArea( VULKAN_HPP_NAMESPACE::Rect2D const & renderArea_ ) VULKAN_HPP_NOEXCEPT - { - renderArea = renderArea_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferInheritanceRenderPassTransformInfoQCOM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferInheritanceRenderPassTransformInfoQCOM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, transform, renderArea ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferInheritanceRenderPassTransformInfoQCOM const & ) const = default; -#else - bool operator==( CommandBufferInheritanceRenderPassTransformInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( transform == rhs.transform ) && - ( renderArea == rhs.renderArea ); -# endif - } - - bool operator!=( CommandBufferInheritanceRenderPassTransformInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceRenderPassTransformInfoQCOM; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - VULKAN_HPP_NAMESPACE::Rect2D renderArea = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceRenderPassTransformInfoQCOM ) == - sizeof( VkCommandBufferInheritanceRenderPassTransformInfoQCOM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::CommandBufferInheritanceRenderPassTransformInfoQCOM>::value, - "CommandBufferInheritanceRenderPassTransformInfoQCOM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferInheritanceRenderPassTransformInfoQCOM; - }; - - struct CommandBufferInheritanceRenderingInfo - { - using NativeType = VkCommandBufferInheritanceRenderingInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eCommandBufferInheritanceRenderingInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceRenderingInfo( - VULKAN_HPP_NAMESPACE::RenderingFlags flags_ = {}, - uint32_t viewMask_ = {}, - uint32_t colorAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::Format * pColorAttachmentFormats_ = {}, - VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1 ) - VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , viewMask( viewMask_ ) - , colorAttachmentCount( colorAttachmentCount_ ) - , pColorAttachmentFormats( pColorAttachmentFormats_ ) - , depthAttachmentFormat( depthAttachmentFormat_ ) - , stencilAttachmentFormat( stencilAttachmentFormat_ ) - , rasterizationSamples( rasterizationSamples_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceRenderingInfo( CommandBufferInheritanceRenderingInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceRenderingInfo( VkCommandBufferInheritanceRenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferInheritanceRenderingInfo( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CommandBufferInheritanceRenderingInfo( - VULKAN_HPP_NAMESPACE::RenderingFlags flags_, - uint32_t viewMask_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & colorAttachmentFormats_, - VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1 ) - : flags( flags_ ) - , viewMask( viewMask_ ) - , colorAttachmentCount( static_cast( colorAttachmentFormats_.size() ) ) - , pColorAttachmentFormats( colorAttachmentFormats_.data() ) - , depthAttachmentFormat( depthAttachmentFormat_ ) - , stencilAttachmentFormat( stencilAttachmentFormat_ ) - , rasterizationSamples( rasterizationSamples_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferInheritanceRenderingInfo & - operator=( CommandBufferInheritanceRenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceRenderingInfo & - operator=( VkCommandBufferInheritanceRenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setFlags( VULKAN_HPP_NAMESPACE::RenderingFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setViewMask( uint32_t viewMask_ ) VULKAN_HPP_NOEXCEPT - { - viewMask = viewMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setColorAttachmentCount( uint32_t colorAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = colorAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setPColorAttachmentFormats( const VULKAN_HPP_NAMESPACE::Format * pColorAttachmentFormats_ ) VULKAN_HPP_NOEXCEPT - { - pColorAttachmentFormats = pColorAttachmentFormats_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CommandBufferInheritanceRenderingInfo & setColorAttachmentFormats( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachmentFormats_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( colorAttachmentFormats_.size() ); - pColorAttachmentFormats = colorAttachmentFormats_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setDepthAttachmentFormat( VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat_ ) VULKAN_HPP_NOEXCEPT - { - depthAttachmentFormat = depthAttachmentFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setStencilAttachmentFormat( VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat_ ) VULKAN_HPP_NOEXCEPT - { - stencilAttachmentFormat = stencilAttachmentFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceRenderingInfo & - setRasterizationSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationSamples = rasterizationSamples_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferInheritanceRenderingInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferInheritanceRenderingInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - viewMask, - colorAttachmentCount, - pColorAttachmentFormats, - depthAttachmentFormat, - stencilAttachmentFormat, - rasterizationSamples ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferInheritanceRenderingInfo const & ) const = default; -#else - bool operator==( CommandBufferInheritanceRenderingInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( viewMask == rhs.viewMask ) && ( colorAttachmentCount == rhs.colorAttachmentCount ) && - ( pColorAttachmentFormats == rhs.pColorAttachmentFormats ) && - ( depthAttachmentFormat == rhs.depthAttachmentFormat ) && - ( stencilAttachmentFormat == rhs.stencilAttachmentFormat ) && - ( rasterizationSamples == rhs.rasterizationSamples ); -# endif - } - - bool operator!=( CommandBufferInheritanceRenderingInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceRenderingInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderingFlags flags = {}; - uint32_t viewMask = {}; - uint32_t colorAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::Format * pColorAttachmentFormats = {}; - VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceRenderingInfo ) == - sizeof( VkCommandBufferInheritanceRenderingInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CommandBufferInheritanceRenderingInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferInheritanceRenderingInfo; - }; - using CommandBufferInheritanceRenderingInfoKHR = CommandBufferInheritanceRenderingInfo; - - struct Viewport - { - using NativeType = VkViewport; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR Viewport( float x_ = {}, - float y_ = {}, - float width_ = {}, - float height_ = {}, - float minDepth_ = {}, - float maxDepth_ = {} ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - , width( width_ ) - , height( height_ ) - , minDepth( minDepth_ ) - , maxDepth( maxDepth_ ) - {} - - VULKAN_HPP_CONSTEXPR Viewport( Viewport const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Viewport( VkViewport const & rhs ) VULKAN_HPP_NOEXCEPT : Viewport( *reinterpret_cast( &rhs ) ) {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Viewport & operator=( Viewport const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Viewport & operator=( VkViewport const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Viewport & setX( float x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Viewport & setY( float y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Viewport & setWidth( float width_ ) VULKAN_HPP_NOEXCEPT - { - width = width_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Viewport & setHeight( float height_ ) VULKAN_HPP_NOEXCEPT - { - height = height_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Viewport & setMinDepth( float minDepth_ ) VULKAN_HPP_NOEXCEPT - { - minDepth = minDepth_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Viewport & setMaxDepth( float maxDepth_ ) VULKAN_HPP_NOEXCEPT - { - maxDepth = maxDepth_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkViewport const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkViewport &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y, width, height, minDepth, maxDepth ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Viewport const & ) const = default; -#else - bool operator==( Viewport const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ) && ( width == rhs.width ) && ( height == rhs.height ) && - ( minDepth == rhs.minDepth ) && ( maxDepth == rhs.maxDepth ); -# endif - } - - bool operator!=( Viewport const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float x = {}; - float y = {}; - float width = {}; - float height = {}; - float minDepth = {}; - float maxDepth = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Viewport ) == sizeof( VkViewport ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Viewport is not nothrow_move_constructible!" ); - - struct CommandBufferInheritanceViewportScissorInfoNV - { - using NativeType = VkCommandBufferInheritanceViewportScissorInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eCommandBufferInheritanceViewportScissorInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceViewportScissorInfoNV( - VULKAN_HPP_NAMESPACE::Bool32 viewportScissor2D_ = {}, - uint32_t viewportDepthCount_ = {}, - const VULKAN_HPP_NAMESPACE::Viewport * pViewportDepths_ = {} ) VULKAN_HPP_NOEXCEPT - : viewportScissor2D( viewportScissor2D_ ) - , viewportDepthCount( viewportDepthCount_ ) - , pViewportDepths( pViewportDepths_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandBufferInheritanceViewportScissorInfoNV( - CommandBufferInheritanceViewportScissorInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceViewportScissorInfoNV( VkCommandBufferInheritanceViewportScissorInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : CommandBufferInheritanceViewportScissorInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferInheritanceViewportScissorInfoNV & - operator=( CommandBufferInheritanceViewportScissorInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferInheritanceViewportScissorInfoNV & - operator=( VkCommandBufferInheritanceViewportScissorInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceViewportScissorInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceViewportScissorInfoNV & - setViewportScissor2D( VULKAN_HPP_NAMESPACE::Bool32 viewportScissor2D_ ) VULKAN_HPP_NOEXCEPT - { - viewportScissor2D = viewportScissor2D_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceViewportScissorInfoNV & - setViewportDepthCount( uint32_t viewportDepthCount_ ) VULKAN_HPP_NOEXCEPT - { - viewportDepthCount = viewportDepthCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferInheritanceViewportScissorInfoNV & - setPViewportDepths( const VULKAN_HPP_NAMESPACE::Viewport * pViewportDepths_ ) VULKAN_HPP_NOEXCEPT - { - pViewportDepths = pViewportDepths_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferInheritanceViewportScissorInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferInheritanceViewportScissorInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, viewportScissor2D, viewportDepthCount, pViewportDepths ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferInheritanceViewportScissorInfoNV const & ) const = default; -#else - bool operator==( CommandBufferInheritanceViewportScissorInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( viewportScissor2D == rhs.viewportScissor2D ) && - ( viewportDepthCount == rhs.viewportDepthCount ) && ( pViewportDepths == rhs.pViewportDepths ); -# endif - } - - bool operator!=( CommandBufferInheritanceViewportScissorInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceViewportScissorInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 viewportScissor2D = {}; - uint32_t viewportDepthCount = {}; - const VULKAN_HPP_NAMESPACE::Viewport * pViewportDepths = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferInheritanceViewportScissorInfoNV ) == - sizeof( VkCommandBufferInheritanceViewportScissorInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CommandBufferInheritanceViewportScissorInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferInheritanceViewportScissorInfoNV; - }; - - struct CommandBufferSubmitInfo - { - using NativeType = VkCommandBufferSubmitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferSubmitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandBufferSubmitInfo( VULKAN_HPP_NAMESPACE::CommandBuffer commandBuffer_ = {}, - uint32_t deviceMask_ = {} ) VULKAN_HPP_NOEXCEPT - : commandBuffer( commandBuffer_ ) - , deviceMask( deviceMask_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandBufferSubmitInfo( CommandBufferSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferSubmitInfo( VkCommandBufferSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandBufferSubmitInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandBufferSubmitInfo & operator=( CommandBufferSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandBufferSubmitInfo & operator=( VkCommandBufferSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandBufferSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferSubmitInfo & - setCommandBuffer( VULKAN_HPP_NAMESPACE::CommandBuffer commandBuffer_ ) VULKAN_HPP_NOEXCEPT - { - commandBuffer = commandBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandBufferSubmitInfo & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT - { - deviceMask = deviceMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandBufferSubmitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandBufferSubmitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, commandBuffer, deviceMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandBufferSubmitInfo const & ) const = default; -#else - bool operator==( CommandBufferSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( commandBuffer == rhs.commandBuffer ) && - ( deviceMask == rhs.deviceMask ); -# endif - } - - bool operator!=( CommandBufferSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferSubmitInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CommandBuffer commandBuffer = {}; - uint32_t deviceMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandBufferSubmitInfo ) == - sizeof( VkCommandBufferSubmitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CommandBufferSubmitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandBufferSubmitInfo; - }; - using CommandBufferSubmitInfoKHR = CommandBufferSubmitInfo; - - struct CommandPoolCreateInfo - { - using NativeType = VkCommandPoolCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandPoolCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CommandPoolCreateInfo( VULKAN_HPP_NAMESPACE::CommandPoolCreateFlags flags_ = {}, - uint32_t queueFamilyIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , queueFamilyIndex( queueFamilyIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR CommandPoolCreateInfo( CommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandPoolCreateInfo( VkCommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : CommandPoolCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CommandPoolCreateInfo & operator=( CommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CommandPoolCreateInfo & operator=( VkCommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CommandPoolCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandPoolCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::CommandPoolCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CommandPoolCreateInfo & - setQueueFamilyIndex( uint32_t queueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndex = queueFamilyIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCommandPoolCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCommandPoolCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, queueFamilyIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CommandPoolCreateInfo const & ) const = default; -#else - bool operator==( CommandPoolCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( queueFamilyIndex == rhs.queueFamilyIndex ); -# endif - } - - bool operator!=( CommandPoolCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandPoolCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CommandPoolCreateFlags flags = {}; - uint32_t queueFamilyIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo ) == sizeof( VkCommandPoolCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CommandPoolCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CommandPoolCreateInfo; - }; - - struct SpecializationMapEntry - { - using NativeType = VkSpecializationMapEntry; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SpecializationMapEntry( uint32_t constantID_ = {}, uint32_t offset_ = {}, size_t size_ = {} ) VULKAN_HPP_NOEXCEPT - : constantID( constantID_ ) - , offset( offset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR SpecializationMapEntry( SpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SpecializationMapEntry( VkSpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT - : SpecializationMapEntry( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SpecializationMapEntry & operator=( SpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SpecializationMapEntry & operator=( VkSpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SpecializationMapEntry & setConstantID( uint32_t constantID_ ) VULKAN_HPP_NOEXCEPT - { - constantID = constantID_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SpecializationMapEntry & setOffset( uint32_t offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SpecializationMapEntry & setSize( size_t size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSpecializationMapEntry const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSpecializationMapEntry &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( constantID, offset, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SpecializationMapEntry const & ) const = default; -#else - bool operator==( SpecializationMapEntry const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( constantID == rhs.constantID ) && ( offset == rhs.offset ) && ( size == rhs.size ); -# endif - } - - bool operator!=( SpecializationMapEntry const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t constantID = {}; - uint32_t offset = {}; - size_t size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SpecializationMapEntry ) == - sizeof( VkSpecializationMapEntry ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SpecializationMapEntry is not nothrow_move_constructible!" ); - - struct SpecializationInfo - { - using NativeType = VkSpecializationInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SpecializationInfo( uint32_t mapEntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::SpecializationMapEntry * pMapEntries_ = {}, - size_t dataSize_ = {}, - const void * pData_ = {} ) VULKAN_HPP_NOEXCEPT - : mapEntryCount( mapEntryCount_ ) - , pMapEntries( pMapEntries_ ) - , dataSize( dataSize_ ) - , pData( pData_ ) - {} - - VULKAN_HPP_CONSTEXPR SpecializationInfo( SpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SpecializationInfo( VkSpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SpecializationInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - SpecializationInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::SpecializationMapEntry> const & mapEntries_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ = {} ) - : mapEntryCount( static_cast( mapEntries_.size() ) ) - , pMapEntries( mapEntries_.data() ) - , dataSize( data_.size() * sizeof( T ) ) - , pData( data_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SpecializationInfo & operator=( SpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SpecializationInfo & operator=( VkSpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SpecializationInfo & setMapEntryCount( uint32_t mapEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - mapEntryCount = mapEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SpecializationInfo & - setPMapEntries( const VULKAN_HPP_NAMESPACE::SpecializationMapEntry * pMapEntries_ ) VULKAN_HPP_NOEXCEPT - { - pMapEntries = pMapEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SpecializationInfo & setMapEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - mapEntries_ ) VULKAN_HPP_NOEXCEPT - { - mapEntryCount = static_cast( mapEntries_.size() ); - pMapEntries = mapEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SpecializationInfo & setDataSize( size_t dataSize_ ) VULKAN_HPP_NOEXCEPT - { - dataSize = dataSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SpecializationInfo & setPData( const void * pData_ ) VULKAN_HPP_NOEXCEPT - { - pData = pData_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - SpecializationInfo & - setData( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ ) VULKAN_HPP_NOEXCEPT - { - dataSize = data_.size() * sizeof( T ); - pData = data_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSpecializationInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSpecializationInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( mapEntryCount, pMapEntries, dataSize, pData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SpecializationInfo const & ) const = default; -#else - bool operator==( SpecializationInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( mapEntryCount == rhs.mapEntryCount ) && ( pMapEntries == rhs.pMapEntries ) && - ( dataSize == rhs.dataSize ) && ( pData == rhs.pData ); -# endif - } - - bool operator!=( SpecializationInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t mapEntryCount = {}; - const VULKAN_HPP_NAMESPACE::SpecializationMapEntry * pMapEntries = {}; - size_t dataSize = {}; - const void * pData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SpecializationInfo ) == sizeof( VkSpecializationInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SpecializationInfo is not nothrow_move_constructible!" ); - - struct PipelineShaderStageCreateInfo - { - using NativeType = VkPipelineShaderStageCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineShaderStageCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits stage_ = VULKAN_HPP_NAMESPACE::ShaderStageFlagBits::eVertex, - VULKAN_HPP_NAMESPACE::ShaderModule module_ = {}, - const char * pName_ = {}, - const VULKAN_HPP_NAMESPACE::SpecializationInfo * pSpecializationInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , stage( stage_ ) - , module( module_ ) - , pName( pName_ ) - , pSpecializationInfo( pSpecializationInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineShaderStageCreateInfo( PipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineShaderStageCreateInfo( VkPipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineShaderStageCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineShaderStageCreateInfo & - operator=( PipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineShaderStageCreateInfo & operator=( VkPipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineShaderStageCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineShaderStageCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineShaderStageCreateInfo & - setStage( VULKAN_HPP_NAMESPACE::ShaderStageFlagBits stage_ ) VULKAN_HPP_NOEXCEPT - { - stage = stage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineShaderStageCreateInfo & - setModule( VULKAN_HPP_NAMESPACE::ShaderModule module_ ) VULKAN_HPP_NOEXCEPT - { - module = module_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineShaderStageCreateInfo & setPName( const char * pName_ ) VULKAN_HPP_NOEXCEPT - { - pName = pName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineShaderStageCreateInfo & setPSpecializationInfo( - const VULKAN_HPP_NAMESPACE::SpecializationInfo * pSpecializationInfo_ ) VULKAN_HPP_NOEXCEPT - { - pSpecializationInfo = pSpecializationInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineShaderStageCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineShaderStageCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, stage, module, pName, pSpecializationInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( PipelineShaderStageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = stage <=> rhs.stage; cmp != 0 ) - return cmp; - if ( auto cmp = module <=> rhs.module; cmp != 0 ) - return cmp; - if ( pName != rhs.pName ) - if ( auto cmp = strcmp( pName, rhs.pName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = pSpecializationInfo <=> rhs.pSpecializationInfo; cmp != 0 ) - return cmp; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( PipelineShaderStageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( stage == rhs.stage ) && - ( module == rhs.module ) && ( ( pName == rhs.pName ) || ( strcmp( pName, rhs.pName ) == 0 ) ) && - ( pSpecializationInfo == rhs.pSpecializationInfo ); - } - - bool operator!=( PipelineShaderStageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineShaderStageCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlagBits stage = VULKAN_HPP_NAMESPACE::ShaderStageFlagBits::eVertex; - VULKAN_HPP_NAMESPACE::ShaderModule module = {}; - const char * pName = {}; - const VULKAN_HPP_NAMESPACE::SpecializationInfo * pSpecializationInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo ) == - sizeof( VkPipelineShaderStageCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineShaderStageCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineShaderStageCreateInfo; - }; - - struct ComputePipelineCreateInfo - { - using NativeType = VkComputePipelineCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eComputePipelineCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ComputePipelineCreateInfo( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo stage_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , stage( stage_ ) - , layout( layout_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - ComputePipelineCreateInfo( ComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ComputePipelineCreateInfo( VkComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ComputePipelineCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ComputePipelineCreateInfo & operator=( ComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ComputePipelineCreateInfo & operator=( VkComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ComputePipelineCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComputePipelineCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComputePipelineCreateInfo & - setStage( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo const & stage_ ) VULKAN_HPP_NOEXCEPT - { - stage = stage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComputePipelineCreateInfo & - setLayout( VULKAN_HPP_NAMESPACE::PipelineLayout layout_ ) VULKAN_HPP_NOEXCEPT - { - layout = layout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComputePipelineCreateInfo & - setBasePipelineHandle( VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineHandle = basePipelineHandle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ComputePipelineCreateInfo & - setBasePipelineIndex( int32_t basePipelineIndex_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineIndex = basePipelineIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkComputePipelineCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkComputePipelineCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, stage, layout, basePipelineHandle, basePipelineIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ComputePipelineCreateInfo const & ) const = default; -#else - bool operator==( ComputePipelineCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( stage == rhs.stage ) && - ( layout == rhs.layout ) && ( basePipelineHandle == rhs.basePipelineHandle ) && - ( basePipelineIndex == rhs.basePipelineIndex ); -# endif - } - - bool operator!=( ComputePipelineCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eComputePipelineCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo stage = {}; - VULKAN_HPP_NAMESPACE::PipelineLayout layout = {}; - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle = {}; - int32_t basePipelineIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo ) == - sizeof( VkComputePipelineCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ComputePipelineCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ComputePipelineCreateInfo; - }; - - struct ConditionalRenderingBeginInfoEXT - { - using NativeType = VkConditionalRenderingBeginInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eConditionalRenderingBeginInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ConditionalRenderingBeginInfoEXT( - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::ConditionalRenderingFlagsEXT flags_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - , offset( offset_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - ConditionalRenderingBeginInfoEXT( ConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ConditionalRenderingBeginInfoEXT( VkConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ConditionalRenderingBeginInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ConditionalRenderingBeginInfoEXT & - operator=( ConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ConditionalRenderingBeginInfoEXT & operator=( VkConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ConditionalRenderingBeginInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ConditionalRenderingBeginInfoEXT & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ConditionalRenderingBeginInfoEXT & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ConditionalRenderingBeginInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::ConditionalRenderingFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkConditionalRenderingBeginInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkConditionalRenderingBeginInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, buffer, offset, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ConditionalRenderingBeginInfoEXT const & ) const = default; -#else - bool operator==( ConditionalRenderingBeginInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( buffer == rhs.buffer ) && ( offset == rhs.offset ) && - ( flags == rhs.flags ); -# endif - } - - bool operator!=( ConditionalRenderingBeginInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eConditionalRenderingBeginInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::ConditionalRenderingFlagsEXT flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT ) == - sizeof( VkConditionalRenderingBeginInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ConditionalRenderingBeginInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ConditionalRenderingBeginInfoEXT; - }; - - struct ConformanceVersion - { - using NativeType = VkConformanceVersion; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ConformanceVersion( uint8_t major_ = {}, - uint8_t minor_ = {}, - uint8_t subminor_ = {}, - uint8_t patch_ = {} ) VULKAN_HPP_NOEXCEPT - : major( major_ ) - , minor( minor_ ) - , subminor( subminor_ ) - , patch( patch_ ) - {} - - VULKAN_HPP_CONSTEXPR ConformanceVersion( ConformanceVersion const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ConformanceVersion( VkConformanceVersion const & rhs ) VULKAN_HPP_NOEXCEPT - : ConformanceVersion( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ConformanceVersion & operator=( ConformanceVersion const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ConformanceVersion & operator=( VkConformanceVersion const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ConformanceVersion & setMajor( uint8_t major_ ) VULKAN_HPP_NOEXCEPT - { - major = major_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ConformanceVersion & setMinor( uint8_t minor_ ) VULKAN_HPP_NOEXCEPT - { - minor = minor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ConformanceVersion & setSubminor( uint8_t subminor_ ) VULKAN_HPP_NOEXCEPT - { - subminor = subminor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ConformanceVersion & setPatch( uint8_t patch_ ) VULKAN_HPP_NOEXCEPT - { - patch = patch_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkConformanceVersion const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkConformanceVersion &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( major, minor, subminor, patch ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ConformanceVersion const & ) const = default; -#else - bool operator==( ConformanceVersion const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( major == rhs.major ) && ( minor == rhs.minor ) && ( subminor == rhs.subminor ) && ( patch == rhs.patch ); -# endif - } - - bool operator!=( ConformanceVersion const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint8_t major = {}; - uint8_t minor = {}; - uint8_t subminor = {}; - uint8_t patch = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ConformanceVersion ) == sizeof( VkConformanceVersion ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ConformanceVersion is not nothrow_move_constructible!" ); - using ConformanceVersionKHR = ConformanceVersion; - - struct CooperativeMatrixPropertiesNV - { - using NativeType = VkCooperativeMatrixPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCooperativeMatrixPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CooperativeMatrixPropertiesNV( - uint32_t MSize_ = {}, - uint32_t NSize_ = {}, - uint32_t KSize_ = {}, - VULKAN_HPP_NAMESPACE::ComponentTypeNV AType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16, - VULKAN_HPP_NAMESPACE::ComponentTypeNV BType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16, - VULKAN_HPP_NAMESPACE::ComponentTypeNV CType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16, - VULKAN_HPP_NAMESPACE::ComponentTypeNV DType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16, - VULKAN_HPP_NAMESPACE::ScopeNV scope_ = VULKAN_HPP_NAMESPACE::ScopeNV::eDevice ) VULKAN_HPP_NOEXCEPT - : MSize( MSize_ ) - , NSize( NSize_ ) - , KSize( KSize_ ) - , AType( AType_ ) - , BType( BType_ ) - , CType( CType_ ) - , DType( DType_ ) - , scope( scope_ ) - {} - - VULKAN_HPP_CONSTEXPR - CooperativeMatrixPropertiesNV( CooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CooperativeMatrixPropertiesNV( VkCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : CooperativeMatrixPropertiesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CooperativeMatrixPropertiesNV & - operator=( CooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CooperativeMatrixPropertiesNV & operator=( VkCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & setMSize( uint32_t MSize_ ) VULKAN_HPP_NOEXCEPT - { - MSize = MSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & setNSize( uint32_t NSize_ ) VULKAN_HPP_NOEXCEPT - { - NSize = NSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & setKSize( uint32_t KSize_ ) VULKAN_HPP_NOEXCEPT - { - KSize = KSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & - setAType( VULKAN_HPP_NAMESPACE::ComponentTypeNV AType_ ) VULKAN_HPP_NOEXCEPT - { - AType = AType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & - setBType( VULKAN_HPP_NAMESPACE::ComponentTypeNV BType_ ) VULKAN_HPP_NOEXCEPT - { - BType = BType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & - setCType( VULKAN_HPP_NAMESPACE::ComponentTypeNV CType_ ) VULKAN_HPP_NOEXCEPT - { - CType = CType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & - setDType( VULKAN_HPP_NAMESPACE::ComponentTypeNV DType_ ) VULKAN_HPP_NOEXCEPT - { - DType = DType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CooperativeMatrixPropertiesNV & - setScope( VULKAN_HPP_NAMESPACE::ScopeNV scope_ ) VULKAN_HPP_NOEXCEPT - { - scope = scope_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCooperativeMatrixPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCooperativeMatrixPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, MSize, NSize, KSize, AType, BType, CType, DType, scope ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CooperativeMatrixPropertiesNV const & ) const = default; -#else - bool operator==( CooperativeMatrixPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( MSize == rhs.MSize ) && ( NSize == rhs.NSize ) && - ( KSize == rhs.KSize ) && ( AType == rhs.AType ) && ( BType == rhs.BType ) && ( CType == rhs.CType ) && - ( DType == rhs.DType ) && ( scope == rhs.scope ); -# endif - } - - bool operator!=( CooperativeMatrixPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCooperativeMatrixPropertiesNV; - void * pNext = {}; - uint32_t MSize = {}; - uint32_t NSize = {}; - uint32_t KSize = {}; - VULKAN_HPP_NAMESPACE::ComponentTypeNV AType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16; - VULKAN_HPP_NAMESPACE::ComponentTypeNV BType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16; - VULKAN_HPP_NAMESPACE::ComponentTypeNV CType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16; - VULKAN_HPP_NAMESPACE::ComponentTypeNV DType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16; - VULKAN_HPP_NAMESPACE::ScopeNV scope = VULKAN_HPP_NAMESPACE::ScopeNV::eDevice; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CooperativeMatrixPropertiesNV ) == - sizeof( VkCooperativeMatrixPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CooperativeMatrixPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CooperativeMatrixPropertiesNV; - }; - - struct CopyAccelerationStructureInfoKHR - { - using NativeType = VkCopyAccelerationStructureInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyAccelerationStructureInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CopyAccelerationStructureInfoKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR src_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dst_ = {}, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode_ = - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR::eClone ) VULKAN_HPP_NOEXCEPT - : src( src_ ) - , dst( dst_ ) - , mode( mode_ ) - {} - - VULKAN_HPP_CONSTEXPR - CopyAccelerationStructureInfoKHR( CopyAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyAccelerationStructureInfoKHR( VkCopyAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyAccelerationStructureInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyAccelerationStructureInfoKHR & - operator=( CopyAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyAccelerationStructureInfoKHR & operator=( VkCopyAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureInfoKHR & - setSrc( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR src_ ) VULKAN_HPP_NOEXCEPT - { - src = src_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureInfoKHR & - setDst( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dst_ ) VULKAN_HPP_NOEXCEPT - { - dst = dst_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureInfoKHR & - setMode( VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode_ ) VULKAN_HPP_NOEXCEPT - { - mode = mode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyAccelerationStructureInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyAccelerationStructureInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, src, dst, mode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyAccelerationStructureInfoKHR const & ) const = default; -#else - bool operator==( CopyAccelerationStructureInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( src == rhs.src ) && ( dst == rhs.dst ) && - ( mode == rhs.mode ); -# endif - } - - bool operator!=( CopyAccelerationStructureInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyAccelerationStructureInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR src = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dst = {}; - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode = - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR::eClone; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyAccelerationStructureInfoKHR ) == - sizeof( VkCopyAccelerationStructureInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CopyAccelerationStructureInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyAccelerationStructureInfoKHR; - }; - - struct CopyAccelerationStructureToMemoryInfoKHR - { - using NativeType = VkCopyAccelerationStructureToMemoryInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eCopyAccelerationStructureToMemoryInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureToMemoryInfoKHR( - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR src_ = {}, - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR dst_ = {}, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode_ = - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR::eClone ) VULKAN_HPP_NOEXCEPT - : src( src_ ) - , dst( dst_ ) - , mode( mode_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureToMemoryInfoKHR( - CopyAccelerationStructureToMemoryInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyAccelerationStructureToMemoryInfoKHR( VkCopyAccelerationStructureToMemoryInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : CopyAccelerationStructureToMemoryInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyAccelerationStructureToMemoryInfoKHR & - operator=( CopyAccelerationStructureToMemoryInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyAccelerationStructureToMemoryInfoKHR & - operator=( VkCopyAccelerationStructureToMemoryInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureToMemoryInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureToMemoryInfoKHR & - setSrc( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR src_ ) VULKAN_HPP_NOEXCEPT - { - src = src_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureToMemoryInfoKHR & - setDst( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR const & dst_ ) VULKAN_HPP_NOEXCEPT - { - dst = dst_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyAccelerationStructureToMemoryInfoKHR & - setMode( VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode_ ) VULKAN_HPP_NOEXCEPT - { - mode = mode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyAccelerationStructureToMemoryInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyAccelerationStructureToMemoryInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, src, dst, mode ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyAccelerationStructureToMemoryInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR src = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressKHR dst = {}; - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode = - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR::eClone; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyAccelerationStructureToMemoryInfoKHR ) == - sizeof( VkCopyAccelerationStructureToMemoryInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CopyAccelerationStructureToMemoryInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyAccelerationStructureToMemoryInfoKHR; - }; - - struct CopyBufferInfo2 - { - using NativeType = VkCopyBufferInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyBufferInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CopyBufferInfo2( VULKAN_HPP_NAMESPACE::Buffer srcBuffer_ = {}, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer_ = {}, - uint32_t regionCount_ = {}, - const VULKAN_HPP_NAMESPACE::BufferCopy2 * pRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : srcBuffer( srcBuffer_ ) - , dstBuffer( dstBuffer_ ) - , regionCount( regionCount_ ) - , pRegions( pRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR CopyBufferInfo2( CopyBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyBufferInfo2( VkCopyBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyBufferInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyBufferInfo2( - VULKAN_HPP_NAMESPACE::Buffer srcBuffer_, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - : srcBuffer( srcBuffer_ ) - , dstBuffer( dstBuffer_ ) - , regionCount( static_cast( regions_.size() ) ) - , pRegions( regions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyBufferInfo2 & operator=( CopyBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyBufferInfo2 & operator=( VkCopyBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyBufferInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferInfo2 & - setSrcBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer_ ) VULKAN_HPP_NOEXCEPT - { - srcBuffer = srcBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferInfo2 & - setDstBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer_ ) VULKAN_HPP_NOEXCEPT - { - dstBuffer = dstBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferInfo2 & setRegionCount( uint32_t regionCount_ ) VULKAN_HPP_NOEXCEPT - { - regionCount = regionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferInfo2 & - setPRegions( const VULKAN_HPP_NAMESPACE::BufferCopy2 * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyBufferInfo2 & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - regionCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyBufferInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyBufferInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcBuffer, dstBuffer, regionCount, pRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyBufferInfo2 const & ) const = default; -#else - bool operator==( CopyBufferInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcBuffer == rhs.srcBuffer ) && - ( dstBuffer == rhs.dstBuffer ) && ( regionCount == rhs.regionCount ) && ( pRegions == rhs.pRegions ); -# endif - } - - bool operator!=( CopyBufferInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyBufferInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer srcBuffer = {}; - VULKAN_HPP_NAMESPACE::Buffer dstBuffer = {}; - uint32_t regionCount = {}; - const VULKAN_HPP_NAMESPACE::BufferCopy2 * pRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyBufferInfo2 ) == sizeof( VkCopyBufferInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CopyBufferInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyBufferInfo2; - }; - using CopyBufferInfo2KHR = CopyBufferInfo2; - - struct CopyBufferToImageInfo2 - { - using NativeType = VkCopyBufferToImageInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyBufferToImageInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CopyBufferToImageInfo2( - VULKAN_HPP_NAMESPACE::Buffer srcBuffer_ = {}, - VULKAN_HPP_NAMESPACE::Image dstImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - uint32_t regionCount_ = {}, - const VULKAN_HPP_NAMESPACE::BufferImageCopy2 * pRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : srcBuffer( srcBuffer_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( regionCount_ ) - , pRegions( pRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR CopyBufferToImageInfo2( CopyBufferToImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyBufferToImageInfo2( VkCopyBufferToImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyBufferToImageInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyBufferToImageInfo2( - VULKAN_HPP_NAMESPACE::Buffer srcBuffer_, - VULKAN_HPP_NAMESPACE::Image dstImage_, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - : srcBuffer( srcBuffer_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( static_cast( regions_.size() ) ) - , pRegions( regions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyBufferToImageInfo2 & operator=( CopyBufferToImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyBufferToImageInfo2 & operator=( VkCopyBufferToImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyBufferToImageInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferToImageInfo2 & - setSrcBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer_ ) VULKAN_HPP_NOEXCEPT - { - srcBuffer = srcBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferToImageInfo2 & - setDstImage( VULKAN_HPP_NAMESPACE::Image dstImage_ ) VULKAN_HPP_NOEXCEPT - { - dstImage = dstImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferToImageInfo2 & - setDstImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - dstImageLayout = dstImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferToImageInfo2 & setRegionCount( uint32_t regionCount_ ) VULKAN_HPP_NOEXCEPT - { - regionCount = regionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyBufferToImageInfo2 & - setPRegions( const VULKAN_HPP_NAMESPACE::BufferImageCopy2 * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyBufferToImageInfo2 & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - regionCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyBufferToImageInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyBufferToImageInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcBuffer, dstImage, dstImageLayout, regionCount, pRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyBufferToImageInfo2 const & ) const = default; -#else - bool operator==( CopyBufferToImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcBuffer == rhs.srcBuffer ) && - ( dstImage == rhs.dstImage ) && ( dstImageLayout == rhs.dstImageLayout ) && - ( regionCount == rhs.regionCount ) && ( pRegions == rhs.pRegions ); -# endif - } - - bool operator!=( CopyBufferToImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyBufferToImageInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Buffer srcBuffer = {}; - VULKAN_HPP_NAMESPACE::Image dstImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - uint32_t regionCount = {}; - const VULKAN_HPP_NAMESPACE::BufferImageCopy2 * pRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyBufferToImageInfo2 ) == - sizeof( VkCopyBufferToImageInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CopyBufferToImageInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyBufferToImageInfo2; - }; - using CopyBufferToImageInfo2KHR = CopyBufferToImageInfo2; - - struct CopyCommandTransformInfoQCOM - { - using NativeType = VkCopyCommandTransformInfoQCOM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyCommandTransformInfoQCOM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - CopyCommandTransformInfoQCOM( VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity ) VULKAN_HPP_NOEXCEPT - : transform( transform_ ) - {} - - VULKAN_HPP_CONSTEXPR - CopyCommandTransformInfoQCOM( CopyCommandTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyCommandTransformInfoQCOM( VkCopyCommandTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyCommandTransformInfoQCOM( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyCommandTransformInfoQCOM & operator=( CopyCommandTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyCommandTransformInfoQCOM & operator=( VkCopyCommandTransformInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyCommandTransformInfoQCOM & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyCommandTransformInfoQCOM & - setTransform( VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ ) VULKAN_HPP_NOEXCEPT - { - transform = transform_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyCommandTransformInfoQCOM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyCommandTransformInfoQCOM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, transform ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyCommandTransformInfoQCOM const & ) const = default; -#else - bool operator==( CopyCommandTransformInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( transform == rhs.transform ); -# endif - } - - bool operator!=( CopyCommandTransformInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyCommandTransformInfoQCOM; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyCommandTransformInfoQCOM ) == - sizeof( VkCopyCommandTransformInfoQCOM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CopyCommandTransformInfoQCOM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyCommandTransformInfoQCOM; - }; - - struct CopyDescriptorSet - { - using NativeType = VkCopyDescriptorSet; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyDescriptorSet; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CopyDescriptorSet( VULKAN_HPP_NAMESPACE::DescriptorSet srcSet_ = {}, - uint32_t srcBinding_ = {}, - uint32_t srcArrayElement_ = {}, - VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_ = {}, - uint32_t dstBinding_ = {}, - uint32_t dstArrayElement_ = {}, - uint32_t descriptorCount_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSet( srcSet_ ) - , srcBinding( srcBinding_ ) - , srcArrayElement( srcArrayElement_ ) - , dstSet( dstSet_ ) - , dstBinding( dstBinding_ ) - , dstArrayElement( dstArrayElement_ ) - , descriptorCount( descriptorCount_ ) - {} - - VULKAN_HPP_CONSTEXPR CopyDescriptorSet( CopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyDescriptorSet( VkCopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyDescriptorSet( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyDescriptorSet & operator=( CopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyDescriptorSet & operator=( VkCopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & - setSrcSet( VULKAN_HPP_NAMESPACE::DescriptorSet srcSet_ ) VULKAN_HPP_NOEXCEPT - { - srcSet = srcSet_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & setSrcBinding( uint32_t srcBinding_ ) VULKAN_HPP_NOEXCEPT - { - srcBinding = srcBinding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & setSrcArrayElement( uint32_t srcArrayElement_ ) VULKAN_HPP_NOEXCEPT - { - srcArrayElement = srcArrayElement_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & - setDstSet( VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_ ) VULKAN_HPP_NOEXCEPT - { - dstSet = dstSet_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & setDstBinding( uint32_t dstBinding_ ) VULKAN_HPP_NOEXCEPT - { - dstBinding = dstBinding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & setDstArrayElement( uint32_t dstArrayElement_ ) VULKAN_HPP_NOEXCEPT - { - dstArrayElement = dstArrayElement_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyDescriptorSet & setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = descriptorCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyDescriptorSet const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyDescriptorSet &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, srcSet, srcBinding, srcArrayElement, dstSet, dstBinding, dstArrayElement, descriptorCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyDescriptorSet const & ) const = default; -#else - bool operator==( CopyDescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcSet == rhs.srcSet ) && - ( srcBinding == rhs.srcBinding ) && ( srcArrayElement == rhs.srcArrayElement ) && - ( dstSet == rhs.dstSet ) && ( dstBinding == rhs.dstBinding ) && - ( dstArrayElement == rhs.dstArrayElement ) && ( descriptorCount == rhs.descriptorCount ); -# endif - } - - bool operator!=( CopyDescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyDescriptorSet; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DescriptorSet srcSet = {}; - uint32_t srcBinding = {}; - uint32_t srcArrayElement = {}; - VULKAN_HPP_NAMESPACE::DescriptorSet dstSet = {}; - uint32_t dstBinding = {}; - uint32_t dstArrayElement = {}; - uint32_t descriptorCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyDescriptorSet ) == sizeof( VkCopyDescriptorSet ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CopyDescriptorSet is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyDescriptorSet; - }; - - struct ImageCopy2 - { - using NativeType = VkImageCopy2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageCopy2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageCopy2( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D srcOffset_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D dstOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D extent_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubresource( srcSubresource_ ) - , srcOffset( srcOffset_ ) - , dstSubresource( dstSubresource_ ) - , dstOffset( dstOffset_ ) - , extent( extent_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageCopy2( ImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageCopy2( VkImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageCopy2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageCopy2 & operator=( ImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageCopy2 & operator=( VkImageCopy2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageCopy2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy2 & - setSrcSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & srcSubresource_ ) VULKAN_HPP_NOEXCEPT - { - srcSubresource = srcSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy2 & - setSrcOffset( VULKAN_HPP_NAMESPACE::Offset3D const & srcOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcOffset = srcOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy2 & - setDstSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & dstSubresource_ ) VULKAN_HPP_NOEXCEPT - { - dstSubresource = dstSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy2 & - setDstOffset( VULKAN_HPP_NAMESPACE::Offset3D const & dstOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstOffset = dstOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy2 & setExtent( VULKAN_HPP_NAMESPACE::Extent3D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageCopy2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageCopy2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcSubresource, srcOffset, dstSubresource, dstOffset, extent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageCopy2 const & ) const = default; -#else - bool operator==( ImageCopy2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcSubresource == rhs.srcSubresource ) && - ( srcOffset == rhs.srcOffset ) && ( dstSubresource == rhs.dstSubresource ) && - ( dstOffset == rhs.dstOffset ) && ( extent == rhs.extent ); -# endif - } - - bool operator!=( ImageCopy2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageCopy2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D srcOffset = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D dstOffset = {}; - VULKAN_HPP_NAMESPACE::Extent3D extent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageCopy2 ) == sizeof( VkImageCopy2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageCopy2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageCopy2; - }; - using ImageCopy2KHR = ImageCopy2; - - struct CopyImageInfo2 - { - using NativeType = VkCopyImageInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyImageInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - CopyImageInfo2( VULKAN_HPP_NAMESPACE::Image srcImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::Image dstImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - uint32_t regionCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageCopy2 * pRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( regionCount_ ) - , pRegions( pRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR CopyImageInfo2( CopyImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyImageInfo2( VkCopyImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyImageInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyImageInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_, - VULKAN_HPP_NAMESPACE::Image dstImage_, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( static_cast( regions_.size() ) ) - , pRegions( regions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyImageInfo2 & operator=( CopyImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyImageInfo2 & operator=( VkCopyImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & setSrcImage( VULKAN_HPP_NAMESPACE::Image srcImage_ ) VULKAN_HPP_NOEXCEPT - { - srcImage = srcImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & - setSrcImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - srcImageLayout = srcImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & setDstImage( VULKAN_HPP_NAMESPACE::Image dstImage_ ) VULKAN_HPP_NOEXCEPT - { - dstImage = dstImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & - setDstImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - dstImageLayout = dstImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & setRegionCount( uint32_t regionCount_ ) VULKAN_HPP_NOEXCEPT - { - regionCount = regionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageInfo2 & - setPRegions( const VULKAN_HPP_NAMESPACE::ImageCopy2 * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyImageInfo2 & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - regionCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyImageInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyImageInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyImageInfo2 const & ) const = default; -#else - bool operator==( CopyImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcImage == rhs.srcImage ) && - ( srcImageLayout == rhs.srcImageLayout ) && ( dstImage == rhs.dstImage ) && - ( dstImageLayout == rhs.dstImageLayout ) && ( regionCount == rhs.regionCount ) && - ( pRegions == rhs.pRegions ); -# endif - } - - bool operator!=( CopyImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyImageInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image srcImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::Image dstImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - uint32_t regionCount = {}; - const VULKAN_HPP_NAMESPACE::ImageCopy2 * pRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyImageInfo2 ) == sizeof( VkCopyImageInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CopyImageInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyImageInfo2; - }; - using CopyImageInfo2KHR = CopyImageInfo2; - - struct CopyImageToBufferInfo2 - { - using NativeType = VkCopyImageToBufferInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCopyImageToBufferInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CopyImageToBufferInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer_ = {}, - uint32_t regionCount_ = {}, - const VULKAN_HPP_NAMESPACE::BufferImageCopy2 * pRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstBuffer( dstBuffer_ ) - , regionCount( regionCount_ ) - , pRegions( pRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR CopyImageToBufferInfo2( CopyImageToBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyImageToBufferInfo2( VkCopyImageToBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : CopyImageToBufferInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyImageToBufferInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_, - VULKAN_HPP_NAMESPACE::Buffer dstBuffer_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstBuffer( dstBuffer_ ) - , regionCount( static_cast( regions_.size() ) ) - , pRegions( regions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyImageToBufferInfo2 & operator=( CopyImageToBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyImageToBufferInfo2 & operator=( VkCopyImageToBufferInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyImageToBufferInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageToBufferInfo2 & - setSrcImage( VULKAN_HPP_NAMESPACE::Image srcImage_ ) VULKAN_HPP_NOEXCEPT - { - srcImage = srcImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageToBufferInfo2 & - setSrcImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - srcImageLayout = srcImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageToBufferInfo2 & - setDstBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBuffer_ ) VULKAN_HPP_NOEXCEPT - { - dstBuffer = dstBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageToBufferInfo2 & setRegionCount( uint32_t regionCount_ ) VULKAN_HPP_NOEXCEPT - { - regionCount = regionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyImageToBufferInfo2 & - setPRegions( const VULKAN_HPP_NAMESPACE::BufferImageCopy2 * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CopyImageToBufferInfo2 & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - regionCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyImageToBufferInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyImageToBufferInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcImage, srcImageLayout, dstBuffer, regionCount, pRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CopyImageToBufferInfo2 const & ) const = default; -#else - bool operator==( CopyImageToBufferInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcImage == rhs.srcImage ) && - ( srcImageLayout == rhs.srcImageLayout ) && ( dstBuffer == rhs.dstBuffer ) && - ( regionCount == rhs.regionCount ) && ( pRegions == rhs.pRegions ); -# endif - } - - bool operator!=( CopyImageToBufferInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyImageToBufferInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image srcImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::Buffer dstBuffer = {}; - uint32_t regionCount = {}; - const VULKAN_HPP_NAMESPACE::BufferImageCopy2 * pRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyImageToBufferInfo2 ) == - sizeof( VkCopyImageToBufferInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CopyImageToBufferInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyImageToBufferInfo2; - }; - using CopyImageToBufferInfo2KHR = CopyImageToBufferInfo2; - - struct CopyMemoryToAccelerationStructureInfoKHR - { - using NativeType = VkCopyMemoryToAccelerationStructureInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eCopyMemoryToAccelerationStructureInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 CopyMemoryToAccelerationStructureInfoKHR( - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR src_ = {}, - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dst_ = {}, - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode_ = - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR::eClone ) VULKAN_HPP_NOEXCEPT - : src( src_ ) - , dst( dst_ ) - , mode( mode_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 CopyMemoryToAccelerationStructureInfoKHR( - CopyMemoryToAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyMemoryToAccelerationStructureInfoKHR( VkCopyMemoryToAccelerationStructureInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : CopyMemoryToAccelerationStructureInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CopyMemoryToAccelerationStructureInfoKHR & - operator=( CopyMemoryToAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CopyMemoryToAccelerationStructureInfoKHR & - operator=( VkCopyMemoryToAccelerationStructureInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CopyMemoryToAccelerationStructureInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyMemoryToAccelerationStructureInfoKHR & - setSrc( VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR const & src_ ) VULKAN_HPP_NOEXCEPT - { - src = src_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyMemoryToAccelerationStructureInfoKHR & - setDst( VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dst_ ) VULKAN_HPP_NOEXCEPT - { - dst = dst_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CopyMemoryToAccelerationStructureInfoKHR & - setMode( VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode_ ) VULKAN_HPP_NOEXCEPT - { - mode = mode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCopyMemoryToAccelerationStructureInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCopyMemoryToAccelerationStructureInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, src, dst, mode ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyMemoryToAccelerationStructureInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceOrHostAddressConstKHR src = {}; - VULKAN_HPP_NAMESPACE::AccelerationStructureKHR dst = {}; - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR mode = - VULKAN_HPP_NAMESPACE::CopyAccelerationStructureModeKHR::eClone; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CopyMemoryToAccelerationStructureInfoKHR ) == - sizeof( VkCopyMemoryToAccelerationStructureInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "CopyMemoryToAccelerationStructureInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CopyMemoryToAccelerationStructureInfoKHR; - }; - - struct CuFunctionCreateInfoNVX - { - using NativeType = VkCuFunctionCreateInfoNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCuFunctionCreateInfoNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CuFunctionCreateInfoNVX( VULKAN_HPP_NAMESPACE::CuModuleNVX module_ = {}, - const char * pName_ = {} ) VULKAN_HPP_NOEXCEPT - : module( module_ ) - , pName( pName_ ) - {} - - VULKAN_HPP_CONSTEXPR CuFunctionCreateInfoNVX( CuFunctionCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CuFunctionCreateInfoNVX( VkCuFunctionCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : CuFunctionCreateInfoNVX( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CuFunctionCreateInfoNVX & operator=( CuFunctionCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CuFunctionCreateInfoNVX & operator=( VkCuFunctionCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CuFunctionCreateInfoNVX & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuFunctionCreateInfoNVX & - setModule( VULKAN_HPP_NAMESPACE::CuModuleNVX module_ ) VULKAN_HPP_NOEXCEPT - { - module = module_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuFunctionCreateInfoNVX & setPName( const char * pName_ ) VULKAN_HPP_NOEXCEPT - { - pName = pName_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCuFunctionCreateInfoNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCuFunctionCreateInfoNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, module, pName ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( CuFunctionCreateInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = module <=> rhs.module; cmp != 0 ) - return cmp; - if ( pName != rhs.pName ) - if ( auto cmp = strcmp( pName, rhs.pName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( CuFunctionCreateInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( module == rhs.module ) && - ( ( pName == rhs.pName ) || ( strcmp( pName, rhs.pName ) == 0 ) ); - } - - bool operator!=( CuFunctionCreateInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCuFunctionCreateInfoNVX; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CuModuleNVX module = {}; - const char * pName = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CuFunctionCreateInfoNVX ) == - sizeof( VkCuFunctionCreateInfoNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CuFunctionCreateInfoNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CuFunctionCreateInfoNVX; - }; - - struct CuLaunchInfoNVX - { - using NativeType = VkCuLaunchInfoNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCuLaunchInfoNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CuLaunchInfoNVX( VULKAN_HPP_NAMESPACE::CuFunctionNVX function_ = {}, - uint32_t gridDimX_ = {}, - uint32_t gridDimY_ = {}, - uint32_t gridDimZ_ = {}, - uint32_t blockDimX_ = {}, - uint32_t blockDimY_ = {}, - uint32_t blockDimZ_ = {}, - uint32_t sharedMemBytes_ = {}, - size_t paramCount_ = {}, - const void * const * pParams_ = {}, - size_t extraCount_ = {}, - const void * const * pExtras_ = {} ) VULKAN_HPP_NOEXCEPT - : function( function_ ) - , gridDimX( gridDimX_ ) - , gridDimY( gridDimY_ ) - , gridDimZ( gridDimZ_ ) - , blockDimX( blockDimX_ ) - , blockDimY( blockDimY_ ) - , blockDimZ( blockDimZ_ ) - , sharedMemBytes( sharedMemBytes_ ) - , paramCount( paramCount_ ) - , pParams( pParams_ ) - , extraCount( extraCount_ ) - , pExtras( pExtras_ ) - {} - - VULKAN_HPP_CONSTEXPR CuLaunchInfoNVX( CuLaunchInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CuLaunchInfoNVX( VkCuLaunchInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : CuLaunchInfoNVX( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CuLaunchInfoNVX( VULKAN_HPP_NAMESPACE::CuFunctionNVX function_, - uint32_t gridDimX_, - uint32_t gridDimY_, - uint32_t gridDimZ_, - uint32_t blockDimX_, - uint32_t blockDimY_, - uint32_t blockDimZ_, - uint32_t sharedMemBytes_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & params_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & extras_ = {} ) - : function( function_ ) - , gridDimX( gridDimX_ ) - , gridDimY( gridDimY_ ) - , gridDimZ( gridDimZ_ ) - , blockDimX( blockDimX_ ) - , blockDimY( blockDimY_ ) - , blockDimZ( blockDimZ_ ) - , sharedMemBytes( sharedMemBytes_ ) - , paramCount( params_.size() ) - , pParams( params_.data() ) - , extraCount( extras_.size() ) - , pExtras( extras_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CuLaunchInfoNVX & operator=( CuLaunchInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CuLaunchInfoNVX & operator=( VkCuLaunchInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & - setFunction( VULKAN_HPP_NAMESPACE::CuFunctionNVX function_ ) VULKAN_HPP_NOEXCEPT - { - function = function_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setGridDimX( uint32_t gridDimX_ ) VULKAN_HPP_NOEXCEPT - { - gridDimX = gridDimX_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setGridDimY( uint32_t gridDimY_ ) VULKAN_HPP_NOEXCEPT - { - gridDimY = gridDimY_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setGridDimZ( uint32_t gridDimZ_ ) VULKAN_HPP_NOEXCEPT - { - gridDimZ = gridDimZ_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setBlockDimX( uint32_t blockDimX_ ) VULKAN_HPP_NOEXCEPT - { - blockDimX = blockDimX_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setBlockDimY( uint32_t blockDimY_ ) VULKAN_HPP_NOEXCEPT - { - blockDimY = blockDimY_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setBlockDimZ( uint32_t blockDimZ_ ) VULKAN_HPP_NOEXCEPT - { - blockDimZ = blockDimZ_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setSharedMemBytes( uint32_t sharedMemBytes_ ) VULKAN_HPP_NOEXCEPT - { - sharedMemBytes = sharedMemBytes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setParamCount( size_t paramCount_ ) VULKAN_HPP_NOEXCEPT - { - paramCount = paramCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setPParams( const void * const * pParams_ ) VULKAN_HPP_NOEXCEPT - { - pParams = pParams_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CuLaunchInfoNVX & - setParams( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & params_ ) VULKAN_HPP_NOEXCEPT - { - paramCount = params_.size(); - pParams = params_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setExtraCount( size_t extraCount_ ) VULKAN_HPP_NOEXCEPT - { - extraCount = extraCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuLaunchInfoNVX & setPExtras( const void * const * pExtras_ ) VULKAN_HPP_NOEXCEPT - { - pExtras = pExtras_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - CuLaunchInfoNVX & - setExtras( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & extras_ ) VULKAN_HPP_NOEXCEPT - { - extraCount = extras_.size(); - pExtras = extras_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCuLaunchInfoNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCuLaunchInfoNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - function, - gridDimX, - gridDimY, - gridDimZ, - blockDimX, - blockDimY, - blockDimZ, - sharedMemBytes, - paramCount, - pParams, - extraCount, - pExtras ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CuLaunchInfoNVX const & ) const = default; -#else - bool operator==( CuLaunchInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( function == rhs.function ) && - ( gridDimX == rhs.gridDimX ) && ( gridDimY == rhs.gridDimY ) && ( gridDimZ == rhs.gridDimZ ) && - ( blockDimX == rhs.blockDimX ) && ( blockDimY == rhs.blockDimY ) && ( blockDimZ == rhs.blockDimZ ) && - ( sharedMemBytes == rhs.sharedMemBytes ) && ( paramCount == rhs.paramCount ) && - ( pParams == rhs.pParams ) && ( extraCount == rhs.extraCount ) && ( pExtras == rhs.pExtras ); -# endif - } - - bool operator!=( CuLaunchInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCuLaunchInfoNVX; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CuFunctionNVX function = {}; - uint32_t gridDimX = {}; - uint32_t gridDimY = {}; - uint32_t gridDimZ = {}; - uint32_t blockDimX = {}; - uint32_t blockDimY = {}; - uint32_t blockDimZ = {}; - uint32_t sharedMemBytes = {}; - size_t paramCount = {}; - const void * const * pParams = {}; - size_t extraCount = {}; - const void * const * pExtras = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CuLaunchInfoNVX ) == sizeof( VkCuLaunchInfoNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CuLaunchInfoNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CuLaunchInfoNVX; - }; - - struct CuModuleCreateInfoNVX - { - using NativeType = VkCuModuleCreateInfoNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCuModuleCreateInfoNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR CuModuleCreateInfoNVX( size_t dataSize_ = {}, const void * pData_ = {} ) VULKAN_HPP_NOEXCEPT - : dataSize( dataSize_ ) - , pData( pData_ ) - {} - - VULKAN_HPP_CONSTEXPR CuModuleCreateInfoNVX( CuModuleCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CuModuleCreateInfoNVX( VkCuModuleCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : CuModuleCreateInfoNVX( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - CuModuleCreateInfoNVX( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ ) - : dataSize( data_.size() * sizeof( T ) ), pData( data_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - CuModuleCreateInfoNVX & operator=( CuModuleCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - CuModuleCreateInfoNVX & operator=( VkCuModuleCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 CuModuleCreateInfoNVX & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuModuleCreateInfoNVX & setDataSize( size_t dataSize_ ) VULKAN_HPP_NOEXCEPT - { - dataSize = dataSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 CuModuleCreateInfoNVX & setPData( const void * pData_ ) VULKAN_HPP_NOEXCEPT - { - pData = pData_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - CuModuleCreateInfoNVX & - setData( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ ) VULKAN_HPP_NOEXCEPT - { - dataSize = data_.size() * sizeof( T ); - pData = data_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkCuModuleCreateInfoNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkCuModuleCreateInfoNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, dataSize, pData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( CuModuleCreateInfoNVX const & ) const = default; -#else - bool operator==( CuModuleCreateInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dataSize == rhs.dataSize ) && ( pData == rhs.pData ); -# endif - } - - bool operator!=( CuModuleCreateInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCuModuleCreateInfoNVX; - const void * pNext = {}; - size_t dataSize = {}; - const void * pData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::CuModuleCreateInfoNVX ) == sizeof( VkCuModuleCreateInfoNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "CuModuleCreateInfoNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = CuModuleCreateInfoNVX; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct D3D12FenceSubmitInfoKHR - { - using NativeType = VkD3D12FenceSubmitInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eD3D12FenceSubmitInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR D3D12FenceSubmitInfoKHR( uint32_t waitSemaphoreValuesCount_ = {}, - const uint64_t * pWaitSemaphoreValues_ = {}, - uint32_t signalSemaphoreValuesCount_ = {}, - const uint64_t * pSignalSemaphoreValues_ = {} ) VULKAN_HPP_NOEXCEPT - : waitSemaphoreValuesCount( waitSemaphoreValuesCount_ ) - , pWaitSemaphoreValues( pWaitSemaphoreValues_ ) - , signalSemaphoreValuesCount( signalSemaphoreValuesCount_ ) - , pSignalSemaphoreValues( pSignalSemaphoreValues_ ) - {} - - VULKAN_HPP_CONSTEXPR D3D12FenceSubmitInfoKHR( D3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - D3D12FenceSubmitInfoKHR( VkD3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : D3D12FenceSubmitInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - D3D12FenceSubmitInfoKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphoreValues_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphoreValues_ = {} ) - : waitSemaphoreValuesCount( static_cast( waitSemaphoreValues_.size() ) ) - , pWaitSemaphoreValues( waitSemaphoreValues_.data() ) - , signalSemaphoreValuesCount( static_cast( signalSemaphoreValues_.size() ) ) - , pSignalSemaphoreValues( signalSemaphoreValues_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - D3D12FenceSubmitInfoKHR & operator=( D3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - D3D12FenceSubmitInfoKHR & operator=( VkD3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 D3D12FenceSubmitInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 D3D12FenceSubmitInfoKHR & - setWaitSemaphoreValuesCount( uint32_t waitSemaphoreValuesCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreValuesCount = waitSemaphoreValuesCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 D3D12FenceSubmitInfoKHR & - setPWaitSemaphoreValues( const uint64_t * pWaitSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphoreValues = pWaitSemaphoreValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - D3D12FenceSubmitInfoKHR & setWaitSemaphoreValues( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreValuesCount = static_cast( waitSemaphoreValues_.size() ); - pWaitSemaphoreValues = waitSemaphoreValues_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 D3D12FenceSubmitInfoKHR & - setSignalSemaphoreValuesCount( uint32_t signalSemaphoreValuesCount_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreValuesCount = signalSemaphoreValuesCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 D3D12FenceSubmitInfoKHR & - setPSignalSemaphoreValues( const uint64_t * pSignalSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - pSignalSemaphoreValues = pSignalSemaphoreValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - D3D12FenceSubmitInfoKHR & setSignalSemaphoreValues( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreValuesCount = static_cast( signalSemaphoreValues_.size() ); - pSignalSemaphoreValues = signalSemaphoreValues_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkD3D12FenceSubmitInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkD3D12FenceSubmitInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - waitSemaphoreValuesCount, - pWaitSemaphoreValues, - signalSemaphoreValuesCount, - pSignalSemaphoreValues ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( D3D12FenceSubmitInfoKHR const & ) const = default; -# else - bool operator==( D3D12FenceSubmitInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( waitSemaphoreValuesCount == rhs.waitSemaphoreValuesCount ) && - ( pWaitSemaphoreValues == rhs.pWaitSemaphoreValues ) && - ( signalSemaphoreValuesCount == rhs.signalSemaphoreValuesCount ) && - ( pSignalSemaphoreValues == rhs.pSignalSemaphoreValues ); -# endif - } - - bool operator!=( D3D12FenceSubmitInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eD3D12FenceSubmitInfoKHR; - const void * pNext = {}; - uint32_t waitSemaphoreValuesCount = {}; - const uint64_t * pWaitSemaphoreValues = {}; - uint32_t signalSemaphoreValuesCount = {}; - const uint64_t * pSignalSemaphoreValues = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::D3D12FenceSubmitInfoKHR ) == - sizeof( VkD3D12FenceSubmitInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "D3D12FenceSubmitInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = D3D12FenceSubmitInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct DebugMarkerMarkerInfoEXT - { - using NativeType = VkDebugMarkerMarkerInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugMarkerMarkerInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 DebugMarkerMarkerInfoEXT( const char * pMarkerName_ = {}, - std::array const & color_ = {} ) VULKAN_HPP_NOEXCEPT - : pMarkerName( pMarkerName_ ) - , color( color_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - DebugMarkerMarkerInfoEXT( DebugMarkerMarkerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugMarkerMarkerInfoEXT( VkDebugMarkerMarkerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugMarkerMarkerInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugMarkerMarkerInfoEXT & operator=( DebugMarkerMarkerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugMarkerMarkerInfoEXT & operator=( VkDebugMarkerMarkerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugMarkerMarkerInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerMarkerInfoEXT & setPMarkerName( const char * pMarkerName_ ) VULKAN_HPP_NOEXCEPT - { - pMarkerName = pMarkerName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerMarkerInfoEXT & setColor( std::array color_ ) VULKAN_HPP_NOEXCEPT - { - color = color_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugMarkerMarkerInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugMarkerMarkerInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pMarkerName, color ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::partial_ordering operator<=>( DebugMarkerMarkerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( pMarkerName != rhs.pMarkerName ) - if ( auto cmp = strcmp( pMarkerName, rhs.pMarkerName ); cmp != 0 ) - return ( cmp < 0 ) ? std::partial_ordering::less : std::partial_ordering::greater; - if ( auto cmp = color <=> rhs.color; cmp != 0 ) - return cmp; - - return std::partial_ordering::equivalent; - } -#endif - - bool operator==( DebugMarkerMarkerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( ( pMarkerName == rhs.pMarkerName ) || ( strcmp( pMarkerName, rhs.pMarkerName ) == 0 ) ) && - ( color == rhs.color ); - } - - bool operator!=( DebugMarkerMarkerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugMarkerMarkerInfoEXT; - const void * pNext = {}; - const char * pMarkerName = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D color = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugMarkerMarkerInfoEXT ) == - sizeof( VkDebugMarkerMarkerInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DebugMarkerMarkerInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugMarkerMarkerInfoEXT; - }; - - struct DebugMarkerObjectNameInfoEXT - { - using NativeType = VkDebugMarkerObjectNameInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugMarkerObjectNameInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DebugMarkerObjectNameInfoEXT( VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_ = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown, - uint64_t object_ = {}, - const char * pObjectName_ = {} ) VULKAN_HPP_NOEXCEPT - : objectType( objectType_ ) - , object( object_ ) - , pObjectName( pObjectName_ ) - {} - - VULKAN_HPP_CONSTEXPR - DebugMarkerObjectNameInfoEXT( DebugMarkerObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugMarkerObjectNameInfoEXT( VkDebugMarkerObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugMarkerObjectNameInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugMarkerObjectNameInfoEXT & operator=( DebugMarkerObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugMarkerObjectNameInfoEXT & operator=( VkDebugMarkerObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectNameInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectNameInfoEXT & - setObjectType( VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_ ) VULKAN_HPP_NOEXCEPT - { - objectType = objectType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectNameInfoEXT & setObject( uint64_t object_ ) VULKAN_HPP_NOEXCEPT - { - object = object_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectNameInfoEXT & - setPObjectName( const char * pObjectName_ ) VULKAN_HPP_NOEXCEPT - { - pObjectName = pObjectName_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugMarkerObjectNameInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugMarkerObjectNameInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, objectType, object, pObjectName ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( DebugMarkerObjectNameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = objectType <=> rhs.objectType; cmp != 0 ) - return cmp; - if ( auto cmp = object <=> rhs.object; cmp != 0 ) - return cmp; - if ( pObjectName != rhs.pObjectName ) - if ( auto cmp = strcmp( pObjectName, rhs.pObjectName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( DebugMarkerObjectNameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( objectType == rhs.objectType ) && - ( object == rhs.object ) && - ( ( pObjectName == rhs.pObjectName ) || ( strcmp( pObjectName, rhs.pObjectName ) == 0 ) ); - } - - bool operator!=( DebugMarkerObjectNameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugMarkerObjectNameInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - uint64_t object = {}; - const char * pObjectName = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugMarkerObjectNameInfoEXT ) == - sizeof( VkDebugMarkerObjectNameInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DebugMarkerObjectNameInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugMarkerObjectNameInfoEXT; - }; - - struct DebugMarkerObjectTagInfoEXT - { - using NativeType = VkDebugMarkerObjectTagInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugMarkerObjectTagInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DebugMarkerObjectTagInfoEXT( VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_ = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown, - uint64_t object_ = {}, - uint64_t tagName_ = {}, - size_t tagSize_ = {}, - const void * pTag_ = {} ) VULKAN_HPP_NOEXCEPT - : objectType( objectType_ ) - , object( object_ ) - , tagName( tagName_ ) - , tagSize( tagSize_ ) - , pTag( pTag_ ) - {} - - VULKAN_HPP_CONSTEXPR - DebugMarkerObjectTagInfoEXT( DebugMarkerObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugMarkerObjectTagInfoEXT( VkDebugMarkerObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugMarkerObjectTagInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - DebugMarkerObjectTagInfoEXT( VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_, - uint64_t object_, - uint64_t tagName_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & tag_ ) - : objectType( objectType_ ) - , object( object_ ) - , tagName( tagName_ ) - , tagSize( tag_.size() * sizeof( T ) ) - , pTag( tag_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugMarkerObjectTagInfoEXT & operator=( DebugMarkerObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugMarkerObjectTagInfoEXT & operator=( VkDebugMarkerObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectTagInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectTagInfoEXT & - setObjectType( VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType_ ) VULKAN_HPP_NOEXCEPT - { - objectType = objectType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectTagInfoEXT & setObject( uint64_t object_ ) VULKAN_HPP_NOEXCEPT - { - object = object_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectTagInfoEXT & setTagName( uint64_t tagName_ ) VULKAN_HPP_NOEXCEPT - { - tagName = tagName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectTagInfoEXT & setTagSize( size_t tagSize_ ) VULKAN_HPP_NOEXCEPT - { - tagSize = tagSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugMarkerObjectTagInfoEXT & setPTag( const void * pTag_ ) VULKAN_HPP_NOEXCEPT - { - pTag = pTag_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - DebugMarkerObjectTagInfoEXT & - setTag( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & tag_ ) VULKAN_HPP_NOEXCEPT - { - tagSize = tag_.size() * sizeof( T ); - pTag = tag_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugMarkerObjectTagInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugMarkerObjectTagInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, objectType, object, tagName, tagSize, pTag ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DebugMarkerObjectTagInfoEXT const & ) const = default; -#else - bool operator==( DebugMarkerObjectTagInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( objectType == rhs.objectType ) && - ( object == rhs.object ) && ( tagName == rhs.tagName ) && ( tagSize == rhs.tagSize ) && - ( pTag == rhs.pTag ); -# endif - } - - bool operator!=( DebugMarkerObjectTagInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugMarkerObjectTagInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType = - VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown; - uint64_t object = {}; - uint64_t tagName = {}; - size_t tagSize = {}; - const void * pTag = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugMarkerObjectTagInfoEXT ) == - sizeof( VkDebugMarkerObjectTagInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DebugMarkerObjectTagInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugMarkerObjectTagInfoEXT; - }; - - struct DebugReportCallbackCreateInfoEXT - { - using NativeType = VkDebugReportCallbackCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugReportCallbackCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DebugReportCallbackCreateInfoEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags_ = {}, - PFN_vkDebugReportCallbackEXT pfnCallback_ = {}, - void * pUserData_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pfnCallback( pfnCallback_ ) - , pUserData( pUserData_ ) - {} - - VULKAN_HPP_CONSTEXPR - DebugReportCallbackCreateInfoEXT( DebugReportCallbackCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugReportCallbackCreateInfoEXT( VkDebugReportCallbackCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugReportCallbackCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugReportCallbackCreateInfoEXT & - operator=( DebugReportCallbackCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugReportCallbackCreateInfoEXT & operator=( VkDebugReportCallbackCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugReportCallbackCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugReportCallbackCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugReportCallbackCreateInfoEXT & - setPfnCallback( PFN_vkDebugReportCallbackEXT pfnCallback_ ) VULKAN_HPP_NOEXCEPT - { - pfnCallback = pfnCallback_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugReportCallbackCreateInfoEXT & setPUserData( void * pUserData_ ) VULKAN_HPP_NOEXCEPT - { - pUserData = pUserData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugReportCallbackCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugReportCallbackCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pfnCallback, pUserData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DebugReportCallbackCreateInfoEXT const & ) const = default; -#else - bool operator==( DebugReportCallbackCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pfnCallback == rhs.pfnCallback ) && ( pUserData == rhs.pUserData ); -# endif - } - - bool operator!=( DebugReportCallbackCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugReportCallbackCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags = {}; - PFN_vkDebugReportCallbackEXT pfnCallback = {}; - void * pUserData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT ) == - sizeof( VkDebugReportCallbackCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DebugReportCallbackCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugReportCallbackCreateInfoEXT; - }; - - struct DebugUtilsLabelEXT - { - using NativeType = VkDebugUtilsLabelEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugUtilsLabelEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsLabelEXT( const char * pLabelName_ = {}, - std::array const & color_ = {} ) VULKAN_HPP_NOEXCEPT - : pLabelName( pLabelName_ ) - , color( color_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsLabelEXT( DebugUtilsLabelEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsLabelEXT( VkDebugUtilsLabelEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugUtilsLabelEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugUtilsLabelEXT & operator=( DebugUtilsLabelEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsLabelEXT & operator=( VkDebugUtilsLabelEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsLabelEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsLabelEXT & setPLabelName( const char * pLabelName_ ) VULKAN_HPP_NOEXCEPT - { - pLabelName = pLabelName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsLabelEXT & setColor( std::array color_ ) VULKAN_HPP_NOEXCEPT - { - color = color_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugUtilsLabelEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugUtilsLabelEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pLabelName, color ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::partial_ordering operator<=>( DebugUtilsLabelEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( pLabelName != rhs.pLabelName ) - if ( auto cmp = strcmp( pLabelName, rhs.pLabelName ); cmp != 0 ) - return ( cmp < 0 ) ? std::partial_ordering::less : std::partial_ordering::greater; - if ( auto cmp = color <=> rhs.color; cmp != 0 ) - return cmp; - - return std::partial_ordering::equivalent; - } -#endif - - bool operator==( DebugUtilsLabelEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( ( pLabelName == rhs.pLabelName ) || ( strcmp( pLabelName, rhs.pLabelName ) == 0 ) ) && - ( color == rhs.color ); - } - - bool operator!=( DebugUtilsLabelEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugUtilsLabelEXT; - const void * pNext = {}; - const char * pLabelName = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D color = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT ) == sizeof( VkDebugUtilsLabelEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DebugUtilsLabelEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugUtilsLabelEXT; - }; - - struct DebugUtilsObjectNameInfoEXT - { - using NativeType = VkDebugUtilsObjectNameInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugUtilsObjectNameInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DebugUtilsObjectNameInfoEXT( - VULKAN_HPP_NAMESPACE::ObjectType objectType_ = VULKAN_HPP_NAMESPACE::ObjectType::eUnknown, - uint64_t objectHandle_ = {}, - const char * pObjectName_ = {} ) VULKAN_HPP_NOEXCEPT - : objectType( objectType_ ) - , objectHandle( objectHandle_ ) - , pObjectName( pObjectName_ ) - {} - - VULKAN_HPP_CONSTEXPR - DebugUtilsObjectNameInfoEXT( DebugUtilsObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsObjectNameInfoEXT( VkDebugUtilsObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugUtilsObjectNameInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugUtilsObjectNameInfoEXT & operator=( DebugUtilsObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsObjectNameInfoEXT & operator=( VkDebugUtilsObjectNameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectNameInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectNameInfoEXT & - setObjectType( VULKAN_HPP_NAMESPACE::ObjectType objectType_ ) VULKAN_HPP_NOEXCEPT - { - objectType = objectType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectNameInfoEXT & setObjectHandle( uint64_t objectHandle_ ) VULKAN_HPP_NOEXCEPT - { - objectHandle = objectHandle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectNameInfoEXT & - setPObjectName( const char * pObjectName_ ) VULKAN_HPP_NOEXCEPT - { - pObjectName = pObjectName_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugUtilsObjectNameInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugUtilsObjectNameInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, objectType, objectHandle, pObjectName ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( DebugUtilsObjectNameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = objectType <=> rhs.objectType; cmp != 0 ) - return cmp; - if ( auto cmp = objectHandle <=> rhs.objectHandle; cmp != 0 ) - return cmp; - if ( pObjectName != rhs.pObjectName ) - if ( auto cmp = strcmp( pObjectName, rhs.pObjectName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( DebugUtilsObjectNameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( objectType == rhs.objectType ) && - ( objectHandle == rhs.objectHandle ) && - ( ( pObjectName == rhs.pObjectName ) || ( strcmp( pObjectName, rhs.pObjectName ) == 0 ) ); - } - - bool operator!=( DebugUtilsObjectNameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugUtilsObjectNameInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::ObjectType::eUnknown; - uint64_t objectHandle = {}; - const char * pObjectName = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT ) == - sizeof( VkDebugUtilsObjectNameInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DebugUtilsObjectNameInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugUtilsObjectNameInfoEXT; - }; - - struct DebugUtilsMessengerCallbackDataEXT - { - using NativeType = VkDebugUtilsMessengerCallbackDataEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDebugUtilsMessengerCallbackDataEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataFlagsEXT flags_ = {}, - const char * pMessageIdName_ = {}, - int32_t messageIdNumber_ = {}, - const char * pMessage_ = {}, - uint32_t queueLabelCount_ = {}, - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pQueueLabels_ = {}, - uint32_t cmdBufLabelCount_ = {}, - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pCmdBufLabels_ = {}, - uint32_t objectCount_ = {}, - const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT * pObjects_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pMessageIdName( pMessageIdName_ ) - , messageIdNumber( messageIdNumber_ ) - , pMessage( pMessage_ ) - , queueLabelCount( queueLabelCount_ ) - , pQueueLabels( pQueueLabels_ ) - , cmdBufLabelCount( cmdBufLabelCount_ ) - , pCmdBufLabels( pCmdBufLabels_ ) - , objectCount( objectCount_ ) - , pObjects( pObjects_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT( DebugUtilsMessengerCallbackDataEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsMessengerCallbackDataEXT( VkDebugUtilsMessengerCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugUtilsMessengerCallbackDataEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DebugUtilsMessengerCallbackDataEXT( - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataFlagsEXT flags_, - const char * pMessageIdName_, - int32_t messageIdNumber_, - const char * pMessage_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - queueLabels_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - cmdBufLabels_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - objects_ = {} ) - : flags( flags_ ) - , pMessageIdName( pMessageIdName_ ) - , messageIdNumber( messageIdNumber_ ) - , pMessage( pMessage_ ) - , queueLabelCount( static_cast( queueLabels_.size() ) ) - , pQueueLabels( queueLabels_.data() ) - , cmdBufLabelCount( static_cast( cmdBufLabels_.size() ) ) - , pCmdBufLabels( cmdBufLabels_.data() ) - , objectCount( static_cast( objects_.size() ) ) - , pObjects( objects_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugUtilsMessengerCallbackDataEXT & - operator=( DebugUtilsMessengerCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsMessengerCallbackDataEXT & - operator=( VkDebugUtilsMessengerCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setFlags( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setPMessageIdName( const char * pMessageIdName_ ) VULKAN_HPP_NOEXCEPT - { - pMessageIdName = pMessageIdName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setMessageIdNumber( int32_t messageIdNumber_ ) VULKAN_HPP_NOEXCEPT - { - messageIdNumber = messageIdNumber_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setPMessage( const char * pMessage_ ) VULKAN_HPP_NOEXCEPT - { - pMessage = pMessage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setQueueLabelCount( uint32_t queueLabelCount_ ) VULKAN_HPP_NOEXCEPT - { - queueLabelCount = queueLabelCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setPQueueLabels( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pQueueLabels_ ) VULKAN_HPP_NOEXCEPT - { - pQueueLabels = pQueueLabels_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DebugUtilsMessengerCallbackDataEXT & setQueueLabels( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - queueLabels_ ) VULKAN_HPP_NOEXCEPT - { - queueLabelCount = static_cast( queueLabels_.size() ); - pQueueLabels = queueLabels_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setCmdBufLabelCount( uint32_t cmdBufLabelCount_ ) VULKAN_HPP_NOEXCEPT - { - cmdBufLabelCount = cmdBufLabelCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setPCmdBufLabels( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pCmdBufLabels_ ) VULKAN_HPP_NOEXCEPT - { - pCmdBufLabels = pCmdBufLabels_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DebugUtilsMessengerCallbackDataEXT & setCmdBufLabels( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - cmdBufLabels_ ) VULKAN_HPP_NOEXCEPT - { - cmdBufLabelCount = static_cast( cmdBufLabels_.size() ); - pCmdBufLabels = cmdBufLabels_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setObjectCount( uint32_t objectCount_ ) VULKAN_HPP_NOEXCEPT - { - objectCount = objectCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCallbackDataEXT & - setPObjects( const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT * pObjects_ ) VULKAN_HPP_NOEXCEPT - { - pObjects = pObjects_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DebugUtilsMessengerCallbackDataEXT & setObjects( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - objects_ ) VULKAN_HPP_NOEXCEPT - { - objectCount = static_cast( objects_.size() ); - pObjects = objects_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugUtilsMessengerCallbackDataEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugUtilsMessengerCallbackDataEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - pMessageIdName, - messageIdNumber, - pMessage, - queueLabelCount, - pQueueLabels, - cmdBufLabelCount, - pCmdBufLabels, - objectCount, - pObjects ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( DebugUtilsMessengerCallbackDataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( pMessageIdName != rhs.pMessageIdName ) - if ( auto cmp = strcmp( pMessageIdName, rhs.pMessageIdName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = messageIdNumber <=> rhs.messageIdNumber; cmp != 0 ) - return cmp; - if ( pMessage != rhs.pMessage ) - if ( auto cmp = strcmp( pMessage, rhs.pMessage ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = queueLabelCount <=> rhs.queueLabelCount; cmp != 0 ) - return cmp; - if ( auto cmp = pQueueLabels <=> rhs.pQueueLabels; cmp != 0 ) - return cmp; - if ( auto cmp = cmdBufLabelCount <=> rhs.cmdBufLabelCount; cmp != 0 ) - return cmp; - if ( auto cmp = pCmdBufLabels <=> rhs.pCmdBufLabels; cmp != 0 ) - return cmp; - if ( auto cmp = objectCount <=> rhs.objectCount; cmp != 0 ) - return cmp; - if ( auto cmp = pObjects <=> rhs.pObjects; cmp != 0 ) - return cmp; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( DebugUtilsMessengerCallbackDataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( ( pMessageIdName == rhs.pMessageIdName ) || ( strcmp( pMessageIdName, rhs.pMessageIdName ) == 0 ) ) && - ( messageIdNumber == rhs.messageIdNumber ) && - ( ( pMessage == rhs.pMessage ) || ( strcmp( pMessage, rhs.pMessage ) == 0 ) ) && - ( queueLabelCount == rhs.queueLabelCount ) && ( pQueueLabels == rhs.pQueueLabels ) && - ( cmdBufLabelCount == rhs.cmdBufLabelCount ) && ( pCmdBufLabels == rhs.pCmdBufLabels ) && - ( objectCount == rhs.objectCount ) && ( pObjects == rhs.pObjects ); - } - - bool operator!=( DebugUtilsMessengerCallbackDataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugUtilsMessengerCallbackDataEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataFlagsEXT flags = {}; - const char * pMessageIdName = {}; - int32_t messageIdNumber = {}; - const char * pMessage = {}; - uint32_t queueLabelCount = {}; - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pQueueLabels = {}; - uint32_t cmdBufLabelCount = {}; - const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT * pCmdBufLabels = {}; - uint32_t objectCount = {}; - const VULKAN_HPP_NAMESPACE::DebugUtilsObjectNameInfoEXT * pObjects = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT ) == - sizeof( VkDebugUtilsMessengerCallbackDataEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DebugUtilsMessengerCallbackDataEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugUtilsMessengerCallbackDataEXT; - }; - - struct DebugUtilsMessengerCreateInfoEXT - { - using NativeType = VkDebugUtilsMessengerCreateInfoEXT; - - static const bool allowDuplicate = true; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugUtilsMessengerCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DebugUtilsMessengerCreateInfoEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagsEXT messageSeverity_ = {}, - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageType_ = {}, - PFN_vkDebugUtilsMessengerCallbackEXT pfnUserCallback_ = {}, - void * pUserData_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , messageSeverity( messageSeverity_ ) - , messageType( messageType_ ) - , pfnUserCallback( pfnUserCallback_ ) - , pUserData( pUserData_ ) - {} - - VULKAN_HPP_CONSTEXPR - DebugUtilsMessengerCreateInfoEXT( DebugUtilsMessengerCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsMessengerCreateInfoEXT( VkDebugUtilsMessengerCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugUtilsMessengerCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugUtilsMessengerCreateInfoEXT & - operator=( DebugUtilsMessengerCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsMessengerCreateInfoEXT & operator=( VkDebugUtilsMessengerCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCreateInfoEXT & - setMessageSeverity( VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagsEXT messageSeverity_ ) VULKAN_HPP_NOEXCEPT - { - messageSeverity = messageSeverity_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCreateInfoEXT & - setMessageType( VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageType_ ) VULKAN_HPP_NOEXCEPT - { - messageType = messageType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCreateInfoEXT & - setPfnUserCallback( PFN_vkDebugUtilsMessengerCallbackEXT pfnUserCallback_ ) VULKAN_HPP_NOEXCEPT - { - pfnUserCallback = pfnUserCallback_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsMessengerCreateInfoEXT & setPUserData( void * pUserData_ ) VULKAN_HPP_NOEXCEPT - { - pUserData = pUserData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugUtilsMessengerCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugUtilsMessengerCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, messageSeverity, messageType, pfnUserCallback, pUserData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DebugUtilsMessengerCreateInfoEXT const & ) const = default; -#else - bool operator==( DebugUtilsMessengerCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( messageSeverity == rhs.messageSeverity ) && ( messageType == rhs.messageType ) && - ( pfnUserCallback == rhs.pfnUserCallback ) && ( pUserData == rhs.pUserData ); -# endif - } - - bool operator!=( DebugUtilsMessengerCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugUtilsMessengerCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagsEXT messageSeverity = {}; - VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageType = {}; - PFN_vkDebugUtilsMessengerCallbackEXT pfnUserCallback = {}; - void * pUserData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT ) == - sizeof( VkDebugUtilsMessengerCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DebugUtilsMessengerCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugUtilsMessengerCreateInfoEXT; - }; - - struct DebugUtilsObjectTagInfoEXT - { - using NativeType = VkDebugUtilsObjectTagInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDebugUtilsObjectTagInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DebugUtilsObjectTagInfoEXT( - VULKAN_HPP_NAMESPACE::ObjectType objectType_ = VULKAN_HPP_NAMESPACE::ObjectType::eUnknown, - uint64_t objectHandle_ = {}, - uint64_t tagName_ = {}, - size_t tagSize_ = {}, - const void * pTag_ = {} ) VULKAN_HPP_NOEXCEPT - : objectType( objectType_ ) - , objectHandle( objectHandle_ ) - , tagName( tagName_ ) - , tagSize( tagSize_ ) - , pTag( pTag_ ) - {} - - VULKAN_HPP_CONSTEXPR - DebugUtilsObjectTagInfoEXT( DebugUtilsObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsObjectTagInfoEXT( VkDebugUtilsObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DebugUtilsObjectTagInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - DebugUtilsObjectTagInfoEXT( VULKAN_HPP_NAMESPACE::ObjectType objectType_, - uint64_t objectHandle_, - uint64_t tagName_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & tag_ ) - : objectType( objectType_ ) - , objectHandle( objectHandle_ ) - , tagName( tagName_ ) - , tagSize( tag_.size() * sizeof( T ) ) - , pTag( tag_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DebugUtilsObjectTagInfoEXT & operator=( DebugUtilsObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DebugUtilsObjectTagInfoEXT & operator=( VkDebugUtilsObjectTagInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectTagInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectTagInfoEXT & - setObjectType( VULKAN_HPP_NAMESPACE::ObjectType objectType_ ) VULKAN_HPP_NOEXCEPT - { - objectType = objectType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectTagInfoEXT & setObjectHandle( uint64_t objectHandle_ ) VULKAN_HPP_NOEXCEPT - { - objectHandle = objectHandle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectTagInfoEXT & setTagName( uint64_t tagName_ ) VULKAN_HPP_NOEXCEPT - { - tagName = tagName_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectTagInfoEXT & setTagSize( size_t tagSize_ ) VULKAN_HPP_NOEXCEPT - { - tagSize = tagSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DebugUtilsObjectTagInfoEXT & setPTag( const void * pTag_ ) VULKAN_HPP_NOEXCEPT - { - pTag = pTag_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - DebugUtilsObjectTagInfoEXT & - setTag( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & tag_ ) VULKAN_HPP_NOEXCEPT - { - tagSize = tag_.size() * sizeof( T ); - pTag = tag_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDebugUtilsObjectTagInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDebugUtilsObjectTagInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, objectType, objectHandle, tagName, tagSize, pTag ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DebugUtilsObjectTagInfoEXT const & ) const = default; -#else - bool operator==( DebugUtilsObjectTagInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( objectType == rhs.objectType ) && - ( objectHandle == rhs.objectHandle ) && ( tagName == rhs.tagName ) && ( tagSize == rhs.tagSize ) && - ( pTag == rhs.pTag ); -# endif - } - - bool operator!=( DebugUtilsObjectTagInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDebugUtilsObjectTagInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::ObjectType::eUnknown; - uint64_t objectHandle = {}; - uint64_t tagName = {}; - size_t tagSize = {}; - const void * pTag = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DebugUtilsObjectTagInfoEXT ) == - sizeof( VkDebugUtilsObjectTagInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DebugUtilsObjectTagInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DebugUtilsObjectTagInfoEXT; - }; - - struct DedicatedAllocationBufferCreateInfoNV - { - using NativeType = VkDedicatedAllocationBufferCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDedicatedAllocationBufferCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DedicatedAllocationBufferCreateInfoNV( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ = {} ) - VULKAN_HPP_NOEXCEPT : dedicatedAllocation( dedicatedAllocation_ ) - {} - - VULKAN_HPP_CONSTEXPR DedicatedAllocationBufferCreateInfoNV( DedicatedAllocationBufferCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DedicatedAllocationBufferCreateInfoNV( VkDedicatedAllocationBufferCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : DedicatedAllocationBufferCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DedicatedAllocationBufferCreateInfoNV & - operator=( DedicatedAllocationBufferCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DedicatedAllocationBufferCreateInfoNV & - operator=( VkDedicatedAllocationBufferCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationBufferCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationBufferCreateInfoNV & - setDedicatedAllocation( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ ) VULKAN_HPP_NOEXCEPT - { - dedicatedAllocation = dedicatedAllocation_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDedicatedAllocationBufferCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDedicatedAllocationBufferCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, dedicatedAllocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DedicatedAllocationBufferCreateInfoNV const & ) const = default; -#else - bool operator==( DedicatedAllocationBufferCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dedicatedAllocation == rhs.dedicatedAllocation ); -# endif - } - - bool operator!=( DedicatedAllocationBufferCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationBufferCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DedicatedAllocationBufferCreateInfoNV ) == - sizeof( VkDedicatedAllocationBufferCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DedicatedAllocationBufferCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DedicatedAllocationBufferCreateInfoNV; - }; - - struct DedicatedAllocationImageCreateInfoNV - { - using NativeType = VkDedicatedAllocationImageCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDedicatedAllocationImageCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DedicatedAllocationImageCreateInfoNV( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ = {} ) VULKAN_HPP_NOEXCEPT - : dedicatedAllocation( dedicatedAllocation_ ) - {} - - VULKAN_HPP_CONSTEXPR DedicatedAllocationImageCreateInfoNV( DedicatedAllocationImageCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DedicatedAllocationImageCreateInfoNV( VkDedicatedAllocationImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : DedicatedAllocationImageCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DedicatedAllocationImageCreateInfoNV & - operator=( DedicatedAllocationImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DedicatedAllocationImageCreateInfoNV & - operator=( VkDedicatedAllocationImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationImageCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationImageCreateInfoNV & - setDedicatedAllocation( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ ) VULKAN_HPP_NOEXCEPT - { - dedicatedAllocation = dedicatedAllocation_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDedicatedAllocationImageCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDedicatedAllocationImageCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, dedicatedAllocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DedicatedAllocationImageCreateInfoNV const & ) const = default; -#else - bool operator==( DedicatedAllocationImageCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dedicatedAllocation == rhs.dedicatedAllocation ); -# endif - } - - bool operator!=( DedicatedAllocationImageCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationImageCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV ) == - sizeof( VkDedicatedAllocationImageCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DedicatedAllocationImageCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DedicatedAllocationImageCreateInfoNV; - }; - - struct DedicatedAllocationMemoryAllocateInfoNV - { - using NativeType = VkDedicatedAllocationMemoryAllocateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDedicatedAllocationMemoryAllocateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DedicatedAllocationMemoryAllocateInfoNV( VULKAN_HPP_NAMESPACE::Image image_ = {}, - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - , buffer( buffer_ ) - {} - - VULKAN_HPP_CONSTEXPR DedicatedAllocationMemoryAllocateInfoNV( DedicatedAllocationMemoryAllocateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DedicatedAllocationMemoryAllocateInfoNV( VkDedicatedAllocationMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : DedicatedAllocationMemoryAllocateInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DedicatedAllocationMemoryAllocateInfoNV & - operator=( DedicatedAllocationMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DedicatedAllocationMemoryAllocateInfoNV & - operator=( VkDedicatedAllocationMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationMemoryAllocateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationMemoryAllocateInfoNV & - setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DedicatedAllocationMemoryAllocateInfoNV & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDedicatedAllocationMemoryAllocateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDedicatedAllocationMemoryAllocateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, image, buffer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DedicatedAllocationMemoryAllocateInfoNV const & ) const = default; -#else - bool operator==( DedicatedAllocationMemoryAllocateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( image == rhs.image ) && ( buffer == rhs.buffer ); -# endif - } - - bool operator!=( DedicatedAllocationMemoryAllocateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationMemoryAllocateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DedicatedAllocationMemoryAllocateInfoNV ) == - sizeof( VkDedicatedAllocationMemoryAllocateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DedicatedAllocationMemoryAllocateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DedicatedAllocationMemoryAllocateInfoNV; - }; - - struct MemoryBarrier2 - { - using NativeType = VkMemoryBarrier2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryBarrier2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryBarrier2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask_ = {} ) VULKAN_HPP_NOEXCEPT - : srcStageMask( srcStageMask_ ) - , srcAccessMask( srcAccessMask_ ) - , dstStageMask( dstStageMask_ ) - , dstAccessMask( dstAccessMask_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryBarrier2( MemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryBarrier2( VkMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryBarrier2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryBarrier2 & operator=( MemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryBarrier2 & operator=( VkMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier2 & - setSrcStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask_ ) VULKAN_HPP_NOEXCEPT - { - srcStageMask = srcStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier2 & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier2 & - setDstStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - dstStageMask = dstStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier2 & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryBarrier2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryBarrier2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcStageMask, srcAccessMask, dstStageMask, dstAccessMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryBarrier2 const & ) const = default; -#else - bool operator==( MemoryBarrier2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcStageMask == rhs.srcStageMask ) && - ( srcAccessMask == rhs.srcAccessMask ) && ( dstStageMask == rhs.dstStageMask ) && - ( dstAccessMask == rhs.dstAccessMask ); -# endif - } - - bool operator!=( MemoryBarrier2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryBarrier2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryBarrier2 ) == sizeof( VkMemoryBarrier2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryBarrier2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryBarrier2; - }; - using MemoryBarrier2KHR = MemoryBarrier2; - - struct ImageSubresourceRange - { - using NativeType = VkImageSubresourceRange; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageSubresourceRange( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {}, - uint32_t baseMipLevel_ = {}, - uint32_t levelCount_ = {}, - uint32_t baseArrayLayer_ = {}, - uint32_t layerCount_ = {} ) VULKAN_HPP_NOEXCEPT - : aspectMask( aspectMask_ ) - , baseMipLevel( baseMipLevel_ ) - , levelCount( levelCount_ ) - , baseArrayLayer( baseArrayLayer_ ) - , layerCount( layerCount_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageSubresourceRange( ImageSubresourceRange const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSubresourceRange( VkImageSubresourceRange const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageSubresourceRange( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageSubresourceRange & operator=( ImageSubresourceRange const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSubresourceRange & operator=( VkImageSubresourceRange const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceRange & - setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT - { - aspectMask = aspectMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceRange & setBaseMipLevel( uint32_t baseMipLevel_ ) VULKAN_HPP_NOEXCEPT - { - baseMipLevel = baseMipLevel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceRange & setLevelCount( uint32_t levelCount_ ) VULKAN_HPP_NOEXCEPT - { - levelCount = levelCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceRange & setBaseArrayLayer( uint32_t baseArrayLayer_ ) VULKAN_HPP_NOEXCEPT - { - baseArrayLayer = baseArrayLayer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSubresourceRange & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = layerCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageSubresourceRange const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageSubresourceRange &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( aspectMask, baseMipLevel, levelCount, baseArrayLayer, layerCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageSubresourceRange const & ) const = default; -#else - bool operator==( ImageSubresourceRange const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( aspectMask == rhs.aspectMask ) && ( baseMipLevel == rhs.baseMipLevel ) && - ( levelCount == rhs.levelCount ) && ( baseArrayLayer == rhs.baseArrayLayer ) && - ( layerCount == rhs.layerCount ); -# endif - } - - bool operator!=( ImageSubresourceRange const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - uint32_t baseMipLevel = {}; - uint32_t levelCount = {}; - uint32_t baseArrayLayer = {}; - uint32_t layerCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageSubresourceRange ) == sizeof( VkImageSubresourceRange ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageSubresourceRange is not nothrow_move_constructible!" ); - - struct ImageMemoryBarrier2 - { - using NativeType = VkImageMemoryBarrier2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageMemoryBarrier2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageMemoryBarrier2( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout oldLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ImageLayout newLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - uint32_t srcQueueFamilyIndex_ = {}, - uint32_t dstQueueFamilyIndex_ = {}, - VULKAN_HPP_NAMESPACE::Image image_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceRange subresourceRange_ = {} ) VULKAN_HPP_NOEXCEPT - : srcStageMask( srcStageMask_ ) - , srcAccessMask( srcAccessMask_ ) - , dstStageMask( dstStageMask_ ) - , dstAccessMask( dstAccessMask_ ) - , oldLayout( oldLayout_ ) - , newLayout( newLayout_ ) - , srcQueueFamilyIndex( srcQueueFamilyIndex_ ) - , dstQueueFamilyIndex( dstQueueFamilyIndex_ ) - , image( image_ ) - , subresourceRange( subresourceRange_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageMemoryBarrier2( ImageMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageMemoryBarrier2( VkImageMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageMemoryBarrier2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageMemoryBarrier2 & operator=( ImageMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageMemoryBarrier2 & operator=( VkImageMemoryBarrier2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setSrcStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask_ ) VULKAN_HPP_NOEXCEPT - { - srcStageMask = srcStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setDstStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - dstStageMask = dstStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setOldLayout( VULKAN_HPP_NAMESPACE::ImageLayout oldLayout_ ) VULKAN_HPP_NOEXCEPT - { - oldLayout = oldLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setNewLayout( VULKAN_HPP_NAMESPACE::ImageLayout newLayout_ ) VULKAN_HPP_NOEXCEPT - { - newLayout = newLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setSrcQueueFamilyIndex( uint32_t srcQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - srcQueueFamilyIndex = srcQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setDstQueueFamilyIndex( uint32_t dstQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - dstQueueFamilyIndex = dstQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier2 & - setSubresourceRange( VULKAN_HPP_NAMESPACE::ImageSubresourceRange const & subresourceRange_ ) VULKAN_HPP_NOEXCEPT - { - subresourceRange = subresourceRange_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageMemoryBarrier2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageMemoryBarrier2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - srcStageMask, - srcAccessMask, - dstStageMask, - dstAccessMask, - oldLayout, - newLayout, - srcQueueFamilyIndex, - dstQueueFamilyIndex, - image, - subresourceRange ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageMemoryBarrier2 const & ) const = default; -#else - bool operator==( ImageMemoryBarrier2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcStageMask == rhs.srcStageMask ) && - ( srcAccessMask == rhs.srcAccessMask ) && ( dstStageMask == rhs.dstStageMask ) && - ( dstAccessMask == rhs.dstAccessMask ) && ( oldLayout == rhs.oldLayout ) && - ( newLayout == rhs.newLayout ) && ( srcQueueFamilyIndex == rhs.srcQueueFamilyIndex ) && - ( dstQueueFamilyIndex == rhs.dstQueueFamilyIndex ) && ( image == rhs.image ) && - ( subresourceRange == rhs.subresourceRange ); -# endif - } - - bool operator!=( ImageMemoryBarrier2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageMemoryBarrier2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 srcStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags2 srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 dstStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags2 dstAccessMask = {}; - VULKAN_HPP_NAMESPACE::ImageLayout oldLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ImageLayout newLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - uint32_t srcQueueFamilyIndex = {}; - uint32_t dstQueueFamilyIndex = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceRange subresourceRange = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageMemoryBarrier2 ) == sizeof( VkImageMemoryBarrier2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageMemoryBarrier2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageMemoryBarrier2; - }; - using ImageMemoryBarrier2KHR = ImageMemoryBarrier2; - - struct DependencyInfo - { - using NativeType = VkDependencyInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDependencyInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DependencyInfo( VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_ = {}, - uint32_t memoryBarrierCount_ = {}, - const VULKAN_HPP_NAMESPACE::MemoryBarrier2 * pMemoryBarriers_ = {}, - uint32_t bufferMemoryBarrierCount_ = {}, - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier2 * pBufferMemoryBarriers_ = {}, - uint32_t imageMemoryBarrierCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier2 * pImageMemoryBarriers_ = {} ) VULKAN_HPP_NOEXCEPT - : dependencyFlags( dependencyFlags_ ) - , memoryBarrierCount( memoryBarrierCount_ ) - , pMemoryBarriers( pMemoryBarriers_ ) - , bufferMemoryBarrierCount( bufferMemoryBarrierCount_ ) - , pBufferMemoryBarriers( pBufferMemoryBarriers_ ) - , imageMemoryBarrierCount( imageMemoryBarrierCount_ ) - , pImageMemoryBarriers( pImageMemoryBarriers_ ) - {} - - VULKAN_HPP_CONSTEXPR DependencyInfo( DependencyInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DependencyInfo( VkDependencyInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DependencyInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DependencyInfo( - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & memoryBarriers_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bufferMemoryBarriers_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageMemoryBarriers_ = {} ) - : dependencyFlags( dependencyFlags_ ) - , memoryBarrierCount( static_cast( memoryBarriers_.size() ) ) - , pMemoryBarriers( memoryBarriers_.data() ) - , bufferMemoryBarrierCount( static_cast( bufferMemoryBarriers_.size() ) ) - , pBufferMemoryBarriers( bufferMemoryBarriers_.data() ) - , imageMemoryBarrierCount( static_cast( imageMemoryBarriers_.size() ) ) - , pImageMemoryBarriers( imageMemoryBarriers_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DependencyInfo & operator=( DependencyInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DependencyInfo & operator=( VkDependencyInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & - setDependencyFlags( VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_ ) VULKAN_HPP_NOEXCEPT - { - dependencyFlags = dependencyFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & setMemoryBarrierCount( uint32_t memoryBarrierCount_ ) VULKAN_HPP_NOEXCEPT - { - memoryBarrierCount = memoryBarrierCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & - setPMemoryBarriers( const VULKAN_HPP_NAMESPACE::MemoryBarrier2 * pMemoryBarriers_ ) VULKAN_HPP_NOEXCEPT - { - pMemoryBarriers = pMemoryBarriers_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DependencyInfo & setMemoryBarriers( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - memoryBarriers_ ) VULKAN_HPP_NOEXCEPT - { - memoryBarrierCount = static_cast( memoryBarriers_.size() ); - pMemoryBarriers = memoryBarriers_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & - setBufferMemoryBarrierCount( uint32_t bufferMemoryBarrierCount_ ) VULKAN_HPP_NOEXCEPT - { - bufferMemoryBarrierCount = bufferMemoryBarrierCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & setPBufferMemoryBarriers( - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier2 * pBufferMemoryBarriers_ ) VULKAN_HPP_NOEXCEPT - { - pBufferMemoryBarriers = pBufferMemoryBarriers_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DependencyInfo & setBufferMemoryBarriers( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bufferMemoryBarriers_ ) VULKAN_HPP_NOEXCEPT - { - bufferMemoryBarrierCount = static_cast( bufferMemoryBarriers_.size() ); - pBufferMemoryBarriers = bufferMemoryBarriers_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & - setImageMemoryBarrierCount( uint32_t imageMemoryBarrierCount_ ) VULKAN_HPP_NOEXCEPT - { - imageMemoryBarrierCount = imageMemoryBarrierCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DependencyInfo & setPImageMemoryBarriers( - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier2 * pImageMemoryBarriers_ ) VULKAN_HPP_NOEXCEPT - { - pImageMemoryBarriers = pImageMemoryBarriers_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DependencyInfo & setImageMemoryBarriers( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageMemoryBarriers_ ) VULKAN_HPP_NOEXCEPT - { - imageMemoryBarrierCount = static_cast( imageMemoryBarriers_.size() ); - pImageMemoryBarriers = imageMemoryBarriers_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDependencyInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDependencyInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - dependencyFlags, - memoryBarrierCount, - pMemoryBarriers, - bufferMemoryBarrierCount, - pBufferMemoryBarriers, - imageMemoryBarrierCount, - pImageMemoryBarriers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DependencyInfo const & ) const = default; -#else - bool operator==( DependencyInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dependencyFlags == rhs.dependencyFlags ) && - ( memoryBarrierCount == rhs.memoryBarrierCount ) && ( pMemoryBarriers == rhs.pMemoryBarriers ) && - ( bufferMemoryBarrierCount == rhs.bufferMemoryBarrierCount ) && - ( pBufferMemoryBarriers == rhs.pBufferMemoryBarriers ) && - ( imageMemoryBarrierCount == rhs.imageMemoryBarrierCount ) && - ( pImageMemoryBarriers == rhs.pImageMemoryBarriers ); -# endif - } - - bool operator!=( DependencyInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDependencyInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags = {}; - uint32_t memoryBarrierCount = {}; - const VULKAN_HPP_NAMESPACE::MemoryBarrier2 * pMemoryBarriers = {}; - uint32_t bufferMemoryBarrierCount = {}; - const VULKAN_HPP_NAMESPACE::BufferMemoryBarrier2 * pBufferMemoryBarriers = {}; - uint32_t imageMemoryBarrierCount = {}; - const VULKAN_HPP_NAMESPACE::ImageMemoryBarrier2 * pImageMemoryBarriers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DependencyInfo ) == sizeof( VkDependencyInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DependencyInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DependencyInfo; - }; - using DependencyInfoKHR = DependencyInfo; - - struct DescriptorBufferInfo - { - using NativeType = VkDescriptorBufferInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorBufferInfo( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize range_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - , offset( offset_ ) - , range( range_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorBufferInfo( DescriptorBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorBufferInfo( VkDescriptorBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorBufferInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorBufferInfo & operator=( DescriptorBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorBufferInfo & operator=( VkDescriptorBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorBufferInfo & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorBufferInfo & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorBufferInfo & - setRange( VULKAN_HPP_NAMESPACE::DeviceSize range_ ) VULKAN_HPP_NOEXCEPT - { - range = range_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorBufferInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorBufferInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( buffer, offset, range ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorBufferInfo const & ) const = default; -#else - bool operator==( DescriptorBufferInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( buffer == rhs.buffer ) && ( offset == rhs.offset ) && ( range == rhs.range ); -# endif - } - - bool operator!=( DescriptorBufferInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize range = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorBufferInfo ) == sizeof( VkDescriptorBufferInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorBufferInfo is not nothrow_move_constructible!" ); - - struct DescriptorImageInfo - { - using NativeType = VkDescriptorImageInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorImageInfo( VULKAN_HPP_NAMESPACE::Sampler sampler_ = {}, - VULKAN_HPP_NAMESPACE::ImageView imageView_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ = - VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) VULKAN_HPP_NOEXCEPT - : sampler( sampler_ ) - , imageView( imageView_ ) - , imageLayout( imageLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorImageInfo( DescriptorImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorImageInfo( VkDescriptorImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorImageInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorImageInfo & operator=( DescriptorImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorImageInfo & operator=( VkDescriptorImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorImageInfo & - setSampler( VULKAN_HPP_NAMESPACE::Sampler sampler_ ) VULKAN_HPP_NOEXCEPT - { - sampler = sampler_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorImageInfo & - setImageView( VULKAN_HPP_NAMESPACE::ImageView imageView_ ) VULKAN_HPP_NOEXCEPT - { - imageView = imageView_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorImageInfo & - setImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ ) VULKAN_HPP_NOEXCEPT - { - imageLayout = imageLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorImageInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorImageInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sampler, imageView, imageLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorImageInfo const & ) const = default; -#else - bool operator==( DescriptorImageInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sampler == rhs.sampler ) && ( imageView == rhs.imageView ) && ( imageLayout == rhs.imageLayout ); -# endif - } - - bool operator!=( DescriptorImageInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Sampler sampler = {}; - VULKAN_HPP_NAMESPACE::ImageView imageView = {}; - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorImageInfo ) == sizeof( VkDescriptorImageInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorImageInfo is not nothrow_move_constructible!" ); - - struct DescriptorPoolSize - { - using NativeType = VkDescriptorPoolSize; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DescriptorPoolSize( VULKAN_HPP_NAMESPACE::DescriptorType type_ = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler, - uint32_t descriptorCount_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , descriptorCount( descriptorCount_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorPoolSize( DescriptorPoolSize const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorPoolSize( VkDescriptorPoolSize const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorPoolSize( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorPoolSize & operator=( DescriptorPoolSize const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorPoolSize & operator=( VkDescriptorPoolSize const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolSize & - setType( VULKAN_HPP_NAMESPACE::DescriptorType type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolSize & setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = descriptorCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorPoolSize const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorPoolSize &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( type, descriptorCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorPoolSize const & ) const = default; -#else - bool operator==( DescriptorPoolSize const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( type == rhs.type ) && ( descriptorCount == rhs.descriptorCount ); -# endif - } - - bool operator!=( DescriptorPoolSize const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DescriptorType type = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler; - uint32_t descriptorCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorPoolSize ) == sizeof( VkDescriptorPoolSize ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorPoolSize is not nothrow_move_constructible!" ); - - struct DescriptorPoolCreateInfo - { - using NativeType = VkDescriptorPoolCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDescriptorPoolCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DescriptorPoolCreateInfo( VULKAN_HPP_NAMESPACE::DescriptorPoolCreateFlags flags_ = {}, - uint32_t maxSets_ = {}, - uint32_t poolSizeCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorPoolSize * pPoolSizes_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , maxSets( maxSets_ ) - , poolSizeCount( poolSizeCount_ ) - , pPoolSizes( pPoolSizes_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorPoolCreateInfo( DescriptorPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorPoolCreateInfo( VkDescriptorPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorPoolCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorPoolCreateInfo( - VULKAN_HPP_NAMESPACE::DescriptorPoolCreateFlags flags_, - uint32_t maxSets_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & poolSizes_ ) - : flags( flags_ ) - , maxSets( maxSets_ ) - , poolSizeCount( static_cast( poolSizes_.size() ) ) - , pPoolSizes( poolSizes_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorPoolCreateInfo & operator=( DescriptorPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorPoolCreateInfo & operator=( VkDescriptorPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::DescriptorPoolCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolCreateInfo & setMaxSets( uint32_t maxSets_ ) VULKAN_HPP_NOEXCEPT - { - maxSets = maxSets_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolCreateInfo & setPoolSizeCount( uint32_t poolSizeCount_ ) VULKAN_HPP_NOEXCEPT - { - poolSizeCount = poolSizeCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolCreateInfo & - setPPoolSizes( const VULKAN_HPP_NAMESPACE::DescriptorPoolSize * pPoolSizes_ ) VULKAN_HPP_NOEXCEPT - { - pPoolSizes = pPoolSizes_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorPoolCreateInfo & setPoolSizes( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & poolSizes_ ) - VULKAN_HPP_NOEXCEPT - { - poolSizeCount = static_cast( poolSizes_.size() ); - pPoolSizes = poolSizes_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorPoolCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorPoolCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, maxSets, poolSizeCount, pPoolSizes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorPoolCreateInfo const & ) const = default; -#else - bool operator==( DescriptorPoolCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( maxSets == rhs.maxSets ) && - ( poolSizeCount == rhs.poolSizeCount ) && ( pPoolSizes == rhs.pPoolSizes ); -# endif - } - - bool operator!=( DescriptorPoolCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorPoolCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DescriptorPoolCreateFlags flags = {}; - uint32_t maxSets = {}; - uint32_t poolSizeCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorPoolSize * pPoolSizes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorPoolCreateInfo ) == - sizeof( VkDescriptorPoolCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorPoolCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorPoolCreateInfo; - }; - - struct DescriptorPoolInlineUniformBlockCreateInfo - { - using NativeType = VkDescriptorPoolInlineUniformBlockCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDescriptorPoolInlineUniformBlockCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DescriptorPoolInlineUniformBlockCreateInfo( uint32_t maxInlineUniformBlockBindings_ = {} ) VULKAN_HPP_NOEXCEPT - : maxInlineUniformBlockBindings( maxInlineUniformBlockBindings_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorPoolInlineUniformBlockCreateInfo( - DescriptorPoolInlineUniformBlockCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorPoolInlineUniformBlockCreateInfo( VkDescriptorPoolInlineUniformBlockCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT - : DescriptorPoolInlineUniformBlockCreateInfo( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorPoolInlineUniformBlockCreateInfo & - operator=( DescriptorPoolInlineUniformBlockCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorPoolInlineUniformBlockCreateInfo & - operator=( VkDescriptorPoolInlineUniformBlockCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolInlineUniformBlockCreateInfo & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorPoolInlineUniformBlockCreateInfo & - setMaxInlineUniformBlockBindings( uint32_t maxInlineUniformBlockBindings_ ) VULKAN_HPP_NOEXCEPT - { - maxInlineUniformBlockBindings = maxInlineUniformBlockBindings_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorPoolInlineUniformBlockCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorPoolInlineUniformBlockCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxInlineUniformBlockBindings ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorPoolInlineUniformBlockCreateInfo const & ) const = default; -#else - bool operator==( DescriptorPoolInlineUniformBlockCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxInlineUniformBlockBindings == rhs.maxInlineUniformBlockBindings ); -# endif - } - - bool operator!=( DescriptorPoolInlineUniformBlockCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorPoolInlineUniformBlockCreateInfo; - const void * pNext = {}; - uint32_t maxInlineUniformBlockBindings = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorPoolInlineUniformBlockCreateInfo ) == - sizeof( VkDescriptorPoolInlineUniformBlockCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorPoolInlineUniformBlockCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorPoolInlineUniformBlockCreateInfo; - }; - using DescriptorPoolInlineUniformBlockCreateInfoEXT = DescriptorPoolInlineUniformBlockCreateInfo; - - struct DescriptorSetAllocateInfo - { - using NativeType = VkDescriptorSetAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDescriptorSetAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorSetAllocateInfo( - VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool_ = {}, - uint32_t descriptorSetCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayouts_ = {} ) VULKAN_HPP_NOEXCEPT - : descriptorPool( descriptorPool_ ) - , descriptorSetCount( descriptorSetCount_ ) - , pSetLayouts( pSetLayouts_ ) - {} - - VULKAN_HPP_CONSTEXPR - DescriptorSetAllocateInfo( DescriptorSetAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetAllocateInfo( VkDescriptorSetAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorSetAllocateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetAllocateInfo( - VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - setLayouts_ ) - : descriptorPool( descriptorPool_ ) - , descriptorSetCount( static_cast( setLayouts_.size() ) ) - , pSetLayouts( setLayouts_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetAllocateInfo & operator=( DescriptorSetAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetAllocateInfo & operator=( VkDescriptorSetAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorSetAllocateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetAllocateInfo & - setDescriptorPool( VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool_ ) VULKAN_HPP_NOEXCEPT - { - descriptorPool = descriptorPool_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetAllocateInfo & - setDescriptorSetCount( uint32_t descriptorSetCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorSetCount = descriptorSetCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetAllocateInfo & - setPSetLayouts( const VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayouts_ ) VULKAN_HPP_NOEXCEPT - { - pSetLayouts = pSetLayouts_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetAllocateInfo & setSetLayouts( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - setLayouts_ ) VULKAN_HPP_NOEXCEPT - { - descriptorSetCount = static_cast( setLayouts_.size() ); - pSetLayouts = setLayouts_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorSetAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, descriptorPool, descriptorSetCount, pSetLayouts ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetAllocateInfo const & ) const = default; -#else - bool operator==( DescriptorSetAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( descriptorPool == rhs.descriptorPool ) && - ( descriptorSetCount == rhs.descriptorSetCount ) && ( pSetLayouts == rhs.pSetLayouts ); -# endif - } - - bool operator!=( DescriptorSetAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorSetAllocateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DescriptorPool descriptorPool = {}; - uint32_t descriptorSetCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayouts = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetAllocateInfo ) == - sizeof( VkDescriptorSetAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorSetAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorSetAllocateInfo; - }; - - struct DescriptorSetLayoutBinding - { - using NativeType = VkDescriptorSetLayoutBinding; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorSetLayoutBinding( - uint32_t binding_ = {}, - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler, - uint32_t descriptorCount_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags_ = {}, - const VULKAN_HPP_NAMESPACE::Sampler * pImmutableSamplers_ = {} ) VULKAN_HPP_NOEXCEPT - : binding( binding_ ) - , descriptorType( descriptorType_ ) - , descriptorCount( descriptorCount_ ) - , stageFlags( stageFlags_ ) - , pImmutableSamplers( pImmutableSamplers_ ) - {} - - VULKAN_HPP_CONSTEXPR - DescriptorSetLayoutBinding( DescriptorSetLayoutBinding const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutBinding( VkDescriptorSetLayoutBinding const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorSetLayoutBinding( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetLayoutBinding( - uint32_t binding_, - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_, - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & immutableSamplers_ ) - : binding( binding_ ) - , descriptorType( descriptorType_ ) - , descriptorCount( static_cast( immutableSamplers_.size() ) ) - , stageFlags( stageFlags_ ) - , pImmutableSamplers( immutableSamplers_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetLayoutBinding & operator=( DescriptorSetLayoutBinding const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutBinding & operator=( VkDescriptorSetLayoutBinding const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBinding & setBinding( uint32_t binding_ ) VULKAN_HPP_NOEXCEPT - { - binding = binding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBinding & - setDescriptorType( VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ ) VULKAN_HPP_NOEXCEPT - { - descriptorType = descriptorType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBinding & - setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = descriptorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBinding & - setStageFlags( VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags_ ) VULKAN_HPP_NOEXCEPT - { - stageFlags = stageFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBinding & - setPImmutableSamplers( const VULKAN_HPP_NAMESPACE::Sampler * pImmutableSamplers_ ) VULKAN_HPP_NOEXCEPT - { - pImmutableSamplers = pImmutableSamplers_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetLayoutBinding & setImmutableSamplers( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & immutableSamplers_ ) - VULKAN_HPP_NOEXCEPT - { - descriptorCount = static_cast( immutableSamplers_.size() ); - pImmutableSamplers = immutableSamplers_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorSetLayoutBinding const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetLayoutBinding &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( binding, descriptorType, descriptorCount, stageFlags, pImmutableSamplers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetLayoutBinding const & ) const = default; -#else - bool operator==( DescriptorSetLayoutBinding const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( binding == rhs.binding ) && ( descriptorType == rhs.descriptorType ) && - ( descriptorCount == rhs.descriptorCount ) && ( stageFlags == rhs.stageFlags ) && - ( pImmutableSamplers == rhs.pImmutableSamplers ); -# endif - } - - bool operator!=( DescriptorSetLayoutBinding const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t binding = {}; - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler; - uint32_t descriptorCount = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags = {}; - const VULKAN_HPP_NAMESPACE::Sampler * pImmutableSamplers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBinding ) == - sizeof( VkDescriptorSetLayoutBinding ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorSetLayoutBinding is not nothrow_move_constructible!" ); - - struct DescriptorSetLayoutBindingFlagsCreateInfo - { - using NativeType = VkDescriptorSetLayoutBindingFlagsCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDescriptorSetLayoutBindingFlagsCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorSetLayoutBindingFlagsCreateInfo( - uint32_t bindingCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorBindingFlags * pBindingFlags_ = {} ) VULKAN_HPP_NOEXCEPT - : bindingCount( bindingCount_ ) - , pBindingFlags( pBindingFlags_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorSetLayoutBindingFlagsCreateInfo( - DescriptorSetLayoutBindingFlagsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutBindingFlagsCreateInfo( VkDescriptorSetLayoutBindingFlagsCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT - : DescriptorSetLayoutBindingFlagsCreateInfo( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetLayoutBindingFlagsCreateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bindingFlags_ ) - : bindingCount( static_cast( bindingFlags_.size() ) ), pBindingFlags( bindingFlags_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetLayoutBindingFlagsCreateInfo & - operator=( DescriptorSetLayoutBindingFlagsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutBindingFlagsCreateInfo & - operator=( VkDescriptorSetLayoutBindingFlagsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBindingFlagsCreateInfo & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBindingFlagsCreateInfo & - setBindingCount( uint32_t bindingCount_ ) VULKAN_HPP_NOEXCEPT - { - bindingCount = bindingCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutBindingFlagsCreateInfo & - setPBindingFlags( const VULKAN_HPP_NAMESPACE::DescriptorBindingFlags * pBindingFlags_ ) VULKAN_HPP_NOEXCEPT - { - pBindingFlags = pBindingFlags_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetLayoutBindingFlagsCreateInfo & setBindingFlags( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bindingFlags_ ) VULKAN_HPP_NOEXCEPT - { - bindingCount = static_cast( bindingFlags_.size() ); - pBindingFlags = bindingFlags_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorSetLayoutBindingFlagsCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetLayoutBindingFlagsCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, bindingCount, pBindingFlags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetLayoutBindingFlagsCreateInfo const & ) const = default; -#else - bool operator==( DescriptorSetLayoutBindingFlagsCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( bindingCount == rhs.bindingCount ) && - ( pBindingFlags == rhs.pBindingFlags ); -# endif - } - - bool operator!=( DescriptorSetLayoutBindingFlagsCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorSetLayoutBindingFlagsCreateInfo; - const void * pNext = {}; - uint32_t bindingCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorBindingFlags * pBindingFlags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBindingFlagsCreateInfo ) == - sizeof( VkDescriptorSetLayoutBindingFlagsCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorSetLayoutBindingFlagsCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorSetLayoutBindingFlagsCreateInfo; - }; - using DescriptorSetLayoutBindingFlagsCreateInfoEXT = DescriptorSetLayoutBindingFlagsCreateInfo; - - struct DescriptorSetLayoutCreateInfo - { - using NativeType = VkDescriptorSetLayoutCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDescriptorSetLayoutCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorSetLayoutCreateInfo( - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateFlags flags_ = {}, - uint32_t bindingCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBinding * pBindings_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , bindingCount( bindingCount_ ) - , pBindings( pBindings_ ) - {} - - VULKAN_HPP_CONSTEXPR - DescriptorSetLayoutCreateInfo( DescriptorSetLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutCreateInfo( VkDescriptorSetLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorSetLayoutCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetLayoutCreateInfo( - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bindings_ ) - : flags( flags_ ), bindingCount( static_cast( bindings_.size() ) ), pBindings( bindings_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetLayoutCreateInfo & - operator=( DescriptorSetLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutCreateInfo & operator=( VkDescriptorSetLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutCreateInfo & - setBindingCount( uint32_t bindingCount_ ) VULKAN_HPP_NOEXCEPT - { - bindingCount = bindingCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetLayoutCreateInfo & - setPBindings( const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBinding * pBindings_ ) VULKAN_HPP_NOEXCEPT - { - pBindings = pBindings_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetLayoutCreateInfo & setBindings( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bindings_ ) VULKAN_HPP_NOEXCEPT - { - bindingCount = static_cast( bindings_.size() ); - pBindings = bindings_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorSetLayoutCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetLayoutCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, bindingCount, pBindings ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetLayoutCreateInfo const & ) const = default; -#else - bool operator==( DescriptorSetLayoutCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( bindingCount == rhs.bindingCount ) && ( pBindings == rhs.pBindings ); -# endif - } - - bool operator!=( DescriptorSetLayoutCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorSetLayoutCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateFlags flags = {}; - uint32_t bindingCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorSetLayoutBinding * pBindings = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutCreateInfo ) == - sizeof( VkDescriptorSetLayoutCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorSetLayoutCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorSetLayoutCreateInfo; - }; - - struct DescriptorSetLayoutSupport - { - using NativeType = VkDescriptorSetLayoutSupport; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDescriptorSetLayoutSupport; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorSetLayoutSupport( VULKAN_HPP_NAMESPACE::Bool32 supported_ = {} ) VULKAN_HPP_NOEXCEPT - : supported( supported_ ) - {} - - VULKAN_HPP_CONSTEXPR - DescriptorSetLayoutSupport( DescriptorSetLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutSupport( VkDescriptorSetLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorSetLayoutSupport( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetLayoutSupport & operator=( DescriptorSetLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetLayoutSupport & operator=( VkDescriptorSetLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDescriptorSetLayoutSupport const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetLayoutSupport &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, supported ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetLayoutSupport const & ) const = default; -#else - bool operator==( DescriptorSetLayoutSupport const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( supported == rhs.supported ); -# endif - } - - bool operator!=( DescriptorSetLayoutSupport const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorSetLayoutSupport; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 supported = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetLayoutSupport ) == - sizeof( VkDescriptorSetLayoutSupport ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DescriptorSetLayoutSupport is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorSetLayoutSupport; - }; - using DescriptorSetLayoutSupportKHR = DescriptorSetLayoutSupport; - - struct DescriptorSetVariableDescriptorCountAllocateInfo - { - using NativeType = VkDescriptorSetVariableDescriptorCountAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDescriptorSetVariableDescriptorCountAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DescriptorSetVariableDescriptorCountAllocateInfo( uint32_t descriptorSetCount_ = {}, - const uint32_t * pDescriptorCounts_ = {} ) VULKAN_HPP_NOEXCEPT - : descriptorSetCount( descriptorSetCount_ ) - , pDescriptorCounts( pDescriptorCounts_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorSetVariableDescriptorCountAllocateInfo( - DescriptorSetVariableDescriptorCountAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetVariableDescriptorCountAllocateInfo( VkDescriptorSetVariableDescriptorCountAllocateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT - : DescriptorSetVariableDescriptorCountAllocateInfo( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetVariableDescriptorCountAllocateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & descriptorCounts_ ) - : descriptorSetCount( static_cast( descriptorCounts_.size() ) ) - , pDescriptorCounts( descriptorCounts_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetVariableDescriptorCountAllocateInfo & - operator=( DescriptorSetVariableDescriptorCountAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetVariableDescriptorCountAllocateInfo & - operator=( VkDescriptorSetVariableDescriptorCountAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorSetVariableDescriptorCountAllocateInfo & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetVariableDescriptorCountAllocateInfo & - setDescriptorSetCount( uint32_t descriptorSetCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorSetCount = descriptorSetCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorSetVariableDescriptorCountAllocateInfo & - setPDescriptorCounts( const uint32_t * pDescriptorCounts_ ) VULKAN_HPP_NOEXCEPT - { - pDescriptorCounts = pDescriptorCounts_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorSetVariableDescriptorCountAllocateInfo & setDescriptorCounts( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & descriptorCounts_ ) VULKAN_HPP_NOEXCEPT - { - descriptorSetCount = static_cast( descriptorCounts_.size() ); - pDescriptorCounts = descriptorCounts_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorSetVariableDescriptorCountAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetVariableDescriptorCountAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, descriptorSetCount, pDescriptorCounts ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetVariableDescriptorCountAllocateInfo const & ) const = default; -#else - bool operator==( DescriptorSetVariableDescriptorCountAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( descriptorSetCount == rhs.descriptorSetCount ) && - ( pDescriptorCounts == rhs.pDescriptorCounts ); -# endif - } - - bool operator!=( DescriptorSetVariableDescriptorCountAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorSetVariableDescriptorCountAllocateInfo; - const void * pNext = {}; - uint32_t descriptorSetCount = {}; - const uint32_t * pDescriptorCounts = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetVariableDescriptorCountAllocateInfo ) == - sizeof( VkDescriptorSetVariableDescriptorCountAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorSetVariableDescriptorCountAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorSetVariableDescriptorCountAllocateInfo; - }; - using DescriptorSetVariableDescriptorCountAllocateInfoEXT = DescriptorSetVariableDescriptorCountAllocateInfo; - - struct DescriptorSetVariableDescriptorCountLayoutSupport - { - using NativeType = VkDescriptorSetVariableDescriptorCountLayoutSupport; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDescriptorSetVariableDescriptorCountLayoutSupport; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DescriptorSetVariableDescriptorCountLayoutSupport( uint32_t maxVariableDescriptorCount_ = {} ) VULKAN_HPP_NOEXCEPT - : maxVariableDescriptorCount( maxVariableDescriptorCount_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorSetVariableDescriptorCountLayoutSupport( - DescriptorSetVariableDescriptorCountLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetVariableDescriptorCountLayoutSupport( VkDescriptorSetVariableDescriptorCountLayoutSupport const & rhs ) - VULKAN_HPP_NOEXCEPT - : DescriptorSetVariableDescriptorCountLayoutSupport( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorSetVariableDescriptorCountLayoutSupport & - operator=( DescriptorSetVariableDescriptorCountLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorSetVariableDescriptorCountLayoutSupport & - operator=( VkDescriptorSetVariableDescriptorCountLayoutSupport const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDescriptorSetVariableDescriptorCountLayoutSupport const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorSetVariableDescriptorCountLayoutSupport &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxVariableDescriptorCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorSetVariableDescriptorCountLayoutSupport const & ) const = default; -#else - bool operator==( DescriptorSetVariableDescriptorCountLayoutSupport const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxVariableDescriptorCount == rhs.maxVariableDescriptorCount ); -# endif - } - - bool operator!=( DescriptorSetVariableDescriptorCountLayoutSupport const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorSetVariableDescriptorCountLayoutSupport; - void * pNext = {}; - uint32_t maxVariableDescriptorCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorSetVariableDescriptorCountLayoutSupport ) == - sizeof( VkDescriptorSetVariableDescriptorCountLayoutSupport ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorSetVariableDescriptorCountLayoutSupport is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorSetVariableDescriptorCountLayoutSupport; - }; - using DescriptorSetVariableDescriptorCountLayoutSupportEXT = DescriptorSetVariableDescriptorCountLayoutSupport; - - struct DescriptorUpdateTemplateEntry - { - using NativeType = VkDescriptorUpdateTemplateEntry; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorUpdateTemplateEntry( - uint32_t dstBinding_ = {}, - uint32_t dstArrayElement_ = {}, - uint32_t descriptorCount_ = {}, - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler, - size_t offset_ = {}, - size_t stride_ = {} ) VULKAN_HPP_NOEXCEPT - : dstBinding( dstBinding_ ) - , dstArrayElement( dstArrayElement_ ) - , descriptorCount( descriptorCount_ ) - , descriptorType( descriptorType_ ) - , offset( offset_ ) - , stride( stride_ ) - {} - - VULKAN_HPP_CONSTEXPR - DescriptorUpdateTemplateEntry( DescriptorUpdateTemplateEntry const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorUpdateTemplateEntry( VkDescriptorUpdateTemplateEntry const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorUpdateTemplateEntry( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorUpdateTemplateEntry & - operator=( DescriptorUpdateTemplateEntry const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorUpdateTemplateEntry & operator=( VkDescriptorUpdateTemplateEntry const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateEntry & setDstBinding( uint32_t dstBinding_ ) VULKAN_HPP_NOEXCEPT - { - dstBinding = dstBinding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateEntry & - setDstArrayElement( uint32_t dstArrayElement_ ) VULKAN_HPP_NOEXCEPT - { - dstArrayElement = dstArrayElement_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateEntry & - setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = descriptorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateEntry & - setDescriptorType( VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ ) VULKAN_HPP_NOEXCEPT - { - descriptorType = descriptorType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateEntry & setOffset( size_t offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateEntry & setStride( size_t stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorUpdateTemplateEntry const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorUpdateTemplateEntry &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( dstBinding, dstArrayElement, descriptorCount, descriptorType, offset, stride ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorUpdateTemplateEntry const & ) const = default; -#else - bool operator==( DescriptorUpdateTemplateEntry const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( dstBinding == rhs.dstBinding ) && ( dstArrayElement == rhs.dstArrayElement ) && - ( descriptorCount == rhs.descriptorCount ) && ( descriptorType == rhs.descriptorType ) && - ( offset == rhs.offset ) && ( stride == rhs.stride ); -# endif - } - - bool operator!=( DescriptorUpdateTemplateEntry const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t dstBinding = {}; - uint32_t dstArrayElement = {}; - uint32_t descriptorCount = {}; - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler; - size_t offset = {}; - size_t stride = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateEntry ) == - sizeof( VkDescriptorUpdateTemplateEntry ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorUpdateTemplateEntry is not nothrow_move_constructible!" ); - using DescriptorUpdateTemplateEntryKHR = DescriptorUpdateTemplateEntry; - - struct DescriptorUpdateTemplateCreateInfo - { - using NativeType = VkDescriptorUpdateTemplateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDescriptorUpdateTemplateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DescriptorUpdateTemplateCreateInfo( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateFlags flags_ = {}, - uint32_t descriptorUpdateEntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateEntry * pDescriptorUpdateEntries_ = {}, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType templateType_ = - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType::eDescriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout_ = {}, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout_ = {}, - uint32_t set_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , descriptorUpdateEntryCount( descriptorUpdateEntryCount_ ) - , pDescriptorUpdateEntries( pDescriptorUpdateEntries_ ) - , templateType( templateType_ ) - , descriptorSetLayout( descriptorSetLayout_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , pipelineLayout( pipelineLayout_ ) - , set( set_ ) - {} - - VULKAN_HPP_CONSTEXPR DescriptorUpdateTemplateCreateInfo( DescriptorUpdateTemplateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DescriptorUpdateTemplateCreateInfo( VkDescriptorUpdateTemplateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DescriptorUpdateTemplateCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorUpdateTemplateCreateInfo( - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - descriptorUpdateEntries_, - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType templateType_ = - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType::eDescriptorSet, - VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout_ = {}, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout_ = {}, - uint32_t set_ = {} ) - : flags( flags_ ) - , descriptorUpdateEntryCount( static_cast( descriptorUpdateEntries_.size() ) ) - , pDescriptorUpdateEntries( descriptorUpdateEntries_.data() ) - , templateType( templateType_ ) - , descriptorSetLayout( descriptorSetLayout_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , pipelineLayout( pipelineLayout_ ) - , set( set_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DescriptorUpdateTemplateCreateInfo & - operator=( DescriptorUpdateTemplateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DescriptorUpdateTemplateCreateInfo & - operator=( VkDescriptorUpdateTemplateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & - setDescriptorUpdateEntryCount( uint32_t descriptorUpdateEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorUpdateEntryCount = descriptorUpdateEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & setPDescriptorUpdateEntries( - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateEntry * pDescriptorUpdateEntries_ ) VULKAN_HPP_NOEXCEPT - { - pDescriptorUpdateEntries = pDescriptorUpdateEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DescriptorUpdateTemplateCreateInfo & setDescriptorUpdateEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - descriptorUpdateEntries_ ) VULKAN_HPP_NOEXCEPT - { - descriptorUpdateEntryCount = static_cast( descriptorUpdateEntries_.size() ); - pDescriptorUpdateEntries = descriptorUpdateEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & - setTemplateType( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType templateType_ ) VULKAN_HPP_NOEXCEPT - { - templateType = templateType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & - setDescriptorSetLayout( VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout_ ) VULKAN_HPP_NOEXCEPT - { - descriptorSetLayout = descriptorSetLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & - setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT - { - pipelineBindPoint = pipelineBindPoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & - setPipelineLayout( VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout_ ) VULKAN_HPP_NOEXCEPT - { - pipelineLayout = pipelineLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DescriptorUpdateTemplateCreateInfo & setSet( uint32_t set_ ) VULKAN_HPP_NOEXCEPT - { - set = set_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDescriptorUpdateTemplateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDescriptorUpdateTemplateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - descriptorUpdateEntryCount, - pDescriptorUpdateEntries, - templateType, - descriptorSetLayout, - pipelineBindPoint, - pipelineLayout, - set ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DescriptorUpdateTemplateCreateInfo const & ) const = default; -#else - bool operator==( DescriptorUpdateTemplateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( descriptorUpdateEntryCount == rhs.descriptorUpdateEntryCount ) && - ( pDescriptorUpdateEntries == rhs.pDescriptorUpdateEntries ) && ( templateType == rhs.templateType ) && - ( descriptorSetLayout == rhs.descriptorSetLayout ) && ( pipelineBindPoint == rhs.pipelineBindPoint ) && - ( pipelineLayout == rhs.pipelineLayout ) && ( set == rhs.set ); -# endif - } - - bool operator!=( DescriptorUpdateTemplateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDescriptorUpdateTemplateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateFlags flags = {}; - uint32_t descriptorUpdateEntryCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateEntry * pDescriptorUpdateEntries = {}; - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType templateType = - VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateType::eDescriptorSet; - VULKAN_HPP_NAMESPACE::DescriptorSetLayout descriptorSetLayout = {}; - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics; - VULKAN_HPP_NAMESPACE::PipelineLayout pipelineLayout = {}; - uint32_t set = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DescriptorUpdateTemplateCreateInfo ) == - sizeof( VkDescriptorUpdateTemplateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DescriptorUpdateTemplateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DescriptorUpdateTemplateCreateInfo; - }; - using DescriptorUpdateTemplateCreateInfoKHR = DescriptorUpdateTemplateCreateInfo; - - struct DeviceBufferMemoryRequirements - { - using NativeType = VkDeviceBufferMemoryRequirements; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceBufferMemoryRequirements; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceBufferMemoryRequirements( - const VULKAN_HPP_NAMESPACE::BufferCreateInfo * pCreateInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : pCreateInfo( pCreateInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceBufferMemoryRequirements( DeviceBufferMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceBufferMemoryRequirements( VkDeviceBufferMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceBufferMemoryRequirements( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceBufferMemoryRequirements & - operator=( DeviceBufferMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceBufferMemoryRequirements & operator=( VkDeviceBufferMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceBufferMemoryRequirements & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceBufferMemoryRequirements & - setPCreateInfo( const VULKAN_HPP_NAMESPACE::BufferCreateInfo * pCreateInfo_ ) VULKAN_HPP_NOEXCEPT - { - pCreateInfo = pCreateInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceBufferMemoryRequirements const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceBufferMemoryRequirements &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pCreateInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceBufferMemoryRequirements const & ) const = default; -#else - bool operator==( DeviceBufferMemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pCreateInfo == rhs.pCreateInfo ); -# endif - } - - bool operator!=( DeviceBufferMemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceBufferMemoryRequirements; - const void * pNext = {}; - const VULKAN_HPP_NAMESPACE::BufferCreateInfo * pCreateInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceBufferMemoryRequirements ) == - sizeof( VkDeviceBufferMemoryRequirements ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceBufferMemoryRequirements is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceBufferMemoryRequirements; - }; - using DeviceBufferMemoryRequirementsKHR = DeviceBufferMemoryRequirements; - - struct DeviceQueueCreateInfo - { - using NativeType = VkDeviceQueueCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceQueueCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceQueueCreateInfo( VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags_ = {}, - uint32_t queueFamilyIndex_ = {}, - uint32_t queueCount_ = {}, - const float * pQueuePriorities_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , queueFamilyIndex( queueFamilyIndex_ ) - , queueCount( queueCount_ ) - , pQueuePriorities( pQueuePriorities_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceQueueCreateInfo( DeviceQueueCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceQueueCreateInfo( VkDeviceQueueCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceQueueCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceQueueCreateInfo( VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags_, - uint32_t queueFamilyIndex_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queuePriorities_ ) - : flags( flags_ ) - , queueFamilyIndex( queueFamilyIndex_ ) - , queueCount( static_cast( queuePriorities_.size() ) ) - , pQueuePriorities( queuePriorities_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceQueueCreateInfo & operator=( DeviceQueueCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceQueueCreateInfo & operator=( VkDeviceQueueCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceQueueCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueCreateInfo & - setQueueFamilyIndex( uint32_t queueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndex = queueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueCreateInfo & setQueueCount( uint32_t queueCount_ ) VULKAN_HPP_NOEXCEPT - { - queueCount = queueCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueCreateInfo & - setPQueuePriorities( const float * pQueuePriorities_ ) VULKAN_HPP_NOEXCEPT - { - pQueuePriorities = pQueuePriorities_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceQueueCreateInfo & setQueuePriorities( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queuePriorities_ ) VULKAN_HPP_NOEXCEPT - { - queueCount = static_cast( queuePriorities_.size() ); - pQueuePriorities = queuePriorities_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceQueueCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceQueueCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, queueFamilyIndex, queueCount, pQueuePriorities ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceQueueCreateInfo const & ) const = default; -#else - bool operator==( DeviceQueueCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( queueFamilyIndex == rhs.queueFamilyIndex ) && ( queueCount == rhs.queueCount ) && - ( pQueuePriorities == rhs.pQueuePriorities ); -# endif - } - - bool operator!=( DeviceQueueCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceQueueCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags = {}; - uint32_t queueFamilyIndex = {}; - uint32_t queueCount = {}; - const float * pQueuePriorities = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceQueueCreateInfo ) == sizeof( VkDeviceQueueCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceQueueCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceQueueCreateInfo; - }; - - struct PhysicalDeviceFeatures - { - using NativeType = VkPhysicalDeviceFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceFeatures( VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fullDrawIndexUint32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 imageCubeArray_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 independentBlend_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 geometryShader_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 tessellationShader_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sampleRateShading_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 dualSrcBlend_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 logicOp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiDrawIndirect_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 drawIndirectFirstInstance_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthClamp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthBiasClamp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fillModeNonSolid_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthBounds_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 wideLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 largePoints_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 alphaToOne_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiViewport_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 samplerAnisotropy_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionETC2_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_LDR_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionBC_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryPrecise_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 pipelineStatisticsQuery_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vertexPipelineStoresAndAtomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentStoresAndAtomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderTessellationAndGeometryPointSize_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderImageGatherExtended_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageExtendedFormats_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageMultisample_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageReadWithoutFormat_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageWriteWithoutFormat_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderClipDistance_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderCullDistance_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInt64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInt16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderResourceResidency_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderResourceMinLod_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseBinding_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyBuffer_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyImage2D_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyImage3D_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency2Samples_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency4Samples_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency8Samples_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency16Samples_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyAliased_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 variableMultisampleRate_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 inheritedQueries_ = {} ) VULKAN_HPP_NOEXCEPT - : robustBufferAccess( robustBufferAccess_ ) - , fullDrawIndexUint32( fullDrawIndexUint32_ ) - , imageCubeArray( imageCubeArray_ ) - , independentBlend( independentBlend_ ) - , geometryShader( geometryShader_ ) - , tessellationShader( tessellationShader_ ) - , sampleRateShading( sampleRateShading_ ) - , dualSrcBlend( dualSrcBlend_ ) - , logicOp( logicOp_ ) - , multiDrawIndirect( multiDrawIndirect_ ) - , drawIndirectFirstInstance( drawIndirectFirstInstance_ ) - , depthClamp( depthClamp_ ) - , depthBiasClamp( depthBiasClamp_ ) - , fillModeNonSolid( fillModeNonSolid_ ) - , depthBounds( depthBounds_ ) - , wideLines( wideLines_ ) - , largePoints( largePoints_ ) - , alphaToOne( alphaToOne_ ) - , multiViewport( multiViewport_ ) - , samplerAnisotropy( samplerAnisotropy_ ) - , textureCompressionETC2( textureCompressionETC2_ ) - , textureCompressionASTC_LDR( textureCompressionASTC_LDR_ ) - , textureCompressionBC( textureCompressionBC_ ) - , occlusionQueryPrecise( occlusionQueryPrecise_ ) - , pipelineStatisticsQuery( pipelineStatisticsQuery_ ) - , vertexPipelineStoresAndAtomics( vertexPipelineStoresAndAtomics_ ) - , fragmentStoresAndAtomics( fragmentStoresAndAtomics_ ) - , shaderTessellationAndGeometryPointSize( shaderTessellationAndGeometryPointSize_ ) - , shaderImageGatherExtended( shaderImageGatherExtended_ ) - , shaderStorageImageExtendedFormats( shaderStorageImageExtendedFormats_ ) - , shaderStorageImageMultisample( shaderStorageImageMultisample_ ) - , shaderStorageImageReadWithoutFormat( shaderStorageImageReadWithoutFormat_ ) - , shaderStorageImageWriteWithoutFormat( shaderStorageImageWriteWithoutFormat_ ) - , shaderUniformBufferArrayDynamicIndexing( shaderUniformBufferArrayDynamicIndexing_ ) - , shaderSampledImageArrayDynamicIndexing( shaderSampledImageArrayDynamicIndexing_ ) - , shaderStorageBufferArrayDynamicIndexing( shaderStorageBufferArrayDynamicIndexing_ ) - , shaderStorageImageArrayDynamicIndexing( shaderStorageImageArrayDynamicIndexing_ ) - , shaderClipDistance( shaderClipDistance_ ) - , shaderCullDistance( shaderCullDistance_ ) - , shaderFloat64( shaderFloat64_ ) - , shaderInt64( shaderInt64_ ) - , shaderInt16( shaderInt16_ ) - , shaderResourceResidency( shaderResourceResidency_ ) - , shaderResourceMinLod( shaderResourceMinLod_ ) - , sparseBinding( sparseBinding_ ) - , sparseResidencyBuffer( sparseResidencyBuffer_ ) - , sparseResidencyImage2D( sparseResidencyImage2D_ ) - , sparseResidencyImage3D( sparseResidencyImage3D_ ) - , sparseResidency2Samples( sparseResidency2Samples_ ) - , sparseResidency4Samples( sparseResidency4Samples_ ) - , sparseResidency8Samples( sparseResidency8Samples_ ) - , sparseResidency16Samples( sparseResidency16Samples_ ) - , sparseResidencyAliased( sparseResidencyAliased_ ) - , variableMultisampleRate( variableMultisampleRate_ ) - , inheritedQueries( inheritedQueries_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFeatures( PhysicalDeviceFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFeatures( VkPhysicalDeviceFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFeatures( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFeatures & operator=( PhysicalDeviceFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFeatures & operator=( VkPhysicalDeviceFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setRobustBufferAccess( VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccess_ ) VULKAN_HPP_NOEXCEPT - { - robustBufferAccess = robustBufferAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setFullDrawIndexUint32( VULKAN_HPP_NAMESPACE::Bool32 fullDrawIndexUint32_ ) VULKAN_HPP_NOEXCEPT - { - fullDrawIndexUint32 = fullDrawIndexUint32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setImageCubeArray( VULKAN_HPP_NAMESPACE::Bool32 imageCubeArray_ ) VULKAN_HPP_NOEXCEPT - { - imageCubeArray = imageCubeArray_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setIndependentBlend( VULKAN_HPP_NAMESPACE::Bool32 independentBlend_ ) VULKAN_HPP_NOEXCEPT - { - independentBlend = independentBlend_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setGeometryShader( VULKAN_HPP_NAMESPACE::Bool32 geometryShader_ ) VULKAN_HPP_NOEXCEPT - { - geometryShader = geometryShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setTessellationShader( VULKAN_HPP_NAMESPACE::Bool32 tessellationShader_ ) VULKAN_HPP_NOEXCEPT - { - tessellationShader = tessellationShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSampleRateShading( VULKAN_HPP_NAMESPACE::Bool32 sampleRateShading_ ) VULKAN_HPP_NOEXCEPT - { - sampleRateShading = sampleRateShading_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setDualSrcBlend( VULKAN_HPP_NAMESPACE::Bool32 dualSrcBlend_ ) VULKAN_HPP_NOEXCEPT - { - dualSrcBlend = dualSrcBlend_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setLogicOp( VULKAN_HPP_NAMESPACE::Bool32 logicOp_ ) VULKAN_HPP_NOEXCEPT - { - logicOp = logicOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setMultiDrawIndirect( VULKAN_HPP_NAMESPACE::Bool32 multiDrawIndirect_ ) VULKAN_HPP_NOEXCEPT - { - multiDrawIndirect = multiDrawIndirect_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setDrawIndirectFirstInstance( VULKAN_HPP_NAMESPACE::Bool32 drawIndirectFirstInstance_ ) VULKAN_HPP_NOEXCEPT - { - drawIndirectFirstInstance = drawIndirectFirstInstance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setDepthClamp( VULKAN_HPP_NAMESPACE::Bool32 depthClamp_ ) VULKAN_HPP_NOEXCEPT - { - depthClamp = depthClamp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setDepthBiasClamp( VULKAN_HPP_NAMESPACE::Bool32 depthBiasClamp_ ) VULKAN_HPP_NOEXCEPT - { - depthBiasClamp = depthBiasClamp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setFillModeNonSolid( VULKAN_HPP_NAMESPACE::Bool32 fillModeNonSolid_ ) VULKAN_HPP_NOEXCEPT - { - fillModeNonSolid = fillModeNonSolid_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setDepthBounds( VULKAN_HPP_NAMESPACE::Bool32 depthBounds_ ) VULKAN_HPP_NOEXCEPT - { - depthBounds = depthBounds_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setWideLines( VULKAN_HPP_NAMESPACE::Bool32 wideLines_ ) VULKAN_HPP_NOEXCEPT - { - wideLines = wideLines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setLargePoints( VULKAN_HPP_NAMESPACE::Bool32 largePoints_ ) VULKAN_HPP_NOEXCEPT - { - largePoints = largePoints_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setAlphaToOne( VULKAN_HPP_NAMESPACE::Bool32 alphaToOne_ ) VULKAN_HPP_NOEXCEPT - { - alphaToOne = alphaToOne_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setMultiViewport( VULKAN_HPP_NAMESPACE::Bool32 multiViewport_ ) VULKAN_HPP_NOEXCEPT - { - multiViewport = multiViewport_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSamplerAnisotropy( VULKAN_HPP_NAMESPACE::Bool32 samplerAnisotropy_ ) VULKAN_HPP_NOEXCEPT - { - samplerAnisotropy = samplerAnisotropy_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setTextureCompressionETC2( VULKAN_HPP_NAMESPACE::Bool32 textureCompressionETC2_ ) VULKAN_HPP_NOEXCEPT - { - textureCompressionETC2 = textureCompressionETC2_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setTextureCompressionASTC_LDR( VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_LDR_ ) VULKAN_HPP_NOEXCEPT - { - textureCompressionASTC_LDR = textureCompressionASTC_LDR_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setTextureCompressionBC( VULKAN_HPP_NAMESPACE::Bool32 textureCompressionBC_ ) VULKAN_HPP_NOEXCEPT - { - textureCompressionBC = textureCompressionBC_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setOcclusionQueryPrecise( VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryPrecise_ ) VULKAN_HPP_NOEXCEPT - { - occlusionQueryPrecise = occlusionQueryPrecise_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setPipelineStatisticsQuery( VULKAN_HPP_NAMESPACE::Bool32 pipelineStatisticsQuery_ ) VULKAN_HPP_NOEXCEPT - { - pipelineStatisticsQuery = pipelineStatisticsQuery_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setVertexPipelineStoresAndAtomics( - VULKAN_HPP_NAMESPACE::Bool32 vertexPipelineStoresAndAtomics_ ) VULKAN_HPP_NOEXCEPT - { - vertexPipelineStoresAndAtomics = vertexPipelineStoresAndAtomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setFragmentStoresAndAtomics( VULKAN_HPP_NAMESPACE::Bool32 fragmentStoresAndAtomics_ ) VULKAN_HPP_NOEXCEPT - { - fragmentStoresAndAtomics = fragmentStoresAndAtomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderTessellationAndGeometryPointSize( - VULKAN_HPP_NAMESPACE::Bool32 shaderTessellationAndGeometryPointSize_ ) VULKAN_HPP_NOEXCEPT - { - shaderTessellationAndGeometryPointSize = shaderTessellationAndGeometryPointSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderImageGatherExtended( VULKAN_HPP_NAMESPACE::Bool32 shaderImageGatherExtended_ ) VULKAN_HPP_NOEXCEPT - { - shaderImageGatherExtended = shaderImageGatherExtended_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderStorageImageExtendedFormats( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageExtendedFormats_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageExtendedFormats = shaderStorageImageExtendedFormats_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderStorageImageMultisample( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageMultisample_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageMultisample = shaderStorageImageMultisample_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderStorageImageReadWithoutFormat( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageReadWithoutFormat_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageReadWithoutFormat = shaderStorageImageReadWithoutFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderStorageImageWriteWithoutFormat( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageWriteWithoutFormat_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageWriteWithoutFormat = shaderStorageImageWriteWithoutFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderUniformBufferArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformBufferArrayDynamicIndexing = shaderUniformBufferArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderSampledImageArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderSampledImageArrayDynamicIndexing = shaderSampledImageArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderStorageBufferArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageBufferArrayDynamicIndexing = shaderStorageBufferArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & setShaderStorageImageArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageArrayDynamicIndexing = shaderStorageImageArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderClipDistance( VULKAN_HPP_NAMESPACE::Bool32 shaderClipDistance_ ) VULKAN_HPP_NOEXCEPT - { - shaderClipDistance = shaderClipDistance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderCullDistance( VULKAN_HPP_NAMESPACE::Bool32 shaderCullDistance_ ) VULKAN_HPP_NOEXCEPT - { - shaderCullDistance = shaderCullDistance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderFloat64( VULKAN_HPP_NAMESPACE::Bool32 shaderFloat64_ ) VULKAN_HPP_NOEXCEPT - { - shaderFloat64 = shaderFloat64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderInt64( VULKAN_HPP_NAMESPACE::Bool32 shaderInt64_ ) VULKAN_HPP_NOEXCEPT - { - shaderInt64 = shaderInt64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderInt16( VULKAN_HPP_NAMESPACE::Bool32 shaderInt16_ ) VULKAN_HPP_NOEXCEPT - { - shaderInt16 = shaderInt16_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderResourceResidency( VULKAN_HPP_NAMESPACE::Bool32 shaderResourceResidency_ ) VULKAN_HPP_NOEXCEPT - { - shaderResourceResidency = shaderResourceResidency_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setShaderResourceMinLod( VULKAN_HPP_NAMESPACE::Bool32 shaderResourceMinLod_ ) VULKAN_HPP_NOEXCEPT - { - shaderResourceMinLod = shaderResourceMinLod_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseBinding( VULKAN_HPP_NAMESPACE::Bool32 sparseBinding_ ) VULKAN_HPP_NOEXCEPT - { - sparseBinding = sparseBinding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidencyBuffer( VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyBuffer_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidencyBuffer = sparseResidencyBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidencyImage2D( VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyImage2D_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidencyImage2D = sparseResidencyImage2D_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidencyImage3D( VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyImage3D_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidencyImage3D = sparseResidencyImage3D_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidency2Samples( VULKAN_HPP_NAMESPACE::Bool32 sparseResidency2Samples_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidency2Samples = sparseResidency2Samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidency4Samples( VULKAN_HPP_NAMESPACE::Bool32 sparseResidency4Samples_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidency4Samples = sparseResidency4Samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidency8Samples( VULKAN_HPP_NAMESPACE::Bool32 sparseResidency8Samples_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidency8Samples = sparseResidency8Samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidency16Samples( VULKAN_HPP_NAMESPACE::Bool32 sparseResidency16Samples_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidency16Samples = sparseResidency16Samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setSparseResidencyAliased( VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyAliased_ ) VULKAN_HPP_NOEXCEPT - { - sparseResidencyAliased = sparseResidencyAliased_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setVariableMultisampleRate( VULKAN_HPP_NAMESPACE::Bool32 variableMultisampleRate_ ) VULKAN_HPP_NOEXCEPT - { - variableMultisampleRate = variableMultisampleRate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures & - setInheritedQueries( VULKAN_HPP_NAMESPACE::Bool32 inheritedQueries_ ) VULKAN_HPP_NOEXCEPT - { - inheritedQueries = inheritedQueries_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( robustBufferAccess, - fullDrawIndexUint32, - imageCubeArray, - independentBlend, - geometryShader, - tessellationShader, - sampleRateShading, - dualSrcBlend, - logicOp, - multiDrawIndirect, - drawIndirectFirstInstance, - depthClamp, - depthBiasClamp, - fillModeNonSolid, - depthBounds, - wideLines, - largePoints, - alphaToOne, - multiViewport, - samplerAnisotropy, - textureCompressionETC2, - textureCompressionASTC_LDR, - textureCompressionBC, - occlusionQueryPrecise, - pipelineStatisticsQuery, - vertexPipelineStoresAndAtomics, - fragmentStoresAndAtomics, - shaderTessellationAndGeometryPointSize, - shaderImageGatherExtended, - shaderStorageImageExtendedFormats, - shaderStorageImageMultisample, - shaderStorageImageReadWithoutFormat, - shaderStorageImageWriteWithoutFormat, - shaderUniformBufferArrayDynamicIndexing, - shaderSampledImageArrayDynamicIndexing, - shaderStorageBufferArrayDynamicIndexing, - shaderStorageImageArrayDynamicIndexing, - shaderClipDistance, - shaderCullDistance, - shaderFloat64, - shaderInt64, - shaderInt16, - shaderResourceResidency, - shaderResourceMinLod, - sparseBinding, - sparseResidencyBuffer, - sparseResidencyImage2D, - sparseResidencyImage3D, - sparseResidency2Samples, - sparseResidency4Samples, - sparseResidency8Samples, - sparseResidency16Samples, - sparseResidencyAliased, - variableMultisampleRate, - inheritedQueries ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( robustBufferAccess == rhs.robustBufferAccess ) && ( fullDrawIndexUint32 == rhs.fullDrawIndexUint32 ) && - ( imageCubeArray == rhs.imageCubeArray ) && ( independentBlend == rhs.independentBlend ) && - ( geometryShader == rhs.geometryShader ) && ( tessellationShader == rhs.tessellationShader ) && - ( sampleRateShading == rhs.sampleRateShading ) && ( dualSrcBlend == rhs.dualSrcBlend ) && - ( logicOp == rhs.logicOp ) && ( multiDrawIndirect == rhs.multiDrawIndirect ) && - ( drawIndirectFirstInstance == rhs.drawIndirectFirstInstance ) && ( depthClamp == rhs.depthClamp ) && - ( depthBiasClamp == rhs.depthBiasClamp ) && ( fillModeNonSolid == rhs.fillModeNonSolid ) && - ( depthBounds == rhs.depthBounds ) && ( wideLines == rhs.wideLines ) && - ( largePoints == rhs.largePoints ) && ( alphaToOne == rhs.alphaToOne ) && - ( multiViewport == rhs.multiViewport ) && ( samplerAnisotropy == rhs.samplerAnisotropy ) && - ( textureCompressionETC2 == rhs.textureCompressionETC2 ) && - ( textureCompressionASTC_LDR == rhs.textureCompressionASTC_LDR ) && - ( textureCompressionBC == rhs.textureCompressionBC ) && - ( occlusionQueryPrecise == rhs.occlusionQueryPrecise ) && - ( pipelineStatisticsQuery == rhs.pipelineStatisticsQuery ) && - ( vertexPipelineStoresAndAtomics == rhs.vertexPipelineStoresAndAtomics ) && - ( fragmentStoresAndAtomics == rhs.fragmentStoresAndAtomics ) && - ( shaderTessellationAndGeometryPointSize == rhs.shaderTessellationAndGeometryPointSize ) && - ( shaderImageGatherExtended == rhs.shaderImageGatherExtended ) && - ( shaderStorageImageExtendedFormats == rhs.shaderStorageImageExtendedFormats ) && - ( shaderStorageImageMultisample == rhs.shaderStorageImageMultisample ) && - ( shaderStorageImageReadWithoutFormat == rhs.shaderStorageImageReadWithoutFormat ) && - ( shaderStorageImageWriteWithoutFormat == rhs.shaderStorageImageWriteWithoutFormat ) && - ( shaderUniformBufferArrayDynamicIndexing == rhs.shaderUniformBufferArrayDynamicIndexing ) && - ( shaderSampledImageArrayDynamicIndexing == rhs.shaderSampledImageArrayDynamicIndexing ) && - ( shaderStorageBufferArrayDynamicIndexing == rhs.shaderStorageBufferArrayDynamicIndexing ) && - ( shaderStorageImageArrayDynamicIndexing == rhs.shaderStorageImageArrayDynamicIndexing ) && - ( shaderClipDistance == rhs.shaderClipDistance ) && ( shaderCullDistance == rhs.shaderCullDistance ) && - ( shaderFloat64 == rhs.shaderFloat64 ) && ( shaderInt64 == rhs.shaderInt64 ) && - ( shaderInt16 == rhs.shaderInt16 ) && ( shaderResourceResidency == rhs.shaderResourceResidency ) && - ( shaderResourceMinLod == rhs.shaderResourceMinLod ) && ( sparseBinding == rhs.sparseBinding ) && - ( sparseResidencyBuffer == rhs.sparseResidencyBuffer ) && - ( sparseResidencyImage2D == rhs.sparseResidencyImage2D ) && - ( sparseResidencyImage3D == rhs.sparseResidencyImage3D ) && - ( sparseResidency2Samples == rhs.sparseResidency2Samples ) && - ( sparseResidency4Samples == rhs.sparseResidency4Samples ) && - ( sparseResidency8Samples == rhs.sparseResidency8Samples ) && - ( sparseResidency16Samples == rhs.sparseResidency16Samples ) && - ( sparseResidencyAliased == rhs.sparseResidencyAliased ) && - ( variableMultisampleRate == rhs.variableMultisampleRate ) && ( inheritedQueries == rhs.inheritedQueries ); -# endif - } - - bool operator!=( PhysicalDeviceFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 fullDrawIndexUint32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 imageCubeArray = {}; - VULKAN_HPP_NAMESPACE::Bool32 independentBlend = {}; - VULKAN_HPP_NAMESPACE::Bool32 geometryShader = {}; - VULKAN_HPP_NAMESPACE::Bool32 tessellationShader = {}; - VULKAN_HPP_NAMESPACE::Bool32 sampleRateShading = {}; - VULKAN_HPP_NAMESPACE::Bool32 dualSrcBlend = {}; - VULKAN_HPP_NAMESPACE::Bool32 logicOp = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiDrawIndirect = {}; - VULKAN_HPP_NAMESPACE::Bool32 drawIndirectFirstInstance = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthClamp = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthBiasClamp = {}; - VULKAN_HPP_NAMESPACE::Bool32 fillModeNonSolid = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthBounds = {}; - VULKAN_HPP_NAMESPACE::Bool32 wideLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 largePoints = {}; - VULKAN_HPP_NAMESPACE::Bool32 alphaToOne = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiViewport = {}; - VULKAN_HPP_NAMESPACE::Bool32 samplerAnisotropy = {}; - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionETC2 = {}; - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_LDR = {}; - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionBC = {}; - VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryPrecise = {}; - VULKAN_HPP_NAMESPACE::Bool32 pipelineStatisticsQuery = {}; - VULKAN_HPP_NAMESPACE::Bool32 vertexPipelineStoresAndAtomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentStoresAndAtomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderTessellationAndGeometryPointSize = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderImageGatherExtended = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageExtendedFormats = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageMultisample = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageReadWithoutFormat = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageWriteWithoutFormat = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderClipDistance = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderCullDistance = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInt64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInt16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderResourceResidency = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderResourceMinLod = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseBinding = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyBuffer = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyImage2D = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyImage3D = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency2Samples = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency4Samples = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency8Samples = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidency16Samples = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseResidencyAliased = {}; - VULKAN_HPP_NAMESPACE::Bool32 variableMultisampleRate = {}; - VULKAN_HPP_NAMESPACE::Bool32 inheritedQueries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures ) == - sizeof( VkPhysicalDeviceFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDeviceFeatures is not nothrow_move_constructible!" ); - - struct DeviceCreateInfo - { - using NativeType = VkDeviceCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceCreateInfo( VULKAN_HPP_NAMESPACE::DeviceCreateFlags flags_ = {}, - uint32_t queueCreateInfoCount_ = {}, - const VULKAN_HPP_NAMESPACE::DeviceQueueCreateInfo * pQueueCreateInfos_ = {}, - uint32_t enabledLayerCount_ = {}, - const char * const * ppEnabledLayerNames_ = {}, - uint32_t enabledExtensionCount_ = {}, - const char * const * ppEnabledExtensionNames_ = {}, - const VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures * pEnabledFeatures_ = {} ) - VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , queueCreateInfoCount( queueCreateInfoCount_ ) - , pQueueCreateInfos( pQueueCreateInfos_ ) - , enabledLayerCount( enabledLayerCount_ ) - , ppEnabledLayerNames( ppEnabledLayerNames_ ) - , enabledExtensionCount( enabledExtensionCount_ ) - , ppEnabledExtensionNames( ppEnabledExtensionNames_ ) - , pEnabledFeatures( pEnabledFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceCreateInfo( DeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceCreateInfo( VkDeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceCreateInfo( - VULKAN_HPP_NAMESPACE::DeviceCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - queueCreateInfos_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledLayerNames_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledExtensionNames_ = {}, - const VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures * pEnabledFeatures_ = {} ) - : flags( flags_ ) - , queueCreateInfoCount( static_cast( queueCreateInfos_.size() ) ) - , pQueueCreateInfos( queueCreateInfos_.data() ) - , enabledLayerCount( static_cast( pEnabledLayerNames_.size() ) ) - , ppEnabledLayerNames( pEnabledLayerNames_.data() ) - , enabledExtensionCount( static_cast( pEnabledExtensionNames_.size() ) ) - , ppEnabledExtensionNames( pEnabledExtensionNames_.data() ) - , pEnabledFeatures( pEnabledFeatures_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceCreateInfo & operator=( DeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceCreateInfo & operator=( VkDeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::DeviceCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setQueueCreateInfoCount( uint32_t queueCreateInfoCount_ ) VULKAN_HPP_NOEXCEPT - { - queueCreateInfoCount = queueCreateInfoCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setPQueueCreateInfos( const VULKAN_HPP_NAMESPACE::DeviceQueueCreateInfo * pQueueCreateInfos_ ) VULKAN_HPP_NOEXCEPT - { - pQueueCreateInfos = pQueueCreateInfos_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceCreateInfo & setQueueCreateInfos( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - queueCreateInfos_ ) VULKAN_HPP_NOEXCEPT - { - queueCreateInfoCount = static_cast( queueCreateInfos_.size() ); - pQueueCreateInfos = queueCreateInfos_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & setEnabledLayerCount( uint32_t enabledLayerCount_ ) VULKAN_HPP_NOEXCEPT - { - enabledLayerCount = enabledLayerCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setPpEnabledLayerNames( const char * const * ppEnabledLayerNames_ ) VULKAN_HPP_NOEXCEPT - { - ppEnabledLayerNames = ppEnabledLayerNames_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceCreateInfo & setPEnabledLayerNames( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - pEnabledLayerNames_ ) VULKAN_HPP_NOEXCEPT - { - enabledLayerCount = static_cast( pEnabledLayerNames_.size() ); - ppEnabledLayerNames = pEnabledLayerNames_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setEnabledExtensionCount( uint32_t enabledExtensionCount_ ) VULKAN_HPP_NOEXCEPT - { - enabledExtensionCount = enabledExtensionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setPpEnabledExtensionNames( const char * const * ppEnabledExtensionNames_ ) VULKAN_HPP_NOEXCEPT - { - ppEnabledExtensionNames = ppEnabledExtensionNames_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceCreateInfo & setPEnabledExtensionNames( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledExtensionNames_ ) - VULKAN_HPP_NOEXCEPT - { - enabledExtensionCount = static_cast( pEnabledExtensionNames_.size() ); - ppEnabledExtensionNames = pEnabledExtensionNames_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DeviceCreateInfo & - setPEnabledFeatures( const VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures * pEnabledFeatures_ ) VULKAN_HPP_NOEXCEPT - { - pEnabledFeatures = pEnabledFeatures_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - queueCreateInfoCount, - pQueueCreateInfos, - enabledLayerCount, - ppEnabledLayerNames, - enabledExtensionCount, - ppEnabledExtensionNames, - pEnabledFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( DeviceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = queueCreateInfoCount <=> rhs.queueCreateInfoCount; cmp != 0 ) - return cmp; - if ( auto cmp = pQueueCreateInfos <=> rhs.pQueueCreateInfos; cmp != 0 ) - return cmp; - if ( auto cmp = enabledLayerCount <=> rhs.enabledLayerCount; cmp != 0 ) - return cmp; - for ( size_t i = 0; i < enabledLayerCount; ++i ) - { - if ( ppEnabledLayerNames[i] != rhs.ppEnabledLayerNames[i] ) - if ( auto cmp = strcmp( ppEnabledLayerNames[i], rhs.ppEnabledLayerNames[i] ); cmp != 0 ) - return cmp < 0 ? std::strong_ordering::less : std::strong_ordering::greater; - } - if ( auto cmp = enabledExtensionCount <=> rhs.enabledExtensionCount; cmp != 0 ) - return cmp; - for ( size_t i = 0; i < enabledExtensionCount; ++i ) - { - if ( ppEnabledExtensionNames[i] != rhs.ppEnabledExtensionNames[i] ) - if ( auto cmp = strcmp( ppEnabledExtensionNames[i], rhs.ppEnabledExtensionNames[i] ); cmp != 0 ) - return cmp < 0 ? std::strong_ordering::less : std::strong_ordering::greater; - } - if ( auto cmp = pEnabledFeatures <=> rhs.pEnabledFeatures; cmp != 0 ) - return cmp; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( DeviceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( queueCreateInfoCount == rhs.queueCreateInfoCount ) && ( pQueueCreateInfos == rhs.pQueueCreateInfos ) && - ( enabledLayerCount == rhs.enabledLayerCount ) && - [this, rhs] - { - bool equal = true; - for ( size_t i = 0; equal && ( i < enabledLayerCount ); ++i ) - { - equal = ( ( ppEnabledLayerNames[i] == rhs.ppEnabledLayerNames[i] ) || - ( strcmp( ppEnabledLayerNames[i], rhs.ppEnabledLayerNames[i] ) == 0 ) ); - } - return equal; - }() && ( enabledExtensionCount == rhs.enabledExtensionCount ) && - [this, rhs] - { - bool equal = true; - for ( size_t i = 0; equal && ( i < enabledExtensionCount ); ++i ) - { - equal = ( ( ppEnabledExtensionNames[i] == rhs.ppEnabledExtensionNames[i] ) || - ( strcmp( ppEnabledExtensionNames[i], rhs.ppEnabledExtensionNames[i] ) == 0 ) ); - } - return equal; - }() && ( pEnabledFeatures == rhs.pEnabledFeatures ); - } - - bool operator!=( DeviceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceCreateFlags flags = {}; - uint32_t queueCreateInfoCount = {}; - const VULKAN_HPP_NAMESPACE::DeviceQueueCreateInfo * pQueueCreateInfos = {}; - uint32_t enabledLayerCount = {}; - const char * const * ppEnabledLayerNames = {}; - uint32_t enabledExtensionCount = {}; - const char * const * ppEnabledExtensionNames = {}; - const VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures * pEnabledFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceCreateInfo ) == sizeof( VkDeviceCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceCreateInfo; - }; - - struct DeviceDeviceMemoryReportCreateInfoEXT - { - using NativeType = VkDeviceDeviceMemoryReportCreateInfoEXT; - - static const bool allowDuplicate = true; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceDeviceMemoryReportCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceDeviceMemoryReportCreateInfoEXT( VULKAN_HPP_NAMESPACE::DeviceMemoryReportFlagsEXT flags_ = {}, - PFN_vkDeviceMemoryReportCallbackEXT pfnUserCallback_ = {}, - void * pUserData_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pfnUserCallback( pfnUserCallback_ ) - , pUserData( pUserData_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceDeviceMemoryReportCreateInfoEXT( DeviceDeviceMemoryReportCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DeviceDeviceMemoryReportCreateInfoEXT( VkDeviceDeviceMemoryReportCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceDeviceMemoryReportCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceDeviceMemoryReportCreateInfoEXT & - operator=( DeviceDeviceMemoryReportCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceDeviceMemoryReportCreateInfoEXT & - operator=( VkDeviceDeviceMemoryReportCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceDeviceMemoryReportCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceDeviceMemoryReportCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::DeviceMemoryReportFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceDeviceMemoryReportCreateInfoEXT & - setPfnUserCallback( PFN_vkDeviceMemoryReportCallbackEXT pfnUserCallback_ ) VULKAN_HPP_NOEXCEPT - { - pfnUserCallback = pfnUserCallback_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceDeviceMemoryReportCreateInfoEXT & - setPUserData( void * pUserData_ ) VULKAN_HPP_NOEXCEPT - { - pUserData = pUserData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceDeviceMemoryReportCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceDeviceMemoryReportCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pfnUserCallback, pUserData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceDeviceMemoryReportCreateInfoEXT const & ) const = default; -#else - bool operator==( DeviceDeviceMemoryReportCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pfnUserCallback == rhs.pfnUserCallback ) && ( pUserData == rhs.pUserData ); -# endif - } - - bool operator!=( DeviceDeviceMemoryReportCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceDeviceMemoryReportCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemoryReportFlagsEXT flags = {}; - PFN_vkDeviceMemoryReportCallbackEXT pfnUserCallback = {}; - void * pUserData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceDeviceMemoryReportCreateInfoEXT ) == - sizeof( VkDeviceDeviceMemoryReportCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceDeviceMemoryReportCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceDeviceMemoryReportCreateInfoEXT; - }; - - struct DeviceDiagnosticsConfigCreateInfoNV - { - using NativeType = VkDeviceDiagnosticsConfigCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceDiagnosticsConfigCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceDiagnosticsConfigCreateInfoNV( - VULKAN_HPP_NAMESPACE::DeviceDiagnosticsConfigFlagsNV flags_ = {} ) VULKAN_HPP_NOEXCEPT : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceDiagnosticsConfigCreateInfoNV( DeviceDiagnosticsConfigCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DeviceDiagnosticsConfigCreateInfoNV( VkDeviceDiagnosticsConfigCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceDiagnosticsConfigCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceDiagnosticsConfigCreateInfoNV & - operator=( DeviceDiagnosticsConfigCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceDiagnosticsConfigCreateInfoNV & - operator=( VkDeviceDiagnosticsConfigCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceDiagnosticsConfigCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceDiagnosticsConfigCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::DeviceDiagnosticsConfigFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceDiagnosticsConfigCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceDiagnosticsConfigCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceDiagnosticsConfigCreateInfoNV const & ) const = default; -#else - bool operator==( DeviceDiagnosticsConfigCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( DeviceDiagnosticsConfigCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceDiagnosticsConfigCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceDiagnosticsConfigFlagsNV flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceDiagnosticsConfigCreateInfoNV ) == - sizeof( VkDeviceDiagnosticsConfigCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceDiagnosticsConfigCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceDiagnosticsConfigCreateInfoNV; - }; - - struct DeviceEventInfoEXT - { - using NativeType = VkDeviceEventInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceEventInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceEventInfoEXT( VULKAN_HPP_NAMESPACE::DeviceEventTypeEXT deviceEvent_ = - VULKAN_HPP_NAMESPACE::DeviceEventTypeEXT::eDisplayHotplug ) VULKAN_HPP_NOEXCEPT - : deviceEvent( deviceEvent_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceEventInfoEXT( DeviceEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceEventInfoEXT( VkDeviceEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceEventInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceEventInfoEXT & operator=( DeviceEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceEventInfoEXT & operator=( VkDeviceEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceEventInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceEventInfoEXT & - setDeviceEvent( VULKAN_HPP_NAMESPACE::DeviceEventTypeEXT deviceEvent_ ) VULKAN_HPP_NOEXCEPT - { - deviceEvent = deviceEvent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceEventInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceEventInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceEvent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceEventInfoEXT const & ) const = default; -#else - bool operator==( DeviceEventInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceEvent == rhs.deviceEvent ); -# endif - } - - bool operator!=( DeviceEventInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceEventInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceEventTypeEXT deviceEvent = VULKAN_HPP_NAMESPACE::DeviceEventTypeEXT::eDisplayHotplug; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceEventInfoEXT ) == sizeof( VkDeviceEventInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceEventInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceEventInfoEXT; - }; - - struct DeviceGroupBindSparseInfo - { - using NativeType = VkDeviceGroupBindSparseInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupBindSparseInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceGroupBindSparseInfo( uint32_t resourceDeviceIndex_ = {}, - uint32_t memoryDeviceIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : resourceDeviceIndex( resourceDeviceIndex_ ) - , memoryDeviceIndex( memoryDeviceIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceGroupBindSparseInfo( DeviceGroupBindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupBindSparseInfo( VkDeviceGroupBindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupBindSparseInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupBindSparseInfo & operator=( DeviceGroupBindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupBindSparseInfo & operator=( VkDeviceGroupBindSparseInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupBindSparseInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupBindSparseInfo & - setResourceDeviceIndex( uint32_t resourceDeviceIndex_ ) VULKAN_HPP_NOEXCEPT - { - resourceDeviceIndex = resourceDeviceIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupBindSparseInfo & - setMemoryDeviceIndex( uint32_t memoryDeviceIndex_ ) VULKAN_HPP_NOEXCEPT - { - memoryDeviceIndex = memoryDeviceIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupBindSparseInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupBindSparseInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, resourceDeviceIndex, memoryDeviceIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupBindSparseInfo const & ) const = default; -#else - bool operator==( DeviceGroupBindSparseInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( resourceDeviceIndex == rhs.resourceDeviceIndex ) && - ( memoryDeviceIndex == rhs.memoryDeviceIndex ); -# endif - } - - bool operator!=( DeviceGroupBindSparseInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupBindSparseInfo; - const void * pNext = {}; - uint32_t resourceDeviceIndex = {}; - uint32_t memoryDeviceIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupBindSparseInfo ) == - sizeof( VkDeviceGroupBindSparseInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceGroupBindSparseInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupBindSparseInfo; - }; - using DeviceGroupBindSparseInfoKHR = DeviceGroupBindSparseInfo; - - struct DeviceGroupCommandBufferBeginInfo - { - using NativeType = VkDeviceGroupCommandBufferBeginInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceGroupCommandBufferBeginInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceGroupCommandBufferBeginInfo( uint32_t deviceMask_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceMask( deviceMask_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceGroupCommandBufferBeginInfo( DeviceGroupCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupCommandBufferBeginInfo( VkDeviceGroupCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupCommandBufferBeginInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupCommandBufferBeginInfo & - operator=( DeviceGroupCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupCommandBufferBeginInfo & operator=( VkDeviceGroupCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupCommandBufferBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupCommandBufferBeginInfo & - setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT - { - deviceMask = deviceMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupCommandBufferBeginInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupCommandBufferBeginInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupCommandBufferBeginInfo const & ) const = default; -#else - bool operator==( DeviceGroupCommandBufferBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceMask == rhs.deviceMask ); -# endif - } - - bool operator!=( DeviceGroupCommandBufferBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupCommandBufferBeginInfo; - const void * pNext = {}; - uint32_t deviceMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupCommandBufferBeginInfo ) == - sizeof( VkDeviceGroupCommandBufferBeginInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceGroupCommandBufferBeginInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupCommandBufferBeginInfo; - }; - using DeviceGroupCommandBufferBeginInfoKHR = DeviceGroupCommandBufferBeginInfo; - - struct DeviceGroupDeviceCreateInfo - { - using NativeType = VkDeviceGroupDeviceCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupDeviceCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceGroupDeviceCreateInfo( - uint32_t physicalDeviceCount_ = {}, - const VULKAN_HPP_NAMESPACE::PhysicalDevice * pPhysicalDevices_ = {} ) VULKAN_HPP_NOEXCEPT - : physicalDeviceCount( physicalDeviceCount_ ) - , pPhysicalDevices( pPhysicalDevices_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceGroupDeviceCreateInfo( DeviceGroupDeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupDeviceCreateInfo( VkDeviceGroupDeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupDeviceCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupDeviceCreateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - physicalDevices_ ) - : physicalDeviceCount( static_cast( physicalDevices_.size() ) ) - , pPhysicalDevices( physicalDevices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupDeviceCreateInfo & operator=( DeviceGroupDeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupDeviceCreateInfo & operator=( VkDeviceGroupDeviceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupDeviceCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupDeviceCreateInfo & - setPhysicalDeviceCount( uint32_t physicalDeviceCount_ ) VULKAN_HPP_NOEXCEPT - { - physicalDeviceCount = physicalDeviceCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupDeviceCreateInfo & - setPPhysicalDevices( const VULKAN_HPP_NAMESPACE::PhysicalDevice * pPhysicalDevices_ ) VULKAN_HPP_NOEXCEPT - { - pPhysicalDevices = pPhysicalDevices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupDeviceCreateInfo & setPhysicalDevices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - physicalDevices_ ) VULKAN_HPP_NOEXCEPT - { - physicalDeviceCount = static_cast( physicalDevices_.size() ); - pPhysicalDevices = physicalDevices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupDeviceCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupDeviceCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, physicalDeviceCount, pPhysicalDevices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupDeviceCreateInfo const & ) const = default; -#else - bool operator==( DeviceGroupDeviceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( physicalDeviceCount == rhs.physicalDeviceCount ) && - ( pPhysicalDevices == rhs.pPhysicalDevices ); -# endif - } - - bool operator!=( DeviceGroupDeviceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupDeviceCreateInfo; - const void * pNext = {}; - uint32_t physicalDeviceCount = {}; - const VULKAN_HPP_NAMESPACE::PhysicalDevice * pPhysicalDevices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupDeviceCreateInfo ) == - sizeof( VkDeviceGroupDeviceCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceGroupDeviceCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupDeviceCreateInfo; - }; - using DeviceGroupDeviceCreateInfoKHR = DeviceGroupDeviceCreateInfo; - - struct DeviceGroupPresentCapabilitiesKHR - { - using NativeType = VkDeviceGroupPresentCapabilitiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceGroupPresentCapabilitiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupPresentCapabilitiesKHR( - std::array const & presentMask_ = {}, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes_ = {} ) VULKAN_HPP_NOEXCEPT - : presentMask( presentMask_ ) - , modes( modes_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - DeviceGroupPresentCapabilitiesKHR( DeviceGroupPresentCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupPresentCapabilitiesKHR( VkDeviceGroupPresentCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupPresentCapabilitiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupPresentCapabilitiesKHR & - operator=( DeviceGroupPresentCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupPresentCapabilitiesKHR & operator=( VkDeviceGroupPresentCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDeviceGroupPresentCapabilitiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupPresentCapabilitiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, presentMask, modes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupPresentCapabilitiesKHR const & ) const = default; -#else - bool operator==( DeviceGroupPresentCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( presentMask == rhs.presentMask ) && - ( modes == rhs.modes ); -# endif - } - - bool operator!=( DeviceGroupPresentCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupPresentCapabilitiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D presentMask = {}; - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupPresentCapabilitiesKHR ) == - sizeof( VkDeviceGroupPresentCapabilitiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceGroupPresentCapabilitiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupPresentCapabilitiesKHR; - }; - - struct DeviceGroupPresentInfoKHR - { - using NativeType = VkDeviceGroupPresentInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupPresentInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceGroupPresentInfoKHR( uint32_t swapchainCount_ = {}, - const uint32_t * pDeviceMasks_ = {}, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR mode_ = - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR::eLocal ) VULKAN_HPP_NOEXCEPT - : swapchainCount( swapchainCount_ ) - , pDeviceMasks( pDeviceMasks_ ) - , mode( mode_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceGroupPresentInfoKHR( DeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupPresentInfoKHR( VkDeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupPresentInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupPresentInfoKHR( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceMasks_, - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR mode_ = - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR::eLocal ) - : swapchainCount( static_cast( deviceMasks_.size() ) ) - , pDeviceMasks( deviceMasks_.data() ) - , mode( mode_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupPresentInfoKHR & operator=( DeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupPresentInfoKHR & operator=( VkDeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & - setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = swapchainCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & - setPDeviceMasks( const uint32_t * pDeviceMasks_ ) VULKAN_HPP_NOEXCEPT - { - pDeviceMasks = pDeviceMasks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupPresentInfoKHR & setDeviceMasks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceMasks_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( deviceMasks_.size() ); - pDeviceMasks = deviceMasks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & - setMode( VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR mode_ ) VULKAN_HPP_NOEXCEPT - { - mode = mode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupPresentInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupPresentInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchainCount, pDeviceMasks, mode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupPresentInfoKHR const & ) const = default; -#else - bool operator==( DeviceGroupPresentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchainCount == rhs.swapchainCount ) && - ( pDeviceMasks == rhs.pDeviceMasks ) && ( mode == rhs.mode ); -# endif - } - - bool operator!=( DeviceGroupPresentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupPresentInfoKHR; - const void * pNext = {}; - uint32_t swapchainCount = {}; - const uint32_t * pDeviceMasks = {}; - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR mode = - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagBitsKHR::eLocal; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupPresentInfoKHR ) == - sizeof( VkDeviceGroupPresentInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceGroupPresentInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupPresentInfoKHR; - }; - - struct DeviceGroupRenderPassBeginInfo - { - using NativeType = VkDeviceGroupRenderPassBeginInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupRenderPassBeginInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceGroupRenderPassBeginInfo( uint32_t deviceMask_ = {}, - uint32_t deviceRenderAreaCount_ = {}, - const VULKAN_HPP_NAMESPACE::Rect2D * pDeviceRenderAreas_ = {} ) - VULKAN_HPP_NOEXCEPT - : deviceMask( deviceMask_ ) - , deviceRenderAreaCount( deviceRenderAreaCount_ ) - , pDeviceRenderAreas( pDeviceRenderAreas_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceGroupRenderPassBeginInfo( DeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupRenderPassBeginInfo( VkDeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupRenderPassBeginInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupRenderPassBeginInfo( - uint32_t deviceMask_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceRenderAreas_ ) - : deviceMask( deviceMask_ ) - , deviceRenderAreaCount( static_cast( deviceRenderAreas_.size() ) ) - , pDeviceRenderAreas( deviceRenderAreas_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupRenderPassBeginInfo & - operator=( DeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupRenderPassBeginInfo & operator=( VkDeviceGroupRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT - { - deviceMask = deviceMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & - setDeviceRenderAreaCount( uint32_t deviceRenderAreaCount_ ) VULKAN_HPP_NOEXCEPT - { - deviceRenderAreaCount = deviceRenderAreaCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupRenderPassBeginInfo & - setPDeviceRenderAreas( const VULKAN_HPP_NAMESPACE::Rect2D * pDeviceRenderAreas_ ) VULKAN_HPP_NOEXCEPT - { - pDeviceRenderAreas = pDeviceRenderAreas_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupRenderPassBeginInfo & setDeviceRenderAreas( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & deviceRenderAreas_ ) - VULKAN_HPP_NOEXCEPT - { - deviceRenderAreaCount = static_cast( deviceRenderAreas_.size() ); - pDeviceRenderAreas = deviceRenderAreas_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupRenderPassBeginInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupRenderPassBeginInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceMask, deviceRenderAreaCount, pDeviceRenderAreas ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupRenderPassBeginInfo const & ) const = default; -#else - bool operator==( DeviceGroupRenderPassBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceMask == rhs.deviceMask ) && - ( deviceRenderAreaCount == rhs.deviceRenderAreaCount ) && ( pDeviceRenderAreas == rhs.pDeviceRenderAreas ); -# endif - } - - bool operator!=( DeviceGroupRenderPassBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupRenderPassBeginInfo; - const void * pNext = {}; - uint32_t deviceMask = {}; - uint32_t deviceRenderAreaCount = {}; - const VULKAN_HPP_NAMESPACE::Rect2D * pDeviceRenderAreas = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupRenderPassBeginInfo ) == - sizeof( VkDeviceGroupRenderPassBeginInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceGroupRenderPassBeginInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupRenderPassBeginInfo; - }; - using DeviceGroupRenderPassBeginInfoKHR = DeviceGroupRenderPassBeginInfo; - - struct DeviceGroupSubmitInfo - { - using NativeType = VkDeviceGroupSubmitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, - const uint32_t * pWaitSemaphoreDeviceIndices_ = {}, - uint32_t commandBufferCount_ = {}, - const uint32_t * pCommandBufferDeviceMasks_ = {}, - uint32_t signalSemaphoreCount_ = {}, - const uint32_t * pSignalSemaphoreDeviceIndices_ = {} ) VULKAN_HPP_NOEXCEPT - : waitSemaphoreCount( waitSemaphoreCount_ ) - , pWaitSemaphoreDeviceIndices( pWaitSemaphoreDeviceIndices_ ) - , commandBufferCount( commandBufferCount_ ) - , pCommandBufferDeviceMasks( pCommandBufferDeviceMasks_ ) - , signalSemaphoreCount( signalSemaphoreCount_ ) - , pSignalSemaphoreDeviceIndices( pSignalSemaphoreDeviceIndices_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( DeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupSubmitInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupSubmitInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphoreDeviceIndices_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & commandBufferDeviceMasks_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphoreDeviceIndices_ = {} ) - : waitSemaphoreCount( static_cast( waitSemaphoreDeviceIndices_.size() ) ) - , pWaitSemaphoreDeviceIndices( waitSemaphoreDeviceIndices_.data() ) - , commandBufferCount( static_cast( commandBufferDeviceMasks_.size() ) ) - , pCommandBufferDeviceMasks( commandBufferDeviceMasks_.data() ) - , signalSemaphoreCount( static_cast( signalSemaphoreDeviceIndices_.size() ) ) - , pSignalSemaphoreDeviceIndices( signalSemaphoreDeviceIndices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupSubmitInfo & operator=( DeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupSubmitInfo & operator=( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & - setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = waitSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & - setPWaitSemaphoreDeviceIndices( const uint32_t * pWaitSemaphoreDeviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphoreDeviceIndices = pWaitSemaphoreDeviceIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupSubmitInfo & setWaitSemaphoreDeviceIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphoreDeviceIndices_ ) - VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = static_cast( waitSemaphoreDeviceIndices_.size() ); - pWaitSemaphoreDeviceIndices = waitSemaphoreDeviceIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & - setCommandBufferCount( uint32_t commandBufferCount_ ) VULKAN_HPP_NOEXCEPT - { - commandBufferCount = commandBufferCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & - setPCommandBufferDeviceMasks( const uint32_t * pCommandBufferDeviceMasks_ ) VULKAN_HPP_NOEXCEPT - { - pCommandBufferDeviceMasks = pCommandBufferDeviceMasks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupSubmitInfo & setCommandBufferDeviceMasks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & commandBufferDeviceMasks_ ) - VULKAN_HPP_NOEXCEPT - { - commandBufferCount = static_cast( commandBufferDeviceMasks_.size() ); - pCommandBufferDeviceMasks = commandBufferDeviceMasks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & - setSignalSemaphoreCount( uint32_t signalSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreCount = signalSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & - setPSignalSemaphoreDeviceIndices( const uint32_t * pSignalSemaphoreDeviceIndices_ ) VULKAN_HPP_NOEXCEPT - { - pSignalSemaphoreDeviceIndices = pSignalSemaphoreDeviceIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DeviceGroupSubmitInfo & setSignalSemaphoreDeviceIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphoreDeviceIndices_ ) - VULKAN_HPP_NOEXCEPT - { - signalSemaphoreCount = static_cast( signalSemaphoreDeviceIndices_.size() ); - pSignalSemaphoreDeviceIndices = signalSemaphoreDeviceIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupSubmitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupSubmitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - waitSemaphoreCount, - pWaitSemaphoreDeviceIndices, - commandBufferCount, - pCommandBufferDeviceMasks, - signalSemaphoreCount, - pSignalSemaphoreDeviceIndices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupSubmitInfo const & ) const = default; -#else - bool operator==( DeviceGroupSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( waitSemaphoreCount == rhs.waitSemaphoreCount ) && - ( pWaitSemaphoreDeviceIndices == rhs.pWaitSemaphoreDeviceIndices ) && - ( commandBufferCount == rhs.commandBufferCount ) && - ( pCommandBufferDeviceMasks == rhs.pCommandBufferDeviceMasks ) && - ( signalSemaphoreCount == rhs.signalSemaphoreCount ) && - ( pSignalSemaphoreDeviceIndices == rhs.pSignalSemaphoreDeviceIndices ); -# endif - } - - bool operator!=( DeviceGroupSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupSubmitInfo; - const void * pNext = {}; - uint32_t waitSemaphoreCount = {}; - const uint32_t * pWaitSemaphoreDeviceIndices = {}; - uint32_t commandBufferCount = {}; - const uint32_t * pCommandBufferDeviceMasks = {}; - uint32_t signalSemaphoreCount = {}; - const uint32_t * pSignalSemaphoreDeviceIndices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo ) == sizeof( VkDeviceGroupSubmitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceGroupSubmitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupSubmitInfo; - }; - using DeviceGroupSubmitInfoKHR = DeviceGroupSubmitInfo; - - struct DeviceGroupSwapchainCreateInfoKHR - { - using NativeType = VkDeviceGroupSwapchainCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceGroupSwapchainCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceGroupSwapchainCreateInfoKHR( - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes_ = {} ) VULKAN_HPP_NOEXCEPT : modes( modes_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceGroupSwapchainCreateInfoKHR( DeviceGroupSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupSwapchainCreateInfoKHR( VkDeviceGroupSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceGroupSwapchainCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceGroupSwapchainCreateInfoKHR & - operator=( DeviceGroupSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceGroupSwapchainCreateInfoKHR & operator=( VkDeviceGroupSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSwapchainCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceGroupSwapchainCreateInfoKHR & - setModes( VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes_ ) VULKAN_HPP_NOEXCEPT - { - modes = modes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceGroupSwapchainCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceGroupSwapchainCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, modes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceGroupSwapchainCreateInfoKHR const & ) const = default; -#else - bool operator==( DeviceGroupSwapchainCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( modes == rhs.modes ); -# endif - } - - bool operator!=( DeviceGroupSwapchainCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceGroupSwapchainCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceGroupPresentModeFlagsKHR modes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceGroupSwapchainCreateInfoKHR ) == - sizeof( VkDeviceGroupSwapchainCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceGroupSwapchainCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceGroupSwapchainCreateInfoKHR; - }; - - struct ImageCreateInfo - { - using NativeType = VkImageCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageCreateInfo( - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ImageType imageType_ = VULKAN_HPP_NAMESPACE::ImageType::e1D, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Extent3D extent_ = {}, - uint32_t mipLevels_ = {}, - uint32_t arrayLayers_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::ImageTiling tiling_ = VULKAN_HPP_NAMESPACE::ImageTiling::eOptimal, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ = {}, - VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive, - uint32_t queueFamilyIndexCount_ = {}, - const uint32_t * pQueueFamilyIndices_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) - VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , imageType( imageType_ ) - , format( format_ ) - , extent( extent_ ) - , mipLevels( mipLevels_ ) - , arrayLayers( arrayLayers_ ) - , samples( samples_ ) - , tiling( tiling_ ) - , usage( usage_ ) - , sharingMode( sharingMode_ ) - , queueFamilyIndexCount( queueFamilyIndexCount_ ) - , pQueueFamilyIndices( pQueueFamilyIndices_ ) - , initialLayout( initialLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageCreateInfo( ImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageCreateInfo( VkImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageCreateInfo( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ImageType imageType_, - VULKAN_HPP_NAMESPACE::Format format_, - VULKAN_HPP_NAMESPACE::Extent3D extent_, - uint32_t mipLevels_, - uint32_t arrayLayers_, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_, - VULKAN_HPP_NAMESPACE::ImageTiling tiling_, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_, - VULKAN_HPP_NAMESPACE::SharingMode sharingMode_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_, - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) - : flags( flags_ ) - , imageType( imageType_ ) - , format( format_ ) - , extent( extent_ ) - , mipLevels( mipLevels_ ) - , arrayLayers( arrayLayers_ ) - , samples( samples_ ) - , tiling( tiling_ ) - , usage( usage_ ) - , sharingMode( sharingMode_ ) - , queueFamilyIndexCount( static_cast( queueFamilyIndices_.size() ) ) - , pQueueFamilyIndices( queueFamilyIndices_.data() ) - , initialLayout( initialLayout_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageCreateInfo & operator=( ImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageCreateInfo & operator=( VkImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setImageType( VULKAN_HPP_NAMESPACE::ImageType imageType_ ) VULKAN_HPP_NOEXCEPT - { - imageType = imageType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setExtent( VULKAN_HPP_NAMESPACE::Extent3D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & setMipLevels( uint32_t mipLevels_ ) VULKAN_HPP_NOEXCEPT - { - mipLevels = mipLevels_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & setArrayLayers( uint32_t arrayLayers_ ) VULKAN_HPP_NOEXCEPT - { - arrayLayers = arrayLayers_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ ) VULKAN_HPP_NOEXCEPT - { - samples = samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & setTiling( VULKAN_HPP_NAMESPACE::ImageTiling tiling_ ) VULKAN_HPP_NOEXCEPT - { - tiling = tiling_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setSharingMode( VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ ) VULKAN_HPP_NOEXCEPT - { - sharingMode = sharingMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setQueueFamilyIndexCount( uint32_t queueFamilyIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = queueFamilyIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setPQueueFamilyIndices( const uint32_t * pQueueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - pQueueFamilyIndices = pQueueFamilyIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageCreateInfo & setQueueFamilyIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = static_cast( queueFamilyIndices_.size() ); - pQueueFamilyIndices = queueFamilyIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 ImageCreateInfo & - setInitialLayout( VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ ) VULKAN_HPP_NOEXCEPT - { - initialLayout = initialLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - imageType, - format, - extent, - mipLevels, - arrayLayers, - samples, - tiling, - usage, - sharingMode, - queueFamilyIndexCount, - pQueueFamilyIndices, - initialLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageCreateInfo const & ) const = default; -#else - bool operator==( ImageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( imageType == rhs.imageType ) && ( format == rhs.format ) && ( extent == rhs.extent ) && - ( mipLevels == rhs.mipLevels ) && ( arrayLayers == rhs.arrayLayers ) && ( samples == rhs.samples ) && - ( tiling == rhs.tiling ) && ( usage == rhs.usage ) && ( sharingMode == rhs.sharingMode ) && - ( queueFamilyIndexCount == rhs.queueFamilyIndexCount ) && - ( pQueueFamilyIndices == rhs.pQueueFamilyIndices ) && ( initialLayout == rhs.initialLayout ); -# endif - } - - bool operator!=( ImageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::ImageType imageType = VULKAN_HPP_NAMESPACE::ImageType::e1D; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::Extent3D extent = {}; - uint32_t mipLevels = {}; - uint32_t arrayLayers = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::ImageTiling tiling = VULKAN_HPP_NAMESPACE::ImageTiling::eOptimal; - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage = {}; - VULKAN_HPP_NAMESPACE::SharingMode sharingMode = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive; - uint32_t queueFamilyIndexCount = {}; - const uint32_t * pQueueFamilyIndices = {}; - VULKAN_HPP_NAMESPACE::ImageLayout initialLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageCreateInfo ) == sizeof( VkImageCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageCreateInfo; - }; - - struct DeviceImageMemoryRequirements - { - using NativeType = VkDeviceImageMemoryRequirements; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceImageMemoryRequirements; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceImageMemoryRequirements( const VULKAN_HPP_NAMESPACE::ImageCreateInfo * pCreateInfo_ = {}, - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect_ = - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits::eColor ) VULKAN_HPP_NOEXCEPT - : pCreateInfo( pCreateInfo_ ) - , planeAspect( planeAspect_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceImageMemoryRequirements( DeviceImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceImageMemoryRequirements( VkDeviceImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceImageMemoryRequirements( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceImageMemoryRequirements & - operator=( DeviceImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceImageMemoryRequirements & operator=( VkDeviceImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceImageMemoryRequirements & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceImageMemoryRequirements & - setPCreateInfo( const VULKAN_HPP_NAMESPACE::ImageCreateInfo * pCreateInfo_ ) VULKAN_HPP_NOEXCEPT - { - pCreateInfo = pCreateInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceImageMemoryRequirements & - setPlaneAspect( VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect_ ) VULKAN_HPP_NOEXCEPT - { - planeAspect = planeAspect_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceImageMemoryRequirements const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceImageMemoryRequirements &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pCreateInfo, planeAspect ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceImageMemoryRequirements const & ) const = default; -#else - bool operator==( DeviceImageMemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pCreateInfo == rhs.pCreateInfo ) && - ( planeAspect == rhs.planeAspect ); -# endif - } - - bool operator!=( DeviceImageMemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceImageMemoryRequirements; - const void * pNext = {}; - const VULKAN_HPP_NAMESPACE::ImageCreateInfo * pCreateInfo = {}; - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect = VULKAN_HPP_NAMESPACE::ImageAspectFlagBits::eColor; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceImageMemoryRequirements ) == - sizeof( VkDeviceImageMemoryRequirements ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceImageMemoryRequirements is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceImageMemoryRequirements; - }; - using DeviceImageMemoryRequirementsKHR = DeviceImageMemoryRequirements; - - struct DeviceMemoryOpaqueCaptureAddressInfo - { - using NativeType = VkDeviceMemoryOpaqueCaptureAddressInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceMemoryOpaqueCaptureAddressInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceMemoryOpaqueCaptureAddressInfo( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {} ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceMemoryOpaqueCaptureAddressInfo( DeviceMemoryOpaqueCaptureAddressInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DeviceMemoryOpaqueCaptureAddressInfo( VkDeviceMemoryOpaqueCaptureAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceMemoryOpaqueCaptureAddressInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceMemoryOpaqueCaptureAddressInfo & - operator=( DeviceMemoryOpaqueCaptureAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceMemoryOpaqueCaptureAddressInfo & - operator=( VkDeviceMemoryOpaqueCaptureAddressInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceMemoryOpaqueCaptureAddressInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceMemoryOpaqueCaptureAddressInfo & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceMemoryOpaqueCaptureAddressInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceMemoryOpaqueCaptureAddressInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceMemoryOpaqueCaptureAddressInfo const & ) const = default; -#else - bool operator==( DeviceMemoryOpaqueCaptureAddressInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ); -# endif - } - - bool operator!=( DeviceMemoryOpaqueCaptureAddressInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceMemoryOpaqueCaptureAddressInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceMemoryOpaqueCaptureAddressInfo ) == - sizeof( VkDeviceMemoryOpaqueCaptureAddressInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceMemoryOpaqueCaptureAddressInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceMemoryOpaqueCaptureAddressInfo; - }; - using DeviceMemoryOpaqueCaptureAddressInfoKHR = DeviceMemoryOpaqueCaptureAddressInfo; - - struct DeviceMemoryOverallocationCreateInfoAMD - { - using NativeType = VkDeviceMemoryOverallocationCreateInfoAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceMemoryOverallocationCreateInfoAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceMemoryOverallocationCreateInfoAMD( - VULKAN_HPP_NAMESPACE::MemoryOverallocationBehaviorAMD overallocationBehavior_ = - VULKAN_HPP_NAMESPACE::MemoryOverallocationBehaviorAMD::eDefault ) VULKAN_HPP_NOEXCEPT - : overallocationBehavior( overallocationBehavior_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceMemoryOverallocationCreateInfoAMD( DeviceMemoryOverallocationCreateInfoAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DeviceMemoryOverallocationCreateInfoAMD( VkDeviceMemoryOverallocationCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceMemoryOverallocationCreateInfoAMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceMemoryOverallocationCreateInfoAMD & - operator=( DeviceMemoryOverallocationCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceMemoryOverallocationCreateInfoAMD & - operator=( VkDeviceMemoryOverallocationCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceMemoryOverallocationCreateInfoAMD & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceMemoryOverallocationCreateInfoAMD & setOverallocationBehavior( - VULKAN_HPP_NAMESPACE::MemoryOverallocationBehaviorAMD overallocationBehavior_ ) VULKAN_HPP_NOEXCEPT - { - overallocationBehavior = overallocationBehavior_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceMemoryOverallocationCreateInfoAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceMemoryOverallocationCreateInfoAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, overallocationBehavior ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceMemoryOverallocationCreateInfoAMD const & ) const = default; -#else - bool operator==( DeviceMemoryOverallocationCreateInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( overallocationBehavior == rhs.overallocationBehavior ); -# endif - } - - bool operator!=( DeviceMemoryOverallocationCreateInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceMemoryOverallocationCreateInfoAMD; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::MemoryOverallocationBehaviorAMD overallocationBehavior = - VULKAN_HPP_NAMESPACE::MemoryOverallocationBehaviorAMD::eDefault; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceMemoryOverallocationCreateInfoAMD ) == - sizeof( VkDeviceMemoryOverallocationCreateInfoAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceMemoryOverallocationCreateInfoAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceMemoryOverallocationCreateInfoAMD; - }; - - struct DeviceMemoryReportCallbackDataEXT - { - using NativeType = VkDeviceMemoryReportCallbackDataEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceMemoryReportCallbackDataEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceMemoryReportCallbackDataEXT( - VULKAN_HPP_NAMESPACE::DeviceMemoryReportFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemoryReportEventTypeEXT type_ = - VULKAN_HPP_NAMESPACE::DeviceMemoryReportEventTypeEXT::eAllocate, - uint64_t memoryObjectId_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::ObjectType objectType_ = VULKAN_HPP_NAMESPACE::ObjectType::eUnknown, - uint64_t objectHandle_ = {}, - uint32_t heapIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , type( type_ ) - , memoryObjectId( memoryObjectId_ ) - , size( size_ ) - , objectType( objectType_ ) - , objectHandle( objectHandle_ ) - , heapIndex( heapIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - DeviceMemoryReportCallbackDataEXT( DeviceMemoryReportCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceMemoryReportCallbackDataEXT( VkDeviceMemoryReportCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceMemoryReportCallbackDataEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceMemoryReportCallbackDataEXT & - operator=( DeviceMemoryReportCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceMemoryReportCallbackDataEXT & operator=( VkDeviceMemoryReportCallbackDataEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDeviceMemoryReportCallbackDataEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceMemoryReportCallbackDataEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, type, memoryObjectId, size, objectType, objectHandle, heapIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceMemoryReportCallbackDataEXT const & ) const = default; -#else - bool operator==( DeviceMemoryReportCallbackDataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( type == rhs.type ) && - ( memoryObjectId == rhs.memoryObjectId ) && ( size == rhs.size ) && ( objectType == rhs.objectType ) && - ( objectHandle == rhs.objectHandle ) && ( heapIndex == rhs.heapIndex ); -# endif - } - - bool operator!=( DeviceMemoryReportCallbackDataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceMemoryReportCallbackDataEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemoryReportFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::DeviceMemoryReportEventTypeEXT type = - VULKAN_HPP_NAMESPACE::DeviceMemoryReportEventTypeEXT::eAllocate; - uint64_t memoryObjectId = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::ObjectType::eUnknown; - uint64_t objectHandle = {}; - uint32_t heapIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceMemoryReportCallbackDataEXT ) == - sizeof( VkDeviceMemoryReportCallbackDataEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceMemoryReportCallbackDataEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceMemoryReportCallbackDataEXT; - }; - - struct DevicePrivateDataCreateInfo - { - using NativeType = VkDevicePrivateDataCreateInfo; - - static const bool allowDuplicate = true; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDevicePrivateDataCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DevicePrivateDataCreateInfo( uint32_t privateDataSlotRequestCount_ = {} ) VULKAN_HPP_NOEXCEPT - : privateDataSlotRequestCount( privateDataSlotRequestCount_ ) - {} - - VULKAN_HPP_CONSTEXPR - DevicePrivateDataCreateInfo( DevicePrivateDataCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DevicePrivateDataCreateInfo( VkDevicePrivateDataCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : DevicePrivateDataCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DevicePrivateDataCreateInfo & operator=( DevicePrivateDataCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DevicePrivateDataCreateInfo & operator=( VkDevicePrivateDataCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DevicePrivateDataCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DevicePrivateDataCreateInfo & - setPrivateDataSlotRequestCount( uint32_t privateDataSlotRequestCount_ ) VULKAN_HPP_NOEXCEPT - { - privateDataSlotRequestCount = privateDataSlotRequestCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDevicePrivateDataCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDevicePrivateDataCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, privateDataSlotRequestCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DevicePrivateDataCreateInfo const & ) const = default; -#else - bool operator==( DevicePrivateDataCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( privateDataSlotRequestCount == rhs.privateDataSlotRequestCount ); -# endif - } - - bool operator!=( DevicePrivateDataCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDevicePrivateDataCreateInfo; - const void * pNext = {}; - uint32_t privateDataSlotRequestCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DevicePrivateDataCreateInfo ) == - sizeof( VkDevicePrivateDataCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DevicePrivateDataCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DevicePrivateDataCreateInfo; - }; - using DevicePrivateDataCreateInfoEXT = DevicePrivateDataCreateInfo; - - struct DeviceQueueGlobalPriorityCreateInfoKHR - { - using NativeType = VkDeviceQueueGlobalPriorityCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDeviceQueueGlobalPriorityCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DeviceQueueGlobalPriorityCreateInfoKHR( VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR globalPriority_ = - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow ) VULKAN_HPP_NOEXCEPT - : globalPriority( globalPriority_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceQueueGlobalPriorityCreateInfoKHR( DeviceQueueGlobalPriorityCreateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DeviceQueueGlobalPriorityCreateInfoKHR( VkDeviceQueueGlobalPriorityCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceQueueGlobalPriorityCreateInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceQueueGlobalPriorityCreateInfoKHR & - operator=( DeviceQueueGlobalPriorityCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceQueueGlobalPriorityCreateInfoKHR & - operator=( VkDeviceQueueGlobalPriorityCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceQueueGlobalPriorityCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueGlobalPriorityCreateInfoKHR & - setGlobalPriority( VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR globalPriority_ ) VULKAN_HPP_NOEXCEPT - { - globalPriority = globalPriority_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceQueueGlobalPriorityCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceQueueGlobalPriorityCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, globalPriority ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceQueueGlobalPriorityCreateInfoKHR const & ) const = default; -#else - bool operator==( DeviceQueueGlobalPriorityCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( globalPriority == rhs.globalPriority ); -# endif - } - - bool operator!=( DeviceQueueGlobalPriorityCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceQueueGlobalPriorityCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR globalPriority = VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceQueueGlobalPriorityCreateInfoKHR ) == - sizeof( VkDeviceQueueGlobalPriorityCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DeviceQueueGlobalPriorityCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceQueueGlobalPriorityCreateInfoKHR; - }; - using DeviceQueueGlobalPriorityCreateInfoEXT = DeviceQueueGlobalPriorityCreateInfoKHR; - - struct DeviceQueueInfo2 - { - using NativeType = VkDeviceQueueInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceQueueInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DeviceQueueInfo2( VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags_ = {}, - uint32_t queueFamilyIndex_ = {}, - uint32_t queueIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , queueFamilyIndex( queueFamilyIndex_ ) - , queueIndex( queueIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR DeviceQueueInfo2( DeviceQueueInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceQueueInfo2( VkDeviceQueueInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : DeviceQueueInfo2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DeviceQueueInfo2 & operator=( DeviceQueueInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DeviceQueueInfo2 & operator=( VkDeviceQueueInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DeviceQueueInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueInfo2 & - setFlags( VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueInfo2 & setQueueFamilyIndex( uint32_t queueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndex = queueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DeviceQueueInfo2 & setQueueIndex( uint32_t queueIndex_ ) VULKAN_HPP_NOEXCEPT - { - queueIndex = queueIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDeviceQueueInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDeviceQueueInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, queueFamilyIndex, queueIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DeviceQueueInfo2 const & ) const = default; -#else - bool operator==( DeviceQueueInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( queueFamilyIndex == rhs.queueFamilyIndex ) && ( queueIndex == rhs.queueIndex ); -# endif - } - - bool operator!=( DeviceQueueInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDeviceQueueInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceQueueCreateFlags flags = {}; - uint32_t queueFamilyIndex = {}; - uint32_t queueIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DeviceQueueInfo2 ) == sizeof( VkDeviceQueueInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DeviceQueueInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DeviceQueueInfo2; - }; - -#if defined( VK_USE_PLATFORM_DIRECTFB_EXT ) - struct DirectFBSurfaceCreateInfoEXT - { - using NativeType = VkDirectFBSurfaceCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDirectfbSurfaceCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DirectFBSurfaceCreateInfoEXT( VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateFlagsEXT flags_ = {}, - IDirectFB * dfb_ = {}, - IDirectFBSurface * surface_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , dfb( dfb_ ) - , surface( surface_ ) - {} - - VULKAN_HPP_CONSTEXPR - DirectFBSurfaceCreateInfoEXT( DirectFBSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DirectFBSurfaceCreateInfoEXT( VkDirectFBSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DirectFBSurfaceCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DirectFBSurfaceCreateInfoEXT & operator=( DirectFBSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DirectFBSurfaceCreateInfoEXT & operator=( VkDirectFBSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DirectFBSurfaceCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DirectFBSurfaceCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DirectFBSurfaceCreateInfoEXT & setDfb( IDirectFB * dfb_ ) VULKAN_HPP_NOEXCEPT - { - dfb = dfb_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DirectFBSurfaceCreateInfoEXT & setSurface( IDirectFBSurface * surface_ ) VULKAN_HPP_NOEXCEPT - { - surface = surface_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDirectFBSurfaceCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDirectFBSurfaceCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, dfb, surface ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DirectFBSurfaceCreateInfoEXT const & ) const = default; -# else - bool operator==( DirectFBSurfaceCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( dfb == rhs.dfb ) && - ( surface == rhs.surface ); -# endif - } - - bool operator!=( DirectFBSurfaceCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDirectfbSurfaceCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateFlagsEXT flags = {}; - IDirectFB * dfb = {}; - IDirectFBSurface * surface = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DirectFBSurfaceCreateInfoEXT ) == - sizeof( VkDirectFBSurfaceCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DirectFBSurfaceCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DirectFBSurfaceCreateInfoEXT; - }; -#endif /*VK_USE_PLATFORM_DIRECTFB_EXT*/ - - struct DispatchIndirectCommand - { - using NativeType = VkDispatchIndirectCommand; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {} ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - , z( z_ ) - {} - - VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( DispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT - : DispatchIndirectCommand( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DispatchIndirectCommand & operator=( DispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DispatchIndirectCommand & operator=( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT - { - z = z_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y, z ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DispatchIndirectCommand const & ) const = default; -#else - bool operator==( DispatchIndirectCommand const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ) && ( z == rhs.z ); -# endif - } - - bool operator!=( DispatchIndirectCommand const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t x = {}; - uint32_t y = {}; - uint32_t z = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DispatchIndirectCommand ) == - sizeof( VkDispatchIndirectCommand ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DispatchIndirectCommand is not nothrow_move_constructible!" ); - - struct DisplayEventInfoEXT - { - using NativeType = VkDisplayEventInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayEventInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplayEventInfoEXT( VULKAN_HPP_NAMESPACE::DisplayEventTypeEXT displayEvent_ = - VULKAN_HPP_NAMESPACE::DisplayEventTypeEXT::eFirstPixelOut ) VULKAN_HPP_NOEXCEPT - : displayEvent( displayEvent_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayEventInfoEXT( DisplayEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayEventInfoEXT( VkDisplayEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayEventInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayEventInfoEXT & operator=( DisplayEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayEventInfoEXT & operator=( VkDisplayEventInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplayEventInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayEventInfoEXT & - setDisplayEvent( VULKAN_HPP_NAMESPACE::DisplayEventTypeEXT displayEvent_ ) VULKAN_HPP_NOEXCEPT - { - displayEvent = displayEvent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplayEventInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayEventInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, displayEvent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayEventInfoEXT const & ) const = default; -#else - bool operator==( DisplayEventInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( displayEvent == rhs.displayEvent ); -# endif - } - - bool operator!=( DisplayEventInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayEventInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayEventTypeEXT displayEvent = VULKAN_HPP_NAMESPACE::DisplayEventTypeEXT::eFirstPixelOut; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayEventInfoEXT ) == sizeof( VkDisplayEventInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayEventInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayEventInfoEXT; - }; - - struct DisplayModeParametersKHR - { - using NativeType = VkDisplayModeParametersKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayModeParametersKHR( VULKAN_HPP_NAMESPACE::Extent2D visibleRegion_ = {}, - uint32_t refreshRate_ = {} ) VULKAN_HPP_NOEXCEPT - : visibleRegion( visibleRegion_ ) - , refreshRate( refreshRate_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayModeParametersKHR( DisplayModeParametersKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModeParametersKHR( VkDisplayModeParametersKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayModeParametersKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayModeParametersKHR & operator=( DisplayModeParametersKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModeParametersKHR & operator=( VkDisplayModeParametersKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplayModeParametersKHR & - setVisibleRegion( VULKAN_HPP_NAMESPACE::Extent2D const & visibleRegion_ ) VULKAN_HPP_NOEXCEPT - { - visibleRegion = visibleRegion_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayModeParametersKHR & setRefreshRate( uint32_t refreshRate_ ) VULKAN_HPP_NOEXCEPT - { - refreshRate = refreshRate_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplayModeParametersKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayModeParametersKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( visibleRegion, refreshRate ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayModeParametersKHR const & ) const = default; -#else - bool operator==( DisplayModeParametersKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( visibleRegion == rhs.visibleRegion ) && ( refreshRate == rhs.refreshRate ); -# endif - } - - bool operator!=( DisplayModeParametersKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Extent2D visibleRegion = {}; - uint32_t refreshRate = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR ) == - sizeof( VkDisplayModeParametersKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayModeParametersKHR is not nothrow_move_constructible!" ); - - struct DisplayModeCreateInfoKHR - { - using NativeType = VkDisplayModeCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayModeCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplayModeCreateInfoKHR( VULKAN_HPP_NAMESPACE::DisplayModeCreateFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR parameters_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , parameters( parameters_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayModeCreateInfoKHR( DisplayModeCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModeCreateInfoKHR( VkDisplayModeCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayModeCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayModeCreateInfoKHR & operator=( DisplayModeCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModeCreateInfoKHR & operator=( VkDisplayModeCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplayModeCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayModeCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::DisplayModeCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayModeCreateInfoKHR & - setParameters( VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR const & parameters_ ) VULKAN_HPP_NOEXCEPT - { - parameters = parameters_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplayModeCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayModeCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, parameters ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayModeCreateInfoKHR const & ) const = default; -#else - bool operator==( DisplayModeCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( parameters == rhs.parameters ); -# endif - } - - bool operator!=( DisplayModeCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayModeCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayModeCreateFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR parameters = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayModeCreateInfoKHR ) == - sizeof( VkDisplayModeCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayModeCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayModeCreateInfoKHR; - }; - - struct DisplayModePropertiesKHR - { - using NativeType = VkDisplayModePropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplayModePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayModeKHR displayMode_ = {}, - VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR parameters_ = {} ) VULKAN_HPP_NOEXCEPT - : displayMode( displayMode_ ) - , parameters( parameters_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayModePropertiesKHR( DisplayModePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModePropertiesKHR( VkDisplayModePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayModePropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayModePropertiesKHR & operator=( DisplayModePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModePropertiesKHR & operator=( VkDisplayModePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayModePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayModePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( displayMode, parameters ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayModePropertiesKHR const & ) const = default; -#else - bool operator==( DisplayModePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( displayMode == rhs.displayMode ) && ( parameters == rhs.parameters ); -# endif - } - - bool operator!=( DisplayModePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DisplayModeKHR displayMode = {}; - VULKAN_HPP_NAMESPACE::DisplayModeParametersKHR parameters = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayModePropertiesKHR ) == - sizeof( VkDisplayModePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayModePropertiesKHR is not nothrow_move_constructible!" ); - - struct DisplayModeProperties2KHR - { - using NativeType = VkDisplayModeProperties2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayModeProperties2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayModeProperties2KHR( - VULKAN_HPP_NAMESPACE::DisplayModePropertiesKHR displayModeProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : displayModeProperties( displayModeProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR - DisplayModeProperties2KHR( DisplayModeProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModeProperties2KHR( VkDisplayModeProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayModeProperties2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayModeProperties2KHR & operator=( DisplayModeProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayModeProperties2KHR & operator=( VkDisplayModeProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayModeProperties2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayModeProperties2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, displayModeProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayModeProperties2KHR const & ) const = default; -#else - bool operator==( DisplayModeProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( displayModeProperties == rhs.displayModeProperties ); -# endif - } - - bool operator!=( DisplayModeProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayModeProperties2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayModePropertiesKHR displayModeProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayModeProperties2KHR ) == - sizeof( VkDisplayModeProperties2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayModeProperties2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayModeProperties2KHR; - }; - - struct DisplayNativeHdrSurfaceCapabilitiesAMD - { - using NativeType = VkDisplayNativeHdrSurfaceCapabilitiesAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDisplayNativeHdrSurfaceCapabilitiesAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayNativeHdrSurfaceCapabilitiesAMD( - VULKAN_HPP_NAMESPACE::Bool32 localDimmingSupport_ = {} ) VULKAN_HPP_NOEXCEPT - : localDimmingSupport( localDimmingSupport_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayNativeHdrSurfaceCapabilitiesAMD( DisplayNativeHdrSurfaceCapabilitiesAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DisplayNativeHdrSurfaceCapabilitiesAMD( VkDisplayNativeHdrSurfaceCapabilitiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayNativeHdrSurfaceCapabilitiesAMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayNativeHdrSurfaceCapabilitiesAMD & - operator=( DisplayNativeHdrSurfaceCapabilitiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayNativeHdrSurfaceCapabilitiesAMD & - operator=( VkDisplayNativeHdrSurfaceCapabilitiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayNativeHdrSurfaceCapabilitiesAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayNativeHdrSurfaceCapabilitiesAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, localDimmingSupport ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayNativeHdrSurfaceCapabilitiesAMD const & ) const = default; -#else - bool operator==( DisplayNativeHdrSurfaceCapabilitiesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( localDimmingSupport == rhs.localDimmingSupport ); -# endif - } - - bool operator!=( DisplayNativeHdrSurfaceCapabilitiesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayNativeHdrSurfaceCapabilitiesAMD; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 localDimmingSupport = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayNativeHdrSurfaceCapabilitiesAMD ) == - sizeof( VkDisplayNativeHdrSurfaceCapabilitiesAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DisplayNativeHdrSurfaceCapabilitiesAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayNativeHdrSurfaceCapabilitiesAMD; - }; - - struct DisplayPlaneCapabilitiesKHR - { - using NativeType = VkDisplayPlaneCapabilitiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplayPlaneCapabilitiesKHR( VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagsKHR supportedAlpha_ = {}, - VULKAN_HPP_NAMESPACE::Offset2D minSrcPosition_ = {}, - VULKAN_HPP_NAMESPACE::Offset2D maxSrcPosition_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D minSrcExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxSrcExtent_ = {}, - VULKAN_HPP_NAMESPACE::Offset2D minDstPosition_ = {}, - VULKAN_HPP_NAMESPACE::Offset2D maxDstPosition_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D minDstExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxDstExtent_ = {} ) VULKAN_HPP_NOEXCEPT - : supportedAlpha( supportedAlpha_ ) - , minSrcPosition( minSrcPosition_ ) - , maxSrcPosition( maxSrcPosition_ ) - , minSrcExtent( minSrcExtent_ ) - , maxSrcExtent( maxSrcExtent_ ) - , minDstPosition( minDstPosition_ ) - , maxDstPosition( maxDstPosition_ ) - , minDstExtent( minDstExtent_ ) - , maxDstExtent( maxDstExtent_ ) - {} - - VULKAN_HPP_CONSTEXPR - DisplayPlaneCapabilitiesKHR( DisplayPlaneCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneCapabilitiesKHR( VkDisplayPlaneCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPlaneCapabilitiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPlaneCapabilitiesKHR & operator=( DisplayPlaneCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneCapabilitiesKHR & operator=( VkDisplayPlaneCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayPlaneCapabilitiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPlaneCapabilitiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( supportedAlpha, - minSrcPosition, - maxSrcPosition, - minSrcExtent, - maxSrcExtent, - minDstPosition, - maxDstPosition, - minDstExtent, - maxDstExtent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPlaneCapabilitiesKHR const & ) const = default; -#else - bool operator==( DisplayPlaneCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( supportedAlpha == rhs.supportedAlpha ) && ( minSrcPosition == rhs.minSrcPosition ) && - ( maxSrcPosition == rhs.maxSrcPosition ) && ( minSrcExtent == rhs.minSrcExtent ) && - ( maxSrcExtent == rhs.maxSrcExtent ) && ( minDstPosition == rhs.minDstPosition ) && - ( maxDstPosition == rhs.maxDstPosition ) && ( minDstExtent == rhs.minDstExtent ) && - ( maxDstExtent == rhs.maxDstExtent ); -# endif - } - - bool operator!=( DisplayPlaneCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagsKHR supportedAlpha = {}; - VULKAN_HPP_NAMESPACE::Offset2D minSrcPosition = {}; - VULKAN_HPP_NAMESPACE::Offset2D maxSrcPosition = {}; - VULKAN_HPP_NAMESPACE::Extent2D minSrcExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxSrcExtent = {}; - VULKAN_HPP_NAMESPACE::Offset2D minDstPosition = {}; - VULKAN_HPP_NAMESPACE::Offset2D maxDstPosition = {}; - VULKAN_HPP_NAMESPACE::Extent2D minDstExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxDstExtent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR ) == - sizeof( VkDisplayPlaneCapabilitiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DisplayPlaneCapabilitiesKHR is not nothrow_move_constructible!" ); - - struct DisplayPlaneCapabilities2KHR - { - using NativeType = VkDisplayPlaneCapabilities2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayPlaneCapabilities2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayPlaneCapabilities2KHR( - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR capabilities_ = {} ) VULKAN_HPP_NOEXCEPT - : capabilities( capabilities_ ) - {} - - VULKAN_HPP_CONSTEXPR - DisplayPlaneCapabilities2KHR( DisplayPlaneCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneCapabilities2KHR( VkDisplayPlaneCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPlaneCapabilities2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPlaneCapabilities2KHR & operator=( DisplayPlaneCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneCapabilities2KHR & operator=( VkDisplayPlaneCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayPlaneCapabilities2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPlaneCapabilities2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, capabilities ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPlaneCapabilities2KHR const & ) const = default; -#else - bool operator==( DisplayPlaneCapabilities2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( capabilities == rhs.capabilities ); -# endif - } - - bool operator!=( DisplayPlaneCapabilities2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayPlaneCapabilities2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilitiesKHR capabilities = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPlaneCapabilities2KHR ) == - sizeof( VkDisplayPlaneCapabilities2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DisplayPlaneCapabilities2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayPlaneCapabilities2KHR; - }; - - struct DisplayPlaneInfo2KHR - { - using NativeType = VkDisplayPlaneInfo2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayPlaneInfo2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayPlaneInfo2KHR( VULKAN_HPP_NAMESPACE::DisplayModeKHR mode_ = {}, - uint32_t planeIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : mode( mode_ ) - , planeIndex( planeIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayPlaneInfo2KHR( DisplayPlaneInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneInfo2KHR( VkDisplayPlaneInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPlaneInfo2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPlaneInfo2KHR & operator=( DisplayPlaneInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneInfo2KHR & operator=( VkDisplayPlaneInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplayPlaneInfo2KHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayPlaneInfo2KHR & - setMode( VULKAN_HPP_NAMESPACE::DisplayModeKHR mode_ ) VULKAN_HPP_NOEXCEPT - { - mode = mode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayPlaneInfo2KHR & setPlaneIndex( uint32_t planeIndex_ ) VULKAN_HPP_NOEXCEPT - { - planeIndex = planeIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplayPlaneInfo2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPlaneInfo2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, mode, planeIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPlaneInfo2KHR const & ) const = default; -#else - bool operator==( DisplayPlaneInfo2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( mode == rhs.mode ) && - ( planeIndex == rhs.planeIndex ); -# endif - } - - bool operator!=( DisplayPlaneInfo2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayPlaneInfo2KHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayModeKHR mode = {}; - uint32_t planeIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPlaneInfo2KHR ) == sizeof( VkDisplayPlaneInfo2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayPlaneInfo2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayPlaneInfo2KHR; - }; - - struct DisplayPlanePropertiesKHR - { - using NativeType = VkDisplayPlanePropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayPlanePropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR currentDisplay_ = {}, - uint32_t currentStackIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : currentDisplay( currentDisplay_ ) - , currentStackIndex( currentStackIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - DisplayPlanePropertiesKHR( DisplayPlanePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlanePropertiesKHR( VkDisplayPlanePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPlanePropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPlanePropertiesKHR & operator=( DisplayPlanePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlanePropertiesKHR & operator=( VkDisplayPlanePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayPlanePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPlanePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( currentDisplay, currentStackIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPlanePropertiesKHR const & ) const = default; -#else - bool operator==( DisplayPlanePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( currentDisplay == rhs.currentDisplay ) && ( currentStackIndex == rhs.currentStackIndex ); -# endif - } - - bool operator!=( DisplayPlanePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DisplayKHR currentDisplay = {}; - uint32_t currentStackIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPlanePropertiesKHR ) == - sizeof( VkDisplayPlanePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayPlanePropertiesKHR is not nothrow_move_constructible!" ); - - struct DisplayPlaneProperties2KHR - { - using NativeType = VkDisplayPlaneProperties2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayPlaneProperties2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayPlaneProperties2KHR( - VULKAN_HPP_NAMESPACE::DisplayPlanePropertiesKHR displayPlaneProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : displayPlaneProperties( displayPlaneProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR - DisplayPlaneProperties2KHR( DisplayPlaneProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneProperties2KHR( VkDisplayPlaneProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPlaneProperties2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPlaneProperties2KHR & operator=( DisplayPlaneProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPlaneProperties2KHR & operator=( VkDisplayPlaneProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayPlaneProperties2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPlaneProperties2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, displayPlaneProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPlaneProperties2KHR const & ) const = default; -#else - bool operator==( DisplayPlaneProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( displayPlaneProperties == rhs.displayPlaneProperties ); -# endif - } - - bool operator!=( DisplayPlaneProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayPlaneProperties2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayPlanePropertiesKHR displayPlaneProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPlaneProperties2KHR ) == - sizeof( VkDisplayPlaneProperties2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayPlaneProperties2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayPlaneProperties2KHR; - }; - - struct DisplayPowerInfoEXT - { - using NativeType = VkDisplayPowerInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayPowerInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayPowerInfoEXT( VULKAN_HPP_NAMESPACE::DisplayPowerStateEXT powerState_ = - VULKAN_HPP_NAMESPACE::DisplayPowerStateEXT::eOff ) VULKAN_HPP_NOEXCEPT - : powerState( powerState_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayPowerInfoEXT( DisplayPowerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPowerInfoEXT( VkDisplayPowerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPowerInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPowerInfoEXT & operator=( DisplayPowerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPowerInfoEXT & operator=( VkDisplayPowerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplayPowerInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayPowerInfoEXT & - setPowerState( VULKAN_HPP_NAMESPACE::DisplayPowerStateEXT powerState_ ) VULKAN_HPP_NOEXCEPT - { - powerState = powerState_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplayPowerInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPowerInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, powerState ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPowerInfoEXT const & ) const = default; -#else - bool operator==( DisplayPowerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( powerState == rhs.powerState ); -# endif - } - - bool operator!=( DisplayPowerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayPowerInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayPowerStateEXT powerState = VULKAN_HPP_NAMESPACE::DisplayPowerStateEXT::eOff; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPowerInfoEXT ) == sizeof( VkDisplayPowerInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayPowerInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayPowerInfoEXT; - }; - - struct DisplayPresentInfoKHR - { - using NativeType = VkDisplayPresentInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayPresentInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DisplayPresentInfoKHR( VULKAN_HPP_NAMESPACE::Rect2D srcRect_ = {}, - VULKAN_HPP_NAMESPACE::Rect2D dstRect_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 persistent_ = {} ) VULKAN_HPP_NOEXCEPT - : srcRect( srcRect_ ) - , dstRect( dstRect_ ) - , persistent( persistent_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayPresentInfoKHR( DisplayPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPresentInfoKHR( VkDisplayPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPresentInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPresentInfoKHR & operator=( DisplayPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPresentInfoKHR & operator=( VkDisplayPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplayPresentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayPresentInfoKHR & - setSrcRect( VULKAN_HPP_NAMESPACE::Rect2D const & srcRect_ ) VULKAN_HPP_NOEXCEPT - { - srcRect = srcRect_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayPresentInfoKHR & - setDstRect( VULKAN_HPP_NAMESPACE::Rect2D const & dstRect_ ) VULKAN_HPP_NOEXCEPT - { - dstRect = dstRect_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplayPresentInfoKHR & - setPersistent( VULKAN_HPP_NAMESPACE::Bool32 persistent_ ) VULKAN_HPP_NOEXCEPT - { - persistent = persistent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplayPresentInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPresentInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcRect, dstRect, persistent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayPresentInfoKHR const & ) const = default; -#else - bool operator==( DisplayPresentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcRect == rhs.srcRect ) && - ( dstRect == rhs.dstRect ) && ( persistent == rhs.persistent ); -# endif - } - - bool operator!=( DisplayPresentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayPresentInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Rect2D srcRect = {}; - VULKAN_HPP_NAMESPACE::Rect2D dstRect = {}; - VULKAN_HPP_NAMESPACE::Bool32 persistent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPresentInfoKHR ) == sizeof( VkDisplayPresentInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayPresentInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayPresentInfoKHR; - }; - - struct DisplayPropertiesKHR - { - using NativeType = VkDisplayPropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplayPropertiesKHR( VULKAN_HPP_NAMESPACE::DisplayKHR display_ = {}, - const char * displayName_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D physicalDimensions_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D physicalResolution_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagsKHR supportedTransforms_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 planeReorderPossible_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 persistentContent_ = {} ) VULKAN_HPP_NOEXCEPT - : display( display_ ) - , displayName( displayName_ ) - , physicalDimensions( physicalDimensions_ ) - , physicalResolution( physicalResolution_ ) - , supportedTransforms( supportedTransforms_ ) - , planeReorderPossible( planeReorderPossible_ ) - , persistentContent( persistentContent_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayPropertiesKHR( DisplayPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPropertiesKHR( VkDisplayPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayPropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayPropertiesKHR & operator=( DisplayPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayPropertiesKHR & operator=( VkDisplayPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( display, - displayName, - physicalDimensions, - physicalResolution, - supportedTransforms, - planeReorderPossible, - persistentContent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( DisplayPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = display <=> rhs.display; cmp != 0 ) - return cmp; - if ( displayName != rhs.displayName ) - if ( auto cmp = strcmp( displayName, rhs.displayName ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = physicalDimensions <=> rhs.physicalDimensions; cmp != 0 ) - return cmp; - if ( auto cmp = physicalResolution <=> rhs.physicalResolution; cmp != 0 ) - return cmp; - if ( auto cmp = supportedTransforms <=> rhs.supportedTransforms; cmp != 0 ) - return cmp; - if ( auto cmp = planeReorderPossible <=> rhs.planeReorderPossible; cmp != 0 ) - return cmp; - if ( auto cmp = persistentContent <=> rhs.persistentContent; cmp != 0 ) - return cmp; - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( DisplayPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( display == rhs.display ) && - ( ( displayName == rhs.displayName ) || ( strcmp( displayName, rhs.displayName ) == 0 ) ) && - ( physicalDimensions == rhs.physicalDimensions ) && ( physicalResolution == rhs.physicalResolution ) && - ( supportedTransforms == rhs.supportedTransforms ) && - ( planeReorderPossible == rhs.planeReorderPossible ) && ( persistentContent == rhs.persistentContent ); - } - - bool operator!=( DisplayPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::DisplayKHR display = {}; - const char * displayName = {}; - VULKAN_HPP_NAMESPACE::Extent2D physicalDimensions = {}; - VULKAN_HPP_NAMESPACE::Extent2D physicalResolution = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagsKHR supportedTransforms = {}; - VULKAN_HPP_NAMESPACE::Bool32 planeReorderPossible = {}; - VULKAN_HPP_NAMESPACE::Bool32 persistentContent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayPropertiesKHR ) == sizeof( VkDisplayPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayPropertiesKHR is not nothrow_move_constructible!" ); - - struct DisplayProperties2KHR - { - using NativeType = VkDisplayProperties2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplayProperties2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplayProperties2KHR( VULKAN_HPP_NAMESPACE::DisplayPropertiesKHR displayProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : displayProperties( displayProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR DisplayProperties2KHR( DisplayProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayProperties2KHR( VkDisplayProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplayProperties2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplayProperties2KHR & operator=( DisplayProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplayProperties2KHR & operator=( VkDisplayProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDisplayProperties2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplayProperties2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, displayProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplayProperties2KHR const & ) const = default; -#else - bool operator==( DisplayProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( displayProperties == rhs.displayProperties ); -# endif - } - - bool operator!=( DisplayProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplayProperties2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplayPropertiesKHR displayProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplayProperties2KHR ) == sizeof( VkDisplayProperties2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DisplayProperties2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplayProperties2KHR; - }; - - struct DisplaySurfaceCreateInfoKHR - { - using NativeType = VkDisplaySurfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDisplaySurfaceCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - DisplaySurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::DisplayModeKHR displayMode_ = {}, - uint32_t planeIndex_ = {}, - uint32_t planeStackIndex_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity, - float globalAlpha_ = {}, - VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagBitsKHR alphaMode_ = - VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagBitsKHR::eOpaque, - VULKAN_HPP_NAMESPACE::Extent2D imageExtent_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , displayMode( displayMode_ ) - , planeIndex( planeIndex_ ) - , planeStackIndex( planeStackIndex_ ) - , transform( transform_ ) - , globalAlpha( globalAlpha_ ) - , alphaMode( alphaMode_ ) - , imageExtent( imageExtent_ ) - {} - - VULKAN_HPP_CONSTEXPR - DisplaySurfaceCreateInfoKHR( DisplaySurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplaySurfaceCreateInfoKHR( VkDisplaySurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : DisplaySurfaceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DisplaySurfaceCreateInfoKHR & operator=( DisplaySurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DisplaySurfaceCreateInfoKHR & operator=( VkDisplaySurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & - setDisplayMode( VULKAN_HPP_NAMESPACE::DisplayModeKHR displayMode_ ) VULKAN_HPP_NOEXCEPT - { - displayMode = displayMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & setPlaneIndex( uint32_t planeIndex_ ) VULKAN_HPP_NOEXCEPT - { - planeIndex = planeIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & - setPlaneStackIndex( uint32_t planeStackIndex_ ) VULKAN_HPP_NOEXCEPT - { - planeStackIndex = planeStackIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & - setTransform( VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ ) VULKAN_HPP_NOEXCEPT - { - transform = transform_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & setGlobalAlpha( float globalAlpha_ ) VULKAN_HPP_NOEXCEPT - { - globalAlpha = globalAlpha_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & - setAlphaMode( VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagBitsKHR alphaMode_ ) VULKAN_HPP_NOEXCEPT - { - alphaMode = alphaMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DisplaySurfaceCreateInfoKHR & - setImageExtent( VULKAN_HPP_NAMESPACE::Extent2D const & imageExtent_ ) VULKAN_HPP_NOEXCEPT - { - imageExtent = imageExtent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDisplaySurfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDisplaySurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, flags, displayMode, planeIndex, planeStackIndex, transform, globalAlpha, alphaMode, imageExtent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DisplaySurfaceCreateInfoKHR const & ) const = default; -#else - bool operator==( DisplaySurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( displayMode == rhs.displayMode ) && ( planeIndex == rhs.planeIndex ) && - ( planeStackIndex == rhs.planeStackIndex ) && ( transform == rhs.transform ) && - ( globalAlpha == rhs.globalAlpha ) && ( alphaMode == rhs.alphaMode ) && ( imageExtent == rhs.imageExtent ); -# endif - } - - bool operator!=( DisplaySurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDisplaySurfaceCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::DisplayModeKHR displayMode = {}; - uint32_t planeIndex = {}; - uint32_t planeStackIndex = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - float globalAlpha = {}; - VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagBitsKHR alphaMode = - VULKAN_HPP_NAMESPACE::DisplayPlaneAlphaFlagBitsKHR::eOpaque; - VULKAN_HPP_NAMESPACE::Extent2D imageExtent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR ) == - sizeof( VkDisplaySurfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DisplaySurfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DisplaySurfaceCreateInfoKHR; - }; - - struct DrawIndexedIndirectCommand - { - using NativeType = VkDrawIndexedIndirectCommand; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrawIndexedIndirectCommand( uint32_t indexCount_ = {}, - uint32_t instanceCount_ = {}, - uint32_t firstIndex_ = {}, - int32_t vertexOffset_ = {}, - uint32_t firstInstance_ = {} ) VULKAN_HPP_NOEXCEPT - : indexCount( indexCount_ ) - , instanceCount( instanceCount_ ) - , firstIndex( firstIndex_ ) - , vertexOffset( vertexOffset_ ) - , firstInstance( firstInstance_ ) - {} - - VULKAN_HPP_CONSTEXPR - DrawIndexedIndirectCommand( DrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrawIndexedIndirectCommand( VkDrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT - : DrawIndexedIndirectCommand( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrawIndexedIndirectCommand & operator=( DrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrawIndexedIndirectCommand & operator=( VkDrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DrawIndexedIndirectCommand & setIndexCount( uint32_t indexCount_ ) VULKAN_HPP_NOEXCEPT - { - indexCount = indexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndexedIndirectCommand & setInstanceCount( uint32_t instanceCount_ ) VULKAN_HPP_NOEXCEPT - { - instanceCount = instanceCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndexedIndirectCommand & setFirstIndex( uint32_t firstIndex_ ) VULKAN_HPP_NOEXCEPT - { - firstIndex = firstIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndexedIndirectCommand & setVertexOffset( int32_t vertexOffset_ ) VULKAN_HPP_NOEXCEPT - { - vertexOffset = vertexOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndexedIndirectCommand & setFirstInstance( uint32_t firstInstance_ ) VULKAN_HPP_NOEXCEPT - { - firstInstance = firstInstance_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDrawIndexedIndirectCommand const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrawIndexedIndirectCommand &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( indexCount, instanceCount, firstIndex, vertexOffset, firstInstance ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrawIndexedIndirectCommand const & ) const = default; -#else - bool operator==( DrawIndexedIndirectCommand const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( indexCount == rhs.indexCount ) && ( instanceCount == rhs.instanceCount ) && - ( firstIndex == rhs.firstIndex ) && ( vertexOffset == rhs.vertexOffset ) && - ( firstInstance == rhs.firstInstance ); -# endif - } - - bool operator!=( DrawIndexedIndirectCommand const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t indexCount = {}; - uint32_t instanceCount = {}; - uint32_t firstIndex = {}; - int32_t vertexOffset = {}; - uint32_t firstInstance = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrawIndexedIndirectCommand ) == - sizeof( VkDrawIndexedIndirectCommand ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DrawIndexedIndirectCommand is not nothrow_move_constructible!" ); - - struct DrawIndirectCommand - { - using NativeType = VkDrawIndirectCommand; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrawIndirectCommand( uint32_t vertexCount_ = {}, - uint32_t instanceCount_ = {}, - uint32_t firstVertex_ = {}, - uint32_t firstInstance_ = {} ) VULKAN_HPP_NOEXCEPT - : vertexCount( vertexCount_ ) - , instanceCount( instanceCount_ ) - , firstVertex( firstVertex_ ) - , firstInstance( firstInstance_ ) - {} - - VULKAN_HPP_CONSTEXPR DrawIndirectCommand( DrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrawIndirectCommand( VkDrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT - : DrawIndirectCommand( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrawIndirectCommand & operator=( DrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrawIndirectCommand & operator=( VkDrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DrawIndirectCommand & setVertexCount( uint32_t vertexCount_ ) VULKAN_HPP_NOEXCEPT - { - vertexCount = vertexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndirectCommand & setInstanceCount( uint32_t instanceCount_ ) VULKAN_HPP_NOEXCEPT - { - instanceCount = instanceCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndirectCommand & setFirstVertex( uint32_t firstVertex_ ) VULKAN_HPP_NOEXCEPT - { - firstVertex = firstVertex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawIndirectCommand & setFirstInstance( uint32_t firstInstance_ ) VULKAN_HPP_NOEXCEPT - { - firstInstance = firstInstance_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDrawIndirectCommand const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrawIndirectCommand &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( vertexCount, instanceCount, firstVertex, firstInstance ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrawIndirectCommand const & ) const = default; -#else - bool operator==( DrawIndirectCommand const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( vertexCount == rhs.vertexCount ) && ( instanceCount == rhs.instanceCount ) && - ( firstVertex == rhs.firstVertex ) && ( firstInstance == rhs.firstInstance ); -# endif - } - - bool operator!=( DrawIndirectCommand const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t vertexCount = {}; - uint32_t instanceCount = {}; - uint32_t firstVertex = {}; - uint32_t firstInstance = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrawIndirectCommand ) == sizeof( VkDrawIndirectCommand ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "DrawIndirectCommand is not nothrow_move_constructible!" ); - - struct DrawMeshTasksIndirectCommandNV - { - using NativeType = VkDrawMeshTasksIndirectCommandNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrawMeshTasksIndirectCommandNV( uint32_t taskCount_ = {}, - uint32_t firstTask_ = {} ) VULKAN_HPP_NOEXCEPT - : taskCount( taskCount_ ) - , firstTask( firstTask_ ) - {} - - VULKAN_HPP_CONSTEXPR - DrawMeshTasksIndirectCommandNV( DrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrawMeshTasksIndirectCommandNV( VkDrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - : DrawMeshTasksIndirectCommandNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrawMeshTasksIndirectCommandNV & - operator=( DrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrawMeshTasksIndirectCommandNV & operator=( VkDrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 DrawMeshTasksIndirectCommandNV & setTaskCount( uint32_t taskCount_ ) VULKAN_HPP_NOEXCEPT - { - taskCount = taskCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 DrawMeshTasksIndirectCommandNV & setFirstTask( uint32_t firstTask_ ) VULKAN_HPP_NOEXCEPT - { - firstTask = firstTask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkDrawMeshTasksIndirectCommandNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrawMeshTasksIndirectCommandNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( taskCount, firstTask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrawMeshTasksIndirectCommandNV const & ) const = default; -#else - bool operator==( DrawMeshTasksIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( taskCount == rhs.taskCount ) && ( firstTask == rhs.firstTask ); -# endif - } - - bool operator!=( DrawMeshTasksIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t taskCount = {}; - uint32_t firstTask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrawMeshTasksIndirectCommandNV ) == - sizeof( VkDrawMeshTasksIndirectCommandNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DrawMeshTasksIndirectCommandNV is not nothrow_move_constructible!" ); - - struct DrmFormatModifierProperties2EXT - { - using NativeType = VkDrmFormatModifierProperties2EXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrmFormatModifierProperties2EXT( - uint64_t drmFormatModifier_ = {}, - uint32_t drmFormatModifierPlaneCount_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 drmFormatModifierTilingFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifier( drmFormatModifier_ ) - , drmFormatModifierPlaneCount( drmFormatModifierPlaneCount_ ) - , drmFormatModifierTilingFeatures( drmFormatModifierTilingFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR - DrmFormatModifierProperties2EXT( DrmFormatModifierProperties2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierProperties2EXT( VkDrmFormatModifierProperties2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DrmFormatModifierProperties2EXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrmFormatModifierProperties2EXT & - operator=( DrmFormatModifierProperties2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierProperties2EXT & operator=( VkDrmFormatModifierProperties2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDrmFormatModifierProperties2EXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrmFormatModifierProperties2EXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( drmFormatModifier, drmFormatModifierPlaneCount, drmFormatModifierTilingFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrmFormatModifierProperties2EXT const & ) const = default; -#else - bool operator==( DrmFormatModifierProperties2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( drmFormatModifier == rhs.drmFormatModifier ) && - ( drmFormatModifierPlaneCount == rhs.drmFormatModifierPlaneCount ) && - ( drmFormatModifierTilingFeatures == rhs.drmFormatModifierTilingFeatures ); -# endif - } - - bool operator!=( DrmFormatModifierProperties2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint64_t drmFormatModifier = {}; - uint32_t drmFormatModifierPlaneCount = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 drmFormatModifierTilingFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrmFormatModifierProperties2EXT ) == - sizeof( VkDrmFormatModifierProperties2EXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DrmFormatModifierProperties2EXT is not nothrow_move_constructible!" ); - - struct DrmFormatModifierPropertiesEXT - { - using NativeType = VkDrmFormatModifierPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesEXT( - uint64_t drmFormatModifier_ = {}, - uint32_t drmFormatModifierPlaneCount_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags drmFormatModifierTilingFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifier( drmFormatModifier_ ) - , drmFormatModifierPlaneCount( drmFormatModifierPlaneCount_ ) - , drmFormatModifierTilingFeatures( drmFormatModifierTilingFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR - DrmFormatModifierPropertiesEXT( DrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierPropertiesEXT( VkDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DrmFormatModifierPropertiesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrmFormatModifierPropertiesEXT & - operator=( DrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierPropertiesEXT & operator=( VkDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDrmFormatModifierPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrmFormatModifierPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( drmFormatModifier, drmFormatModifierPlaneCount, drmFormatModifierTilingFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrmFormatModifierPropertiesEXT const & ) const = default; -#else - bool operator==( DrmFormatModifierPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( drmFormatModifier == rhs.drmFormatModifier ) && - ( drmFormatModifierPlaneCount == rhs.drmFormatModifierPlaneCount ) && - ( drmFormatModifierTilingFeatures == rhs.drmFormatModifierTilingFeatures ); -# endif - } - - bool operator!=( DrmFormatModifierPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint64_t drmFormatModifier = {}; - uint32_t drmFormatModifierPlaneCount = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags drmFormatModifierTilingFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT ) == - sizeof( VkDrmFormatModifierPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DrmFormatModifierPropertiesEXT is not nothrow_move_constructible!" ); - - struct DrmFormatModifierPropertiesList2EXT - { - using NativeType = VkDrmFormatModifierPropertiesList2EXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDrmFormatModifierPropertiesList2EXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesList2EXT( - uint32_t drmFormatModifierCount_ = {}, - VULKAN_HPP_NAMESPACE::DrmFormatModifierProperties2EXT * pDrmFormatModifierProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifierCount( drmFormatModifierCount_ ) - , pDrmFormatModifierProperties( pDrmFormatModifierProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesList2EXT( DrmFormatModifierPropertiesList2EXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierPropertiesList2EXT( VkDrmFormatModifierPropertiesList2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DrmFormatModifierPropertiesList2EXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DrmFormatModifierPropertiesList2EXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - drmFormatModifierProperties_ ) - : drmFormatModifierCount( static_cast( drmFormatModifierProperties_.size() ) ) - , pDrmFormatModifierProperties( drmFormatModifierProperties_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrmFormatModifierPropertiesList2EXT & - operator=( DrmFormatModifierPropertiesList2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierPropertiesList2EXT & - operator=( VkDrmFormatModifierPropertiesList2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDrmFormatModifierPropertiesList2EXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrmFormatModifierPropertiesList2EXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, drmFormatModifierCount, pDrmFormatModifierProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrmFormatModifierPropertiesList2EXT const & ) const = default; -#else - bool operator==( DrmFormatModifierPropertiesList2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( drmFormatModifierCount == rhs.drmFormatModifierCount ) && - ( pDrmFormatModifierProperties == rhs.pDrmFormatModifierProperties ); -# endif - } - - bool operator!=( DrmFormatModifierPropertiesList2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDrmFormatModifierPropertiesList2EXT; - void * pNext = {}; - uint32_t drmFormatModifierCount = {}; - VULKAN_HPP_NAMESPACE::DrmFormatModifierProperties2EXT * pDrmFormatModifierProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesList2EXT ) == - sizeof( VkDrmFormatModifierPropertiesList2EXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DrmFormatModifierPropertiesList2EXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DrmFormatModifierPropertiesList2EXT; - }; - - struct DrmFormatModifierPropertiesListEXT - { - using NativeType = VkDrmFormatModifierPropertiesListEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eDrmFormatModifierPropertiesListEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesListEXT( - uint32_t drmFormatModifierCount_ = {}, - VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT * pDrmFormatModifierProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifierCount( drmFormatModifierCount_ ) - , pDrmFormatModifierProperties( pDrmFormatModifierProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesListEXT( DrmFormatModifierPropertiesListEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierPropertiesListEXT( VkDrmFormatModifierPropertiesListEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : DrmFormatModifierPropertiesListEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - DrmFormatModifierPropertiesListEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - drmFormatModifierProperties_ ) - : drmFormatModifierCount( static_cast( drmFormatModifierProperties_.size() ) ) - , pDrmFormatModifierProperties( drmFormatModifierProperties_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - DrmFormatModifierPropertiesListEXT & - operator=( DrmFormatModifierPropertiesListEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - DrmFormatModifierPropertiesListEXT & - operator=( VkDrmFormatModifierPropertiesListEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkDrmFormatModifierPropertiesListEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkDrmFormatModifierPropertiesListEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, drmFormatModifierCount, pDrmFormatModifierProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( DrmFormatModifierPropertiesListEXT const & ) const = default; -#else - bool operator==( DrmFormatModifierPropertiesListEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( drmFormatModifierCount == rhs.drmFormatModifierCount ) && - ( pDrmFormatModifierProperties == rhs.pDrmFormatModifierProperties ); -# endif - } - - bool operator!=( DrmFormatModifierPropertiesListEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDrmFormatModifierPropertiesListEXT; - void * pNext = {}; - uint32_t drmFormatModifierCount = {}; - VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT * pDrmFormatModifierProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesListEXT ) == - sizeof( VkDrmFormatModifierPropertiesListEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "DrmFormatModifierPropertiesListEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = DrmFormatModifierPropertiesListEXT; - }; - - struct EventCreateInfo - { - using NativeType = VkEventCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eEventCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR EventCreateInfo( VULKAN_HPP_NAMESPACE::EventCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR EventCreateInfo( EventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - EventCreateInfo( VkEventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : EventCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - EventCreateInfo & operator=( EventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - EventCreateInfo & operator=( VkEventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 EventCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 EventCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::EventCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkEventCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkEventCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( EventCreateInfo const & ) const = default; -#else - bool operator==( EventCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( EventCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eEventCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::EventCreateFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::EventCreateInfo ) == sizeof( VkEventCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "EventCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = EventCreateInfo; - }; - - struct ExportFenceCreateInfo - { - using NativeType = VkExportFenceCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportFenceCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ExportFenceCreateInfo( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR ExportFenceCreateInfo( ExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportFenceCreateInfo( VkExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportFenceCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportFenceCreateInfo & operator=( ExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportFenceCreateInfo & operator=( VkExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportFenceCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportFenceCreateInfo & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportFenceCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportFenceCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportFenceCreateInfo const & ) const = default; -#else - bool operator==( ExportFenceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExportFenceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportFenceCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportFenceCreateInfo ) == sizeof( VkExportFenceCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExportFenceCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportFenceCreateInfo; - }; - using ExportFenceCreateInfoKHR = ExportFenceCreateInfo; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ExportFenceWin32HandleInfoKHR - { - using NativeType = VkExportFenceWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportFenceWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportFenceWin32HandleInfoKHR( const SECURITY_ATTRIBUTES * pAttributes_ = {}, - DWORD dwAccess_ = {}, - LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT - : pAttributes( pAttributes_ ) - , dwAccess( dwAccess_ ) - , name( name_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExportFenceWin32HandleInfoKHR( ExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportFenceWin32HandleInfoKHR( VkExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportFenceWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportFenceWin32HandleInfoKHR & - operator=( ExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportFenceWin32HandleInfoKHR & operator=( VkExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportFenceWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportFenceWin32HandleInfoKHR & - setPAttributes( const SECURITY_ATTRIBUTES * pAttributes_ ) VULKAN_HPP_NOEXCEPT - { - pAttributes = pAttributes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportFenceWin32HandleInfoKHR & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT - { - dwAccess = dwAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportFenceWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT - { - name = name_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportFenceWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportFenceWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pAttributes, dwAccess, name ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportFenceWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( ExportFenceWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pAttributes == rhs.pAttributes ) && - ( dwAccess == rhs.dwAccess ) && ( name == rhs.name ); -# endif - } - - bool operator!=( ExportFenceWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportFenceWin32HandleInfoKHR; - const void * pNext = {}; - const SECURITY_ATTRIBUTES * pAttributes = {}; - DWORD dwAccess = {}; - LPCWSTR name = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportFenceWin32HandleInfoKHR ) == - sizeof( VkExportFenceWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExportFenceWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportFenceWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct ExportMemoryAllocateInfo - { - using NativeType = VkExportMemoryAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportMemoryAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfo( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfo( ExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryAllocateInfo( VkExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportMemoryAllocateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportMemoryAllocateInfo & operator=( ExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryAllocateInfo & operator=( VkExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportMemoryAllocateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryAllocateInfo & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportMemoryAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportMemoryAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportMemoryAllocateInfo const & ) const = default; -#else - bool operator==( ExportMemoryAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExportMemoryAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryAllocateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportMemoryAllocateInfo ) == - sizeof( VkExportMemoryAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExportMemoryAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportMemoryAllocateInfo; - }; - using ExportMemoryAllocateInfoKHR = ExportMemoryAllocateInfo; - - struct ExportMemoryAllocateInfoNV - { - using NativeType = VkExportMemoryAllocateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportMemoryAllocateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfoNV( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExportMemoryAllocateInfoNV( ExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryAllocateInfoNV( VkExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportMemoryAllocateInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportMemoryAllocateInfoNV & operator=( ExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryAllocateInfoNV & operator=( VkExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportMemoryAllocateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryAllocateInfoNV & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportMemoryAllocateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportMemoryAllocateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportMemoryAllocateInfoNV const & ) const = default; -#else - bool operator==( ExportMemoryAllocateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExportMemoryAllocateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryAllocateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportMemoryAllocateInfoNV ) == - sizeof( VkExportMemoryAllocateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExportMemoryAllocateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportMemoryAllocateInfoNV; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ExportMemoryWin32HandleInfoKHR - { - using NativeType = VkExportMemoryWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportMemoryWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportMemoryWin32HandleInfoKHR( const SECURITY_ATTRIBUTES * pAttributes_ = {}, - DWORD dwAccess_ = {}, - LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT - : pAttributes( pAttributes_ ) - , dwAccess( dwAccess_ ) - , name( name_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExportMemoryWin32HandleInfoKHR( ExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryWin32HandleInfoKHR( VkExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportMemoryWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportMemoryWin32HandleInfoKHR & - operator=( ExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryWin32HandleInfoKHR & operator=( VkExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoKHR & - setPAttributes( const SECURITY_ATTRIBUTES * pAttributes_ ) VULKAN_HPP_NOEXCEPT - { - pAttributes = pAttributes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoKHR & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT - { - dwAccess = dwAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT - { - name = name_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportMemoryWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportMemoryWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pAttributes, dwAccess, name ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportMemoryWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( ExportMemoryWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pAttributes == rhs.pAttributes ) && - ( dwAccess == rhs.dwAccess ) && ( name == rhs.name ); -# endif - } - - bool operator!=( ExportMemoryWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryWin32HandleInfoKHR; - const void * pNext = {}; - const SECURITY_ATTRIBUTES * pAttributes = {}; - DWORD dwAccess = {}; - LPCWSTR name = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportMemoryWin32HandleInfoKHR ) == - sizeof( VkExportMemoryWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExportMemoryWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportMemoryWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ExportMemoryWin32HandleInfoNV - { - using NativeType = VkExportMemoryWin32HandleInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportMemoryWin32HandleInfoNV; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportMemoryWin32HandleInfoNV( const SECURITY_ATTRIBUTES * pAttributes_ = {}, - DWORD dwAccess_ = {} ) VULKAN_HPP_NOEXCEPT - : pAttributes( pAttributes_ ) - , dwAccess( dwAccess_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExportMemoryWin32HandleInfoNV( ExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryWin32HandleInfoNV( VkExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportMemoryWin32HandleInfoNV( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportMemoryWin32HandleInfoNV & - operator=( ExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportMemoryWin32HandleInfoNV & operator=( VkExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoNV & - setPAttributes( const SECURITY_ATTRIBUTES * pAttributes_ ) VULKAN_HPP_NOEXCEPT - { - pAttributes = pAttributes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportMemoryWin32HandleInfoNV & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT - { - dwAccess = dwAccess_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportMemoryWin32HandleInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportMemoryWin32HandleInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pAttributes, dwAccess ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportMemoryWin32HandleInfoNV const & ) const = default; -# else - bool operator==( ExportMemoryWin32HandleInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pAttributes == rhs.pAttributes ) && - ( dwAccess == rhs.dwAccess ); -# endif - } - - bool operator!=( ExportMemoryWin32HandleInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryWin32HandleInfoNV; - const void * pNext = {}; - const SECURITY_ATTRIBUTES * pAttributes = {}; - DWORD dwAccess = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportMemoryWin32HandleInfoNV ) == - sizeof( VkExportMemoryWin32HandleInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExportMemoryWin32HandleInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportMemoryWin32HandleInfoNV; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct ExportSemaphoreCreateInfo - { - using NativeType = VkExportSemaphoreCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExportSemaphoreCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportSemaphoreCreateInfo( - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExportSemaphoreCreateInfo( ExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportSemaphoreCreateInfo( VkExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportSemaphoreCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportSemaphoreCreateInfo & operator=( ExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportSemaphoreCreateInfo & operator=( VkExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportSemaphoreCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportSemaphoreCreateInfo & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportSemaphoreCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportSemaphoreCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportSemaphoreCreateInfo const & ) const = default; -#else - bool operator==( ExportSemaphoreCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExportSemaphoreCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportSemaphoreCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportSemaphoreCreateInfo ) == - sizeof( VkExportSemaphoreCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExportSemaphoreCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportSemaphoreCreateInfo; - }; - using ExportSemaphoreCreateInfoKHR = ExportSemaphoreCreateInfo; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ExportSemaphoreWin32HandleInfoKHR - { - using NativeType = VkExportSemaphoreWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eExportSemaphoreWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExportSemaphoreWin32HandleInfoKHR( const SECURITY_ATTRIBUTES * pAttributes_ = {}, - DWORD dwAccess_ = {}, - LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT - : pAttributes( pAttributes_ ) - , dwAccess( dwAccess_ ) - , name( name_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExportSemaphoreWin32HandleInfoKHR( ExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportSemaphoreWin32HandleInfoKHR( VkExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ExportSemaphoreWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExportSemaphoreWin32HandleInfoKHR & - operator=( ExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExportSemaphoreWin32HandleInfoKHR & operator=( VkExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExportSemaphoreWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportSemaphoreWin32HandleInfoKHR & - setPAttributes( const SECURITY_ATTRIBUTES * pAttributes_ ) VULKAN_HPP_NOEXCEPT - { - pAttributes = pAttributes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportSemaphoreWin32HandleInfoKHR & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT - { - dwAccess = dwAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExportSemaphoreWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT - { - name = name_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExportSemaphoreWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExportSemaphoreWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pAttributes, dwAccess, name ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExportSemaphoreWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( ExportSemaphoreWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pAttributes == rhs.pAttributes ) && - ( dwAccess == rhs.dwAccess ) && ( name == rhs.name ); -# endif - } - - bool operator!=( ExportSemaphoreWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportSemaphoreWin32HandleInfoKHR; - const void * pNext = {}; - const SECURITY_ATTRIBUTES * pAttributes = {}; - DWORD dwAccess = {}; - LPCWSTR name = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExportSemaphoreWin32HandleInfoKHR ) == - sizeof( VkExportSemaphoreWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExportSemaphoreWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExportSemaphoreWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct ExtensionProperties - { - using NativeType = VkExtensionProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - ExtensionProperties( std::array const & extensionName_ = {}, - uint32_t specVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : extensionName( extensionName_ ) - , specVersion( specVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 ExtensionProperties( ExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExtensionProperties( VkExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ExtensionProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExtensionProperties & operator=( ExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExtensionProperties & operator=( VkExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExtensionProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExtensionProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, uint32_t const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( extensionName, specVersion ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExtensionProperties const & ) const = default; -#else - bool operator==( ExtensionProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( extensionName == rhs.extensionName ) && ( specVersion == rhs.specVersion ); -# endif - } - - bool operator!=( ExtensionProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ArrayWrapper1D extensionName = {}; - uint32_t specVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExtensionProperties ) == sizeof( VkExtensionProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExtensionProperties is not nothrow_move_constructible!" ); - - struct ExternalMemoryProperties - { - using NativeType = VkExternalMemoryProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalMemoryProperties( - VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlags externalMemoryFeatures_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags exportFromImportedHandleTypes_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags compatibleHandleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : externalMemoryFeatures( externalMemoryFeatures_ ) - , exportFromImportedHandleTypes( exportFromImportedHandleTypes_ ) - , compatibleHandleTypes( compatibleHandleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR ExternalMemoryProperties( ExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryProperties( VkExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalMemoryProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalMemoryProperties & operator=( ExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryProperties & operator=( VkExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExternalMemoryProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalMemoryProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( externalMemoryFeatures, exportFromImportedHandleTypes, compatibleHandleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalMemoryProperties const & ) const = default; -#else - bool operator==( ExternalMemoryProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( externalMemoryFeatures == rhs.externalMemoryFeatures ) && - ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes ) && - ( compatibleHandleTypes == rhs.compatibleHandleTypes ); -# endif - } - - bool operator!=( ExternalMemoryProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlags externalMemoryFeatures = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags exportFromImportedHandleTypes = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags compatibleHandleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalMemoryProperties ) == - sizeof( VkExternalMemoryProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExternalMemoryProperties is not nothrow_move_constructible!" ); - using ExternalMemoryPropertiesKHR = ExternalMemoryProperties; - - struct ExternalBufferProperties - { - using NativeType = VkExternalBufferProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalBufferProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalBufferProperties( - VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : externalMemoryProperties( externalMemoryProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR ExternalBufferProperties( ExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalBufferProperties( VkExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalBufferProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalBufferProperties & operator=( ExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalBufferProperties & operator=( VkExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExternalBufferProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalBufferProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, externalMemoryProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalBufferProperties const & ) const = default; -#else - bool operator==( ExternalBufferProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( externalMemoryProperties == rhs.externalMemoryProperties ); -# endif - } - - bool operator!=( ExternalBufferProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalBufferProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalBufferProperties ) == - sizeof( VkExternalBufferProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExternalBufferProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalBufferProperties; - }; - using ExternalBufferPropertiesKHR = ExternalBufferProperties; - - struct ExternalFenceProperties - { - using NativeType = VkExternalFenceProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalFenceProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalFenceProperties( - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags exportFromImportedHandleTypes_ = {}, - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags compatibleHandleTypes_ = {}, - VULKAN_HPP_NAMESPACE::ExternalFenceFeatureFlags externalFenceFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : exportFromImportedHandleTypes( exportFromImportedHandleTypes_ ) - , compatibleHandleTypes( compatibleHandleTypes_ ) - , externalFenceFeatures( externalFenceFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR ExternalFenceProperties( ExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalFenceProperties( VkExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalFenceProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalFenceProperties & operator=( ExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalFenceProperties & operator=( VkExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExternalFenceProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalFenceProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, exportFromImportedHandleTypes, compatibleHandleTypes, externalFenceFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalFenceProperties const & ) const = default; -#else - bool operator==( ExternalFenceProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes ) && - ( compatibleHandleTypes == rhs.compatibleHandleTypes ) && - ( externalFenceFeatures == rhs.externalFenceFeatures ); -# endif - } - - bool operator!=( ExternalFenceProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalFenceProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags exportFromImportedHandleTypes = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags compatibleHandleTypes = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceFeatureFlags externalFenceFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalFenceProperties ) == - sizeof( VkExternalFenceProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExternalFenceProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalFenceProperties; - }; - using ExternalFencePropertiesKHR = ExternalFenceProperties; - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct ExternalFormatANDROID - { - using NativeType = VkExternalFormatANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalFormatANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalFormatANDROID( uint64_t externalFormat_ = {} ) VULKAN_HPP_NOEXCEPT - : externalFormat( externalFormat_ ) - {} - - VULKAN_HPP_CONSTEXPR ExternalFormatANDROID( ExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalFormatANDROID( VkExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalFormatANDROID( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalFormatANDROID & operator=( ExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalFormatANDROID & operator=( VkExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExternalFormatANDROID & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExternalFormatANDROID & setExternalFormat( uint64_t externalFormat_ ) VULKAN_HPP_NOEXCEPT - { - externalFormat = externalFormat_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExternalFormatANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalFormatANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, externalFormat ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalFormatANDROID const & ) const = default; -# else - bool operator==( ExternalFormatANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( externalFormat == rhs.externalFormat ); -# endif - } - - bool operator!=( ExternalFormatANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalFormatANDROID; - void * pNext = {}; - uint64_t externalFormat = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalFormatANDROID ) == sizeof( VkExternalFormatANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ExternalFormatANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalFormatANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - struct ExternalImageFormatProperties - { - using NativeType = VkExternalImageFormatProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalImageFormatProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalImageFormatProperties( - VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : externalMemoryProperties( externalMemoryProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExternalImageFormatProperties( ExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalImageFormatProperties( VkExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalImageFormatProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalImageFormatProperties & - operator=( ExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalImageFormatProperties & operator=( VkExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExternalImageFormatProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalImageFormatProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, externalMemoryProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalImageFormatProperties const & ) const = default; -#else - bool operator==( ExternalImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( externalMemoryProperties == rhs.externalMemoryProperties ); -# endif - } - - bool operator!=( ExternalImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalImageFormatProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalImageFormatProperties ) == - sizeof( VkExternalImageFormatProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExternalImageFormatProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalImageFormatProperties; - }; - using ExternalImageFormatPropertiesKHR = ExternalImageFormatProperties; - - struct ImageFormatProperties - { - using NativeType = VkImageFormatProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageFormatProperties( VULKAN_HPP_NAMESPACE::Extent3D maxExtent_ = {}, - uint32_t maxMipLevels_ = {}, - uint32_t maxArrayLayers_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags sampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize maxResourceSize_ = {} ) VULKAN_HPP_NOEXCEPT - : maxExtent( maxExtent_ ) - , maxMipLevels( maxMipLevels_ ) - , maxArrayLayers( maxArrayLayers_ ) - , sampleCounts( sampleCounts_ ) - , maxResourceSize( maxResourceSize_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageFormatProperties( ImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatProperties( VkImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageFormatProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageFormatProperties & operator=( ImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatProperties & operator=( VkImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkImageFormatProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageFormatProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( maxExtent, maxMipLevels, maxArrayLayers, sampleCounts, maxResourceSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageFormatProperties const & ) const = default; -#else - bool operator==( ImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( maxExtent == rhs.maxExtent ) && ( maxMipLevels == rhs.maxMipLevels ) && - ( maxArrayLayers == rhs.maxArrayLayers ) && ( sampleCounts == rhs.sampleCounts ) && - ( maxResourceSize == rhs.maxResourceSize ); -# endif - } - - bool operator!=( ImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Extent3D maxExtent = {}; - uint32_t maxMipLevels = {}; - uint32_t maxArrayLayers = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampleCounts = {}; - VULKAN_HPP_NAMESPACE::DeviceSize maxResourceSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageFormatProperties ) == sizeof( VkImageFormatProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageFormatProperties is not nothrow_move_constructible!" ); - - struct ExternalImageFormatPropertiesNV - { - using NativeType = VkExternalImageFormatPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalImageFormatPropertiesNV( - VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlagsNV externalMemoryFeatures_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV compatibleHandleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : imageFormatProperties( imageFormatProperties_ ) - , externalMemoryFeatures( externalMemoryFeatures_ ) - , exportFromImportedHandleTypes( exportFromImportedHandleTypes_ ) - , compatibleHandleTypes( compatibleHandleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExternalImageFormatPropertiesNV( ExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalImageFormatPropertiesNV( VkExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalImageFormatPropertiesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalImageFormatPropertiesNV & - operator=( ExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalImageFormatPropertiesNV & operator=( VkExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExternalImageFormatPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalImageFormatPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - imageFormatProperties, externalMemoryFeatures, exportFromImportedHandleTypes, compatibleHandleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalImageFormatPropertiesNV const & ) const = default; -#else - bool operator==( ExternalImageFormatPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( imageFormatProperties == rhs.imageFormatProperties ) && - ( externalMemoryFeatures == rhs.externalMemoryFeatures ) && - ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes ) && - ( compatibleHandleTypes == rhs.compatibleHandleTypes ); -# endif - } - - bool operator!=( ExternalImageFormatPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlagsNV externalMemoryFeatures = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV compatibleHandleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV ) == - sizeof( VkExternalImageFormatPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExternalImageFormatPropertiesNV is not nothrow_move_constructible!" ); - - struct ExternalMemoryBufferCreateInfo - { - using NativeType = VkExternalMemoryBufferCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalMemoryBufferCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalMemoryBufferCreateInfo( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExternalMemoryBufferCreateInfo( ExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryBufferCreateInfo( VkExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalMemoryBufferCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalMemoryBufferCreateInfo & - operator=( ExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryBufferCreateInfo & operator=( VkExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExternalMemoryBufferCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExternalMemoryBufferCreateInfo & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExternalMemoryBufferCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalMemoryBufferCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalMemoryBufferCreateInfo const & ) const = default; -#else - bool operator==( ExternalMemoryBufferCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExternalMemoryBufferCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalMemoryBufferCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalMemoryBufferCreateInfo ) == - sizeof( VkExternalMemoryBufferCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExternalMemoryBufferCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalMemoryBufferCreateInfo; - }; - using ExternalMemoryBufferCreateInfoKHR = ExternalMemoryBufferCreateInfo; - - struct ExternalMemoryImageCreateInfo - { - using NativeType = VkExternalMemoryImageCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalMemoryImageCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalMemoryImageCreateInfo( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExternalMemoryImageCreateInfo( ExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryImageCreateInfo( VkExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalMemoryImageCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalMemoryImageCreateInfo & - operator=( ExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryImageCreateInfo & operator=( VkExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExternalMemoryImageCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExternalMemoryImageCreateInfo & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExternalMemoryImageCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalMemoryImageCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalMemoryImageCreateInfo const & ) const = default; -#else - bool operator==( ExternalMemoryImageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExternalMemoryImageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalMemoryImageCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalMemoryImageCreateInfo ) == - sizeof( VkExternalMemoryImageCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExternalMemoryImageCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalMemoryImageCreateInfo; - }; - using ExternalMemoryImageCreateInfoKHR = ExternalMemoryImageCreateInfo; - - struct ExternalMemoryImageCreateInfoNV - { - using NativeType = VkExternalMemoryImageCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalMemoryImageCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalMemoryImageCreateInfoNV( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : handleTypes( handleTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExternalMemoryImageCreateInfoNV( ExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryImageCreateInfoNV( VkExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalMemoryImageCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalMemoryImageCreateInfoNV & - operator=( ExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalMemoryImageCreateInfoNV & operator=( VkExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ExternalMemoryImageCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ExternalMemoryImageCreateInfoNV & - setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ ) VULKAN_HPP_NOEXCEPT - { - handleTypes = handleTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkExternalMemoryImageCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalMemoryImageCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalMemoryImageCreateInfoNV const & ) const = default; -#else - bool operator==( ExternalMemoryImageCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleTypes == rhs.handleTypes ); -# endif - } - - bool operator!=( ExternalMemoryImageCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalMemoryImageCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalMemoryImageCreateInfoNV ) == - sizeof( VkExternalMemoryImageCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExternalMemoryImageCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalMemoryImageCreateInfoNV; - }; - - struct ExternalSemaphoreProperties - { - using NativeType = VkExternalSemaphoreProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eExternalSemaphoreProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ExternalSemaphoreProperties( - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags compatibleHandleTypes_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreFeatureFlags externalSemaphoreFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : exportFromImportedHandleTypes( exportFromImportedHandleTypes_ ) - , compatibleHandleTypes( compatibleHandleTypes_ ) - , externalSemaphoreFeatures( externalSemaphoreFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR - ExternalSemaphoreProperties( ExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalSemaphoreProperties( VkExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : ExternalSemaphoreProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ExternalSemaphoreProperties & operator=( ExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ExternalSemaphoreProperties & operator=( VkExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkExternalSemaphoreProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkExternalSemaphoreProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, exportFromImportedHandleTypes, compatibleHandleTypes, externalSemaphoreFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ExternalSemaphoreProperties const & ) const = default; -#else - bool operator==( ExternalSemaphoreProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes ) && - ( compatibleHandleTypes == rhs.compatibleHandleTypes ) && - ( externalSemaphoreFeatures == rhs.externalSemaphoreFeatures ); -# endif - } - - bool operator!=( ExternalSemaphoreProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalSemaphoreProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags compatibleHandleTypes = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreFeatureFlags externalSemaphoreFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties ) == - sizeof( VkExternalSemaphoreProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ExternalSemaphoreProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ExternalSemaphoreProperties; - }; - using ExternalSemaphorePropertiesKHR = ExternalSemaphoreProperties; - - struct FenceCreateInfo - { - using NativeType = VkFenceCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFenceCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FenceCreateInfo( VULKAN_HPP_NAMESPACE::FenceCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR FenceCreateInfo( FenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FenceCreateInfo( VkFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : FenceCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FenceCreateInfo & operator=( FenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FenceCreateInfo & operator=( VkFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FenceCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FenceCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::FenceCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFenceCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFenceCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FenceCreateInfo const & ) const = default; -#else - bool operator==( FenceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( FenceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFenceCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::FenceCreateFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FenceCreateInfo ) == sizeof( VkFenceCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FenceCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FenceCreateInfo; - }; - - struct FenceGetFdInfoKHR - { - using NativeType = VkFenceGetFdInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFenceGetFdInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - FenceGetFdInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {}, - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : fence( fence_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR FenceGetFdInfoKHR( FenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FenceGetFdInfoKHR( VkFenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : FenceGetFdInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FenceGetFdInfoKHR & operator=( FenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FenceGetFdInfoKHR & operator=( VkFenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FenceGetFdInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FenceGetFdInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT - { - fence = fence_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FenceGetFdInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFenceGetFdInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFenceGetFdInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fence, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FenceGetFdInfoKHR const & ) const = default; -#else - bool operator==( FenceGetFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fence == rhs.fence ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( FenceGetFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFenceGetFdInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Fence fence = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR ) == sizeof( VkFenceGetFdInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FenceGetFdInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FenceGetFdInfoKHR; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct FenceGetWin32HandleInfoKHR - { - using NativeType = VkFenceGetWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFenceGetWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FenceGetWin32HandleInfoKHR( - VULKAN_HPP_NAMESPACE::Fence fence_ = {}, - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : fence( fence_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - FenceGetWin32HandleInfoKHR( FenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FenceGetWin32HandleInfoKHR( VkFenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : FenceGetWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FenceGetWin32HandleInfoKHR & operator=( FenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FenceGetWin32HandleInfoKHR & operator=( VkFenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FenceGetWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FenceGetWin32HandleInfoKHR & - setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT - { - fence = fence_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FenceGetWin32HandleInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFenceGetWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFenceGetWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fence, handleType ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FenceGetWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( FenceGetWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fence == rhs.fence ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( FenceGetWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFenceGetWin32HandleInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Fence fence = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR ) == - sizeof( VkFenceGetWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FenceGetWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FenceGetWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct FilterCubicImageViewImageFormatPropertiesEXT - { - using NativeType = VkFilterCubicImageViewImageFormatPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eFilterCubicImageViewImageFormatPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FilterCubicImageViewImageFormatPropertiesEXT( - VULKAN_HPP_NAMESPACE::Bool32 filterCubic_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 filterCubicMinmax_ = {} ) VULKAN_HPP_NOEXCEPT - : filterCubic( filterCubic_ ) - , filterCubicMinmax( filterCubicMinmax_ ) - {} - - VULKAN_HPP_CONSTEXPR FilterCubicImageViewImageFormatPropertiesEXT( - FilterCubicImageViewImageFormatPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FilterCubicImageViewImageFormatPropertiesEXT( VkFilterCubicImageViewImageFormatPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : FilterCubicImageViewImageFormatPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FilterCubicImageViewImageFormatPropertiesEXT & - operator=( FilterCubicImageViewImageFormatPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FilterCubicImageViewImageFormatPropertiesEXT & - operator=( VkFilterCubicImageViewImageFormatPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkFilterCubicImageViewImageFormatPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFilterCubicImageViewImageFormatPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, filterCubic, filterCubicMinmax ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FilterCubicImageViewImageFormatPropertiesEXT const & ) const = default; -#else - bool operator==( FilterCubicImageViewImageFormatPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( filterCubic == rhs.filterCubic ) && - ( filterCubicMinmax == rhs.filterCubicMinmax ); -# endif - } - - bool operator!=( FilterCubicImageViewImageFormatPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFilterCubicImageViewImageFormatPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 filterCubic = {}; - VULKAN_HPP_NAMESPACE::Bool32 filterCubicMinmax = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FilterCubicImageViewImageFormatPropertiesEXT ) == - sizeof( VkFilterCubicImageViewImageFormatPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "FilterCubicImageViewImageFormatPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FilterCubicImageViewImageFormatPropertiesEXT; - }; - - struct FormatProperties - { - using NativeType = VkFormatProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - FormatProperties( VULKAN_HPP_NAMESPACE::FormatFeatureFlags linearTilingFeatures_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags optimalTilingFeatures_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags bufferFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : linearTilingFeatures( linearTilingFeatures_ ) - , optimalTilingFeatures( optimalTilingFeatures_ ) - , bufferFeatures( bufferFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR FormatProperties( FormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FormatProperties( VkFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : FormatProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FormatProperties & operator=( FormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FormatProperties & operator=( VkFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkFormatProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFormatProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( linearTilingFeatures, optimalTilingFeatures, bufferFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FormatProperties const & ) const = default; -#else - bool operator==( FormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( linearTilingFeatures == rhs.linearTilingFeatures ) && - ( optimalTilingFeatures == rhs.optimalTilingFeatures ) && ( bufferFeatures == rhs.bufferFeatures ); -# endif - } - - bool operator!=( FormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::FormatFeatureFlags linearTilingFeatures = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags optimalTilingFeatures = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags bufferFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FormatProperties ) == sizeof( VkFormatProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FormatProperties is not nothrow_move_constructible!" ); - - struct FormatProperties2 - { - using NativeType = VkFormatProperties2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFormatProperties2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - FormatProperties2( VULKAN_HPP_NAMESPACE::FormatProperties formatProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : formatProperties( formatProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR FormatProperties2( FormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FormatProperties2( VkFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - : FormatProperties2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FormatProperties2 & operator=( FormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FormatProperties2 & operator=( VkFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkFormatProperties2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFormatProperties2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, formatProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FormatProperties2 const & ) const = default; -#else - bool operator==( FormatProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( formatProperties == rhs.formatProperties ); -# endif - } - - bool operator!=( FormatProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFormatProperties2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::FormatProperties formatProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FormatProperties2 ) == sizeof( VkFormatProperties2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FormatProperties2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FormatProperties2; - }; - using FormatProperties2KHR = FormatProperties2; - - struct FormatProperties3 - { - using NativeType = VkFormatProperties3; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFormatProperties3; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - FormatProperties3( VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 linearTilingFeatures_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 optimalTilingFeatures_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 bufferFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : linearTilingFeatures( linearTilingFeatures_ ) - , optimalTilingFeatures( optimalTilingFeatures_ ) - , bufferFeatures( bufferFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR FormatProperties3( FormatProperties3 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FormatProperties3( VkFormatProperties3 const & rhs ) VULKAN_HPP_NOEXCEPT - : FormatProperties3( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FormatProperties3 & operator=( FormatProperties3 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FormatProperties3 & operator=( VkFormatProperties3 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkFormatProperties3 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFormatProperties3 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, linearTilingFeatures, optimalTilingFeatures, bufferFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FormatProperties3 const & ) const = default; -#else - bool operator==( FormatProperties3 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( linearTilingFeatures == rhs.linearTilingFeatures ) && - ( optimalTilingFeatures == rhs.optimalTilingFeatures ) && ( bufferFeatures == rhs.bufferFeatures ); -# endif - } - - bool operator!=( FormatProperties3 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFormatProperties3; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 linearTilingFeatures = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 optimalTilingFeatures = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags2 bufferFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FormatProperties3 ) == sizeof( VkFormatProperties3 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FormatProperties3 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FormatProperties3; - }; - using FormatProperties3KHR = FormatProperties3; - - struct FragmentShadingRateAttachmentInfoKHR - { - using NativeType = VkFragmentShadingRateAttachmentInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eFragmentShadingRateAttachmentInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FragmentShadingRateAttachmentInfoKHR( - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pFragmentShadingRateAttachment_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D shadingRateAttachmentTexelSize_ = {} ) VULKAN_HPP_NOEXCEPT - : pFragmentShadingRateAttachment( pFragmentShadingRateAttachment_ ) - , shadingRateAttachmentTexelSize( shadingRateAttachmentTexelSize_ ) - {} - - VULKAN_HPP_CONSTEXPR FragmentShadingRateAttachmentInfoKHR( FragmentShadingRateAttachmentInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - FragmentShadingRateAttachmentInfoKHR( VkFragmentShadingRateAttachmentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : FragmentShadingRateAttachmentInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FragmentShadingRateAttachmentInfoKHR & - operator=( FragmentShadingRateAttachmentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FragmentShadingRateAttachmentInfoKHR & - operator=( VkFragmentShadingRateAttachmentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FragmentShadingRateAttachmentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FragmentShadingRateAttachmentInfoKHR & setPFragmentShadingRateAttachment( - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pFragmentShadingRateAttachment_ ) VULKAN_HPP_NOEXCEPT - { - pFragmentShadingRateAttachment = pFragmentShadingRateAttachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FragmentShadingRateAttachmentInfoKHR & setShadingRateAttachmentTexelSize( - VULKAN_HPP_NAMESPACE::Extent2D const & shadingRateAttachmentTexelSize_ ) VULKAN_HPP_NOEXCEPT - { - shadingRateAttachmentTexelSize = shadingRateAttachmentTexelSize_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFragmentShadingRateAttachmentInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFragmentShadingRateAttachmentInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pFragmentShadingRateAttachment, shadingRateAttachmentTexelSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FragmentShadingRateAttachmentInfoKHR const & ) const = default; -#else - bool operator==( FragmentShadingRateAttachmentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( pFragmentShadingRateAttachment == rhs.pFragmentShadingRateAttachment ) && - ( shadingRateAttachmentTexelSize == rhs.shadingRateAttachmentTexelSize ); -# endif - } - - bool operator!=( FragmentShadingRateAttachmentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFragmentShadingRateAttachmentInfoKHR; - const void * pNext = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pFragmentShadingRateAttachment = {}; - VULKAN_HPP_NAMESPACE::Extent2D shadingRateAttachmentTexelSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FragmentShadingRateAttachmentInfoKHR ) == - sizeof( VkFragmentShadingRateAttachmentInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "FragmentShadingRateAttachmentInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FragmentShadingRateAttachmentInfoKHR; - }; - - struct FramebufferAttachmentImageInfo - { - using NativeType = VkFramebufferAttachmentImageInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFramebufferAttachmentImageInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - FramebufferAttachmentImageInfo( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ = {}, - uint32_t width_ = {}, - uint32_t height_ = {}, - uint32_t layerCount_ = {}, - uint32_t viewFormatCount_ = {}, - const VULKAN_HPP_NAMESPACE::Format * pViewFormats_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , usage( usage_ ) - , width( width_ ) - , height( height_ ) - , layerCount( layerCount_ ) - , viewFormatCount( viewFormatCount_ ) - , pViewFormats( pViewFormats_ ) - {} - - VULKAN_HPP_CONSTEXPR - FramebufferAttachmentImageInfo( FramebufferAttachmentImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferAttachmentImageInfo( VkFramebufferAttachmentImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : FramebufferAttachmentImageInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - FramebufferAttachmentImageInfo( - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_, - uint32_t width_, - uint32_t height_, - uint32_t layerCount_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewFormats_ ) - : flags( flags_ ) - , usage( usage_ ) - , width( width_ ) - , height( height_ ) - , layerCount( layerCount_ ) - , viewFormatCount( static_cast( viewFormats_.size() ) ) - , pViewFormats( viewFormats_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FramebufferAttachmentImageInfo & - operator=( FramebufferAttachmentImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferAttachmentImageInfo & operator=( VkFramebufferAttachmentImageInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & - setFlags( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & - setUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT - { - width = width_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT - { - height = height_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = layerCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & - setViewFormatCount( uint32_t viewFormatCount_ ) VULKAN_HPP_NOEXCEPT - { - viewFormatCount = viewFormatCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentImageInfo & - setPViewFormats( const VULKAN_HPP_NAMESPACE::Format * pViewFormats_ ) VULKAN_HPP_NOEXCEPT - { - pViewFormats = pViewFormats_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - FramebufferAttachmentImageInfo & setViewFormats( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewFormats_ ) - VULKAN_HPP_NOEXCEPT - { - viewFormatCount = static_cast( viewFormats_.size() ); - pViewFormats = viewFormats_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFramebufferAttachmentImageInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFramebufferAttachmentImageInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, usage, width, height, layerCount, viewFormatCount, pViewFormats ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FramebufferAttachmentImageInfo const & ) const = default; -#else - bool operator==( FramebufferAttachmentImageInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( usage == rhs.usage ) && - ( width == rhs.width ) && ( height == rhs.height ) && ( layerCount == rhs.layerCount ) && - ( viewFormatCount == rhs.viewFormatCount ) && ( pViewFormats == rhs.pViewFormats ); -# endif - } - - bool operator!=( FramebufferAttachmentImageInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferAttachmentImageInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage = {}; - uint32_t width = {}; - uint32_t height = {}; - uint32_t layerCount = {}; - uint32_t viewFormatCount = {}; - const VULKAN_HPP_NAMESPACE::Format * pViewFormats = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfo ) == - sizeof( VkFramebufferAttachmentImageInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "FramebufferAttachmentImageInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FramebufferAttachmentImageInfo; - }; - using FramebufferAttachmentImageInfoKHR = FramebufferAttachmentImageInfo; - - struct FramebufferAttachmentsCreateInfo - { - using NativeType = VkFramebufferAttachmentsCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFramebufferAttachmentsCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FramebufferAttachmentsCreateInfo( - uint32_t attachmentImageInfoCount_ = {}, - const VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfo * pAttachmentImageInfos_ = {} ) VULKAN_HPP_NOEXCEPT - : attachmentImageInfoCount( attachmentImageInfoCount_ ) - , pAttachmentImageInfos( pAttachmentImageInfos_ ) - {} - - VULKAN_HPP_CONSTEXPR - FramebufferAttachmentsCreateInfo( FramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferAttachmentsCreateInfo( VkFramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : FramebufferAttachmentsCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - FramebufferAttachmentsCreateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachmentImageInfos_ ) - : attachmentImageInfoCount( static_cast( attachmentImageInfos_.size() ) ) - , pAttachmentImageInfos( attachmentImageInfos_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FramebufferAttachmentsCreateInfo & - operator=( FramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferAttachmentsCreateInfo & operator=( VkFramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentsCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentsCreateInfo & - setAttachmentImageInfoCount( uint32_t attachmentImageInfoCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentImageInfoCount = attachmentImageInfoCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferAttachmentsCreateInfo & setPAttachmentImageInfos( - const VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfo * pAttachmentImageInfos_ ) VULKAN_HPP_NOEXCEPT - { - pAttachmentImageInfos = pAttachmentImageInfos_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - FramebufferAttachmentsCreateInfo & setAttachmentImageInfos( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachmentImageInfos_ ) VULKAN_HPP_NOEXCEPT - { - attachmentImageInfoCount = static_cast( attachmentImageInfos_.size() ); - pAttachmentImageInfos = attachmentImageInfos_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFramebufferAttachmentsCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFramebufferAttachmentsCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, attachmentImageInfoCount, pAttachmentImageInfos ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FramebufferAttachmentsCreateInfo const & ) const = default; -#else - bool operator==( FramebufferAttachmentsCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( attachmentImageInfoCount == rhs.attachmentImageInfoCount ) && - ( pAttachmentImageInfos == rhs.pAttachmentImageInfos ); -# endif - } - - bool operator!=( FramebufferAttachmentsCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferAttachmentsCreateInfo; - const void * pNext = {}; - uint32_t attachmentImageInfoCount = {}; - const VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfo * pAttachmentImageInfos = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FramebufferAttachmentsCreateInfo ) == - sizeof( VkFramebufferAttachmentsCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "FramebufferAttachmentsCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FramebufferAttachmentsCreateInfo; - }; - using FramebufferAttachmentsCreateInfoKHR = FramebufferAttachmentsCreateInfo; - - struct FramebufferCreateInfo - { - using NativeType = VkFramebufferCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFramebufferCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FramebufferCreateInfo( VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {}, - uint32_t attachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageView * pAttachments_ = {}, - uint32_t width_ = {}, - uint32_t height_ = {}, - uint32_t layers_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , renderPass( renderPass_ ) - , attachmentCount( attachmentCount_ ) - , pAttachments( pAttachments_ ) - , width( width_ ) - , height( height_ ) - , layers( layers_ ) - {} - - VULKAN_HPP_CONSTEXPR FramebufferCreateInfo( FramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferCreateInfo( VkFramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : FramebufferCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - FramebufferCreateInfo( - VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags_, - VULKAN_HPP_NAMESPACE::RenderPass renderPass_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & attachments_, - uint32_t width_ = {}, - uint32_t height_ = {}, - uint32_t layers_ = {} ) - : flags( flags_ ) - , renderPass( renderPass_ ) - , attachmentCount( static_cast( attachments_.size() ) ) - , pAttachments( attachments_.data() ) - , width( width_ ) - , height( height_ ) - , layers( layers_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FramebufferCreateInfo & operator=( FramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferCreateInfo & operator=( VkFramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & - setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT - { - renderPass = renderPass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = attachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & - setPAttachments( const VULKAN_HPP_NAMESPACE::ImageView * pAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pAttachments = pAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - FramebufferCreateInfo & setAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & attachments_ ) - VULKAN_HPP_NOEXCEPT - { - attachmentCount = static_cast( attachments_.size() ); - pAttachments = attachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT - { - width = width_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT - { - height = height_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 FramebufferCreateInfo & setLayers( uint32_t layers_ ) VULKAN_HPP_NOEXCEPT - { - layers = layers_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkFramebufferCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFramebufferCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, renderPass, attachmentCount, pAttachments, width, height, layers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FramebufferCreateInfo const & ) const = default; -#else - bool operator==( FramebufferCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( renderPass == rhs.renderPass ) && ( attachmentCount == rhs.attachmentCount ) && - ( pAttachments == rhs.pAttachments ) && ( width == rhs.width ) && ( height == rhs.height ) && - ( layers == rhs.layers ); -# endif - } - - bool operator!=( FramebufferCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::RenderPass renderPass = {}; - uint32_t attachmentCount = {}; - const VULKAN_HPP_NAMESPACE::ImageView * pAttachments = {}; - uint32_t width = {}; - uint32_t height = {}; - uint32_t layers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FramebufferCreateInfo ) == sizeof( VkFramebufferCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "FramebufferCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FramebufferCreateInfo; - }; - - struct FramebufferMixedSamplesCombinationNV - { - using NativeType = VkFramebufferMixedSamplesCombinationNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eFramebufferMixedSamplesCombinationNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR FramebufferMixedSamplesCombinationNV( - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode_ = - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV::eMerge, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::SampleCountFlags depthStencilSamples_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags colorSamples_ = {} ) VULKAN_HPP_NOEXCEPT - : coverageReductionMode( coverageReductionMode_ ) - , rasterizationSamples( rasterizationSamples_ ) - , depthStencilSamples( depthStencilSamples_ ) - , colorSamples( colorSamples_ ) - {} - - VULKAN_HPP_CONSTEXPR FramebufferMixedSamplesCombinationNV( FramebufferMixedSamplesCombinationNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - FramebufferMixedSamplesCombinationNV( VkFramebufferMixedSamplesCombinationNV const & rhs ) VULKAN_HPP_NOEXCEPT - : FramebufferMixedSamplesCombinationNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - FramebufferMixedSamplesCombinationNV & - operator=( FramebufferMixedSamplesCombinationNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - FramebufferMixedSamplesCombinationNV & - operator=( VkFramebufferMixedSamplesCombinationNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkFramebufferMixedSamplesCombinationNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkFramebufferMixedSamplesCombinationNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, coverageReductionMode, rasterizationSamples, depthStencilSamples, colorSamples ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( FramebufferMixedSamplesCombinationNV const & ) const = default; -#else - bool operator==( FramebufferMixedSamplesCombinationNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( coverageReductionMode == rhs.coverageReductionMode ) && - ( rasterizationSamples == rhs.rasterizationSamples ) && - ( depthStencilSamples == rhs.depthStencilSamples ) && ( colorSamples == rhs.colorSamples ); -# endif - } - - bool operator!=( FramebufferMixedSamplesCombinationNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferMixedSamplesCombinationNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode = - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV::eMerge; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::SampleCountFlags depthStencilSamples = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags colorSamples = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::FramebufferMixedSamplesCombinationNV ) == - sizeof( VkFramebufferMixedSamplesCombinationNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "FramebufferMixedSamplesCombinationNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = FramebufferMixedSamplesCombinationNV; - }; - - struct IndirectCommandsStreamNV - { - using NativeType = VkIndirectCommandsStreamNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR IndirectCommandsStreamNV( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - , offset( offset_ ) - {} - - VULKAN_HPP_CONSTEXPR IndirectCommandsStreamNV( IndirectCommandsStreamNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IndirectCommandsStreamNV( VkIndirectCommandsStreamNV const & rhs ) VULKAN_HPP_NOEXCEPT - : IndirectCommandsStreamNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - IndirectCommandsStreamNV & operator=( IndirectCommandsStreamNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IndirectCommandsStreamNV & operator=( VkIndirectCommandsStreamNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsStreamNV & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsStreamNV & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkIndirectCommandsStreamNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkIndirectCommandsStreamNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( buffer, offset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( IndirectCommandsStreamNV const & ) const = default; -#else - bool operator==( IndirectCommandsStreamNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( buffer == rhs.buffer ) && ( offset == rhs.offset ); -# endif - } - - bool operator!=( IndirectCommandsStreamNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::IndirectCommandsStreamNV ) == - sizeof( VkIndirectCommandsStreamNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "IndirectCommandsStreamNV is not nothrow_move_constructible!" ); - - struct GeneratedCommandsInfoNV - { - using NativeType = VkGeneratedCommandsInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eGeneratedCommandsInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GeneratedCommandsInfoNV( - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - VULKAN_HPP_NAMESPACE::Pipeline pipeline_ = {}, - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout_ = {}, - uint32_t streamCount_ = {}, - const VULKAN_HPP_NAMESPACE::IndirectCommandsStreamNV * pStreams_ = {}, - uint32_t sequencesCount_ = {}, - VULKAN_HPP_NAMESPACE::Buffer preprocessBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize preprocessOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize preprocessSize_ = {}, - VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset_ = {}, - VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : pipelineBindPoint( pipelineBindPoint_ ) - , pipeline( pipeline_ ) - , indirectCommandsLayout( indirectCommandsLayout_ ) - , streamCount( streamCount_ ) - , pStreams( pStreams_ ) - , sequencesCount( sequencesCount_ ) - , preprocessBuffer( preprocessBuffer_ ) - , preprocessOffset( preprocessOffset_ ) - , preprocessSize( preprocessSize_ ) - , sequencesCountBuffer( sequencesCountBuffer_ ) - , sequencesCountOffset( sequencesCountOffset_ ) - , sequencesIndexBuffer( sequencesIndexBuffer_ ) - , sequencesIndexOffset( sequencesIndexOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR GeneratedCommandsInfoNV( GeneratedCommandsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeneratedCommandsInfoNV( VkGeneratedCommandsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : GeneratedCommandsInfoNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GeneratedCommandsInfoNV( - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_, - VULKAN_HPP_NAMESPACE::Pipeline pipeline_, - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - streams_, - uint32_t sequencesCount_ = {}, - VULKAN_HPP_NAMESPACE::Buffer preprocessBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize preprocessOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize preprocessSize_ = {}, - VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset_ = {}, - VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset_ = {} ) - : pipelineBindPoint( pipelineBindPoint_ ) - , pipeline( pipeline_ ) - , indirectCommandsLayout( indirectCommandsLayout_ ) - , streamCount( static_cast( streams_.size() ) ) - , pStreams( streams_.data() ) - , sequencesCount( sequencesCount_ ) - , preprocessBuffer( preprocessBuffer_ ) - , preprocessOffset( preprocessOffset_ ) - , preprocessSize( preprocessSize_ ) - , sequencesCountBuffer( sequencesCountBuffer_ ) - , sequencesCountOffset( sequencesCountOffset_ ) - , sequencesIndexBuffer( sequencesIndexBuffer_ ) - , sequencesIndexOffset( sequencesIndexOffset_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GeneratedCommandsInfoNV & operator=( GeneratedCommandsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeneratedCommandsInfoNV & operator=( VkGeneratedCommandsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT - { - pipelineBindPoint = pipelineBindPoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline_ ) VULKAN_HPP_NOEXCEPT - { - pipeline = pipeline_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & setIndirectCommandsLayout( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout_ ) VULKAN_HPP_NOEXCEPT - { - indirectCommandsLayout = indirectCommandsLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & setStreamCount( uint32_t streamCount_ ) VULKAN_HPP_NOEXCEPT - { - streamCount = streamCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setPStreams( const VULKAN_HPP_NAMESPACE::IndirectCommandsStreamNV * pStreams_ ) VULKAN_HPP_NOEXCEPT - { - pStreams = pStreams_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GeneratedCommandsInfoNV & setStreams( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - streams_ ) VULKAN_HPP_NOEXCEPT - { - streamCount = static_cast( streams_.size() ); - pStreams = streams_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & setSequencesCount( uint32_t sequencesCount_ ) VULKAN_HPP_NOEXCEPT - { - sequencesCount = sequencesCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setPreprocessBuffer( VULKAN_HPP_NAMESPACE::Buffer preprocessBuffer_ ) VULKAN_HPP_NOEXCEPT - { - preprocessBuffer = preprocessBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setPreprocessOffset( VULKAN_HPP_NAMESPACE::DeviceSize preprocessOffset_ ) VULKAN_HPP_NOEXCEPT - { - preprocessOffset = preprocessOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setPreprocessSize( VULKAN_HPP_NAMESPACE::DeviceSize preprocessSize_ ) VULKAN_HPP_NOEXCEPT - { - preprocessSize = preprocessSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setSequencesCountBuffer( VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer_ ) VULKAN_HPP_NOEXCEPT - { - sequencesCountBuffer = sequencesCountBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setSequencesCountOffset( VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset_ ) VULKAN_HPP_NOEXCEPT - { - sequencesCountOffset = sequencesCountOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setSequencesIndexBuffer( VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer_ ) VULKAN_HPP_NOEXCEPT - { - sequencesIndexBuffer = sequencesIndexBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsInfoNV & - setSequencesIndexOffset( VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset_ ) VULKAN_HPP_NOEXCEPT - { - sequencesIndexOffset = sequencesIndexOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGeneratedCommandsInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGeneratedCommandsInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - pipelineBindPoint, - pipeline, - indirectCommandsLayout, - streamCount, - pStreams, - sequencesCount, - preprocessBuffer, - preprocessOffset, - preprocessSize, - sequencesCountBuffer, - sequencesCountOffset, - sequencesIndexBuffer, - sequencesIndexOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GeneratedCommandsInfoNV const & ) const = default; -#else - bool operator==( GeneratedCommandsInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pipelineBindPoint == rhs.pipelineBindPoint ) && - ( pipeline == rhs.pipeline ) && ( indirectCommandsLayout == rhs.indirectCommandsLayout ) && - ( streamCount == rhs.streamCount ) && ( pStreams == rhs.pStreams ) && - ( sequencesCount == rhs.sequencesCount ) && ( preprocessBuffer == rhs.preprocessBuffer ) && - ( preprocessOffset == rhs.preprocessOffset ) && ( preprocessSize == rhs.preprocessSize ) && - ( sequencesCountBuffer == rhs.sequencesCountBuffer ) && - ( sequencesCountOffset == rhs.sequencesCountOffset ) && - ( sequencesIndexBuffer == rhs.sequencesIndexBuffer ) && - ( sequencesIndexOffset == rhs.sequencesIndexOffset ); -# endif - } - - bool operator!=( GeneratedCommandsInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeneratedCommandsInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics; - VULKAN_HPP_NAMESPACE::Pipeline pipeline = {}; - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout = {}; - uint32_t streamCount = {}; - const VULKAN_HPP_NAMESPACE::IndirectCommandsStreamNV * pStreams = {}; - uint32_t sequencesCount = {}; - VULKAN_HPP_NAMESPACE::Buffer preprocessBuffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize preprocessOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize preprocessSize = {}; - VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset = {}; - VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GeneratedCommandsInfoNV ) == - sizeof( VkGeneratedCommandsInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "GeneratedCommandsInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GeneratedCommandsInfoNV; - }; - - struct GeneratedCommandsMemoryRequirementsInfoNV - { - using NativeType = VkGeneratedCommandsMemoryRequirementsInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eGeneratedCommandsMemoryRequirementsInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GeneratedCommandsMemoryRequirementsInfoNV( - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - VULKAN_HPP_NAMESPACE::Pipeline pipeline_ = {}, - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout_ = {}, - uint32_t maxSequencesCount_ = {} ) VULKAN_HPP_NOEXCEPT - : pipelineBindPoint( pipelineBindPoint_ ) - , pipeline( pipeline_ ) - , indirectCommandsLayout( indirectCommandsLayout_ ) - , maxSequencesCount( maxSequencesCount_ ) - {} - - VULKAN_HPP_CONSTEXPR GeneratedCommandsMemoryRequirementsInfoNV( - GeneratedCommandsMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeneratedCommandsMemoryRequirementsInfoNV( VkGeneratedCommandsMemoryRequirementsInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : GeneratedCommandsMemoryRequirementsInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GeneratedCommandsMemoryRequirementsInfoNV & - operator=( GeneratedCommandsMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GeneratedCommandsMemoryRequirementsInfoNV & - operator=( VkGeneratedCommandsMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsMemoryRequirementsInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsMemoryRequirementsInfoNV & - setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT - { - pipelineBindPoint = pipelineBindPoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsMemoryRequirementsInfoNV & - setPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline_ ) VULKAN_HPP_NOEXCEPT - { - pipeline = pipeline_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsMemoryRequirementsInfoNV & setIndirectCommandsLayout( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout_ ) VULKAN_HPP_NOEXCEPT - { - indirectCommandsLayout = indirectCommandsLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GeneratedCommandsMemoryRequirementsInfoNV & - setMaxSequencesCount( uint32_t maxSequencesCount_ ) VULKAN_HPP_NOEXCEPT - { - maxSequencesCount = maxSequencesCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGeneratedCommandsMemoryRequirementsInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGeneratedCommandsMemoryRequirementsInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pipelineBindPoint, pipeline, indirectCommandsLayout, maxSequencesCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GeneratedCommandsMemoryRequirementsInfoNV const & ) const = default; -#else - bool operator==( GeneratedCommandsMemoryRequirementsInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pipelineBindPoint == rhs.pipelineBindPoint ) && - ( pipeline == rhs.pipeline ) && ( indirectCommandsLayout == rhs.indirectCommandsLayout ) && - ( maxSequencesCount == rhs.maxSequencesCount ); -# endif - } - - bool operator!=( GeneratedCommandsMemoryRequirementsInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeneratedCommandsMemoryRequirementsInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics; - VULKAN_HPP_NAMESPACE::Pipeline pipeline = {}; - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNV indirectCommandsLayout = {}; - uint32_t maxSequencesCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GeneratedCommandsMemoryRequirementsInfoNV ) == - sizeof( VkGeneratedCommandsMemoryRequirementsInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "GeneratedCommandsMemoryRequirementsInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GeneratedCommandsMemoryRequirementsInfoNV; - }; - - struct VertexInputBindingDescription - { - using NativeType = VkVertexInputBindingDescription; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VertexInputBindingDescription( uint32_t binding_ = {}, - uint32_t stride_ = {}, - VULKAN_HPP_NAMESPACE::VertexInputRate inputRate_ = - VULKAN_HPP_NAMESPACE::VertexInputRate::eVertex ) VULKAN_HPP_NOEXCEPT - : binding( binding_ ) - , stride( stride_ ) - , inputRate( inputRate_ ) - {} - - VULKAN_HPP_CONSTEXPR - VertexInputBindingDescription( VertexInputBindingDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputBindingDescription( VkVertexInputBindingDescription const & rhs ) VULKAN_HPP_NOEXCEPT - : VertexInputBindingDescription( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VertexInputBindingDescription & - operator=( VertexInputBindingDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputBindingDescription & operator=( VkVertexInputBindingDescription const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription & setBinding( uint32_t binding_ ) VULKAN_HPP_NOEXCEPT - { - binding = binding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription & setStride( uint32_t stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription & - setInputRate( VULKAN_HPP_NAMESPACE::VertexInputRate inputRate_ ) VULKAN_HPP_NOEXCEPT - { - inputRate = inputRate_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVertexInputBindingDescription const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVertexInputBindingDescription &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( binding, stride, inputRate ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VertexInputBindingDescription const & ) const = default; -#else - bool operator==( VertexInputBindingDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( binding == rhs.binding ) && ( stride == rhs.stride ) && ( inputRate == rhs.inputRate ); -# endif - } - - bool operator!=( VertexInputBindingDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t binding = {}; - uint32_t stride = {}; - VULKAN_HPP_NAMESPACE::VertexInputRate inputRate = VULKAN_HPP_NAMESPACE::VertexInputRate::eVertex; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VertexInputBindingDescription ) == - sizeof( VkVertexInputBindingDescription ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VertexInputBindingDescription is not nothrow_move_constructible!" ); - - struct VertexInputAttributeDescription - { - using NativeType = VkVertexInputAttributeDescription; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VertexInputAttributeDescription( uint32_t location_ = {}, - uint32_t binding_ = {}, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - uint32_t offset_ = {} ) VULKAN_HPP_NOEXCEPT - : location( location_ ) - , binding( binding_ ) - , format( format_ ) - , offset( offset_ ) - {} - - VULKAN_HPP_CONSTEXPR - VertexInputAttributeDescription( VertexInputAttributeDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputAttributeDescription( VkVertexInputAttributeDescription const & rhs ) VULKAN_HPP_NOEXCEPT - : VertexInputAttributeDescription( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VertexInputAttributeDescription & - operator=( VertexInputAttributeDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputAttributeDescription & operator=( VkVertexInputAttributeDescription const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription & setLocation( uint32_t location_ ) VULKAN_HPP_NOEXCEPT - { - location = location_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription & setBinding( uint32_t binding_ ) VULKAN_HPP_NOEXCEPT - { - binding = binding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription & setOffset( uint32_t offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVertexInputAttributeDescription const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVertexInputAttributeDescription &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( location, binding, format, offset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VertexInputAttributeDescription const & ) const = default; -#else - bool operator==( VertexInputAttributeDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( location == rhs.location ) && ( binding == rhs.binding ) && ( format == rhs.format ) && - ( offset == rhs.offset ); -# endif - } - - bool operator!=( VertexInputAttributeDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t location = {}; - uint32_t binding = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - uint32_t offset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription ) == - sizeof( VkVertexInputAttributeDescription ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VertexInputAttributeDescription is not nothrow_move_constructible!" ); - - struct PipelineVertexInputStateCreateInfo - { - using NativeType = VkPipelineVertexInputStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineVertexInputStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineVertexInputStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateFlags flags_ = {}, - uint32_t vertexBindingDescriptionCount_ = {}, - const VULKAN_HPP_NAMESPACE::VertexInputBindingDescription * pVertexBindingDescriptions_ = {}, - uint32_t vertexAttributeDescriptionCount_ = {}, - const VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription * pVertexAttributeDescriptions_ = {} ) - VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , vertexBindingDescriptionCount( vertexBindingDescriptionCount_ ) - , pVertexBindingDescriptions( pVertexBindingDescriptions_ ) - , vertexAttributeDescriptionCount( vertexAttributeDescriptionCount_ ) - , pVertexAttributeDescriptions( pVertexAttributeDescriptions_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineVertexInputStateCreateInfo( PipelineVertexInputStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineVertexInputStateCreateInfo( VkPipelineVertexInputStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineVertexInputStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineVertexInputStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - vertexBindingDescriptions_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - vertexAttributeDescriptions_ = {} ) - : flags( flags_ ) - , vertexBindingDescriptionCount( static_cast( vertexBindingDescriptions_.size() ) ) - , pVertexBindingDescriptions( vertexBindingDescriptions_.data() ) - , vertexAttributeDescriptionCount( static_cast( vertexAttributeDescriptions_.size() ) ) - , pVertexAttributeDescriptions( vertexAttributeDescriptions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineVertexInputStateCreateInfo & - operator=( PipelineVertexInputStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineVertexInputStateCreateInfo & - operator=( VkPipelineVertexInputStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputStateCreateInfo & - setVertexBindingDescriptionCount( uint32_t vertexBindingDescriptionCount_ ) VULKAN_HPP_NOEXCEPT - { - vertexBindingDescriptionCount = vertexBindingDescriptionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputStateCreateInfo & setPVertexBindingDescriptions( - const VULKAN_HPP_NAMESPACE::VertexInputBindingDescription * pVertexBindingDescriptions_ ) VULKAN_HPP_NOEXCEPT - { - pVertexBindingDescriptions = pVertexBindingDescriptions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineVertexInputStateCreateInfo & setVertexBindingDescriptions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - vertexBindingDescriptions_ ) VULKAN_HPP_NOEXCEPT - { - vertexBindingDescriptionCount = static_cast( vertexBindingDescriptions_.size() ); - pVertexBindingDescriptions = vertexBindingDescriptions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputStateCreateInfo & - setVertexAttributeDescriptionCount( uint32_t vertexAttributeDescriptionCount_ ) VULKAN_HPP_NOEXCEPT - { - vertexAttributeDescriptionCount = vertexAttributeDescriptionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputStateCreateInfo & setPVertexAttributeDescriptions( - const VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription * pVertexAttributeDescriptions_ ) VULKAN_HPP_NOEXCEPT - { - pVertexAttributeDescriptions = pVertexAttributeDescriptions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineVertexInputStateCreateInfo & setVertexAttributeDescriptions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - vertexAttributeDescriptions_ ) VULKAN_HPP_NOEXCEPT - { - vertexAttributeDescriptionCount = static_cast( vertexAttributeDescriptions_.size() ); - pVertexAttributeDescriptions = vertexAttributeDescriptions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineVertexInputStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineVertexInputStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - vertexBindingDescriptionCount, - pVertexBindingDescriptions, - vertexAttributeDescriptionCount, - pVertexAttributeDescriptions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineVertexInputStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineVertexInputStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( vertexBindingDescriptionCount == rhs.vertexBindingDescriptionCount ) && - ( pVertexBindingDescriptions == rhs.pVertexBindingDescriptions ) && - ( vertexAttributeDescriptionCount == rhs.vertexAttributeDescriptionCount ) && - ( pVertexAttributeDescriptions == rhs.pVertexAttributeDescriptions ); -# endif - } - - bool operator!=( PipelineVertexInputStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineVertexInputStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateFlags flags = {}; - uint32_t vertexBindingDescriptionCount = {}; - const VULKAN_HPP_NAMESPACE::VertexInputBindingDescription * pVertexBindingDescriptions = {}; - uint32_t vertexAttributeDescriptionCount = {}; - const VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription * pVertexAttributeDescriptions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo ) == - sizeof( VkPipelineVertexInputStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineVertexInputStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineVertexInputStateCreateInfo; - }; - - struct PipelineInputAssemblyStateCreateInfo - { - using NativeType = VkPipelineInputAssemblyStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineInputAssemblyStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineInputAssemblyStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::PrimitiveTopology topology_ = VULKAN_HPP_NAMESPACE::PrimitiveTopology::ePointList, - VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , topology( topology_ ) - , primitiveRestartEnable( primitiveRestartEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineInputAssemblyStateCreateInfo( PipelineInputAssemblyStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineInputAssemblyStateCreateInfo( VkPipelineInputAssemblyStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineInputAssemblyStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineInputAssemblyStateCreateInfo & - operator=( PipelineInputAssemblyStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineInputAssemblyStateCreateInfo & - operator=( VkPipelineInputAssemblyStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineInputAssemblyStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineInputAssemblyStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineInputAssemblyStateCreateInfo & - setTopology( VULKAN_HPP_NAMESPACE::PrimitiveTopology topology_ ) VULKAN_HPP_NOEXCEPT - { - topology = topology_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineInputAssemblyStateCreateInfo & - setPrimitiveRestartEnable( VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable_ ) VULKAN_HPP_NOEXCEPT - { - primitiveRestartEnable = primitiveRestartEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineInputAssemblyStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineInputAssemblyStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, topology, primitiveRestartEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineInputAssemblyStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineInputAssemblyStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( topology == rhs.topology ) && ( primitiveRestartEnable == rhs.primitiveRestartEnable ); -# endif - } - - bool operator!=( PipelineInputAssemblyStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineInputAssemblyStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::PrimitiveTopology topology = VULKAN_HPP_NAMESPACE::PrimitiveTopology::ePointList; - VULKAN_HPP_NAMESPACE::Bool32 primitiveRestartEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateInfo ) == - sizeof( VkPipelineInputAssemblyStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineInputAssemblyStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineInputAssemblyStateCreateInfo; - }; - - struct PipelineTessellationStateCreateInfo - { - using NativeType = VkPipelineTessellationStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineTessellationStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PipelineTessellationStateCreateInfo( VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateFlags flags_ = {}, - uint32_t patchControlPoints_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , patchControlPoints( patchControlPoints_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineTessellationStateCreateInfo( PipelineTessellationStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineTessellationStateCreateInfo( VkPipelineTessellationStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineTessellationStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineTessellationStateCreateInfo & - operator=( PipelineTessellationStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineTessellationStateCreateInfo & - operator=( VkPipelineTessellationStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineTessellationStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineTessellationStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineTessellationStateCreateInfo & - setPatchControlPoints( uint32_t patchControlPoints_ ) VULKAN_HPP_NOEXCEPT - { - patchControlPoints = patchControlPoints_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineTessellationStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineTessellationStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, patchControlPoints ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineTessellationStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineTessellationStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( patchControlPoints == rhs.patchControlPoints ); -# endif - } - - bool operator!=( PipelineTessellationStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineTessellationStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateFlags flags = {}; - uint32_t patchControlPoints = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo ) == - sizeof( VkPipelineTessellationStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineTessellationStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineTessellationStateCreateInfo; - }; - - struct PipelineViewportStateCreateInfo - { - using NativeType = VkPipelineViewportStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineViewportStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PipelineViewportStateCreateInfo( VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateFlags flags_ = {}, - uint32_t viewportCount_ = {}, - const VULKAN_HPP_NAMESPACE::Viewport * pViewports_ = {}, - uint32_t scissorCount_ = {}, - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , viewportCount( viewportCount_ ) - , pViewports( pViewports_ ) - , scissorCount( scissorCount_ ) - , pScissors( pScissors_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineViewportStateCreateInfo( PipelineViewportStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportStateCreateInfo( VkPipelineViewportStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineViewportStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewports_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & scissors_ = {} ) - : flags( flags_ ) - , viewportCount( static_cast( viewports_.size() ) ) - , pViewports( viewports_.data() ) - , scissorCount( static_cast( scissors_.size() ) ) - , pScissors( scissors_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportStateCreateInfo & - operator=( PipelineViewportStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportStateCreateInfo & operator=( VkPipelineViewportStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportStateCreateInfo & - setViewportCount( uint32_t viewportCount_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = viewportCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportStateCreateInfo & - setPViewports( const VULKAN_HPP_NAMESPACE::Viewport * pViewports_ ) VULKAN_HPP_NOEXCEPT - { - pViewports = pViewports_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportStateCreateInfo & setViewports( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewports_ ) - VULKAN_HPP_NOEXCEPT - { - viewportCount = static_cast( viewports_.size() ); - pViewports = viewports_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportStateCreateInfo & - setScissorCount( uint32_t scissorCount_ ) VULKAN_HPP_NOEXCEPT - { - scissorCount = scissorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportStateCreateInfo & - setPScissors( const VULKAN_HPP_NAMESPACE::Rect2D * pScissors_ ) VULKAN_HPP_NOEXCEPT - { - pScissors = pScissors_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportStateCreateInfo & - setScissors( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & scissors_ ) - VULKAN_HPP_NOEXCEPT - { - scissorCount = static_cast( scissors_.size() ); - pScissors = scissors_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, viewportCount, pViewports, scissorCount, pScissors ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineViewportStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( viewportCount == rhs.viewportCount ) && ( pViewports == rhs.pViewports ) && - ( scissorCount == rhs.scissorCount ) && ( pScissors == rhs.pScissors ); -# endif - } - - bool operator!=( PipelineViewportStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateFlags flags = {}; - uint32_t viewportCount = {}; - const VULKAN_HPP_NAMESPACE::Viewport * pViewports = {}; - uint32_t scissorCount = {}; - const VULKAN_HPP_NAMESPACE::Rect2D * pScissors = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateInfo ) == - sizeof( VkPipelineViewportStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportStateCreateInfo; - }; - - struct PipelineRasterizationStateCreateInfo - { - using NativeType = VkPipelineRasterizationStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthClampEnable_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable_ = {}, - VULKAN_HPP_NAMESPACE::PolygonMode polygonMode_ = VULKAN_HPP_NAMESPACE::PolygonMode::eFill, - VULKAN_HPP_NAMESPACE::CullModeFlags cullMode_ = {}, - VULKAN_HPP_NAMESPACE::FrontFace frontFace_ = VULKAN_HPP_NAMESPACE::FrontFace::eCounterClockwise, - VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable_ = {}, - float depthBiasConstantFactor_ = {}, - float depthBiasClamp_ = {}, - float depthBiasSlopeFactor_ = {}, - float lineWidth_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , depthClampEnable( depthClampEnable_ ) - , rasterizerDiscardEnable( rasterizerDiscardEnable_ ) - , polygonMode( polygonMode_ ) - , cullMode( cullMode_ ) - , frontFace( frontFace_ ) - , depthBiasEnable( depthBiasEnable_ ) - , depthBiasConstantFactor( depthBiasConstantFactor_ ) - , depthBiasClamp( depthBiasClamp_ ) - , depthBiasSlopeFactor( depthBiasSlopeFactor_ ) - , lineWidth( lineWidth_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationStateCreateInfo( PipelineRasterizationStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationStateCreateInfo( VkPipelineRasterizationStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineRasterizationStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationStateCreateInfo & - operator=( PipelineRasterizationStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationStateCreateInfo & - operator=( VkPipelineRasterizationStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setDepthClampEnable( VULKAN_HPP_NAMESPACE::Bool32 depthClampEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthClampEnable = depthClampEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setRasterizerDiscardEnable( VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable_ ) VULKAN_HPP_NOEXCEPT - { - rasterizerDiscardEnable = rasterizerDiscardEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setPolygonMode( VULKAN_HPP_NAMESPACE::PolygonMode polygonMode_ ) VULKAN_HPP_NOEXCEPT - { - polygonMode = polygonMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setCullMode( VULKAN_HPP_NAMESPACE::CullModeFlags cullMode_ ) VULKAN_HPP_NOEXCEPT - { - cullMode = cullMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setFrontFace( VULKAN_HPP_NAMESPACE::FrontFace frontFace_ ) VULKAN_HPP_NOEXCEPT - { - frontFace = frontFace_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setDepthBiasEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthBiasEnable = depthBiasEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setDepthBiasConstantFactor( float depthBiasConstantFactor_ ) VULKAN_HPP_NOEXCEPT - { - depthBiasConstantFactor = depthBiasConstantFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setDepthBiasClamp( float depthBiasClamp_ ) VULKAN_HPP_NOEXCEPT - { - depthBiasClamp = depthBiasClamp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & - setDepthBiasSlopeFactor( float depthBiasSlopeFactor_ ) VULKAN_HPP_NOEXCEPT - { - depthBiasSlopeFactor = depthBiasSlopeFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateCreateInfo & setLineWidth( float lineWidth_ ) VULKAN_HPP_NOEXCEPT - { - lineWidth = lineWidth_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - depthClampEnable, - rasterizerDiscardEnable, - polygonMode, - cullMode, - frontFace, - depthBiasEnable, - depthBiasConstantFactor, - depthBiasClamp, - depthBiasSlopeFactor, - lineWidth ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineRasterizationStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( depthClampEnable == rhs.depthClampEnable ) && - ( rasterizerDiscardEnable == rhs.rasterizerDiscardEnable ) && ( polygonMode == rhs.polygonMode ) && - ( cullMode == rhs.cullMode ) && ( frontFace == rhs.frontFace ) && - ( depthBiasEnable == rhs.depthBiasEnable ) && ( depthBiasConstantFactor == rhs.depthBiasConstantFactor ) && - ( depthBiasClamp == rhs.depthBiasClamp ) && ( depthBiasSlopeFactor == rhs.depthBiasSlopeFactor ) && - ( lineWidth == rhs.lineWidth ); -# endif - } - - bool operator!=( PipelineRasterizationStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthClampEnable = {}; - VULKAN_HPP_NAMESPACE::Bool32 rasterizerDiscardEnable = {}; - VULKAN_HPP_NAMESPACE::PolygonMode polygonMode = VULKAN_HPP_NAMESPACE::PolygonMode::eFill; - VULKAN_HPP_NAMESPACE::CullModeFlags cullMode = {}; - VULKAN_HPP_NAMESPACE::FrontFace frontFace = VULKAN_HPP_NAMESPACE::FrontFace::eCounterClockwise; - VULKAN_HPP_NAMESPACE::Bool32 depthBiasEnable = {}; - float depthBiasConstantFactor = {}; - float depthBiasClamp = {}; - float depthBiasSlopeFactor = {}; - float lineWidth = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateInfo ) == - sizeof( VkPipelineRasterizationStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineRasterizationStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationStateCreateInfo; - }; - - struct PipelineMultisampleStateCreateInfo - { - using NativeType = VkPipelineMultisampleStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineMultisampleStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineMultisampleStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::Bool32 sampleShadingEnable_ = {}, - float minSampleShading_ = {}, - const VULKAN_HPP_NAMESPACE::SampleMask * pSampleMask_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 alphaToCoverageEnable_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 alphaToOneEnable_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , rasterizationSamples( rasterizationSamples_ ) - , sampleShadingEnable( sampleShadingEnable_ ) - , minSampleShading( minSampleShading_ ) - , pSampleMask( pSampleMask_ ) - , alphaToCoverageEnable( alphaToCoverageEnable_ ) - , alphaToOneEnable( alphaToOneEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineMultisampleStateCreateInfo( PipelineMultisampleStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineMultisampleStateCreateInfo( VkPipelineMultisampleStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineMultisampleStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineMultisampleStateCreateInfo & - operator=( PipelineMultisampleStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineMultisampleStateCreateInfo & - operator=( VkPipelineMultisampleStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setRasterizationSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationSamples = rasterizationSamples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setSampleShadingEnable( VULKAN_HPP_NAMESPACE::Bool32 sampleShadingEnable_ ) VULKAN_HPP_NOEXCEPT - { - sampleShadingEnable = sampleShadingEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setMinSampleShading( float minSampleShading_ ) VULKAN_HPP_NOEXCEPT - { - minSampleShading = minSampleShading_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setPSampleMask( const VULKAN_HPP_NAMESPACE::SampleMask * pSampleMask_ ) VULKAN_HPP_NOEXCEPT - { - pSampleMask = pSampleMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setAlphaToCoverageEnable( VULKAN_HPP_NAMESPACE::Bool32 alphaToCoverageEnable_ ) VULKAN_HPP_NOEXCEPT - { - alphaToCoverageEnable = alphaToCoverageEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineMultisampleStateCreateInfo & - setAlphaToOneEnable( VULKAN_HPP_NAMESPACE::Bool32 alphaToOneEnable_ ) VULKAN_HPP_NOEXCEPT - { - alphaToOneEnable = alphaToOneEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineMultisampleStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineMultisampleStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - rasterizationSamples, - sampleShadingEnable, - minSampleShading, - pSampleMask, - alphaToCoverageEnable, - alphaToOneEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineMultisampleStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineMultisampleStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( rasterizationSamples == rhs.rasterizationSamples ) && - ( sampleShadingEnable == rhs.sampleShadingEnable ) && ( minSampleShading == rhs.minSampleShading ) && - ( pSampleMask == rhs.pSampleMask ) && ( alphaToCoverageEnable == rhs.alphaToCoverageEnable ) && - ( alphaToOneEnable == rhs.alphaToOneEnable ); -# endif - } - - bool operator!=( PipelineMultisampleStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineMultisampleStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::Bool32 sampleShadingEnable = {}; - float minSampleShading = {}; - const VULKAN_HPP_NAMESPACE::SampleMask * pSampleMask = {}; - VULKAN_HPP_NAMESPACE::Bool32 alphaToCoverageEnable = {}; - VULKAN_HPP_NAMESPACE::Bool32 alphaToOneEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateInfo ) == - sizeof( VkPipelineMultisampleStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineMultisampleStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineMultisampleStateCreateInfo; - }; - - struct StencilOpState - { - using NativeType = VkStencilOpState; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - StencilOpState( VULKAN_HPP_NAMESPACE::StencilOp failOp_ = VULKAN_HPP_NAMESPACE::StencilOp::eKeep, - VULKAN_HPP_NAMESPACE::StencilOp passOp_ = VULKAN_HPP_NAMESPACE::StencilOp::eKeep, - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp_ = VULKAN_HPP_NAMESPACE::StencilOp::eKeep, - VULKAN_HPP_NAMESPACE::CompareOp compareOp_ = VULKAN_HPP_NAMESPACE::CompareOp::eNever, - uint32_t compareMask_ = {}, - uint32_t writeMask_ = {}, - uint32_t reference_ = {} ) VULKAN_HPP_NOEXCEPT - : failOp( failOp_ ) - , passOp( passOp_ ) - , depthFailOp( depthFailOp_ ) - , compareOp( compareOp_ ) - , compareMask( compareMask_ ) - , writeMask( writeMask_ ) - , reference( reference_ ) - {} - - VULKAN_HPP_CONSTEXPR StencilOpState( StencilOpState const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - StencilOpState( VkStencilOpState const & rhs ) VULKAN_HPP_NOEXCEPT - : StencilOpState( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - StencilOpState & operator=( StencilOpState const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - StencilOpState & operator=( VkStencilOpState const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 StencilOpState & setFailOp( VULKAN_HPP_NAMESPACE::StencilOp failOp_ ) VULKAN_HPP_NOEXCEPT - { - failOp = failOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StencilOpState & setPassOp( VULKAN_HPP_NAMESPACE::StencilOp passOp_ ) VULKAN_HPP_NOEXCEPT - { - passOp = passOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StencilOpState & - setDepthFailOp( VULKAN_HPP_NAMESPACE::StencilOp depthFailOp_ ) VULKAN_HPP_NOEXCEPT - { - depthFailOp = depthFailOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StencilOpState & - setCompareOp( VULKAN_HPP_NAMESPACE::CompareOp compareOp_ ) VULKAN_HPP_NOEXCEPT - { - compareOp = compareOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StencilOpState & setCompareMask( uint32_t compareMask_ ) VULKAN_HPP_NOEXCEPT - { - compareMask = compareMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StencilOpState & setWriteMask( uint32_t writeMask_ ) VULKAN_HPP_NOEXCEPT - { - writeMask = writeMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StencilOpState & setReference( uint32_t reference_ ) VULKAN_HPP_NOEXCEPT - { - reference = reference_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkStencilOpState const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkStencilOpState &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( failOp, passOp, depthFailOp, compareOp, compareMask, writeMask, reference ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( StencilOpState const & ) const = default; -#else - bool operator==( StencilOpState const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( failOp == rhs.failOp ) && ( passOp == rhs.passOp ) && ( depthFailOp == rhs.depthFailOp ) && - ( compareOp == rhs.compareOp ) && ( compareMask == rhs.compareMask ) && ( writeMask == rhs.writeMask ) && - ( reference == rhs.reference ); -# endif - } - - bool operator!=( StencilOpState const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StencilOp failOp = VULKAN_HPP_NAMESPACE::StencilOp::eKeep; - VULKAN_HPP_NAMESPACE::StencilOp passOp = VULKAN_HPP_NAMESPACE::StencilOp::eKeep; - VULKAN_HPP_NAMESPACE::StencilOp depthFailOp = VULKAN_HPP_NAMESPACE::StencilOp::eKeep; - VULKAN_HPP_NAMESPACE::CompareOp compareOp = VULKAN_HPP_NAMESPACE::CompareOp::eNever; - uint32_t compareMask = {}; - uint32_t writeMask = {}; - uint32_t reference = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::StencilOpState ) == sizeof( VkStencilOpState ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "StencilOpState is not nothrow_move_constructible!" ); - - struct PipelineDepthStencilStateCreateInfo - { - using NativeType = VkPipelineDepthStencilStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineDepthStencilStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineDepthStencilStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable_ = {}, - VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp_ = VULKAN_HPP_NAMESPACE::CompareOp::eNever, - VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable_ = {}, - VULKAN_HPP_NAMESPACE::StencilOpState front_ = {}, - VULKAN_HPP_NAMESPACE::StencilOpState back_ = {}, - float minDepthBounds_ = {}, - float maxDepthBounds_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , depthTestEnable( depthTestEnable_ ) - , depthWriteEnable( depthWriteEnable_ ) - , depthCompareOp( depthCompareOp_ ) - , depthBoundsTestEnable( depthBoundsTestEnable_ ) - , stencilTestEnable( stencilTestEnable_ ) - , front( front_ ) - , back( back_ ) - , minDepthBounds( minDepthBounds_ ) - , maxDepthBounds( maxDepthBounds_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineDepthStencilStateCreateInfo( PipelineDepthStencilStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineDepthStencilStateCreateInfo( VkPipelineDepthStencilStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineDepthStencilStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineDepthStencilStateCreateInfo & - operator=( PipelineDepthStencilStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineDepthStencilStateCreateInfo & - operator=( VkPipelineDepthStencilStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setDepthTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthTestEnable = depthTestEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setDepthWriteEnable( VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthWriteEnable = depthWriteEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setDepthCompareOp( VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp_ ) VULKAN_HPP_NOEXCEPT - { - depthCompareOp = depthCompareOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setDepthBoundsTestEnable( VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthBoundsTestEnable = depthBoundsTestEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setStencilTestEnable( VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable_ ) VULKAN_HPP_NOEXCEPT - { - stencilTestEnable = stencilTestEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setFront( VULKAN_HPP_NAMESPACE::StencilOpState const & front_ ) VULKAN_HPP_NOEXCEPT - { - front = front_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setBack( VULKAN_HPP_NAMESPACE::StencilOpState const & back_ ) VULKAN_HPP_NOEXCEPT - { - back = back_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setMinDepthBounds( float minDepthBounds_ ) VULKAN_HPP_NOEXCEPT - { - minDepthBounds = minDepthBounds_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDepthStencilStateCreateInfo & - setMaxDepthBounds( float maxDepthBounds_ ) VULKAN_HPP_NOEXCEPT - { - maxDepthBounds = maxDepthBounds_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineDepthStencilStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineDepthStencilStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - depthTestEnable, - depthWriteEnable, - depthCompareOp, - depthBoundsTestEnable, - stencilTestEnable, - front, - back, - minDepthBounds, - maxDepthBounds ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineDepthStencilStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineDepthStencilStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( depthTestEnable == rhs.depthTestEnable ) && ( depthWriteEnable == rhs.depthWriteEnable ) && - ( depthCompareOp == rhs.depthCompareOp ) && ( depthBoundsTestEnable == rhs.depthBoundsTestEnable ) && - ( stencilTestEnable == rhs.stencilTestEnable ) && ( front == rhs.front ) && ( back == rhs.back ) && - ( minDepthBounds == rhs.minDepthBounds ) && ( maxDepthBounds == rhs.maxDepthBounds ); -# endif - } - - bool operator!=( PipelineDepthStencilStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineDepthStencilStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthTestEnable = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthWriteEnable = {}; - VULKAN_HPP_NAMESPACE::CompareOp depthCompareOp = VULKAN_HPP_NAMESPACE::CompareOp::eNever; - VULKAN_HPP_NAMESPACE::Bool32 depthBoundsTestEnable = {}; - VULKAN_HPP_NAMESPACE::Bool32 stencilTestEnable = {}; - VULKAN_HPP_NAMESPACE::StencilOpState front = {}; - VULKAN_HPP_NAMESPACE::StencilOpState back = {}; - float minDepthBounds = {}; - float maxDepthBounds = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo ) == - sizeof( VkPipelineDepthStencilStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineDepthStencilStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineDepthStencilStateCreateInfo; - }; - - struct PipelineColorBlendAttachmentState - { - using NativeType = VkPipelineColorBlendAttachmentState; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineColorBlendAttachmentState( - VULKAN_HPP_NAMESPACE::Bool32 blendEnable_ = {}, - VULKAN_HPP_NAMESPACE::BlendFactor srcColorBlendFactor_ = VULKAN_HPP_NAMESPACE::BlendFactor::eZero, - VULKAN_HPP_NAMESPACE::BlendFactor dstColorBlendFactor_ = VULKAN_HPP_NAMESPACE::BlendFactor::eZero, - VULKAN_HPP_NAMESPACE::BlendOp colorBlendOp_ = VULKAN_HPP_NAMESPACE::BlendOp::eAdd, - VULKAN_HPP_NAMESPACE::BlendFactor srcAlphaBlendFactor_ = VULKAN_HPP_NAMESPACE::BlendFactor::eZero, - VULKAN_HPP_NAMESPACE::BlendFactor dstAlphaBlendFactor_ = VULKAN_HPP_NAMESPACE::BlendFactor::eZero, - VULKAN_HPP_NAMESPACE::BlendOp alphaBlendOp_ = VULKAN_HPP_NAMESPACE::BlendOp::eAdd, - VULKAN_HPP_NAMESPACE::ColorComponentFlags colorWriteMask_ = {} ) VULKAN_HPP_NOEXCEPT - : blendEnable( blendEnable_ ) - , srcColorBlendFactor( srcColorBlendFactor_ ) - , dstColorBlendFactor( dstColorBlendFactor_ ) - , colorBlendOp( colorBlendOp_ ) - , srcAlphaBlendFactor( srcAlphaBlendFactor_ ) - , dstAlphaBlendFactor( dstAlphaBlendFactor_ ) - , alphaBlendOp( alphaBlendOp_ ) - , colorWriteMask( colorWriteMask_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineColorBlendAttachmentState( PipelineColorBlendAttachmentState const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorBlendAttachmentState( VkPipelineColorBlendAttachmentState const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineColorBlendAttachmentState( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineColorBlendAttachmentState & - operator=( PipelineColorBlendAttachmentState const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorBlendAttachmentState & operator=( VkPipelineColorBlendAttachmentState const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setBlendEnable( VULKAN_HPP_NAMESPACE::Bool32 blendEnable_ ) VULKAN_HPP_NOEXCEPT - { - blendEnable = blendEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setSrcColorBlendFactor( VULKAN_HPP_NAMESPACE::BlendFactor srcColorBlendFactor_ ) VULKAN_HPP_NOEXCEPT - { - srcColorBlendFactor = srcColorBlendFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setDstColorBlendFactor( VULKAN_HPP_NAMESPACE::BlendFactor dstColorBlendFactor_ ) VULKAN_HPP_NOEXCEPT - { - dstColorBlendFactor = dstColorBlendFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setColorBlendOp( VULKAN_HPP_NAMESPACE::BlendOp colorBlendOp_ ) VULKAN_HPP_NOEXCEPT - { - colorBlendOp = colorBlendOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setSrcAlphaBlendFactor( VULKAN_HPP_NAMESPACE::BlendFactor srcAlphaBlendFactor_ ) VULKAN_HPP_NOEXCEPT - { - srcAlphaBlendFactor = srcAlphaBlendFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setDstAlphaBlendFactor( VULKAN_HPP_NAMESPACE::BlendFactor dstAlphaBlendFactor_ ) VULKAN_HPP_NOEXCEPT - { - dstAlphaBlendFactor = dstAlphaBlendFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setAlphaBlendOp( VULKAN_HPP_NAMESPACE::BlendOp alphaBlendOp_ ) VULKAN_HPP_NOEXCEPT - { - alphaBlendOp = alphaBlendOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAttachmentState & - setColorWriteMask( VULKAN_HPP_NAMESPACE::ColorComponentFlags colorWriteMask_ ) VULKAN_HPP_NOEXCEPT - { - colorWriteMask = colorWriteMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineColorBlendAttachmentState const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineColorBlendAttachmentState &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( blendEnable, - srcColorBlendFactor, - dstColorBlendFactor, - colorBlendOp, - srcAlphaBlendFactor, - dstAlphaBlendFactor, - alphaBlendOp, - colorWriteMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineColorBlendAttachmentState const & ) const = default; -#else - bool operator==( PipelineColorBlendAttachmentState const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( blendEnable == rhs.blendEnable ) && ( srcColorBlendFactor == rhs.srcColorBlendFactor ) && - ( dstColorBlendFactor == rhs.dstColorBlendFactor ) && ( colorBlendOp == rhs.colorBlendOp ) && - ( srcAlphaBlendFactor == rhs.srcAlphaBlendFactor ) && ( dstAlphaBlendFactor == rhs.dstAlphaBlendFactor ) && - ( alphaBlendOp == rhs.alphaBlendOp ) && ( colorWriteMask == rhs.colorWriteMask ); -# endif - } - - bool operator!=( PipelineColorBlendAttachmentState const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Bool32 blendEnable = {}; - VULKAN_HPP_NAMESPACE::BlendFactor srcColorBlendFactor = VULKAN_HPP_NAMESPACE::BlendFactor::eZero; - VULKAN_HPP_NAMESPACE::BlendFactor dstColorBlendFactor = VULKAN_HPP_NAMESPACE::BlendFactor::eZero; - VULKAN_HPP_NAMESPACE::BlendOp colorBlendOp = VULKAN_HPP_NAMESPACE::BlendOp::eAdd; - VULKAN_HPP_NAMESPACE::BlendFactor srcAlphaBlendFactor = VULKAN_HPP_NAMESPACE::BlendFactor::eZero; - VULKAN_HPP_NAMESPACE::BlendFactor dstAlphaBlendFactor = VULKAN_HPP_NAMESPACE::BlendFactor::eZero; - VULKAN_HPP_NAMESPACE::BlendOp alphaBlendOp = VULKAN_HPP_NAMESPACE::BlendOp::eAdd; - VULKAN_HPP_NAMESPACE::ColorComponentFlags colorWriteMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState ) == - sizeof( VkPipelineColorBlendAttachmentState ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineColorBlendAttachmentState is not nothrow_move_constructible!" ); - - struct PipelineColorBlendStateCreateInfo - { - using NativeType = VkPipelineColorBlendStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineColorBlendStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 logicOpEnable_ = {}, - VULKAN_HPP_NAMESPACE::LogicOp logicOp_ = VULKAN_HPP_NAMESPACE::LogicOp::eClear, - uint32_t attachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState * pAttachments_ = {}, - std::array const & blendConstants_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , logicOpEnable( logicOpEnable_ ) - , logicOp( logicOp_ ) - , attachmentCount( attachmentCount_ ) - , pAttachments( pAttachments_ ) - , blendConstants( blendConstants_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PipelineColorBlendStateCreateInfo( PipelineColorBlendStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorBlendStateCreateInfo( VkPipelineColorBlendStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineColorBlendStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineColorBlendStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateFlags flags_, - VULKAN_HPP_NAMESPACE::Bool32 logicOpEnable_, - VULKAN_HPP_NAMESPACE::LogicOp logicOp_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState> const & attachments_, - std::array const & blendConstants_ = {} ) - : flags( flags_ ) - , logicOpEnable( logicOpEnable_ ) - , logicOp( logicOp_ ) - , attachmentCount( static_cast( attachments_.size() ) ) - , pAttachments( attachments_.data() ) - , blendConstants( blendConstants_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineColorBlendStateCreateInfo & - operator=( PipelineColorBlendStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorBlendStateCreateInfo & operator=( VkPipelineColorBlendStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & - setLogicOpEnable( VULKAN_HPP_NAMESPACE::Bool32 logicOpEnable_ ) VULKAN_HPP_NOEXCEPT - { - logicOpEnable = logicOpEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & - setLogicOp( VULKAN_HPP_NAMESPACE::LogicOp logicOp_ ) VULKAN_HPP_NOEXCEPT - { - logicOp = logicOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & - setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = attachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & setPAttachments( - const VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState * pAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pAttachments = pAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineColorBlendStateCreateInfo & setAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState> const & attachments_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = static_cast( attachments_.size() ); - pAttachments = attachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendStateCreateInfo & - setBlendConstants( std::array blendConstants_ ) VULKAN_HPP_NOEXCEPT - { - blendConstants = blendConstants_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineColorBlendStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineColorBlendStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, logicOpEnable, logicOp, attachmentCount, pAttachments, blendConstants ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineColorBlendStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineColorBlendStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( logicOpEnable == rhs.logicOpEnable ) && ( logicOp == rhs.logicOp ) && - ( attachmentCount == rhs.attachmentCount ) && ( pAttachments == rhs.pAttachments ) && - ( blendConstants == rhs.blendConstants ); -# endif - } - - bool operator!=( PipelineColorBlendStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineColorBlendStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::Bool32 logicOpEnable = {}; - VULKAN_HPP_NAMESPACE::LogicOp logicOp = VULKAN_HPP_NAMESPACE::LogicOp::eClear; - uint32_t attachmentCount = {}; - const VULKAN_HPP_NAMESPACE::PipelineColorBlendAttachmentState * pAttachments = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D blendConstants = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateInfo ) == - sizeof( VkPipelineColorBlendStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineColorBlendStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineColorBlendStateCreateInfo; - }; - - struct PipelineDynamicStateCreateInfo - { - using NativeType = VkPipelineDynamicStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineDynamicStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineDynamicStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateFlags flags_ = {}, - uint32_t dynamicStateCount_ = {}, - const VULKAN_HPP_NAMESPACE::DynamicState * pDynamicStates_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , dynamicStateCount( dynamicStateCount_ ) - , pDynamicStates( pDynamicStates_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineDynamicStateCreateInfo( PipelineDynamicStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineDynamicStateCreateInfo( VkPipelineDynamicStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineDynamicStateCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineDynamicStateCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & dynamicStates_ ) - : flags( flags_ ) - , dynamicStateCount( static_cast( dynamicStates_.size() ) ) - , pDynamicStates( dynamicStates_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineDynamicStateCreateInfo & - operator=( PipelineDynamicStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineDynamicStateCreateInfo & operator=( VkPipelineDynamicStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineDynamicStateCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDynamicStateCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDynamicStateCreateInfo & - setDynamicStateCount( uint32_t dynamicStateCount_ ) VULKAN_HPP_NOEXCEPT - { - dynamicStateCount = dynamicStateCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDynamicStateCreateInfo & - setPDynamicStates( const VULKAN_HPP_NAMESPACE::DynamicState * pDynamicStates_ ) VULKAN_HPP_NOEXCEPT - { - pDynamicStates = pDynamicStates_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineDynamicStateCreateInfo & setDynamicStates( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & dynamicStates_ ) - VULKAN_HPP_NOEXCEPT - { - dynamicStateCount = static_cast( dynamicStates_.size() ); - pDynamicStates = dynamicStates_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineDynamicStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineDynamicStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, dynamicStateCount, pDynamicStates ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineDynamicStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineDynamicStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( dynamicStateCount == rhs.dynamicStateCount ) && ( pDynamicStates == rhs.pDynamicStates ); -# endif - } - - bool operator!=( PipelineDynamicStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineDynamicStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateFlags flags = {}; - uint32_t dynamicStateCount = {}; - const VULKAN_HPP_NAMESPACE::DynamicState * pDynamicStates = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo ) == - sizeof( VkPipelineDynamicStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineDynamicStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineDynamicStateCreateInfo; - }; - - struct GraphicsPipelineCreateInfo - { - using NativeType = VkGraphicsPipelineCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eGraphicsPipelineCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ = {}, - uint32_t stageCount_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateInfo * pInputAssemblyState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateInfo * pViewportState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateInfo * pRasterizationState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateInfo * pMultisampleState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo * pDepthStencilState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateInfo * pColorBlendState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {}, - uint32_t subpass_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , stageCount( stageCount_ ) - , pStages( pStages_ ) - , pVertexInputState( pVertexInputState_ ) - , pInputAssemblyState( pInputAssemblyState_ ) - , pTessellationState( pTessellationState_ ) - , pViewportState( pViewportState_ ) - , pRasterizationState( pRasterizationState_ ) - , pMultisampleState( pMultisampleState_ ) - , pDepthStencilState( pDepthStencilState_ ) - , pColorBlendState( pColorBlendState_ ) - , pDynamicState( pDynamicState_ ) - , layout( layout_ ) - , renderPass( renderPass_ ) - , subpass( subpass_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - GraphicsPipelineCreateInfo( GraphicsPipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GraphicsPipelineCreateInfo( VkGraphicsPipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : GraphicsPipelineCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsPipelineCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_, - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateInfo * pInputAssemblyState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateInfo * pViewportState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateInfo * pRasterizationState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateInfo * pMultisampleState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo * pDepthStencilState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateInfo * pColorBlendState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {}, - uint32_t subpass_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) - : flags( flags_ ) - , stageCount( static_cast( stages_.size() ) ) - , pStages( stages_.data() ) - , pVertexInputState( pVertexInputState_ ) - , pInputAssemblyState( pInputAssemblyState_ ) - , pTessellationState( pTessellationState_ ) - , pViewportState( pViewportState_ ) - , pRasterizationState( pRasterizationState_ ) - , pMultisampleState( pMultisampleState_ ) - , pDepthStencilState( pDepthStencilState_ ) - , pColorBlendState( pColorBlendState_ ) - , pDynamicState( pDynamicState_ ) - , layout( layout_ ) - , renderPass( renderPass_ ) - , subpass( subpass_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GraphicsPipelineCreateInfo & operator=( GraphicsPipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GraphicsPipelineCreateInfo & operator=( VkGraphicsPipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setStageCount( uint32_t stageCount_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = stageCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & - setPStages( const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ ) VULKAN_HPP_NOEXCEPT - { - pStages = pStages_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsPipelineCreateInfo & setStages( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = static_cast( stages_.size() ); - pStages = stages_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPVertexInputState( - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState_ ) VULKAN_HPP_NOEXCEPT - { - pVertexInputState = pVertexInputState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPInputAssemblyState( - const VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateInfo * pInputAssemblyState_ ) VULKAN_HPP_NOEXCEPT - { - pInputAssemblyState = pInputAssemblyState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPTessellationState( - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState_ ) VULKAN_HPP_NOEXCEPT - { - pTessellationState = pTessellationState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPViewportState( - const VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateInfo * pViewportState_ ) VULKAN_HPP_NOEXCEPT - { - pViewportState = pViewportState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPRasterizationState( - const VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateInfo * pRasterizationState_ ) VULKAN_HPP_NOEXCEPT - { - pRasterizationState = pRasterizationState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPMultisampleState( - const VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateInfo * pMultisampleState_ ) VULKAN_HPP_NOEXCEPT - { - pMultisampleState = pMultisampleState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPDepthStencilState( - const VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo * pDepthStencilState_ ) VULKAN_HPP_NOEXCEPT - { - pDepthStencilState = pDepthStencilState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPColorBlendState( - const VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateInfo * pColorBlendState_ ) VULKAN_HPP_NOEXCEPT - { - pColorBlendState = pColorBlendState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setPDynamicState( - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState_ ) VULKAN_HPP_NOEXCEPT - { - pDynamicState = pDynamicState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & - setLayout( VULKAN_HPP_NAMESPACE::PipelineLayout layout_ ) VULKAN_HPP_NOEXCEPT - { - layout = layout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & - setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT - { - renderPass = renderPass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT - { - subpass = subpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & - setBasePipelineHandle( VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineHandle = basePipelineHandle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineCreateInfo & - setBasePipelineIndex( int32_t basePipelineIndex_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineIndex = basePipelineIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGraphicsPipelineCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGraphicsPipelineCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - stageCount, - pStages, - pVertexInputState, - pInputAssemblyState, - pTessellationState, - pViewportState, - pRasterizationState, - pMultisampleState, - pDepthStencilState, - pColorBlendState, - pDynamicState, - layout, - renderPass, - subpass, - basePipelineHandle, - basePipelineIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GraphicsPipelineCreateInfo const & ) const = default; -#else - bool operator==( GraphicsPipelineCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( stageCount == rhs.stageCount ) && ( pStages == rhs.pStages ) && - ( pVertexInputState == rhs.pVertexInputState ) && ( pInputAssemblyState == rhs.pInputAssemblyState ) && - ( pTessellationState == rhs.pTessellationState ) && ( pViewportState == rhs.pViewportState ) && - ( pRasterizationState == rhs.pRasterizationState ) && ( pMultisampleState == rhs.pMultisampleState ) && - ( pDepthStencilState == rhs.pDepthStencilState ) && ( pColorBlendState == rhs.pColorBlendState ) && - ( pDynamicState == rhs.pDynamicState ) && ( layout == rhs.layout ) && ( renderPass == rhs.renderPass ) && - ( subpass == rhs.subpass ) && ( basePipelineHandle == rhs.basePipelineHandle ) && - ( basePipelineIndex == rhs.basePipelineIndex ); -# endif - } - - bool operator!=( GraphicsPipelineCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGraphicsPipelineCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags = {}; - uint32_t stageCount = {}; - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages = {}; - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState = {}; - const VULKAN_HPP_NAMESPACE::PipelineInputAssemblyStateCreateInfo * pInputAssemblyState = {}; - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState = {}; - const VULKAN_HPP_NAMESPACE::PipelineViewportStateCreateInfo * pViewportState = {}; - const VULKAN_HPP_NAMESPACE::PipelineRasterizationStateCreateInfo * pRasterizationState = {}; - const VULKAN_HPP_NAMESPACE::PipelineMultisampleStateCreateInfo * pMultisampleState = {}; - const VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo * pDepthStencilState = {}; - const VULKAN_HPP_NAMESPACE::PipelineColorBlendStateCreateInfo * pColorBlendState = {}; - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState = {}; - VULKAN_HPP_NAMESPACE::PipelineLayout layout = {}; - VULKAN_HPP_NAMESPACE::RenderPass renderPass = {}; - uint32_t subpass = {}; - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle = {}; - int32_t basePipelineIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GraphicsPipelineCreateInfo ) == - sizeof( VkGraphicsPipelineCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "GraphicsPipelineCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GraphicsPipelineCreateInfo; - }; - - struct GraphicsShaderGroupCreateInfoNV - { - using NativeType = VkGraphicsShaderGroupCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eGraphicsShaderGroupCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GraphicsShaderGroupCreateInfoNV( - uint32_t stageCount_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState_ = {} ) VULKAN_HPP_NOEXCEPT - : stageCount( stageCount_ ) - , pStages( pStages_ ) - , pVertexInputState( pVertexInputState_ ) - , pTessellationState( pTessellationState_ ) - {} - - VULKAN_HPP_CONSTEXPR - GraphicsShaderGroupCreateInfoNV( GraphicsShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GraphicsShaderGroupCreateInfoNV( VkGraphicsShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : GraphicsShaderGroupCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsShaderGroupCreateInfoNV( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_, - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState_ = {} ) - : stageCount( static_cast( stages_.size() ) ) - , pStages( stages_.data() ) - , pVertexInputState( pVertexInputState_ ) - , pTessellationState( pTessellationState_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GraphicsShaderGroupCreateInfoNV & - operator=( GraphicsShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GraphicsShaderGroupCreateInfoNV & operator=( VkGraphicsShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GraphicsShaderGroupCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsShaderGroupCreateInfoNV & setStageCount( uint32_t stageCount_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = stageCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsShaderGroupCreateInfoNV & - setPStages( const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ ) VULKAN_HPP_NOEXCEPT - { - pStages = pStages_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsShaderGroupCreateInfoNV & setStages( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = static_cast( stages_.size() ); - pStages = stages_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 GraphicsShaderGroupCreateInfoNV & setPVertexInputState( - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState_ ) VULKAN_HPP_NOEXCEPT - { - pVertexInputState = pVertexInputState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsShaderGroupCreateInfoNV & setPTessellationState( - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState_ ) VULKAN_HPP_NOEXCEPT - { - pTessellationState = pTessellationState_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGraphicsShaderGroupCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGraphicsShaderGroupCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stageCount, pStages, pVertexInputState, pTessellationState ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GraphicsShaderGroupCreateInfoNV const & ) const = default; -#else - bool operator==( GraphicsShaderGroupCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stageCount == rhs.stageCount ) && - ( pStages == rhs.pStages ) && ( pVertexInputState == rhs.pVertexInputState ) && - ( pTessellationState == rhs.pTessellationState ); -# endif - } - - bool operator!=( GraphicsShaderGroupCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGraphicsShaderGroupCreateInfoNV; - const void * pNext = {}; - uint32_t stageCount = {}; - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages = {}; - const VULKAN_HPP_NAMESPACE::PipelineVertexInputStateCreateInfo * pVertexInputState = {}; - const VULKAN_HPP_NAMESPACE::PipelineTessellationStateCreateInfo * pTessellationState = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GraphicsShaderGroupCreateInfoNV ) == - sizeof( VkGraphicsShaderGroupCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "GraphicsShaderGroupCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GraphicsShaderGroupCreateInfoNV; - }; - - struct GraphicsPipelineShaderGroupsCreateInfoNV - { - using NativeType = VkGraphicsPipelineShaderGroupsCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eGraphicsPipelineShaderGroupsCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR GraphicsPipelineShaderGroupsCreateInfoNV( - uint32_t groupCount_ = {}, - const VULKAN_HPP_NAMESPACE::GraphicsShaderGroupCreateInfoNV * pGroups_ = {}, - uint32_t pipelineCount_ = {}, - const VULKAN_HPP_NAMESPACE::Pipeline * pPipelines_ = {} ) VULKAN_HPP_NOEXCEPT - : groupCount( groupCount_ ) - , pGroups( pGroups_ ) - , pipelineCount( pipelineCount_ ) - , pPipelines( pPipelines_ ) - {} - - VULKAN_HPP_CONSTEXPR GraphicsPipelineShaderGroupsCreateInfoNV( - GraphicsPipelineShaderGroupsCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GraphicsPipelineShaderGroupsCreateInfoNV( VkGraphicsPipelineShaderGroupsCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : GraphicsPipelineShaderGroupsCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsPipelineShaderGroupsCreateInfoNV( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - groups_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pipelines_ = {} ) - : groupCount( static_cast( groups_.size() ) ) - , pGroups( groups_.data() ) - , pipelineCount( static_cast( pipelines_.size() ) ) - , pPipelines( pipelines_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - GraphicsPipelineShaderGroupsCreateInfoNV & - operator=( GraphicsPipelineShaderGroupsCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - GraphicsPipelineShaderGroupsCreateInfoNV & - operator=( VkGraphicsPipelineShaderGroupsCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineShaderGroupsCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineShaderGroupsCreateInfoNV & - setGroupCount( uint32_t groupCount_ ) VULKAN_HPP_NOEXCEPT - { - groupCount = groupCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineShaderGroupsCreateInfoNV & - setPGroups( const VULKAN_HPP_NAMESPACE::GraphicsShaderGroupCreateInfoNV * pGroups_ ) VULKAN_HPP_NOEXCEPT - { - pGroups = pGroups_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsPipelineShaderGroupsCreateInfoNV & setGroups( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - groups_ ) VULKAN_HPP_NOEXCEPT - { - groupCount = static_cast( groups_.size() ); - pGroups = groups_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineShaderGroupsCreateInfoNV & - setPipelineCount( uint32_t pipelineCount_ ) VULKAN_HPP_NOEXCEPT - { - pipelineCount = pipelineCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 GraphicsPipelineShaderGroupsCreateInfoNV & - setPPipelines( const VULKAN_HPP_NAMESPACE::Pipeline * pPipelines_ ) VULKAN_HPP_NOEXCEPT - { - pPipelines = pPipelines_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - GraphicsPipelineShaderGroupsCreateInfoNV & setPipelines( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pipelines_ ) - VULKAN_HPP_NOEXCEPT - { - pipelineCount = static_cast( pipelines_.size() ); - pPipelines = pipelines_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkGraphicsPipelineShaderGroupsCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkGraphicsPipelineShaderGroupsCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, groupCount, pGroups, pipelineCount, pPipelines ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( GraphicsPipelineShaderGroupsCreateInfoNV const & ) const = default; -#else - bool operator==( GraphicsPipelineShaderGroupsCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( groupCount == rhs.groupCount ) && - ( pGroups == rhs.pGroups ) && ( pipelineCount == rhs.pipelineCount ) && ( pPipelines == rhs.pPipelines ); -# endif - } - - bool operator!=( GraphicsPipelineShaderGroupsCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGraphicsPipelineShaderGroupsCreateInfoNV; - const void * pNext = {}; - uint32_t groupCount = {}; - const VULKAN_HPP_NAMESPACE::GraphicsShaderGroupCreateInfoNV * pGroups = {}; - uint32_t pipelineCount = {}; - const VULKAN_HPP_NAMESPACE::Pipeline * pPipelines = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::GraphicsPipelineShaderGroupsCreateInfoNV ) == - sizeof( VkGraphicsPipelineShaderGroupsCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "GraphicsPipelineShaderGroupsCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = GraphicsPipelineShaderGroupsCreateInfoNV; - }; - - struct XYColorEXT - { - using NativeType = VkXYColorEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR XYColorEXT( float x_ = {}, float y_ = {} ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - {} - - VULKAN_HPP_CONSTEXPR XYColorEXT( XYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - XYColorEXT( VkXYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : XYColorEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - XYColorEXT & operator=( XYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - XYColorEXT & operator=( VkXYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 XYColorEXT & setX( float x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XYColorEXT & setY( float y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkXYColorEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkXYColorEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( XYColorEXT const & ) const = default; -#else - bool operator==( XYColorEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ); -# endif - } - - bool operator!=( XYColorEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float x = {}; - float y = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::XYColorEXT ) == sizeof( VkXYColorEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "XYColorEXT is not nothrow_move_constructible!" ); - - struct HdrMetadataEXT - { - using NativeType = VkHdrMetadataEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eHdrMetadataEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR HdrMetadataEXT( VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryRed_ = {}, - VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryGreen_ = {}, - VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryBlue_ = {}, - VULKAN_HPP_NAMESPACE::XYColorEXT whitePoint_ = {}, - float maxLuminance_ = {}, - float minLuminance_ = {}, - float maxContentLightLevel_ = {}, - float maxFrameAverageLightLevel_ = {} ) VULKAN_HPP_NOEXCEPT - : displayPrimaryRed( displayPrimaryRed_ ) - , displayPrimaryGreen( displayPrimaryGreen_ ) - , displayPrimaryBlue( displayPrimaryBlue_ ) - , whitePoint( whitePoint_ ) - , maxLuminance( maxLuminance_ ) - , minLuminance( minLuminance_ ) - , maxContentLightLevel( maxContentLightLevel_ ) - , maxFrameAverageLightLevel( maxFrameAverageLightLevel_ ) - {} - - VULKAN_HPP_CONSTEXPR HdrMetadataEXT( HdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - HdrMetadataEXT( VkHdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : HdrMetadataEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - HdrMetadataEXT & operator=( HdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - HdrMetadataEXT & operator=( VkHdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & - setDisplayPrimaryRed( VULKAN_HPP_NAMESPACE::XYColorEXT const & displayPrimaryRed_ ) VULKAN_HPP_NOEXCEPT - { - displayPrimaryRed = displayPrimaryRed_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & - setDisplayPrimaryGreen( VULKAN_HPP_NAMESPACE::XYColorEXT const & displayPrimaryGreen_ ) VULKAN_HPP_NOEXCEPT - { - displayPrimaryGreen = displayPrimaryGreen_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & - setDisplayPrimaryBlue( VULKAN_HPP_NAMESPACE::XYColorEXT const & displayPrimaryBlue_ ) VULKAN_HPP_NOEXCEPT - { - displayPrimaryBlue = displayPrimaryBlue_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & - setWhitePoint( VULKAN_HPP_NAMESPACE::XYColorEXT const & whitePoint_ ) VULKAN_HPP_NOEXCEPT - { - whitePoint = whitePoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & setMaxLuminance( float maxLuminance_ ) VULKAN_HPP_NOEXCEPT - { - maxLuminance = maxLuminance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & setMinLuminance( float minLuminance_ ) VULKAN_HPP_NOEXCEPT - { - minLuminance = minLuminance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & setMaxContentLightLevel( float maxContentLightLevel_ ) VULKAN_HPP_NOEXCEPT - { - maxContentLightLevel = maxContentLightLevel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HdrMetadataEXT & - setMaxFrameAverageLightLevel( float maxFrameAverageLightLevel_ ) VULKAN_HPP_NOEXCEPT - { - maxFrameAverageLightLevel = maxFrameAverageLightLevel_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkHdrMetadataEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkHdrMetadataEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - displayPrimaryRed, - displayPrimaryGreen, - displayPrimaryBlue, - whitePoint, - maxLuminance, - minLuminance, - maxContentLightLevel, - maxFrameAverageLightLevel ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( HdrMetadataEXT const & ) const = default; -#else - bool operator==( HdrMetadataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( displayPrimaryRed == rhs.displayPrimaryRed ) && - ( displayPrimaryGreen == rhs.displayPrimaryGreen ) && ( displayPrimaryBlue == rhs.displayPrimaryBlue ) && - ( whitePoint == rhs.whitePoint ) && ( maxLuminance == rhs.maxLuminance ) && - ( minLuminance == rhs.minLuminance ) && ( maxContentLightLevel == rhs.maxContentLightLevel ) && - ( maxFrameAverageLightLevel == rhs.maxFrameAverageLightLevel ); -# endif - } - - bool operator!=( HdrMetadataEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eHdrMetadataEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryRed = {}; - VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryGreen = {}; - VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryBlue = {}; - VULKAN_HPP_NAMESPACE::XYColorEXT whitePoint = {}; - float maxLuminance = {}; - float minLuminance = {}; - float maxContentLightLevel = {}; - float maxFrameAverageLightLevel = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::HdrMetadataEXT ) == sizeof( VkHdrMetadataEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "HdrMetadataEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = HdrMetadataEXT; - }; - - struct HeadlessSurfaceCreateInfoEXT - { - using NativeType = VkHeadlessSurfaceCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eHeadlessSurfaceCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR HeadlessSurfaceCreateInfoEXT( VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateFlagsEXT flags_ = {} ) - VULKAN_HPP_NOEXCEPT : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - HeadlessSurfaceCreateInfoEXT( HeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - HeadlessSurfaceCreateInfoEXT( VkHeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : HeadlessSurfaceCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - HeadlessSurfaceCreateInfoEXT & operator=( HeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - HeadlessSurfaceCreateInfoEXT & operator=( VkHeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 HeadlessSurfaceCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 HeadlessSurfaceCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkHeadlessSurfaceCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkHeadlessSurfaceCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( HeadlessSurfaceCreateInfoEXT const & ) const = default; -#else - bool operator==( HeadlessSurfaceCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( HeadlessSurfaceCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eHeadlessSurfaceCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateFlagsEXT flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT ) == - sizeof( VkHeadlessSurfaceCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "HeadlessSurfaceCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = HeadlessSurfaceCreateInfoEXT; - }; - -#if defined( VK_USE_PLATFORM_IOS_MVK ) - struct IOSSurfaceCreateInfoMVK - { - using NativeType = VkIOSSurfaceCreateInfoMVK; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eIosSurfaceCreateInfoMVK; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR IOSSurfaceCreateInfoMVK( VULKAN_HPP_NAMESPACE::IOSSurfaceCreateFlagsMVK flags_ = {}, - const void * pView_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pView( pView_ ) - {} - - VULKAN_HPP_CONSTEXPR IOSSurfaceCreateInfoMVK( IOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IOSSurfaceCreateInfoMVK( VkIOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT - : IOSSurfaceCreateInfoMVK( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - IOSSurfaceCreateInfoMVK & operator=( IOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IOSSurfaceCreateInfoMVK & operator=( VkIOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 IOSSurfaceCreateInfoMVK & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IOSSurfaceCreateInfoMVK & - setFlags( VULKAN_HPP_NAMESPACE::IOSSurfaceCreateFlagsMVK flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IOSSurfaceCreateInfoMVK & setPView( const void * pView_ ) VULKAN_HPP_NOEXCEPT - { - pView = pView_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkIOSSurfaceCreateInfoMVK const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkIOSSurfaceCreateInfoMVK &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pView ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( IOSSurfaceCreateInfoMVK const & ) const = default; -# else - bool operator==( IOSSurfaceCreateInfoMVK const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( pView == rhs.pView ); -# endif - } - - bool operator!=( IOSSurfaceCreateInfoMVK const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eIosSurfaceCreateInfoMVK; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::IOSSurfaceCreateFlagsMVK flags = {}; - const void * pView = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK ) == - sizeof( VkIOSSurfaceCreateInfoMVK ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "IOSSurfaceCreateInfoMVK is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = IOSSurfaceCreateInfoMVK; - }; -#endif /*VK_USE_PLATFORM_IOS_MVK*/ - - struct ImageBlit - { - using NativeType = VkImageBlit; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - ImageBlit( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource_ = {}, - std::array const & srcOffsets_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource_ = {}, - std::array const & dstOffsets_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubresource( srcSubresource_ ) - , srcOffsets( srcOffsets_ ) - , dstSubresource( dstSubresource_ ) - , dstOffsets( dstOffsets_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 ImageBlit( ImageBlit const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageBlit( VkImageBlit const & rhs ) VULKAN_HPP_NOEXCEPT : ImageBlit( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageBlit & operator=( ImageBlit const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageBlit & operator=( VkImageBlit const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageBlit & - setSrcSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & srcSubresource_ ) VULKAN_HPP_NOEXCEPT - { - srcSubresource = srcSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit & - setSrcOffsets( std::array const & srcOffsets_ ) VULKAN_HPP_NOEXCEPT - { - srcOffsets = srcOffsets_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit & - setDstSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & dstSubresource_ ) VULKAN_HPP_NOEXCEPT - { - dstSubresource = dstSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageBlit & - setDstOffsets( std::array const & dstOffsets_ ) VULKAN_HPP_NOEXCEPT - { - dstOffsets = dstOffsets_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageBlit const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageBlit &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( srcSubresource, srcOffsets, dstSubresource, dstOffsets ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageBlit const & ) const = default; -#else - bool operator==( ImageBlit const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( srcSubresource == rhs.srcSubresource ) && ( srcOffsets == rhs.srcOffsets ) && - ( dstSubresource == rhs.dstSubresource ) && ( dstOffsets == rhs.dstOffsets ); -# endif - } - - bool operator!=( ImageBlit const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D srcOffsets = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D dstOffsets = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageBlit ) == sizeof( VkImageBlit ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageBlit is not nothrow_move_constructible!" ); - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct ImageFormatConstraintsInfoFUCHSIA - { - using NativeType = VkImageFormatConstraintsInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImageFormatConstraintsInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageFormatConstraintsInfoFUCHSIA( - VULKAN_HPP_NAMESPACE::ImageCreateInfo imageCreateInfo_ = {}, - VULKAN_HPP_NAMESPACE::FormatFeatureFlags requiredFormatFeatures_ = {}, - VULKAN_HPP_NAMESPACE::ImageFormatConstraintsFlagsFUCHSIA flags_ = {}, - uint64_t sysmemPixelFormat_ = {}, - uint32_t colorSpaceCount_ = {}, - const VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA * pColorSpaces_ = {} ) VULKAN_HPP_NOEXCEPT - : imageCreateInfo( imageCreateInfo_ ) - , requiredFormatFeatures( requiredFormatFeatures_ ) - , flags( flags_ ) - , sysmemPixelFormat( sysmemPixelFormat_ ) - , colorSpaceCount( colorSpaceCount_ ) - , pColorSpaces( pColorSpaces_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageFormatConstraintsInfoFUCHSIA( ImageFormatConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatConstraintsInfoFUCHSIA( VkImageFormatConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageFormatConstraintsInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageFormatConstraintsInfoFUCHSIA & - operator=( ImageFormatConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatConstraintsInfoFUCHSIA & operator=( VkImageFormatConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & - setImageCreateInfo( VULKAN_HPP_NAMESPACE::ImageCreateInfo const & imageCreateInfo_ ) VULKAN_HPP_NOEXCEPT - { - imageCreateInfo = imageCreateInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & - setRequiredFormatFeatures( VULKAN_HPP_NAMESPACE::FormatFeatureFlags requiredFormatFeatures_ ) VULKAN_HPP_NOEXCEPT - { - requiredFormatFeatures = requiredFormatFeatures_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & - setFlags( VULKAN_HPP_NAMESPACE::ImageFormatConstraintsFlagsFUCHSIA flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & - setSysmemPixelFormat( uint64_t sysmemPixelFormat_ ) VULKAN_HPP_NOEXCEPT - { - sysmemPixelFormat = sysmemPixelFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & - setColorSpaceCount( uint32_t colorSpaceCount_ ) VULKAN_HPP_NOEXCEPT - { - colorSpaceCount = colorSpaceCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatConstraintsInfoFUCHSIA & - setPColorSpaces( const VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA * pColorSpaces_ ) VULKAN_HPP_NOEXCEPT - { - pColorSpaces = pColorSpaces_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageFormatConstraintsInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageFormatConstraintsInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - imageCreateInfo, - requiredFormatFeatures, - flags, - sysmemPixelFormat, - colorSpaceCount, - pColorSpaces ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageFormatConstraintsInfoFUCHSIA const & ) const = default; -# else - bool operator==( ImageFormatConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageCreateInfo == rhs.imageCreateInfo ) && - ( requiredFormatFeatures == rhs.requiredFormatFeatures ) && ( flags == rhs.flags ) && - ( sysmemPixelFormat == rhs.sysmemPixelFormat ) && ( colorSpaceCount == rhs.colorSpaceCount ) && - ( pColorSpaces == rhs.pColorSpaces ); -# endif - } - - bool operator!=( ImageFormatConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageFormatConstraintsInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageCreateInfo imageCreateInfo = {}; - VULKAN_HPP_NAMESPACE::FormatFeatureFlags requiredFormatFeatures = {}; - VULKAN_HPP_NAMESPACE::ImageFormatConstraintsFlagsFUCHSIA flags = {}; - uint64_t sysmemPixelFormat = {}; - uint32_t colorSpaceCount = {}; - const VULKAN_HPP_NAMESPACE::SysmemColorSpaceFUCHSIA * pColorSpaces = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA ) == - sizeof( VkImageFormatConstraintsInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageFormatConstraintsInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageFormatConstraintsInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct ImageConstraintsInfoFUCHSIA - { - using NativeType = VkImageConstraintsInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageConstraintsInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageConstraintsInfoFUCHSIA( - uint32_t formatConstraintsCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA * pFormatConstraints_ = {}, - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints_ = {}, - VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFlagsFUCHSIA flags_ = {} ) VULKAN_HPP_NOEXCEPT - : formatConstraintsCount( formatConstraintsCount_ ) - , pFormatConstraints( pFormatConstraints_ ) - , bufferCollectionConstraints( bufferCollectionConstraints_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageConstraintsInfoFUCHSIA( ImageConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageConstraintsInfoFUCHSIA( VkImageConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageConstraintsInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageConstraintsInfoFUCHSIA( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA> const & formatConstraints_, - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints_ = {}, - VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFlagsFUCHSIA flags_ = {} ) - : formatConstraintsCount( static_cast( formatConstraints_.size() ) ) - , pFormatConstraints( formatConstraints_.data() ) - , bufferCollectionConstraints( bufferCollectionConstraints_ ) - , flags( flags_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageConstraintsInfoFUCHSIA & operator=( ImageConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageConstraintsInfoFUCHSIA & operator=( VkImageConstraintsInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageConstraintsInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageConstraintsInfoFUCHSIA & - setFormatConstraintsCount( uint32_t formatConstraintsCount_ ) VULKAN_HPP_NOEXCEPT - { - formatConstraintsCount = formatConstraintsCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageConstraintsInfoFUCHSIA & setPFormatConstraints( - const VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA * pFormatConstraints_ ) VULKAN_HPP_NOEXCEPT - { - pFormatConstraints = pFormatConstraints_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageConstraintsInfoFUCHSIA & setFormatConstraints( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA> const & formatConstraints_ ) VULKAN_HPP_NOEXCEPT - { - formatConstraintsCount = static_cast( formatConstraints_.size() ); - pFormatConstraints = formatConstraints_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 ImageConstraintsInfoFUCHSIA & setBufferCollectionConstraints( - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA const & bufferCollectionConstraints_ ) - VULKAN_HPP_NOEXCEPT - { - bufferCollectionConstraints = bufferCollectionConstraints_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageConstraintsInfoFUCHSIA & - setFlags( VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFlagsFUCHSIA flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageConstraintsInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageConstraintsInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, formatConstraintsCount, pFormatConstraints, bufferCollectionConstraints, flags ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageConstraintsInfoFUCHSIA const & ) const = default; -# else - bool operator==( ImageConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( formatConstraintsCount == rhs.formatConstraintsCount ) && - ( pFormatConstraints == rhs.pFormatConstraints ) && - ( bufferCollectionConstraints == rhs.bufferCollectionConstraints ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( ImageConstraintsInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageConstraintsInfoFUCHSIA; - const void * pNext = {}; - uint32_t formatConstraintsCount = {}; - const VULKAN_HPP_NAMESPACE::ImageFormatConstraintsInfoFUCHSIA * pFormatConstraints = {}; - VULKAN_HPP_NAMESPACE::BufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints = {}; - VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFlagsFUCHSIA flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageConstraintsInfoFUCHSIA ) == - sizeof( VkImageConstraintsInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageConstraintsInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageConstraintsInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct ImageCopy - { - using NativeType = VkImageCopy; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageCopy( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D srcOffset_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D dstOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D extent_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubresource( srcSubresource_ ) - , srcOffset( srcOffset_ ) - , dstSubresource( dstSubresource_ ) - , dstOffset( dstOffset_ ) - , extent( extent_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageCopy( ImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageCopy( VkImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT : ImageCopy( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageCopy & operator=( ImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageCopy & operator=( VkImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageCopy & - setSrcSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & srcSubresource_ ) VULKAN_HPP_NOEXCEPT - { - srcSubresource = srcSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy & - setSrcOffset( VULKAN_HPP_NAMESPACE::Offset3D const & srcOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcOffset = srcOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy & - setDstSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & dstSubresource_ ) VULKAN_HPP_NOEXCEPT - { - dstSubresource = dstSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy & - setDstOffset( VULKAN_HPP_NAMESPACE::Offset3D const & dstOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstOffset = dstOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageCopy & setExtent( VULKAN_HPP_NAMESPACE::Extent3D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageCopy const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageCopy &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( srcSubresource, srcOffset, dstSubresource, dstOffset, extent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageCopy const & ) const = default; -#else - bool operator==( ImageCopy const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( srcSubresource == rhs.srcSubresource ) && ( srcOffset == rhs.srcOffset ) && - ( dstSubresource == rhs.dstSubresource ) && ( dstOffset == rhs.dstOffset ) && ( extent == rhs.extent ); -# endif - } - - bool operator!=( ImageCopy const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D srcOffset = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D dstOffset = {}; - VULKAN_HPP_NAMESPACE::Extent3D extent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageCopy ) == sizeof( VkImageCopy ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageCopy is not nothrow_move_constructible!" ); - - struct SubresourceLayout - { - using NativeType = VkSubresourceLayout; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubresourceLayout( VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize rowPitch_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize arrayPitch_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize depthPitch_ = {} ) VULKAN_HPP_NOEXCEPT - : offset( offset_ ) - , size( size_ ) - , rowPitch( rowPitch_ ) - , arrayPitch( arrayPitch_ ) - , depthPitch( depthPitch_ ) - {} - - VULKAN_HPP_CONSTEXPR SubresourceLayout( SubresourceLayout const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubresourceLayout( VkSubresourceLayout const & rhs ) VULKAN_HPP_NOEXCEPT - : SubresourceLayout( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubresourceLayout & operator=( SubresourceLayout const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubresourceLayout & operator=( VkSubresourceLayout const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSubresourceLayout const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubresourceLayout &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( offset, size, rowPitch, arrayPitch, depthPitch ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubresourceLayout const & ) const = default; -#else - bool operator==( SubresourceLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( offset == rhs.offset ) && ( size == rhs.size ) && ( rowPitch == rhs.rowPitch ) && - ( arrayPitch == rhs.arrayPitch ) && ( depthPitch == rhs.depthPitch ); -# endif - } - - bool operator!=( SubresourceLayout const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::DeviceSize rowPitch = {}; - VULKAN_HPP_NAMESPACE::DeviceSize arrayPitch = {}; - VULKAN_HPP_NAMESPACE::DeviceSize depthPitch = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubresourceLayout ) == sizeof( VkSubresourceLayout ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubresourceLayout is not nothrow_move_constructible!" ); - - struct ImageDrmFormatModifierExplicitCreateInfoEXT - { - using NativeType = VkImageDrmFormatModifierExplicitCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImageDrmFormatModifierExplicitCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageDrmFormatModifierExplicitCreateInfoEXT( - uint64_t drmFormatModifier_ = {}, - uint32_t drmFormatModifierPlaneCount_ = {}, - const VULKAN_HPP_NAMESPACE::SubresourceLayout * pPlaneLayouts_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifier( drmFormatModifier_ ) - , drmFormatModifierPlaneCount( drmFormatModifierPlaneCount_ ) - , pPlaneLayouts( pPlaneLayouts_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageDrmFormatModifierExplicitCreateInfoEXT( - ImageDrmFormatModifierExplicitCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageDrmFormatModifierExplicitCreateInfoEXT( VkImageDrmFormatModifierExplicitCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : ImageDrmFormatModifierExplicitCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageDrmFormatModifierExplicitCreateInfoEXT( - uint64_t drmFormatModifier_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - planeLayouts_ ) - : drmFormatModifier( drmFormatModifier_ ) - , drmFormatModifierPlaneCount( static_cast( planeLayouts_.size() ) ) - , pPlaneLayouts( planeLayouts_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageDrmFormatModifierExplicitCreateInfoEXT & - operator=( ImageDrmFormatModifierExplicitCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageDrmFormatModifierExplicitCreateInfoEXT & - operator=( VkImageDrmFormatModifierExplicitCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierExplicitCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierExplicitCreateInfoEXT & - setDrmFormatModifier( uint64_t drmFormatModifier_ ) VULKAN_HPP_NOEXCEPT - { - drmFormatModifier = drmFormatModifier_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierExplicitCreateInfoEXT & - setDrmFormatModifierPlaneCount( uint32_t drmFormatModifierPlaneCount_ ) VULKAN_HPP_NOEXCEPT - { - drmFormatModifierPlaneCount = drmFormatModifierPlaneCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierExplicitCreateInfoEXT & - setPPlaneLayouts( const VULKAN_HPP_NAMESPACE::SubresourceLayout * pPlaneLayouts_ ) VULKAN_HPP_NOEXCEPT - { - pPlaneLayouts = pPlaneLayouts_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageDrmFormatModifierExplicitCreateInfoEXT & setPlaneLayouts( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - planeLayouts_ ) VULKAN_HPP_NOEXCEPT - { - drmFormatModifierPlaneCount = static_cast( planeLayouts_.size() ); - pPlaneLayouts = planeLayouts_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageDrmFormatModifierExplicitCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageDrmFormatModifierExplicitCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, drmFormatModifier, drmFormatModifierPlaneCount, pPlaneLayouts ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageDrmFormatModifierExplicitCreateInfoEXT const & ) const = default; -#else - bool operator==( ImageDrmFormatModifierExplicitCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( drmFormatModifier == rhs.drmFormatModifier ) && - ( drmFormatModifierPlaneCount == rhs.drmFormatModifierPlaneCount ) && - ( pPlaneLayouts == rhs.pPlaneLayouts ); -# endif - } - - bool operator!=( ImageDrmFormatModifierExplicitCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageDrmFormatModifierExplicitCreateInfoEXT; - const void * pNext = {}; - uint64_t drmFormatModifier = {}; - uint32_t drmFormatModifierPlaneCount = {}; - const VULKAN_HPP_NAMESPACE::SubresourceLayout * pPlaneLayouts = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierExplicitCreateInfoEXT ) == - sizeof( VkImageDrmFormatModifierExplicitCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageDrmFormatModifierExplicitCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageDrmFormatModifierExplicitCreateInfoEXT; - }; - - struct ImageDrmFormatModifierListCreateInfoEXT - { - using NativeType = VkImageDrmFormatModifierListCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImageDrmFormatModifierListCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageDrmFormatModifierListCreateInfoEXT( uint32_t drmFormatModifierCount_ = {}, - const uint64_t * pDrmFormatModifiers_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifierCount( drmFormatModifierCount_ ) - , pDrmFormatModifiers( pDrmFormatModifiers_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageDrmFormatModifierListCreateInfoEXT( ImageDrmFormatModifierListCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImageDrmFormatModifierListCreateInfoEXT( VkImageDrmFormatModifierListCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageDrmFormatModifierListCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageDrmFormatModifierListCreateInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & drmFormatModifiers_ ) - : drmFormatModifierCount( static_cast( drmFormatModifiers_.size() ) ) - , pDrmFormatModifiers( drmFormatModifiers_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageDrmFormatModifierListCreateInfoEXT & - operator=( ImageDrmFormatModifierListCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageDrmFormatModifierListCreateInfoEXT & - operator=( VkImageDrmFormatModifierListCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierListCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierListCreateInfoEXT & - setDrmFormatModifierCount( uint32_t drmFormatModifierCount_ ) VULKAN_HPP_NOEXCEPT - { - drmFormatModifierCount = drmFormatModifierCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageDrmFormatModifierListCreateInfoEXT & - setPDrmFormatModifiers( const uint64_t * pDrmFormatModifiers_ ) VULKAN_HPP_NOEXCEPT - { - pDrmFormatModifiers = pDrmFormatModifiers_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageDrmFormatModifierListCreateInfoEXT & setDrmFormatModifiers( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & drmFormatModifiers_ ) VULKAN_HPP_NOEXCEPT - { - drmFormatModifierCount = static_cast( drmFormatModifiers_.size() ); - pDrmFormatModifiers = drmFormatModifiers_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageDrmFormatModifierListCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageDrmFormatModifierListCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, drmFormatModifierCount, pDrmFormatModifiers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageDrmFormatModifierListCreateInfoEXT const & ) const = default; -#else - bool operator==( ImageDrmFormatModifierListCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( drmFormatModifierCount == rhs.drmFormatModifierCount ) && - ( pDrmFormatModifiers == rhs.pDrmFormatModifiers ); -# endif - } - - bool operator!=( ImageDrmFormatModifierListCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageDrmFormatModifierListCreateInfoEXT; - const void * pNext = {}; - uint32_t drmFormatModifierCount = {}; - const uint64_t * pDrmFormatModifiers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierListCreateInfoEXT ) == - sizeof( VkImageDrmFormatModifierListCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageDrmFormatModifierListCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageDrmFormatModifierListCreateInfoEXT; - }; - - struct ImageDrmFormatModifierPropertiesEXT - { - using NativeType = VkImageDrmFormatModifierPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImageDrmFormatModifierPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageDrmFormatModifierPropertiesEXT( uint64_t drmFormatModifier_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifier( drmFormatModifier_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageDrmFormatModifierPropertiesEXT( ImageDrmFormatModifierPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImageDrmFormatModifierPropertiesEXT( VkImageDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageDrmFormatModifierPropertiesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageDrmFormatModifierPropertiesEXT & - operator=( ImageDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageDrmFormatModifierPropertiesEXT & - operator=( VkImageDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkImageDrmFormatModifierPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageDrmFormatModifierPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, drmFormatModifier ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageDrmFormatModifierPropertiesEXT const & ) const = default; -#else - bool operator==( ImageDrmFormatModifierPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( drmFormatModifier == rhs.drmFormatModifier ); -# endif - } - - bool operator!=( ImageDrmFormatModifierPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageDrmFormatModifierPropertiesEXT; - void * pNext = {}; - uint64_t drmFormatModifier = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageDrmFormatModifierPropertiesEXT ) == - sizeof( VkImageDrmFormatModifierPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageDrmFormatModifierPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageDrmFormatModifierPropertiesEXT; - }; - - struct ImageFormatListCreateInfo - { - using NativeType = VkImageFormatListCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageFormatListCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageFormatListCreateInfo( uint32_t viewFormatCount_ = {}, - const VULKAN_HPP_NAMESPACE::Format * pViewFormats_ = {} ) VULKAN_HPP_NOEXCEPT - : viewFormatCount( viewFormatCount_ ) - , pViewFormats( pViewFormats_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageFormatListCreateInfo( ImageFormatListCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatListCreateInfo( VkImageFormatListCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageFormatListCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageFormatListCreateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewFormats_ ) - : viewFormatCount( static_cast( viewFormats_.size() ) ), pViewFormats( viewFormats_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageFormatListCreateInfo & operator=( ImageFormatListCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatListCreateInfo & operator=( VkImageFormatListCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageFormatListCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatListCreateInfo & - setViewFormatCount( uint32_t viewFormatCount_ ) VULKAN_HPP_NOEXCEPT - { - viewFormatCount = viewFormatCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageFormatListCreateInfo & - setPViewFormats( const VULKAN_HPP_NAMESPACE::Format * pViewFormats_ ) VULKAN_HPP_NOEXCEPT - { - pViewFormats = pViewFormats_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ImageFormatListCreateInfo & setViewFormats( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewFormats_ ) - VULKAN_HPP_NOEXCEPT - { - viewFormatCount = static_cast( viewFormats_.size() ); - pViewFormats = viewFormats_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageFormatListCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageFormatListCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, viewFormatCount, pViewFormats ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageFormatListCreateInfo const & ) const = default; -#else - bool operator==( ImageFormatListCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( viewFormatCount == rhs.viewFormatCount ) && - ( pViewFormats == rhs.pViewFormats ); -# endif - } - - bool operator!=( ImageFormatListCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageFormatListCreateInfo; - const void * pNext = {}; - uint32_t viewFormatCount = {}; - const VULKAN_HPP_NAMESPACE::Format * pViewFormats = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageFormatListCreateInfo ) == - sizeof( VkImageFormatListCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageFormatListCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageFormatListCreateInfo; - }; - using ImageFormatListCreateInfoKHR = ImageFormatListCreateInfo; - - struct ImageFormatProperties2 - { - using NativeType = VkImageFormatProperties2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageFormatProperties2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageFormatProperties2( - VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : imageFormatProperties( imageFormatProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageFormatProperties2( ImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatProperties2( VkImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageFormatProperties2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageFormatProperties2 & operator=( ImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageFormatProperties2 & operator=( VkImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkImageFormatProperties2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageFormatProperties2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageFormatProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageFormatProperties2 const & ) const = default; -#else - bool operator==( ImageFormatProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageFormatProperties == rhs.imageFormatProperties ); -# endif - } - - bool operator!=( ImageFormatProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageFormatProperties2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageFormatProperties2 ) == - sizeof( VkImageFormatProperties2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageFormatProperties2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageFormatProperties2; - }; - using ImageFormatProperties2KHR = ImageFormatProperties2; - - struct ImageMemoryBarrier - { - using NativeType = VkImageMemoryBarrier; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageMemoryBarrier; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageMemoryBarrier( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout oldLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ImageLayout newLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - uint32_t srcQueueFamilyIndex_ = {}, - uint32_t dstQueueFamilyIndex_ = {}, - VULKAN_HPP_NAMESPACE::Image image_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceRange subresourceRange_ = {} ) VULKAN_HPP_NOEXCEPT - : srcAccessMask( srcAccessMask_ ) - , dstAccessMask( dstAccessMask_ ) - , oldLayout( oldLayout_ ) - , newLayout( newLayout_ ) - , srcQueueFamilyIndex( srcQueueFamilyIndex_ ) - , dstQueueFamilyIndex( dstQueueFamilyIndex_ ) - , image( image_ ) - , subresourceRange( subresourceRange_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageMemoryBarrier( ImageMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageMemoryBarrier( VkImageMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageMemoryBarrier( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageMemoryBarrier & operator=( ImageMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageMemoryBarrier & operator=( VkImageMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setOldLayout( VULKAN_HPP_NAMESPACE::ImageLayout oldLayout_ ) VULKAN_HPP_NOEXCEPT - { - oldLayout = oldLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setNewLayout( VULKAN_HPP_NAMESPACE::ImageLayout newLayout_ ) VULKAN_HPP_NOEXCEPT - { - newLayout = newLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setSrcQueueFamilyIndex( uint32_t srcQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - srcQueueFamilyIndex = srcQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setDstQueueFamilyIndex( uint32_t dstQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - dstQueueFamilyIndex = dstQueueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryBarrier & - setSubresourceRange( VULKAN_HPP_NAMESPACE::ImageSubresourceRange const & subresourceRange_ ) VULKAN_HPP_NOEXCEPT - { - subresourceRange = subresourceRange_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageMemoryBarrier const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageMemoryBarrier &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - srcAccessMask, - dstAccessMask, - oldLayout, - newLayout, - srcQueueFamilyIndex, - dstQueueFamilyIndex, - image, - subresourceRange ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageMemoryBarrier const & ) const = default; -#else - bool operator==( ImageMemoryBarrier const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcAccessMask == rhs.srcAccessMask ) && - ( dstAccessMask == rhs.dstAccessMask ) && ( oldLayout == rhs.oldLayout ) && - ( newLayout == rhs.newLayout ) && ( srcQueueFamilyIndex == rhs.srcQueueFamilyIndex ) && - ( dstQueueFamilyIndex == rhs.dstQueueFamilyIndex ) && ( image == rhs.image ) && - ( subresourceRange == rhs.subresourceRange ); -# endif - } - - bool operator!=( ImageMemoryBarrier const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageMemoryBarrier; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask = {}; - VULKAN_HPP_NAMESPACE::ImageLayout oldLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ImageLayout newLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - uint32_t srcQueueFamilyIndex = {}; - uint32_t dstQueueFamilyIndex = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceRange subresourceRange = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageMemoryBarrier ) == sizeof( VkImageMemoryBarrier ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageMemoryBarrier is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageMemoryBarrier; - }; - - struct ImageMemoryRequirementsInfo2 - { - using NativeType = VkImageMemoryRequirementsInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageMemoryRequirementsInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageMemoryRequirementsInfo2( VULKAN_HPP_NAMESPACE::Image image_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageMemoryRequirementsInfo2( ImageMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageMemoryRequirementsInfo2( VkImageMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageMemoryRequirementsInfo2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageMemoryRequirementsInfo2 & operator=( ImageMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageMemoryRequirementsInfo2 & operator=( VkImageMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageMemoryRequirementsInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageMemoryRequirementsInfo2 & - setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageMemoryRequirementsInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageMemoryRequirementsInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, image ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageMemoryRequirementsInfo2 const & ) const = default; -#else - bool operator==( ImageMemoryRequirementsInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( image == rhs.image ); -# endif - } - - bool operator!=( ImageMemoryRequirementsInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageMemoryRequirementsInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageMemoryRequirementsInfo2 ) == - sizeof( VkImageMemoryRequirementsInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageMemoryRequirementsInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageMemoryRequirementsInfo2; - }; - using ImageMemoryRequirementsInfo2KHR = ImageMemoryRequirementsInfo2; - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct ImagePipeSurfaceCreateInfoFUCHSIA - { - using NativeType = VkImagePipeSurfaceCreateInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImagepipeSurfaceCreateInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImagePipeSurfaceCreateInfoFUCHSIA( VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateFlagsFUCHSIA flags_ = {}, - zx_handle_t imagePipeHandle_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , imagePipeHandle( imagePipeHandle_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImagePipeSurfaceCreateInfoFUCHSIA( ImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImagePipeSurfaceCreateInfoFUCHSIA( VkImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : ImagePipeSurfaceCreateInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImagePipeSurfaceCreateInfoFUCHSIA & - operator=( ImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImagePipeSurfaceCreateInfoFUCHSIA & operator=( VkImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImagePipeSurfaceCreateInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImagePipeSurfaceCreateInfoFUCHSIA & - setFlags( VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateFlagsFUCHSIA flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImagePipeSurfaceCreateInfoFUCHSIA & - setImagePipeHandle( zx_handle_t imagePipeHandle_ ) VULKAN_HPP_NOEXCEPT - { - imagePipeHandle = imagePipeHandle_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImagePipeSurfaceCreateInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImagePipeSurfaceCreateInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, imagePipeHandle ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( ImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &imagePipeHandle, &rhs.imagePipeHandle, sizeof( zx_handle_t ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( ImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( memcmp( &imagePipeHandle, &rhs.imagePipeHandle, sizeof( zx_handle_t ) ) == 0 ); - } - - bool operator!=( ImagePipeSurfaceCreateInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImagepipeSurfaceCreateInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateFlagsFUCHSIA flags = {}; - zx_handle_t imagePipeHandle = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA ) == - sizeof( VkImagePipeSurfaceCreateInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImagePipeSurfaceCreateInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImagePipeSurfaceCreateInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct ImagePlaneMemoryRequirementsInfo - { - using NativeType = VkImagePlaneMemoryRequirementsInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImagePlaneMemoryRequirementsInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImagePlaneMemoryRequirementsInfo( VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect_ = - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits::eColor ) VULKAN_HPP_NOEXCEPT - : planeAspect( planeAspect_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImagePlaneMemoryRequirementsInfo( ImagePlaneMemoryRequirementsInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImagePlaneMemoryRequirementsInfo( VkImagePlaneMemoryRequirementsInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ImagePlaneMemoryRequirementsInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImagePlaneMemoryRequirementsInfo & - operator=( ImagePlaneMemoryRequirementsInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImagePlaneMemoryRequirementsInfo & operator=( VkImagePlaneMemoryRequirementsInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImagePlaneMemoryRequirementsInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImagePlaneMemoryRequirementsInfo & - setPlaneAspect( VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect_ ) VULKAN_HPP_NOEXCEPT - { - planeAspect = planeAspect_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImagePlaneMemoryRequirementsInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImagePlaneMemoryRequirementsInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, planeAspect ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImagePlaneMemoryRequirementsInfo const & ) const = default; -#else - bool operator==( ImagePlaneMemoryRequirementsInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( planeAspect == rhs.planeAspect ); -# endif - } - - bool operator!=( ImagePlaneMemoryRequirementsInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImagePlaneMemoryRequirementsInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageAspectFlagBits planeAspect = VULKAN_HPP_NAMESPACE::ImageAspectFlagBits::eColor; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImagePlaneMemoryRequirementsInfo ) == - sizeof( VkImagePlaneMemoryRequirementsInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImagePlaneMemoryRequirementsInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImagePlaneMemoryRequirementsInfo; - }; - using ImagePlaneMemoryRequirementsInfoKHR = ImagePlaneMemoryRequirementsInfo; - - struct ImageResolve - { - using NativeType = VkImageResolve; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageResolve( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D srcOffset_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D dstOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D extent_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubresource( srcSubresource_ ) - , srcOffset( srcOffset_ ) - , dstSubresource( dstSubresource_ ) - , dstOffset( dstOffset_ ) - , extent( extent_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageResolve( ImageResolve const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageResolve( VkImageResolve const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageResolve( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageResolve & operator=( ImageResolve const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageResolve & operator=( VkImageResolve const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageResolve & - setSrcSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & srcSubresource_ ) VULKAN_HPP_NOEXCEPT - { - srcSubresource = srcSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve & - setSrcOffset( VULKAN_HPP_NAMESPACE::Offset3D const & srcOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcOffset = srcOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve & - setDstSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & dstSubresource_ ) VULKAN_HPP_NOEXCEPT - { - dstSubresource = dstSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve & - setDstOffset( VULKAN_HPP_NAMESPACE::Offset3D const & dstOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstOffset = dstOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve & - setExtent( VULKAN_HPP_NAMESPACE::Extent3D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageResolve const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageResolve &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( srcSubresource, srcOffset, dstSubresource, dstOffset, extent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageResolve const & ) const = default; -#else - bool operator==( ImageResolve const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( srcSubresource == rhs.srcSubresource ) && ( srcOffset == rhs.srcOffset ) && - ( dstSubresource == rhs.dstSubresource ) && ( dstOffset == rhs.dstOffset ) && ( extent == rhs.extent ); -# endif - } - - bool operator!=( ImageResolve const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D srcOffset = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D dstOffset = {}; - VULKAN_HPP_NAMESPACE::Extent3D extent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageResolve ) == sizeof( VkImageResolve ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageResolve is not nothrow_move_constructible!" ); - - struct ImageResolve2 - { - using NativeType = VkImageResolve2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageResolve2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageResolve2( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D srcOffset_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource_ = {}, - VULKAN_HPP_NAMESPACE::Offset3D dstOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D extent_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubresource( srcSubresource_ ) - , srcOffset( srcOffset_ ) - , dstSubresource( dstSubresource_ ) - , dstOffset( dstOffset_ ) - , extent( extent_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageResolve2( ImageResolve2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageResolve2( VkImageResolve2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageResolve2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageResolve2 & operator=( ImageResolve2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageResolve2 & operator=( VkImageResolve2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageResolve2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve2 & - setSrcSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & srcSubresource_ ) VULKAN_HPP_NOEXCEPT - { - srcSubresource = srcSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve2 & - setSrcOffset( VULKAN_HPP_NAMESPACE::Offset3D const & srcOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcOffset = srcOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve2 & - setDstSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const & dstSubresource_ ) VULKAN_HPP_NOEXCEPT - { - dstSubresource = dstSubresource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve2 & - setDstOffset( VULKAN_HPP_NAMESPACE::Offset3D const & dstOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstOffset = dstOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageResolve2 & - setExtent( VULKAN_HPP_NAMESPACE::Extent3D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageResolve2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageResolve2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcSubresource, srcOffset, dstSubresource, dstOffset, extent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageResolve2 const & ) const = default; -#else - bool operator==( ImageResolve2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcSubresource == rhs.srcSubresource ) && - ( srcOffset == rhs.srcOffset ) && ( dstSubresource == rhs.dstSubresource ) && - ( dstOffset == rhs.dstOffset ) && ( extent == rhs.extent ); -# endif - } - - bool operator!=( ImageResolve2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageResolve2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers srcSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D srcOffset = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceLayers dstSubresource = {}; - VULKAN_HPP_NAMESPACE::Offset3D dstOffset = {}; - VULKAN_HPP_NAMESPACE::Extent3D extent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageResolve2 ) == sizeof( VkImageResolve2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageResolve2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageResolve2; - }; - using ImageResolve2KHR = ImageResolve2; - - struct ImageSparseMemoryRequirementsInfo2 - { - using NativeType = VkImageSparseMemoryRequirementsInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImageSparseMemoryRequirementsInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageSparseMemoryRequirementsInfo2( VULKAN_HPP_NAMESPACE::Image image_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageSparseMemoryRequirementsInfo2( ImageSparseMemoryRequirementsInfo2 const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImageSparseMemoryRequirementsInfo2( VkImageSparseMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageSparseMemoryRequirementsInfo2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageSparseMemoryRequirementsInfo2 & - operator=( ImageSparseMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSparseMemoryRequirementsInfo2 & - operator=( VkImageSparseMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageSparseMemoryRequirementsInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSparseMemoryRequirementsInfo2 & - setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageSparseMemoryRequirementsInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageSparseMemoryRequirementsInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, image ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageSparseMemoryRequirementsInfo2 const & ) const = default; -#else - bool operator==( ImageSparseMemoryRequirementsInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( image == rhs.image ); -# endif - } - - bool operator!=( ImageSparseMemoryRequirementsInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageSparseMemoryRequirementsInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageSparseMemoryRequirementsInfo2 ) == - sizeof( VkImageSparseMemoryRequirementsInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageSparseMemoryRequirementsInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageSparseMemoryRequirementsInfo2; - }; - using ImageSparseMemoryRequirementsInfo2KHR = ImageSparseMemoryRequirementsInfo2; - - struct ImageStencilUsageCreateInfo - { - using NativeType = VkImageStencilUsageCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageStencilUsageCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageStencilUsageCreateInfo( VULKAN_HPP_NAMESPACE::ImageUsageFlags stencilUsage_ = {} ) VULKAN_HPP_NOEXCEPT - : stencilUsage( stencilUsage_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageStencilUsageCreateInfo( ImageStencilUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageStencilUsageCreateInfo( VkImageStencilUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageStencilUsageCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageStencilUsageCreateInfo & operator=( ImageStencilUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageStencilUsageCreateInfo & operator=( VkImageStencilUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageStencilUsageCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageStencilUsageCreateInfo & - setStencilUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags stencilUsage_ ) VULKAN_HPP_NOEXCEPT - { - stencilUsage = stencilUsage_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageStencilUsageCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageStencilUsageCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stencilUsage ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageStencilUsageCreateInfo const & ) const = default; -#else - bool operator==( ImageStencilUsageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stencilUsage == rhs.stencilUsage ); -# endif - } - - bool operator!=( ImageStencilUsageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageStencilUsageCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags stencilUsage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageStencilUsageCreateInfo ) == - sizeof( VkImageStencilUsageCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageStencilUsageCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageStencilUsageCreateInfo; - }; - using ImageStencilUsageCreateInfoEXT = ImageStencilUsageCreateInfo; - - struct ImageSwapchainCreateInfoKHR - { - using NativeType = VkImageSwapchainCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageSwapchainCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageSwapchainCreateInfoKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ = {} ) VULKAN_HPP_NOEXCEPT - : swapchain( swapchain_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageSwapchainCreateInfoKHR( ImageSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSwapchainCreateInfoKHR( VkImageSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageSwapchainCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageSwapchainCreateInfoKHR & operator=( ImageSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageSwapchainCreateInfoKHR & operator=( VkImageSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageSwapchainCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageSwapchainCreateInfoKHR & - setSwapchain( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ ) VULKAN_HPP_NOEXCEPT - { - swapchain = swapchain_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageSwapchainCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageSwapchainCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchain ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageSwapchainCreateInfoKHR const & ) const = default; -#else - bool operator==( ImageSwapchainCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchain == rhs.swapchain ); -# endif - } - - bool operator!=( ImageSwapchainCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageSwapchainCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageSwapchainCreateInfoKHR ) == - sizeof( VkImageSwapchainCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageSwapchainCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageSwapchainCreateInfoKHR; - }; - - struct ImageViewASTCDecodeModeEXT - { - using NativeType = VkImageViewASTCDecodeModeEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageViewAstcDecodeModeEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageViewASTCDecodeModeEXT( - VULKAN_HPP_NAMESPACE::Format decodeMode_ = VULKAN_HPP_NAMESPACE::Format::eUndefined ) VULKAN_HPP_NOEXCEPT - : decodeMode( decodeMode_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageViewASTCDecodeModeEXT( ImageViewASTCDecodeModeEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewASTCDecodeModeEXT( VkImageViewASTCDecodeModeEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageViewASTCDecodeModeEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageViewASTCDecodeModeEXT & operator=( ImageViewASTCDecodeModeEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewASTCDecodeModeEXT & operator=( VkImageViewASTCDecodeModeEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageViewASTCDecodeModeEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewASTCDecodeModeEXT & - setDecodeMode( VULKAN_HPP_NAMESPACE::Format decodeMode_ ) VULKAN_HPP_NOEXCEPT - { - decodeMode = decodeMode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageViewASTCDecodeModeEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageViewASTCDecodeModeEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, decodeMode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageViewASTCDecodeModeEXT const & ) const = default; -#else - bool operator==( ImageViewASTCDecodeModeEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( decodeMode == rhs.decodeMode ); -# endif - } - - bool operator!=( ImageViewASTCDecodeModeEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageViewAstcDecodeModeEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format decodeMode = VULKAN_HPP_NAMESPACE::Format::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageViewASTCDecodeModeEXT ) == - sizeof( VkImageViewASTCDecodeModeEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageViewASTCDecodeModeEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageViewASTCDecodeModeEXT; - }; - - struct ImageViewAddressPropertiesNVX - { - using NativeType = VkImageViewAddressPropertiesNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageViewAddressPropertiesNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageViewAddressPropertiesNVX( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceAddress( deviceAddress_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImageViewAddressPropertiesNVX( ImageViewAddressPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewAddressPropertiesNVX( VkImageViewAddressPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageViewAddressPropertiesNVX( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageViewAddressPropertiesNVX & - operator=( ImageViewAddressPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewAddressPropertiesNVX & operator=( VkImageViewAddressPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkImageViewAddressPropertiesNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageViewAddressPropertiesNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceAddress, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageViewAddressPropertiesNVX const & ) const = default; -#else - bool operator==( ImageViewAddressPropertiesNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceAddress == rhs.deviceAddress ) && - ( size == rhs.size ); -# endif - } - - bool operator!=( ImageViewAddressPropertiesNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageViewAddressPropertiesNVX; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageViewAddressPropertiesNVX ) == - sizeof( VkImageViewAddressPropertiesNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageViewAddressPropertiesNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageViewAddressPropertiesNVX; - }; - - struct ImageViewCreateInfo - { - using NativeType = VkImageViewCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageViewCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageViewCreateInfo( VULKAN_HPP_NAMESPACE::ImageViewCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Image image_ = {}, - VULKAN_HPP_NAMESPACE::ImageViewType viewType_ = VULKAN_HPP_NAMESPACE::ImageViewType::e1D, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::ComponentMapping components_ = {}, - VULKAN_HPP_NAMESPACE::ImageSubresourceRange subresourceRange_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , image( image_ ) - , viewType( viewType_ ) - , format( format_ ) - , components( components_ ) - , subresourceRange( subresourceRange_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageViewCreateInfo( ImageViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewCreateInfo( VkImageViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageViewCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageViewCreateInfo & operator=( ImageViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewCreateInfo & operator=( VkImageViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::ImageViewCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & - setViewType( VULKAN_HPP_NAMESPACE::ImageViewType viewType_ ) VULKAN_HPP_NOEXCEPT - { - viewType = viewType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & - setComponents( VULKAN_HPP_NAMESPACE::ComponentMapping const & components_ ) VULKAN_HPP_NOEXCEPT - { - components = components_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewCreateInfo & - setSubresourceRange( VULKAN_HPP_NAMESPACE::ImageSubresourceRange const & subresourceRange_ ) VULKAN_HPP_NOEXCEPT - { - subresourceRange = subresourceRange_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageViewCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageViewCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, image, viewType, format, components, subresourceRange ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageViewCreateInfo const & ) const = default; -#else - bool operator==( ImageViewCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( image == rhs.image ) && - ( viewType == rhs.viewType ) && ( format == rhs.format ) && ( components == rhs.components ) && - ( subresourceRange == rhs.subresourceRange ); -# endif - } - - bool operator!=( ImageViewCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageViewCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageViewCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - VULKAN_HPP_NAMESPACE::ImageViewType viewType = VULKAN_HPP_NAMESPACE::ImageViewType::e1D; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::ComponentMapping components = {}; - VULKAN_HPP_NAMESPACE::ImageSubresourceRange subresourceRange = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageViewCreateInfo ) == sizeof( VkImageViewCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageViewCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageViewCreateInfo; - }; - - struct ImageViewHandleInfoNVX - { - using NativeType = VkImageViewHandleInfoNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageViewHandleInfoNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageViewHandleInfoNVX( - VULKAN_HPP_NAMESPACE::ImageView imageView_ = {}, - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler, - VULKAN_HPP_NAMESPACE::Sampler sampler_ = {} ) VULKAN_HPP_NOEXCEPT - : imageView( imageView_ ) - , descriptorType( descriptorType_ ) - , sampler( sampler_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageViewHandleInfoNVX( ImageViewHandleInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewHandleInfoNVX( VkImageViewHandleInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageViewHandleInfoNVX( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageViewHandleInfoNVX & operator=( ImageViewHandleInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewHandleInfoNVX & operator=( VkImageViewHandleInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageViewHandleInfoNVX & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewHandleInfoNVX & - setImageView( VULKAN_HPP_NAMESPACE::ImageView imageView_ ) VULKAN_HPP_NOEXCEPT - { - imageView = imageView_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewHandleInfoNVX & - setDescriptorType( VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ ) VULKAN_HPP_NOEXCEPT - { - descriptorType = descriptorType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewHandleInfoNVX & - setSampler( VULKAN_HPP_NAMESPACE::Sampler sampler_ ) VULKAN_HPP_NOEXCEPT - { - sampler = sampler_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageViewHandleInfoNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageViewHandleInfoNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageView, descriptorType, sampler ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageViewHandleInfoNVX const & ) const = default; -#else - bool operator==( ImageViewHandleInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageView == rhs.imageView ) && - ( descriptorType == rhs.descriptorType ) && ( sampler == rhs.sampler ); -# endif - } - - bool operator!=( ImageViewHandleInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageViewHandleInfoNVX; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageView imageView = {}; - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler; - VULKAN_HPP_NAMESPACE::Sampler sampler = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageViewHandleInfoNVX ) == - sizeof( VkImageViewHandleInfoNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageViewHandleInfoNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageViewHandleInfoNVX; - }; - - struct ImageViewMinLodCreateInfoEXT - { - using NativeType = VkImageViewMinLodCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageViewMinLodCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImageViewMinLodCreateInfoEXT( float minLod_ = {} ) VULKAN_HPP_NOEXCEPT : minLod( minLod_ ) {} - - VULKAN_HPP_CONSTEXPR - ImageViewMinLodCreateInfoEXT( ImageViewMinLodCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewMinLodCreateInfoEXT( VkImageViewMinLodCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageViewMinLodCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageViewMinLodCreateInfoEXT & operator=( ImageViewMinLodCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewMinLodCreateInfoEXT & operator=( VkImageViewMinLodCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageViewMinLodCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewMinLodCreateInfoEXT & setMinLod( float minLod_ ) VULKAN_HPP_NOEXCEPT - { - minLod = minLod_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageViewMinLodCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageViewMinLodCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, minLod ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageViewMinLodCreateInfoEXT const & ) const = default; -#else - bool operator==( ImageViewMinLodCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( minLod == rhs.minLod ); -# endif - } - - bool operator!=( ImageViewMinLodCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageViewMinLodCreateInfoEXT; - const void * pNext = {}; - float minLod = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageViewMinLodCreateInfoEXT ) == - sizeof( VkImageViewMinLodCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImageViewMinLodCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageViewMinLodCreateInfoEXT; - }; - - struct ImageViewUsageCreateInfo - { - using NativeType = VkImageViewUsageCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImageViewUsageCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImageViewUsageCreateInfo( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ = {} ) VULKAN_HPP_NOEXCEPT - : usage( usage_ ) - {} - - VULKAN_HPP_CONSTEXPR ImageViewUsageCreateInfo( ImageViewUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewUsageCreateInfo( VkImageViewUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ImageViewUsageCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImageViewUsageCreateInfo & operator=( ImageViewUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImageViewUsageCreateInfo & operator=( VkImageViewUsageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImageViewUsageCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImageViewUsageCreateInfo & - setUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImageViewUsageCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImageViewUsageCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, usage ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImageViewUsageCreateInfo const & ) const = default; -#else - bool operator==( ImageViewUsageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( usage == rhs.usage ); -# endif - } - - bool operator!=( ImageViewUsageCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImageViewUsageCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImageViewUsageCreateInfo ) == - sizeof( VkImageViewUsageCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImageViewUsageCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImageViewUsageCreateInfo; - }; - using ImageViewUsageCreateInfoKHR = ImageViewUsageCreateInfo; - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct ImportAndroidHardwareBufferInfoANDROID - { - using NativeType = VkImportAndroidHardwareBufferInfoANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImportAndroidHardwareBufferInfoANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportAndroidHardwareBufferInfoANDROID( struct AHardwareBuffer * buffer_ = {} ) VULKAN_HPP_NOEXCEPT - : buffer( buffer_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportAndroidHardwareBufferInfoANDROID( ImportAndroidHardwareBufferInfoANDROID const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImportAndroidHardwareBufferInfoANDROID( VkImportAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportAndroidHardwareBufferInfoANDROID( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportAndroidHardwareBufferInfoANDROID & - operator=( ImportAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportAndroidHardwareBufferInfoANDROID & - operator=( VkImportAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportAndroidHardwareBufferInfoANDROID & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportAndroidHardwareBufferInfoANDROID & - setBuffer( struct AHardwareBuffer * buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportAndroidHardwareBufferInfoANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportAndroidHardwareBufferInfoANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, buffer ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportAndroidHardwareBufferInfoANDROID const & ) const = default; -# else - bool operator==( ImportAndroidHardwareBufferInfoANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( buffer == rhs.buffer ); -# endif - } - - bool operator!=( ImportAndroidHardwareBufferInfoANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportAndroidHardwareBufferInfoANDROID; - const void * pNext = {}; - struct AHardwareBuffer * buffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportAndroidHardwareBufferInfoANDROID ) == - sizeof( VkImportAndroidHardwareBufferInfoANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportAndroidHardwareBufferInfoANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportAndroidHardwareBufferInfoANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - struct ImportFenceFdInfoKHR - { - using NativeType = VkImportFenceFdInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportFenceFdInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImportFenceFdInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {}, - VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd, - int fd_ = {} ) VULKAN_HPP_NOEXCEPT - : fence( fence_ ) - , flags( flags_ ) - , handleType( handleType_ ) - , fd( fd_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportFenceFdInfoKHR( ImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportFenceFdInfoKHR( VkImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportFenceFdInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportFenceFdInfoKHR & operator=( ImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportFenceFdInfoKHR & operator=( VkImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportFenceFdInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceFdInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT - { - fence = fence_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceFdInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceFdInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceFdInfoKHR & setFd( int fd_ ) VULKAN_HPP_NOEXCEPT - { - fd = fd_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportFenceFdInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportFenceFdInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fence, flags, handleType, fd ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportFenceFdInfoKHR const & ) const = default; -#else - bool operator==( ImportFenceFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fence == rhs.fence ) && ( flags == rhs.flags ) && - ( handleType == rhs.handleType ) && ( fd == rhs.fd ); -# endif - } - - bool operator!=( ImportFenceFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportFenceFdInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Fence fence = {}; - VULKAN_HPP_NAMESPACE::FenceImportFlags flags = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd; - int fd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR ) == sizeof( VkImportFenceFdInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImportFenceFdInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportFenceFdInfoKHR; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ImportFenceWin32HandleInfoKHR - { - using NativeType = VkImportFenceWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportFenceWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportFenceWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {}, - VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd, - HANDLE handle_ = {}, - LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT - : fence( fence_ ) - , flags( flags_ ) - , handleType( handleType_ ) - , handle( handle_ ) - , name( name_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImportFenceWin32HandleInfoKHR( ImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportFenceWin32HandleInfoKHR( VkImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportFenceWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportFenceWin32HandleInfoKHR & - operator=( ImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportFenceWin32HandleInfoKHR & operator=( VkImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportFenceWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceWin32HandleInfoKHR & - setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT - { - fence = fence_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceWin32HandleInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceWin32HandleInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceWin32HandleInfoKHR & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT - { - handle = handle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportFenceWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT - { - name = name_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportFenceWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportFenceWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fence, flags, handleType, handle, name ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportFenceWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( ImportFenceWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fence == rhs.fence ) && ( flags == rhs.flags ) && - ( handleType == rhs.handleType ) && ( handle == rhs.handle ) && ( name == rhs.name ); -# endif - } - - bool operator!=( ImportFenceWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportFenceWin32HandleInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Fence fence = {}; - VULKAN_HPP_NAMESPACE::FenceImportFlags flags = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd; - HANDLE handle = {}; - LPCWSTR name = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR ) == - sizeof( VkImportFenceWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportFenceWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportFenceWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct ImportMemoryBufferCollectionFUCHSIA - { - using NativeType = VkImportMemoryBufferCollectionFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImportMemoryBufferCollectionFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportMemoryBufferCollectionFUCHSIA( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection_ = {}, - uint32_t index_ = {} ) VULKAN_HPP_NOEXCEPT - : collection( collection_ ) - , index( index_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportMemoryBufferCollectionFUCHSIA( ImportMemoryBufferCollectionFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryBufferCollectionFUCHSIA( VkImportMemoryBufferCollectionFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportMemoryBufferCollectionFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportMemoryBufferCollectionFUCHSIA & - operator=( ImportMemoryBufferCollectionFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryBufferCollectionFUCHSIA & - operator=( VkImportMemoryBufferCollectionFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportMemoryBufferCollectionFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryBufferCollectionFUCHSIA & - setCollection( VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection_ ) VULKAN_HPP_NOEXCEPT - { - collection = collection_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryBufferCollectionFUCHSIA & setIndex( uint32_t index_ ) VULKAN_HPP_NOEXCEPT - { - index = index_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportMemoryBufferCollectionFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportMemoryBufferCollectionFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, collection, index ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportMemoryBufferCollectionFUCHSIA const & ) const = default; -# else - bool operator==( ImportMemoryBufferCollectionFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( collection == rhs.collection ) && - ( index == rhs.index ); -# endif - } - - bool operator!=( ImportMemoryBufferCollectionFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryBufferCollectionFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferCollectionFUCHSIA collection = {}; - uint32_t index = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportMemoryBufferCollectionFUCHSIA ) == - sizeof( VkImportMemoryBufferCollectionFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportMemoryBufferCollectionFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportMemoryBufferCollectionFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct ImportMemoryFdInfoKHR - { - using NativeType = VkImportMemoryFdInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportMemoryFdInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ImportMemoryFdInfoKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd, - int fd_ = {} ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - , fd( fd_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportMemoryFdInfoKHR( ImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryFdInfoKHR( VkImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportMemoryFdInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportMemoryFdInfoKHR & operator=( ImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryFdInfoKHR & operator=( VkImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportMemoryFdInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryFdInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryFdInfoKHR & setFd( int fd_ ) VULKAN_HPP_NOEXCEPT - { - fd = fd_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportMemoryFdInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportMemoryFdInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType, fd ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportMemoryFdInfoKHR const & ) const = default; -#else - bool operator==( ImportMemoryFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ) && ( fd == rhs.fd ); -# endif - } - - bool operator!=( ImportMemoryFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryFdInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - int fd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportMemoryFdInfoKHR ) == sizeof( VkImportMemoryFdInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImportMemoryFdInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportMemoryFdInfoKHR; - }; - - struct ImportMemoryHostPointerInfoEXT - { - using NativeType = VkImportMemoryHostPointerInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportMemoryHostPointerInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportMemoryHostPointerInfoEXT( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd, - void * pHostPointer_ = {} ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - , pHostPointer( pHostPointer_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImportMemoryHostPointerInfoEXT( ImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryHostPointerInfoEXT( VkImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportMemoryHostPointerInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportMemoryHostPointerInfoEXT & - operator=( ImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryHostPointerInfoEXT & operator=( VkImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportMemoryHostPointerInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryHostPointerInfoEXT & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryHostPointerInfoEXT & setPHostPointer( void * pHostPointer_ ) VULKAN_HPP_NOEXCEPT - { - pHostPointer = pHostPointer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportMemoryHostPointerInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportMemoryHostPointerInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType, pHostPointer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportMemoryHostPointerInfoEXT const & ) const = default; -#else - bool operator==( ImportMemoryHostPointerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ) && - ( pHostPointer == rhs.pHostPointer ); -# endif - } - - bool operator!=( ImportMemoryHostPointerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryHostPointerInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - void * pHostPointer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportMemoryHostPointerInfoEXT ) == - sizeof( VkImportMemoryHostPointerInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportMemoryHostPointerInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportMemoryHostPointerInfoEXT; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ImportMemoryWin32HandleInfoKHR - { - using NativeType = VkImportMemoryWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportMemoryWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportMemoryWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd, - HANDLE handle_ = {}, - LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - , handle( handle_ ) - , name( name_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImportMemoryWin32HandleInfoKHR( ImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryWin32HandleInfoKHR( VkImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportMemoryWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportMemoryWin32HandleInfoKHR & - operator=( ImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryWin32HandleInfoKHR & operator=( VkImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoKHR & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT - { - handle = handle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT - { - name = name_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportMemoryWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportMemoryWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType, handle, name ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportMemoryWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( ImportMemoryWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ) && - ( handle == rhs.handle ) && ( name == rhs.name ); -# endif - } - - bool operator!=( ImportMemoryWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryWin32HandleInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - HANDLE handle = {}; - LPCWSTR name = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportMemoryWin32HandleInfoKHR ) == - sizeof( VkImportMemoryWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportMemoryWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportMemoryWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ImportMemoryWin32HandleInfoNV - { - using NativeType = VkImportMemoryWin32HandleInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportMemoryWin32HandleInfoNV; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportMemoryWin32HandleInfoNV( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType_ = {}, - HANDLE handle_ = {} ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - , handle( handle_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImportMemoryWin32HandleInfoNV( ImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryWin32HandleInfoNV( VkImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportMemoryWin32HandleInfoNV( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportMemoryWin32HandleInfoNV & - operator=( ImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryWin32HandleInfoNV & operator=( VkImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoNV & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryWin32HandleInfoNV & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT - { - handle = handle_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportMemoryWin32HandleInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportMemoryWin32HandleInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType, handle ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportMemoryWin32HandleInfoNV const & ) const = default; -# else - bool operator==( ImportMemoryWin32HandleInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ) && - ( handle == rhs.handle ); -# endif - } - - bool operator!=( ImportMemoryWin32HandleInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryWin32HandleInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType = {}; - HANDLE handle = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportMemoryWin32HandleInfoNV ) == - sizeof( VkImportMemoryWin32HandleInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportMemoryWin32HandleInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportMemoryWin32HandleInfoNV; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct ImportMemoryZirconHandleInfoFUCHSIA - { - using NativeType = VkImportMemoryZirconHandleInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImportMemoryZirconHandleInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportMemoryZirconHandleInfoFUCHSIA( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd, - zx_handle_t handle_ = {} ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - , handle( handle_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportMemoryZirconHandleInfoFUCHSIA( ImportMemoryZirconHandleInfoFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryZirconHandleInfoFUCHSIA( VkImportMemoryZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportMemoryZirconHandleInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportMemoryZirconHandleInfoFUCHSIA & - operator=( ImportMemoryZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportMemoryZirconHandleInfoFUCHSIA & - operator=( VkImportMemoryZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportMemoryZirconHandleInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryZirconHandleInfoFUCHSIA & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportMemoryZirconHandleInfoFUCHSIA & setHandle( zx_handle_t handle_ ) VULKAN_HPP_NOEXCEPT - { - handle = handle_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportMemoryZirconHandleInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportMemoryZirconHandleInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType, handle ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( ImportMemoryZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = handleType <=> rhs.handleType; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &handle, &rhs.handle, sizeof( zx_handle_t ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( ImportMemoryZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ) && - ( memcmp( &handle, &rhs.handle, sizeof( zx_handle_t ) ) == 0 ); - } - - bool operator!=( ImportMemoryZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryZirconHandleInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - zx_handle_t handle = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportMemoryZirconHandleInfoFUCHSIA ) == - sizeof( VkImportMemoryZirconHandleInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportMemoryZirconHandleInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportMemoryZirconHandleInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct ImportSemaphoreFdInfoKHR - { - using NativeType = VkImportSemaphoreFdInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eImportSemaphoreFdInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportSemaphoreFdInfoKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd, - int fd_ = {} ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , flags( flags_ ) - , handleType( handleType_ ) - , fd( fd_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportSemaphoreFdInfoKHR( ImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportSemaphoreFdInfoKHR( VkImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportSemaphoreFdInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportSemaphoreFdInfoKHR & operator=( ImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportSemaphoreFdInfoKHR & operator=( VkImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreFdInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreFdInfoKHR & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreFdInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreFdInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreFdInfoKHR & setFd( int fd_ ) VULKAN_HPP_NOEXCEPT - { - fd = fd_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportSemaphoreFdInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportSemaphoreFdInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, flags, handleType, fd ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportSemaphoreFdInfoKHR const & ) const = default; -#else - bool operator==( ImportSemaphoreFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( flags == rhs.flags ) && ( handleType == rhs.handleType ) && ( fd == rhs.fd ); -# endif - } - - bool operator!=( ImportSemaphoreFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportSemaphoreFdInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - int fd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR ) == - sizeof( VkImportSemaphoreFdInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ImportSemaphoreFdInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportSemaphoreFdInfoKHR; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct ImportSemaphoreWin32HandleInfoKHR - { - using NativeType = VkImportSemaphoreWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImportSemaphoreWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportSemaphoreWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd, - HANDLE handle_ = {}, - LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , flags( flags_ ) - , handleType( handleType_ ) - , handle( handle_ ) - , name( name_ ) - {} - - VULKAN_HPP_CONSTEXPR - ImportSemaphoreWin32HandleInfoKHR( ImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportSemaphoreWin32HandleInfoKHR( VkImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportSemaphoreWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportSemaphoreWin32HandleInfoKHR & - operator=( ImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportSemaphoreWin32HandleInfoKHR & operator=( VkImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreWin32HandleInfoKHR & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreWin32HandleInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreWin32HandleInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreWin32HandleInfoKHR & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT - { - handle = handle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT - { - name = name_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportSemaphoreWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportSemaphoreWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, flags, handleType, handle, name ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ImportSemaphoreWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( ImportSemaphoreWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( flags == rhs.flags ) && ( handleType == rhs.handleType ) && ( handle == rhs.handle ) && - ( name == rhs.name ); -# endif - } - - bool operator!=( ImportSemaphoreWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportSemaphoreWin32HandleInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - HANDLE handle = {}; - LPCWSTR name = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR ) == - sizeof( VkImportSemaphoreWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportSemaphoreWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportSemaphoreWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct ImportSemaphoreZirconHandleInfoFUCHSIA - { - using NativeType = VkImportSemaphoreZirconHandleInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eImportSemaphoreZirconHandleInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ImportSemaphoreZirconHandleInfoFUCHSIA( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd, - zx_handle_t zirconHandle_ = {} ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , flags( flags_ ) - , handleType( handleType_ ) - , zirconHandle( zirconHandle_ ) - {} - - VULKAN_HPP_CONSTEXPR ImportSemaphoreZirconHandleInfoFUCHSIA( ImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - ImportSemaphoreZirconHandleInfoFUCHSIA( VkImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : ImportSemaphoreZirconHandleInfoFUCHSIA( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ImportSemaphoreZirconHandleInfoFUCHSIA & - operator=( ImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ImportSemaphoreZirconHandleInfoFUCHSIA & - operator=( VkImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreZirconHandleInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreZirconHandleInfoFUCHSIA & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreZirconHandleInfoFUCHSIA & - setFlags( VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreZirconHandleInfoFUCHSIA & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ImportSemaphoreZirconHandleInfoFUCHSIA & - setZirconHandle( zx_handle_t zirconHandle_ ) VULKAN_HPP_NOEXCEPT - { - zirconHandle = zirconHandle_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkImportSemaphoreZirconHandleInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkImportSemaphoreZirconHandleInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, flags, handleType, zirconHandle ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( ImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = semaphore <=> rhs.semaphore; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = handleType <=> rhs.handleType; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &zirconHandle, &rhs.zirconHandle, sizeof( zx_handle_t ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( ImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( flags == rhs.flags ) && ( handleType == rhs.handleType ) && - ( memcmp( &zirconHandle, &rhs.zirconHandle, sizeof( zx_handle_t ) ) == 0 ); - } - - bool operator!=( ImportSemaphoreZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportSemaphoreZirconHandleInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - zx_handle_t zirconHandle = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ImportSemaphoreZirconHandleInfoFUCHSIA ) == - sizeof( VkImportSemaphoreZirconHandleInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ImportSemaphoreZirconHandleInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ImportSemaphoreZirconHandleInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct IndirectCommandsLayoutTokenNV - { - using NativeType = VkIndirectCommandsLayoutTokenNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eIndirectCommandsLayoutTokenNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - IndirectCommandsLayoutTokenNV( VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNV tokenType_ = - VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNV::eShaderGroup, - uint32_t stream_ = {}, - uint32_t offset_ = {}, - uint32_t vertexBindingUnit_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vertexDynamicStride_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout pushconstantPipelineLayout_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlags pushconstantShaderStageFlags_ = {}, - uint32_t pushconstantOffset_ = {}, - uint32_t pushconstantSize_ = {}, - VULKAN_HPP_NAMESPACE::IndirectStateFlagsNV indirectStateFlags_ = {}, - uint32_t indexTypeCount_ = {}, - const VULKAN_HPP_NAMESPACE::IndexType * pIndexTypes_ = {}, - const uint32_t * pIndexTypeValues_ = {} ) VULKAN_HPP_NOEXCEPT - : tokenType( tokenType_ ) - , stream( stream_ ) - , offset( offset_ ) - , vertexBindingUnit( vertexBindingUnit_ ) - , vertexDynamicStride( vertexDynamicStride_ ) - , pushconstantPipelineLayout( pushconstantPipelineLayout_ ) - , pushconstantShaderStageFlags( pushconstantShaderStageFlags_ ) - , pushconstantOffset( pushconstantOffset_ ) - , pushconstantSize( pushconstantSize_ ) - , indirectStateFlags( indirectStateFlags_ ) - , indexTypeCount( indexTypeCount_ ) - , pIndexTypes( pIndexTypes_ ) - , pIndexTypeValues( pIndexTypeValues_ ) - {} - - VULKAN_HPP_CONSTEXPR - IndirectCommandsLayoutTokenNV( IndirectCommandsLayoutTokenNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IndirectCommandsLayoutTokenNV( VkIndirectCommandsLayoutTokenNV const & rhs ) VULKAN_HPP_NOEXCEPT - : IndirectCommandsLayoutTokenNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - IndirectCommandsLayoutTokenNV( - VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNV tokenType_, - uint32_t stream_, - uint32_t offset_, - uint32_t vertexBindingUnit_, - VULKAN_HPP_NAMESPACE::Bool32 vertexDynamicStride_, - VULKAN_HPP_NAMESPACE::PipelineLayout pushconstantPipelineLayout_, - VULKAN_HPP_NAMESPACE::ShaderStageFlags pushconstantShaderStageFlags_, - uint32_t pushconstantOffset_, - uint32_t pushconstantSize_, - VULKAN_HPP_NAMESPACE::IndirectStateFlagsNV indirectStateFlags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & indexTypes_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & indexTypeValues_ = {} ) - : tokenType( tokenType_ ) - , stream( stream_ ) - , offset( offset_ ) - , vertexBindingUnit( vertexBindingUnit_ ) - , vertexDynamicStride( vertexDynamicStride_ ) - , pushconstantPipelineLayout( pushconstantPipelineLayout_ ) - , pushconstantShaderStageFlags( pushconstantShaderStageFlags_ ) - , pushconstantOffset( pushconstantOffset_ ) - , pushconstantSize( pushconstantSize_ ) - , indirectStateFlags( indirectStateFlags_ ) - , indexTypeCount( static_cast( indexTypes_.size() ) ) - , pIndexTypes( indexTypes_.data() ) - , pIndexTypeValues( indexTypeValues_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( indexTypes_.size() == indexTypeValues_.size() ); -# else - if ( indexTypes_.size() != indexTypeValues_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::IndirectCommandsLayoutTokenNV::IndirectCommandsLayoutTokenNV: indexTypes_.size() != indexTypeValues_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - IndirectCommandsLayoutTokenNV & - operator=( IndirectCommandsLayoutTokenNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IndirectCommandsLayoutTokenNV & operator=( VkIndirectCommandsLayoutTokenNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setTokenType( VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNV tokenType_ ) VULKAN_HPP_NOEXCEPT - { - tokenType = tokenType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & setStream( uint32_t stream_ ) VULKAN_HPP_NOEXCEPT - { - stream = stream_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & setOffset( uint32_t offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setVertexBindingUnit( uint32_t vertexBindingUnit_ ) VULKAN_HPP_NOEXCEPT - { - vertexBindingUnit = vertexBindingUnit_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setVertexDynamicStride( VULKAN_HPP_NAMESPACE::Bool32 vertexDynamicStride_ ) VULKAN_HPP_NOEXCEPT - { - vertexDynamicStride = vertexDynamicStride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & setPushconstantPipelineLayout( - VULKAN_HPP_NAMESPACE::PipelineLayout pushconstantPipelineLayout_ ) VULKAN_HPP_NOEXCEPT - { - pushconstantPipelineLayout = pushconstantPipelineLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & setPushconstantShaderStageFlags( - VULKAN_HPP_NAMESPACE::ShaderStageFlags pushconstantShaderStageFlags_ ) VULKAN_HPP_NOEXCEPT - { - pushconstantShaderStageFlags = pushconstantShaderStageFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setPushconstantOffset( uint32_t pushconstantOffset_ ) VULKAN_HPP_NOEXCEPT - { - pushconstantOffset = pushconstantOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setPushconstantSize( uint32_t pushconstantSize_ ) VULKAN_HPP_NOEXCEPT - { - pushconstantSize = pushconstantSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setIndirectStateFlags( VULKAN_HPP_NAMESPACE::IndirectStateFlagsNV indirectStateFlags_ ) VULKAN_HPP_NOEXCEPT - { - indirectStateFlags = indirectStateFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setIndexTypeCount( uint32_t indexTypeCount_ ) VULKAN_HPP_NOEXCEPT - { - indexTypeCount = indexTypeCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setPIndexTypes( const VULKAN_HPP_NAMESPACE::IndexType * pIndexTypes_ ) VULKAN_HPP_NOEXCEPT - { - pIndexTypes = pIndexTypes_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - IndirectCommandsLayoutTokenNV & setIndexTypes( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & indexTypes_ ) - VULKAN_HPP_NOEXCEPT - { - indexTypeCount = static_cast( indexTypes_.size() ); - pIndexTypes = indexTypes_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutTokenNV & - setPIndexTypeValues( const uint32_t * pIndexTypeValues_ ) VULKAN_HPP_NOEXCEPT - { - pIndexTypeValues = pIndexTypeValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - IndirectCommandsLayoutTokenNV & setIndexTypeValues( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & indexTypeValues_ ) VULKAN_HPP_NOEXCEPT - { - indexTypeCount = static_cast( indexTypeValues_.size() ); - pIndexTypeValues = indexTypeValues_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkIndirectCommandsLayoutTokenNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkIndirectCommandsLayoutTokenNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - tokenType, - stream, - offset, - vertexBindingUnit, - vertexDynamicStride, - pushconstantPipelineLayout, - pushconstantShaderStageFlags, - pushconstantOffset, - pushconstantSize, - indirectStateFlags, - indexTypeCount, - pIndexTypes, - pIndexTypeValues ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( IndirectCommandsLayoutTokenNV const & ) const = default; -#else - bool operator==( IndirectCommandsLayoutTokenNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( tokenType == rhs.tokenType ) && - ( stream == rhs.stream ) && ( offset == rhs.offset ) && ( vertexBindingUnit == rhs.vertexBindingUnit ) && - ( vertexDynamicStride == rhs.vertexDynamicStride ) && - ( pushconstantPipelineLayout == rhs.pushconstantPipelineLayout ) && - ( pushconstantShaderStageFlags == rhs.pushconstantShaderStageFlags ) && - ( pushconstantOffset == rhs.pushconstantOffset ) && ( pushconstantSize == rhs.pushconstantSize ) && - ( indirectStateFlags == rhs.indirectStateFlags ) && ( indexTypeCount == rhs.indexTypeCount ) && - ( pIndexTypes == rhs.pIndexTypes ) && ( pIndexTypeValues == rhs.pIndexTypeValues ); -# endif - } - - bool operator!=( IndirectCommandsLayoutTokenNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eIndirectCommandsLayoutTokenNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNV tokenType = - VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNV::eShaderGroup; - uint32_t stream = {}; - uint32_t offset = {}; - uint32_t vertexBindingUnit = {}; - VULKAN_HPP_NAMESPACE::Bool32 vertexDynamicStride = {}; - VULKAN_HPP_NAMESPACE::PipelineLayout pushconstantPipelineLayout = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags pushconstantShaderStageFlags = {}; - uint32_t pushconstantOffset = {}; - uint32_t pushconstantSize = {}; - VULKAN_HPP_NAMESPACE::IndirectStateFlagsNV indirectStateFlags = {}; - uint32_t indexTypeCount = {}; - const VULKAN_HPP_NAMESPACE::IndexType * pIndexTypes = {}; - const uint32_t * pIndexTypeValues = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNV ) == - sizeof( VkIndirectCommandsLayoutTokenNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "IndirectCommandsLayoutTokenNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = IndirectCommandsLayoutTokenNV; - }; - - struct IndirectCommandsLayoutCreateInfoNV - { - using NativeType = VkIndirectCommandsLayoutCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eIndirectCommandsLayoutCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutCreateInfoNV( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNV flags_ = {}, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - uint32_t tokenCount_ = {}, - const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNV * pTokens_ = {}, - uint32_t streamCount_ = {}, - const uint32_t * pStreamStrides_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , tokenCount( tokenCount_ ) - , pTokens( pTokens_ ) - , streamCount( streamCount_ ) - , pStreamStrides( pStreamStrides_ ) - {} - - VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutCreateInfoNV( IndirectCommandsLayoutCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - IndirectCommandsLayoutCreateInfoNV( VkIndirectCommandsLayoutCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : IndirectCommandsLayoutCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - IndirectCommandsLayoutCreateInfoNV( - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNV flags_, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - tokens_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & streamStrides_ = {} ) - : flags( flags_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , tokenCount( static_cast( tokens_.size() ) ) - , pTokens( tokens_.data() ) - , streamCount( static_cast( streamStrides_.size() ) ) - , pStreamStrides( streamStrides_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - IndirectCommandsLayoutCreateInfoNV & - operator=( IndirectCommandsLayoutCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - IndirectCommandsLayoutCreateInfoNV & - operator=( VkIndirectCommandsLayoutCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & - setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT - { - pipelineBindPoint = pipelineBindPoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & - setTokenCount( uint32_t tokenCount_ ) VULKAN_HPP_NOEXCEPT - { - tokenCount = tokenCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & - setPTokens( const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNV * pTokens_ ) VULKAN_HPP_NOEXCEPT - { - pTokens = pTokens_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - IndirectCommandsLayoutCreateInfoNV & setTokens( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - tokens_ ) VULKAN_HPP_NOEXCEPT - { - tokenCount = static_cast( tokens_.size() ); - pTokens = tokens_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & - setStreamCount( uint32_t streamCount_ ) VULKAN_HPP_NOEXCEPT - { - streamCount = streamCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 IndirectCommandsLayoutCreateInfoNV & - setPStreamStrides( const uint32_t * pStreamStrides_ ) VULKAN_HPP_NOEXCEPT - { - pStreamStrides = pStreamStrides_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - IndirectCommandsLayoutCreateInfoNV & setStreamStrides( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & streamStrides_ ) VULKAN_HPP_NOEXCEPT - { - streamCount = static_cast( streamStrides_.size() ); - pStreamStrides = streamStrides_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkIndirectCommandsLayoutCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkIndirectCommandsLayoutCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pipelineBindPoint, tokenCount, pTokens, streamCount, pStreamStrides ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( IndirectCommandsLayoutCreateInfoNV const & ) const = default; -#else - bool operator==( IndirectCommandsLayoutCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pipelineBindPoint == rhs.pipelineBindPoint ) && ( tokenCount == rhs.tokenCount ) && - ( pTokens == rhs.pTokens ) && ( streamCount == rhs.streamCount ) && - ( pStreamStrides == rhs.pStreamStrides ); -# endif - } - - bool operator!=( IndirectCommandsLayoutCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eIndirectCommandsLayoutCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNV flags = {}; - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics; - uint32_t tokenCount = {}; - const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNV * pTokens = {}; - uint32_t streamCount = {}; - const uint32_t * pStreamStrides = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNV ) == - sizeof( VkIndirectCommandsLayoutCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "IndirectCommandsLayoutCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = IndirectCommandsLayoutCreateInfoNV; - }; - - struct InitializePerformanceApiInfoINTEL - { - using NativeType = VkInitializePerformanceApiInfoINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eInitializePerformanceApiInfoINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR InitializePerformanceApiInfoINTEL( void * pUserData_ = {} ) VULKAN_HPP_NOEXCEPT - : pUserData( pUserData_ ) - {} - - VULKAN_HPP_CONSTEXPR - InitializePerformanceApiInfoINTEL( InitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - InitializePerformanceApiInfoINTEL( VkInitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - : InitializePerformanceApiInfoINTEL( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - InitializePerformanceApiInfoINTEL & - operator=( InitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - InitializePerformanceApiInfoINTEL & operator=( VkInitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 InitializePerformanceApiInfoINTEL & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InitializePerformanceApiInfoINTEL & setPUserData( void * pUserData_ ) VULKAN_HPP_NOEXCEPT - { - pUserData = pUserData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkInitializePerformanceApiInfoINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkInitializePerformanceApiInfoINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pUserData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( InitializePerformanceApiInfoINTEL const & ) const = default; -#else - bool operator==( InitializePerformanceApiInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pUserData == rhs.pUserData ); -# endif - } - - bool operator!=( InitializePerformanceApiInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eInitializePerformanceApiInfoINTEL; - const void * pNext = {}; - void * pUserData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL ) == - sizeof( VkInitializePerformanceApiInfoINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "InitializePerformanceApiInfoINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = InitializePerformanceApiInfoINTEL; - }; - - struct InputAttachmentAspectReference - { - using NativeType = VkInputAttachmentAspectReference; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - InputAttachmentAspectReference( uint32_t subpass_ = {}, - uint32_t inputAttachmentIndex_ = {}, - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {} ) VULKAN_HPP_NOEXCEPT - : subpass( subpass_ ) - , inputAttachmentIndex( inputAttachmentIndex_ ) - , aspectMask( aspectMask_ ) - {} - - VULKAN_HPP_CONSTEXPR - InputAttachmentAspectReference( InputAttachmentAspectReference const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - InputAttachmentAspectReference( VkInputAttachmentAspectReference const & rhs ) VULKAN_HPP_NOEXCEPT - : InputAttachmentAspectReference( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - InputAttachmentAspectReference & - operator=( InputAttachmentAspectReference const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - InputAttachmentAspectReference & operator=( VkInputAttachmentAspectReference const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 InputAttachmentAspectReference & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT - { - subpass = subpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InputAttachmentAspectReference & - setInputAttachmentIndex( uint32_t inputAttachmentIndex_ ) VULKAN_HPP_NOEXCEPT - { - inputAttachmentIndex = inputAttachmentIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InputAttachmentAspectReference & - setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT - { - aspectMask = aspectMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkInputAttachmentAspectReference const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkInputAttachmentAspectReference &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( subpass, inputAttachmentIndex, aspectMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( InputAttachmentAspectReference const & ) const = default; -#else - bool operator==( InputAttachmentAspectReference const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( subpass == rhs.subpass ) && ( inputAttachmentIndex == rhs.inputAttachmentIndex ) && - ( aspectMask == rhs.aspectMask ); -# endif - } - - bool operator!=( InputAttachmentAspectReference const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t subpass = {}; - uint32_t inputAttachmentIndex = {}; - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference ) == - sizeof( VkInputAttachmentAspectReference ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "InputAttachmentAspectReference is not nothrow_move_constructible!" ); - using InputAttachmentAspectReferenceKHR = InputAttachmentAspectReference; - - struct InstanceCreateInfo - { - using NativeType = VkInstanceCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eInstanceCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR InstanceCreateInfo( VULKAN_HPP_NAMESPACE::InstanceCreateFlags flags_ = {}, - const VULKAN_HPP_NAMESPACE::ApplicationInfo * pApplicationInfo_ = {}, - uint32_t enabledLayerCount_ = {}, - const char * const * ppEnabledLayerNames_ = {}, - uint32_t enabledExtensionCount_ = {}, - const char * const * ppEnabledExtensionNames_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pApplicationInfo( pApplicationInfo_ ) - , enabledLayerCount( enabledLayerCount_ ) - , ppEnabledLayerNames( ppEnabledLayerNames_ ) - , enabledExtensionCount( enabledExtensionCount_ ) - , ppEnabledExtensionNames( ppEnabledExtensionNames_ ) - {} - - VULKAN_HPP_CONSTEXPR InstanceCreateInfo( InstanceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - InstanceCreateInfo( VkInstanceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : InstanceCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - InstanceCreateInfo( - VULKAN_HPP_NAMESPACE::InstanceCreateFlags flags_, - const VULKAN_HPP_NAMESPACE::ApplicationInfo * pApplicationInfo_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledLayerNames_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledExtensionNames_ = {} ) - : flags( flags_ ) - , pApplicationInfo( pApplicationInfo_ ) - , enabledLayerCount( static_cast( pEnabledLayerNames_.size() ) ) - , ppEnabledLayerNames( pEnabledLayerNames_.data() ) - , enabledExtensionCount( static_cast( pEnabledExtensionNames_.size() ) ) - , ppEnabledExtensionNames( pEnabledExtensionNames_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - InstanceCreateInfo & operator=( InstanceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - InstanceCreateInfo & operator=( VkInstanceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::InstanceCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & - setPApplicationInfo( const VULKAN_HPP_NAMESPACE::ApplicationInfo * pApplicationInfo_ ) VULKAN_HPP_NOEXCEPT - { - pApplicationInfo = pApplicationInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & setEnabledLayerCount( uint32_t enabledLayerCount_ ) VULKAN_HPP_NOEXCEPT - { - enabledLayerCount = enabledLayerCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & - setPpEnabledLayerNames( const char * const * ppEnabledLayerNames_ ) VULKAN_HPP_NOEXCEPT - { - ppEnabledLayerNames = ppEnabledLayerNames_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - InstanceCreateInfo & setPEnabledLayerNames( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledLayerNames_ ) - VULKAN_HPP_NOEXCEPT - { - enabledLayerCount = static_cast( pEnabledLayerNames_.size() ); - ppEnabledLayerNames = pEnabledLayerNames_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & - setEnabledExtensionCount( uint32_t enabledExtensionCount_ ) VULKAN_HPP_NOEXCEPT - { - enabledExtensionCount = enabledExtensionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 InstanceCreateInfo & - setPpEnabledExtensionNames( const char * const * ppEnabledExtensionNames_ ) VULKAN_HPP_NOEXCEPT - { - ppEnabledExtensionNames = ppEnabledExtensionNames_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - InstanceCreateInfo & setPEnabledExtensionNames( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & pEnabledExtensionNames_ ) - VULKAN_HPP_NOEXCEPT - { - enabledExtensionCount = static_cast( pEnabledExtensionNames_.size() ); - ppEnabledExtensionNames = pEnabledExtensionNames_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkInstanceCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkInstanceCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - pApplicationInfo, - enabledLayerCount, - ppEnabledLayerNames, - enabledExtensionCount, - ppEnabledExtensionNames ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( InstanceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = pApplicationInfo <=> rhs.pApplicationInfo; cmp != 0 ) - return cmp; - if ( auto cmp = enabledLayerCount <=> rhs.enabledLayerCount; cmp != 0 ) - return cmp; - for ( size_t i = 0; i < enabledLayerCount; ++i ) - { - if ( ppEnabledLayerNames[i] != rhs.ppEnabledLayerNames[i] ) - if ( auto cmp = strcmp( ppEnabledLayerNames[i], rhs.ppEnabledLayerNames[i] ); cmp != 0 ) - return cmp < 0 ? std::strong_ordering::less : std::strong_ordering::greater; - } - if ( auto cmp = enabledExtensionCount <=> rhs.enabledExtensionCount; cmp != 0 ) - return cmp; - for ( size_t i = 0; i < enabledExtensionCount; ++i ) - { - if ( ppEnabledExtensionNames[i] != rhs.ppEnabledExtensionNames[i] ) - if ( auto cmp = strcmp( ppEnabledExtensionNames[i], rhs.ppEnabledExtensionNames[i] ); cmp != 0 ) - return cmp < 0 ? std::strong_ordering::less : std::strong_ordering::greater; - } - - return std::strong_ordering::equivalent; - } -#endif - - bool operator==( InstanceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pApplicationInfo == rhs.pApplicationInfo ) && ( enabledLayerCount == rhs.enabledLayerCount ) && - [this, rhs] - { - bool equal = true; - for ( size_t i = 0; equal && ( i < enabledLayerCount ); ++i ) - { - equal = ( ( ppEnabledLayerNames[i] == rhs.ppEnabledLayerNames[i] ) || - ( strcmp( ppEnabledLayerNames[i], rhs.ppEnabledLayerNames[i] ) == 0 ) ); - } - return equal; - }() && ( enabledExtensionCount == rhs.enabledExtensionCount ) && - [this, rhs] - { - bool equal = true; - for ( size_t i = 0; equal && ( i < enabledExtensionCount ); ++i ) - { - equal = ( ( ppEnabledExtensionNames[i] == rhs.ppEnabledExtensionNames[i] ) || - ( strcmp( ppEnabledExtensionNames[i], rhs.ppEnabledExtensionNames[i] ) == 0 ) ); - } - return equal; - }(); - } - - bool operator!=( InstanceCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eInstanceCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::InstanceCreateFlags flags = {}; - const VULKAN_HPP_NAMESPACE::ApplicationInfo * pApplicationInfo = {}; - uint32_t enabledLayerCount = {}; - const char * const * ppEnabledLayerNames = {}; - uint32_t enabledExtensionCount = {}; - const char * const * ppEnabledExtensionNames = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::InstanceCreateInfo ) == sizeof( VkInstanceCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "InstanceCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = InstanceCreateInfo; - }; - - struct LayerProperties - { - using NativeType = VkLayerProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - LayerProperties( std::array const & layerName_ = {}, - uint32_t specVersion_ = {}, - uint32_t implementationVersion_ = {}, - std::array const & description_ = {} ) VULKAN_HPP_NOEXCEPT - : layerName( layerName_ ) - , specVersion( specVersion_ ) - , implementationVersion( implementationVersion_ ) - , description( description_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 LayerProperties( LayerProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - LayerProperties( VkLayerProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : LayerProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - LayerProperties & operator=( LayerProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - LayerProperties & operator=( VkLayerProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkLayerProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkLayerProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - uint32_t const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( layerName, specVersion, implementationVersion, description ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( LayerProperties const & ) const = default; -#else - bool operator==( LayerProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( layerName == rhs.layerName ) && ( specVersion == rhs.specVersion ) && - ( implementationVersion == rhs.implementationVersion ) && ( description == rhs.description ); -# endif - } - - bool operator!=( LayerProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ArrayWrapper1D layerName = {}; - uint32_t specVersion = {}; - uint32_t implementationVersion = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D description = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::LayerProperties ) == sizeof( VkLayerProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "LayerProperties is not nothrow_move_constructible!" ); - -#if defined( VK_USE_PLATFORM_MACOS_MVK ) - struct MacOSSurfaceCreateInfoMVK - { - using NativeType = VkMacOSSurfaceCreateInfoMVK; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMacosSurfaceCreateInfoMVK; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MacOSSurfaceCreateInfoMVK( VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateFlagsMVK flags_ = {}, - const void * pView_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pView( pView_ ) - {} - - VULKAN_HPP_CONSTEXPR - MacOSSurfaceCreateInfoMVK( MacOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MacOSSurfaceCreateInfoMVK( VkMacOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT - : MacOSSurfaceCreateInfoMVK( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MacOSSurfaceCreateInfoMVK & operator=( MacOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MacOSSurfaceCreateInfoMVK & operator=( VkMacOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MacOSSurfaceCreateInfoMVK & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MacOSSurfaceCreateInfoMVK & - setFlags( VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateFlagsMVK flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MacOSSurfaceCreateInfoMVK & setPView( const void * pView_ ) VULKAN_HPP_NOEXCEPT - { - pView = pView_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMacOSSurfaceCreateInfoMVK const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMacOSSurfaceCreateInfoMVK &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pView ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MacOSSurfaceCreateInfoMVK const & ) const = default; -# else - bool operator==( MacOSSurfaceCreateInfoMVK const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( pView == rhs.pView ); -# endif - } - - bool operator!=( MacOSSurfaceCreateInfoMVK const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMacosSurfaceCreateInfoMVK; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateFlagsMVK flags = {}; - const void * pView = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK ) == - sizeof( VkMacOSSurfaceCreateInfoMVK ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MacOSSurfaceCreateInfoMVK is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MacOSSurfaceCreateInfoMVK; - }; -#endif /*VK_USE_PLATFORM_MACOS_MVK*/ - - struct MappedMemoryRange - { - using NativeType = VkMappedMemoryRange; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMappedMemoryRange; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MappedMemoryRange( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - , offset( offset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR MappedMemoryRange( MappedMemoryRange const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MappedMemoryRange( VkMappedMemoryRange const & rhs ) VULKAN_HPP_NOEXCEPT - : MappedMemoryRange( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MappedMemoryRange & operator=( MappedMemoryRange const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MappedMemoryRange & operator=( VkMappedMemoryRange const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MappedMemoryRange & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MappedMemoryRange & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MappedMemoryRange & - setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MappedMemoryRange & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMappedMemoryRange const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMappedMemoryRange &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory, offset, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MappedMemoryRange const & ) const = default; -#else - bool operator==( MappedMemoryRange const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ) && ( offset == rhs.offset ) && - ( size == rhs.size ); -# endif - } - - bool operator!=( MappedMemoryRange const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMappedMemoryRange; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize offset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MappedMemoryRange ) == sizeof( VkMappedMemoryRange ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MappedMemoryRange is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MappedMemoryRange; - }; - - struct MemoryAllocateFlagsInfo - { - using NativeType = VkMemoryAllocateFlagsInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryAllocateFlagsInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryAllocateFlagsInfo( VULKAN_HPP_NAMESPACE::MemoryAllocateFlags flags_ = {}, - uint32_t deviceMask_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , deviceMask( deviceMask_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryAllocateFlagsInfo( MemoryAllocateFlagsInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryAllocateFlagsInfo( VkMemoryAllocateFlagsInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryAllocateFlagsInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryAllocateFlagsInfo & operator=( MemoryAllocateFlagsInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryAllocateFlagsInfo & operator=( VkMemoryAllocateFlagsInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryAllocateFlagsInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryAllocateFlagsInfo & - setFlags( VULKAN_HPP_NAMESPACE::MemoryAllocateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryAllocateFlagsInfo & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT - { - deviceMask = deviceMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryAllocateFlagsInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryAllocateFlagsInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, deviceMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryAllocateFlagsInfo const & ) const = default; -#else - bool operator==( MemoryAllocateFlagsInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( deviceMask == rhs.deviceMask ); -# endif - } - - bool operator!=( MemoryAllocateFlagsInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryAllocateFlagsInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::MemoryAllocateFlags flags = {}; - uint32_t deviceMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryAllocateFlagsInfo ) == - sizeof( VkMemoryAllocateFlagsInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryAllocateFlagsInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryAllocateFlagsInfo; - }; - using MemoryAllocateFlagsInfoKHR = MemoryAllocateFlagsInfo; - - struct MemoryAllocateInfo - { - using NativeType = VkMemoryAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryAllocateInfo( VULKAN_HPP_NAMESPACE::DeviceSize allocationSize_ = {}, - uint32_t memoryTypeIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : allocationSize( allocationSize_ ) - , memoryTypeIndex( memoryTypeIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryAllocateInfo( MemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryAllocateInfo( VkMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryAllocateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryAllocateInfo & operator=( MemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryAllocateInfo & operator=( VkMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryAllocateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryAllocateInfo & - setAllocationSize( VULKAN_HPP_NAMESPACE::DeviceSize allocationSize_ ) VULKAN_HPP_NOEXCEPT - { - allocationSize = allocationSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryAllocateInfo & setMemoryTypeIndex( uint32_t memoryTypeIndex_ ) VULKAN_HPP_NOEXCEPT - { - memoryTypeIndex = memoryTypeIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, allocationSize, memoryTypeIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryAllocateInfo const & ) const = default; -#else - bool operator==( MemoryAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( allocationSize == rhs.allocationSize ) && - ( memoryTypeIndex == rhs.memoryTypeIndex ); -# endif - } - - bool operator!=( MemoryAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryAllocateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize allocationSize = {}; - uint32_t memoryTypeIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryAllocateInfo ) == sizeof( VkMemoryAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryAllocateInfo; - }; - - struct MemoryBarrier - { - using NativeType = VkMemoryBarrier; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryBarrier; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryBarrier( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ = {} ) VULKAN_HPP_NOEXCEPT - : srcAccessMask( srcAccessMask_ ) - , dstAccessMask( dstAccessMask_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryBarrier( MemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryBarrier( VkMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryBarrier( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryBarrier & operator=( MemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryBarrier & operator=( VkMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryBarrier & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryBarrier const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryBarrier &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcAccessMask, dstAccessMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryBarrier const & ) const = default; -#else - bool operator==( MemoryBarrier const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcAccessMask == rhs.srcAccessMask ) && - ( dstAccessMask == rhs.dstAccessMask ); -# endif - } - - bool operator!=( MemoryBarrier const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryBarrier; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryBarrier ) == sizeof( VkMemoryBarrier ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryBarrier is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryBarrier; - }; - - struct MemoryDedicatedAllocateInfo - { - using NativeType = VkMemoryDedicatedAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryDedicatedAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryDedicatedAllocateInfo( VULKAN_HPP_NAMESPACE::Image image_ = {}, - VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT - : image( image_ ) - , buffer( buffer_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryDedicatedAllocateInfo( MemoryDedicatedAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryDedicatedAllocateInfo( VkMemoryDedicatedAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryDedicatedAllocateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryDedicatedAllocateInfo & operator=( MemoryDedicatedAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryDedicatedAllocateInfo & operator=( VkMemoryDedicatedAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryDedicatedAllocateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryDedicatedAllocateInfo & - setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT - { - image = image_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryDedicatedAllocateInfo & - setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT - { - buffer = buffer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryDedicatedAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryDedicatedAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, image, buffer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryDedicatedAllocateInfo const & ) const = default; -#else - bool operator==( MemoryDedicatedAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( image == rhs.image ) && ( buffer == rhs.buffer ); -# endif - } - - bool operator!=( MemoryDedicatedAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryDedicatedAllocateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image image = {}; - VULKAN_HPP_NAMESPACE::Buffer buffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryDedicatedAllocateInfo ) == - sizeof( VkMemoryDedicatedAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryDedicatedAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryDedicatedAllocateInfo; - }; - using MemoryDedicatedAllocateInfoKHR = MemoryDedicatedAllocateInfo; - - struct MemoryDedicatedRequirements - { - using NativeType = VkMemoryDedicatedRequirements; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryDedicatedRequirements; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - MemoryDedicatedRequirements( VULKAN_HPP_NAMESPACE::Bool32 prefersDedicatedAllocation_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 requiresDedicatedAllocation_ = {} ) VULKAN_HPP_NOEXCEPT - : prefersDedicatedAllocation( prefersDedicatedAllocation_ ) - , requiresDedicatedAllocation( requiresDedicatedAllocation_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryDedicatedRequirements( MemoryDedicatedRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryDedicatedRequirements( VkMemoryDedicatedRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryDedicatedRequirements( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryDedicatedRequirements & operator=( MemoryDedicatedRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryDedicatedRequirements & operator=( VkMemoryDedicatedRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryDedicatedRequirements const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryDedicatedRequirements &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, prefersDedicatedAllocation, requiresDedicatedAllocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryDedicatedRequirements const & ) const = default; -#else - bool operator==( MemoryDedicatedRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( prefersDedicatedAllocation == rhs.prefersDedicatedAllocation ) && - ( requiresDedicatedAllocation == rhs.requiresDedicatedAllocation ); -# endif - } - - bool operator!=( MemoryDedicatedRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryDedicatedRequirements; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 prefersDedicatedAllocation = {}; - VULKAN_HPP_NAMESPACE::Bool32 requiresDedicatedAllocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryDedicatedRequirements ) == - sizeof( VkMemoryDedicatedRequirements ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryDedicatedRequirements is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryDedicatedRequirements; - }; - using MemoryDedicatedRequirementsKHR = MemoryDedicatedRequirements; - - struct MemoryFdPropertiesKHR - { - using NativeType = VkMemoryFdPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryFdPropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryFdPropertiesKHR( uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryTypeBits( memoryTypeBits_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryFdPropertiesKHR( MemoryFdPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryFdPropertiesKHR( VkMemoryFdPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryFdPropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryFdPropertiesKHR & operator=( MemoryFdPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryFdPropertiesKHR & operator=( VkMemoryFdPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryFdPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryFdPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryTypeBits ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryFdPropertiesKHR const & ) const = default; -#else - bool operator==( MemoryFdPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryTypeBits == rhs.memoryTypeBits ); -# endif - } - - bool operator!=( MemoryFdPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryFdPropertiesKHR; - void * pNext = {}; - uint32_t memoryTypeBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryFdPropertiesKHR ) == sizeof( VkMemoryFdPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryFdPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryFdPropertiesKHR; - }; - -#if defined( VK_USE_PLATFORM_ANDROID_KHR ) - struct MemoryGetAndroidHardwareBufferInfoANDROID - { - using NativeType = VkMemoryGetAndroidHardwareBufferInfoANDROID; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eMemoryGetAndroidHardwareBufferInfoANDROID; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - MemoryGetAndroidHardwareBufferInfoANDROID( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {} ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryGetAndroidHardwareBufferInfoANDROID( - MemoryGetAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetAndroidHardwareBufferInfoANDROID( VkMemoryGetAndroidHardwareBufferInfoANDROID const & rhs ) - VULKAN_HPP_NOEXCEPT - : MemoryGetAndroidHardwareBufferInfoANDROID( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryGetAndroidHardwareBufferInfoANDROID & - operator=( MemoryGetAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetAndroidHardwareBufferInfoANDROID & - operator=( VkMemoryGetAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryGetAndroidHardwareBufferInfoANDROID & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetAndroidHardwareBufferInfoANDROID & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryGetAndroidHardwareBufferInfoANDROID const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryGetAndroidHardwareBufferInfoANDROID &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryGetAndroidHardwareBufferInfoANDROID const & ) const = default; -# else - bool operator==( MemoryGetAndroidHardwareBufferInfoANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ); -# endif - } - - bool operator!=( MemoryGetAndroidHardwareBufferInfoANDROID const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryGetAndroidHardwareBufferInfoANDROID; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryGetAndroidHardwareBufferInfoANDROID ) == - sizeof( VkMemoryGetAndroidHardwareBufferInfoANDROID ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryGetAndroidHardwareBufferInfoANDROID is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryGetAndroidHardwareBufferInfoANDROID; - }; -#endif /*VK_USE_PLATFORM_ANDROID_KHR*/ - - struct MemoryGetFdInfoKHR - { - using NativeType = VkMemoryGetFdInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryGetFdInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - MemoryGetFdInfoKHR( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryGetFdInfoKHR( MemoryGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetFdInfoKHR( VkMemoryGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryGetFdInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryGetFdInfoKHR & operator=( MemoryGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetFdInfoKHR & operator=( VkMemoryGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryGetFdInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetFdInfoKHR & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetFdInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryGetFdInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryGetFdInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryGetFdInfoKHR const & ) const = default; -#else - bool operator==( MemoryGetFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( MemoryGetFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryGetFdInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryGetFdInfoKHR ) == sizeof( VkMemoryGetFdInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryGetFdInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryGetFdInfoKHR; - }; - - struct MemoryGetRemoteAddressInfoNV - { - using NativeType = VkMemoryGetRemoteAddressInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryGetRemoteAddressInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryGetRemoteAddressInfoNV( - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryGetRemoteAddressInfoNV( MemoryGetRemoteAddressInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetRemoteAddressInfoNV( VkMemoryGetRemoteAddressInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryGetRemoteAddressInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryGetRemoteAddressInfoNV & operator=( MemoryGetRemoteAddressInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetRemoteAddressInfoNV & operator=( VkMemoryGetRemoteAddressInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryGetRemoteAddressInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetRemoteAddressInfoNV & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetRemoteAddressInfoNV & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryGetRemoteAddressInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryGetRemoteAddressInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryGetRemoteAddressInfoNV const & ) const = default; -#else - bool operator==( MemoryGetRemoteAddressInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( MemoryGetRemoteAddressInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryGetRemoteAddressInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryGetRemoteAddressInfoNV ) == - sizeof( VkMemoryGetRemoteAddressInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryGetRemoteAddressInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryGetRemoteAddressInfoNV; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct MemoryGetWin32HandleInfoKHR - { - using NativeType = VkMemoryGetWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryGetWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryGetWin32HandleInfoKHR( - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryGetWin32HandleInfoKHR( MemoryGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetWin32HandleInfoKHR( VkMemoryGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryGetWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryGetWin32HandleInfoKHR & operator=( MemoryGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetWin32HandleInfoKHR & operator=( VkMemoryGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryGetWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetWin32HandleInfoKHR & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetWin32HandleInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryGetWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryGetWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory, handleType ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryGetWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( MemoryGetWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( MemoryGetWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryGetWin32HandleInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryGetWin32HandleInfoKHR ) == - sizeof( VkMemoryGetWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryGetWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryGetWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct MemoryGetZirconHandleInfoFUCHSIA - { - using NativeType = VkMemoryGetZirconHandleInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryGetZirconHandleInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryGetZirconHandleInfoFUCHSIA( - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : memory( memory_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryGetZirconHandleInfoFUCHSIA( MemoryGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetZirconHandleInfoFUCHSIA( VkMemoryGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryGetZirconHandleInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryGetZirconHandleInfoFUCHSIA & - operator=( MemoryGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryGetZirconHandleInfoFUCHSIA & operator=( VkMemoryGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryGetZirconHandleInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetZirconHandleInfoFUCHSIA & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryGetZirconHandleInfoFUCHSIA & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryGetZirconHandleInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryGetZirconHandleInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memory, handleType ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryGetZirconHandleInfoFUCHSIA const & ) const = default; -# else - bool operator==( MemoryGetZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memory == rhs.memory ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( MemoryGetZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryGetZirconHandleInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryGetZirconHandleInfoFUCHSIA ) == - sizeof( VkMemoryGetZirconHandleInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryGetZirconHandleInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryGetZirconHandleInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct MemoryHeap - { - using NativeType = VkMemoryHeap; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryHeap( VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::MemoryHeapFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : size( size_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryHeap( MemoryHeap const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryHeap( VkMemoryHeap const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryHeap( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryHeap & operator=( MemoryHeap const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryHeap & operator=( VkMemoryHeap const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryHeap const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryHeap &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( size, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryHeap const & ) const = default; -#else - bool operator==( MemoryHeap const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( size == rhs.size ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( MemoryHeap const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::MemoryHeapFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryHeap ) == sizeof( VkMemoryHeap ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryHeap is not nothrow_move_constructible!" ); - - struct MemoryHostPointerPropertiesEXT - { - using NativeType = VkMemoryHostPointerPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryHostPointerPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryHostPointerPropertiesEXT( uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryTypeBits( memoryTypeBits_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryHostPointerPropertiesEXT( MemoryHostPointerPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryHostPointerPropertiesEXT( VkMemoryHostPointerPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryHostPointerPropertiesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryHostPointerPropertiesEXT & - operator=( MemoryHostPointerPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryHostPointerPropertiesEXT & operator=( VkMemoryHostPointerPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryHostPointerPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryHostPointerPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryTypeBits ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryHostPointerPropertiesEXT const & ) const = default; -#else - bool operator==( MemoryHostPointerPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryTypeBits == rhs.memoryTypeBits ); -# endif - } - - bool operator!=( MemoryHostPointerPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryHostPointerPropertiesEXT; - void * pNext = {}; - uint32_t memoryTypeBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryHostPointerPropertiesEXT ) == - sizeof( VkMemoryHostPointerPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryHostPointerPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryHostPointerPropertiesEXT; - }; - - struct MemoryOpaqueCaptureAddressAllocateInfo - { - using NativeType = VkMemoryOpaqueCaptureAddressAllocateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eMemoryOpaqueCaptureAddressAllocateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - MemoryOpaqueCaptureAddressAllocateInfo( uint64_t opaqueCaptureAddress_ = {} ) VULKAN_HPP_NOEXCEPT - : opaqueCaptureAddress( opaqueCaptureAddress_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryOpaqueCaptureAddressAllocateInfo( MemoryOpaqueCaptureAddressAllocateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - MemoryOpaqueCaptureAddressAllocateInfo( VkMemoryOpaqueCaptureAddressAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryOpaqueCaptureAddressAllocateInfo( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryOpaqueCaptureAddressAllocateInfo & - operator=( MemoryOpaqueCaptureAddressAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryOpaqueCaptureAddressAllocateInfo & - operator=( VkMemoryOpaqueCaptureAddressAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryOpaqueCaptureAddressAllocateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryOpaqueCaptureAddressAllocateInfo & - setOpaqueCaptureAddress( uint64_t opaqueCaptureAddress_ ) VULKAN_HPP_NOEXCEPT - { - opaqueCaptureAddress = opaqueCaptureAddress_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryOpaqueCaptureAddressAllocateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryOpaqueCaptureAddressAllocateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, opaqueCaptureAddress ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryOpaqueCaptureAddressAllocateInfo const & ) const = default; -#else - bool operator==( MemoryOpaqueCaptureAddressAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( opaqueCaptureAddress == rhs.opaqueCaptureAddress ); -# endif - } - - bool operator!=( MemoryOpaqueCaptureAddressAllocateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryOpaqueCaptureAddressAllocateInfo; - const void * pNext = {}; - uint64_t opaqueCaptureAddress = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryOpaqueCaptureAddressAllocateInfo ) == - sizeof( VkMemoryOpaqueCaptureAddressAllocateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryOpaqueCaptureAddressAllocateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryOpaqueCaptureAddressAllocateInfo; - }; - using MemoryOpaqueCaptureAddressAllocateInfoKHR = MemoryOpaqueCaptureAddressAllocateInfo; - - struct MemoryPriorityAllocateInfoEXT - { - using NativeType = VkMemoryPriorityAllocateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryPriorityAllocateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryPriorityAllocateInfoEXT( float priority_ = {} ) VULKAN_HPP_NOEXCEPT - : priority( priority_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryPriorityAllocateInfoEXT( MemoryPriorityAllocateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryPriorityAllocateInfoEXT( VkMemoryPriorityAllocateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryPriorityAllocateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryPriorityAllocateInfoEXT & - operator=( MemoryPriorityAllocateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryPriorityAllocateInfoEXT & operator=( VkMemoryPriorityAllocateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MemoryPriorityAllocateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MemoryPriorityAllocateInfoEXT & setPriority( float priority_ ) VULKAN_HPP_NOEXCEPT - { - priority = priority_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMemoryPriorityAllocateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryPriorityAllocateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, priority ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryPriorityAllocateInfoEXT const & ) const = default; -#else - bool operator==( MemoryPriorityAllocateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( priority == rhs.priority ); -# endif - } - - bool operator!=( MemoryPriorityAllocateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryPriorityAllocateInfoEXT; - const void * pNext = {}; - float priority = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryPriorityAllocateInfoEXT ) == - sizeof( VkMemoryPriorityAllocateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryPriorityAllocateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryPriorityAllocateInfoEXT; - }; - - struct MemoryRequirements - { - using NativeType = VkMemoryRequirements; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryRequirements( VULKAN_HPP_NAMESPACE::DeviceSize size_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize alignment_ = {}, - uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT - : size( size_ ) - , alignment( alignment_ ) - , memoryTypeBits( memoryTypeBits_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryRequirements( MemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryRequirements( VkMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryRequirements( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryRequirements & operator=( MemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryRequirements & operator=( VkMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryRequirements const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryRequirements &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( size, alignment, memoryTypeBits ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryRequirements const & ) const = default; -#else - bool operator==( MemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( size == rhs.size ) && ( alignment == rhs.alignment ) && ( memoryTypeBits == rhs.memoryTypeBits ); -# endif - } - - bool operator!=( MemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - VULKAN_HPP_NAMESPACE::DeviceSize alignment = {}; - uint32_t memoryTypeBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryRequirements ) == sizeof( VkMemoryRequirements ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryRequirements is not nothrow_move_constructible!" ); - - struct MemoryRequirements2 - { - using NativeType = VkMemoryRequirements2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryRequirements2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - MemoryRequirements2( VULKAN_HPP_NAMESPACE::MemoryRequirements memoryRequirements_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryRequirements( memoryRequirements_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryRequirements2( MemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryRequirements2( VkMemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryRequirements2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryRequirements2 & operator=( MemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryRequirements2 & operator=( VkMemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryRequirements2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryRequirements2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryRequirements ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryRequirements2 const & ) const = default; -#else - bool operator==( MemoryRequirements2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryRequirements == rhs.memoryRequirements ); -# endif - } - - bool operator!=( MemoryRequirements2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryRequirements2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::MemoryRequirements memoryRequirements = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryRequirements2 ) == sizeof( VkMemoryRequirements2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryRequirements2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryRequirements2; - }; - using MemoryRequirements2KHR = MemoryRequirements2; - - struct MemoryType - { - using NativeType = VkMemoryType; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryType( VULKAN_HPP_NAMESPACE::MemoryPropertyFlags propertyFlags_ = {}, - uint32_t heapIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : propertyFlags( propertyFlags_ ) - , heapIndex( heapIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryType( MemoryType const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryType( VkMemoryType const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryType( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryType & operator=( MemoryType const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryType & operator=( VkMemoryType const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryType const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryType &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( propertyFlags, heapIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryType const & ) const = default; -#else - bool operator==( MemoryType const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( propertyFlags == rhs.propertyFlags ) && ( heapIndex == rhs.heapIndex ); -# endif - } - - bool operator!=( MemoryType const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::MemoryPropertyFlags propertyFlags = {}; - uint32_t heapIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryType ) == sizeof( VkMemoryType ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MemoryType is not nothrow_move_constructible!" ); - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct MemoryWin32HandlePropertiesKHR - { - using NativeType = VkMemoryWin32HandlePropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMemoryWin32HandlePropertiesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryWin32HandlePropertiesKHR( uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryTypeBits( memoryTypeBits_ ) - {} - - VULKAN_HPP_CONSTEXPR - MemoryWin32HandlePropertiesKHR( MemoryWin32HandlePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryWin32HandlePropertiesKHR( VkMemoryWin32HandlePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryWin32HandlePropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryWin32HandlePropertiesKHR & - operator=( MemoryWin32HandlePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryWin32HandlePropertiesKHR & operator=( VkMemoryWin32HandlePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryWin32HandlePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryWin32HandlePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryTypeBits ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryWin32HandlePropertiesKHR const & ) const = default; -# else - bool operator==( MemoryWin32HandlePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryTypeBits == rhs.memoryTypeBits ); -# endif - } - - bool operator!=( MemoryWin32HandlePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryWin32HandlePropertiesKHR; - void * pNext = {}; - uint32_t memoryTypeBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryWin32HandlePropertiesKHR ) == - sizeof( VkMemoryWin32HandlePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryWin32HandlePropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryWin32HandlePropertiesKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct MemoryZirconHandlePropertiesFUCHSIA - { - using NativeType = VkMemoryZirconHandlePropertiesFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eMemoryZirconHandlePropertiesFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MemoryZirconHandlePropertiesFUCHSIA( uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryTypeBits( memoryTypeBits_ ) - {} - - VULKAN_HPP_CONSTEXPR MemoryZirconHandlePropertiesFUCHSIA( MemoryZirconHandlePropertiesFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - MemoryZirconHandlePropertiesFUCHSIA( VkMemoryZirconHandlePropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : MemoryZirconHandlePropertiesFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MemoryZirconHandlePropertiesFUCHSIA & - operator=( MemoryZirconHandlePropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MemoryZirconHandlePropertiesFUCHSIA & - operator=( VkMemoryZirconHandlePropertiesFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMemoryZirconHandlePropertiesFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMemoryZirconHandlePropertiesFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryTypeBits ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MemoryZirconHandlePropertiesFUCHSIA const & ) const = default; -# else - bool operator==( MemoryZirconHandlePropertiesFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryTypeBits == rhs.memoryTypeBits ); -# endif - } - - bool operator!=( MemoryZirconHandlePropertiesFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMemoryZirconHandlePropertiesFUCHSIA; - void * pNext = {}; - uint32_t memoryTypeBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MemoryZirconHandlePropertiesFUCHSIA ) == - sizeof( VkMemoryZirconHandlePropertiesFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MemoryZirconHandlePropertiesFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MemoryZirconHandlePropertiesFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - -#if defined( VK_USE_PLATFORM_METAL_EXT ) - struct MetalSurfaceCreateInfoEXT - { - using NativeType = VkMetalSurfaceCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMetalSurfaceCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MetalSurfaceCreateInfoEXT( VULKAN_HPP_NAMESPACE::MetalSurfaceCreateFlagsEXT flags_ = {}, - const CAMetalLayer * pLayer_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pLayer( pLayer_ ) - {} - - VULKAN_HPP_CONSTEXPR - MetalSurfaceCreateInfoEXT( MetalSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MetalSurfaceCreateInfoEXT( VkMetalSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : MetalSurfaceCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MetalSurfaceCreateInfoEXT & operator=( MetalSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MetalSurfaceCreateInfoEXT & operator=( VkMetalSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MetalSurfaceCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MetalSurfaceCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::MetalSurfaceCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MetalSurfaceCreateInfoEXT & setPLayer( const CAMetalLayer * pLayer_ ) VULKAN_HPP_NOEXCEPT - { - pLayer = pLayer_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMetalSurfaceCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMetalSurfaceCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pLayer ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MetalSurfaceCreateInfoEXT const & ) const = default; -# else - bool operator==( MetalSurfaceCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( pLayer == rhs.pLayer ); -# endif - } - - bool operator!=( MetalSurfaceCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMetalSurfaceCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::MetalSurfaceCreateFlagsEXT flags = {}; - const CAMetalLayer * pLayer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT ) == - sizeof( VkMetalSurfaceCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MetalSurfaceCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MetalSurfaceCreateInfoEXT; - }; -#endif /*VK_USE_PLATFORM_METAL_EXT*/ - - struct MultiDrawIndexedInfoEXT - { - using NativeType = VkMultiDrawIndexedInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MultiDrawIndexedInfoEXT( uint32_t firstIndex_ = {}, - uint32_t indexCount_ = {}, - int32_t vertexOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : firstIndex( firstIndex_ ) - , indexCount( indexCount_ ) - , vertexOffset( vertexOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR MultiDrawIndexedInfoEXT( MultiDrawIndexedInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultiDrawIndexedInfoEXT( VkMultiDrawIndexedInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : MultiDrawIndexedInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MultiDrawIndexedInfoEXT & operator=( MultiDrawIndexedInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultiDrawIndexedInfoEXT & operator=( VkMultiDrawIndexedInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MultiDrawIndexedInfoEXT & setFirstIndex( uint32_t firstIndex_ ) VULKAN_HPP_NOEXCEPT - { - firstIndex = firstIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MultiDrawIndexedInfoEXT & setIndexCount( uint32_t indexCount_ ) VULKAN_HPP_NOEXCEPT - { - indexCount = indexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MultiDrawIndexedInfoEXT & setVertexOffset( int32_t vertexOffset_ ) VULKAN_HPP_NOEXCEPT - { - vertexOffset = vertexOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMultiDrawIndexedInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMultiDrawIndexedInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( firstIndex, indexCount, vertexOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MultiDrawIndexedInfoEXT const & ) const = default; -#else - bool operator==( MultiDrawIndexedInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( firstIndex == rhs.firstIndex ) && ( indexCount == rhs.indexCount ) && - ( vertexOffset == rhs.vertexOffset ); -# endif - } - - bool operator!=( MultiDrawIndexedInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t firstIndex = {}; - uint32_t indexCount = {}; - int32_t vertexOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT ) == - sizeof( VkMultiDrawIndexedInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MultiDrawIndexedInfoEXT is not nothrow_move_constructible!" ); - - struct MultiDrawInfoEXT - { - using NativeType = VkMultiDrawInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MultiDrawInfoEXT( uint32_t firstVertex_ = {}, uint32_t vertexCount_ = {} ) VULKAN_HPP_NOEXCEPT - : firstVertex( firstVertex_ ) - , vertexCount( vertexCount_ ) - {} - - VULKAN_HPP_CONSTEXPR MultiDrawInfoEXT( MultiDrawInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultiDrawInfoEXT( VkMultiDrawInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : MultiDrawInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MultiDrawInfoEXT & operator=( MultiDrawInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultiDrawInfoEXT & operator=( VkMultiDrawInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MultiDrawInfoEXT & setFirstVertex( uint32_t firstVertex_ ) VULKAN_HPP_NOEXCEPT - { - firstVertex = firstVertex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MultiDrawInfoEXT & setVertexCount( uint32_t vertexCount_ ) VULKAN_HPP_NOEXCEPT - { - vertexCount = vertexCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMultiDrawInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMultiDrawInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( firstVertex, vertexCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MultiDrawInfoEXT const & ) const = default; -#else - bool operator==( MultiDrawInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( firstVertex == rhs.firstVertex ) && ( vertexCount == rhs.vertexCount ); -# endif - } - - bool operator!=( MultiDrawInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t firstVertex = {}; - uint32_t vertexCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MultiDrawInfoEXT ) == sizeof( VkMultiDrawInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MultiDrawInfoEXT is not nothrow_move_constructible!" ); - - struct MultisamplePropertiesEXT - { - using NativeType = VkMultisamplePropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eMultisamplePropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - MultisamplePropertiesEXT( VULKAN_HPP_NAMESPACE::Extent2D maxSampleLocationGridSize_ = {} ) VULKAN_HPP_NOEXCEPT - : maxSampleLocationGridSize( maxSampleLocationGridSize_ ) - {} - - VULKAN_HPP_CONSTEXPR MultisamplePropertiesEXT( MultisamplePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultisamplePropertiesEXT( VkMultisamplePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : MultisamplePropertiesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MultisamplePropertiesEXT & operator=( MultisamplePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultisamplePropertiesEXT & operator=( VkMultisamplePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkMultisamplePropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMultisamplePropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxSampleLocationGridSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MultisamplePropertiesEXT const & ) const = default; -#else - bool operator==( MultisamplePropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxSampleLocationGridSize == rhs.maxSampleLocationGridSize ); -# endif - } - - bool operator!=( MultisamplePropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMultisamplePropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxSampleLocationGridSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MultisamplePropertiesEXT ) == - sizeof( VkMultisamplePropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "MultisamplePropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MultisamplePropertiesEXT; - }; - - struct MultiviewPerViewAttributesInfoNVX - { - using NativeType = VkMultiviewPerViewAttributesInfoNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eMultiviewPerViewAttributesInfoNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MultiviewPerViewAttributesInfoNVX( - VULKAN_HPP_NAMESPACE::Bool32 perViewAttributes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 perViewAttributesPositionXOnly_ = {} ) VULKAN_HPP_NOEXCEPT - : perViewAttributes( perViewAttributes_ ) - , perViewAttributesPositionXOnly( perViewAttributesPositionXOnly_ ) - {} - - VULKAN_HPP_CONSTEXPR - MultiviewPerViewAttributesInfoNVX( MultiviewPerViewAttributesInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultiviewPerViewAttributesInfoNVX( VkMultiviewPerViewAttributesInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : MultiviewPerViewAttributesInfoNVX( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MultiviewPerViewAttributesInfoNVX & - operator=( MultiviewPerViewAttributesInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MultiviewPerViewAttributesInfoNVX & operator=( VkMultiviewPerViewAttributesInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MultiviewPerViewAttributesInfoNVX & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MultiviewPerViewAttributesInfoNVX & - setPerViewAttributes( VULKAN_HPP_NAMESPACE::Bool32 perViewAttributes_ ) VULKAN_HPP_NOEXCEPT - { - perViewAttributes = perViewAttributes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MultiviewPerViewAttributesInfoNVX & setPerViewAttributesPositionXOnly( - VULKAN_HPP_NAMESPACE::Bool32 perViewAttributesPositionXOnly_ ) VULKAN_HPP_NOEXCEPT - { - perViewAttributesPositionXOnly = perViewAttributesPositionXOnly_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMultiviewPerViewAttributesInfoNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMultiviewPerViewAttributesInfoNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, perViewAttributes, perViewAttributesPositionXOnly ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MultiviewPerViewAttributesInfoNVX const & ) const = default; -#else - bool operator==( MultiviewPerViewAttributesInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( perViewAttributes == rhs.perViewAttributes ) && - ( perViewAttributesPositionXOnly == rhs.perViewAttributesPositionXOnly ); -# endif - } - - bool operator!=( MultiviewPerViewAttributesInfoNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMultiviewPerViewAttributesInfoNVX; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 perViewAttributes = {}; - VULKAN_HPP_NAMESPACE::Bool32 perViewAttributesPositionXOnly = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MultiviewPerViewAttributesInfoNVX ) == - sizeof( VkMultiviewPerViewAttributesInfoNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MultiviewPerViewAttributesInfoNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MultiviewPerViewAttributesInfoNVX; - }; - - struct MutableDescriptorTypeListVALVE - { - using NativeType = VkMutableDescriptorTypeListVALVE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MutableDescriptorTypeListVALVE( - uint32_t descriptorTypeCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorType * pDescriptorTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : descriptorTypeCount( descriptorTypeCount_ ) - , pDescriptorTypes( pDescriptorTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR - MutableDescriptorTypeListVALVE( MutableDescriptorTypeListVALVE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MutableDescriptorTypeListVALVE( VkMutableDescriptorTypeListVALVE const & rhs ) VULKAN_HPP_NOEXCEPT - : MutableDescriptorTypeListVALVE( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - MutableDescriptorTypeListVALVE( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - descriptorTypes_ ) - : descriptorTypeCount( static_cast( descriptorTypes_.size() ) ) - , pDescriptorTypes( descriptorTypes_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MutableDescriptorTypeListVALVE & - operator=( MutableDescriptorTypeListVALVE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MutableDescriptorTypeListVALVE & operator=( VkMutableDescriptorTypeListVALVE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MutableDescriptorTypeListVALVE & - setDescriptorTypeCount( uint32_t descriptorTypeCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorTypeCount = descriptorTypeCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MutableDescriptorTypeListVALVE & - setPDescriptorTypes( const VULKAN_HPP_NAMESPACE::DescriptorType * pDescriptorTypes_ ) VULKAN_HPP_NOEXCEPT - { - pDescriptorTypes = pDescriptorTypes_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - MutableDescriptorTypeListVALVE & setDescriptorTypes( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - descriptorTypes_ ) VULKAN_HPP_NOEXCEPT - { - descriptorTypeCount = static_cast( descriptorTypes_.size() ); - pDescriptorTypes = descriptorTypes_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMutableDescriptorTypeListVALVE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMutableDescriptorTypeListVALVE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( descriptorTypeCount, pDescriptorTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MutableDescriptorTypeListVALVE const & ) const = default; -#else - bool operator==( MutableDescriptorTypeListVALVE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( descriptorTypeCount == rhs.descriptorTypeCount ) && ( pDescriptorTypes == rhs.pDescriptorTypes ); -# endif - } - - bool operator!=( MutableDescriptorTypeListVALVE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t descriptorTypeCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorType * pDescriptorTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MutableDescriptorTypeListVALVE ) == - sizeof( VkMutableDescriptorTypeListVALVE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MutableDescriptorTypeListVALVE is not nothrow_move_constructible!" ); - - struct MutableDescriptorTypeCreateInfoVALVE - { - using NativeType = VkMutableDescriptorTypeCreateInfoVALVE; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eMutableDescriptorTypeCreateInfoVALVE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR MutableDescriptorTypeCreateInfoVALVE( - uint32_t mutableDescriptorTypeListCount_ = {}, - const VULKAN_HPP_NAMESPACE::MutableDescriptorTypeListVALVE * pMutableDescriptorTypeLists_ = {} ) - VULKAN_HPP_NOEXCEPT - : mutableDescriptorTypeListCount( mutableDescriptorTypeListCount_ ) - , pMutableDescriptorTypeLists( pMutableDescriptorTypeLists_ ) - {} - - VULKAN_HPP_CONSTEXPR MutableDescriptorTypeCreateInfoVALVE( MutableDescriptorTypeCreateInfoVALVE const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - MutableDescriptorTypeCreateInfoVALVE( VkMutableDescriptorTypeCreateInfoVALVE const & rhs ) VULKAN_HPP_NOEXCEPT - : MutableDescriptorTypeCreateInfoVALVE( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - MutableDescriptorTypeCreateInfoVALVE( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - mutableDescriptorTypeLists_ ) - : mutableDescriptorTypeListCount( static_cast( mutableDescriptorTypeLists_.size() ) ) - , pMutableDescriptorTypeLists( mutableDescriptorTypeLists_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - MutableDescriptorTypeCreateInfoVALVE & - operator=( MutableDescriptorTypeCreateInfoVALVE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - MutableDescriptorTypeCreateInfoVALVE & - operator=( VkMutableDescriptorTypeCreateInfoVALVE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 MutableDescriptorTypeCreateInfoVALVE & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MutableDescriptorTypeCreateInfoVALVE & - setMutableDescriptorTypeListCount( uint32_t mutableDescriptorTypeListCount_ ) VULKAN_HPP_NOEXCEPT - { - mutableDescriptorTypeListCount = mutableDescriptorTypeListCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 MutableDescriptorTypeCreateInfoVALVE & setPMutableDescriptorTypeLists( - const VULKAN_HPP_NAMESPACE::MutableDescriptorTypeListVALVE * pMutableDescriptorTypeLists_ ) VULKAN_HPP_NOEXCEPT - { - pMutableDescriptorTypeLists = pMutableDescriptorTypeLists_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - MutableDescriptorTypeCreateInfoVALVE & setMutableDescriptorTypeLists( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - mutableDescriptorTypeLists_ ) VULKAN_HPP_NOEXCEPT - { - mutableDescriptorTypeListCount = static_cast( mutableDescriptorTypeLists_.size() ); - pMutableDescriptorTypeLists = mutableDescriptorTypeLists_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkMutableDescriptorTypeCreateInfoVALVE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkMutableDescriptorTypeCreateInfoVALVE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, mutableDescriptorTypeListCount, pMutableDescriptorTypeLists ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( MutableDescriptorTypeCreateInfoVALVE const & ) const = default; -#else - bool operator==( MutableDescriptorTypeCreateInfoVALVE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( mutableDescriptorTypeListCount == rhs.mutableDescriptorTypeListCount ) && - ( pMutableDescriptorTypeLists == rhs.pMutableDescriptorTypeLists ); -# endif - } - - bool operator!=( MutableDescriptorTypeCreateInfoVALVE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eMutableDescriptorTypeCreateInfoVALVE; - const void * pNext = {}; - uint32_t mutableDescriptorTypeListCount = {}; - const VULKAN_HPP_NAMESPACE::MutableDescriptorTypeListVALVE * pMutableDescriptorTypeLists = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::MutableDescriptorTypeCreateInfoVALVE ) == - sizeof( VkMutableDescriptorTypeCreateInfoVALVE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "MutableDescriptorTypeCreateInfoVALVE is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = MutableDescriptorTypeCreateInfoVALVE; - }; - - struct PastPresentationTimingGOOGLE - { - using NativeType = VkPastPresentationTimingGOOGLE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PastPresentationTimingGOOGLE( uint32_t presentID_ = {}, - uint64_t desiredPresentTime_ = {}, - uint64_t actualPresentTime_ = {}, - uint64_t earliestPresentTime_ = {}, - uint64_t presentMargin_ = {} ) VULKAN_HPP_NOEXCEPT - : presentID( presentID_ ) - , desiredPresentTime( desiredPresentTime_ ) - , actualPresentTime( actualPresentTime_ ) - , earliestPresentTime( earliestPresentTime_ ) - , presentMargin( presentMargin_ ) - {} - - VULKAN_HPP_CONSTEXPR - PastPresentationTimingGOOGLE( PastPresentationTimingGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PastPresentationTimingGOOGLE( VkPastPresentationTimingGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - : PastPresentationTimingGOOGLE( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PastPresentationTimingGOOGLE & operator=( PastPresentationTimingGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PastPresentationTimingGOOGLE & operator=( VkPastPresentationTimingGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPastPresentationTimingGOOGLE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPastPresentationTimingGOOGLE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( presentID, desiredPresentTime, actualPresentTime, earliestPresentTime, presentMargin ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PastPresentationTimingGOOGLE const & ) const = default; -#else - bool operator==( PastPresentationTimingGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( presentID == rhs.presentID ) && ( desiredPresentTime == rhs.desiredPresentTime ) && - ( actualPresentTime == rhs.actualPresentTime ) && ( earliestPresentTime == rhs.earliestPresentTime ) && - ( presentMargin == rhs.presentMargin ); -# endif - } - - bool operator!=( PastPresentationTimingGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t presentID = {}; - uint64_t desiredPresentTime = {}; - uint64_t actualPresentTime = {}; - uint64_t earliestPresentTime = {}; - uint64_t presentMargin = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PastPresentationTimingGOOGLE ) == - sizeof( VkPastPresentationTimingGOOGLE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PastPresentationTimingGOOGLE is not nothrow_move_constructible!" ); - - struct PerformanceConfigurationAcquireInfoINTEL - { - using NativeType = VkPerformanceConfigurationAcquireInfoINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePerformanceConfigurationAcquireInfoINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PerformanceConfigurationAcquireInfoINTEL( - VULKAN_HPP_NAMESPACE::PerformanceConfigurationTypeINTEL type_ = - VULKAN_HPP_NAMESPACE::PerformanceConfigurationTypeINTEL::eCommandQueueMetricsDiscoveryActivated ) - VULKAN_HPP_NOEXCEPT : type( type_ ) - {} - - VULKAN_HPP_CONSTEXPR PerformanceConfigurationAcquireInfoINTEL( - PerformanceConfigurationAcquireInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceConfigurationAcquireInfoINTEL( VkPerformanceConfigurationAcquireInfoINTEL const & rhs ) - VULKAN_HPP_NOEXCEPT - : PerformanceConfigurationAcquireInfoINTEL( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceConfigurationAcquireInfoINTEL & - operator=( PerformanceConfigurationAcquireInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceConfigurationAcquireInfoINTEL & - operator=( VkPerformanceConfigurationAcquireInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceConfigurationAcquireInfoINTEL & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceConfigurationAcquireInfoINTEL & - setType( VULKAN_HPP_NAMESPACE::PerformanceConfigurationTypeINTEL type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPerformanceConfigurationAcquireInfoINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceConfigurationAcquireInfoINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, type ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceConfigurationAcquireInfoINTEL const & ) const = default; -#else - bool operator==( PerformanceConfigurationAcquireInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( type == rhs.type ); -# endif - } - - bool operator!=( PerformanceConfigurationAcquireInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceConfigurationAcquireInfoINTEL; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PerformanceConfigurationTypeINTEL type = - VULKAN_HPP_NAMESPACE::PerformanceConfigurationTypeINTEL::eCommandQueueMetricsDiscoveryActivated; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceConfigurationAcquireInfoINTEL ) == - sizeof( VkPerformanceConfigurationAcquireInfoINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PerformanceConfigurationAcquireInfoINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceConfigurationAcquireInfoINTEL; - }; - - struct PerformanceCounterDescriptionKHR - { - using NativeType = VkPerformanceCounterDescriptionKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceCounterDescriptionKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterDescriptionKHR( - VULKAN_HPP_NAMESPACE::PerformanceCounterDescriptionFlagsKHR flags_ = {}, - std::array const & name_ = {}, - std::array const & category_ = {}, - std::array const & description_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , name( name_ ) - , category( category_ ) - , description( description_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PerformanceCounterDescriptionKHR( PerformanceCounterDescriptionKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceCounterDescriptionKHR( VkPerformanceCounterDescriptionKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceCounterDescriptionKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceCounterDescriptionKHR & - operator=( PerformanceCounterDescriptionKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceCounterDescriptionKHR & operator=( VkPerformanceCounterDescriptionKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPerformanceCounterDescriptionKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceCounterDescriptionKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, name, category, description ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceCounterDescriptionKHR const & ) const = default; -#else - bool operator==( PerformanceCounterDescriptionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( name == rhs.name ) && - ( category == rhs.category ) && ( description == rhs.description ); -# endif - } - - bool operator!=( PerformanceCounterDescriptionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceCounterDescriptionKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PerformanceCounterDescriptionFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D name = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D category = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D description = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceCounterDescriptionKHR ) == - sizeof( VkPerformanceCounterDescriptionKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PerformanceCounterDescriptionKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceCounterDescriptionKHR; - }; - - struct PerformanceCounterKHR - { - using NativeType = VkPerformanceCounterKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceCounterKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterKHR( - VULKAN_HPP_NAMESPACE::PerformanceCounterUnitKHR unit_ = VULKAN_HPP_NAMESPACE::PerformanceCounterUnitKHR::eGeneric, - VULKAN_HPP_NAMESPACE::PerformanceCounterScopeKHR scope_ = - VULKAN_HPP_NAMESPACE::PerformanceCounterScopeKHR::eCommandBuffer, - VULKAN_HPP_NAMESPACE::PerformanceCounterStorageKHR storage_ = - VULKAN_HPP_NAMESPACE::PerformanceCounterStorageKHR::eInt32, - std::array const & uuid_ = {} ) VULKAN_HPP_NOEXCEPT - : unit( unit_ ) - , scope( scope_ ) - , storage( storage_ ) - , uuid( uuid_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterKHR( PerformanceCounterKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceCounterKHR( VkPerformanceCounterKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceCounterKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceCounterKHR & operator=( PerformanceCounterKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceCounterKHR & operator=( VkPerformanceCounterKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPerformanceCounterKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceCounterKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, unit, scope, storage, uuid ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceCounterKHR const & ) const = default; -#else - bool operator==( PerformanceCounterKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( unit == rhs.unit ) && ( scope == rhs.scope ) && - ( storage == rhs.storage ) && ( uuid == rhs.uuid ); -# endif - } - - bool operator!=( PerformanceCounterKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceCounterKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PerformanceCounterUnitKHR unit = VULKAN_HPP_NAMESPACE::PerformanceCounterUnitKHR::eGeneric; - VULKAN_HPP_NAMESPACE::PerformanceCounterScopeKHR scope = - VULKAN_HPP_NAMESPACE::PerformanceCounterScopeKHR::eCommandBuffer; - VULKAN_HPP_NAMESPACE::PerformanceCounterStorageKHR storage = - VULKAN_HPP_NAMESPACE::PerformanceCounterStorageKHR::eInt32; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D uuid = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceCounterKHR ) == sizeof( VkPerformanceCounterKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PerformanceCounterKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceCounterKHR; - }; - - union PerformanceCounterResultKHR - { - using NativeType = VkPerformanceCounterResultKHR; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR( int32_t int32_ = {} ) : int32( int32_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR( int64_t int64_ ) : int64( int64_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR( uint32_t uint32_ ) : uint32( uint32_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR( uint64_t uint64_ ) : uint64( uint64_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR( float float32_ ) : float32( float32_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR( double float64_ ) : float64( float64_ ) {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR & setInt32( int32_t int32_ ) VULKAN_HPP_NOEXCEPT - { - int32 = int32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR & setInt64( int64_t int64_ ) VULKAN_HPP_NOEXCEPT - { - int64 = int64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR & setUint32( uint32_t uint32_ ) VULKAN_HPP_NOEXCEPT - { - uint32 = uint32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR & setUint64( uint64_t uint64_ ) VULKAN_HPP_NOEXCEPT - { - uint64 = uint64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR & setFloat32( float float32_ ) VULKAN_HPP_NOEXCEPT - { - float32 = float32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceCounterResultKHR & setFloat64( double float64_ ) VULKAN_HPP_NOEXCEPT - { - float64 = float64_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkPerformanceCounterResultKHR const &() const - { - return *reinterpret_cast( this ); - } - - operator VkPerformanceCounterResultKHR &() - { - return *reinterpret_cast( this ); - } - - int32_t int32; - int64_t int64; - uint32_t uint32; - uint64_t uint64; - float float32; - double float64; - }; - - struct PerformanceMarkerInfoINTEL - { - using NativeType = VkPerformanceMarkerInfoINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceMarkerInfoINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PerformanceMarkerInfoINTEL( uint64_t marker_ = {} ) VULKAN_HPP_NOEXCEPT : marker( marker_ ) {} - - VULKAN_HPP_CONSTEXPR - PerformanceMarkerInfoINTEL( PerformanceMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceMarkerInfoINTEL( VkPerformanceMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceMarkerInfoINTEL( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceMarkerInfoINTEL & operator=( PerformanceMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceMarkerInfoINTEL & operator=( VkPerformanceMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceMarkerInfoINTEL & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceMarkerInfoINTEL & setMarker( uint64_t marker_ ) VULKAN_HPP_NOEXCEPT - { - marker = marker_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPerformanceMarkerInfoINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceMarkerInfoINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, marker ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceMarkerInfoINTEL const & ) const = default; -#else - bool operator==( PerformanceMarkerInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( marker == rhs.marker ); -# endif - } - - bool operator!=( PerformanceMarkerInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceMarkerInfoINTEL; - const void * pNext = {}; - uint64_t marker = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceMarkerInfoINTEL ) == - sizeof( VkPerformanceMarkerInfoINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PerformanceMarkerInfoINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceMarkerInfoINTEL; - }; - - struct PerformanceOverrideInfoINTEL - { - using NativeType = VkPerformanceOverrideInfoINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceOverrideInfoINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PerformanceOverrideInfoINTEL( VULKAN_HPP_NAMESPACE::PerformanceOverrideTypeINTEL type_ = - VULKAN_HPP_NAMESPACE::PerformanceOverrideTypeINTEL::eNullHardware, - VULKAN_HPP_NAMESPACE::Bool32 enable_ = {}, - uint64_t parameter_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , enable( enable_ ) - , parameter( parameter_ ) - {} - - VULKAN_HPP_CONSTEXPR - PerformanceOverrideInfoINTEL( PerformanceOverrideInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceOverrideInfoINTEL( VkPerformanceOverrideInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceOverrideInfoINTEL( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceOverrideInfoINTEL & operator=( PerformanceOverrideInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceOverrideInfoINTEL & operator=( VkPerformanceOverrideInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceOverrideInfoINTEL & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceOverrideInfoINTEL & - setType( VULKAN_HPP_NAMESPACE::PerformanceOverrideTypeINTEL type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceOverrideInfoINTEL & - setEnable( VULKAN_HPP_NAMESPACE::Bool32 enable_ ) VULKAN_HPP_NOEXCEPT - { - enable = enable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceOverrideInfoINTEL & setParameter( uint64_t parameter_ ) VULKAN_HPP_NOEXCEPT - { - parameter = parameter_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPerformanceOverrideInfoINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceOverrideInfoINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, type, enable, parameter ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceOverrideInfoINTEL const & ) const = default; -#else - bool operator==( PerformanceOverrideInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( type == rhs.type ) && ( enable == rhs.enable ) && - ( parameter == rhs.parameter ); -# endif - } - - bool operator!=( PerformanceOverrideInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceOverrideInfoINTEL; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PerformanceOverrideTypeINTEL type = - VULKAN_HPP_NAMESPACE::PerformanceOverrideTypeINTEL::eNullHardware; - VULKAN_HPP_NAMESPACE::Bool32 enable = {}; - uint64_t parameter = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceOverrideInfoINTEL ) == - sizeof( VkPerformanceOverrideInfoINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PerformanceOverrideInfoINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceOverrideInfoINTEL; - }; - - struct PerformanceQuerySubmitInfoKHR - { - using NativeType = VkPerformanceQuerySubmitInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceQuerySubmitInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PerformanceQuerySubmitInfoKHR( uint32_t counterPassIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : counterPassIndex( counterPassIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - PerformanceQuerySubmitInfoKHR( PerformanceQuerySubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceQuerySubmitInfoKHR( VkPerformanceQuerySubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceQuerySubmitInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceQuerySubmitInfoKHR & - operator=( PerformanceQuerySubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceQuerySubmitInfoKHR & operator=( VkPerformanceQuerySubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceQuerySubmitInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceQuerySubmitInfoKHR & - setCounterPassIndex( uint32_t counterPassIndex_ ) VULKAN_HPP_NOEXCEPT - { - counterPassIndex = counterPassIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPerformanceQuerySubmitInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceQuerySubmitInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, counterPassIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceQuerySubmitInfoKHR const & ) const = default; -#else - bool operator==( PerformanceQuerySubmitInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( counterPassIndex == rhs.counterPassIndex ); -# endif - } - - bool operator!=( PerformanceQuerySubmitInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceQuerySubmitInfoKHR; - const void * pNext = {}; - uint32_t counterPassIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceQuerySubmitInfoKHR ) == - sizeof( VkPerformanceQuerySubmitInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PerformanceQuerySubmitInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceQuerySubmitInfoKHR; - }; - - struct PerformanceStreamMarkerInfoINTEL - { - using NativeType = VkPerformanceStreamMarkerInfoINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceStreamMarkerInfoINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PerformanceStreamMarkerInfoINTEL( uint32_t marker_ = {} ) VULKAN_HPP_NOEXCEPT - : marker( marker_ ) - {} - - VULKAN_HPP_CONSTEXPR - PerformanceStreamMarkerInfoINTEL( PerformanceStreamMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceStreamMarkerInfoINTEL( VkPerformanceStreamMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceStreamMarkerInfoINTEL( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceStreamMarkerInfoINTEL & - operator=( PerformanceStreamMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceStreamMarkerInfoINTEL & operator=( VkPerformanceStreamMarkerInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceStreamMarkerInfoINTEL & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceStreamMarkerInfoINTEL & setMarker( uint32_t marker_ ) VULKAN_HPP_NOEXCEPT - { - marker = marker_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPerformanceStreamMarkerInfoINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceStreamMarkerInfoINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, marker ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PerformanceStreamMarkerInfoINTEL const & ) const = default; -#else - bool operator==( PerformanceStreamMarkerInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( marker == rhs.marker ); -# endif - } - - bool operator!=( PerformanceStreamMarkerInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceStreamMarkerInfoINTEL; - const void * pNext = {}; - uint32_t marker = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL ) == - sizeof( VkPerformanceStreamMarkerInfoINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PerformanceStreamMarkerInfoINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PerformanceStreamMarkerInfoINTEL; - }; - - union PerformanceValueDataINTEL - { - using NativeType = VkPerformanceValueDataINTEL; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL( uint32_t value32_ = {} ) : value32( value32_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL( uint64_t value64_ ) : value64( value64_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL( float valueFloat_ ) : valueFloat( valueFloat_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL( const char * valueString_ ) : valueString( valueString_ ) {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL & setValue32( uint32_t value32_ ) VULKAN_HPP_NOEXCEPT - { - value32 = value32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL & setValue64( uint64_t value64_ ) VULKAN_HPP_NOEXCEPT - { - value64 = value64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL & setValueFloat( float valueFloat_ ) VULKAN_HPP_NOEXCEPT - { - valueFloat = valueFloat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL & - setValueBool( VULKAN_HPP_NAMESPACE::Bool32 valueBool_ ) VULKAN_HPP_NOEXCEPT - { - valueBool = valueBool_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueDataINTEL & setValueString( const char * valueString_ ) VULKAN_HPP_NOEXCEPT - { - valueString = valueString_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkPerformanceValueDataINTEL const &() const - { - return *reinterpret_cast( this ); - } - - operator VkPerformanceValueDataINTEL &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - uint32_t value32; - uint64_t value64; - float valueFloat; - VULKAN_HPP_NAMESPACE::Bool32 valueBool; - const char * valueString; -#else - uint32_t value32; - uint64_t value64; - float valueFloat; - VkBool32 valueBool; - const char * valueString; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct PerformanceValueINTEL - { - using NativeType = VkPerformanceValueINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceValueINTEL( - VULKAN_HPP_NAMESPACE::PerformanceValueTypeINTEL type_ = VULKAN_HPP_NAMESPACE::PerformanceValueTypeINTEL::eUint32, - VULKAN_HPP_NAMESPACE::PerformanceValueDataINTEL data_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , data( data_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueINTEL( PerformanceValueINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceValueINTEL( VkPerformanceValueINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - : PerformanceValueINTEL( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PerformanceValueINTEL & operator=( PerformanceValueINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PerformanceValueINTEL & operator=( VkPerformanceValueINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PerformanceValueINTEL & - setType( VULKAN_HPP_NAMESPACE::PerformanceValueTypeINTEL type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PerformanceValueINTEL & - setData( VULKAN_HPP_NAMESPACE::PerformanceValueDataINTEL const & data_ ) VULKAN_HPP_NOEXCEPT - { - data = data_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPerformanceValueINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPerformanceValueINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( type, data ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::PerformanceValueTypeINTEL type = VULKAN_HPP_NAMESPACE::PerformanceValueTypeINTEL::eUint32; - VULKAN_HPP_NAMESPACE::PerformanceValueDataINTEL data = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PerformanceValueINTEL ) == sizeof( VkPerformanceValueINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PerformanceValueINTEL is not nothrow_move_constructible!" ); - - struct PhysicalDevice16BitStorageFeatures - { - using NativeType = VkPhysicalDevice16BitStorageFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevice16BitStorageFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevice16BitStorageFeatures( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16_ = {} ) VULKAN_HPP_NOEXCEPT - : storageBuffer16BitAccess( storageBuffer16BitAccess_ ) - , uniformAndStorageBuffer16BitAccess( uniformAndStorageBuffer16BitAccess_ ) - , storagePushConstant16( storagePushConstant16_ ) - , storageInputOutput16( storageInputOutput16_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevice16BitStorageFeatures( PhysicalDevice16BitStorageFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevice16BitStorageFeatures( VkPhysicalDevice16BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevice16BitStorageFeatures( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevice16BitStorageFeatures & - operator=( PhysicalDevice16BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevice16BitStorageFeatures & - operator=( VkPhysicalDevice16BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & - setStorageBuffer16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - storageBuffer16BitAccess = storageBuffer16BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & setUniformAndStorageBuffer16BitAccess( - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - uniformAndStorageBuffer16BitAccess = uniformAndStorageBuffer16BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & - setStoragePushConstant16( VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16_ ) VULKAN_HPP_NOEXCEPT - { - storagePushConstant16 = storagePushConstant16_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & - setStorageInputOutput16( VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16_ ) VULKAN_HPP_NOEXCEPT - { - storageInputOutput16 = storageInputOutput16_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevice16BitStorageFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevice16BitStorageFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - storageBuffer16BitAccess, - uniformAndStorageBuffer16BitAccess, - storagePushConstant16, - storageInputOutput16 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevice16BitStorageFeatures const & ) const = default; -#else - bool operator==( PhysicalDevice16BitStorageFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( storageBuffer16BitAccess == rhs.storageBuffer16BitAccess ) && - ( uniformAndStorageBuffer16BitAccess == rhs.uniformAndStorageBuffer16BitAccess ) && - ( storagePushConstant16 == rhs.storagePushConstant16 ) && - ( storageInputOutput16 == rhs.storageInputOutput16 ); -# endif - } - - bool operator!=( PhysicalDevice16BitStorageFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevice16BitStorageFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevice16BitStorageFeatures ) == - sizeof( VkPhysicalDevice16BitStorageFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevice16BitStorageFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevice16BitStorageFeatures; - }; - using PhysicalDevice16BitStorageFeaturesKHR = PhysicalDevice16BitStorageFeatures; - - struct PhysicalDevice4444FormatsFeaturesEXT - { - using NativeType = VkPhysicalDevice4444FormatsFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevice4444FormatsFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevice4444FormatsFeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 formatA4R4G4B4_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 formatA4B4G4R4_ = {} ) VULKAN_HPP_NOEXCEPT - : formatA4R4G4B4( formatA4R4G4B4_ ) - , formatA4B4G4R4( formatA4B4G4R4_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevice4444FormatsFeaturesEXT( PhysicalDevice4444FormatsFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevice4444FormatsFeaturesEXT( VkPhysicalDevice4444FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevice4444FormatsFeaturesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevice4444FormatsFeaturesEXT & - operator=( PhysicalDevice4444FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevice4444FormatsFeaturesEXT & - operator=( VkPhysicalDevice4444FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice4444FormatsFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice4444FormatsFeaturesEXT & - setFormatA4R4G4B4( VULKAN_HPP_NAMESPACE::Bool32 formatA4R4G4B4_ ) VULKAN_HPP_NOEXCEPT - { - formatA4R4G4B4 = formatA4R4G4B4_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice4444FormatsFeaturesEXT & - setFormatA4B4G4R4( VULKAN_HPP_NAMESPACE::Bool32 formatA4B4G4R4_ ) VULKAN_HPP_NOEXCEPT - { - formatA4B4G4R4 = formatA4B4G4R4_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevice4444FormatsFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevice4444FormatsFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, formatA4R4G4B4, formatA4B4G4R4 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevice4444FormatsFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDevice4444FormatsFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( formatA4R4G4B4 == rhs.formatA4R4G4B4 ) && - ( formatA4B4G4R4 == rhs.formatA4B4G4R4 ); -# endif - } - - bool operator!=( PhysicalDevice4444FormatsFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevice4444FormatsFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 formatA4R4G4B4 = {}; - VULKAN_HPP_NAMESPACE::Bool32 formatA4B4G4R4 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevice4444FormatsFeaturesEXT ) == - sizeof( VkPhysicalDevice4444FormatsFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevice4444FormatsFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevice4444FormatsFeaturesEXT; - }; - - struct PhysicalDevice8BitStorageFeatures - { - using NativeType = VkPhysicalDevice8BitStorageFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevice8BitStorageFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevice8BitStorageFeatures( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer8BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer8BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant8_ = {} ) VULKAN_HPP_NOEXCEPT - : storageBuffer8BitAccess( storageBuffer8BitAccess_ ) - , uniformAndStorageBuffer8BitAccess( uniformAndStorageBuffer8BitAccess_ ) - , storagePushConstant8( storagePushConstant8_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDevice8BitStorageFeatures( PhysicalDevice8BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevice8BitStorageFeatures( VkPhysicalDevice8BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevice8BitStorageFeatures( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevice8BitStorageFeatures & - operator=( PhysicalDevice8BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevice8BitStorageFeatures & operator=( VkPhysicalDevice8BitStorageFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice8BitStorageFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice8BitStorageFeatures & - setStorageBuffer8BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer8BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - storageBuffer8BitAccess = storageBuffer8BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice8BitStorageFeatures & setUniformAndStorageBuffer8BitAccess( - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer8BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - uniformAndStorageBuffer8BitAccess = uniformAndStorageBuffer8BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevice8BitStorageFeatures & - setStoragePushConstant8( VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant8_ ) VULKAN_HPP_NOEXCEPT - { - storagePushConstant8 = storagePushConstant8_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevice8BitStorageFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevice8BitStorageFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, storageBuffer8BitAccess, uniformAndStorageBuffer8BitAccess, storagePushConstant8 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevice8BitStorageFeatures const & ) const = default; -#else - bool operator==( PhysicalDevice8BitStorageFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( storageBuffer8BitAccess == rhs.storageBuffer8BitAccess ) && - ( uniformAndStorageBuffer8BitAccess == rhs.uniformAndStorageBuffer8BitAccess ) && - ( storagePushConstant8 == rhs.storagePushConstant8 ); -# endif - } - - bool operator!=( PhysicalDevice8BitStorageFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevice8BitStorageFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageBuffer8BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer8BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant8 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevice8BitStorageFeatures ) == - sizeof( VkPhysicalDevice8BitStorageFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevice8BitStorageFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevice8BitStorageFeatures; - }; - using PhysicalDevice8BitStorageFeaturesKHR = PhysicalDevice8BitStorageFeatures; - - struct PhysicalDeviceASTCDecodeFeaturesEXT - { - using NativeType = VkPhysicalDeviceASTCDecodeFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceAstcDecodeFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceASTCDecodeFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 decodeModeSharedExponent_ = {} ) VULKAN_HPP_NOEXCEPT - : decodeModeSharedExponent( decodeModeSharedExponent_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceASTCDecodeFeaturesEXT( PhysicalDeviceASTCDecodeFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceASTCDecodeFeaturesEXT( VkPhysicalDeviceASTCDecodeFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceASTCDecodeFeaturesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceASTCDecodeFeaturesEXT & - operator=( PhysicalDeviceASTCDecodeFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceASTCDecodeFeaturesEXT & - operator=( VkPhysicalDeviceASTCDecodeFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceASTCDecodeFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceASTCDecodeFeaturesEXT & - setDecodeModeSharedExponent( VULKAN_HPP_NAMESPACE::Bool32 decodeModeSharedExponent_ ) VULKAN_HPP_NOEXCEPT - { - decodeModeSharedExponent = decodeModeSharedExponent_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceASTCDecodeFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceASTCDecodeFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, decodeModeSharedExponent ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceASTCDecodeFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceASTCDecodeFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( decodeModeSharedExponent == rhs.decodeModeSharedExponent ); -# endif - } - - bool operator!=( PhysicalDeviceASTCDecodeFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceAstcDecodeFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 decodeModeSharedExponent = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceASTCDecodeFeaturesEXT ) == - sizeof( VkPhysicalDeviceASTCDecodeFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceASTCDecodeFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceASTCDecodeFeaturesEXT; - }; - - struct PhysicalDeviceAccelerationStructureFeaturesKHR - { - using NativeType = VkPhysicalDeviceAccelerationStructureFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceAccelerationStructureFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceAccelerationStructureFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructure_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureCaptureReplay_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureIndirectBuild_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureHostCommands_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingAccelerationStructureUpdateAfterBind_ = {} ) VULKAN_HPP_NOEXCEPT - : accelerationStructure( accelerationStructure_ ) - , accelerationStructureCaptureReplay( accelerationStructureCaptureReplay_ ) - , accelerationStructureIndirectBuild( accelerationStructureIndirectBuild_ ) - , accelerationStructureHostCommands( accelerationStructureHostCommands_ ) - , descriptorBindingAccelerationStructureUpdateAfterBind( descriptorBindingAccelerationStructureUpdateAfterBind_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceAccelerationStructureFeaturesKHR( - PhysicalDeviceAccelerationStructureFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceAccelerationStructureFeaturesKHR( VkPhysicalDeviceAccelerationStructureFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceAccelerationStructureFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceAccelerationStructureFeaturesKHR & - operator=( PhysicalDeviceAccelerationStructureFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceAccelerationStructureFeaturesKHR & - operator=( VkPhysicalDeviceAccelerationStructureFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceAccelerationStructureFeaturesKHR & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceAccelerationStructureFeaturesKHR & - setAccelerationStructure( VULKAN_HPP_NAMESPACE::Bool32 accelerationStructure_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructure = accelerationStructure_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceAccelerationStructureFeaturesKHR & setAccelerationStructureCaptureReplay( - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureCaptureReplay_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureCaptureReplay = accelerationStructureCaptureReplay_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceAccelerationStructureFeaturesKHR & setAccelerationStructureIndirectBuild( - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureIndirectBuild_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureIndirectBuild = accelerationStructureIndirectBuild_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceAccelerationStructureFeaturesKHR & setAccelerationStructureHostCommands( - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureHostCommands_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureHostCommands = accelerationStructureHostCommands_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceAccelerationStructureFeaturesKHR & - setDescriptorBindingAccelerationStructureUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingAccelerationStructureUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingAccelerationStructureUpdateAfterBind = descriptorBindingAccelerationStructureUpdateAfterBind_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceAccelerationStructureFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceAccelerationStructureFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - accelerationStructure, - accelerationStructureCaptureReplay, - accelerationStructureIndirectBuild, - accelerationStructureHostCommands, - descriptorBindingAccelerationStructureUpdateAfterBind ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceAccelerationStructureFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceAccelerationStructureFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( accelerationStructure == rhs.accelerationStructure ) && - ( accelerationStructureCaptureReplay == rhs.accelerationStructureCaptureReplay ) && - ( accelerationStructureIndirectBuild == rhs.accelerationStructureIndirectBuild ) && - ( accelerationStructureHostCommands == rhs.accelerationStructureHostCommands ) && - ( descriptorBindingAccelerationStructureUpdateAfterBind == - rhs.descriptorBindingAccelerationStructureUpdateAfterBind ); -# endif - } - - bool operator!=( PhysicalDeviceAccelerationStructureFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceAccelerationStructureFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructure = {}; - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureCaptureReplay = {}; - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureIndirectBuild = {}; - VULKAN_HPP_NAMESPACE::Bool32 accelerationStructureHostCommands = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingAccelerationStructureUpdateAfterBind = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceAccelerationStructureFeaturesKHR ) == - sizeof( VkPhysicalDeviceAccelerationStructureFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceAccelerationStructureFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceAccelerationStructureFeaturesKHR; - }; - - struct PhysicalDeviceAccelerationStructurePropertiesKHR - { - using NativeType = VkPhysicalDeviceAccelerationStructurePropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceAccelerationStructurePropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceAccelerationStructurePropertiesKHR( - uint64_t maxGeometryCount_ = {}, - uint64_t maxInstanceCount_ = {}, - uint64_t maxPrimitiveCount_ = {}, - uint32_t maxPerStageDescriptorAccelerationStructures_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindAccelerationStructures_ = {}, - uint32_t maxDescriptorSetAccelerationStructures_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindAccelerationStructures_ = {}, - uint32_t minAccelerationStructureScratchOffsetAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : maxGeometryCount( maxGeometryCount_ ) - , maxInstanceCount( maxInstanceCount_ ) - , maxPrimitiveCount( maxPrimitiveCount_ ) - , maxPerStageDescriptorAccelerationStructures( maxPerStageDescriptorAccelerationStructures_ ) - , maxPerStageDescriptorUpdateAfterBindAccelerationStructures( - maxPerStageDescriptorUpdateAfterBindAccelerationStructures_ ) - , maxDescriptorSetAccelerationStructures( maxDescriptorSetAccelerationStructures_ ) - , maxDescriptorSetUpdateAfterBindAccelerationStructures( maxDescriptorSetUpdateAfterBindAccelerationStructures_ ) - , minAccelerationStructureScratchOffsetAlignment( minAccelerationStructureScratchOffsetAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceAccelerationStructurePropertiesKHR( - PhysicalDeviceAccelerationStructurePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceAccelerationStructurePropertiesKHR( VkPhysicalDeviceAccelerationStructurePropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceAccelerationStructurePropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceAccelerationStructurePropertiesKHR & - operator=( PhysicalDeviceAccelerationStructurePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceAccelerationStructurePropertiesKHR & - operator=( VkPhysicalDeviceAccelerationStructurePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceAccelerationStructurePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceAccelerationStructurePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - maxGeometryCount, - maxInstanceCount, - maxPrimitiveCount, - maxPerStageDescriptorAccelerationStructures, - maxPerStageDescriptorUpdateAfterBindAccelerationStructures, - maxDescriptorSetAccelerationStructures, - maxDescriptorSetUpdateAfterBindAccelerationStructures, - minAccelerationStructureScratchOffsetAlignment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceAccelerationStructurePropertiesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceAccelerationStructurePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxGeometryCount == rhs.maxGeometryCount ) && - ( maxInstanceCount == rhs.maxInstanceCount ) && ( maxPrimitiveCount == rhs.maxPrimitiveCount ) && - ( maxPerStageDescriptorAccelerationStructures == rhs.maxPerStageDescriptorAccelerationStructures ) && - ( maxPerStageDescriptorUpdateAfterBindAccelerationStructures == - rhs.maxPerStageDescriptorUpdateAfterBindAccelerationStructures ) && - ( maxDescriptorSetAccelerationStructures == rhs.maxDescriptorSetAccelerationStructures ) && - ( maxDescriptorSetUpdateAfterBindAccelerationStructures == - rhs.maxDescriptorSetUpdateAfterBindAccelerationStructures ) && - ( minAccelerationStructureScratchOffsetAlignment == rhs.minAccelerationStructureScratchOffsetAlignment ); -# endif - } - - bool operator!=( PhysicalDeviceAccelerationStructurePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceAccelerationStructurePropertiesKHR; - void * pNext = {}; - uint64_t maxGeometryCount = {}; - uint64_t maxInstanceCount = {}; - uint64_t maxPrimitiveCount = {}; - uint32_t maxPerStageDescriptorAccelerationStructures = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindAccelerationStructures = {}; - uint32_t maxDescriptorSetAccelerationStructures = {}; - uint32_t maxDescriptorSetUpdateAfterBindAccelerationStructures = {}; - uint32_t minAccelerationStructureScratchOffsetAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceAccelerationStructurePropertiesKHR ) == - sizeof( VkPhysicalDeviceAccelerationStructurePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceAccelerationStructurePropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceAccelerationStructurePropertiesKHR; - }; - - struct PhysicalDeviceBlendOperationAdvancedFeaturesEXT - { - using NativeType = VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceBlendOperationAdvancedFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceBlendOperationAdvancedFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendCoherentOperations_ = {} ) VULKAN_HPP_NOEXCEPT - : advancedBlendCoherentOperations( advancedBlendCoherentOperations_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceBlendOperationAdvancedFeaturesEXT( - PhysicalDeviceBlendOperationAdvancedFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBlendOperationAdvancedFeaturesEXT( VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceBlendOperationAdvancedFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceBlendOperationAdvancedFeaturesEXT & - operator=( PhysicalDeviceBlendOperationAdvancedFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBlendOperationAdvancedFeaturesEXT & - operator=( VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBlendOperationAdvancedFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBlendOperationAdvancedFeaturesEXT & setAdvancedBlendCoherentOperations( - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendCoherentOperations_ ) VULKAN_HPP_NOEXCEPT - { - advancedBlendCoherentOperations = advancedBlendCoherentOperations_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, advancedBlendCoherentOperations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceBlendOperationAdvancedFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceBlendOperationAdvancedFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( advancedBlendCoherentOperations == rhs.advancedBlendCoherentOperations ); -# endif - } - - bool operator!=( PhysicalDeviceBlendOperationAdvancedFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceBlendOperationAdvancedFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendCoherentOperations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceBlendOperationAdvancedFeaturesEXT ) == - sizeof( VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceBlendOperationAdvancedFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceBlendOperationAdvancedFeaturesEXT; - }; - - struct PhysicalDeviceBlendOperationAdvancedPropertiesEXT - { - using NativeType = VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceBlendOperationAdvancedPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceBlendOperationAdvancedPropertiesEXT( - uint32_t advancedBlendMaxColorAttachments_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendIndependentBlend_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendNonPremultipliedSrcColor_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendNonPremultipliedDstColor_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendCorrelatedOverlap_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendAllOperations_ = {} ) VULKAN_HPP_NOEXCEPT - : advancedBlendMaxColorAttachments( advancedBlendMaxColorAttachments_ ) - , advancedBlendIndependentBlend( advancedBlendIndependentBlend_ ) - , advancedBlendNonPremultipliedSrcColor( advancedBlendNonPremultipliedSrcColor_ ) - , advancedBlendNonPremultipliedDstColor( advancedBlendNonPremultipliedDstColor_ ) - , advancedBlendCorrelatedOverlap( advancedBlendCorrelatedOverlap_ ) - , advancedBlendAllOperations( advancedBlendAllOperations_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceBlendOperationAdvancedPropertiesEXT( - PhysicalDeviceBlendOperationAdvancedPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBlendOperationAdvancedPropertiesEXT( VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceBlendOperationAdvancedPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceBlendOperationAdvancedPropertiesEXT & - operator=( PhysicalDeviceBlendOperationAdvancedPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBlendOperationAdvancedPropertiesEXT & - operator=( VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - advancedBlendMaxColorAttachments, - advancedBlendIndependentBlend, - advancedBlendNonPremultipliedSrcColor, - advancedBlendNonPremultipliedDstColor, - advancedBlendCorrelatedOverlap, - advancedBlendAllOperations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceBlendOperationAdvancedPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceBlendOperationAdvancedPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( advancedBlendMaxColorAttachments == rhs.advancedBlendMaxColorAttachments ) && - ( advancedBlendIndependentBlend == rhs.advancedBlendIndependentBlend ) && - ( advancedBlendNonPremultipliedSrcColor == rhs.advancedBlendNonPremultipliedSrcColor ) && - ( advancedBlendNonPremultipliedDstColor == rhs.advancedBlendNonPremultipliedDstColor ) && - ( advancedBlendCorrelatedOverlap == rhs.advancedBlendCorrelatedOverlap ) && - ( advancedBlendAllOperations == rhs.advancedBlendAllOperations ); -# endif - } - - bool operator!=( PhysicalDeviceBlendOperationAdvancedPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceBlendOperationAdvancedPropertiesEXT; - void * pNext = {}; - uint32_t advancedBlendMaxColorAttachments = {}; - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendIndependentBlend = {}; - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendNonPremultipliedSrcColor = {}; - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendNonPremultipliedDstColor = {}; - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendCorrelatedOverlap = {}; - VULKAN_HPP_NAMESPACE::Bool32 advancedBlendAllOperations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceBlendOperationAdvancedPropertiesEXT ) == - sizeof( VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceBlendOperationAdvancedPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceBlendOperationAdvancedPropertiesEXT; - }; - - struct PhysicalDeviceBorderColorSwizzleFeaturesEXT - { - using NativeType = VkPhysicalDeviceBorderColorSwizzleFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceBorderColorSwizzleFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceBorderColorSwizzleFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 borderColorSwizzle_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 borderColorSwizzleFromImage_ = {} ) VULKAN_HPP_NOEXCEPT - : borderColorSwizzle( borderColorSwizzle_ ) - , borderColorSwizzleFromImage( borderColorSwizzleFromImage_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceBorderColorSwizzleFeaturesEXT( - PhysicalDeviceBorderColorSwizzleFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBorderColorSwizzleFeaturesEXT( VkPhysicalDeviceBorderColorSwizzleFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceBorderColorSwizzleFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceBorderColorSwizzleFeaturesEXT & - operator=( PhysicalDeviceBorderColorSwizzleFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBorderColorSwizzleFeaturesEXT & - operator=( VkPhysicalDeviceBorderColorSwizzleFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBorderColorSwizzleFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBorderColorSwizzleFeaturesEXT & - setBorderColorSwizzle( VULKAN_HPP_NAMESPACE::Bool32 borderColorSwizzle_ ) VULKAN_HPP_NOEXCEPT - { - borderColorSwizzle = borderColorSwizzle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBorderColorSwizzleFeaturesEXT & - setBorderColorSwizzleFromImage( VULKAN_HPP_NAMESPACE::Bool32 borderColorSwizzleFromImage_ ) VULKAN_HPP_NOEXCEPT - { - borderColorSwizzleFromImage = borderColorSwizzleFromImage_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceBorderColorSwizzleFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceBorderColorSwizzleFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, borderColorSwizzle, borderColorSwizzleFromImage ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceBorderColorSwizzleFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceBorderColorSwizzleFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( borderColorSwizzle == rhs.borderColorSwizzle ) && - ( borderColorSwizzleFromImage == rhs.borderColorSwizzleFromImage ); -# endif - } - - bool operator!=( PhysicalDeviceBorderColorSwizzleFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceBorderColorSwizzleFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 borderColorSwizzle = {}; - VULKAN_HPP_NAMESPACE::Bool32 borderColorSwizzleFromImage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceBorderColorSwizzleFeaturesEXT ) == - sizeof( VkPhysicalDeviceBorderColorSwizzleFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceBorderColorSwizzleFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceBorderColorSwizzleFeaturesEXT; - }; - - struct PhysicalDeviceBufferDeviceAddressFeatures - { - using NativeType = VkPhysicalDeviceBufferDeviceAddressFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceBufferDeviceAddressFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceBufferDeviceAddressFeatures( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice_ = {} ) VULKAN_HPP_NOEXCEPT - : bufferDeviceAddress( bufferDeviceAddress_ ) - , bufferDeviceAddressCaptureReplay( bufferDeviceAddressCaptureReplay_ ) - , bufferDeviceAddressMultiDevice( bufferDeviceAddressMultiDevice_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceBufferDeviceAddressFeatures( - PhysicalDeviceBufferDeviceAddressFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBufferDeviceAddressFeatures( VkPhysicalDeviceBufferDeviceAddressFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceBufferDeviceAddressFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceBufferDeviceAddressFeatures & - operator=( PhysicalDeviceBufferDeviceAddressFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBufferDeviceAddressFeatures & - operator=( VkPhysicalDeviceBufferDeviceAddressFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeatures & - setBufferDeviceAddress( VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddress = bufferDeviceAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeatures & setBufferDeviceAddressCaptureReplay( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddressCaptureReplay = bufferDeviceAddressCaptureReplay_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeatures & setBufferDeviceAddressMultiDevice( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddressMultiDevice = bufferDeviceAddressMultiDevice_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceBufferDeviceAddressFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceBufferDeviceAddressFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, bufferDeviceAddress, bufferDeviceAddressCaptureReplay, bufferDeviceAddressMultiDevice ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceBufferDeviceAddressFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceBufferDeviceAddressFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( bufferDeviceAddress == rhs.bufferDeviceAddress ) && - ( bufferDeviceAddressCaptureReplay == rhs.bufferDeviceAddressCaptureReplay ) && - ( bufferDeviceAddressMultiDevice == rhs.bufferDeviceAddressMultiDevice ); -# endif - } - - bool operator!=( PhysicalDeviceBufferDeviceAddressFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceBufferDeviceAddressFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceBufferDeviceAddressFeatures ) == - sizeof( VkPhysicalDeviceBufferDeviceAddressFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceBufferDeviceAddressFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceBufferDeviceAddressFeatures; - }; - using PhysicalDeviceBufferDeviceAddressFeaturesKHR = PhysicalDeviceBufferDeviceAddressFeatures; - - struct PhysicalDeviceBufferDeviceAddressFeaturesEXT - { - using NativeType = VkPhysicalDeviceBufferDeviceAddressFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceBufferDeviceAddressFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceBufferDeviceAddressFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice_ = {} ) VULKAN_HPP_NOEXCEPT - : bufferDeviceAddress( bufferDeviceAddress_ ) - , bufferDeviceAddressCaptureReplay( bufferDeviceAddressCaptureReplay_ ) - , bufferDeviceAddressMultiDevice( bufferDeviceAddressMultiDevice_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceBufferDeviceAddressFeaturesEXT( - PhysicalDeviceBufferDeviceAddressFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBufferDeviceAddressFeaturesEXT( VkPhysicalDeviceBufferDeviceAddressFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceBufferDeviceAddressFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceBufferDeviceAddressFeaturesEXT & - operator=( PhysicalDeviceBufferDeviceAddressFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceBufferDeviceAddressFeaturesEXT & - operator=( VkPhysicalDeviceBufferDeviceAddressFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeaturesEXT & - setBufferDeviceAddress( VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddress = bufferDeviceAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeaturesEXT & setBufferDeviceAddressCaptureReplay( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddressCaptureReplay = bufferDeviceAddressCaptureReplay_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceBufferDeviceAddressFeaturesEXT & setBufferDeviceAddressMultiDevice( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddressMultiDevice = bufferDeviceAddressMultiDevice_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceBufferDeviceAddressFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceBufferDeviceAddressFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, bufferDeviceAddress, bufferDeviceAddressCaptureReplay, bufferDeviceAddressMultiDevice ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceBufferDeviceAddressFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceBufferDeviceAddressFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( bufferDeviceAddress == rhs.bufferDeviceAddress ) && - ( bufferDeviceAddressCaptureReplay == rhs.bufferDeviceAddressCaptureReplay ) && - ( bufferDeviceAddressMultiDevice == rhs.bufferDeviceAddressMultiDevice ); -# endif - } - - bool operator!=( PhysicalDeviceBufferDeviceAddressFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceBufferDeviceAddressFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceBufferDeviceAddressFeaturesEXT ) == - sizeof( VkPhysicalDeviceBufferDeviceAddressFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceBufferDeviceAddressFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceBufferDeviceAddressFeaturesEXT; - }; - using PhysicalDeviceBufferAddressFeaturesEXT = PhysicalDeviceBufferDeviceAddressFeaturesEXT; - - struct PhysicalDeviceCoherentMemoryFeaturesAMD - { - using NativeType = VkPhysicalDeviceCoherentMemoryFeaturesAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCoherentMemoryFeaturesAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceCoherentMemoryFeaturesAMD( - VULKAN_HPP_NAMESPACE::Bool32 deviceCoherentMemory_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceCoherentMemory( deviceCoherentMemory_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCoherentMemoryFeaturesAMD( PhysicalDeviceCoherentMemoryFeaturesAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCoherentMemoryFeaturesAMD( VkPhysicalDeviceCoherentMemoryFeaturesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCoherentMemoryFeaturesAMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCoherentMemoryFeaturesAMD & - operator=( PhysicalDeviceCoherentMemoryFeaturesAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCoherentMemoryFeaturesAMD & - operator=( VkPhysicalDeviceCoherentMemoryFeaturesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCoherentMemoryFeaturesAMD & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCoherentMemoryFeaturesAMD & - setDeviceCoherentMemory( VULKAN_HPP_NAMESPACE::Bool32 deviceCoherentMemory_ ) VULKAN_HPP_NOEXCEPT - { - deviceCoherentMemory = deviceCoherentMemory_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceCoherentMemoryFeaturesAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCoherentMemoryFeaturesAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceCoherentMemory ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCoherentMemoryFeaturesAMD const & ) const = default; -#else - bool operator==( PhysicalDeviceCoherentMemoryFeaturesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceCoherentMemory == rhs.deviceCoherentMemory ); -# endif - } - - bool operator!=( PhysicalDeviceCoherentMemoryFeaturesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCoherentMemoryFeaturesAMD; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 deviceCoherentMemory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCoherentMemoryFeaturesAMD ) == - sizeof( VkPhysicalDeviceCoherentMemoryFeaturesAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCoherentMemoryFeaturesAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCoherentMemoryFeaturesAMD; - }; - - struct PhysicalDeviceColorWriteEnableFeaturesEXT - { - using NativeType = VkPhysicalDeviceColorWriteEnableFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceColorWriteEnableFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceColorWriteEnableFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 colorWriteEnable_ = {} ) VULKAN_HPP_NOEXCEPT : colorWriteEnable( colorWriteEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceColorWriteEnableFeaturesEXT( - PhysicalDeviceColorWriteEnableFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceColorWriteEnableFeaturesEXT( VkPhysicalDeviceColorWriteEnableFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceColorWriteEnableFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceColorWriteEnableFeaturesEXT & - operator=( PhysicalDeviceColorWriteEnableFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceColorWriteEnableFeaturesEXT & - operator=( VkPhysicalDeviceColorWriteEnableFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceColorWriteEnableFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceColorWriteEnableFeaturesEXT & - setColorWriteEnable( VULKAN_HPP_NAMESPACE::Bool32 colorWriteEnable_ ) VULKAN_HPP_NOEXCEPT - { - colorWriteEnable = colorWriteEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceColorWriteEnableFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceColorWriteEnableFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, colorWriteEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceColorWriteEnableFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceColorWriteEnableFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( colorWriteEnable == rhs.colorWriteEnable ); -# endif - } - - bool operator!=( PhysicalDeviceColorWriteEnableFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceColorWriteEnableFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 colorWriteEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceColorWriteEnableFeaturesEXT ) == - sizeof( VkPhysicalDeviceColorWriteEnableFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceColorWriteEnableFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceColorWriteEnableFeaturesEXT; - }; - - struct PhysicalDeviceComputeShaderDerivativesFeaturesNV - { - using NativeType = VkPhysicalDeviceComputeShaderDerivativesFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceComputeShaderDerivativesFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceComputeShaderDerivativesFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 computeDerivativeGroupQuads_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 computeDerivativeGroupLinear_ = {} ) VULKAN_HPP_NOEXCEPT - : computeDerivativeGroupQuads( computeDerivativeGroupQuads_ ) - , computeDerivativeGroupLinear( computeDerivativeGroupLinear_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceComputeShaderDerivativesFeaturesNV( - PhysicalDeviceComputeShaderDerivativesFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceComputeShaderDerivativesFeaturesNV( VkPhysicalDeviceComputeShaderDerivativesFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceComputeShaderDerivativesFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceComputeShaderDerivativesFeaturesNV & - operator=( PhysicalDeviceComputeShaderDerivativesFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceComputeShaderDerivativesFeaturesNV & - operator=( VkPhysicalDeviceComputeShaderDerivativesFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceComputeShaderDerivativesFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceComputeShaderDerivativesFeaturesNV & - setComputeDerivativeGroupQuads( VULKAN_HPP_NAMESPACE::Bool32 computeDerivativeGroupQuads_ ) VULKAN_HPP_NOEXCEPT - { - computeDerivativeGroupQuads = computeDerivativeGroupQuads_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceComputeShaderDerivativesFeaturesNV & - setComputeDerivativeGroupLinear( VULKAN_HPP_NAMESPACE::Bool32 computeDerivativeGroupLinear_ ) VULKAN_HPP_NOEXCEPT - { - computeDerivativeGroupLinear = computeDerivativeGroupLinear_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceComputeShaderDerivativesFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceComputeShaderDerivativesFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, computeDerivativeGroupQuads, computeDerivativeGroupLinear ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceComputeShaderDerivativesFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceComputeShaderDerivativesFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( computeDerivativeGroupQuads == rhs.computeDerivativeGroupQuads ) && - ( computeDerivativeGroupLinear == rhs.computeDerivativeGroupLinear ); -# endif - } - - bool operator!=( PhysicalDeviceComputeShaderDerivativesFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceComputeShaderDerivativesFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 computeDerivativeGroupQuads = {}; - VULKAN_HPP_NAMESPACE::Bool32 computeDerivativeGroupLinear = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceComputeShaderDerivativesFeaturesNV ) == - sizeof( VkPhysicalDeviceComputeShaderDerivativesFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceComputeShaderDerivativesFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceComputeShaderDerivativesFeaturesNV; - }; - - struct PhysicalDeviceConditionalRenderingFeaturesEXT - { - using NativeType = VkPhysicalDeviceConditionalRenderingFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceConditionalRenderingFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceConditionalRenderingFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 conditionalRendering_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 inheritedConditionalRendering_ = {} ) VULKAN_HPP_NOEXCEPT - : conditionalRendering( conditionalRendering_ ) - , inheritedConditionalRendering( inheritedConditionalRendering_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceConditionalRenderingFeaturesEXT( - PhysicalDeviceConditionalRenderingFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceConditionalRenderingFeaturesEXT( VkPhysicalDeviceConditionalRenderingFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceConditionalRenderingFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceConditionalRenderingFeaturesEXT & - operator=( PhysicalDeviceConditionalRenderingFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceConditionalRenderingFeaturesEXT & - operator=( VkPhysicalDeviceConditionalRenderingFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceConditionalRenderingFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceConditionalRenderingFeaturesEXT & - setConditionalRendering( VULKAN_HPP_NAMESPACE::Bool32 conditionalRendering_ ) VULKAN_HPP_NOEXCEPT - { - conditionalRendering = conditionalRendering_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceConditionalRenderingFeaturesEXT & setInheritedConditionalRendering( - VULKAN_HPP_NAMESPACE::Bool32 inheritedConditionalRendering_ ) VULKAN_HPP_NOEXCEPT - { - inheritedConditionalRendering = inheritedConditionalRendering_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceConditionalRenderingFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceConditionalRenderingFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, conditionalRendering, inheritedConditionalRendering ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceConditionalRenderingFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceConditionalRenderingFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( conditionalRendering == rhs.conditionalRendering ) && - ( inheritedConditionalRendering == rhs.inheritedConditionalRendering ); -# endif - } - - bool operator!=( PhysicalDeviceConditionalRenderingFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceConditionalRenderingFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 conditionalRendering = {}; - VULKAN_HPP_NAMESPACE::Bool32 inheritedConditionalRendering = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceConditionalRenderingFeaturesEXT ) == - sizeof( VkPhysicalDeviceConditionalRenderingFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceConditionalRenderingFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceConditionalRenderingFeaturesEXT; - }; - - struct PhysicalDeviceConservativeRasterizationPropertiesEXT - { - using NativeType = VkPhysicalDeviceConservativeRasterizationPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceConservativeRasterizationPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceConservativeRasterizationPropertiesEXT( - float primitiveOverestimationSize_ = {}, - float maxExtraPrimitiveOverestimationSize_ = {}, - float extraPrimitiveOverestimationSizeGranularity_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 primitiveUnderestimation_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 conservativePointAndLineRasterization_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 degenerateTrianglesRasterized_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 degenerateLinesRasterized_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fullyCoveredFragmentShaderInputVariable_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 conservativeRasterizationPostDepthCoverage_ = {} ) VULKAN_HPP_NOEXCEPT - : primitiveOverestimationSize( primitiveOverestimationSize_ ) - , maxExtraPrimitiveOverestimationSize( maxExtraPrimitiveOverestimationSize_ ) - , extraPrimitiveOverestimationSizeGranularity( extraPrimitiveOverestimationSizeGranularity_ ) - , primitiveUnderestimation( primitiveUnderestimation_ ) - , conservativePointAndLineRasterization( conservativePointAndLineRasterization_ ) - , degenerateTrianglesRasterized( degenerateTrianglesRasterized_ ) - , degenerateLinesRasterized( degenerateLinesRasterized_ ) - , fullyCoveredFragmentShaderInputVariable( fullyCoveredFragmentShaderInputVariable_ ) - , conservativeRasterizationPostDepthCoverage( conservativeRasterizationPostDepthCoverage_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceConservativeRasterizationPropertiesEXT( - PhysicalDeviceConservativeRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceConservativeRasterizationPropertiesEXT( - VkPhysicalDeviceConservativeRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceConservativeRasterizationPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceConservativeRasterizationPropertiesEXT & - operator=( PhysicalDeviceConservativeRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceConservativeRasterizationPropertiesEXT & - operator=( VkPhysicalDeviceConservativeRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceConservativeRasterizationPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceConservativeRasterizationPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - primitiveOverestimationSize, - maxExtraPrimitiveOverestimationSize, - extraPrimitiveOverestimationSizeGranularity, - primitiveUnderestimation, - conservativePointAndLineRasterization, - degenerateTrianglesRasterized, - degenerateLinesRasterized, - fullyCoveredFragmentShaderInputVariable, - conservativeRasterizationPostDepthCoverage ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceConservativeRasterizationPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceConservativeRasterizationPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( primitiveOverestimationSize == rhs.primitiveOverestimationSize ) && - ( maxExtraPrimitiveOverestimationSize == rhs.maxExtraPrimitiveOverestimationSize ) && - ( extraPrimitiveOverestimationSizeGranularity == rhs.extraPrimitiveOverestimationSizeGranularity ) && - ( primitiveUnderestimation == rhs.primitiveUnderestimation ) && - ( conservativePointAndLineRasterization == rhs.conservativePointAndLineRasterization ) && - ( degenerateTrianglesRasterized == rhs.degenerateTrianglesRasterized ) && - ( degenerateLinesRasterized == rhs.degenerateLinesRasterized ) && - ( fullyCoveredFragmentShaderInputVariable == rhs.fullyCoveredFragmentShaderInputVariable ) && - ( conservativeRasterizationPostDepthCoverage == rhs.conservativeRasterizationPostDepthCoverage ); -# endif - } - - bool operator!=( PhysicalDeviceConservativeRasterizationPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceConservativeRasterizationPropertiesEXT; - void * pNext = {}; - float primitiveOverestimationSize = {}; - float maxExtraPrimitiveOverestimationSize = {}; - float extraPrimitiveOverestimationSizeGranularity = {}; - VULKAN_HPP_NAMESPACE::Bool32 primitiveUnderestimation = {}; - VULKAN_HPP_NAMESPACE::Bool32 conservativePointAndLineRasterization = {}; - VULKAN_HPP_NAMESPACE::Bool32 degenerateTrianglesRasterized = {}; - VULKAN_HPP_NAMESPACE::Bool32 degenerateLinesRasterized = {}; - VULKAN_HPP_NAMESPACE::Bool32 fullyCoveredFragmentShaderInputVariable = {}; - VULKAN_HPP_NAMESPACE::Bool32 conservativeRasterizationPostDepthCoverage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceConservativeRasterizationPropertiesEXT ) == - sizeof( VkPhysicalDeviceConservativeRasterizationPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceConservativeRasterizationPropertiesEXT>::value, - "PhysicalDeviceConservativeRasterizationPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceConservativeRasterizationPropertiesEXT; - }; - - struct PhysicalDeviceCooperativeMatrixFeaturesNV - { - using NativeType = VkPhysicalDeviceCooperativeMatrixFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCooperativeMatrixFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceCooperativeMatrixFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 cooperativeMatrix_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 cooperativeMatrixRobustBufferAccess_ = {} ) VULKAN_HPP_NOEXCEPT - : cooperativeMatrix( cooperativeMatrix_ ) - , cooperativeMatrixRobustBufferAccess( cooperativeMatrixRobustBufferAccess_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCooperativeMatrixFeaturesNV( - PhysicalDeviceCooperativeMatrixFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCooperativeMatrixFeaturesNV( VkPhysicalDeviceCooperativeMatrixFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCooperativeMatrixFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCooperativeMatrixFeaturesNV & - operator=( PhysicalDeviceCooperativeMatrixFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCooperativeMatrixFeaturesNV & - operator=( VkPhysicalDeviceCooperativeMatrixFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCooperativeMatrixFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCooperativeMatrixFeaturesNV & - setCooperativeMatrix( VULKAN_HPP_NAMESPACE::Bool32 cooperativeMatrix_ ) VULKAN_HPP_NOEXCEPT - { - cooperativeMatrix = cooperativeMatrix_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCooperativeMatrixFeaturesNV & setCooperativeMatrixRobustBufferAccess( - VULKAN_HPP_NAMESPACE::Bool32 cooperativeMatrixRobustBufferAccess_ ) VULKAN_HPP_NOEXCEPT - { - cooperativeMatrixRobustBufferAccess = cooperativeMatrixRobustBufferAccess_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceCooperativeMatrixFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCooperativeMatrixFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, cooperativeMatrix, cooperativeMatrixRobustBufferAccess ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCooperativeMatrixFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceCooperativeMatrixFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( cooperativeMatrix == rhs.cooperativeMatrix ) && - ( cooperativeMatrixRobustBufferAccess == rhs.cooperativeMatrixRobustBufferAccess ); -# endif - } - - bool operator!=( PhysicalDeviceCooperativeMatrixFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCooperativeMatrixFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 cooperativeMatrix = {}; - VULKAN_HPP_NAMESPACE::Bool32 cooperativeMatrixRobustBufferAccess = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCooperativeMatrixFeaturesNV ) == - sizeof( VkPhysicalDeviceCooperativeMatrixFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCooperativeMatrixFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCooperativeMatrixFeaturesNV; - }; - - struct PhysicalDeviceCooperativeMatrixPropertiesNV - { - using NativeType = VkPhysicalDeviceCooperativeMatrixPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCooperativeMatrixPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceCooperativeMatrixPropertiesNV( - VULKAN_HPP_NAMESPACE::ShaderStageFlags cooperativeMatrixSupportedStages_ = {} ) VULKAN_HPP_NOEXCEPT - : cooperativeMatrixSupportedStages( cooperativeMatrixSupportedStages_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCooperativeMatrixPropertiesNV( - PhysicalDeviceCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCooperativeMatrixPropertiesNV( VkPhysicalDeviceCooperativeMatrixPropertiesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCooperativeMatrixPropertiesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCooperativeMatrixPropertiesNV & - operator=( PhysicalDeviceCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCooperativeMatrixPropertiesNV & - operator=( VkPhysicalDeviceCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceCooperativeMatrixPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCooperativeMatrixPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, cooperativeMatrixSupportedStages ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCooperativeMatrixPropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceCooperativeMatrixPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( cooperativeMatrixSupportedStages == rhs.cooperativeMatrixSupportedStages ); -# endif - } - - bool operator!=( PhysicalDeviceCooperativeMatrixPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCooperativeMatrixPropertiesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags cooperativeMatrixSupportedStages = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCooperativeMatrixPropertiesNV ) == - sizeof( VkPhysicalDeviceCooperativeMatrixPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCooperativeMatrixPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCooperativeMatrixPropertiesNV; - }; - - struct PhysicalDeviceCornerSampledImageFeaturesNV - { - using NativeType = VkPhysicalDeviceCornerSampledImageFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCornerSampledImageFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceCornerSampledImageFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 cornerSampledImage_ = {} ) VULKAN_HPP_NOEXCEPT - : cornerSampledImage( cornerSampledImage_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCornerSampledImageFeaturesNV( - PhysicalDeviceCornerSampledImageFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCornerSampledImageFeaturesNV( VkPhysicalDeviceCornerSampledImageFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCornerSampledImageFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCornerSampledImageFeaturesNV & - operator=( PhysicalDeviceCornerSampledImageFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCornerSampledImageFeaturesNV & - operator=( VkPhysicalDeviceCornerSampledImageFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCornerSampledImageFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCornerSampledImageFeaturesNV & - setCornerSampledImage( VULKAN_HPP_NAMESPACE::Bool32 cornerSampledImage_ ) VULKAN_HPP_NOEXCEPT - { - cornerSampledImage = cornerSampledImage_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceCornerSampledImageFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCornerSampledImageFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, cornerSampledImage ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCornerSampledImageFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceCornerSampledImageFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( cornerSampledImage == rhs.cornerSampledImage ); -# endif - } - - bool operator!=( PhysicalDeviceCornerSampledImageFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCornerSampledImageFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 cornerSampledImage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCornerSampledImageFeaturesNV ) == - sizeof( VkPhysicalDeviceCornerSampledImageFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCornerSampledImageFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCornerSampledImageFeaturesNV; - }; - - struct PhysicalDeviceCoverageReductionModeFeaturesNV - { - using NativeType = VkPhysicalDeviceCoverageReductionModeFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCoverageReductionModeFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceCoverageReductionModeFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 coverageReductionMode_ = {} ) VULKAN_HPP_NOEXCEPT - : coverageReductionMode( coverageReductionMode_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCoverageReductionModeFeaturesNV( - PhysicalDeviceCoverageReductionModeFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCoverageReductionModeFeaturesNV( VkPhysicalDeviceCoverageReductionModeFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCoverageReductionModeFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCoverageReductionModeFeaturesNV & - operator=( PhysicalDeviceCoverageReductionModeFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCoverageReductionModeFeaturesNV & - operator=( VkPhysicalDeviceCoverageReductionModeFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCoverageReductionModeFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCoverageReductionModeFeaturesNV & - setCoverageReductionMode( VULKAN_HPP_NAMESPACE::Bool32 coverageReductionMode_ ) VULKAN_HPP_NOEXCEPT - { - coverageReductionMode = coverageReductionMode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceCoverageReductionModeFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCoverageReductionModeFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, coverageReductionMode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCoverageReductionModeFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceCoverageReductionModeFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( coverageReductionMode == rhs.coverageReductionMode ); -# endif - } - - bool operator!=( PhysicalDeviceCoverageReductionModeFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCoverageReductionModeFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 coverageReductionMode = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCoverageReductionModeFeaturesNV ) == - sizeof( VkPhysicalDeviceCoverageReductionModeFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCoverageReductionModeFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCoverageReductionModeFeaturesNV; - }; - - struct PhysicalDeviceCustomBorderColorFeaturesEXT - { - using NativeType = VkPhysicalDeviceCustomBorderColorFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCustomBorderColorFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceCustomBorderColorFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 customBorderColors_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 customBorderColorWithoutFormat_ = {} ) VULKAN_HPP_NOEXCEPT - : customBorderColors( customBorderColors_ ) - , customBorderColorWithoutFormat( customBorderColorWithoutFormat_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCustomBorderColorFeaturesEXT( - PhysicalDeviceCustomBorderColorFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCustomBorderColorFeaturesEXT( VkPhysicalDeviceCustomBorderColorFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCustomBorderColorFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCustomBorderColorFeaturesEXT & - operator=( PhysicalDeviceCustomBorderColorFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCustomBorderColorFeaturesEXT & - operator=( VkPhysicalDeviceCustomBorderColorFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCustomBorderColorFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCustomBorderColorFeaturesEXT & - setCustomBorderColors( VULKAN_HPP_NAMESPACE::Bool32 customBorderColors_ ) VULKAN_HPP_NOEXCEPT - { - customBorderColors = customBorderColors_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceCustomBorderColorFeaturesEXT & setCustomBorderColorWithoutFormat( - VULKAN_HPP_NAMESPACE::Bool32 customBorderColorWithoutFormat_ ) VULKAN_HPP_NOEXCEPT - { - customBorderColorWithoutFormat = customBorderColorWithoutFormat_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceCustomBorderColorFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCustomBorderColorFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, customBorderColors, customBorderColorWithoutFormat ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCustomBorderColorFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceCustomBorderColorFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( customBorderColors == rhs.customBorderColors ) && - ( customBorderColorWithoutFormat == rhs.customBorderColorWithoutFormat ); -# endif - } - - bool operator!=( PhysicalDeviceCustomBorderColorFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCustomBorderColorFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 customBorderColors = {}; - VULKAN_HPP_NAMESPACE::Bool32 customBorderColorWithoutFormat = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCustomBorderColorFeaturesEXT ) == - sizeof( VkPhysicalDeviceCustomBorderColorFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCustomBorderColorFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCustomBorderColorFeaturesEXT; - }; - - struct PhysicalDeviceCustomBorderColorPropertiesEXT - { - using NativeType = VkPhysicalDeviceCustomBorderColorPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceCustomBorderColorPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceCustomBorderColorPropertiesEXT( uint32_t maxCustomBorderColorSamplers_ = {} ) VULKAN_HPP_NOEXCEPT - : maxCustomBorderColorSamplers( maxCustomBorderColorSamplers_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceCustomBorderColorPropertiesEXT( - PhysicalDeviceCustomBorderColorPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCustomBorderColorPropertiesEXT( VkPhysicalDeviceCustomBorderColorPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceCustomBorderColorPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceCustomBorderColorPropertiesEXT & - operator=( PhysicalDeviceCustomBorderColorPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceCustomBorderColorPropertiesEXT & - operator=( VkPhysicalDeviceCustomBorderColorPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceCustomBorderColorPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceCustomBorderColorPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxCustomBorderColorSamplers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceCustomBorderColorPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceCustomBorderColorPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxCustomBorderColorSamplers == rhs.maxCustomBorderColorSamplers ); -# endif - } - - bool operator!=( PhysicalDeviceCustomBorderColorPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceCustomBorderColorPropertiesEXT; - void * pNext = {}; - uint32_t maxCustomBorderColorSamplers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceCustomBorderColorPropertiesEXT ) == - sizeof( VkPhysicalDeviceCustomBorderColorPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceCustomBorderColorPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceCustomBorderColorPropertiesEXT; - }; - - struct PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV - { - using NativeType = VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocationImageAliasing_ = {} ) VULKAN_HPP_NOEXCEPT - : dedicatedAllocationImageAliasing( dedicatedAllocationImageAliasing_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV( - PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV( - VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV & - operator=( PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV & - operator=( VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( - &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV & - setDedicatedAllocationImageAliasing( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocationImageAliasing_ ) - VULKAN_HPP_NOEXCEPT - { - dedicatedAllocationImageAliasing = dedicatedAllocationImageAliasing_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, dedicatedAllocationImageAliasing ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( dedicatedAllocationImageAliasing == rhs.dedicatedAllocationImageAliasing ); -# endif - } - - bool operator!=( PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = - StructureType::ePhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocationImageAliasing = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV ) == - sizeof( VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV>::value, - "PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV; - }; - - struct PhysicalDeviceDepthClipControlFeaturesEXT - { - using NativeType = VkPhysicalDeviceDepthClipControlFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDepthClipControlFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDepthClipControlFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 depthClipControl_ = {} ) VULKAN_HPP_NOEXCEPT : depthClipControl( depthClipControl_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDepthClipControlFeaturesEXT( - PhysicalDeviceDepthClipControlFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDepthClipControlFeaturesEXT( VkPhysicalDeviceDepthClipControlFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDepthClipControlFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDepthClipControlFeaturesEXT & - operator=( PhysicalDeviceDepthClipControlFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDepthClipControlFeaturesEXT & - operator=( VkPhysicalDeviceDepthClipControlFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDepthClipControlFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDepthClipControlFeaturesEXT & - setDepthClipControl( VULKAN_HPP_NAMESPACE::Bool32 depthClipControl_ ) VULKAN_HPP_NOEXCEPT - { - depthClipControl = depthClipControl_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDepthClipControlFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDepthClipControlFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, depthClipControl ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDepthClipControlFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceDepthClipControlFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( depthClipControl == rhs.depthClipControl ); -# endif - } - - bool operator!=( PhysicalDeviceDepthClipControlFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDepthClipControlFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthClipControl = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDepthClipControlFeaturesEXT ) == - sizeof( VkPhysicalDeviceDepthClipControlFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDepthClipControlFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDepthClipControlFeaturesEXT; - }; - - struct PhysicalDeviceDepthClipEnableFeaturesEXT - { - using NativeType = VkPhysicalDeviceDepthClipEnableFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDepthClipEnableFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceDepthClipEnableFeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 depthClipEnable_ = {} ) VULKAN_HPP_NOEXCEPT - : depthClipEnable( depthClipEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDepthClipEnableFeaturesEXT( - PhysicalDeviceDepthClipEnableFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDepthClipEnableFeaturesEXT( VkPhysicalDeviceDepthClipEnableFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDepthClipEnableFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDepthClipEnableFeaturesEXT & - operator=( PhysicalDeviceDepthClipEnableFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDepthClipEnableFeaturesEXT & - operator=( VkPhysicalDeviceDepthClipEnableFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDepthClipEnableFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDepthClipEnableFeaturesEXT & - setDepthClipEnable( VULKAN_HPP_NAMESPACE::Bool32 depthClipEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthClipEnable = depthClipEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDepthClipEnableFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDepthClipEnableFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, depthClipEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDepthClipEnableFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceDepthClipEnableFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( depthClipEnable == rhs.depthClipEnable ); -# endif - } - - bool operator!=( PhysicalDeviceDepthClipEnableFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDepthClipEnableFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthClipEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDepthClipEnableFeaturesEXT ) == - sizeof( VkPhysicalDeviceDepthClipEnableFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDepthClipEnableFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDepthClipEnableFeaturesEXT; - }; - - struct PhysicalDeviceDepthStencilResolveProperties - { - using NativeType = VkPhysicalDeviceDepthStencilResolveProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDepthStencilResolveProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDepthStencilResolveProperties( - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedDepthResolveModes_ = {}, - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedStencilResolveModes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 independentResolveNone_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 independentResolve_ = {} ) VULKAN_HPP_NOEXCEPT - : supportedDepthResolveModes( supportedDepthResolveModes_ ) - , supportedStencilResolveModes( supportedStencilResolveModes_ ) - , independentResolveNone( independentResolveNone_ ) - , independentResolve( independentResolve_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDepthStencilResolveProperties( - PhysicalDeviceDepthStencilResolveProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDepthStencilResolveProperties( VkPhysicalDeviceDepthStencilResolveProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDepthStencilResolveProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDepthStencilResolveProperties & - operator=( PhysicalDeviceDepthStencilResolveProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDepthStencilResolveProperties & - operator=( VkPhysicalDeviceDepthStencilResolveProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceDepthStencilResolveProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDepthStencilResolveProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - supportedDepthResolveModes, - supportedStencilResolveModes, - independentResolveNone, - independentResolve ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDepthStencilResolveProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceDepthStencilResolveProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( supportedDepthResolveModes == rhs.supportedDepthResolveModes ) && - ( supportedStencilResolveModes == rhs.supportedStencilResolveModes ) && - ( independentResolveNone == rhs.independentResolveNone ) && - ( independentResolve == rhs.independentResolve ); -# endif - } - - bool operator!=( PhysicalDeviceDepthStencilResolveProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDepthStencilResolveProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedDepthResolveModes = {}; - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedStencilResolveModes = {}; - VULKAN_HPP_NAMESPACE::Bool32 independentResolveNone = {}; - VULKAN_HPP_NAMESPACE::Bool32 independentResolve = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDepthStencilResolveProperties ) == - sizeof( VkPhysicalDeviceDepthStencilResolveProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDepthStencilResolveProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDepthStencilResolveProperties; - }; - using PhysicalDeviceDepthStencilResolvePropertiesKHR = PhysicalDeviceDepthStencilResolveProperties; - - struct PhysicalDeviceDescriptorIndexingFeatures - { - using NativeType = VkPhysicalDeviceDescriptorIndexingFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDescriptorIndexingFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDescriptorIndexingFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingSampledImageUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageImageUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformTexelBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageTexelBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUpdateUnusedWhilePending_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingPartiallyBound_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingVariableDescriptorCount_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 runtimeDescriptorArray_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderInputAttachmentArrayDynamicIndexing( shaderInputAttachmentArrayDynamicIndexing_ ) - , shaderUniformTexelBufferArrayDynamicIndexing( shaderUniformTexelBufferArrayDynamicIndexing_ ) - , shaderStorageTexelBufferArrayDynamicIndexing( shaderStorageTexelBufferArrayDynamicIndexing_ ) - , shaderUniformBufferArrayNonUniformIndexing( shaderUniformBufferArrayNonUniformIndexing_ ) - , shaderSampledImageArrayNonUniformIndexing( shaderSampledImageArrayNonUniformIndexing_ ) - , shaderStorageBufferArrayNonUniformIndexing( shaderStorageBufferArrayNonUniformIndexing_ ) - , shaderStorageImageArrayNonUniformIndexing( shaderStorageImageArrayNonUniformIndexing_ ) - , shaderInputAttachmentArrayNonUniformIndexing( shaderInputAttachmentArrayNonUniformIndexing_ ) - , shaderUniformTexelBufferArrayNonUniformIndexing( shaderUniformTexelBufferArrayNonUniformIndexing_ ) - , shaderStorageTexelBufferArrayNonUniformIndexing( shaderStorageTexelBufferArrayNonUniformIndexing_ ) - , descriptorBindingUniformBufferUpdateAfterBind( descriptorBindingUniformBufferUpdateAfterBind_ ) - , descriptorBindingSampledImageUpdateAfterBind( descriptorBindingSampledImageUpdateAfterBind_ ) - , descriptorBindingStorageImageUpdateAfterBind( descriptorBindingStorageImageUpdateAfterBind_ ) - , descriptorBindingStorageBufferUpdateAfterBind( descriptorBindingStorageBufferUpdateAfterBind_ ) - , descriptorBindingUniformTexelBufferUpdateAfterBind( descriptorBindingUniformTexelBufferUpdateAfterBind_ ) - , descriptorBindingStorageTexelBufferUpdateAfterBind( descriptorBindingStorageTexelBufferUpdateAfterBind_ ) - , descriptorBindingUpdateUnusedWhilePending( descriptorBindingUpdateUnusedWhilePending_ ) - , descriptorBindingPartiallyBound( descriptorBindingPartiallyBound_ ) - , descriptorBindingVariableDescriptorCount( descriptorBindingVariableDescriptorCount_ ) - , runtimeDescriptorArray( runtimeDescriptorArray_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDescriptorIndexingFeatures( - PhysicalDeviceDescriptorIndexingFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDescriptorIndexingFeatures( VkPhysicalDeviceDescriptorIndexingFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDescriptorIndexingFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDescriptorIndexingFeatures & - operator=( PhysicalDeviceDescriptorIndexingFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDescriptorIndexingFeatures & - operator=( VkPhysicalDeviceDescriptorIndexingFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderInputAttachmentArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderInputAttachmentArrayDynamicIndexing = shaderInputAttachmentArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderUniformTexelBufferArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformTexelBufferArrayDynamicIndexing = shaderUniformTexelBufferArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderStorageTexelBufferArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageTexelBufferArrayDynamicIndexing = shaderStorageTexelBufferArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderUniformBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformBufferArrayNonUniformIndexing = shaderUniformBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderSampledImageArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderSampledImageArrayNonUniformIndexing = shaderSampledImageArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderStorageBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageBufferArrayNonUniformIndexing = shaderStorageBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderStorageImageArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageArrayNonUniformIndexing = shaderStorageImageArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setShaderInputAttachmentArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderInputAttachmentArrayNonUniformIndexing = shaderInputAttachmentArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & - setShaderUniformTexelBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformTexelBufferArrayNonUniformIndexing = shaderUniformTexelBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & - setShaderStorageTexelBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageTexelBufferArrayNonUniformIndexing = shaderStorageTexelBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingUniformBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingUniformBufferUpdateAfterBind = descriptorBindingUniformBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingSampledImageUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingSampledImageUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingSampledImageUpdateAfterBind = descriptorBindingSampledImageUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingStorageImageUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageImageUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingStorageImageUpdateAfterBind = descriptorBindingStorageImageUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingStorageBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingStorageBufferUpdateAfterBind = descriptorBindingStorageBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & - setDescriptorBindingUniformTexelBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformTexelBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingUniformTexelBufferUpdateAfterBind = descriptorBindingUniformTexelBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & - setDescriptorBindingStorageTexelBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageTexelBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingStorageTexelBufferUpdateAfterBind = descriptorBindingStorageTexelBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingUpdateUnusedWhilePending( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUpdateUnusedWhilePending_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingUpdateUnusedWhilePending = descriptorBindingUpdateUnusedWhilePending_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingPartiallyBound( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingPartiallyBound_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingPartiallyBound = descriptorBindingPartiallyBound_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & setDescriptorBindingVariableDescriptorCount( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingVariableDescriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingVariableDescriptorCount = descriptorBindingVariableDescriptorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDescriptorIndexingFeatures & - setRuntimeDescriptorArray( VULKAN_HPP_NAMESPACE::Bool32 runtimeDescriptorArray_ ) VULKAN_HPP_NOEXCEPT - { - runtimeDescriptorArray = runtimeDescriptorArray_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDescriptorIndexingFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDescriptorIndexingFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - shaderInputAttachmentArrayDynamicIndexing, - shaderUniformTexelBufferArrayDynamicIndexing, - shaderStorageTexelBufferArrayDynamicIndexing, - shaderUniformBufferArrayNonUniformIndexing, - shaderSampledImageArrayNonUniformIndexing, - shaderStorageBufferArrayNonUniformIndexing, - shaderStorageImageArrayNonUniformIndexing, - shaderInputAttachmentArrayNonUniformIndexing, - shaderUniformTexelBufferArrayNonUniformIndexing, - shaderStorageTexelBufferArrayNonUniformIndexing, - descriptorBindingUniformBufferUpdateAfterBind, - descriptorBindingSampledImageUpdateAfterBind, - descriptorBindingStorageImageUpdateAfterBind, - descriptorBindingStorageBufferUpdateAfterBind, - descriptorBindingUniformTexelBufferUpdateAfterBind, - descriptorBindingStorageTexelBufferUpdateAfterBind, - descriptorBindingUpdateUnusedWhilePending, - descriptorBindingPartiallyBound, - descriptorBindingVariableDescriptorCount, - runtimeDescriptorArray ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDescriptorIndexingFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceDescriptorIndexingFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderInputAttachmentArrayDynamicIndexing == rhs.shaderInputAttachmentArrayDynamicIndexing ) && - ( shaderUniformTexelBufferArrayDynamicIndexing == rhs.shaderUniformTexelBufferArrayDynamicIndexing ) && - ( shaderStorageTexelBufferArrayDynamicIndexing == rhs.shaderStorageTexelBufferArrayDynamicIndexing ) && - ( shaderUniformBufferArrayNonUniformIndexing == rhs.shaderUniformBufferArrayNonUniformIndexing ) && - ( shaderSampledImageArrayNonUniformIndexing == rhs.shaderSampledImageArrayNonUniformIndexing ) && - ( shaderStorageBufferArrayNonUniformIndexing == rhs.shaderStorageBufferArrayNonUniformIndexing ) && - ( shaderStorageImageArrayNonUniformIndexing == rhs.shaderStorageImageArrayNonUniformIndexing ) && - ( shaderInputAttachmentArrayNonUniformIndexing == rhs.shaderInputAttachmentArrayNonUniformIndexing ) && - ( shaderUniformTexelBufferArrayNonUniformIndexing == - rhs.shaderUniformTexelBufferArrayNonUniformIndexing ) && - ( shaderStorageTexelBufferArrayNonUniformIndexing == - rhs.shaderStorageTexelBufferArrayNonUniformIndexing ) && - ( descriptorBindingUniformBufferUpdateAfterBind == rhs.descriptorBindingUniformBufferUpdateAfterBind ) && - ( descriptorBindingSampledImageUpdateAfterBind == rhs.descriptorBindingSampledImageUpdateAfterBind ) && - ( descriptorBindingStorageImageUpdateAfterBind == rhs.descriptorBindingStorageImageUpdateAfterBind ) && - ( descriptorBindingStorageBufferUpdateAfterBind == rhs.descriptorBindingStorageBufferUpdateAfterBind ) && - ( descriptorBindingUniformTexelBufferUpdateAfterBind == - rhs.descriptorBindingUniformTexelBufferUpdateAfterBind ) && - ( descriptorBindingStorageTexelBufferUpdateAfterBind == - rhs.descriptorBindingStorageTexelBufferUpdateAfterBind ) && - ( descriptorBindingUpdateUnusedWhilePending == rhs.descriptorBindingUpdateUnusedWhilePending ) && - ( descriptorBindingPartiallyBound == rhs.descriptorBindingPartiallyBound ) && - ( descriptorBindingVariableDescriptorCount == rhs.descriptorBindingVariableDescriptorCount ) && - ( runtimeDescriptorArray == rhs.runtimeDescriptorArray ); -# endif - } - - bool operator!=( PhysicalDeviceDescriptorIndexingFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDescriptorIndexingFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingSampledImageUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageImageUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformTexelBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageTexelBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUpdateUnusedWhilePending = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingPartiallyBound = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingVariableDescriptorCount = {}; - VULKAN_HPP_NAMESPACE::Bool32 runtimeDescriptorArray = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingFeatures ) == - sizeof( VkPhysicalDeviceDescriptorIndexingFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDescriptorIndexingFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDescriptorIndexingFeatures; - }; - using PhysicalDeviceDescriptorIndexingFeaturesEXT = PhysicalDeviceDescriptorIndexingFeatures; - - struct PhysicalDeviceDescriptorIndexingProperties - { - using NativeType = VkPhysicalDeviceDescriptorIndexingProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDescriptorIndexingProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDescriptorIndexingProperties( - uint32_t maxUpdateAfterBindDescriptorsInAllPools_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccessUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 quadDivergentImplicitLod_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindSamplers_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments_ = {}, - uint32_t maxPerStageUpdateAfterBindResources_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindSamplers_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindSampledImages_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindStorageImages_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindInputAttachments_ = {} ) VULKAN_HPP_NOEXCEPT - : maxUpdateAfterBindDescriptorsInAllPools( maxUpdateAfterBindDescriptorsInAllPools_ ) - , shaderUniformBufferArrayNonUniformIndexingNative( shaderUniformBufferArrayNonUniformIndexingNative_ ) - , shaderSampledImageArrayNonUniformIndexingNative( shaderSampledImageArrayNonUniformIndexingNative_ ) - , shaderStorageBufferArrayNonUniformIndexingNative( shaderStorageBufferArrayNonUniformIndexingNative_ ) - , shaderStorageImageArrayNonUniformIndexingNative( shaderStorageImageArrayNonUniformIndexingNative_ ) - , shaderInputAttachmentArrayNonUniformIndexingNative( shaderInputAttachmentArrayNonUniformIndexingNative_ ) - , robustBufferAccessUpdateAfterBind( robustBufferAccessUpdateAfterBind_ ) - , quadDivergentImplicitLod( quadDivergentImplicitLod_ ) - , maxPerStageDescriptorUpdateAfterBindSamplers( maxPerStageDescriptorUpdateAfterBindSamplers_ ) - , maxPerStageDescriptorUpdateAfterBindUniformBuffers( maxPerStageDescriptorUpdateAfterBindUniformBuffers_ ) - , maxPerStageDescriptorUpdateAfterBindStorageBuffers( maxPerStageDescriptorUpdateAfterBindStorageBuffers_ ) - , maxPerStageDescriptorUpdateAfterBindSampledImages( maxPerStageDescriptorUpdateAfterBindSampledImages_ ) - , maxPerStageDescriptorUpdateAfterBindStorageImages( maxPerStageDescriptorUpdateAfterBindStorageImages_ ) - , maxPerStageDescriptorUpdateAfterBindInputAttachments( maxPerStageDescriptorUpdateAfterBindInputAttachments_ ) - , maxPerStageUpdateAfterBindResources( maxPerStageUpdateAfterBindResources_ ) - , maxDescriptorSetUpdateAfterBindSamplers( maxDescriptorSetUpdateAfterBindSamplers_ ) - , maxDescriptorSetUpdateAfterBindUniformBuffers( maxDescriptorSetUpdateAfterBindUniformBuffers_ ) - , maxDescriptorSetUpdateAfterBindUniformBuffersDynamic( maxDescriptorSetUpdateAfterBindUniformBuffersDynamic_ ) - , maxDescriptorSetUpdateAfterBindStorageBuffers( maxDescriptorSetUpdateAfterBindStorageBuffers_ ) - , maxDescriptorSetUpdateAfterBindStorageBuffersDynamic( maxDescriptorSetUpdateAfterBindStorageBuffersDynamic_ ) - , maxDescriptorSetUpdateAfterBindSampledImages( maxDescriptorSetUpdateAfterBindSampledImages_ ) - , maxDescriptorSetUpdateAfterBindStorageImages( maxDescriptorSetUpdateAfterBindStorageImages_ ) - , maxDescriptorSetUpdateAfterBindInputAttachments( maxDescriptorSetUpdateAfterBindInputAttachments_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDescriptorIndexingProperties( - PhysicalDeviceDescriptorIndexingProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDescriptorIndexingProperties( VkPhysicalDeviceDescriptorIndexingProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDescriptorIndexingProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDescriptorIndexingProperties & - operator=( PhysicalDeviceDescriptorIndexingProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDescriptorIndexingProperties & - operator=( VkPhysicalDeviceDescriptorIndexingProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceDescriptorIndexingProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDescriptorIndexingProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - maxUpdateAfterBindDescriptorsInAllPools, - shaderUniformBufferArrayNonUniformIndexingNative, - shaderSampledImageArrayNonUniformIndexingNative, - shaderStorageBufferArrayNonUniformIndexingNative, - shaderStorageImageArrayNonUniformIndexingNative, - shaderInputAttachmentArrayNonUniformIndexingNative, - robustBufferAccessUpdateAfterBind, - quadDivergentImplicitLod, - maxPerStageDescriptorUpdateAfterBindSamplers, - maxPerStageDescriptorUpdateAfterBindUniformBuffers, - maxPerStageDescriptorUpdateAfterBindStorageBuffers, - maxPerStageDescriptorUpdateAfterBindSampledImages, - maxPerStageDescriptorUpdateAfterBindStorageImages, - maxPerStageDescriptorUpdateAfterBindInputAttachments, - maxPerStageUpdateAfterBindResources, - maxDescriptorSetUpdateAfterBindSamplers, - maxDescriptorSetUpdateAfterBindUniformBuffers, - maxDescriptorSetUpdateAfterBindUniformBuffersDynamic, - maxDescriptorSetUpdateAfterBindStorageBuffers, - maxDescriptorSetUpdateAfterBindStorageBuffersDynamic, - maxDescriptorSetUpdateAfterBindSampledImages, - maxDescriptorSetUpdateAfterBindStorageImages, - maxDescriptorSetUpdateAfterBindInputAttachments ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDescriptorIndexingProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceDescriptorIndexingProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxUpdateAfterBindDescriptorsInAllPools == rhs.maxUpdateAfterBindDescriptorsInAllPools ) && - ( shaderUniformBufferArrayNonUniformIndexingNative == - rhs.shaderUniformBufferArrayNonUniformIndexingNative ) && - ( shaderSampledImageArrayNonUniformIndexingNative == - rhs.shaderSampledImageArrayNonUniformIndexingNative ) && - ( shaderStorageBufferArrayNonUniformIndexingNative == - rhs.shaderStorageBufferArrayNonUniformIndexingNative ) && - ( shaderStorageImageArrayNonUniformIndexingNative == - rhs.shaderStorageImageArrayNonUniformIndexingNative ) && - ( shaderInputAttachmentArrayNonUniformIndexingNative == - rhs.shaderInputAttachmentArrayNonUniformIndexingNative ) && - ( robustBufferAccessUpdateAfterBind == rhs.robustBufferAccessUpdateAfterBind ) && - ( quadDivergentImplicitLod == rhs.quadDivergentImplicitLod ) && - ( maxPerStageDescriptorUpdateAfterBindSamplers == rhs.maxPerStageDescriptorUpdateAfterBindSamplers ) && - ( maxPerStageDescriptorUpdateAfterBindUniformBuffers == - rhs.maxPerStageDescriptorUpdateAfterBindUniformBuffers ) && - ( maxPerStageDescriptorUpdateAfterBindStorageBuffers == - rhs.maxPerStageDescriptorUpdateAfterBindStorageBuffers ) && - ( maxPerStageDescriptorUpdateAfterBindSampledImages == - rhs.maxPerStageDescriptorUpdateAfterBindSampledImages ) && - ( maxPerStageDescriptorUpdateAfterBindStorageImages == - rhs.maxPerStageDescriptorUpdateAfterBindStorageImages ) && - ( maxPerStageDescriptorUpdateAfterBindInputAttachments == - rhs.maxPerStageDescriptorUpdateAfterBindInputAttachments ) && - ( maxPerStageUpdateAfterBindResources == rhs.maxPerStageUpdateAfterBindResources ) && - ( maxDescriptorSetUpdateAfterBindSamplers == rhs.maxDescriptorSetUpdateAfterBindSamplers ) && - ( maxDescriptorSetUpdateAfterBindUniformBuffers == rhs.maxDescriptorSetUpdateAfterBindUniformBuffers ) && - ( maxDescriptorSetUpdateAfterBindUniformBuffersDynamic == - rhs.maxDescriptorSetUpdateAfterBindUniformBuffersDynamic ) && - ( maxDescriptorSetUpdateAfterBindStorageBuffers == rhs.maxDescriptorSetUpdateAfterBindStorageBuffers ) && - ( maxDescriptorSetUpdateAfterBindStorageBuffersDynamic == - rhs.maxDescriptorSetUpdateAfterBindStorageBuffersDynamic ) && - ( maxDescriptorSetUpdateAfterBindSampledImages == rhs.maxDescriptorSetUpdateAfterBindSampledImages ) && - ( maxDescriptorSetUpdateAfterBindStorageImages == rhs.maxDescriptorSetUpdateAfterBindStorageImages ) && - ( maxDescriptorSetUpdateAfterBindInputAttachments == rhs.maxDescriptorSetUpdateAfterBindInputAttachments ); -# endif - } - - bool operator!=( PhysicalDeviceDescriptorIndexingProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDescriptorIndexingProperties; - void * pNext = {}; - uint32_t maxUpdateAfterBindDescriptorsInAllPools = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccessUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 quadDivergentImplicitLod = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindSamplers = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments = {}; - uint32_t maxPerStageUpdateAfterBindResources = {}; - uint32_t maxDescriptorSetUpdateAfterBindSamplers = {}; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers = {}; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic = {}; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers = {}; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic = {}; - uint32_t maxDescriptorSetUpdateAfterBindSampledImages = {}; - uint32_t maxDescriptorSetUpdateAfterBindStorageImages = {}; - uint32_t maxDescriptorSetUpdateAfterBindInputAttachments = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDescriptorIndexingProperties ) == - sizeof( VkPhysicalDeviceDescriptorIndexingProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDescriptorIndexingProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDescriptorIndexingProperties; - }; - using PhysicalDeviceDescriptorIndexingPropertiesEXT = PhysicalDeviceDescriptorIndexingProperties; - - struct PhysicalDeviceDeviceGeneratedCommandsFeaturesNV - { - using NativeType = VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDeviceGeneratedCommandsFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDeviceGeneratedCommandsFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 deviceGeneratedCommands_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceGeneratedCommands( deviceGeneratedCommands_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDeviceGeneratedCommandsFeaturesNV( - PhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDeviceGeneratedCommandsFeaturesNV( VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDeviceGeneratedCommandsFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDeviceGeneratedCommandsFeaturesNV & - operator=( PhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDeviceGeneratedCommandsFeaturesNV & - operator=( VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDeviceGeneratedCommandsFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDeviceGeneratedCommandsFeaturesNV & - setDeviceGeneratedCommands( VULKAN_HPP_NAMESPACE::Bool32 deviceGeneratedCommands_ ) VULKAN_HPP_NOEXCEPT - { - deviceGeneratedCommands = deviceGeneratedCommands_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceGeneratedCommands ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( deviceGeneratedCommands == rhs.deviceGeneratedCommands ); -# endif - } - - bool operator!=( PhysicalDeviceDeviceGeneratedCommandsFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDeviceGeneratedCommandsFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 deviceGeneratedCommands = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDeviceGeneratedCommandsFeaturesNV ) == - sizeof( VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDeviceGeneratedCommandsFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDeviceGeneratedCommandsFeaturesNV; - }; - - struct PhysicalDeviceDeviceGeneratedCommandsPropertiesNV - { - using NativeType = VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDeviceGeneratedCommandsPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDeviceGeneratedCommandsPropertiesNV( - uint32_t maxGraphicsShaderGroupCount_ = {}, - uint32_t maxIndirectSequenceCount_ = {}, - uint32_t maxIndirectCommandsTokenCount_ = {}, - uint32_t maxIndirectCommandsStreamCount_ = {}, - uint32_t maxIndirectCommandsTokenOffset_ = {}, - uint32_t maxIndirectCommandsStreamStride_ = {}, - uint32_t minSequencesCountBufferOffsetAlignment_ = {}, - uint32_t minSequencesIndexBufferOffsetAlignment_ = {}, - uint32_t minIndirectCommandsBufferOffsetAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : maxGraphicsShaderGroupCount( maxGraphicsShaderGroupCount_ ) - , maxIndirectSequenceCount( maxIndirectSequenceCount_ ) - , maxIndirectCommandsTokenCount( maxIndirectCommandsTokenCount_ ) - , maxIndirectCommandsStreamCount( maxIndirectCommandsStreamCount_ ) - , maxIndirectCommandsTokenOffset( maxIndirectCommandsTokenOffset_ ) - , maxIndirectCommandsStreamStride( maxIndirectCommandsStreamStride_ ) - , minSequencesCountBufferOffsetAlignment( minSequencesCountBufferOffsetAlignment_ ) - , minSequencesIndexBufferOffsetAlignment( minSequencesIndexBufferOffsetAlignment_ ) - , minIndirectCommandsBufferOffsetAlignment( minIndirectCommandsBufferOffsetAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDeviceGeneratedCommandsPropertiesNV( - PhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDeviceGeneratedCommandsPropertiesNV( VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDeviceGeneratedCommandsPropertiesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDeviceGeneratedCommandsPropertiesNV & - operator=( PhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDeviceGeneratedCommandsPropertiesNV & - operator=( VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - maxGraphicsShaderGroupCount, - maxIndirectSequenceCount, - maxIndirectCommandsTokenCount, - maxIndirectCommandsStreamCount, - maxIndirectCommandsTokenOffset, - maxIndirectCommandsStreamStride, - minSequencesCountBufferOffsetAlignment, - minSequencesIndexBufferOffsetAlignment, - minIndirectCommandsBufferOffsetAlignment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxGraphicsShaderGroupCount == rhs.maxGraphicsShaderGroupCount ) && - ( maxIndirectSequenceCount == rhs.maxIndirectSequenceCount ) && - ( maxIndirectCommandsTokenCount == rhs.maxIndirectCommandsTokenCount ) && - ( maxIndirectCommandsStreamCount == rhs.maxIndirectCommandsStreamCount ) && - ( maxIndirectCommandsTokenOffset == rhs.maxIndirectCommandsTokenOffset ) && - ( maxIndirectCommandsStreamStride == rhs.maxIndirectCommandsStreamStride ) && - ( minSequencesCountBufferOffsetAlignment == rhs.minSequencesCountBufferOffsetAlignment ) && - ( minSequencesIndexBufferOffsetAlignment == rhs.minSequencesIndexBufferOffsetAlignment ) && - ( minIndirectCommandsBufferOffsetAlignment == rhs.minIndirectCommandsBufferOffsetAlignment ); -# endif - } - - bool operator!=( PhysicalDeviceDeviceGeneratedCommandsPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDeviceGeneratedCommandsPropertiesNV; - void * pNext = {}; - uint32_t maxGraphicsShaderGroupCount = {}; - uint32_t maxIndirectSequenceCount = {}; - uint32_t maxIndirectCommandsTokenCount = {}; - uint32_t maxIndirectCommandsStreamCount = {}; - uint32_t maxIndirectCommandsTokenOffset = {}; - uint32_t maxIndirectCommandsStreamStride = {}; - uint32_t minSequencesCountBufferOffsetAlignment = {}; - uint32_t minSequencesIndexBufferOffsetAlignment = {}; - uint32_t minIndirectCommandsBufferOffsetAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDeviceGeneratedCommandsPropertiesNV ) == - sizeof( VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDeviceGeneratedCommandsPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDeviceGeneratedCommandsPropertiesNV; - }; - - struct PhysicalDeviceDeviceMemoryReportFeaturesEXT - { - using NativeType = VkPhysicalDeviceDeviceMemoryReportFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDeviceMemoryReportFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDeviceMemoryReportFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 deviceMemoryReport_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceMemoryReport( deviceMemoryReport_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDeviceMemoryReportFeaturesEXT( - PhysicalDeviceDeviceMemoryReportFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDeviceMemoryReportFeaturesEXT( VkPhysicalDeviceDeviceMemoryReportFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDeviceMemoryReportFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDeviceMemoryReportFeaturesEXT & - operator=( PhysicalDeviceDeviceMemoryReportFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDeviceMemoryReportFeaturesEXT & - operator=( VkPhysicalDeviceDeviceMemoryReportFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDeviceMemoryReportFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDeviceMemoryReportFeaturesEXT & - setDeviceMemoryReport( VULKAN_HPP_NAMESPACE::Bool32 deviceMemoryReport_ ) VULKAN_HPP_NOEXCEPT - { - deviceMemoryReport = deviceMemoryReport_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDeviceMemoryReportFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDeviceMemoryReportFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceMemoryReport ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDeviceMemoryReportFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceDeviceMemoryReportFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceMemoryReport == rhs.deviceMemoryReport ); -# endif - } - - bool operator!=( PhysicalDeviceDeviceMemoryReportFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDeviceMemoryReportFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 deviceMemoryReport = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDeviceMemoryReportFeaturesEXT ) == - sizeof( VkPhysicalDeviceDeviceMemoryReportFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDeviceMemoryReportFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDeviceMemoryReportFeaturesEXT; - }; - - struct PhysicalDeviceDiagnosticsConfigFeaturesNV - { - using NativeType = VkPhysicalDeviceDiagnosticsConfigFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDiagnosticsConfigFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDiagnosticsConfigFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 diagnosticsConfig_ = {} ) VULKAN_HPP_NOEXCEPT - : diagnosticsConfig( diagnosticsConfig_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDiagnosticsConfigFeaturesNV( - PhysicalDeviceDiagnosticsConfigFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDiagnosticsConfigFeaturesNV( VkPhysicalDeviceDiagnosticsConfigFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDiagnosticsConfigFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDiagnosticsConfigFeaturesNV & - operator=( PhysicalDeviceDiagnosticsConfigFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDiagnosticsConfigFeaturesNV & - operator=( VkPhysicalDeviceDiagnosticsConfigFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDiagnosticsConfigFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDiagnosticsConfigFeaturesNV & - setDiagnosticsConfig( VULKAN_HPP_NAMESPACE::Bool32 diagnosticsConfig_ ) VULKAN_HPP_NOEXCEPT - { - diagnosticsConfig = diagnosticsConfig_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDiagnosticsConfigFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDiagnosticsConfigFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, diagnosticsConfig ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDiagnosticsConfigFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceDiagnosticsConfigFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( diagnosticsConfig == rhs.diagnosticsConfig ); -# endif - } - - bool operator!=( PhysicalDeviceDiagnosticsConfigFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDiagnosticsConfigFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 diagnosticsConfig = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDiagnosticsConfigFeaturesNV ) == - sizeof( VkPhysicalDeviceDiagnosticsConfigFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDiagnosticsConfigFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDiagnosticsConfigFeaturesNV; - }; - - struct PhysicalDeviceDiscardRectanglePropertiesEXT - { - using NativeType = VkPhysicalDeviceDiscardRectanglePropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDiscardRectanglePropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceDiscardRectanglePropertiesEXT( uint32_t maxDiscardRectangles_ = {} ) VULKAN_HPP_NOEXCEPT - : maxDiscardRectangles( maxDiscardRectangles_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDiscardRectanglePropertiesEXT( - PhysicalDeviceDiscardRectanglePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDiscardRectanglePropertiesEXT( VkPhysicalDeviceDiscardRectanglePropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDiscardRectanglePropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDiscardRectanglePropertiesEXT & - operator=( PhysicalDeviceDiscardRectanglePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDiscardRectanglePropertiesEXT & - operator=( VkPhysicalDeviceDiscardRectanglePropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceDiscardRectanglePropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDiscardRectanglePropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxDiscardRectangles ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDiscardRectanglePropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceDiscardRectanglePropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxDiscardRectangles == rhs.maxDiscardRectangles ); -# endif - } - - bool operator!=( PhysicalDeviceDiscardRectanglePropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDiscardRectanglePropertiesEXT; - void * pNext = {}; - uint32_t maxDiscardRectangles = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDiscardRectanglePropertiesEXT ) == - sizeof( VkPhysicalDeviceDiscardRectanglePropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDiscardRectanglePropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDiscardRectanglePropertiesEXT; - }; - - struct PhysicalDeviceDriverProperties - { - using NativeType = VkPhysicalDeviceDriverProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDriverProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDriverProperties( - VULKAN_HPP_NAMESPACE::DriverId driverID_ = VULKAN_HPP_NAMESPACE::DriverId::eAmdProprietary, - std::array const & driverName_ = {}, - std::array const & driverInfo_ = {}, - VULKAN_HPP_NAMESPACE::ConformanceVersion conformanceVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : driverID( driverID_ ) - , driverName( driverName_ ) - , driverInfo( driverInfo_ ) - , conformanceVersion( conformanceVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceDriverProperties( PhysicalDeviceDriverProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDriverProperties( VkPhysicalDeviceDriverProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDriverProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDriverProperties & - operator=( PhysicalDeviceDriverProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDriverProperties & operator=( VkPhysicalDeviceDriverProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceDriverProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDriverProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ConformanceVersion const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, driverID, driverName, driverInfo, conformanceVersion ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDriverProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceDriverProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( driverID == rhs.driverID ) && - ( driverName == rhs.driverName ) && ( driverInfo == rhs.driverInfo ) && - ( conformanceVersion == rhs.conformanceVersion ); -# endif - } - - bool operator!=( PhysicalDeviceDriverProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDriverProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DriverId driverID = VULKAN_HPP_NAMESPACE::DriverId::eAmdProprietary; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D driverName = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D driverInfo = {}; - VULKAN_HPP_NAMESPACE::ConformanceVersion conformanceVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDriverProperties ) == - sizeof( VkPhysicalDeviceDriverProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDriverProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDriverProperties; - }; - using PhysicalDeviceDriverPropertiesKHR = PhysicalDeviceDriverProperties; - - struct PhysicalDeviceDrmPropertiesEXT - { - using NativeType = VkPhysicalDeviceDrmPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceDrmPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceDrmPropertiesEXT( VULKAN_HPP_NAMESPACE::Bool32 hasPrimary_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 hasRender_ = {}, - int64_t primaryMajor_ = {}, - int64_t primaryMinor_ = {}, - int64_t renderMajor_ = {}, - int64_t renderMinor_ = {} ) VULKAN_HPP_NOEXCEPT - : hasPrimary( hasPrimary_ ) - , hasRender( hasRender_ ) - , primaryMajor( primaryMajor_ ) - , primaryMinor( primaryMinor_ ) - , renderMajor( renderMajor_ ) - , renderMinor( renderMinor_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceDrmPropertiesEXT( PhysicalDeviceDrmPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDrmPropertiesEXT( VkPhysicalDeviceDrmPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDrmPropertiesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDrmPropertiesEXT & - operator=( PhysicalDeviceDrmPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDrmPropertiesEXT & operator=( VkPhysicalDeviceDrmPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceDrmPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDrmPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, hasPrimary, hasRender, primaryMajor, primaryMinor, renderMajor, renderMinor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDrmPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceDrmPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( hasPrimary == rhs.hasPrimary ) && - ( hasRender == rhs.hasRender ) && ( primaryMajor == rhs.primaryMajor ) && - ( primaryMinor == rhs.primaryMinor ) && ( renderMajor == rhs.renderMajor ) && - ( renderMinor == rhs.renderMinor ); -# endif - } - - bool operator!=( PhysicalDeviceDrmPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDrmPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 hasPrimary = {}; - VULKAN_HPP_NAMESPACE::Bool32 hasRender = {}; - int64_t primaryMajor = {}; - int64_t primaryMinor = {}; - int64_t renderMajor = {}; - int64_t renderMinor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDrmPropertiesEXT ) == - sizeof( VkPhysicalDeviceDrmPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDrmPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDrmPropertiesEXT; - }; - - struct PhysicalDeviceDynamicRenderingFeatures - { - using NativeType = VkPhysicalDeviceDynamicRenderingFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceDynamicRenderingFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceDynamicRenderingFeatures( VULKAN_HPP_NAMESPACE::Bool32 dynamicRendering_ = {} ) VULKAN_HPP_NOEXCEPT - : dynamicRendering( dynamicRendering_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceDynamicRenderingFeatures( PhysicalDeviceDynamicRenderingFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDynamicRenderingFeatures( VkPhysicalDeviceDynamicRenderingFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceDynamicRenderingFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceDynamicRenderingFeatures & - operator=( PhysicalDeviceDynamicRenderingFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceDynamicRenderingFeatures & - operator=( VkPhysicalDeviceDynamicRenderingFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDynamicRenderingFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceDynamicRenderingFeatures & - setDynamicRendering( VULKAN_HPP_NAMESPACE::Bool32 dynamicRendering_ ) VULKAN_HPP_NOEXCEPT - { - dynamicRendering = dynamicRendering_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceDynamicRenderingFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceDynamicRenderingFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, dynamicRendering ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceDynamicRenderingFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceDynamicRenderingFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dynamicRendering == rhs.dynamicRendering ); -# endif - } - - bool operator!=( PhysicalDeviceDynamicRenderingFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceDynamicRenderingFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 dynamicRendering = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceDynamicRenderingFeatures ) == - sizeof( VkPhysicalDeviceDynamicRenderingFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceDynamicRenderingFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceDynamicRenderingFeatures; - }; - using PhysicalDeviceDynamicRenderingFeaturesKHR = PhysicalDeviceDynamicRenderingFeatures; - - struct PhysicalDeviceExclusiveScissorFeaturesNV - { - using NativeType = VkPhysicalDeviceExclusiveScissorFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExclusiveScissorFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExclusiveScissorFeaturesNV( VULKAN_HPP_NAMESPACE::Bool32 exclusiveScissor_ = {} ) - VULKAN_HPP_NOEXCEPT : exclusiveScissor( exclusiveScissor_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExclusiveScissorFeaturesNV( - PhysicalDeviceExclusiveScissorFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExclusiveScissorFeaturesNV( VkPhysicalDeviceExclusiveScissorFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExclusiveScissorFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExclusiveScissorFeaturesNV & - operator=( PhysicalDeviceExclusiveScissorFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExclusiveScissorFeaturesNV & - operator=( VkPhysicalDeviceExclusiveScissorFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExclusiveScissorFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExclusiveScissorFeaturesNV & - setExclusiveScissor( VULKAN_HPP_NAMESPACE::Bool32 exclusiveScissor_ ) VULKAN_HPP_NOEXCEPT - { - exclusiveScissor = exclusiveScissor_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExclusiveScissorFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExclusiveScissorFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, exclusiveScissor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExclusiveScissorFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceExclusiveScissorFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( exclusiveScissor == rhs.exclusiveScissor ); -# endif - } - - bool operator!=( PhysicalDeviceExclusiveScissorFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExclusiveScissorFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 exclusiveScissor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExclusiveScissorFeaturesNV ) == - sizeof( VkPhysicalDeviceExclusiveScissorFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExclusiveScissorFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExclusiveScissorFeaturesNV; - }; - - struct PhysicalDeviceExtendedDynamicState2FeaturesEXT - { - using NativeType = VkPhysicalDeviceExtendedDynamicState2FeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExtendedDynamicState2FeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExtendedDynamicState2FeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2LogicOp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2PatchControlPoints_ = {} ) VULKAN_HPP_NOEXCEPT - : extendedDynamicState2( extendedDynamicState2_ ) - , extendedDynamicState2LogicOp( extendedDynamicState2LogicOp_ ) - , extendedDynamicState2PatchControlPoints( extendedDynamicState2PatchControlPoints_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExtendedDynamicState2FeaturesEXT( - PhysicalDeviceExtendedDynamicState2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExtendedDynamicState2FeaturesEXT( VkPhysicalDeviceExtendedDynamicState2FeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExtendedDynamicState2FeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExtendedDynamicState2FeaturesEXT & - operator=( PhysicalDeviceExtendedDynamicState2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExtendedDynamicState2FeaturesEXT & - operator=( VkPhysicalDeviceExtendedDynamicState2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExtendedDynamicState2FeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExtendedDynamicState2FeaturesEXT & - setExtendedDynamicState2( VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2_ ) VULKAN_HPP_NOEXCEPT - { - extendedDynamicState2 = extendedDynamicState2_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExtendedDynamicState2FeaturesEXT & - setExtendedDynamicState2LogicOp( VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2LogicOp_ ) VULKAN_HPP_NOEXCEPT - { - extendedDynamicState2LogicOp = extendedDynamicState2LogicOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExtendedDynamicState2FeaturesEXT & setExtendedDynamicState2PatchControlPoints( - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2PatchControlPoints_ ) VULKAN_HPP_NOEXCEPT - { - extendedDynamicState2PatchControlPoints = extendedDynamicState2PatchControlPoints_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExtendedDynamicState2FeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExtendedDynamicState2FeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, extendedDynamicState2, extendedDynamicState2LogicOp, extendedDynamicState2PatchControlPoints ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExtendedDynamicState2FeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceExtendedDynamicState2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( extendedDynamicState2 == rhs.extendedDynamicState2 ) && - ( extendedDynamicState2LogicOp == rhs.extendedDynamicState2LogicOp ) && - ( extendedDynamicState2PatchControlPoints == rhs.extendedDynamicState2PatchControlPoints ); -# endif - } - - bool operator!=( PhysicalDeviceExtendedDynamicState2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExtendedDynamicState2FeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2 = {}; - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2LogicOp = {}; - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState2PatchControlPoints = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExtendedDynamicState2FeaturesEXT ) == - sizeof( VkPhysicalDeviceExtendedDynamicState2FeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExtendedDynamicState2FeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExtendedDynamicState2FeaturesEXT; - }; - - struct PhysicalDeviceExtendedDynamicStateFeaturesEXT - { - using NativeType = VkPhysicalDeviceExtendedDynamicStateFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExtendedDynamicStateFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExtendedDynamicStateFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState_ = {} ) VULKAN_HPP_NOEXCEPT - : extendedDynamicState( extendedDynamicState_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExtendedDynamicStateFeaturesEXT( - PhysicalDeviceExtendedDynamicStateFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExtendedDynamicStateFeaturesEXT( VkPhysicalDeviceExtendedDynamicStateFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExtendedDynamicStateFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExtendedDynamicStateFeaturesEXT & - operator=( PhysicalDeviceExtendedDynamicStateFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExtendedDynamicStateFeaturesEXT & - operator=( VkPhysicalDeviceExtendedDynamicStateFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExtendedDynamicStateFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExtendedDynamicStateFeaturesEXT & - setExtendedDynamicState( VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState_ ) VULKAN_HPP_NOEXCEPT - { - extendedDynamicState = extendedDynamicState_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExtendedDynamicStateFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExtendedDynamicStateFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, extendedDynamicState ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExtendedDynamicStateFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceExtendedDynamicStateFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( extendedDynamicState == rhs.extendedDynamicState ); -# endif - } - - bool operator!=( PhysicalDeviceExtendedDynamicStateFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExtendedDynamicStateFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 extendedDynamicState = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExtendedDynamicStateFeaturesEXT ) == - sizeof( VkPhysicalDeviceExtendedDynamicStateFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExtendedDynamicStateFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExtendedDynamicStateFeaturesEXT; - }; - - struct PhysicalDeviceExternalBufferInfo - { - using NativeType = VkPhysicalDeviceExternalBufferInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceExternalBufferInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalBufferInfo( - VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_ = {}, - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , usage( usage_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceExternalBufferInfo( PhysicalDeviceExternalBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalBufferInfo( VkPhysicalDeviceExternalBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExternalBufferInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExternalBufferInfo & - operator=( PhysicalDeviceExternalBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalBufferInfo & operator=( VkPhysicalDeviceExternalBufferInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalBufferInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalBufferInfo & - setFlags( VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalBufferInfo & - setUsage( VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalBufferInfo & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExternalBufferInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExternalBufferInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, usage, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExternalBufferInfo const & ) const = default; -#else - bool operator==( PhysicalDeviceExternalBufferInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( usage == rhs.usage ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( PhysicalDeviceExternalBufferInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExternalBufferInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::BufferCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::BufferUsageFlags usage = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalBufferInfo ) == - sizeof( VkPhysicalDeviceExternalBufferInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExternalBufferInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExternalBufferInfo; - }; - using PhysicalDeviceExternalBufferInfoKHR = PhysicalDeviceExternalBufferInfo; - - struct PhysicalDeviceExternalFenceInfo - { - using NativeType = VkPhysicalDeviceExternalFenceInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceExternalFenceInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalFenceInfo( - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceExternalFenceInfo( PhysicalDeviceExternalFenceInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalFenceInfo( VkPhysicalDeviceExternalFenceInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExternalFenceInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExternalFenceInfo & - operator=( PhysicalDeviceExternalFenceInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalFenceInfo & operator=( VkPhysicalDeviceExternalFenceInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalFenceInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalFenceInfo & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExternalFenceInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExternalFenceInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExternalFenceInfo const & ) const = default; -#else - bool operator==( PhysicalDeviceExternalFenceInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( PhysicalDeviceExternalFenceInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExternalFenceInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalFenceInfo ) == - sizeof( VkPhysicalDeviceExternalFenceInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExternalFenceInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExternalFenceInfo; - }; - using PhysicalDeviceExternalFenceInfoKHR = PhysicalDeviceExternalFenceInfo; - - struct PhysicalDeviceExternalImageFormatInfo - { - using NativeType = VkPhysicalDeviceExternalImageFormatInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExternalImageFormatInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalImageFormatInfo( - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalImageFormatInfo( PhysicalDeviceExternalImageFormatInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalImageFormatInfo( VkPhysicalDeviceExternalImageFormatInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExternalImageFormatInfo( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExternalImageFormatInfo & - operator=( PhysicalDeviceExternalImageFormatInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalImageFormatInfo & - operator=( VkPhysicalDeviceExternalImageFormatInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalImageFormatInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalImageFormatInfo & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExternalImageFormatInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExternalImageFormatInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExternalImageFormatInfo const & ) const = default; -#else - bool operator==( PhysicalDeviceExternalImageFormatInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( PhysicalDeviceExternalImageFormatInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExternalImageFormatInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalImageFormatInfo ) == - sizeof( VkPhysicalDeviceExternalImageFormatInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExternalImageFormatInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExternalImageFormatInfo; - }; - using PhysicalDeviceExternalImageFormatInfoKHR = PhysicalDeviceExternalImageFormatInfo; - - struct PhysicalDeviceExternalMemoryHostPropertiesEXT - { - using NativeType = VkPhysicalDeviceExternalMemoryHostPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExternalMemoryHostPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalMemoryHostPropertiesEXT( - VULKAN_HPP_NAMESPACE::DeviceSize minImportedHostPointerAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : minImportedHostPointerAlignment( minImportedHostPointerAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalMemoryHostPropertiesEXT( - PhysicalDeviceExternalMemoryHostPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalMemoryHostPropertiesEXT( VkPhysicalDeviceExternalMemoryHostPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExternalMemoryHostPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExternalMemoryHostPropertiesEXT & - operator=( PhysicalDeviceExternalMemoryHostPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalMemoryHostPropertiesEXT & - operator=( VkPhysicalDeviceExternalMemoryHostPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceExternalMemoryHostPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExternalMemoryHostPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, minImportedHostPointerAlignment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExternalMemoryHostPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceExternalMemoryHostPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( minImportedHostPointerAlignment == rhs.minImportedHostPointerAlignment ); -# endif - } - - bool operator!=( PhysicalDeviceExternalMemoryHostPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExternalMemoryHostPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize minImportedHostPointerAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalMemoryHostPropertiesEXT ) == - sizeof( VkPhysicalDeviceExternalMemoryHostPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExternalMemoryHostPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExternalMemoryHostPropertiesEXT; - }; - - struct PhysicalDeviceExternalMemoryRDMAFeaturesNV - { - using NativeType = VkPhysicalDeviceExternalMemoryRDMAFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExternalMemoryRdmaFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalMemoryRDMAFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 externalMemoryRDMA_ = {} ) VULKAN_HPP_NOEXCEPT - : externalMemoryRDMA( externalMemoryRDMA_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalMemoryRDMAFeaturesNV( - PhysicalDeviceExternalMemoryRDMAFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalMemoryRDMAFeaturesNV( VkPhysicalDeviceExternalMemoryRDMAFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExternalMemoryRDMAFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExternalMemoryRDMAFeaturesNV & - operator=( PhysicalDeviceExternalMemoryRDMAFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalMemoryRDMAFeaturesNV & - operator=( VkPhysicalDeviceExternalMemoryRDMAFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalMemoryRDMAFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalMemoryRDMAFeaturesNV & - setExternalMemoryRDMA( VULKAN_HPP_NAMESPACE::Bool32 externalMemoryRDMA_ ) VULKAN_HPP_NOEXCEPT - { - externalMemoryRDMA = externalMemoryRDMA_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExternalMemoryRDMAFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExternalMemoryRDMAFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, externalMemoryRDMA ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExternalMemoryRDMAFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceExternalMemoryRDMAFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( externalMemoryRDMA == rhs.externalMemoryRDMA ); -# endif - } - - bool operator!=( PhysicalDeviceExternalMemoryRDMAFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExternalMemoryRdmaFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 externalMemoryRDMA = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalMemoryRDMAFeaturesNV ) == - sizeof( VkPhysicalDeviceExternalMemoryRDMAFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExternalMemoryRDMAFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExternalMemoryRDMAFeaturesNV; - }; - - struct PhysicalDeviceExternalSemaphoreInfo - { - using NativeType = VkPhysicalDeviceExternalSemaphoreInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceExternalSemaphoreInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalSemaphoreInfo( - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceExternalSemaphoreInfo( PhysicalDeviceExternalSemaphoreInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalSemaphoreInfo( VkPhysicalDeviceExternalSemaphoreInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceExternalSemaphoreInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceExternalSemaphoreInfo & - operator=( PhysicalDeviceExternalSemaphoreInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceExternalSemaphoreInfo & - operator=( VkPhysicalDeviceExternalSemaphoreInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalSemaphoreInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceExternalSemaphoreInfo & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceExternalSemaphoreInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceExternalSemaphoreInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceExternalSemaphoreInfo const & ) const = default; -#else - bool operator==( PhysicalDeviceExternalSemaphoreInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( PhysicalDeviceExternalSemaphoreInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceExternalSemaphoreInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceExternalSemaphoreInfo ) == - sizeof( VkPhysicalDeviceExternalSemaphoreInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceExternalSemaphoreInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceExternalSemaphoreInfo; - }; - using PhysicalDeviceExternalSemaphoreInfoKHR = PhysicalDeviceExternalSemaphoreInfo; - - struct PhysicalDeviceFeatures2 - { - using NativeType = VkPhysicalDeviceFeatures2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceFeatures2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceFeatures2( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures features_ = {} ) VULKAN_HPP_NOEXCEPT - : features( features_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFeatures2( PhysicalDeviceFeatures2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFeatures2( VkPhysicalDeviceFeatures2 const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFeatures2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFeatures2 & operator=( PhysicalDeviceFeatures2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFeatures2 & operator=( VkPhysicalDeviceFeatures2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures2 & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFeatures2 & - setFeatures( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures const & features_ ) VULKAN_HPP_NOEXCEPT - { - features = features_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFeatures2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFeatures2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, features ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFeatures2 const & ) const = default; -#else - bool operator==( PhysicalDeviceFeatures2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( features == rhs.features ); -# endif - } - - bool operator!=( PhysicalDeviceFeatures2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFeatures2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures features = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFeatures2 ) == - sizeof( VkPhysicalDeviceFeatures2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDeviceFeatures2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFeatures2; - }; - using PhysicalDeviceFeatures2KHR = PhysicalDeviceFeatures2; - - struct PhysicalDeviceFloatControlsProperties - { - using NativeType = VkPhysicalDeviceFloatControlsProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFloatControlsProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFloatControlsProperties( - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence denormBehaviorIndependence_ = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly, - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence roundingModeIndependence_ = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly, - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat64_ = {} ) VULKAN_HPP_NOEXCEPT - : denormBehaviorIndependence( denormBehaviorIndependence_ ) - , roundingModeIndependence( roundingModeIndependence_ ) - , shaderSignedZeroInfNanPreserveFloat16( shaderSignedZeroInfNanPreserveFloat16_ ) - , shaderSignedZeroInfNanPreserveFloat32( shaderSignedZeroInfNanPreserveFloat32_ ) - , shaderSignedZeroInfNanPreserveFloat64( shaderSignedZeroInfNanPreserveFloat64_ ) - , shaderDenormPreserveFloat16( shaderDenormPreserveFloat16_ ) - , shaderDenormPreserveFloat32( shaderDenormPreserveFloat32_ ) - , shaderDenormPreserveFloat64( shaderDenormPreserveFloat64_ ) - , shaderDenormFlushToZeroFloat16( shaderDenormFlushToZeroFloat16_ ) - , shaderDenormFlushToZeroFloat32( shaderDenormFlushToZeroFloat32_ ) - , shaderDenormFlushToZeroFloat64( shaderDenormFlushToZeroFloat64_ ) - , shaderRoundingModeRTEFloat16( shaderRoundingModeRTEFloat16_ ) - , shaderRoundingModeRTEFloat32( shaderRoundingModeRTEFloat32_ ) - , shaderRoundingModeRTEFloat64( shaderRoundingModeRTEFloat64_ ) - , shaderRoundingModeRTZFloat16( shaderRoundingModeRTZFloat16_ ) - , shaderRoundingModeRTZFloat32( shaderRoundingModeRTZFloat32_ ) - , shaderRoundingModeRTZFloat64( shaderRoundingModeRTZFloat64_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFloatControlsProperties( PhysicalDeviceFloatControlsProperties const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFloatControlsProperties( VkPhysicalDeviceFloatControlsProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFloatControlsProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFloatControlsProperties & - operator=( PhysicalDeviceFloatControlsProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFloatControlsProperties & - operator=( VkPhysicalDeviceFloatControlsProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceFloatControlsProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFloatControlsProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - denormBehaviorIndependence, - roundingModeIndependence, - shaderSignedZeroInfNanPreserveFloat16, - shaderSignedZeroInfNanPreserveFloat32, - shaderSignedZeroInfNanPreserveFloat64, - shaderDenormPreserveFloat16, - shaderDenormPreserveFloat32, - shaderDenormPreserveFloat64, - shaderDenormFlushToZeroFloat16, - shaderDenormFlushToZeroFloat32, - shaderDenormFlushToZeroFloat64, - shaderRoundingModeRTEFloat16, - shaderRoundingModeRTEFloat32, - shaderRoundingModeRTEFloat64, - shaderRoundingModeRTZFloat16, - shaderRoundingModeRTZFloat32, - shaderRoundingModeRTZFloat64 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFloatControlsProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceFloatControlsProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( denormBehaviorIndependence == rhs.denormBehaviorIndependence ) && - ( roundingModeIndependence == rhs.roundingModeIndependence ) && - ( shaderSignedZeroInfNanPreserveFloat16 == rhs.shaderSignedZeroInfNanPreserveFloat16 ) && - ( shaderSignedZeroInfNanPreserveFloat32 == rhs.shaderSignedZeroInfNanPreserveFloat32 ) && - ( shaderSignedZeroInfNanPreserveFloat64 == rhs.shaderSignedZeroInfNanPreserveFloat64 ) && - ( shaderDenormPreserveFloat16 == rhs.shaderDenormPreserveFloat16 ) && - ( shaderDenormPreserveFloat32 == rhs.shaderDenormPreserveFloat32 ) && - ( shaderDenormPreserveFloat64 == rhs.shaderDenormPreserveFloat64 ) && - ( shaderDenormFlushToZeroFloat16 == rhs.shaderDenormFlushToZeroFloat16 ) && - ( shaderDenormFlushToZeroFloat32 == rhs.shaderDenormFlushToZeroFloat32 ) && - ( shaderDenormFlushToZeroFloat64 == rhs.shaderDenormFlushToZeroFloat64 ) && - ( shaderRoundingModeRTEFloat16 == rhs.shaderRoundingModeRTEFloat16 ) && - ( shaderRoundingModeRTEFloat32 == rhs.shaderRoundingModeRTEFloat32 ) && - ( shaderRoundingModeRTEFloat64 == rhs.shaderRoundingModeRTEFloat64 ) && - ( shaderRoundingModeRTZFloat16 == rhs.shaderRoundingModeRTZFloat16 ) && - ( shaderRoundingModeRTZFloat32 == rhs.shaderRoundingModeRTZFloat32 ) && - ( shaderRoundingModeRTZFloat64 == rhs.shaderRoundingModeRTZFloat64 ); -# endif - } - - bool operator!=( PhysicalDeviceFloatControlsProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFloatControlsProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence denormBehaviorIndependence = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly; - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence roundingModeIndependence = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly; - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat64 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFloatControlsProperties ) == - sizeof( VkPhysicalDeviceFloatControlsProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFloatControlsProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFloatControlsProperties; - }; - using PhysicalDeviceFloatControlsPropertiesKHR = PhysicalDeviceFloatControlsProperties; - - struct PhysicalDeviceFragmentDensityMap2FeaturesEXT - { - using NativeType = VkPhysicalDeviceFragmentDensityMap2FeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentDensityMap2FeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMap2FeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapDeferred_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentDensityMapDeferred( fragmentDensityMapDeferred_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMap2FeaturesEXT( - PhysicalDeviceFragmentDensityMap2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMap2FeaturesEXT( VkPhysicalDeviceFragmentDensityMap2FeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentDensityMap2FeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentDensityMap2FeaturesEXT & - operator=( PhysicalDeviceFragmentDensityMap2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMap2FeaturesEXT & - operator=( VkPhysicalDeviceFragmentDensityMap2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMap2FeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMap2FeaturesEXT & - setFragmentDensityMapDeferred( VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapDeferred_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityMapDeferred = fragmentDensityMapDeferred_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentDensityMap2FeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentDensityMap2FeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentDensityMapDeferred ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentDensityMap2FeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentDensityMap2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentDensityMapDeferred == rhs.fragmentDensityMapDeferred ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentDensityMap2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentDensityMap2FeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapDeferred = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMap2FeaturesEXT ) == - sizeof( VkPhysicalDeviceFragmentDensityMap2FeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentDensityMap2FeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentDensityMap2FeaturesEXT; - }; - - struct PhysicalDeviceFragmentDensityMap2PropertiesEXT - { - using NativeType = VkPhysicalDeviceFragmentDensityMap2PropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentDensityMap2PropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMap2PropertiesEXT( - VULKAN_HPP_NAMESPACE::Bool32 subsampledLoads_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 subsampledCoarseReconstructionEarlyAccess_ = {}, - uint32_t maxSubsampledArrayLayers_ = {}, - uint32_t maxDescriptorSetSubsampledSamplers_ = {} ) VULKAN_HPP_NOEXCEPT - : subsampledLoads( subsampledLoads_ ) - , subsampledCoarseReconstructionEarlyAccess( subsampledCoarseReconstructionEarlyAccess_ ) - , maxSubsampledArrayLayers( maxSubsampledArrayLayers_ ) - , maxDescriptorSetSubsampledSamplers( maxDescriptorSetSubsampledSamplers_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMap2PropertiesEXT( - PhysicalDeviceFragmentDensityMap2PropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMap2PropertiesEXT( VkPhysicalDeviceFragmentDensityMap2PropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentDensityMap2PropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentDensityMap2PropertiesEXT & - operator=( PhysicalDeviceFragmentDensityMap2PropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMap2PropertiesEXT & - operator=( VkPhysicalDeviceFragmentDensityMap2PropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceFragmentDensityMap2PropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentDensityMap2PropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - subsampledLoads, - subsampledCoarseReconstructionEarlyAccess, - maxSubsampledArrayLayers, - maxDescriptorSetSubsampledSamplers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentDensityMap2PropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentDensityMap2PropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( subsampledLoads == rhs.subsampledLoads ) && - ( subsampledCoarseReconstructionEarlyAccess == rhs.subsampledCoarseReconstructionEarlyAccess ) && - ( maxSubsampledArrayLayers == rhs.maxSubsampledArrayLayers ) && - ( maxDescriptorSetSubsampledSamplers == rhs.maxDescriptorSetSubsampledSamplers ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentDensityMap2PropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentDensityMap2PropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 subsampledLoads = {}; - VULKAN_HPP_NAMESPACE::Bool32 subsampledCoarseReconstructionEarlyAccess = {}; - uint32_t maxSubsampledArrayLayers = {}; - uint32_t maxDescriptorSetSubsampledSamplers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMap2PropertiesEXT ) == - sizeof( VkPhysicalDeviceFragmentDensityMap2PropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentDensityMap2PropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentDensityMap2PropertiesEXT; - }; - - struct PhysicalDeviceFragmentDensityMapFeaturesEXT - { - using NativeType = VkPhysicalDeviceFragmentDensityMapFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentDensityMapFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMap_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapDynamic_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapNonSubsampledImages_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentDensityMap( fragmentDensityMap_ ) - , fragmentDensityMapDynamic( fragmentDensityMapDynamic_ ) - , fragmentDensityMapNonSubsampledImages( fragmentDensityMapNonSubsampledImages_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapFeaturesEXT( - PhysicalDeviceFragmentDensityMapFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapFeaturesEXT( VkPhysicalDeviceFragmentDensityMapFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentDensityMapFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentDensityMapFeaturesEXT & - operator=( PhysicalDeviceFragmentDensityMapFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapFeaturesEXT & - operator=( VkPhysicalDeviceFragmentDensityMapFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMapFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMapFeaturesEXT & - setFragmentDensityMap( VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMap_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityMap = fragmentDensityMap_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMapFeaturesEXT & - setFragmentDensityMapDynamic( VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapDynamic_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityMapDynamic = fragmentDensityMapDynamic_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMapFeaturesEXT & setFragmentDensityMapNonSubsampledImages( - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapNonSubsampledImages_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityMapNonSubsampledImages = fragmentDensityMapNonSubsampledImages_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentDensityMapFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentDensityMapFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, fragmentDensityMap, fragmentDensityMapDynamic, fragmentDensityMapNonSubsampledImages ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentDensityMapFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentDensityMapFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fragmentDensityMap == rhs.fragmentDensityMap ) && - ( fragmentDensityMapDynamic == rhs.fragmentDensityMapDynamic ) && - ( fragmentDensityMapNonSubsampledImages == rhs.fragmentDensityMapNonSubsampledImages ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentDensityMapFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentDensityMapFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMap = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapDynamic = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapNonSubsampledImages = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapFeaturesEXT ) == - sizeof( VkPhysicalDeviceFragmentDensityMapFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentDensityMapFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentDensityMapFeaturesEXT; - }; - - struct PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM - { - using NativeType = VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM( - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentDensityMapOffset( fragmentDensityMapOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM( - PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM( - VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM & - operator=( PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM & - operator=( VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM & - setFragmentDensityMapOffset( VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapOffset_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityMapOffset = fragmentDensityMapOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentDensityMapOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentDensityMapOffset == rhs.fragmentDensityMapOffset ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityMapOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM ) == - sizeof( VkPhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentDensityMapOffsetFeaturesQCOM; - }; - - struct PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM - { - using NativeType = VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM( - VULKAN_HPP_NAMESPACE::Extent2D fragmentDensityOffsetGranularity_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentDensityOffsetGranularity( fragmentDensityOffsetGranularity_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM( - PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM( - VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM & - operator=( PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM & - operator=( VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentDensityOffsetGranularity ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentDensityOffsetGranularity == rhs.fragmentDensityOffsetGranularity ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Extent2D fragmentDensityOffsetGranularity = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM ) == - sizeof( VkPhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM>::value, - "PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentDensityMapOffsetPropertiesQCOM; - }; - - struct PhysicalDeviceFragmentDensityMapPropertiesEXT - { - using NativeType = VkPhysicalDeviceFragmentDensityMapPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentDensityMapPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapPropertiesEXT( - VULKAN_HPP_NAMESPACE::Extent2D minFragmentDensityTexelSize_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxFragmentDensityTexelSize_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityInvocations_ = {} ) VULKAN_HPP_NOEXCEPT - : minFragmentDensityTexelSize( minFragmentDensityTexelSize_ ) - , maxFragmentDensityTexelSize( maxFragmentDensityTexelSize_ ) - , fragmentDensityInvocations( fragmentDensityInvocations_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentDensityMapPropertiesEXT( - PhysicalDeviceFragmentDensityMapPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapPropertiesEXT( VkPhysicalDeviceFragmentDensityMapPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentDensityMapPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentDensityMapPropertiesEXT & - operator=( PhysicalDeviceFragmentDensityMapPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentDensityMapPropertiesEXT & - operator=( VkPhysicalDeviceFragmentDensityMapPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceFragmentDensityMapPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentDensityMapPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, minFragmentDensityTexelSize, maxFragmentDensityTexelSize, fragmentDensityInvocations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentDensityMapPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentDensityMapPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( minFragmentDensityTexelSize == rhs.minFragmentDensityTexelSize ) && - ( maxFragmentDensityTexelSize == rhs.maxFragmentDensityTexelSize ) && - ( fragmentDensityInvocations == rhs.fragmentDensityInvocations ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentDensityMapPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentDensityMapPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Extent2D minFragmentDensityTexelSize = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxFragmentDensityTexelSize = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentDensityInvocations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentDensityMapPropertiesEXT ) == - sizeof( VkPhysicalDeviceFragmentDensityMapPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentDensityMapPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentDensityMapPropertiesEXT; - }; - - struct PhysicalDeviceFragmentShaderBarycentricFeaturesNV - { - using NativeType = VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShaderBarycentricFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShaderBarycentricFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderBarycentric_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentShaderBarycentric( fragmentShaderBarycentric_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShaderBarycentricFeaturesNV( - PhysicalDeviceFragmentShaderBarycentricFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShaderBarycentricFeaturesNV( VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShaderBarycentricFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShaderBarycentricFeaturesNV & - operator=( PhysicalDeviceFragmentShaderBarycentricFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShaderBarycentricFeaturesNV & - operator=( VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShaderBarycentricFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShaderBarycentricFeaturesNV & - setFragmentShaderBarycentric( VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderBarycentric_ ) VULKAN_HPP_NOEXCEPT - { - fragmentShaderBarycentric = fragmentShaderBarycentric_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentShaderBarycentric ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShaderBarycentricFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShaderBarycentricFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentShaderBarycentric == rhs.fragmentShaderBarycentric ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShaderBarycentricFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShaderBarycentricFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderBarycentric = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShaderBarycentricFeaturesNV ) == - sizeof( VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShaderBarycentricFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShaderBarycentricFeaturesNV; - }; - - struct PhysicalDeviceFragmentShaderInterlockFeaturesEXT - { - using NativeType = VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShaderInterlockFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShaderInterlockFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderSampleInterlock_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderPixelInterlock_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderShadingRateInterlock_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentShaderSampleInterlock( fragmentShaderSampleInterlock_ ) - , fragmentShaderPixelInterlock( fragmentShaderPixelInterlock_ ) - , fragmentShaderShadingRateInterlock( fragmentShaderShadingRateInterlock_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShaderInterlockFeaturesEXT( - PhysicalDeviceFragmentShaderInterlockFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShaderInterlockFeaturesEXT( VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShaderInterlockFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShaderInterlockFeaturesEXT & - operator=( PhysicalDeviceFragmentShaderInterlockFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShaderInterlockFeaturesEXT & - operator=( VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShaderInterlockFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShaderInterlockFeaturesEXT & setFragmentShaderSampleInterlock( - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderSampleInterlock_ ) VULKAN_HPP_NOEXCEPT - { - fragmentShaderSampleInterlock = fragmentShaderSampleInterlock_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShaderInterlockFeaturesEXT & - setFragmentShaderPixelInterlock( VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderPixelInterlock_ ) VULKAN_HPP_NOEXCEPT - { - fragmentShaderPixelInterlock = fragmentShaderPixelInterlock_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShaderInterlockFeaturesEXT & setFragmentShaderShadingRateInterlock( - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderShadingRateInterlock_ ) VULKAN_HPP_NOEXCEPT - { - fragmentShaderShadingRateInterlock = fragmentShaderShadingRateInterlock_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, fragmentShaderSampleInterlock, fragmentShaderPixelInterlock, fragmentShaderShadingRateInterlock ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShaderInterlockFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShaderInterlockFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentShaderSampleInterlock == rhs.fragmentShaderSampleInterlock ) && - ( fragmentShaderPixelInterlock == rhs.fragmentShaderPixelInterlock ) && - ( fragmentShaderShadingRateInterlock == rhs.fragmentShaderShadingRateInterlock ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShaderInterlockFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShaderInterlockFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderSampleInterlock = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderPixelInterlock = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShaderShadingRateInterlock = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShaderInterlockFeaturesEXT ) == - sizeof( VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShaderInterlockFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShaderInterlockFeaturesEXT; - }; - - struct PhysicalDeviceFragmentShadingRateEnumsFeaturesNV - { - using NativeType = VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShadingRateEnumsFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateEnumsFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateEnums_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 supersampleFragmentShadingRates_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 noInvocationFragmentShadingRates_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentShadingRateEnums( fragmentShadingRateEnums_ ) - , supersampleFragmentShadingRates( supersampleFragmentShadingRates_ ) - , noInvocationFragmentShadingRates( noInvocationFragmentShadingRates_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateEnumsFeaturesNV( - PhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateEnumsFeaturesNV( VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShadingRateEnumsFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShadingRateEnumsFeaturesNV & - operator=( PhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateEnumsFeaturesNV & - operator=( VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateEnumsFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateEnumsFeaturesNV & - setFragmentShadingRateEnums( VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateEnums_ ) VULKAN_HPP_NOEXCEPT - { - fragmentShadingRateEnums = fragmentShadingRateEnums_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateEnumsFeaturesNV & setSupersampleFragmentShadingRates( - VULKAN_HPP_NAMESPACE::Bool32 supersampleFragmentShadingRates_ ) VULKAN_HPP_NOEXCEPT - { - supersampleFragmentShadingRates = supersampleFragmentShadingRates_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateEnumsFeaturesNV & setNoInvocationFragmentShadingRates( - VULKAN_HPP_NAMESPACE::Bool32 noInvocationFragmentShadingRates_ ) VULKAN_HPP_NOEXCEPT - { - noInvocationFragmentShadingRates = noInvocationFragmentShadingRates_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, fragmentShadingRateEnums, supersampleFragmentShadingRates, noInvocationFragmentShadingRates ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentShadingRateEnums == rhs.fragmentShadingRateEnums ) && - ( supersampleFragmentShadingRates == rhs.supersampleFragmentShadingRates ) && - ( noInvocationFragmentShadingRates == rhs.noInvocationFragmentShadingRates ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShadingRateEnumsFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShadingRateEnumsFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateEnums = {}; - VULKAN_HPP_NAMESPACE::Bool32 supersampleFragmentShadingRates = {}; - VULKAN_HPP_NAMESPACE::Bool32 noInvocationFragmentShadingRates = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateEnumsFeaturesNV ) == - sizeof( VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShadingRateEnumsFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShadingRateEnumsFeaturesNV; - }; - - struct PhysicalDeviceFragmentShadingRateEnumsPropertiesNV - { - using NativeType = VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShadingRateEnumsPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateEnumsPropertiesNV( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits maxFragmentShadingRateInvocationCount_ = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1 ) VULKAN_HPP_NOEXCEPT - : maxFragmentShadingRateInvocationCount( maxFragmentShadingRateInvocationCount_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateEnumsPropertiesNV( - PhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateEnumsPropertiesNV( - VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShadingRateEnumsPropertiesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShadingRateEnumsPropertiesNV & - operator=( PhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateEnumsPropertiesNV & - operator=( VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateEnumsPropertiesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateEnumsPropertiesNV & - setMaxFragmentShadingRateInvocationCount( - VULKAN_HPP_NAMESPACE::SampleCountFlagBits maxFragmentShadingRateInvocationCount_ ) VULKAN_HPP_NOEXCEPT - { - maxFragmentShadingRateInvocationCount = maxFragmentShadingRateInvocationCount_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxFragmentShadingRateInvocationCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxFragmentShadingRateInvocationCount == rhs.maxFragmentShadingRateInvocationCount ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShadingRateEnumsPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShadingRateEnumsPropertiesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits maxFragmentShadingRateInvocationCount = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateEnumsPropertiesNV ) == - sizeof( VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShadingRateEnumsPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShadingRateEnumsPropertiesNV; - }; - - struct PhysicalDeviceFragmentShadingRateFeaturesKHR - { - using NativeType = VkPhysicalDeviceFragmentShadingRateFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShadingRateFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 pipelineFragmentShadingRate_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 primitiveFragmentShadingRate_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 attachmentFragmentShadingRate_ = {} ) VULKAN_HPP_NOEXCEPT - : pipelineFragmentShadingRate( pipelineFragmentShadingRate_ ) - , primitiveFragmentShadingRate( primitiveFragmentShadingRate_ ) - , attachmentFragmentShadingRate( attachmentFragmentShadingRate_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateFeaturesKHR( - PhysicalDeviceFragmentShadingRateFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateFeaturesKHR( VkPhysicalDeviceFragmentShadingRateFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShadingRateFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShadingRateFeaturesKHR & - operator=( PhysicalDeviceFragmentShadingRateFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateFeaturesKHR & - operator=( VkPhysicalDeviceFragmentShadingRateFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateFeaturesKHR & - setPipelineFragmentShadingRate( VULKAN_HPP_NAMESPACE::Bool32 pipelineFragmentShadingRate_ ) VULKAN_HPP_NOEXCEPT - { - pipelineFragmentShadingRate = pipelineFragmentShadingRate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateFeaturesKHR & - setPrimitiveFragmentShadingRate( VULKAN_HPP_NAMESPACE::Bool32 primitiveFragmentShadingRate_ ) VULKAN_HPP_NOEXCEPT - { - primitiveFragmentShadingRate = primitiveFragmentShadingRate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceFragmentShadingRateFeaturesKHR & setAttachmentFragmentShadingRate( - VULKAN_HPP_NAMESPACE::Bool32 attachmentFragmentShadingRate_ ) VULKAN_HPP_NOEXCEPT - { - attachmentFragmentShadingRate = attachmentFragmentShadingRate_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceFragmentShadingRateFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShadingRateFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, pipelineFragmentShadingRate, primitiveFragmentShadingRate, attachmentFragmentShadingRate ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShadingRateFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShadingRateFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( pipelineFragmentShadingRate == rhs.pipelineFragmentShadingRate ) && - ( primitiveFragmentShadingRate == rhs.primitiveFragmentShadingRate ) && - ( attachmentFragmentShadingRate == rhs.attachmentFragmentShadingRate ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShadingRateFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShadingRateFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 pipelineFragmentShadingRate = {}; - VULKAN_HPP_NAMESPACE::Bool32 primitiveFragmentShadingRate = {}; - VULKAN_HPP_NAMESPACE::Bool32 attachmentFragmentShadingRate = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateFeaturesKHR ) == - sizeof( VkPhysicalDeviceFragmentShadingRateFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShadingRateFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShadingRateFeaturesKHR; - }; - - struct PhysicalDeviceFragmentShadingRateKHR - { - using NativeType = VkPhysicalDeviceFragmentShadingRateKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShadingRateKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceFragmentShadingRateKHR( VULKAN_HPP_NAMESPACE::SampleCountFlags sampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D fragmentSize_ = {} ) VULKAN_HPP_NOEXCEPT - : sampleCounts( sampleCounts_ ) - , fragmentSize( fragmentSize_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRateKHR( PhysicalDeviceFragmentShadingRateKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateKHR( VkPhysicalDeviceFragmentShadingRateKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShadingRateKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShadingRateKHR & - operator=( PhysicalDeviceFragmentShadingRateKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRateKHR & - operator=( VkPhysicalDeviceFragmentShadingRateKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceFragmentShadingRateKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShadingRateKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, sampleCounts, fragmentSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShadingRateKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShadingRateKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( sampleCounts == rhs.sampleCounts ) && - ( fragmentSize == rhs.fragmentSize ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShadingRateKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShadingRateKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampleCounts = {}; - VULKAN_HPP_NAMESPACE::Extent2D fragmentSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRateKHR ) == - sizeof( VkPhysicalDeviceFragmentShadingRateKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShadingRateKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShadingRateKHR; - }; - - struct PhysicalDeviceFragmentShadingRatePropertiesKHR - { - using NativeType = VkPhysicalDeviceFragmentShadingRatePropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceFragmentShadingRatePropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRatePropertiesKHR( - VULKAN_HPP_NAMESPACE::Extent2D minFragmentShadingRateAttachmentTexelSize_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxFragmentShadingRateAttachmentTexelSize_ = {}, - uint32_t maxFragmentShadingRateAttachmentTexelSizeAspectRatio_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 primitiveFragmentShadingRateWithMultipleViewports_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 layeredShadingRateAttachments_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateNonTrivialCombinerOps_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxFragmentSize_ = {}, - uint32_t maxFragmentSizeAspectRatio_ = {}, - uint32_t maxFragmentShadingRateCoverageSamples_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits maxFragmentShadingRateRasterizationSamples_ = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithShaderDepthStencilWrites_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithSampleMask_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithShaderSampleMask_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithConservativeRasterization_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithFragmentShaderInterlock_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithCustomSampleLocations_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateStrictMultiplyCombiner_ = {} ) VULKAN_HPP_NOEXCEPT - : minFragmentShadingRateAttachmentTexelSize( minFragmentShadingRateAttachmentTexelSize_ ) - , maxFragmentShadingRateAttachmentTexelSize( maxFragmentShadingRateAttachmentTexelSize_ ) - , maxFragmentShadingRateAttachmentTexelSizeAspectRatio( maxFragmentShadingRateAttachmentTexelSizeAspectRatio_ ) - , primitiveFragmentShadingRateWithMultipleViewports( primitiveFragmentShadingRateWithMultipleViewports_ ) - , layeredShadingRateAttachments( layeredShadingRateAttachments_ ) - , fragmentShadingRateNonTrivialCombinerOps( fragmentShadingRateNonTrivialCombinerOps_ ) - , maxFragmentSize( maxFragmentSize_ ) - , maxFragmentSizeAspectRatio( maxFragmentSizeAspectRatio_ ) - , maxFragmentShadingRateCoverageSamples( maxFragmentShadingRateCoverageSamples_ ) - , maxFragmentShadingRateRasterizationSamples( maxFragmentShadingRateRasterizationSamples_ ) - , fragmentShadingRateWithShaderDepthStencilWrites( fragmentShadingRateWithShaderDepthStencilWrites_ ) - , fragmentShadingRateWithSampleMask( fragmentShadingRateWithSampleMask_ ) - , fragmentShadingRateWithShaderSampleMask( fragmentShadingRateWithShaderSampleMask_ ) - , fragmentShadingRateWithConservativeRasterization( fragmentShadingRateWithConservativeRasterization_ ) - , fragmentShadingRateWithFragmentShaderInterlock( fragmentShadingRateWithFragmentShaderInterlock_ ) - , fragmentShadingRateWithCustomSampleLocations( fragmentShadingRateWithCustomSampleLocations_ ) - , fragmentShadingRateStrictMultiplyCombiner( fragmentShadingRateStrictMultiplyCombiner_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceFragmentShadingRatePropertiesKHR( - PhysicalDeviceFragmentShadingRatePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRatePropertiesKHR( VkPhysicalDeviceFragmentShadingRatePropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceFragmentShadingRatePropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceFragmentShadingRatePropertiesKHR & - operator=( PhysicalDeviceFragmentShadingRatePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceFragmentShadingRatePropertiesKHR & - operator=( VkPhysicalDeviceFragmentShadingRatePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceFragmentShadingRatePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceFragmentShadingRatePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - minFragmentShadingRateAttachmentTexelSize, - maxFragmentShadingRateAttachmentTexelSize, - maxFragmentShadingRateAttachmentTexelSizeAspectRatio, - primitiveFragmentShadingRateWithMultipleViewports, - layeredShadingRateAttachments, - fragmentShadingRateNonTrivialCombinerOps, - maxFragmentSize, - maxFragmentSizeAspectRatio, - maxFragmentShadingRateCoverageSamples, - maxFragmentShadingRateRasterizationSamples, - fragmentShadingRateWithShaderDepthStencilWrites, - fragmentShadingRateWithSampleMask, - fragmentShadingRateWithShaderSampleMask, - fragmentShadingRateWithConservativeRasterization, - fragmentShadingRateWithFragmentShaderInterlock, - fragmentShadingRateWithCustomSampleLocations, - fragmentShadingRateStrictMultiplyCombiner ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceFragmentShadingRatePropertiesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceFragmentShadingRatePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( minFragmentShadingRateAttachmentTexelSize == rhs.minFragmentShadingRateAttachmentTexelSize ) && - ( maxFragmentShadingRateAttachmentTexelSize == rhs.maxFragmentShadingRateAttachmentTexelSize ) && - ( maxFragmentShadingRateAttachmentTexelSizeAspectRatio == - rhs.maxFragmentShadingRateAttachmentTexelSizeAspectRatio ) && - ( primitiveFragmentShadingRateWithMultipleViewports == - rhs.primitiveFragmentShadingRateWithMultipleViewports ) && - ( layeredShadingRateAttachments == rhs.layeredShadingRateAttachments ) && - ( fragmentShadingRateNonTrivialCombinerOps == rhs.fragmentShadingRateNonTrivialCombinerOps ) && - ( maxFragmentSize == rhs.maxFragmentSize ) && - ( maxFragmentSizeAspectRatio == rhs.maxFragmentSizeAspectRatio ) && - ( maxFragmentShadingRateCoverageSamples == rhs.maxFragmentShadingRateCoverageSamples ) && - ( maxFragmentShadingRateRasterizationSamples == rhs.maxFragmentShadingRateRasterizationSamples ) && - ( fragmentShadingRateWithShaderDepthStencilWrites == - rhs.fragmentShadingRateWithShaderDepthStencilWrites ) && - ( fragmentShadingRateWithSampleMask == rhs.fragmentShadingRateWithSampleMask ) && - ( fragmentShadingRateWithShaderSampleMask == rhs.fragmentShadingRateWithShaderSampleMask ) && - ( fragmentShadingRateWithConservativeRasterization == - rhs.fragmentShadingRateWithConservativeRasterization ) && - ( fragmentShadingRateWithFragmentShaderInterlock == rhs.fragmentShadingRateWithFragmentShaderInterlock ) && - ( fragmentShadingRateWithCustomSampleLocations == rhs.fragmentShadingRateWithCustomSampleLocations ) && - ( fragmentShadingRateStrictMultiplyCombiner == rhs.fragmentShadingRateStrictMultiplyCombiner ); -# endif - } - - bool operator!=( PhysicalDeviceFragmentShadingRatePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceFragmentShadingRatePropertiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Extent2D minFragmentShadingRateAttachmentTexelSize = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxFragmentShadingRateAttachmentTexelSize = {}; - uint32_t maxFragmentShadingRateAttachmentTexelSizeAspectRatio = {}; - VULKAN_HPP_NAMESPACE::Bool32 primitiveFragmentShadingRateWithMultipleViewports = {}; - VULKAN_HPP_NAMESPACE::Bool32 layeredShadingRateAttachments = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateNonTrivialCombinerOps = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxFragmentSize = {}; - uint32_t maxFragmentSizeAspectRatio = {}; - uint32_t maxFragmentShadingRateCoverageSamples = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits maxFragmentShadingRateRasterizationSamples = - VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithShaderDepthStencilWrites = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithSampleMask = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithShaderSampleMask = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithConservativeRasterization = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithFragmentShaderInterlock = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateWithCustomSampleLocations = {}; - VULKAN_HPP_NAMESPACE::Bool32 fragmentShadingRateStrictMultiplyCombiner = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceFragmentShadingRatePropertiesKHR ) == - sizeof( VkPhysicalDeviceFragmentShadingRatePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceFragmentShadingRatePropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceFragmentShadingRatePropertiesKHR; - }; - - struct PhysicalDeviceGlobalPriorityQueryFeaturesKHR - { - using NativeType = VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceGlobalPriorityQueryFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceGlobalPriorityQueryFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 globalPriorityQuery_ = {} ) VULKAN_HPP_NOEXCEPT - : globalPriorityQuery( globalPriorityQuery_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceGlobalPriorityQueryFeaturesKHR( - PhysicalDeviceGlobalPriorityQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceGlobalPriorityQueryFeaturesKHR( VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceGlobalPriorityQueryFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceGlobalPriorityQueryFeaturesKHR & - operator=( PhysicalDeviceGlobalPriorityQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceGlobalPriorityQueryFeaturesKHR & - operator=( VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceGlobalPriorityQueryFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceGlobalPriorityQueryFeaturesKHR & - setGlobalPriorityQuery( VULKAN_HPP_NAMESPACE::Bool32 globalPriorityQuery_ ) VULKAN_HPP_NOEXCEPT - { - globalPriorityQuery = globalPriorityQuery_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, globalPriorityQuery ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceGlobalPriorityQueryFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceGlobalPriorityQueryFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( globalPriorityQuery == rhs.globalPriorityQuery ); -# endif - } - - bool operator!=( PhysicalDeviceGlobalPriorityQueryFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceGlobalPriorityQueryFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 globalPriorityQuery = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceGlobalPriorityQueryFeaturesKHR ) == - sizeof( VkPhysicalDeviceGlobalPriorityQueryFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceGlobalPriorityQueryFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceGlobalPriorityQueryFeaturesKHR; - }; - using PhysicalDeviceGlobalPriorityQueryFeaturesEXT = PhysicalDeviceGlobalPriorityQueryFeaturesKHR; - - struct PhysicalDeviceGroupProperties - { - using NativeType = VkPhysicalDeviceGroupProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceGroupProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceGroupProperties( - uint32_t physicalDeviceCount_ = {}, - std::array const & physicalDevices_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 subsetAllocation_ = {} ) VULKAN_HPP_NOEXCEPT - : physicalDeviceCount( physicalDeviceCount_ ) - , physicalDevices( physicalDevices_ ) - , subsetAllocation( subsetAllocation_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceGroupProperties( PhysicalDeviceGroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceGroupProperties( VkPhysicalDeviceGroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceGroupProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceGroupProperties & - operator=( PhysicalDeviceGroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceGroupProperties & operator=( VkPhysicalDeviceGroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceGroupProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceGroupProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple< - VULKAN_HPP_NAMESPACE::StructureType const &, - void * const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::Bool32 const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, physicalDeviceCount, physicalDevices, subsetAllocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceGroupProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceGroupProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( physicalDeviceCount == rhs.physicalDeviceCount ) && - ( physicalDevices == rhs.physicalDevices ) && ( subsetAllocation == rhs.subsetAllocation ); -# endif - } - - bool operator!=( PhysicalDeviceGroupProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceGroupProperties; - void * pNext = {}; - uint32_t physicalDeviceCount = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D - physicalDevices = {}; - VULKAN_HPP_NAMESPACE::Bool32 subsetAllocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties ) == - sizeof( VkPhysicalDeviceGroupProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceGroupProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceGroupProperties; - }; - using PhysicalDeviceGroupPropertiesKHR = PhysicalDeviceGroupProperties; - - struct PhysicalDeviceHostQueryResetFeatures - { - using NativeType = VkPhysicalDeviceHostQueryResetFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceHostQueryResetFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceHostQueryResetFeatures( VULKAN_HPP_NAMESPACE::Bool32 hostQueryReset_ = {} ) VULKAN_HPP_NOEXCEPT - : hostQueryReset( hostQueryReset_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceHostQueryResetFeatures( PhysicalDeviceHostQueryResetFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceHostQueryResetFeatures( VkPhysicalDeviceHostQueryResetFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceHostQueryResetFeatures( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceHostQueryResetFeatures & - operator=( PhysicalDeviceHostQueryResetFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceHostQueryResetFeatures & - operator=( VkPhysicalDeviceHostQueryResetFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceHostQueryResetFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceHostQueryResetFeatures & - setHostQueryReset( VULKAN_HPP_NAMESPACE::Bool32 hostQueryReset_ ) VULKAN_HPP_NOEXCEPT - { - hostQueryReset = hostQueryReset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceHostQueryResetFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceHostQueryResetFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, hostQueryReset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceHostQueryResetFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceHostQueryResetFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( hostQueryReset == rhs.hostQueryReset ); -# endif - } - - bool operator!=( PhysicalDeviceHostQueryResetFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceHostQueryResetFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 hostQueryReset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceHostQueryResetFeatures ) == - sizeof( VkPhysicalDeviceHostQueryResetFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceHostQueryResetFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceHostQueryResetFeatures; - }; - using PhysicalDeviceHostQueryResetFeaturesEXT = PhysicalDeviceHostQueryResetFeatures; - - struct PhysicalDeviceIDProperties - { - using NativeType = VkPhysicalDeviceIDProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceIdProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceIDProperties( std::array const & deviceUUID_ = {}, - std::array const & driverUUID_ = {}, - std::array const & deviceLUID_ = {}, - uint32_t deviceNodeMask_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 deviceLUIDValid_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceUUID( deviceUUID_ ) - , driverUUID( driverUUID_ ) - , deviceLUID( deviceLUID_ ) - , deviceNodeMask( deviceNodeMask_ ) - , deviceLUIDValid( deviceLUIDValid_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceIDProperties( PhysicalDeviceIDProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceIDProperties( VkPhysicalDeviceIDProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceIDProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceIDProperties & operator=( PhysicalDeviceIDProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceIDProperties & operator=( VkPhysicalDeviceIDProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceIDProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceIDProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::Bool32 const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, deviceUUID, driverUUID, deviceLUID, deviceNodeMask, deviceLUIDValid ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceIDProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceIDProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceUUID == rhs.deviceUUID ) && - ( driverUUID == rhs.driverUUID ) && ( deviceLUID == rhs.deviceLUID ) && - ( deviceNodeMask == rhs.deviceNodeMask ) && ( deviceLUIDValid == rhs.deviceLUIDValid ); -# endif - } - - bool operator!=( PhysicalDeviceIDProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceIdProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D deviceUUID = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D driverUUID = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D deviceLUID = {}; - uint32_t deviceNodeMask = {}; - VULKAN_HPP_NAMESPACE::Bool32 deviceLUIDValid = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceIDProperties ) == - sizeof( VkPhysicalDeviceIDProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDeviceIDProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceIDProperties; - }; - using PhysicalDeviceIDPropertiesKHR = PhysicalDeviceIDProperties; - - struct PhysicalDeviceImageDrmFormatModifierInfoEXT - { - using NativeType = VkPhysicalDeviceImageDrmFormatModifierInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceImageDrmFormatModifierInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceImageDrmFormatModifierInfoEXT( - uint64_t drmFormatModifier_ = {}, - VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive, - uint32_t queueFamilyIndexCount_ = {}, - const uint32_t * pQueueFamilyIndices_ = {} ) VULKAN_HPP_NOEXCEPT - : drmFormatModifier( drmFormatModifier_ ) - , sharingMode( sharingMode_ ) - , queueFamilyIndexCount( queueFamilyIndexCount_ ) - , pQueueFamilyIndices( pQueueFamilyIndices_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceImageDrmFormatModifierInfoEXT( - PhysicalDeviceImageDrmFormatModifierInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageDrmFormatModifierInfoEXT( VkPhysicalDeviceImageDrmFormatModifierInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceImageDrmFormatModifierInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PhysicalDeviceImageDrmFormatModifierInfoEXT( - uint64_t drmFormatModifier_, - VULKAN_HPP_NAMESPACE::SharingMode sharingMode_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_ ) - : drmFormatModifier( drmFormatModifier_ ) - , sharingMode( sharingMode_ ) - , queueFamilyIndexCount( static_cast( queueFamilyIndices_.size() ) ) - , pQueueFamilyIndices( queueFamilyIndices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceImageDrmFormatModifierInfoEXT & - operator=( PhysicalDeviceImageDrmFormatModifierInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageDrmFormatModifierInfoEXT & - operator=( VkPhysicalDeviceImageDrmFormatModifierInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageDrmFormatModifierInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageDrmFormatModifierInfoEXT & - setDrmFormatModifier( uint64_t drmFormatModifier_ ) VULKAN_HPP_NOEXCEPT - { - drmFormatModifier = drmFormatModifier_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageDrmFormatModifierInfoEXT & - setSharingMode( VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ ) VULKAN_HPP_NOEXCEPT - { - sharingMode = sharingMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageDrmFormatModifierInfoEXT & - setQueueFamilyIndexCount( uint32_t queueFamilyIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = queueFamilyIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageDrmFormatModifierInfoEXT & - setPQueueFamilyIndices( const uint32_t * pQueueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - pQueueFamilyIndices = pQueueFamilyIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PhysicalDeviceImageDrmFormatModifierInfoEXT & setQueueFamilyIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = static_cast( queueFamilyIndices_.size() ); - pQueueFamilyIndices = queueFamilyIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceImageDrmFormatModifierInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceImageDrmFormatModifierInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, drmFormatModifier, sharingMode, queueFamilyIndexCount, pQueueFamilyIndices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceImageDrmFormatModifierInfoEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceImageDrmFormatModifierInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( drmFormatModifier == rhs.drmFormatModifier ) && - ( sharingMode == rhs.sharingMode ) && ( queueFamilyIndexCount == rhs.queueFamilyIndexCount ) && - ( pQueueFamilyIndices == rhs.pQueueFamilyIndices ); -# endif - } - - bool operator!=( PhysicalDeviceImageDrmFormatModifierInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceImageDrmFormatModifierInfoEXT; - const void * pNext = {}; - uint64_t drmFormatModifier = {}; - VULKAN_HPP_NAMESPACE::SharingMode sharingMode = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive; - uint32_t queueFamilyIndexCount = {}; - const uint32_t * pQueueFamilyIndices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageDrmFormatModifierInfoEXT ) == - sizeof( VkPhysicalDeviceImageDrmFormatModifierInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceImageDrmFormatModifierInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceImageDrmFormatModifierInfoEXT; - }; - - struct PhysicalDeviceImageFormatInfo2 - { - using NativeType = VkPhysicalDeviceImageFormatInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceImageFormatInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceImageFormatInfo2( - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::ImageType type_ = VULKAN_HPP_NAMESPACE::ImageType::e1D, - VULKAN_HPP_NAMESPACE::ImageTiling tiling_ = VULKAN_HPP_NAMESPACE::ImageTiling::eOptimal, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ = {}, - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - , type( type_ ) - , tiling( tiling_ ) - , usage( usage_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceImageFormatInfo2( PhysicalDeviceImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageFormatInfo2( VkPhysicalDeviceImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceImageFormatInfo2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceImageFormatInfo2 & - operator=( PhysicalDeviceImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageFormatInfo2 & operator=( VkPhysicalDeviceImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageFormatInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageFormatInfo2 & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageFormatInfo2 & - setType( VULKAN_HPP_NAMESPACE::ImageType type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageFormatInfo2 & - setTiling( VULKAN_HPP_NAMESPACE::ImageTiling tiling_ ) VULKAN_HPP_NOEXCEPT - { - tiling = tiling_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageFormatInfo2 & - setUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageFormatInfo2 & - setFlags( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceImageFormatInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceImageFormatInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, format, type, tiling, usage, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceImageFormatInfo2 const & ) const = default; -#else - bool operator==( PhysicalDeviceImageFormatInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( format == rhs.format ) && ( type == rhs.type ) && - ( tiling == rhs.tiling ) && ( usage == rhs.usage ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( PhysicalDeviceImageFormatInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceImageFormatInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::ImageType type = VULKAN_HPP_NAMESPACE::ImageType::e1D; - VULKAN_HPP_NAMESPACE::ImageTiling tiling = VULKAN_HPP_NAMESPACE::ImageTiling::eOptimal; - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage = {}; - VULKAN_HPP_NAMESPACE::ImageCreateFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageFormatInfo2 ) == - sizeof( VkPhysicalDeviceImageFormatInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceImageFormatInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceImageFormatInfo2; - }; - using PhysicalDeviceImageFormatInfo2KHR = PhysicalDeviceImageFormatInfo2; - - struct PhysicalDeviceImageRobustnessFeatures - { - using NativeType = VkPhysicalDeviceImageRobustnessFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceImageRobustnessFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceImageRobustnessFeatures( VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess_ = {} ) VULKAN_HPP_NOEXCEPT - : robustImageAccess( robustImageAccess_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceImageRobustnessFeatures( PhysicalDeviceImageRobustnessFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageRobustnessFeatures( VkPhysicalDeviceImageRobustnessFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceImageRobustnessFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceImageRobustnessFeatures & - operator=( PhysicalDeviceImageRobustnessFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageRobustnessFeatures & - operator=( VkPhysicalDeviceImageRobustnessFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageRobustnessFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageRobustnessFeatures & - setRobustImageAccess( VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess_ ) VULKAN_HPP_NOEXCEPT - { - robustImageAccess = robustImageAccess_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceImageRobustnessFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceImageRobustnessFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, robustImageAccess ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceImageRobustnessFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceImageRobustnessFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( robustImageAccess == rhs.robustImageAccess ); -# endif - } - - bool operator!=( PhysicalDeviceImageRobustnessFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceImageRobustnessFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageRobustnessFeatures ) == - sizeof( VkPhysicalDeviceImageRobustnessFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceImageRobustnessFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceImageRobustnessFeatures; - }; - using PhysicalDeviceImageRobustnessFeaturesEXT = PhysicalDeviceImageRobustnessFeatures; - - struct PhysicalDeviceImageViewImageFormatInfoEXT - { - using NativeType = VkPhysicalDeviceImageViewImageFormatInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceImageViewImageFormatInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceImageViewImageFormatInfoEXT( VULKAN_HPP_NAMESPACE::ImageViewType imageViewType_ = - VULKAN_HPP_NAMESPACE::ImageViewType::e1D ) VULKAN_HPP_NOEXCEPT - : imageViewType( imageViewType_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceImageViewImageFormatInfoEXT( - PhysicalDeviceImageViewImageFormatInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageViewImageFormatInfoEXT( VkPhysicalDeviceImageViewImageFormatInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceImageViewImageFormatInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceImageViewImageFormatInfoEXT & - operator=( PhysicalDeviceImageViewImageFormatInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageViewImageFormatInfoEXT & - operator=( VkPhysicalDeviceImageViewImageFormatInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageViewImageFormatInfoEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageViewImageFormatInfoEXT & - setImageViewType( VULKAN_HPP_NAMESPACE::ImageViewType imageViewType_ ) VULKAN_HPP_NOEXCEPT - { - imageViewType = imageViewType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceImageViewImageFormatInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceImageViewImageFormatInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageViewType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceImageViewImageFormatInfoEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceImageViewImageFormatInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageViewType == rhs.imageViewType ); -# endif - } - - bool operator!=( PhysicalDeviceImageViewImageFormatInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceImageViewImageFormatInfoEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageViewType imageViewType = VULKAN_HPP_NAMESPACE::ImageViewType::e1D; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageViewImageFormatInfoEXT ) == - sizeof( VkPhysicalDeviceImageViewImageFormatInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceImageViewImageFormatInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceImageViewImageFormatInfoEXT; - }; - - struct PhysicalDeviceImageViewMinLodFeaturesEXT - { - using NativeType = VkPhysicalDeviceImageViewMinLodFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceImageViewMinLodFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceImageViewMinLodFeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 minLod_ = {} ) VULKAN_HPP_NOEXCEPT - : minLod( minLod_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceImageViewMinLodFeaturesEXT( - PhysicalDeviceImageViewMinLodFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageViewMinLodFeaturesEXT( VkPhysicalDeviceImageViewMinLodFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceImageViewMinLodFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceImageViewMinLodFeaturesEXT & - operator=( PhysicalDeviceImageViewMinLodFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImageViewMinLodFeaturesEXT & - operator=( VkPhysicalDeviceImageViewMinLodFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageViewMinLodFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImageViewMinLodFeaturesEXT & - setMinLod( VULKAN_HPP_NAMESPACE::Bool32 minLod_ ) VULKAN_HPP_NOEXCEPT - { - minLod = minLod_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceImageViewMinLodFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceImageViewMinLodFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, minLod ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceImageViewMinLodFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceImageViewMinLodFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( minLod == rhs.minLod ); -# endif - } - - bool operator!=( PhysicalDeviceImageViewMinLodFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceImageViewMinLodFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 minLod = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceImageViewMinLodFeaturesEXT ) == - sizeof( VkPhysicalDeviceImageViewMinLodFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceImageViewMinLodFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceImageViewMinLodFeaturesEXT; - }; - - struct PhysicalDeviceImagelessFramebufferFeatures - { - using NativeType = VkPhysicalDeviceImagelessFramebufferFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceImagelessFramebufferFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceImagelessFramebufferFeatures( - VULKAN_HPP_NAMESPACE::Bool32 imagelessFramebuffer_ = {} ) VULKAN_HPP_NOEXCEPT - : imagelessFramebuffer( imagelessFramebuffer_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceImagelessFramebufferFeatures( - PhysicalDeviceImagelessFramebufferFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImagelessFramebufferFeatures( VkPhysicalDeviceImagelessFramebufferFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceImagelessFramebufferFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceImagelessFramebufferFeatures & - operator=( PhysicalDeviceImagelessFramebufferFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceImagelessFramebufferFeatures & - operator=( VkPhysicalDeviceImagelessFramebufferFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImagelessFramebufferFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceImagelessFramebufferFeatures & - setImagelessFramebuffer( VULKAN_HPP_NAMESPACE::Bool32 imagelessFramebuffer_ ) VULKAN_HPP_NOEXCEPT - { - imagelessFramebuffer = imagelessFramebuffer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceImagelessFramebufferFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceImagelessFramebufferFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imagelessFramebuffer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceImagelessFramebufferFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceImagelessFramebufferFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imagelessFramebuffer == rhs.imagelessFramebuffer ); -# endif - } - - bool operator!=( PhysicalDeviceImagelessFramebufferFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceImagelessFramebufferFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 imagelessFramebuffer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceImagelessFramebufferFeatures ) == - sizeof( VkPhysicalDeviceImagelessFramebufferFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceImagelessFramebufferFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceImagelessFramebufferFeatures; - }; - using PhysicalDeviceImagelessFramebufferFeaturesKHR = PhysicalDeviceImagelessFramebufferFeatures; - - struct PhysicalDeviceIndexTypeUint8FeaturesEXT - { - using NativeType = VkPhysicalDeviceIndexTypeUint8FeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceIndexTypeUint8FeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceIndexTypeUint8FeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 indexTypeUint8_ = {} ) VULKAN_HPP_NOEXCEPT - : indexTypeUint8( indexTypeUint8_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceIndexTypeUint8FeaturesEXT( PhysicalDeviceIndexTypeUint8FeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceIndexTypeUint8FeaturesEXT( VkPhysicalDeviceIndexTypeUint8FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceIndexTypeUint8FeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceIndexTypeUint8FeaturesEXT & - operator=( PhysicalDeviceIndexTypeUint8FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceIndexTypeUint8FeaturesEXT & - operator=( VkPhysicalDeviceIndexTypeUint8FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceIndexTypeUint8FeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceIndexTypeUint8FeaturesEXT & - setIndexTypeUint8( VULKAN_HPP_NAMESPACE::Bool32 indexTypeUint8_ ) VULKAN_HPP_NOEXCEPT - { - indexTypeUint8 = indexTypeUint8_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceIndexTypeUint8FeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceIndexTypeUint8FeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, indexTypeUint8 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceIndexTypeUint8FeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceIndexTypeUint8FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( indexTypeUint8 == rhs.indexTypeUint8 ); -# endif - } - - bool operator!=( PhysicalDeviceIndexTypeUint8FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceIndexTypeUint8FeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 indexTypeUint8 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceIndexTypeUint8FeaturesEXT ) == - sizeof( VkPhysicalDeviceIndexTypeUint8FeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceIndexTypeUint8FeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceIndexTypeUint8FeaturesEXT; - }; - - struct PhysicalDeviceInheritedViewportScissorFeaturesNV - { - using NativeType = VkPhysicalDeviceInheritedViewportScissorFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceInheritedViewportScissorFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceInheritedViewportScissorFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 inheritedViewportScissor2D_ = {} ) VULKAN_HPP_NOEXCEPT - : inheritedViewportScissor2D( inheritedViewportScissor2D_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceInheritedViewportScissorFeaturesNV( - PhysicalDeviceInheritedViewportScissorFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInheritedViewportScissorFeaturesNV( VkPhysicalDeviceInheritedViewportScissorFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceInheritedViewportScissorFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceInheritedViewportScissorFeaturesNV & - operator=( PhysicalDeviceInheritedViewportScissorFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInheritedViewportScissorFeaturesNV & - operator=( VkPhysicalDeviceInheritedViewportScissorFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInheritedViewportScissorFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInheritedViewportScissorFeaturesNV & - setInheritedViewportScissor2D( VULKAN_HPP_NAMESPACE::Bool32 inheritedViewportScissor2D_ ) VULKAN_HPP_NOEXCEPT - { - inheritedViewportScissor2D = inheritedViewportScissor2D_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceInheritedViewportScissorFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceInheritedViewportScissorFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, inheritedViewportScissor2D ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceInheritedViewportScissorFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceInheritedViewportScissorFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( inheritedViewportScissor2D == rhs.inheritedViewportScissor2D ); -# endif - } - - bool operator!=( PhysicalDeviceInheritedViewportScissorFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceInheritedViewportScissorFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 inheritedViewportScissor2D = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceInheritedViewportScissorFeaturesNV ) == - sizeof( VkPhysicalDeviceInheritedViewportScissorFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceInheritedViewportScissorFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceInheritedViewportScissorFeaturesNV; - }; - - struct PhysicalDeviceInlineUniformBlockFeatures - { - using NativeType = VkPhysicalDeviceInlineUniformBlockFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceInlineUniformBlockFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceInlineUniformBlockFeatures( - VULKAN_HPP_NAMESPACE::Bool32 inlineUniformBlock_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingInlineUniformBlockUpdateAfterBind_ = {} ) VULKAN_HPP_NOEXCEPT - : inlineUniformBlock( inlineUniformBlock_ ) - , descriptorBindingInlineUniformBlockUpdateAfterBind( descriptorBindingInlineUniformBlockUpdateAfterBind_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceInlineUniformBlockFeatures( - PhysicalDeviceInlineUniformBlockFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInlineUniformBlockFeatures( VkPhysicalDeviceInlineUniformBlockFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceInlineUniformBlockFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceInlineUniformBlockFeatures & - operator=( PhysicalDeviceInlineUniformBlockFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInlineUniformBlockFeatures & - operator=( VkPhysicalDeviceInlineUniformBlockFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInlineUniformBlockFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInlineUniformBlockFeatures & - setInlineUniformBlock( VULKAN_HPP_NAMESPACE::Bool32 inlineUniformBlock_ ) VULKAN_HPP_NOEXCEPT - { - inlineUniformBlock = inlineUniformBlock_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInlineUniformBlockFeatures & - setDescriptorBindingInlineUniformBlockUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingInlineUniformBlockUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingInlineUniformBlockUpdateAfterBind = descriptorBindingInlineUniformBlockUpdateAfterBind_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceInlineUniformBlockFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceInlineUniformBlockFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, inlineUniformBlock, descriptorBindingInlineUniformBlockUpdateAfterBind ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceInlineUniformBlockFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceInlineUniformBlockFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( inlineUniformBlock == rhs.inlineUniformBlock ) && - ( descriptorBindingInlineUniformBlockUpdateAfterBind == - rhs.descriptorBindingInlineUniformBlockUpdateAfterBind ); -# endif - } - - bool operator!=( PhysicalDeviceInlineUniformBlockFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceInlineUniformBlockFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 inlineUniformBlock = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingInlineUniformBlockUpdateAfterBind = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceInlineUniformBlockFeatures ) == - sizeof( VkPhysicalDeviceInlineUniformBlockFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceInlineUniformBlockFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceInlineUniformBlockFeatures; - }; - using PhysicalDeviceInlineUniformBlockFeaturesEXT = PhysicalDeviceInlineUniformBlockFeatures; - - struct PhysicalDeviceInlineUniformBlockProperties - { - using NativeType = VkPhysicalDeviceInlineUniformBlockProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceInlineUniformBlockProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceInlineUniformBlockProperties( - uint32_t maxInlineUniformBlockSize_ = {}, - uint32_t maxPerStageDescriptorInlineUniformBlocks_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks_ = {}, - uint32_t maxDescriptorSetInlineUniformBlocks_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindInlineUniformBlocks_ = {} ) VULKAN_HPP_NOEXCEPT - : maxInlineUniformBlockSize( maxInlineUniformBlockSize_ ) - , maxPerStageDescriptorInlineUniformBlocks( maxPerStageDescriptorInlineUniformBlocks_ ) - , maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks( - maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks_ ) - , maxDescriptorSetInlineUniformBlocks( maxDescriptorSetInlineUniformBlocks_ ) - , maxDescriptorSetUpdateAfterBindInlineUniformBlocks( maxDescriptorSetUpdateAfterBindInlineUniformBlocks_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceInlineUniformBlockProperties( - PhysicalDeviceInlineUniformBlockProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInlineUniformBlockProperties( VkPhysicalDeviceInlineUniformBlockProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceInlineUniformBlockProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceInlineUniformBlockProperties & - operator=( PhysicalDeviceInlineUniformBlockProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInlineUniformBlockProperties & - operator=( VkPhysicalDeviceInlineUniformBlockProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceInlineUniformBlockProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceInlineUniformBlockProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - maxInlineUniformBlockSize, - maxPerStageDescriptorInlineUniformBlocks, - maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks, - maxDescriptorSetInlineUniformBlocks, - maxDescriptorSetUpdateAfterBindInlineUniformBlocks ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceInlineUniformBlockProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceInlineUniformBlockProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxInlineUniformBlockSize == rhs.maxInlineUniformBlockSize ) && - ( maxPerStageDescriptorInlineUniformBlocks == rhs.maxPerStageDescriptorInlineUniformBlocks ) && - ( maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks == - rhs.maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks ) && - ( maxDescriptorSetInlineUniformBlocks == rhs.maxDescriptorSetInlineUniformBlocks ) && - ( maxDescriptorSetUpdateAfterBindInlineUniformBlocks == - rhs.maxDescriptorSetUpdateAfterBindInlineUniformBlocks ); -# endif - } - - bool operator!=( PhysicalDeviceInlineUniformBlockProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceInlineUniformBlockProperties; - void * pNext = {}; - uint32_t maxInlineUniformBlockSize = {}; - uint32_t maxPerStageDescriptorInlineUniformBlocks = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks = {}; - uint32_t maxDescriptorSetInlineUniformBlocks = {}; - uint32_t maxDescriptorSetUpdateAfterBindInlineUniformBlocks = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceInlineUniformBlockProperties ) == - sizeof( VkPhysicalDeviceInlineUniformBlockProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceInlineUniformBlockProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceInlineUniformBlockProperties; - }; - using PhysicalDeviceInlineUniformBlockPropertiesEXT = PhysicalDeviceInlineUniformBlockProperties; - - struct PhysicalDeviceInvocationMaskFeaturesHUAWEI - { - using NativeType = VkPhysicalDeviceInvocationMaskFeaturesHUAWEI; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceInvocationMaskFeaturesHUAWEI; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceInvocationMaskFeaturesHUAWEI( VULKAN_HPP_NAMESPACE::Bool32 invocationMask_ = {} ) - VULKAN_HPP_NOEXCEPT : invocationMask( invocationMask_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceInvocationMaskFeaturesHUAWEI( - PhysicalDeviceInvocationMaskFeaturesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInvocationMaskFeaturesHUAWEI( VkPhysicalDeviceInvocationMaskFeaturesHUAWEI const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceInvocationMaskFeaturesHUAWEI( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceInvocationMaskFeaturesHUAWEI & - operator=( PhysicalDeviceInvocationMaskFeaturesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceInvocationMaskFeaturesHUAWEI & - operator=( VkPhysicalDeviceInvocationMaskFeaturesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInvocationMaskFeaturesHUAWEI & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceInvocationMaskFeaturesHUAWEI & - setInvocationMask( VULKAN_HPP_NAMESPACE::Bool32 invocationMask_ ) VULKAN_HPP_NOEXCEPT - { - invocationMask = invocationMask_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceInvocationMaskFeaturesHUAWEI const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceInvocationMaskFeaturesHUAWEI &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, invocationMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceInvocationMaskFeaturesHUAWEI const & ) const = default; -#else - bool operator==( PhysicalDeviceInvocationMaskFeaturesHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( invocationMask == rhs.invocationMask ); -# endif - } - - bool operator!=( PhysicalDeviceInvocationMaskFeaturesHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceInvocationMaskFeaturesHUAWEI; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 invocationMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceInvocationMaskFeaturesHUAWEI ) == - sizeof( VkPhysicalDeviceInvocationMaskFeaturesHUAWEI ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceInvocationMaskFeaturesHUAWEI is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceInvocationMaskFeaturesHUAWEI; - }; - - struct PhysicalDeviceLimits - { - using NativeType = VkPhysicalDeviceLimits; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceLimits( uint32_t maxImageDimension1D_ = {}, - uint32_t maxImageDimension2D_ = {}, - uint32_t maxImageDimension3D_ = {}, - uint32_t maxImageDimensionCube_ = {}, - uint32_t maxImageArrayLayers_ = {}, - uint32_t maxTexelBufferElements_ = {}, - uint32_t maxUniformBufferRange_ = {}, - uint32_t maxStorageBufferRange_ = {}, - uint32_t maxPushConstantsSize_ = {}, - uint32_t maxMemoryAllocationCount_ = {}, - uint32_t maxSamplerAllocationCount_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize bufferImageGranularity_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize sparseAddressSpaceSize_ = {}, - uint32_t maxBoundDescriptorSets_ = {}, - uint32_t maxPerStageDescriptorSamplers_ = {}, - uint32_t maxPerStageDescriptorUniformBuffers_ = {}, - uint32_t maxPerStageDescriptorStorageBuffers_ = {}, - uint32_t maxPerStageDescriptorSampledImages_ = {}, - uint32_t maxPerStageDescriptorStorageImages_ = {}, - uint32_t maxPerStageDescriptorInputAttachments_ = {}, - uint32_t maxPerStageResources_ = {}, - uint32_t maxDescriptorSetSamplers_ = {}, - uint32_t maxDescriptorSetUniformBuffers_ = {}, - uint32_t maxDescriptorSetUniformBuffersDynamic_ = {}, - uint32_t maxDescriptorSetStorageBuffers_ = {}, - uint32_t maxDescriptorSetStorageBuffersDynamic_ = {}, - uint32_t maxDescriptorSetSampledImages_ = {}, - uint32_t maxDescriptorSetStorageImages_ = {}, - uint32_t maxDescriptorSetInputAttachments_ = {}, - uint32_t maxVertexInputAttributes_ = {}, - uint32_t maxVertexInputBindings_ = {}, - uint32_t maxVertexInputAttributeOffset_ = {}, - uint32_t maxVertexInputBindingStride_ = {}, - uint32_t maxVertexOutputComponents_ = {}, - uint32_t maxTessellationGenerationLevel_ = {}, - uint32_t maxTessellationPatchSize_ = {}, - uint32_t maxTessellationControlPerVertexInputComponents_ = {}, - uint32_t maxTessellationControlPerVertexOutputComponents_ = {}, - uint32_t maxTessellationControlPerPatchOutputComponents_ = {}, - uint32_t maxTessellationControlTotalOutputComponents_ = {}, - uint32_t maxTessellationEvaluationInputComponents_ = {}, - uint32_t maxTessellationEvaluationOutputComponents_ = {}, - uint32_t maxGeometryShaderInvocations_ = {}, - uint32_t maxGeometryInputComponents_ = {}, - uint32_t maxGeometryOutputComponents_ = {}, - uint32_t maxGeometryOutputVertices_ = {}, - uint32_t maxGeometryTotalOutputComponents_ = {}, - uint32_t maxFragmentInputComponents_ = {}, - uint32_t maxFragmentOutputAttachments_ = {}, - uint32_t maxFragmentDualSrcAttachments_ = {}, - uint32_t maxFragmentCombinedOutputResources_ = {}, - uint32_t maxComputeSharedMemorySize_ = {}, - std::array const & maxComputeWorkGroupCount_ = {}, - uint32_t maxComputeWorkGroupInvocations_ = {}, - std::array const & maxComputeWorkGroupSize_ = {}, - uint32_t subPixelPrecisionBits_ = {}, - uint32_t subTexelPrecisionBits_ = {}, - uint32_t mipmapPrecisionBits_ = {}, - uint32_t maxDrawIndexedIndexValue_ = {}, - uint32_t maxDrawIndirectCount_ = {}, - float maxSamplerLodBias_ = {}, - float maxSamplerAnisotropy_ = {}, - uint32_t maxViewports_ = {}, - std::array const & maxViewportDimensions_ = {}, - std::array const & viewportBoundsRange_ = {}, - uint32_t viewportSubPixelBits_ = {}, - size_t minMemoryMapAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize minTexelBufferOffsetAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize minUniformBufferOffsetAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize minStorageBufferOffsetAlignment_ = {}, - int32_t minTexelOffset_ = {}, - uint32_t maxTexelOffset_ = {}, - int32_t minTexelGatherOffset_ = {}, - uint32_t maxTexelGatherOffset_ = {}, - float minInterpolationOffset_ = {}, - float maxInterpolationOffset_ = {}, - uint32_t subPixelInterpolationOffsetBits_ = {}, - uint32_t maxFramebufferWidth_ = {}, - uint32_t maxFramebufferHeight_ = {}, - uint32_t maxFramebufferLayers_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferColorSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferDepthSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferStencilSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferNoAttachmentsSampleCounts_ = {}, - uint32_t maxColorAttachments_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageColorSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageIntegerSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageDepthSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageStencilSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags storageImageSampleCounts_ = {}, - uint32_t maxSampleMaskWords_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 timestampComputeAndGraphics_ = {}, - float timestampPeriod_ = {}, - uint32_t maxClipDistances_ = {}, - uint32_t maxCullDistances_ = {}, - uint32_t maxCombinedClipAndCullDistances_ = {}, - uint32_t discreteQueuePriorities_ = {}, - std::array const & pointSizeRange_ = {}, - std::array const & lineWidthRange_ = {}, - float pointSizeGranularity_ = {}, - float lineWidthGranularity_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 strictLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 standardSampleLocations_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize optimalBufferCopyOffsetAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize optimalBufferCopyRowPitchAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize nonCoherentAtomSize_ = {} ) VULKAN_HPP_NOEXCEPT - : maxImageDimension1D( maxImageDimension1D_ ) - , maxImageDimension2D( maxImageDimension2D_ ) - , maxImageDimension3D( maxImageDimension3D_ ) - , maxImageDimensionCube( maxImageDimensionCube_ ) - , maxImageArrayLayers( maxImageArrayLayers_ ) - , maxTexelBufferElements( maxTexelBufferElements_ ) - , maxUniformBufferRange( maxUniformBufferRange_ ) - , maxStorageBufferRange( maxStorageBufferRange_ ) - , maxPushConstantsSize( maxPushConstantsSize_ ) - , maxMemoryAllocationCount( maxMemoryAllocationCount_ ) - , maxSamplerAllocationCount( maxSamplerAllocationCount_ ) - , bufferImageGranularity( bufferImageGranularity_ ) - , sparseAddressSpaceSize( sparseAddressSpaceSize_ ) - , maxBoundDescriptorSets( maxBoundDescriptorSets_ ) - , maxPerStageDescriptorSamplers( maxPerStageDescriptorSamplers_ ) - , maxPerStageDescriptorUniformBuffers( maxPerStageDescriptorUniformBuffers_ ) - , maxPerStageDescriptorStorageBuffers( maxPerStageDescriptorStorageBuffers_ ) - , maxPerStageDescriptorSampledImages( maxPerStageDescriptorSampledImages_ ) - , maxPerStageDescriptorStorageImages( maxPerStageDescriptorStorageImages_ ) - , maxPerStageDescriptorInputAttachments( maxPerStageDescriptorInputAttachments_ ) - , maxPerStageResources( maxPerStageResources_ ) - , maxDescriptorSetSamplers( maxDescriptorSetSamplers_ ) - , maxDescriptorSetUniformBuffers( maxDescriptorSetUniformBuffers_ ) - , maxDescriptorSetUniformBuffersDynamic( maxDescriptorSetUniformBuffersDynamic_ ) - , maxDescriptorSetStorageBuffers( maxDescriptorSetStorageBuffers_ ) - , maxDescriptorSetStorageBuffersDynamic( maxDescriptorSetStorageBuffersDynamic_ ) - , maxDescriptorSetSampledImages( maxDescriptorSetSampledImages_ ) - , maxDescriptorSetStorageImages( maxDescriptorSetStorageImages_ ) - , maxDescriptorSetInputAttachments( maxDescriptorSetInputAttachments_ ) - , maxVertexInputAttributes( maxVertexInputAttributes_ ) - , maxVertexInputBindings( maxVertexInputBindings_ ) - , maxVertexInputAttributeOffset( maxVertexInputAttributeOffset_ ) - , maxVertexInputBindingStride( maxVertexInputBindingStride_ ) - , maxVertexOutputComponents( maxVertexOutputComponents_ ) - , maxTessellationGenerationLevel( maxTessellationGenerationLevel_ ) - , maxTessellationPatchSize( maxTessellationPatchSize_ ) - , maxTessellationControlPerVertexInputComponents( maxTessellationControlPerVertexInputComponents_ ) - , maxTessellationControlPerVertexOutputComponents( maxTessellationControlPerVertexOutputComponents_ ) - , maxTessellationControlPerPatchOutputComponents( maxTessellationControlPerPatchOutputComponents_ ) - , maxTessellationControlTotalOutputComponents( maxTessellationControlTotalOutputComponents_ ) - , maxTessellationEvaluationInputComponents( maxTessellationEvaluationInputComponents_ ) - , maxTessellationEvaluationOutputComponents( maxTessellationEvaluationOutputComponents_ ) - , maxGeometryShaderInvocations( maxGeometryShaderInvocations_ ) - , maxGeometryInputComponents( maxGeometryInputComponents_ ) - , maxGeometryOutputComponents( maxGeometryOutputComponents_ ) - , maxGeometryOutputVertices( maxGeometryOutputVertices_ ) - , maxGeometryTotalOutputComponents( maxGeometryTotalOutputComponents_ ) - , maxFragmentInputComponents( maxFragmentInputComponents_ ) - , maxFragmentOutputAttachments( maxFragmentOutputAttachments_ ) - , maxFragmentDualSrcAttachments( maxFragmentDualSrcAttachments_ ) - , maxFragmentCombinedOutputResources( maxFragmentCombinedOutputResources_ ) - , maxComputeSharedMemorySize( maxComputeSharedMemorySize_ ) - , maxComputeWorkGroupCount( maxComputeWorkGroupCount_ ) - , maxComputeWorkGroupInvocations( maxComputeWorkGroupInvocations_ ) - , maxComputeWorkGroupSize( maxComputeWorkGroupSize_ ) - , subPixelPrecisionBits( subPixelPrecisionBits_ ) - , subTexelPrecisionBits( subTexelPrecisionBits_ ) - , mipmapPrecisionBits( mipmapPrecisionBits_ ) - , maxDrawIndexedIndexValue( maxDrawIndexedIndexValue_ ) - , maxDrawIndirectCount( maxDrawIndirectCount_ ) - , maxSamplerLodBias( maxSamplerLodBias_ ) - , maxSamplerAnisotropy( maxSamplerAnisotropy_ ) - , maxViewports( maxViewports_ ) - , maxViewportDimensions( maxViewportDimensions_ ) - , viewportBoundsRange( viewportBoundsRange_ ) - , viewportSubPixelBits( viewportSubPixelBits_ ) - , minMemoryMapAlignment( minMemoryMapAlignment_ ) - , minTexelBufferOffsetAlignment( minTexelBufferOffsetAlignment_ ) - , minUniformBufferOffsetAlignment( minUniformBufferOffsetAlignment_ ) - , minStorageBufferOffsetAlignment( minStorageBufferOffsetAlignment_ ) - , minTexelOffset( minTexelOffset_ ) - , maxTexelOffset( maxTexelOffset_ ) - , minTexelGatherOffset( minTexelGatherOffset_ ) - , maxTexelGatherOffset( maxTexelGatherOffset_ ) - , minInterpolationOffset( minInterpolationOffset_ ) - , maxInterpolationOffset( maxInterpolationOffset_ ) - , subPixelInterpolationOffsetBits( subPixelInterpolationOffsetBits_ ) - , maxFramebufferWidth( maxFramebufferWidth_ ) - , maxFramebufferHeight( maxFramebufferHeight_ ) - , maxFramebufferLayers( maxFramebufferLayers_ ) - , framebufferColorSampleCounts( framebufferColorSampleCounts_ ) - , framebufferDepthSampleCounts( framebufferDepthSampleCounts_ ) - , framebufferStencilSampleCounts( framebufferStencilSampleCounts_ ) - , framebufferNoAttachmentsSampleCounts( framebufferNoAttachmentsSampleCounts_ ) - , maxColorAttachments( maxColorAttachments_ ) - , sampledImageColorSampleCounts( sampledImageColorSampleCounts_ ) - , sampledImageIntegerSampleCounts( sampledImageIntegerSampleCounts_ ) - , sampledImageDepthSampleCounts( sampledImageDepthSampleCounts_ ) - , sampledImageStencilSampleCounts( sampledImageStencilSampleCounts_ ) - , storageImageSampleCounts( storageImageSampleCounts_ ) - , maxSampleMaskWords( maxSampleMaskWords_ ) - , timestampComputeAndGraphics( timestampComputeAndGraphics_ ) - , timestampPeriod( timestampPeriod_ ) - , maxClipDistances( maxClipDistances_ ) - , maxCullDistances( maxCullDistances_ ) - , maxCombinedClipAndCullDistances( maxCombinedClipAndCullDistances_ ) - , discreteQueuePriorities( discreteQueuePriorities_ ) - , pointSizeRange( pointSizeRange_ ) - , lineWidthRange( lineWidthRange_ ) - , pointSizeGranularity( pointSizeGranularity_ ) - , lineWidthGranularity( lineWidthGranularity_ ) - , strictLines( strictLines_ ) - , standardSampleLocations( standardSampleLocations_ ) - , optimalBufferCopyOffsetAlignment( optimalBufferCopyOffsetAlignment_ ) - , optimalBufferCopyRowPitchAlignment( optimalBufferCopyRowPitchAlignment_ ) - , nonCoherentAtomSize( nonCoherentAtomSize_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLimits( PhysicalDeviceLimits const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLimits( VkPhysicalDeviceLimits const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceLimits( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceLimits & operator=( PhysicalDeviceLimits const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLimits & operator=( VkPhysicalDeviceLimits const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceLimits const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceLimits &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - float const &, - float const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - uint32_t const &, - size_t const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &, - int32_t const &, - uint32_t const &, - int32_t const &, - uint32_t const &, - float const &, - float const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - float const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - float const &, - float const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( maxImageDimension1D, - maxImageDimension2D, - maxImageDimension3D, - maxImageDimensionCube, - maxImageArrayLayers, - maxTexelBufferElements, - maxUniformBufferRange, - maxStorageBufferRange, - maxPushConstantsSize, - maxMemoryAllocationCount, - maxSamplerAllocationCount, - bufferImageGranularity, - sparseAddressSpaceSize, - maxBoundDescriptorSets, - maxPerStageDescriptorSamplers, - maxPerStageDescriptorUniformBuffers, - maxPerStageDescriptorStorageBuffers, - maxPerStageDescriptorSampledImages, - maxPerStageDescriptorStorageImages, - maxPerStageDescriptorInputAttachments, - maxPerStageResources, - maxDescriptorSetSamplers, - maxDescriptorSetUniformBuffers, - maxDescriptorSetUniformBuffersDynamic, - maxDescriptorSetStorageBuffers, - maxDescriptorSetStorageBuffersDynamic, - maxDescriptorSetSampledImages, - maxDescriptorSetStorageImages, - maxDescriptorSetInputAttachments, - maxVertexInputAttributes, - maxVertexInputBindings, - maxVertexInputAttributeOffset, - maxVertexInputBindingStride, - maxVertexOutputComponents, - maxTessellationGenerationLevel, - maxTessellationPatchSize, - maxTessellationControlPerVertexInputComponents, - maxTessellationControlPerVertexOutputComponents, - maxTessellationControlPerPatchOutputComponents, - maxTessellationControlTotalOutputComponents, - maxTessellationEvaluationInputComponents, - maxTessellationEvaluationOutputComponents, - maxGeometryShaderInvocations, - maxGeometryInputComponents, - maxGeometryOutputComponents, - maxGeometryOutputVertices, - maxGeometryTotalOutputComponents, - maxFragmentInputComponents, - maxFragmentOutputAttachments, - maxFragmentDualSrcAttachments, - maxFragmentCombinedOutputResources, - maxComputeSharedMemorySize, - maxComputeWorkGroupCount, - maxComputeWorkGroupInvocations, - maxComputeWorkGroupSize, - subPixelPrecisionBits, - subTexelPrecisionBits, - mipmapPrecisionBits, - maxDrawIndexedIndexValue, - maxDrawIndirectCount, - maxSamplerLodBias, - maxSamplerAnisotropy, - maxViewports, - maxViewportDimensions, - viewportBoundsRange, - viewportSubPixelBits, - minMemoryMapAlignment, - minTexelBufferOffsetAlignment, - minUniformBufferOffsetAlignment, - minStorageBufferOffsetAlignment, - minTexelOffset, - maxTexelOffset, - minTexelGatherOffset, - maxTexelGatherOffset, - minInterpolationOffset, - maxInterpolationOffset, - subPixelInterpolationOffsetBits, - maxFramebufferWidth, - maxFramebufferHeight, - maxFramebufferLayers, - framebufferColorSampleCounts, - framebufferDepthSampleCounts, - framebufferStencilSampleCounts, - framebufferNoAttachmentsSampleCounts, - maxColorAttachments, - sampledImageColorSampleCounts, - sampledImageIntegerSampleCounts, - sampledImageDepthSampleCounts, - sampledImageStencilSampleCounts, - storageImageSampleCounts, - maxSampleMaskWords, - timestampComputeAndGraphics, - timestampPeriod, - maxClipDistances, - maxCullDistances, - maxCombinedClipAndCullDistances, - discreteQueuePriorities, - pointSizeRange, - lineWidthRange, - pointSizeGranularity, - lineWidthGranularity, - strictLines, - standardSampleLocations, - optimalBufferCopyOffsetAlignment, - optimalBufferCopyRowPitchAlignment, - nonCoherentAtomSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceLimits const & ) const = default; -#else - bool operator==( PhysicalDeviceLimits const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( maxImageDimension1D == rhs.maxImageDimension1D ) && ( maxImageDimension2D == rhs.maxImageDimension2D ) && - ( maxImageDimension3D == rhs.maxImageDimension3D ) && - ( maxImageDimensionCube == rhs.maxImageDimensionCube ) && - ( maxImageArrayLayers == rhs.maxImageArrayLayers ) && - ( maxTexelBufferElements == rhs.maxTexelBufferElements ) && - ( maxUniformBufferRange == rhs.maxUniformBufferRange ) && - ( maxStorageBufferRange == rhs.maxStorageBufferRange ) && - ( maxPushConstantsSize == rhs.maxPushConstantsSize ) && - ( maxMemoryAllocationCount == rhs.maxMemoryAllocationCount ) && - ( maxSamplerAllocationCount == rhs.maxSamplerAllocationCount ) && - ( bufferImageGranularity == rhs.bufferImageGranularity ) && - ( sparseAddressSpaceSize == rhs.sparseAddressSpaceSize ) && - ( maxBoundDescriptorSets == rhs.maxBoundDescriptorSets ) && - ( maxPerStageDescriptorSamplers == rhs.maxPerStageDescriptorSamplers ) && - ( maxPerStageDescriptorUniformBuffers == rhs.maxPerStageDescriptorUniformBuffers ) && - ( maxPerStageDescriptorStorageBuffers == rhs.maxPerStageDescriptorStorageBuffers ) && - ( maxPerStageDescriptorSampledImages == rhs.maxPerStageDescriptorSampledImages ) && - ( maxPerStageDescriptorStorageImages == rhs.maxPerStageDescriptorStorageImages ) && - ( maxPerStageDescriptorInputAttachments == rhs.maxPerStageDescriptorInputAttachments ) && - ( maxPerStageResources == rhs.maxPerStageResources ) && - ( maxDescriptorSetSamplers == rhs.maxDescriptorSetSamplers ) && - ( maxDescriptorSetUniformBuffers == rhs.maxDescriptorSetUniformBuffers ) && - ( maxDescriptorSetUniformBuffersDynamic == rhs.maxDescriptorSetUniformBuffersDynamic ) && - ( maxDescriptorSetStorageBuffers == rhs.maxDescriptorSetStorageBuffers ) && - ( maxDescriptorSetStorageBuffersDynamic == rhs.maxDescriptorSetStorageBuffersDynamic ) && - ( maxDescriptorSetSampledImages == rhs.maxDescriptorSetSampledImages ) && - ( maxDescriptorSetStorageImages == rhs.maxDescriptorSetStorageImages ) && - ( maxDescriptorSetInputAttachments == rhs.maxDescriptorSetInputAttachments ) && - ( maxVertexInputAttributes == rhs.maxVertexInputAttributes ) && - ( maxVertexInputBindings == rhs.maxVertexInputBindings ) && - ( maxVertexInputAttributeOffset == rhs.maxVertexInputAttributeOffset ) && - ( maxVertexInputBindingStride == rhs.maxVertexInputBindingStride ) && - ( maxVertexOutputComponents == rhs.maxVertexOutputComponents ) && - ( maxTessellationGenerationLevel == rhs.maxTessellationGenerationLevel ) && - ( maxTessellationPatchSize == rhs.maxTessellationPatchSize ) && - ( maxTessellationControlPerVertexInputComponents == rhs.maxTessellationControlPerVertexInputComponents ) && - ( maxTessellationControlPerVertexOutputComponents == - rhs.maxTessellationControlPerVertexOutputComponents ) && - ( maxTessellationControlPerPatchOutputComponents == rhs.maxTessellationControlPerPatchOutputComponents ) && - ( maxTessellationControlTotalOutputComponents == rhs.maxTessellationControlTotalOutputComponents ) && - ( maxTessellationEvaluationInputComponents == rhs.maxTessellationEvaluationInputComponents ) && - ( maxTessellationEvaluationOutputComponents == rhs.maxTessellationEvaluationOutputComponents ) && - ( maxGeometryShaderInvocations == rhs.maxGeometryShaderInvocations ) && - ( maxGeometryInputComponents == rhs.maxGeometryInputComponents ) && - ( maxGeometryOutputComponents == rhs.maxGeometryOutputComponents ) && - ( maxGeometryOutputVertices == rhs.maxGeometryOutputVertices ) && - ( maxGeometryTotalOutputComponents == rhs.maxGeometryTotalOutputComponents ) && - ( maxFragmentInputComponents == rhs.maxFragmentInputComponents ) && - ( maxFragmentOutputAttachments == rhs.maxFragmentOutputAttachments ) && - ( maxFragmentDualSrcAttachments == rhs.maxFragmentDualSrcAttachments ) && - ( maxFragmentCombinedOutputResources == rhs.maxFragmentCombinedOutputResources ) && - ( maxComputeSharedMemorySize == rhs.maxComputeSharedMemorySize ) && - ( maxComputeWorkGroupCount == rhs.maxComputeWorkGroupCount ) && - ( maxComputeWorkGroupInvocations == rhs.maxComputeWorkGroupInvocations ) && - ( maxComputeWorkGroupSize == rhs.maxComputeWorkGroupSize ) && - ( subPixelPrecisionBits == rhs.subPixelPrecisionBits ) && - ( subTexelPrecisionBits == rhs.subTexelPrecisionBits ) && - ( mipmapPrecisionBits == rhs.mipmapPrecisionBits ) && - ( maxDrawIndexedIndexValue == rhs.maxDrawIndexedIndexValue ) && - ( maxDrawIndirectCount == rhs.maxDrawIndirectCount ) && ( maxSamplerLodBias == rhs.maxSamplerLodBias ) && - ( maxSamplerAnisotropy == rhs.maxSamplerAnisotropy ) && ( maxViewports == rhs.maxViewports ) && - ( maxViewportDimensions == rhs.maxViewportDimensions ) && - ( viewportBoundsRange == rhs.viewportBoundsRange ) && - ( viewportSubPixelBits == rhs.viewportSubPixelBits ) && - ( minMemoryMapAlignment == rhs.minMemoryMapAlignment ) && - ( minTexelBufferOffsetAlignment == rhs.minTexelBufferOffsetAlignment ) && - ( minUniformBufferOffsetAlignment == rhs.minUniformBufferOffsetAlignment ) && - ( minStorageBufferOffsetAlignment == rhs.minStorageBufferOffsetAlignment ) && - ( minTexelOffset == rhs.minTexelOffset ) && ( maxTexelOffset == rhs.maxTexelOffset ) && - ( minTexelGatherOffset == rhs.minTexelGatherOffset ) && - ( maxTexelGatherOffset == rhs.maxTexelGatherOffset ) && - ( minInterpolationOffset == rhs.minInterpolationOffset ) && - ( maxInterpolationOffset == rhs.maxInterpolationOffset ) && - ( subPixelInterpolationOffsetBits == rhs.subPixelInterpolationOffsetBits ) && - ( maxFramebufferWidth == rhs.maxFramebufferWidth ) && - ( maxFramebufferHeight == rhs.maxFramebufferHeight ) && - ( maxFramebufferLayers == rhs.maxFramebufferLayers ) && - ( framebufferColorSampleCounts == rhs.framebufferColorSampleCounts ) && - ( framebufferDepthSampleCounts == rhs.framebufferDepthSampleCounts ) && - ( framebufferStencilSampleCounts == rhs.framebufferStencilSampleCounts ) && - ( framebufferNoAttachmentsSampleCounts == rhs.framebufferNoAttachmentsSampleCounts ) && - ( maxColorAttachments == rhs.maxColorAttachments ) && - ( sampledImageColorSampleCounts == rhs.sampledImageColorSampleCounts ) && - ( sampledImageIntegerSampleCounts == rhs.sampledImageIntegerSampleCounts ) && - ( sampledImageDepthSampleCounts == rhs.sampledImageDepthSampleCounts ) && - ( sampledImageStencilSampleCounts == rhs.sampledImageStencilSampleCounts ) && - ( storageImageSampleCounts == rhs.storageImageSampleCounts ) && - ( maxSampleMaskWords == rhs.maxSampleMaskWords ) && - ( timestampComputeAndGraphics == rhs.timestampComputeAndGraphics ) && - ( timestampPeriod == rhs.timestampPeriod ) && ( maxClipDistances == rhs.maxClipDistances ) && - ( maxCullDistances == rhs.maxCullDistances ) && - ( maxCombinedClipAndCullDistances == rhs.maxCombinedClipAndCullDistances ) && - ( discreteQueuePriorities == rhs.discreteQueuePriorities ) && ( pointSizeRange == rhs.pointSizeRange ) && - ( lineWidthRange == rhs.lineWidthRange ) && ( pointSizeGranularity == rhs.pointSizeGranularity ) && - ( lineWidthGranularity == rhs.lineWidthGranularity ) && ( strictLines == rhs.strictLines ) && - ( standardSampleLocations == rhs.standardSampleLocations ) && - ( optimalBufferCopyOffsetAlignment == rhs.optimalBufferCopyOffsetAlignment ) && - ( optimalBufferCopyRowPitchAlignment == rhs.optimalBufferCopyRowPitchAlignment ) && - ( nonCoherentAtomSize == rhs.nonCoherentAtomSize ); -# endif - } - - bool operator!=( PhysicalDeviceLimits const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t maxImageDimension1D = {}; - uint32_t maxImageDimension2D = {}; - uint32_t maxImageDimension3D = {}; - uint32_t maxImageDimensionCube = {}; - uint32_t maxImageArrayLayers = {}; - uint32_t maxTexelBufferElements = {}; - uint32_t maxUniformBufferRange = {}; - uint32_t maxStorageBufferRange = {}; - uint32_t maxPushConstantsSize = {}; - uint32_t maxMemoryAllocationCount = {}; - uint32_t maxSamplerAllocationCount = {}; - VULKAN_HPP_NAMESPACE::DeviceSize bufferImageGranularity = {}; - VULKAN_HPP_NAMESPACE::DeviceSize sparseAddressSpaceSize = {}; - uint32_t maxBoundDescriptorSets = {}; - uint32_t maxPerStageDescriptorSamplers = {}; - uint32_t maxPerStageDescriptorUniformBuffers = {}; - uint32_t maxPerStageDescriptorStorageBuffers = {}; - uint32_t maxPerStageDescriptorSampledImages = {}; - uint32_t maxPerStageDescriptorStorageImages = {}; - uint32_t maxPerStageDescriptorInputAttachments = {}; - uint32_t maxPerStageResources = {}; - uint32_t maxDescriptorSetSamplers = {}; - uint32_t maxDescriptorSetUniformBuffers = {}; - uint32_t maxDescriptorSetUniformBuffersDynamic = {}; - uint32_t maxDescriptorSetStorageBuffers = {}; - uint32_t maxDescriptorSetStorageBuffersDynamic = {}; - uint32_t maxDescriptorSetSampledImages = {}; - uint32_t maxDescriptorSetStorageImages = {}; - uint32_t maxDescriptorSetInputAttachments = {}; - uint32_t maxVertexInputAttributes = {}; - uint32_t maxVertexInputBindings = {}; - uint32_t maxVertexInputAttributeOffset = {}; - uint32_t maxVertexInputBindingStride = {}; - uint32_t maxVertexOutputComponents = {}; - uint32_t maxTessellationGenerationLevel = {}; - uint32_t maxTessellationPatchSize = {}; - uint32_t maxTessellationControlPerVertexInputComponents = {}; - uint32_t maxTessellationControlPerVertexOutputComponents = {}; - uint32_t maxTessellationControlPerPatchOutputComponents = {}; - uint32_t maxTessellationControlTotalOutputComponents = {}; - uint32_t maxTessellationEvaluationInputComponents = {}; - uint32_t maxTessellationEvaluationOutputComponents = {}; - uint32_t maxGeometryShaderInvocations = {}; - uint32_t maxGeometryInputComponents = {}; - uint32_t maxGeometryOutputComponents = {}; - uint32_t maxGeometryOutputVertices = {}; - uint32_t maxGeometryTotalOutputComponents = {}; - uint32_t maxFragmentInputComponents = {}; - uint32_t maxFragmentOutputAttachments = {}; - uint32_t maxFragmentDualSrcAttachments = {}; - uint32_t maxFragmentCombinedOutputResources = {}; - uint32_t maxComputeSharedMemorySize = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D maxComputeWorkGroupCount = {}; - uint32_t maxComputeWorkGroupInvocations = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D maxComputeWorkGroupSize = {}; - uint32_t subPixelPrecisionBits = {}; - uint32_t subTexelPrecisionBits = {}; - uint32_t mipmapPrecisionBits = {}; - uint32_t maxDrawIndexedIndexValue = {}; - uint32_t maxDrawIndirectCount = {}; - float maxSamplerLodBias = {}; - float maxSamplerAnisotropy = {}; - uint32_t maxViewports = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D maxViewportDimensions = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D viewportBoundsRange = {}; - uint32_t viewportSubPixelBits = {}; - size_t minMemoryMapAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize minTexelBufferOffsetAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize minUniformBufferOffsetAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize minStorageBufferOffsetAlignment = {}; - int32_t minTexelOffset = {}; - uint32_t maxTexelOffset = {}; - int32_t minTexelGatherOffset = {}; - uint32_t maxTexelGatherOffset = {}; - float minInterpolationOffset = {}; - float maxInterpolationOffset = {}; - uint32_t subPixelInterpolationOffsetBits = {}; - uint32_t maxFramebufferWidth = {}; - uint32_t maxFramebufferHeight = {}; - uint32_t maxFramebufferLayers = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferColorSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferDepthSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferStencilSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferNoAttachmentsSampleCounts = {}; - uint32_t maxColorAttachments = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageColorSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageIntegerSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageDepthSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampledImageStencilSampleCounts = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags storageImageSampleCounts = {}; - uint32_t maxSampleMaskWords = {}; - VULKAN_HPP_NAMESPACE::Bool32 timestampComputeAndGraphics = {}; - float timestampPeriod = {}; - uint32_t maxClipDistances = {}; - uint32_t maxCullDistances = {}; - uint32_t maxCombinedClipAndCullDistances = {}; - uint32_t discreteQueuePriorities = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D pointSizeRange = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D lineWidthRange = {}; - float pointSizeGranularity = {}; - float lineWidthGranularity = {}; - VULKAN_HPP_NAMESPACE::Bool32 strictLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 standardSampleLocations = {}; - VULKAN_HPP_NAMESPACE::DeviceSize optimalBufferCopyOffsetAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize optimalBufferCopyRowPitchAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize nonCoherentAtomSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceLimits ) == sizeof( VkPhysicalDeviceLimits ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDeviceLimits is not nothrow_move_constructible!" ); - - struct PhysicalDeviceLineRasterizationFeaturesEXT - { - using NativeType = VkPhysicalDeviceLineRasterizationFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceLineRasterizationFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceLineRasterizationFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 rectangularLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bresenhamLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 smoothLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 stippledRectangularLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 stippledBresenhamLines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 stippledSmoothLines_ = {} ) VULKAN_HPP_NOEXCEPT - : rectangularLines( rectangularLines_ ) - , bresenhamLines( bresenhamLines_ ) - , smoothLines( smoothLines_ ) - , stippledRectangularLines( stippledRectangularLines_ ) - , stippledBresenhamLines( stippledBresenhamLines_ ) - , stippledSmoothLines( stippledSmoothLines_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceLineRasterizationFeaturesEXT( - PhysicalDeviceLineRasterizationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLineRasterizationFeaturesEXT( VkPhysicalDeviceLineRasterizationFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceLineRasterizationFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceLineRasterizationFeaturesEXT & - operator=( PhysicalDeviceLineRasterizationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLineRasterizationFeaturesEXT & - operator=( VkPhysicalDeviceLineRasterizationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & - setRectangularLines( VULKAN_HPP_NAMESPACE::Bool32 rectangularLines_ ) VULKAN_HPP_NOEXCEPT - { - rectangularLines = rectangularLines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & - setBresenhamLines( VULKAN_HPP_NAMESPACE::Bool32 bresenhamLines_ ) VULKAN_HPP_NOEXCEPT - { - bresenhamLines = bresenhamLines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & - setSmoothLines( VULKAN_HPP_NAMESPACE::Bool32 smoothLines_ ) VULKAN_HPP_NOEXCEPT - { - smoothLines = smoothLines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & - setStippledRectangularLines( VULKAN_HPP_NAMESPACE::Bool32 stippledRectangularLines_ ) VULKAN_HPP_NOEXCEPT - { - stippledRectangularLines = stippledRectangularLines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & - setStippledBresenhamLines( VULKAN_HPP_NAMESPACE::Bool32 stippledBresenhamLines_ ) VULKAN_HPP_NOEXCEPT - { - stippledBresenhamLines = stippledBresenhamLines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLineRasterizationFeaturesEXT & - setStippledSmoothLines( VULKAN_HPP_NAMESPACE::Bool32 stippledSmoothLines_ ) VULKAN_HPP_NOEXCEPT - { - stippledSmoothLines = stippledSmoothLines_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceLineRasterizationFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceLineRasterizationFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - rectangularLines, - bresenhamLines, - smoothLines, - stippledRectangularLines, - stippledBresenhamLines, - stippledSmoothLines ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceLineRasterizationFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceLineRasterizationFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( rectangularLines == rhs.rectangularLines ) && - ( bresenhamLines == rhs.bresenhamLines ) && ( smoothLines == rhs.smoothLines ) && - ( stippledRectangularLines == rhs.stippledRectangularLines ) && - ( stippledBresenhamLines == rhs.stippledBresenhamLines ) && - ( stippledSmoothLines == rhs.stippledSmoothLines ); -# endif - } - - bool operator!=( PhysicalDeviceLineRasterizationFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceLineRasterizationFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 rectangularLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 bresenhamLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 smoothLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 stippledRectangularLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 stippledBresenhamLines = {}; - VULKAN_HPP_NAMESPACE::Bool32 stippledSmoothLines = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceLineRasterizationFeaturesEXT ) == - sizeof( VkPhysicalDeviceLineRasterizationFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceLineRasterizationFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceLineRasterizationFeaturesEXT; - }; - - struct PhysicalDeviceLineRasterizationPropertiesEXT - { - using NativeType = VkPhysicalDeviceLineRasterizationPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceLineRasterizationPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceLineRasterizationPropertiesEXT( uint32_t lineSubPixelPrecisionBits_ = {} ) VULKAN_HPP_NOEXCEPT - : lineSubPixelPrecisionBits( lineSubPixelPrecisionBits_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceLineRasterizationPropertiesEXT( - PhysicalDeviceLineRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLineRasterizationPropertiesEXT( VkPhysicalDeviceLineRasterizationPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceLineRasterizationPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceLineRasterizationPropertiesEXT & - operator=( PhysicalDeviceLineRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLineRasterizationPropertiesEXT & - operator=( VkPhysicalDeviceLineRasterizationPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceLineRasterizationPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceLineRasterizationPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, lineSubPixelPrecisionBits ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceLineRasterizationPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceLineRasterizationPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( lineSubPixelPrecisionBits == rhs.lineSubPixelPrecisionBits ); -# endif - } - - bool operator!=( PhysicalDeviceLineRasterizationPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceLineRasterizationPropertiesEXT; - void * pNext = {}; - uint32_t lineSubPixelPrecisionBits = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceLineRasterizationPropertiesEXT ) == - sizeof( VkPhysicalDeviceLineRasterizationPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceLineRasterizationPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceLineRasterizationPropertiesEXT; - }; - - struct PhysicalDeviceLinearColorAttachmentFeaturesNV - { - using NativeType = VkPhysicalDeviceLinearColorAttachmentFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceLinearColorAttachmentFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceLinearColorAttachmentFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 linearColorAttachment_ = {} ) VULKAN_HPP_NOEXCEPT - : linearColorAttachment( linearColorAttachment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceLinearColorAttachmentFeaturesNV( - PhysicalDeviceLinearColorAttachmentFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLinearColorAttachmentFeaturesNV( VkPhysicalDeviceLinearColorAttachmentFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceLinearColorAttachmentFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceLinearColorAttachmentFeaturesNV & - operator=( PhysicalDeviceLinearColorAttachmentFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceLinearColorAttachmentFeaturesNV & - operator=( VkPhysicalDeviceLinearColorAttachmentFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLinearColorAttachmentFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceLinearColorAttachmentFeaturesNV & - setLinearColorAttachment( VULKAN_HPP_NAMESPACE::Bool32 linearColorAttachment_ ) VULKAN_HPP_NOEXCEPT - { - linearColorAttachment = linearColorAttachment_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceLinearColorAttachmentFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceLinearColorAttachmentFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, linearColorAttachment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceLinearColorAttachmentFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceLinearColorAttachmentFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( linearColorAttachment == rhs.linearColorAttachment ); -# endif - } - - bool operator!=( PhysicalDeviceLinearColorAttachmentFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceLinearColorAttachmentFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 linearColorAttachment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceLinearColorAttachmentFeaturesNV ) == - sizeof( VkPhysicalDeviceLinearColorAttachmentFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceLinearColorAttachmentFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceLinearColorAttachmentFeaturesNV; - }; - - struct PhysicalDeviceMaintenance3Properties - { - using NativeType = VkPhysicalDeviceMaintenance3Properties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMaintenance3Properties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance3Properties( - uint32_t maxPerSetDescriptors_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize_ = {} ) VULKAN_HPP_NOEXCEPT - : maxPerSetDescriptors( maxPerSetDescriptors_ ) - , maxMemoryAllocationSize( maxMemoryAllocationSize_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance3Properties( PhysicalDeviceMaintenance3Properties const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMaintenance3Properties( VkPhysicalDeviceMaintenance3Properties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMaintenance3Properties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMaintenance3Properties & - operator=( PhysicalDeviceMaintenance3Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMaintenance3Properties & - operator=( VkPhysicalDeviceMaintenance3Properties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMaintenance3Properties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMaintenance3Properties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxPerSetDescriptors, maxMemoryAllocationSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMaintenance3Properties const & ) const = default; -#else - bool operator==( PhysicalDeviceMaintenance3Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxPerSetDescriptors == rhs.maxPerSetDescriptors ) && - ( maxMemoryAllocationSize == rhs.maxMemoryAllocationSize ); -# endif - } - - bool operator!=( PhysicalDeviceMaintenance3Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMaintenance3Properties; - void * pNext = {}; - uint32_t maxPerSetDescriptors = {}; - VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties ) == - sizeof( VkPhysicalDeviceMaintenance3Properties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMaintenance3Properties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMaintenance3Properties; - }; - using PhysicalDeviceMaintenance3PropertiesKHR = PhysicalDeviceMaintenance3Properties; - - struct PhysicalDeviceMaintenance4Features - { - using NativeType = VkPhysicalDeviceMaintenance4Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMaintenance4Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMaintenance4Features( VULKAN_HPP_NAMESPACE::Bool32 maintenance4_ = {} ) VULKAN_HPP_NOEXCEPT - : maintenance4( maintenance4_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance4Features( PhysicalDeviceMaintenance4Features const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMaintenance4Features( VkPhysicalDeviceMaintenance4Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMaintenance4Features( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMaintenance4Features & - operator=( PhysicalDeviceMaintenance4Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMaintenance4Features & - operator=( VkPhysicalDeviceMaintenance4Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMaintenance4Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMaintenance4Features & - setMaintenance4( VULKAN_HPP_NAMESPACE::Bool32 maintenance4_ ) VULKAN_HPP_NOEXCEPT - { - maintenance4 = maintenance4_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceMaintenance4Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMaintenance4Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maintenance4 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMaintenance4Features const & ) const = default; -#else - bool operator==( PhysicalDeviceMaintenance4Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maintenance4 == rhs.maintenance4 ); -# endif - } - - bool operator!=( PhysicalDeviceMaintenance4Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMaintenance4Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 maintenance4 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance4Features ) == - sizeof( VkPhysicalDeviceMaintenance4Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMaintenance4Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMaintenance4Features; - }; - using PhysicalDeviceMaintenance4FeaturesKHR = PhysicalDeviceMaintenance4Features; - - struct PhysicalDeviceMaintenance4Properties - { - using NativeType = VkPhysicalDeviceMaintenance4Properties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMaintenance4Properties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMaintenance4Properties( VULKAN_HPP_NAMESPACE::DeviceSize maxBufferSize_ = {} ) VULKAN_HPP_NOEXCEPT - : maxBufferSize( maxBufferSize_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance4Properties( PhysicalDeviceMaintenance4Properties const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMaintenance4Properties( VkPhysicalDeviceMaintenance4Properties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMaintenance4Properties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMaintenance4Properties & - operator=( PhysicalDeviceMaintenance4Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMaintenance4Properties & - operator=( VkPhysicalDeviceMaintenance4Properties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMaintenance4Properties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMaintenance4Properties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxBufferSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMaintenance4Properties const & ) const = default; -#else - bool operator==( PhysicalDeviceMaintenance4Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxBufferSize == rhs.maxBufferSize ); -# endif - } - - bool operator!=( PhysicalDeviceMaintenance4Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMaintenance4Properties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize maxBufferSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance4Properties ) == - sizeof( VkPhysicalDeviceMaintenance4Properties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMaintenance4Properties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMaintenance4Properties; - }; - using PhysicalDeviceMaintenance4PropertiesKHR = PhysicalDeviceMaintenance4Properties; - - struct PhysicalDeviceMemoryBudgetPropertiesEXT - { - using NativeType = VkPhysicalDeviceMemoryBudgetPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMemoryBudgetPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMemoryBudgetPropertiesEXT( - std::array const & heapBudget_ = {}, - std::array const & heapUsage_ = {} ) VULKAN_HPP_NOEXCEPT - : heapBudget( heapBudget_ ) - , heapUsage( heapUsage_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMemoryBudgetPropertiesEXT( - PhysicalDeviceMemoryBudgetPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryBudgetPropertiesEXT( VkPhysicalDeviceMemoryBudgetPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMemoryBudgetPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMemoryBudgetPropertiesEXT & - operator=( PhysicalDeviceMemoryBudgetPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryBudgetPropertiesEXT & - operator=( VkPhysicalDeviceMemoryBudgetPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMemoryBudgetPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMemoryBudgetPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, heapBudget, heapUsage ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMemoryBudgetPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceMemoryBudgetPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( heapBudget == rhs.heapBudget ) && - ( heapUsage == rhs.heapUsage ); -# endif - } - - bool operator!=( PhysicalDeviceMemoryBudgetPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMemoryBudgetPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D heapBudget = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D heapUsage = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryBudgetPropertiesEXT ) == - sizeof( VkPhysicalDeviceMemoryBudgetPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMemoryBudgetPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMemoryBudgetPropertiesEXT; - }; - - struct PhysicalDeviceMemoryPriorityFeaturesEXT - { - using NativeType = VkPhysicalDeviceMemoryPriorityFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMemoryPriorityFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMemoryPriorityFeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 memoryPriority_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryPriority( memoryPriority_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMemoryPriorityFeaturesEXT( PhysicalDeviceMemoryPriorityFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryPriorityFeaturesEXT( VkPhysicalDeviceMemoryPriorityFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMemoryPriorityFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMemoryPriorityFeaturesEXT & - operator=( PhysicalDeviceMemoryPriorityFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryPriorityFeaturesEXT & - operator=( VkPhysicalDeviceMemoryPriorityFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMemoryPriorityFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMemoryPriorityFeaturesEXT & - setMemoryPriority( VULKAN_HPP_NAMESPACE::Bool32 memoryPriority_ ) VULKAN_HPP_NOEXCEPT - { - memoryPriority = memoryPriority_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceMemoryPriorityFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMemoryPriorityFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryPriority ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMemoryPriorityFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceMemoryPriorityFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryPriority == rhs.memoryPriority ); -# endif - } - - bool operator!=( PhysicalDeviceMemoryPriorityFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMemoryPriorityFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 memoryPriority = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryPriorityFeaturesEXT ) == - sizeof( VkPhysicalDeviceMemoryPriorityFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMemoryPriorityFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMemoryPriorityFeaturesEXT; - }; - - struct PhysicalDeviceMemoryProperties - { - using NativeType = VkPhysicalDeviceMemoryProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMemoryProperties( - uint32_t memoryTypeCount_ = {}, - std::array const & memoryTypes_ = {}, - uint32_t memoryHeapCount_ = {}, - std::array const & memoryHeaps_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryTypeCount( memoryTypeCount_ ) - , memoryTypes( memoryTypes_ ) - , memoryHeapCount( memoryHeapCount_ ) - , memoryHeaps( memoryHeaps_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceMemoryProperties( PhysicalDeviceMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryProperties( VkPhysicalDeviceMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMemoryProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMemoryProperties & - operator=( PhysicalDeviceMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryProperties & operator=( VkPhysicalDeviceMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMemoryProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMemoryProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( memoryTypeCount, memoryTypes, memoryHeapCount, memoryHeaps ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMemoryProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceMemoryProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( memoryTypeCount == rhs.memoryTypeCount ) && ( memoryTypes == rhs.memoryTypes ) && - ( memoryHeapCount == rhs.memoryHeapCount ) && ( memoryHeaps == rhs.memoryHeaps ); -# endif - } - - bool operator!=( PhysicalDeviceMemoryProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t memoryTypeCount = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D memoryTypes = {}; - uint32_t memoryHeapCount = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D memoryHeaps = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties ) == - sizeof( VkPhysicalDeviceMemoryProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMemoryProperties is not nothrow_move_constructible!" ); - - struct PhysicalDeviceMemoryProperties2 - { - using NativeType = VkPhysicalDeviceMemoryProperties2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceMemoryProperties2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMemoryProperties2( - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties memoryProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryProperties( memoryProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceMemoryProperties2( PhysicalDeviceMemoryProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryProperties2( VkPhysicalDeviceMemoryProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMemoryProperties2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMemoryProperties2 & - operator=( PhysicalDeviceMemoryProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMemoryProperties2 & operator=( VkPhysicalDeviceMemoryProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMemoryProperties2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMemoryProperties2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMemoryProperties2 const & ) const = default; -#else - bool operator==( PhysicalDeviceMemoryProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryProperties == rhs.memoryProperties ); -# endif - } - - bool operator!=( PhysicalDeviceMemoryProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMemoryProperties2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties memoryProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMemoryProperties2 ) == - sizeof( VkPhysicalDeviceMemoryProperties2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMemoryProperties2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMemoryProperties2; - }; - using PhysicalDeviceMemoryProperties2KHR = PhysicalDeviceMemoryProperties2; - - struct PhysicalDeviceMeshShaderFeaturesNV - { - using NativeType = VkPhysicalDeviceMeshShaderFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMeshShaderFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMeshShaderFeaturesNV( VULKAN_HPP_NAMESPACE::Bool32 taskShader_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 meshShader_ = {} ) VULKAN_HPP_NOEXCEPT - : taskShader( taskShader_ ) - , meshShader( meshShader_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMeshShaderFeaturesNV( PhysicalDeviceMeshShaderFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMeshShaderFeaturesNV( VkPhysicalDeviceMeshShaderFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMeshShaderFeaturesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMeshShaderFeaturesNV & - operator=( PhysicalDeviceMeshShaderFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMeshShaderFeaturesNV & - operator=( VkPhysicalDeviceMeshShaderFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMeshShaderFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMeshShaderFeaturesNV & - setTaskShader( VULKAN_HPP_NAMESPACE::Bool32 taskShader_ ) VULKAN_HPP_NOEXCEPT - { - taskShader = taskShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMeshShaderFeaturesNV & - setMeshShader( VULKAN_HPP_NAMESPACE::Bool32 meshShader_ ) VULKAN_HPP_NOEXCEPT - { - meshShader = meshShader_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceMeshShaderFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMeshShaderFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, taskShader, meshShader ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMeshShaderFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceMeshShaderFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( taskShader == rhs.taskShader ) && - ( meshShader == rhs.meshShader ); -# endif - } - - bool operator!=( PhysicalDeviceMeshShaderFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMeshShaderFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 taskShader = {}; - VULKAN_HPP_NAMESPACE::Bool32 meshShader = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMeshShaderFeaturesNV ) == - sizeof( VkPhysicalDeviceMeshShaderFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMeshShaderFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMeshShaderFeaturesNV; - }; - - struct PhysicalDeviceMeshShaderPropertiesNV - { - using NativeType = VkPhysicalDeviceMeshShaderPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMeshShaderPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceMeshShaderPropertiesNV( uint32_t maxDrawMeshTasksCount_ = {}, - uint32_t maxTaskWorkGroupInvocations_ = {}, - std::array const & maxTaskWorkGroupSize_ = {}, - uint32_t maxTaskTotalMemorySize_ = {}, - uint32_t maxTaskOutputCount_ = {}, - uint32_t maxMeshWorkGroupInvocations_ = {}, - std::array const & maxMeshWorkGroupSize_ = {}, - uint32_t maxMeshTotalMemorySize_ = {}, - uint32_t maxMeshOutputVertices_ = {}, - uint32_t maxMeshOutputPrimitives_ = {}, - uint32_t maxMeshMultiviewViewCount_ = {}, - uint32_t meshOutputPerVertexGranularity_ = {}, - uint32_t meshOutputPerPrimitiveGranularity_ = {} ) VULKAN_HPP_NOEXCEPT - : maxDrawMeshTasksCount( maxDrawMeshTasksCount_ ) - , maxTaskWorkGroupInvocations( maxTaskWorkGroupInvocations_ ) - , maxTaskWorkGroupSize( maxTaskWorkGroupSize_ ) - , maxTaskTotalMemorySize( maxTaskTotalMemorySize_ ) - , maxTaskOutputCount( maxTaskOutputCount_ ) - , maxMeshWorkGroupInvocations( maxMeshWorkGroupInvocations_ ) - , maxMeshWorkGroupSize( maxMeshWorkGroupSize_ ) - , maxMeshTotalMemorySize( maxMeshTotalMemorySize_ ) - , maxMeshOutputVertices( maxMeshOutputVertices_ ) - , maxMeshOutputPrimitives( maxMeshOutputPrimitives_ ) - , maxMeshMultiviewViewCount( maxMeshMultiviewViewCount_ ) - , meshOutputPerVertexGranularity( meshOutputPerVertexGranularity_ ) - , meshOutputPerPrimitiveGranularity( meshOutputPerPrimitiveGranularity_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMeshShaderPropertiesNV( PhysicalDeviceMeshShaderPropertiesNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMeshShaderPropertiesNV( VkPhysicalDeviceMeshShaderPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMeshShaderPropertiesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMeshShaderPropertiesNV & - operator=( PhysicalDeviceMeshShaderPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMeshShaderPropertiesNV & - operator=( VkPhysicalDeviceMeshShaderPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMeshShaderPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMeshShaderPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - maxDrawMeshTasksCount, - maxTaskWorkGroupInvocations, - maxTaskWorkGroupSize, - maxTaskTotalMemorySize, - maxTaskOutputCount, - maxMeshWorkGroupInvocations, - maxMeshWorkGroupSize, - maxMeshTotalMemorySize, - maxMeshOutputVertices, - maxMeshOutputPrimitives, - maxMeshMultiviewViewCount, - meshOutputPerVertexGranularity, - meshOutputPerPrimitiveGranularity ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMeshShaderPropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceMeshShaderPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxDrawMeshTasksCount == rhs.maxDrawMeshTasksCount ) && - ( maxTaskWorkGroupInvocations == rhs.maxTaskWorkGroupInvocations ) && - ( maxTaskWorkGroupSize == rhs.maxTaskWorkGroupSize ) && - ( maxTaskTotalMemorySize == rhs.maxTaskTotalMemorySize ) && - ( maxTaskOutputCount == rhs.maxTaskOutputCount ) && - ( maxMeshWorkGroupInvocations == rhs.maxMeshWorkGroupInvocations ) && - ( maxMeshWorkGroupSize == rhs.maxMeshWorkGroupSize ) && - ( maxMeshTotalMemorySize == rhs.maxMeshTotalMemorySize ) && - ( maxMeshOutputVertices == rhs.maxMeshOutputVertices ) && - ( maxMeshOutputPrimitives == rhs.maxMeshOutputPrimitives ) && - ( maxMeshMultiviewViewCount == rhs.maxMeshMultiviewViewCount ) && - ( meshOutputPerVertexGranularity == rhs.meshOutputPerVertexGranularity ) && - ( meshOutputPerPrimitiveGranularity == rhs.meshOutputPerPrimitiveGranularity ); -# endif - } - - bool operator!=( PhysicalDeviceMeshShaderPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMeshShaderPropertiesNV; - void * pNext = {}; - uint32_t maxDrawMeshTasksCount = {}; - uint32_t maxTaskWorkGroupInvocations = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D maxTaskWorkGroupSize = {}; - uint32_t maxTaskTotalMemorySize = {}; - uint32_t maxTaskOutputCount = {}; - uint32_t maxMeshWorkGroupInvocations = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D maxMeshWorkGroupSize = {}; - uint32_t maxMeshTotalMemorySize = {}; - uint32_t maxMeshOutputVertices = {}; - uint32_t maxMeshOutputPrimitives = {}; - uint32_t maxMeshMultiviewViewCount = {}; - uint32_t meshOutputPerVertexGranularity = {}; - uint32_t meshOutputPerPrimitiveGranularity = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMeshShaderPropertiesNV ) == - sizeof( VkPhysicalDeviceMeshShaderPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMeshShaderPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMeshShaderPropertiesNV; - }; - - struct PhysicalDeviceMultiDrawFeaturesEXT - { - using NativeType = VkPhysicalDeviceMultiDrawFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMultiDrawFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMultiDrawFeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 multiDraw_ = {} ) VULKAN_HPP_NOEXCEPT - : multiDraw( multiDraw_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMultiDrawFeaturesEXT( PhysicalDeviceMultiDrawFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiDrawFeaturesEXT( VkPhysicalDeviceMultiDrawFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMultiDrawFeaturesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMultiDrawFeaturesEXT & - operator=( PhysicalDeviceMultiDrawFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiDrawFeaturesEXT & - operator=( VkPhysicalDeviceMultiDrawFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMultiDrawFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMultiDrawFeaturesEXT & - setMultiDraw( VULKAN_HPP_NAMESPACE::Bool32 multiDraw_ ) VULKAN_HPP_NOEXCEPT - { - multiDraw = multiDraw_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceMultiDrawFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMultiDrawFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, multiDraw ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMultiDrawFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceMultiDrawFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( multiDraw == rhs.multiDraw ); -# endif - } - - bool operator!=( PhysicalDeviceMultiDrawFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMultiDrawFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiDraw = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiDrawFeaturesEXT ) == - sizeof( VkPhysicalDeviceMultiDrawFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMultiDrawFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMultiDrawFeaturesEXT; - }; - - struct PhysicalDeviceMultiDrawPropertiesEXT - { - using NativeType = VkPhysicalDeviceMultiDrawPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMultiDrawPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceMultiDrawPropertiesEXT( uint32_t maxMultiDrawCount_ = {} ) VULKAN_HPP_NOEXCEPT - : maxMultiDrawCount( maxMultiDrawCount_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMultiDrawPropertiesEXT( PhysicalDeviceMultiDrawPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiDrawPropertiesEXT( VkPhysicalDeviceMultiDrawPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMultiDrawPropertiesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMultiDrawPropertiesEXT & - operator=( PhysicalDeviceMultiDrawPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiDrawPropertiesEXT & - operator=( VkPhysicalDeviceMultiDrawPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMultiDrawPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMultiDrawPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxMultiDrawCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMultiDrawPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceMultiDrawPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxMultiDrawCount == rhs.maxMultiDrawCount ); -# endif - } - - bool operator!=( PhysicalDeviceMultiDrawPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMultiDrawPropertiesEXT; - void * pNext = {}; - uint32_t maxMultiDrawCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiDrawPropertiesEXT ) == - sizeof( VkPhysicalDeviceMultiDrawPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMultiDrawPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMultiDrawPropertiesEXT; - }; - - struct PhysicalDeviceMultiviewFeatures - { - using NativeType = VkPhysicalDeviceMultiviewFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceMultiviewFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceMultiviewFeatures( - VULKAN_HPP_NAMESPACE::Bool32 multiview_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiviewGeometryShader_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiviewTessellationShader_ = {} ) VULKAN_HPP_NOEXCEPT - : multiview( multiview_ ) - , multiviewGeometryShader( multiviewGeometryShader_ ) - , multiviewTessellationShader( multiviewTessellationShader_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMultiviewFeatures( PhysicalDeviceMultiviewFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiviewFeatures( VkPhysicalDeviceMultiviewFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMultiviewFeatures( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMultiviewFeatures & - operator=( PhysicalDeviceMultiviewFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiviewFeatures & operator=( VkPhysicalDeviceMultiviewFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMultiviewFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMultiviewFeatures & - setMultiview( VULKAN_HPP_NAMESPACE::Bool32 multiview_ ) VULKAN_HPP_NOEXCEPT - { - multiview = multiview_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMultiviewFeatures & - setMultiviewGeometryShader( VULKAN_HPP_NAMESPACE::Bool32 multiviewGeometryShader_ ) VULKAN_HPP_NOEXCEPT - { - multiviewGeometryShader = multiviewGeometryShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMultiviewFeatures & - setMultiviewTessellationShader( VULKAN_HPP_NAMESPACE::Bool32 multiviewTessellationShader_ ) VULKAN_HPP_NOEXCEPT - { - multiviewTessellationShader = multiviewTessellationShader_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceMultiviewFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMultiviewFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, multiview, multiviewGeometryShader, multiviewTessellationShader ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMultiviewFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceMultiviewFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( multiview == rhs.multiview ) && - ( multiviewGeometryShader == rhs.multiviewGeometryShader ) && - ( multiviewTessellationShader == rhs.multiviewTessellationShader ); -# endif - } - - bool operator!=( PhysicalDeviceMultiviewFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMultiviewFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiview = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiviewGeometryShader = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiviewTessellationShader = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewFeatures ) == - sizeof( VkPhysicalDeviceMultiviewFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMultiviewFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMultiviewFeatures; - }; - using PhysicalDeviceMultiviewFeaturesKHR = PhysicalDeviceMultiviewFeatures; - - struct PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX - { - using NativeType = VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMultiviewPerViewAttributesPropertiesNVX; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX( - VULKAN_HPP_NAMESPACE::Bool32 perViewPositionAllComponents_ = {} ) VULKAN_HPP_NOEXCEPT - : perViewPositionAllComponents( perViewPositionAllComponents_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX( - PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX( - VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX & - operator=( PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX & - operator=( VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, perViewPositionAllComponents ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & ) const = default; -#else - bool operator==( PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( perViewPositionAllComponents == rhs.perViewPositionAllComponents ); -# endif - } - - bool operator!=( PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMultiviewPerViewAttributesPropertiesNVX; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 perViewPositionAllComponents = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX ) == - sizeof( VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX>::value, - "PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX; - }; - - struct PhysicalDeviceMultiviewProperties - { - using NativeType = VkPhysicalDeviceMultiviewProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMultiviewProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMultiviewProperties( uint32_t maxMultiviewViewCount_ = {}, - uint32_t maxMultiviewInstanceIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : maxMultiviewViewCount( maxMultiviewViewCount_ ) - , maxMultiviewInstanceIndex( maxMultiviewInstanceIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceMultiviewProperties( PhysicalDeviceMultiviewProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiviewProperties( VkPhysicalDeviceMultiviewProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMultiviewProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMultiviewProperties & - operator=( PhysicalDeviceMultiviewProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMultiviewProperties & operator=( VkPhysicalDeviceMultiviewProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceMultiviewProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMultiviewProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxMultiviewViewCount, maxMultiviewInstanceIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMultiviewProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceMultiviewProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxMultiviewViewCount == rhs.maxMultiviewViewCount ) && - ( maxMultiviewInstanceIndex == rhs.maxMultiviewInstanceIndex ); -# endif - } - - bool operator!=( PhysicalDeviceMultiviewProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMultiviewProperties; - void * pNext = {}; - uint32_t maxMultiviewViewCount = {}; - uint32_t maxMultiviewInstanceIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMultiviewProperties ) == - sizeof( VkPhysicalDeviceMultiviewProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMultiviewProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMultiviewProperties; - }; - using PhysicalDeviceMultiviewPropertiesKHR = PhysicalDeviceMultiviewProperties; - - struct PhysicalDeviceMutableDescriptorTypeFeaturesVALVE - { - using NativeType = VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceMutableDescriptorTypeFeaturesVALVE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceMutableDescriptorTypeFeaturesVALVE( - VULKAN_HPP_NAMESPACE::Bool32 mutableDescriptorType_ = {} ) VULKAN_HPP_NOEXCEPT - : mutableDescriptorType( mutableDescriptorType_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceMutableDescriptorTypeFeaturesVALVE( - PhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMutableDescriptorTypeFeaturesVALVE( VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceMutableDescriptorTypeFeaturesVALVE( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceMutableDescriptorTypeFeaturesVALVE & - operator=( PhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceMutableDescriptorTypeFeaturesVALVE & - operator=( VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMutableDescriptorTypeFeaturesVALVE & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceMutableDescriptorTypeFeaturesVALVE & - setMutableDescriptorType( VULKAN_HPP_NAMESPACE::Bool32 mutableDescriptorType_ ) VULKAN_HPP_NOEXCEPT - { - mutableDescriptorType = mutableDescriptorType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, mutableDescriptorType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & ) const = default; -#else - bool operator==( PhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( mutableDescriptorType == rhs.mutableDescriptorType ); -# endif - } - - bool operator!=( PhysicalDeviceMutableDescriptorTypeFeaturesVALVE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMutableDescriptorTypeFeaturesVALVE; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 mutableDescriptorType = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceMutableDescriptorTypeFeaturesVALVE ) == - sizeof( VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceMutableDescriptorTypeFeaturesVALVE is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceMutableDescriptorTypeFeaturesVALVE; - }; - - struct PhysicalDevicePCIBusInfoPropertiesEXT - { - using NativeType = VkPhysicalDevicePCIBusInfoPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePciBusInfoPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePCIBusInfoPropertiesEXT( uint32_t pciDomain_ = {}, - uint32_t pciBus_ = {}, - uint32_t pciDevice_ = {}, - uint32_t pciFunction_ = {} ) VULKAN_HPP_NOEXCEPT - : pciDomain( pciDomain_ ) - , pciBus( pciBus_ ) - , pciDevice( pciDevice_ ) - , pciFunction( pciFunction_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePCIBusInfoPropertiesEXT( PhysicalDevicePCIBusInfoPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePCIBusInfoPropertiesEXT( VkPhysicalDevicePCIBusInfoPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePCIBusInfoPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePCIBusInfoPropertiesEXT & - operator=( PhysicalDevicePCIBusInfoPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePCIBusInfoPropertiesEXT & - operator=( VkPhysicalDevicePCIBusInfoPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDevicePCIBusInfoPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePCIBusInfoPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pciDomain, pciBus, pciDevice, pciFunction ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePCIBusInfoPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDevicePCIBusInfoPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pciDomain == rhs.pciDomain ) && - ( pciBus == rhs.pciBus ) && ( pciDevice == rhs.pciDevice ) && ( pciFunction == rhs.pciFunction ); -# endif - } - - bool operator!=( PhysicalDevicePCIBusInfoPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePciBusInfoPropertiesEXT; - void * pNext = {}; - uint32_t pciDomain = {}; - uint32_t pciBus = {}; - uint32_t pciDevice = {}; - uint32_t pciFunction = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePCIBusInfoPropertiesEXT ) == - sizeof( VkPhysicalDevicePCIBusInfoPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePCIBusInfoPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePCIBusInfoPropertiesEXT; - }; - - struct PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT - { - using NativeType = VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePageableDeviceLocalMemoryFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 pageableDeviceLocalMemory_ = {} ) VULKAN_HPP_NOEXCEPT - : pageableDeviceLocalMemory( pageableDeviceLocalMemory_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT( - PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT( - VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT & - operator=( PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT & - operator=( VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT & - setPageableDeviceLocalMemory( VULKAN_HPP_NAMESPACE::Bool32 pageableDeviceLocalMemory_ ) VULKAN_HPP_NOEXCEPT - { - pageableDeviceLocalMemory = pageableDeviceLocalMemory_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pageableDeviceLocalMemory ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( pageableDeviceLocalMemory == rhs.pageableDeviceLocalMemory ); -# endif - } - - bool operator!=( PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePageableDeviceLocalMemoryFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 pageableDeviceLocalMemory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT ) == - sizeof( VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePageableDeviceLocalMemoryFeaturesEXT; - }; - - struct PhysicalDevicePerformanceQueryFeaturesKHR - { - using NativeType = VkPhysicalDevicePerformanceQueryFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePerformanceQueryFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePerformanceQueryFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 performanceCounterQueryPools_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 performanceCounterMultipleQueryPools_ = {} ) VULKAN_HPP_NOEXCEPT - : performanceCounterQueryPools( performanceCounterQueryPools_ ) - , performanceCounterMultipleQueryPools( performanceCounterMultipleQueryPools_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePerformanceQueryFeaturesKHR( - PhysicalDevicePerformanceQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePerformanceQueryFeaturesKHR( VkPhysicalDevicePerformanceQueryFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDevicePerformanceQueryFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePerformanceQueryFeaturesKHR & - operator=( PhysicalDevicePerformanceQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePerformanceQueryFeaturesKHR & - operator=( VkPhysicalDevicePerformanceQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePerformanceQueryFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePerformanceQueryFeaturesKHR & - setPerformanceCounterQueryPools( VULKAN_HPP_NAMESPACE::Bool32 performanceCounterQueryPools_ ) VULKAN_HPP_NOEXCEPT - { - performanceCounterQueryPools = performanceCounterQueryPools_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePerformanceQueryFeaturesKHR & setPerformanceCounterMultipleQueryPools( - VULKAN_HPP_NAMESPACE::Bool32 performanceCounterMultipleQueryPools_ ) VULKAN_HPP_NOEXCEPT - { - performanceCounterMultipleQueryPools = performanceCounterMultipleQueryPools_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePerformanceQueryFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePerformanceQueryFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, performanceCounterQueryPools, performanceCounterMultipleQueryPools ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePerformanceQueryFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDevicePerformanceQueryFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( performanceCounterQueryPools == rhs.performanceCounterQueryPools ) && - ( performanceCounterMultipleQueryPools == rhs.performanceCounterMultipleQueryPools ); -# endif - } - - bool operator!=( PhysicalDevicePerformanceQueryFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePerformanceQueryFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 performanceCounterQueryPools = {}; - VULKAN_HPP_NAMESPACE::Bool32 performanceCounterMultipleQueryPools = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePerformanceQueryFeaturesKHR ) == - sizeof( VkPhysicalDevicePerformanceQueryFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePerformanceQueryFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePerformanceQueryFeaturesKHR; - }; - - struct PhysicalDevicePerformanceQueryPropertiesKHR - { - using NativeType = VkPhysicalDevicePerformanceQueryPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePerformanceQueryPropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePerformanceQueryPropertiesKHR( - VULKAN_HPP_NAMESPACE::Bool32 allowCommandBufferQueryCopies_ = {} ) VULKAN_HPP_NOEXCEPT - : allowCommandBufferQueryCopies( allowCommandBufferQueryCopies_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePerformanceQueryPropertiesKHR( - PhysicalDevicePerformanceQueryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePerformanceQueryPropertiesKHR( VkPhysicalDevicePerformanceQueryPropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDevicePerformanceQueryPropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePerformanceQueryPropertiesKHR & - operator=( PhysicalDevicePerformanceQueryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePerformanceQueryPropertiesKHR & - operator=( VkPhysicalDevicePerformanceQueryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDevicePerformanceQueryPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePerformanceQueryPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, allowCommandBufferQueryCopies ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePerformanceQueryPropertiesKHR const & ) const = default; -#else - bool operator==( PhysicalDevicePerformanceQueryPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( allowCommandBufferQueryCopies == rhs.allowCommandBufferQueryCopies ); -# endif - } - - bool operator!=( PhysicalDevicePerformanceQueryPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePerformanceQueryPropertiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 allowCommandBufferQueryCopies = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePerformanceQueryPropertiesKHR ) == - sizeof( VkPhysicalDevicePerformanceQueryPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePerformanceQueryPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePerformanceQueryPropertiesKHR; - }; - - struct PhysicalDevicePipelineCreationCacheControlFeatures - { - using NativeType = VkPhysicalDevicePipelineCreationCacheControlFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePipelineCreationCacheControlFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePipelineCreationCacheControlFeatures( - VULKAN_HPP_NAMESPACE::Bool32 pipelineCreationCacheControl_ = {} ) VULKAN_HPP_NOEXCEPT - : pipelineCreationCacheControl( pipelineCreationCacheControl_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePipelineCreationCacheControlFeatures( - PhysicalDevicePipelineCreationCacheControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePipelineCreationCacheControlFeatures( - VkPhysicalDevicePipelineCreationCacheControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePipelineCreationCacheControlFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePipelineCreationCacheControlFeatures & - operator=( PhysicalDevicePipelineCreationCacheControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePipelineCreationCacheControlFeatures & - operator=( VkPhysicalDevicePipelineCreationCacheControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePipelineCreationCacheControlFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePipelineCreationCacheControlFeatures & - setPipelineCreationCacheControl( VULKAN_HPP_NAMESPACE::Bool32 pipelineCreationCacheControl_ ) VULKAN_HPP_NOEXCEPT - { - pipelineCreationCacheControl = pipelineCreationCacheControl_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePipelineCreationCacheControlFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePipelineCreationCacheControlFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pipelineCreationCacheControl ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePipelineCreationCacheControlFeatures const & ) const = default; -#else - bool operator==( PhysicalDevicePipelineCreationCacheControlFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( pipelineCreationCacheControl == rhs.pipelineCreationCacheControl ); -# endif - } - - bool operator!=( PhysicalDevicePipelineCreationCacheControlFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePipelineCreationCacheControlFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 pipelineCreationCacheControl = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePipelineCreationCacheControlFeatures ) == - sizeof( VkPhysicalDevicePipelineCreationCacheControlFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePipelineCreationCacheControlFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePipelineCreationCacheControlFeatures; - }; - using PhysicalDevicePipelineCreationCacheControlFeaturesEXT = PhysicalDevicePipelineCreationCacheControlFeatures; - - struct PhysicalDevicePipelineExecutablePropertiesFeaturesKHR - { - using NativeType = VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePipelineExecutablePropertiesFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePipelineExecutablePropertiesFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 pipelineExecutableInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : pipelineExecutableInfo( pipelineExecutableInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePipelineExecutablePropertiesFeaturesKHR( - PhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePipelineExecutablePropertiesFeaturesKHR( - VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePipelineExecutablePropertiesFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePipelineExecutablePropertiesFeaturesKHR & - operator=( PhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePipelineExecutablePropertiesFeaturesKHR & - operator=( VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePipelineExecutablePropertiesFeaturesKHR & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePipelineExecutablePropertiesFeaturesKHR & - setPipelineExecutableInfo( VULKAN_HPP_NAMESPACE::Bool32 pipelineExecutableInfo_ ) VULKAN_HPP_NOEXCEPT - { - pipelineExecutableInfo = pipelineExecutableInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pipelineExecutableInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( pipelineExecutableInfo == rhs.pipelineExecutableInfo ); -# endif - } - - bool operator!=( PhysicalDevicePipelineExecutablePropertiesFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePipelineExecutablePropertiesFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 pipelineExecutableInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePipelineExecutablePropertiesFeaturesKHR ) == - sizeof( VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDevicePipelineExecutablePropertiesFeaturesKHR>::value, - "PhysicalDevicePipelineExecutablePropertiesFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePipelineExecutablePropertiesFeaturesKHR; - }; - - struct PhysicalDevicePointClippingProperties - { - using NativeType = VkPhysicalDevicePointClippingProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePointClippingProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePointClippingProperties( - VULKAN_HPP_NAMESPACE::PointClippingBehavior pointClippingBehavior_ = - VULKAN_HPP_NAMESPACE::PointClippingBehavior::eAllClipPlanes ) VULKAN_HPP_NOEXCEPT - : pointClippingBehavior( pointClippingBehavior_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePointClippingProperties( PhysicalDevicePointClippingProperties const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePointClippingProperties( VkPhysicalDevicePointClippingProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePointClippingProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePointClippingProperties & - operator=( PhysicalDevicePointClippingProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePointClippingProperties & - operator=( VkPhysicalDevicePointClippingProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDevicePointClippingProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePointClippingProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pointClippingBehavior ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePointClippingProperties const & ) const = default; -#else - bool operator==( PhysicalDevicePointClippingProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pointClippingBehavior == rhs.pointClippingBehavior ); -# endif - } - - bool operator!=( PhysicalDevicePointClippingProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePointClippingProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PointClippingBehavior pointClippingBehavior = - VULKAN_HPP_NAMESPACE::PointClippingBehavior::eAllClipPlanes; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePointClippingProperties ) == - sizeof( VkPhysicalDevicePointClippingProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePointClippingProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePointClippingProperties; - }; - using PhysicalDevicePointClippingPropertiesKHR = PhysicalDevicePointClippingProperties; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct PhysicalDevicePortabilitySubsetFeaturesKHR - { - using NativeType = VkPhysicalDevicePortabilitySubsetFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePortabilitySubsetFeaturesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePortabilitySubsetFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 constantAlphaColorBlendFactors_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 events_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 imageViewFormatReinterpretation_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 imageViewFormatSwizzle_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 imageView2DOn3DImage_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multisampleArrayImage_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 mutableComparisonSamplers_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 pointPolygons_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 samplerMipLodBias_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 separateStencilMaskRef_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSampleRateInterpolationFunctions_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 tessellationIsolines_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 tessellationPointMode_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 triangleFans_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeAccessBeyondStride_ = {} ) VULKAN_HPP_NOEXCEPT - : constantAlphaColorBlendFactors( constantAlphaColorBlendFactors_ ) - , events( events_ ) - , imageViewFormatReinterpretation( imageViewFormatReinterpretation_ ) - , imageViewFormatSwizzle( imageViewFormatSwizzle_ ) - , imageView2DOn3DImage( imageView2DOn3DImage_ ) - , multisampleArrayImage( multisampleArrayImage_ ) - , mutableComparisonSamplers( mutableComparisonSamplers_ ) - , pointPolygons( pointPolygons_ ) - , samplerMipLodBias( samplerMipLodBias_ ) - , separateStencilMaskRef( separateStencilMaskRef_ ) - , shaderSampleRateInterpolationFunctions( shaderSampleRateInterpolationFunctions_ ) - , tessellationIsolines( tessellationIsolines_ ) - , tessellationPointMode( tessellationPointMode_ ) - , triangleFans( triangleFans_ ) - , vertexAttributeAccessBeyondStride( vertexAttributeAccessBeyondStride_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePortabilitySubsetFeaturesKHR( - PhysicalDevicePortabilitySubsetFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePortabilitySubsetFeaturesKHR( VkPhysicalDevicePortabilitySubsetFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDevicePortabilitySubsetFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePortabilitySubsetFeaturesKHR & - operator=( PhysicalDevicePortabilitySubsetFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePortabilitySubsetFeaturesKHR & - operator=( VkPhysicalDevicePortabilitySubsetFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & setConstantAlphaColorBlendFactors( - VULKAN_HPP_NAMESPACE::Bool32 constantAlphaColorBlendFactors_ ) VULKAN_HPP_NOEXCEPT - { - constantAlphaColorBlendFactors = constantAlphaColorBlendFactors_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setEvents( VULKAN_HPP_NAMESPACE::Bool32 events_ ) VULKAN_HPP_NOEXCEPT - { - events = events_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & setImageViewFormatReinterpretation( - VULKAN_HPP_NAMESPACE::Bool32 imageViewFormatReinterpretation_ ) VULKAN_HPP_NOEXCEPT - { - imageViewFormatReinterpretation = imageViewFormatReinterpretation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setImageViewFormatSwizzle( VULKAN_HPP_NAMESPACE::Bool32 imageViewFormatSwizzle_ ) VULKAN_HPP_NOEXCEPT - { - imageViewFormatSwizzle = imageViewFormatSwizzle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setImageView2DOn3DImage( VULKAN_HPP_NAMESPACE::Bool32 imageView2DOn3DImage_ ) VULKAN_HPP_NOEXCEPT - { - imageView2DOn3DImage = imageView2DOn3DImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setMultisampleArrayImage( VULKAN_HPP_NAMESPACE::Bool32 multisampleArrayImage_ ) VULKAN_HPP_NOEXCEPT - { - multisampleArrayImage = multisampleArrayImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setMutableComparisonSamplers( VULKAN_HPP_NAMESPACE::Bool32 mutableComparisonSamplers_ ) VULKAN_HPP_NOEXCEPT - { - mutableComparisonSamplers = mutableComparisonSamplers_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setPointPolygons( VULKAN_HPP_NAMESPACE::Bool32 pointPolygons_ ) VULKAN_HPP_NOEXCEPT - { - pointPolygons = pointPolygons_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setSamplerMipLodBias( VULKAN_HPP_NAMESPACE::Bool32 samplerMipLodBias_ ) VULKAN_HPP_NOEXCEPT - { - samplerMipLodBias = samplerMipLodBias_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setSeparateStencilMaskRef( VULKAN_HPP_NAMESPACE::Bool32 separateStencilMaskRef_ ) VULKAN_HPP_NOEXCEPT - { - separateStencilMaskRef = separateStencilMaskRef_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & setShaderSampleRateInterpolationFunctions( - VULKAN_HPP_NAMESPACE::Bool32 shaderSampleRateInterpolationFunctions_ ) VULKAN_HPP_NOEXCEPT - { - shaderSampleRateInterpolationFunctions = shaderSampleRateInterpolationFunctions_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setTessellationIsolines( VULKAN_HPP_NAMESPACE::Bool32 tessellationIsolines_ ) VULKAN_HPP_NOEXCEPT - { - tessellationIsolines = tessellationIsolines_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setTessellationPointMode( VULKAN_HPP_NAMESPACE::Bool32 tessellationPointMode_ ) VULKAN_HPP_NOEXCEPT - { - tessellationPointMode = tessellationPointMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & - setTriangleFans( VULKAN_HPP_NAMESPACE::Bool32 triangleFans_ ) VULKAN_HPP_NOEXCEPT - { - triangleFans = triangleFans_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetFeaturesKHR & setVertexAttributeAccessBeyondStride( - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeAccessBeyondStride_ ) VULKAN_HPP_NOEXCEPT - { - vertexAttributeAccessBeyondStride = vertexAttributeAccessBeyondStride_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePortabilitySubsetFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePortabilitySubsetFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - constantAlphaColorBlendFactors, - events, - imageViewFormatReinterpretation, - imageViewFormatSwizzle, - imageView2DOn3DImage, - multisampleArrayImage, - mutableComparisonSamplers, - pointPolygons, - samplerMipLodBias, - separateStencilMaskRef, - shaderSampleRateInterpolationFunctions, - tessellationIsolines, - tessellationPointMode, - triangleFans, - vertexAttributeAccessBeyondStride ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePortabilitySubsetFeaturesKHR const & ) const = default; -# else - bool operator==( PhysicalDevicePortabilitySubsetFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( constantAlphaColorBlendFactors == rhs.constantAlphaColorBlendFactors ) && ( events == rhs.events ) && - ( imageViewFormatReinterpretation == rhs.imageViewFormatReinterpretation ) && - ( imageViewFormatSwizzle == rhs.imageViewFormatSwizzle ) && - ( imageView2DOn3DImage == rhs.imageView2DOn3DImage ) && - ( multisampleArrayImage == rhs.multisampleArrayImage ) && - ( mutableComparisonSamplers == rhs.mutableComparisonSamplers ) && ( pointPolygons == rhs.pointPolygons ) && - ( samplerMipLodBias == rhs.samplerMipLodBias ) && - ( separateStencilMaskRef == rhs.separateStencilMaskRef ) && - ( shaderSampleRateInterpolationFunctions == rhs.shaderSampleRateInterpolationFunctions ) && - ( tessellationIsolines == rhs.tessellationIsolines ) && - ( tessellationPointMode == rhs.tessellationPointMode ) && ( triangleFans == rhs.triangleFans ) && - ( vertexAttributeAccessBeyondStride == rhs.vertexAttributeAccessBeyondStride ); -# endif - } - - bool operator!=( PhysicalDevicePortabilitySubsetFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePortabilitySubsetFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 constantAlphaColorBlendFactors = {}; - VULKAN_HPP_NAMESPACE::Bool32 events = {}; - VULKAN_HPP_NAMESPACE::Bool32 imageViewFormatReinterpretation = {}; - VULKAN_HPP_NAMESPACE::Bool32 imageViewFormatSwizzle = {}; - VULKAN_HPP_NAMESPACE::Bool32 imageView2DOn3DImage = {}; - VULKAN_HPP_NAMESPACE::Bool32 multisampleArrayImage = {}; - VULKAN_HPP_NAMESPACE::Bool32 mutableComparisonSamplers = {}; - VULKAN_HPP_NAMESPACE::Bool32 pointPolygons = {}; - VULKAN_HPP_NAMESPACE::Bool32 samplerMipLodBias = {}; - VULKAN_HPP_NAMESPACE::Bool32 separateStencilMaskRef = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSampleRateInterpolationFunctions = {}; - VULKAN_HPP_NAMESPACE::Bool32 tessellationIsolines = {}; - VULKAN_HPP_NAMESPACE::Bool32 tessellationPointMode = {}; - VULKAN_HPP_NAMESPACE::Bool32 triangleFans = {}; - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeAccessBeyondStride = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePortabilitySubsetFeaturesKHR ) == - sizeof( VkPhysicalDevicePortabilitySubsetFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePortabilitySubsetFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePortabilitySubsetFeaturesKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct PhysicalDevicePortabilitySubsetPropertiesKHR - { - using NativeType = VkPhysicalDevicePortabilitySubsetPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePortabilitySubsetPropertiesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePortabilitySubsetPropertiesKHR( - uint32_t minVertexInputBindingStrideAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : minVertexInputBindingStrideAlignment( minVertexInputBindingStrideAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePortabilitySubsetPropertiesKHR( - PhysicalDevicePortabilitySubsetPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePortabilitySubsetPropertiesKHR( VkPhysicalDevicePortabilitySubsetPropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDevicePortabilitySubsetPropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePortabilitySubsetPropertiesKHR & - operator=( PhysicalDevicePortabilitySubsetPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePortabilitySubsetPropertiesKHR & - operator=( VkPhysicalDevicePortabilitySubsetPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetPropertiesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePortabilitySubsetPropertiesKHR & - setMinVertexInputBindingStrideAlignment( uint32_t minVertexInputBindingStrideAlignment_ ) VULKAN_HPP_NOEXCEPT - { - minVertexInputBindingStrideAlignment = minVertexInputBindingStrideAlignment_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePortabilitySubsetPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePortabilitySubsetPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, minVertexInputBindingStrideAlignment ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePortabilitySubsetPropertiesKHR const & ) const = default; -# else - bool operator==( PhysicalDevicePortabilitySubsetPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( minVertexInputBindingStrideAlignment == rhs.minVertexInputBindingStrideAlignment ); -# endif - } - - bool operator!=( PhysicalDevicePortabilitySubsetPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePortabilitySubsetPropertiesKHR; - void * pNext = {}; - uint32_t minVertexInputBindingStrideAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePortabilitySubsetPropertiesKHR ) == - sizeof( VkPhysicalDevicePortabilitySubsetPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePortabilitySubsetPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePortabilitySubsetPropertiesKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - struct PhysicalDevicePresentIdFeaturesKHR - { - using NativeType = VkPhysicalDevicePresentIdFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePresentIdFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevicePresentIdFeaturesKHR( VULKAN_HPP_NAMESPACE::Bool32 presentId_ = {} ) VULKAN_HPP_NOEXCEPT - : presentId( presentId_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePresentIdFeaturesKHR( PhysicalDevicePresentIdFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePresentIdFeaturesKHR( VkPhysicalDevicePresentIdFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePresentIdFeaturesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePresentIdFeaturesKHR & - operator=( PhysicalDevicePresentIdFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePresentIdFeaturesKHR & - operator=( VkPhysicalDevicePresentIdFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePresentIdFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePresentIdFeaturesKHR & - setPresentId( VULKAN_HPP_NAMESPACE::Bool32 presentId_ ) VULKAN_HPP_NOEXCEPT - { - presentId = presentId_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePresentIdFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePresentIdFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, presentId ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePresentIdFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDevicePresentIdFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( presentId == rhs.presentId ); -# endif - } - - bool operator!=( PhysicalDevicePresentIdFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePresentIdFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 presentId = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePresentIdFeaturesKHR ) == - sizeof( VkPhysicalDevicePresentIdFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePresentIdFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePresentIdFeaturesKHR; - }; - - struct PhysicalDevicePresentWaitFeaturesKHR - { - using NativeType = VkPhysicalDevicePresentWaitFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePresentWaitFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevicePresentWaitFeaturesKHR( VULKAN_HPP_NAMESPACE::Bool32 presentWait_ = {} ) VULKAN_HPP_NOEXCEPT - : presentWait( presentWait_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePresentWaitFeaturesKHR( PhysicalDevicePresentWaitFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePresentWaitFeaturesKHR( VkPhysicalDevicePresentWaitFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePresentWaitFeaturesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePresentWaitFeaturesKHR & - operator=( PhysicalDevicePresentWaitFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePresentWaitFeaturesKHR & - operator=( VkPhysicalDevicePresentWaitFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePresentWaitFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePresentWaitFeaturesKHR & - setPresentWait( VULKAN_HPP_NAMESPACE::Bool32 presentWait_ ) VULKAN_HPP_NOEXCEPT - { - presentWait = presentWait_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePresentWaitFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePresentWaitFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, presentWait ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePresentWaitFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDevicePresentWaitFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( presentWait == rhs.presentWait ); -# endif - } - - bool operator!=( PhysicalDevicePresentWaitFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePresentWaitFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 presentWait = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePresentWaitFeaturesKHR ) == - sizeof( VkPhysicalDevicePresentWaitFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePresentWaitFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePresentWaitFeaturesKHR; - }; - - struct PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT - { - using NativeType = VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePrimitiveTopologyListRestartFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 primitiveTopologyListRestart_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 primitiveTopologyPatchListRestart_ = {} ) VULKAN_HPP_NOEXCEPT - : primitiveTopologyListRestart( primitiveTopologyListRestart_ ) - , primitiveTopologyPatchListRestart( primitiveTopologyPatchListRestart_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT( - PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT( - VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT & - operator=( PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT & - operator=( VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT & - setPrimitiveTopologyListRestart( VULKAN_HPP_NAMESPACE::Bool32 primitiveTopologyListRestart_ ) VULKAN_HPP_NOEXCEPT - { - primitiveTopologyListRestart = primitiveTopologyListRestart_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT & - setPrimitiveTopologyPatchListRestart( VULKAN_HPP_NAMESPACE::Bool32 primitiveTopologyPatchListRestart_ ) - VULKAN_HPP_NOEXCEPT - { - primitiveTopologyPatchListRestart = primitiveTopologyPatchListRestart_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, primitiveTopologyListRestart, primitiveTopologyPatchListRestart ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( primitiveTopologyListRestart == rhs.primitiveTopologyListRestart ) && - ( primitiveTopologyPatchListRestart == rhs.primitiveTopologyPatchListRestart ); -# endif - } - - bool operator!=( PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePrimitiveTopologyListRestartFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 primitiveTopologyListRestart = {}; - VULKAN_HPP_NAMESPACE::Bool32 primitiveTopologyPatchListRestart = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT ) == - sizeof( VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT>::value, - "PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePrimitiveTopologyListRestartFeaturesEXT; - }; - - struct PhysicalDevicePrivateDataFeatures - { - using NativeType = VkPhysicalDevicePrivateDataFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePrivateDataFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevicePrivateDataFeatures( VULKAN_HPP_NAMESPACE::Bool32 privateData_ = {} ) VULKAN_HPP_NOEXCEPT - : privateData( privateData_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDevicePrivateDataFeatures( PhysicalDevicePrivateDataFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePrivateDataFeatures( VkPhysicalDevicePrivateDataFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDevicePrivateDataFeatures( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePrivateDataFeatures & - operator=( PhysicalDevicePrivateDataFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePrivateDataFeatures & operator=( VkPhysicalDevicePrivateDataFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePrivateDataFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDevicePrivateDataFeatures & - setPrivateData( VULKAN_HPP_NAMESPACE::Bool32 privateData_ ) VULKAN_HPP_NOEXCEPT - { - privateData = privateData_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDevicePrivateDataFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePrivateDataFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, privateData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePrivateDataFeatures const & ) const = default; -#else - bool operator==( PhysicalDevicePrivateDataFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( privateData == rhs.privateData ); -# endif - } - - bool operator!=( PhysicalDevicePrivateDataFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePrivateDataFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 privateData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePrivateDataFeatures ) == - sizeof( VkPhysicalDevicePrivateDataFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePrivateDataFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePrivateDataFeatures; - }; - using PhysicalDevicePrivateDataFeaturesEXT = PhysicalDevicePrivateDataFeatures; - - struct PhysicalDeviceSparseProperties - { - using NativeType = VkPhysicalDeviceSparseProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSparseProperties( - VULKAN_HPP_NAMESPACE::Bool32 residencyStandard2DBlockShape_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 residencyStandard2DMultisampleBlockShape_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 residencyStandard3DBlockShape_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 residencyAlignedMipSize_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 residencyNonResidentStrict_ = {} ) VULKAN_HPP_NOEXCEPT - : residencyStandard2DBlockShape( residencyStandard2DBlockShape_ ) - , residencyStandard2DMultisampleBlockShape( residencyStandard2DMultisampleBlockShape_ ) - , residencyStandard3DBlockShape( residencyStandard3DBlockShape_ ) - , residencyAlignedMipSize( residencyAlignedMipSize_ ) - , residencyNonResidentStrict( residencyNonResidentStrict_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceSparseProperties( PhysicalDeviceSparseProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSparseProperties( VkPhysicalDeviceSparseProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSparseProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSparseProperties & - operator=( PhysicalDeviceSparseProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSparseProperties & operator=( VkPhysicalDeviceSparseProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceSparseProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSparseProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( residencyStandard2DBlockShape, - residencyStandard2DMultisampleBlockShape, - residencyStandard3DBlockShape, - residencyAlignedMipSize, - residencyNonResidentStrict ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSparseProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceSparseProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( residencyStandard2DBlockShape == rhs.residencyStandard2DBlockShape ) && - ( residencyStandard2DMultisampleBlockShape == rhs.residencyStandard2DMultisampleBlockShape ) && - ( residencyStandard3DBlockShape == rhs.residencyStandard3DBlockShape ) && - ( residencyAlignedMipSize == rhs.residencyAlignedMipSize ) && - ( residencyNonResidentStrict == rhs.residencyNonResidentStrict ); -# endif - } - - bool operator!=( PhysicalDeviceSparseProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Bool32 residencyStandard2DBlockShape = {}; - VULKAN_HPP_NAMESPACE::Bool32 residencyStandard2DMultisampleBlockShape = {}; - VULKAN_HPP_NAMESPACE::Bool32 residencyStandard3DBlockShape = {}; - VULKAN_HPP_NAMESPACE::Bool32 residencyAlignedMipSize = {}; - VULKAN_HPP_NAMESPACE::Bool32 residencyNonResidentStrict = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseProperties ) == - sizeof( VkPhysicalDeviceSparseProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSparseProperties is not nothrow_move_constructible!" ); - - struct PhysicalDeviceProperties - { - using NativeType = VkPhysicalDeviceProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceProperties( - uint32_t apiVersion_ = {}, - uint32_t driverVersion_ = {}, - uint32_t vendorID_ = {}, - uint32_t deviceID_ = {}, - VULKAN_HPP_NAMESPACE::PhysicalDeviceType deviceType_ = VULKAN_HPP_NAMESPACE::PhysicalDeviceType::eOther, - std::array const & deviceName_ = {}, - std::array const & pipelineCacheUUID_ = {}, - VULKAN_HPP_NAMESPACE::PhysicalDeviceLimits limits_ = {}, - VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseProperties sparseProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : apiVersion( apiVersion_ ) - , driverVersion( driverVersion_ ) - , vendorID( vendorID_ ) - , deviceID( deviceID_ ) - , deviceType( deviceType_ ) - , deviceName( deviceName_ ) - , pipelineCacheUUID( pipelineCacheUUID_ ) - , limits( limits_ ) - , sparseProperties( sparseProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceProperties( PhysicalDeviceProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProperties( VkPhysicalDeviceProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceProperties & operator=( PhysicalDeviceProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProperties & operator=( VkPhysicalDeviceProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::PhysicalDeviceLimits const &, - VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseProperties const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( apiVersion, - driverVersion, - vendorID, - deviceID, - deviceType, - deviceName, - pipelineCacheUUID, - limits, - sparseProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( apiVersion == rhs.apiVersion ) && ( driverVersion == rhs.driverVersion ) && - ( vendorID == rhs.vendorID ) && ( deviceID == rhs.deviceID ) && ( deviceType == rhs.deviceType ) && - ( deviceName == rhs.deviceName ) && ( pipelineCacheUUID == rhs.pipelineCacheUUID ) && - ( limits == rhs.limits ) && ( sparseProperties == rhs.sparseProperties ); -# endif - } - - bool operator!=( PhysicalDeviceProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t apiVersion = {}; - uint32_t driverVersion = {}; - uint32_t vendorID = {}; - uint32_t deviceID = {}; - VULKAN_HPP_NAMESPACE::PhysicalDeviceType deviceType = VULKAN_HPP_NAMESPACE::PhysicalDeviceType::eOther; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D deviceName = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D pipelineCacheUUID = {}; - VULKAN_HPP_NAMESPACE::PhysicalDeviceLimits limits = {}; - VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseProperties sparseProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties ) == - sizeof( VkPhysicalDeviceProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDeviceProperties is not nothrow_move_constructible!" ); - - struct PhysicalDeviceProperties2 - { - using NativeType = VkPhysicalDeviceProperties2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceProperties2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceProperties2( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties properties_ = {} ) VULKAN_HPP_NOEXCEPT - : properties( properties_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceProperties2( PhysicalDeviceProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProperties2( VkPhysicalDeviceProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceProperties2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceProperties2 & operator=( PhysicalDeviceProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProperties2 & operator=( VkPhysicalDeviceProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceProperties2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceProperties2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, properties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceProperties2 const & ) const = default; -#else - bool operator==( PhysicalDeviceProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( properties == rhs.properties ); -# endif - } - - bool operator!=( PhysicalDeviceProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceProperties2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties properties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceProperties2 ) == - sizeof( VkPhysicalDeviceProperties2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PhysicalDeviceProperties2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceProperties2; - }; - using PhysicalDeviceProperties2KHR = PhysicalDeviceProperties2; - - struct PhysicalDeviceProtectedMemoryFeatures - { - using NativeType = VkPhysicalDeviceProtectedMemoryFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceProtectedMemoryFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceProtectedMemoryFeatures( VULKAN_HPP_NAMESPACE::Bool32 protectedMemory_ = {} ) VULKAN_HPP_NOEXCEPT - : protectedMemory( protectedMemory_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceProtectedMemoryFeatures( PhysicalDeviceProtectedMemoryFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProtectedMemoryFeatures( VkPhysicalDeviceProtectedMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceProtectedMemoryFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceProtectedMemoryFeatures & - operator=( PhysicalDeviceProtectedMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProtectedMemoryFeatures & - operator=( VkPhysicalDeviceProtectedMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceProtectedMemoryFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceProtectedMemoryFeatures & - setProtectedMemory( VULKAN_HPP_NAMESPACE::Bool32 protectedMemory_ ) VULKAN_HPP_NOEXCEPT - { - protectedMemory = protectedMemory_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceProtectedMemoryFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceProtectedMemoryFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, protectedMemory ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceProtectedMemoryFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceProtectedMemoryFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( protectedMemory == rhs.protectedMemory ); -# endif - } - - bool operator!=( PhysicalDeviceProtectedMemoryFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceProtectedMemoryFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 protectedMemory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceProtectedMemoryFeatures ) == - sizeof( VkPhysicalDeviceProtectedMemoryFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceProtectedMemoryFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceProtectedMemoryFeatures; - }; - - struct PhysicalDeviceProtectedMemoryProperties - { - using NativeType = VkPhysicalDeviceProtectedMemoryProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceProtectedMemoryProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceProtectedMemoryProperties( VULKAN_HPP_NAMESPACE::Bool32 protectedNoFault_ = {} ) VULKAN_HPP_NOEXCEPT - : protectedNoFault( protectedNoFault_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceProtectedMemoryProperties( PhysicalDeviceProtectedMemoryProperties const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProtectedMemoryProperties( VkPhysicalDeviceProtectedMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceProtectedMemoryProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceProtectedMemoryProperties & - operator=( PhysicalDeviceProtectedMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProtectedMemoryProperties & - operator=( VkPhysicalDeviceProtectedMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceProtectedMemoryProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceProtectedMemoryProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, protectedNoFault ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceProtectedMemoryProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceProtectedMemoryProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( protectedNoFault == rhs.protectedNoFault ); -# endif - } - - bool operator!=( PhysicalDeviceProtectedMemoryProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceProtectedMemoryProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 protectedNoFault = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceProtectedMemoryProperties ) == - sizeof( VkPhysicalDeviceProtectedMemoryProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceProtectedMemoryProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceProtectedMemoryProperties; - }; - - struct PhysicalDeviceProvokingVertexFeaturesEXT - { - using NativeType = VkPhysicalDeviceProvokingVertexFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceProvokingVertexFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceProvokingVertexFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 provokingVertexLast_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackPreservesProvokingVertex_ = {} ) VULKAN_HPP_NOEXCEPT - : provokingVertexLast( provokingVertexLast_ ) - , transformFeedbackPreservesProvokingVertex( transformFeedbackPreservesProvokingVertex_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceProvokingVertexFeaturesEXT( - PhysicalDeviceProvokingVertexFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProvokingVertexFeaturesEXT( VkPhysicalDeviceProvokingVertexFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceProvokingVertexFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceProvokingVertexFeaturesEXT & - operator=( PhysicalDeviceProvokingVertexFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProvokingVertexFeaturesEXT & - operator=( VkPhysicalDeviceProvokingVertexFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceProvokingVertexFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceProvokingVertexFeaturesEXT & - setProvokingVertexLast( VULKAN_HPP_NAMESPACE::Bool32 provokingVertexLast_ ) VULKAN_HPP_NOEXCEPT - { - provokingVertexLast = provokingVertexLast_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceProvokingVertexFeaturesEXT & setTransformFeedbackPreservesProvokingVertex( - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackPreservesProvokingVertex_ ) VULKAN_HPP_NOEXCEPT - { - transformFeedbackPreservesProvokingVertex = transformFeedbackPreservesProvokingVertex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceProvokingVertexFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceProvokingVertexFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, provokingVertexLast, transformFeedbackPreservesProvokingVertex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceProvokingVertexFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceProvokingVertexFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( provokingVertexLast == rhs.provokingVertexLast ) && - ( transformFeedbackPreservesProvokingVertex == rhs.transformFeedbackPreservesProvokingVertex ); -# endif - } - - bool operator!=( PhysicalDeviceProvokingVertexFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceProvokingVertexFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 provokingVertexLast = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackPreservesProvokingVertex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceProvokingVertexFeaturesEXT ) == - sizeof( VkPhysicalDeviceProvokingVertexFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceProvokingVertexFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceProvokingVertexFeaturesEXT; - }; - - struct PhysicalDeviceProvokingVertexPropertiesEXT - { - using NativeType = VkPhysicalDeviceProvokingVertexPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceProvokingVertexPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceProvokingVertexPropertiesEXT( - VULKAN_HPP_NAMESPACE::Bool32 provokingVertexModePerPipeline_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackPreservesTriangleFanProvokingVertex_ = {} ) VULKAN_HPP_NOEXCEPT - : provokingVertexModePerPipeline( provokingVertexModePerPipeline_ ) - , transformFeedbackPreservesTriangleFanProvokingVertex( transformFeedbackPreservesTriangleFanProvokingVertex_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceProvokingVertexPropertiesEXT( - PhysicalDeviceProvokingVertexPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProvokingVertexPropertiesEXT( VkPhysicalDeviceProvokingVertexPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceProvokingVertexPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceProvokingVertexPropertiesEXT & - operator=( PhysicalDeviceProvokingVertexPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceProvokingVertexPropertiesEXT & - operator=( VkPhysicalDeviceProvokingVertexPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceProvokingVertexPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceProvokingVertexPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, provokingVertexModePerPipeline, transformFeedbackPreservesTriangleFanProvokingVertex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceProvokingVertexPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceProvokingVertexPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( provokingVertexModePerPipeline == rhs.provokingVertexModePerPipeline ) && - ( transformFeedbackPreservesTriangleFanProvokingVertex == - rhs.transformFeedbackPreservesTriangleFanProvokingVertex ); -# endif - } - - bool operator!=( PhysicalDeviceProvokingVertexPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceProvokingVertexPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 provokingVertexModePerPipeline = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackPreservesTriangleFanProvokingVertex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceProvokingVertexPropertiesEXT ) == - sizeof( VkPhysicalDeviceProvokingVertexPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceProvokingVertexPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceProvokingVertexPropertiesEXT; - }; - - struct PhysicalDevicePushDescriptorPropertiesKHR - { - using NativeType = VkPhysicalDevicePushDescriptorPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDevicePushDescriptorPropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDevicePushDescriptorPropertiesKHR( uint32_t maxPushDescriptors_ = {} ) VULKAN_HPP_NOEXCEPT - : maxPushDescriptors( maxPushDescriptors_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDevicePushDescriptorPropertiesKHR( - PhysicalDevicePushDescriptorPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePushDescriptorPropertiesKHR( VkPhysicalDevicePushDescriptorPropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDevicePushDescriptorPropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDevicePushDescriptorPropertiesKHR & - operator=( PhysicalDevicePushDescriptorPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDevicePushDescriptorPropertiesKHR & - operator=( VkPhysicalDevicePushDescriptorPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDevicePushDescriptorPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDevicePushDescriptorPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxPushDescriptors ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDevicePushDescriptorPropertiesKHR const & ) const = default; -#else - bool operator==( PhysicalDevicePushDescriptorPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxPushDescriptors == rhs.maxPushDescriptors ); -# endif - } - - bool operator!=( PhysicalDevicePushDescriptorPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDevicePushDescriptorPropertiesKHR; - void * pNext = {}; - uint32_t maxPushDescriptors = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDevicePushDescriptorPropertiesKHR ) == - sizeof( VkPhysicalDevicePushDescriptorPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDevicePushDescriptorPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDevicePushDescriptorPropertiesKHR; - }; - - struct PhysicalDeviceRGBA10X6FormatsFeaturesEXT - { - using NativeType = VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRgba10X6FormatsFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceRGBA10X6FormatsFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 formatRgba10x6WithoutYCbCrSampler_ = {} ) VULKAN_HPP_NOEXCEPT - : formatRgba10x6WithoutYCbCrSampler( formatRgba10x6WithoutYCbCrSampler_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRGBA10X6FormatsFeaturesEXT( - PhysicalDeviceRGBA10X6FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRGBA10X6FormatsFeaturesEXT( VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRGBA10X6FormatsFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRGBA10X6FormatsFeaturesEXT & - operator=( PhysicalDeviceRGBA10X6FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRGBA10X6FormatsFeaturesEXT & - operator=( VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRGBA10X6FormatsFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRGBA10X6FormatsFeaturesEXT & setFormatRgba10x6WithoutYCbCrSampler( - VULKAN_HPP_NAMESPACE::Bool32 formatRgba10x6WithoutYCbCrSampler_ ) VULKAN_HPP_NOEXCEPT - { - formatRgba10x6WithoutYCbCrSampler = formatRgba10x6WithoutYCbCrSampler_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, formatRgba10x6WithoutYCbCrSampler ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRGBA10X6FormatsFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceRGBA10X6FormatsFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( formatRgba10x6WithoutYCbCrSampler == rhs.formatRgba10x6WithoutYCbCrSampler ); -# endif - } - - bool operator!=( PhysicalDeviceRGBA10X6FormatsFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRgba10X6FormatsFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 formatRgba10x6WithoutYCbCrSampler = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRGBA10X6FormatsFeaturesEXT ) == - sizeof( VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRGBA10X6FormatsFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRGBA10X6FormatsFeaturesEXT; - }; - - struct PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM - { - using NativeType = VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM( - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderColorAttachmentAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderDepthAttachmentAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderStencilAttachmentAccess_ = {} ) VULKAN_HPP_NOEXCEPT - : rasterizationOrderColorAttachmentAccess( rasterizationOrderColorAttachmentAccess_ ) - , rasterizationOrderDepthAttachmentAccess( rasterizationOrderDepthAttachmentAccess_ ) - , rasterizationOrderStencilAttachmentAccess( rasterizationOrderStencilAttachmentAccess_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM( - PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM( - VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM & operator =( - PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM & - operator=( VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( - &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM & - setRasterizationOrderColorAttachmentAccess( - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderColorAttachmentAccess_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationOrderColorAttachmentAccess = rasterizationOrderColorAttachmentAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM & - setRasterizationOrderDepthAttachmentAccess( - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderDepthAttachmentAccess_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationOrderDepthAttachmentAccess = rasterizationOrderDepthAttachmentAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM & - setRasterizationOrderStencilAttachmentAccess( - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderStencilAttachmentAccess_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationOrderStencilAttachmentAccess = rasterizationOrderStencilAttachmentAccess_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - rasterizationOrderColorAttachmentAccess, - rasterizationOrderDepthAttachmentAccess, - rasterizationOrderStencilAttachmentAccess ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & ) const = default; -#else - bool operator==( PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( rasterizationOrderColorAttachmentAccess == rhs.rasterizationOrderColorAttachmentAccess ) && - ( rasterizationOrderDepthAttachmentAccess == rhs.rasterizationOrderDepthAttachmentAccess ) && - ( rasterizationOrderStencilAttachmentAccess == rhs.rasterizationOrderStencilAttachmentAccess ); -# endif - } - - bool operator!=( PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = - StructureType::ePhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderColorAttachmentAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderDepthAttachmentAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 rasterizationOrderStencilAttachmentAccess = {}; - }; - VULKAN_HPP_STATIC_ASSERT( - sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM ) == - sizeof( VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM>::value, - "PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRasterizationOrderAttachmentAccessFeaturesARM; - }; - - struct PhysicalDeviceRayQueryFeaturesKHR - { - using NativeType = VkPhysicalDeviceRayQueryFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRayQueryFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceRayQueryFeaturesKHR( VULKAN_HPP_NAMESPACE::Bool32 rayQuery_ = {} ) VULKAN_HPP_NOEXCEPT - : rayQuery( rayQuery_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceRayQueryFeaturesKHR( PhysicalDeviceRayQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayQueryFeaturesKHR( VkPhysicalDeviceRayQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRayQueryFeaturesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRayQueryFeaturesKHR & - operator=( PhysicalDeviceRayQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayQueryFeaturesKHR & operator=( VkPhysicalDeviceRayQueryFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayQueryFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayQueryFeaturesKHR & - setRayQuery( VULKAN_HPP_NAMESPACE::Bool32 rayQuery_ ) VULKAN_HPP_NOEXCEPT - { - rayQuery = rayQuery_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRayQueryFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRayQueryFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, rayQuery ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRayQueryFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceRayQueryFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( rayQuery == rhs.rayQuery ); -# endif - } - - bool operator!=( PhysicalDeviceRayQueryFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRayQueryFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayQuery = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayQueryFeaturesKHR ) == - sizeof( VkPhysicalDeviceRayQueryFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRayQueryFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRayQueryFeaturesKHR; - }; - - struct PhysicalDeviceRayTracingMotionBlurFeaturesNV - { - using NativeType = VkPhysicalDeviceRayTracingMotionBlurFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRayTracingMotionBlurFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceRayTracingMotionBlurFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 rayTracingMotionBlur_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rayTracingMotionBlurPipelineTraceRaysIndirect_ = {} ) VULKAN_HPP_NOEXCEPT - : rayTracingMotionBlur( rayTracingMotionBlur_ ) - , rayTracingMotionBlurPipelineTraceRaysIndirect( rayTracingMotionBlurPipelineTraceRaysIndirect_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRayTracingMotionBlurFeaturesNV( - PhysicalDeviceRayTracingMotionBlurFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingMotionBlurFeaturesNV( VkPhysicalDeviceRayTracingMotionBlurFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRayTracingMotionBlurFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRayTracingMotionBlurFeaturesNV & - operator=( PhysicalDeviceRayTracingMotionBlurFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingMotionBlurFeaturesNV & - operator=( VkPhysicalDeviceRayTracingMotionBlurFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingMotionBlurFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingMotionBlurFeaturesNV & - setRayTracingMotionBlur( VULKAN_HPP_NAMESPACE::Bool32 rayTracingMotionBlur_ ) VULKAN_HPP_NOEXCEPT - { - rayTracingMotionBlur = rayTracingMotionBlur_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingMotionBlurFeaturesNV & - setRayTracingMotionBlurPipelineTraceRaysIndirect( - VULKAN_HPP_NAMESPACE::Bool32 rayTracingMotionBlurPipelineTraceRaysIndirect_ ) VULKAN_HPP_NOEXCEPT - { - rayTracingMotionBlurPipelineTraceRaysIndirect = rayTracingMotionBlurPipelineTraceRaysIndirect_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRayTracingMotionBlurFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRayTracingMotionBlurFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, rayTracingMotionBlur, rayTracingMotionBlurPipelineTraceRaysIndirect ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRayTracingMotionBlurFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceRayTracingMotionBlurFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( rayTracingMotionBlur == rhs.rayTracingMotionBlur ) && - ( rayTracingMotionBlurPipelineTraceRaysIndirect == rhs.rayTracingMotionBlurPipelineTraceRaysIndirect ); -# endif - } - - bool operator!=( PhysicalDeviceRayTracingMotionBlurFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRayTracingMotionBlurFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTracingMotionBlur = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTracingMotionBlurPipelineTraceRaysIndirect = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingMotionBlurFeaturesNV ) == - sizeof( VkPhysicalDeviceRayTracingMotionBlurFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRayTracingMotionBlurFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRayTracingMotionBlurFeaturesNV; - }; - - struct PhysicalDeviceRayTracingPipelineFeaturesKHR - { - using NativeType = VkPhysicalDeviceRayTracingPipelineFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRayTracingPipelineFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceRayTracingPipelineFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipeline_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineShaderGroupHandleCaptureReplay_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineShaderGroupHandleCaptureReplayMixed_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineTraceRaysIndirect_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 rayTraversalPrimitiveCulling_ = {} ) VULKAN_HPP_NOEXCEPT - : rayTracingPipeline( rayTracingPipeline_ ) - , rayTracingPipelineShaderGroupHandleCaptureReplay( rayTracingPipelineShaderGroupHandleCaptureReplay_ ) - , rayTracingPipelineShaderGroupHandleCaptureReplayMixed( rayTracingPipelineShaderGroupHandleCaptureReplayMixed_ ) - , rayTracingPipelineTraceRaysIndirect( rayTracingPipelineTraceRaysIndirect_ ) - , rayTraversalPrimitiveCulling( rayTraversalPrimitiveCulling_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRayTracingPipelineFeaturesKHR( - PhysicalDeviceRayTracingPipelineFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingPipelineFeaturesKHR( VkPhysicalDeviceRayTracingPipelineFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRayTracingPipelineFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRayTracingPipelineFeaturesKHR & - operator=( PhysicalDeviceRayTracingPipelineFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingPipelineFeaturesKHR & - operator=( VkPhysicalDeviceRayTracingPipelineFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingPipelineFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingPipelineFeaturesKHR & - setRayTracingPipeline( VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipeline_ ) VULKAN_HPP_NOEXCEPT - { - rayTracingPipeline = rayTracingPipeline_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingPipelineFeaturesKHR & - setRayTracingPipelineShaderGroupHandleCaptureReplay( - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineShaderGroupHandleCaptureReplay_ ) VULKAN_HPP_NOEXCEPT - { - rayTracingPipelineShaderGroupHandleCaptureReplay = rayTracingPipelineShaderGroupHandleCaptureReplay_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingPipelineFeaturesKHR & - setRayTracingPipelineShaderGroupHandleCaptureReplayMixed( - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineShaderGroupHandleCaptureReplayMixed_ ) VULKAN_HPP_NOEXCEPT - { - rayTracingPipelineShaderGroupHandleCaptureReplayMixed = rayTracingPipelineShaderGroupHandleCaptureReplayMixed_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingPipelineFeaturesKHR & setRayTracingPipelineTraceRaysIndirect( - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineTraceRaysIndirect_ ) VULKAN_HPP_NOEXCEPT - { - rayTracingPipelineTraceRaysIndirect = rayTracingPipelineTraceRaysIndirect_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRayTracingPipelineFeaturesKHR & - setRayTraversalPrimitiveCulling( VULKAN_HPP_NAMESPACE::Bool32 rayTraversalPrimitiveCulling_ ) VULKAN_HPP_NOEXCEPT - { - rayTraversalPrimitiveCulling = rayTraversalPrimitiveCulling_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRayTracingPipelineFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRayTracingPipelineFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - rayTracingPipeline, - rayTracingPipelineShaderGroupHandleCaptureReplay, - rayTracingPipelineShaderGroupHandleCaptureReplayMixed, - rayTracingPipelineTraceRaysIndirect, - rayTraversalPrimitiveCulling ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRayTracingPipelineFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceRayTracingPipelineFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( rayTracingPipeline == rhs.rayTracingPipeline ) && - ( rayTracingPipelineShaderGroupHandleCaptureReplay == - rhs.rayTracingPipelineShaderGroupHandleCaptureReplay ) && - ( rayTracingPipelineShaderGroupHandleCaptureReplayMixed == - rhs.rayTracingPipelineShaderGroupHandleCaptureReplayMixed ) && - ( rayTracingPipelineTraceRaysIndirect == rhs.rayTracingPipelineTraceRaysIndirect ) && - ( rayTraversalPrimitiveCulling == rhs.rayTraversalPrimitiveCulling ); -# endif - } - - bool operator!=( PhysicalDeviceRayTracingPipelineFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRayTracingPipelineFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipeline = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineShaderGroupHandleCaptureReplay = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineShaderGroupHandleCaptureReplayMixed = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTracingPipelineTraceRaysIndirect = {}; - VULKAN_HPP_NAMESPACE::Bool32 rayTraversalPrimitiveCulling = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingPipelineFeaturesKHR ) == - sizeof( VkPhysicalDeviceRayTracingPipelineFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRayTracingPipelineFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRayTracingPipelineFeaturesKHR; - }; - - struct PhysicalDeviceRayTracingPipelinePropertiesKHR - { - using NativeType = VkPhysicalDeviceRayTracingPipelinePropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRayTracingPipelinePropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceRayTracingPipelinePropertiesKHR( uint32_t shaderGroupHandleSize_ = {}, - uint32_t maxRayRecursionDepth_ = {}, - uint32_t maxShaderGroupStride_ = {}, - uint32_t shaderGroupBaseAlignment_ = {}, - uint32_t shaderGroupHandleCaptureReplaySize_ = {}, - uint32_t maxRayDispatchInvocationCount_ = {}, - uint32_t shaderGroupHandleAlignment_ = {}, - uint32_t maxRayHitAttributeSize_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderGroupHandleSize( shaderGroupHandleSize_ ) - , maxRayRecursionDepth( maxRayRecursionDepth_ ) - , maxShaderGroupStride( maxShaderGroupStride_ ) - , shaderGroupBaseAlignment( shaderGroupBaseAlignment_ ) - , shaderGroupHandleCaptureReplaySize( shaderGroupHandleCaptureReplaySize_ ) - , maxRayDispatchInvocationCount( maxRayDispatchInvocationCount_ ) - , shaderGroupHandleAlignment( shaderGroupHandleAlignment_ ) - , maxRayHitAttributeSize( maxRayHitAttributeSize_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRayTracingPipelinePropertiesKHR( - PhysicalDeviceRayTracingPipelinePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingPipelinePropertiesKHR( VkPhysicalDeviceRayTracingPipelinePropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRayTracingPipelinePropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRayTracingPipelinePropertiesKHR & - operator=( PhysicalDeviceRayTracingPipelinePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingPipelinePropertiesKHR & - operator=( VkPhysicalDeviceRayTracingPipelinePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceRayTracingPipelinePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRayTracingPipelinePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - shaderGroupHandleSize, - maxRayRecursionDepth, - maxShaderGroupStride, - shaderGroupBaseAlignment, - shaderGroupHandleCaptureReplaySize, - maxRayDispatchInvocationCount, - shaderGroupHandleAlignment, - maxRayHitAttributeSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRayTracingPipelinePropertiesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceRayTracingPipelinePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderGroupHandleSize == rhs.shaderGroupHandleSize ) && - ( maxRayRecursionDepth == rhs.maxRayRecursionDepth ) && - ( maxShaderGroupStride == rhs.maxShaderGroupStride ) && - ( shaderGroupBaseAlignment == rhs.shaderGroupBaseAlignment ) && - ( shaderGroupHandleCaptureReplaySize == rhs.shaderGroupHandleCaptureReplaySize ) && - ( maxRayDispatchInvocationCount == rhs.maxRayDispatchInvocationCount ) && - ( shaderGroupHandleAlignment == rhs.shaderGroupHandleAlignment ) && - ( maxRayHitAttributeSize == rhs.maxRayHitAttributeSize ); -# endif - } - - bool operator!=( PhysicalDeviceRayTracingPipelinePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRayTracingPipelinePropertiesKHR; - void * pNext = {}; - uint32_t shaderGroupHandleSize = {}; - uint32_t maxRayRecursionDepth = {}; - uint32_t maxShaderGroupStride = {}; - uint32_t shaderGroupBaseAlignment = {}; - uint32_t shaderGroupHandleCaptureReplaySize = {}; - uint32_t maxRayDispatchInvocationCount = {}; - uint32_t shaderGroupHandleAlignment = {}; - uint32_t maxRayHitAttributeSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingPipelinePropertiesKHR ) == - sizeof( VkPhysicalDeviceRayTracingPipelinePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRayTracingPipelinePropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRayTracingPipelinePropertiesKHR; - }; - - struct PhysicalDeviceRayTracingPropertiesNV - { - using NativeType = VkPhysicalDeviceRayTracingPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRayTracingPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceRayTracingPropertiesNV( uint32_t shaderGroupHandleSize_ = {}, - uint32_t maxRecursionDepth_ = {}, - uint32_t maxShaderGroupStride_ = {}, - uint32_t shaderGroupBaseAlignment_ = {}, - uint64_t maxGeometryCount_ = {}, - uint64_t maxInstanceCount_ = {}, - uint64_t maxTriangleCount_ = {}, - uint32_t maxDescriptorSetAccelerationStructures_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderGroupHandleSize( shaderGroupHandleSize_ ) - , maxRecursionDepth( maxRecursionDepth_ ) - , maxShaderGroupStride( maxShaderGroupStride_ ) - , shaderGroupBaseAlignment( shaderGroupBaseAlignment_ ) - , maxGeometryCount( maxGeometryCount_ ) - , maxInstanceCount( maxInstanceCount_ ) - , maxTriangleCount( maxTriangleCount_ ) - , maxDescriptorSetAccelerationStructures( maxDescriptorSetAccelerationStructures_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRayTracingPropertiesNV( PhysicalDeviceRayTracingPropertiesNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingPropertiesNV( VkPhysicalDeviceRayTracingPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRayTracingPropertiesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRayTracingPropertiesNV & - operator=( PhysicalDeviceRayTracingPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRayTracingPropertiesNV & - operator=( VkPhysicalDeviceRayTracingPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceRayTracingPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRayTracingPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - shaderGroupHandleSize, - maxRecursionDepth, - maxShaderGroupStride, - shaderGroupBaseAlignment, - maxGeometryCount, - maxInstanceCount, - maxTriangleCount, - maxDescriptorSetAccelerationStructures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRayTracingPropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceRayTracingPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderGroupHandleSize == rhs.shaderGroupHandleSize ) && ( maxRecursionDepth == rhs.maxRecursionDepth ) && - ( maxShaderGroupStride == rhs.maxShaderGroupStride ) && - ( shaderGroupBaseAlignment == rhs.shaderGroupBaseAlignment ) && - ( maxGeometryCount == rhs.maxGeometryCount ) && ( maxInstanceCount == rhs.maxInstanceCount ) && - ( maxTriangleCount == rhs.maxTriangleCount ) && - ( maxDescriptorSetAccelerationStructures == rhs.maxDescriptorSetAccelerationStructures ); -# endif - } - - bool operator!=( PhysicalDeviceRayTracingPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRayTracingPropertiesNV; - void * pNext = {}; - uint32_t shaderGroupHandleSize = {}; - uint32_t maxRecursionDepth = {}; - uint32_t maxShaderGroupStride = {}; - uint32_t shaderGroupBaseAlignment = {}; - uint64_t maxGeometryCount = {}; - uint64_t maxInstanceCount = {}; - uint64_t maxTriangleCount = {}; - uint32_t maxDescriptorSetAccelerationStructures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRayTracingPropertiesNV ) == - sizeof( VkPhysicalDeviceRayTracingPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRayTracingPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRayTracingPropertiesNV; - }; - - struct PhysicalDeviceRepresentativeFragmentTestFeaturesNV - { - using NativeType = VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRepresentativeFragmentTestFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceRepresentativeFragmentTestFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 representativeFragmentTest_ = {} ) VULKAN_HPP_NOEXCEPT - : representativeFragmentTest( representativeFragmentTest_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRepresentativeFragmentTestFeaturesNV( - PhysicalDeviceRepresentativeFragmentTestFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRepresentativeFragmentTestFeaturesNV( - VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRepresentativeFragmentTestFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRepresentativeFragmentTestFeaturesNV & - operator=( PhysicalDeviceRepresentativeFragmentTestFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRepresentativeFragmentTestFeaturesNV & - operator=( VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRepresentativeFragmentTestFeaturesNV & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRepresentativeFragmentTestFeaturesNV & - setRepresentativeFragmentTest( VULKAN_HPP_NAMESPACE::Bool32 representativeFragmentTest_ ) VULKAN_HPP_NOEXCEPT - { - representativeFragmentTest = representativeFragmentTest_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, representativeFragmentTest ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRepresentativeFragmentTestFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceRepresentativeFragmentTestFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( representativeFragmentTest == rhs.representativeFragmentTest ); -# endif - } - - bool operator!=( PhysicalDeviceRepresentativeFragmentTestFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRepresentativeFragmentTestFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 representativeFragmentTest = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRepresentativeFragmentTestFeaturesNV ) == - sizeof( VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRepresentativeFragmentTestFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRepresentativeFragmentTestFeaturesNV; - }; - - struct PhysicalDeviceRobustness2FeaturesEXT - { - using NativeType = VkPhysicalDeviceRobustness2FeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRobustness2FeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceRobustness2FeaturesEXT( VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccess2_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess2_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 nullDescriptor_ = {} ) VULKAN_HPP_NOEXCEPT - : robustBufferAccess2( robustBufferAccess2_ ) - , robustImageAccess2( robustImageAccess2_ ) - , nullDescriptor( nullDescriptor_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRobustness2FeaturesEXT( PhysicalDeviceRobustness2FeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRobustness2FeaturesEXT( VkPhysicalDeviceRobustness2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRobustness2FeaturesEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRobustness2FeaturesEXT & - operator=( PhysicalDeviceRobustness2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRobustness2FeaturesEXT & - operator=( VkPhysicalDeviceRobustness2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRobustness2FeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRobustness2FeaturesEXT & - setRobustBufferAccess2( VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccess2_ ) VULKAN_HPP_NOEXCEPT - { - robustBufferAccess2 = robustBufferAccess2_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRobustness2FeaturesEXT & - setRobustImageAccess2( VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess2_ ) VULKAN_HPP_NOEXCEPT - { - robustImageAccess2 = robustImageAccess2_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceRobustness2FeaturesEXT & - setNullDescriptor( VULKAN_HPP_NAMESPACE::Bool32 nullDescriptor_ ) VULKAN_HPP_NOEXCEPT - { - nullDescriptor = nullDescriptor_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceRobustness2FeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRobustness2FeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, robustBufferAccess2, robustImageAccess2, nullDescriptor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRobustness2FeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceRobustness2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( robustBufferAccess2 == rhs.robustBufferAccess2 ) && - ( robustImageAccess2 == rhs.robustImageAccess2 ) && ( nullDescriptor == rhs.nullDescriptor ); -# endif - } - - bool operator!=( PhysicalDeviceRobustness2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRobustness2FeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccess2 = {}; - VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess2 = {}; - VULKAN_HPP_NAMESPACE::Bool32 nullDescriptor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2FeaturesEXT ) == - sizeof( VkPhysicalDeviceRobustness2FeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRobustness2FeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRobustness2FeaturesEXT; - }; - - struct PhysicalDeviceRobustness2PropertiesEXT - { - using NativeType = VkPhysicalDeviceRobustness2PropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceRobustness2PropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceRobustness2PropertiesEXT( - VULKAN_HPP_NAMESPACE::DeviceSize robustStorageBufferAccessSizeAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : robustStorageBufferAccessSizeAlignment( robustStorageBufferAccessSizeAlignment_ ) - , robustUniformBufferAccessSizeAlignment( robustUniformBufferAccessSizeAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceRobustness2PropertiesEXT( PhysicalDeviceRobustness2PropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRobustness2PropertiesEXT( VkPhysicalDeviceRobustness2PropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceRobustness2PropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceRobustness2PropertiesEXT & - operator=( PhysicalDeviceRobustness2PropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceRobustness2PropertiesEXT & - operator=( VkPhysicalDeviceRobustness2PropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceRobustness2PropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceRobustness2PropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, robustStorageBufferAccessSizeAlignment, robustUniformBufferAccessSizeAlignment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceRobustness2PropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceRobustness2PropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( robustStorageBufferAccessSizeAlignment == rhs.robustStorageBufferAccessSizeAlignment ) && - ( robustUniformBufferAccessSizeAlignment == rhs.robustUniformBufferAccessSizeAlignment ); -# endif - } - - bool operator!=( PhysicalDeviceRobustness2PropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRobustness2PropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize robustStorageBufferAccessSizeAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT ) == - sizeof( VkPhysicalDeviceRobustness2PropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceRobustness2PropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceRobustness2PropertiesEXT; - }; - - struct PhysicalDeviceSampleLocationsPropertiesEXT - { - using NativeType = VkPhysicalDeviceSampleLocationsPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSampleLocationsPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSampleLocationsPropertiesEXT( - VULKAN_HPP_NAMESPACE::SampleCountFlags sampleLocationSampleCounts_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxSampleLocationGridSize_ = {}, - std::array const & sampleLocationCoordinateRange_ = {}, - uint32_t sampleLocationSubPixelBits_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 variableSampleLocations_ = {} ) VULKAN_HPP_NOEXCEPT - : sampleLocationSampleCounts( sampleLocationSampleCounts_ ) - , maxSampleLocationGridSize( maxSampleLocationGridSize_ ) - , sampleLocationCoordinateRange( sampleLocationCoordinateRange_ ) - , sampleLocationSubPixelBits( sampleLocationSubPixelBits_ ) - , variableSampleLocations( variableSampleLocations_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSampleLocationsPropertiesEXT( - PhysicalDeviceSampleLocationsPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSampleLocationsPropertiesEXT( VkPhysicalDeviceSampleLocationsPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSampleLocationsPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSampleLocationsPropertiesEXT & - operator=( PhysicalDeviceSampleLocationsPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSampleLocationsPropertiesEXT & - operator=( VkPhysicalDeviceSampleLocationsPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceSampleLocationsPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSampleLocationsPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::Bool32 const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - sampleLocationSampleCounts, - maxSampleLocationGridSize, - sampleLocationCoordinateRange, - sampleLocationSubPixelBits, - variableSampleLocations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSampleLocationsPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceSampleLocationsPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( sampleLocationSampleCounts == rhs.sampleLocationSampleCounts ) && - ( maxSampleLocationGridSize == rhs.maxSampleLocationGridSize ) && - ( sampleLocationCoordinateRange == rhs.sampleLocationCoordinateRange ) && - ( sampleLocationSubPixelBits == rhs.sampleLocationSubPixelBits ) && - ( variableSampleLocations == rhs.variableSampleLocations ); -# endif - } - - bool operator!=( PhysicalDeviceSampleLocationsPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSampleLocationsPropertiesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags sampleLocationSampleCounts = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxSampleLocationGridSize = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D sampleLocationCoordinateRange = {}; - uint32_t sampleLocationSubPixelBits = {}; - VULKAN_HPP_NAMESPACE::Bool32 variableSampleLocations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSampleLocationsPropertiesEXT ) == - sizeof( VkPhysicalDeviceSampleLocationsPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSampleLocationsPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSampleLocationsPropertiesEXT; - }; - - struct PhysicalDeviceSamplerFilterMinmaxProperties - { - using NativeType = VkPhysicalDeviceSamplerFilterMinmaxProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSamplerFilterMinmaxProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSamplerFilterMinmaxProperties( - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxSingleComponentFormats_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxImageComponentMapping_ = {} ) VULKAN_HPP_NOEXCEPT - : filterMinmaxSingleComponentFormats( filterMinmaxSingleComponentFormats_ ) - , filterMinmaxImageComponentMapping( filterMinmaxImageComponentMapping_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSamplerFilterMinmaxProperties( - PhysicalDeviceSamplerFilterMinmaxProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSamplerFilterMinmaxProperties( VkPhysicalDeviceSamplerFilterMinmaxProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSamplerFilterMinmaxProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSamplerFilterMinmaxProperties & - operator=( PhysicalDeviceSamplerFilterMinmaxProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSamplerFilterMinmaxProperties & - operator=( VkPhysicalDeviceSamplerFilterMinmaxProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceSamplerFilterMinmaxProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSamplerFilterMinmaxProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, filterMinmaxSingleComponentFormats, filterMinmaxImageComponentMapping ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSamplerFilterMinmaxProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceSamplerFilterMinmaxProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( filterMinmaxSingleComponentFormats == rhs.filterMinmaxSingleComponentFormats ) && - ( filterMinmaxImageComponentMapping == rhs.filterMinmaxImageComponentMapping ); -# endif - } - - bool operator!=( PhysicalDeviceSamplerFilterMinmaxProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSamplerFilterMinmaxProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxSingleComponentFormats = {}; - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxImageComponentMapping = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSamplerFilterMinmaxProperties ) == - sizeof( VkPhysicalDeviceSamplerFilterMinmaxProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSamplerFilterMinmaxProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSamplerFilterMinmaxProperties; - }; - using PhysicalDeviceSamplerFilterMinmaxPropertiesEXT = PhysicalDeviceSamplerFilterMinmaxProperties; - - struct PhysicalDeviceSamplerYcbcrConversionFeatures - { - using NativeType = VkPhysicalDeviceSamplerYcbcrConversionFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSamplerYcbcrConversionFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSamplerYcbcrConversionFeatures( - VULKAN_HPP_NAMESPACE::Bool32 samplerYcbcrConversion_ = {} ) VULKAN_HPP_NOEXCEPT - : samplerYcbcrConversion( samplerYcbcrConversion_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSamplerYcbcrConversionFeatures( - PhysicalDeviceSamplerYcbcrConversionFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSamplerYcbcrConversionFeatures( VkPhysicalDeviceSamplerYcbcrConversionFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSamplerYcbcrConversionFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSamplerYcbcrConversionFeatures & - operator=( PhysicalDeviceSamplerYcbcrConversionFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSamplerYcbcrConversionFeatures & - operator=( VkPhysicalDeviceSamplerYcbcrConversionFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSamplerYcbcrConversionFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSamplerYcbcrConversionFeatures & - setSamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::Bool32 samplerYcbcrConversion_ ) VULKAN_HPP_NOEXCEPT - { - samplerYcbcrConversion = samplerYcbcrConversion_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSamplerYcbcrConversionFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSamplerYcbcrConversionFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, samplerYcbcrConversion ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSamplerYcbcrConversionFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceSamplerYcbcrConversionFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( samplerYcbcrConversion == rhs.samplerYcbcrConversion ); -# endif - } - - bool operator!=( PhysicalDeviceSamplerYcbcrConversionFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSamplerYcbcrConversionFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 samplerYcbcrConversion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSamplerYcbcrConversionFeatures ) == - sizeof( VkPhysicalDeviceSamplerYcbcrConversionFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSamplerYcbcrConversionFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSamplerYcbcrConversionFeatures; - }; - using PhysicalDeviceSamplerYcbcrConversionFeaturesKHR = PhysicalDeviceSamplerYcbcrConversionFeatures; - - struct PhysicalDeviceScalarBlockLayoutFeatures - { - using NativeType = VkPhysicalDeviceScalarBlockLayoutFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceScalarBlockLayoutFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceScalarBlockLayoutFeatures( VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_ = {} ) - VULKAN_HPP_NOEXCEPT : scalarBlockLayout( scalarBlockLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceScalarBlockLayoutFeatures( PhysicalDeviceScalarBlockLayoutFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceScalarBlockLayoutFeatures( VkPhysicalDeviceScalarBlockLayoutFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceScalarBlockLayoutFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceScalarBlockLayoutFeatures & - operator=( PhysicalDeviceScalarBlockLayoutFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceScalarBlockLayoutFeatures & - operator=( VkPhysicalDeviceScalarBlockLayoutFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceScalarBlockLayoutFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceScalarBlockLayoutFeatures & - setScalarBlockLayout( VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_ ) VULKAN_HPP_NOEXCEPT - { - scalarBlockLayout = scalarBlockLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceScalarBlockLayoutFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceScalarBlockLayoutFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, scalarBlockLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceScalarBlockLayoutFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceScalarBlockLayoutFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( scalarBlockLayout == rhs.scalarBlockLayout ); -# endif - } - - bool operator!=( PhysicalDeviceScalarBlockLayoutFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceScalarBlockLayoutFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures ) == - sizeof( VkPhysicalDeviceScalarBlockLayoutFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceScalarBlockLayoutFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceScalarBlockLayoutFeatures; - }; - using PhysicalDeviceScalarBlockLayoutFeaturesEXT = PhysicalDeviceScalarBlockLayoutFeatures; - - struct PhysicalDeviceSeparateDepthStencilLayoutsFeatures - { - using NativeType = VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSeparateDepthStencilLayoutsFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSeparateDepthStencilLayoutsFeatures( - VULKAN_HPP_NAMESPACE::Bool32 separateDepthStencilLayouts_ = {} ) VULKAN_HPP_NOEXCEPT - : separateDepthStencilLayouts( separateDepthStencilLayouts_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSeparateDepthStencilLayoutsFeatures( - PhysicalDeviceSeparateDepthStencilLayoutsFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSeparateDepthStencilLayoutsFeatures( VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSeparateDepthStencilLayoutsFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSeparateDepthStencilLayoutsFeatures & - operator=( PhysicalDeviceSeparateDepthStencilLayoutsFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSeparateDepthStencilLayoutsFeatures & - operator=( VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSeparateDepthStencilLayoutsFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSeparateDepthStencilLayoutsFeatures & - setSeparateDepthStencilLayouts( VULKAN_HPP_NAMESPACE::Bool32 separateDepthStencilLayouts_ ) VULKAN_HPP_NOEXCEPT - { - separateDepthStencilLayouts = separateDepthStencilLayouts_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, separateDepthStencilLayouts ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSeparateDepthStencilLayoutsFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceSeparateDepthStencilLayoutsFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( separateDepthStencilLayouts == rhs.separateDepthStencilLayouts ); -# endif - } - - bool operator!=( PhysicalDeviceSeparateDepthStencilLayoutsFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSeparateDepthStencilLayoutsFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 separateDepthStencilLayouts = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSeparateDepthStencilLayoutsFeatures ) == - sizeof( VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSeparateDepthStencilLayoutsFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSeparateDepthStencilLayoutsFeatures; - }; - using PhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR = PhysicalDeviceSeparateDepthStencilLayoutsFeatures; - - struct PhysicalDeviceShaderAtomicFloat2FeaturesEXT - { - using NativeType = VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderAtomicFloat2FeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderAtomicFloat2FeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32AtomicMinMax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32AtomicMinMax_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderBufferFloat16Atomics( shaderBufferFloat16Atomics_ ) - , shaderBufferFloat16AtomicAdd( shaderBufferFloat16AtomicAdd_ ) - , shaderBufferFloat16AtomicMinMax( shaderBufferFloat16AtomicMinMax_ ) - , shaderBufferFloat32AtomicMinMax( shaderBufferFloat32AtomicMinMax_ ) - , shaderBufferFloat64AtomicMinMax( shaderBufferFloat64AtomicMinMax_ ) - , shaderSharedFloat16Atomics( shaderSharedFloat16Atomics_ ) - , shaderSharedFloat16AtomicAdd( shaderSharedFloat16AtomicAdd_ ) - , shaderSharedFloat16AtomicMinMax( shaderSharedFloat16AtomicMinMax_ ) - , shaderSharedFloat32AtomicMinMax( shaderSharedFloat32AtomicMinMax_ ) - , shaderSharedFloat64AtomicMinMax( shaderSharedFloat64AtomicMinMax_ ) - , shaderImageFloat32AtomicMinMax( shaderImageFloat32AtomicMinMax_ ) - , sparseImageFloat32AtomicMinMax( sparseImageFloat32AtomicMinMax_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderAtomicFloat2FeaturesEXT( - PhysicalDeviceShaderAtomicFloat2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderAtomicFloat2FeaturesEXT( VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderAtomicFloat2FeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderAtomicFloat2FeaturesEXT & - operator=( PhysicalDeviceShaderAtomicFloat2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderAtomicFloat2FeaturesEXT & - operator=( VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & - setShaderBufferFloat16Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat16Atomics = shaderBufferFloat16Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & - setShaderBufferFloat16AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat16AtomicAdd = shaderBufferFloat16AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderBufferFloat16AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat16AtomicMinMax = shaderBufferFloat16AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderBufferFloat32AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat32AtomicMinMax = shaderBufferFloat32AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderBufferFloat64AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat64AtomicMinMax = shaderBufferFloat64AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & - setShaderSharedFloat16Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat16Atomics = shaderSharedFloat16Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & - setShaderSharedFloat16AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat16AtomicAdd = shaderSharedFloat16AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderSharedFloat16AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat16AtomicMinMax = shaderSharedFloat16AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderSharedFloat32AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat32AtomicMinMax = shaderSharedFloat32AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderSharedFloat64AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat64AtomicMinMax = shaderSharedFloat64AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setShaderImageFloat32AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - shaderImageFloat32AtomicMinMax = shaderImageFloat32AtomicMinMax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloat2FeaturesEXT & setSparseImageFloat32AtomicMinMax( - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32AtomicMinMax_ ) VULKAN_HPP_NOEXCEPT - { - sparseImageFloat32AtomicMinMax = sparseImageFloat32AtomicMinMax_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - shaderBufferFloat16Atomics, - shaderBufferFloat16AtomicAdd, - shaderBufferFloat16AtomicMinMax, - shaderBufferFloat32AtomicMinMax, - shaderBufferFloat64AtomicMinMax, - shaderSharedFloat16Atomics, - shaderSharedFloat16AtomicAdd, - shaderSharedFloat16AtomicMinMax, - shaderSharedFloat32AtomicMinMax, - shaderSharedFloat64AtomicMinMax, - shaderImageFloat32AtomicMinMax, - sparseImageFloat32AtomicMinMax ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderAtomicFloat2FeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderAtomicFloat2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderBufferFloat16Atomics == rhs.shaderBufferFloat16Atomics ) && - ( shaderBufferFloat16AtomicAdd == rhs.shaderBufferFloat16AtomicAdd ) && - ( shaderBufferFloat16AtomicMinMax == rhs.shaderBufferFloat16AtomicMinMax ) && - ( shaderBufferFloat32AtomicMinMax == rhs.shaderBufferFloat32AtomicMinMax ) && - ( shaderBufferFloat64AtomicMinMax == rhs.shaderBufferFloat64AtomicMinMax ) && - ( shaderSharedFloat16Atomics == rhs.shaderSharedFloat16Atomics ) && - ( shaderSharedFloat16AtomicAdd == rhs.shaderSharedFloat16AtomicAdd ) && - ( shaderSharedFloat16AtomicMinMax == rhs.shaderSharedFloat16AtomicMinMax ) && - ( shaderSharedFloat32AtomicMinMax == rhs.shaderSharedFloat32AtomicMinMax ) && - ( shaderSharedFloat64AtomicMinMax == rhs.shaderSharedFloat64AtomicMinMax ) && - ( shaderImageFloat32AtomicMinMax == rhs.shaderImageFloat32AtomicMinMax ) && - ( sparseImageFloat32AtomicMinMax == rhs.sparseImageFloat32AtomicMinMax ); -# endif - } - - bool operator!=( PhysicalDeviceShaderAtomicFloat2FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderAtomicFloat2FeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat16AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat16AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32AtomicMinMax = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32AtomicMinMax = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderAtomicFloat2FeaturesEXT ) == - sizeof( VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderAtomicFloat2FeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderAtomicFloat2FeaturesEXT; - }; - - struct PhysicalDeviceShaderAtomicFloatFeaturesEXT - { - using NativeType = VkPhysicalDeviceShaderAtomicFloatFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderAtomicFloatFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderAtomicFloatFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32AtomicAdd_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32AtomicAdd_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderBufferFloat32Atomics( shaderBufferFloat32Atomics_ ) - , shaderBufferFloat32AtomicAdd( shaderBufferFloat32AtomicAdd_ ) - , shaderBufferFloat64Atomics( shaderBufferFloat64Atomics_ ) - , shaderBufferFloat64AtomicAdd( shaderBufferFloat64AtomicAdd_ ) - , shaderSharedFloat32Atomics( shaderSharedFloat32Atomics_ ) - , shaderSharedFloat32AtomicAdd( shaderSharedFloat32AtomicAdd_ ) - , shaderSharedFloat64Atomics( shaderSharedFloat64Atomics_ ) - , shaderSharedFloat64AtomicAdd( shaderSharedFloat64AtomicAdd_ ) - , shaderImageFloat32Atomics( shaderImageFloat32Atomics_ ) - , shaderImageFloat32AtomicAdd( shaderImageFloat32AtomicAdd_ ) - , sparseImageFloat32Atomics( sparseImageFloat32Atomics_ ) - , sparseImageFloat32AtomicAdd( sparseImageFloat32AtomicAdd_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderAtomicFloatFeaturesEXT( - PhysicalDeviceShaderAtomicFloatFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderAtomicFloatFeaturesEXT( VkPhysicalDeviceShaderAtomicFloatFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderAtomicFloatFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderAtomicFloatFeaturesEXT & - operator=( PhysicalDeviceShaderAtomicFloatFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderAtomicFloatFeaturesEXT & - operator=( VkPhysicalDeviceShaderAtomicFloatFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderBufferFloat32Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat32Atomics = shaderBufferFloat32Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderBufferFloat32AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat32AtomicAdd = shaderBufferFloat32AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderBufferFloat64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat64Atomics = shaderBufferFloat64Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderBufferFloat64AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferFloat64AtomicAdd = shaderBufferFloat64AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderSharedFloat32Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat32Atomics = shaderSharedFloat32Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderSharedFloat32AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat32AtomicAdd = shaderSharedFloat32AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderSharedFloat64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat64Atomics = shaderSharedFloat64Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderSharedFloat64AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedFloat64AtomicAdd = shaderSharedFloat64AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderImageFloat32Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderImageFloat32Atomics = shaderImageFloat32Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setShaderImageFloat32AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - shaderImageFloat32AtomicAdd = shaderImageFloat32AtomicAdd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setSparseImageFloat32Atomics( VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32Atomics_ ) VULKAN_HPP_NOEXCEPT - { - sparseImageFloat32Atomics = sparseImageFloat32Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicFloatFeaturesEXT & - setSparseImageFloat32AtomicAdd( VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32AtomicAdd_ ) VULKAN_HPP_NOEXCEPT - { - sparseImageFloat32AtomicAdd = sparseImageFloat32AtomicAdd_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderAtomicFloatFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderAtomicFloatFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - shaderBufferFloat32Atomics, - shaderBufferFloat32AtomicAdd, - shaderBufferFloat64Atomics, - shaderBufferFloat64AtomicAdd, - shaderSharedFloat32Atomics, - shaderSharedFloat32AtomicAdd, - shaderSharedFloat64Atomics, - shaderSharedFloat64AtomicAdd, - shaderImageFloat32Atomics, - shaderImageFloat32AtomicAdd, - sparseImageFloat32Atomics, - sparseImageFloat32AtomicAdd ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderAtomicFloatFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderAtomicFloatFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderBufferFloat32Atomics == rhs.shaderBufferFloat32Atomics ) && - ( shaderBufferFloat32AtomicAdd == rhs.shaderBufferFloat32AtomicAdd ) && - ( shaderBufferFloat64Atomics == rhs.shaderBufferFloat64Atomics ) && - ( shaderBufferFloat64AtomicAdd == rhs.shaderBufferFloat64AtomicAdd ) && - ( shaderSharedFloat32Atomics == rhs.shaderSharedFloat32Atomics ) && - ( shaderSharedFloat32AtomicAdd == rhs.shaderSharedFloat32AtomicAdd ) && - ( shaderSharedFloat64Atomics == rhs.shaderSharedFloat64Atomics ) && - ( shaderSharedFloat64AtomicAdd == rhs.shaderSharedFloat64AtomicAdd ) && - ( shaderImageFloat32Atomics == rhs.shaderImageFloat32Atomics ) && - ( shaderImageFloat32AtomicAdd == rhs.shaderImageFloat32AtomicAdd ) && - ( sparseImageFloat32Atomics == rhs.sparseImageFloat32Atomics ) && - ( sparseImageFloat32AtomicAdd == rhs.sparseImageFloat32AtomicAdd ); -# endif - } - - bool operator!=( PhysicalDeviceShaderAtomicFloatFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderAtomicFloatFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat32AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferFloat64AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat32AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedFloat64AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderImageFloat32AtomicAdd = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseImageFloat32AtomicAdd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderAtomicFloatFeaturesEXT ) == - sizeof( VkPhysicalDeviceShaderAtomicFloatFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderAtomicFloatFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderAtomicFloatFeaturesEXT; - }; - - struct PhysicalDeviceShaderAtomicInt64Features - { - using NativeType = VkPhysicalDeviceShaderAtomicInt64Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderAtomicInt64Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderAtomicInt64Features( - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferInt64Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedInt64Atomics_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderBufferInt64Atomics( shaderBufferInt64Atomics_ ) - , shaderSharedInt64Atomics( shaderSharedInt64Atomics_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderAtomicInt64Features( PhysicalDeviceShaderAtomicInt64Features const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderAtomicInt64Features( VkPhysicalDeviceShaderAtomicInt64Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderAtomicInt64Features( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderAtomicInt64Features & - operator=( PhysicalDeviceShaderAtomicInt64Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderAtomicInt64Features & - operator=( VkPhysicalDeviceShaderAtomicInt64Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicInt64Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicInt64Features & - setShaderBufferInt64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferInt64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferInt64Atomics = shaderBufferInt64Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderAtomicInt64Features & - setShaderSharedInt64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedInt64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedInt64Atomics = shaderSharedInt64Atomics_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderAtomicInt64Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderAtomicInt64Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderBufferInt64Atomics, shaderSharedInt64Atomics ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderAtomicInt64Features const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderAtomicInt64Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderBufferInt64Atomics == rhs.shaderBufferInt64Atomics ) && - ( shaderSharedInt64Atomics == rhs.shaderSharedInt64Atomics ); -# endif - } - - bool operator!=( PhysicalDeviceShaderAtomicInt64Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderAtomicInt64Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferInt64Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedInt64Atomics = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderAtomicInt64Features ) == - sizeof( VkPhysicalDeviceShaderAtomicInt64Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderAtomicInt64Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderAtomicInt64Features; - }; - using PhysicalDeviceShaderAtomicInt64FeaturesKHR = PhysicalDeviceShaderAtomicInt64Features; - - struct PhysicalDeviceShaderClockFeaturesKHR - { - using NativeType = VkPhysicalDeviceShaderClockFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderClockFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceShaderClockFeaturesKHR( VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupClock_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDeviceClock_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderSubgroupClock( shaderSubgroupClock_ ) - , shaderDeviceClock( shaderDeviceClock_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderClockFeaturesKHR( PhysicalDeviceShaderClockFeaturesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderClockFeaturesKHR( VkPhysicalDeviceShaderClockFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderClockFeaturesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderClockFeaturesKHR & - operator=( PhysicalDeviceShaderClockFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderClockFeaturesKHR & - operator=( VkPhysicalDeviceShaderClockFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderClockFeaturesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderClockFeaturesKHR & - setShaderSubgroupClock( VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupClock_ ) VULKAN_HPP_NOEXCEPT - { - shaderSubgroupClock = shaderSubgroupClock_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderClockFeaturesKHR & - setShaderDeviceClock( VULKAN_HPP_NAMESPACE::Bool32 shaderDeviceClock_ ) VULKAN_HPP_NOEXCEPT - { - shaderDeviceClock = shaderDeviceClock_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderClockFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderClockFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderSubgroupClock, shaderDeviceClock ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderClockFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderClockFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderSubgroupClock == rhs.shaderSubgroupClock ) && - ( shaderDeviceClock == rhs.shaderDeviceClock ); -# endif - } - - bool operator!=( PhysicalDeviceShaderClockFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderClockFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupClock = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDeviceClock = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderClockFeaturesKHR ) == - sizeof( VkPhysicalDeviceShaderClockFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderClockFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderClockFeaturesKHR; - }; - - struct PhysicalDeviceShaderCoreProperties2AMD - { - using NativeType = VkPhysicalDeviceShaderCoreProperties2AMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderCoreProperties2AMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderCoreProperties2AMD( - VULKAN_HPP_NAMESPACE::ShaderCorePropertiesFlagsAMD shaderCoreFeatures_ = {}, - uint32_t activeComputeUnitCount_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderCoreFeatures( shaderCoreFeatures_ ) - , activeComputeUnitCount( activeComputeUnitCount_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderCoreProperties2AMD( PhysicalDeviceShaderCoreProperties2AMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderCoreProperties2AMD( VkPhysicalDeviceShaderCoreProperties2AMD const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderCoreProperties2AMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderCoreProperties2AMD & - operator=( PhysicalDeviceShaderCoreProperties2AMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderCoreProperties2AMD & - operator=( VkPhysicalDeviceShaderCoreProperties2AMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceShaderCoreProperties2AMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderCoreProperties2AMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderCoreFeatures, activeComputeUnitCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderCoreProperties2AMD const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderCoreProperties2AMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderCoreFeatures == rhs.shaderCoreFeatures ) && - ( activeComputeUnitCount == rhs.activeComputeUnitCount ); -# endif - } - - bool operator!=( PhysicalDeviceShaderCoreProperties2AMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderCoreProperties2AMD; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ShaderCorePropertiesFlagsAMD shaderCoreFeatures = {}; - uint32_t activeComputeUnitCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderCoreProperties2AMD ) == - sizeof( VkPhysicalDeviceShaderCoreProperties2AMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderCoreProperties2AMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderCoreProperties2AMD; - }; - - struct PhysicalDeviceShaderCorePropertiesAMD - { - using NativeType = VkPhysicalDeviceShaderCorePropertiesAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderCorePropertiesAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceShaderCorePropertiesAMD( uint32_t shaderEngineCount_ = {}, - uint32_t shaderArraysPerEngineCount_ = {}, - uint32_t computeUnitsPerShaderArray_ = {}, - uint32_t simdPerComputeUnit_ = {}, - uint32_t wavefrontsPerSimd_ = {}, - uint32_t wavefrontSize_ = {}, - uint32_t sgprsPerSimd_ = {}, - uint32_t minSgprAllocation_ = {}, - uint32_t maxSgprAllocation_ = {}, - uint32_t sgprAllocationGranularity_ = {}, - uint32_t vgprsPerSimd_ = {}, - uint32_t minVgprAllocation_ = {}, - uint32_t maxVgprAllocation_ = {}, - uint32_t vgprAllocationGranularity_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderEngineCount( shaderEngineCount_ ) - , shaderArraysPerEngineCount( shaderArraysPerEngineCount_ ) - , computeUnitsPerShaderArray( computeUnitsPerShaderArray_ ) - , simdPerComputeUnit( simdPerComputeUnit_ ) - , wavefrontsPerSimd( wavefrontsPerSimd_ ) - , wavefrontSize( wavefrontSize_ ) - , sgprsPerSimd( sgprsPerSimd_ ) - , minSgprAllocation( minSgprAllocation_ ) - , maxSgprAllocation( maxSgprAllocation_ ) - , sgprAllocationGranularity( sgprAllocationGranularity_ ) - , vgprsPerSimd( vgprsPerSimd_ ) - , minVgprAllocation( minVgprAllocation_ ) - , maxVgprAllocation( maxVgprAllocation_ ) - , vgprAllocationGranularity( vgprAllocationGranularity_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderCorePropertiesAMD( PhysicalDeviceShaderCorePropertiesAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderCorePropertiesAMD( VkPhysicalDeviceShaderCorePropertiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderCorePropertiesAMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderCorePropertiesAMD & - operator=( PhysicalDeviceShaderCorePropertiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderCorePropertiesAMD & - operator=( VkPhysicalDeviceShaderCorePropertiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceShaderCorePropertiesAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderCorePropertiesAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - shaderEngineCount, - shaderArraysPerEngineCount, - computeUnitsPerShaderArray, - simdPerComputeUnit, - wavefrontsPerSimd, - wavefrontSize, - sgprsPerSimd, - minSgprAllocation, - maxSgprAllocation, - sgprAllocationGranularity, - vgprsPerSimd, - minVgprAllocation, - maxVgprAllocation, - vgprAllocationGranularity ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderCorePropertiesAMD const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderCorePropertiesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderEngineCount == rhs.shaderEngineCount ) && - ( shaderArraysPerEngineCount == rhs.shaderArraysPerEngineCount ) && - ( computeUnitsPerShaderArray == rhs.computeUnitsPerShaderArray ) && - ( simdPerComputeUnit == rhs.simdPerComputeUnit ) && ( wavefrontsPerSimd == rhs.wavefrontsPerSimd ) && - ( wavefrontSize == rhs.wavefrontSize ) && ( sgprsPerSimd == rhs.sgprsPerSimd ) && - ( minSgprAllocation == rhs.minSgprAllocation ) && ( maxSgprAllocation == rhs.maxSgprAllocation ) && - ( sgprAllocationGranularity == rhs.sgprAllocationGranularity ) && ( vgprsPerSimd == rhs.vgprsPerSimd ) && - ( minVgprAllocation == rhs.minVgprAllocation ) && ( maxVgprAllocation == rhs.maxVgprAllocation ) && - ( vgprAllocationGranularity == rhs.vgprAllocationGranularity ); -# endif - } - - bool operator!=( PhysicalDeviceShaderCorePropertiesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderCorePropertiesAMD; - void * pNext = {}; - uint32_t shaderEngineCount = {}; - uint32_t shaderArraysPerEngineCount = {}; - uint32_t computeUnitsPerShaderArray = {}; - uint32_t simdPerComputeUnit = {}; - uint32_t wavefrontsPerSimd = {}; - uint32_t wavefrontSize = {}; - uint32_t sgprsPerSimd = {}; - uint32_t minSgprAllocation = {}; - uint32_t maxSgprAllocation = {}; - uint32_t sgprAllocationGranularity = {}; - uint32_t vgprsPerSimd = {}; - uint32_t minVgprAllocation = {}; - uint32_t maxVgprAllocation = {}; - uint32_t vgprAllocationGranularity = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderCorePropertiesAMD ) == - sizeof( VkPhysicalDeviceShaderCorePropertiesAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderCorePropertiesAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderCorePropertiesAMD; - }; - - struct PhysicalDeviceShaderDemoteToHelperInvocationFeatures - { - using NativeType = VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderDemoteToHelperInvocationFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderDemoteToHelperInvocationFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderDemoteToHelperInvocation_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderDemoteToHelperInvocation( shaderDemoteToHelperInvocation_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderDemoteToHelperInvocationFeatures( - PhysicalDeviceShaderDemoteToHelperInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderDemoteToHelperInvocationFeatures( - VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderDemoteToHelperInvocationFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderDemoteToHelperInvocationFeatures & - operator=( PhysicalDeviceShaderDemoteToHelperInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderDemoteToHelperInvocationFeatures & - operator=( VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderDemoteToHelperInvocationFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderDemoteToHelperInvocationFeatures & setShaderDemoteToHelperInvocation( - VULKAN_HPP_NAMESPACE::Bool32 shaderDemoteToHelperInvocation_ ) VULKAN_HPP_NOEXCEPT - { - shaderDemoteToHelperInvocation = shaderDemoteToHelperInvocation_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderDemoteToHelperInvocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderDemoteToHelperInvocationFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderDemoteToHelperInvocationFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderDemoteToHelperInvocation == rhs.shaderDemoteToHelperInvocation ); -# endif - } - - bool operator!=( PhysicalDeviceShaderDemoteToHelperInvocationFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderDemoteToHelperInvocationFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDemoteToHelperInvocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderDemoteToHelperInvocationFeatures ) == - sizeof( VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderDemoteToHelperInvocationFeatures>::value, - "PhysicalDeviceShaderDemoteToHelperInvocationFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderDemoteToHelperInvocationFeatures; - }; - using PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT = PhysicalDeviceShaderDemoteToHelperInvocationFeatures; - - struct PhysicalDeviceShaderDrawParametersFeatures - { - using NativeType = VkPhysicalDeviceShaderDrawParametersFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderDrawParametersFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderDrawParametersFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderDrawParameters_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderDrawParameters( shaderDrawParameters_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderDrawParametersFeatures( - PhysicalDeviceShaderDrawParametersFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderDrawParametersFeatures( VkPhysicalDeviceShaderDrawParametersFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderDrawParametersFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderDrawParametersFeatures & - operator=( PhysicalDeviceShaderDrawParametersFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderDrawParametersFeatures & - operator=( VkPhysicalDeviceShaderDrawParametersFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderDrawParametersFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderDrawParametersFeatures & - setShaderDrawParameters( VULKAN_HPP_NAMESPACE::Bool32 shaderDrawParameters_ ) VULKAN_HPP_NOEXCEPT - { - shaderDrawParameters = shaderDrawParameters_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderDrawParametersFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderDrawParametersFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderDrawParameters ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderDrawParametersFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderDrawParametersFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderDrawParameters == rhs.shaderDrawParameters ); -# endif - } - - bool operator!=( PhysicalDeviceShaderDrawParametersFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderDrawParametersFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDrawParameters = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderDrawParametersFeatures ) == - sizeof( VkPhysicalDeviceShaderDrawParametersFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderDrawParametersFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderDrawParametersFeatures; - }; - using PhysicalDeviceShaderDrawParameterFeatures = PhysicalDeviceShaderDrawParametersFeatures; - - struct PhysicalDeviceShaderFloat16Int8Features - { - using NativeType = VkPhysicalDeviceShaderFloat16Int8Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderFloat16Int8Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceShaderFloat16Int8Features( VULKAN_HPP_NAMESPACE::Bool32 shaderFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInt8_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderFloat16( shaderFloat16_ ) - , shaderInt8( shaderInt8_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderFloat16Int8Features( PhysicalDeviceShaderFloat16Int8Features const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderFloat16Int8Features( VkPhysicalDeviceShaderFloat16Int8Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderFloat16Int8Features( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderFloat16Int8Features & - operator=( PhysicalDeviceShaderFloat16Int8Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderFloat16Int8Features & - operator=( VkPhysicalDeviceShaderFloat16Int8Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderFloat16Int8Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderFloat16Int8Features & - setShaderFloat16( VULKAN_HPP_NAMESPACE::Bool32 shaderFloat16_ ) VULKAN_HPP_NOEXCEPT - { - shaderFloat16 = shaderFloat16_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderFloat16Int8Features & - setShaderInt8( VULKAN_HPP_NAMESPACE::Bool32 shaderInt8_ ) VULKAN_HPP_NOEXCEPT - { - shaderInt8 = shaderInt8_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderFloat16Int8Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderFloat16Int8Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderFloat16, shaderInt8 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderFloat16Int8Features const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderFloat16Int8Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderFloat16 == rhs.shaderFloat16 ) && - ( shaderInt8 == rhs.shaderInt8 ); -# endif - } - - bool operator!=( PhysicalDeviceShaderFloat16Int8Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderFloat16Int8Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInt8 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderFloat16Int8Features ) == - sizeof( VkPhysicalDeviceShaderFloat16Int8Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderFloat16Int8Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderFloat16Int8Features; - }; - using PhysicalDeviceFloat16Int8FeaturesKHR = PhysicalDeviceShaderFloat16Int8Features; - using PhysicalDeviceShaderFloat16Int8FeaturesKHR = PhysicalDeviceShaderFloat16Int8Features; - - struct PhysicalDeviceShaderImageAtomicInt64FeaturesEXT - { - using NativeType = VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderImageAtomicInt64FeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderImageAtomicInt64FeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 shaderImageInt64Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 sparseImageInt64Atomics_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderImageInt64Atomics( shaderImageInt64Atomics_ ) - , sparseImageInt64Atomics( sparseImageInt64Atomics_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderImageAtomicInt64FeaturesEXT( - PhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderImageAtomicInt64FeaturesEXT( VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderImageAtomicInt64FeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderImageAtomicInt64FeaturesEXT & - operator=( PhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderImageAtomicInt64FeaturesEXT & - operator=( VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderImageAtomicInt64FeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderImageAtomicInt64FeaturesEXT & - setShaderImageInt64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderImageInt64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderImageInt64Atomics = shaderImageInt64Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderImageAtomicInt64FeaturesEXT & - setSparseImageInt64Atomics( VULKAN_HPP_NAMESPACE::Bool32 sparseImageInt64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - sparseImageInt64Atomics = sparseImageInt64Atomics_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderImageInt64Atomics, sparseImageInt64Atomics ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderImageInt64Atomics == rhs.shaderImageInt64Atomics ) && - ( sparseImageInt64Atomics == rhs.sparseImageInt64Atomics ); -# endif - } - - bool operator!=( PhysicalDeviceShaderImageAtomicInt64FeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderImageAtomicInt64FeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderImageInt64Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 sparseImageInt64Atomics = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderImageAtomicInt64FeaturesEXT ) == - sizeof( VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderImageAtomicInt64FeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderImageAtomicInt64FeaturesEXT; - }; - - struct PhysicalDeviceShaderImageFootprintFeaturesNV - { - using NativeType = VkPhysicalDeviceShaderImageFootprintFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderImageFootprintFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderImageFootprintFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 imageFootprint_ = {} ) VULKAN_HPP_NOEXCEPT : imageFootprint( imageFootprint_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderImageFootprintFeaturesNV( - PhysicalDeviceShaderImageFootprintFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderImageFootprintFeaturesNV( VkPhysicalDeviceShaderImageFootprintFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderImageFootprintFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderImageFootprintFeaturesNV & - operator=( PhysicalDeviceShaderImageFootprintFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderImageFootprintFeaturesNV & - operator=( VkPhysicalDeviceShaderImageFootprintFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderImageFootprintFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderImageFootprintFeaturesNV & - setImageFootprint( VULKAN_HPP_NAMESPACE::Bool32 imageFootprint_ ) VULKAN_HPP_NOEXCEPT - { - imageFootprint = imageFootprint_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderImageFootprintFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderImageFootprintFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageFootprint ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderImageFootprintFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderImageFootprintFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageFootprint == rhs.imageFootprint ); -# endif - } - - bool operator!=( PhysicalDeviceShaderImageFootprintFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderImageFootprintFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 imageFootprint = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderImageFootprintFeaturesNV ) == - sizeof( VkPhysicalDeviceShaderImageFootprintFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderImageFootprintFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderImageFootprintFeaturesNV; - }; - - struct PhysicalDeviceShaderIntegerDotProductFeatures - { - using NativeType = VkPhysicalDeviceShaderIntegerDotProductFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderIntegerDotProductFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderIntegerDotProductFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerDotProduct_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderIntegerDotProduct( shaderIntegerDotProduct_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderIntegerDotProductFeatures( - PhysicalDeviceShaderIntegerDotProductFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderIntegerDotProductFeatures( VkPhysicalDeviceShaderIntegerDotProductFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderIntegerDotProductFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderIntegerDotProductFeatures & - operator=( PhysicalDeviceShaderIntegerDotProductFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderIntegerDotProductFeatures & - operator=( VkPhysicalDeviceShaderIntegerDotProductFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductFeatures & - setShaderIntegerDotProduct( VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerDotProduct_ ) VULKAN_HPP_NOEXCEPT - { - shaderIntegerDotProduct = shaderIntegerDotProduct_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderIntegerDotProductFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderIntegerDotProductFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderIntegerDotProduct ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderIntegerDotProductFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderIntegerDotProductFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderIntegerDotProduct == rhs.shaderIntegerDotProduct ); -# endif - } - - bool operator!=( PhysicalDeviceShaderIntegerDotProductFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderIntegerDotProductFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerDotProduct = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderIntegerDotProductFeatures ) == - sizeof( VkPhysicalDeviceShaderIntegerDotProductFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderIntegerDotProductFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderIntegerDotProductFeatures; - }; - using PhysicalDeviceShaderIntegerDotProductFeaturesKHR = PhysicalDeviceShaderIntegerDotProductFeatures; - - struct PhysicalDeviceShaderIntegerDotProductProperties - { - using NativeType = VkPhysicalDeviceShaderIntegerDotProductProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderIntegerDotProductProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderIntegerDotProductProperties( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated_ = {} ) - VULKAN_HPP_NOEXCEPT - : integerDotProduct8BitUnsignedAccelerated( integerDotProduct8BitUnsignedAccelerated_ ) - , integerDotProduct8BitSignedAccelerated( integerDotProduct8BitSignedAccelerated_ ) - , integerDotProduct8BitMixedSignednessAccelerated( integerDotProduct8BitMixedSignednessAccelerated_ ) - , integerDotProduct4x8BitPackedUnsignedAccelerated( integerDotProduct4x8BitPackedUnsignedAccelerated_ ) - , integerDotProduct4x8BitPackedSignedAccelerated( integerDotProduct4x8BitPackedSignedAccelerated_ ) - , integerDotProduct4x8BitPackedMixedSignednessAccelerated( - integerDotProduct4x8BitPackedMixedSignednessAccelerated_ ) - , integerDotProduct16BitUnsignedAccelerated( integerDotProduct16BitUnsignedAccelerated_ ) - , integerDotProduct16BitSignedAccelerated( integerDotProduct16BitSignedAccelerated_ ) - , integerDotProduct16BitMixedSignednessAccelerated( integerDotProduct16BitMixedSignednessAccelerated_ ) - , integerDotProduct32BitUnsignedAccelerated( integerDotProduct32BitUnsignedAccelerated_ ) - , integerDotProduct32BitSignedAccelerated( integerDotProduct32BitSignedAccelerated_ ) - , integerDotProduct32BitMixedSignednessAccelerated( integerDotProduct32BitMixedSignednessAccelerated_ ) - , integerDotProduct64BitUnsignedAccelerated( integerDotProduct64BitUnsignedAccelerated_ ) - , integerDotProduct64BitSignedAccelerated( integerDotProduct64BitSignedAccelerated_ ) - , integerDotProduct64BitMixedSignednessAccelerated( integerDotProduct64BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating8BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating8BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating8BitSignedAccelerated( - integerDotProductAccumulatingSaturating8BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated( - integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated( - integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating16BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating16BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating16BitSignedAccelerated( - integerDotProductAccumulatingSaturating16BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating32BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating32BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating32BitSignedAccelerated( - integerDotProductAccumulatingSaturating32BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating64BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating64BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating64BitSignedAccelerated( - integerDotProductAccumulatingSaturating64BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderIntegerDotProductProperties( - PhysicalDeviceShaderIntegerDotProductProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderIntegerDotProductProperties( VkPhysicalDeviceShaderIntegerDotProductProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderIntegerDotProductProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderIntegerDotProductProperties & - operator=( PhysicalDeviceShaderIntegerDotProductProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderIntegerDotProductProperties & - operator=( VkPhysicalDeviceShaderIntegerDotProductProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct8BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitUnsignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct8BitUnsignedAccelerated = integerDotProduct8BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & setIntegerDotProduct8BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitSignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct8BitSignedAccelerated = integerDotProduct8BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct8BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitMixedSignednessAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct8BitMixedSignednessAccelerated = integerDotProduct8BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct4x8BitPackedUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedUnsignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct4x8BitPackedUnsignedAccelerated = integerDotProduct4x8BitPackedUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct4x8BitPackedSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedSignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct4x8BitPackedSignedAccelerated = integerDotProduct4x8BitPackedSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct4x8BitPackedMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct4x8BitPackedMixedSignednessAccelerated = - integerDotProduct4x8BitPackedMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct16BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitUnsignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct16BitUnsignedAccelerated = integerDotProduct16BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct16BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitSignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct16BitSignedAccelerated = integerDotProduct16BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct16BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitMixedSignednessAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct16BitMixedSignednessAccelerated = integerDotProduct16BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct32BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitUnsignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct32BitUnsignedAccelerated = integerDotProduct32BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct32BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitSignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct32BitSignedAccelerated = integerDotProduct32BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct32BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitMixedSignednessAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct32BitMixedSignednessAccelerated = integerDotProduct32BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct64BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitUnsignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct64BitUnsignedAccelerated = integerDotProduct64BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct64BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitSignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct64BitSignedAccelerated = integerDotProduct64BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProduct64BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitMixedSignednessAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProduct64BitMixedSignednessAccelerated = integerDotProduct64BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating8BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating8BitUnsignedAccelerated = - integerDotProductAccumulatingSaturating8BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating8BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated_ ) VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating8BitSignedAccelerated = - integerDotProductAccumulatingSaturating8BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated = - integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated = - integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated = - integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated = - integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating16BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating16BitUnsignedAccelerated = - integerDotProductAccumulatingSaturating16BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating16BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating16BitSignedAccelerated = - integerDotProductAccumulatingSaturating16BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated = - integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating32BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating32BitUnsignedAccelerated = - integerDotProductAccumulatingSaturating32BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating32BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating32BitSignedAccelerated = - integerDotProductAccumulatingSaturating32BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated = - integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating64BitUnsignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating64BitUnsignedAccelerated = - integerDotProductAccumulatingSaturating64BitUnsignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating64BitSignedAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating64BitSignedAccelerated = - integerDotProductAccumulatingSaturating64BitSignedAccelerated_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerDotProductProperties & - setIntegerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated( - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated_ ) - VULKAN_HPP_NOEXCEPT - { - integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated = - integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderIntegerDotProductProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderIntegerDotProductProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - integerDotProduct8BitUnsignedAccelerated, - integerDotProduct8BitSignedAccelerated, - integerDotProduct8BitMixedSignednessAccelerated, - integerDotProduct4x8BitPackedUnsignedAccelerated, - integerDotProduct4x8BitPackedSignedAccelerated, - integerDotProduct4x8BitPackedMixedSignednessAccelerated, - integerDotProduct16BitUnsignedAccelerated, - integerDotProduct16BitSignedAccelerated, - integerDotProduct16BitMixedSignednessAccelerated, - integerDotProduct32BitUnsignedAccelerated, - integerDotProduct32BitSignedAccelerated, - integerDotProduct32BitMixedSignednessAccelerated, - integerDotProduct64BitUnsignedAccelerated, - integerDotProduct64BitSignedAccelerated, - integerDotProduct64BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating8BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating8BitSignedAccelerated, - integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated, - integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated, - integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating16BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating16BitSignedAccelerated, - integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating32BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating32BitSignedAccelerated, - integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating64BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating64BitSignedAccelerated, - integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderIntegerDotProductProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderIntegerDotProductProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( integerDotProduct8BitUnsignedAccelerated == rhs.integerDotProduct8BitUnsignedAccelerated ) && - ( integerDotProduct8BitSignedAccelerated == rhs.integerDotProduct8BitSignedAccelerated ) && - ( integerDotProduct8BitMixedSignednessAccelerated == - rhs.integerDotProduct8BitMixedSignednessAccelerated ) && - ( integerDotProduct4x8BitPackedUnsignedAccelerated == - rhs.integerDotProduct4x8BitPackedUnsignedAccelerated ) && - ( integerDotProduct4x8BitPackedSignedAccelerated == rhs.integerDotProduct4x8BitPackedSignedAccelerated ) && - ( integerDotProduct4x8BitPackedMixedSignednessAccelerated == - rhs.integerDotProduct4x8BitPackedMixedSignednessAccelerated ) && - ( integerDotProduct16BitUnsignedAccelerated == rhs.integerDotProduct16BitUnsignedAccelerated ) && - ( integerDotProduct16BitSignedAccelerated == rhs.integerDotProduct16BitSignedAccelerated ) && - ( integerDotProduct16BitMixedSignednessAccelerated == - rhs.integerDotProduct16BitMixedSignednessAccelerated ) && - ( integerDotProduct32BitUnsignedAccelerated == rhs.integerDotProduct32BitUnsignedAccelerated ) && - ( integerDotProduct32BitSignedAccelerated == rhs.integerDotProduct32BitSignedAccelerated ) && - ( integerDotProduct32BitMixedSignednessAccelerated == - rhs.integerDotProduct32BitMixedSignednessAccelerated ) && - ( integerDotProduct64BitUnsignedAccelerated == rhs.integerDotProduct64BitUnsignedAccelerated ) && - ( integerDotProduct64BitSignedAccelerated == rhs.integerDotProduct64BitSignedAccelerated ) && - ( integerDotProduct64BitMixedSignednessAccelerated == - rhs.integerDotProduct64BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating8BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating8BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating8BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating8BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating16BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating16BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating16BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating16BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating32BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating32BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating32BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating32BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating64BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating64BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating64BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating64BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated ); -# endif - } - - bool operator!=( PhysicalDeviceShaderIntegerDotProductProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderIntegerDotProductProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderIntegerDotProductProperties ) == - sizeof( VkPhysicalDeviceShaderIntegerDotProductProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderIntegerDotProductProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderIntegerDotProductProperties; - }; - using PhysicalDeviceShaderIntegerDotProductPropertiesKHR = PhysicalDeviceShaderIntegerDotProductProperties; - - struct PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL - { - using NativeType = VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderIntegerFunctions2FeaturesINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL( - VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerFunctions2_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderIntegerFunctions2( shaderIntegerFunctions2_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL( - PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL( - VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL & - operator=( PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL & - operator=( VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL & - setShaderIntegerFunctions2( VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerFunctions2_ ) VULKAN_HPP_NOEXCEPT - { - shaderIntegerFunctions2 = shaderIntegerFunctions2_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderIntegerFunctions2 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderIntegerFunctions2 == rhs.shaderIntegerFunctions2 ); -# endif - } - - bool operator!=( PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderIntegerFunctions2FeaturesINTEL; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerFunctions2 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL ) == - sizeof( VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL; - }; - - struct PhysicalDeviceShaderSMBuiltinsFeaturesNV - { - using NativeType = VkPhysicalDeviceShaderSMBuiltinsFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderSmBuiltinsFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSMBuiltinsFeaturesNV( VULKAN_HPP_NAMESPACE::Bool32 shaderSMBuiltins_ = {} ) - VULKAN_HPP_NOEXCEPT : shaderSMBuiltins( shaderSMBuiltins_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSMBuiltinsFeaturesNV( - PhysicalDeviceShaderSMBuiltinsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSMBuiltinsFeaturesNV( VkPhysicalDeviceShaderSMBuiltinsFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderSMBuiltinsFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderSMBuiltinsFeaturesNV & - operator=( PhysicalDeviceShaderSMBuiltinsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSMBuiltinsFeaturesNV & - operator=( VkPhysicalDeviceShaderSMBuiltinsFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderSMBuiltinsFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderSMBuiltinsFeaturesNV & - setShaderSMBuiltins( VULKAN_HPP_NAMESPACE::Bool32 shaderSMBuiltins_ ) VULKAN_HPP_NOEXCEPT - { - shaderSMBuiltins = shaderSMBuiltins_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderSMBuiltinsFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderSMBuiltinsFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderSMBuiltins ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderSMBuiltinsFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderSMBuiltinsFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderSMBuiltins == rhs.shaderSMBuiltins ); -# endif - } - - bool operator!=( PhysicalDeviceShaderSMBuiltinsFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderSmBuiltinsFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSMBuiltins = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSMBuiltinsFeaturesNV ) == - sizeof( VkPhysicalDeviceShaderSMBuiltinsFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderSMBuiltinsFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderSMBuiltinsFeaturesNV; - }; - - struct PhysicalDeviceShaderSMBuiltinsPropertiesNV - { - using NativeType = VkPhysicalDeviceShaderSMBuiltinsPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderSmBuiltinsPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceShaderSMBuiltinsPropertiesNV( uint32_t shaderSMCount_ = {}, - uint32_t shaderWarpsPerSM_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderSMCount( shaderSMCount_ ) - , shaderWarpsPerSM( shaderWarpsPerSM_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSMBuiltinsPropertiesNV( - PhysicalDeviceShaderSMBuiltinsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSMBuiltinsPropertiesNV( VkPhysicalDeviceShaderSMBuiltinsPropertiesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderSMBuiltinsPropertiesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderSMBuiltinsPropertiesNV & - operator=( PhysicalDeviceShaderSMBuiltinsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSMBuiltinsPropertiesNV & - operator=( VkPhysicalDeviceShaderSMBuiltinsPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceShaderSMBuiltinsPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderSMBuiltinsPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderSMCount, shaderWarpsPerSM ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderSMBuiltinsPropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderSMBuiltinsPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shaderSMCount == rhs.shaderSMCount ) && - ( shaderWarpsPerSM == rhs.shaderWarpsPerSM ); -# endif - } - - bool operator!=( PhysicalDeviceShaderSMBuiltinsPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderSmBuiltinsPropertiesNV; - void * pNext = {}; - uint32_t shaderSMCount = {}; - uint32_t shaderWarpsPerSM = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSMBuiltinsPropertiesNV ) == - sizeof( VkPhysicalDeviceShaderSMBuiltinsPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderSMBuiltinsPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderSMBuiltinsPropertiesNV; - }; - - struct PhysicalDeviceShaderSubgroupExtendedTypesFeatures - { - using NativeType = VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderSubgroupExtendedTypesFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSubgroupExtendedTypesFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupExtendedTypes_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderSubgroupExtendedTypes( shaderSubgroupExtendedTypes_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSubgroupExtendedTypesFeatures( - PhysicalDeviceShaderSubgroupExtendedTypesFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSubgroupExtendedTypesFeatures( VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderSubgroupExtendedTypesFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderSubgroupExtendedTypesFeatures & - operator=( PhysicalDeviceShaderSubgroupExtendedTypesFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSubgroupExtendedTypesFeatures & - operator=( VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderSubgroupExtendedTypesFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderSubgroupExtendedTypesFeatures & - setShaderSubgroupExtendedTypes( VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupExtendedTypes_ ) VULKAN_HPP_NOEXCEPT - { - shaderSubgroupExtendedTypes = shaderSubgroupExtendedTypes_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderSubgroupExtendedTypes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderSubgroupExtendedTypesFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderSubgroupExtendedTypesFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderSubgroupExtendedTypes == rhs.shaderSubgroupExtendedTypes ); -# endif - } - - bool operator!=( PhysicalDeviceShaderSubgroupExtendedTypesFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderSubgroupExtendedTypesFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupExtendedTypes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSubgroupExtendedTypesFeatures ) == - sizeof( VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderSubgroupExtendedTypesFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderSubgroupExtendedTypesFeatures; - }; - using PhysicalDeviceShaderSubgroupExtendedTypesFeaturesKHR = PhysicalDeviceShaderSubgroupExtendedTypesFeatures; - - struct PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR - { - using NativeType = VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupUniformControlFlow_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderSubgroupUniformControlFlow( shaderSubgroupUniformControlFlow_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR( - PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR( - VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR & - operator=( PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR & - operator=( VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( - &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR & - setShaderSubgroupUniformControlFlow( VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupUniformControlFlow_ ) - VULKAN_HPP_NOEXCEPT - { - shaderSubgroupUniformControlFlow = shaderSubgroupUniformControlFlow_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderSubgroupUniformControlFlow ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderSubgroupUniformControlFlow == rhs.shaderSubgroupUniformControlFlow ); -# endif - } - - bool operator!=( PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = - StructureType::ePhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupUniformControlFlow = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR ) == - sizeof( VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR>::value, - "PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR; - }; - - struct PhysicalDeviceShaderTerminateInvocationFeatures - { - using NativeType = VkPhysicalDeviceShaderTerminateInvocationFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShaderTerminateInvocationFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderTerminateInvocationFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderTerminateInvocation_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderTerminateInvocation( shaderTerminateInvocation_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShaderTerminateInvocationFeatures( - PhysicalDeviceShaderTerminateInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderTerminateInvocationFeatures( VkPhysicalDeviceShaderTerminateInvocationFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShaderTerminateInvocationFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShaderTerminateInvocationFeatures & - operator=( PhysicalDeviceShaderTerminateInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShaderTerminateInvocationFeatures & - operator=( VkPhysicalDeviceShaderTerminateInvocationFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderTerminateInvocationFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShaderTerminateInvocationFeatures & - setShaderTerminateInvocation( VULKAN_HPP_NAMESPACE::Bool32 shaderTerminateInvocation_ ) VULKAN_HPP_NOEXCEPT - { - shaderTerminateInvocation = shaderTerminateInvocation_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShaderTerminateInvocationFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShaderTerminateInvocationFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderTerminateInvocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShaderTerminateInvocationFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceShaderTerminateInvocationFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderTerminateInvocation == rhs.shaderTerminateInvocation ); -# endif - } - - bool operator!=( PhysicalDeviceShaderTerminateInvocationFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShaderTerminateInvocationFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderTerminateInvocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShaderTerminateInvocationFeatures ) == - sizeof( VkPhysicalDeviceShaderTerminateInvocationFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShaderTerminateInvocationFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShaderTerminateInvocationFeatures; - }; - using PhysicalDeviceShaderTerminateInvocationFeaturesKHR = PhysicalDeviceShaderTerminateInvocationFeatures; - - struct PhysicalDeviceShadingRateImageFeaturesNV - { - using NativeType = VkPhysicalDeviceShadingRateImageFeaturesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShadingRateImageFeaturesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceShadingRateImageFeaturesNV( - VULKAN_HPP_NAMESPACE::Bool32 shadingRateImage_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shadingRateCoarseSampleOrder_ = {} ) VULKAN_HPP_NOEXCEPT - : shadingRateImage( shadingRateImage_ ) - , shadingRateCoarseSampleOrder( shadingRateCoarseSampleOrder_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShadingRateImageFeaturesNV( - PhysicalDeviceShadingRateImageFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShadingRateImageFeaturesNV( VkPhysicalDeviceShadingRateImageFeaturesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShadingRateImageFeaturesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShadingRateImageFeaturesNV & - operator=( PhysicalDeviceShadingRateImageFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShadingRateImageFeaturesNV & - operator=( VkPhysicalDeviceShadingRateImageFeaturesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShadingRateImageFeaturesNV & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShadingRateImageFeaturesNV & - setShadingRateImage( VULKAN_HPP_NAMESPACE::Bool32 shadingRateImage_ ) VULKAN_HPP_NOEXCEPT - { - shadingRateImage = shadingRateImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceShadingRateImageFeaturesNV & - setShadingRateCoarseSampleOrder( VULKAN_HPP_NAMESPACE::Bool32 shadingRateCoarseSampleOrder_ ) VULKAN_HPP_NOEXCEPT - { - shadingRateCoarseSampleOrder = shadingRateCoarseSampleOrder_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceShadingRateImageFeaturesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShadingRateImageFeaturesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shadingRateImage, shadingRateCoarseSampleOrder ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShadingRateImageFeaturesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceShadingRateImageFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shadingRateImage == rhs.shadingRateImage ) && - ( shadingRateCoarseSampleOrder == rhs.shadingRateCoarseSampleOrder ); -# endif - } - - bool operator!=( PhysicalDeviceShadingRateImageFeaturesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShadingRateImageFeaturesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shadingRateImage = {}; - VULKAN_HPP_NAMESPACE::Bool32 shadingRateCoarseSampleOrder = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShadingRateImageFeaturesNV ) == - sizeof( VkPhysicalDeviceShadingRateImageFeaturesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShadingRateImageFeaturesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShadingRateImageFeaturesNV; - }; - - struct PhysicalDeviceShadingRateImagePropertiesNV - { - using NativeType = VkPhysicalDeviceShadingRateImagePropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceShadingRateImagePropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceShadingRateImagePropertiesNV( VULKAN_HPP_NAMESPACE::Extent2D shadingRateTexelSize_ = {}, - uint32_t shadingRatePaletteSize_ = {}, - uint32_t shadingRateMaxCoarseSamples_ = {} ) VULKAN_HPP_NOEXCEPT - : shadingRateTexelSize( shadingRateTexelSize_ ) - , shadingRatePaletteSize( shadingRatePaletteSize_ ) - , shadingRateMaxCoarseSamples( shadingRateMaxCoarseSamples_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceShadingRateImagePropertiesNV( - PhysicalDeviceShadingRateImagePropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShadingRateImagePropertiesNV( VkPhysicalDeviceShadingRateImagePropertiesNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceShadingRateImagePropertiesNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceShadingRateImagePropertiesNV & - operator=( PhysicalDeviceShadingRateImagePropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceShadingRateImagePropertiesNV & - operator=( VkPhysicalDeviceShadingRateImagePropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceShadingRateImagePropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceShadingRateImagePropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shadingRateTexelSize, shadingRatePaletteSize, shadingRateMaxCoarseSamples ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceShadingRateImagePropertiesNV const & ) const = default; -#else - bool operator==( PhysicalDeviceShadingRateImagePropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shadingRateTexelSize == rhs.shadingRateTexelSize ) && - ( shadingRatePaletteSize == rhs.shadingRatePaletteSize ) && - ( shadingRateMaxCoarseSamples == rhs.shadingRateMaxCoarseSamples ); -# endif - } - - bool operator!=( PhysicalDeviceShadingRateImagePropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceShadingRateImagePropertiesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Extent2D shadingRateTexelSize = {}; - uint32_t shadingRatePaletteSize = {}; - uint32_t shadingRateMaxCoarseSamples = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceShadingRateImagePropertiesNV ) == - sizeof( VkPhysicalDeviceShadingRateImagePropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceShadingRateImagePropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceShadingRateImagePropertiesNV; - }; - - struct PhysicalDeviceSparseImageFormatInfo2 - { - using NativeType = VkPhysicalDeviceSparseImageFormatInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSparseImageFormatInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSparseImageFormatInfo2( - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::ImageType type_ = VULKAN_HPP_NAMESPACE::ImageType::e1D, - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1, - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ = {}, - VULKAN_HPP_NAMESPACE::ImageTiling tiling_ = VULKAN_HPP_NAMESPACE::ImageTiling::eOptimal ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - , type( type_ ) - , samples( samples_ ) - , usage( usage_ ) - , tiling( tiling_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSparseImageFormatInfo2( PhysicalDeviceSparseImageFormatInfo2 const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSparseImageFormatInfo2( VkPhysicalDeviceSparseImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSparseImageFormatInfo2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSparseImageFormatInfo2 & - operator=( PhysicalDeviceSparseImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSparseImageFormatInfo2 & - operator=( VkPhysicalDeviceSparseImageFormatInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSparseImageFormatInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSparseImageFormatInfo2 & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSparseImageFormatInfo2 & - setType( VULKAN_HPP_NAMESPACE::ImageType type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSparseImageFormatInfo2 & - setSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ ) VULKAN_HPP_NOEXCEPT - { - samples = samples_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSparseImageFormatInfo2 & - setUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT - { - usage = usage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSparseImageFormatInfo2 & - setTiling( VULKAN_HPP_NAMESPACE::ImageTiling tiling_ ) VULKAN_HPP_NOEXCEPT - { - tiling = tiling_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSparseImageFormatInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSparseImageFormatInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, format, type, samples, usage, tiling ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSparseImageFormatInfo2 const & ) const = default; -#else - bool operator==( PhysicalDeviceSparseImageFormatInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( format == rhs.format ) && ( type == rhs.type ) && - ( samples == rhs.samples ) && ( usage == rhs.usage ) && ( tiling == rhs.tiling ); -# endif - } - - bool operator!=( PhysicalDeviceSparseImageFormatInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSparseImageFormatInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::ImageType type = VULKAN_HPP_NAMESPACE::ImageType::e1D; - VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1; - VULKAN_HPP_NAMESPACE::ImageUsageFlags usage = {}; - VULKAN_HPP_NAMESPACE::ImageTiling tiling = VULKAN_HPP_NAMESPACE::ImageTiling::eOptimal; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSparseImageFormatInfo2 ) == - sizeof( VkPhysicalDeviceSparseImageFormatInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSparseImageFormatInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSparseImageFormatInfo2; - }; - using PhysicalDeviceSparseImageFormatInfo2KHR = PhysicalDeviceSparseImageFormatInfo2; - - struct PhysicalDeviceSubgroupProperties - { - using NativeType = VkPhysicalDeviceSubgroupProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceSubgroupProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubgroupProperties( - uint32_t subgroupSize_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlags supportedStages_ = {}, - VULKAN_HPP_NAMESPACE::SubgroupFeatureFlags supportedOperations_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 quadOperationsInAllStages_ = {} ) VULKAN_HPP_NOEXCEPT - : subgroupSize( subgroupSize_ ) - , supportedStages( supportedStages_ ) - , supportedOperations( supportedOperations_ ) - , quadOperationsInAllStages( quadOperationsInAllStages_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceSubgroupProperties( PhysicalDeviceSubgroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubgroupProperties( VkPhysicalDeviceSubgroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSubgroupProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSubgroupProperties & - operator=( PhysicalDeviceSubgroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubgroupProperties & operator=( VkPhysicalDeviceSubgroupProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceSubgroupProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSubgroupProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, subgroupSize, supportedStages, supportedOperations, quadOperationsInAllStages ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSubgroupProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceSubgroupProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( subgroupSize == rhs.subgroupSize ) && - ( supportedStages == rhs.supportedStages ) && ( supportedOperations == rhs.supportedOperations ) && - ( quadOperationsInAllStages == rhs.quadOperationsInAllStages ); -# endif - } - - bool operator!=( PhysicalDeviceSubgroupProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSubgroupProperties; - void * pNext = {}; - uint32_t subgroupSize = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags supportedStages = {}; - VULKAN_HPP_NAMESPACE::SubgroupFeatureFlags supportedOperations = {}; - VULKAN_HPP_NAMESPACE::Bool32 quadOperationsInAllStages = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubgroupProperties ) == - sizeof( VkPhysicalDeviceSubgroupProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSubgroupProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSubgroupProperties; - }; - - struct PhysicalDeviceSubgroupSizeControlFeatures - { - using NativeType = VkPhysicalDeviceSubgroupSizeControlFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSubgroupSizeControlFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubgroupSizeControlFeatures( - VULKAN_HPP_NAMESPACE::Bool32 subgroupSizeControl_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 computeFullSubgroups_ = {} ) VULKAN_HPP_NOEXCEPT - : subgroupSizeControl( subgroupSizeControl_ ) - , computeFullSubgroups( computeFullSubgroups_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubgroupSizeControlFeatures( - PhysicalDeviceSubgroupSizeControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubgroupSizeControlFeatures( VkPhysicalDeviceSubgroupSizeControlFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSubgroupSizeControlFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSubgroupSizeControlFeatures & - operator=( PhysicalDeviceSubgroupSizeControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubgroupSizeControlFeatures & - operator=( VkPhysicalDeviceSubgroupSizeControlFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSubgroupSizeControlFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSubgroupSizeControlFeatures & - setSubgroupSizeControl( VULKAN_HPP_NAMESPACE::Bool32 subgroupSizeControl_ ) VULKAN_HPP_NOEXCEPT - { - subgroupSizeControl = subgroupSizeControl_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSubgroupSizeControlFeatures & - setComputeFullSubgroups( VULKAN_HPP_NAMESPACE::Bool32 computeFullSubgroups_ ) VULKAN_HPP_NOEXCEPT - { - computeFullSubgroups = computeFullSubgroups_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSubgroupSizeControlFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSubgroupSizeControlFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, subgroupSizeControl, computeFullSubgroups ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSubgroupSizeControlFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceSubgroupSizeControlFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( subgroupSizeControl == rhs.subgroupSizeControl ) && - ( computeFullSubgroups == rhs.computeFullSubgroups ); -# endif - } - - bool operator!=( PhysicalDeviceSubgroupSizeControlFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSubgroupSizeControlFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 subgroupSizeControl = {}; - VULKAN_HPP_NAMESPACE::Bool32 computeFullSubgroups = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubgroupSizeControlFeatures ) == - sizeof( VkPhysicalDeviceSubgroupSizeControlFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSubgroupSizeControlFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSubgroupSizeControlFeatures; - }; - using PhysicalDeviceSubgroupSizeControlFeaturesEXT = PhysicalDeviceSubgroupSizeControlFeatures; - - struct PhysicalDeviceSubgroupSizeControlProperties - { - using NativeType = VkPhysicalDeviceSubgroupSizeControlProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSubgroupSizeControlProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubgroupSizeControlProperties( - uint32_t minSubgroupSize_ = {}, - uint32_t maxSubgroupSize_ = {}, - uint32_t maxComputeWorkgroupSubgroups_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlags requiredSubgroupSizeStages_ = {} ) VULKAN_HPP_NOEXCEPT - : minSubgroupSize( minSubgroupSize_ ) - , maxSubgroupSize( maxSubgroupSize_ ) - , maxComputeWorkgroupSubgroups( maxComputeWorkgroupSubgroups_ ) - , requiredSubgroupSizeStages( requiredSubgroupSizeStages_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubgroupSizeControlProperties( - PhysicalDeviceSubgroupSizeControlProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubgroupSizeControlProperties( VkPhysicalDeviceSubgroupSizeControlProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSubgroupSizeControlProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSubgroupSizeControlProperties & - operator=( PhysicalDeviceSubgroupSizeControlProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubgroupSizeControlProperties & - operator=( VkPhysicalDeviceSubgroupSizeControlProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceSubgroupSizeControlProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSubgroupSizeControlProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, minSubgroupSize, maxSubgroupSize, maxComputeWorkgroupSubgroups, requiredSubgroupSizeStages ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSubgroupSizeControlProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceSubgroupSizeControlProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( minSubgroupSize == rhs.minSubgroupSize ) && - ( maxSubgroupSize == rhs.maxSubgroupSize ) && - ( maxComputeWorkgroupSubgroups == rhs.maxComputeWorkgroupSubgroups ) && - ( requiredSubgroupSizeStages == rhs.requiredSubgroupSizeStages ); -# endif - } - - bool operator!=( PhysicalDeviceSubgroupSizeControlProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSubgroupSizeControlProperties; - void * pNext = {}; - uint32_t minSubgroupSize = {}; - uint32_t maxSubgroupSize = {}; - uint32_t maxComputeWorkgroupSubgroups = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags requiredSubgroupSizeStages = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubgroupSizeControlProperties ) == - sizeof( VkPhysicalDeviceSubgroupSizeControlProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSubgroupSizeControlProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSubgroupSizeControlProperties; - }; - using PhysicalDeviceSubgroupSizeControlPropertiesEXT = PhysicalDeviceSubgroupSizeControlProperties; - - struct PhysicalDeviceSubpassShadingFeaturesHUAWEI - { - using NativeType = VkPhysicalDeviceSubpassShadingFeaturesHUAWEI; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSubpassShadingFeaturesHUAWEI; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubpassShadingFeaturesHUAWEI( VULKAN_HPP_NAMESPACE::Bool32 subpassShading_ = {} ) - VULKAN_HPP_NOEXCEPT : subpassShading( subpassShading_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubpassShadingFeaturesHUAWEI( - PhysicalDeviceSubpassShadingFeaturesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubpassShadingFeaturesHUAWEI( VkPhysicalDeviceSubpassShadingFeaturesHUAWEI const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSubpassShadingFeaturesHUAWEI( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSubpassShadingFeaturesHUAWEI & - operator=( PhysicalDeviceSubpassShadingFeaturesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubpassShadingFeaturesHUAWEI & - operator=( VkPhysicalDeviceSubpassShadingFeaturesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSubpassShadingFeaturesHUAWEI & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSubpassShadingFeaturesHUAWEI & - setSubpassShading( VULKAN_HPP_NAMESPACE::Bool32 subpassShading_ ) VULKAN_HPP_NOEXCEPT - { - subpassShading = subpassShading_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSubpassShadingFeaturesHUAWEI const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSubpassShadingFeaturesHUAWEI &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, subpassShading ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSubpassShadingFeaturesHUAWEI const & ) const = default; -#else - bool operator==( PhysicalDeviceSubpassShadingFeaturesHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( subpassShading == rhs.subpassShading ); -# endif - } - - bool operator!=( PhysicalDeviceSubpassShadingFeaturesHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSubpassShadingFeaturesHUAWEI; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 subpassShading = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubpassShadingFeaturesHUAWEI ) == - sizeof( VkPhysicalDeviceSubpassShadingFeaturesHUAWEI ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSubpassShadingFeaturesHUAWEI is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSubpassShadingFeaturesHUAWEI; - }; - - struct PhysicalDeviceSubpassShadingPropertiesHUAWEI - { - using NativeType = VkPhysicalDeviceSubpassShadingPropertiesHUAWEI; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSubpassShadingPropertiesHUAWEI; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubpassShadingPropertiesHUAWEI( - uint32_t maxSubpassShadingWorkgroupSizeAspectRatio_ = {} ) VULKAN_HPP_NOEXCEPT - : maxSubpassShadingWorkgroupSizeAspectRatio( maxSubpassShadingWorkgroupSizeAspectRatio_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSubpassShadingPropertiesHUAWEI( - PhysicalDeviceSubpassShadingPropertiesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubpassShadingPropertiesHUAWEI( VkPhysicalDeviceSubpassShadingPropertiesHUAWEI const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSubpassShadingPropertiesHUAWEI( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSubpassShadingPropertiesHUAWEI & - operator=( PhysicalDeviceSubpassShadingPropertiesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSubpassShadingPropertiesHUAWEI & - operator=( VkPhysicalDeviceSubpassShadingPropertiesHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceSubpassShadingPropertiesHUAWEI const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSubpassShadingPropertiesHUAWEI &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxSubpassShadingWorkgroupSizeAspectRatio ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSubpassShadingPropertiesHUAWEI const & ) const = default; -#else - bool operator==( PhysicalDeviceSubpassShadingPropertiesHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxSubpassShadingWorkgroupSizeAspectRatio == rhs.maxSubpassShadingWorkgroupSizeAspectRatio ); -# endif - } - - bool operator!=( PhysicalDeviceSubpassShadingPropertiesHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSubpassShadingPropertiesHUAWEI; - void * pNext = {}; - uint32_t maxSubpassShadingWorkgroupSizeAspectRatio = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSubpassShadingPropertiesHUAWEI ) == - sizeof( VkPhysicalDeviceSubpassShadingPropertiesHUAWEI ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSubpassShadingPropertiesHUAWEI is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSubpassShadingPropertiesHUAWEI; - }; - - struct PhysicalDeviceSurfaceInfo2KHR - { - using NativeType = VkPhysicalDeviceSurfaceInfo2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceSurfaceInfo2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceSurfaceInfo2KHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface_ = {} ) VULKAN_HPP_NOEXCEPT - : surface( surface_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceSurfaceInfo2KHR( PhysicalDeviceSurfaceInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSurfaceInfo2KHR( VkPhysicalDeviceSurfaceInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSurfaceInfo2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSurfaceInfo2KHR & - operator=( PhysicalDeviceSurfaceInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSurfaceInfo2KHR & operator=( VkPhysicalDeviceSurfaceInfo2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSurfaceInfo2KHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSurfaceInfo2KHR & - setSurface( VULKAN_HPP_NAMESPACE::SurfaceKHR surface_ ) VULKAN_HPP_NOEXCEPT - { - surface = surface_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSurfaceInfo2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSurfaceInfo2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, surface ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSurfaceInfo2KHR const & ) const = default; -#else - bool operator==( PhysicalDeviceSurfaceInfo2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( surface == rhs.surface ); -# endif - } - - bool operator!=( PhysicalDeviceSurfaceInfo2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSurfaceInfo2KHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceKHR surface = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSurfaceInfo2KHR ) == - sizeof( VkPhysicalDeviceSurfaceInfo2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSurfaceInfo2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSurfaceInfo2KHR; - }; - - struct PhysicalDeviceSynchronization2Features - { - using NativeType = VkPhysicalDeviceSynchronization2Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceSynchronization2Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceSynchronization2Features( VULKAN_HPP_NAMESPACE::Bool32 synchronization2_ = {} ) VULKAN_HPP_NOEXCEPT - : synchronization2( synchronization2_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceSynchronization2Features( PhysicalDeviceSynchronization2Features const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSynchronization2Features( VkPhysicalDeviceSynchronization2Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceSynchronization2Features( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceSynchronization2Features & - operator=( PhysicalDeviceSynchronization2Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceSynchronization2Features & - operator=( VkPhysicalDeviceSynchronization2Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSynchronization2Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceSynchronization2Features & - setSynchronization2( VULKAN_HPP_NAMESPACE::Bool32 synchronization2_ ) VULKAN_HPP_NOEXCEPT - { - synchronization2 = synchronization2_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceSynchronization2Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceSynchronization2Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, synchronization2 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceSynchronization2Features const & ) const = default; -#else - bool operator==( PhysicalDeviceSynchronization2Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( synchronization2 == rhs.synchronization2 ); -# endif - } - - bool operator!=( PhysicalDeviceSynchronization2Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceSynchronization2Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 synchronization2 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceSynchronization2Features ) == - sizeof( VkPhysicalDeviceSynchronization2Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceSynchronization2Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceSynchronization2Features; - }; - using PhysicalDeviceSynchronization2FeaturesKHR = PhysicalDeviceSynchronization2Features; - - struct PhysicalDeviceTexelBufferAlignmentFeaturesEXT - { - using NativeType = VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTexelBufferAlignmentFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 texelBufferAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : texelBufferAlignment( texelBufferAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentFeaturesEXT( - PhysicalDeviceTexelBufferAlignmentFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTexelBufferAlignmentFeaturesEXT( VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTexelBufferAlignmentFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTexelBufferAlignmentFeaturesEXT & - operator=( PhysicalDeviceTexelBufferAlignmentFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTexelBufferAlignmentFeaturesEXT & - operator=( VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTexelBufferAlignmentFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTexelBufferAlignmentFeaturesEXT & - setTexelBufferAlignment( VULKAN_HPP_NAMESPACE::Bool32 texelBufferAlignment_ ) VULKAN_HPP_NOEXCEPT - { - texelBufferAlignment = texelBufferAlignment_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, texelBufferAlignment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTexelBufferAlignmentFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceTexelBufferAlignmentFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( texelBufferAlignment == rhs.texelBufferAlignment ); -# endif - } - - bool operator!=( PhysicalDeviceTexelBufferAlignmentFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTexelBufferAlignmentFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 texelBufferAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentFeaturesEXT ) == - sizeof( VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTexelBufferAlignmentFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTexelBufferAlignmentFeaturesEXT; - }; - - struct PhysicalDeviceTexelBufferAlignmentProperties - { - using NativeType = VkPhysicalDeviceTexelBufferAlignmentProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTexelBufferAlignmentProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentProperties( - VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment_ = {} ) VULKAN_HPP_NOEXCEPT - : storageTexelBufferOffsetAlignmentBytes( storageTexelBufferOffsetAlignmentBytes_ ) - , storageTexelBufferOffsetSingleTexelAlignment( storageTexelBufferOffsetSingleTexelAlignment_ ) - , uniformTexelBufferOffsetAlignmentBytes( uniformTexelBufferOffsetAlignmentBytes_ ) - , uniformTexelBufferOffsetSingleTexelAlignment( uniformTexelBufferOffsetSingleTexelAlignment_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentProperties( - PhysicalDeviceTexelBufferAlignmentProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTexelBufferAlignmentProperties( VkPhysicalDeviceTexelBufferAlignmentProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTexelBufferAlignmentProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTexelBufferAlignmentProperties & - operator=( PhysicalDeviceTexelBufferAlignmentProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTexelBufferAlignmentProperties & - operator=( VkPhysicalDeviceTexelBufferAlignmentProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceTexelBufferAlignmentProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTexelBufferAlignmentProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - storageTexelBufferOffsetAlignmentBytes, - storageTexelBufferOffsetSingleTexelAlignment, - uniformTexelBufferOffsetAlignmentBytes, - uniformTexelBufferOffsetSingleTexelAlignment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTexelBufferAlignmentProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceTexelBufferAlignmentProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( storageTexelBufferOffsetAlignmentBytes == rhs.storageTexelBufferOffsetAlignmentBytes ) && - ( storageTexelBufferOffsetSingleTexelAlignment == rhs.storageTexelBufferOffsetSingleTexelAlignment ) && - ( uniformTexelBufferOffsetAlignmentBytes == rhs.uniformTexelBufferOffsetAlignmentBytes ) && - ( uniformTexelBufferOffsetSingleTexelAlignment == rhs.uniformTexelBufferOffsetSingleTexelAlignment ); -# endif - } - - bool operator!=( PhysicalDeviceTexelBufferAlignmentProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTexelBufferAlignmentProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentProperties ) == - sizeof( VkPhysicalDeviceTexelBufferAlignmentProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTexelBufferAlignmentProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTexelBufferAlignmentProperties; - }; - using PhysicalDeviceTexelBufferAlignmentPropertiesEXT = PhysicalDeviceTexelBufferAlignmentProperties; - - struct PhysicalDeviceTextureCompressionASTCHDRFeatures - { - using NativeType = VkPhysicalDeviceTextureCompressionASTCHDRFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTextureCompressionAstcHdrFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTextureCompressionASTCHDRFeatures( - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_HDR_ = {} ) VULKAN_HPP_NOEXCEPT - : textureCompressionASTC_HDR( textureCompressionASTC_HDR_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTextureCompressionASTCHDRFeatures( - PhysicalDeviceTextureCompressionASTCHDRFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTextureCompressionASTCHDRFeatures( VkPhysicalDeviceTextureCompressionASTCHDRFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTextureCompressionASTCHDRFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTextureCompressionASTCHDRFeatures & - operator=( PhysicalDeviceTextureCompressionASTCHDRFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTextureCompressionASTCHDRFeatures & - operator=( VkPhysicalDeviceTextureCompressionASTCHDRFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTextureCompressionASTCHDRFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTextureCompressionASTCHDRFeatures & - setTextureCompressionASTC_HDR( VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_HDR_ ) VULKAN_HPP_NOEXCEPT - { - textureCompressionASTC_HDR = textureCompressionASTC_HDR_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceTextureCompressionASTCHDRFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTextureCompressionASTCHDRFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, textureCompressionASTC_HDR ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTextureCompressionASTCHDRFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceTextureCompressionASTCHDRFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( textureCompressionASTC_HDR == rhs.textureCompressionASTC_HDR ); -# endif - } - - bool operator!=( PhysicalDeviceTextureCompressionASTCHDRFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTextureCompressionAstcHdrFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_HDR = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTextureCompressionASTCHDRFeatures ) == - sizeof( VkPhysicalDeviceTextureCompressionASTCHDRFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTextureCompressionASTCHDRFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTextureCompressionASTCHDRFeatures; - }; - using PhysicalDeviceTextureCompressionASTCHDRFeaturesEXT = PhysicalDeviceTextureCompressionASTCHDRFeatures; - - struct PhysicalDeviceTimelineSemaphoreFeatures - { - using NativeType = VkPhysicalDeviceTimelineSemaphoreFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTimelineSemaphoreFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreFeatures( VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_ = {} ) - VULKAN_HPP_NOEXCEPT : timelineSemaphore( timelineSemaphore_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreFeatures( PhysicalDeviceTimelineSemaphoreFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTimelineSemaphoreFeatures( VkPhysicalDeviceTimelineSemaphoreFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTimelineSemaphoreFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTimelineSemaphoreFeatures & - operator=( PhysicalDeviceTimelineSemaphoreFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTimelineSemaphoreFeatures & - operator=( VkPhysicalDeviceTimelineSemaphoreFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTimelineSemaphoreFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTimelineSemaphoreFeatures & - setTimelineSemaphore( VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_ ) VULKAN_HPP_NOEXCEPT - { - timelineSemaphore = timelineSemaphore_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceTimelineSemaphoreFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTimelineSemaphoreFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, timelineSemaphore ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTimelineSemaphoreFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceTimelineSemaphoreFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( timelineSemaphore == rhs.timelineSemaphore ); -# endif - } - - bool operator!=( PhysicalDeviceTimelineSemaphoreFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTimelineSemaphoreFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures ) == - sizeof( VkPhysicalDeviceTimelineSemaphoreFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTimelineSemaphoreFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTimelineSemaphoreFeatures; - }; - using PhysicalDeviceTimelineSemaphoreFeaturesKHR = PhysicalDeviceTimelineSemaphoreFeatures; - - struct PhysicalDeviceTimelineSemaphoreProperties - { - using NativeType = VkPhysicalDeviceTimelineSemaphoreProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTimelineSemaphoreProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreProperties( uint64_t maxTimelineSemaphoreValueDifference_ = {} ) - VULKAN_HPP_NOEXCEPT : maxTimelineSemaphoreValueDifference( maxTimelineSemaphoreValueDifference_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreProperties( - PhysicalDeviceTimelineSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTimelineSemaphoreProperties( VkPhysicalDeviceTimelineSemaphoreProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTimelineSemaphoreProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTimelineSemaphoreProperties & - operator=( PhysicalDeviceTimelineSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTimelineSemaphoreProperties & - operator=( VkPhysicalDeviceTimelineSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceTimelineSemaphoreProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTimelineSemaphoreProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxTimelineSemaphoreValueDifference ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTimelineSemaphoreProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceTimelineSemaphoreProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxTimelineSemaphoreValueDifference == rhs.maxTimelineSemaphoreValueDifference ); -# endif - } - - bool operator!=( PhysicalDeviceTimelineSemaphoreProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTimelineSemaphoreProperties; - void * pNext = {}; - uint64_t maxTimelineSemaphoreValueDifference = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties ) == - sizeof( VkPhysicalDeviceTimelineSemaphoreProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTimelineSemaphoreProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTimelineSemaphoreProperties; - }; - using PhysicalDeviceTimelineSemaphorePropertiesKHR = PhysicalDeviceTimelineSemaphoreProperties; - - struct PhysicalDeviceToolProperties - { - using NativeType = VkPhysicalDeviceToolProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceToolProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceToolProperties( - std::array const & name_ = {}, - std::array const & version_ = {}, - VULKAN_HPP_NAMESPACE::ToolPurposeFlags purposes_ = {}, - std::array const & description_ = {}, - std::array const & layer_ = {} ) VULKAN_HPP_NOEXCEPT - : name( name_ ) - , version( version_ ) - , purposes( purposes_ ) - , description( description_ ) - , layer( layer_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceToolProperties( PhysicalDeviceToolProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceToolProperties( VkPhysicalDeviceToolProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceToolProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceToolProperties & operator=( PhysicalDeviceToolProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceToolProperties & operator=( VkPhysicalDeviceToolProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceToolProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceToolProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ToolPurposeFlags const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, name, version, purposes, description, layer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceToolProperties const & ) const = default; -#else - bool operator==( PhysicalDeviceToolProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( name == rhs.name ) && ( version == rhs.version ) && - ( purposes == rhs.purposes ) && ( description == rhs.description ) && ( layer == rhs.layer ); -# endif - } - - bool operator!=( PhysicalDeviceToolProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceToolProperties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D name = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D version = {}; - VULKAN_HPP_NAMESPACE::ToolPurposeFlags purposes = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D description = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D layer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceToolProperties ) == - sizeof( VkPhysicalDeviceToolProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceToolProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceToolProperties; - }; - using PhysicalDeviceToolPropertiesEXT = PhysicalDeviceToolProperties; - - struct PhysicalDeviceTransformFeedbackFeaturesEXT - { - using NativeType = VkPhysicalDeviceTransformFeedbackFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTransformFeedbackFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTransformFeedbackFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 transformFeedback_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 geometryStreams_ = {} ) VULKAN_HPP_NOEXCEPT - : transformFeedback( transformFeedback_ ) - , geometryStreams( geometryStreams_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTransformFeedbackFeaturesEXT( - PhysicalDeviceTransformFeedbackFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTransformFeedbackFeaturesEXT( VkPhysicalDeviceTransformFeedbackFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTransformFeedbackFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTransformFeedbackFeaturesEXT & - operator=( PhysicalDeviceTransformFeedbackFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTransformFeedbackFeaturesEXT & - operator=( VkPhysicalDeviceTransformFeedbackFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTransformFeedbackFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTransformFeedbackFeaturesEXT & - setTransformFeedback( VULKAN_HPP_NAMESPACE::Bool32 transformFeedback_ ) VULKAN_HPP_NOEXCEPT - { - transformFeedback = transformFeedback_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceTransformFeedbackFeaturesEXT & - setGeometryStreams( VULKAN_HPP_NAMESPACE::Bool32 geometryStreams_ ) VULKAN_HPP_NOEXCEPT - { - geometryStreams = geometryStreams_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceTransformFeedbackFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTransformFeedbackFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, transformFeedback, geometryStreams ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTransformFeedbackFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceTransformFeedbackFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( transformFeedback == rhs.transformFeedback ) && - ( geometryStreams == rhs.geometryStreams ); -# endif - } - - bool operator!=( PhysicalDeviceTransformFeedbackFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTransformFeedbackFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedback = {}; - VULKAN_HPP_NAMESPACE::Bool32 geometryStreams = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTransformFeedbackFeaturesEXT ) == - sizeof( VkPhysicalDeviceTransformFeedbackFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTransformFeedbackFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTransformFeedbackFeaturesEXT; - }; - - struct PhysicalDeviceTransformFeedbackPropertiesEXT - { - using NativeType = VkPhysicalDeviceTransformFeedbackPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceTransformFeedbackPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceTransformFeedbackPropertiesEXT( - uint32_t maxTransformFeedbackStreams_ = {}, - uint32_t maxTransformFeedbackBuffers_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize maxTransformFeedbackBufferSize_ = {}, - uint32_t maxTransformFeedbackStreamDataSize_ = {}, - uint32_t maxTransformFeedbackBufferDataSize_ = {}, - uint32_t maxTransformFeedbackBufferDataStride_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackQueries_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackStreamsLinesTriangles_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackRasterizationStreamSelect_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackDraw_ = {} ) VULKAN_HPP_NOEXCEPT - : maxTransformFeedbackStreams( maxTransformFeedbackStreams_ ) - , maxTransformFeedbackBuffers( maxTransformFeedbackBuffers_ ) - , maxTransformFeedbackBufferSize( maxTransformFeedbackBufferSize_ ) - , maxTransformFeedbackStreamDataSize( maxTransformFeedbackStreamDataSize_ ) - , maxTransformFeedbackBufferDataSize( maxTransformFeedbackBufferDataSize_ ) - , maxTransformFeedbackBufferDataStride( maxTransformFeedbackBufferDataStride_ ) - , transformFeedbackQueries( transformFeedbackQueries_ ) - , transformFeedbackStreamsLinesTriangles( transformFeedbackStreamsLinesTriangles_ ) - , transformFeedbackRasterizationStreamSelect( transformFeedbackRasterizationStreamSelect_ ) - , transformFeedbackDraw( transformFeedbackDraw_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceTransformFeedbackPropertiesEXT( - PhysicalDeviceTransformFeedbackPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTransformFeedbackPropertiesEXT( VkPhysicalDeviceTransformFeedbackPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceTransformFeedbackPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceTransformFeedbackPropertiesEXT & - operator=( PhysicalDeviceTransformFeedbackPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceTransformFeedbackPropertiesEXT & - operator=( VkPhysicalDeviceTransformFeedbackPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceTransformFeedbackPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceTransformFeedbackPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - maxTransformFeedbackStreams, - maxTransformFeedbackBuffers, - maxTransformFeedbackBufferSize, - maxTransformFeedbackStreamDataSize, - maxTransformFeedbackBufferDataSize, - maxTransformFeedbackBufferDataStride, - transformFeedbackQueries, - transformFeedbackStreamsLinesTriangles, - transformFeedbackRasterizationStreamSelect, - transformFeedbackDraw ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceTransformFeedbackPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceTransformFeedbackPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxTransformFeedbackStreams == rhs.maxTransformFeedbackStreams ) && - ( maxTransformFeedbackBuffers == rhs.maxTransformFeedbackBuffers ) && - ( maxTransformFeedbackBufferSize == rhs.maxTransformFeedbackBufferSize ) && - ( maxTransformFeedbackStreamDataSize == rhs.maxTransformFeedbackStreamDataSize ) && - ( maxTransformFeedbackBufferDataSize == rhs.maxTransformFeedbackBufferDataSize ) && - ( maxTransformFeedbackBufferDataStride == rhs.maxTransformFeedbackBufferDataStride ) && - ( transformFeedbackQueries == rhs.transformFeedbackQueries ) && - ( transformFeedbackStreamsLinesTriangles == rhs.transformFeedbackStreamsLinesTriangles ) && - ( transformFeedbackRasterizationStreamSelect == rhs.transformFeedbackRasterizationStreamSelect ) && - ( transformFeedbackDraw == rhs.transformFeedbackDraw ); -# endif - } - - bool operator!=( PhysicalDeviceTransformFeedbackPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTransformFeedbackPropertiesEXT; - void * pNext = {}; - uint32_t maxTransformFeedbackStreams = {}; - uint32_t maxTransformFeedbackBuffers = {}; - VULKAN_HPP_NAMESPACE::DeviceSize maxTransformFeedbackBufferSize = {}; - uint32_t maxTransformFeedbackStreamDataSize = {}; - uint32_t maxTransformFeedbackBufferDataSize = {}; - uint32_t maxTransformFeedbackBufferDataStride = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackQueries = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackStreamsLinesTriangles = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackRasterizationStreamSelect = {}; - VULKAN_HPP_NAMESPACE::Bool32 transformFeedbackDraw = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceTransformFeedbackPropertiesEXT ) == - sizeof( VkPhysicalDeviceTransformFeedbackPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceTransformFeedbackPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceTransformFeedbackPropertiesEXT; - }; - - struct PhysicalDeviceUniformBufferStandardLayoutFeatures - { - using NativeType = VkPhysicalDeviceUniformBufferStandardLayoutFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceUniformBufferStandardLayoutFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceUniformBufferStandardLayoutFeatures( - VULKAN_HPP_NAMESPACE::Bool32 uniformBufferStandardLayout_ = {} ) VULKAN_HPP_NOEXCEPT - : uniformBufferStandardLayout( uniformBufferStandardLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceUniformBufferStandardLayoutFeatures( - PhysicalDeviceUniformBufferStandardLayoutFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceUniformBufferStandardLayoutFeatures( VkPhysicalDeviceUniformBufferStandardLayoutFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceUniformBufferStandardLayoutFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceUniformBufferStandardLayoutFeatures & - operator=( PhysicalDeviceUniformBufferStandardLayoutFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceUniformBufferStandardLayoutFeatures & - operator=( VkPhysicalDeviceUniformBufferStandardLayoutFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceUniformBufferStandardLayoutFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceUniformBufferStandardLayoutFeatures & - setUniformBufferStandardLayout( VULKAN_HPP_NAMESPACE::Bool32 uniformBufferStandardLayout_ ) VULKAN_HPP_NOEXCEPT - { - uniformBufferStandardLayout = uniformBufferStandardLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceUniformBufferStandardLayoutFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceUniformBufferStandardLayoutFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, uniformBufferStandardLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceUniformBufferStandardLayoutFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceUniformBufferStandardLayoutFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( uniformBufferStandardLayout == rhs.uniformBufferStandardLayout ); -# endif - } - - bool operator!=( PhysicalDeviceUniformBufferStandardLayoutFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceUniformBufferStandardLayoutFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformBufferStandardLayout = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceUniformBufferStandardLayoutFeatures ) == - sizeof( VkPhysicalDeviceUniformBufferStandardLayoutFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceUniformBufferStandardLayoutFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceUniformBufferStandardLayoutFeatures; - }; - using PhysicalDeviceUniformBufferStandardLayoutFeaturesKHR = PhysicalDeviceUniformBufferStandardLayoutFeatures; - - struct PhysicalDeviceVariablePointersFeatures - { - using NativeType = VkPhysicalDeviceVariablePointersFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceVariablePointersFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVariablePointersFeatures( VULKAN_HPP_NAMESPACE::Bool32 variablePointersStorageBuffer_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 variablePointers_ = {} ) VULKAN_HPP_NOEXCEPT - : variablePointersStorageBuffer( variablePointersStorageBuffer_ ) - , variablePointers( variablePointers_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceVariablePointersFeatures( PhysicalDeviceVariablePointersFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVariablePointersFeatures( VkPhysicalDeviceVariablePointersFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVariablePointersFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVariablePointersFeatures & - operator=( PhysicalDeviceVariablePointersFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVariablePointersFeatures & - operator=( VkPhysicalDeviceVariablePointersFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVariablePointersFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVariablePointersFeatures & setVariablePointersStorageBuffer( - VULKAN_HPP_NAMESPACE::Bool32 variablePointersStorageBuffer_ ) VULKAN_HPP_NOEXCEPT - { - variablePointersStorageBuffer = variablePointersStorageBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVariablePointersFeatures & - setVariablePointers( VULKAN_HPP_NAMESPACE::Bool32 variablePointers_ ) VULKAN_HPP_NOEXCEPT - { - variablePointers = variablePointers_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVariablePointersFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVariablePointersFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, variablePointersStorageBuffer, variablePointers ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVariablePointersFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceVariablePointersFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( variablePointersStorageBuffer == rhs.variablePointersStorageBuffer ) && - ( variablePointers == rhs.variablePointers ); -# endif - } - - bool operator!=( PhysicalDeviceVariablePointersFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVariablePointersFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 variablePointersStorageBuffer = {}; - VULKAN_HPP_NAMESPACE::Bool32 variablePointers = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVariablePointersFeatures ) == - sizeof( VkPhysicalDeviceVariablePointersFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVariablePointersFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVariablePointersFeatures; - }; - using PhysicalDeviceVariablePointerFeatures = PhysicalDeviceVariablePointersFeatures; - using PhysicalDeviceVariablePointerFeaturesKHR = PhysicalDeviceVariablePointersFeatures; - using PhysicalDeviceVariablePointersFeaturesKHR = PhysicalDeviceVariablePointersFeatures; - - struct PhysicalDeviceVertexAttributeDivisorFeaturesEXT - { - using NativeType = VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceVertexAttributeDivisorFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVertexAttributeDivisorFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeInstanceRateDivisor_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeInstanceRateZeroDivisor_ = {} ) VULKAN_HPP_NOEXCEPT - : vertexAttributeInstanceRateDivisor( vertexAttributeInstanceRateDivisor_ ) - , vertexAttributeInstanceRateZeroDivisor( vertexAttributeInstanceRateZeroDivisor_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceVertexAttributeDivisorFeaturesEXT( - PhysicalDeviceVertexAttributeDivisorFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVertexAttributeDivisorFeaturesEXT( VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVertexAttributeDivisorFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVertexAttributeDivisorFeaturesEXT & - operator=( PhysicalDeviceVertexAttributeDivisorFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVertexAttributeDivisorFeaturesEXT & - operator=( VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVertexAttributeDivisorFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVertexAttributeDivisorFeaturesEXT & setVertexAttributeInstanceRateDivisor( - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeInstanceRateDivisor_ ) VULKAN_HPP_NOEXCEPT - { - vertexAttributeInstanceRateDivisor = vertexAttributeInstanceRateDivisor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVertexAttributeDivisorFeaturesEXT & setVertexAttributeInstanceRateZeroDivisor( - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeInstanceRateZeroDivisor_ ) VULKAN_HPP_NOEXCEPT - { - vertexAttributeInstanceRateZeroDivisor = vertexAttributeInstanceRateZeroDivisor_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, vertexAttributeInstanceRateDivisor, vertexAttributeInstanceRateZeroDivisor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVertexAttributeDivisorFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceVertexAttributeDivisorFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( vertexAttributeInstanceRateDivisor == rhs.vertexAttributeInstanceRateDivisor ) && - ( vertexAttributeInstanceRateZeroDivisor == rhs.vertexAttributeInstanceRateZeroDivisor ); -# endif - } - - bool operator!=( PhysicalDeviceVertexAttributeDivisorFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVertexAttributeDivisorFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeInstanceRateDivisor = {}; - VULKAN_HPP_NAMESPACE::Bool32 vertexAttributeInstanceRateZeroDivisor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexAttributeDivisorFeaturesEXT ) == - sizeof( VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVertexAttributeDivisorFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVertexAttributeDivisorFeaturesEXT; - }; - - struct PhysicalDeviceVertexAttributeDivisorPropertiesEXT - { - using NativeType = VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceVertexAttributeDivisorPropertiesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVertexAttributeDivisorPropertiesEXT( uint32_t maxVertexAttribDivisor_ = {} ) VULKAN_HPP_NOEXCEPT - : maxVertexAttribDivisor( maxVertexAttribDivisor_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceVertexAttributeDivisorPropertiesEXT( - PhysicalDeviceVertexAttributeDivisorPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVertexAttributeDivisorPropertiesEXT( VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVertexAttributeDivisorPropertiesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVertexAttributeDivisorPropertiesEXT & - operator=( PhysicalDeviceVertexAttributeDivisorPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVertexAttributeDivisorPropertiesEXT & - operator=( VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxVertexAttribDivisor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVertexAttributeDivisorPropertiesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceVertexAttributeDivisorPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxVertexAttribDivisor == rhs.maxVertexAttribDivisor ); -# endif - } - - bool operator!=( PhysicalDeviceVertexAttributeDivisorPropertiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVertexAttributeDivisorPropertiesEXT; - void * pNext = {}; - uint32_t maxVertexAttribDivisor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexAttributeDivisorPropertiesEXT ) == - sizeof( VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVertexAttributeDivisorPropertiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVertexAttributeDivisorPropertiesEXT; - }; - - struct PhysicalDeviceVertexInputDynamicStateFeaturesEXT - { - using NativeType = VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceVertexInputDynamicStateFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVertexInputDynamicStateFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 vertexInputDynamicState_ = {} ) VULKAN_HPP_NOEXCEPT - : vertexInputDynamicState( vertexInputDynamicState_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceVertexInputDynamicStateFeaturesEXT( - PhysicalDeviceVertexInputDynamicStateFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVertexInputDynamicStateFeaturesEXT( VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVertexInputDynamicStateFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVertexInputDynamicStateFeaturesEXT & - operator=( PhysicalDeviceVertexInputDynamicStateFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVertexInputDynamicStateFeaturesEXT & - operator=( VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVertexInputDynamicStateFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVertexInputDynamicStateFeaturesEXT & - setVertexInputDynamicState( VULKAN_HPP_NAMESPACE::Bool32 vertexInputDynamicState_ ) VULKAN_HPP_NOEXCEPT - { - vertexInputDynamicState = vertexInputDynamicState_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, vertexInputDynamicState ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVertexInputDynamicStateFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceVertexInputDynamicStateFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( vertexInputDynamicState == rhs.vertexInputDynamicState ); -# endif - } - - bool operator!=( PhysicalDeviceVertexInputDynamicStateFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVertexInputDynamicStateFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 vertexInputDynamicState = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexInputDynamicStateFeaturesEXT ) == - sizeof( VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVertexInputDynamicStateFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVertexInputDynamicStateFeaturesEXT; - }; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoProfileKHR - { - using NativeType = VkVideoProfileKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoProfileKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoProfileKHR( VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagBitsKHR videoCodecOperation_ = - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagBitsKHR::eInvalid, - VULKAN_HPP_NAMESPACE::VideoChromaSubsamplingFlagsKHR chromaSubsampling_ = {}, - VULKAN_HPP_NAMESPACE::VideoComponentBitDepthFlagsKHR lumaBitDepth_ = {}, - VULKAN_HPP_NAMESPACE::VideoComponentBitDepthFlagsKHR chromaBitDepth_ = {} ) VULKAN_HPP_NOEXCEPT - : videoCodecOperation( videoCodecOperation_ ) - , chromaSubsampling( chromaSubsampling_ ) - , lumaBitDepth( lumaBitDepth_ ) - , chromaBitDepth( chromaBitDepth_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoProfileKHR( VideoProfileKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoProfileKHR( VkVideoProfileKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoProfileKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoProfileKHR & operator=( VideoProfileKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoProfileKHR & operator=( VkVideoProfileKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoProfileKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoProfileKHR & setVideoCodecOperation( - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagBitsKHR videoCodecOperation_ ) VULKAN_HPP_NOEXCEPT - { - videoCodecOperation = videoCodecOperation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoProfileKHR & setChromaSubsampling( - VULKAN_HPP_NAMESPACE::VideoChromaSubsamplingFlagsKHR chromaSubsampling_ ) VULKAN_HPP_NOEXCEPT - { - chromaSubsampling = chromaSubsampling_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoProfileKHR & - setLumaBitDepth( VULKAN_HPP_NAMESPACE::VideoComponentBitDepthFlagsKHR lumaBitDepth_ ) VULKAN_HPP_NOEXCEPT - { - lumaBitDepth = lumaBitDepth_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoProfileKHR & - setChromaBitDepth( VULKAN_HPP_NAMESPACE::VideoComponentBitDepthFlagsKHR chromaBitDepth_ ) VULKAN_HPP_NOEXCEPT - { - chromaBitDepth = chromaBitDepth_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoProfileKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoProfileKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, videoCodecOperation, chromaSubsampling, lumaBitDepth, chromaBitDepth ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoProfileKHR const & ) const = default; -# else - bool operator==( VideoProfileKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( videoCodecOperation == rhs.videoCodecOperation ) && - ( chromaSubsampling == rhs.chromaSubsampling ) && ( lumaBitDepth == rhs.lumaBitDepth ) && - ( chromaBitDepth == rhs.chromaBitDepth ); -# endif - } - - bool operator!=( VideoProfileKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoProfileKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagBitsKHR videoCodecOperation = - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagBitsKHR::eInvalid; - VULKAN_HPP_NAMESPACE::VideoChromaSubsamplingFlagsKHR chromaSubsampling = {}; - VULKAN_HPP_NAMESPACE::VideoComponentBitDepthFlagsKHR lumaBitDepth = {}; - VULKAN_HPP_NAMESPACE::VideoComponentBitDepthFlagsKHR chromaBitDepth = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoProfileKHR ) == sizeof( VkVideoProfileKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoProfileKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoProfileKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoProfilesKHR - { - using NativeType = VkVideoProfilesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoProfilesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoProfilesKHR( uint32_t profileCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pProfiles_ = {} ) VULKAN_HPP_NOEXCEPT - : profileCount( profileCount_ ) - , pProfiles( pProfiles_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoProfilesKHR( VideoProfilesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoProfilesKHR( VkVideoProfilesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoProfilesKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoProfilesKHR & operator=( VideoProfilesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoProfilesKHR & operator=( VkVideoProfilesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoProfilesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoProfilesKHR & setProfileCount( uint32_t profileCount_ ) VULKAN_HPP_NOEXCEPT - { - profileCount = profileCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoProfilesKHR & - setPProfiles( const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pProfiles_ ) VULKAN_HPP_NOEXCEPT - { - pProfiles = pProfiles_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoProfilesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoProfilesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, profileCount, pProfiles ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoProfilesKHR const & ) const = default; -# else - bool operator==( VideoProfilesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( profileCount == rhs.profileCount ) && - ( pProfiles == rhs.pProfiles ); -# endif - } - - bool operator!=( VideoProfilesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoProfilesKHR; - void * pNext = {}; - uint32_t profileCount = {}; - const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pProfiles = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoProfilesKHR ) == sizeof( VkVideoProfilesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoProfilesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoProfilesKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct PhysicalDeviceVideoFormatInfoKHR - { - using NativeType = VkPhysicalDeviceVideoFormatInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVideoFormatInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVideoFormatInfoKHR( - VULKAN_HPP_NAMESPACE::ImageUsageFlags imageUsage_ = {}, - const VULKAN_HPP_NAMESPACE::VideoProfilesKHR * pVideoProfiles_ = {} ) VULKAN_HPP_NOEXCEPT - : imageUsage( imageUsage_ ) - , pVideoProfiles( pVideoProfiles_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVideoFormatInfoKHR( PhysicalDeviceVideoFormatInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVideoFormatInfoKHR( VkPhysicalDeviceVideoFormatInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVideoFormatInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVideoFormatInfoKHR & - operator=( PhysicalDeviceVideoFormatInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVideoFormatInfoKHR & operator=( VkPhysicalDeviceVideoFormatInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceVideoFormatInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVideoFormatInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageUsage, pVideoProfiles ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVideoFormatInfoKHR const & ) const = default; -# else - bool operator==( PhysicalDeviceVideoFormatInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageUsage == rhs.imageUsage ) && - ( pVideoProfiles == rhs.pVideoProfiles ); -# endif - } - - bool operator!=( PhysicalDeviceVideoFormatInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVideoFormatInfoKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags imageUsage = {}; - const VULKAN_HPP_NAMESPACE::VideoProfilesKHR * pVideoProfiles = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVideoFormatInfoKHR ) == - sizeof( VkPhysicalDeviceVideoFormatInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVideoFormatInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVideoFormatInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - struct PhysicalDeviceVulkan11Features - { - using NativeType = VkPhysicalDeviceVulkan11Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVulkan11Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVulkan11Features( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiview_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiviewGeometryShader_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 multiviewTessellationShader_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 variablePointersStorageBuffer_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 variablePointers_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 protectedMemory_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 samplerYcbcrConversion_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDrawParameters_ = {} ) VULKAN_HPP_NOEXCEPT - : storageBuffer16BitAccess( storageBuffer16BitAccess_ ) - , uniformAndStorageBuffer16BitAccess( uniformAndStorageBuffer16BitAccess_ ) - , storagePushConstant16( storagePushConstant16_ ) - , storageInputOutput16( storageInputOutput16_ ) - , multiview( multiview_ ) - , multiviewGeometryShader( multiviewGeometryShader_ ) - , multiviewTessellationShader( multiviewTessellationShader_ ) - , variablePointersStorageBuffer( variablePointersStorageBuffer_ ) - , variablePointers( variablePointers_ ) - , protectedMemory( protectedMemory_ ) - , samplerYcbcrConversion( samplerYcbcrConversion_ ) - , shaderDrawParameters( shaderDrawParameters_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVulkan11Features( PhysicalDeviceVulkan11Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan11Features( VkPhysicalDeviceVulkan11Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkan11Features( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkan11Features & - operator=( PhysicalDeviceVulkan11Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan11Features & operator=( VkPhysicalDeviceVulkan11Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setStorageBuffer16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - storageBuffer16BitAccess = storageBuffer16BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & setUniformAndStorageBuffer16BitAccess( - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - uniformAndStorageBuffer16BitAccess = uniformAndStorageBuffer16BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setStoragePushConstant16( VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16_ ) VULKAN_HPP_NOEXCEPT - { - storagePushConstant16 = storagePushConstant16_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setStorageInputOutput16( VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16_ ) VULKAN_HPP_NOEXCEPT - { - storageInputOutput16 = storageInputOutput16_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setMultiview( VULKAN_HPP_NAMESPACE::Bool32 multiview_ ) VULKAN_HPP_NOEXCEPT - { - multiview = multiview_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setMultiviewGeometryShader( VULKAN_HPP_NAMESPACE::Bool32 multiviewGeometryShader_ ) VULKAN_HPP_NOEXCEPT - { - multiviewGeometryShader = multiviewGeometryShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setMultiviewTessellationShader( VULKAN_HPP_NAMESPACE::Bool32 multiviewTessellationShader_ ) VULKAN_HPP_NOEXCEPT - { - multiviewTessellationShader = multiviewTessellationShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & setVariablePointersStorageBuffer( - VULKAN_HPP_NAMESPACE::Bool32 variablePointersStorageBuffer_ ) VULKAN_HPP_NOEXCEPT - { - variablePointersStorageBuffer = variablePointersStorageBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setVariablePointers( VULKAN_HPP_NAMESPACE::Bool32 variablePointers_ ) VULKAN_HPP_NOEXCEPT - { - variablePointers = variablePointers_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setProtectedMemory( VULKAN_HPP_NAMESPACE::Bool32 protectedMemory_ ) VULKAN_HPP_NOEXCEPT - { - protectedMemory = protectedMemory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setSamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::Bool32 samplerYcbcrConversion_ ) VULKAN_HPP_NOEXCEPT - { - samplerYcbcrConversion = samplerYcbcrConversion_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Features & - setShaderDrawParameters( VULKAN_HPP_NAMESPACE::Bool32 shaderDrawParameters_ ) VULKAN_HPP_NOEXCEPT - { - shaderDrawParameters = shaderDrawParameters_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVulkan11Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkan11Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - storageBuffer16BitAccess, - uniformAndStorageBuffer16BitAccess, - storagePushConstant16, - storageInputOutput16, - multiview, - multiviewGeometryShader, - multiviewTessellationShader, - variablePointersStorageBuffer, - variablePointers, - protectedMemory, - samplerYcbcrConversion, - shaderDrawParameters ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkan11Features const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkan11Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( storageBuffer16BitAccess == rhs.storageBuffer16BitAccess ) && - ( uniformAndStorageBuffer16BitAccess == rhs.uniformAndStorageBuffer16BitAccess ) && - ( storagePushConstant16 == rhs.storagePushConstant16 ) && - ( storageInputOutput16 == rhs.storageInputOutput16 ) && ( multiview == rhs.multiview ) && - ( multiviewGeometryShader == rhs.multiviewGeometryShader ) && - ( multiviewTessellationShader == rhs.multiviewTessellationShader ) && - ( variablePointersStorageBuffer == rhs.variablePointersStorageBuffer ) && - ( variablePointers == rhs.variablePointers ) && ( protectedMemory == rhs.protectedMemory ) && - ( samplerYcbcrConversion == rhs.samplerYcbcrConversion ) && - ( shaderDrawParameters == rhs.shaderDrawParameters ); -# endif - } - - bool operator!=( PhysicalDeviceVulkan11Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkan11Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiview = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiviewGeometryShader = {}; - VULKAN_HPP_NAMESPACE::Bool32 multiviewTessellationShader = {}; - VULKAN_HPP_NAMESPACE::Bool32 variablePointersStorageBuffer = {}; - VULKAN_HPP_NAMESPACE::Bool32 variablePointers = {}; - VULKAN_HPP_NAMESPACE::Bool32 protectedMemory = {}; - VULKAN_HPP_NAMESPACE::Bool32 samplerYcbcrConversion = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDrawParameters = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan11Features ) == - sizeof( VkPhysicalDeviceVulkan11Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkan11Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkan11Features; - }; - - struct PhysicalDeviceVulkan11Properties - { - using NativeType = VkPhysicalDeviceVulkan11Properties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVulkan11Properties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan11Properties( - std::array const & deviceUUID_ = {}, - std::array const & driverUUID_ = {}, - std::array const & deviceLUID_ = {}, - uint32_t deviceNodeMask_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 deviceLUIDValid_ = {}, - uint32_t subgroupSize_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlags subgroupSupportedStages_ = {}, - VULKAN_HPP_NAMESPACE::SubgroupFeatureFlags subgroupSupportedOperations_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 subgroupQuadOperationsInAllStages_ = {}, - VULKAN_HPP_NAMESPACE::PointClippingBehavior pointClippingBehavior_ = - VULKAN_HPP_NAMESPACE::PointClippingBehavior::eAllClipPlanes, - uint32_t maxMultiviewViewCount_ = {}, - uint32_t maxMultiviewInstanceIndex_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 protectedNoFault_ = {}, - uint32_t maxPerSetDescriptors_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceUUID( deviceUUID_ ) - , driverUUID( driverUUID_ ) - , deviceLUID( deviceLUID_ ) - , deviceNodeMask( deviceNodeMask_ ) - , deviceLUIDValid( deviceLUIDValid_ ) - , subgroupSize( subgroupSize_ ) - , subgroupSupportedStages( subgroupSupportedStages_ ) - , subgroupSupportedOperations( subgroupSupportedOperations_ ) - , subgroupQuadOperationsInAllStages( subgroupQuadOperationsInAllStages_ ) - , pointClippingBehavior( pointClippingBehavior_ ) - , maxMultiviewViewCount( maxMultiviewViewCount_ ) - , maxMultiviewInstanceIndex( maxMultiviewInstanceIndex_ ) - , protectedNoFault( protectedNoFault_ ) - , maxPerSetDescriptors( maxPerSetDescriptors_ ) - , maxMemoryAllocationSize( maxMemoryAllocationSize_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceVulkan11Properties( PhysicalDeviceVulkan11Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan11Properties( VkPhysicalDeviceVulkan11Properties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkan11Properties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkan11Properties & - operator=( PhysicalDeviceVulkan11Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan11Properties & operator=( VkPhysicalDeviceVulkan11Properties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceVulkan11Properties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkan11Properties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ShaderStageFlags const &, - VULKAN_HPP_NAMESPACE::SubgroupFeatureFlags const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::PointClippingBehavior const &, - uint32_t const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::DeviceSize const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - deviceUUID, - driverUUID, - deviceLUID, - deviceNodeMask, - deviceLUIDValid, - subgroupSize, - subgroupSupportedStages, - subgroupSupportedOperations, - subgroupQuadOperationsInAllStages, - pointClippingBehavior, - maxMultiviewViewCount, - maxMultiviewInstanceIndex, - protectedNoFault, - maxPerSetDescriptors, - maxMemoryAllocationSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkan11Properties const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkan11Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( deviceUUID == rhs.deviceUUID ) && - ( driverUUID == rhs.driverUUID ) && ( deviceLUID == rhs.deviceLUID ) && - ( deviceNodeMask == rhs.deviceNodeMask ) && ( deviceLUIDValid == rhs.deviceLUIDValid ) && - ( subgroupSize == rhs.subgroupSize ) && ( subgroupSupportedStages == rhs.subgroupSupportedStages ) && - ( subgroupSupportedOperations == rhs.subgroupSupportedOperations ) && - ( subgroupQuadOperationsInAllStages == rhs.subgroupQuadOperationsInAllStages ) && - ( pointClippingBehavior == rhs.pointClippingBehavior ) && - ( maxMultiviewViewCount == rhs.maxMultiviewViewCount ) && - ( maxMultiviewInstanceIndex == rhs.maxMultiviewInstanceIndex ) && - ( protectedNoFault == rhs.protectedNoFault ) && ( maxPerSetDescriptors == rhs.maxPerSetDescriptors ) && - ( maxMemoryAllocationSize == rhs.maxMemoryAllocationSize ); -# endif - } - - bool operator!=( PhysicalDeviceVulkan11Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkan11Properties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D deviceUUID = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D driverUUID = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D deviceLUID = {}; - uint32_t deviceNodeMask = {}; - VULKAN_HPP_NAMESPACE::Bool32 deviceLUIDValid = {}; - uint32_t subgroupSize = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags subgroupSupportedStages = {}; - VULKAN_HPP_NAMESPACE::SubgroupFeatureFlags subgroupSupportedOperations = {}; - VULKAN_HPP_NAMESPACE::Bool32 subgroupQuadOperationsInAllStages = {}; - VULKAN_HPP_NAMESPACE::PointClippingBehavior pointClippingBehavior = - VULKAN_HPP_NAMESPACE::PointClippingBehavior::eAllClipPlanes; - uint32_t maxMultiviewViewCount = {}; - uint32_t maxMultiviewInstanceIndex = {}; - VULKAN_HPP_NAMESPACE::Bool32 protectedNoFault = {}; - uint32_t maxPerSetDescriptors = {}; - VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan11Properties ) == - sizeof( VkPhysicalDeviceVulkan11Properties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkan11Properties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkan11Properties; - }; - - struct PhysicalDeviceVulkan12Features - { - using NativeType = VkPhysicalDeviceVulkan12Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVulkan12Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVulkan12Features( - VULKAN_HPP_NAMESPACE::Bool32 samplerMirrorClampToEdge_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 drawIndirectCount_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storageBuffer8BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer8BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant8_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferInt64Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedInt64Atomics_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInt8_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayDynamicIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayNonUniformIndexing_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingSampledImageUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageImageUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformTexelBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageTexelBufferUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUpdateUnusedWhilePending_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingPartiallyBound_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingVariableDescriptorCount_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 runtimeDescriptorArray_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 samplerFilterMinmax_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 imagelessFramebuffer_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformBufferStandardLayout_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupExtendedTypes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 separateDepthStencilLayouts_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 hostQueryReset_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModel_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelDeviceScope_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelAvailabilityVisibilityChains_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderOutputViewportIndex_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderOutputLayer_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 subgroupBroadcastDynamicId_ = {} ) VULKAN_HPP_NOEXCEPT - : samplerMirrorClampToEdge( samplerMirrorClampToEdge_ ) - , drawIndirectCount( drawIndirectCount_ ) - , storageBuffer8BitAccess( storageBuffer8BitAccess_ ) - , uniformAndStorageBuffer8BitAccess( uniformAndStorageBuffer8BitAccess_ ) - , storagePushConstant8( storagePushConstant8_ ) - , shaderBufferInt64Atomics( shaderBufferInt64Atomics_ ) - , shaderSharedInt64Atomics( shaderSharedInt64Atomics_ ) - , shaderFloat16( shaderFloat16_ ) - , shaderInt8( shaderInt8_ ) - , descriptorIndexing( descriptorIndexing_ ) - , shaderInputAttachmentArrayDynamicIndexing( shaderInputAttachmentArrayDynamicIndexing_ ) - , shaderUniformTexelBufferArrayDynamicIndexing( shaderUniformTexelBufferArrayDynamicIndexing_ ) - , shaderStorageTexelBufferArrayDynamicIndexing( shaderStorageTexelBufferArrayDynamicIndexing_ ) - , shaderUniformBufferArrayNonUniformIndexing( shaderUniformBufferArrayNonUniformIndexing_ ) - , shaderSampledImageArrayNonUniformIndexing( shaderSampledImageArrayNonUniformIndexing_ ) - , shaderStorageBufferArrayNonUniformIndexing( shaderStorageBufferArrayNonUniformIndexing_ ) - , shaderStorageImageArrayNonUniformIndexing( shaderStorageImageArrayNonUniformIndexing_ ) - , shaderInputAttachmentArrayNonUniformIndexing( shaderInputAttachmentArrayNonUniformIndexing_ ) - , shaderUniformTexelBufferArrayNonUniformIndexing( shaderUniformTexelBufferArrayNonUniformIndexing_ ) - , shaderStorageTexelBufferArrayNonUniformIndexing( shaderStorageTexelBufferArrayNonUniformIndexing_ ) - , descriptorBindingUniformBufferUpdateAfterBind( descriptorBindingUniformBufferUpdateAfterBind_ ) - , descriptorBindingSampledImageUpdateAfterBind( descriptorBindingSampledImageUpdateAfterBind_ ) - , descriptorBindingStorageImageUpdateAfterBind( descriptorBindingStorageImageUpdateAfterBind_ ) - , descriptorBindingStorageBufferUpdateAfterBind( descriptorBindingStorageBufferUpdateAfterBind_ ) - , descriptorBindingUniformTexelBufferUpdateAfterBind( descriptorBindingUniformTexelBufferUpdateAfterBind_ ) - , descriptorBindingStorageTexelBufferUpdateAfterBind( descriptorBindingStorageTexelBufferUpdateAfterBind_ ) - , descriptorBindingUpdateUnusedWhilePending( descriptorBindingUpdateUnusedWhilePending_ ) - , descriptorBindingPartiallyBound( descriptorBindingPartiallyBound_ ) - , descriptorBindingVariableDescriptorCount( descriptorBindingVariableDescriptorCount_ ) - , runtimeDescriptorArray( runtimeDescriptorArray_ ) - , samplerFilterMinmax( samplerFilterMinmax_ ) - , scalarBlockLayout( scalarBlockLayout_ ) - , imagelessFramebuffer( imagelessFramebuffer_ ) - , uniformBufferStandardLayout( uniformBufferStandardLayout_ ) - , shaderSubgroupExtendedTypes( shaderSubgroupExtendedTypes_ ) - , separateDepthStencilLayouts( separateDepthStencilLayouts_ ) - , hostQueryReset( hostQueryReset_ ) - , timelineSemaphore( timelineSemaphore_ ) - , bufferDeviceAddress( bufferDeviceAddress_ ) - , bufferDeviceAddressCaptureReplay( bufferDeviceAddressCaptureReplay_ ) - , bufferDeviceAddressMultiDevice( bufferDeviceAddressMultiDevice_ ) - , vulkanMemoryModel( vulkanMemoryModel_ ) - , vulkanMemoryModelDeviceScope( vulkanMemoryModelDeviceScope_ ) - , vulkanMemoryModelAvailabilityVisibilityChains( vulkanMemoryModelAvailabilityVisibilityChains_ ) - , shaderOutputViewportIndex( shaderOutputViewportIndex_ ) - , shaderOutputLayer( shaderOutputLayer_ ) - , subgroupBroadcastDynamicId( subgroupBroadcastDynamicId_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVulkan12Features( PhysicalDeviceVulkan12Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan12Features( VkPhysicalDeviceVulkan12Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkan12Features( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkan12Features & - operator=( PhysicalDeviceVulkan12Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan12Features & operator=( VkPhysicalDeviceVulkan12Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setSamplerMirrorClampToEdge( VULKAN_HPP_NAMESPACE::Bool32 samplerMirrorClampToEdge_ ) VULKAN_HPP_NOEXCEPT - { - samplerMirrorClampToEdge = samplerMirrorClampToEdge_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setDrawIndirectCount( VULKAN_HPP_NAMESPACE::Bool32 drawIndirectCount_ ) VULKAN_HPP_NOEXCEPT - { - drawIndirectCount = drawIndirectCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setStorageBuffer8BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer8BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - storageBuffer8BitAccess = storageBuffer8BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setUniformAndStorageBuffer8BitAccess( - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer8BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - uniformAndStorageBuffer8BitAccess = uniformAndStorageBuffer8BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setStoragePushConstant8( VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant8_ ) VULKAN_HPP_NOEXCEPT - { - storagePushConstant8 = storagePushConstant8_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderBufferInt64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderBufferInt64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderBufferInt64Atomics = shaderBufferInt64Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderSharedInt64Atomics( VULKAN_HPP_NAMESPACE::Bool32 shaderSharedInt64Atomics_ ) VULKAN_HPP_NOEXCEPT - { - shaderSharedInt64Atomics = shaderSharedInt64Atomics_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderFloat16( VULKAN_HPP_NAMESPACE::Bool32 shaderFloat16_ ) VULKAN_HPP_NOEXCEPT - { - shaderFloat16 = shaderFloat16_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderInt8( VULKAN_HPP_NAMESPACE::Bool32 shaderInt8_ ) VULKAN_HPP_NOEXCEPT - { - shaderInt8 = shaderInt8_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setDescriptorIndexing( VULKAN_HPP_NAMESPACE::Bool32 descriptorIndexing_ ) VULKAN_HPP_NOEXCEPT - { - descriptorIndexing = descriptorIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderInputAttachmentArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderInputAttachmentArrayDynamicIndexing = shaderInputAttachmentArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderUniformTexelBufferArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformTexelBufferArrayDynamicIndexing = shaderUniformTexelBufferArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderStorageTexelBufferArrayDynamicIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayDynamicIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageTexelBufferArrayDynamicIndexing = shaderStorageTexelBufferArrayDynamicIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderUniformBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformBufferArrayNonUniformIndexing = shaderUniformBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderSampledImageArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderSampledImageArrayNonUniformIndexing = shaderSampledImageArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderStorageBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageBufferArrayNonUniformIndexing = shaderStorageBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderStorageImageArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageImageArrayNonUniformIndexing = shaderStorageImageArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderInputAttachmentArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderInputAttachmentArrayNonUniformIndexing = shaderInputAttachmentArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderUniformTexelBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderUniformTexelBufferArrayNonUniformIndexing = shaderUniformTexelBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setShaderStorageTexelBufferArrayNonUniformIndexing( - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayNonUniformIndexing_ ) VULKAN_HPP_NOEXCEPT - { - shaderStorageTexelBufferArrayNonUniformIndexing = shaderStorageTexelBufferArrayNonUniformIndexing_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingUniformBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingUniformBufferUpdateAfterBind = descriptorBindingUniformBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingSampledImageUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingSampledImageUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingSampledImageUpdateAfterBind = descriptorBindingSampledImageUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingStorageImageUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageImageUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingStorageImageUpdateAfterBind = descriptorBindingStorageImageUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingStorageBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingStorageBufferUpdateAfterBind = descriptorBindingStorageBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingUniformTexelBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformTexelBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingUniformTexelBufferUpdateAfterBind = descriptorBindingUniformTexelBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingStorageTexelBufferUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageTexelBufferUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingStorageTexelBufferUpdateAfterBind = descriptorBindingStorageTexelBufferUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingUpdateUnusedWhilePending( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUpdateUnusedWhilePending_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingUpdateUnusedWhilePending = descriptorBindingUpdateUnusedWhilePending_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingPartiallyBound( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingPartiallyBound_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingPartiallyBound = descriptorBindingPartiallyBound_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setDescriptorBindingVariableDescriptorCount( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingVariableDescriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingVariableDescriptorCount = descriptorBindingVariableDescriptorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setRuntimeDescriptorArray( VULKAN_HPP_NAMESPACE::Bool32 runtimeDescriptorArray_ ) VULKAN_HPP_NOEXCEPT - { - runtimeDescriptorArray = runtimeDescriptorArray_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setSamplerFilterMinmax( VULKAN_HPP_NAMESPACE::Bool32 samplerFilterMinmax_ ) VULKAN_HPP_NOEXCEPT - { - samplerFilterMinmax = samplerFilterMinmax_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setScalarBlockLayout( VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_ ) VULKAN_HPP_NOEXCEPT - { - scalarBlockLayout = scalarBlockLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setImagelessFramebuffer( VULKAN_HPP_NAMESPACE::Bool32 imagelessFramebuffer_ ) VULKAN_HPP_NOEXCEPT - { - imagelessFramebuffer = imagelessFramebuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setUniformBufferStandardLayout( VULKAN_HPP_NAMESPACE::Bool32 uniformBufferStandardLayout_ ) VULKAN_HPP_NOEXCEPT - { - uniformBufferStandardLayout = uniformBufferStandardLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderSubgroupExtendedTypes( VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupExtendedTypes_ ) VULKAN_HPP_NOEXCEPT - { - shaderSubgroupExtendedTypes = shaderSubgroupExtendedTypes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setSeparateDepthStencilLayouts( VULKAN_HPP_NAMESPACE::Bool32 separateDepthStencilLayouts_ ) VULKAN_HPP_NOEXCEPT - { - separateDepthStencilLayouts = separateDepthStencilLayouts_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setHostQueryReset( VULKAN_HPP_NAMESPACE::Bool32 hostQueryReset_ ) VULKAN_HPP_NOEXCEPT - { - hostQueryReset = hostQueryReset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setTimelineSemaphore( VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_ ) VULKAN_HPP_NOEXCEPT - { - timelineSemaphore = timelineSemaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setBufferDeviceAddress( VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddress = bufferDeviceAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setBufferDeviceAddressCaptureReplay( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddressCaptureReplay = bufferDeviceAddressCaptureReplay_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setBufferDeviceAddressMultiDevice( - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice_ ) VULKAN_HPP_NOEXCEPT - { - bufferDeviceAddressMultiDevice = bufferDeviceAddressMultiDevice_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setVulkanMemoryModel( VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModel_ ) VULKAN_HPP_NOEXCEPT - { - vulkanMemoryModel = vulkanMemoryModel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setVulkanMemoryModelDeviceScope( VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelDeviceScope_ ) VULKAN_HPP_NOEXCEPT - { - vulkanMemoryModelDeviceScope = vulkanMemoryModelDeviceScope_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & setVulkanMemoryModelAvailabilityVisibilityChains( - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelAvailabilityVisibilityChains_ ) VULKAN_HPP_NOEXCEPT - { - vulkanMemoryModelAvailabilityVisibilityChains = vulkanMemoryModelAvailabilityVisibilityChains_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderOutputViewportIndex( VULKAN_HPP_NAMESPACE::Bool32 shaderOutputViewportIndex_ ) VULKAN_HPP_NOEXCEPT - { - shaderOutputViewportIndex = shaderOutputViewportIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setShaderOutputLayer( VULKAN_HPP_NAMESPACE::Bool32 shaderOutputLayer_ ) VULKAN_HPP_NOEXCEPT - { - shaderOutputLayer = shaderOutputLayer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Features & - setSubgroupBroadcastDynamicId( VULKAN_HPP_NAMESPACE::Bool32 subgroupBroadcastDynamicId_ ) VULKAN_HPP_NOEXCEPT - { - subgroupBroadcastDynamicId = subgroupBroadcastDynamicId_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVulkan12Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkan12Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - samplerMirrorClampToEdge, - drawIndirectCount, - storageBuffer8BitAccess, - uniformAndStorageBuffer8BitAccess, - storagePushConstant8, - shaderBufferInt64Atomics, - shaderSharedInt64Atomics, - shaderFloat16, - shaderInt8, - descriptorIndexing, - shaderInputAttachmentArrayDynamicIndexing, - shaderUniformTexelBufferArrayDynamicIndexing, - shaderStorageTexelBufferArrayDynamicIndexing, - shaderUniformBufferArrayNonUniformIndexing, - shaderSampledImageArrayNonUniformIndexing, - shaderStorageBufferArrayNonUniformIndexing, - shaderStorageImageArrayNonUniformIndexing, - shaderInputAttachmentArrayNonUniformIndexing, - shaderUniformTexelBufferArrayNonUniformIndexing, - shaderStorageTexelBufferArrayNonUniformIndexing, - descriptorBindingUniformBufferUpdateAfterBind, - descriptorBindingSampledImageUpdateAfterBind, - descriptorBindingStorageImageUpdateAfterBind, - descriptorBindingStorageBufferUpdateAfterBind, - descriptorBindingUniformTexelBufferUpdateAfterBind, - descriptorBindingStorageTexelBufferUpdateAfterBind, - descriptorBindingUpdateUnusedWhilePending, - descriptorBindingPartiallyBound, - descriptorBindingVariableDescriptorCount, - runtimeDescriptorArray, - samplerFilterMinmax, - scalarBlockLayout, - imagelessFramebuffer, - uniformBufferStandardLayout, - shaderSubgroupExtendedTypes, - separateDepthStencilLayouts, - hostQueryReset, - timelineSemaphore, - bufferDeviceAddress, - bufferDeviceAddressCaptureReplay, - bufferDeviceAddressMultiDevice, - vulkanMemoryModel, - vulkanMemoryModelDeviceScope, - vulkanMemoryModelAvailabilityVisibilityChains, - shaderOutputViewportIndex, - shaderOutputLayer, - subgroupBroadcastDynamicId ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkan12Features const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkan12Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( samplerMirrorClampToEdge == rhs.samplerMirrorClampToEdge ) && - ( drawIndirectCount == rhs.drawIndirectCount ) && - ( storageBuffer8BitAccess == rhs.storageBuffer8BitAccess ) && - ( uniformAndStorageBuffer8BitAccess == rhs.uniformAndStorageBuffer8BitAccess ) && - ( storagePushConstant8 == rhs.storagePushConstant8 ) && - ( shaderBufferInt64Atomics == rhs.shaderBufferInt64Atomics ) && - ( shaderSharedInt64Atomics == rhs.shaderSharedInt64Atomics ) && ( shaderFloat16 == rhs.shaderFloat16 ) && - ( shaderInt8 == rhs.shaderInt8 ) && ( descriptorIndexing == rhs.descriptorIndexing ) && - ( shaderInputAttachmentArrayDynamicIndexing == rhs.shaderInputAttachmentArrayDynamicIndexing ) && - ( shaderUniformTexelBufferArrayDynamicIndexing == rhs.shaderUniformTexelBufferArrayDynamicIndexing ) && - ( shaderStorageTexelBufferArrayDynamicIndexing == rhs.shaderStorageTexelBufferArrayDynamicIndexing ) && - ( shaderUniformBufferArrayNonUniformIndexing == rhs.shaderUniformBufferArrayNonUniformIndexing ) && - ( shaderSampledImageArrayNonUniformIndexing == rhs.shaderSampledImageArrayNonUniformIndexing ) && - ( shaderStorageBufferArrayNonUniformIndexing == rhs.shaderStorageBufferArrayNonUniformIndexing ) && - ( shaderStorageImageArrayNonUniformIndexing == rhs.shaderStorageImageArrayNonUniformIndexing ) && - ( shaderInputAttachmentArrayNonUniformIndexing == rhs.shaderInputAttachmentArrayNonUniformIndexing ) && - ( shaderUniformTexelBufferArrayNonUniformIndexing == - rhs.shaderUniformTexelBufferArrayNonUniformIndexing ) && - ( shaderStorageTexelBufferArrayNonUniformIndexing == - rhs.shaderStorageTexelBufferArrayNonUniformIndexing ) && - ( descriptorBindingUniformBufferUpdateAfterBind == rhs.descriptorBindingUniformBufferUpdateAfterBind ) && - ( descriptorBindingSampledImageUpdateAfterBind == rhs.descriptorBindingSampledImageUpdateAfterBind ) && - ( descriptorBindingStorageImageUpdateAfterBind == rhs.descriptorBindingStorageImageUpdateAfterBind ) && - ( descriptorBindingStorageBufferUpdateAfterBind == rhs.descriptorBindingStorageBufferUpdateAfterBind ) && - ( descriptorBindingUniformTexelBufferUpdateAfterBind == - rhs.descriptorBindingUniformTexelBufferUpdateAfterBind ) && - ( descriptorBindingStorageTexelBufferUpdateAfterBind == - rhs.descriptorBindingStorageTexelBufferUpdateAfterBind ) && - ( descriptorBindingUpdateUnusedWhilePending == rhs.descriptorBindingUpdateUnusedWhilePending ) && - ( descriptorBindingPartiallyBound == rhs.descriptorBindingPartiallyBound ) && - ( descriptorBindingVariableDescriptorCount == rhs.descriptorBindingVariableDescriptorCount ) && - ( runtimeDescriptorArray == rhs.runtimeDescriptorArray ) && - ( samplerFilterMinmax == rhs.samplerFilterMinmax ) && ( scalarBlockLayout == rhs.scalarBlockLayout ) && - ( imagelessFramebuffer == rhs.imagelessFramebuffer ) && - ( uniformBufferStandardLayout == rhs.uniformBufferStandardLayout ) && - ( shaderSubgroupExtendedTypes == rhs.shaderSubgroupExtendedTypes ) && - ( separateDepthStencilLayouts == rhs.separateDepthStencilLayouts ) && - ( hostQueryReset == rhs.hostQueryReset ) && ( timelineSemaphore == rhs.timelineSemaphore ) && - ( bufferDeviceAddress == rhs.bufferDeviceAddress ) && - ( bufferDeviceAddressCaptureReplay == rhs.bufferDeviceAddressCaptureReplay ) && - ( bufferDeviceAddressMultiDevice == rhs.bufferDeviceAddressMultiDevice ) && - ( vulkanMemoryModel == rhs.vulkanMemoryModel ) && - ( vulkanMemoryModelDeviceScope == rhs.vulkanMemoryModelDeviceScope ) && - ( vulkanMemoryModelAvailabilityVisibilityChains == rhs.vulkanMemoryModelAvailabilityVisibilityChains ) && - ( shaderOutputViewportIndex == rhs.shaderOutputViewportIndex ) && - ( shaderOutputLayer == rhs.shaderOutputLayer ) && - ( subgroupBroadcastDynamicId == rhs.subgroupBroadcastDynamicId ); -# endif - } - - bool operator!=( PhysicalDeviceVulkan12Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkan12Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 samplerMirrorClampToEdge = {}; - VULKAN_HPP_NAMESPACE::Bool32 drawIndirectCount = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageBuffer8BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer8BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant8 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderBufferInt64Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSharedInt64Atomics = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInt8 = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayDynamicIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformTexelBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageTexelBufferArrayNonUniformIndexing = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingSampledImageUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageImageUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUniformTexelBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingStorageTexelBufferUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingUpdateUnusedWhilePending = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingPartiallyBound = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingVariableDescriptorCount = {}; - VULKAN_HPP_NAMESPACE::Bool32 runtimeDescriptorArray = {}; - VULKAN_HPP_NAMESPACE::Bool32 samplerFilterMinmax = {}; - VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout = {}; - VULKAN_HPP_NAMESPACE::Bool32 imagelessFramebuffer = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformBufferStandardLayout = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSubgroupExtendedTypes = {}; - VULKAN_HPP_NAMESPACE::Bool32 separateDepthStencilLayouts = {}; - VULKAN_HPP_NAMESPACE::Bool32 hostQueryReset = {}; - VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddress = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressCaptureReplay = {}; - VULKAN_HPP_NAMESPACE::Bool32 bufferDeviceAddressMultiDevice = {}; - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModel = {}; - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelDeviceScope = {}; - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelAvailabilityVisibilityChains = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderOutputViewportIndex = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderOutputLayer = {}; - VULKAN_HPP_NAMESPACE::Bool32 subgroupBroadcastDynamicId = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan12Features ) == - sizeof( VkPhysicalDeviceVulkan12Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkan12Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkan12Features; - }; - - struct PhysicalDeviceVulkan12Properties - { - using NativeType = VkPhysicalDeviceVulkan12Properties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVulkan12Properties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan12Properties( - VULKAN_HPP_NAMESPACE::DriverId driverID_ = VULKAN_HPP_NAMESPACE::DriverId::eAmdProprietary, - std::array const & driverName_ = {}, - std::array const & driverInfo_ = {}, - VULKAN_HPP_NAMESPACE::ConformanceVersion conformanceVersion_ = {}, - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence denormBehaviorIndependence_ = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly, - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence roundingModeIndependence_ = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly, - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat64_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat16_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat32_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat64_ = {}, - uint32_t maxUpdateAfterBindDescriptorsInAllPools_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexingNative_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccessUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 quadDivergentImplicitLod_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindSamplers_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments_ = {}, - uint32_t maxPerStageUpdateAfterBindResources_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindSamplers_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindSampledImages_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindStorageImages_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindInputAttachments_ = {}, - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedDepthResolveModes_ = {}, - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedStencilResolveModes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 independentResolveNone_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 independentResolve_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxSingleComponentFormats_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxImageComponentMapping_ = {}, - uint64_t maxTimelineSemaphoreValueDifference_ = {}, - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferIntegerColorSampleCounts_ = {} ) VULKAN_HPP_NOEXCEPT - : driverID( driverID_ ) - , driverName( driverName_ ) - , driverInfo( driverInfo_ ) - , conformanceVersion( conformanceVersion_ ) - , denormBehaviorIndependence( denormBehaviorIndependence_ ) - , roundingModeIndependence( roundingModeIndependence_ ) - , shaderSignedZeroInfNanPreserveFloat16( shaderSignedZeroInfNanPreserveFloat16_ ) - , shaderSignedZeroInfNanPreserveFloat32( shaderSignedZeroInfNanPreserveFloat32_ ) - , shaderSignedZeroInfNanPreserveFloat64( shaderSignedZeroInfNanPreserveFloat64_ ) - , shaderDenormPreserveFloat16( shaderDenormPreserveFloat16_ ) - , shaderDenormPreserveFloat32( shaderDenormPreserveFloat32_ ) - , shaderDenormPreserveFloat64( shaderDenormPreserveFloat64_ ) - , shaderDenormFlushToZeroFloat16( shaderDenormFlushToZeroFloat16_ ) - , shaderDenormFlushToZeroFloat32( shaderDenormFlushToZeroFloat32_ ) - , shaderDenormFlushToZeroFloat64( shaderDenormFlushToZeroFloat64_ ) - , shaderRoundingModeRTEFloat16( shaderRoundingModeRTEFloat16_ ) - , shaderRoundingModeRTEFloat32( shaderRoundingModeRTEFloat32_ ) - , shaderRoundingModeRTEFloat64( shaderRoundingModeRTEFloat64_ ) - , shaderRoundingModeRTZFloat16( shaderRoundingModeRTZFloat16_ ) - , shaderRoundingModeRTZFloat32( shaderRoundingModeRTZFloat32_ ) - , shaderRoundingModeRTZFloat64( shaderRoundingModeRTZFloat64_ ) - , maxUpdateAfterBindDescriptorsInAllPools( maxUpdateAfterBindDescriptorsInAllPools_ ) - , shaderUniformBufferArrayNonUniformIndexingNative( shaderUniformBufferArrayNonUniformIndexingNative_ ) - , shaderSampledImageArrayNonUniformIndexingNative( shaderSampledImageArrayNonUniformIndexingNative_ ) - , shaderStorageBufferArrayNonUniformIndexingNative( shaderStorageBufferArrayNonUniformIndexingNative_ ) - , shaderStorageImageArrayNonUniformIndexingNative( shaderStorageImageArrayNonUniformIndexingNative_ ) - , shaderInputAttachmentArrayNonUniformIndexingNative( shaderInputAttachmentArrayNonUniformIndexingNative_ ) - , robustBufferAccessUpdateAfterBind( robustBufferAccessUpdateAfterBind_ ) - , quadDivergentImplicitLod( quadDivergentImplicitLod_ ) - , maxPerStageDescriptorUpdateAfterBindSamplers( maxPerStageDescriptorUpdateAfterBindSamplers_ ) - , maxPerStageDescriptorUpdateAfterBindUniformBuffers( maxPerStageDescriptorUpdateAfterBindUniformBuffers_ ) - , maxPerStageDescriptorUpdateAfterBindStorageBuffers( maxPerStageDescriptorUpdateAfterBindStorageBuffers_ ) - , maxPerStageDescriptorUpdateAfterBindSampledImages( maxPerStageDescriptorUpdateAfterBindSampledImages_ ) - , maxPerStageDescriptorUpdateAfterBindStorageImages( maxPerStageDescriptorUpdateAfterBindStorageImages_ ) - , maxPerStageDescriptorUpdateAfterBindInputAttachments( maxPerStageDescriptorUpdateAfterBindInputAttachments_ ) - , maxPerStageUpdateAfterBindResources( maxPerStageUpdateAfterBindResources_ ) - , maxDescriptorSetUpdateAfterBindSamplers( maxDescriptorSetUpdateAfterBindSamplers_ ) - , maxDescriptorSetUpdateAfterBindUniformBuffers( maxDescriptorSetUpdateAfterBindUniformBuffers_ ) - , maxDescriptorSetUpdateAfterBindUniformBuffersDynamic( maxDescriptorSetUpdateAfterBindUniformBuffersDynamic_ ) - , maxDescriptorSetUpdateAfterBindStorageBuffers( maxDescriptorSetUpdateAfterBindStorageBuffers_ ) - , maxDescriptorSetUpdateAfterBindStorageBuffersDynamic( maxDescriptorSetUpdateAfterBindStorageBuffersDynamic_ ) - , maxDescriptorSetUpdateAfterBindSampledImages( maxDescriptorSetUpdateAfterBindSampledImages_ ) - , maxDescriptorSetUpdateAfterBindStorageImages( maxDescriptorSetUpdateAfterBindStorageImages_ ) - , maxDescriptorSetUpdateAfterBindInputAttachments( maxDescriptorSetUpdateAfterBindInputAttachments_ ) - , supportedDepthResolveModes( supportedDepthResolveModes_ ) - , supportedStencilResolveModes( supportedStencilResolveModes_ ) - , independentResolveNone( independentResolveNone_ ) - , independentResolve( independentResolve_ ) - , filterMinmaxSingleComponentFormats( filterMinmaxSingleComponentFormats_ ) - , filterMinmaxImageComponentMapping( filterMinmaxImageComponentMapping_ ) - , maxTimelineSemaphoreValueDifference( maxTimelineSemaphoreValueDifference_ ) - , framebufferIntegerColorSampleCounts( framebufferIntegerColorSampleCounts_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PhysicalDeviceVulkan12Properties( PhysicalDeviceVulkan12Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan12Properties( VkPhysicalDeviceVulkan12Properties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkan12Properties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkan12Properties & - operator=( PhysicalDeviceVulkan12Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan12Properties & operator=( VkPhysicalDeviceVulkan12Properties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceVulkan12Properties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkan12Properties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::ConformanceVersion const &, - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence const &, - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - uint32_t const &, - VULKAN_HPP_NAMESPACE::ResolveModeFlags const &, - VULKAN_HPP_NAMESPACE::ResolveModeFlags const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - uint64_t const &, - VULKAN_HPP_NAMESPACE::SampleCountFlags const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - driverID, - driverName, - driverInfo, - conformanceVersion, - denormBehaviorIndependence, - roundingModeIndependence, - shaderSignedZeroInfNanPreserveFloat16, - shaderSignedZeroInfNanPreserveFloat32, - shaderSignedZeroInfNanPreserveFloat64, - shaderDenormPreserveFloat16, - shaderDenormPreserveFloat32, - shaderDenormPreserveFloat64, - shaderDenormFlushToZeroFloat16, - shaderDenormFlushToZeroFloat32, - shaderDenormFlushToZeroFloat64, - shaderRoundingModeRTEFloat16, - shaderRoundingModeRTEFloat32, - shaderRoundingModeRTEFloat64, - shaderRoundingModeRTZFloat16, - shaderRoundingModeRTZFloat32, - shaderRoundingModeRTZFloat64, - maxUpdateAfterBindDescriptorsInAllPools, - shaderUniformBufferArrayNonUniformIndexingNative, - shaderSampledImageArrayNonUniformIndexingNative, - shaderStorageBufferArrayNonUniformIndexingNative, - shaderStorageImageArrayNonUniformIndexingNative, - shaderInputAttachmentArrayNonUniformIndexingNative, - robustBufferAccessUpdateAfterBind, - quadDivergentImplicitLod, - maxPerStageDescriptorUpdateAfterBindSamplers, - maxPerStageDescriptorUpdateAfterBindUniformBuffers, - maxPerStageDescriptorUpdateAfterBindStorageBuffers, - maxPerStageDescriptorUpdateAfterBindSampledImages, - maxPerStageDescriptorUpdateAfterBindStorageImages, - maxPerStageDescriptorUpdateAfterBindInputAttachments, - maxPerStageUpdateAfterBindResources, - maxDescriptorSetUpdateAfterBindSamplers, - maxDescriptorSetUpdateAfterBindUniformBuffers, - maxDescriptorSetUpdateAfterBindUniformBuffersDynamic, - maxDescriptorSetUpdateAfterBindStorageBuffers, - maxDescriptorSetUpdateAfterBindStorageBuffersDynamic, - maxDescriptorSetUpdateAfterBindSampledImages, - maxDescriptorSetUpdateAfterBindStorageImages, - maxDescriptorSetUpdateAfterBindInputAttachments, - supportedDepthResolveModes, - supportedStencilResolveModes, - independentResolveNone, - independentResolve, - filterMinmaxSingleComponentFormats, - filterMinmaxImageComponentMapping, - maxTimelineSemaphoreValueDifference, - framebufferIntegerColorSampleCounts ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkan12Properties const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkan12Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( driverID == rhs.driverID ) && - ( driverName == rhs.driverName ) && ( driverInfo == rhs.driverInfo ) && - ( conformanceVersion == rhs.conformanceVersion ) && - ( denormBehaviorIndependence == rhs.denormBehaviorIndependence ) && - ( roundingModeIndependence == rhs.roundingModeIndependence ) && - ( shaderSignedZeroInfNanPreserveFloat16 == rhs.shaderSignedZeroInfNanPreserveFloat16 ) && - ( shaderSignedZeroInfNanPreserveFloat32 == rhs.shaderSignedZeroInfNanPreserveFloat32 ) && - ( shaderSignedZeroInfNanPreserveFloat64 == rhs.shaderSignedZeroInfNanPreserveFloat64 ) && - ( shaderDenormPreserveFloat16 == rhs.shaderDenormPreserveFloat16 ) && - ( shaderDenormPreserveFloat32 == rhs.shaderDenormPreserveFloat32 ) && - ( shaderDenormPreserveFloat64 == rhs.shaderDenormPreserveFloat64 ) && - ( shaderDenormFlushToZeroFloat16 == rhs.shaderDenormFlushToZeroFloat16 ) && - ( shaderDenormFlushToZeroFloat32 == rhs.shaderDenormFlushToZeroFloat32 ) && - ( shaderDenormFlushToZeroFloat64 == rhs.shaderDenormFlushToZeroFloat64 ) && - ( shaderRoundingModeRTEFloat16 == rhs.shaderRoundingModeRTEFloat16 ) && - ( shaderRoundingModeRTEFloat32 == rhs.shaderRoundingModeRTEFloat32 ) && - ( shaderRoundingModeRTEFloat64 == rhs.shaderRoundingModeRTEFloat64 ) && - ( shaderRoundingModeRTZFloat16 == rhs.shaderRoundingModeRTZFloat16 ) && - ( shaderRoundingModeRTZFloat32 == rhs.shaderRoundingModeRTZFloat32 ) && - ( shaderRoundingModeRTZFloat64 == rhs.shaderRoundingModeRTZFloat64 ) && - ( maxUpdateAfterBindDescriptorsInAllPools == rhs.maxUpdateAfterBindDescriptorsInAllPools ) && - ( shaderUniformBufferArrayNonUniformIndexingNative == - rhs.shaderUniformBufferArrayNonUniformIndexingNative ) && - ( shaderSampledImageArrayNonUniformIndexingNative == - rhs.shaderSampledImageArrayNonUniformIndexingNative ) && - ( shaderStorageBufferArrayNonUniformIndexingNative == - rhs.shaderStorageBufferArrayNonUniformIndexingNative ) && - ( shaderStorageImageArrayNonUniformIndexingNative == - rhs.shaderStorageImageArrayNonUniformIndexingNative ) && - ( shaderInputAttachmentArrayNonUniformIndexingNative == - rhs.shaderInputAttachmentArrayNonUniformIndexingNative ) && - ( robustBufferAccessUpdateAfterBind == rhs.robustBufferAccessUpdateAfterBind ) && - ( quadDivergentImplicitLod == rhs.quadDivergentImplicitLod ) && - ( maxPerStageDescriptorUpdateAfterBindSamplers == rhs.maxPerStageDescriptorUpdateAfterBindSamplers ) && - ( maxPerStageDescriptorUpdateAfterBindUniformBuffers == - rhs.maxPerStageDescriptorUpdateAfterBindUniformBuffers ) && - ( maxPerStageDescriptorUpdateAfterBindStorageBuffers == - rhs.maxPerStageDescriptorUpdateAfterBindStorageBuffers ) && - ( maxPerStageDescriptorUpdateAfterBindSampledImages == - rhs.maxPerStageDescriptorUpdateAfterBindSampledImages ) && - ( maxPerStageDescriptorUpdateAfterBindStorageImages == - rhs.maxPerStageDescriptorUpdateAfterBindStorageImages ) && - ( maxPerStageDescriptorUpdateAfterBindInputAttachments == - rhs.maxPerStageDescriptorUpdateAfterBindInputAttachments ) && - ( maxPerStageUpdateAfterBindResources == rhs.maxPerStageUpdateAfterBindResources ) && - ( maxDescriptorSetUpdateAfterBindSamplers == rhs.maxDescriptorSetUpdateAfterBindSamplers ) && - ( maxDescriptorSetUpdateAfterBindUniformBuffers == rhs.maxDescriptorSetUpdateAfterBindUniformBuffers ) && - ( maxDescriptorSetUpdateAfterBindUniformBuffersDynamic == - rhs.maxDescriptorSetUpdateAfterBindUniformBuffersDynamic ) && - ( maxDescriptorSetUpdateAfterBindStorageBuffers == rhs.maxDescriptorSetUpdateAfterBindStorageBuffers ) && - ( maxDescriptorSetUpdateAfterBindStorageBuffersDynamic == - rhs.maxDescriptorSetUpdateAfterBindStorageBuffersDynamic ) && - ( maxDescriptorSetUpdateAfterBindSampledImages == rhs.maxDescriptorSetUpdateAfterBindSampledImages ) && - ( maxDescriptorSetUpdateAfterBindStorageImages == rhs.maxDescriptorSetUpdateAfterBindStorageImages ) && - ( maxDescriptorSetUpdateAfterBindInputAttachments == - rhs.maxDescriptorSetUpdateAfterBindInputAttachments ) && - ( supportedDepthResolveModes == rhs.supportedDepthResolveModes ) && - ( supportedStencilResolveModes == rhs.supportedStencilResolveModes ) && - ( independentResolveNone == rhs.independentResolveNone ) && - ( independentResolve == rhs.independentResolve ) && - ( filterMinmaxSingleComponentFormats == rhs.filterMinmaxSingleComponentFormats ) && - ( filterMinmaxImageComponentMapping == rhs.filterMinmaxImageComponentMapping ) && - ( maxTimelineSemaphoreValueDifference == rhs.maxTimelineSemaphoreValueDifference ) && - ( framebufferIntegerColorSampleCounts == rhs.framebufferIntegerColorSampleCounts ); -# endif - } - - bool operator!=( PhysicalDeviceVulkan12Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkan12Properties; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::DriverId driverID = VULKAN_HPP_NAMESPACE::DriverId::eAmdProprietary; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D driverName = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D driverInfo = {}; - VULKAN_HPP_NAMESPACE::ConformanceVersion conformanceVersion = {}; - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence denormBehaviorIndependence = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly; - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence roundingModeIndependence = - VULKAN_HPP_NAMESPACE::ShaderFloatControlsIndependence::e32BitOnly; - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSignedZeroInfNanPreserveFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormPreserveFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDenormFlushToZeroFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTEFloat64 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat16 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat32 = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderRoundingModeRTZFloat64 = {}; - uint32_t maxUpdateAfterBindDescriptorsInAllPools = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderUniformBufferArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderSampledImageArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageBufferArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderStorageImageArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderInputAttachmentArrayNonUniformIndexingNative = {}; - VULKAN_HPP_NAMESPACE::Bool32 robustBufferAccessUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 quadDivergentImplicitLod = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindSamplers = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments = {}; - uint32_t maxPerStageUpdateAfterBindResources = {}; - uint32_t maxDescriptorSetUpdateAfterBindSamplers = {}; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers = {}; - uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic = {}; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers = {}; - uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic = {}; - uint32_t maxDescriptorSetUpdateAfterBindSampledImages = {}; - uint32_t maxDescriptorSetUpdateAfterBindStorageImages = {}; - uint32_t maxDescriptorSetUpdateAfterBindInputAttachments = {}; - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedDepthResolveModes = {}; - VULKAN_HPP_NAMESPACE::ResolveModeFlags supportedStencilResolveModes = {}; - VULKAN_HPP_NAMESPACE::Bool32 independentResolveNone = {}; - VULKAN_HPP_NAMESPACE::Bool32 independentResolve = {}; - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxSingleComponentFormats = {}; - VULKAN_HPP_NAMESPACE::Bool32 filterMinmaxImageComponentMapping = {}; - uint64_t maxTimelineSemaphoreValueDifference = {}; - VULKAN_HPP_NAMESPACE::SampleCountFlags framebufferIntegerColorSampleCounts = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan12Properties ) == - sizeof( VkPhysicalDeviceVulkan12Properties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkan12Properties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkan12Properties; - }; - - struct PhysicalDeviceVulkan13Features - { - using NativeType = VkPhysicalDeviceVulkan13Features; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVulkan13Features; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVulkan13Features( - VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 inlineUniformBlock_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingInlineUniformBlockUpdateAfterBind_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 pipelineCreationCacheControl_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 privateData_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderDemoteToHelperInvocation_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderTerminateInvocation_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 subgroupSizeControl_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 computeFullSubgroups_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 synchronization2_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_HDR_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderZeroInitializeWorkgroupMemory_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 dynamicRendering_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerDotProduct_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 maintenance4_ = {} ) VULKAN_HPP_NOEXCEPT - : robustImageAccess( robustImageAccess_ ) - , inlineUniformBlock( inlineUniformBlock_ ) - , descriptorBindingInlineUniformBlockUpdateAfterBind( descriptorBindingInlineUniformBlockUpdateAfterBind_ ) - , pipelineCreationCacheControl( pipelineCreationCacheControl_ ) - , privateData( privateData_ ) - , shaderDemoteToHelperInvocation( shaderDemoteToHelperInvocation_ ) - , shaderTerminateInvocation( shaderTerminateInvocation_ ) - , subgroupSizeControl( subgroupSizeControl_ ) - , computeFullSubgroups( computeFullSubgroups_ ) - , synchronization2( synchronization2_ ) - , textureCompressionASTC_HDR( textureCompressionASTC_HDR_ ) - , shaderZeroInitializeWorkgroupMemory( shaderZeroInitializeWorkgroupMemory_ ) - , dynamicRendering( dynamicRendering_ ) - , shaderIntegerDotProduct( shaderIntegerDotProduct_ ) - , maintenance4( maintenance4_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVulkan13Features( PhysicalDeviceVulkan13Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan13Features( VkPhysicalDeviceVulkan13Features const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkan13Features( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkan13Features & - operator=( PhysicalDeviceVulkan13Features const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan13Features & operator=( VkPhysicalDeviceVulkan13Features const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setRobustImageAccess( VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess_ ) VULKAN_HPP_NOEXCEPT - { - robustImageAccess = robustImageAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setInlineUniformBlock( VULKAN_HPP_NAMESPACE::Bool32 inlineUniformBlock_ ) VULKAN_HPP_NOEXCEPT - { - inlineUniformBlock = inlineUniformBlock_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & setDescriptorBindingInlineUniformBlockUpdateAfterBind( - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingInlineUniformBlockUpdateAfterBind_ ) VULKAN_HPP_NOEXCEPT - { - descriptorBindingInlineUniformBlockUpdateAfterBind = descriptorBindingInlineUniformBlockUpdateAfterBind_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setPipelineCreationCacheControl( VULKAN_HPP_NAMESPACE::Bool32 pipelineCreationCacheControl_ ) VULKAN_HPP_NOEXCEPT - { - pipelineCreationCacheControl = pipelineCreationCacheControl_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setPrivateData( VULKAN_HPP_NAMESPACE::Bool32 privateData_ ) VULKAN_HPP_NOEXCEPT - { - privateData = privateData_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & setShaderDemoteToHelperInvocation( - VULKAN_HPP_NAMESPACE::Bool32 shaderDemoteToHelperInvocation_ ) VULKAN_HPP_NOEXCEPT - { - shaderDemoteToHelperInvocation = shaderDemoteToHelperInvocation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setShaderTerminateInvocation( VULKAN_HPP_NAMESPACE::Bool32 shaderTerminateInvocation_ ) VULKAN_HPP_NOEXCEPT - { - shaderTerminateInvocation = shaderTerminateInvocation_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setSubgroupSizeControl( VULKAN_HPP_NAMESPACE::Bool32 subgroupSizeControl_ ) VULKAN_HPP_NOEXCEPT - { - subgroupSizeControl = subgroupSizeControl_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setComputeFullSubgroups( VULKAN_HPP_NAMESPACE::Bool32 computeFullSubgroups_ ) VULKAN_HPP_NOEXCEPT - { - computeFullSubgroups = computeFullSubgroups_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setSynchronization2( VULKAN_HPP_NAMESPACE::Bool32 synchronization2_ ) VULKAN_HPP_NOEXCEPT - { - synchronization2 = synchronization2_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setTextureCompressionASTC_HDR( VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_HDR_ ) VULKAN_HPP_NOEXCEPT - { - textureCompressionASTC_HDR = textureCompressionASTC_HDR_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & setShaderZeroInitializeWorkgroupMemory( - VULKAN_HPP_NAMESPACE::Bool32 shaderZeroInitializeWorkgroupMemory_ ) VULKAN_HPP_NOEXCEPT - { - shaderZeroInitializeWorkgroupMemory = shaderZeroInitializeWorkgroupMemory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setDynamicRendering( VULKAN_HPP_NAMESPACE::Bool32 dynamicRendering_ ) VULKAN_HPP_NOEXCEPT - { - dynamicRendering = dynamicRendering_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setShaderIntegerDotProduct( VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerDotProduct_ ) VULKAN_HPP_NOEXCEPT - { - shaderIntegerDotProduct = shaderIntegerDotProduct_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkan13Features & - setMaintenance4( VULKAN_HPP_NAMESPACE::Bool32 maintenance4_ ) VULKAN_HPP_NOEXCEPT - { - maintenance4 = maintenance4_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVulkan13Features const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkan13Features &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - robustImageAccess, - inlineUniformBlock, - descriptorBindingInlineUniformBlockUpdateAfterBind, - pipelineCreationCacheControl, - privateData, - shaderDemoteToHelperInvocation, - shaderTerminateInvocation, - subgroupSizeControl, - computeFullSubgroups, - synchronization2, - textureCompressionASTC_HDR, - shaderZeroInitializeWorkgroupMemory, - dynamicRendering, - shaderIntegerDotProduct, - maintenance4 ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkan13Features const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkan13Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( robustImageAccess == rhs.robustImageAccess ) && - ( inlineUniformBlock == rhs.inlineUniformBlock ) && - ( descriptorBindingInlineUniformBlockUpdateAfterBind == - rhs.descriptorBindingInlineUniformBlockUpdateAfterBind ) && - ( pipelineCreationCacheControl == rhs.pipelineCreationCacheControl ) && - ( privateData == rhs.privateData ) && - ( shaderDemoteToHelperInvocation == rhs.shaderDemoteToHelperInvocation ) && - ( shaderTerminateInvocation == rhs.shaderTerminateInvocation ) && - ( subgroupSizeControl == rhs.subgroupSizeControl ) && - ( computeFullSubgroups == rhs.computeFullSubgroups ) && ( synchronization2 == rhs.synchronization2 ) && - ( textureCompressionASTC_HDR == rhs.textureCompressionASTC_HDR ) && - ( shaderZeroInitializeWorkgroupMemory == rhs.shaderZeroInitializeWorkgroupMemory ) && - ( dynamicRendering == rhs.dynamicRendering ) && - ( shaderIntegerDotProduct == rhs.shaderIntegerDotProduct ) && ( maintenance4 == rhs.maintenance4 ); -# endif - } - - bool operator!=( PhysicalDeviceVulkan13Features const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkan13Features; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 robustImageAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 inlineUniformBlock = {}; - VULKAN_HPP_NAMESPACE::Bool32 descriptorBindingInlineUniformBlockUpdateAfterBind = {}; - VULKAN_HPP_NAMESPACE::Bool32 pipelineCreationCacheControl = {}; - VULKAN_HPP_NAMESPACE::Bool32 privateData = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderDemoteToHelperInvocation = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderTerminateInvocation = {}; - VULKAN_HPP_NAMESPACE::Bool32 subgroupSizeControl = {}; - VULKAN_HPP_NAMESPACE::Bool32 computeFullSubgroups = {}; - VULKAN_HPP_NAMESPACE::Bool32 synchronization2 = {}; - VULKAN_HPP_NAMESPACE::Bool32 textureCompressionASTC_HDR = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderZeroInitializeWorkgroupMemory = {}; - VULKAN_HPP_NAMESPACE::Bool32 dynamicRendering = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderIntegerDotProduct = {}; - VULKAN_HPP_NAMESPACE::Bool32 maintenance4 = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan13Features ) == - sizeof( VkPhysicalDeviceVulkan13Features ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkan13Features is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkan13Features; - }; - - struct PhysicalDeviceVulkan13Properties - { - using NativeType = VkPhysicalDeviceVulkan13Properties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDeviceVulkan13Properties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVulkan13Properties( - uint32_t minSubgroupSize_ = {}, - uint32_t maxSubgroupSize_ = {}, - uint32_t maxComputeWorkgroupSubgroups_ = {}, - VULKAN_HPP_NAMESPACE::ShaderStageFlags requiredSubgroupSizeStages_ = {}, - uint32_t maxInlineUniformBlockSize_ = {}, - uint32_t maxPerStageDescriptorInlineUniformBlocks_ = {}, - uint32_t maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks_ = {}, - uint32_t maxDescriptorSetInlineUniformBlocks_ = {}, - uint32_t maxDescriptorSetUpdateAfterBindInlineUniformBlocks_ = {}, - uint32_t maxInlineUniformTotalSize_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize maxBufferSize_ = {} ) VULKAN_HPP_NOEXCEPT - : minSubgroupSize( minSubgroupSize_ ) - , maxSubgroupSize( maxSubgroupSize_ ) - , maxComputeWorkgroupSubgroups( maxComputeWorkgroupSubgroups_ ) - , requiredSubgroupSizeStages( requiredSubgroupSizeStages_ ) - , maxInlineUniformBlockSize( maxInlineUniformBlockSize_ ) - , maxPerStageDescriptorInlineUniformBlocks( maxPerStageDescriptorInlineUniformBlocks_ ) - , maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks( - maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks_ ) - , maxDescriptorSetInlineUniformBlocks( maxDescriptorSetInlineUniformBlocks_ ) - , maxDescriptorSetUpdateAfterBindInlineUniformBlocks( maxDescriptorSetUpdateAfterBindInlineUniformBlocks_ ) - , maxInlineUniformTotalSize( maxInlineUniformTotalSize_ ) - , integerDotProduct8BitUnsignedAccelerated( integerDotProduct8BitUnsignedAccelerated_ ) - , integerDotProduct8BitSignedAccelerated( integerDotProduct8BitSignedAccelerated_ ) - , integerDotProduct8BitMixedSignednessAccelerated( integerDotProduct8BitMixedSignednessAccelerated_ ) - , integerDotProduct4x8BitPackedUnsignedAccelerated( integerDotProduct4x8BitPackedUnsignedAccelerated_ ) - , integerDotProduct4x8BitPackedSignedAccelerated( integerDotProduct4x8BitPackedSignedAccelerated_ ) - , integerDotProduct4x8BitPackedMixedSignednessAccelerated( - integerDotProduct4x8BitPackedMixedSignednessAccelerated_ ) - , integerDotProduct16BitUnsignedAccelerated( integerDotProduct16BitUnsignedAccelerated_ ) - , integerDotProduct16BitSignedAccelerated( integerDotProduct16BitSignedAccelerated_ ) - , integerDotProduct16BitMixedSignednessAccelerated( integerDotProduct16BitMixedSignednessAccelerated_ ) - , integerDotProduct32BitUnsignedAccelerated( integerDotProduct32BitUnsignedAccelerated_ ) - , integerDotProduct32BitSignedAccelerated( integerDotProduct32BitSignedAccelerated_ ) - , integerDotProduct32BitMixedSignednessAccelerated( integerDotProduct32BitMixedSignednessAccelerated_ ) - , integerDotProduct64BitUnsignedAccelerated( integerDotProduct64BitUnsignedAccelerated_ ) - , integerDotProduct64BitSignedAccelerated( integerDotProduct64BitSignedAccelerated_ ) - , integerDotProduct64BitMixedSignednessAccelerated( integerDotProduct64BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating8BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating8BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating8BitSignedAccelerated( - integerDotProductAccumulatingSaturating8BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated( - integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated( - integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating16BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating16BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating16BitSignedAccelerated( - integerDotProductAccumulatingSaturating16BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating32BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating32BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating32BitSignedAccelerated( - integerDotProductAccumulatingSaturating32BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated_ ) - , integerDotProductAccumulatingSaturating64BitUnsignedAccelerated( - integerDotProductAccumulatingSaturating64BitUnsignedAccelerated_ ) - , integerDotProductAccumulatingSaturating64BitSignedAccelerated( - integerDotProductAccumulatingSaturating64BitSignedAccelerated_ ) - , integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated( - integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated_ ) - , storageTexelBufferOffsetAlignmentBytes( storageTexelBufferOffsetAlignmentBytes_ ) - , storageTexelBufferOffsetSingleTexelAlignment( storageTexelBufferOffsetSingleTexelAlignment_ ) - , uniformTexelBufferOffsetAlignmentBytes( uniformTexelBufferOffsetAlignmentBytes_ ) - , uniformTexelBufferOffsetSingleTexelAlignment( uniformTexelBufferOffsetSingleTexelAlignment_ ) - , maxBufferSize( maxBufferSize_ ) - {} - - VULKAN_HPP_CONSTEXPR - PhysicalDeviceVulkan13Properties( PhysicalDeviceVulkan13Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan13Properties( VkPhysicalDeviceVulkan13Properties const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkan13Properties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkan13Properties & - operator=( PhysicalDeviceVulkan13Properties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkan13Properties & operator=( VkPhysicalDeviceVulkan13Properties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPhysicalDeviceVulkan13Properties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkan13Properties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - minSubgroupSize, - maxSubgroupSize, - maxComputeWorkgroupSubgroups, - requiredSubgroupSizeStages, - maxInlineUniformBlockSize, - maxPerStageDescriptorInlineUniformBlocks, - maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks, - maxDescriptorSetInlineUniformBlocks, - maxDescriptorSetUpdateAfterBindInlineUniformBlocks, - maxInlineUniformTotalSize, - integerDotProduct8BitUnsignedAccelerated, - integerDotProduct8BitSignedAccelerated, - integerDotProduct8BitMixedSignednessAccelerated, - integerDotProduct4x8BitPackedUnsignedAccelerated, - integerDotProduct4x8BitPackedSignedAccelerated, - integerDotProduct4x8BitPackedMixedSignednessAccelerated, - integerDotProduct16BitUnsignedAccelerated, - integerDotProduct16BitSignedAccelerated, - integerDotProduct16BitMixedSignednessAccelerated, - integerDotProduct32BitUnsignedAccelerated, - integerDotProduct32BitSignedAccelerated, - integerDotProduct32BitMixedSignednessAccelerated, - integerDotProduct64BitUnsignedAccelerated, - integerDotProduct64BitSignedAccelerated, - integerDotProduct64BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating8BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating8BitSignedAccelerated, - integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated, - integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated, - integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating16BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating16BitSignedAccelerated, - integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating32BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating32BitSignedAccelerated, - integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated, - integerDotProductAccumulatingSaturating64BitUnsignedAccelerated, - integerDotProductAccumulatingSaturating64BitSignedAccelerated, - integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated, - storageTexelBufferOffsetAlignmentBytes, - storageTexelBufferOffsetSingleTexelAlignment, - uniformTexelBufferOffsetAlignmentBytes, - uniformTexelBufferOffsetSingleTexelAlignment, - maxBufferSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkan13Properties const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkan13Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( minSubgroupSize == rhs.minSubgroupSize ) && - ( maxSubgroupSize == rhs.maxSubgroupSize ) && - ( maxComputeWorkgroupSubgroups == rhs.maxComputeWorkgroupSubgroups ) && - ( requiredSubgroupSizeStages == rhs.requiredSubgroupSizeStages ) && - ( maxInlineUniformBlockSize == rhs.maxInlineUniformBlockSize ) && - ( maxPerStageDescriptorInlineUniformBlocks == rhs.maxPerStageDescriptorInlineUniformBlocks ) && - ( maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks == - rhs.maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks ) && - ( maxDescriptorSetInlineUniformBlocks == rhs.maxDescriptorSetInlineUniformBlocks ) && - ( maxDescriptorSetUpdateAfterBindInlineUniformBlocks == - rhs.maxDescriptorSetUpdateAfterBindInlineUniformBlocks ) && - ( maxInlineUniformTotalSize == rhs.maxInlineUniformTotalSize ) && - ( integerDotProduct8BitUnsignedAccelerated == rhs.integerDotProduct8BitUnsignedAccelerated ) && - ( integerDotProduct8BitSignedAccelerated == rhs.integerDotProduct8BitSignedAccelerated ) && - ( integerDotProduct8BitMixedSignednessAccelerated == - rhs.integerDotProduct8BitMixedSignednessAccelerated ) && - ( integerDotProduct4x8BitPackedUnsignedAccelerated == - rhs.integerDotProduct4x8BitPackedUnsignedAccelerated ) && - ( integerDotProduct4x8BitPackedSignedAccelerated == rhs.integerDotProduct4x8BitPackedSignedAccelerated ) && - ( integerDotProduct4x8BitPackedMixedSignednessAccelerated == - rhs.integerDotProduct4x8BitPackedMixedSignednessAccelerated ) && - ( integerDotProduct16BitUnsignedAccelerated == rhs.integerDotProduct16BitUnsignedAccelerated ) && - ( integerDotProduct16BitSignedAccelerated == rhs.integerDotProduct16BitSignedAccelerated ) && - ( integerDotProduct16BitMixedSignednessAccelerated == - rhs.integerDotProduct16BitMixedSignednessAccelerated ) && - ( integerDotProduct32BitUnsignedAccelerated == rhs.integerDotProduct32BitUnsignedAccelerated ) && - ( integerDotProduct32BitSignedAccelerated == rhs.integerDotProduct32BitSignedAccelerated ) && - ( integerDotProduct32BitMixedSignednessAccelerated == - rhs.integerDotProduct32BitMixedSignednessAccelerated ) && - ( integerDotProduct64BitUnsignedAccelerated == rhs.integerDotProduct64BitUnsignedAccelerated ) && - ( integerDotProduct64BitSignedAccelerated == rhs.integerDotProduct64BitSignedAccelerated ) && - ( integerDotProduct64BitMixedSignednessAccelerated == - rhs.integerDotProduct64BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating8BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating8BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating8BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating8BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating16BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating16BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating16BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating16BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating32BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating32BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating32BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating32BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated ) && - ( integerDotProductAccumulatingSaturating64BitUnsignedAccelerated == - rhs.integerDotProductAccumulatingSaturating64BitUnsignedAccelerated ) && - ( integerDotProductAccumulatingSaturating64BitSignedAccelerated == - rhs.integerDotProductAccumulatingSaturating64BitSignedAccelerated ) && - ( integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated == - rhs.integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated ) && - ( storageTexelBufferOffsetAlignmentBytes == rhs.storageTexelBufferOffsetAlignmentBytes ) && - ( storageTexelBufferOffsetSingleTexelAlignment == rhs.storageTexelBufferOffsetSingleTexelAlignment ) && - ( uniformTexelBufferOffsetAlignmentBytes == rhs.uniformTexelBufferOffsetAlignmentBytes ) && - ( uniformTexelBufferOffsetSingleTexelAlignment == rhs.uniformTexelBufferOffsetSingleTexelAlignment ) && - ( maxBufferSize == rhs.maxBufferSize ); -# endif - } - - bool operator!=( PhysicalDeviceVulkan13Properties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkan13Properties; - void * pNext = {}; - uint32_t minSubgroupSize = {}; - uint32_t maxSubgroupSize = {}; - uint32_t maxComputeWorkgroupSubgroups = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags requiredSubgroupSizeStages = {}; - uint32_t maxInlineUniformBlockSize = {}; - uint32_t maxPerStageDescriptorInlineUniformBlocks = {}; - uint32_t maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks = {}; - uint32_t maxDescriptorSetInlineUniformBlocks = {}; - uint32_t maxDescriptorSetUpdateAfterBindInlineUniformBlocks = {}; - uint32_t maxInlineUniformTotalSize = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct8BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct4x8BitPackedMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct16BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct32BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProduct64BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating8BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating4x8BitPackedMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating16BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating32BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitUnsignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitSignedAccelerated = {}; - VULKAN_HPP_NAMESPACE::Bool32 integerDotProductAccumulatingSaturating64BitMixedSignednessAccelerated = {}; - VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes = {}; - VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes = {}; - VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize maxBufferSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkan13Properties ) == - sizeof( VkPhysicalDeviceVulkan13Properties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkan13Properties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkan13Properties; - }; - - struct PhysicalDeviceVulkanMemoryModelFeatures - { - using NativeType = VkPhysicalDeviceVulkanMemoryModelFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceVulkanMemoryModelFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceVulkanMemoryModelFeatures( - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModel_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelDeviceScope_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelAvailabilityVisibilityChains_ = {} ) VULKAN_HPP_NOEXCEPT - : vulkanMemoryModel( vulkanMemoryModel_ ) - , vulkanMemoryModelDeviceScope( vulkanMemoryModelDeviceScope_ ) - , vulkanMemoryModelAvailabilityVisibilityChains( vulkanMemoryModelAvailabilityVisibilityChains_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceVulkanMemoryModelFeatures( PhysicalDeviceVulkanMemoryModelFeatures const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkanMemoryModelFeatures( VkPhysicalDeviceVulkanMemoryModelFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceVulkanMemoryModelFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceVulkanMemoryModelFeatures & - operator=( PhysicalDeviceVulkanMemoryModelFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceVulkanMemoryModelFeatures & - operator=( VkPhysicalDeviceVulkanMemoryModelFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkanMemoryModelFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkanMemoryModelFeatures & - setVulkanMemoryModel( VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModel_ ) VULKAN_HPP_NOEXCEPT - { - vulkanMemoryModel = vulkanMemoryModel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkanMemoryModelFeatures & - setVulkanMemoryModelDeviceScope( VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelDeviceScope_ ) VULKAN_HPP_NOEXCEPT - { - vulkanMemoryModelDeviceScope = vulkanMemoryModelDeviceScope_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceVulkanMemoryModelFeatures & setVulkanMemoryModelAvailabilityVisibilityChains( - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelAvailabilityVisibilityChains_ ) VULKAN_HPP_NOEXCEPT - { - vulkanMemoryModelAvailabilityVisibilityChains = vulkanMemoryModelAvailabilityVisibilityChains_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceVulkanMemoryModelFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceVulkanMemoryModelFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, vulkanMemoryModel, vulkanMemoryModelDeviceScope, vulkanMemoryModelAvailabilityVisibilityChains ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceVulkanMemoryModelFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceVulkanMemoryModelFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( vulkanMemoryModel == rhs.vulkanMemoryModel ) && - ( vulkanMemoryModelDeviceScope == rhs.vulkanMemoryModelDeviceScope ) && - ( vulkanMemoryModelAvailabilityVisibilityChains == rhs.vulkanMemoryModelAvailabilityVisibilityChains ); -# endif - } - - bool operator!=( PhysicalDeviceVulkanMemoryModelFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceVulkanMemoryModelFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModel = {}; - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelDeviceScope = {}; - VULKAN_HPP_NAMESPACE::Bool32 vulkanMemoryModelAvailabilityVisibilityChains = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceVulkanMemoryModelFeatures ) == - sizeof( VkPhysicalDeviceVulkanMemoryModelFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceVulkanMemoryModelFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceVulkanMemoryModelFeatures; - }; - using PhysicalDeviceVulkanMemoryModelFeaturesKHR = PhysicalDeviceVulkanMemoryModelFeatures; - - struct PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR - { - using NativeType = VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR( - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayoutScalarBlockLayout_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout8BitAccess_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout16BitAccess_ = {} ) VULKAN_HPP_NOEXCEPT - : workgroupMemoryExplicitLayout( workgroupMemoryExplicitLayout_ ) - , workgroupMemoryExplicitLayoutScalarBlockLayout( workgroupMemoryExplicitLayoutScalarBlockLayout_ ) - , workgroupMemoryExplicitLayout8BitAccess( workgroupMemoryExplicitLayout8BitAccess_ ) - , workgroupMemoryExplicitLayout16BitAccess( workgroupMemoryExplicitLayout16BitAccess_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR( - PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR( - VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & - operator=( PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & - operator=( VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & setWorkgroupMemoryExplicitLayout( - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout_ ) VULKAN_HPP_NOEXCEPT - { - workgroupMemoryExplicitLayout = workgroupMemoryExplicitLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & - setWorkgroupMemoryExplicitLayoutScalarBlockLayout( - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayoutScalarBlockLayout_ ) VULKAN_HPP_NOEXCEPT - { - workgroupMemoryExplicitLayoutScalarBlockLayout = workgroupMemoryExplicitLayoutScalarBlockLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & - setWorkgroupMemoryExplicitLayout8BitAccess( - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout8BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - workgroupMemoryExplicitLayout8BitAccess = workgroupMemoryExplicitLayout8BitAccess_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR & - setWorkgroupMemoryExplicitLayout16BitAccess( - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout16BitAccess_ ) VULKAN_HPP_NOEXCEPT - { - workgroupMemoryExplicitLayout16BitAccess = workgroupMemoryExplicitLayout16BitAccess_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - workgroupMemoryExplicitLayout, - workgroupMemoryExplicitLayoutScalarBlockLayout, - workgroupMemoryExplicitLayout8BitAccess, - workgroupMemoryExplicitLayout16BitAccess ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & ) const = default; -#else - bool operator==( PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( workgroupMemoryExplicitLayout == rhs.workgroupMemoryExplicitLayout ) && - ( workgroupMemoryExplicitLayoutScalarBlockLayout == rhs.workgroupMemoryExplicitLayoutScalarBlockLayout ) && - ( workgroupMemoryExplicitLayout8BitAccess == rhs.workgroupMemoryExplicitLayout8BitAccess ) && - ( workgroupMemoryExplicitLayout16BitAccess == rhs.workgroupMemoryExplicitLayout16BitAccess ); -# endif - } - - bool operator!=( PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout = {}; - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayoutScalarBlockLayout = {}; - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout8BitAccess = {}; - VULKAN_HPP_NAMESPACE::Bool32 workgroupMemoryExplicitLayout16BitAccess = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR ) == - sizeof( VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR>::value, - "PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR; - }; - - struct PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT - { - using NativeType = VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 ycbcr2plane444Formats_ = {} ) VULKAN_HPP_NOEXCEPT - : ycbcr2plane444Formats( ycbcr2plane444Formats_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT( - PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT( VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT & - operator=( PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT & - operator=( VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT & - setYcbcr2plane444Formats( VULKAN_HPP_NAMESPACE::Bool32 ycbcr2plane444Formats_ ) VULKAN_HPP_NOEXCEPT - { - ycbcr2plane444Formats = ycbcr2plane444Formats_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, ycbcr2plane444Formats ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( ycbcr2plane444Formats == rhs.ycbcr2plane444Formats ); -# endif - } - - bool operator!=( PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 ycbcr2plane444Formats = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT ) == - sizeof( VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT; - }; - - struct PhysicalDeviceYcbcrImageArraysFeaturesEXT - { - using NativeType = VkPhysicalDeviceYcbcrImageArraysFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceYcbcrImageArraysFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceYcbcrImageArraysFeaturesEXT( - VULKAN_HPP_NAMESPACE::Bool32 ycbcrImageArrays_ = {} ) VULKAN_HPP_NOEXCEPT : ycbcrImageArrays( ycbcrImageArrays_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceYcbcrImageArraysFeaturesEXT( - PhysicalDeviceYcbcrImageArraysFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceYcbcrImageArraysFeaturesEXT( VkPhysicalDeviceYcbcrImageArraysFeaturesEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PhysicalDeviceYcbcrImageArraysFeaturesEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceYcbcrImageArraysFeaturesEXT & - operator=( PhysicalDeviceYcbcrImageArraysFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceYcbcrImageArraysFeaturesEXT & - operator=( VkPhysicalDeviceYcbcrImageArraysFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceYcbcrImageArraysFeaturesEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceYcbcrImageArraysFeaturesEXT & - setYcbcrImageArrays( VULKAN_HPP_NAMESPACE::Bool32 ycbcrImageArrays_ ) VULKAN_HPP_NOEXCEPT - { - ycbcrImageArrays = ycbcrImageArrays_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceYcbcrImageArraysFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceYcbcrImageArraysFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, ycbcrImageArrays ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceYcbcrImageArraysFeaturesEXT const & ) const = default; -#else - bool operator==( PhysicalDeviceYcbcrImageArraysFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( ycbcrImageArrays == rhs.ycbcrImageArrays ); -# endif - } - - bool operator!=( PhysicalDeviceYcbcrImageArraysFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceYcbcrImageArraysFeaturesEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 ycbcrImageArrays = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceYcbcrImageArraysFeaturesEXT ) == - sizeof( VkPhysicalDeviceYcbcrImageArraysFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PhysicalDeviceYcbcrImageArraysFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceYcbcrImageArraysFeaturesEXT; - }; - - struct PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures - { - using NativeType = VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures( - VULKAN_HPP_NAMESPACE::Bool32 shaderZeroInitializeWorkgroupMemory_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderZeroInitializeWorkgroupMemory( shaderZeroInitializeWorkgroupMemory_ ) - {} - - VULKAN_HPP_CONSTEXPR PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures( - PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures( - VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - : PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures & - operator=( PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures & - operator=( VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures & - setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures & - setShaderZeroInitializeWorkgroupMemory( VULKAN_HPP_NAMESPACE::Bool32 shaderZeroInitializeWorkgroupMemory_ ) - VULKAN_HPP_NOEXCEPT - { - shaderZeroInitializeWorkgroupMemory = shaderZeroInitializeWorkgroupMemory_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shaderZeroInitializeWorkgroupMemory ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & ) const = default; -#else - bool operator==( PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shaderZeroInitializeWorkgroupMemory == rhs.shaderZeroInitializeWorkgroupMemory ); -# endif - } - - bool operator!=( PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shaderZeroInitializeWorkgroupMemory = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures ) == - sizeof( VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures>::value, - "PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - }; - using PhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesKHR = PhysicalDeviceZeroInitializeWorkgroupMemoryFeatures; - - struct PipelineCacheCreateInfo - { - using NativeType = VkPipelineCacheCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineCacheCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCacheCreateInfo( VULKAN_HPP_NAMESPACE::PipelineCacheCreateFlags flags_ = {}, - size_t initialDataSize_ = {}, - const void * pInitialData_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , initialDataSize( initialDataSize_ ) - , pInitialData( pInitialData_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCacheCreateInfo( PipelineCacheCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCacheCreateInfo( VkPipelineCacheCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineCacheCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - PipelineCacheCreateInfo( VULKAN_HPP_NAMESPACE::PipelineCacheCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & initialData_ ) - : flags( flags_ ), initialDataSize( initialData_.size() * sizeof( T ) ), pInitialData( initialData_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCacheCreateInfo & operator=( PipelineCacheCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCacheCreateInfo & operator=( VkPipelineCacheCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCacheCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCacheCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheCreateInfo & setInitialDataSize( size_t initialDataSize_ ) VULKAN_HPP_NOEXCEPT - { - initialDataSize = initialDataSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheCreateInfo & setPInitialData( const void * pInitialData_ ) VULKAN_HPP_NOEXCEPT - { - pInitialData = pInitialData_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - PipelineCacheCreateInfo & - setInitialData( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & initialData_ ) VULKAN_HPP_NOEXCEPT - { - initialDataSize = initialData_.size() * sizeof( T ); - pInitialData = initialData_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCacheCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCacheCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, initialDataSize, pInitialData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCacheCreateInfo const & ) const = default; -#else - bool operator==( PipelineCacheCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( initialDataSize == rhs.initialDataSize ) && ( pInitialData == rhs.pInitialData ); -# endif - } - - bool operator!=( PipelineCacheCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineCacheCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCacheCreateFlags flags = {}; - size_t initialDataSize = {}; - const void * pInitialData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCacheCreateInfo ) == - sizeof( VkPipelineCacheCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineCacheCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineCacheCreateInfo; - }; - - struct PipelineCacheHeaderVersionOne - { - using NativeType = VkPipelineCacheHeaderVersionOne; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCacheHeaderVersionOne( - uint32_t headerSize_ = {}, - VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersion headerVersion_ = - VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersion::eOne, - uint32_t vendorID_ = {}, - uint32_t deviceID_ = {}, - std::array const & pipelineCacheUUID_ = {} ) VULKAN_HPP_NOEXCEPT - : headerSize( headerSize_ ) - , headerVersion( headerVersion_ ) - , vendorID( vendorID_ ) - , deviceID( deviceID_ ) - , pipelineCacheUUID( pipelineCacheUUID_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PipelineCacheHeaderVersionOne( PipelineCacheHeaderVersionOne const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCacheHeaderVersionOne( VkPipelineCacheHeaderVersionOne const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineCacheHeaderVersionOne( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCacheHeaderVersionOne & - operator=( PipelineCacheHeaderVersionOne const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCacheHeaderVersionOne & operator=( VkPipelineCacheHeaderVersionOne const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCacheHeaderVersionOne & setHeaderSize( uint32_t headerSize_ ) VULKAN_HPP_NOEXCEPT - { - headerSize = headerSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheHeaderVersionOne & - setHeaderVersion( VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersion headerVersion_ ) VULKAN_HPP_NOEXCEPT - { - headerVersion = headerVersion_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheHeaderVersionOne & setVendorID( uint32_t vendorID_ ) VULKAN_HPP_NOEXCEPT - { - vendorID = vendorID_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheHeaderVersionOne & setDeviceID( uint32_t deviceID_ ) VULKAN_HPP_NOEXCEPT - { - deviceID = deviceID_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCacheHeaderVersionOne & - setPipelineCacheUUID( std::array pipelineCacheUUID_ ) VULKAN_HPP_NOEXCEPT - { - pipelineCacheUUID = pipelineCacheUUID_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCacheHeaderVersionOne const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCacheHeaderVersionOne &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( headerSize, headerVersion, vendorID, deviceID, pipelineCacheUUID ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCacheHeaderVersionOne const & ) const = default; -#else - bool operator==( PipelineCacheHeaderVersionOne const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( headerSize == rhs.headerSize ) && ( headerVersion == rhs.headerVersion ) && - ( vendorID == rhs.vendorID ) && ( deviceID == rhs.deviceID ) && - ( pipelineCacheUUID == rhs.pipelineCacheUUID ); -# endif - } - - bool operator!=( PipelineCacheHeaderVersionOne const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t headerSize = {}; - VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersion headerVersion = - VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersion::eOne; - uint32_t vendorID = {}; - uint32_t deviceID = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D pipelineCacheUUID = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCacheHeaderVersionOne ) == - sizeof( VkPipelineCacheHeaderVersionOne ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineCacheHeaderVersionOne is not nothrow_move_constructible!" ); - - struct PipelineColorBlendAdvancedStateCreateInfoEXT - { - using NativeType = VkPipelineColorBlendAdvancedStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineColorBlendAdvancedStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineColorBlendAdvancedStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::Bool32 srcPremultiplied_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 dstPremultiplied_ = {}, - VULKAN_HPP_NAMESPACE::BlendOverlapEXT blendOverlap_ = VULKAN_HPP_NAMESPACE::BlendOverlapEXT::eUncorrelated ) - VULKAN_HPP_NOEXCEPT - : srcPremultiplied( srcPremultiplied_ ) - , dstPremultiplied( dstPremultiplied_ ) - , blendOverlap( blendOverlap_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineColorBlendAdvancedStateCreateInfoEXT( - PipelineColorBlendAdvancedStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorBlendAdvancedStateCreateInfoEXT( VkPipelineColorBlendAdvancedStateCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineColorBlendAdvancedStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineColorBlendAdvancedStateCreateInfoEXT & - operator=( PipelineColorBlendAdvancedStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorBlendAdvancedStateCreateInfoEXT & - operator=( VkPipelineColorBlendAdvancedStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAdvancedStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAdvancedStateCreateInfoEXT & - setSrcPremultiplied( VULKAN_HPP_NAMESPACE::Bool32 srcPremultiplied_ ) VULKAN_HPP_NOEXCEPT - { - srcPremultiplied = srcPremultiplied_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAdvancedStateCreateInfoEXT & - setDstPremultiplied( VULKAN_HPP_NAMESPACE::Bool32 dstPremultiplied_ ) VULKAN_HPP_NOEXCEPT - { - dstPremultiplied = dstPremultiplied_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorBlendAdvancedStateCreateInfoEXT & - setBlendOverlap( VULKAN_HPP_NAMESPACE::BlendOverlapEXT blendOverlap_ ) VULKAN_HPP_NOEXCEPT - { - blendOverlap = blendOverlap_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineColorBlendAdvancedStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineColorBlendAdvancedStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcPremultiplied, dstPremultiplied, blendOverlap ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineColorBlendAdvancedStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineColorBlendAdvancedStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcPremultiplied == rhs.srcPremultiplied ) && - ( dstPremultiplied == rhs.dstPremultiplied ) && ( blendOverlap == rhs.blendOverlap ); -# endif - } - - bool operator!=( PipelineColorBlendAdvancedStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineColorBlendAdvancedStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 srcPremultiplied = {}; - VULKAN_HPP_NAMESPACE::Bool32 dstPremultiplied = {}; - VULKAN_HPP_NAMESPACE::BlendOverlapEXT blendOverlap = VULKAN_HPP_NAMESPACE::BlendOverlapEXT::eUncorrelated; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineColorBlendAdvancedStateCreateInfoEXT ) == - sizeof( VkPipelineColorBlendAdvancedStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineColorBlendAdvancedStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineColorBlendAdvancedStateCreateInfoEXT; - }; - - struct PipelineColorWriteCreateInfoEXT - { - using NativeType = VkPipelineColorWriteCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineColorWriteCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineColorWriteCreateInfoEXT( - uint32_t attachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::Bool32 * pColorWriteEnables_ = {} ) VULKAN_HPP_NOEXCEPT - : attachmentCount( attachmentCount_ ) - , pColorWriteEnables( pColorWriteEnables_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineColorWriteCreateInfoEXT( PipelineColorWriteCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorWriteCreateInfoEXT( VkPipelineColorWriteCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineColorWriteCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineColorWriteCreateInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & colorWriteEnables_ ) - : attachmentCount( static_cast( colorWriteEnables_.size() ) ) - , pColorWriteEnables( colorWriteEnables_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineColorWriteCreateInfoEXT & - operator=( PipelineColorWriteCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineColorWriteCreateInfoEXT & operator=( VkPipelineColorWriteCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineColorWriteCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorWriteCreateInfoEXT & - setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = attachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineColorWriteCreateInfoEXT & - setPColorWriteEnables( const VULKAN_HPP_NAMESPACE::Bool32 * pColorWriteEnables_ ) VULKAN_HPP_NOEXCEPT - { - pColorWriteEnables = pColorWriteEnables_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineColorWriteCreateInfoEXT & setColorWriteEnables( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & colorWriteEnables_ ) - VULKAN_HPP_NOEXCEPT - { - attachmentCount = static_cast( colorWriteEnables_.size() ); - pColorWriteEnables = colorWriteEnables_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineColorWriteCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineColorWriteCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, attachmentCount, pColorWriteEnables ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineColorWriteCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineColorWriteCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( attachmentCount == rhs.attachmentCount ) && - ( pColorWriteEnables == rhs.pColorWriteEnables ); -# endif - } - - bool operator!=( PipelineColorWriteCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineColorWriteCreateInfoEXT; - const void * pNext = {}; - uint32_t attachmentCount = {}; - const VULKAN_HPP_NAMESPACE::Bool32 * pColorWriteEnables = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineColorWriteCreateInfoEXT ) == - sizeof( VkPipelineColorWriteCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineColorWriteCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineColorWriteCreateInfoEXT; - }; - - struct PipelineCompilerControlCreateInfoAMD - { - using NativeType = VkPipelineCompilerControlCreateInfoAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineCompilerControlCreateInfoAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCompilerControlCreateInfoAMD( - VULKAN_HPP_NAMESPACE::PipelineCompilerControlFlagsAMD compilerControlFlags_ = {} ) VULKAN_HPP_NOEXCEPT - : compilerControlFlags( compilerControlFlags_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCompilerControlCreateInfoAMD( PipelineCompilerControlCreateInfoAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineCompilerControlCreateInfoAMD( VkPipelineCompilerControlCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineCompilerControlCreateInfoAMD( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCompilerControlCreateInfoAMD & - operator=( PipelineCompilerControlCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCompilerControlCreateInfoAMD & - operator=( VkPipelineCompilerControlCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCompilerControlCreateInfoAMD & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCompilerControlCreateInfoAMD & setCompilerControlFlags( - VULKAN_HPP_NAMESPACE::PipelineCompilerControlFlagsAMD compilerControlFlags_ ) VULKAN_HPP_NOEXCEPT - { - compilerControlFlags = compilerControlFlags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCompilerControlCreateInfoAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCompilerControlCreateInfoAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, compilerControlFlags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCompilerControlCreateInfoAMD const & ) const = default; -#else - bool operator==( PipelineCompilerControlCreateInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( compilerControlFlags == rhs.compilerControlFlags ); -# endif - } - - bool operator!=( PipelineCompilerControlCreateInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineCompilerControlCreateInfoAMD; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCompilerControlFlagsAMD compilerControlFlags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCompilerControlCreateInfoAMD ) == - sizeof( VkPipelineCompilerControlCreateInfoAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineCompilerControlCreateInfoAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineCompilerControlCreateInfoAMD; - }; - - struct PipelineCoverageModulationStateCreateInfoNV - { - using NativeType = VkPipelineCoverageModulationStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineCoverageModulationStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCoverageModulationStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineCoverageModulationStateCreateFlagsNV flags_ = {}, - VULKAN_HPP_NAMESPACE::CoverageModulationModeNV coverageModulationMode_ = - VULKAN_HPP_NAMESPACE::CoverageModulationModeNV::eNone, - VULKAN_HPP_NAMESPACE::Bool32 coverageModulationTableEnable_ = {}, - uint32_t coverageModulationTableCount_ = {}, - const float * pCoverageModulationTable_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , coverageModulationMode( coverageModulationMode_ ) - , coverageModulationTableEnable( coverageModulationTableEnable_ ) - , coverageModulationTableCount( coverageModulationTableCount_ ) - , pCoverageModulationTable( pCoverageModulationTable_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCoverageModulationStateCreateInfoNV( - PipelineCoverageModulationStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCoverageModulationStateCreateInfoNV( VkPipelineCoverageModulationStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineCoverageModulationStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineCoverageModulationStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineCoverageModulationStateCreateFlagsNV flags_, - VULKAN_HPP_NAMESPACE::CoverageModulationModeNV coverageModulationMode_, - VULKAN_HPP_NAMESPACE::Bool32 coverageModulationTableEnable_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & coverageModulationTable_ ) - : flags( flags_ ) - , coverageModulationMode( coverageModulationMode_ ) - , coverageModulationTableEnable( coverageModulationTableEnable_ ) - , coverageModulationTableCount( static_cast( coverageModulationTable_.size() ) ) - , pCoverageModulationTable( coverageModulationTable_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCoverageModulationStateCreateInfoNV & - operator=( PipelineCoverageModulationStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCoverageModulationStateCreateInfoNV & - operator=( VkPipelineCoverageModulationStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageModulationStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageModulationStateCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCoverageModulationStateCreateFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageModulationStateCreateInfoNV & setCoverageModulationMode( - VULKAN_HPP_NAMESPACE::CoverageModulationModeNV coverageModulationMode_ ) VULKAN_HPP_NOEXCEPT - { - coverageModulationMode = coverageModulationMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageModulationStateCreateInfoNV & setCoverageModulationTableEnable( - VULKAN_HPP_NAMESPACE::Bool32 coverageModulationTableEnable_ ) VULKAN_HPP_NOEXCEPT - { - coverageModulationTableEnable = coverageModulationTableEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageModulationStateCreateInfoNV & - setCoverageModulationTableCount( uint32_t coverageModulationTableCount_ ) VULKAN_HPP_NOEXCEPT - { - coverageModulationTableCount = coverageModulationTableCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageModulationStateCreateInfoNV & - setPCoverageModulationTable( const float * pCoverageModulationTable_ ) VULKAN_HPP_NOEXCEPT - { - pCoverageModulationTable = pCoverageModulationTable_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineCoverageModulationStateCreateInfoNV & setCoverageModulationTable( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & coverageModulationTable_ ) VULKAN_HPP_NOEXCEPT - { - coverageModulationTableCount = static_cast( coverageModulationTable_.size() ); - pCoverageModulationTable = coverageModulationTable_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCoverageModulationStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCoverageModulationStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - coverageModulationMode, - coverageModulationTableEnable, - coverageModulationTableCount, - pCoverageModulationTable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCoverageModulationStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineCoverageModulationStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( coverageModulationMode == rhs.coverageModulationMode ) && - ( coverageModulationTableEnable == rhs.coverageModulationTableEnable ) && - ( coverageModulationTableCount == rhs.coverageModulationTableCount ) && - ( pCoverageModulationTable == rhs.pCoverageModulationTable ); -# endif - } - - bool operator!=( PipelineCoverageModulationStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineCoverageModulationStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCoverageModulationStateCreateFlagsNV flags = {}; - VULKAN_HPP_NAMESPACE::CoverageModulationModeNV coverageModulationMode = - VULKAN_HPP_NAMESPACE::CoverageModulationModeNV::eNone; - VULKAN_HPP_NAMESPACE::Bool32 coverageModulationTableEnable = {}; - uint32_t coverageModulationTableCount = {}; - const float * pCoverageModulationTable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCoverageModulationStateCreateInfoNV ) == - sizeof( VkPipelineCoverageModulationStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineCoverageModulationStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineCoverageModulationStateCreateInfoNV; - }; - - struct PipelineCoverageReductionStateCreateInfoNV - { - using NativeType = VkPipelineCoverageReductionStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineCoverageReductionStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCoverageReductionStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineCoverageReductionStateCreateFlagsNV flags_ = {}, - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode_ = - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV::eMerge ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , coverageReductionMode( coverageReductionMode_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCoverageReductionStateCreateInfoNV( - PipelineCoverageReductionStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCoverageReductionStateCreateInfoNV( VkPipelineCoverageReductionStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineCoverageReductionStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCoverageReductionStateCreateInfoNV & - operator=( PipelineCoverageReductionStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCoverageReductionStateCreateInfoNV & - operator=( VkPipelineCoverageReductionStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageReductionStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageReductionStateCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCoverageReductionStateCreateFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageReductionStateCreateInfoNV & setCoverageReductionMode( - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode_ ) VULKAN_HPP_NOEXCEPT - { - coverageReductionMode = coverageReductionMode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCoverageReductionStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCoverageReductionStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, coverageReductionMode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCoverageReductionStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineCoverageReductionStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( coverageReductionMode == rhs.coverageReductionMode ); -# endif - } - - bool operator!=( PipelineCoverageReductionStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineCoverageReductionStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCoverageReductionStateCreateFlagsNV flags = {}; - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode = - VULKAN_HPP_NAMESPACE::CoverageReductionModeNV::eMerge; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCoverageReductionStateCreateInfoNV ) == - sizeof( VkPipelineCoverageReductionStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineCoverageReductionStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineCoverageReductionStateCreateInfoNV; - }; - - struct PipelineCoverageToColorStateCreateInfoNV - { - using NativeType = VkPipelineCoverageToColorStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineCoverageToColorStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCoverageToColorStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineCoverageToColorStateCreateFlagsNV flags_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 coverageToColorEnable_ = {}, - uint32_t coverageToColorLocation_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , coverageToColorEnable( coverageToColorEnable_ ) - , coverageToColorLocation( coverageToColorLocation_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCoverageToColorStateCreateInfoNV( - PipelineCoverageToColorStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCoverageToColorStateCreateInfoNV( VkPipelineCoverageToColorStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineCoverageToColorStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCoverageToColorStateCreateInfoNV & - operator=( PipelineCoverageToColorStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCoverageToColorStateCreateInfoNV & - operator=( VkPipelineCoverageToColorStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageToColorStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageToColorStateCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCoverageToColorStateCreateFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageToColorStateCreateInfoNV & - setCoverageToColorEnable( VULKAN_HPP_NAMESPACE::Bool32 coverageToColorEnable_ ) VULKAN_HPP_NOEXCEPT - { - coverageToColorEnable = coverageToColorEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCoverageToColorStateCreateInfoNV & - setCoverageToColorLocation( uint32_t coverageToColorLocation_ ) VULKAN_HPP_NOEXCEPT - { - coverageToColorLocation = coverageToColorLocation_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCoverageToColorStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCoverageToColorStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, coverageToColorEnable, coverageToColorLocation ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCoverageToColorStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineCoverageToColorStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( coverageToColorEnable == rhs.coverageToColorEnable ) && - ( coverageToColorLocation == rhs.coverageToColorLocation ); -# endif - } - - bool operator!=( PipelineCoverageToColorStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineCoverageToColorStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCoverageToColorStateCreateFlagsNV flags = {}; - VULKAN_HPP_NAMESPACE::Bool32 coverageToColorEnable = {}; - uint32_t coverageToColorLocation = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCoverageToColorStateCreateInfoNV ) == - sizeof( VkPipelineCoverageToColorStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineCoverageToColorStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineCoverageToColorStateCreateInfoNV; - }; - - struct PipelineCreationFeedback - { - using NativeType = VkPipelineCreationFeedback; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCreationFeedback( VULKAN_HPP_NAMESPACE::PipelineCreationFeedbackFlags flags_ = {}, - uint64_t duration_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , duration( duration_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCreationFeedback( PipelineCreationFeedback const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCreationFeedback( VkPipelineCreationFeedback const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineCreationFeedback( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCreationFeedback & operator=( PipelineCreationFeedback const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCreationFeedback & operator=( VkPipelineCreationFeedback const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPipelineCreationFeedback const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCreationFeedback &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( flags, duration ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCreationFeedback const & ) const = default; -#else - bool operator==( PipelineCreationFeedback const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( flags == rhs.flags ) && ( duration == rhs.duration ); -# endif - } - - bool operator!=( PipelineCreationFeedback const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::PipelineCreationFeedbackFlags flags = {}; - uint64_t duration = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCreationFeedback ) == - sizeof( VkPipelineCreationFeedback ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineCreationFeedback is not nothrow_move_constructible!" ); - using PipelineCreationFeedbackEXT = PipelineCreationFeedback; - - struct PipelineCreationFeedbackCreateInfo - { - using NativeType = VkPipelineCreationFeedbackCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineCreationFeedbackCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineCreationFeedbackCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineCreationFeedback_ = {}, - uint32_t pipelineStageCreationFeedbackCount_ = {}, - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineStageCreationFeedbacks_ = {} ) VULKAN_HPP_NOEXCEPT - : pPipelineCreationFeedback( pPipelineCreationFeedback_ ) - , pipelineStageCreationFeedbackCount( pipelineStageCreationFeedbackCount_ ) - , pPipelineStageCreationFeedbacks( pPipelineStageCreationFeedbacks_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineCreationFeedbackCreateInfo( PipelineCreationFeedbackCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - PipelineCreationFeedbackCreateInfo( VkPipelineCreationFeedbackCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineCreationFeedbackCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineCreationFeedbackCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineCreationFeedback_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - pipelineStageCreationFeedbacks_ ) - : pPipelineCreationFeedback( pPipelineCreationFeedback_ ) - , pipelineStageCreationFeedbackCount( static_cast( pipelineStageCreationFeedbacks_.size() ) ) - , pPipelineStageCreationFeedbacks( pipelineStageCreationFeedbacks_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineCreationFeedbackCreateInfo & - operator=( PipelineCreationFeedbackCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineCreationFeedbackCreateInfo & - operator=( VkPipelineCreationFeedbackCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineCreationFeedbackCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCreationFeedbackCreateInfo & setPPipelineCreationFeedback( - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineCreationFeedback_ ) VULKAN_HPP_NOEXCEPT - { - pPipelineCreationFeedback = pPipelineCreationFeedback_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCreationFeedbackCreateInfo & - setPipelineStageCreationFeedbackCount( uint32_t pipelineStageCreationFeedbackCount_ ) VULKAN_HPP_NOEXCEPT - { - pipelineStageCreationFeedbackCount = pipelineStageCreationFeedbackCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineCreationFeedbackCreateInfo & setPPipelineStageCreationFeedbacks( - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineStageCreationFeedbacks_ ) VULKAN_HPP_NOEXCEPT - { - pPipelineStageCreationFeedbacks = pPipelineStageCreationFeedbacks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineCreationFeedbackCreateInfo & setPipelineStageCreationFeedbacks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - pipelineStageCreationFeedbacks_ ) VULKAN_HPP_NOEXCEPT - { - pipelineStageCreationFeedbackCount = static_cast( pipelineStageCreationFeedbacks_.size() ); - pPipelineStageCreationFeedbacks = pipelineStageCreationFeedbacks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineCreationFeedbackCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineCreationFeedbackCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, pPipelineCreationFeedback, pipelineStageCreationFeedbackCount, pPipelineStageCreationFeedbacks ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineCreationFeedbackCreateInfo const & ) const = default; -#else - bool operator==( PipelineCreationFeedbackCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( pPipelineCreationFeedback == rhs.pPipelineCreationFeedback ) && - ( pipelineStageCreationFeedbackCount == rhs.pipelineStageCreationFeedbackCount ) && - ( pPipelineStageCreationFeedbacks == rhs.pPipelineStageCreationFeedbacks ); -# endif - } - - bool operator!=( PipelineCreationFeedbackCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineCreationFeedbackCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineCreationFeedback = {}; - uint32_t pipelineStageCreationFeedbackCount = {}; - VULKAN_HPP_NAMESPACE::PipelineCreationFeedback * pPipelineStageCreationFeedbacks = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineCreationFeedbackCreateInfo ) == - sizeof( VkPipelineCreationFeedbackCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineCreationFeedbackCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineCreationFeedbackCreateInfo; - }; - using PipelineCreationFeedbackCreateInfoEXT = PipelineCreationFeedbackCreateInfo; - - struct PipelineDiscardRectangleStateCreateInfoEXT - { - using NativeType = VkPipelineDiscardRectangleStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineDiscardRectangleStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineDiscardRectangleStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::PipelineDiscardRectangleStateCreateFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::DiscardRectangleModeEXT discardRectangleMode_ = - VULKAN_HPP_NAMESPACE::DiscardRectangleModeEXT::eInclusive, - uint32_t discardRectangleCount_ = {}, - const VULKAN_HPP_NAMESPACE::Rect2D * pDiscardRectangles_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , discardRectangleMode( discardRectangleMode_ ) - , discardRectangleCount( discardRectangleCount_ ) - , pDiscardRectangles( pDiscardRectangles_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineDiscardRectangleStateCreateInfoEXT( - PipelineDiscardRectangleStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineDiscardRectangleStateCreateInfoEXT( VkPipelineDiscardRectangleStateCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineDiscardRectangleStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineDiscardRectangleStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::PipelineDiscardRectangleStateCreateFlagsEXT flags_, - VULKAN_HPP_NAMESPACE::DiscardRectangleModeEXT discardRectangleMode_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & discardRectangles_ ) - : flags( flags_ ) - , discardRectangleMode( discardRectangleMode_ ) - , discardRectangleCount( static_cast( discardRectangles_.size() ) ) - , pDiscardRectangles( discardRectangles_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineDiscardRectangleStateCreateInfoEXT & - operator=( PipelineDiscardRectangleStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineDiscardRectangleStateCreateInfoEXT & - operator=( VkPipelineDiscardRectangleStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineDiscardRectangleStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDiscardRectangleStateCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::PipelineDiscardRectangleStateCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDiscardRectangleStateCreateInfoEXT & - setDiscardRectangleMode( VULKAN_HPP_NAMESPACE::DiscardRectangleModeEXT discardRectangleMode_ ) VULKAN_HPP_NOEXCEPT - { - discardRectangleMode = discardRectangleMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDiscardRectangleStateCreateInfoEXT & - setDiscardRectangleCount( uint32_t discardRectangleCount_ ) VULKAN_HPP_NOEXCEPT - { - discardRectangleCount = discardRectangleCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineDiscardRectangleStateCreateInfoEXT & - setPDiscardRectangles( const VULKAN_HPP_NAMESPACE::Rect2D * pDiscardRectangles_ ) VULKAN_HPP_NOEXCEPT - { - pDiscardRectangles = pDiscardRectangles_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineDiscardRectangleStateCreateInfoEXT & setDiscardRectangles( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & discardRectangles_ ) - VULKAN_HPP_NOEXCEPT - { - discardRectangleCount = static_cast( discardRectangles_.size() ); - pDiscardRectangles = discardRectangles_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineDiscardRectangleStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineDiscardRectangleStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, discardRectangleMode, discardRectangleCount, pDiscardRectangles ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineDiscardRectangleStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineDiscardRectangleStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( discardRectangleMode == rhs.discardRectangleMode ) && - ( discardRectangleCount == rhs.discardRectangleCount ) && ( pDiscardRectangles == rhs.pDiscardRectangles ); -# endif - } - - bool operator!=( PipelineDiscardRectangleStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineDiscardRectangleStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineDiscardRectangleStateCreateFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::DiscardRectangleModeEXT discardRectangleMode = - VULKAN_HPP_NAMESPACE::DiscardRectangleModeEXT::eInclusive; - uint32_t discardRectangleCount = {}; - const VULKAN_HPP_NAMESPACE::Rect2D * pDiscardRectangles = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineDiscardRectangleStateCreateInfoEXT ) == - sizeof( VkPipelineDiscardRectangleStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineDiscardRectangleStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineDiscardRectangleStateCreateInfoEXT; - }; - - struct PipelineExecutableInfoKHR - { - using NativeType = VkPipelineExecutableInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineExecutableInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineExecutableInfoKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline_ = {}, - uint32_t executableIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : pipeline( pipeline_ ) - , executableIndex( executableIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineExecutableInfoKHR( PipelineExecutableInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutableInfoKHR( VkPipelineExecutableInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineExecutableInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineExecutableInfoKHR & operator=( PipelineExecutableInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutableInfoKHR & operator=( VkPipelineExecutableInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableInfoKHR & - setPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline_ ) VULKAN_HPP_NOEXCEPT - { - pipeline = pipeline_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableInfoKHR & - setExecutableIndex( uint32_t executableIndex_ ) VULKAN_HPP_NOEXCEPT - { - executableIndex = executableIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineExecutableInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineExecutableInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pipeline, executableIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineExecutableInfoKHR const & ) const = default; -#else - bool operator==( PipelineExecutableInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pipeline == rhs.pipeline ) && - ( executableIndex == rhs.executableIndex ); -# endif - } - - bool operator!=( PipelineExecutableInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineExecutableInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Pipeline pipeline = {}; - uint32_t executableIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineExecutableInfoKHR ) == - sizeof( VkPipelineExecutableInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineExecutableInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineExecutableInfoKHR; - }; - - struct PipelineExecutableInternalRepresentationKHR - { - using NativeType = VkPipelineExecutableInternalRepresentationKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineExecutableInternalRepresentationKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - PipelineExecutableInternalRepresentationKHR( std::array const & name_ = {}, - std::array const & description_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 isText_ = {}, - size_t dataSize_ = {}, - void * pData_ = {} ) VULKAN_HPP_NOEXCEPT - : name( name_ ) - , description( description_ ) - , isText( isText_ ) - , dataSize( dataSize_ ) - , pData( pData_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableInternalRepresentationKHR( - PipelineExecutableInternalRepresentationKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutableInternalRepresentationKHR( VkPipelineExecutableInternalRepresentationKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineExecutableInternalRepresentationKHR( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - PipelineExecutableInternalRepresentationKHR( std::array const & name_, - std::array const & description_, - VULKAN_HPP_NAMESPACE::Bool32 isText_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ ) - : name( name_ ) - , description( description_ ) - , isText( isText_ ) - , dataSize( data_.size() * sizeof( T ) ) - , pData( data_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineExecutableInternalRepresentationKHR & - operator=( PipelineExecutableInternalRepresentationKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutableInternalRepresentationKHR & - operator=( VkPipelineExecutableInternalRepresentationKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPipelineExecutableInternalRepresentationKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineExecutableInternalRepresentationKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::Bool32 const &, - size_t const &, - void * const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, name, description, isText, dataSize, pData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineExecutableInternalRepresentationKHR const & ) const = default; -#else - bool operator==( PipelineExecutableInternalRepresentationKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( name == rhs.name ) && - ( description == rhs.description ) && ( isText == rhs.isText ) && ( dataSize == rhs.dataSize ) && - ( pData == rhs.pData ); -# endif - } - - bool operator!=( PipelineExecutableInternalRepresentationKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineExecutableInternalRepresentationKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D name = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D description = {}; - VULKAN_HPP_NAMESPACE::Bool32 isText = {}; - size_t dataSize = {}; - void * pData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineExecutableInternalRepresentationKHR ) == - sizeof( VkPipelineExecutableInternalRepresentationKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineExecutableInternalRepresentationKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineExecutableInternalRepresentationKHR; - }; - - struct PipelineExecutablePropertiesKHR - { - using NativeType = VkPipelineExecutablePropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineExecutablePropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - PipelineExecutablePropertiesKHR( VULKAN_HPP_NAMESPACE::ShaderStageFlags stages_ = {}, - std::array const & name_ = {}, - std::array const & description_ = {}, - uint32_t subgroupSize_ = {} ) VULKAN_HPP_NOEXCEPT - : stages( stages_ ) - , name( name_ ) - , description( description_ ) - , subgroupSize( subgroupSize_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PipelineExecutablePropertiesKHR( PipelineExecutablePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutablePropertiesKHR( VkPipelineExecutablePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineExecutablePropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineExecutablePropertiesKHR & - operator=( PipelineExecutablePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutablePropertiesKHR & operator=( VkPipelineExecutablePropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPipelineExecutablePropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineExecutablePropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - uint32_t const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stages, name, description, subgroupSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineExecutablePropertiesKHR const & ) const = default; -#else - bool operator==( PipelineExecutablePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( stages == rhs.stages ) && ( name == rhs.name ) && - ( description == rhs.description ) && ( subgroupSize == rhs.subgroupSize ); -# endif - } - - bool operator!=( PipelineExecutablePropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineExecutablePropertiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ShaderStageFlags stages = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D name = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D description = {}; - uint32_t subgroupSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineExecutablePropertiesKHR ) == - sizeof( VkPipelineExecutablePropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineExecutablePropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineExecutablePropertiesKHR; - }; - - union PipelineExecutableStatisticValueKHR - { - using NativeType = VkPipelineExecutableStatisticValueKHR; -#if !defined( VULKAN_HPP_NO_UNION_CONSTRUCTORS ) - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR( VULKAN_HPP_NAMESPACE::Bool32 b32_ = {} ) : b32( b32_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR( int64_t i64_ ) : i64( i64_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR( uint64_t u64_ ) : u64( u64_ ) {} - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR( double f64_ ) : f64( f64_ ) {} -#endif /*VULKAN_HPP_NO_UNION_CONSTRUCTORS*/ - -#if !defined( VULKAN_HPP_NO_UNION_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR & - setB32( VULKAN_HPP_NAMESPACE::Bool32 b32_ ) VULKAN_HPP_NOEXCEPT - { - b32 = b32_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR & setI64( int64_t i64_ ) VULKAN_HPP_NOEXCEPT - { - i64 = i64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR & setU64( uint64_t u64_ ) VULKAN_HPP_NOEXCEPT - { - u64 = u64_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticValueKHR & setF64( double f64_ ) VULKAN_HPP_NOEXCEPT - { - f64 = f64_; - return *this; - } -#endif /*VULKAN_HPP_NO_UNION_SETTERS*/ - - operator VkPipelineExecutableStatisticValueKHR const &() const - { - return *reinterpret_cast( this ); - } - - operator VkPipelineExecutableStatisticValueKHR &() - { - return *reinterpret_cast( this ); - } - -#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS - VULKAN_HPP_NAMESPACE::Bool32 b32; - int64_t i64; - uint64_t u64; - double f64; -#else - VkBool32 b32; - int64_t i64; - uint64_t u64; - double f64; -#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/ - }; - - struct PipelineExecutableStatisticKHR - { - using NativeType = VkPipelineExecutableStatisticKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineExecutableStatisticKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PipelineExecutableStatisticKHR( - std::array const & name_ = {}, - std::array const & description_ = {}, - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticFormatKHR format_ = - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticFormatKHR::eBool32, - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticValueKHR value_ = {} ) VULKAN_HPP_NOEXCEPT - : name( name_ ) - , description( description_ ) - , format( format_ ) - , value( value_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - PipelineExecutableStatisticKHR( PipelineExecutableStatisticKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutableStatisticKHR( VkPipelineExecutableStatisticKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineExecutableStatisticKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineExecutableStatisticKHR & - operator=( PipelineExecutableStatisticKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineExecutableStatisticKHR & operator=( VkPipelineExecutableStatisticKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPipelineExecutableStatisticKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineExecutableStatisticKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &, - VULKAN_HPP_NAMESPACE::ArrayWrapper1D const &, - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticFormatKHR const &, - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticValueKHR const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, name, description, format, value ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineExecutableStatisticKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D name = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D description = {}; - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticFormatKHR format = - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticFormatKHR::eBool32; - VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticValueKHR value = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineExecutableStatisticKHR ) == - sizeof( VkPipelineExecutableStatisticKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineExecutableStatisticKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineExecutableStatisticKHR; - }; - - struct PipelineFragmentShadingRateEnumStateCreateInfoNV - { - using NativeType = VkPipelineFragmentShadingRateEnumStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineFragmentShadingRateEnumStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateEnumStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::FragmentShadingRateTypeNV shadingRateType_ = - VULKAN_HPP_NAMESPACE::FragmentShadingRateTypeNV::eFragmentSize, - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate_ = - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV::e1InvocationPerPixel, - std::array const & - combinerOps_ = { { VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR::eKeep, - VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR::eKeep } } ) VULKAN_HPP_NOEXCEPT - : shadingRateType( shadingRateType_ ) - , shadingRate( shadingRate_ ) - , combinerOps( combinerOps_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateEnumStateCreateInfoNV( - PipelineFragmentShadingRateEnumStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineFragmentShadingRateEnumStateCreateInfoNV( VkPipelineFragmentShadingRateEnumStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineFragmentShadingRateEnumStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineFragmentShadingRateEnumStateCreateInfoNV & - operator=( PipelineFragmentShadingRateEnumStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineFragmentShadingRateEnumStateCreateInfoNV & - operator=( VkPipelineFragmentShadingRateEnumStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateEnumStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateEnumStateCreateInfoNV & - setShadingRateType( VULKAN_HPP_NAMESPACE::FragmentShadingRateTypeNV shadingRateType_ ) VULKAN_HPP_NOEXCEPT - { - shadingRateType = shadingRateType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateEnumStateCreateInfoNV & - setShadingRate( VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate_ ) VULKAN_HPP_NOEXCEPT - { - shadingRate = shadingRate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateEnumStateCreateInfoNV & setCombinerOps( - std::array combinerOps_ ) VULKAN_HPP_NOEXCEPT - { - combinerOps = combinerOps_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineFragmentShadingRateEnumStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineFragmentShadingRateEnumStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shadingRateType, shadingRate, combinerOps ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineFragmentShadingRateEnumStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineFragmentShadingRateEnumStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( shadingRateType == rhs.shadingRateType ) && - ( shadingRate == rhs.shadingRate ) && ( combinerOps == rhs.combinerOps ); -# endif - } - - bool operator!=( PipelineFragmentShadingRateEnumStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineFragmentShadingRateEnumStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::FragmentShadingRateTypeNV shadingRateType = - VULKAN_HPP_NAMESPACE::FragmentShadingRateTypeNV::eFragmentSize; - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV shadingRate = - VULKAN_HPP_NAMESPACE::FragmentShadingRateNV::e1InvocationPerPixel; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D combinerOps = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineFragmentShadingRateEnumStateCreateInfoNV ) == - sizeof( VkPipelineFragmentShadingRateEnumStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineFragmentShadingRateEnumStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineFragmentShadingRateEnumStateCreateInfoNV; - }; - - struct PipelineFragmentShadingRateStateCreateInfoKHR - { - using NativeType = VkPipelineFragmentShadingRateStateCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineFragmentShadingRateStateCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateStateCreateInfoKHR( - VULKAN_HPP_NAMESPACE::Extent2D fragmentSize_ = {}, - std::array const & - combinerOps_ = { { VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR::eKeep, - VULKAN_HPP_NAMESPACE::FragmentShadingRateCombinerOpKHR::eKeep } } ) VULKAN_HPP_NOEXCEPT - : fragmentSize( fragmentSize_ ) - , combinerOps( combinerOps_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateStateCreateInfoKHR( - PipelineFragmentShadingRateStateCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineFragmentShadingRateStateCreateInfoKHR( VkPipelineFragmentShadingRateStateCreateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineFragmentShadingRateStateCreateInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineFragmentShadingRateStateCreateInfoKHR & - operator=( PipelineFragmentShadingRateStateCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineFragmentShadingRateStateCreateInfoKHR & - operator=( VkPipelineFragmentShadingRateStateCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateStateCreateInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateStateCreateInfoKHR & - setFragmentSize( VULKAN_HPP_NAMESPACE::Extent2D const & fragmentSize_ ) VULKAN_HPP_NOEXCEPT - { - fragmentSize = fragmentSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineFragmentShadingRateStateCreateInfoKHR & setCombinerOps( - std::array combinerOps_ ) VULKAN_HPP_NOEXCEPT - { - combinerOps = combinerOps_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineFragmentShadingRateStateCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineFragmentShadingRateStateCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentSize, combinerOps ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineFragmentShadingRateStateCreateInfoKHR const & ) const = default; -#else - bool operator==( PipelineFragmentShadingRateStateCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fragmentSize == rhs.fragmentSize ) && - ( combinerOps == rhs.combinerOps ); -# endif - } - - bool operator!=( PipelineFragmentShadingRateStateCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineFragmentShadingRateStateCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Extent2D fragmentSize = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D combinerOps = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineFragmentShadingRateStateCreateInfoKHR ) == - sizeof( VkPipelineFragmentShadingRateStateCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineFragmentShadingRateStateCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineFragmentShadingRateStateCreateInfoKHR; - }; - - struct PipelineInfoKHR - { - using NativeType = VkPipelineInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineInfoKHR( VULKAN_HPP_NAMESPACE::Pipeline pipeline_ = {} ) VULKAN_HPP_NOEXCEPT - : pipeline( pipeline_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineInfoKHR( PipelineInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineInfoKHR( VkPipelineInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineInfoKHR & operator=( PipelineInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineInfoKHR & operator=( VkPipelineInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineInfoKHR & - setPipeline( VULKAN_HPP_NAMESPACE::Pipeline pipeline_ ) VULKAN_HPP_NOEXCEPT - { - pipeline = pipeline_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pipeline ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineInfoKHR const & ) const = default; -#else - bool operator==( PipelineInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pipeline == rhs.pipeline ); -# endif - } - - bool operator!=( PipelineInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Pipeline pipeline = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineInfoKHR ) == sizeof( VkPipelineInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineInfoKHR; - }; - - struct PushConstantRange - { - using NativeType = VkPushConstantRange; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PushConstantRange( VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags_ = {}, - uint32_t offset_ = {}, - uint32_t size_ = {} ) VULKAN_HPP_NOEXCEPT - : stageFlags( stageFlags_ ) - , offset( offset_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR PushConstantRange( PushConstantRange const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PushConstantRange( VkPushConstantRange const & rhs ) VULKAN_HPP_NOEXCEPT - : PushConstantRange( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PushConstantRange & operator=( PushConstantRange const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PushConstantRange & operator=( VkPushConstantRange const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PushConstantRange & - setStageFlags( VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags_ ) VULKAN_HPP_NOEXCEPT - { - stageFlags = stageFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PushConstantRange & setOffset( uint32_t offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PushConstantRange & setSize( uint32_t size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPushConstantRange const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPushConstantRange &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( stageFlags, offset, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PushConstantRange const & ) const = default; -#else - bool operator==( PushConstantRange const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( stageFlags == rhs.stageFlags ) && ( offset == rhs.offset ) && ( size == rhs.size ); -# endif - } - - bool operator!=( PushConstantRange const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ShaderStageFlags stageFlags = {}; - uint32_t offset = {}; - uint32_t size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PushConstantRange ) == sizeof( VkPushConstantRange ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PushConstantRange is not nothrow_move_constructible!" ); - - struct PipelineLayoutCreateInfo - { - using NativeType = VkPipelineLayoutCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineLayoutCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineLayoutCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineLayoutCreateFlags flags_ = {}, - uint32_t setLayoutCount_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayouts_ = {}, - uint32_t pushConstantRangeCount_ = {}, - const VULKAN_HPP_NAMESPACE::PushConstantRange * pPushConstantRanges_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , setLayoutCount( setLayoutCount_ ) - , pSetLayouts( pSetLayouts_ ) - , pushConstantRangeCount( pushConstantRangeCount_ ) - , pPushConstantRanges( pPushConstantRanges_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineLayoutCreateInfo( PipelineLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineLayoutCreateInfo( VkPipelineLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineLayoutCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineLayoutCreateInfo( - VULKAN_HPP_NAMESPACE::PipelineLayoutCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - setLayouts_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - pushConstantRanges_ = {} ) - : flags( flags_ ) - , setLayoutCount( static_cast( setLayouts_.size() ) ) - , pSetLayouts( setLayouts_.data() ) - , pushConstantRangeCount( static_cast( pushConstantRanges_.size() ) ) - , pPushConstantRanges( pushConstantRanges_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineLayoutCreateInfo & operator=( PipelineLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineLayoutCreateInfo & operator=( VkPipelineLayoutCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineLayoutCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineLayoutCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PipelineLayoutCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineLayoutCreateInfo & setSetLayoutCount( uint32_t setLayoutCount_ ) VULKAN_HPP_NOEXCEPT - { - setLayoutCount = setLayoutCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineLayoutCreateInfo & - setPSetLayouts( const VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayouts_ ) VULKAN_HPP_NOEXCEPT - { - pSetLayouts = pSetLayouts_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineLayoutCreateInfo & setSetLayouts( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - setLayouts_ ) VULKAN_HPP_NOEXCEPT - { - setLayoutCount = static_cast( setLayouts_.size() ); - pSetLayouts = setLayouts_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PipelineLayoutCreateInfo & - setPushConstantRangeCount( uint32_t pushConstantRangeCount_ ) VULKAN_HPP_NOEXCEPT - { - pushConstantRangeCount = pushConstantRangeCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineLayoutCreateInfo & - setPPushConstantRanges( const VULKAN_HPP_NAMESPACE::PushConstantRange * pPushConstantRanges_ ) VULKAN_HPP_NOEXCEPT - { - pPushConstantRanges = pPushConstantRanges_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineLayoutCreateInfo & setPushConstantRanges( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - pushConstantRanges_ ) VULKAN_HPP_NOEXCEPT - { - pushConstantRangeCount = static_cast( pushConstantRanges_.size() ); - pPushConstantRanges = pushConstantRanges_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineLayoutCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineLayoutCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, setLayoutCount, pSetLayouts, pushConstantRangeCount, pPushConstantRanges ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineLayoutCreateInfo const & ) const = default; -#else - bool operator==( PipelineLayoutCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( setLayoutCount == rhs.setLayoutCount ) && ( pSetLayouts == rhs.pSetLayouts ) && - ( pushConstantRangeCount == rhs.pushConstantRangeCount ) && - ( pPushConstantRanges == rhs.pPushConstantRanges ); -# endif - } - - bool operator!=( PipelineLayoutCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineLayoutCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineLayoutCreateFlags flags = {}; - uint32_t setLayoutCount = {}; - const VULKAN_HPP_NAMESPACE::DescriptorSetLayout * pSetLayouts = {}; - uint32_t pushConstantRangeCount = {}; - const VULKAN_HPP_NAMESPACE::PushConstantRange * pPushConstantRanges = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineLayoutCreateInfo ) == - sizeof( VkPipelineLayoutCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PipelineLayoutCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineLayoutCreateInfo; - }; - - struct PipelineLibraryCreateInfoKHR - { - using NativeType = VkPipelineLibraryCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineLibraryCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PipelineLibraryCreateInfoKHR( uint32_t libraryCount_ = {}, - const VULKAN_HPP_NAMESPACE::Pipeline * pLibraries_ = {} ) VULKAN_HPP_NOEXCEPT - : libraryCount( libraryCount_ ) - , pLibraries( pLibraries_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineLibraryCreateInfoKHR( PipelineLibraryCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineLibraryCreateInfoKHR( VkPipelineLibraryCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineLibraryCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineLibraryCreateInfoKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & libraries_ ) - : libraryCount( static_cast( libraries_.size() ) ), pLibraries( libraries_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineLibraryCreateInfoKHR & operator=( PipelineLibraryCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineLibraryCreateInfoKHR & operator=( VkPipelineLibraryCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineLibraryCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineLibraryCreateInfoKHR & setLibraryCount( uint32_t libraryCount_ ) VULKAN_HPP_NOEXCEPT - { - libraryCount = libraryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineLibraryCreateInfoKHR & - setPLibraries( const VULKAN_HPP_NAMESPACE::Pipeline * pLibraries_ ) VULKAN_HPP_NOEXCEPT - { - pLibraries = pLibraries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineLibraryCreateInfoKHR & setLibraries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & libraries_ ) - VULKAN_HPP_NOEXCEPT - { - libraryCount = static_cast( libraries_.size() ); - pLibraries = libraries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineLibraryCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineLibraryCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, libraryCount, pLibraries ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineLibraryCreateInfoKHR const & ) const = default; -#else - bool operator==( PipelineLibraryCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( libraryCount == rhs.libraryCount ) && - ( pLibraries == rhs.pLibraries ); -# endif - } - - bool operator!=( PipelineLibraryCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineLibraryCreateInfoKHR; - const void * pNext = {}; - uint32_t libraryCount = {}; - const VULKAN_HPP_NAMESPACE::Pipeline * pLibraries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineLibraryCreateInfoKHR ) == - sizeof( VkPipelineLibraryCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineLibraryCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineLibraryCreateInfoKHR; - }; - - struct PipelineRasterizationConservativeStateCreateInfoEXT - { - using NativeType = VkPipelineRasterizationConservativeStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationConservativeStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationConservativeStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::PipelineRasterizationConservativeStateCreateFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::ConservativeRasterizationModeEXT conservativeRasterizationMode_ = - VULKAN_HPP_NAMESPACE::ConservativeRasterizationModeEXT::eDisabled, - float extraPrimitiveOverestimationSize_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , conservativeRasterizationMode( conservativeRasterizationMode_ ) - , extraPrimitiveOverestimationSize( extraPrimitiveOverestimationSize_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationConservativeStateCreateInfoEXT( - PipelineRasterizationConservativeStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationConservativeStateCreateInfoEXT( - VkPipelineRasterizationConservativeStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineRasterizationConservativeStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationConservativeStateCreateInfoEXT & - operator=( PipelineRasterizationConservativeStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationConservativeStateCreateInfoEXT & - operator=( VkPipelineRasterizationConservativeStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationConservativeStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationConservativeStateCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::PipelineRasterizationConservativeStateCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationConservativeStateCreateInfoEXT & setConservativeRasterizationMode( - VULKAN_HPP_NAMESPACE::ConservativeRasterizationModeEXT conservativeRasterizationMode_ ) VULKAN_HPP_NOEXCEPT - { - conservativeRasterizationMode = conservativeRasterizationMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationConservativeStateCreateInfoEXT & - setExtraPrimitiveOverestimationSize( float extraPrimitiveOverestimationSize_ ) VULKAN_HPP_NOEXCEPT - { - extraPrimitiveOverestimationSize = extraPrimitiveOverestimationSize_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationConservativeStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationConservativeStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, conservativeRasterizationMode, extraPrimitiveOverestimationSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationConservativeStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineRasterizationConservativeStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( conservativeRasterizationMode == rhs.conservativeRasterizationMode ) && - ( extraPrimitiveOverestimationSize == rhs.extraPrimitiveOverestimationSize ); -# endif - } - - bool operator!=( PipelineRasterizationConservativeStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationConservativeStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineRasterizationConservativeStateCreateFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::ConservativeRasterizationModeEXT conservativeRasterizationMode = - VULKAN_HPP_NAMESPACE::ConservativeRasterizationModeEXT::eDisabled; - float extraPrimitiveOverestimationSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationConservativeStateCreateInfoEXT ) == - sizeof( VkPipelineRasterizationConservativeStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PipelineRasterizationConservativeStateCreateInfoEXT>::value, - "PipelineRasterizationConservativeStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationConservativeStateCreateInfoEXT; - }; - - struct PipelineRasterizationDepthClipStateCreateInfoEXT - { - using NativeType = VkPipelineRasterizationDepthClipStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationDepthClipStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationDepthClipStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::PipelineRasterizationDepthClipStateCreateFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 depthClipEnable_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , depthClipEnable( depthClipEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationDepthClipStateCreateInfoEXT( - PipelineRasterizationDepthClipStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationDepthClipStateCreateInfoEXT( VkPipelineRasterizationDepthClipStateCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineRasterizationDepthClipStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationDepthClipStateCreateInfoEXT & - operator=( PipelineRasterizationDepthClipStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationDepthClipStateCreateInfoEXT & - operator=( VkPipelineRasterizationDepthClipStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationDepthClipStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationDepthClipStateCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::PipelineRasterizationDepthClipStateCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationDepthClipStateCreateInfoEXT & - setDepthClipEnable( VULKAN_HPP_NAMESPACE::Bool32 depthClipEnable_ ) VULKAN_HPP_NOEXCEPT - { - depthClipEnable = depthClipEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationDepthClipStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationDepthClipStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, depthClipEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationDepthClipStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineRasterizationDepthClipStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( depthClipEnable == rhs.depthClipEnable ); -# endif - } - - bool operator!=( PipelineRasterizationDepthClipStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationDepthClipStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineRasterizationDepthClipStateCreateFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::Bool32 depthClipEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationDepthClipStateCreateInfoEXT ) == - sizeof( VkPipelineRasterizationDepthClipStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineRasterizationDepthClipStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationDepthClipStateCreateInfoEXT; - }; - - struct PipelineRasterizationLineStateCreateInfoEXT - { - using NativeType = VkPipelineRasterizationLineStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationLineStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationLineStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::LineRasterizationModeEXT lineRasterizationMode_ = - VULKAN_HPP_NAMESPACE::LineRasterizationModeEXT::eDefault, - VULKAN_HPP_NAMESPACE::Bool32 stippledLineEnable_ = {}, - uint32_t lineStippleFactor_ = {}, - uint16_t lineStipplePattern_ = {} ) VULKAN_HPP_NOEXCEPT - : lineRasterizationMode( lineRasterizationMode_ ) - , stippledLineEnable( stippledLineEnable_ ) - , lineStippleFactor( lineStippleFactor_ ) - , lineStipplePattern( lineStipplePattern_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationLineStateCreateInfoEXT( - PipelineRasterizationLineStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationLineStateCreateInfoEXT( VkPipelineRasterizationLineStateCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineRasterizationLineStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationLineStateCreateInfoEXT & - operator=( PipelineRasterizationLineStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationLineStateCreateInfoEXT & - operator=( VkPipelineRasterizationLineStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationLineStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationLineStateCreateInfoEXT & setLineRasterizationMode( - VULKAN_HPP_NAMESPACE::LineRasterizationModeEXT lineRasterizationMode_ ) VULKAN_HPP_NOEXCEPT - { - lineRasterizationMode = lineRasterizationMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationLineStateCreateInfoEXT & - setStippledLineEnable( VULKAN_HPP_NAMESPACE::Bool32 stippledLineEnable_ ) VULKAN_HPP_NOEXCEPT - { - stippledLineEnable = stippledLineEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationLineStateCreateInfoEXT & - setLineStippleFactor( uint32_t lineStippleFactor_ ) VULKAN_HPP_NOEXCEPT - { - lineStippleFactor = lineStippleFactor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationLineStateCreateInfoEXT & - setLineStipplePattern( uint16_t lineStipplePattern_ ) VULKAN_HPP_NOEXCEPT - { - lineStipplePattern = lineStipplePattern_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationLineStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationLineStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, lineRasterizationMode, stippledLineEnable, lineStippleFactor, lineStipplePattern ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationLineStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineRasterizationLineStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( lineRasterizationMode == rhs.lineRasterizationMode ) && - ( stippledLineEnable == rhs.stippledLineEnable ) && ( lineStippleFactor == rhs.lineStippleFactor ) && - ( lineStipplePattern == rhs.lineStipplePattern ); -# endif - } - - bool operator!=( PipelineRasterizationLineStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationLineStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::LineRasterizationModeEXT lineRasterizationMode = - VULKAN_HPP_NAMESPACE::LineRasterizationModeEXT::eDefault; - VULKAN_HPP_NAMESPACE::Bool32 stippledLineEnable = {}; - uint32_t lineStippleFactor = {}; - uint16_t lineStipplePattern = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationLineStateCreateInfoEXT ) == - sizeof( VkPipelineRasterizationLineStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineRasterizationLineStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationLineStateCreateInfoEXT; - }; - - struct PipelineRasterizationProvokingVertexStateCreateInfoEXT - { - using NativeType = VkPipelineRasterizationProvokingVertexStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationProvokingVertexStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationProvokingVertexStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::ProvokingVertexModeEXT provokingVertexMode_ = - VULKAN_HPP_NAMESPACE::ProvokingVertexModeEXT::eFirstVertex ) VULKAN_HPP_NOEXCEPT - : provokingVertexMode( provokingVertexMode_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationProvokingVertexStateCreateInfoEXT( - PipelineRasterizationProvokingVertexStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationProvokingVertexStateCreateInfoEXT( - VkPipelineRasterizationProvokingVertexStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineRasterizationProvokingVertexStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationProvokingVertexStateCreateInfoEXT & - operator=( PipelineRasterizationProvokingVertexStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationProvokingVertexStateCreateInfoEXT & - operator=( VkPipelineRasterizationProvokingVertexStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationProvokingVertexStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationProvokingVertexStateCreateInfoEXT & - setProvokingVertexMode( VULKAN_HPP_NAMESPACE::ProvokingVertexModeEXT provokingVertexMode_ ) VULKAN_HPP_NOEXCEPT - { - provokingVertexMode = provokingVertexMode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationProvokingVertexStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationProvokingVertexStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, provokingVertexMode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationProvokingVertexStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineRasterizationProvokingVertexStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( provokingVertexMode == rhs.provokingVertexMode ); -# endif - } - - bool operator!=( PipelineRasterizationProvokingVertexStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationProvokingVertexStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ProvokingVertexModeEXT provokingVertexMode = - VULKAN_HPP_NAMESPACE::ProvokingVertexModeEXT::eFirstVertex; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationProvokingVertexStateCreateInfoEXT ) == - sizeof( VkPipelineRasterizationProvokingVertexStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PipelineRasterizationProvokingVertexStateCreateInfoEXT>::value, - "PipelineRasterizationProvokingVertexStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationProvokingVertexStateCreateInfoEXT; - }; - - struct PipelineRasterizationStateRasterizationOrderAMD - { - using NativeType = VkPipelineRasterizationStateRasterizationOrderAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationStateRasterizationOrderAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationStateRasterizationOrderAMD( - VULKAN_HPP_NAMESPACE::RasterizationOrderAMD rasterizationOrder_ = - VULKAN_HPP_NAMESPACE::RasterizationOrderAMD::eStrict ) VULKAN_HPP_NOEXCEPT - : rasterizationOrder( rasterizationOrder_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationStateRasterizationOrderAMD( - PipelineRasterizationStateRasterizationOrderAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationStateRasterizationOrderAMD( VkPipelineRasterizationStateRasterizationOrderAMD const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineRasterizationStateRasterizationOrderAMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationStateRasterizationOrderAMD & - operator=( PipelineRasterizationStateRasterizationOrderAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationStateRasterizationOrderAMD & - operator=( VkPipelineRasterizationStateRasterizationOrderAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateRasterizationOrderAMD & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateRasterizationOrderAMD & - setRasterizationOrder( VULKAN_HPP_NAMESPACE::RasterizationOrderAMD rasterizationOrder_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationOrder = rasterizationOrder_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationStateRasterizationOrderAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationStateRasterizationOrderAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, rasterizationOrder ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationStateRasterizationOrderAMD const & ) const = default; -#else - bool operator==( PipelineRasterizationStateRasterizationOrderAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( rasterizationOrder == rhs.rasterizationOrder ); -# endif - } - - bool operator!=( PipelineRasterizationStateRasterizationOrderAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationStateRasterizationOrderAMD; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RasterizationOrderAMD rasterizationOrder = - VULKAN_HPP_NAMESPACE::RasterizationOrderAMD::eStrict; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateRasterizationOrderAMD ) == - sizeof( VkPipelineRasterizationStateRasterizationOrderAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineRasterizationStateRasterizationOrderAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationStateRasterizationOrderAMD; - }; - - struct PipelineRasterizationStateStreamCreateInfoEXT - { - using NativeType = VkPipelineRasterizationStateStreamCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRasterizationStateStreamCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRasterizationStateStreamCreateInfoEXT( - VULKAN_HPP_NAMESPACE::PipelineRasterizationStateStreamCreateFlagsEXT flags_ = {}, - uint32_t rasterizationStream_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , rasterizationStream( rasterizationStream_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRasterizationStateStreamCreateInfoEXT( - PipelineRasterizationStateStreamCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationStateStreamCreateInfoEXT( VkPipelineRasterizationStateStreamCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineRasterizationStateStreamCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRasterizationStateStreamCreateInfoEXT & - operator=( PipelineRasterizationStateStreamCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRasterizationStateStreamCreateInfoEXT & - operator=( VkPipelineRasterizationStateStreamCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateStreamCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateStreamCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateStreamCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRasterizationStateStreamCreateInfoEXT & - setRasterizationStream( uint32_t rasterizationStream_ ) VULKAN_HPP_NOEXCEPT - { - rasterizationStream = rasterizationStream_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRasterizationStateStreamCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRasterizationStateStreamCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, rasterizationStream ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRasterizationStateStreamCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineRasterizationStateStreamCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( rasterizationStream == rhs.rasterizationStream ); -# endif - } - - bool operator!=( PipelineRasterizationStateStreamCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRasterizationStateStreamCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineRasterizationStateStreamCreateFlagsEXT flags = {}; - uint32_t rasterizationStream = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRasterizationStateStreamCreateInfoEXT ) == - sizeof( VkPipelineRasterizationStateStreamCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineRasterizationStateStreamCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRasterizationStateStreamCreateInfoEXT; - }; - - struct PipelineRenderingCreateInfo - { - using NativeType = VkPipelineRenderingCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePipelineRenderingCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRenderingCreateInfo( - uint32_t viewMask_ = {}, - uint32_t colorAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::Format * pColorAttachmentFormats_ = {}, - VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined ) - VULKAN_HPP_NOEXCEPT - : viewMask( viewMask_ ) - , colorAttachmentCount( colorAttachmentCount_ ) - , pColorAttachmentFormats( pColorAttachmentFormats_ ) - , depthAttachmentFormat( depthAttachmentFormat_ ) - , stencilAttachmentFormat( stencilAttachmentFormat_ ) - {} - - VULKAN_HPP_CONSTEXPR - PipelineRenderingCreateInfo( PipelineRenderingCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRenderingCreateInfo( VkPipelineRenderingCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineRenderingCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineRenderingCreateInfo( - uint32_t viewMask_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & colorAttachmentFormats_, - VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined ) - : viewMask( viewMask_ ) - , colorAttachmentCount( static_cast( colorAttachmentFormats_.size() ) ) - , pColorAttachmentFormats( colorAttachmentFormats_.data() ) - , depthAttachmentFormat( depthAttachmentFormat_ ) - , stencilAttachmentFormat( stencilAttachmentFormat_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRenderingCreateInfo & operator=( PipelineRenderingCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRenderingCreateInfo & operator=( VkPipelineRenderingCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRenderingCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRenderingCreateInfo & setViewMask( uint32_t viewMask_ ) VULKAN_HPP_NOEXCEPT - { - viewMask = viewMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRenderingCreateInfo & - setColorAttachmentCount( uint32_t colorAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = colorAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRenderingCreateInfo & - setPColorAttachmentFormats( const VULKAN_HPP_NAMESPACE::Format * pColorAttachmentFormats_ ) VULKAN_HPP_NOEXCEPT - { - pColorAttachmentFormats = pColorAttachmentFormats_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineRenderingCreateInfo & setColorAttachmentFormats( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachmentFormats_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( colorAttachmentFormats_.size() ); - pColorAttachmentFormats = colorAttachmentFormats_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PipelineRenderingCreateInfo & - setDepthAttachmentFormat( VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat_ ) VULKAN_HPP_NOEXCEPT - { - depthAttachmentFormat = depthAttachmentFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRenderingCreateInfo & - setStencilAttachmentFormat( VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat_ ) VULKAN_HPP_NOEXCEPT - { - stencilAttachmentFormat = stencilAttachmentFormat_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRenderingCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRenderingCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - viewMask, - colorAttachmentCount, - pColorAttachmentFormats, - depthAttachmentFormat, - stencilAttachmentFormat ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRenderingCreateInfo const & ) const = default; -#else - bool operator==( PipelineRenderingCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( viewMask == rhs.viewMask ) && - ( colorAttachmentCount == rhs.colorAttachmentCount ) && - ( pColorAttachmentFormats == rhs.pColorAttachmentFormats ) && - ( depthAttachmentFormat == rhs.depthAttachmentFormat ) && - ( stencilAttachmentFormat == rhs.stencilAttachmentFormat ); -# endif - } - - bool operator!=( PipelineRenderingCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRenderingCreateInfo; - const void * pNext = {}; - uint32_t viewMask = {}; - uint32_t colorAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::Format * pColorAttachmentFormats = {}; - VULKAN_HPP_NAMESPACE::Format depthAttachmentFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::Format stencilAttachmentFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRenderingCreateInfo ) == - sizeof( VkPipelineRenderingCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineRenderingCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRenderingCreateInfo; - }; - using PipelineRenderingCreateInfoKHR = PipelineRenderingCreateInfo; - - struct PipelineRepresentativeFragmentTestStateCreateInfoNV - { - using NativeType = VkPipelineRepresentativeFragmentTestStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineRepresentativeFragmentTestStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineRepresentativeFragmentTestStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::Bool32 representativeFragmentTestEnable_ = {} ) VULKAN_HPP_NOEXCEPT - : representativeFragmentTestEnable( representativeFragmentTestEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineRepresentativeFragmentTestStateCreateInfoNV( - PipelineRepresentativeFragmentTestStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRepresentativeFragmentTestStateCreateInfoNV( - VkPipelineRepresentativeFragmentTestStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineRepresentativeFragmentTestStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineRepresentativeFragmentTestStateCreateInfoNV & - operator=( PipelineRepresentativeFragmentTestStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineRepresentativeFragmentTestStateCreateInfoNV & - operator=( VkPipelineRepresentativeFragmentTestStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineRepresentativeFragmentTestStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineRepresentativeFragmentTestStateCreateInfoNV & setRepresentativeFragmentTestEnable( - VULKAN_HPP_NAMESPACE::Bool32 representativeFragmentTestEnable_ ) VULKAN_HPP_NOEXCEPT - { - representativeFragmentTestEnable = representativeFragmentTestEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineRepresentativeFragmentTestStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineRepresentativeFragmentTestStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, representativeFragmentTestEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineRepresentativeFragmentTestStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineRepresentativeFragmentTestStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( representativeFragmentTestEnable == rhs.representativeFragmentTestEnable ); -# endif - } - - bool operator!=( PipelineRepresentativeFragmentTestStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineRepresentativeFragmentTestStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 representativeFragmentTestEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineRepresentativeFragmentTestStateCreateInfoNV ) == - sizeof( VkPipelineRepresentativeFragmentTestStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible< - VULKAN_HPP_NAMESPACE::PipelineRepresentativeFragmentTestStateCreateInfoNV>::value, - "PipelineRepresentativeFragmentTestStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineRepresentativeFragmentTestStateCreateInfoNV; - }; - - struct PipelineSampleLocationsStateCreateInfoEXT - { - using NativeType = VkPipelineSampleLocationsStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineSampleLocationsStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineSampleLocationsStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::Bool32 sampleLocationsEnable_ = {}, - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : sampleLocationsEnable( sampleLocationsEnable_ ) - , sampleLocationsInfo( sampleLocationsInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineSampleLocationsStateCreateInfoEXT( - PipelineSampleLocationsStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineSampleLocationsStateCreateInfoEXT( VkPipelineSampleLocationsStateCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineSampleLocationsStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineSampleLocationsStateCreateInfoEXT & - operator=( PipelineSampleLocationsStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineSampleLocationsStateCreateInfoEXT & - operator=( VkPipelineSampleLocationsStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineSampleLocationsStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineSampleLocationsStateCreateInfoEXT & - setSampleLocationsEnable( VULKAN_HPP_NAMESPACE::Bool32 sampleLocationsEnable_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsEnable = sampleLocationsEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineSampleLocationsStateCreateInfoEXT & setSampleLocationsInfo( - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT const & sampleLocationsInfo_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsInfo = sampleLocationsInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineSampleLocationsStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineSampleLocationsStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, sampleLocationsEnable, sampleLocationsInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineSampleLocationsStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineSampleLocationsStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( sampleLocationsEnable == rhs.sampleLocationsEnable ) && - ( sampleLocationsInfo == rhs.sampleLocationsInfo ); -# endif - } - - bool operator!=( PipelineSampleLocationsStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineSampleLocationsStateCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 sampleLocationsEnable = {}; - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineSampleLocationsStateCreateInfoEXT ) == - sizeof( VkPipelineSampleLocationsStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineSampleLocationsStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineSampleLocationsStateCreateInfoEXT; - }; - - struct PipelineShaderStageRequiredSubgroupSizeCreateInfo - { - using NativeType = VkPipelineShaderStageRequiredSubgroupSizeCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineShaderStageRequiredSubgroupSizeCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PipelineShaderStageRequiredSubgroupSizeCreateInfo( uint32_t requiredSubgroupSize_ = {} ) VULKAN_HPP_NOEXCEPT - : requiredSubgroupSize( requiredSubgroupSize_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineShaderStageRequiredSubgroupSizeCreateInfo( - PipelineShaderStageRequiredSubgroupSizeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineShaderStageRequiredSubgroupSizeCreateInfo( VkPipelineShaderStageRequiredSubgroupSizeCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineShaderStageRequiredSubgroupSizeCreateInfo( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineShaderStageRequiredSubgroupSizeCreateInfo & - operator=( PipelineShaderStageRequiredSubgroupSizeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineShaderStageRequiredSubgroupSizeCreateInfo & - operator=( VkPipelineShaderStageRequiredSubgroupSizeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkPipelineShaderStageRequiredSubgroupSizeCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineShaderStageRequiredSubgroupSizeCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, requiredSubgroupSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineShaderStageRequiredSubgroupSizeCreateInfo const & ) const = default; -#else - bool operator==( PipelineShaderStageRequiredSubgroupSizeCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( requiredSubgroupSize == rhs.requiredSubgroupSize ); -# endif - } - - bool operator!=( PipelineShaderStageRequiredSubgroupSizeCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineShaderStageRequiredSubgroupSizeCreateInfo; - void * pNext = {}; - uint32_t requiredSubgroupSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineShaderStageRequiredSubgroupSizeCreateInfo ) == - sizeof( VkPipelineShaderStageRequiredSubgroupSizeCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineShaderStageRequiredSubgroupSizeCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineShaderStageRequiredSubgroupSizeCreateInfo; - }; - using PipelineShaderStageRequiredSubgroupSizeCreateInfoEXT = PipelineShaderStageRequiredSubgroupSizeCreateInfo; - - struct PipelineTessellationDomainOriginStateCreateInfo - { - using NativeType = VkPipelineTessellationDomainOriginStateCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineTessellationDomainOriginStateCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineTessellationDomainOriginStateCreateInfo( - VULKAN_HPP_NAMESPACE::TessellationDomainOrigin domainOrigin_ = - VULKAN_HPP_NAMESPACE::TessellationDomainOrigin::eUpperLeft ) VULKAN_HPP_NOEXCEPT : domainOrigin( domainOrigin_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineTessellationDomainOriginStateCreateInfo( - PipelineTessellationDomainOriginStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineTessellationDomainOriginStateCreateInfo( VkPipelineTessellationDomainOriginStateCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineTessellationDomainOriginStateCreateInfo( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineTessellationDomainOriginStateCreateInfo & - operator=( PipelineTessellationDomainOriginStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineTessellationDomainOriginStateCreateInfo & - operator=( VkPipelineTessellationDomainOriginStateCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineTessellationDomainOriginStateCreateInfo & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineTessellationDomainOriginStateCreateInfo & - setDomainOrigin( VULKAN_HPP_NAMESPACE::TessellationDomainOrigin domainOrigin_ ) VULKAN_HPP_NOEXCEPT - { - domainOrigin = domainOrigin_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineTessellationDomainOriginStateCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineTessellationDomainOriginStateCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, domainOrigin ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineTessellationDomainOriginStateCreateInfo const & ) const = default; -#else - bool operator==( PipelineTessellationDomainOriginStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( domainOrigin == rhs.domainOrigin ); -# endif - } - - bool operator!=( PipelineTessellationDomainOriginStateCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineTessellationDomainOriginStateCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::TessellationDomainOrigin domainOrigin = - VULKAN_HPP_NAMESPACE::TessellationDomainOrigin::eUpperLeft; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineTessellationDomainOriginStateCreateInfo ) == - sizeof( VkPipelineTessellationDomainOriginStateCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineTessellationDomainOriginStateCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineTessellationDomainOriginStateCreateInfo; - }; - using PipelineTessellationDomainOriginStateCreateInfoKHR = PipelineTessellationDomainOriginStateCreateInfo; - - struct VertexInputBindingDivisorDescriptionEXT - { - using NativeType = VkVertexInputBindingDivisorDescriptionEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VertexInputBindingDivisorDescriptionEXT( uint32_t binding_ = {}, - uint32_t divisor_ = {} ) VULKAN_HPP_NOEXCEPT - : binding( binding_ ) - , divisor( divisor_ ) - {} - - VULKAN_HPP_CONSTEXPR VertexInputBindingDivisorDescriptionEXT( VertexInputBindingDivisorDescriptionEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VertexInputBindingDivisorDescriptionEXT( VkVertexInputBindingDivisorDescriptionEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VertexInputBindingDivisorDescriptionEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VertexInputBindingDivisorDescriptionEXT & - operator=( VertexInputBindingDivisorDescriptionEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputBindingDivisorDescriptionEXT & - operator=( VkVertexInputBindingDivisorDescriptionEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDivisorDescriptionEXT & - setBinding( uint32_t binding_ ) VULKAN_HPP_NOEXCEPT - { - binding = binding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDivisorDescriptionEXT & - setDivisor( uint32_t divisor_ ) VULKAN_HPP_NOEXCEPT - { - divisor = divisor_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVertexInputBindingDivisorDescriptionEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVertexInputBindingDivisorDescriptionEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( binding, divisor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VertexInputBindingDivisorDescriptionEXT const & ) const = default; -#else - bool operator==( VertexInputBindingDivisorDescriptionEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( binding == rhs.binding ) && ( divisor == rhs.divisor ); -# endif - } - - bool operator!=( VertexInputBindingDivisorDescriptionEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t binding = {}; - uint32_t divisor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT ) == - sizeof( VkVertexInputBindingDivisorDescriptionEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VertexInputBindingDivisorDescriptionEXT is not nothrow_move_constructible!" ); - - struct PipelineVertexInputDivisorStateCreateInfoEXT - { - using NativeType = VkPipelineVertexInputDivisorStateCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineVertexInputDivisorStateCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineVertexInputDivisorStateCreateInfoEXT( - uint32_t vertexBindingDivisorCount_ = {}, - const VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT * pVertexBindingDivisors_ = {} ) - VULKAN_HPP_NOEXCEPT - : vertexBindingDivisorCount( vertexBindingDivisorCount_ ) - , pVertexBindingDivisors( pVertexBindingDivisors_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineVertexInputDivisorStateCreateInfoEXT( - PipelineVertexInputDivisorStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineVertexInputDivisorStateCreateInfoEXT( VkPipelineVertexInputDivisorStateCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineVertexInputDivisorStateCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineVertexInputDivisorStateCreateInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT> const & vertexBindingDivisors_ ) - : vertexBindingDivisorCount( static_cast( vertexBindingDivisors_.size() ) ) - , pVertexBindingDivisors( vertexBindingDivisors_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineVertexInputDivisorStateCreateInfoEXT & - operator=( PipelineVertexInputDivisorStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineVertexInputDivisorStateCreateInfoEXT & - operator=( VkPipelineVertexInputDivisorStateCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputDivisorStateCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputDivisorStateCreateInfoEXT & - setVertexBindingDivisorCount( uint32_t vertexBindingDivisorCount_ ) VULKAN_HPP_NOEXCEPT - { - vertexBindingDivisorCount = vertexBindingDivisorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineVertexInputDivisorStateCreateInfoEXT & setPVertexBindingDivisors( - const VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT * pVertexBindingDivisors_ ) - VULKAN_HPP_NOEXCEPT - { - pVertexBindingDivisors = pVertexBindingDivisors_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineVertexInputDivisorStateCreateInfoEXT & setVertexBindingDivisors( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT> const & vertexBindingDivisors_ ) - VULKAN_HPP_NOEXCEPT - { - vertexBindingDivisorCount = static_cast( vertexBindingDivisors_.size() ); - pVertexBindingDivisors = vertexBindingDivisors_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineVertexInputDivisorStateCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineVertexInputDivisorStateCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, vertexBindingDivisorCount, pVertexBindingDivisors ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineVertexInputDivisorStateCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineVertexInputDivisorStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( vertexBindingDivisorCount == rhs.vertexBindingDivisorCount ) && - ( pVertexBindingDivisors == rhs.pVertexBindingDivisors ); -# endif - } - - bool operator!=( PipelineVertexInputDivisorStateCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineVertexInputDivisorStateCreateInfoEXT; - const void * pNext = {}; - uint32_t vertexBindingDivisorCount = {}; - const VULKAN_HPP_NAMESPACE::VertexInputBindingDivisorDescriptionEXT * pVertexBindingDivisors = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineVertexInputDivisorStateCreateInfoEXT ) == - sizeof( VkPipelineVertexInputDivisorStateCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineVertexInputDivisorStateCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineVertexInputDivisorStateCreateInfoEXT; - }; - - struct PipelineViewportCoarseSampleOrderStateCreateInfoNV - { - using NativeType = VkPipelineViewportCoarseSampleOrderStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineViewportCoarseSampleOrderStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineViewportCoarseSampleOrderStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType_ = - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV::eDefault, - uint32_t customSampleOrderCount_ = {}, - const VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV * pCustomSampleOrders_ = {} ) VULKAN_HPP_NOEXCEPT - : sampleOrderType( sampleOrderType_ ) - , customSampleOrderCount( customSampleOrderCount_ ) - , pCustomSampleOrders( pCustomSampleOrders_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineViewportCoarseSampleOrderStateCreateInfoNV( - PipelineViewportCoarseSampleOrderStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportCoarseSampleOrderStateCreateInfoNV( - VkPipelineViewportCoarseSampleOrderStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : PipelineViewportCoarseSampleOrderStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportCoarseSampleOrderStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - customSampleOrders_ ) - : sampleOrderType( sampleOrderType_ ) - , customSampleOrderCount( static_cast( customSampleOrders_.size() ) ) - , pCustomSampleOrders( customSampleOrders_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportCoarseSampleOrderStateCreateInfoNV & - operator=( PipelineViewportCoarseSampleOrderStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportCoarseSampleOrderStateCreateInfoNV & - operator=( VkPipelineViewportCoarseSampleOrderStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportCoarseSampleOrderStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportCoarseSampleOrderStateCreateInfoNV & - setSampleOrderType( VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType_ ) VULKAN_HPP_NOEXCEPT - { - sampleOrderType = sampleOrderType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportCoarseSampleOrderStateCreateInfoNV & - setCustomSampleOrderCount( uint32_t customSampleOrderCount_ ) VULKAN_HPP_NOEXCEPT - { - customSampleOrderCount = customSampleOrderCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportCoarseSampleOrderStateCreateInfoNV & setPCustomSampleOrders( - const VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV * pCustomSampleOrders_ ) VULKAN_HPP_NOEXCEPT - { - pCustomSampleOrders = pCustomSampleOrders_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportCoarseSampleOrderStateCreateInfoNV & setCustomSampleOrders( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - customSampleOrders_ ) VULKAN_HPP_NOEXCEPT - { - customSampleOrderCount = static_cast( customSampleOrders_.size() ); - pCustomSampleOrders = customSampleOrders_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportCoarseSampleOrderStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportCoarseSampleOrderStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, sampleOrderType, customSampleOrderCount, pCustomSampleOrders ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportCoarseSampleOrderStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineViewportCoarseSampleOrderStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( sampleOrderType == rhs.sampleOrderType ) && - ( customSampleOrderCount == rhs.customSampleOrderCount ) && - ( pCustomSampleOrders == rhs.pCustomSampleOrders ); -# endif - } - - bool operator!=( PipelineViewportCoarseSampleOrderStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportCoarseSampleOrderStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV sampleOrderType = - VULKAN_HPP_NAMESPACE::CoarseSampleOrderTypeNV::eDefault; - uint32_t customSampleOrderCount = {}; - const VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV * pCustomSampleOrders = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportCoarseSampleOrderStateCreateInfoNV ) == - sizeof( VkPipelineViewportCoarseSampleOrderStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportCoarseSampleOrderStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportCoarseSampleOrderStateCreateInfoNV; - }; - - struct PipelineViewportDepthClipControlCreateInfoEXT - { - using NativeType = VkPipelineViewportDepthClipControlCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineViewportDepthClipControlCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineViewportDepthClipControlCreateInfoEXT( - VULKAN_HPP_NAMESPACE::Bool32 negativeOneToOne_ = {} ) VULKAN_HPP_NOEXCEPT : negativeOneToOne( negativeOneToOne_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineViewportDepthClipControlCreateInfoEXT( - PipelineViewportDepthClipControlCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportDepthClipControlCreateInfoEXT( VkPipelineViewportDepthClipControlCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineViewportDepthClipControlCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportDepthClipControlCreateInfoEXT & - operator=( PipelineViewportDepthClipControlCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportDepthClipControlCreateInfoEXT & - operator=( VkPipelineViewportDepthClipControlCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportDepthClipControlCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportDepthClipControlCreateInfoEXT & - setNegativeOneToOne( VULKAN_HPP_NAMESPACE::Bool32 negativeOneToOne_ ) VULKAN_HPP_NOEXCEPT - { - negativeOneToOne = negativeOneToOne_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportDepthClipControlCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportDepthClipControlCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, negativeOneToOne ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportDepthClipControlCreateInfoEXT const & ) const = default; -#else - bool operator==( PipelineViewportDepthClipControlCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( negativeOneToOne == rhs.negativeOneToOne ); -# endif - } - - bool operator!=( PipelineViewportDepthClipControlCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportDepthClipControlCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 negativeOneToOne = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportDepthClipControlCreateInfoEXT ) == - sizeof( VkPipelineViewportDepthClipControlCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportDepthClipControlCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportDepthClipControlCreateInfoEXT; - }; - - struct PipelineViewportExclusiveScissorStateCreateInfoNV - { - using NativeType = VkPipelineViewportExclusiveScissorStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineViewportExclusiveScissorStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineViewportExclusiveScissorStateCreateInfoNV( - uint32_t exclusiveScissorCount_ = {}, - const VULKAN_HPP_NAMESPACE::Rect2D * pExclusiveScissors_ = {} ) VULKAN_HPP_NOEXCEPT - : exclusiveScissorCount( exclusiveScissorCount_ ) - , pExclusiveScissors( pExclusiveScissors_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineViewportExclusiveScissorStateCreateInfoNV( - PipelineViewportExclusiveScissorStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportExclusiveScissorStateCreateInfoNV( VkPipelineViewportExclusiveScissorStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineViewportExclusiveScissorStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportExclusiveScissorStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & exclusiveScissors_ ) - : exclusiveScissorCount( static_cast( exclusiveScissors_.size() ) ) - , pExclusiveScissors( exclusiveScissors_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportExclusiveScissorStateCreateInfoNV & - operator=( PipelineViewportExclusiveScissorStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportExclusiveScissorStateCreateInfoNV & - operator=( VkPipelineViewportExclusiveScissorStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportExclusiveScissorStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportExclusiveScissorStateCreateInfoNV & - setExclusiveScissorCount( uint32_t exclusiveScissorCount_ ) VULKAN_HPP_NOEXCEPT - { - exclusiveScissorCount = exclusiveScissorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportExclusiveScissorStateCreateInfoNV & - setPExclusiveScissors( const VULKAN_HPP_NAMESPACE::Rect2D * pExclusiveScissors_ ) VULKAN_HPP_NOEXCEPT - { - pExclusiveScissors = pExclusiveScissors_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportExclusiveScissorStateCreateInfoNV & setExclusiveScissors( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & exclusiveScissors_ ) - VULKAN_HPP_NOEXCEPT - { - exclusiveScissorCount = static_cast( exclusiveScissors_.size() ); - pExclusiveScissors = exclusiveScissors_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportExclusiveScissorStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportExclusiveScissorStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, exclusiveScissorCount, pExclusiveScissors ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportExclusiveScissorStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineViewportExclusiveScissorStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( exclusiveScissorCount == rhs.exclusiveScissorCount ) && ( pExclusiveScissors == rhs.pExclusiveScissors ); -# endif - } - - bool operator!=( PipelineViewportExclusiveScissorStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportExclusiveScissorStateCreateInfoNV; - const void * pNext = {}; - uint32_t exclusiveScissorCount = {}; - const VULKAN_HPP_NAMESPACE::Rect2D * pExclusiveScissors = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportExclusiveScissorStateCreateInfoNV ) == - sizeof( VkPipelineViewportExclusiveScissorStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportExclusiveScissorStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportExclusiveScissorStateCreateInfoNV; - }; - - struct ShadingRatePaletteNV - { - using NativeType = VkShadingRatePaletteNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ShadingRatePaletteNV( - uint32_t shadingRatePaletteEntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV * pShadingRatePaletteEntries_ = {} ) VULKAN_HPP_NOEXCEPT - : shadingRatePaletteEntryCount( shadingRatePaletteEntryCount_ ) - , pShadingRatePaletteEntries( pShadingRatePaletteEntries_ ) - {} - - VULKAN_HPP_CONSTEXPR ShadingRatePaletteNV( ShadingRatePaletteNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShadingRatePaletteNV( VkShadingRatePaletteNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ShadingRatePaletteNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ShadingRatePaletteNV( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - shadingRatePaletteEntries_ ) - : shadingRatePaletteEntryCount( static_cast( shadingRatePaletteEntries_.size() ) ) - , pShadingRatePaletteEntries( shadingRatePaletteEntries_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ShadingRatePaletteNV & operator=( ShadingRatePaletteNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShadingRatePaletteNV & operator=( VkShadingRatePaletteNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ShadingRatePaletteNV & - setShadingRatePaletteEntryCount( uint32_t shadingRatePaletteEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - shadingRatePaletteEntryCount = shadingRatePaletteEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ShadingRatePaletteNV & setPShadingRatePaletteEntries( - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV * pShadingRatePaletteEntries_ ) VULKAN_HPP_NOEXCEPT - { - pShadingRatePaletteEntries = pShadingRatePaletteEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ShadingRatePaletteNV & setShadingRatePaletteEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - shadingRatePaletteEntries_ ) VULKAN_HPP_NOEXCEPT - { - shadingRatePaletteEntryCount = static_cast( shadingRatePaletteEntries_.size() ); - pShadingRatePaletteEntries = shadingRatePaletteEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkShadingRatePaletteNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkShadingRatePaletteNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( shadingRatePaletteEntryCount, pShadingRatePaletteEntries ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ShadingRatePaletteNV const & ) const = default; -#else - bool operator==( ShadingRatePaletteNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( shadingRatePaletteEntryCount == rhs.shadingRatePaletteEntryCount ) && - ( pShadingRatePaletteEntries == rhs.pShadingRatePaletteEntries ); -# endif - } - - bool operator!=( ShadingRatePaletteNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t shadingRatePaletteEntryCount = {}; - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV * pShadingRatePaletteEntries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV ) == sizeof( VkShadingRatePaletteNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ShadingRatePaletteNV is not nothrow_move_constructible!" ); - - struct PipelineViewportShadingRateImageStateCreateInfoNV - { - using NativeType = VkPipelineViewportShadingRateImageStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineViewportShadingRateImageStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineViewportShadingRateImageStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::Bool32 shadingRateImageEnable_ = {}, - uint32_t viewportCount_ = {}, - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV * pShadingRatePalettes_ = {} ) VULKAN_HPP_NOEXCEPT - : shadingRateImageEnable( shadingRateImageEnable_ ) - , viewportCount( viewportCount_ ) - , pShadingRatePalettes( pShadingRatePalettes_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineViewportShadingRateImageStateCreateInfoNV( - PipelineViewportShadingRateImageStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportShadingRateImageStateCreateInfoNV( VkPipelineViewportShadingRateImageStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineViewportShadingRateImageStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportShadingRateImageStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::Bool32 shadingRateImageEnable_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - shadingRatePalettes_ ) - : shadingRateImageEnable( shadingRateImageEnable_ ) - , viewportCount( static_cast( shadingRatePalettes_.size() ) ) - , pShadingRatePalettes( shadingRatePalettes_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportShadingRateImageStateCreateInfoNV & - operator=( PipelineViewportShadingRateImageStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportShadingRateImageStateCreateInfoNV & - operator=( VkPipelineViewportShadingRateImageStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = - *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportShadingRateImageStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportShadingRateImageStateCreateInfoNV & - setShadingRateImageEnable( VULKAN_HPP_NAMESPACE::Bool32 shadingRateImageEnable_ ) VULKAN_HPP_NOEXCEPT - { - shadingRateImageEnable = shadingRateImageEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportShadingRateImageStateCreateInfoNV & - setViewportCount( uint32_t viewportCount_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = viewportCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportShadingRateImageStateCreateInfoNV & setPShadingRatePalettes( - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV * pShadingRatePalettes_ ) VULKAN_HPP_NOEXCEPT - { - pShadingRatePalettes = pShadingRatePalettes_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportShadingRateImageStateCreateInfoNV & setShadingRatePalettes( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - shadingRatePalettes_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = static_cast( shadingRatePalettes_.size() ); - pShadingRatePalettes = shadingRatePalettes_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportShadingRateImageStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportShadingRateImageStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, shadingRateImageEnable, viewportCount, pShadingRatePalettes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportShadingRateImageStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineViewportShadingRateImageStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( shadingRateImageEnable == rhs.shadingRateImageEnable ) && ( viewportCount == rhs.viewportCount ) && - ( pShadingRatePalettes == rhs.pShadingRatePalettes ); -# endif - } - - bool operator!=( PipelineViewportShadingRateImageStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportShadingRateImageStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 shadingRateImageEnable = {}; - uint32_t viewportCount = {}; - const VULKAN_HPP_NAMESPACE::ShadingRatePaletteNV * pShadingRatePalettes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportShadingRateImageStateCreateInfoNV ) == - sizeof( VkPipelineViewportShadingRateImageStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportShadingRateImageStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportShadingRateImageStateCreateInfoNV; - }; - - struct ViewportSwizzleNV - { - using NativeType = VkViewportSwizzleNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - ViewportSwizzleNV( VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV x_ = - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX, - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV y_ = - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX, - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV z_ = - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX, - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV w_ = - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX ) VULKAN_HPP_NOEXCEPT - : x( x_ ) - , y( y_ ) - , z( z_ ) - , w( w_ ) - {} - - VULKAN_HPP_CONSTEXPR ViewportSwizzleNV( ViewportSwizzleNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ViewportSwizzleNV( VkViewportSwizzleNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ViewportSwizzleNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ViewportSwizzleNV & operator=( ViewportSwizzleNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ViewportSwizzleNV & operator=( VkViewportSwizzleNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ViewportSwizzleNV & - setX( VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV x_ ) VULKAN_HPP_NOEXCEPT - { - x = x_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ViewportSwizzleNV & - setY( VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV y_ ) VULKAN_HPP_NOEXCEPT - { - y = y_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ViewportSwizzleNV & - setZ( VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV z_ ) VULKAN_HPP_NOEXCEPT - { - z = z_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ViewportSwizzleNV & - setW( VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV w_ ) VULKAN_HPP_NOEXCEPT - { - w = w_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkViewportSwizzleNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkViewportSwizzleNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( x, y, z, w ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ViewportSwizzleNV const & ) const = default; -#else - bool operator==( ViewportSwizzleNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( x == rhs.x ) && ( y == rhs.y ) && ( z == rhs.z ) && ( w == rhs.w ); -# endif - } - - bool operator!=( ViewportSwizzleNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV x = VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX; - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV y = VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX; - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV z = VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX; - VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV w = VULKAN_HPP_NAMESPACE::ViewportCoordinateSwizzleNV::ePositiveX; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ViewportSwizzleNV ) == sizeof( VkViewportSwizzleNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ViewportSwizzleNV is not nothrow_move_constructible!" ); - - struct PipelineViewportSwizzleStateCreateInfoNV - { - using NativeType = VkPipelineViewportSwizzleStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineViewportSwizzleStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineViewportSwizzleStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineViewportSwizzleStateCreateFlagsNV flags_ = {}, - uint32_t viewportCount_ = {}, - const VULKAN_HPP_NAMESPACE::ViewportSwizzleNV * pViewportSwizzles_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , viewportCount( viewportCount_ ) - , pViewportSwizzles( pViewportSwizzles_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineViewportSwizzleStateCreateInfoNV( - PipelineViewportSwizzleStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportSwizzleStateCreateInfoNV( VkPipelineViewportSwizzleStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineViewportSwizzleStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportSwizzleStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineViewportSwizzleStateCreateFlagsNV flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - viewportSwizzles_ ) - : flags( flags_ ) - , viewportCount( static_cast( viewportSwizzles_.size() ) ) - , pViewportSwizzles( viewportSwizzles_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportSwizzleStateCreateInfoNV & - operator=( PipelineViewportSwizzleStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportSwizzleStateCreateInfoNV & - operator=( VkPipelineViewportSwizzleStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportSwizzleStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportSwizzleStateCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::PipelineViewportSwizzleStateCreateFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportSwizzleStateCreateInfoNV & - setViewportCount( uint32_t viewportCount_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = viewportCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportSwizzleStateCreateInfoNV & - setPViewportSwizzles( const VULKAN_HPP_NAMESPACE::ViewportSwizzleNV * pViewportSwizzles_ ) VULKAN_HPP_NOEXCEPT - { - pViewportSwizzles = pViewportSwizzles_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportSwizzleStateCreateInfoNV & setViewportSwizzles( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - viewportSwizzles_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = static_cast( viewportSwizzles_.size() ); - pViewportSwizzles = viewportSwizzles_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportSwizzleStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportSwizzleStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, viewportCount, pViewportSwizzles ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportSwizzleStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineViewportSwizzleStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( viewportCount == rhs.viewportCount ) && ( pViewportSwizzles == rhs.pViewportSwizzles ); -# endif - } - - bool operator!=( PipelineViewportSwizzleStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportSwizzleStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineViewportSwizzleStateCreateFlagsNV flags = {}; - uint32_t viewportCount = {}; - const VULKAN_HPP_NAMESPACE::ViewportSwizzleNV * pViewportSwizzles = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportSwizzleStateCreateInfoNV ) == - sizeof( VkPipelineViewportSwizzleStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportSwizzleStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportSwizzleStateCreateInfoNV; - }; - - struct ViewportWScalingNV - { - using NativeType = VkViewportWScalingNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ViewportWScalingNV( float xcoeff_ = {}, float ycoeff_ = {} ) VULKAN_HPP_NOEXCEPT - : xcoeff( xcoeff_ ) - , ycoeff( ycoeff_ ) - {} - - VULKAN_HPP_CONSTEXPR ViewportWScalingNV( ViewportWScalingNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ViewportWScalingNV( VkViewportWScalingNV const & rhs ) VULKAN_HPP_NOEXCEPT - : ViewportWScalingNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ViewportWScalingNV & operator=( ViewportWScalingNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ViewportWScalingNV & operator=( VkViewportWScalingNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ViewportWScalingNV & setXcoeff( float xcoeff_ ) VULKAN_HPP_NOEXCEPT - { - xcoeff = xcoeff_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ViewportWScalingNV & setYcoeff( float ycoeff_ ) VULKAN_HPP_NOEXCEPT - { - ycoeff = ycoeff_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkViewportWScalingNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkViewportWScalingNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( xcoeff, ycoeff ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ViewportWScalingNV const & ) const = default; -#else - bool operator==( ViewportWScalingNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( xcoeff == rhs.xcoeff ) && ( ycoeff == rhs.ycoeff ); -# endif - } - - bool operator!=( ViewportWScalingNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - float xcoeff = {}; - float ycoeff = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ViewportWScalingNV ) == sizeof( VkViewportWScalingNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ViewportWScalingNV is not nothrow_move_constructible!" ); - - struct PipelineViewportWScalingStateCreateInfoNV - { - using NativeType = VkPipelineViewportWScalingStateCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::ePipelineViewportWScalingStateCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PipelineViewportWScalingStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::Bool32 viewportWScalingEnable_ = {}, - uint32_t viewportCount_ = {}, - const VULKAN_HPP_NAMESPACE::ViewportWScalingNV * pViewportWScalings_ = {} ) VULKAN_HPP_NOEXCEPT - : viewportWScalingEnable( viewportWScalingEnable_ ) - , viewportCount( viewportCount_ ) - , pViewportWScalings( pViewportWScalings_ ) - {} - - VULKAN_HPP_CONSTEXPR PipelineViewportWScalingStateCreateInfoNV( - PipelineViewportWScalingStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportWScalingStateCreateInfoNV( VkPipelineViewportWScalingStateCreateInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : PipelineViewportWScalingStateCreateInfoNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportWScalingStateCreateInfoNV( - VULKAN_HPP_NAMESPACE::Bool32 viewportWScalingEnable_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - viewportWScalings_ ) - : viewportWScalingEnable( viewportWScalingEnable_ ) - , viewportCount( static_cast( viewportWScalings_.size() ) ) - , pViewportWScalings( viewportWScalings_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PipelineViewportWScalingStateCreateInfoNV & - operator=( PipelineViewportWScalingStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PipelineViewportWScalingStateCreateInfoNV & - operator=( VkPipelineViewportWScalingStateCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PipelineViewportWScalingStateCreateInfoNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportWScalingStateCreateInfoNV & - setViewportWScalingEnable( VULKAN_HPP_NAMESPACE::Bool32 viewportWScalingEnable_ ) VULKAN_HPP_NOEXCEPT - { - viewportWScalingEnable = viewportWScalingEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportWScalingStateCreateInfoNV & - setViewportCount( uint32_t viewportCount_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = viewportCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PipelineViewportWScalingStateCreateInfoNV & - setPViewportWScalings( const VULKAN_HPP_NAMESPACE::ViewportWScalingNV * pViewportWScalings_ ) VULKAN_HPP_NOEXCEPT - { - pViewportWScalings = pViewportWScalings_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PipelineViewportWScalingStateCreateInfoNV & setViewportWScalings( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - viewportWScalings_ ) VULKAN_HPP_NOEXCEPT - { - viewportCount = static_cast( viewportWScalings_.size() ); - pViewportWScalings = viewportWScalings_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPipelineViewportWScalingStateCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPipelineViewportWScalingStateCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, viewportWScalingEnable, viewportCount, pViewportWScalings ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PipelineViewportWScalingStateCreateInfoNV const & ) const = default; -#else - bool operator==( PipelineViewportWScalingStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( viewportWScalingEnable == rhs.viewportWScalingEnable ) && ( viewportCount == rhs.viewportCount ) && - ( pViewportWScalings == rhs.pViewportWScalings ); -# endif - } - - bool operator!=( PipelineViewportWScalingStateCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineViewportWScalingStateCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 viewportWScalingEnable = {}; - uint32_t viewportCount = {}; - const VULKAN_HPP_NAMESPACE::ViewportWScalingNV * pViewportWScalings = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PipelineViewportWScalingStateCreateInfoNV ) == - sizeof( VkPipelineViewportWScalingStateCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "PipelineViewportWScalingStateCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PipelineViewportWScalingStateCreateInfoNV; - }; - -#if defined( VK_USE_PLATFORM_GGP ) - struct PresentFrameTokenGGP - { - using NativeType = VkPresentFrameTokenGGP; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePresentFrameTokenGGP; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PresentFrameTokenGGP( GgpFrameToken frameToken_ = {} ) VULKAN_HPP_NOEXCEPT - : frameToken( frameToken_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentFrameTokenGGP( PresentFrameTokenGGP const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentFrameTokenGGP( VkPresentFrameTokenGGP const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentFrameTokenGGP( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentFrameTokenGGP & operator=( PresentFrameTokenGGP const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentFrameTokenGGP & operator=( VkPresentFrameTokenGGP const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentFrameTokenGGP & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentFrameTokenGGP & setFrameToken( GgpFrameToken frameToken_ ) VULKAN_HPP_NOEXCEPT - { - frameToken = frameToken_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentFrameTokenGGP const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentFrameTokenGGP &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, frameToken ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( PresentFrameTokenGGP const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &frameToken, &rhs.frameToken, sizeof( GgpFrameToken ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( PresentFrameTokenGGP const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( memcmp( &frameToken, &rhs.frameToken, sizeof( GgpFrameToken ) ) == 0 ); - } - - bool operator!=( PresentFrameTokenGGP const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePresentFrameTokenGGP; - const void * pNext = {}; - GgpFrameToken frameToken = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentFrameTokenGGP ) == sizeof( VkPresentFrameTokenGGP ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentFrameTokenGGP is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PresentFrameTokenGGP; - }; -#endif /*VK_USE_PLATFORM_GGP*/ - - struct PresentIdKHR - { - using NativeType = VkPresentIdKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePresentIdKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PresentIdKHR( uint32_t swapchainCount_ = {}, - const uint64_t * pPresentIds_ = {} ) VULKAN_HPP_NOEXCEPT - : swapchainCount( swapchainCount_ ) - , pPresentIds( pPresentIds_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentIdKHR( PresentIdKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentIdKHR( VkPresentIdKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentIdKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentIdKHR( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & presentIds_ ) - : swapchainCount( static_cast( presentIds_.size() ) ), pPresentIds( presentIds_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentIdKHR & operator=( PresentIdKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentIdKHR & operator=( VkPresentIdKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentIdKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentIdKHR & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = swapchainCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentIdKHR & setPPresentIds( const uint64_t * pPresentIds_ ) VULKAN_HPP_NOEXCEPT - { - pPresentIds = pPresentIds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentIdKHR & setPresentIds( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & presentIds_ ) - VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( presentIds_.size() ); - pPresentIds = presentIds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentIdKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentIdKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchainCount, pPresentIds ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PresentIdKHR const & ) const = default; -#else - bool operator==( PresentIdKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchainCount == rhs.swapchainCount ) && - ( pPresentIds == rhs.pPresentIds ); -# endif - } - - bool operator!=( PresentIdKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePresentIdKHR; - const void * pNext = {}; - uint32_t swapchainCount = {}; - const uint64_t * pPresentIds = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentIdKHR ) == sizeof( VkPresentIdKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentIdKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PresentIdKHR; - }; - - struct PresentInfoKHR - { - using NativeType = VkPresentInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePresentInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PresentInfoKHR( uint32_t waitSemaphoreCount_ = {}, - const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores_ = {}, - uint32_t swapchainCount_ = {}, - const VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains_ = {}, - const uint32_t * pImageIndices_ = {}, - VULKAN_HPP_NAMESPACE::Result * pResults_ = {} ) VULKAN_HPP_NOEXCEPT - : waitSemaphoreCount( waitSemaphoreCount_ ) - , pWaitSemaphores( pWaitSemaphores_ ) - , swapchainCount( swapchainCount_ ) - , pSwapchains( pSwapchains_ ) - , pImageIndices( pImageIndices_ ) - , pResults( pResults_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentInfoKHR( PresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentInfoKHR( VkPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentInfoKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphores_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & swapchains_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & imageIndices_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & results_ = {} ) - : waitSemaphoreCount( static_cast( waitSemaphores_.size() ) ) - , pWaitSemaphores( waitSemaphores_.data() ) - , swapchainCount( static_cast( swapchains_.size() ) ) - , pSwapchains( swapchains_.data() ) - , pImageIndices( imageIndices_.data() ) - , pResults( results_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( swapchains_.size() == imageIndices_.size() ); - VULKAN_HPP_ASSERT( results_.empty() || ( swapchains_.size() == results_.size() ) ); - VULKAN_HPP_ASSERT( results_.empty() || ( imageIndices_.size() == results_.size() ) ); -# else - if ( swapchains_.size() != imageIndices_.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::PresentInfoKHR::PresentInfoKHR: swapchains_.size() != imageIndices_.size()" ); - } - if ( !results_.empty() && ( swapchains_.size() != results_.size() ) ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::PresentInfoKHR::PresentInfoKHR: !results_.empty() && ( swapchains_.size() != results_.size() )" ); - } - if ( !results_.empty() && ( imageIndices_.size() != results_.size() ) ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::PresentInfoKHR::PresentInfoKHR: !results_.empty() && ( imageIndices_.size() != results_.size() )" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentInfoKHR & operator=( PresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentInfoKHR & operator=( VkPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = waitSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & - setPWaitSemaphores( const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphores = pWaitSemaphores_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentInfoKHR & setWaitSemaphores( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphores_ ) - VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = static_cast( waitSemaphores_.size() ); - pWaitSemaphores = waitSemaphores_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = swapchainCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & - setPSwapchains( const VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains_ ) VULKAN_HPP_NOEXCEPT - { - pSwapchains = pSwapchains_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentInfoKHR & setSwapchains( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & swapchains_ ) - VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( swapchains_.size() ); - pSwapchains = swapchains_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & setPImageIndices( const uint32_t * pImageIndices_ ) VULKAN_HPP_NOEXCEPT - { - pImageIndices = pImageIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentInfoKHR & setImageIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & imageIndices_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( imageIndices_.size() ); - pImageIndices = imageIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 PresentInfoKHR & setPResults( VULKAN_HPP_NAMESPACE::Result * pResults_ ) VULKAN_HPP_NOEXCEPT - { - pResults = pResults_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentInfoKHR & setResults( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & results_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( results_.size() ); - pResults = results_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, waitSemaphoreCount, pWaitSemaphores, swapchainCount, pSwapchains, pImageIndices, pResults ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PresentInfoKHR const & ) const = default; -#else - bool operator==( PresentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( waitSemaphoreCount == rhs.waitSemaphoreCount ) && - ( pWaitSemaphores == rhs.pWaitSemaphores ) && ( swapchainCount == rhs.swapchainCount ) && - ( pSwapchains == rhs.pSwapchains ) && ( pImageIndices == rhs.pImageIndices ) && - ( pResults == rhs.pResults ); -# endif - } - - bool operator!=( PresentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePresentInfoKHR; - const void * pNext = {}; - uint32_t waitSemaphoreCount = {}; - const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores = {}; - uint32_t swapchainCount = {}; - const VULKAN_HPP_NAMESPACE::SwapchainKHR * pSwapchains = {}; - const uint32_t * pImageIndices = {}; - VULKAN_HPP_NAMESPACE::Result * pResults = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentInfoKHR ) == sizeof( VkPresentInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PresentInfoKHR; - }; - - struct RectLayerKHR - { - using NativeType = VkRectLayerKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RectLayerKHR( VULKAN_HPP_NAMESPACE::Offset2D offset_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D extent_ = {}, - uint32_t layer_ = {} ) VULKAN_HPP_NOEXCEPT - : offset( offset_ ) - , extent( extent_ ) - , layer( layer_ ) - {} - - VULKAN_HPP_CONSTEXPR RectLayerKHR( RectLayerKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RectLayerKHR( VkRectLayerKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : RectLayerKHR( *reinterpret_cast( &rhs ) ) - {} - - explicit RectLayerKHR( Rect2D const & rect2D, uint32_t layer_ = {} ) - : offset( rect2D.offset ), extent( rect2D.extent ), layer( layer_ ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RectLayerKHR & operator=( RectLayerKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RectLayerKHR & operator=( VkRectLayerKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RectLayerKHR & - setOffset( VULKAN_HPP_NAMESPACE::Offset2D const & offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RectLayerKHR & - setExtent( VULKAN_HPP_NAMESPACE::Extent2D const & extent_ ) VULKAN_HPP_NOEXCEPT - { - extent = extent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RectLayerKHR & setLayer( uint32_t layer_ ) VULKAN_HPP_NOEXCEPT - { - layer = layer_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRectLayerKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRectLayerKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( offset, extent, layer ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RectLayerKHR const & ) const = default; -#else - bool operator==( RectLayerKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( offset == rhs.offset ) && ( extent == rhs.extent ) && ( layer == rhs.layer ); -# endif - } - - bool operator!=( RectLayerKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Offset2D offset = {}; - VULKAN_HPP_NAMESPACE::Extent2D extent = {}; - uint32_t layer = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RectLayerKHR ) == sizeof( VkRectLayerKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RectLayerKHR is not nothrow_move_constructible!" ); - - struct PresentRegionKHR - { - using NativeType = VkPresentRegionKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PresentRegionKHR( uint32_t rectangleCount_ = {}, - const VULKAN_HPP_NAMESPACE::RectLayerKHR * pRectangles_ = {} ) VULKAN_HPP_NOEXCEPT - : rectangleCount( rectangleCount_ ) - , pRectangles( pRectangles_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentRegionKHR( PresentRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentRegionKHR( VkPresentRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentRegionKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentRegionKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & rectangles_ ) - : rectangleCount( static_cast( rectangles_.size() ) ), pRectangles( rectangles_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentRegionKHR & operator=( PresentRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentRegionKHR & operator=( VkPresentRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentRegionKHR & setRectangleCount( uint32_t rectangleCount_ ) VULKAN_HPP_NOEXCEPT - { - rectangleCount = rectangleCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentRegionKHR & - setPRectangles( const VULKAN_HPP_NAMESPACE::RectLayerKHR * pRectangles_ ) VULKAN_HPP_NOEXCEPT - { - pRectangles = pRectangles_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentRegionKHR & setRectangles( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & rectangles_ ) - VULKAN_HPP_NOEXCEPT - { - rectangleCount = static_cast( rectangles_.size() ); - pRectangles = rectangles_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentRegionKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentRegionKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( rectangleCount, pRectangles ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PresentRegionKHR const & ) const = default; -#else - bool operator==( PresentRegionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( rectangleCount == rhs.rectangleCount ) && ( pRectangles == rhs.pRectangles ); -# endif - } - - bool operator!=( PresentRegionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t rectangleCount = {}; - const VULKAN_HPP_NAMESPACE::RectLayerKHR * pRectangles = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentRegionKHR ) == sizeof( VkPresentRegionKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentRegionKHR is not nothrow_move_constructible!" ); - - struct PresentRegionsKHR - { - using NativeType = VkPresentRegionsKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePresentRegionsKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PresentRegionsKHR( uint32_t swapchainCount_ = {}, - const VULKAN_HPP_NAMESPACE::PresentRegionKHR * pRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : swapchainCount( swapchainCount_ ) - , pRegions( pRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentRegionsKHR( PresentRegionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentRegionsKHR( VkPresentRegionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentRegionsKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentRegionsKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - : swapchainCount( static_cast( regions_.size() ) ), pRegions( regions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentRegionsKHR & operator=( PresentRegionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentRegionsKHR & operator=( VkPresentRegionsKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentRegionsKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentRegionsKHR & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = swapchainCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentRegionsKHR & - setPRegions( const VULKAN_HPP_NAMESPACE::PresentRegionKHR * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentRegionsKHR & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentRegionsKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentRegionsKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchainCount, pRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PresentRegionsKHR const & ) const = default; -#else - bool operator==( PresentRegionsKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchainCount == rhs.swapchainCount ) && - ( pRegions == rhs.pRegions ); -# endif - } - - bool operator!=( PresentRegionsKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePresentRegionsKHR; - const void * pNext = {}; - uint32_t swapchainCount = {}; - const VULKAN_HPP_NAMESPACE::PresentRegionKHR * pRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentRegionsKHR ) == sizeof( VkPresentRegionsKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentRegionsKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PresentRegionsKHR; - }; - - struct PresentTimeGOOGLE - { - using NativeType = VkPresentTimeGOOGLE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR PresentTimeGOOGLE( uint32_t presentID_ = {}, - uint64_t desiredPresentTime_ = {} ) VULKAN_HPP_NOEXCEPT - : presentID( presentID_ ) - , desiredPresentTime( desiredPresentTime_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentTimeGOOGLE( PresentTimeGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentTimeGOOGLE( VkPresentTimeGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentTimeGOOGLE( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentTimeGOOGLE & operator=( PresentTimeGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentTimeGOOGLE & operator=( VkPresentTimeGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentTimeGOOGLE & setPresentID( uint32_t presentID_ ) VULKAN_HPP_NOEXCEPT - { - presentID = presentID_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentTimeGOOGLE & - setDesiredPresentTime( uint64_t desiredPresentTime_ ) VULKAN_HPP_NOEXCEPT - { - desiredPresentTime = desiredPresentTime_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentTimeGOOGLE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentTimeGOOGLE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( presentID, desiredPresentTime ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PresentTimeGOOGLE const & ) const = default; -#else - bool operator==( PresentTimeGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( presentID == rhs.presentID ) && ( desiredPresentTime == rhs.desiredPresentTime ); -# endif - } - - bool operator!=( PresentTimeGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t presentID = {}; - uint64_t desiredPresentTime = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentTimeGOOGLE ) == sizeof( VkPresentTimeGOOGLE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentTimeGOOGLE is not nothrow_move_constructible!" ); - - struct PresentTimesInfoGOOGLE - { - using NativeType = VkPresentTimesInfoGOOGLE; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePresentTimesInfoGOOGLE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PresentTimesInfoGOOGLE( uint32_t swapchainCount_ = {}, - const VULKAN_HPP_NAMESPACE::PresentTimeGOOGLE * pTimes_ = {} ) VULKAN_HPP_NOEXCEPT - : swapchainCount( swapchainCount_ ) - , pTimes( pTimes_ ) - {} - - VULKAN_HPP_CONSTEXPR PresentTimesInfoGOOGLE( PresentTimesInfoGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentTimesInfoGOOGLE( VkPresentTimesInfoGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - : PresentTimesInfoGOOGLE( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentTimesInfoGOOGLE( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & times_ ) - : swapchainCount( static_cast( times_.size() ) ), pTimes( times_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PresentTimesInfoGOOGLE & operator=( PresentTimesInfoGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PresentTimesInfoGOOGLE & operator=( VkPresentTimesInfoGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PresentTimesInfoGOOGLE & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentTimesInfoGOOGLE & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT - { - swapchainCount = swapchainCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PresentTimesInfoGOOGLE & - setPTimes( const VULKAN_HPP_NAMESPACE::PresentTimeGOOGLE * pTimes_ ) VULKAN_HPP_NOEXCEPT - { - pTimes = pTimes_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - PresentTimesInfoGOOGLE & setTimes( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & times_ ) - VULKAN_HPP_NOEXCEPT - { - swapchainCount = static_cast( times_.size() ); - pTimes = times_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPresentTimesInfoGOOGLE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPresentTimesInfoGOOGLE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, swapchainCount, pTimes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PresentTimesInfoGOOGLE const & ) const = default; -#else - bool operator==( PresentTimesInfoGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( swapchainCount == rhs.swapchainCount ) && - ( pTimes == rhs.pTimes ); -# endif - } - - bool operator!=( PresentTimesInfoGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePresentTimesInfoGOOGLE; - const void * pNext = {}; - uint32_t swapchainCount = {}; - const VULKAN_HPP_NAMESPACE::PresentTimeGOOGLE * pTimes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PresentTimesInfoGOOGLE ) == - sizeof( VkPresentTimesInfoGOOGLE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PresentTimesInfoGOOGLE is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PresentTimesInfoGOOGLE; - }; - - struct PrivateDataSlotCreateInfo - { - using NativeType = VkPrivateDataSlotCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePrivateDataSlotCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - PrivateDataSlotCreateInfo( VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - PrivateDataSlotCreateInfo( PrivateDataSlotCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PrivateDataSlotCreateInfo( VkPrivateDataSlotCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : PrivateDataSlotCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - PrivateDataSlotCreateInfo & operator=( PrivateDataSlotCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - PrivateDataSlotCreateInfo & operator=( VkPrivateDataSlotCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 PrivateDataSlotCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 PrivateDataSlotCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkPrivateDataSlotCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkPrivateDataSlotCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( PrivateDataSlotCreateInfo const & ) const = default; -#else - bool operator==( PrivateDataSlotCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( PrivateDataSlotCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePrivateDataSlotCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::PrivateDataSlotCreateInfo ) == - sizeof( VkPrivateDataSlotCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "PrivateDataSlotCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = PrivateDataSlotCreateInfo; - }; - using PrivateDataSlotCreateInfoEXT = PrivateDataSlotCreateInfo; - - struct ProtectedSubmitInfo - { - using NativeType = VkProtectedSubmitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eProtectedSubmitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ProtectedSubmitInfo( VULKAN_HPP_NAMESPACE::Bool32 protectedSubmit_ = {} ) VULKAN_HPP_NOEXCEPT - : protectedSubmit( protectedSubmit_ ) - {} - - VULKAN_HPP_CONSTEXPR ProtectedSubmitInfo( ProtectedSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ProtectedSubmitInfo( VkProtectedSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ProtectedSubmitInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ProtectedSubmitInfo & operator=( ProtectedSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ProtectedSubmitInfo & operator=( VkProtectedSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ProtectedSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ProtectedSubmitInfo & - setProtectedSubmit( VULKAN_HPP_NAMESPACE::Bool32 protectedSubmit_ ) VULKAN_HPP_NOEXCEPT - { - protectedSubmit = protectedSubmit_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkProtectedSubmitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkProtectedSubmitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, protectedSubmit ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ProtectedSubmitInfo const & ) const = default; -#else - bool operator==( ProtectedSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( protectedSubmit == rhs.protectedSubmit ); -# endif - } - - bool operator!=( ProtectedSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eProtectedSubmitInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 protectedSubmit = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ProtectedSubmitInfo ) == sizeof( VkProtectedSubmitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ProtectedSubmitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ProtectedSubmitInfo; - }; - - struct QueryPoolCreateInfo - { - using NativeType = VkQueryPoolCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eQueryPoolCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR QueryPoolCreateInfo( - VULKAN_HPP_NAMESPACE::QueryPoolCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::QueryType queryType_ = VULKAN_HPP_NAMESPACE::QueryType::eOcclusion, - uint32_t queryCount_ = {}, - VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , queryType( queryType_ ) - , queryCount( queryCount_ ) - , pipelineStatistics( pipelineStatistics_ ) - {} - - VULKAN_HPP_CONSTEXPR QueryPoolCreateInfo( QueryPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueryPoolCreateInfo( VkQueryPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : QueryPoolCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueryPoolCreateInfo & operator=( QueryPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueryPoolCreateInfo & operator=( VkQueryPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 QueryPoolCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::QueryPoolCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolCreateInfo & - setQueryType( VULKAN_HPP_NAMESPACE::QueryType queryType_ ) VULKAN_HPP_NOEXCEPT - { - queryType = queryType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolCreateInfo & setQueryCount( uint32_t queryCount_ ) VULKAN_HPP_NOEXCEPT - { - queryCount = queryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolCreateInfo & - setPipelineStatistics( VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics_ ) VULKAN_HPP_NOEXCEPT - { - pipelineStatistics = pipelineStatistics_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkQueryPoolCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueryPoolCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, queryType, queryCount, pipelineStatistics ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueryPoolCreateInfo const & ) const = default; -#else - bool operator==( QueryPoolCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( queryType == rhs.queryType ) && ( queryCount == rhs.queryCount ) && - ( pipelineStatistics == rhs.pipelineStatistics ); -# endif - } - - bool operator!=( QueryPoolCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueryPoolCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::QueryPoolCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::QueryType queryType = VULKAN_HPP_NAMESPACE::QueryType::eOcclusion; - uint32_t queryCount = {}; - VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueryPoolCreateInfo ) == sizeof( VkQueryPoolCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "QueryPoolCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueryPoolCreateInfo; - }; - - struct QueryPoolPerformanceCreateInfoKHR - { - using NativeType = VkQueryPoolPerformanceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eQueryPoolPerformanceCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR QueryPoolPerformanceCreateInfoKHR( uint32_t queueFamilyIndex_ = {}, - uint32_t counterIndexCount_ = {}, - const uint32_t * pCounterIndices_ = {} ) VULKAN_HPP_NOEXCEPT - : queueFamilyIndex( queueFamilyIndex_ ) - , counterIndexCount( counterIndexCount_ ) - , pCounterIndices( pCounterIndices_ ) - {} - - VULKAN_HPP_CONSTEXPR - QueryPoolPerformanceCreateInfoKHR( QueryPoolPerformanceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueryPoolPerformanceCreateInfoKHR( VkQueryPoolPerformanceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : QueryPoolPerformanceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - QueryPoolPerformanceCreateInfoKHR( - uint32_t queueFamilyIndex_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & counterIndices_ ) - : queueFamilyIndex( queueFamilyIndex_ ) - , counterIndexCount( static_cast( counterIndices_.size() ) ) - , pCounterIndices( counterIndices_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueryPoolPerformanceCreateInfoKHR & - operator=( QueryPoolPerformanceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueryPoolPerformanceCreateInfoKHR & operator=( VkQueryPoolPerformanceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 QueryPoolPerformanceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolPerformanceCreateInfoKHR & - setQueueFamilyIndex( uint32_t queueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndex = queueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolPerformanceCreateInfoKHR & - setCounterIndexCount( uint32_t counterIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - counterIndexCount = counterIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolPerformanceCreateInfoKHR & - setPCounterIndices( const uint32_t * pCounterIndices_ ) VULKAN_HPP_NOEXCEPT - { - pCounterIndices = pCounterIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - QueryPoolPerformanceCreateInfoKHR & setCounterIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & counterIndices_ ) VULKAN_HPP_NOEXCEPT - { - counterIndexCount = static_cast( counterIndices_.size() ); - pCounterIndices = counterIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkQueryPoolPerformanceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueryPoolPerformanceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, queueFamilyIndex, counterIndexCount, pCounterIndices ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueryPoolPerformanceCreateInfoKHR const & ) const = default; -#else - bool operator==( QueryPoolPerformanceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( queueFamilyIndex == rhs.queueFamilyIndex ) && - ( counterIndexCount == rhs.counterIndexCount ) && ( pCounterIndices == rhs.pCounterIndices ); -# endif - } - - bool operator!=( QueryPoolPerformanceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueryPoolPerformanceCreateInfoKHR; - const void * pNext = {}; - uint32_t queueFamilyIndex = {}; - uint32_t counterIndexCount = {}; - const uint32_t * pCounterIndices = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueryPoolPerformanceCreateInfoKHR ) == - sizeof( VkQueryPoolPerformanceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "QueryPoolPerformanceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueryPoolPerformanceCreateInfoKHR; - }; - - struct QueryPoolPerformanceQueryCreateInfoINTEL - { - using NativeType = VkQueryPoolPerformanceQueryCreateInfoINTEL; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eQueryPoolPerformanceQueryCreateInfoINTEL; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR QueryPoolPerformanceQueryCreateInfoINTEL( - VULKAN_HPP_NAMESPACE::QueryPoolSamplingModeINTEL performanceCountersSampling_ = - VULKAN_HPP_NAMESPACE::QueryPoolSamplingModeINTEL::eManual ) VULKAN_HPP_NOEXCEPT - : performanceCountersSampling( performanceCountersSampling_ ) - {} - - VULKAN_HPP_CONSTEXPR QueryPoolPerformanceQueryCreateInfoINTEL( - QueryPoolPerformanceQueryCreateInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueryPoolPerformanceQueryCreateInfoINTEL( VkQueryPoolPerformanceQueryCreateInfoINTEL const & rhs ) - VULKAN_HPP_NOEXCEPT - : QueryPoolPerformanceQueryCreateInfoINTEL( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueryPoolPerformanceQueryCreateInfoINTEL & - operator=( QueryPoolPerformanceQueryCreateInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueryPoolPerformanceQueryCreateInfoINTEL & - operator=( VkQueryPoolPerformanceQueryCreateInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 QueryPoolPerformanceQueryCreateInfoINTEL & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueryPoolPerformanceQueryCreateInfoINTEL & setPerformanceCountersSampling( - VULKAN_HPP_NAMESPACE::QueryPoolSamplingModeINTEL performanceCountersSampling_ ) VULKAN_HPP_NOEXCEPT - { - performanceCountersSampling = performanceCountersSampling_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkQueryPoolPerformanceQueryCreateInfoINTEL const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueryPoolPerformanceQueryCreateInfoINTEL &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, performanceCountersSampling ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueryPoolPerformanceQueryCreateInfoINTEL const & ) const = default; -#else - bool operator==( QueryPoolPerformanceQueryCreateInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( performanceCountersSampling == rhs.performanceCountersSampling ); -# endif - } - - bool operator!=( QueryPoolPerformanceQueryCreateInfoINTEL const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueryPoolPerformanceQueryCreateInfoINTEL; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::QueryPoolSamplingModeINTEL performanceCountersSampling = - VULKAN_HPP_NAMESPACE::QueryPoolSamplingModeINTEL::eManual; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueryPoolPerformanceQueryCreateInfoINTEL ) == - sizeof( VkQueryPoolPerformanceQueryCreateInfoINTEL ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "QueryPoolPerformanceQueryCreateInfoINTEL is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueryPoolPerformanceQueryCreateInfoINTEL; - }; - using QueryPoolCreateInfoINTEL = QueryPoolPerformanceQueryCreateInfoINTEL; - - struct QueueFamilyCheckpointProperties2NV - { - using NativeType = VkQueueFamilyCheckpointProperties2NV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eQueueFamilyCheckpointProperties2NV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR QueueFamilyCheckpointProperties2NV( - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 checkpointExecutionStageMask_ = {} ) VULKAN_HPP_NOEXCEPT - : checkpointExecutionStageMask( checkpointExecutionStageMask_ ) - {} - - VULKAN_HPP_CONSTEXPR QueueFamilyCheckpointProperties2NV( QueueFamilyCheckpointProperties2NV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyCheckpointProperties2NV( VkQueueFamilyCheckpointProperties2NV const & rhs ) VULKAN_HPP_NOEXCEPT - : QueueFamilyCheckpointProperties2NV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueueFamilyCheckpointProperties2NV & - operator=( QueueFamilyCheckpointProperties2NV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyCheckpointProperties2NV & - operator=( VkQueueFamilyCheckpointProperties2NV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkQueueFamilyCheckpointProperties2NV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueueFamilyCheckpointProperties2NV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, checkpointExecutionStageMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueueFamilyCheckpointProperties2NV const & ) const = default; -#else - bool operator==( QueueFamilyCheckpointProperties2NV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( checkpointExecutionStageMask == rhs.checkpointExecutionStageMask ); -# endif - } - - bool operator!=( QueueFamilyCheckpointProperties2NV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueueFamilyCheckpointProperties2NV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 checkpointExecutionStageMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointProperties2NV ) == - sizeof( VkQueueFamilyCheckpointProperties2NV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "QueueFamilyCheckpointProperties2NV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueueFamilyCheckpointProperties2NV; - }; - - struct QueueFamilyCheckpointPropertiesNV - { - using NativeType = VkQueueFamilyCheckpointPropertiesNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eQueueFamilyCheckpointPropertiesNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR QueueFamilyCheckpointPropertiesNV( - VULKAN_HPP_NAMESPACE::PipelineStageFlags checkpointExecutionStageMask_ = {} ) VULKAN_HPP_NOEXCEPT - : checkpointExecutionStageMask( checkpointExecutionStageMask_ ) - {} - - VULKAN_HPP_CONSTEXPR - QueueFamilyCheckpointPropertiesNV( QueueFamilyCheckpointPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyCheckpointPropertiesNV( VkQueueFamilyCheckpointPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - : QueueFamilyCheckpointPropertiesNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueueFamilyCheckpointPropertiesNV & - operator=( QueueFamilyCheckpointPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyCheckpointPropertiesNV & operator=( VkQueueFamilyCheckpointPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkQueueFamilyCheckpointPropertiesNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueueFamilyCheckpointPropertiesNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, checkpointExecutionStageMask ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueueFamilyCheckpointPropertiesNV const & ) const = default; -#else - bool operator==( QueueFamilyCheckpointPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( checkpointExecutionStageMask == rhs.checkpointExecutionStageMask ); -# endif - } - - bool operator!=( QueueFamilyCheckpointPropertiesNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueueFamilyCheckpointPropertiesNV; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags checkpointExecutionStageMask = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV ) == - sizeof( VkQueueFamilyCheckpointPropertiesNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "QueueFamilyCheckpointPropertiesNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueueFamilyCheckpointPropertiesNV; - }; - - struct QueueFamilyGlobalPriorityPropertiesKHR - { - using NativeType = VkQueueFamilyGlobalPriorityPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eQueueFamilyGlobalPriorityPropertiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 QueueFamilyGlobalPriorityPropertiesKHR( - uint32_t priorityCount_ = {}, - std::array const & - priorities_ = { { VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow, - VULKAN_HPP_NAMESPACE::QueueGlobalPriorityKHR::eLow } } ) VULKAN_HPP_NOEXCEPT - : priorityCount( priorityCount_ ) - , priorities( priorities_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 QueueFamilyGlobalPriorityPropertiesKHR( QueueFamilyGlobalPriorityPropertiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyGlobalPriorityPropertiesKHR( VkQueueFamilyGlobalPriorityPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : QueueFamilyGlobalPriorityPropertiesKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueueFamilyGlobalPriorityPropertiesKHR & - operator=( QueueFamilyGlobalPriorityPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyGlobalPriorityPropertiesKHR & - operator=( VkQueueFamilyGlobalPriorityPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 QueueFamilyGlobalPriorityPropertiesKHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueueFamilyGlobalPriorityPropertiesKHR & - setPriorityCount( uint32_t priorityCount_ ) VULKAN_HPP_NOEXCEPT - { - priorityCount = priorityCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueueFamilyGlobalPriorityPropertiesKHR & setPriorities( - std::array priorities_ ) - VULKAN_HPP_NOEXCEPT - { - priorities = priorities_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkQueueFamilyGlobalPriorityPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueueFamilyGlobalPriorityPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, priorityCount, priorities ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueueFamilyGlobalPriorityPropertiesKHR const & ) const = default; -#else - bool operator==( QueueFamilyGlobalPriorityPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( priorityCount == rhs.priorityCount ) && - ( priorities == rhs.priorities ); -# endif - } - - bool operator!=( QueueFamilyGlobalPriorityPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueueFamilyGlobalPriorityPropertiesKHR; - void * pNext = {}; - uint32_t priorityCount = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D - priorities = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueueFamilyGlobalPriorityPropertiesKHR ) == - sizeof( VkQueueFamilyGlobalPriorityPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "QueueFamilyGlobalPriorityPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueueFamilyGlobalPriorityPropertiesKHR; - }; - using QueueFamilyGlobalPriorityPropertiesEXT = QueueFamilyGlobalPriorityPropertiesKHR; - - struct QueueFamilyProperties - { - using NativeType = VkQueueFamilyProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - QueueFamilyProperties( VULKAN_HPP_NAMESPACE::QueueFlags queueFlags_ = {}, - uint32_t queueCount_ = {}, - uint32_t timestampValidBits_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D minImageTransferGranularity_ = {} ) VULKAN_HPP_NOEXCEPT - : queueFlags( queueFlags_ ) - , queueCount( queueCount_ ) - , timestampValidBits( timestampValidBits_ ) - , minImageTransferGranularity( minImageTransferGranularity_ ) - {} - - VULKAN_HPP_CONSTEXPR QueueFamilyProperties( QueueFamilyProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyProperties( VkQueueFamilyProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : QueueFamilyProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueueFamilyProperties & operator=( QueueFamilyProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyProperties & operator=( VkQueueFamilyProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkQueueFamilyProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueueFamilyProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( queueFlags, queueCount, timestampValidBits, minImageTransferGranularity ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueueFamilyProperties const & ) const = default; -#else - bool operator==( QueueFamilyProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( queueFlags == rhs.queueFlags ) && ( queueCount == rhs.queueCount ) && - ( timestampValidBits == rhs.timestampValidBits ) && - ( minImageTransferGranularity == rhs.minImageTransferGranularity ); -# endif - } - - bool operator!=( QueueFamilyProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::QueueFlags queueFlags = {}; - uint32_t queueCount = {}; - uint32_t timestampValidBits = {}; - VULKAN_HPP_NAMESPACE::Extent3D minImageTransferGranularity = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueueFamilyProperties ) == sizeof( VkQueueFamilyProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "QueueFamilyProperties is not nothrow_move_constructible!" ); - - struct QueueFamilyProperties2 - { - using NativeType = VkQueueFamilyProperties2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eQueueFamilyProperties2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR QueueFamilyProperties2( - VULKAN_HPP_NAMESPACE::QueueFamilyProperties queueFamilyProperties_ = {} ) VULKAN_HPP_NOEXCEPT - : queueFamilyProperties( queueFamilyProperties_ ) - {} - - VULKAN_HPP_CONSTEXPR QueueFamilyProperties2( QueueFamilyProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyProperties2( VkQueueFamilyProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - : QueueFamilyProperties2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueueFamilyProperties2 & operator=( QueueFamilyProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyProperties2 & operator=( VkQueueFamilyProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkQueueFamilyProperties2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueueFamilyProperties2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, queueFamilyProperties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueueFamilyProperties2 const & ) const = default; -#else - bool operator==( QueueFamilyProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( queueFamilyProperties == rhs.queueFamilyProperties ); -# endif - } - - bool operator!=( QueueFamilyProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueueFamilyProperties2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::QueueFamilyProperties queueFamilyProperties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueueFamilyProperties2 ) == - sizeof( VkQueueFamilyProperties2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "QueueFamilyProperties2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueueFamilyProperties2; - }; - using QueueFamilyProperties2KHR = QueueFamilyProperties2; - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct QueueFamilyQueryResultStatusProperties2KHR - { - using NativeType = VkQueueFamilyQueryResultStatusProperties2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eQueueFamilyQueryResultStatusProperties2KHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - QueueFamilyQueryResultStatusProperties2KHR( VULKAN_HPP_NAMESPACE::Bool32 supported_ = {} ) VULKAN_HPP_NOEXCEPT - : supported( supported_ ) - {} - - VULKAN_HPP_CONSTEXPR QueueFamilyQueryResultStatusProperties2KHR( - QueueFamilyQueryResultStatusProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyQueryResultStatusProperties2KHR( VkQueueFamilyQueryResultStatusProperties2KHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : QueueFamilyQueryResultStatusProperties2KHR( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - QueueFamilyQueryResultStatusProperties2KHR & - operator=( QueueFamilyQueryResultStatusProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - QueueFamilyQueryResultStatusProperties2KHR & - operator=( VkQueueFamilyQueryResultStatusProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 QueueFamilyQueryResultStatusProperties2KHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 QueueFamilyQueryResultStatusProperties2KHR & - setSupported( VULKAN_HPP_NAMESPACE::Bool32 supported_ ) VULKAN_HPP_NOEXCEPT - { - supported = supported_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkQueueFamilyQueryResultStatusProperties2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkQueueFamilyQueryResultStatusProperties2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, supported ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( QueueFamilyQueryResultStatusProperties2KHR const & ) const = default; -# else - bool operator==( QueueFamilyQueryResultStatusProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( supported == rhs.supported ); -# endif - } - - bool operator!=( QueueFamilyQueryResultStatusProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueueFamilyQueryResultStatusProperties2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 supported = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::QueueFamilyQueryResultStatusProperties2KHR ) == - sizeof( VkQueueFamilyQueryResultStatusProperties2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "QueueFamilyQueryResultStatusProperties2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = QueueFamilyQueryResultStatusProperties2KHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - - struct RayTracingShaderGroupCreateInfoKHR - { - using NativeType = VkRayTracingShaderGroupCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRayTracingShaderGroupCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - RayTracingShaderGroupCreateInfoKHR( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR type_ = - VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR::eGeneral, - uint32_t generalShader_ = {}, - uint32_t closestHitShader_ = {}, - uint32_t anyHitShader_ = {}, - uint32_t intersectionShader_ = {}, - const void * pShaderGroupCaptureReplayHandle_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , generalShader( generalShader_ ) - , closestHitShader( closestHitShader_ ) - , anyHitShader( anyHitShader_ ) - , intersectionShader( intersectionShader_ ) - , pShaderGroupCaptureReplayHandle( pShaderGroupCaptureReplayHandle_ ) - {} - - VULKAN_HPP_CONSTEXPR RayTracingShaderGroupCreateInfoKHR( RayTracingShaderGroupCreateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - RayTracingShaderGroupCreateInfoKHR( VkRayTracingShaderGroupCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : RayTracingShaderGroupCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RayTracingShaderGroupCreateInfoKHR & - operator=( RayTracingShaderGroupCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingShaderGroupCreateInfoKHR & - operator=( VkRayTracingShaderGroupCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & - setType( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & - setGeneralShader( uint32_t generalShader_ ) VULKAN_HPP_NOEXCEPT - { - generalShader = generalShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & - setClosestHitShader( uint32_t closestHitShader_ ) VULKAN_HPP_NOEXCEPT - { - closestHitShader = closestHitShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & - setAnyHitShader( uint32_t anyHitShader_ ) VULKAN_HPP_NOEXCEPT - { - anyHitShader = anyHitShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & - setIntersectionShader( uint32_t intersectionShader_ ) VULKAN_HPP_NOEXCEPT - { - intersectionShader = intersectionShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoKHR & - setPShaderGroupCaptureReplayHandle( const void * pShaderGroupCaptureReplayHandle_ ) VULKAN_HPP_NOEXCEPT - { - pShaderGroupCaptureReplayHandle = pShaderGroupCaptureReplayHandle_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRayTracingShaderGroupCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRayTracingShaderGroupCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - type, - generalShader, - closestHitShader, - anyHitShader, - intersectionShader, - pShaderGroupCaptureReplayHandle ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RayTracingShaderGroupCreateInfoKHR const & ) const = default; -#else - bool operator==( RayTracingShaderGroupCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( type == rhs.type ) && - ( generalShader == rhs.generalShader ) && ( closestHitShader == rhs.closestHitShader ) && - ( anyHitShader == rhs.anyHitShader ) && ( intersectionShader == rhs.intersectionShader ) && - ( pShaderGroupCaptureReplayHandle == rhs.pShaderGroupCaptureReplayHandle ); -# endif - } - - bool operator!=( RayTracingShaderGroupCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRayTracingShaderGroupCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR type = - VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR::eGeneral; - uint32_t generalShader = {}; - uint32_t closestHitShader = {}; - uint32_t anyHitShader = {}; - uint32_t intersectionShader = {}; - const void * pShaderGroupCaptureReplayHandle = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR ) == - sizeof( VkRayTracingShaderGroupCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RayTracingShaderGroupCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RayTracingShaderGroupCreateInfoKHR; - }; - - struct RayTracingPipelineInterfaceCreateInfoKHR - { - using NativeType = VkRayTracingPipelineInterfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRayTracingPipelineInterfaceCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - RayTracingPipelineInterfaceCreateInfoKHR( uint32_t maxPipelineRayPayloadSize_ = {}, - uint32_t maxPipelineRayHitAttributeSize_ = {} ) VULKAN_HPP_NOEXCEPT - : maxPipelineRayPayloadSize( maxPipelineRayPayloadSize_ ) - , maxPipelineRayHitAttributeSize( maxPipelineRayHitAttributeSize_ ) - {} - - VULKAN_HPP_CONSTEXPR RayTracingPipelineInterfaceCreateInfoKHR( - RayTracingPipelineInterfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingPipelineInterfaceCreateInfoKHR( VkRayTracingPipelineInterfaceCreateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : RayTracingPipelineInterfaceCreateInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RayTracingPipelineInterfaceCreateInfoKHR & - operator=( RayTracingPipelineInterfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingPipelineInterfaceCreateInfoKHR & - operator=( VkRayTracingPipelineInterfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineInterfaceCreateInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineInterfaceCreateInfoKHR & - setMaxPipelineRayPayloadSize( uint32_t maxPipelineRayPayloadSize_ ) VULKAN_HPP_NOEXCEPT - { - maxPipelineRayPayloadSize = maxPipelineRayPayloadSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineInterfaceCreateInfoKHR & - setMaxPipelineRayHitAttributeSize( uint32_t maxPipelineRayHitAttributeSize_ ) VULKAN_HPP_NOEXCEPT - { - maxPipelineRayHitAttributeSize = maxPipelineRayHitAttributeSize_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRayTracingPipelineInterfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRayTracingPipelineInterfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxPipelineRayPayloadSize, maxPipelineRayHitAttributeSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RayTracingPipelineInterfaceCreateInfoKHR const & ) const = default; -#else - bool operator==( RayTracingPipelineInterfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( maxPipelineRayPayloadSize == rhs.maxPipelineRayPayloadSize ) && - ( maxPipelineRayHitAttributeSize == rhs.maxPipelineRayHitAttributeSize ); -# endif - } - - bool operator!=( RayTracingPipelineInterfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRayTracingPipelineInterfaceCreateInfoKHR; - const void * pNext = {}; - uint32_t maxPipelineRayPayloadSize = {}; - uint32_t maxPipelineRayHitAttributeSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RayTracingPipelineInterfaceCreateInfoKHR ) == - sizeof( VkRayTracingPipelineInterfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RayTracingPipelineInterfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RayTracingPipelineInterfaceCreateInfoKHR; - }; - - struct RayTracingPipelineCreateInfoKHR - { - using NativeType = VkRayTracingPipelineCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRayTracingPipelineCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RayTracingPipelineCreateInfoKHR( - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ = {}, - uint32_t stageCount_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ = {}, - uint32_t groupCount_ = {}, - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR * pGroups_ = {}, - uint32_t maxPipelineRayRecursionDepth_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineLibraryCreateInfoKHR * pLibraryInfo_ = {}, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineInterfaceCreateInfoKHR * pLibraryInterface_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , stageCount( stageCount_ ) - , pStages( pStages_ ) - , groupCount( groupCount_ ) - , pGroups( pGroups_ ) - , maxPipelineRayRecursionDepth( maxPipelineRayRecursionDepth_ ) - , pLibraryInfo( pLibraryInfo_ ) - , pLibraryInterface( pLibraryInterface_ ) - , pDynamicState( pDynamicState_ ) - , layout( layout_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - RayTracingPipelineCreateInfoKHR( RayTracingPipelineCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingPipelineCreateInfoKHR( VkRayTracingPipelineCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : RayTracingPipelineCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RayTracingPipelineCreateInfoKHR( - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR> const & groups_ = {}, - uint32_t maxPipelineRayRecursionDepth_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineLibraryCreateInfoKHR * pLibraryInfo_ = {}, - const VULKAN_HPP_NAMESPACE::RayTracingPipelineInterfaceCreateInfoKHR * pLibraryInterface_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) - : flags( flags_ ) - , stageCount( static_cast( stages_.size() ) ) - , pStages( stages_.data() ) - , groupCount( static_cast( groups_.size() ) ) - , pGroups( groups_.data() ) - , maxPipelineRayRecursionDepth( maxPipelineRayRecursionDepth_ ) - , pLibraryInfo( pLibraryInfo_ ) - , pLibraryInterface( pLibraryInterface_ ) - , pDynamicState( pDynamicState_ ) - , layout( layout_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RayTracingPipelineCreateInfoKHR & - operator=( RayTracingPipelineCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingPipelineCreateInfoKHR & operator=( VkRayTracingPipelineCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & setStageCount( uint32_t stageCount_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = stageCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setPStages( const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ ) VULKAN_HPP_NOEXCEPT - { - pStages = pStages_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RayTracingPipelineCreateInfoKHR & setStages( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = static_cast( stages_.size() ); - pStages = stages_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & setGroupCount( uint32_t groupCount_ ) VULKAN_HPP_NOEXCEPT - { - groupCount = groupCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setPGroups( const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR * pGroups_ ) VULKAN_HPP_NOEXCEPT - { - pGroups = pGroups_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RayTracingPipelineCreateInfoKHR & - setGroups( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR> const & groups_ ) VULKAN_HPP_NOEXCEPT - { - groupCount = static_cast( groups_.size() ); - pGroups = groups_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setMaxPipelineRayRecursionDepth( uint32_t maxPipelineRayRecursionDepth_ ) VULKAN_HPP_NOEXCEPT - { - maxPipelineRayRecursionDepth = maxPipelineRayRecursionDepth_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setPLibraryInfo( const VULKAN_HPP_NAMESPACE::PipelineLibraryCreateInfoKHR * pLibraryInfo_ ) VULKAN_HPP_NOEXCEPT - { - pLibraryInfo = pLibraryInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & setPLibraryInterface( - const VULKAN_HPP_NAMESPACE::RayTracingPipelineInterfaceCreateInfoKHR * pLibraryInterface_ ) VULKAN_HPP_NOEXCEPT - { - pLibraryInterface = pLibraryInterface_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & setPDynamicState( - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState_ ) VULKAN_HPP_NOEXCEPT - { - pDynamicState = pDynamicState_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setLayout( VULKAN_HPP_NAMESPACE::PipelineLayout layout_ ) VULKAN_HPP_NOEXCEPT - { - layout = layout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setBasePipelineHandle( VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineHandle = basePipelineHandle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoKHR & - setBasePipelineIndex( int32_t basePipelineIndex_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineIndex = basePipelineIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRayTracingPipelineCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRayTracingPipelineCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - stageCount, - pStages, - groupCount, - pGroups, - maxPipelineRayRecursionDepth, - pLibraryInfo, - pLibraryInterface, - pDynamicState, - layout, - basePipelineHandle, - basePipelineIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RayTracingPipelineCreateInfoKHR const & ) const = default; -#else - bool operator==( RayTracingPipelineCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( stageCount == rhs.stageCount ) && ( pStages == rhs.pStages ) && ( groupCount == rhs.groupCount ) && - ( pGroups == rhs.pGroups ) && ( maxPipelineRayRecursionDepth == rhs.maxPipelineRayRecursionDepth ) && - ( pLibraryInfo == rhs.pLibraryInfo ) && ( pLibraryInterface == rhs.pLibraryInterface ) && - ( pDynamicState == rhs.pDynamicState ) && ( layout == rhs.layout ) && - ( basePipelineHandle == rhs.basePipelineHandle ) && ( basePipelineIndex == rhs.basePipelineIndex ); -# endif - } - - bool operator!=( RayTracingPipelineCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRayTracingPipelineCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags = {}; - uint32_t stageCount = {}; - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages = {}; - uint32_t groupCount = {}; - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoKHR * pGroups = {}; - uint32_t maxPipelineRayRecursionDepth = {}; - const VULKAN_HPP_NAMESPACE::PipelineLibraryCreateInfoKHR * pLibraryInfo = {}; - const VULKAN_HPP_NAMESPACE::RayTracingPipelineInterfaceCreateInfoKHR * pLibraryInterface = {}; - const VULKAN_HPP_NAMESPACE::PipelineDynamicStateCreateInfo * pDynamicState = {}; - VULKAN_HPP_NAMESPACE::PipelineLayout layout = {}; - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle = {}; - int32_t basePipelineIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoKHR ) == - sizeof( VkRayTracingPipelineCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RayTracingPipelineCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RayTracingPipelineCreateInfoKHR; - }; - - struct RayTracingShaderGroupCreateInfoNV - { - using NativeType = VkRayTracingShaderGroupCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRayTracingShaderGroupCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - RayTracingShaderGroupCreateInfoNV( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR type_ = - VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR::eGeneral, - uint32_t generalShader_ = {}, - uint32_t closestHitShader_ = {}, - uint32_t anyHitShader_ = {}, - uint32_t intersectionShader_ = {} ) VULKAN_HPP_NOEXCEPT - : type( type_ ) - , generalShader( generalShader_ ) - , closestHitShader( closestHitShader_ ) - , anyHitShader( anyHitShader_ ) - , intersectionShader( intersectionShader_ ) - {} - - VULKAN_HPP_CONSTEXPR - RayTracingShaderGroupCreateInfoNV( RayTracingShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingShaderGroupCreateInfoNV( VkRayTracingShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : RayTracingShaderGroupCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RayTracingShaderGroupCreateInfoNV & - operator=( RayTracingShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingShaderGroupCreateInfoNV & operator=( VkRayTracingShaderGroupCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoNV & - setType( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR type_ ) VULKAN_HPP_NOEXCEPT - { - type = type_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoNV & - setGeneralShader( uint32_t generalShader_ ) VULKAN_HPP_NOEXCEPT - { - generalShader = generalShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoNV & - setClosestHitShader( uint32_t closestHitShader_ ) VULKAN_HPP_NOEXCEPT - { - closestHitShader = closestHitShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoNV & - setAnyHitShader( uint32_t anyHitShader_ ) VULKAN_HPP_NOEXCEPT - { - anyHitShader = anyHitShader_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingShaderGroupCreateInfoNV & - setIntersectionShader( uint32_t intersectionShader_ ) VULKAN_HPP_NOEXCEPT - { - intersectionShader = intersectionShader_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRayTracingShaderGroupCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRayTracingShaderGroupCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, type, generalShader, closestHitShader, anyHitShader, intersectionShader ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RayTracingShaderGroupCreateInfoNV const & ) const = default; -#else - bool operator==( RayTracingShaderGroupCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( type == rhs.type ) && - ( generalShader == rhs.generalShader ) && ( closestHitShader == rhs.closestHitShader ) && - ( anyHitShader == rhs.anyHitShader ) && ( intersectionShader == rhs.intersectionShader ); -# endif - } - - bool operator!=( RayTracingShaderGroupCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRayTracingShaderGroupCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR type = - VULKAN_HPP_NAMESPACE::RayTracingShaderGroupTypeKHR::eGeneral; - uint32_t generalShader = {}; - uint32_t closestHitShader = {}; - uint32_t anyHitShader = {}; - uint32_t intersectionShader = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV ) == - sizeof( VkRayTracingShaderGroupCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RayTracingShaderGroupCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RayTracingShaderGroupCreateInfoNV; - }; - - struct RayTracingPipelineCreateInfoNV - { - using NativeType = VkRayTracingPipelineCreateInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRayTracingPipelineCreateInfoNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - RayTracingPipelineCreateInfoNV( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ = {}, - uint32_t stageCount_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ = {}, - uint32_t groupCount_ = {}, - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV * pGroups_ = {}, - uint32_t maxRecursionDepth_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , stageCount( stageCount_ ) - , pStages( pStages_ ) - , groupCount( groupCount_ ) - , pGroups( pGroups_ ) - , maxRecursionDepth( maxRecursionDepth_ ) - , layout( layout_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR - RayTracingPipelineCreateInfoNV( RayTracingPipelineCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingPipelineCreateInfoNV( VkRayTracingPipelineCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : RayTracingPipelineCreateInfoNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RayTracingPipelineCreateInfoNV( - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV> const & groups_ = {}, - uint32_t maxRecursionDepth_ = {}, - VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {}, - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {}, - int32_t basePipelineIndex_ = {} ) - : flags( flags_ ) - , stageCount( static_cast( stages_.size() ) ) - , pStages( stages_.data() ) - , groupCount( static_cast( groups_.size() ) ) - , pGroups( groups_.data() ) - , maxRecursionDepth( maxRecursionDepth_ ) - , layout( layout_ ) - , basePipelineHandle( basePipelineHandle_ ) - , basePipelineIndex( basePipelineIndex_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RayTracingPipelineCreateInfoNV & - operator=( RayTracingPipelineCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RayTracingPipelineCreateInfoNV & operator=( VkRayTracingPipelineCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setFlags( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & setStageCount( uint32_t stageCount_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = stageCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setPStages( const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages_ ) VULKAN_HPP_NOEXCEPT - { - pStages = pStages_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RayTracingPipelineCreateInfoNV & setStages( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - stages_ ) VULKAN_HPP_NOEXCEPT - { - stageCount = static_cast( stages_.size() ); - pStages = stages_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & setGroupCount( uint32_t groupCount_ ) VULKAN_HPP_NOEXCEPT - { - groupCount = groupCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setPGroups( const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV * pGroups_ ) VULKAN_HPP_NOEXCEPT - { - pGroups = pGroups_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RayTracingPipelineCreateInfoNV & - setGroups( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV> const & groups_ ) VULKAN_HPP_NOEXCEPT - { - groupCount = static_cast( groups_.size() ); - pGroups = groups_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setMaxRecursionDepth( uint32_t maxRecursionDepth_ ) VULKAN_HPP_NOEXCEPT - { - maxRecursionDepth = maxRecursionDepth_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setLayout( VULKAN_HPP_NAMESPACE::PipelineLayout layout_ ) VULKAN_HPP_NOEXCEPT - { - layout = layout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setBasePipelineHandle( VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineHandle = basePipelineHandle_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RayTracingPipelineCreateInfoNV & - setBasePipelineIndex( int32_t basePipelineIndex_ ) VULKAN_HPP_NOEXCEPT - { - basePipelineIndex = basePipelineIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRayTracingPipelineCreateInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRayTracingPipelineCreateInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - stageCount, - pStages, - groupCount, - pGroups, - maxRecursionDepth, - layout, - basePipelineHandle, - basePipelineIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RayTracingPipelineCreateInfoNV const & ) const = default; -#else - bool operator==( RayTracingPipelineCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( stageCount == rhs.stageCount ) && ( pStages == rhs.pStages ) && ( groupCount == rhs.groupCount ) && - ( pGroups == rhs.pGroups ) && ( maxRecursionDepth == rhs.maxRecursionDepth ) && ( layout == rhs.layout ) && - ( basePipelineHandle == rhs.basePipelineHandle ) && ( basePipelineIndex == rhs.basePipelineIndex ); -# endif - } - - bool operator!=( RayTracingPipelineCreateInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRayTracingPipelineCreateInfoNV; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags = {}; - uint32_t stageCount = {}; - const VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo * pStages = {}; - uint32_t groupCount = {}; - const VULKAN_HPP_NAMESPACE::RayTracingShaderGroupCreateInfoNV * pGroups = {}; - uint32_t maxRecursionDepth = {}; - VULKAN_HPP_NAMESPACE::PipelineLayout layout = {}; - VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle = {}; - int32_t basePipelineIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RayTracingPipelineCreateInfoNV ) == - sizeof( VkRayTracingPipelineCreateInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RayTracingPipelineCreateInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RayTracingPipelineCreateInfoNV; - }; - - struct RefreshCycleDurationGOOGLE - { - using NativeType = VkRefreshCycleDurationGOOGLE; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RefreshCycleDurationGOOGLE( uint64_t refreshDuration_ = {} ) VULKAN_HPP_NOEXCEPT - : refreshDuration( refreshDuration_ ) - {} - - VULKAN_HPP_CONSTEXPR - RefreshCycleDurationGOOGLE( RefreshCycleDurationGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RefreshCycleDurationGOOGLE( VkRefreshCycleDurationGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - : RefreshCycleDurationGOOGLE( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RefreshCycleDurationGOOGLE & operator=( RefreshCycleDurationGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RefreshCycleDurationGOOGLE & operator=( VkRefreshCycleDurationGOOGLE const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkRefreshCycleDurationGOOGLE const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRefreshCycleDurationGOOGLE &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( refreshDuration ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RefreshCycleDurationGOOGLE const & ) const = default; -#else - bool operator==( RefreshCycleDurationGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( refreshDuration == rhs.refreshDuration ); -# endif - } - - bool operator!=( RefreshCycleDurationGOOGLE const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint64_t refreshDuration = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RefreshCycleDurationGOOGLE ) == - sizeof( VkRefreshCycleDurationGOOGLE ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RefreshCycleDurationGOOGLE is not nothrow_move_constructible!" ); - - struct RenderPassAttachmentBeginInfo - { - using NativeType = VkRenderPassAttachmentBeginInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassAttachmentBeginInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - RenderPassAttachmentBeginInfo( uint32_t attachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageView * pAttachments_ = {} ) VULKAN_HPP_NOEXCEPT - : attachmentCount( attachmentCount_ ) - , pAttachments( pAttachments_ ) - {} - - VULKAN_HPP_CONSTEXPR - RenderPassAttachmentBeginInfo( RenderPassAttachmentBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassAttachmentBeginInfo( VkRenderPassAttachmentBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassAttachmentBeginInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassAttachmentBeginInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & attachments_ ) - : attachmentCount( static_cast( attachments_.size() ) ), pAttachments( attachments_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassAttachmentBeginInfo & - operator=( RenderPassAttachmentBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassAttachmentBeginInfo & operator=( VkRenderPassAttachmentBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassAttachmentBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassAttachmentBeginInfo & - setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = attachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassAttachmentBeginInfo & - setPAttachments( const VULKAN_HPP_NAMESPACE::ImageView * pAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pAttachments = pAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassAttachmentBeginInfo & setAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & attachments_ ) - VULKAN_HPP_NOEXCEPT - { - attachmentCount = static_cast( attachments_.size() ); - pAttachments = attachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassAttachmentBeginInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassAttachmentBeginInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, attachmentCount, pAttachments ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassAttachmentBeginInfo const & ) const = default; -#else - bool operator==( RenderPassAttachmentBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( attachmentCount == rhs.attachmentCount ) && - ( pAttachments == rhs.pAttachments ); -# endif - } - - bool operator!=( RenderPassAttachmentBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassAttachmentBeginInfo; - const void * pNext = {}; - uint32_t attachmentCount = {}; - const VULKAN_HPP_NAMESPACE::ImageView * pAttachments = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassAttachmentBeginInfo ) == - sizeof( VkRenderPassAttachmentBeginInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderPassAttachmentBeginInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassAttachmentBeginInfo; - }; - using RenderPassAttachmentBeginInfoKHR = RenderPassAttachmentBeginInfo; - - struct RenderPassBeginInfo - { - using NativeType = VkRenderPassBeginInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassBeginInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - RenderPassBeginInfo( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {}, - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_ = {}, - VULKAN_HPP_NAMESPACE::Rect2D renderArea_ = {}, - uint32_t clearValueCount_ = {}, - const VULKAN_HPP_NAMESPACE::ClearValue * pClearValues_ = {} ) VULKAN_HPP_NOEXCEPT - : renderPass( renderPass_ ) - , framebuffer( framebuffer_ ) - , renderArea( renderArea_ ) - , clearValueCount( clearValueCount_ ) - , pClearValues( pClearValues_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo( RenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassBeginInfo( VkRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassBeginInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassBeginInfo( - VULKAN_HPP_NAMESPACE::RenderPass renderPass_, - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_, - VULKAN_HPP_NAMESPACE::Rect2D renderArea_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & clearValues_ ) - : renderPass( renderPass_ ) - , framebuffer( framebuffer_ ) - , renderArea( renderArea_ ) - , clearValueCount( static_cast( clearValues_.size() ) ) - , pClearValues( clearValues_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassBeginInfo & operator=( RenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassBeginInfo & operator=( VkRenderPassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo & - setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT - { - renderPass = renderPass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo & - setFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_ ) VULKAN_HPP_NOEXCEPT - { - framebuffer = framebuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo & - setRenderArea( VULKAN_HPP_NAMESPACE::Rect2D const & renderArea_ ) VULKAN_HPP_NOEXCEPT - { - renderArea = renderArea_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo & setClearValueCount( uint32_t clearValueCount_ ) VULKAN_HPP_NOEXCEPT - { - clearValueCount = clearValueCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassBeginInfo & - setPClearValues( const VULKAN_HPP_NAMESPACE::ClearValue * pClearValues_ ) VULKAN_HPP_NOEXCEPT - { - pClearValues = pClearValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassBeginInfo & setClearValues( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & clearValues_ ) - VULKAN_HPP_NOEXCEPT - { - clearValueCount = static_cast( clearValues_.size() ); - pClearValues = clearValues_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassBeginInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassBeginInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, renderPass, framebuffer, renderArea, clearValueCount, pClearValues ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassBeginInfo const & ) const = default; -#else - bool operator==( RenderPassBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( renderPass == rhs.renderPass ) && - ( framebuffer == rhs.framebuffer ) && ( renderArea == rhs.renderArea ) && - ( clearValueCount == rhs.clearValueCount ) && ( pClearValues == rhs.pClearValues ); -# endif - } - - bool operator!=( RenderPassBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassBeginInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderPass renderPass = {}; - VULKAN_HPP_NAMESPACE::Framebuffer framebuffer = {}; - VULKAN_HPP_NAMESPACE::Rect2D renderArea = {}; - uint32_t clearValueCount = {}; - const VULKAN_HPP_NAMESPACE::ClearValue * pClearValues = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassBeginInfo ) == sizeof( VkRenderPassBeginInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RenderPassBeginInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassBeginInfo; - }; - - struct SubpassDescription - { - using NativeType = VkSubpassDescription; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassDescription( - VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - uint32_t inputAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference * pInputAttachments_ = {}, - uint32_t colorAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference * pColorAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference * pResolveAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference * pDepthStencilAttachment_ = {}, - uint32_t preserveAttachmentCount_ = {}, - const uint32_t * pPreserveAttachments_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , inputAttachmentCount( inputAttachmentCount_ ) - , pInputAttachments( pInputAttachments_ ) - , colorAttachmentCount( colorAttachmentCount_ ) - , pColorAttachments( pColorAttachments_ ) - , pResolveAttachments( pResolveAttachments_ ) - , pDepthStencilAttachment( pDepthStencilAttachment_ ) - , preserveAttachmentCount( preserveAttachmentCount_ ) - , pPreserveAttachments( pPreserveAttachments_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassDescription( SubpassDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDescription( VkSubpassDescription const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassDescription( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription( - VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags_, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - inputAttachments_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachments_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - resolveAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference * pDepthStencilAttachment_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & preserveAttachments_ = {} ) - : flags( flags_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , inputAttachmentCount( static_cast( inputAttachments_.size() ) ) - , pInputAttachments( inputAttachments_.data() ) - , colorAttachmentCount( static_cast( colorAttachments_.size() ) ) - , pColorAttachments( colorAttachments_.data() ) - , pResolveAttachments( resolveAttachments_.data() ) - , pDepthStencilAttachment( pDepthStencilAttachment_ ) - , preserveAttachmentCount( static_cast( preserveAttachments_.size() ) ) - , pPreserveAttachments( preserveAttachments_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( resolveAttachments_.empty() || ( colorAttachments_.size() == resolveAttachments_.size() ) ); -# else - if ( !resolveAttachments_.empty() && ( colorAttachments_.size() != resolveAttachments_.size() ) ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::SubpassDescription::SubpassDescription: !resolveAttachments_.empty() && ( colorAttachments_.size() != resolveAttachments_.size() )" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassDescription & operator=( SubpassDescription const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDescription & operator=( VkSubpassDescription const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setFlags( VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT - { - pipelineBindPoint = pipelineBindPoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setInputAttachmentCount( uint32_t inputAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - inputAttachmentCount = inputAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setPInputAttachments( const VULKAN_HPP_NAMESPACE::AttachmentReference * pInputAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pInputAttachments = pInputAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription & setInputAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - inputAttachments_ ) VULKAN_HPP_NOEXCEPT - { - inputAttachmentCount = static_cast( inputAttachments_.size() ); - pInputAttachments = inputAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setColorAttachmentCount( uint32_t colorAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = colorAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setPColorAttachments( const VULKAN_HPP_NAMESPACE::AttachmentReference * pColorAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pColorAttachments = pColorAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription & setColorAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachments_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( colorAttachments_.size() ); - pColorAttachments = colorAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & setPResolveAttachments( - const VULKAN_HPP_NAMESPACE::AttachmentReference * pResolveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pResolveAttachments = pResolveAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription & setResolveAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - resolveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( resolveAttachments_.size() ); - pResolveAttachments = resolveAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & setPDepthStencilAttachment( - const VULKAN_HPP_NAMESPACE::AttachmentReference * pDepthStencilAttachment_ ) VULKAN_HPP_NOEXCEPT - { - pDepthStencilAttachment = pDepthStencilAttachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setPreserveAttachmentCount( uint32_t preserveAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - preserveAttachmentCount = preserveAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription & - setPPreserveAttachments( const uint32_t * pPreserveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pPreserveAttachments = pPreserveAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription & setPreserveAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & preserveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - preserveAttachmentCount = static_cast( preserveAttachments_.size() ); - pPreserveAttachments = preserveAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassDescription const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassDescription &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( flags, - pipelineBindPoint, - inputAttachmentCount, - pInputAttachments, - colorAttachmentCount, - pColorAttachments, - pResolveAttachments, - pDepthStencilAttachment, - preserveAttachmentCount, - pPreserveAttachments ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassDescription const & ) const = default; -#else - bool operator==( SubpassDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( flags == rhs.flags ) && ( pipelineBindPoint == rhs.pipelineBindPoint ) && - ( inputAttachmentCount == rhs.inputAttachmentCount ) && ( pInputAttachments == rhs.pInputAttachments ) && - ( colorAttachmentCount == rhs.colorAttachmentCount ) && ( pColorAttachments == rhs.pColorAttachments ) && - ( pResolveAttachments == rhs.pResolveAttachments ) && - ( pDepthStencilAttachment == rhs.pDepthStencilAttachment ) && - ( preserveAttachmentCount == rhs.preserveAttachmentCount ) && - ( pPreserveAttachments == rhs.pPreserveAttachments ); -# endif - } - - bool operator!=( SubpassDescription const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags = {}; - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics; - uint32_t inputAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference * pInputAttachments = {}; - uint32_t colorAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference * pColorAttachments = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference * pResolveAttachments = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference * pDepthStencilAttachment = {}; - uint32_t preserveAttachmentCount = {}; - const uint32_t * pPreserveAttachments = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassDescription ) == sizeof( VkSubpassDescription ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassDescription is not nothrow_move_constructible!" ); - - struct SubpassDependency - { - using NativeType = VkSubpassDependency; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SubpassDependency( uint32_t srcSubpass_ = {}, - uint32_t dstSubpass_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubpass( srcSubpass_ ) - , dstSubpass( dstSubpass_ ) - , srcStageMask( srcStageMask_ ) - , dstStageMask( dstStageMask_ ) - , srcAccessMask( srcAccessMask_ ) - , dstAccessMask( dstAccessMask_ ) - , dependencyFlags( dependencyFlags_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassDependency( SubpassDependency const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDependency( VkSubpassDependency const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassDependency( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassDependency & operator=( SubpassDependency const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDependency & operator=( VkSubpassDependency const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & setSrcSubpass( uint32_t srcSubpass_ ) VULKAN_HPP_NOEXCEPT - { - srcSubpass = srcSubpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & setDstSubpass( uint32_t dstSubpass_ ) VULKAN_HPP_NOEXCEPT - { - dstSubpass = dstSubpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & - setSrcStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask_ ) VULKAN_HPP_NOEXCEPT - { - srcStageMask = srcStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & - setDstStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - dstStageMask = dstStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency & - setDependencyFlags( VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_ ) VULKAN_HPP_NOEXCEPT - { - dependencyFlags = dependencyFlags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassDependency const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassDependency &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - srcSubpass, dstSubpass, srcStageMask, dstStageMask, srcAccessMask, dstAccessMask, dependencyFlags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassDependency const & ) const = default; -#else - bool operator==( SubpassDependency const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( srcSubpass == rhs.srcSubpass ) && ( dstSubpass == rhs.dstSubpass ) && - ( srcStageMask == rhs.srcStageMask ) && ( dstStageMask == rhs.dstStageMask ) && - ( srcAccessMask == rhs.srcAccessMask ) && ( dstAccessMask == rhs.dstAccessMask ) && - ( dependencyFlags == rhs.dependencyFlags ); -# endif - } - - bool operator!=( SubpassDependency const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t srcSubpass = {}; - uint32_t dstSubpass = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask = {}; - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassDependency ) == sizeof( VkSubpassDependency ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassDependency is not nothrow_move_constructible!" ); - - struct RenderPassCreateInfo - { - using NativeType = VkRenderPassCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - RenderPassCreateInfo( VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags_ = {}, - uint32_t attachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentDescription * pAttachments_ = {}, - uint32_t subpassCount_ = {}, - const VULKAN_HPP_NAMESPACE::SubpassDescription * pSubpasses_ = {}, - uint32_t dependencyCount_ = {}, - const VULKAN_HPP_NAMESPACE::SubpassDependency * pDependencies_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , attachmentCount( attachmentCount_ ) - , pAttachments( pAttachments_ ) - , subpassCount( subpassCount_ ) - , pSubpasses( pSubpasses_ ) - , dependencyCount( dependencyCount_ ) - , pDependencies( pDependencies_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderPassCreateInfo( RenderPassCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassCreateInfo( VkRenderPassCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo( - VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachments_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - subpasses_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - dependencies_ = {} ) - : flags( flags_ ) - , attachmentCount( static_cast( attachments_.size() ) ) - , pAttachments( attachments_.data() ) - , subpassCount( static_cast( subpasses_.size() ) ) - , pSubpasses( subpasses_.data() ) - , dependencyCount( static_cast( dependencies_.size() ) ) - , pDependencies( dependencies_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassCreateInfo & operator=( RenderPassCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassCreateInfo & operator=( VkRenderPassCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = attachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & - setPAttachments( const VULKAN_HPP_NAMESPACE::AttachmentDescription * pAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pAttachments = pAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo & setAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachments_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = static_cast( attachments_.size() ); - pAttachments = attachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & setSubpassCount( uint32_t subpassCount_ ) VULKAN_HPP_NOEXCEPT - { - subpassCount = subpassCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & - setPSubpasses( const VULKAN_HPP_NAMESPACE::SubpassDescription * pSubpasses_ ) VULKAN_HPP_NOEXCEPT - { - pSubpasses = pSubpasses_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo & setSubpasses( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & subpasses_ ) - VULKAN_HPP_NOEXCEPT - { - subpassCount = static_cast( subpasses_.size() ); - pSubpasses = subpasses_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & setDependencyCount( uint32_t dependencyCount_ ) VULKAN_HPP_NOEXCEPT - { - dependencyCount = dependencyCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo & - setPDependencies( const VULKAN_HPP_NAMESPACE::SubpassDependency * pDependencies_ ) VULKAN_HPP_NOEXCEPT - { - pDependencies = pDependencies_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo & setDependencies( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - dependencies_ ) VULKAN_HPP_NOEXCEPT - { - dependencyCount = static_cast( dependencies_.size() ); - pDependencies = dependencies_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, flags, attachmentCount, pAttachments, subpassCount, pSubpasses, dependencyCount, pDependencies ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassCreateInfo const & ) const = default; -#else - bool operator==( RenderPassCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( attachmentCount == rhs.attachmentCount ) && ( pAttachments == rhs.pAttachments ) && - ( subpassCount == rhs.subpassCount ) && ( pSubpasses == rhs.pSubpasses ) && - ( dependencyCount == rhs.dependencyCount ) && ( pDependencies == rhs.pDependencies ); -# endif - } - - bool operator!=( RenderPassCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags = {}; - uint32_t attachmentCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentDescription * pAttachments = {}; - uint32_t subpassCount = {}; - const VULKAN_HPP_NAMESPACE::SubpassDescription * pSubpasses = {}; - uint32_t dependencyCount = {}; - const VULKAN_HPP_NAMESPACE::SubpassDependency * pDependencies = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassCreateInfo ) == sizeof( VkRenderPassCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RenderPassCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassCreateInfo; - }; - - struct SubpassDescription2 - { - using NativeType = VkSubpassDescription2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSubpassDescription2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassDescription2( - VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics, - uint32_t viewMask_ = {}, - uint32_t inputAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pInputAttachments_ = {}, - uint32_t colorAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pColorAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pResolveAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilAttachment_ = {}, - uint32_t preserveAttachmentCount_ = {}, - const uint32_t * pPreserveAttachments_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , viewMask( viewMask_ ) - , inputAttachmentCount( inputAttachmentCount_ ) - , pInputAttachments( pInputAttachments_ ) - , colorAttachmentCount( colorAttachmentCount_ ) - , pColorAttachments( pColorAttachments_ ) - , pResolveAttachments( pResolveAttachments_ ) - , pDepthStencilAttachment( pDepthStencilAttachment_ ) - , preserveAttachmentCount( preserveAttachmentCount_ ) - , pPreserveAttachments( pPreserveAttachments_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassDescription2( SubpassDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDescription2( VkSubpassDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassDescription2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription2( - VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags_, - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_, - uint32_t viewMask_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - inputAttachments_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachments_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - resolveAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilAttachment_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & preserveAttachments_ = {} ) - : flags( flags_ ) - , pipelineBindPoint( pipelineBindPoint_ ) - , viewMask( viewMask_ ) - , inputAttachmentCount( static_cast( inputAttachments_.size() ) ) - , pInputAttachments( inputAttachments_.data() ) - , colorAttachmentCount( static_cast( colorAttachments_.size() ) ) - , pColorAttachments( colorAttachments_.data() ) - , pResolveAttachments( resolveAttachments_.data() ) - , pDepthStencilAttachment( pDepthStencilAttachment_ ) - , preserveAttachmentCount( static_cast( preserveAttachments_.size() ) ) - , pPreserveAttachments( preserveAttachments_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( resolveAttachments_.empty() || ( colorAttachments_.size() == resolveAttachments_.size() ) ); -# else - if ( !resolveAttachments_.empty() && ( colorAttachments_.size() != resolveAttachments_.size() ) ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::SubpassDescription2::SubpassDescription2: !resolveAttachments_.empty() && ( colorAttachments_.size() != resolveAttachments_.size() )" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassDescription2 & operator=( SubpassDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDescription2 & operator=( VkSubpassDescription2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setFlags( VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT - { - pipelineBindPoint = pipelineBindPoint_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & setViewMask( uint32_t viewMask_ ) VULKAN_HPP_NOEXCEPT - { - viewMask = viewMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setInputAttachmentCount( uint32_t inputAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - inputAttachmentCount = inputAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setPInputAttachments( const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pInputAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pInputAttachments = pInputAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription2 & setInputAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - inputAttachments_ ) VULKAN_HPP_NOEXCEPT - { - inputAttachmentCount = static_cast( inputAttachments_.size() ); - pInputAttachments = inputAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setColorAttachmentCount( uint32_t colorAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = colorAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setPColorAttachments( const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pColorAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pColorAttachments = pColorAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription2 & setColorAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachments_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( colorAttachments_.size() ); - pColorAttachments = colorAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & setPResolveAttachments( - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pResolveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pResolveAttachments = pResolveAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription2 & setResolveAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - resolveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( resolveAttachments_.size() ); - pResolveAttachments = resolveAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & setPDepthStencilAttachment( - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilAttachment_ ) VULKAN_HPP_NOEXCEPT - { - pDepthStencilAttachment = pDepthStencilAttachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setPreserveAttachmentCount( uint32_t preserveAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - preserveAttachmentCount = preserveAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescription2 & - setPPreserveAttachments( const uint32_t * pPreserveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pPreserveAttachments = pPreserveAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassDescription2 & setPreserveAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & preserveAttachments_ ) VULKAN_HPP_NOEXCEPT - { - preserveAttachmentCount = static_cast( preserveAttachments_.size() ); - pPreserveAttachments = preserveAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassDescription2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassDescription2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - pipelineBindPoint, - viewMask, - inputAttachmentCount, - pInputAttachments, - colorAttachmentCount, - pColorAttachments, - pResolveAttachments, - pDepthStencilAttachment, - preserveAttachmentCount, - pPreserveAttachments ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassDescription2 const & ) const = default; -#else - bool operator==( SubpassDescription2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pipelineBindPoint == rhs.pipelineBindPoint ) && ( viewMask == rhs.viewMask ) && - ( inputAttachmentCount == rhs.inputAttachmentCount ) && ( pInputAttachments == rhs.pInputAttachments ) && - ( colorAttachmentCount == rhs.colorAttachmentCount ) && ( pColorAttachments == rhs.pColorAttachments ) && - ( pResolveAttachments == rhs.pResolveAttachments ) && - ( pDepthStencilAttachment == rhs.pDepthStencilAttachment ) && - ( preserveAttachmentCount == rhs.preserveAttachmentCount ) && - ( pPreserveAttachments == rhs.pPreserveAttachments ); -# endif - } - - bool operator!=( SubpassDescription2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassDescription2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SubpassDescriptionFlags flags = {}; - VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics; - uint32_t viewMask = {}; - uint32_t inputAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pInputAttachments = {}; - uint32_t colorAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pColorAttachments = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pResolveAttachments = {}; - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilAttachment = {}; - uint32_t preserveAttachmentCount = {}; - const uint32_t * pPreserveAttachments = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassDescription2 ) == sizeof( VkSubpassDescription2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassDescription2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassDescription2; - }; - using SubpassDescription2KHR = SubpassDescription2; - - struct SubpassDependency2 - { - using NativeType = VkSubpassDependency2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSubpassDependency2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassDependency2( uint32_t srcSubpass_ = {}, - uint32_t dstSubpass_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ = {}, - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_ = {}, - int32_t viewOffset_ = {} ) VULKAN_HPP_NOEXCEPT - : srcSubpass( srcSubpass_ ) - , dstSubpass( dstSubpass_ ) - , srcStageMask( srcStageMask_ ) - , dstStageMask( dstStageMask_ ) - , srcAccessMask( srcAccessMask_ ) - , dstAccessMask( dstAccessMask_ ) - , dependencyFlags( dependencyFlags_ ) - , viewOffset( viewOffset_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassDependency2( SubpassDependency2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDependency2( VkSubpassDependency2 const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassDependency2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassDependency2 & operator=( SubpassDependency2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDependency2 & operator=( VkSubpassDependency2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & setSrcSubpass( uint32_t srcSubpass_ ) VULKAN_HPP_NOEXCEPT - { - srcSubpass = srcSubpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & setDstSubpass( uint32_t dstSubpass_ ) VULKAN_HPP_NOEXCEPT - { - dstSubpass = dstSubpass_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & - setSrcStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask_ ) VULKAN_HPP_NOEXCEPT - { - srcStageMask = srcStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & - setDstStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - dstStageMask = dstStageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & - setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - srcAccessMask = srcAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & - setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ ) VULKAN_HPP_NOEXCEPT - { - dstAccessMask = dstAccessMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & - setDependencyFlags( VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags_ ) VULKAN_HPP_NOEXCEPT - { - dependencyFlags = dependencyFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDependency2 & setViewOffset( int32_t viewOffset_ ) VULKAN_HPP_NOEXCEPT - { - viewOffset = viewOffset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassDependency2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassDependency2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - srcSubpass, - dstSubpass, - srcStageMask, - dstStageMask, - srcAccessMask, - dstAccessMask, - dependencyFlags, - viewOffset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassDependency2 const & ) const = default; -#else - bool operator==( SubpassDependency2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcSubpass == rhs.srcSubpass ) && - ( dstSubpass == rhs.dstSubpass ) && ( srcStageMask == rhs.srcStageMask ) && - ( dstStageMask == rhs.dstStageMask ) && ( srcAccessMask == rhs.srcAccessMask ) && - ( dstAccessMask == rhs.dstAccessMask ) && ( dependencyFlags == rhs.dependencyFlags ) && - ( viewOffset == rhs.viewOffset ); -# endif - } - - bool operator!=( SubpassDependency2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassDependency2; - const void * pNext = {}; - uint32_t srcSubpass = {}; - uint32_t dstSubpass = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags srcStageMask = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags dstStageMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask = {}; - VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask = {}; - VULKAN_HPP_NAMESPACE::DependencyFlags dependencyFlags = {}; - int32_t viewOffset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassDependency2 ) == sizeof( VkSubpassDependency2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassDependency2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassDependency2; - }; - using SubpassDependency2KHR = SubpassDependency2; - - struct RenderPassCreateInfo2 - { - using NativeType = VkRenderPassCreateInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassCreateInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderPassCreateInfo2( VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags_ = {}, - uint32_t attachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentDescription2 * pAttachments_ = {}, - uint32_t subpassCount_ = {}, - const VULKAN_HPP_NAMESPACE::SubpassDescription2 * pSubpasses_ = {}, - uint32_t dependencyCount_ = {}, - const VULKAN_HPP_NAMESPACE::SubpassDependency2 * pDependencies_ = {}, - uint32_t correlatedViewMaskCount_ = {}, - const uint32_t * pCorrelatedViewMasks_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , attachmentCount( attachmentCount_ ) - , pAttachments( pAttachments_ ) - , subpassCount( subpassCount_ ) - , pSubpasses( pSubpasses_ ) - , dependencyCount( dependencyCount_ ) - , pDependencies( pDependencies_ ) - , correlatedViewMaskCount( correlatedViewMaskCount_ ) - , pCorrelatedViewMasks( pCorrelatedViewMasks_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderPassCreateInfo2( RenderPassCreateInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassCreateInfo2( VkRenderPassCreateInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassCreateInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo2( - VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachments_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - subpasses_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - dependencies_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & correlatedViewMasks_ = {} ) - : flags( flags_ ) - , attachmentCount( static_cast( attachments_.size() ) ) - , pAttachments( attachments_.data() ) - , subpassCount( static_cast( subpasses_.size() ) ) - , pSubpasses( subpasses_.data() ) - , dependencyCount( static_cast( dependencies_.size() ) ) - , pDependencies( dependencies_.data() ) - , correlatedViewMaskCount( static_cast( correlatedViewMasks_.size() ) ) - , pCorrelatedViewMasks( correlatedViewMasks_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassCreateInfo2 & operator=( RenderPassCreateInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassCreateInfo2 & operator=( VkRenderPassCreateInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & - setFlags( VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = attachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & - setPAttachments( const VULKAN_HPP_NAMESPACE::AttachmentDescription2 * pAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pAttachments = pAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo2 & setAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachments_ ) VULKAN_HPP_NOEXCEPT - { - attachmentCount = static_cast( attachments_.size() ); - pAttachments = attachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & setSubpassCount( uint32_t subpassCount_ ) VULKAN_HPP_NOEXCEPT - { - subpassCount = subpassCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & - setPSubpasses( const VULKAN_HPP_NAMESPACE::SubpassDescription2 * pSubpasses_ ) VULKAN_HPP_NOEXCEPT - { - pSubpasses = pSubpasses_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo2 & setSubpasses( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - subpasses_ ) VULKAN_HPP_NOEXCEPT - { - subpassCount = static_cast( subpasses_.size() ); - pSubpasses = subpasses_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & setDependencyCount( uint32_t dependencyCount_ ) VULKAN_HPP_NOEXCEPT - { - dependencyCount = dependencyCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & - setPDependencies( const VULKAN_HPP_NAMESPACE::SubpassDependency2 * pDependencies_ ) VULKAN_HPP_NOEXCEPT - { - pDependencies = pDependencies_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo2 & setDependencies( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - dependencies_ ) VULKAN_HPP_NOEXCEPT - { - dependencyCount = static_cast( dependencies_.size() ); - pDependencies = dependencies_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & - setCorrelatedViewMaskCount( uint32_t correlatedViewMaskCount_ ) VULKAN_HPP_NOEXCEPT - { - correlatedViewMaskCount = correlatedViewMaskCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassCreateInfo2 & - setPCorrelatedViewMasks( const uint32_t * pCorrelatedViewMasks_ ) VULKAN_HPP_NOEXCEPT - { - pCorrelatedViewMasks = pCorrelatedViewMasks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassCreateInfo2 & setCorrelatedViewMasks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & correlatedViewMasks_ ) VULKAN_HPP_NOEXCEPT - { - correlatedViewMaskCount = static_cast( correlatedViewMasks_.size() ); - pCorrelatedViewMasks = correlatedViewMasks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassCreateInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassCreateInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - attachmentCount, - pAttachments, - subpassCount, - pSubpasses, - dependencyCount, - pDependencies, - correlatedViewMaskCount, - pCorrelatedViewMasks ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassCreateInfo2 const & ) const = default; -#else - bool operator==( RenderPassCreateInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( attachmentCount == rhs.attachmentCount ) && ( pAttachments == rhs.pAttachments ) && - ( subpassCount == rhs.subpassCount ) && ( pSubpasses == rhs.pSubpasses ) && - ( dependencyCount == rhs.dependencyCount ) && ( pDependencies == rhs.pDependencies ) && - ( correlatedViewMaskCount == rhs.correlatedViewMaskCount ) && - ( pCorrelatedViewMasks == rhs.pCorrelatedViewMasks ); -# endif - } - - bool operator!=( RenderPassCreateInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassCreateInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderPassCreateFlags flags = {}; - uint32_t attachmentCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentDescription2 * pAttachments = {}; - uint32_t subpassCount = {}; - const VULKAN_HPP_NAMESPACE::SubpassDescription2 * pSubpasses = {}; - uint32_t dependencyCount = {}; - const VULKAN_HPP_NAMESPACE::SubpassDependency2 * pDependencies = {}; - uint32_t correlatedViewMaskCount = {}; - const uint32_t * pCorrelatedViewMasks = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassCreateInfo2 ) == sizeof( VkRenderPassCreateInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RenderPassCreateInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassCreateInfo2; - }; - using RenderPassCreateInfo2KHR = RenderPassCreateInfo2; - - struct RenderPassFragmentDensityMapCreateInfoEXT - { - using NativeType = VkRenderPassFragmentDensityMapCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRenderPassFragmentDensityMapCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderPassFragmentDensityMapCreateInfoEXT( - VULKAN_HPP_NAMESPACE::AttachmentReference fragmentDensityMapAttachment_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentDensityMapAttachment( fragmentDensityMapAttachment_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderPassFragmentDensityMapCreateInfoEXT( - RenderPassFragmentDensityMapCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassFragmentDensityMapCreateInfoEXT( VkRenderPassFragmentDensityMapCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : RenderPassFragmentDensityMapCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassFragmentDensityMapCreateInfoEXT & - operator=( RenderPassFragmentDensityMapCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassFragmentDensityMapCreateInfoEXT & - operator=( VkRenderPassFragmentDensityMapCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassFragmentDensityMapCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassFragmentDensityMapCreateInfoEXT & setFragmentDensityMapAttachment( - VULKAN_HPP_NAMESPACE::AttachmentReference const & fragmentDensityMapAttachment_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityMapAttachment = fragmentDensityMapAttachment_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassFragmentDensityMapCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassFragmentDensityMapCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentDensityMapAttachment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassFragmentDensityMapCreateInfoEXT const & ) const = default; -#else - bool operator==( RenderPassFragmentDensityMapCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentDensityMapAttachment == rhs.fragmentDensityMapAttachment ); -# endif - } - - bool operator!=( RenderPassFragmentDensityMapCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassFragmentDensityMapCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::AttachmentReference fragmentDensityMapAttachment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassFragmentDensityMapCreateInfoEXT ) == - sizeof( VkRenderPassFragmentDensityMapCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderPassFragmentDensityMapCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassFragmentDensityMapCreateInfoEXT; - }; - - struct RenderPassInputAttachmentAspectCreateInfo - { - using NativeType = VkRenderPassInputAttachmentAspectCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRenderPassInputAttachmentAspectCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderPassInputAttachmentAspectCreateInfo( - uint32_t aspectReferenceCount_ = {}, - const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference * pAspectReferences_ = {} ) VULKAN_HPP_NOEXCEPT - : aspectReferenceCount( aspectReferenceCount_ ) - , pAspectReferences( pAspectReferences_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderPassInputAttachmentAspectCreateInfo( - RenderPassInputAttachmentAspectCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassInputAttachmentAspectCreateInfo( VkRenderPassInputAttachmentAspectCreateInfo const & rhs ) - VULKAN_HPP_NOEXCEPT - : RenderPassInputAttachmentAspectCreateInfo( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassInputAttachmentAspectCreateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - aspectReferences_ ) - : aspectReferenceCount( static_cast( aspectReferences_.size() ) ) - , pAspectReferences( aspectReferences_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassInputAttachmentAspectCreateInfo & - operator=( RenderPassInputAttachmentAspectCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassInputAttachmentAspectCreateInfo & - operator=( VkRenderPassInputAttachmentAspectCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassInputAttachmentAspectCreateInfo & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassInputAttachmentAspectCreateInfo & - setAspectReferenceCount( uint32_t aspectReferenceCount_ ) VULKAN_HPP_NOEXCEPT - { - aspectReferenceCount = aspectReferenceCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassInputAttachmentAspectCreateInfo & setPAspectReferences( - const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference * pAspectReferences_ ) VULKAN_HPP_NOEXCEPT - { - pAspectReferences = pAspectReferences_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassInputAttachmentAspectCreateInfo & setAspectReferences( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - aspectReferences_ ) VULKAN_HPP_NOEXCEPT - { - aspectReferenceCount = static_cast( aspectReferences_.size() ); - pAspectReferences = aspectReferences_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassInputAttachmentAspectCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassInputAttachmentAspectCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, aspectReferenceCount, pAspectReferences ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassInputAttachmentAspectCreateInfo const & ) const = default; -#else - bool operator==( RenderPassInputAttachmentAspectCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( aspectReferenceCount == rhs.aspectReferenceCount ) && - ( pAspectReferences == rhs.pAspectReferences ); -# endif - } - - bool operator!=( RenderPassInputAttachmentAspectCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassInputAttachmentAspectCreateInfo; - const void * pNext = {}; - uint32_t aspectReferenceCount = {}; - const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference * pAspectReferences = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo ) == - sizeof( VkRenderPassInputAttachmentAspectCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderPassInputAttachmentAspectCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassInputAttachmentAspectCreateInfo; - }; - using RenderPassInputAttachmentAspectCreateInfoKHR = RenderPassInputAttachmentAspectCreateInfo; - - struct RenderPassMultiviewCreateInfo - { - using NativeType = VkRenderPassMultiviewCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassMultiviewCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderPassMultiviewCreateInfo( uint32_t subpassCount_ = {}, - const uint32_t * pViewMasks_ = {}, - uint32_t dependencyCount_ = {}, - const int32_t * pViewOffsets_ = {}, - uint32_t correlationMaskCount_ = {}, - const uint32_t * pCorrelationMasks_ = {} ) VULKAN_HPP_NOEXCEPT - : subpassCount( subpassCount_ ) - , pViewMasks( pViewMasks_ ) - , dependencyCount( dependencyCount_ ) - , pViewOffsets( pViewOffsets_ ) - , correlationMaskCount( correlationMaskCount_ ) - , pCorrelationMasks( pCorrelationMasks_ ) - {} - - VULKAN_HPP_CONSTEXPR - RenderPassMultiviewCreateInfo( RenderPassMultiviewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassMultiviewCreateInfo( VkRenderPassMultiviewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassMultiviewCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassMultiviewCreateInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewMasks_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewOffsets_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & correlationMasks_ = {} ) - : subpassCount( static_cast( viewMasks_.size() ) ) - , pViewMasks( viewMasks_.data() ) - , dependencyCount( static_cast( viewOffsets_.size() ) ) - , pViewOffsets( viewOffsets_.data() ) - , correlationMaskCount( static_cast( correlationMasks_.size() ) ) - , pCorrelationMasks( correlationMasks_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassMultiviewCreateInfo & - operator=( RenderPassMultiviewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassMultiviewCreateInfo & operator=( VkRenderPassMultiviewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & - setSubpassCount( uint32_t subpassCount_ ) VULKAN_HPP_NOEXCEPT - { - subpassCount = subpassCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & - setPViewMasks( const uint32_t * pViewMasks_ ) VULKAN_HPP_NOEXCEPT - { - pViewMasks = pViewMasks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassMultiviewCreateInfo & setViewMasks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewMasks_ ) VULKAN_HPP_NOEXCEPT - { - subpassCount = static_cast( viewMasks_.size() ); - pViewMasks = viewMasks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & - setDependencyCount( uint32_t dependencyCount_ ) VULKAN_HPP_NOEXCEPT - { - dependencyCount = dependencyCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & - setPViewOffsets( const int32_t * pViewOffsets_ ) VULKAN_HPP_NOEXCEPT - { - pViewOffsets = pViewOffsets_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassMultiviewCreateInfo & setViewOffsets( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & viewOffsets_ ) VULKAN_HPP_NOEXCEPT - { - dependencyCount = static_cast( viewOffsets_.size() ); - pViewOffsets = viewOffsets_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & - setCorrelationMaskCount( uint32_t correlationMaskCount_ ) VULKAN_HPP_NOEXCEPT - { - correlationMaskCount = correlationMaskCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassMultiviewCreateInfo & - setPCorrelationMasks( const uint32_t * pCorrelationMasks_ ) VULKAN_HPP_NOEXCEPT - { - pCorrelationMasks = pCorrelationMasks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassMultiviewCreateInfo & setCorrelationMasks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & correlationMasks_ ) VULKAN_HPP_NOEXCEPT - { - correlationMaskCount = static_cast( correlationMasks_.size() ); - pCorrelationMasks = correlationMasks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassMultiviewCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassMultiviewCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - subpassCount, - pViewMasks, - dependencyCount, - pViewOffsets, - correlationMaskCount, - pCorrelationMasks ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassMultiviewCreateInfo const & ) const = default; -#else - bool operator==( RenderPassMultiviewCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( subpassCount == rhs.subpassCount ) && - ( pViewMasks == rhs.pViewMasks ) && ( dependencyCount == rhs.dependencyCount ) && - ( pViewOffsets == rhs.pViewOffsets ) && ( correlationMaskCount == rhs.correlationMaskCount ) && - ( pCorrelationMasks == rhs.pCorrelationMasks ); -# endif - } - - bool operator!=( RenderPassMultiviewCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassMultiviewCreateInfo; - const void * pNext = {}; - uint32_t subpassCount = {}; - const uint32_t * pViewMasks = {}; - uint32_t dependencyCount = {}; - const int32_t * pViewOffsets = {}; - uint32_t correlationMaskCount = {}; - const uint32_t * pCorrelationMasks = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassMultiviewCreateInfo ) == - sizeof( VkRenderPassMultiviewCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderPassMultiviewCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassMultiviewCreateInfo; - }; - using RenderPassMultiviewCreateInfoKHR = RenderPassMultiviewCreateInfo; - - struct SubpassSampleLocationsEXT - { - using NativeType = VkSubpassSampleLocationsEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassSampleLocationsEXT( - uint32_t subpassIndex_ = {}, - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : subpassIndex( subpassIndex_ ) - , sampleLocationsInfo( sampleLocationsInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - SubpassSampleLocationsEXT( SubpassSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassSampleLocationsEXT( VkSubpassSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassSampleLocationsEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassSampleLocationsEXT & operator=( SubpassSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassSampleLocationsEXT & operator=( VkSubpassSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassSampleLocationsEXT & setSubpassIndex( uint32_t subpassIndex_ ) VULKAN_HPP_NOEXCEPT - { - subpassIndex = subpassIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassSampleLocationsEXT & setSampleLocationsInfo( - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT const & sampleLocationsInfo_ ) VULKAN_HPP_NOEXCEPT - { - sampleLocationsInfo = sampleLocationsInfo_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassSampleLocationsEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassSampleLocationsEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( subpassIndex, sampleLocationsInfo ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassSampleLocationsEXT const & ) const = default; -#else - bool operator==( SubpassSampleLocationsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( subpassIndex == rhs.subpassIndex ) && ( sampleLocationsInfo == rhs.sampleLocationsInfo ); -# endif - } - - bool operator!=( SubpassSampleLocationsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t subpassIndex = {}; - VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassSampleLocationsEXT ) == - sizeof( VkSubpassSampleLocationsEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassSampleLocationsEXT is not nothrow_move_constructible!" ); - - struct RenderPassSampleLocationsBeginInfoEXT - { - using NativeType = VkRenderPassSampleLocationsBeginInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRenderPassSampleLocationsBeginInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderPassSampleLocationsBeginInfoEXT( - uint32_t attachmentInitialSampleLocationsCount_ = {}, - const VULKAN_HPP_NAMESPACE::AttachmentSampleLocationsEXT * pAttachmentInitialSampleLocations_ = {}, - uint32_t postSubpassSampleLocationsCount_ = {}, - const VULKAN_HPP_NAMESPACE::SubpassSampleLocationsEXT * pPostSubpassSampleLocations_ = {} ) VULKAN_HPP_NOEXCEPT - : attachmentInitialSampleLocationsCount( attachmentInitialSampleLocationsCount_ ) - , pAttachmentInitialSampleLocations( pAttachmentInitialSampleLocations_ ) - , postSubpassSampleLocationsCount( postSubpassSampleLocationsCount_ ) - , pPostSubpassSampleLocations( pPostSubpassSampleLocations_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderPassSampleLocationsBeginInfoEXT( RenderPassSampleLocationsBeginInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - RenderPassSampleLocationsBeginInfoEXT( VkRenderPassSampleLocationsBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassSampleLocationsBeginInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassSampleLocationsBeginInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachmentInitialSampleLocations_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - postSubpassSampleLocations_ = {} ) - : attachmentInitialSampleLocationsCount( static_cast( attachmentInitialSampleLocations_.size() ) ) - , pAttachmentInitialSampleLocations( attachmentInitialSampleLocations_.data() ) - , postSubpassSampleLocationsCount( static_cast( postSubpassSampleLocations_.size() ) ) - , pPostSubpassSampleLocations( postSubpassSampleLocations_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassSampleLocationsBeginInfoEXT & - operator=( RenderPassSampleLocationsBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassSampleLocationsBeginInfoEXT & - operator=( VkRenderPassSampleLocationsBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassSampleLocationsBeginInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassSampleLocationsBeginInfoEXT & - setAttachmentInitialSampleLocationsCount( uint32_t attachmentInitialSampleLocationsCount_ ) VULKAN_HPP_NOEXCEPT - { - attachmentInitialSampleLocationsCount = attachmentInitialSampleLocationsCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassSampleLocationsBeginInfoEXT & setPAttachmentInitialSampleLocations( - const VULKAN_HPP_NAMESPACE::AttachmentSampleLocationsEXT * pAttachmentInitialSampleLocations_ ) - VULKAN_HPP_NOEXCEPT - { - pAttachmentInitialSampleLocations = pAttachmentInitialSampleLocations_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassSampleLocationsBeginInfoEXT & setAttachmentInitialSampleLocations( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - attachmentInitialSampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - attachmentInitialSampleLocationsCount = static_cast( attachmentInitialSampleLocations_.size() ); - pAttachmentInitialSampleLocations = attachmentInitialSampleLocations_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderPassSampleLocationsBeginInfoEXT & - setPostSubpassSampleLocationsCount( uint32_t postSubpassSampleLocationsCount_ ) VULKAN_HPP_NOEXCEPT - { - postSubpassSampleLocationsCount = postSubpassSampleLocationsCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassSampleLocationsBeginInfoEXT & setPPostSubpassSampleLocations( - const VULKAN_HPP_NAMESPACE::SubpassSampleLocationsEXT * pPostSubpassSampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - pPostSubpassSampleLocations = pPostSubpassSampleLocations_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderPassSampleLocationsBeginInfoEXT & setPostSubpassSampleLocations( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - postSubpassSampleLocations_ ) VULKAN_HPP_NOEXCEPT - { - postSubpassSampleLocationsCount = static_cast( postSubpassSampleLocations_.size() ); - pPostSubpassSampleLocations = postSubpassSampleLocations_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassSampleLocationsBeginInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassSampleLocationsBeginInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - attachmentInitialSampleLocationsCount, - pAttachmentInitialSampleLocations, - postSubpassSampleLocationsCount, - pPostSubpassSampleLocations ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassSampleLocationsBeginInfoEXT const & ) const = default; -#else - bool operator==( RenderPassSampleLocationsBeginInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( attachmentInitialSampleLocationsCount == rhs.attachmentInitialSampleLocationsCount ) && - ( pAttachmentInitialSampleLocations == rhs.pAttachmentInitialSampleLocations ) && - ( postSubpassSampleLocationsCount == rhs.postSubpassSampleLocationsCount ) && - ( pPostSubpassSampleLocations == rhs.pPostSubpassSampleLocations ); -# endif - } - - bool operator!=( RenderPassSampleLocationsBeginInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassSampleLocationsBeginInfoEXT; - const void * pNext = {}; - uint32_t attachmentInitialSampleLocationsCount = {}; - const VULKAN_HPP_NAMESPACE::AttachmentSampleLocationsEXT * pAttachmentInitialSampleLocations = {}; - uint32_t postSubpassSampleLocationsCount = {}; - const VULKAN_HPP_NAMESPACE::SubpassSampleLocationsEXT * pPostSubpassSampleLocations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassSampleLocationsBeginInfoEXT ) == - sizeof( VkRenderPassSampleLocationsBeginInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderPassSampleLocationsBeginInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassSampleLocationsBeginInfoEXT; - }; - - struct RenderPassTransformBeginInfoQCOM - { - using NativeType = VkRenderPassTransformBeginInfoQCOM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassTransformBeginInfoQCOM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderPassTransformBeginInfoQCOM( - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity ) VULKAN_HPP_NOEXCEPT : transform( transform_ ) - {} - - VULKAN_HPP_CONSTEXPR - RenderPassTransformBeginInfoQCOM( RenderPassTransformBeginInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassTransformBeginInfoQCOM( VkRenderPassTransformBeginInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderPassTransformBeginInfoQCOM( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderPassTransformBeginInfoQCOM & - operator=( RenderPassTransformBeginInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderPassTransformBeginInfoQCOM & operator=( VkRenderPassTransformBeginInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderPassTransformBeginInfoQCOM & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderPassTransformBeginInfoQCOM & - setTransform( VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform_ ) VULKAN_HPP_NOEXCEPT - { - transform = transform_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderPassTransformBeginInfoQCOM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderPassTransformBeginInfoQCOM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, transform ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderPassTransformBeginInfoQCOM const & ) const = default; -#else - bool operator==( RenderPassTransformBeginInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( transform == rhs.transform ); -# endif - } - - bool operator!=( RenderPassTransformBeginInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassTransformBeginInfoQCOM; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR transform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderPassTransformBeginInfoQCOM ) == - sizeof( VkRenderPassTransformBeginInfoQCOM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderPassTransformBeginInfoQCOM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderPassTransformBeginInfoQCOM; - }; - - struct RenderingAttachmentInfo - { - using NativeType = VkRenderingAttachmentInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderingAttachmentInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo( - VULKAN_HPP_NAMESPACE::ImageView imageView_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::ResolveModeFlagBits resolveMode_ = VULKAN_HPP_NAMESPACE::ResolveModeFlagBits::eNone, - VULKAN_HPP_NAMESPACE::ImageView resolveImageView_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout resolveImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad, - VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore, - VULKAN_HPP_NAMESPACE::ClearValue clearValue_ = {} ) VULKAN_HPP_NOEXCEPT - : imageView( imageView_ ) - , imageLayout( imageLayout_ ) - , resolveMode( resolveMode_ ) - , resolveImageView( resolveImageView_ ) - , resolveImageLayout( resolveImageLayout_ ) - , loadOp( loadOp_ ) - , storeOp( storeOp_ ) - , clearValue( clearValue_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - RenderingAttachmentInfo( RenderingAttachmentInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingAttachmentInfo( VkRenderingAttachmentInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderingAttachmentInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderingAttachmentInfo & operator=( RenderingAttachmentInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingAttachmentInfo & operator=( VkRenderingAttachmentInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setImageView( VULKAN_HPP_NAMESPACE::ImageView imageView_ ) VULKAN_HPP_NOEXCEPT - { - imageView = imageView_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ ) VULKAN_HPP_NOEXCEPT - { - imageLayout = imageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setResolveMode( VULKAN_HPP_NAMESPACE::ResolveModeFlagBits resolveMode_ ) VULKAN_HPP_NOEXCEPT - { - resolveMode = resolveMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setResolveImageView( VULKAN_HPP_NAMESPACE::ImageView resolveImageView_ ) VULKAN_HPP_NOEXCEPT - { - resolveImageView = resolveImageView_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setResolveImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout resolveImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - resolveImageLayout = resolveImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ ) VULKAN_HPP_NOEXCEPT - { - loadOp = loadOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ ) VULKAN_HPP_NOEXCEPT - { - storeOp = storeOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingAttachmentInfo & - setClearValue( VULKAN_HPP_NAMESPACE::ClearValue const & clearValue_ ) VULKAN_HPP_NOEXCEPT - { - clearValue = clearValue_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderingAttachmentInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderingAttachmentInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - imageView, - imageLayout, - resolveMode, - resolveImageView, - resolveImageLayout, - loadOp, - storeOp, - clearValue ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderingAttachmentInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageView imageView = {}; - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::ResolveModeFlagBits resolveMode = VULKAN_HPP_NAMESPACE::ResolveModeFlagBits::eNone; - VULKAN_HPP_NAMESPACE::ImageView resolveImageView = {}; - VULKAN_HPP_NAMESPACE::ImageLayout resolveImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad; - VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore; - VULKAN_HPP_NAMESPACE::ClearValue clearValue = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo ) == - sizeof( VkRenderingAttachmentInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RenderingAttachmentInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderingAttachmentInfo; - }; - using RenderingAttachmentInfoKHR = RenderingAttachmentInfo; - - struct RenderingFragmentDensityMapAttachmentInfoEXT - { - using NativeType = VkRenderingFragmentDensityMapAttachmentInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRenderingFragmentDensityMapAttachmentInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderingFragmentDensityMapAttachmentInfoEXT( - VULKAN_HPP_NAMESPACE::ImageView imageView_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) - VULKAN_HPP_NOEXCEPT - : imageView( imageView_ ) - , imageLayout( imageLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderingFragmentDensityMapAttachmentInfoEXT( - RenderingFragmentDensityMapAttachmentInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingFragmentDensityMapAttachmentInfoEXT( VkRenderingFragmentDensityMapAttachmentInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : RenderingFragmentDensityMapAttachmentInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderingFragmentDensityMapAttachmentInfoEXT & - operator=( RenderingFragmentDensityMapAttachmentInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingFragmentDensityMapAttachmentInfoEXT & - operator=( VkRenderingFragmentDensityMapAttachmentInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentDensityMapAttachmentInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentDensityMapAttachmentInfoEXT & - setImageView( VULKAN_HPP_NAMESPACE::ImageView imageView_ ) VULKAN_HPP_NOEXCEPT - { - imageView = imageView_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentDensityMapAttachmentInfoEXT & - setImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ ) VULKAN_HPP_NOEXCEPT - { - imageLayout = imageLayout_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderingFragmentDensityMapAttachmentInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderingFragmentDensityMapAttachmentInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageView, imageLayout ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderingFragmentDensityMapAttachmentInfoEXT const & ) const = default; -#else - bool operator==( RenderingFragmentDensityMapAttachmentInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageView == rhs.imageView ) && - ( imageLayout == rhs.imageLayout ); -# endif - } - - bool operator!=( RenderingFragmentDensityMapAttachmentInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderingFragmentDensityMapAttachmentInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageView imageView = {}; - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderingFragmentDensityMapAttachmentInfoEXT ) == - sizeof( VkRenderingFragmentDensityMapAttachmentInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderingFragmentDensityMapAttachmentInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderingFragmentDensityMapAttachmentInfoEXT; - }; - - struct RenderingFragmentShadingRateAttachmentInfoKHR - { - using NativeType = VkRenderingFragmentShadingRateAttachmentInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eRenderingFragmentShadingRateAttachmentInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR RenderingFragmentShadingRateAttachmentInfoKHR( - VULKAN_HPP_NAMESPACE::ImageView imageView_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::Extent2D shadingRateAttachmentTexelSize_ = {} ) VULKAN_HPP_NOEXCEPT - : imageView( imageView_ ) - , imageLayout( imageLayout_ ) - , shadingRateAttachmentTexelSize( shadingRateAttachmentTexelSize_ ) - {} - - VULKAN_HPP_CONSTEXPR RenderingFragmentShadingRateAttachmentInfoKHR( - RenderingFragmentShadingRateAttachmentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingFragmentShadingRateAttachmentInfoKHR( VkRenderingFragmentShadingRateAttachmentInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : RenderingFragmentShadingRateAttachmentInfoKHR( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderingFragmentShadingRateAttachmentInfoKHR & - operator=( RenderingFragmentShadingRateAttachmentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingFragmentShadingRateAttachmentInfoKHR & - operator=( VkRenderingFragmentShadingRateAttachmentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentShadingRateAttachmentInfoKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentShadingRateAttachmentInfoKHR & - setImageView( VULKAN_HPP_NAMESPACE::ImageView imageView_ ) VULKAN_HPP_NOEXCEPT - { - imageView = imageView_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentShadingRateAttachmentInfoKHR & - setImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout imageLayout_ ) VULKAN_HPP_NOEXCEPT - { - imageLayout = imageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingFragmentShadingRateAttachmentInfoKHR & setShadingRateAttachmentTexelSize( - VULKAN_HPP_NAMESPACE::Extent2D const & shadingRateAttachmentTexelSize_ ) VULKAN_HPP_NOEXCEPT - { - shadingRateAttachmentTexelSize = shadingRateAttachmentTexelSize_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderingFragmentShadingRateAttachmentInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderingFragmentShadingRateAttachmentInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, imageView, imageLayout, shadingRateAttachmentTexelSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderingFragmentShadingRateAttachmentInfoKHR const & ) const = default; -#else - bool operator==( RenderingFragmentShadingRateAttachmentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( imageView == rhs.imageView ) && - ( imageLayout == rhs.imageLayout ) && - ( shadingRateAttachmentTexelSize == rhs.shadingRateAttachmentTexelSize ); -# endif - } - - bool operator!=( RenderingFragmentShadingRateAttachmentInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderingFragmentShadingRateAttachmentInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageView imageView = {}; - VULKAN_HPP_NAMESPACE::ImageLayout imageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::Extent2D shadingRateAttachmentTexelSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderingFragmentShadingRateAttachmentInfoKHR ) == - sizeof( VkRenderingFragmentShadingRateAttachmentInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "RenderingFragmentShadingRateAttachmentInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderingFragmentShadingRateAttachmentInfoKHR; - }; - - struct RenderingInfo - { - using NativeType = VkRenderingInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderingInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 RenderingInfo( - VULKAN_HPP_NAMESPACE::RenderingFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Rect2D renderArea_ = {}, - uint32_t layerCount_ = {}, - uint32_t viewMask_ = {}, - uint32_t colorAttachmentCount_ = {}, - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pColorAttachments_ = {}, - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pDepthAttachment_ = {}, - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pStencilAttachment_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , renderArea( renderArea_ ) - , layerCount( layerCount_ ) - , viewMask( viewMask_ ) - , colorAttachmentCount( colorAttachmentCount_ ) - , pColorAttachments( pColorAttachments_ ) - , pDepthAttachment( pDepthAttachment_ ) - , pStencilAttachment( pStencilAttachment_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo( RenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingInfo( VkRenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : RenderingInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderingInfo( - VULKAN_HPP_NAMESPACE::RenderingFlags flags_, - VULKAN_HPP_NAMESPACE::Rect2D renderArea_, - uint32_t layerCount_, - uint32_t viewMask_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachments_, - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pDepthAttachment_ = {}, - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pStencilAttachment_ = {} ) - : flags( flags_ ) - , renderArea( renderArea_ ) - , layerCount( layerCount_ ) - , viewMask( viewMask_ ) - , colorAttachmentCount( static_cast( colorAttachments_.size() ) ) - , pColorAttachments( colorAttachments_.data() ) - , pDepthAttachment( pDepthAttachment_ ) - , pStencilAttachment( pStencilAttachment_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - RenderingInfo & operator=( RenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - RenderingInfo & operator=( VkRenderingInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & setFlags( VULKAN_HPP_NAMESPACE::RenderingFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & - setRenderArea( VULKAN_HPP_NAMESPACE::Rect2D const & renderArea_ ) VULKAN_HPP_NOEXCEPT - { - renderArea = renderArea_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = layerCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & setViewMask( uint32_t viewMask_ ) VULKAN_HPP_NOEXCEPT - { - viewMask = viewMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & - setColorAttachmentCount( uint32_t colorAttachmentCount_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = colorAttachmentCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & setPColorAttachments( - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pColorAttachments_ ) VULKAN_HPP_NOEXCEPT - { - pColorAttachments = pColorAttachments_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - RenderingInfo & setColorAttachments( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - colorAttachments_ ) VULKAN_HPP_NOEXCEPT - { - colorAttachmentCount = static_cast( colorAttachments_.size() ); - pColorAttachments = colorAttachments_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & - setPDepthAttachment( const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pDepthAttachment_ ) VULKAN_HPP_NOEXCEPT - { - pDepthAttachment = pDepthAttachment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 RenderingInfo & setPStencilAttachment( - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pStencilAttachment_ ) VULKAN_HPP_NOEXCEPT - { - pStencilAttachment = pStencilAttachment_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkRenderingInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkRenderingInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - renderArea, - layerCount, - viewMask, - colorAttachmentCount, - pColorAttachments, - pDepthAttachment, - pStencilAttachment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( RenderingInfo const & ) const = default; -#else - bool operator==( RenderingInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( renderArea == rhs.renderArea ) && ( layerCount == rhs.layerCount ) && ( viewMask == rhs.viewMask ) && - ( colorAttachmentCount == rhs.colorAttachmentCount ) && ( pColorAttachments == rhs.pColorAttachments ) && - ( pDepthAttachment == rhs.pDepthAttachment ) && ( pStencilAttachment == rhs.pStencilAttachment ); -# endif - } - - bool operator!=( RenderingInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderingInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderingFlags flags = {}; - VULKAN_HPP_NAMESPACE::Rect2D renderArea = {}; - uint32_t layerCount = {}; - uint32_t viewMask = {}; - uint32_t colorAttachmentCount = {}; - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pColorAttachments = {}; - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pDepthAttachment = {}; - const VULKAN_HPP_NAMESPACE::RenderingAttachmentInfo * pStencilAttachment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::RenderingInfo ) == sizeof( VkRenderingInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "RenderingInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = RenderingInfo; - }; - using RenderingInfoKHR = RenderingInfo; - - struct ResolveImageInfo2 - { - using NativeType = VkResolveImageInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eResolveImageInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ResolveImageInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - VULKAN_HPP_NAMESPACE::Image dstImage_ = {}, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined, - uint32_t regionCount_ = {}, - const VULKAN_HPP_NAMESPACE::ImageResolve2 * pRegions_ = {} ) VULKAN_HPP_NOEXCEPT - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( regionCount_ ) - , pRegions( pRegions_ ) - {} - - VULKAN_HPP_CONSTEXPR ResolveImageInfo2( ResolveImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ResolveImageInfo2( VkResolveImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : ResolveImageInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ResolveImageInfo2( - VULKAN_HPP_NAMESPACE::Image srcImage_, - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_, - VULKAN_HPP_NAMESPACE::Image dstImage_, - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - : srcImage( srcImage_ ) - , srcImageLayout( srcImageLayout_ ) - , dstImage( dstImage_ ) - , dstImageLayout( dstImageLayout_ ) - , regionCount( static_cast( regions_.size() ) ) - , pRegions( regions_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ResolveImageInfo2 & operator=( ResolveImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ResolveImageInfo2 & operator=( VkResolveImageInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & setSrcImage( VULKAN_HPP_NAMESPACE::Image srcImage_ ) VULKAN_HPP_NOEXCEPT - { - srcImage = srcImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & - setSrcImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - srcImageLayout = srcImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & setDstImage( VULKAN_HPP_NAMESPACE::Image dstImage_ ) VULKAN_HPP_NOEXCEPT - { - dstImage = dstImage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & - setDstImageLayout( VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout_ ) VULKAN_HPP_NOEXCEPT - { - dstImageLayout = dstImageLayout_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & setRegionCount( uint32_t regionCount_ ) VULKAN_HPP_NOEXCEPT - { - regionCount = regionCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ResolveImageInfo2 & - setPRegions( const VULKAN_HPP_NAMESPACE::ImageResolve2 * pRegions_ ) VULKAN_HPP_NOEXCEPT - { - pRegions = pRegions_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ResolveImageInfo2 & setRegions( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & regions_ ) - VULKAN_HPP_NOEXCEPT - { - regionCount = static_cast( regions_.size() ); - pRegions = regions_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkResolveImageInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkResolveImageInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ResolveImageInfo2 const & ) const = default; -#else - bool operator==( ResolveImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( srcImage == rhs.srcImage ) && - ( srcImageLayout == rhs.srcImageLayout ) && ( dstImage == rhs.dstImage ) && - ( dstImageLayout == rhs.dstImageLayout ) && ( regionCount == rhs.regionCount ) && - ( pRegions == rhs.pRegions ); -# endif - } - - bool operator!=( ResolveImageInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eResolveImageInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Image srcImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout srcImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - VULKAN_HPP_NAMESPACE::Image dstImage = {}; - VULKAN_HPP_NAMESPACE::ImageLayout dstImageLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined; - uint32_t regionCount = {}; - const VULKAN_HPP_NAMESPACE::ImageResolve2 * pRegions = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ResolveImageInfo2 ) == sizeof( VkResolveImageInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ResolveImageInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ResolveImageInfo2; - }; - using ResolveImageInfo2KHR = ResolveImageInfo2; - - struct SamplerBorderColorComponentMappingCreateInfoEXT - { - using NativeType = VkSamplerBorderColorComponentMappingCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSamplerBorderColorComponentMappingCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SamplerBorderColorComponentMappingCreateInfoEXT( VULKAN_HPP_NAMESPACE::ComponentMapping components_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 srgb_ = {} ) VULKAN_HPP_NOEXCEPT - : components( components_ ) - , srgb( srgb_ ) - {} - - VULKAN_HPP_CONSTEXPR SamplerBorderColorComponentMappingCreateInfoEXT( - SamplerBorderColorComponentMappingCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerBorderColorComponentMappingCreateInfoEXT( VkSamplerBorderColorComponentMappingCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : SamplerBorderColorComponentMappingCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerBorderColorComponentMappingCreateInfoEXT & - operator=( SamplerBorderColorComponentMappingCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerBorderColorComponentMappingCreateInfoEXT & - operator=( VkSamplerBorderColorComponentMappingCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SamplerBorderColorComponentMappingCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerBorderColorComponentMappingCreateInfoEXT & - setComponents( VULKAN_HPP_NAMESPACE::ComponentMapping const & components_ ) VULKAN_HPP_NOEXCEPT - { - components = components_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerBorderColorComponentMappingCreateInfoEXT & - setSrgb( VULKAN_HPP_NAMESPACE::Bool32 srgb_ ) VULKAN_HPP_NOEXCEPT - { - srgb = srgb_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSamplerBorderColorComponentMappingCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerBorderColorComponentMappingCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, components, srgb ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerBorderColorComponentMappingCreateInfoEXT const & ) const = default; -#else - bool operator==( SamplerBorderColorComponentMappingCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( components == rhs.components ) && - ( srgb == rhs.srgb ); -# endif - } - - bool operator!=( SamplerBorderColorComponentMappingCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerBorderColorComponentMappingCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ComponentMapping components = {}; - VULKAN_HPP_NAMESPACE::Bool32 srgb = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerBorderColorComponentMappingCreateInfoEXT ) == - sizeof( VkSamplerBorderColorComponentMappingCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SamplerBorderColorComponentMappingCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerBorderColorComponentMappingCreateInfoEXT; - }; - - struct SamplerCreateInfo - { - using NativeType = VkSamplerCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSamplerCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SamplerCreateInfo( - VULKAN_HPP_NAMESPACE::SamplerCreateFlags flags_ = {}, - VULKAN_HPP_NAMESPACE::Filter magFilter_ = VULKAN_HPP_NAMESPACE::Filter::eNearest, - VULKAN_HPP_NAMESPACE::Filter minFilter_ = VULKAN_HPP_NAMESPACE::Filter::eNearest, - VULKAN_HPP_NAMESPACE::SamplerMipmapMode mipmapMode_ = VULKAN_HPP_NAMESPACE::SamplerMipmapMode::eNearest, - VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeU_ = VULKAN_HPP_NAMESPACE::SamplerAddressMode::eRepeat, - VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeV_ = VULKAN_HPP_NAMESPACE::SamplerAddressMode::eRepeat, - VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeW_ = VULKAN_HPP_NAMESPACE::SamplerAddressMode::eRepeat, - float mipLodBias_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 anisotropyEnable_ = {}, - float maxAnisotropy_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 compareEnable_ = {}, - VULKAN_HPP_NAMESPACE::CompareOp compareOp_ = VULKAN_HPP_NAMESPACE::CompareOp::eNever, - float minLod_ = {}, - float maxLod_ = {}, - VULKAN_HPP_NAMESPACE::BorderColor borderColor_ = VULKAN_HPP_NAMESPACE::BorderColor::eFloatTransparentBlack, - VULKAN_HPP_NAMESPACE::Bool32 unnormalizedCoordinates_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , magFilter( magFilter_ ) - , minFilter( minFilter_ ) - , mipmapMode( mipmapMode_ ) - , addressModeU( addressModeU_ ) - , addressModeV( addressModeV_ ) - , addressModeW( addressModeW_ ) - , mipLodBias( mipLodBias_ ) - , anisotropyEnable( anisotropyEnable_ ) - , maxAnisotropy( maxAnisotropy_ ) - , compareEnable( compareEnable_ ) - , compareOp( compareOp_ ) - , minLod( minLod_ ) - , maxLod( maxLod_ ) - , borderColor( borderColor_ ) - , unnormalizedCoordinates( unnormalizedCoordinates_ ) - {} - - VULKAN_HPP_CONSTEXPR SamplerCreateInfo( SamplerCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerCreateInfo( VkSamplerCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SamplerCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerCreateInfo & operator=( SamplerCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerCreateInfo & operator=( VkSamplerCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::SamplerCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setMagFilter( VULKAN_HPP_NAMESPACE::Filter magFilter_ ) VULKAN_HPP_NOEXCEPT - { - magFilter = magFilter_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setMinFilter( VULKAN_HPP_NAMESPACE::Filter minFilter_ ) VULKAN_HPP_NOEXCEPT - { - minFilter = minFilter_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setMipmapMode( VULKAN_HPP_NAMESPACE::SamplerMipmapMode mipmapMode_ ) VULKAN_HPP_NOEXCEPT - { - mipmapMode = mipmapMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setAddressModeU( VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeU_ ) VULKAN_HPP_NOEXCEPT - { - addressModeU = addressModeU_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setAddressModeV( VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeV_ ) VULKAN_HPP_NOEXCEPT - { - addressModeV = addressModeV_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setAddressModeW( VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeW_ ) VULKAN_HPP_NOEXCEPT - { - addressModeW = addressModeW_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & setMipLodBias( float mipLodBias_ ) VULKAN_HPP_NOEXCEPT - { - mipLodBias = mipLodBias_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setAnisotropyEnable( VULKAN_HPP_NAMESPACE::Bool32 anisotropyEnable_ ) VULKAN_HPP_NOEXCEPT - { - anisotropyEnable = anisotropyEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & setMaxAnisotropy( float maxAnisotropy_ ) VULKAN_HPP_NOEXCEPT - { - maxAnisotropy = maxAnisotropy_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setCompareEnable( VULKAN_HPP_NAMESPACE::Bool32 compareEnable_ ) VULKAN_HPP_NOEXCEPT - { - compareEnable = compareEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setCompareOp( VULKAN_HPP_NAMESPACE::CompareOp compareOp_ ) VULKAN_HPP_NOEXCEPT - { - compareOp = compareOp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & setMinLod( float minLod_ ) VULKAN_HPP_NOEXCEPT - { - minLod = minLod_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & setMaxLod( float maxLod_ ) VULKAN_HPP_NOEXCEPT - { - maxLod = maxLod_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setBorderColor( VULKAN_HPP_NAMESPACE::BorderColor borderColor_ ) VULKAN_HPP_NOEXCEPT - { - borderColor = borderColor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCreateInfo & - setUnnormalizedCoordinates( VULKAN_HPP_NAMESPACE::Bool32 unnormalizedCoordinates_ ) VULKAN_HPP_NOEXCEPT - { - unnormalizedCoordinates = unnormalizedCoordinates_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSamplerCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - magFilter, - minFilter, - mipmapMode, - addressModeU, - addressModeV, - addressModeW, - mipLodBias, - anisotropyEnable, - maxAnisotropy, - compareEnable, - compareOp, - minLod, - maxLod, - borderColor, - unnormalizedCoordinates ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerCreateInfo const & ) const = default; -#else - bool operator==( SamplerCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( magFilter == rhs.magFilter ) && ( minFilter == rhs.minFilter ) && ( mipmapMode == rhs.mipmapMode ) && - ( addressModeU == rhs.addressModeU ) && ( addressModeV == rhs.addressModeV ) && - ( addressModeW == rhs.addressModeW ) && ( mipLodBias == rhs.mipLodBias ) && - ( anisotropyEnable == rhs.anisotropyEnable ) && ( maxAnisotropy == rhs.maxAnisotropy ) && - ( compareEnable == rhs.compareEnable ) && ( compareOp == rhs.compareOp ) && ( minLod == rhs.minLod ) && - ( maxLod == rhs.maxLod ) && ( borderColor == rhs.borderColor ) && - ( unnormalizedCoordinates == rhs.unnormalizedCoordinates ); -# endif - } - - bool operator!=( SamplerCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SamplerCreateFlags flags = {}; - VULKAN_HPP_NAMESPACE::Filter magFilter = VULKAN_HPP_NAMESPACE::Filter::eNearest; - VULKAN_HPP_NAMESPACE::Filter minFilter = VULKAN_HPP_NAMESPACE::Filter::eNearest; - VULKAN_HPP_NAMESPACE::SamplerMipmapMode mipmapMode = VULKAN_HPP_NAMESPACE::SamplerMipmapMode::eNearest; - VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeU = VULKAN_HPP_NAMESPACE::SamplerAddressMode::eRepeat; - VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeV = VULKAN_HPP_NAMESPACE::SamplerAddressMode::eRepeat; - VULKAN_HPP_NAMESPACE::SamplerAddressMode addressModeW = VULKAN_HPP_NAMESPACE::SamplerAddressMode::eRepeat; - float mipLodBias = {}; - VULKAN_HPP_NAMESPACE::Bool32 anisotropyEnable = {}; - float maxAnisotropy = {}; - VULKAN_HPP_NAMESPACE::Bool32 compareEnable = {}; - VULKAN_HPP_NAMESPACE::CompareOp compareOp = VULKAN_HPP_NAMESPACE::CompareOp::eNever; - float minLod = {}; - float maxLod = {}; - VULKAN_HPP_NAMESPACE::BorderColor borderColor = VULKAN_HPP_NAMESPACE::BorderColor::eFloatTransparentBlack; - VULKAN_HPP_NAMESPACE::Bool32 unnormalizedCoordinates = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerCreateInfo ) == sizeof( VkSamplerCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SamplerCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerCreateInfo; - }; - - struct SamplerCustomBorderColorCreateInfoEXT - { - using NativeType = VkSamplerCustomBorderColorCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSamplerCustomBorderColorCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 SamplerCustomBorderColorCreateInfoEXT( - VULKAN_HPP_NAMESPACE::ClearColorValue customBorderColor_ = {}, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined ) VULKAN_HPP_NOEXCEPT - : customBorderColor( customBorderColor_ ) - , format( format_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 SamplerCustomBorderColorCreateInfoEXT( SamplerCustomBorderColorCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SamplerCustomBorderColorCreateInfoEXT( VkSamplerCustomBorderColorCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SamplerCustomBorderColorCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerCustomBorderColorCreateInfoEXT & - operator=( SamplerCustomBorderColorCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerCustomBorderColorCreateInfoEXT & - operator=( VkSamplerCustomBorderColorCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SamplerCustomBorderColorCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCustomBorderColorCreateInfoEXT & - setCustomBorderColor( VULKAN_HPP_NAMESPACE::ClearColorValue const & customBorderColor_ ) VULKAN_HPP_NOEXCEPT - { - customBorderColor = customBorderColor_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerCustomBorderColorCreateInfoEXT & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSamplerCustomBorderColorCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerCustomBorderColorCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, customBorderColor, format ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerCustomBorderColorCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ClearColorValue customBorderColor = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerCustomBorderColorCreateInfoEXT ) == - sizeof( VkSamplerCustomBorderColorCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SamplerCustomBorderColorCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerCustomBorderColorCreateInfoEXT; - }; - - struct SamplerReductionModeCreateInfo - { - using NativeType = VkSamplerReductionModeCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSamplerReductionModeCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SamplerReductionModeCreateInfo( - VULKAN_HPP_NAMESPACE::SamplerReductionMode reductionMode_ = - VULKAN_HPP_NAMESPACE::SamplerReductionMode::eWeightedAverage ) VULKAN_HPP_NOEXCEPT - : reductionMode( reductionMode_ ) - {} - - VULKAN_HPP_CONSTEXPR - SamplerReductionModeCreateInfo( SamplerReductionModeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerReductionModeCreateInfo( VkSamplerReductionModeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SamplerReductionModeCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerReductionModeCreateInfo & - operator=( SamplerReductionModeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerReductionModeCreateInfo & operator=( VkSamplerReductionModeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SamplerReductionModeCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerReductionModeCreateInfo & - setReductionMode( VULKAN_HPP_NAMESPACE::SamplerReductionMode reductionMode_ ) VULKAN_HPP_NOEXCEPT - { - reductionMode = reductionMode_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSamplerReductionModeCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerReductionModeCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, reductionMode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerReductionModeCreateInfo const & ) const = default; -#else - bool operator==( SamplerReductionModeCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( reductionMode == rhs.reductionMode ); -# endif - } - - bool operator!=( SamplerReductionModeCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerReductionModeCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SamplerReductionMode reductionMode = - VULKAN_HPP_NAMESPACE::SamplerReductionMode::eWeightedAverage; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerReductionModeCreateInfo ) == - sizeof( VkSamplerReductionModeCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SamplerReductionModeCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerReductionModeCreateInfo; - }; - using SamplerReductionModeCreateInfoEXT = SamplerReductionModeCreateInfo; - - struct SamplerYcbcrConversionCreateInfo - { - using NativeType = VkSamplerYcbcrConversionCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSamplerYcbcrConversionCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SamplerYcbcrConversionCreateInfo( - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion ycbcrModel_ = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity, - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange ycbcrRange_ = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull, - VULKAN_HPP_NAMESPACE::ComponentMapping components_ = {}, - VULKAN_HPP_NAMESPACE::ChromaLocation xChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven, - VULKAN_HPP_NAMESPACE::ChromaLocation yChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven, - VULKAN_HPP_NAMESPACE::Filter chromaFilter_ = VULKAN_HPP_NAMESPACE::Filter::eNearest, - VULKAN_HPP_NAMESPACE::Bool32 forceExplicitReconstruction_ = {} ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - , ycbcrModel( ycbcrModel_ ) - , ycbcrRange( ycbcrRange_ ) - , components( components_ ) - , xChromaOffset( xChromaOffset_ ) - , yChromaOffset( yChromaOffset_ ) - , chromaFilter( chromaFilter_ ) - , forceExplicitReconstruction( forceExplicitReconstruction_ ) - {} - - VULKAN_HPP_CONSTEXPR - SamplerYcbcrConversionCreateInfo( SamplerYcbcrConversionCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerYcbcrConversionCreateInfo( VkSamplerYcbcrConversionCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SamplerYcbcrConversionCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerYcbcrConversionCreateInfo & - operator=( SamplerYcbcrConversionCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerYcbcrConversionCreateInfo & operator=( VkSamplerYcbcrConversionCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setYcbcrModel( VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion ycbcrModel_ ) VULKAN_HPP_NOEXCEPT - { - ycbcrModel = ycbcrModel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setYcbcrRange( VULKAN_HPP_NAMESPACE::SamplerYcbcrRange ycbcrRange_ ) VULKAN_HPP_NOEXCEPT - { - ycbcrRange = ycbcrRange_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setComponents( VULKAN_HPP_NAMESPACE::ComponentMapping const & components_ ) VULKAN_HPP_NOEXCEPT - { - components = components_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setXChromaOffset( VULKAN_HPP_NAMESPACE::ChromaLocation xChromaOffset_ ) VULKAN_HPP_NOEXCEPT - { - xChromaOffset = xChromaOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setYChromaOffset( VULKAN_HPP_NAMESPACE::ChromaLocation yChromaOffset_ ) VULKAN_HPP_NOEXCEPT - { - yChromaOffset = yChromaOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setChromaFilter( VULKAN_HPP_NAMESPACE::Filter chromaFilter_ ) VULKAN_HPP_NOEXCEPT - { - chromaFilter = chromaFilter_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionCreateInfo & - setForceExplicitReconstruction( VULKAN_HPP_NAMESPACE::Bool32 forceExplicitReconstruction_ ) VULKAN_HPP_NOEXCEPT - { - forceExplicitReconstruction = forceExplicitReconstruction_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSamplerYcbcrConversionCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerYcbcrConversionCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - format, - ycbcrModel, - ycbcrRange, - components, - xChromaOffset, - yChromaOffset, - chromaFilter, - forceExplicitReconstruction ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerYcbcrConversionCreateInfo const & ) const = default; -#else - bool operator==( SamplerYcbcrConversionCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( format == rhs.format ) && - ( ycbcrModel == rhs.ycbcrModel ) && ( ycbcrRange == rhs.ycbcrRange ) && ( components == rhs.components ) && - ( xChromaOffset == rhs.xChromaOffset ) && ( yChromaOffset == rhs.yChromaOffset ) && - ( chromaFilter == rhs.chromaFilter ) && ( forceExplicitReconstruction == rhs.forceExplicitReconstruction ); -# endif - } - - bool operator!=( SamplerYcbcrConversionCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerYcbcrConversionCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion ycbcrModel = - VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity; - VULKAN_HPP_NAMESPACE::SamplerYcbcrRange ycbcrRange = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull; - VULKAN_HPP_NAMESPACE::ComponentMapping components = {}; - VULKAN_HPP_NAMESPACE::ChromaLocation xChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - VULKAN_HPP_NAMESPACE::ChromaLocation yChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven; - VULKAN_HPP_NAMESPACE::Filter chromaFilter = VULKAN_HPP_NAMESPACE::Filter::eNearest; - VULKAN_HPP_NAMESPACE::Bool32 forceExplicitReconstruction = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionCreateInfo ) == - sizeof( VkSamplerYcbcrConversionCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SamplerYcbcrConversionCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerYcbcrConversionCreateInfo; - }; - using SamplerYcbcrConversionCreateInfoKHR = SamplerYcbcrConversionCreateInfo; - - struct SamplerYcbcrConversionImageFormatProperties - { - using NativeType = VkSamplerYcbcrConversionImageFormatProperties; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSamplerYcbcrConversionImageFormatProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SamplerYcbcrConversionImageFormatProperties( - uint32_t combinedImageSamplerDescriptorCount_ = {} ) VULKAN_HPP_NOEXCEPT - : combinedImageSamplerDescriptorCount( combinedImageSamplerDescriptorCount_ ) - {} - - VULKAN_HPP_CONSTEXPR SamplerYcbcrConversionImageFormatProperties( - SamplerYcbcrConversionImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerYcbcrConversionImageFormatProperties( VkSamplerYcbcrConversionImageFormatProperties const & rhs ) - VULKAN_HPP_NOEXCEPT - : SamplerYcbcrConversionImageFormatProperties( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerYcbcrConversionImageFormatProperties & - operator=( SamplerYcbcrConversionImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerYcbcrConversionImageFormatProperties & - operator=( VkSamplerYcbcrConversionImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSamplerYcbcrConversionImageFormatProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerYcbcrConversionImageFormatProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, combinedImageSamplerDescriptorCount ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerYcbcrConversionImageFormatProperties const & ) const = default; -#else - bool operator==( SamplerYcbcrConversionImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( combinedImageSamplerDescriptorCount == rhs.combinedImageSamplerDescriptorCount ); -# endif - } - - bool operator!=( SamplerYcbcrConversionImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerYcbcrConversionImageFormatProperties; - void * pNext = {}; - uint32_t combinedImageSamplerDescriptorCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionImageFormatProperties ) == - sizeof( VkSamplerYcbcrConversionImageFormatProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SamplerYcbcrConversionImageFormatProperties is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerYcbcrConversionImageFormatProperties; - }; - using SamplerYcbcrConversionImageFormatPropertiesKHR = SamplerYcbcrConversionImageFormatProperties; - - struct SamplerYcbcrConversionInfo - { - using NativeType = VkSamplerYcbcrConversionInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSamplerYcbcrConversionInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SamplerYcbcrConversionInfo( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion conversion_ = {} ) VULKAN_HPP_NOEXCEPT - : conversion( conversion_ ) - {} - - VULKAN_HPP_CONSTEXPR - SamplerYcbcrConversionInfo( SamplerYcbcrConversionInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerYcbcrConversionInfo( VkSamplerYcbcrConversionInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SamplerYcbcrConversionInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SamplerYcbcrConversionInfo & operator=( SamplerYcbcrConversionInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SamplerYcbcrConversionInfo & operator=( VkSamplerYcbcrConversionInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SamplerYcbcrConversionInfo & - setConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion conversion_ ) VULKAN_HPP_NOEXCEPT - { - conversion = conversion_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSamplerYcbcrConversionInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSamplerYcbcrConversionInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, conversion ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SamplerYcbcrConversionInfo const & ) const = default; -#else - bool operator==( SamplerYcbcrConversionInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( conversion == rhs.conversion ); -# endif - } - - bool operator!=( SamplerYcbcrConversionInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSamplerYcbcrConversionInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion conversion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversionInfo ) == - sizeof( VkSamplerYcbcrConversionInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SamplerYcbcrConversionInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SamplerYcbcrConversionInfo; - }; - using SamplerYcbcrConversionInfoKHR = SamplerYcbcrConversionInfo; - -#if defined( VK_USE_PLATFORM_SCREEN_QNX ) - struct ScreenSurfaceCreateInfoQNX - { - using NativeType = VkScreenSurfaceCreateInfoQNX; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eScreenSurfaceCreateInfoQNX; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ScreenSurfaceCreateInfoQNX( VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateFlagsQNX flags_ = {}, - struct _screen_context * context_ = {}, - struct _screen_window * window_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , context( context_ ) - , window( window_ ) - {} - - VULKAN_HPP_CONSTEXPR - ScreenSurfaceCreateInfoQNX( ScreenSurfaceCreateInfoQNX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ScreenSurfaceCreateInfoQNX( VkScreenSurfaceCreateInfoQNX const & rhs ) VULKAN_HPP_NOEXCEPT - : ScreenSurfaceCreateInfoQNX( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ScreenSurfaceCreateInfoQNX & operator=( ScreenSurfaceCreateInfoQNX const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ScreenSurfaceCreateInfoQNX & operator=( VkScreenSurfaceCreateInfoQNX const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ScreenSurfaceCreateInfoQNX & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ScreenSurfaceCreateInfoQNX & - setFlags( VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateFlagsQNX flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ScreenSurfaceCreateInfoQNX & - setContext( struct _screen_context * context_ ) VULKAN_HPP_NOEXCEPT - { - context = context_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ScreenSurfaceCreateInfoQNX & - setWindow( struct _screen_window * window_ ) VULKAN_HPP_NOEXCEPT - { - window = window_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkScreenSurfaceCreateInfoQNX const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkScreenSurfaceCreateInfoQNX &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, context, window ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ScreenSurfaceCreateInfoQNX const & ) const = default; -# else - bool operator==( ScreenSurfaceCreateInfoQNX const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( context == rhs.context ) && - ( window == rhs.window ); -# endif - } - - bool operator!=( ScreenSurfaceCreateInfoQNX const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eScreenSurfaceCreateInfoQNX; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateFlagsQNX flags = {}; - struct _screen_context * context = {}; - struct _screen_window * window = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ScreenSurfaceCreateInfoQNX ) == - sizeof( VkScreenSurfaceCreateInfoQNX ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ScreenSurfaceCreateInfoQNX is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ScreenSurfaceCreateInfoQNX; - }; -#endif /*VK_USE_PLATFORM_SCREEN_QNX*/ - - struct SemaphoreCreateInfo - { - using NativeType = VkSemaphoreCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SemaphoreCreateInfo( VULKAN_HPP_NAMESPACE::SemaphoreCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreCreateInfo( SemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreCreateInfo( VkSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreCreateInfo & operator=( SemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreCreateInfo & operator=( VkSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::SemaphoreCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreCreateInfo const & ) const = default; -#else - bool operator==( SemaphoreCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( SemaphoreCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SemaphoreCreateFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreCreateInfo ) == sizeof( VkSemaphoreCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SemaphoreCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreCreateInfo; - }; - - struct SemaphoreGetFdInfoKHR - { - using NativeType = VkSemaphoreGetFdInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreGetFdInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreGetFdInfoKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd ) - VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreGetFdInfoKHR( SemaphoreGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreGetFdInfoKHR( VkSemaphoreGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreGetFdInfoKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreGetFdInfoKHR & operator=( SemaphoreGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreGetFdInfoKHR & operator=( VkSemaphoreGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetFdInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetFdInfoKHR & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetFdInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreGetFdInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreGetFdInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, handleType ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreGetFdInfoKHR const & ) const = default; -#else - bool operator==( SemaphoreGetFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( SemaphoreGetFdInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreGetFdInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreGetFdInfoKHR ) == sizeof( VkSemaphoreGetFdInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SemaphoreGetFdInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreGetFdInfoKHR; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct SemaphoreGetWin32HandleInfoKHR - { - using NativeType = VkSemaphoreGetWin32HandleInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreGetWin32HandleInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreGetWin32HandleInfoKHR( - VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR - SemaphoreGetWin32HandleInfoKHR( SemaphoreGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreGetWin32HandleInfoKHR( VkSemaphoreGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreGetWin32HandleInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreGetWin32HandleInfoKHR & - operator=( SemaphoreGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreGetWin32HandleInfoKHR & operator=( VkSemaphoreGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetWin32HandleInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetWin32HandleInfoKHR & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetWin32HandleInfoKHR & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreGetWin32HandleInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreGetWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, handleType ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreGetWin32HandleInfoKHR const & ) const = default; -# else - bool operator==( SemaphoreGetWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( SemaphoreGetWin32HandleInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreGetWin32HandleInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreGetWin32HandleInfoKHR ) == - sizeof( VkSemaphoreGetWin32HandleInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SemaphoreGetWin32HandleInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreGetWin32HandleInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_FUCHSIA ) - struct SemaphoreGetZirconHandleInfoFUCHSIA - { - using NativeType = VkSemaphoreGetZirconHandleInfoFUCHSIA; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSemaphoreGetZirconHandleInfoFUCHSIA; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreGetZirconHandleInfoFUCHSIA( - VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , handleType( handleType_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreGetZirconHandleInfoFUCHSIA( SemaphoreGetZirconHandleInfoFUCHSIA const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SemaphoreGetZirconHandleInfoFUCHSIA( VkSemaphoreGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreGetZirconHandleInfoFUCHSIA( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreGetZirconHandleInfoFUCHSIA & - operator=( SemaphoreGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreGetZirconHandleInfoFUCHSIA & - operator=( VkSemaphoreGetZirconHandleInfoFUCHSIA const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetZirconHandleInfoFUCHSIA & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetZirconHandleInfoFUCHSIA & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreGetZirconHandleInfoFUCHSIA & - setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT - { - handleType = handleType_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreGetZirconHandleInfoFUCHSIA const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreGetZirconHandleInfoFUCHSIA &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, handleType ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreGetZirconHandleInfoFUCHSIA const & ) const = default; -# else - bool operator==( SemaphoreGetZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( handleType == rhs.handleType ); -# endif - } - - bool operator!=( SemaphoreGetZirconHandleInfoFUCHSIA const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreGetZirconHandleInfoFUCHSIA; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = - VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreGetZirconHandleInfoFUCHSIA ) == - sizeof( VkSemaphoreGetZirconHandleInfoFUCHSIA ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SemaphoreGetZirconHandleInfoFUCHSIA is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreGetZirconHandleInfoFUCHSIA; - }; -#endif /*VK_USE_PLATFORM_FUCHSIA*/ - - struct SemaphoreSignalInfo - { - using NativeType = VkSemaphoreSignalInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreSignalInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreSignalInfo( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - uint64_t value_ = {} ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , value( value_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreSignalInfo( SemaphoreSignalInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreSignalInfo( VkSemaphoreSignalInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreSignalInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreSignalInfo & operator=( SemaphoreSignalInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreSignalInfo & operator=( VkSemaphoreSignalInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreSignalInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreSignalInfo & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreSignalInfo & setValue( uint64_t value_ ) VULKAN_HPP_NOEXCEPT - { - value = value_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreSignalInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreSignalInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, value ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreSignalInfo const & ) const = default; -#else - bool operator==( SemaphoreSignalInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( value == rhs.value ); -# endif - } - - bool operator!=( SemaphoreSignalInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreSignalInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - uint64_t value = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreSignalInfo ) == sizeof( VkSemaphoreSignalInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SemaphoreSignalInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreSignalInfo; - }; - using SemaphoreSignalInfoKHR = SemaphoreSignalInfo; - - struct SemaphoreSubmitInfo - { - using NativeType = VkSemaphoreSubmitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreSubmitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreSubmitInfo( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {}, - uint64_t value_ = {}, - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask_ = {}, - uint32_t deviceIndex_ = {} ) VULKAN_HPP_NOEXCEPT - : semaphore( semaphore_ ) - , value( value_ ) - , stageMask( stageMask_ ) - , deviceIndex( deviceIndex_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreSubmitInfo( SemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreSubmitInfo( VkSemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreSubmitInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreSubmitInfo & operator=( SemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreSubmitInfo & operator=( VkSemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreSubmitInfo & - setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT - { - semaphore = semaphore_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreSubmitInfo & setValue( uint64_t value_ ) VULKAN_HPP_NOEXCEPT - { - value = value_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreSubmitInfo & - setStageMask( VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask_ ) VULKAN_HPP_NOEXCEPT - { - stageMask = stageMask_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreSubmitInfo & setDeviceIndex( uint32_t deviceIndex_ ) VULKAN_HPP_NOEXCEPT - { - deviceIndex = deviceIndex_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreSubmitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreSubmitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphore, value, stageMask, deviceIndex ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreSubmitInfo const & ) const = default; -#else - bool operator==( SemaphoreSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphore == rhs.semaphore ) && - ( value == rhs.value ) && ( stageMask == rhs.stageMask ) && ( deviceIndex == rhs.deviceIndex ); -# endif - } - - bool operator!=( SemaphoreSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreSubmitInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Semaphore semaphore = {}; - uint64_t value = {}; - VULKAN_HPP_NAMESPACE::PipelineStageFlags2 stageMask = {}; - uint32_t deviceIndex = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo ) == sizeof( VkSemaphoreSubmitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SemaphoreSubmitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreSubmitInfo; - }; - using SemaphoreSubmitInfoKHR = SemaphoreSubmitInfo; - - struct SemaphoreTypeCreateInfo - { - using NativeType = VkSemaphoreTypeCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreTypeCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreTypeCreateInfo( - VULKAN_HPP_NAMESPACE::SemaphoreType semaphoreType_ = VULKAN_HPP_NAMESPACE::SemaphoreType::eBinary, - uint64_t initialValue_ = {} ) VULKAN_HPP_NOEXCEPT - : semaphoreType( semaphoreType_ ) - , initialValue( initialValue_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreTypeCreateInfo( SemaphoreTypeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreTypeCreateInfo( VkSemaphoreTypeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreTypeCreateInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreTypeCreateInfo & operator=( SemaphoreTypeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreTypeCreateInfo & operator=( VkSemaphoreTypeCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreTypeCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreTypeCreateInfo & - setSemaphoreType( VULKAN_HPP_NAMESPACE::SemaphoreType semaphoreType_ ) VULKAN_HPP_NOEXCEPT - { - semaphoreType = semaphoreType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreTypeCreateInfo & setInitialValue( uint64_t initialValue_ ) VULKAN_HPP_NOEXCEPT - { - initialValue = initialValue_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreTypeCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreTypeCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, semaphoreType, initialValue ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreTypeCreateInfo const & ) const = default; -#else - bool operator==( SemaphoreTypeCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( semaphoreType == rhs.semaphoreType ) && - ( initialValue == rhs.initialValue ); -# endif - } - - bool operator!=( SemaphoreTypeCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreTypeCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SemaphoreType semaphoreType = VULKAN_HPP_NAMESPACE::SemaphoreType::eBinary; - uint64_t initialValue = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreTypeCreateInfo ) == - sizeof( VkSemaphoreTypeCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SemaphoreTypeCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreTypeCreateInfo; - }; - using SemaphoreTypeCreateInfoKHR = SemaphoreTypeCreateInfo; - - struct SemaphoreWaitInfo - { - using NativeType = VkSemaphoreWaitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSemaphoreWaitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SemaphoreWaitInfo( VULKAN_HPP_NAMESPACE::SemaphoreWaitFlags flags_ = {}, - uint32_t semaphoreCount_ = {}, - const VULKAN_HPP_NAMESPACE::Semaphore * pSemaphores_ = {}, - const uint64_t * pValues_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , semaphoreCount( semaphoreCount_ ) - , pSemaphores( pSemaphores_ ) - , pValues( pValues_ ) - {} - - VULKAN_HPP_CONSTEXPR SemaphoreWaitInfo( SemaphoreWaitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreWaitInfo( VkSemaphoreWaitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SemaphoreWaitInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SemaphoreWaitInfo( - VULKAN_HPP_NAMESPACE::SemaphoreWaitFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & semaphores_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & values_ = {} ) - : flags( flags_ ) - , semaphoreCount( static_cast( semaphores_.size() ) ) - , pSemaphores( semaphores_.data() ) - , pValues( values_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( semaphores_.size() == values_.size() ); -# else - if ( semaphores_.size() != values_.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::SemaphoreWaitInfo::SemaphoreWaitInfo: semaphores_.size() != values_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SemaphoreWaitInfo & operator=( SemaphoreWaitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SemaphoreWaitInfo & operator=( VkSemaphoreWaitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SemaphoreWaitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreWaitInfo & - setFlags( VULKAN_HPP_NAMESPACE::SemaphoreWaitFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreWaitInfo & setSemaphoreCount( uint32_t semaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - semaphoreCount = semaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SemaphoreWaitInfo & - setPSemaphores( const VULKAN_HPP_NAMESPACE::Semaphore * pSemaphores_ ) VULKAN_HPP_NOEXCEPT - { - pSemaphores = pSemaphores_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SemaphoreWaitInfo & setSemaphores( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & semaphores_ ) - VULKAN_HPP_NOEXCEPT - { - semaphoreCount = static_cast( semaphores_.size() ); - pSemaphores = semaphores_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SemaphoreWaitInfo & setPValues( const uint64_t * pValues_ ) VULKAN_HPP_NOEXCEPT - { - pValues = pValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SemaphoreWaitInfo & - setValues( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & values_ ) VULKAN_HPP_NOEXCEPT - { - semaphoreCount = static_cast( values_.size() ); - pValues = values_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSemaphoreWaitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSemaphoreWaitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, semaphoreCount, pSemaphores, pValues ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SemaphoreWaitInfo const & ) const = default; -#else - bool operator==( SemaphoreWaitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( semaphoreCount == rhs.semaphoreCount ) && ( pSemaphores == rhs.pSemaphores ) && - ( pValues == rhs.pValues ); -# endif - } - - bool operator!=( SemaphoreWaitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSemaphoreWaitInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SemaphoreWaitFlags flags = {}; - uint32_t semaphoreCount = {}; - const VULKAN_HPP_NAMESPACE::Semaphore * pSemaphores = {}; - const uint64_t * pValues = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SemaphoreWaitInfo ) == sizeof( VkSemaphoreWaitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SemaphoreWaitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SemaphoreWaitInfo; - }; - using SemaphoreWaitInfoKHR = SemaphoreWaitInfo; - - struct SetStateFlagsIndirectCommandNV - { - using NativeType = VkSetStateFlagsIndirectCommandNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SetStateFlagsIndirectCommandNV( uint32_t data_ = {} ) VULKAN_HPP_NOEXCEPT : data( data_ ) {} - - VULKAN_HPP_CONSTEXPR - SetStateFlagsIndirectCommandNV( SetStateFlagsIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SetStateFlagsIndirectCommandNV( VkSetStateFlagsIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - : SetStateFlagsIndirectCommandNV( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SetStateFlagsIndirectCommandNV & - operator=( SetStateFlagsIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SetStateFlagsIndirectCommandNV & operator=( VkSetStateFlagsIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SetStateFlagsIndirectCommandNV & setData( uint32_t data_ ) VULKAN_HPP_NOEXCEPT - { - data = data_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSetStateFlagsIndirectCommandNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSetStateFlagsIndirectCommandNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( data ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SetStateFlagsIndirectCommandNV const & ) const = default; -#else - bool operator==( SetStateFlagsIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( data == rhs.data ); -# endif - } - - bool operator!=( SetStateFlagsIndirectCommandNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t data = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SetStateFlagsIndirectCommandNV ) == - sizeof( VkSetStateFlagsIndirectCommandNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SetStateFlagsIndirectCommandNV is not nothrow_move_constructible!" ); - - struct ShaderModuleCreateInfo - { - using NativeType = VkShaderModuleCreateInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eShaderModuleCreateInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ShaderModuleCreateInfo( VULKAN_HPP_NAMESPACE::ShaderModuleCreateFlags flags_ = {}, - size_t codeSize_ = {}, - const uint32_t * pCode_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , codeSize( codeSize_ ) - , pCode( pCode_ ) - {} - - VULKAN_HPP_CONSTEXPR ShaderModuleCreateInfo( ShaderModuleCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderModuleCreateInfo( VkShaderModuleCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : ShaderModuleCreateInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ShaderModuleCreateInfo( VULKAN_HPP_NAMESPACE::ShaderModuleCreateFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & code_ ) - : flags( flags_ ), codeSize( code_.size() * 4 ), pCode( code_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ShaderModuleCreateInfo & operator=( ShaderModuleCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderModuleCreateInfo & operator=( VkShaderModuleCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ShaderModuleCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ShaderModuleCreateInfo & - setFlags( VULKAN_HPP_NAMESPACE::ShaderModuleCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ShaderModuleCreateInfo & setCodeSize( size_t codeSize_ ) VULKAN_HPP_NOEXCEPT - { - codeSize = codeSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ShaderModuleCreateInfo & setPCode( const uint32_t * pCode_ ) VULKAN_HPP_NOEXCEPT - { - pCode = pCode_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ShaderModuleCreateInfo & - setCode( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & code_ ) VULKAN_HPP_NOEXCEPT - { - codeSize = code_.size() * 4; - pCode = code_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkShaderModuleCreateInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkShaderModuleCreateInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, codeSize, pCode ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ShaderModuleCreateInfo const & ) const = default; -#else - bool operator==( ShaderModuleCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( codeSize == rhs.codeSize ) && ( pCode == rhs.pCode ); -# endif - } - - bool operator!=( ShaderModuleCreateInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eShaderModuleCreateInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ShaderModuleCreateFlags flags = {}; - size_t codeSize = {}; - const uint32_t * pCode = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ShaderModuleCreateInfo ) == - sizeof( VkShaderModuleCreateInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ShaderModuleCreateInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ShaderModuleCreateInfo; - }; - - struct ShaderModuleValidationCacheCreateInfoEXT - { - using NativeType = VkShaderModuleValidationCacheCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eShaderModuleValidationCacheCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ShaderModuleValidationCacheCreateInfoEXT( - VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache_ = {} ) VULKAN_HPP_NOEXCEPT - : validationCache( validationCache_ ) - {} - - VULKAN_HPP_CONSTEXPR ShaderModuleValidationCacheCreateInfoEXT( - ShaderModuleValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderModuleValidationCacheCreateInfoEXT( VkShaderModuleValidationCacheCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : ShaderModuleValidationCacheCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ShaderModuleValidationCacheCreateInfoEXT & - operator=( ShaderModuleValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderModuleValidationCacheCreateInfoEXT & - operator=( VkShaderModuleValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ShaderModuleValidationCacheCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ShaderModuleValidationCacheCreateInfoEXT & - setValidationCache( VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache_ ) VULKAN_HPP_NOEXCEPT - { - validationCache = validationCache_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkShaderModuleValidationCacheCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkShaderModuleValidationCacheCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, validationCache ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ShaderModuleValidationCacheCreateInfoEXT const & ) const = default; -#else - bool operator==( ShaderModuleValidationCacheCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( validationCache == rhs.validationCache ); -# endif - } - - bool operator!=( ShaderModuleValidationCacheCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eShaderModuleValidationCacheCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ValidationCacheEXT validationCache = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ShaderModuleValidationCacheCreateInfoEXT ) == - sizeof( VkShaderModuleValidationCacheCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ShaderModuleValidationCacheCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ShaderModuleValidationCacheCreateInfoEXT; - }; - - struct ShaderResourceUsageAMD - { - using NativeType = VkShaderResourceUsageAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ShaderResourceUsageAMD( uint32_t numUsedVgprs_ = {}, - uint32_t numUsedSgprs_ = {}, - uint32_t ldsSizePerLocalWorkGroup_ = {}, - size_t ldsUsageSizeInBytes_ = {}, - size_t scratchMemUsageInBytes_ = {} ) VULKAN_HPP_NOEXCEPT - : numUsedVgprs( numUsedVgprs_ ) - , numUsedSgprs( numUsedSgprs_ ) - , ldsSizePerLocalWorkGroup( ldsSizePerLocalWorkGroup_ ) - , ldsUsageSizeInBytes( ldsUsageSizeInBytes_ ) - , scratchMemUsageInBytes( scratchMemUsageInBytes_ ) - {} - - VULKAN_HPP_CONSTEXPR ShaderResourceUsageAMD( ShaderResourceUsageAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderResourceUsageAMD( VkShaderResourceUsageAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : ShaderResourceUsageAMD( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ShaderResourceUsageAMD & operator=( ShaderResourceUsageAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderResourceUsageAMD & operator=( VkShaderResourceUsageAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkShaderResourceUsageAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkShaderResourceUsageAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - numUsedVgprs, numUsedSgprs, ldsSizePerLocalWorkGroup, ldsUsageSizeInBytes, scratchMemUsageInBytes ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ShaderResourceUsageAMD const & ) const = default; -#else - bool operator==( ShaderResourceUsageAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( numUsedVgprs == rhs.numUsedVgprs ) && ( numUsedSgprs == rhs.numUsedSgprs ) && - ( ldsSizePerLocalWorkGroup == rhs.ldsSizePerLocalWorkGroup ) && - ( ldsUsageSizeInBytes == rhs.ldsUsageSizeInBytes ) && - ( scratchMemUsageInBytes == rhs.scratchMemUsageInBytes ); -# endif - } - - bool operator!=( ShaderResourceUsageAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t numUsedVgprs = {}; - uint32_t numUsedSgprs = {}; - uint32_t ldsSizePerLocalWorkGroup = {}; - size_t ldsUsageSizeInBytes = {}; - size_t scratchMemUsageInBytes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ShaderResourceUsageAMD ) == - sizeof( VkShaderResourceUsageAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ShaderResourceUsageAMD is not nothrow_move_constructible!" ); - - struct ShaderStatisticsInfoAMD - { - using NativeType = VkShaderStatisticsInfoAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 - ShaderStatisticsInfoAMD( VULKAN_HPP_NAMESPACE::ShaderStageFlags shaderStageMask_ = {}, - VULKAN_HPP_NAMESPACE::ShaderResourceUsageAMD resourceUsage_ = {}, - uint32_t numPhysicalVgprs_ = {}, - uint32_t numPhysicalSgprs_ = {}, - uint32_t numAvailableVgprs_ = {}, - uint32_t numAvailableSgprs_ = {}, - std::array const & computeWorkGroupSize_ = {} ) VULKAN_HPP_NOEXCEPT - : shaderStageMask( shaderStageMask_ ) - , resourceUsage( resourceUsage_ ) - , numPhysicalVgprs( numPhysicalVgprs_ ) - , numPhysicalSgprs( numPhysicalSgprs_ ) - , numAvailableVgprs( numAvailableVgprs_ ) - , numAvailableSgprs( numAvailableSgprs_ ) - , computeWorkGroupSize( computeWorkGroupSize_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - ShaderStatisticsInfoAMD( ShaderStatisticsInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderStatisticsInfoAMD( VkShaderStatisticsInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : ShaderStatisticsInfoAMD( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ShaderStatisticsInfoAMD & operator=( ShaderStatisticsInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ShaderStatisticsInfoAMD & operator=( VkShaderStatisticsInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkShaderStatisticsInfoAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkShaderStatisticsInfoAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple const &> -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( shaderStageMask, - resourceUsage, - numPhysicalVgprs, - numPhysicalSgprs, - numAvailableVgprs, - numAvailableSgprs, - computeWorkGroupSize ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ShaderStatisticsInfoAMD const & ) const = default; -#else - bool operator==( ShaderStatisticsInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( shaderStageMask == rhs.shaderStageMask ) && ( resourceUsage == rhs.resourceUsage ) && - ( numPhysicalVgprs == rhs.numPhysicalVgprs ) && ( numPhysicalSgprs == rhs.numPhysicalSgprs ) && - ( numAvailableVgprs == rhs.numAvailableVgprs ) && ( numAvailableSgprs == rhs.numAvailableSgprs ) && - ( computeWorkGroupSize == rhs.computeWorkGroupSize ); -# endif - } - - bool operator!=( ShaderStatisticsInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ShaderStageFlags shaderStageMask = {}; - VULKAN_HPP_NAMESPACE::ShaderResourceUsageAMD resourceUsage = {}; - uint32_t numPhysicalVgprs = {}; - uint32_t numPhysicalSgprs = {}; - uint32_t numAvailableVgprs = {}; - uint32_t numAvailableSgprs = {}; - VULKAN_HPP_NAMESPACE::ArrayWrapper1D computeWorkGroupSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ShaderStatisticsInfoAMD ) == - sizeof( VkShaderStatisticsInfoAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ShaderStatisticsInfoAMD is not nothrow_move_constructible!" ); - - struct SharedPresentSurfaceCapabilitiesKHR - { - using NativeType = VkSharedPresentSurfaceCapabilitiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSharedPresentSurfaceCapabilitiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SharedPresentSurfaceCapabilitiesKHR( - VULKAN_HPP_NAMESPACE::ImageUsageFlags sharedPresentSupportedUsageFlags_ = {} ) VULKAN_HPP_NOEXCEPT - : sharedPresentSupportedUsageFlags( sharedPresentSupportedUsageFlags_ ) - {} - - VULKAN_HPP_CONSTEXPR SharedPresentSurfaceCapabilitiesKHR( SharedPresentSurfaceCapabilitiesKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SharedPresentSurfaceCapabilitiesKHR( VkSharedPresentSurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SharedPresentSurfaceCapabilitiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SharedPresentSurfaceCapabilitiesKHR & - operator=( SharedPresentSurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SharedPresentSurfaceCapabilitiesKHR & - operator=( VkSharedPresentSurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSharedPresentSurfaceCapabilitiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSharedPresentSurfaceCapabilitiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, sharedPresentSupportedUsageFlags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SharedPresentSurfaceCapabilitiesKHR const & ) const = default; -#else - bool operator==( SharedPresentSurfaceCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( sharedPresentSupportedUsageFlags == rhs.sharedPresentSupportedUsageFlags ); -# endif - } - - bool operator!=( SharedPresentSurfaceCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSharedPresentSurfaceCapabilitiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags sharedPresentSupportedUsageFlags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SharedPresentSurfaceCapabilitiesKHR ) == - sizeof( VkSharedPresentSurfaceCapabilitiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SharedPresentSurfaceCapabilitiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SharedPresentSurfaceCapabilitiesKHR; - }; - - struct SparseImageFormatProperties - { - using NativeType = VkSparseImageFormatProperties; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SparseImageFormatProperties( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {}, - VULKAN_HPP_NAMESPACE::Extent3D imageGranularity_ = {}, - VULKAN_HPP_NAMESPACE::SparseImageFormatFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT - : aspectMask( aspectMask_ ) - , imageGranularity( imageGranularity_ ) - , flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseImageFormatProperties( SparseImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageFormatProperties( VkSparseImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageFormatProperties( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageFormatProperties & operator=( SparseImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageFormatProperties & operator=( VkSparseImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSparseImageFormatProperties const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageFormatProperties &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( aspectMask, imageGranularity, flags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageFormatProperties const & ) const = default; -#else - bool operator==( SparseImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( aspectMask == rhs.aspectMask ) && ( imageGranularity == rhs.imageGranularity ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( SparseImageFormatProperties const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {}; - VULKAN_HPP_NAMESPACE::Extent3D imageGranularity = {}; - VULKAN_HPP_NAMESPACE::SparseImageFormatFlags flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageFormatProperties ) == - sizeof( VkSparseImageFormatProperties ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SparseImageFormatProperties is not nothrow_move_constructible!" ); - - struct SparseImageFormatProperties2 - { - using NativeType = VkSparseImageFormatProperties2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSparseImageFormatProperties2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SparseImageFormatProperties2( - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties properties_ = {} ) VULKAN_HPP_NOEXCEPT - : properties( properties_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseImageFormatProperties2( SparseImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageFormatProperties2( VkSparseImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageFormatProperties2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageFormatProperties2 & operator=( SparseImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageFormatProperties2 & operator=( VkSparseImageFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSparseImageFormatProperties2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageFormatProperties2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, properties ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageFormatProperties2 const & ) const = default; -#else - bool operator==( SparseImageFormatProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( properties == rhs.properties ); -# endif - } - - bool operator!=( SparseImageFormatProperties2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSparseImageFormatProperties2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties properties = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageFormatProperties2 ) == - sizeof( VkSparseImageFormatProperties2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SparseImageFormatProperties2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SparseImageFormatProperties2; - }; - using SparseImageFormatProperties2KHR = SparseImageFormatProperties2; - - struct SparseImageMemoryRequirements - { - using NativeType = VkSparseImageMemoryRequirements; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SparseImageMemoryRequirements( VULKAN_HPP_NAMESPACE::SparseImageFormatProperties formatProperties_ = {}, - uint32_t imageMipTailFirstLod_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize imageMipTailSize_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize imageMipTailOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize imageMipTailStride_ = {} ) VULKAN_HPP_NOEXCEPT - : formatProperties( formatProperties_ ) - , imageMipTailFirstLod( imageMipTailFirstLod_ ) - , imageMipTailSize( imageMipTailSize_ ) - , imageMipTailOffset( imageMipTailOffset_ ) - , imageMipTailStride( imageMipTailStride_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseImageMemoryRequirements( SparseImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryRequirements( VkSparseImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageMemoryRequirements( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageMemoryRequirements & - operator=( SparseImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryRequirements & operator=( VkSparseImageMemoryRequirements const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSparseImageMemoryRequirements const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageMemoryRequirements &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - formatProperties, imageMipTailFirstLod, imageMipTailSize, imageMipTailOffset, imageMipTailStride ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageMemoryRequirements const & ) const = default; -#else - bool operator==( SparseImageMemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( formatProperties == rhs.formatProperties ) && ( imageMipTailFirstLod == rhs.imageMipTailFirstLod ) && - ( imageMipTailSize == rhs.imageMipTailSize ) && ( imageMipTailOffset == rhs.imageMipTailOffset ) && - ( imageMipTailStride == rhs.imageMipTailStride ); -# endif - } - - bool operator!=( SparseImageMemoryRequirements const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::SparseImageFormatProperties formatProperties = {}; - uint32_t imageMipTailFirstLod = {}; - VULKAN_HPP_NAMESPACE::DeviceSize imageMipTailSize = {}; - VULKAN_HPP_NAMESPACE::DeviceSize imageMipTailOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize imageMipTailStride = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements ) == - sizeof( VkSparseImageMemoryRequirements ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SparseImageMemoryRequirements is not nothrow_move_constructible!" ); - - struct SparseImageMemoryRequirements2 - { - using NativeType = VkSparseImageMemoryRequirements2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSparseImageMemoryRequirements2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SparseImageMemoryRequirements2( - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements memoryRequirements_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryRequirements( memoryRequirements_ ) - {} - - VULKAN_HPP_CONSTEXPR - SparseImageMemoryRequirements2( SparseImageMemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryRequirements2( VkSparseImageMemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT - : SparseImageMemoryRequirements2( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SparseImageMemoryRequirements2 & - operator=( SparseImageMemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SparseImageMemoryRequirements2 & operator=( VkSparseImageMemoryRequirements2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSparseImageMemoryRequirements2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSparseImageMemoryRequirements2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryRequirements ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SparseImageMemoryRequirements2 const & ) const = default; -#else - bool operator==( SparseImageMemoryRequirements2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryRequirements == rhs.memoryRequirements ); -# endif - } - - bool operator!=( SparseImageMemoryRequirements2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSparseImageMemoryRequirements2; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements memoryRequirements = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SparseImageMemoryRequirements2 ) == - sizeof( VkSparseImageMemoryRequirements2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SparseImageMemoryRequirements2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SparseImageMemoryRequirements2; - }; - using SparseImageMemoryRequirements2KHR = SparseImageMemoryRequirements2; - -#if defined( VK_USE_PLATFORM_GGP ) - struct StreamDescriptorSurfaceCreateInfoGGP - { - using NativeType = VkStreamDescriptorSurfaceCreateInfoGGP; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eStreamDescriptorSurfaceCreateInfoGGP; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - StreamDescriptorSurfaceCreateInfoGGP( VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateFlagsGGP flags_ = {}, - GgpStreamDescriptor streamDescriptor_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , streamDescriptor( streamDescriptor_ ) - {} - - VULKAN_HPP_CONSTEXPR StreamDescriptorSurfaceCreateInfoGGP( StreamDescriptorSurfaceCreateInfoGGP const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - StreamDescriptorSurfaceCreateInfoGGP( VkStreamDescriptorSurfaceCreateInfoGGP const & rhs ) VULKAN_HPP_NOEXCEPT - : StreamDescriptorSurfaceCreateInfoGGP( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - StreamDescriptorSurfaceCreateInfoGGP & - operator=( StreamDescriptorSurfaceCreateInfoGGP const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - StreamDescriptorSurfaceCreateInfoGGP & - operator=( VkStreamDescriptorSurfaceCreateInfoGGP const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 StreamDescriptorSurfaceCreateInfoGGP & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StreamDescriptorSurfaceCreateInfoGGP & - setFlags( VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateFlagsGGP flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StreamDescriptorSurfaceCreateInfoGGP & - setStreamDescriptor( GgpStreamDescriptor streamDescriptor_ ) VULKAN_HPP_NOEXCEPT - { - streamDescriptor = streamDescriptor_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkStreamDescriptorSurfaceCreateInfoGGP const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkStreamDescriptorSurfaceCreateInfoGGP &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, streamDescriptor ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( StreamDescriptorSurfaceCreateInfoGGP const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &streamDescriptor, &rhs.streamDescriptor, sizeof( GgpStreamDescriptor ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( StreamDescriptorSurfaceCreateInfoGGP const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( memcmp( &streamDescriptor, &rhs.streamDescriptor, sizeof( GgpStreamDescriptor ) ) == 0 ); - } - - bool operator!=( StreamDescriptorSurfaceCreateInfoGGP const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eStreamDescriptorSurfaceCreateInfoGGP; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateFlagsGGP flags = {}; - GgpStreamDescriptor streamDescriptor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP ) == - sizeof( VkStreamDescriptorSurfaceCreateInfoGGP ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "StreamDescriptorSurfaceCreateInfoGGP is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = StreamDescriptorSurfaceCreateInfoGGP; - }; -#endif /*VK_USE_PLATFORM_GGP*/ - - struct StridedDeviceAddressRegionKHR - { - using NativeType = VkStridedDeviceAddressRegionKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - StridedDeviceAddressRegionKHR( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize stride_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT - : deviceAddress( deviceAddress_ ) - , stride( stride_ ) - , size( size_ ) - {} - - VULKAN_HPP_CONSTEXPR - StridedDeviceAddressRegionKHR( StridedDeviceAddressRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - StridedDeviceAddressRegionKHR( VkStridedDeviceAddressRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : StridedDeviceAddressRegionKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - StridedDeviceAddressRegionKHR & - operator=( StridedDeviceAddressRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - StridedDeviceAddressRegionKHR & operator=( VkStridedDeviceAddressRegionKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 StridedDeviceAddressRegionKHR & - setDeviceAddress( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ ) VULKAN_HPP_NOEXCEPT - { - deviceAddress = deviceAddress_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StridedDeviceAddressRegionKHR & - setStride( VULKAN_HPP_NAMESPACE::DeviceSize stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 StridedDeviceAddressRegionKHR & - setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT - { - size = size_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkStridedDeviceAddressRegionKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkStridedDeviceAddressRegionKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( deviceAddress, stride, size ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( StridedDeviceAddressRegionKHR const & ) const = default; -#else - bool operator==( StridedDeviceAddressRegionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( deviceAddress == rhs.deviceAddress ) && ( stride == rhs.stride ) && ( size == rhs.size ); -# endif - } - - bool operator!=( StridedDeviceAddressRegionKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress = {}; - VULKAN_HPP_NAMESPACE::DeviceSize stride = {}; - VULKAN_HPP_NAMESPACE::DeviceSize size = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::StridedDeviceAddressRegionKHR ) == - sizeof( VkStridedDeviceAddressRegionKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "StridedDeviceAddressRegionKHR is not nothrow_move_constructible!" ); - - struct SubmitInfo - { - using NativeType = VkSubmitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSubmitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SubmitInfo( uint32_t waitSemaphoreCount_ = {}, - const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores_ = {}, - const VULKAN_HPP_NAMESPACE::PipelineStageFlags * pWaitDstStageMask_ = {}, - uint32_t commandBufferCount_ = {}, - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers_ = {}, - uint32_t signalSemaphoreCount_ = {}, - const VULKAN_HPP_NAMESPACE::Semaphore * pSignalSemaphores_ = {} ) VULKAN_HPP_NOEXCEPT - : waitSemaphoreCount( waitSemaphoreCount_ ) - , pWaitSemaphores( pWaitSemaphores_ ) - , pWaitDstStageMask( pWaitDstStageMask_ ) - , commandBufferCount( commandBufferCount_ ) - , pCommandBuffers( pCommandBuffers_ ) - , signalSemaphoreCount( signalSemaphoreCount_ ) - , pSignalSemaphores( pSignalSemaphores_ ) - {} - - VULKAN_HPP_CONSTEXPR SubmitInfo( SubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubmitInfo( VkSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SubmitInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphores_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - waitDstStageMask_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - commandBuffers_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - signalSemaphores_ = {} ) - : waitSemaphoreCount( static_cast( waitSemaphores_.size() ) ) - , pWaitSemaphores( waitSemaphores_.data() ) - , pWaitDstStageMask( waitDstStageMask_.data() ) - , commandBufferCount( static_cast( commandBuffers_.size() ) ) - , pCommandBuffers( commandBuffers_.data() ) - , signalSemaphoreCount( static_cast( signalSemaphores_.size() ) ) - , pSignalSemaphores( signalSemaphores_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( waitSemaphores_.size() == waitDstStageMask_.size() ); -# else - if ( waitSemaphores_.size() != waitDstStageMask_.size() ) - { - throw LogicError( VULKAN_HPP_NAMESPACE_STRING - "::SubmitInfo::SubmitInfo: waitSemaphores_.size() != waitDstStageMask_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubmitInfo & operator=( SubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubmitInfo & operator=( VkSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = waitSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & - setPWaitSemaphores( const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphores = pWaitSemaphores_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo & setWaitSemaphores( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphores_ ) - VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = static_cast( waitSemaphores_.size() ); - pWaitSemaphores = waitSemaphores_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & - setPWaitDstStageMask( const VULKAN_HPP_NAMESPACE::PipelineStageFlags * pWaitDstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - pWaitDstStageMask = pWaitDstStageMask_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo & setWaitDstStageMask( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - waitDstStageMask_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreCount = static_cast( waitDstStageMask_.size() ); - pWaitDstStageMask = waitDstStageMask_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & setCommandBufferCount( uint32_t commandBufferCount_ ) VULKAN_HPP_NOEXCEPT - { - commandBufferCount = commandBufferCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & - setPCommandBuffers( const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers_ ) VULKAN_HPP_NOEXCEPT - { - pCommandBuffers = pCommandBuffers_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo & setCommandBuffers( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & commandBuffers_ ) - VULKAN_HPP_NOEXCEPT - { - commandBufferCount = static_cast( commandBuffers_.size() ); - pCommandBuffers = commandBuffers_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & setSignalSemaphoreCount( uint32_t signalSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreCount = signalSemaphoreCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo & - setPSignalSemaphores( const VULKAN_HPP_NAMESPACE::Semaphore * pSignalSemaphores_ ) VULKAN_HPP_NOEXCEPT - { - pSignalSemaphores = pSignalSemaphores_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo & setSignalSemaphores( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphores_ ) - VULKAN_HPP_NOEXCEPT - { - signalSemaphoreCount = static_cast( signalSemaphores_.size() ); - pSignalSemaphores = signalSemaphores_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubmitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubmitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - waitSemaphoreCount, - pWaitSemaphores, - pWaitDstStageMask, - commandBufferCount, - pCommandBuffers, - signalSemaphoreCount, - pSignalSemaphores ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubmitInfo const & ) const = default; -#else - bool operator==( SubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( waitSemaphoreCount == rhs.waitSemaphoreCount ) && - ( pWaitSemaphores == rhs.pWaitSemaphores ) && ( pWaitDstStageMask == rhs.pWaitDstStageMask ) && - ( commandBufferCount == rhs.commandBufferCount ) && ( pCommandBuffers == rhs.pCommandBuffers ) && - ( signalSemaphoreCount == rhs.signalSemaphoreCount ) && ( pSignalSemaphores == rhs.pSignalSemaphores ); -# endif - } - - bool operator!=( SubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubmitInfo; - const void * pNext = {}; - uint32_t waitSemaphoreCount = {}; - const VULKAN_HPP_NAMESPACE::Semaphore * pWaitSemaphores = {}; - const VULKAN_HPP_NAMESPACE::PipelineStageFlags * pWaitDstStageMask = {}; - uint32_t commandBufferCount = {}; - const VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers = {}; - uint32_t signalSemaphoreCount = {}; - const VULKAN_HPP_NAMESPACE::Semaphore * pSignalSemaphores = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubmitInfo ) == sizeof( VkSubmitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubmitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubmitInfo; - }; - - struct SubmitInfo2 - { - using NativeType = VkSubmitInfo2; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSubmitInfo2; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SubmitInfo2( VULKAN_HPP_NAMESPACE::SubmitFlags flags_ = {}, - uint32_t waitSemaphoreInfoCount_ = {}, - const VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo * pWaitSemaphoreInfos_ = {}, - uint32_t commandBufferInfoCount_ = {}, - const VULKAN_HPP_NAMESPACE::CommandBufferSubmitInfo * pCommandBufferInfos_ = {}, - uint32_t signalSemaphoreInfoCount_ = {}, - const VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo * pSignalSemaphoreInfos_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , waitSemaphoreInfoCount( waitSemaphoreInfoCount_ ) - , pWaitSemaphoreInfos( pWaitSemaphoreInfos_ ) - , commandBufferInfoCount( commandBufferInfoCount_ ) - , pCommandBufferInfos( pCommandBufferInfos_ ) - , signalSemaphoreInfoCount( signalSemaphoreInfoCount_ ) - , pSignalSemaphoreInfos( pSignalSemaphoreInfos_ ) - {} - - VULKAN_HPP_CONSTEXPR SubmitInfo2( SubmitInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubmitInfo2( VkSubmitInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - : SubmitInfo2( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo2( VULKAN_HPP_NAMESPACE::SubmitFlags flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - waitSemaphoreInfos_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::CommandBufferSubmitInfo> const & commandBufferInfos_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - signalSemaphoreInfos_ = {} ) - : flags( flags_ ) - , waitSemaphoreInfoCount( static_cast( waitSemaphoreInfos_.size() ) ) - , pWaitSemaphoreInfos( waitSemaphoreInfos_.data() ) - , commandBufferInfoCount( static_cast( commandBufferInfos_.size() ) ) - , pCommandBufferInfos( commandBufferInfos_.data() ) - , signalSemaphoreInfoCount( static_cast( signalSemaphoreInfos_.size() ) ) - , pSignalSemaphoreInfos( signalSemaphoreInfos_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubmitInfo2 & operator=( SubmitInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubmitInfo2 & operator=( VkSubmitInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & setFlags( VULKAN_HPP_NAMESPACE::SubmitFlags flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & - setWaitSemaphoreInfoCount( uint32_t waitSemaphoreInfoCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreInfoCount = waitSemaphoreInfoCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & setPWaitSemaphoreInfos( - const VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo * pWaitSemaphoreInfos_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphoreInfos = pWaitSemaphoreInfos_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo2 & setWaitSemaphoreInfos( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - waitSemaphoreInfos_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreInfoCount = static_cast( waitSemaphoreInfos_.size() ); - pWaitSemaphoreInfos = waitSemaphoreInfos_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & - setCommandBufferInfoCount( uint32_t commandBufferInfoCount_ ) VULKAN_HPP_NOEXCEPT - { - commandBufferInfoCount = commandBufferInfoCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & setPCommandBufferInfos( - const VULKAN_HPP_NAMESPACE::CommandBufferSubmitInfo * pCommandBufferInfos_ ) VULKAN_HPP_NOEXCEPT - { - pCommandBufferInfos = pCommandBufferInfos_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo2 & setCommandBufferInfos( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - commandBufferInfos_ ) VULKAN_HPP_NOEXCEPT - { - commandBufferInfoCount = static_cast( commandBufferInfos_.size() ); - pCommandBufferInfos = commandBufferInfos_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & - setSignalSemaphoreInfoCount( uint32_t signalSemaphoreInfoCount_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreInfoCount = signalSemaphoreInfoCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubmitInfo2 & setPSignalSemaphoreInfos( - const VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo * pSignalSemaphoreInfos_ ) VULKAN_HPP_NOEXCEPT - { - pSignalSemaphoreInfos = pSignalSemaphoreInfos_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubmitInfo2 & setSignalSemaphoreInfos( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - signalSemaphoreInfos_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreInfoCount = static_cast( signalSemaphoreInfos_.size() ); - pSignalSemaphoreInfos = signalSemaphoreInfos_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubmitInfo2 const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubmitInfo2 &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - waitSemaphoreInfoCount, - pWaitSemaphoreInfos, - commandBufferInfoCount, - pCommandBufferInfos, - signalSemaphoreInfoCount, - pSignalSemaphoreInfos ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubmitInfo2 const & ) const = default; -#else - bool operator==( SubmitInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( waitSemaphoreInfoCount == rhs.waitSemaphoreInfoCount ) && - ( pWaitSemaphoreInfos == rhs.pWaitSemaphoreInfos ) && - ( commandBufferInfoCount == rhs.commandBufferInfoCount ) && - ( pCommandBufferInfos == rhs.pCommandBufferInfos ) && - ( signalSemaphoreInfoCount == rhs.signalSemaphoreInfoCount ) && - ( pSignalSemaphoreInfos == rhs.pSignalSemaphoreInfos ); -# endif - } - - bool operator!=( SubmitInfo2 const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubmitInfo2; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SubmitFlags flags = {}; - uint32_t waitSemaphoreInfoCount = {}; - const VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo * pWaitSemaphoreInfos = {}; - uint32_t commandBufferInfoCount = {}; - const VULKAN_HPP_NAMESPACE::CommandBufferSubmitInfo * pCommandBufferInfos = {}; - uint32_t signalSemaphoreInfoCount = {}; - const VULKAN_HPP_NAMESPACE::SemaphoreSubmitInfo * pSignalSemaphoreInfos = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubmitInfo2 ) == sizeof( VkSubmitInfo2 ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubmitInfo2 is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubmitInfo2; - }; - using SubmitInfo2KHR = SubmitInfo2; - - struct SubpassBeginInfo - { - using NativeType = VkSubpassBeginInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSubpassBeginInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassBeginInfo( VULKAN_HPP_NAMESPACE::SubpassContents contents_ = - VULKAN_HPP_NAMESPACE::SubpassContents::eInline ) VULKAN_HPP_NOEXCEPT - : contents( contents_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassBeginInfo( SubpassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassBeginInfo( VkSubpassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassBeginInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassBeginInfo & operator=( SubpassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassBeginInfo & operator=( VkSubpassBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassBeginInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassBeginInfo & - setContents( VULKAN_HPP_NAMESPACE::SubpassContents contents_ ) VULKAN_HPP_NOEXCEPT - { - contents = contents_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassBeginInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassBeginInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, contents ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassBeginInfo const & ) const = default; -#else - bool operator==( SubpassBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( contents == rhs.contents ); -# endif - } - - bool operator!=( SubpassBeginInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassBeginInfo; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SubpassContents contents = VULKAN_HPP_NAMESPACE::SubpassContents::eInline; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassBeginInfo ) == sizeof( VkSubpassBeginInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassBeginInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassBeginInfo; - }; - using SubpassBeginInfoKHR = SubpassBeginInfo; - - struct SubpassDescriptionDepthStencilResolve - { - using NativeType = VkSubpassDescriptionDepthStencilResolve; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSubpassDescriptionDepthStencilResolve; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassDescriptionDepthStencilResolve( - VULKAN_HPP_NAMESPACE::ResolveModeFlagBits depthResolveMode_ = VULKAN_HPP_NAMESPACE::ResolveModeFlagBits::eNone, - VULKAN_HPP_NAMESPACE::ResolveModeFlagBits stencilResolveMode_ = VULKAN_HPP_NAMESPACE::ResolveModeFlagBits::eNone, - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilResolveAttachment_ = {} ) VULKAN_HPP_NOEXCEPT - : depthResolveMode( depthResolveMode_ ) - , stencilResolveMode( stencilResolveMode_ ) - , pDepthStencilResolveAttachment( pDepthStencilResolveAttachment_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassDescriptionDepthStencilResolve( SubpassDescriptionDepthStencilResolve const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SubpassDescriptionDepthStencilResolve( VkSubpassDescriptionDepthStencilResolve const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassDescriptionDepthStencilResolve( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassDescriptionDepthStencilResolve & - operator=( SubpassDescriptionDepthStencilResolve const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassDescriptionDepthStencilResolve & - operator=( VkSubpassDescriptionDepthStencilResolve const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassDescriptionDepthStencilResolve & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescriptionDepthStencilResolve & - setDepthResolveMode( VULKAN_HPP_NAMESPACE::ResolveModeFlagBits depthResolveMode_ ) VULKAN_HPP_NOEXCEPT - { - depthResolveMode = depthResolveMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescriptionDepthStencilResolve & - setStencilResolveMode( VULKAN_HPP_NAMESPACE::ResolveModeFlagBits stencilResolveMode_ ) VULKAN_HPP_NOEXCEPT - { - stencilResolveMode = stencilResolveMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassDescriptionDepthStencilResolve & setPDepthStencilResolveAttachment( - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilResolveAttachment_ ) VULKAN_HPP_NOEXCEPT - { - pDepthStencilResolveAttachment = pDepthStencilResolveAttachment_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassDescriptionDepthStencilResolve const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassDescriptionDepthStencilResolve &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, depthResolveMode, stencilResolveMode, pDepthStencilResolveAttachment ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassDescriptionDepthStencilResolve const & ) const = default; -#else - bool operator==( SubpassDescriptionDepthStencilResolve const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( depthResolveMode == rhs.depthResolveMode ) && - ( stencilResolveMode == rhs.stencilResolveMode ) && - ( pDepthStencilResolveAttachment == rhs.pDepthStencilResolveAttachment ); -# endif - } - - bool operator!=( SubpassDescriptionDepthStencilResolve const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassDescriptionDepthStencilResolve; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ResolveModeFlagBits depthResolveMode = VULKAN_HPP_NAMESPACE::ResolveModeFlagBits::eNone; - VULKAN_HPP_NAMESPACE::ResolveModeFlagBits stencilResolveMode = VULKAN_HPP_NAMESPACE::ResolveModeFlagBits::eNone; - const VULKAN_HPP_NAMESPACE::AttachmentReference2 * pDepthStencilResolveAttachment = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassDescriptionDepthStencilResolve ) == - sizeof( VkSubpassDescriptionDepthStencilResolve ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SubpassDescriptionDepthStencilResolve is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassDescriptionDepthStencilResolve; - }; - using SubpassDescriptionDepthStencilResolveKHR = SubpassDescriptionDepthStencilResolve; - - struct SubpassEndInfo - { - using NativeType = VkSubpassEndInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSubpassEndInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassEndInfo() VULKAN_HPP_NOEXCEPT {} - - VULKAN_HPP_CONSTEXPR SubpassEndInfo( SubpassEndInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassEndInfo( VkSubpassEndInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassEndInfo( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassEndInfo & operator=( SubpassEndInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassEndInfo & operator=( VkSubpassEndInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassEndInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassEndInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassEndInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassEndInfo const & ) const = default; -#else - bool operator==( SubpassEndInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ); -# endif - } - - bool operator!=( SubpassEndInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassEndInfo; - const void * pNext = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassEndInfo ) == sizeof( VkSubpassEndInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SubpassEndInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassEndInfo; - }; - using SubpassEndInfoKHR = SubpassEndInfo; - - struct SubpassFragmentDensityMapOffsetEndInfoQCOM - { - using NativeType = VkSubpassFragmentDensityMapOffsetEndInfoQCOM; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSubpassFragmentDensityMapOffsetEndInfoQCOM; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassFragmentDensityMapOffsetEndInfoQCOM( - uint32_t fragmentDensityOffsetCount_ = {}, - const VULKAN_HPP_NAMESPACE::Offset2D * pFragmentDensityOffsets_ = {} ) VULKAN_HPP_NOEXCEPT - : fragmentDensityOffsetCount( fragmentDensityOffsetCount_ ) - , pFragmentDensityOffsets( pFragmentDensityOffsets_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassFragmentDensityMapOffsetEndInfoQCOM( - SubpassFragmentDensityMapOffsetEndInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassFragmentDensityMapOffsetEndInfoQCOM( VkSubpassFragmentDensityMapOffsetEndInfoQCOM const & rhs ) - VULKAN_HPP_NOEXCEPT - : SubpassFragmentDensityMapOffsetEndInfoQCOM( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassFragmentDensityMapOffsetEndInfoQCOM( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - fragmentDensityOffsets_ ) - : fragmentDensityOffsetCount( static_cast( fragmentDensityOffsets_.size() ) ) - , pFragmentDensityOffsets( fragmentDensityOffsets_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassFragmentDensityMapOffsetEndInfoQCOM & - operator=( SubpassFragmentDensityMapOffsetEndInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassFragmentDensityMapOffsetEndInfoQCOM & - operator=( VkSubpassFragmentDensityMapOffsetEndInfoQCOM const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SubpassFragmentDensityMapOffsetEndInfoQCOM & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassFragmentDensityMapOffsetEndInfoQCOM & - setFragmentDensityOffsetCount( uint32_t fragmentDensityOffsetCount_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityOffsetCount = fragmentDensityOffsetCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SubpassFragmentDensityMapOffsetEndInfoQCOM & - setPFragmentDensityOffsets( const VULKAN_HPP_NAMESPACE::Offset2D * pFragmentDensityOffsets_ ) VULKAN_HPP_NOEXCEPT - { - pFragmentDensityOffsets = pFragmentDensityOffsets_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SubpassFragmentDensityMapOffsetEndInfoQCOM & setFragmentDensityOffsets( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - fragmentDensityOffsets_ ) VULKAN_HPP_NOEXCEPT - { - fragmentDensityOffsetCount = static_cast( fragmentDensityOffsets_.size() ); - pFragmentDensityOffsets = fragmentDensityOffsets_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSubpassFragmentDensityMapOffsetEndInfoQCOM const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassFragmentDensityMapOffsetEndInfoQCOM &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fragmentDensityOffsetCount, pFragmentDensityOffsets ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassFragmentDensityMapOffsetEndInfoQCOM const & ) const = default; -#else - bool operator==( SubpassFragmentDensityMapOffsetEndInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fragmentDensityOffsetCount == rhs.fragmentDensityOffsetCount ) && - ( pFragmentDensityOffsets == rhs.pFragmentDensityOffsets ); -# endif - } - - bool operator!=( SubpassFragmentDensityMapOffsetEndInfoQCOM const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassFragmentDensityMapOffsetEndInfoQCOM; - const void * pNext = {}; - uint32_t fragmentDensityOffsetCount = {}; - const VULKAN_HPP_NAMESPACE::Offset2D * pFragmentDensityOffsets = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassFragmentDensityMapOffsetEndInfoQCOM ) == - sizeof( VkSubpassFragmentDensityMapOffsetEndInfoQCOM ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SubpassFragmentDensityMapOffsetEndInfoQCOM is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassFragmentDensityMapOffsetEndInfoQCOM; - }; - - struct SubpassShadingPipelineCreateInfoHUAWEI - { - using NativeType = VkSubpassShadingPipelineCreateInfoHUAWEI; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSubpassShadingPipelineCreateInfoHUAWEI; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SubpassShadingPipelineCreateInfoHUAWEI( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {}, - uint32_t subpass_ = {} ) VULKAN_HPP_NOEXCEPT - : renderPass( renderPass_ ) - , subpass( subpass_ ) - {} - - VULKAN_HPP_CONSTEXPR SubpassShadingPipelineCreateInfoHUAWEI( SubpassShadingPipelineCreateInfoHUAWEI const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SubpassShadingPipelineCreateInfoHUAWEI( VkSubpassShadingPipelineCreateInfoHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT - : SubpassShadingPipelineCreateInfoHUAWEI( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SubpassShadingPipelineCreateInfoHUAWEI & - operator=( SubpassShadingPipelineCreateInfoHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SubpassShadingPipelineCreateInfoHUAWEI & - operator=( VkSubpassShadingPipelineCreateInfoHUAWEI const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSubpassShadingPipelineCreateInfoHUAWEI const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSubpassShadingPipelineCreateInfoHUAWEI &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, renderPass, subpass ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SubpassShadingPipelineCreateInfoHUAWEI const & ) const = default; -#else - bool operator==( SubpassShadingPipelineCreateInfoHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( renderPass == rhs.renderPass ) && - ( subpass == rhs.subpass ); -# endif - } - - bool operator!=( SubpassShadingPipelineCreateInfoHUAWEI const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSubpassShadingPipelineCreateInfoHUAWEI; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::RenderPass renderPass = {}; - uint32_t subpass = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SubpassShadingPipelineCreateInfoHUAWEI ) == - sizeof( VkSubpassShadingPipelineCreateInfoHUAWEI ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SubpassShadingPipelineCreateInfoHUAWEI is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SubpassShadingPipelineCreateInfoHUAWEI; - }; - - struct SurfaceCapabilities2EXT - { - using NativeType = VkSurfaceCapabilities2EXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSurfaceCapabilities2EXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SurfaceCapabilities2EXT( - uint32_t minImageCount_ = {}, - uint32_t maxImageCount_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D currentExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D minImageExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxImageExtent_ = {}, - uint32_t maxImageArrayLayers_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagsKHR supportedTransforms_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR currentTransform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity, - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagsKHR supportedCompositeAlpha_ = {}, - VULKAN_HPP_NAMESPACE::ImageUsageFlags supportedUsageFlags_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagsEXT supportedSurfaceCounters_ = {} ) VULKAN_HPP_NOEXCEPT - : minImageCount( minImageCount_ ) - , maxImageCount( maxImageCount_ ) - , currentExtent( currentExtent_ ) - , minImageExtent( minImageExtent_ ) - , maxImageExtent( maxImageExtent_ ) - , maxImageArrayLayers( maxImageArrayLayers_ ) - , supportedTransforms( supportedTransforms_ ) - , currentTransform( currentTransform_ ) - , supportedCompositeAlpha( supportedCompositeAlpha_ ) - , supportedUsageFlags( supportedUsageFlags_ ) - , supportedSurfaceCounters( supportedSurfaceCounters_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceCapabilities2EXT( SurfaceCapabilities2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilities2EXT( VkSurfaceCapabilities2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceCapabilities2EXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceCapabilities2EXT & operator=( SurfaceCapabilities2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilities2EXT & operator=( VkSurfaceCapabilities2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSurfaceCapabilities2EXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceCapabilities2EXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - minImageCount, - maxImageCount, - currentExtent, - minImageExtent, - maxImageExtent, - maxImageArrayLayers, - supportedTransforms, - currentTransform, - supportedCompositeAlpha, - supportedUsageFlags, - supportedSurfaceCounters ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceCapabilities2EXT const & ) const = default; -#else - bool operator==( SurfaceCapabilities2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( minImageCount == rhs.minImageCount ) && - ( maxImageCount == rhs.maxImageCount ) && ( currentExtent == rhs.currentExtent ) && - ( minImageExtent == rhs.minImageExtent ) && ( maxImageExtent == rhs.maxImageExtent ) && - ( maxImageArrayLayers == rhs.maxImageArrayLayers ) && ( supportedTransforms == rhs.supportedTransforms ) && - ( currentTransform == rhs.currentTransform ) && - ( supportedCompositeAlpha == rhs.supportedCompositeAlpha ) && - ( supportedUsageFlags == rhs.supportedUsageFlags ) && - ( supportedSurfaceCounters == rhs.supportedSurfaceCounters ); -# endif - } - - bool operator!=( SurfaceCapabilities2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceCapabilities2EXT; - void * pNext = {}; - uint32_t minImageCount = {}; - uint32_t maxImageCount = {}; - VULKAN_HPP_NAMESPACE::Extent2D currentExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D minImageExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxImageExtent = {}; - uint32_t maxImageArrayLayers = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagsKHR supportedTransforms = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR currentTransform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagsKHR supportedCompositeAlpha = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags supportedUsageFlags = {}; - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagsEXT supportedSurfaceCounters = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceCapabilities2EXT ) == - sizeof( VkSurfaceCapabilities2EXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SurfaceCapabilities2EXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceCapabilities2EXT; - }; - - struct SurfaceCapabilitiesKHR - { - using NativeType = VkSurfaceCapabilitiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SurfaceCapabilitiesKHR( uint32_t minImageCount_ = {}, - uint32_t maxImageCount_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D currentExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D minImageExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxImageExtent_ = {}, - uint32_t maxImageArrayLayers_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagsKHR supportedTransforms_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR currentTransform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity, - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagsKHR supportedCompositeAlpha_ = {}, - VULKAN_HPP_NAMESPACE::ImageUsageFlags supportedUsageFlags_ = {} ) VULKAN_HPP_NOEXCEPT - : minImageCount( minImageCount_ ) - , maxImageCount( maxImageCount_ ) - , currentExtent( currentExtent_ ) - , minImageExtent( minImageExtent_ ) - , maxImageExtent( maxImageExtent_ ) - , maxImageArrayLayers( maxImageArrayLayers_ ) - , supportedTransforms( supportedTransforms_ ) - , currentTransform( currentTransform_ ) - , supportedCompositeAlpha( supportedCompositeAlpha_ ) - , supportedUsageFlags( supportedUsageFlags_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceCapabilitiesKHR( SurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilitiesKHR( VkSurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceCapabilitiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceCapabilitiesKHR & operator=( SurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilitiesKHR & operator=( VkSurfaceCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSurfaceCapabilitiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceCapabilitiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( minImageCount, - maxImageCount, - currentExtent, - minImageExtent, - maxImageExtent, - maxImageArrayLayers, - supportedTransforms, - currentTransform, - supportedCompositeAlpha, - supportedUsageFlags ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceCapabilitiesKHR const & ) const = default; -#else - bool operator==( SurfaceCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( minImageCount == rhs.minImageCount ) && ( maxImageCount == rhs.maxImageCount ) && - ( currentExtent == rhs.currentExtent ) && ( minImageExtent == rhs.minImageExtent ) && - ( maxImageExtent == rhs.maxImageExtent ) && ( maxImageArrayLayers == rhs.maxImageArrayLayers ) && - ( supportedTransforms == rhs.supportedTransforms ) && ( currentTransform == rhs.currentTransform ) && - ( supportedCompositeAlpha == rhs.supportedCompositeAlpha ) && - ( supportedUsageFlags == rhs.supportedUsageFlags ); -# endif - } - - bool operator!=( SurfaceCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t minImageCount = {}; - uint32_t maxImageCount = {}; - VULKAN_HPP_NAMESPACE::Extent2D currentExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D minImageExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxImageExtent = {}; - uint32_t maxImageArrayLayers = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagsKHR supportedTransforms = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR currentTransform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagsKHR supportedCompositeAlpha = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags supportedUsageFlags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR ) == - sizeof( VkSurfaceCapabilitiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SurfaceCapabilitiesKHR is not nothrow_move_constructible!" ); - - struct SurfaceCapabilities2KHR - { - using NativeType = VkSurfaceCapabilities2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSurfaceCapabilities2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SurfaceCapabilities2KHR( - VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR surfaceCapabilities_ = {} ) VULKAN_HPP_NOEXCEPT - : surfaceCapabilities( surfaceCapabilities_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceCapabilities2KHR( SurfaceCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilities2KHR( VkSurfaceCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceCapabilities2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceCapabilities2KHR & operator=( SurfaceCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilities2KHR & operator=( VkSurfaceCapabilities2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSurfaceCapabilities2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceCapabilities2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, surfaceCapabilities ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceCapabilities2KHR const & ) const = default; -#else - bool operator==( SurfaceCapabilities2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( surfaceCapabilities == rhs.surfaceCapabilities ); -# endif - } - - bool operator!=( SurfaceCapabilities2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceCapabilities2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesKHR surfaceCapabilities = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceCapabilities2KHR ) == - sizeof( VkSurfaceCapabilities2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SurfaceCapabilities2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceCapabilities2KHR; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct SurfaceCapabilitiesFullScreenExclusiveEXT - { - using NativeType = VkSurfaceCapabilitiesFullScreenExclusiveEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSurfaceCapabilitiesFullScreenExclusiveEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SurfaceCapabilitiesFullScreenExclusiveEXT( - VULKAN_HPP_NAMESPACE::Bool32 fullScreenExclusiveSupported_ = {} ) VULKAN_HPP_NOEXCEPT - : fullScreenExclusiveSupported( fullScreenExclusiveSupported_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceCapabilitiesFullScreenExclusiveEXT( - SurfaceCapabilitiesFullScreenExclusiveEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilitiesFullScreenExclusiveEXT( VkSurfaceCapabilitiesFullScreenExclusiveEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : SurfaceCapabilitiesFullScreenExclusiveEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceCapabilitiesFullScreenExclusiveEXT & - operator=( SurfaceCapabilitiesFullScreenExclusiveEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceCapabilitiesFullScreenExclusiveEXT & - operator=( VkSurfaceCapabilitiesFullScreenExclusiveEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SurfaceCapabilitiesFullScreenExclusiveEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SurfaceCapabilitiesFullScreenExclusiveEXT & - setFullScreenExclusiveSupported( VULKAN_HPP_NAMESPACE::Bool32 fullScreenExclusiveSupported_ ) VULKAN_HPP_NOEXCEPT - { - fullScreenExclusiveSupported = fullScreenExclusiveSupported_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSurfaceCapabilitiesFullScreenExclusiveEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceCapabilitiesFullScreenExclusiveEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fullScreenExclusiveSupported ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceCapabilitiesFullScreenExclusiveEXT const & ) const = default; -# else - bool operator==( SurfaceCapabilitiesFullScreenExclusiveEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( fullScreenExclusiveSupported == rhs.fullScreenExclusiveSupported ); -# endif - } - - bool operator!=( SurfaceCapabilitiesFullScreenExclusiveEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceCapabilitiesFullScreenExclusiveEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 fullScreenExclusiveSupported = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceCapabilitiesFullScreenExclusiveEXT ) == - sizeof( VkSurfaceCapabilitiesFullScreenExclusiveEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SurfaceCapabilitiesFullScreenExclusiveEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceCapabilitiesFullScreenExclusiveEXT; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct SurfaceFormatKHR - { - using NativeType = VkSurfaceFormatKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SurfaceFormatKHR( VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::ColorSpaceKHR colorSpace_ = - VULKAN_HPP_NAMESPACE::ColorSpaceKHR::eSrgbNonlinear ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - , colorSpace( colorSpace_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceFormatKHR( SurfaceFormatKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFormatKHR( VkSurfaceFormatKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceFormatKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceFormatKHR & operator=( SurfaceFormatKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFormatKHR & operator=( VkSurfaceFormatKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSurfaceFormatKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceFormatKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( format, colorSpace ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceFormatKHR const & ) const = default; -#else - bool operator==( SurfaceFormatKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( format == rhs.format ) && ( colorSpace == rhs.colorSpace ); -# endif - } - - bool operator!=( SurfaceFormatKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::ColorSpaceKHR colorSpace = VULKAN_HPP_NAMESPACE::ColorSpaceKHR::eSrgbNonlinear; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceFormatKHR ) == sizeof( VkSurfaceFormatKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SurfaceFormatKHR is not nothrow_move_constructible!" ); - - struct SurfaceFormat2KHR - { - using NativeType = VkSurfaceFormat2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSurfaceFormat2KHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SurfaceFormat2KHR( VULKAN_HPP_NAMESPACE::SurfaceFormatKHR surfaceFormat_ = {} ) VULKAN_HPP_NOEXCEPT - : surfaceFormat( surfaceFormat_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceFormat2KHR( SurfaceFormat2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFormat2KHR( VkSurfaceFormat2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceFormat2KHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceFormat2KHR & operator=( SurfaceFormat2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFormat2KHR & operator=( VkSurfaceFormat2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkSurfaceFormat2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceFormat2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, surfaceFormat ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceFormat2KHR const & ) const = default; -#else - bool operator==( SurfaceFormat2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( surfaceFormat == rhs.surfaceFormat ); -# endif - } - - bool operator!=( SurfaceFormat2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceFormat2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceFormatKHR surfaceFormat = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceFormat2KHR ) == sizeof( VkSurfaceFormat2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SurfaceFormat2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceFormat2KHR; - }; - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct SurfaceFullScreenExclusiveInfoEXT - { - using NativeType = VkSurfaceFullScreenExclusiveInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSurfaceFullScreenExclusiveInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SurfaceFullScreenExclusiveInfoEXT( VULKAN_HPP_NAMESPACE::FullScreenExclusiveEXT fullScreenExclusive_ = - VULKAN_HPP_NAMESPACE::FullScreenExclusiveEXT::eDefault ) VULKAN_HPP_NOEXCEPT - : fullScreenExclusive( fullScreenExclusive_ ) - {} - - VULKAN_HPP_CONSTEXPR - SurfaceFullScreenExclusiveInfoEXT( SurfaceFullScreenExclusiveInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFullScreenExclusiveInfoEXT( VkSurfaceFullScreenExclusiveInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceFullScreenExclusiveInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceFullScreenExclusiveInfoEXT & - operator=( SurfaceFullScreenExclusiveInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFullScreenExclusiveInfoEXT & operator=( VkSurfaceFullScreenExclusiveInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SurfaceFullScreenExclusiveInfoEXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SurfaceFullScreenExclusiveInfoEXT & - setFullScreenExclusive( VULKAN_HPP_NAMESPACE::FullScreenExclusiveEXT fullScreenExclusive_ ) VULKAN_HPP_NOEXCEPT - { - fullScreenExclusive = fullScreenExclusive_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSurfaceFullScreenExclusiveInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceFullScreenExclusiveInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, fullScreenExclusive ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceFullScreenExclusiveInfoEXT const & ) const = default; -# else - bool operator==( SurfaceFullScreenExclusiveInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( fullScreenExclusive == rhs.fullScreenExclusive ); -# endif - } - - bool operator!=( SurfaceFullScreenExclusiveInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceFullScreenExclusiveInfoEXT; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::FullScreenExclusiveEXT fullScreenExclusive = - VULKAN_HPP_NAMESPACE::FullScreenExclusiveEXT::eDefault; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceFullScreenExclusiveInfoEXT ) == - sizeof( VkSurfaceFullScreenExclusiveInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SurfaceFullScreenExclusiveInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceFullScreenExclusiveInfoEXT; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct SurfaceFullScreenExclusiveWin32InfoEXT - { - using NativeType = VkSurfaceFullScreenExclusiveWin32InfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSurfaceFullScreenExclusiveWin32InfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SurfaceFullScreenExclusiveWin32InfoEXT( HMONITOR hmonitor_ = {} ) VULKAN_HPP_NOEXCEPT - : hmonitor( hmonitor_ ) - {} - - VULKAN_HPP_CONSTEXPR SurfaceFullScreenExclusiveWin32InfoEXT( SurfaceFullScreenExclusiveWin32InfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SurfaceFullScreenExclusiveWin32InfoEXT( VkSurfaceFullScreenExclusiveWin32InfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceFullScreenExclusiveWin32InfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceFullScreenExclusiveWin32InfoEXT & - operator=( SurfaceFullScreenExclusiveWin32InfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceFullScreenExclusiveWin32InfoEXT & - operator=( VkSurfaceFullScreenExclusiveWin32InfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SurfaceFullScreenExclusiveWin32InfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SurfaceFullScreenExclusiveWin32InfoEXT & - setHmonitor( HMONITOR hmonitor_ ) VULKAN_HPP_NOEXCEPT - { - hmonitor = hmonitor_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSurfaceFullScreenExclusiveWin32InfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceFullScreenExclusiveWin32InfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, hmonitor ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceFullScreenExclusiveWin32InfoEXT const & ) const = default; -# else - bool operator==( SurfaceFullScreenExclusiveWin32InfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( hmonitor == rhs.hmonitor ); -# endif - } - - bool operator!=( SurfaceFullScreenExclusiveWin32InfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceFullScreenExclusiveWin32InfoEXT; - const void * pNext = {}; - HMONITOR hmonitor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceFullScreenExclusiveWin32InfoEXT ) == - sizeof( VkSurfaceFullScreenExclusiveWin32InfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SurfaceFullScreenExclusiveWin32InfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceFullScreenExclusiveWin32InfoEXT; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct SurfaceProtectedCapabilitiesKHR - { - using NativeType = VkSurfaceProtectedCapabilitiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSurfaceProtectedCapabilitiesKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - SurfaceProtectedCapabilitiesKHR( VULKAN_HPP_NAMESPACE::Bool32 supportsProtected_ = {} ) VULKAN_HPP_NOEXCEPT - : supportsProtected( supportsProtected_ ) - {} - - VULKAN_HPP_CONSTEXPR - SurfaceProtectedCapabilitiesKHR( SurfaceProtectedCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceProtectedCapabilitiesKHR( VkSurfaceProtectedCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SurfaceProtectedCapabilitiesKHR( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SurfaceProtectedCapabilitiesKHR & - operator=( SurfaceProtectedCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SurfaceProtectedCapabilitiesKHR & operator=( VkSurfaceProtectedCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SurfaceProtectedCapabilitiesKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SurfaceProtectedCapabilitiesKHR & - setSupportsProtected( VULKAN_HPP_NAMESPACE::Bool32 supportsProtected_ ) VULKAN_HPP_NOEXCEPT - { - supportsProtected = supportsProtected_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSurfaceProtectedCapabilitiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSurfaceProtectedCapabilitiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, supportsProtected ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SurfaceProtectedCapabilitiesKHR const & ) const = default; -#else - bool operator==( SurfaceProtectedCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( supportsProtected == rhs.supportsProtected ); -# endif - } - - bool operator!=( SurfaceProtectedCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSurfaceProtectedCapabilitiesKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 supportsProtected = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SurfaceProtectedCapabilitiesKHR ) == - sizeof( VkSurfaceProtectedCapabilitiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SurfaceProtectedCapabilitiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SurfaceProtectedCapabilitiesKHR; - }; - - struct SwapchainCounterCreateInfoEXT - { - using NativeType = VkSwapchainCounterCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSwapchainCounterCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SwapchainCounterCreateInfoEXT( - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagsEXT surfaceCounters_ = {} ) VULKAN_HPP_NOEXCEPT - : surfaceCounters( surfaceCounters_ ) - {} - - VULKAN_HPP_CONSTEXPR - SwapchainCounterCreateInfoEXT( SwapchainCounterCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SwapchainCounterCreateInfoEXT( VkSwapchainCounterCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : SwapchainCounterCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SwapchainCounterCreateInfoEXT & - operator=( SwapchainCounterCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SwapchainCounterCreateInfoEXT & operator=( VkSwapchainCounterCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SwapchainCounterCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCounterCreateInfoEXT & - setSurfaceCounters( VULKAN_HPP_NAMESPACE::SurfaceCounterFlagsEXT surfaceCounters_ ) VULKAN_HPP_NOEXCEPT - { - surfaceCounters = surfaceCounters_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSwapchainCounterCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSwapchainCounterCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, surfaceCounters ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SwapchainCounterCreateInfoEXT const & ) const = default; -#else - bool operator==( SwapchainCounterCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( surfaceCounters == rhs.surfaceCounters ); -# endif - } - - bool operator!=( SwapchainCounterCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSwapchainCounterCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SurfaceCounterFlagsEXT surfaceCounters = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SwapchainCounterCreateInfoEXT ) == - sizeof( VkSwapchainCounterCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SwapchainCounterCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SwapchainCounterCreateInfoEXT; - }; - - struct SwapchainCreateInfoKHR - { - using NativeType = VkSwapchainCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eSwapchainCreateInfoKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SwapchainCreateInfoKHR( - VULKAN_HPP_NAMESPACE::SwapchainCreateFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceKHR surface_ = {}, - uint32_t minImageCount_ = {}, - VULKAN_HPP_NAMESPACE::Format imageFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::ColorSpaceKHR imageColorSpace_ = VULKAN_HPP_NAMESPACE::ColorSpaceKHR::eSrgbNonlinear, - VULKAN_HPP_NAMESPACE::Extent2D imageExtent_ = {}, - uint32_t imageArrayLayers_ = {}, - VULKAN_HPP_NAMESPACE::ImageUsageFlags imageUsage_ = {}, - VULKAN_HPP_NAMESPACE::SharingMode imageSharingMode_ = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive, - uint32_t queueFamilyIndexCount_ = {}, - const uint32_t * pQueueFamilyIndices_ = {}, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR preTransform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity, - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR compositeAlpha_ = - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR::eOpaque, - VULKAN_HPP_NAMESPACE::PresentModeKHR presentMode_ = VULKAN_HPP_NAMESPACE::PresentModeKHR::eImmediate, - VULKAN_HPP_NAMESPACE::Bool32 clipped_ = {}, - VULKAN_HPP_NAMESPACE::SwapchainKHR oldSwapchain_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , surface( surface_ ) - , minImageCount( minImageCount_ ) - , imageFormat( imageFormat_ ) - , imageColorSpace( imageColorSpace_ ) - , imageExtent( imageExtent_ ) - , imageArrayLayers( imageArrayLayers_ ) - , imageUsage( imageUsage_ ) - , imageSharingMode( imageSharingMode_ ) - , queueFamilyIndexCount( queueFamilyIndexCount_ ) - , pQueueFamilyIndices( pQueueFamilyIndices_ ) - , preTransform( preTransform_ ) - , compositeAlpha( compositeAlpha_ ) - , presentMode( presentMode_ ) - , clipped( clipped_ ) - , oldSwapchain( oldSwapchain_ ) - {} - - VULKAN_HPP_CONSTEXPR SwapchainCreateInfoKHR( SwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SwapchainCreateInfoKHR( VkSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : SwapchainCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SwapchainCreateInfoKHR( - VULKAN_HPP_NAMESPACE::SwapchainCreateFlagsKHR flags_, - VULKAN_HPP_NAMESPACE::SurfaceKHR surface_, - uint32_t minImageCount_, - VULKAN_HPP_NAMESPACE::Format imageFormat_, - VULKAN_HPP_NAMESPACE::ColorSpaceKHR imageColorSpace_, - VULKAN_HPP_NAMESPACE::Extent2D imageExtent_, - uint32_t imageArrayLayers_, - VULKAN_HPP_NAMESPACE::ImageUsageFlags imageUsage_, - VULKAN_HPP_NAMESPACE::SharingMode imageSharingMode_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_, - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR preTransform_ = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity, - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR compositeAlpha_ = - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR::eOpaque, - VULKAN_HPP_NAMESPACE::PresentModeKHR presentMode_ = VULKAN_HPP_NAMESPACE::PresentModeKHR::eImmediate, - VULKAN_HPP_NAMESPACE::Bool32 clipped_ = {}, - VULKAN_HPP_NAMESPACE::SwapchainKHR oldSwapchain_ = {} ) - : flags( flags_ ) - , surface( surface_ ) - , minImageCount( minImageCount_ ) - , imageFormat( imageFormat_ ) - , imageColorSpace( imageColorSpace_ ) - , imageExtent( imageExtent_ ) - , imageArrayLayers( imageArrayLayers_ ) - , imageUsage( imageUsage_ ) - , imageSharingMode( imageSharingMode_ ) - , queueFamilyIndexCount( static_cast( queueFamilyIndices_.size() ) ) - , pQueueFamilyIndices( queueFamilyIndices_.data() ) - , preTransform( preTransform_ ) - , compositeAlpha( compositeAlpha_ ) - , presentMode( presentMode_ ) - , clipped( clipped_ ) - , oldSwapchain( oldSwapchain_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SwapchainCreateInfoKHR & operator=( SwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SwapchainCreateInfoKHR & operator=( VkSwapchainCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::SwapchainCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setSurface( VULKAN_HPP_NAMESPACE::SurfaceKHR surface_ ) VULKAN_HPP_NOEXCEPT - { - surface = surface_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & setMinImageCount( uint32_t minImageCount_ ) VULKAN_HPP_NOEXCEPT - { - minImageCount = minImageCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setImageFormat( VULKAN_HPP_NAMESPACE::Format imageFormat_ ) VULKAN_HPP_NOEXCEPT - { - imageFormat = imageFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setImageColorSpace( VULKAN_HPP_NAMESPACE::ColorSpaceKHR imageColorSpace_ ) VULKAN_HPP_NOEXCEPT - { - imageColorSpace = imageColorSpace_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setImageExtent( VULKAN_HPP_NAMESPACE::Extent2D const & imageExtent_ ) VULKAN_HPP_NOEXCEPT - { - imageExtent = imageExtent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setImageArrayLayers( uint32_t imageArrayLayers_ ) VULKAN_HPP_NOEXCEPT - { - imageArrayLayers = imageArrayLayers_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setImageUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags imageUsage_ ) VULKAN_HPP_NOEXCEPT - { - imageUsage = imageUsage_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setImageSharingMode( VULKAN_HPP_NAMESPACE::SharingMode imageSharingMode_ ) VULKAN_HPP_NOEXCEPT - { - imageSharingMode = imageSharingMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setQueueFamilyIndexCount( uint32_t queueFamilyIndexCount_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = queueFamilyIndexCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setPQueueFamilyIndices( const uint32_t * pQueueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - pQueueFamilyIndices = pQueueFamilyIndices_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - SwapchainCreateInfoKHR & setQueueFamilyIndices( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & queueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndexCount = static_cast( queueFamilyIndices_.size() ); - pQueueFamilyIndices = queueFamilyIndices_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setPreTransform( VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR preTransform_ ) VULKAN_HPP_NOEXCEPT - { - preTransform = preTransform_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setCompositeAlpha( VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR compositeAlpha_ ) VULKAN_HPP_NOEXCEPT - { - compositeAlpha = compositeAlpha_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setPresentMode( VULKAN_HPP_NAMESPACE::PresentModeKHR presentMode_ ) VULKAN_HPP_NOEXCEPT - { - presentMode = presentMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setClipped( VULKAN_HPP_NAMESPACE::Bool32 clipped_ ) VULKAN_HPP_NOEXCEPT - { - clipped = clipped_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainCreateInfoKHR & - setOldSwapchain( VULKAN_HPP_NAMESPACE::SwapchainKHR oldSwapchain_ ) VULKAN_HPP_NOEXCEPT - { - oldSwapchain = oldSwapchain_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSwapchainCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSwapchainCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - surface, - minImageCount, - imageFormat, - imageColorSpace, - imageExtent, - imageArrayLayers, - imageUsage, - imageSharingMode, - queueFamilyIndexCount, - pQueueFamilyIndices, - preTransform, - compositeAlpha, - presentMode, - clipped, - oldSwapchain ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SwapchainCreateInfoKHR const & ) const = default; -#else - bool operator==( SwapchainCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( surface == rhs.surface ) && - ( minImageCount == rhs.minImageCount ) && ( imageFormat == rhs.imageFormat ) && - ( imageColorSpace == rhs.imageColorSpace ) && ( imageExtent == rhs.imageExtent ) && - ( imageArrayLayers == rhs.imageArrayLayers ) && ( imageUsage == rhs.imageUsage ) && - ( imageSharingMode == rhs.imageSharingMode ) && ( queueFamilyIndexCount == rhs.queueFamilyIndexCount ) && - ( pQueueFamilyIndices == rhs.pQueueFamilyIndices ) && ( preTransform == rhs.preTransform ) && - ( compositeAlpha == rhs.compositeAlpha ) && ( presentMode == rhs.presentMode ) && - ( clipped == rhs.clipped ) && ( oldSwapchain == rhs.oldSwapchain ); -# endif - } - - bool operator!=( SwapchainCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSwapchainCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::SwapchainCreateFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::SurfaceKHR surface = {}; - uint32_t minImageCount = {}; - VULKAN_HPP_NAMESPACE::Format imageFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::ColorSpaceKHR imageColorSpace = VULKAN_HPP_NAMESPACE::ColorSpaceKHR::eSrgbNonlinear; - VULKAN_HPP_NAMESPACE::Extent2D imageExtent = {}; - uint32_t imageArrayLayers = {}; - VULKAN_HPP_NAMESPACE::ImageUsageFlags imageUsage = {}; - VULKAN_HPP_NAMESPACE::SharingMode imageSharingMode = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive; - uint32_t queueFamilyIndexCount = {}; - const uint32_t * pQueueFamilyIndices = {}; - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR preTransform = - VULKAN_HPP_NAMESPACE::SurfaceTransformFlagBitsKHR::eIdentity; - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR compositeAlpha = - VULKAN_HPP_NAMESPACE::CompositeAlphaFlagBitsKHR::eOpaque; - VULKAN_HPP_NAMESPACE::PresentModeKHR presentMode = VULKAN_HPP_NAMESPACE::PresentModeKHR::eImmediate; - VULKAN_HPP_NAMESPACE::Bool32 clipped = {}; - VULKAN_HPP_NAMESPACE::SwapchainKHR oldSwapchain = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR ) == - sizeof( VkSwapchainCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "SwapchainCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SwapchainCreateInfoKHR; - }; - - struct SwapchainDisplayNativeHdrCreateInfoAMD - { - using NativeType = VkSwapchainDisplayNativeHdrCreateInfoAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eSwapchainDisplayNativeHdrCreateInfoAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR SwapchainDisplayNativeHdrCreateInfoAMD( VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable_ = {} ) - VULKAN_HPP_NOEXCEPT : localDimmingEnable( localDimmingEnable_ ) - {} - - VULKAN_HPP_CONSTEXPR SwapchainDisplayNativeHdrCreateInfoAMD( SwapchainDisplayNativeHdrCreateInfoAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - SwapchainDisplayNativeHdrCreateInfoAMD( VkSwapchainDisplayNativeHdrCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : SwapchainDisplayNativeHdrCreateInfoAMD( - *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - SwapchainDisplayNativeHdrCreateInfoAMD & - operator=( SwapchainDisplayNativeHdrCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - SwapchainDisplayNativeHdrCreateInfoAMD & - operator=( VkSwapchainDisplayNativeHdrCreateInfoAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 SwapchainDisplayNativeHdrCreateInfoAMD & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 SwapchainDisplayNativeHdrCreateInfoAMD & - setLocalDimmingEnable( VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable_ ) VULKAN_HPP_NOEXCEPT - { - localDimmingEnable = localDimmingEnable_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkSwapchainDisplayNativeHdrCreateInfoAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkSwapchainDisplayNativeHdrCreateInfoAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, localDimmingEnable ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( SwapchainDisplayNativeHdrCreateInfoAMD const & ) const = default; -#else - bool operator==( SwapchainDisplayNativeHdrCreateInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( localDimmingEnable == rhs.localDimmingEnable ); -# endif - } - - bool operator!=( SwapchainDisplayNativeHdrCreateInfoAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSwapchainDisplayNativeHdrCreateInfoAMD; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 localDimmingEnable = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::SwapchainDisplayNativeHdrCreateInfoAMD ) == - sizeof( VkSwapchainDisplayNativeHdrCreateInfoAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "SwapchainDisplayNativeHdrCreateInfoAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = SwapchainDisplayNativeHdrCreateInfoAMD; - }; - - struct TextureLODGatherFormatPropertiesAMD - { - using NativeType = VkTextureLODGatherFormatPropertiesAMD; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eTextureLodGatherFormatPropertiesAMD; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR TextureLODGatherFormatPropertiesAMD( - VULKAN_HPP_NAMESPACE::Bool32 supportsTextureGatherLODBiasAMD_ = {} ) VULKAN_HPP_NOEXCEPT - : supportsTextureGatherLODBiasAMD( supportsTextureGatherLODBiasAMD_ ) - {} - - VULKAN_HPP_CONSTEXPR TextureLODGatherFormatPropertiesAMD( TextureLODGatherFormatPropertiesAMD const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - TextureLODGatherFormatPropertiesAMD( VkTextureLODGatherFormatPropertiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - : TextureLODGatherFormatPropertiesAMD( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - TextureLODGatherFormatPropertiesAMD & - operator=( TextureLODGatherFormatPropertiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TextureLODGatherFormatPropertiesAMD & - operator=( VkTextureLODGatherFormatPropertiesAMD const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkTextureLODGatherFormatPropertiesAMD const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkTextureLODGatherFormatPropertiesAMD &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, supportsTextureGatherLODBiasAMD ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( TextureLODGatherFormatPropertiesAMD const & ) const = default; -#else - bool operator==( TextureLODGatherFormatPropertiesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( supportsTextureGatherLODBiasAMD == rhs.supportsTextureGatherLODBiasAMD ); -# endif - } - - bool operator!=( TextureLODGatherFormatPropertiesAMD const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eTextureLodGatherFormatPropertiesAMD; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Bool32 supportsTextureGatherLODBiasAMD = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::TextureLODGatherFormatPropertiesAMD ) == - sizeof( VkTextureLODGatherFormatPropertiesAMD ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "TextureLODGatherFormatPropertiesAMD is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = TextureLODGatherFormatPropertiesAMD; - }; - - struct TimelineSemaphoreSubmitInfo - { - using NativeType = VkTimelineSemaphoreSubmitInfo; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eTimelineSemaphoreSubmitInfo; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - TimelineSemaphoreSubmitInfo( uint32_t waitSemaphoreValueCount_ = {}, - const uint64_t * pWaitSemaphoreValues_ = {}, - uint32_t signalSemaphoreValueCount_ = {}, - const uint64_t * pSignalSemaphoreValues_ = {} ) VULKAN_HPP_NOEXCEPT - : waitSemaphoreValueCount( waitSemaphoreValueCount_ ) - , pWaitSemaphoreValues( pWaitSemaphoreValues_ ) - , signalSemaphoreValueCount( signalSemaphoreValueCount_ ) - , pSignalSemaphoreValues( pSignalSemaphoreValues_ ) - {} - - VULKAN_HPP_CONSTEXPR - TimelineSemaphoreSubmitInfo( TimelineSemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TimelineSemaphoreSubmitInfo( VkTimelineSemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - : TimelineSemaphoreSubmitInfo( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - TimelineSemaphoreSubmitInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphoreValues_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphoreValues_ = {} ) - : waitSemaphoreValueCount( static_cast( waitSemaphoreValues_.size() ) ) - , pWaitSemaphoreValues( waitSemaphoreValues_.data() ) - , signalSemaphoreValueCount( static_cast( signalSemaphoreValues_.size() ) ) - , pSignalSemaphoreValues( signalSemaphoreValues_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - TimelineSemaphoreSubmitInfo & operator=( TimelineSemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TimelineSemaphoreSubmitInfo & operator=( VkTimelineSemaphoreSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 TimelineSemaphoreSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 TimelineSemaphoreSubmitInfo & - setWaitSemaphoreValueCount( uint32_t waitSemaphoreValueCount_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreValueCount = waitSemaphoreValueCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 TimelineSemaphoreSubmitInfo & - setPWaitSemaphoreValues( const uint64_t * pWaitSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - pWaitSemaphoreValues = pWaitSemaphoreValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - TimelineSemaphoreSubmitInfo & setWaitSemaphoreValues( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & waitSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - waitSemaphoreValueCount = static_cast( waitSemaphoreValues_.size() ); - pWaitSemaphoreValues = waitSemaphoreValues_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 TimelineSemaphoreSubmitInfo & - setSignalSemaphoreValueCount( uint32_t signalSemaphoreValueCount_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreValueCount = signalSemaphoreValueCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 TimelineSemaphoreSubmitInfo & - setPSignalSemaphoreValues( const uint64_t * pSignalSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - pSignalSemaphoreValues = pSignalSemaphoreValues_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - TimelineSemaphoreSubmitInfo & setSignalSemaphoreValues( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & signalSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT - { - signalSemaphoreValueCount = static_cast( signalSemaphoreValues_.size() ); - pSignalSemaphoreValues = signalSemaphoreValues_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkTimelineSemaphoreSubmitInfo const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkTimelineSemaphoreSubmitInfo &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - waitSemaphoreValueCount, - pWaitSemaphoreValues, - signalSemaphoreValueCount, - pSignalSemaphoreValues ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( TimelineSemaphoreSubmitInfo const & ) const = default; -#else - bool operator==( TimelineSemaphoreSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( waitSemaphoreValueCount == rhs.waitSemaphoreValueCount ) && - ( pWaitSemaphoreValues == rhs.pWaitSemaphoreValues ) && - ( signalSemaphoreValueCount == rhs.signalSemaphoreValueCount ) && - ( pSignalSemaphoreValues == rhs.pSignalSemaphoreValues ); -# endif - } - - bool operator!=( TimelineSemaphoreSubmitInfo const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eTimelineSemaphoreSubmitInfo; - const void * pNext = {}; - uint32_t waitSemaphoreValueCount = {}; - const uint64_t * pWaitSemaphoreValues = {}; - uint32_t signalSemaphoreValueCount = {}; - const uint64_t * pSignalSemaphoreValues = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::TimelineSemaphoreSubmitInfo ) == - sizeof( VkTimelineSemaphoreSubmitInfo ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "TimelineSemaphoreSubmitInfo is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = TimelineSemaphoreSubmitInfo; - }; - using TimelineSemaphoreSubmitInfoKHR = TimelineSemaphoreSubmitInfo; - - struct TraceRaysIndirectCommandKHR - { - using NativeType = VkTraceRaysIndirectCommandKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR TraceRaysIndirectCommandKHR( uint32_t width_ = {}, - uint32_t height_ = {}, - uint32_t depth_ = {} ) VULKAN_HPP_NOEXCEPT - : width( width_ ) - , height( height_ ) - , depth( depth_ ) - {} - - VULKAN_HPP_CONSTEXPR - TraceRaysIndirectCommandKHR( TraceRaysIndirectCommandKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TraceRaysIndirectCommandKHR( VkTraceRaysIndirectCommandKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : TraceRaysIndirectCommandKHR( *reinterpret_cast( &rhs ) ) - {} - - explicit TraceRaysIndirectCommandKHR( Extent2D const & extent2D, uint32_t depth_ = {} ) - : width( extent2D.width ), height( extent2D.height ), depth( depth_ ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - TraceRaysIndirectCommandKHR & operator=( TraceRaysIndirectCommandKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - TraceRaysIndirectCommandKHR & operator=( VkTraceRaysIndirectCommandKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 TraceRaysIndirectCommandKHR & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT - { - width = width_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 TraceRaysIndirectCommandKHR & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT - { - height = height_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 TraceRaysIndirectCommandKHR & setDepth( uint32_t depth_ ) VULKAN_HPP_NOEXCEPT - { - depth = depth_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkTraceRaysIndirectCommandKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkTraceRaysIndirectCommandKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( width, height, depth ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( TraceRaysIndirectCommandKHR const & ) const = default; -#else - bool operator==( TraceRaysIndirectCommandKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( width == rhs.width ) && ( height == rhs.height ) && ( depth == rhs.depth ); -# endif - } - - bool operator!=( TraceRaysIndirectCommandKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - uint32_t width = {}; - uint32_t height = {}; - uint32_t depth = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::TraceRaysIndirectCommandKHR ) == - sizeof( VkTraceRaysIndirectCommandKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "TraceRaysIndirectCommandKHR is not nothrow_move_constructible!" ); - - struct ValidationCacheCreateInfoEXT - { - using NativeType = VkValidationCacheCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eValidationCacheCreateInfoEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ValidationCacheCreateInfoEXT( VULKAN_HPP_NAMESPACE::ValidationCacheCreateFlagsEXT flags_ = {}, - size_t initialDataSize_ = {}, - const void * pInitialData_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , initialDataSize( initialDataSize_ ) - , pInitialData( pInitialData_ ) - {} - - VULKAN_HPP_CONSTEXPR - ValidationCacheCreateInfoEXT( ValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ValidationCacheCreateInfoEXT( VkValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ValidationCacheCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - ValidationCacheCreateInfoEXT( VULKAN_HPP_NAMESPACE::ValidationCacheCreateFlagsEXT flags_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & initialData_ ) - : flags( flags_ ), initialDataSize( initialData_.size() * sizeof( T ) ), pInitialData( initialData_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ValidationCacheCreateInfoEXT & operator=( ValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ValidationCacheCreateInfoEXT & operator=( VkValidationCacheCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ValidationCacheCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationCacheCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::ValidationCacheCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationCacheCreateInfoEXT & - setInitialDataSize( size_t initialDataSize_ ) VULKAN_HPP_NOEXCEPT - { - initialDataSize = initialDataSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationCacheCreateInfoEXT & - setPInitialData( const void * pInitialData_ ) VULKAN_HPP_NOEXCEPT - { - pInitialData = pInitialData_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - ValidationCacheCreateInfoEXT & - setInitialData( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & initialData_ ) VULKAN_HPP_NOEXCEPT - { - initialDataSize = initialData_.size() * sizeof( T ); - pInitialData = initialData_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkValidationCacheCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkValidationCacheCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, initialDataSize, pInitialData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ValidationCacheCreateInfoEXT const & ) const = default; -#else - bool operator==( ValidationCacheCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( initialDataSize == rhs.initialDataSize ) && ( pInitialData == rhs.pInitialData ); -# endif - } - - bool operator!=( ValidationCacheCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eValidationCacheCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ValidationCacheCreateFlagsEXT flags = {}; - size_t initialDataSize = {}; - const void * pInitialData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ValidationCacheCreateInfoEXT ) == - sizeof( VkValidationCacheCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "ValidationCacheCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ValidationCacheCreateInfoEXT; - }; - - struct ValidationFeaturesEXT - { - using NativeType = VkValidationFeaturesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eValidationFeaturesEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ValidationFeaturesEXT( - uint32_t enabledValidationFeatureCount_ = {}, - const VULKAN_HPP_NAMESPACE::ValidationFeatureEnableEXT * pEnabledValidationFeatures_ = {}, - uint32_t disabledValidationFeatureCount_ = {}, - const VULKAN_HPP_NAMESPACE::ValidationFeatureDisableEXT * pDisabledValidationFeatures_ = {} ) VULKAN_HPP_NOEXCEPT - : enabledValidationFeatureCount( enabledValidationFeatureCount_ ) - , pEnabledValidationFeatures( pEnabledValidationFeatures_ ) - , disabledValidationFeatureCount( disabledValidationFeatureCount_ ) - , pDisabledValidationFeatures( pDisabledValidationFeatures_ ) - {} - - VULKAN_HPP_CONSTEXPR ValidationFeaturesEXT( ValidationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ValidationFeaturesEXT( VkValidationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ValidationFeaturesEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ValidationFeaturesEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - enabledValidationFeatures_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - disabledValidationFeatures_ = {} ) - : enabledValidationFeatureCount( static_cast( enabledValidationFeatures_.size() ) ) - , pEnabledValidationFeatures( enabledValidationFeatures_.data() ) - , disabledValidationFeatureCount( static_cast( disabledValidationFeatures_.size() ) ) - , pDisabledValidationFeatures( disabledValidationFeatures_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ValidationFeaturesEXT & operator=( ValidationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ValidationFeaturesEXT & operator=( VkValidationFeaturesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ValidationFeaturesEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationFeaturesEXT & - setEnabledValidationFeatureCount( uint32_t enabledValidationFeatureCount_ ) VULKAN_HPP_NOEXCEPT - { - enabledValidationFeatureCount = enabledValidationFeatureCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationFeaturesEXT & setPEnabledValidationFeatures( - const VULKAN_HPP_NAMESPACE::ValidationFeatureEnableEXT * pEnabledValidationFeatures_ ) VULKAN_HPP_NOEXCEPT - { - pEnabledValidationFeatures = pEnabledValidationFeatures_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ValidationFeaturesEXT & setEnabledValidationFeatures( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - enabledValidationFeatures_ ) VULKAN_HPP_NOEXCEPT - { - enabledValidationFeatureCount = static_cast( enabledValidationFeatures_.size() ); - pEnabledValidationFeatures = enabledValidationFeatures_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 ValidationFeaturesEXT & - setDisabledValidationFeatureCount( uint32_t disabledValidationFeatureCount_ ) VULKAN_HPP_NOEXCEPT - { - disabledValidationFeatureCount = disabledValidationFeatureCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationFeaturesEXT & setPDisabledValidationFeatures( - const VULKAN_HPP_NAMESPACE::ValidationFeatureDisableEXT * pDisabledValidationFeatures_ ) VULKAN_HPP_NOEXCEPT - { - pDisabledValidationFeatures = pDisabledValidationFeatures_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ValidationFeaturesEXT & setDisabledValidationFeatures( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - disabledValidationFeatures_ ) VULKAN_HPP_NOEXCEPT - { - disabledValidationFeatureCount = static_cast( disabledValidationFeatures_.size() ); - pDisabledValidationFeatures = disabledValidationFeatures_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkValidationFeaturesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkValidationFeaturesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - enabledValidationFeatureCount, - pEnabledValidationFeatures, - disabledValidationFeatureCount, - pDisabledValidationFeatures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ValidationFeaturesEXT const & ) const = default; -#else - bool operator==( ValidationFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( enabledValidationFeatureCount == rhs.enabledValidationFeatureCount ) && - ( pEnabledValidationFeatures == rhs.pEnabledValidationFeatures ) && - ( disabledValidationFeatureCount == rhs.disabledValidationFeatureCount ) && - ( pDisabledValidationFeatures == rhs.pDisabledValidationFeatures ); -# endif - } - - bool operator!=( ValidationFeaturesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eValidationFeaturesEXT; - const void * pNext = {}; - uint32_t enabledValidationFeatureCount = {}; - const VULKAN_HPP_NAMESPACE::ValidationFeatureEnableEXT * pEnabledValidationFeatures = {}; - uint32_t disabledValidationFeatureCount = {}; - const VULKAN_HPP_NAMESPACE::ValidationFeatureDisableEXT * pDisabledValidationFeatures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ValidationFeaturesEXT ) == sizeof( VkValidationFeaturesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ValidationFeaturesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ValidationFeaturesEXT; - }; - - struct ValidationFlagsEXT - { - using NativeType = VkValidationFlagsEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eValidationFlagsEXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ValidationFlagsEXT( - uint32_t disabledValidationCheckCount_ = {}, - const VULKAN_HPP_NAMESPACE::ValidationCheckEXT * pDisabledValidationChecks_ = {} ) VULKAN_HPP_NOEXCEPT - : disabledValidationCheckCount( disabledValidationCheckCount_ ) - , pDisabledValidationChecks( pDisabledValidationChecks_ ) - {} - - VULKAN_HPP_CONSTEXPR ValidationFlagsEXT( ValidationFlagsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ValidationFlagsEXT( VkValidationFlagsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : ValidationFlagsEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ValidationFlagsEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - disabledValidationChecks_ ) - : disabledValidationCheckCount( static_cast( disabledValidationChecks_.size() ) ) - , pDisabledValidationChecks( disabledValidationChecks_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ValidationFlagsEXT & operator=( ValidationFlagsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ValidationFlagsEXT & operator=( VkValidationFlagsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ValidationFlagsEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationFlagsEXT & - setDisabledValidationCheckCount( uint32_t disabledValidationCheckCount_ ) VULKAN_HPP_NOEXCEPT - { - disabledValidationCheckCount = disabledValidationCheckCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ValidationFlagsEXT & setPDisabledValidationChecks( - const VULKAN_HPP_NAMESPACE::ValidationCheckEXT * pDisabledValidationChecks_ ) VULKAN_HPP_NOEXCEPT - { - pDisabledValidationChecks = pDisabledValidationChecks_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - ValidationFlagsEXT & setDisabledValidationChecks( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - disabledValidationChecks_ ) VULKAN_HPP_NOEXCEPT - { - disabledValidationCheckCount = static_cast( disabledValidationChecks_.size() ); - pDisabledValidationChecks = disabledValidationChecks_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkValidationFlagsEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkValidationFlagsEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, disabledValidationCheckCount, pDisabledValidationChecks ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ValidationFlagsEXT const & ) const = default; -#else - bool operator==( ValidationFlagsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( disabledValidationCheckCount == rhs.disabledValidationCheckCount ) && - ( pDisabledValidationChecks == rhs.pDisabledValidationChecks ); -# endif - } - - bool operator!=( ValidationFlagsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eValidationFlagsEXT; - const void * pNext = {}; - uint32_t disabledValidationCheckCount = {}; - const VULKAN_HPP_NAMESPACE::ValidationCheckEXT * pDisabledValidationChecks = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ValidationFlagsEXT ) == sizeof( VkValidationFlagsEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ValidationFlagsEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ValidationFlagsEXT; - }; - - struct VertexInputAttributeDescription2EXT - { - using NativeType = VkVertexInputAttributeDescription2EXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVertexInputAttributeDescription2EXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VertexInputAttributeDescription2EXT( - uint32_t location_ = {}, - uint32_t binding_ = {}, - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - uint32_t offset_ = {} ) VULKAN_HPP_NOEXCEPT - : location( location_ ) - , binding( binding_ ) - , format( format_ ) - , offset( offset_ ) - {} - - VULKAN_HPP_CONSTEXPR VertexInputAttributeDescription2EXT( VertexInputAttributeDescription2EXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VertexInputAttributeDescription2EXT( VkVertexInputAttributeDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VertexInputAttributeDescription2EXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VertexInputAttributeDescription2EXT & - operator=( VertexInputAttributeDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputAttributeDescription2EXT & - operator=( VkVertexInputAttributeDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription2EXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription2EXT & setLocation( uint32_t location_ ) VULKAN_HPP_NOEXCEPT - { - location = location_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription2EXT & setBinding( uint32_t binding_ ) VULKAN_HPP_NOEXCEPT - { - binding = binding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription2EXT & - setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT - { - format = format_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputAttributeDescription2EXT & setOffset( uint32_t offset_ ) VULKAN_HPP_NOEXCEPT - { - offset = offset_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVertexInputAttributeDescription2EXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVertexInputAttributeDescription2EXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, location, binding, format, offset ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VertexInputAttributeDescription2EXT const & ) const = default; -#else - bool operator==( VertexInputAttributeDescription2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( location == rhs.location ) && - ( binding == rhs.binding ) && ( format == rhs.format ) && ( offset == rhs.offset ); -# endif - } - - bool operator!=( VertexInputAttributeDescription2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVertexInputAttributeDescription2EXT; - void * pNext = {}; - uint32_t location = {}; - uint32_t binding = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - uint32_t offset = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VertexInputAttributeDescription2EXT ) == - sizeof( VkVertexInputAttributeDescription2EXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VertexInputAttributeDescription2EXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VertexInputAttributeDescription2EXT; - }; - - struct VertexInputBindingDescription2EXT - { - using NativeType = VkVertexInputBindingDescription2EXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVertexInputBindingDescription2EXT; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VertexInputBindingDescription2EXT( - uint32_t binding_ = {}, - uint32_t stride_ = {}, - VULKAN_HPP_NAMESPACE::VertexInputRate inputRate_ = VULKAN_HPP_NAMESPACE::VertexInputRate::eVertex, - uint32_t divisor_ = {} ) VULKAN_HPP_NOEXCEPT - : binding( binding_ ) - , stride( stride_ ) - , inputRate( inputRate_ ) - , divisor( divisor_ ) - {} - - VULKAN_HPP_CONSTEXPR - VertexInputBindingDescription2EXT( VertexInputBindingDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputBindingDescription2EXT( VkVertexInputBindingDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VertexInputBindingDescription2EXT( *reinterpret_cast( &rhs ) ) - {} -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VertexInputBindingDescription2EXT & - operator=( VertexInputBindingDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VertexInputBindingDescription2EXT & operator=( VkVertexInputBindingDescription2EXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription2EXT & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription2EXT & setBinding( uint32_t binding_ ) VULKAN_HPP_NOEXCEPT - { - binding = binding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription2EXT & setStride( uint32_t stride_ ) VULKAN_HPP_NOEXCEPT - { - stride = stride_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription2EXT & - setInputRate( VULKAN_HPP_NAMESPACE::VertexInputRate inputRate_ ) VULKAN_HPP_NOEXCEPT - { - inputRate = inputRate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VertexInputBindingDescription2EXT & setDivisor( uint32_t divisor_ ) VULKAN_HPP_NOEXCEPT - { - divisor = divisor_; - return *this; - } -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVertexInputBindingDescription2EXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVertexInputBindingDescription2EXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, binding, stride, inputRate, divisor ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VertexInputBindingDescription2EXT const & ) const = default; -#else - bool operator==( VertexInputBindingDescription2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( binding == rhs.binding ) && - ( stride == rhs.stride ) && ( inputRate == rhs.inputRate ) && ( divisor == rhs.divisor ); -# endif - } - - bool operator!=( VertexInputBindingDescription2EXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVertexInputBindingDescription2EXT; - void * pNext = {}; - uint32_t binding = {}; - uint32_t stride = {}; - VULKAN_HPP_NAMESPACE::VertexInputRate inputRate = VULKAN_HPP_NAMESPACE::VertexInputRate::eVertex; - uint32_t divisor = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VertexInputBindingDescription2EXT ) == - sizeof( VkVertexInputBindingDescription2EXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VertexInputBindingDescription2EXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VertexInputBindingDescription2EXT; - }; - -#if defined( VK_USE_PLATFORM_VI_NN ) - struct ViSurfaceCreateInfoNN - { - using NativeType = VkViSurfaceCreateInfoNN; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eViSurfaceCreateInfoNN; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR ViSurfaceCreateInfoNN( VULKAN_HPP_NAMESPACE::ViSurfaceCreateFlagsNN flags_ = {}, - void * window_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , window( window_ ) - {} - - VULKAN_HPP_CONSTEXPR ViSurfaceCreateInfoNN( ViSurfaceCreateInfoNN const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ViSurfaceCreateInfoNN( VkViSurfaceCreateInfoNN const & rhs ) VULKAN_HPP_NOEXCEPT - : ViSurfaceCreateInfoNN( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - ViSurfaceCreateInfoNN & operator=( ViSurfaceCreateInfoNN const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - ViSurfaceCreateInfoNN & operator=( VkViSurfaceCreateInfoNN const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 ViSurfaceCreateInfoNN & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ViSurfaceCreateInfoNN & - setFlags( VULKAN_HPP_NAMESPACE::ViSurfaceCreateFlagsNN flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 ViSurfaceCreateInfoNN & setWindow( void * window_ ) VULKAN_HPP_NOEXCEPT - { - window = window_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkViSurfaceCreateInfoNN const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkViSurfaceCreateInfoNN &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, window ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( ViSurfaceCreateInfoNN const & ) const = default; -# else - bool operator==( ViSurfaceCreateInfoNN const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( window == rhs.window ); -# endif - } - - bool operator!=( ViSurfaceCreateInfoNN const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eViSurfaceCreateInfoNN; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::ViSurfaceCreateFlagsNN flags = {}; - void * window = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN ) == sizeof( VkViSurfaceCreateInfoNN ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "ViSurfaceCreateInfoNN is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = ViSurfaceCreateInfoNN; - }; -#endif /*VK_USE_PLATFORM_VI_NN*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoPictureResourceKHR - { - using NativeType = VkVideoPictureResourceKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoPictureResourceKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoPictureResourceKHR( VULKAN_HPP_NAMESPACE::Offset2D codedOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D codedExtent_ = {}, - uint32_t baseArrayLayer_ = {}, - VULKAN_HPP_NAMESPACE::ImageView imageViewBinding_ = {} ) VULKAN_HPP_NOEXCEPT - : codedOffset( codedOffset_ ) - , codedExtent( codedExtent_ ) - , baseArrayLayer( baseArrayLayer_ ) - , imageViewBinding( imageViewBinding_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoPictureResourceKHR( VideoPictureResourceKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoPictureResourceKHR( VkVideoPictureResourceKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoPictureResourceKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoPictureResourceKHR & operator=( VideoPictureResourceKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoPictureResourceKHR & operator=( VkVideoPictureResourceKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoPictureResourceKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoPictureResourceKHR & - setCodedOffset( VULKAN_HPP_NAMESPACE::Offset2D const & codedOffset_ ) VULKAN_HPP_NOEXCEPT - { - codedOffset = codedOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoPictureResourceKHR & - setCodedExtent( VULKAN_HPP_NAMESPACE::Extent2D const & codedExtent_ ) VULKAN_HPP_NOEXCEPT - { - codedExtent = codedExtent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoPictureResourceKHR & setBaseArrayLayer( uint32_t baseArrayLayer_ ) VULKAN_HPP_NOEXCEPT - { - baseArrayLayer = baseArrayLayer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoPictureResourceKHR & - setImageViewBinding( VULKAN_HPP_NAMESPACE::ImageView imageViewBinding_ ) VULKAN_HPP_NOEXCEPT - { - imageViewBinding = imageViewBinding_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoPictureResourceKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoPictureResourceKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, codedOffset, codedExtent, baseArrayLayer, imageViewBinding ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoPictureResourceKHR const & ) const = default; -# else - bool operator==( VideoPictureResourceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( codedOffset == rhs.codedOffset ) && - ( codedExtent == rhs.codedExtent ) && ( baseArrayLayer == rhs.baseArrayLayer ) && - ( imageViewBinding == rhs.imageViewBinding ); -# endif - } - - bool operator!=( VideoPictureResourceKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoPictureResourceKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Offset2D codedOffset = {}; - VULKAN_HPP_NAMESPACE::Extent2D codedExtent = {}; - uint32_t baseArrayLayer = {}; - VULKAN_HPP_NAMESPACE::ImageView imageViewBinding = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR ) == - sizeof( VkVideoPictureResourceKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoPictureResourceKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoPictureResourceKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoReferenceSlotKHR - { - using NativeType = VkVideoReferenceSlotKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoReferenceSlotKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoReferenceSlotKHR( - int8_t slotIndex_ = {}, - const VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR * pPictureResource_ = {} ) VULKAN_HPP_NOEXCEPT - : slotIndex( slotIndex_ ) - , pPictureResource( pPictureResource_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoReferenceSlotKHR( VideoReferenceSlotKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoReferenceSlotKHR( VkVideoReferenceSlotKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoReferenceSlotKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoReferenceSlotKHR & operator=( VideoReferenceSlotKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoReferenceSlotKHR & operator=( VkVideoReferenceSlotKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoReferenceSlotKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoReferenceSlotKHR & setSlotIndex( int8_t slotIndex_ ) VULKAN_HPP_NOEXCEPT - { - slotIndex = slotIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoReferenceSlotKHR & - setPPictureResource( const VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR * pPictureResource_ ) VULKAN_HPP_NOEXCEPT - { - pPictureResource = pPictureResource_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoReferenceSlotKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoReferenceSlotKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, slotIndex, pPictureResource ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoReferenceSlotKHR const & ) const = default; -# else - bool operator==( VideoReferenceSlotKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( slotIndex == rhs.slotIndex ) && - ( pPictureResource == rhs.pPictureResource ); -# endif - } - - bool operator!=( VideoReferenceSlotKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoReferenceSlotKHR; - const void * pNext = {}; - int8_t slotIndex = {}; - const VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR * pPictureResource = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR ) == sizeof( VkVideoReferenceSlotKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoReferenceSlotKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoReferenceSlotKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoBeginCodingInfoKHR - { - using NativeType = VkVideoBeginCodingInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoBeginCodingInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoBeginCodingInfoKHR( - VULKAN_HPP_NAMESPACE::VideoBeginCodingFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::VideoCodingQualityPresetFlagsKHR codecQualityPreset_ = {}, - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession_ = {}, - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters_ = {}, - uint32_t referenceSlotCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , codecQualityPreset( codecQualityPreset_ ) - , videoSession( videoSession_ ) - , videoSessionParameters( videoSessionParameters_ ) - , referenceSlotCount( referenceSlotCount_ ) - , pReferenceSlots( pReferenceSlots_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoBeginCodingInfoKHR( VideoBeginCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoBeginCodingInfoKHR( VkVideoBeginCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoBeginCodingInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoBeginCodingInfoKHR( - VULKAN_HPP_NAMESPACE::VideoBeginCodingFlagsKHR flags_, - VULKAN_HPP_NAMESPACE::VideoCodingQualityPresetFlagsKHR codecQualityPreset_, - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession_, - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceSlots_ ) - : flags( flags_ ) - , codecQualityPreset( codecQualityPreset_ ) - , videoSession( videoSession_ ) - , videoSessionParameters( videoSessionParameters_ ) - , referenceSlotCount( static_cast( referenceSlots_.size() ) ) - , pReferenceSlots( referenceSlots_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoBeginCodingInfoKHR & operator=( VideoBeginCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoBeginCodingInfoKHR & operator=( VkVideoBeginCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoBeginCodingFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & setCodecQualityPreset( - VULKAN_HPP_NAMESPACE::VideoCodingQualityPresetFlagsKHR codecQualityPreset_ ) VULKAN_HPP_NOEXCEPT - { - codecQualityPreset = codecQualityPreset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & - setVideoSession( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession_ ) VULKAN_HPP_NOEXCEPT - { - videoSession = videoSession_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & setVideoSessionParameters( - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters_ ) VULKAN_HPP_NOEXCEPT - { - videoSessionParameters = videoSessionParameters_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & - setReferenceSlotCount( uint32_t referenceSlotCount_ ) VULKAN_HPP_NOEXCEPT - { - referenceSlotCount = referenceSlotCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBeginCodingInfoKHR & - setPReferenceSlots( const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceSlots = pReferenceSlots_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoBeginCodingInfoKHR & setReferenceSlots( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceSlots_ ) VULKAN_HPP_NOEXCEPT - { - referenceSlotCount = static_cast( referenceSlots_.size() ); - pReferenceSlots = referenceSlots_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoBeginCodingInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoBeginCodingInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - codecQualityPreset, - videoSession, - videoSessionParameters, - referenceSlotCount, - pReferenceSlots ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoBeginCodingInfoKHR const & ) const = default; -# else - bool operator==( VideoBeginCodingInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( codecQualityPreset == rhs.codecQualityPreset ) && ( videoSession == rhs.videoSession ) && - ( videoSessionParameters == rhs.videoSessionParameters ) && - ( referenceSlotCount == rhs.referenceSlotCount ) && ( pReferenceSlots == rhs.pReferenceSlots ); -# endif - } - - bool operator!=( VideoBeginCodingInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoBeginCodingInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoBeginCodingFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::VideoCodingQualityPresetFlagsKHR codecQualityPreset = {}; - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession = {}; - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParameters = {}; - uint32_t referenceSlotCount = {}; - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoBeginCodingInfoKHR ) == - sizeof( VkVideoBeginCodingInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoBeginCodingInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoBeginCodingInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoBindMemoryKHR - { - using NativeType = VkVideoBindMemoryKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoBindMemoryKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoBindMemoryKHR( uint32_t memoryBindIndex_ = {}, - VULKAN_HPP_NAMESPACE::DeviceMemory memory_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize memorySize_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryBindIndex( memoryBindIndex_ ) - , memory( memory_ ) - , memoryOffset( memoryOffset_ ) - , memorySize( memorySize_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoBindMemoryKHR( VideoBindMemoryKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoBindMemoryKHR( VkVideoBindMemoryKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoBindMemoryKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoBindMemoryKHR & operator=( VideoBindMemoryKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoBindMemoryKHR & operator=( VkVideoBindMemoryKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoBindMemoryKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBindMemoryKHR & setMemoryBindIndex( uint32_t memoryBindIndex_ ) VULKAN_HPP_NOEXCEPT - { - memoryBindIndex = memoryBindIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBindMemoryKHR & - setMemory( VULKAN_HPP_NAMESPACE::DeviceMemory memory_ ) VULKAN_HPP_NOEXCEPT - { - memory = memory_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBindMemoryKHR & - setMemoryOffset( VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset_ ) VULKAN_HPP_NOEXCEPT - { - memoryOffset = memoryOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoBindMemoryKHR & - setMemorySize( VULKAN_HPP_NAMESPACE::DeviceSize memorySize_ ) VULKAN_HPP_NOEXCEPT - { - memorySize = memorySize_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoBindMemoryKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoBindMemoryKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryBindIndex, memory, memoryOffset, memorySize ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoBindMemoryKHR const & ) const = default; -# else - bool operator==( VideoBindMemoryKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryBindIndex == rhs.memoryBindIndex ) && - ( memory == rhs.memory ) && ( memoryOffset == rhs.memoryOffset ) && ( memorySize == rhs.memorySize ); -# endif - } - - bool operator!=( VideoBindMemoryKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoBindMemoryKHR; - const void * pNext = {}; - uint32_t memoryBindIndex = {}; - VULKAN_HPP_NAMESPACE::DeviceMemory memory = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memoryOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize memorySize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoBindMemoryKHR ) == sizeof( VkVideoBindMemoryKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoBindMemoryKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoBindMemoryKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoCapabilitiesKHR - { - using NativeType = VkVideoCapabilitiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoCapabilitiesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoCapabilitiesKHR( VULKAN_HPP_NAMESPACE::VideoCapabilityFlagsKHR capabilityFlags_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize minBitstreamBufferOffsetAlignment_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize minBitstreamBufferSizeAlignment_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D videoPictureExtentGranularity_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D minExtent_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxExtent_ = {}, - uint32_t maxReferencePicturesSlotsCount_ = {}, - uint32_t maxReferencePicturesActiveCount_ = {} ) VULKAN_HPP_NOEXCEPT - : capabilityFlags( capabilityFlags_ ) - , minBitstreamBufferOffsetAlignment( minBitstreamBufferOffsetAlignment_ ) - , minBitstreamBufferSizeAlignment( minBitstreamBufferSizeAlignment_ ) - , videoPictureExtentGranularity( videoPictureExtentGranularity_ ) - , minExtent( minExtent_ ) - , maxExtent( maxExtent_ ) - , maxReferencePicturesSlotsCount( maxReferencePicturesSlotsCount_ ) - , maxReferencePicturesActiveCount( maxReferencePicturesActiveCount_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoCapabilitiesKHR( VideoCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoCapabilitiesKHR( VkVideoCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoCapabilitiesKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoCapabilitiesKHR & operator=( VideoCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoCapabilitiesKHR & operator=( VkVideoCapabilitiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkVideoCapabilitiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoCapabilitiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - capabilityFlags, - minBitstreamBufferOffsetAlignment, - minBitstreamBufferSizeAlignment, - videoPictureExtentGranularity, - minExtent, - maxExtent, - maxReferencePicturesSlotsCount, - maxReferencePicturesActiveCount ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoCapabilitiesKHR const & ) const = default; -# else - bool operator==( VideoCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( capabilityFlags == rhs.capabilityFlags ) && - ( minBitstreamBufferOffsetAlignment == rhs.minBitstreamBufferOffsetAlignment ) && - ( minBitstreamBufferSizeAlignment == rhs.minBitstreamBufferSizeAlignment ) && - ( videoPictureExtentGranularity == rhs.videoPictureExtentGranularity ) && ( minExtent == rhs.minExtent ) && - ( maxExtent == rhs.maxExtent ) && - ( maxReferencePicturesSlotsCount == rhs.maxReferencePicturesSlotsCount ) && - ( maxReferencePicturesActiveCount == rhs.maxReferencePicturesActiveCount ); -# endif - } - - bool operator!=( VideoCapabilitiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoCapabilitiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoCapabilityFlagsKHR capabilityFlags = {}; - VULKAN_HPP_NAMESPACE::DeviceSize minBitstreamBufferOffsetAlignment = {}; - VULKAN_HPP_NAMESPACE::DeviceSize minBitstreamBufferSizeAlignment = {}; - VULKAN_HPP_NAMESPACE::Extent2D videoPictureExtentGranularity = {}; - VULKAN_HPP_NAMESPACE::Extent2D minExtent = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxExtent = {}; - uint32_t maxReferencePicturesSlotsCount = {}; - uint32_t maxReferencePicturesActiveCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoCapabilitiesKHR ) == sizeof( VkVideoCapabilitiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoCapabilitiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoCapabilitiesKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoCodingControlInfoKHR - { - using NativeType = VkVideoCodingControlInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoCodingControlInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoCodingControlInfoKHR( VULKAN_HPP_NAMESPACE::VideoCodingControlFlagsKHR flags_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoCodingControlInfoKHR( VideoCodingControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoCodingControlInfoKHR( VkVideoCodingControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoCodingControlInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoCodingControlInfoKHR & operator=( VideoCodingControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoCodingControlInfoKHR & operator=( VkVideoCodingControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoCodingControlInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoCodingControlInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoCodingControlFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoCodingControlInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoCodingControlInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoCodingControlInfoKHR const & ) const = default; -# else - bool operator==( VideoCodingControlInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( VideoCodingControlInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoCodingControlInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoCodingControlFlagsKHR flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoCodingControlInfoKHR ) == - sizeof( VkVideoCodingControlInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoCodingControlInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoCodingControlInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264CapabilitiesEXT - { - using NativeType = VkVideoDecodeH264CapabilitiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH264CapabilitiesEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264CapabilitiesEXT( - uint32_t maxLevel_ = {}, - VULKAN_HPP_NAMESPACE::Offset2D fieldOffsetGranularity_ = {}, - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : maxLevel( maxLevel_ ) - , fieldOffsetGranularity( fieldOffsetGranularity_ ) - , stdExtensionVersion( stdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - VideoDecodeH264CapabilitiesEXT( VideoDecodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264CapabilitiesEXT( VkVideoDecodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH264CapabilitiesEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264CapabilitiesEXT & - operator=( VideoDecodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264CapabilitiesEXT & operator=( VkVideoDecodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkVideoDecodeH264CapabilitiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264CapabilitiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxLevel, fieldOffsetGranularity, stdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264CapabilitiesEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxLevel == rhs.maxLevel ) && - ( fieldOffsetGranularity == rhs.fieldOffsetGranularity ) && - ( stdExtensionVersion == rhs.stdExtensionVersion ); -# endif - } - - bool operator!=( VideoDecodeH264CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264CapabilitiesEXT; - void * pNext = {}; - uint32_t maxLevel = {}; - VULKAN_HPP_NAMESPACE::Offset2D fieldOffsetGranularity = {}; - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264CapabilitiesEXT ) == - sizeof( VkVideoDecodeH264CapabilitiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH264CapabilitiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264CapabilitiesEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264DpbSlotInfoEXT - { - using NativeType = VkVideoDecodeH264DpbSlotInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH264DpbSlotInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH264DpbSlotInfoEXT( - const StdVideoDecodeH264ReferenceInfo * pStdReferenceInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : pStdReferenceInfo( pStdReferenceInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoDecodeH264DpbSlotInfoEXT( VideoDecodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264DpbSlotInfoEXT( VkVideoDecodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH264DpbSlotInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264DpbSlotInfoEXT & - operator=( VideoDecodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264DpbSlotInfoEXT & operator=( VkVideoDecodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264DpbSlotInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264DpbSlotInfoEXT & - setPStdReferenceInfo( const StdVideoDecodeH264ReferenceInfo * pStdReferenceInfo_ ) VULKAN_HPP_NOEXCEPT - { - pStdReferenceInfo = pStdReferenceInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264DpbSlotInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264DpbSlotInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pStdReferenceInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264DpbSlotInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pStdReferenceInfo == rhs.pStdReferenceInfo ); -# endif - } - - bool operator!=( VideoDecodeH264DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264DpbSlotInfoEXT; - const void * pNext = {}; - const StdVideoDecodeH264ReferenceInfo * pStdReferenceInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264DpbSlotInfoEXT ) == - sizeof( VkVideoDecodeH264DpbSlotInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH264DpbSlotInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264DpbSlotInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264MvcEXT - { - using NativeType = VkVideoDecodeH264MvcEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH264MvcEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH264MvcEXT( const StdVideoDecodeH264Mvc * pStdMvc_ = {} ) VULKAN_HPP_NOEXCEPT - : pStdMvc( pStdMvc_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoDecodeH264MvcEXT( VideoDecodeH264MvcEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264MvcEXT( VkVideoDecodeH264MvcEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH264MvcEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264MvcEXT & operator=( VideoDecodeH264MvcEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264MvcEXT & operator=( VkVideoDecodeH264MvcEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264MvcEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264MvcEXT & - setPStdMvc( const StdVideoDecodeH264Mvc * pStdMvc_ ) VULKAN_HPP_NOEXCEPT - { - pStdMvc = pStdMvc_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264MvcEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264MvcEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pStdMvc ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264MvcEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264MvcEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pStdMvc == rhs.pStdMvc ); -# endif - } - - bool operator!=( VideoDecodeH264MvcEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264MvcEXT; - const void * pNext = {}; - const StdVideoDecodeH264Mvc * pStdMvc = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264MvcEXT ) == sizeof( VkVideoDecodeH264MvcEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoDecodeH264MvcEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264MvcEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264PictureInfoEXT - { - using NativeType = VkVideoDecodeH264PictureInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH264PictureInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH264PictureInfoEXT( const StdVideoDecodeH264PictureInfo * pStdPictureInfo_ = {}, - uint32_t slicesCount_ = {}, - const uint32_t * pSlicesDataOffsets_ = {} ) VULKAN_HPP_NOEXCEPT - : pStdPictureInfo( pStdPictureInfo_ ) - , slicesCount( slicesCount_ ) - , pSlicesDataOffsets( pSlicesDataOffsets_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoDecodeH264PictureInfoEXT( VideoDecodeH264PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264PictureInfoEXT( VkVideoDecodeH264PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH264PictureInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH264PictureInfoEXT( - const StdVideoDecodeH264PictureInfo * pStdPictureInfo_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & slicesDataOffsets_ ) - : pStdPictureInfo( pStdPictureInfo_ ) - , slicesCount( static_cast( slicesDataOffsets_.size() ) ) - , pSlicesDataOffsets( slicesDataOffsets_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264PictureInfoEXT & - operator=( VideoDecodeH264PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264PictureInfoEXT & operator=( VkVideoDecodeH264PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264PictureInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264PictureInfoEXT & - setPStdPictureInfo( const StdVideoDecodeH264PictureInfo * pStdPictureInfo_ ) VULKAN_HPP_NOEXCEPT - { - pStdPictureInfo = pStdPictureInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264PictureInfoEXT & setSlicesCount( uint32_t slicesCount_ ) VULKAN_HPP_NOEXCEPT - { - slicesCount = slicesCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264PictureInfoEXT & - setPSlicesDataOffsets( const uint32_t * pSlicesDataOffsets_ ) VULKAN_HPP_NOEXCEPT - { - pSlicesDataOffsets = pSlicesDataOffsets_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH264PictureInfoEXT & setSlicesDataOffsets( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & slicesDataOffsets_ ) VULKAN_HPP_NOEXCEPT - { - slicesCount = static_cast( slicesDataOffsets_.size() ); - pSlicesDataOffsets = slicesDataOffsets_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264PictureInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264PictureInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pStdPictureInfo, slicesCount, pSlicesDataOffsets ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264PictureInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264PictureInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pStdPictureInfo == rhs.pStdPictureInfo ) && - ( slicesCount == rhs.slicesCount ) && ( pSlicesDataOffsets == rhs.pSlicesDataOffsets ); -# endif - } - - bool operator!=( VideoDecodeH264PictureInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264PictureInfoEXT; - const void * pNext = {}; - const StdVideoDecodeH264PictureInfo * pStdPictureInfo = {}; - uint32_t slicesCount = {}; - const uint32_t * pSlicesDataOffsets = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264PictureInfoEXT ) == - sizeof( VkVideoDecodeH264PictureInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH264PictureInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264PictureInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264ProfileEXT - { - using NativeType = VkVideoDecodeH264ProfileEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH264ProfileEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH264ProfileEXT( - StdVideoH264ProfileIdc stdProfileIdc_ = {}, - VULKAN_HPP_NAMESPACE::VideoDecodeH264PictureLayoutFlagsEXT pictureLayout_ = {} ) VULKAN_HPP_NOEXCEPT - : stdProfileIdc( stdProfileIdc_ ) - , pictureLayout( pictureLayout_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoDecodeH264ProfileEXT( VideoDecodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264ProfileEXT( VkVideoDecodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH264ProfileEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264ProfileEXT & operator=( VideoDecodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264ProfileEXT & operator=( VkVideoDecodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264ProfileEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264ProfileEXT & - setStdProfileIdc( StdVideoH264ProfileIdc stdProfileIdc_ ) VULKAN_HPP_NOEXCEPT - { - stdProfileIdc = stdProfileIdc_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264ProfileEXT & - setPictureLayout( VULKAN_HPP_NAMESPACE::VideoDecodeH264PictureLayoutFlagsEXT pictureLayout_ ) VULKAN_HPP_NOEXCEPT - { - pictureLayout = pictureLayout_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264ProfileEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264ProfileEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stdProfileIdc, pictureLayout ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( VideoDecodeH264ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH264ProfileIdc ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - if ( auto cmp = pictureLayout <=> rhs.pictureLayout; cmp != 0 ) - return cmp; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( VideoDecodeH264ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH264ProfileIdc ) ) == 0 ) && - ( pictureLayout == rhs.pictureLayout ); - } - - bool operator!=( VideoDecodeH264ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264ProfileEXT; - const void * pNext = {}; - StdVideoH264ProfileIdc stdProfileIdc = {}; - VULKAN_HPP_NAMESPACE::VideoDecodeH264PictureLayoutFlagsEXT pictureLayout = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264ProfileEXT ) == - sizeof( VkVideoDecodeH264ProfileEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoDecodeH264ProfileEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264ProfileEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264SessionCreateInfoEXT - { - using NativeType = VkVideoDecodeH264SessionCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoDecodeH264SessionCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionCreateInfoEXT( - VULKAN_HPP_NAMESPACE::VideoDecodeH264CreateFlagsEXT flags_ = {}, - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pStdExtensionVersion( pStdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionCreateInfoEXT( VideoDecodeH264SessionCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264SessionCreateInfoEXT( VkVideoDecodeH264SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH264SessionCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264SessionCreateInfoEXT & - operator=( VideoDecodeH264SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264SessionCreateInfoEXT & - operator=( VkVideoDecodeH264SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::VideoDecodeH264CreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionCreateInfoEXT & setPStdExtensionVersion( - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ ) VULKAN_HPP_NOEXCEPT - { - pStdExtensionVersion = pStdExtensionVersion_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264SessionCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264SessionCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pStdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264SessionCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pStdExtensionVersion == rhs.pStdExtensionVersion ); -# endif - } - - bool operator!=( VideoDecodeH264SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264SessionCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoDecodeH264CreateFlagsEXT flags = {}; - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionCreateInfoEXT ) == - sizeof( VkVideoDecodeH264SessionCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH264SessionCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264SessionCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264SessionParametersAddInfoEXT - { - using NativeType = VkVideoDecodeH264SessionParametersAddInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoDecodeH264SessionParametersAddInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH264SessionParametersAddInfoEXT( - uint32_t spsStdCount_ = {}, - const StdVideoH264SequenceParameterSet * pSpsStd_ = {}, - uint32_t ppsStdCount_ = {}, - const StdVideoH264PictureParameterSet * pPpsStd_ = {} ) VULKAN_HPP_NOEXCEPT - : spsStdCount( spsStdCount_ ) - , pSpsStd( pSpsStd_ ) - , ppsStdCount( ppsStdCount_ ) - , pPpsStd( pPpsStd_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoDecodeH264SessionParametersAddInfoEXT( - VideoDecodeH264SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264SessionParametersAddInfoEXT( VkVideoDecodeH264SessionParametersAddInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoDecodeH264SessionParametersAddInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH264SessionParametersAddInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ = {} ) - : spsStdCount( static_cast( spsStd_.size() ) ) - , pSpsStd( spsStd_.data() ) - , ppsStdCount( static_cast( ppsStd_.size() ) ) - , pPpsStd( ppsStd_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264SessionParametersAddInfoEXT & - operator=( VideoDecodeH264SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264SessionParametersAddInfoEXT & - operator=( VkVideoDecodeH264SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersAddInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersAddInfoEXT & - setSpsStdCount( uint32_t spsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - spsStdCount = spsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersAddInfoEXT & - setPSpsStd( const StdVideoH264SequenceParameterSet * pSpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pSpsStd = pSpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH264SessionParametersAddInfoEXT & - setSpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_ ) - VULKAN_HPP_NOEXCEPT - { - spsStdCount = static_cast( spsStd_.size() ); - pSpsStd = spsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersAddInfoEXT & - setPpsStdCount( uint32_t ppsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - ppsStdCount = ppsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersAddInfoEXT & - setPPpsStd( const StdVideoH264PictureParameterSet * pPpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pPpsStd = pPpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH264SessionParametersAddInfoEXT & - setPpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ ) - VULKAN_HPP_NOEXCEPT - { - ppsStdCount = static_cast( ppsStd_.size() ); - pPpsStd = ppsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264SessionParametersAddInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264SessionParametersAddInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, spsStdCount, pSpsStd, ppsStdCount, pPpsStd ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264SessionParametersAddInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( spsStdCount == rhs.spsStdCount ) && - ( pSpsStd == rhs.pSpsStd ) && ( ppsStdCount == rhs.ppsStdCount ) && ( pPpsStd == rhs.pPpsStd ); -# endif - } - - bool operator!=( VideoDecodeH264SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264SessionParametersAddInfoEXT; - const void * pNext = {}; - uint32_t spsStdCount = {}; - const StdVideoH264SequenceParameterSet * pSpsStd = {}; - uint32_t ppsStdCount = {}; - const StdVideoH264PictureParameterSet * pPpsStd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersAddInfoEXT ) == - sizeof( VkVideoDecodeH264SessionParametersAddInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH264SessionParametersAddInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264SessionParametersAddInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH264SessionParametersCreateInfoEXT - { - using NativeType = VkVideoDecodeH264SessionParametersCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoDecodeH264SessionParametersCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH264SessionParametersCreateInfoEXT( - uint32_t maxSpsStdCount_ = {}, - uint32_t maxPpsStdCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersAddInfoEXT * pParametersAddInfo_ = {} ) - VULKAN_HPP_NOEXCEPT - : maxSpsStdCount( maxSpsStdCount_ ) - , maxPpsStdCount( maxPpsStdCount_ ) - , pParametersAddInfo( pParametersAddInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoDecodeH264SessionParametersCreateInfoEXT( - VideoDecodeH264SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264SessionParametersCreateInfoEXT( VkVideoDecodeH264SessionParametersCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoDecodeH264SessionParametersCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH264SessionParametersCreateInfoEXT & - operator=( VideoDecodeH264SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH264SessionParametersCreateInfoEXT & - operator=( VkVideoDecodeH264SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersCreateInfoEXT & - setMaxSpsStdCount( uint32_t maxSpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxSpsStdCount = maxSpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersCreateInfoEXT & - setMaxPpsStdCount( uint32_t maxPpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxPpsStdCount = maxPpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH264SessionParametersCreateInfoEXT & setPParametersAddInfo( - const VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersAddInfoEXT * pParametersAddInfo_ ) VULKAN_HPP_NOEXCEPT - { - pParametersAddInfo = pParametersAddInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH264SessionParametersCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH264SessionParametersCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxSpsStdCount, maxPpsStdCount, pParametersAddInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH264SessionParametersCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH264SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxSpsStdCount == rhs.maxSpsStdCount ) && - ( maxPpsStdCount == rhs.maxPpsStdCount ) && ( pParametersAddInfo == rhs.pParametersAddInfo ); -# endif - } - - bool operator!=( VideoDecodeH264SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH264SessionParametersCreateInfoEXT; - const void * pNext = {}; - uint32_t maxSpsStdCount = {}; - uint32_t maxPpsStdCount = {}; - const VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersAddInfoEXT * pParametersAddInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH264SessionParametersCreateInfoEXT ) == - sizeof( VkVideoDecodeH264SessionParametersCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH264SessionParametersCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH264SessionParametersCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265CapabilitiesEXT - { - using NativeType = VkVideoDecodeH265CapabilitiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH265CapabilitiesEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265CapabilitiesEXT( - uint32_t maxLevel_ = {}, VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : maxLevel( maxLevel_ ) - , stdExtensionVersion( stdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - VideoDecodeH265CapabilitiesEXT( VideoDecodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265CapabilitiesEXT( VkVideoDecodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH265CapabilitiesEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265CapabilitiesEXT & - operator=( VideoDecodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265CapabilitiesEXT & operator=( VkVideoDecodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkVideoDecodeH265CapabilitiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265CapabilitiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxLevel, stdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH265CapabilitiesEXT const & ) const = default; -# else - bool operator==( VideoDecodeH265CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxLevel == rhs.maxLevel ) && - ( stdExtensionVersion == rhs.stdExtensionVersion ); -# endif - } - - bool operator!=( VideoDecodeH265CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265CapabilitiesEXT; - void * pNext = {}; - uint32_t maxLevel = {}; - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265CapabilitiesEXT ) == - sizeof( VkVideoDecodeH265CapabilitiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH265CapabilitiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265CapabilitiesEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265DpbSlotInfoEXT - { - using NativeType = VkVideoDecodeH265DpbSlotInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH265DpbSlotInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH265DpbSlotInfoEXT( - const StdVideoDecodeH265ReferenceInfo * pStdReferenceInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : pStdReferenceInfo( pStdReferenceInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoDecodeH265DpbSlotInfoEXT( VideoDecodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265DpbSlotInfoEXT( VkVideoDecodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH265DpbSlotInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265DpbSlotInfoEXT & - operator=( VideoDecodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265DpbSlotInfoEXT & operator=( VkVideoDecodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265DpbSlotInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265DpbSlotInfoEXT & - setPStdReferenceInfo( const StdVideoDecodeH265ReferenceInfo * pStdReferenceInfo_ ) VULKAN_HPP_NOEXCEPT - { - pStdReferenceInfo = pStdReferenceInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH265DpbSlotInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265DpbSlotInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pStdReferenceInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH265DpbSlotInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH265DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pStdReferenceInfo == rhs.pStdReferenceInfo ); -# endif - } - - bool operator!=( VideoDecodeH265DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265DpbSlotInfoEXT; - const void * pNext = {}; - const StdVideoDecodeH265ReferenceInfo * pStdReferenceInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265DpbSlotInfoEXT ) == - sizeof( VkVideoDecodeH265DpbSlotInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH265DpbSlotInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265DpbSlotInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265PictureInfoEXT - { - using NativeType = VkVideoDecodeH265PictureInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH265PictureInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH265PictureInfoEXT( StdVideoDecodeH265PictureInfo * pStdPictureInfo_ = {}, - uint32_t slicesCount_ = {}, - const uint32_t * pSlicesDataOffsets_ = {} ) VULKAN_HPP_NOEXCEPT - : pStdPictureInfo( pStdPictureInfo_ ) - , slicesCount( slicesCount_ ) - , pSlicesDataOffsets( pSlicesDataOffsets_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoDecodeH265PictureInfoEXT( VideoDecodeH265PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265PictureInfoEXT( VkVideoDecodeH265PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH265PictureInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH265PictureInfoEXT( - StdVideoDecodeH265PictureInfo * pStdPictureInfo_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & slicesDataOffsets_ ) - : pStdPictureInfo( pStdPictureInfo_ ) - , slicesCount( static_cast( slicesDataOffsets_.size() ) ) - , pSlicesDataOffsets( slicesDataOffsets_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265PictureInfoEXT & - operator=( VideoDecodeH265PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265PictureInfoEXT & operator=( VkVideoDecodeH265PictureInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265PictureInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265PictureInfoEXT & - setPStdPictureInfo( StdVideoDecodeH265PictureInfo * pStdPictureInfo_ ) VULKAN_HPP_NOEXCEPT - { - pStdPictureInfo = pStdPictureInfo_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265PictureInfoEXT & setSlicesCount( uint32_t slicesCount_ ) VULKAN_HPP_NOEXCEPT - { - slicesCount = slicesCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265PictureInfoEXT & - setPSlicesDataOffsets( const uint32_t * pSlicesDataOffsets_ ) VULKAN_HPP_NOEXCEPT - { - pSlicesDataOffsets = pSlicesDataOffsets_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH265PictureInfoEXT & setSlicesDataOffsets( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & slicesDataOffsets_ ) VULKAN_HPP_NOEXCEPT - { - slicesCount = static_cast( slicesDataOffsets_.size() ); - pSlicesDataOffsets = slicesDataOffsets_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH265PictureInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265PictureInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, pStdPictureInfo, slicesCount, pSlicesDataOffsets ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH265PictureInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH265PictureInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pStdPictureInfo == rhs.pStdPictureInfo ) && - ( slicesCount == rhs.slicesCount ) && ( pSlicesDataOffsets == rhs.pSlicesDataOffsets ); -# endif - } - - bool operator!=( VideoDecodeH265PictureInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265PictureInfoEXT; - const void * pNext = {}; - StdVideoDecodeH265PictureInfo * pStdPictureInfo = {}; - uint32_t slicesCount = {}; - const uint32_t * pSlicesDataOffsets = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265PictureInfoEXT ) == - sizeof( VkVideoDecodeH265PictureInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH265PictureInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265PictureInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265ProfileEXT - { - using NativeType = VkVideoDecodeH265ProfileEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeH265ProfileEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH265ProfileEXT( StdVideoH265ProfileIdc stdProfileIdc_ = {} ) VULKAN_HPP_NOEXCEPT - : stdProfileIdc( stdProfileIdc_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoDecodeH265ProfileEXT( VideoDecodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265ProfileEXT( VkVideoDecodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH265ProfileEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265ProfileEXT & operator=( VideoDecodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265ProfileEXT & operator=( VkVideoDecodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265ProfileEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265ProfileEXT & - setStdProfileIdc( StdVideoH265ProfileIdc stdProfileIdc_ ) VULKAN_HPP_NOEXCEPT - { - stdProfileIdc = stdProfileIdc_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH265ProfileEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265ProfileEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stdProfileIdc ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( VideoDecodeH265ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH265ProfileIdc ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( VideoDecodeH265ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH265ProfileIdc ) ) == 0 ); - } - - bool operator!=( VideoDecodeH265ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265ProfileEXT; - const void * pNext = {}; - StdVideoH265ProfileIdc stdProfileIdc = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265ProfileEXT ) == - sizeof( VkVideoDecodeH265ProfileEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoDecodeH265ProfileEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265ProfileEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265SessionCreateInfoEXT - { - using NativeType = VkVideoDecodeH265SessionCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoDecodeH265SessionCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionCreateInfoEXT( - VULKAN_HPP_NAMESPACE::VideoDecodeH265CreateFlagsEXT flags_ = {}, - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pStdExtensionVersion( pStdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionCreateInfoEXT( VideoDecodeH265SessionCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265SessionCreateInfoEXT( VkVideoDecodeH265SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeH265SessionCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265SessionCreateInfoEXT & - operator=( VideoDecodeH265SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265SessionCreateInfoEXT & - operator=( VkVideoDecodeH265SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::VideoDecodeH265CreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionCreateInfoEXT & setPStdExtensionVersion( - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ ) VULKAN_HPP_NOEXCEPT - { - pStdExtensionVersion = pStdExtensionVersion_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH265SessionCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265SessionCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pStdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH265SessionCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH265SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pStdExtensionVersion == rhs.pStdExtensionVersion ); -# endif - } - - bool operator!=( VideoDecodeH265SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265SessionCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoDecodeH265CreateFlagsEXT flags = {}; - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionCreateInfoEXT ) == - sizeof( VkVideoDecodeH265SessionCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH265SessionCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265SessionCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265SessionParametersAddInfoEXT - { - using NativeType = VkVideoDecodeH265SessionParametersAddInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoDecodeH265SessionParametersAddInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH265SessionParametersAddInfoEXT( - uint32_t spsStdCount_ = {}, - const StdVideoH265SequenceParameterSet * pSpsStd_ = {}, - uint32_t ppsStdCount_ = {}, - const StdVideoH265PictureParameterSet * pPpsStd_ = {} ) VULKAN_HPP_NOEXCEPT - : spsStdCount( spsStdCount_ ) - , pSpsStd( pSpsStd_ ) - , ppsStdCount( ppsStdCount_ ) - , pPpsStd( pPpsStd_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoDecodeH265SessionParametersAddInfoEXT( - VideoDecodeH265SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265SessionParametersAddInfoEXT( VkVideoDecodeH265SessionParametersAddInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoDecodeH265SessionParametersAddInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH265SessionParametersAddInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ = {} ) - : spsStdCount( static_cast( spsStd_.size() ) ) - , pSpsStd( spsStd_.data() ) - , ppsStdCount( static_cast( ppsStd_.size() ) ) - , pPpsStd( ppsStd_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265SessionParametersAddInfoEXT & - operator=( VideoDecodeH265SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265SessionParametersAddInfoEXT & - operator=( VkVideoDecodeH265SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersAddInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersAddInfoEXT & - setSpsStdCount( uint32_t spsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - spsStdCount = spsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersAddInfoEXT & - setPSpsStd( const StdVideoH265SequenceParameterSet * pSpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pSpsStd = pSpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH265SessionParametersAddInfoEXT & - setSpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_ ) - VULKAN_HPP_NOEXCEPT - { - spsStdCount = static_cast( spsStd_.size() ); - pSpsStd = spsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersAddInfoEXT & - setPpsStdCount( uint32_t ppsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - ppsStdCount = ppsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersAddInfoEXT & - setPPpsStd( const StdVideoH265PictureParameterSet * pPpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pPpsStd = pPpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeH265SessionParametersAddInfoEXT & - setPpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ ) - VULKAN_HPP_NOEXCEPT - { - ppsStdCount = static_cast( ppsStd_.size() ); - pPpsStd = ppsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH265SessionParametersAddInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265SessionParametersAddInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, spsStdCount, pSpsStd, ppsStdCount, pPpsStd ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH265SessionParametersAddInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH265SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( spsStdCount == rhs.spsStdCount ) && - ( pSpsStd == rhs.pSpsStd ) && ( ppsStdCount == rhs.ppsStdCount ) && ( pPpsStd == rhs.pPpsStd ); -# endif - } - - bool operator!=( VideoDecodeH265SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265SessionParametersAddInfoEXT; - const void * pNext = {}; - uint32_t spsStdCount = {}; - const StdVideoH265SequenceParameterSet * pSpsStd = {}; - uint32_t ppsStdCount = {}; - const StdVideoH265PictureParameterSet * pPpsStd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersAddInfoEXT ) == - sizeof( VkVideoDecodeH265SessionParametersAddInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH265SessionParametersAddInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265SessionParametersAddInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeH265SessionParametersCreateInfoEXT - { - using NativeType = VkVideoDecodeH265SessionParametersCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoDecodeH265SessionParametersCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeH265SessionParametersCreateInfoEXT( - uint32_t maxSpsStdCount_ = {}, - uint32_t maxPpsStdCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersAddInfoEXT * pParametersAddInfo_ = {} ) - VULKAN_HPP_NOEXCEPT - : maxSpsStdCount( maxSpsStdCount_ ) - , maxPpsStdCount( maxPpsStdCount_ ) - , pParametersAddInfo( pParametersAddInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoDecodeH265SessionParametersCreateInfoEXT( - VideoDecodeH265SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265SessionParametersCreateInfoEXT( VkVideoDecodeH265SessionParametersCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoDecodeH265SessionParametersCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeH265SessionParametersCreateInfoEXT & - operator=( VideoDecodeH265SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeH265SessionParametersCreateInfoEXT & - operator=( VkVideoDecodeH265SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersCreateInfoEXT & - setMaxSpsStdCount( uint32_t maxSpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxSpsStdCount = maxSpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersCreateInfoEXT & - setMaxPpsStdCount( uint32_t maxPpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxPpsStdCount = maxPpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeH265SessionParametersCreateInfoEXT & setPParametersAddInfo( - const VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersAddInfoEXT * pParametersAddInfo_ ) VULKAN_HPP_NOEXCEPT - { - pParametersAddInfo = pParametersAddInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeH265SessionParametersCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeH265SessionParametersCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxSpsStdCount, maxPpsStdCount, pParametersAddInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeH265SessionParametersCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoDecodeH265SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxSpsStdCount == rhs.maxSpsStdCount ) && - ( maxPpsStdCount == rhs.maxPpsStdCount ) && ( pParametersAddInfo == rhs.pParametersAddInfo ); -# endif - } - - bool operator!=( VideoDecodeH265SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeH265SessionParametersCreateInfoEXT; - const void * pNext = {}; - uint32_t maxSpsStdCount = {}; - uint32_t maxPpsStdCount = {}; - const VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersAddInfoEXT * pParametersAddInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeH265SessionParametersCreateInfoEXT ) == - sizeof( VkVideoDecodeH265SessionParametersCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoDecodeH265SessionParametersCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeH265SessionParametersCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoDecodeInfoKHR - { - using NativeType = VkVideoDecodeInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoDecodeInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoDecodeInfoKHR( - VULKAN_HPP_NAMESPACE::VideoDecodeFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::Offset2D codedOffset_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D codedExtent_ = {}, - VULKAN_HPP_NAMESPACE::Buffer srcBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize srcBufferOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize srcBufferRange_ = {}, - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR dstPictureResource_ = {}, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot_ = {}, - uint32_t referenceSlotCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , codedOffset( codedOffset_ ) - , codedExtent( codedExtent_ ) - , srcBuffer( srcBuffer_ ) - , srcBufferOffset( srcBufferOffset_ ) - , srcBufferRange( srcBufferRange_ ) - , dstPictureResource( dstPictureResource_ ) - , pSetupReferenceSlot( pSetupReferenceSlot_ ) - , referenceSlotCount( referenceSlotCount_ ) - , pReferenceSlots( pReferenceSlots_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoDecodeInfoKHR( VideoDecodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeInfoKHR( VkVideoDecodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoDecodeInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeInfoKHR( - VULKAN_HPP_NAMESPACE::VideoDecodeFlagsKHR flags_, - VULKAN_HPP_NAMESPACE::Offset2D codedOffset_, - VULKAN_HPP_NAMESPACE::Extent2D codedExtent_, - VULKAN_HPP_NAMESPACE::Buffer srcBuffer_, - VULKAN_HPP_NAMESPACE::DeviceSize srcBufferOffset_, - VULKAN_HPP_NAMESPACE::DeviceSize srcBufferRange_, - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR dstPictureResource_, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceSlots_ ) - : flags( flags_ ) - , codedOffset( codedOffset_ ) - , codedExtent( codedExtent_ ) - , srcBuffer( srcBuffer_ ) - , srcBufferOffset( srcBufferOffset_ ) - , srcBufferRange( srcBufferRange_ ) - , dstPictureResource( dstPictureResource_ ) - , pSetupReferenceSlot( pSetupReferenceSlot_ ) - , referenceSlotCount( static_cast( referenceSlots_.size() ) ) - , pReferenceSlots( referenceSlots_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoDecodeInfoKHR & operator=( VideoDecodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoDecodeInfoKHR & operator=( VkVideoDecodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoDecodeFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setCodedOffset( VULKAN_HPP_NAMESPACE::Offset2D const & codedOffset_ ) VULKAN_HPP_NOEXCEPT - { - codedOffset = codedOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setCodedExtent( VULKAN_HPP_NAMESPACE::Extent2D const & codedExtent_ ) VULKAN_HPP_NOEXCEPT - { - codedExtent = codedExtent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setSrcBuffer( VULKAN_HPP_NAMESPACE::Buffer srcBuffer_ ) VULKAN_HPP_NOEXCEPT - { - srcBuffer = srcBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setSrcBufferOffset( VULKAN_HPP_NAMESPACE::DeviceSize srcBufferOffset_ ) VULKAN_HPP_NOEXCEPT - { - srcBufferOffset = srcBufferOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setSrcBufferRange( VULKAN_HPP_NAMESPACE::DeviceSize srcBufferRange_ ) VULKAN_HPP_NOEXCEPT - { - srcBufferRange = srcBufferRange_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & setDstPictureResource( - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR const & dstPictureResource_ ) VULKAN_HPP_NOEXCEPT - { - dstPictureResource = dstPictureResource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & setPSetupReferenceSlot( - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot_ ) VULKAN_HPP_NOEXCEPT - { - pSetupReferenceSlot = pSetupReferenceSlot_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setReferenceSlotCount( uint32_t referenceSlotCount_ ) VULKAN_HPP_NOEXCEPT - { - referenceSlotCount = referenceSlotCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoDecodeInfoKHR & - setPReferenceSlots( const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceSlots = pReferenceSlots_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoDecodeInfoKHR & setReferenceSlots( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceSlots_ ) VULKAN_HPP_NOEXCEPT - { - referenceSlotCount = static_cast( referenceSlots_.size() ); - pReferenceSlots = referenceSlots_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoDecodeInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoDecodeInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - codedOffset, - codedExtent, - srcBuffer, - srcBufferOffset, - srcBufferRange, - dstPictureResource, - pSetupReferenceSlot, - referenceSlotCount, - pReferenceSlots ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoDecodeInfoKHR const & ) const = default; -# else - bool operator==( VideoDecodeInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( codedOffset == rhs.codedOffset ) && ( codedExtent == rhs.codedExtent ) && - ( srcBuffer == rhs.srcBuffer ) && ( srcBufferOffset == rhs.srcBufferOffset ) && - ( srcBufferRange == rhs.srcBufferRange ) && ( dstPictureResource == rhs.dstPictureResource ) && - ( pSetupReferenceSlot == rhs.pSetupReferenceSlot ) && ( referenceSlotCount == rhs.referenceSlotCount ) && - ( pReferenceSlots == rhs.pReferenceSlots ); -# endif - } - - bool operator!=( VideoDecodeInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoDecodeInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoDecodeFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::Offset2D codedOffset = {}; - VULKAN_HPP_NAMESPACE::Extent2D codedExtent = {}; - VULKAN_HPP_NAMESPACE::Buffer srcBuffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize srcBufferOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize srcBufferRange = {}; - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR dstPictureResource = {}; - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot = {}; - uint32_t referenceSlotCount = {}; - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoDecodeInfoKHR ) == sizeof( VkVideoDecodeInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoDecodeInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoDecodeInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264CapabilitiesEXT - { - using NativeType = VkVideoEncodeH264CapabilitiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH264CapabilitiesEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT( - VULKAN_HPP_NAMESPACE::VideoEncodeH264CapabilityFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264InputModeFlagsEXT inputModeFlags_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264OutputModeFlagsEXT outputModeFlags_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D minPictureSizeInMbs_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxPictureSizeInMbs_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D inputImageDataAlignment_ = {}, - uint8_t maxNumL0ReferenceForP_ = {}, - uint8_t maxNumL0ReferenceForB_ = {}, - uint8_t maxNumL1Reference_ = {}, - uint8_t qualityLevelCount_ = {}, - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , inputModeFlags( inputModeFlags_ ) - , outputModeFlags( outputModeFlags_ ) - , minPictureSizeInMbs( minPictureSizeInMbs_ ) - , maxPictureSizeInMbs( maxPictureSizeInMbs_ ) - , inputImageDataAlignment( inputImageDataAlignment_ ) - , maxNumL0ReferenceForP( maxNumL0ReferenceForP_ ) - , maxNumL0ReferenceForB( maxNumL0ReferenceForB_ ) - , maxNumL1Reference( maxNumL1Reference_ ) - , qualityLevelCount( qualityLevelCount_ ) - , stdExtensionVersion( stdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - VideoEncodeH264CapabilitiesEXT( VideoEncodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264CapabilitiesEXT( VkVideoEncodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264CapabilitiesEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264CapabilitiesEXT & - operator=( VideoEncodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264CapabilitiesEXT & operator=( VkVideoEncodeH264CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH264CapabilityFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setInputModeFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH264InputModeFlagsEXT inputModeFlags_ ) VULKAN_HPP_NOEXCEPT - { - inputModeFlags = inputModeFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setOutputModeFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH264OutputModeFlagsEXT outputModeFlags_ ) VULKAN_HPP_NOEXCEPT - { - outputModeFlags = outputModeFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setMinPictureSizeInMbs( VULKAN_HPP_NAMESPACE::Extent2D const & minPictureSizeInMbs_ ) VULKAN_HPP_NOEXCEPT - { - minPictureSizeInMbs = minPictureSizeInMbs_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setMaxPictureSizeInMbs( VULKAN_HPP_NAMESPACE::Extent2D const & maxPictureSizeInMbs_ ) VULKAN_HPP_NOEXCEPT - { - maxPictureSizeInMbs = maxPictureSizeInMbs_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setInputImageDataAlignment( VULKAN_HPP_NAMESPACE::Extent2D const & inputImageDataAlignment_ ) VULKAN_HPP_NOEXCEPT - { - inputImageDataAlignment = inputImageDataAlignment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setMaxNumL0ReferenceForP( uint8_t maxNumL0ReferenceForP_ ) VULKAN_HPP_NOEXCEPT - { - maxNumL0ReferenceForP = maxNumL0ReferenceForP_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setMaxNumL0ReferenceForB( uint8_t maxNumL0ReferenceForB_ ) VULKAN_HPP_NOEXCEPT - { - maxNumL0ReferenceForB = maxNumL0ReferenceForB_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setMaxNumL1Reference( uint8_t maxNumL1Reference_ ) VULKAN_HPP_NOEXCEPT - { - maxNumL1Reference = maxNumL1Reference_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & - setQualityLevelCount( uint8_t qualityLevelCount_ ) VULKAN_HPP_NOEXCEPT - { - qualityLevelCount = qualityLevelCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264CapabilitiesEXT & setStdExtensionVersion( - VULKAN_HPP_NAMESPACE::ExtensionProperties const & stdExtensionVersion_ ) VULKAN_HPP_NOEXCEPT - { - stdExtensionVersion = stdExtensionVersion_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264CapabilitiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264CapabilitiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - inputModeFlags, - outputModeFlags, - minPictureSizeInMbs, - maxPictureSizeInMbs, - inputImageDataAlignment, - maxNumL0ReferenceForP, - maxNumL0ReferenceForB, - maxNumL1Reference, - qualityLevelCount, - stdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264CapabilitiesEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( inputModeFlags == rhs.inputModeFlags ) && ( outputModeFlags == rhs.outputModeFlags ) && - ( minPictureSizeInMbs == rhs.minPictureSizeInMbs ) && ( maxPictureSizeInMbs == rhs.maxPictureSizeInMbs ) && - ( inputImageDataAlignment == rhs.inputImageDataAlignment ) && - ( maxNumL0ReferenceForP == rhs.maxNumL0ReferenceForP ) && - ( maxNumL0ReferenceForB == rhs.maxNumL0ReferenceForB ) && ( maxNumL1Reference == rhs.maxNumL1Reference ) && - ( qualityLevelCount == rhs.qualityLevelCount ) && ( stdExtensionVersion == rhs.stdExtensionVersion ); -# endif - } - - bool operator!=( VideoEncodeH264CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264CapabilitiesEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264CapabilityFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264InputModeFlagsEXT inputModeFlags = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264OutputModeFlagsEXT outputModeFlags = {}; - VULKAN_HPP_NAMESPACE::Extent2D minPictureSizeInMbs = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxPictureSizeInMbs = {}; - VULKAN_HPP_NAMESPACE::Extent2D inputImageDataAlignment = {}; - uint8_t maxNumL0ReferenceForP = {}; - uint8_t maxNumL0ReferenceForB = {}; - uint8_t maxNumL1Reference = {}; - uint8_t qualityLevelCount = {}; - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264CapabilitiesEXT ) == - sizeof( VkVideoEncodeH264CapabilitiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264CapabilitiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264CapabilitiesEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264DpbSlotInfoEXT - { - using NativeType = VkVideoEncodeH264DpbSlotInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH264DpbSlotInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeH264DpbSlotInfoEXT( int8_t slotIndex_ = {}, - const StdVideoEncodeH264PictureInfo * pStdPictureInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : slotIndex( slotIndex_ ) - , pStdPictureInfo( pStdPictureInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH264DpbSlotInfoEXT( VideoEncodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264DpbSlotInfoEXT( VkVideoEncodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264DpbSlotInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264DpbSlotInfoEXT & - operator=( VideoEncodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264DpbSlotInfoEXT & operator=( VkVideoEncodeH264DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264DpbSlotInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264DpbSlotInfoEXT & setSlotIndex( int8_t slotIndex_ ) VULKAN_HPP_NOEXCEPT - { - slotIndex = slotIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264DpbSlotInfoEXT & - setPStdPictureInfo( const StdVideoEncodeH264PictureInfo * pStdPictureInfo_ ) VULKAN_HPP_NOEXCEPT - { - pStdPictureInfo = pStdPictureInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264DpbSlotInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264DpbSlotInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, slotIndex, pStdPictureInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264DpbSlotInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( slotIndex == rhs.slotIndex ) && - ( pStdPictureInfo == rhs.pStdPictureInfo ); -# endif - } - - bool operator!=( VideoEncodeH264DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264DpbSlotInfoEXT; - const void * pNext = {}; - int8_t slotIndex = {}; - const StdVideoEncodeH264PictureInfo * pStdPictureInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT ) == - sizeof( VkVideoEncodeH264DpbSlotInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264DpbSlotInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264DpbSlotInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264EmitPictureParametersEXT - { - using NativeType = VkVideoEncodeH264EmitPictureParametersEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH264EmitPictureParametersEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeH264EmitPictureParametersEXT( uint8_t spsId_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable_ = {}, - uint32_t ppsIdEntryCount_ = {}, - const uint8_t * ppsIdEntries_ = {} ) VULKAN_HPP_NOEXCEPT - : spsId( spsId_ ) - , emitSpsEnable( emitSpsEnable_ ) - , ppsIdEntryCount( ppsIdEntryCount_ ) - , ppsIdEntries( ppsIdEntries_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH264EmitPictureParametersEXT( VideoEncodeH264EmitPictureParametersEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264EmitPictureParametersEXT( VkVideoEncodeH264EmitPictureParametersEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264EmitPictureParametersEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264EmitPictureParametersEXT( - uint8_t spsId_, - VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & psIdEntries_ ) - : spsId( spsId_ ) - , emitSpsEnable( emitSpsEnable_ ) - , ppsIdEntryCount( static_cast( psIdEntries_.size() ) ) - , ppsIdEntries( psIdEntries_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264EmitPictureParametersEXT & - operator=( VideoEncodeH264EmitPictureParametersEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264EmitPictureParametersEXT & - operator=( VkVideoEncodeH264EmitPictureParametersEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264EmitPictureParametersEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264EmitPictureParametersEXT & setSpsId( uint8_t spsId_ ) VULKAN_HPP_NOEXCEPT - { - spsId = spsId_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264EmitPictureParametersEXT & - setEmitSpsEnable( VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable_ ) VULKAN_HPP_NOEXCEPT - { - emitSpsEnable = emitSpsEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264EmitPictureParametersEXT & - setPpsIdEntryCount( uint32_t ppsIdEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - ppsIdEntryCount = ppsIdEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264EmitPictureParametersEXT & - setPpsIdEntries( const uint8_t * ppsIdEntries_ ) VULKAN_HPP_NOEXCEPT - { - ppsIdEntries = ppsIdEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264EmitPictureParametersEXT & setPsIdEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & psIdEntries_ ) VULKAN_HPP_NOEXCEPT - { - ppsIdEntryCount = static_cast( psIdEntries_.size() ); - ppsIdEntries = psIdEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264EmitPictureParametersEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264EmitPictureParametersEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, spsId, emitSpsEnable, ppsIdEntryCount, ppsIdEntries ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264EmitPictureParametersEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264EmitPictureParametersEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( spsId == rhs.spsId ) && - ( emitSpsEnable == rhs.emitSpsEnable ) && ( ppsIdEntryCount == rhs.ppsIdEntryCount ) && - ( ppsIdEntries == rhs.ppsIdEntries ); -# endif - } - - bool operator!=( VideoEncodeH264EmitPictureParametersEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264EmitPictureParametersEXT; - const void * pNext = {}; - uint8_t spsId = {}; - VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable = {}; - uint32_t ppsIdEntryCount = {}; - const uint8_t * ppsIdEntries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264EmitPictureParametersEXT ) == - sizeof( VkVideoEncodeH264EmitPictureParametersEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264EmitPictureParametersEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264EmitPictureParametersEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264FrameSizeEXT - { - using NativeType = VkVideoEncodeH264FrameSizeEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264FrameSizeEXT( uint32_t frameISize_ = {}, - uint32_t framePSize_ = {}, - uint32_t frameBSize_ = {} ) VULKAN_HPP_NOEXCEPT - : frameISize( frameISize_ ) - , framePSize( framePSize_ ) - , frameBSize( frameBSize_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH264FrameSizeEXT( VideoEncodeH264FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264FrameSizeEXT( VkVideoEncodeH264FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264FrameSizeEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264FrameSizeEXT & operator=( VideoEncodeH264FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264FrameSizeEXT & operator=( VkVideoEncodeH264FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264FrameSizeEXT & setFrameISize( uint32_t frameISize_ ) VULKAN_HPP_NOEXCEPT - { - frameISize = frameISize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264FrameSizeEXT & setFramePSize( uint32_t framePSize_ ) VULKAN_HPP_NOEXCEPT - { - framePSize = framePSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264FrameSizeEXT & setFrameBSize( uint32_t frameBSize_ ) VULKAN_HPP_NOEXCEPT - { - frameBSize = frameBSize_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264FrameSizeEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264FrameSizeEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( frameISize, framePSize, frameBSize ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264FrameSizeEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264FrameSizeEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( frameISize == rhs.frameISize ) && ( framePSize == rhs.framePSize ) && ( frameBSize == rhs.frameBSize ); -# endif - } - - bool operator!=( VideoEncodeH264FrameSizeEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - uint32_t frameISize = {}; - uint32_t framePSize = {}; - uint32_t frameBSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264FrameSizeEXT ) == - sizeof( VkVideoEncodeH264FrameSizeEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264FrameSizeEXT is not nothrow_move_constructible!" ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264NaluSliceEXT - { - using NativeType = VkVideoEncodeH264NaluSliceEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH264NaluSliceEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264NaluSliceEXT( - const StdVideoEncodeH264SliceHeader * pSliceHeaderStd_ = {}, - uint32_t mbCount_ = {}, - uint8_t refFinalList0EntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefFinalList0Entries_ = {}, - uint8_t refFinalList1EntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefFinalList1Entries_ = {} ) VULKAN_HPP_NOEXCEPT - : pSliceHeaderStd( pSliceHeaderStd_ ) - , mbCount( mbCount_ ) - , refFinalList0EntryCount( refFinalList0EntryCount_ ) - , pRefFinalList0Entries( pRefFinalList0Entries_ ) - , refFinalList1EntryCount( refFinalList1EntryCount_ ) - , pRefFinalList1Entries( pRefFinalList1Entries_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH264NaluSliceEXT( VideoEncodeH264NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264NaluSliceEXT( VkVideoEncodeH264NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264NaluSliceEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264NaluSliceEXT( - const StdVideoEncodeH264SliceHeader * pSliceHeaderStd_, - uint32_t mbCount_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refFinalList0Entries_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refFinalList1Entries_ = {} ) - : pSliceHeaderStd( pSliceHeaderStd_ ) - , mbCount( mbCount_ ) - , refFinalList0EntryCount( static_cast( refFinalList0Entries_.size() ) ) - , pRefFinalList0Entries( refFinalList0Entries_.data() ) - , refFinalList1EntryCount( static_cast( refFinalList1Entries_.size() ) ) - , pRefFinalList1Entries( refFinalList1Entries_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264NaluSliceEXT & operator=( VideoEncodeH264NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264NaluSliceEXT & operator=( VkVideoEncodeH264NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & - setPSliceHeaderStd( const StdVideoEncodeH264SliceHeader * pSliceHeaderStd_ ) VULKAN_HPP_NOEXCEPT - { - pSliceHeaderStd = pSliceHeaderStd_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & setMbCount( uint32_t mbCount_ ) VULKAN_HPP_NOEXCEPT - { - mbCount = mbCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & - setRefFinalList0EntryCount( uint8_t refFinalList0EntryCount_ ) VULKAN_HPP_NOEXCEPT - { - refFinalList0EntryCount = refFinalList0EntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & setPRefFinalList0Entries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefFinalList0Entries_ ) VULKAN_HPP_NOEXCEPT - { - pRefFinalList0Entries = pRefFinalList0Entries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264NaluSliceEXT & setRefFinalList0Entries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refFinalList0Entries_ ) VULKAN_HPP_NOEXCEPT - { - refFinalList0EntryCount = static_cast( refFinalList0Entries_.size() ); - pRefFinalList0Entries = refFinalList0Entries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & - setRefFinalList1EntryCount( uint8_t refFinalList1EntryCount_ ) VULKAN_HPP_NOEXCEPT - { - refFinalList1EntryCount = refFinalList1EntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264NaluSliceEXT & setPRefFinalList1Entries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefFinalList1Entries_ ) VULKAN_HPP_NOEXCEPT - { - pRefFinalList1Entries = pRefFinalList1Entries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264NaluSliceEXT & setRefFinalList1Entries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refFinalList1Entries_ ) VULKAN_HPP_NOEXCEPT - { - refFinalList1EntryCount = static_cast( refFinalList1Entries_.size() ); - pRefFinalList1Entries = refFinalList1Entries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264NaluSliceEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264NaluSliceEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - pSliceHeaderStd, - mbCount, - refFinalList0EntryCount, - pRefFinalList0Entries, - refFinalList1EntryCount, - pRefFinalList1Entries ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264NaluSliceEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264NaluSliceEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pSliceHeaderStd == rhs.pSliceHeaderStd ) && - ( mbCount == rhs.mbCount ) && ( refFinalList0EntryCount == rhs.refFinalList0EntryCount ) && - ( pRefFinalList0Entries == rhs.pRefFinalList0Entries ) && - ( refFinalList1EntryCount == rhs.refFinalList1EntryCount ) && - ( pRefFinalList1Entries == rhs.pRefFinalList1Entries ); -# endif - } - - bool operator!=( VideoEncodeH264NaluSliceEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264NaluSliceEXT; - const void * pNext = {}; - const StdVideoEncodeH264SliceHeader * pSliceHeaderStd = {}; - uint32_t mbCount = {}; - uint8_t refFinalList0EntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefFinalList0Entries = {}; - uint8_t refFinalList1EntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefFinalList1Entries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264NaluSliceEXT ) == - sizeof( VkVideoEncodeH264NaluSliceEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264NaluSliceEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264NaluSliceEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264ProfileEXT - { - using NativeType = VkVideoEncodeH264ProfileEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH264ProfileEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264ProfileEXT( StdVideoH264ProfileIdc stdProfileIdc_ = {} ) VULKAN_HPP_NOEXCEPT - : stdProfileIdc( stdProfileIdc_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH264ProfileEXT( VideoEncodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264ProfileEXT( VkVideoEncodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264ProfileEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264ProfileEXT & operator=( VideoEncodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264ProfileEXT & operator=( VkVideoEncodeH264ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264ProfileEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264ProfileEXT & - setStdProfileIdc( StdVideoH264ProfileIdc stdProfileIdc_ ) VULKAN_HPP_NOEXCEPT - { - stdProfileIdc = stdProfileIdc_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264ProfileEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264ProfileEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stdProfileIdc ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( VideoEncodeH264ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH264ProfileIdc ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( VideoEncodeH264ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH264ProfileIdc ) ) == 0 ); - } - - bool operator!=( VideoEncodeH264ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264ProfileEXT; - const void * pNext = {}; - StdVideoH264ProfileIdc stdProfileIdc = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264ProfileEXT ) == - sizeof( VkVideoEncodeH264ProfileEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoEncodeH264ProfileEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264ProfileEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264QpEXT - { - using NativeType = VkVideoEncodeH264QpEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeH264QpEXT( int32_t qpI_ = {}, int32_t qpP_ = {}, int32_t qpB_ = {} ) VULKAN_HPP_NOEXCEPT - : qpI( qpI_ ) - , qpP( qpP_ ) - , qpB( qpB_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH264QpEXT( VideoEncodeH264QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264QpEXT( VkVideoEncodeH264QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264QpEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264QpEXT & operator=( VideoEncodeH264QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264QpEXT & operator=( VkVideoEncodeH264QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264QpEXT & setQpI( int32_t qpI_ ) VULKAN_HPP_NOEXCEPT - { - qpI = qpI_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264QpEXT & setQpP( int32_t qpP_ ) VULKAN_HPP_NOEXCEPT - { - qpP = qpP_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264QpEXT & setQpB( int32_t qpB_ ) VULKAN_HPP_NOEXCEPT - { - qpB = qpB_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264QpEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264QpEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( qpI, qpP, qpB ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264QpEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264QpEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( qpI == rhs.qpI ) && ( qpP == rhs.qpP ) && ( qpB == rhs.qpB ); -# endif - } - - bool operator!=( VideoEncodeH264QpEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - int32_t qpI = {}; - int32_t qpP = {}; - int32_t qpB = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT ) == sizeof( VkVideoEncodeH264QpEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoEncodeH264QpEXT is not nothrow_move_constructible!" ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264RateControlInfoEXT - { - using NativeType = VkVideoEncodeH264RateControlInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH264RateControlInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlInfoEXT( - uint32_t gopFrameCount_ = {}, - uint32_t idrPeriod_ = {}, - uint32_t consecutiveBFrameCount_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlStructureFlagBitsEXT rateControlStructure_ = - VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlStructureFlagBitsEXT::eUnknown, - uint8_t temporalLayerCount_ = {} ) VULKAN_HPP_NOEXCEPT - : gopFrameCount( gopFrameCount_ ) - , idrPeriod( idrPeriod_ ) - , consecutiveBFrameCount( consecutiveBFrameCount_ ) - , rateControlStructure( rateControlStructure_ ) - , temporalLayerCount( temporalLayerCount_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH264RateControlInfoEXT( VideoEncodeH264RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264RateControlInfoEXT( VkVideoEncodeH264RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264RateControlInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264RateControlInfoEXT & - operator=( VideoEncodeH264RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264RateControlInfoEXT & operator=( VkVideoEncodeH264RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlInfoEXT & - setGopFrameCount( uint32_t gopFrameCount_ ) VULKAN_HPP_NOEXCEPT - { - gopFrameCount = gopFrameCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlInfoEXT & setIdrPeriod( uint32_t idrPeriod_ ) VULKAN_HPP_NOEXCEPT - { - idrPeriod = idrPeriod_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlInfoEXT & - setConsecutiveBFrameCount( uint32_t consecutiveBFrameCount_ ) VULKAN_HPP_NOEXCEPT - { - consecutiveBFrameCount = consecutiveBFrameCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlInfoEXT & setRateControlStructure( - VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlStructureFlagBitsEXT rateControlStructure_ ) VULKAN_HPP_NOEXCEPT - { - rateControlStructure = rateControlStructure_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlInfoEXT & - setTemporalLayerCount( uint8_t temporalLayerCount_ ) VULKAN_HPP_NOEXCEPT - { - temporalLayerCount = temporalLayerCount_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264RateControlInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264RateControlInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, gopFrameCount, idrPeriod, consecutiveBFrameCount, rateControlStructure, temporalLayerCount ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264RateControlInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264RateControlInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( gopFrameCount == rhs.gopFrameCount ) && - ( idrPeriod == rhs.idrPeriod ) && ( consecutiveBFrameCount == rhs.consecutiveBFrameCount ) && - ( rateControlStructure == rhs.rateControlStructure ) && ( temporalLayerCount == rhs.temporalLayerCount ); -# endif - } - - bool operator!=( VideoEncodeH264RateControlInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264RateControlInfoEXT; - const void * pNext = {}; - uint32_t gopFrameCount = {}; - uint32_t idrPeriod = {}; - uint32_t consecutiveBFrameCount = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlStructureFlagBitsEXT rateControlStructure = - VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlStructureFlagBitsEXT::eUnknown; - uint8_t temporalLayerCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlInfoEXT ) == - sizeof( VkVideoEncodeH264RateControlInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264RateControlInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264RateControlInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264RateControlLayerInfoEXT - { - using NativeType = VkVideoEncodeH264RateControlLayerInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH264RateControlLayerInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlLayerInfoEXT( - uint8_t temporalLayerId_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useInitialRcQp_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT initialRcQp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useMinQp_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT minQp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useMaxQp_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT maxQp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useMaxFrameSize_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH264FrameSizeEXT maxFrameSize_ = {} ) VULKAN_HPP_NOEXCEPT - : temporalLayerId( temporalLayerId_ ) - , useInitialRcQp( useInitialRcQp_ ) - , initialRcQp( initialRcQp_ ) - , useMinQp( useMinQp_ ) - , minQp( minQp_ ) - , useMaxQp( useMaxQp_ ) - , maxQp( maxQp_ ) - , useMaxFrameSize( useMaxFrameSize_ ) - , maxFrameSize( maxFrameSize_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH264RateControlLayerInfoEXT( VideoEncodeH264RateControlLayerInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264RateControlLayerInfoEXT( VkVideoEncodeH264RateControlLayerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264RateControlLayerInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264RateControlLayerInfoEXT & - operator=( VideoEncodeH264RateControlLayerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264RateControlLayerInfoEXT & - operator=( VkVideoEncodeH264RateControlLayerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setTemporalLayerId( uint8_t temporalLayerId_ ) VULKAN_HPP_NOEXCEPT - { - temporalLayerId = temporalLayerId_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setUseInitialRcQp( VULKAN_HPP_NAMESPACE::Bool32 useInitialRcQp_ ) VULKAN_HPP_NOEXCEPT - { - useInitialRcQp = useInitialRcQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setInitialRcQp( VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT const & initialRcQp_ ) VULKAN_HPP_NOEXCEPT - { - initialRcQp = initialRcQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setUseMinQp( VULKAN_HPP_NAMESPACE::Bool32 useMinQp_ ) VULKAN_HPP_NOEXCEPT - { - useMinQp = useMinQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setMinQp( VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT const & minQp_ ) VULKAN_HPP_NOEXCEPT - { - minQp = minQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setUseMaxQp( VULKAN_HPP_NAMESPACE::Bool32 useMaxQp_ ) VULKAN_HPP_NOEXCEPT - { - useMaxQp = useMaxQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setMaxQp( VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT const & maxQp_ ) VULKAN_HPP_NOEXCEPT - { - maxQp = maxQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setUseMaxFrameSize( VULKAN_HPP_NAMESPACE::Bool32 useMaxFrameSize_ ) VULKAN_HPP_NOEXCEPT - { - useMaxFrameSize = useMaxFrameSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264RateControlLayerInfoEXT & - setMaxFrameSize( VULKAN_HPP_NAMESPACE::VideoEncodeH264FrameSizeEXT const & maxFrameSize_ ) VULKAN_HPP_NOEXCEPT - { - maxFrameSize = maxFrameSize_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264RateControlLayerInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264RateControlLayerInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - temporalLayerId, - useInitialRcQp, - initialRcQp, - useMinQp, - minQp, - useMaxQp, - maxQp, - useMaxFrameSize, - maxFrameSize ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264RateControlLayerInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264RateControlLayerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( temporalLayerId == rhs.temporalLayerId ) && - ( useInitialRcQp == rhs.useInitialRcQp ) && ( initialRcQp == rhs.initialRcQp ) && - ( useMinQp == rhs.useMinQp ) && ( minQp == rhs.minQp ) && ( useMaxQp == rhs.useMaxQp ) && - ( maxQp == rhs.maxQp ) && ( useMaxFrameSize == rhs.useMaxFrameSize ) && - ( maxFrameSize == rhs.maxFrameSize ); -# endif - } - - bool operator!=( VideoEncodeH264RateControlLayerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264RateControlLayerInfoEXT; - const void * pNext = {}; - uint8_t temporalLayerId = {}; - VULKAN_HPP_NAMESPACE::Bool32 useInitialRcQp = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT initialRcQp = {}; - VULKAN_HPP_NAMESPACE::Bool32 useMinQp = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT minQp = {}; - VULKAN_HPP_NAMESPACE::Bool32 useMaxQp = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264QpEXT maxQp = {}; - VULKAN_HPP_NAMESPACE::Bool32 useMaxFrameSize = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264FrameSizeEXT maxFrameSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264RateControlLayerInfoEXT ) == - sizeof( VkVideoEncodeH264RateControlLayerInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264RateControlLayerInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264RateControlLayerInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264SessionCreateInfoEXT - { - using NativeType = VkVideoEncodeH264SessionCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH264SessionCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionCreateInfoEXT( - VULKAN_HPP_NAMESPACE::VideoEncodeH264CreateFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D maxPictureSizeInMbs_ = {}, - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , maxPictureSizeInMbs( maxPictureSizeInMbs_ ) - , pStdExtensionVersion( pStdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionCreateInfoEXT( VideoEncodeH264SessionCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264SessionCreateInfoEXT( VkVideoEncodeH264SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264SessionCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264SessionCreateInfoEXT & - operator=( VideoEncodeH264SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264SessionCreateInfoEXT & - operator=( VkVideoEncodeH264SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH264CreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionCreateInfoEXT & - setMaxPictureSizeInMbs( VULKAN_HPP_NAMESPACE::Extent2D const & maxPictureSizeInMbs_ ) VULKAN_HPP_NOEXCEPT - { - maxPictureSizeInMbs = maxPictureSizeInMbs_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionCreateInfoEXT & setPStdExtensionVersion( - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ ) VULKAN_HPP_NOEXCEPT - { - pStdExtensionVersion = pStdExtensionVersion_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264SessionCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264SessionCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, maxPictureSizeInMbs, pStdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264SessionCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( maxPictureSizeInMbs == rhs.maxPictureSizeInMbs ) && ( pStdExtensionVersion == rhs.pStdExtensionVersion ); -# endif - } - - bool operator!=( VideoEncodeH264SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264SessionCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH264CreateFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::Extent2D maxPictureSizeInMbs = {}; - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionCreateInfoEXT ) == - sizeof( VkVideoEncodeH264SessionCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264SessionCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264SessionCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264SessionParametersAddInfoEXT - { - using NativeType = VkVideoEncodeH264SessionParametersAddInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH264SessionParametersAddInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264SessionParametersAddInfoEXT( - uint32_t spsStdCount_ = {}, - const StdVideoH264SequenceParameterSet * pSpsStd_ = {}, - uint32_t ppsStdCount_ = {}, - const StdVideoH264PictureParameterSet * pPpsStd_ = {} ) VULKAN_HPP_NOEXCEPT - : spsStdCount( spsStdCount_ ) - , pSpsStd( pSpsStd_ ) - , ppsStdCount( ppsStdCount_ ) - , pPpsStd( pPpsStd_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH264SessionParametersAddInfoEXT( - VideoEncodeH264SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264SessionParametersAddInfoEXT( VkVideoEncodeH264SessionParametersAddInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoEncodeH264SessionParametersAddInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264SessionParametersAddInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ = {} ) - : spsStdCount( static_cast( spsStd_.size() ) ) - , pSpsStd( spsStd_.data() ) - , ppsStdCount( static_cast( ppsStd_.size() ) ) - , pPpsStd( ppsStd_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264SessionParametersAddInfoEXT & - operator=( VideoEncodeH264SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264SessionParametersAddInfoEXT & - operator=( VkVideoEncodeH264SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersAddInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersAddInfoEXT & - setSpsStdCount( uint32_t spsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - spsStdCount = spsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersAddInfoEXT & - setPSpsStd( const StdVideoH264SequenceParameterSet * pSpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pSpsStd = pSpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264SessionParametersAddInfoEXT & - setSpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_ ) - VULKAN_HPP_NOEXCEPT - { - spsStdCount = static_cast( spsStd_.size() ); - pSpsStd = spsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersAddInfoEXT & - setPpsStdCount( uint32_t ppsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - ppsStdCount = ppsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersAddInfoEXT & - setPPpsStd( const StdVideoH264PictureParameterSet * pPpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pPpsStd = pPpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264SessionParametersAddInfoEXT & - setPpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ ) - VULKAN_HPP_NOEXCEPT - { - ppsStdCount = static_cast( ppsStd_.size() ); - pPpsStd = ppsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264SessionParametersAddInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264SessionParametersAddInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, spsStdCount, pSpsStd, ppsStdCount, pPpsStd ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264SessionParametersAddInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( spsStdCount == rhs.spsStdCount ) && - ( pSpsStd == rhs.pSpsStd ) && ( ppsStdCount == rhs.ppsStdCount ) && ( pPpsStd == rhs.pPpsStd ); -# endif - } - - bool operator!=( VideoEncodeH264SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264SessionParametersAddInfoEXT; - const void * pNext = {}; - uint32_t spsStdCount = {}; - const StdVideoH264SequenceParameterSet * pSpsStd = {}; - uint32_t ppsStdCount = {}; - const StdVideoH264PictureParameterSet * pPpsStd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersAddInfoEXT ) == - sizeof( VkVideoEncodeH264SessionParametersAddInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264SessionParametersAddInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264SessionParametersAddInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264SessionParametersCreateInfoEXT - { - using NativeType = VkVideoEncodeH264SessionParametersCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH264SessionParametersCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264SessionParametersCreateInfoEXT( - uint32_t maxSpsStdCount_ = {}, - uint32_t maxPpsStdCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersAddInfoEXT * pParametersAddInfo_ = {} ) - VULKAN_HPP_NOEXCEPT - : maxSpsStdCount( maxSpsStdCount_ ) - , maxPpsStdCount( maxPpsStdCount_ ) - , pParametersAddInfo( pParametersAddInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH264SessionParametersCreateInfoEXT( - VideoEncodeH264SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264SessionParametersCreateInfoEXT( VkVideoEncodeH264SessionParametersCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoEncodeH264SessionParametersCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264SessionParametersCreateInfoEXT & - operator=( VideoEncodeH264SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264SessionParametersCreateInfoEXT & - operator=( VkVideoEncodeH264SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersCreateInfoEXT & - setMaxSpsStdCount( uint32_t maxSpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxSpsStdCount = maxSpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersCreateInfoEXT & - setMaxPpsStdCount( uint32_t maxPpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxPpsStdCount = maxPpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264SessionParametersCreateInfoEXT & setPParametersAddInfo( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersAddInfoEXT * pParametersAddInfo_ ) VULKAN_HPP_NOEXCEPT - { - pParametersAddInfo = pParametersAddInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264SessionParametersCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264SessionParametersCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxSpsStdCount, maxPpsStdCount, pParametersAddInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264SessionParametersCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxSpsStdCount == rhs.maxSpsStdCount ) && - ( maxPpsStdCount == rhs.maxPpsStdCount ) && ( pParametersAddInfo == rhs.pParametersAddInfo ); -# endif - } - - bool operator!=( VideoEncodeH264SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264SessionParametersCreateInfoEXT; - const void * pNext = {}; - uint32_t maxSpsStdCount = {}; - uint32_t maxPpsStdCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersAddInfoEXT * pParametersAddInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264SessionParametersCreateInfoEXT ) == - sizeof( VkVideoEncodeH264SessionParametersCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264SessionParametersCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264SessionParametersCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH264VclFrameInfoEXT - { - using NativeType = VkVideoEncodeH264VclFrameInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH264VclFrameInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH264VclFrameInfoEXT( - uint8_t refDefaultFinalList0EntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefDefaultFinalList0Entries_ = {}, - uint8_t refDefaultFinalList1EntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefDefaultFinalList1Entries_ = {}, - uint32_t naluSliceEntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264NaluSliceEXT * pNaluSliceEntries_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pCurrentPictureInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : refDefaultFinalList0EntryCount( refDefaultFinalList0EntryCount_ ) - , pRefDefaultFinalList0Entries( pRefDefaultFinalList0Entries_ ) - , refDefaultFinalList1EntryCount( refDefaultFinalList1EntryCount_ ) - , pRefDefaultFinalList1Entries( pRefDefaultFinalList1Entries_ ) - , naluSliceEntryCount( naluSliceEntryCount_ ) - , pNaluSliceEntries( pNaluSliceEntries_ ) - , pCurrentPictureInfo( pCurrentPictureInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH264VclFrameInfoEXT( VideoEncodeH264VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264VclFrameInfoEXT( VkVideoEncodeH264VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH264VclFrameInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264VclFrameInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refDefaultFinalList0Entries_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refDefaultFinalList1Entries_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - naluSliceEntries_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pCurrentPictureInfo_ = {} ) - : refDefaultFinalList0EntryCount( static_cast( refDefaultFinalList0Entries_.size() ) ) - , pRefDefaultFinalList0Entries( refDefaultFinalList0Entries_.data() ) - , refDefaultFinalList1EntryCount( static_cast( refDefaultFinalList1Entries_.size() ) ) - , pRefDefaultFinalList1Entries( refDefaultFinalList1Entries_.data() ) - , naluSliceEntryCount( static_cast( naluSliceEntries_.size() ) ) - , pNaluSliceEntries( naluSliceEntries_.data() ) - , pCurrentPictureInfo( pCurrentPictureInfo_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH264VclFrameInfoEXT & - operator=( VideoEncodeH264VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH264VclFrameInfoEXT & operator=( VkVideoEncodeH264VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & - setRefDefaultFinalList0EntryCount( uint8_t refDefaultFinalList0EntryCount_ ) VULKAN_HPP_NOEXCEPT - { - refDefaultFinalList0EntryCount = refDefaultFinalList0EntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & setPRefDefaultFinalList0Entries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefDefaultFinalList0Entries_ ) VULKAN_HPP_NOEXCEPT - { - pRefDefaultFinalList0Entries = pRefDefaultFinalList0Entries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264VclFrameInfoEXT & setRefDefaultFinalList0Entries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refDefaultFinalList0Entries_ ) VULKAN_HPP_NOEXCEPT - { - refDefaultFinalList0EntryCount = static_cast( refDefaultFinalList0Entries_.size() ); - pRefDefaultFinalList0Entries = refDefaultFinalList0Entries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & - setRefDefaultFinalList1EntryCount( uint8_t refDefaultFinalList1EntryCount_ ) VULKAN_HPP_NOEXCEPT - { - refDefaultFinalList1EntryCount = refDefaultFinalList1EntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & setPRefDefaultFinalList1Entries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefDefaultFinalList1Entries_ ) VULKAN_HPP_NOEXCEPT - { - pRefDefaultFinalList1Entries = pRefDefaultFinalList1Entries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264VclFrameInfoEXT & setRefDefaultFinalList1Entries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - refDefaultFinalList1Entries_ ) VULKAN_HPP_NOEXCEPT - { - refDefaultFinalList1EntryCount = static_cast( refDefaultFinalList1Entries_.size() ); - pRefDefaultFinalList1Entries = refDefaultFinalList1Entries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & - setNaluSliceEntryCount( uint32_t naluSliceEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - naluSliceEntryCount = naluSliceEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & setPNaluSliceEntries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264NaluSliceEXT * pNaluSliceEntries_ ) VULKAN_HPP_NOEXCEPT - { - pNaluSliceEntries = pNaluSliceEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH264VclFrameInfoEXT & setNaluSliceEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - naluSliceEntries_ ) VULKAN_HPP_NOEXCEPT - { - naluSliceEntryCount = static_cast( naluSliceEntries_.size() ); - pNaluSliceEntries = naluSliceEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH264VclFrameInfoEXT & setPCurrentPictureInfo( - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pCurrentPictureInfo_ ) VULKAN_HPP_NOEXCEPT - { - pCurrentPictureInfo = pCurrentPictureInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH264VclFrameInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH264VclFrameInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - refDefaultFinalList0EntryCount, - pRefDefaultFinalList0Entries, - refDefaultFinalList1EntryCount, - pRefDefaultFinalList1Entries, - naluSliceEntryCount, - pNaluSliceEntries, - pCurrentPictureInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH264VclFrameInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH264VclFrameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( refDefaultFinalList0EntryCount == rhs.refDefaultFinalList0EntryCount ) && - ( pRefDefaultFinalList0Entries == rhs.pRefDefaultFinalList0Entries ) && - ( refDefaultFinalList1EntryCount == rhs.refDefaultFinalList1EntryCount ) && - ( pRefDefaultFinalList1Entries == rhs.pRefDefaultFinalList1Entries ) && - ( naluSliceEntryCount == rhs.naluSliceEntryCount ) && ( pNaluSliceEntries == rhs.pNaluSliceEntries ) && - ( pCurrentPictureInfo == rhs.pCurrentPictureInfo ); -# endif - } - - bool operator!=( VideoEncodeH264VclFrameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH264VclFrameInfoEXT; - const void * pNext = {}; - uint8_t refDefaultFinalList0EntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefDefaultFinalList0Entries = {}; - uint8_t refDefaultFinalList1EntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pRefDefaultFinalList1Entries = {}; - uint32_t naluSliceEntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264NaluSliceEXT * pNaluSliceEntries = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH264DpbSlotInfoEXT * pCurrentPictureInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH264VclFrameInfoEXT ) == - sizeof( VkVideoEncodeH264VclFrameInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH264VclFrameInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH264VclFrameInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265CapabilitiesEXT - { - using NativeType = VkVideoEncodeH265CapabilitiesEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH265CapabilitiesEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT( - VULKAN_HPP_NAMESPACE::VideoEncodeH265CapabilityFlagsEXT flags_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265InputModeFlagsEXT inputModeFlags_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265OutputModeFlagsEXT outputModeFlags_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265CtbSizeFlagsEXT ctbSizes_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D inputImageDataAlignment_ = {}, - uint8_t maxNumL0ReferenceForP_ = {}, - uint8_t maxNumL0ReferenceForB_ = {}, - uint8_t maxNumL1Reference_ = {}, - uint8_t maxNumSubLayers_ = {}, - uint8_t qualityLevelCount_ = {}, - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , inputModeFlags( inputModeFlags_ ) - , outputModeFlags( outputModeFlags_ ) - , ctbSizes( ctbSizes_ ) - , inputImageDataAlignment( inputImageDataAlignment_ ) - , maxNumL0ReferenceForP( maxNumL0ReferenceForP_ ) - , maxNumL0ReferenceForB( maxNumL0ReferenceForB_ ) - , maxNumL1Reference( maxNumL1Reference_ ) - , maxNumSubLayers( maxNumSubLayers_ ) - , qualityLevelCount( qualityLevelCount_ ) - , stdExtensionVersion( stdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 - VideoEncodeH265CapabilitiesEXT( VideoEncodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265CapabilitiesEXT( VkVideoEncodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265CapabilitiesEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265CapabilitiesEXT & - operator=( VideoEncodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265CapabilitiesEXT & operator=( VkVideoEncodeH265CapabilitiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH265CapabilityFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setInputModeFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH265InputModeFlagsEXT inputModeFlags_ ) VULKAN_HPP_NOEXCEPT - { - inputModeFlags = inputModeFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setOutputModeFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH265OutputModeFlagsEXT outputModeFlags_ ) VULKAN_HPP_NOEXCEPT - { - outputModeFlags = outputModeFlags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setCtbSizes( VULKAN_HPP_NAMESPACE::VideoEncodeH265CtbSizeFlagsEXT ctbSizes_ ) VULKAN_HPP_NOEXCEPT - { - ctbSizes = ctbSizes_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setInputImageDataAlignment( VULKAN_HPP_NAMESPACE::Extent2D const & inputImageDataAlignment_ ) VULKAN_HPP_NOEXCEPT - { - inputImageDataAlignment = inputImageDataAlignment_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setMaxNumL0ReferenceForP( uint8_t maxNumL0ReferenceForP_ ) VULKAN_HPP_NOEXCEPT - { - maxNumL0ReferenceForP = maxNumL0ReferenceForP_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setMaxNumL0ReferenceForB( uint8_t maxNumL0ReferenceForB_ ) VULKAN_HPP_NOEXCEPT - { - maxNumL0ReferenceForB = maxNumL0ReferenceForB_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setMaxNumL1Reference( uint8_t maxNumL1Reference_ ) VULKAN_HPP_NOEXCEPT - { - maxNumL1Reference = maxNumL1Reference_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setMaxNumSubLayers( uint8_t maxNumSubLayers_ ) VULKAN_HPP_NOEXCEPT - { - maxNumSubLayers = maxNumSubLayers_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & - setQualityLevelCount( uint8_t qualityLevelCount_ ) VULKAN_HPP_NOEXCEPT - { - qualityLevelCount = qualityLevelCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265CapabilitiesEXT & setStdExtensionVersion( - VULKAN_HPP_NAMESPACE::ExtensionProperties const & stdExtensionVersion_ ) VULKAN_HPP_NOEXCEPT - { - stdExtensionVersion = stdExtensionVersion_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265CapabilitiesEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265CapabilitiesEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - inputModeFlags, - outputModeFlags, - ctbSizes, - inputImageDataAlignment, - maxNumL0ReferenceForP, - maxNumL0ReferenceForB, - maxNumL1Reference, - maxNumSubLayers, - qualityLevelCount, - stdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265CapabilitiesEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( inputModeFlags == rhs.inputModeFlags ) && ( outputModeFlags == rhs.outputModeFlags ) && - ( ctbSizes == rhs.ctbSizes ) && ( inputImageDataAlignment == rhs.inputImageDataAlignment ) && - ( maxNumL0ReferenceForP == rhs.maxNumL0ReferenceForP ) && - ( maxNumL0ReferenceForB == rhs.maxNumL0ReferenceForB ) && ( maxNumL1Reference == rhs.maxNumL1Reference ) && - ( maxNumSubLayers == rhs.maxNumSubLayers ) && ( qualityLevelCount == rhs.qualityLevelCount ) && - ( stdExtensionVersion == rhs.stdExtensionVersion ); -# endif - } - - bool operator!=( VideoEncodeH265CapabilitiesEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265CapabilitiesEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265CapabilityFlagsEXT flags = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265InputModeFlagsEXT inputModeFlags = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265OutputModeFlagsEXT outputModeFlags = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265CtbSizeFlagsEXT ctbSizes = {}; - VULKAN_HPP_NAMESPACE::Extent2D inputImageDataAlignment = {}; - uint8_t maxNumL0ReferenceForP = {}; - uint8_t maxNumL0ReferenceForB = {}; - uint8_t maxNumL1Reference = {}; - uint8_t maxNumSubLayers = {}; - uint8_t qualityLevelCount = {}; - VULKAN_HPP_NAMESPACE::ExtensionProperties stdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265CapabilitiesEXT ) == - sizeof( VkVideoEncodeH265CapabilitiesEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265CapabilitiesEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265CapabilitiesEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265DpbSlotInfoEXT - { - using NativeType = VkVideoEncodeH265DpbSlotInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH265DpbSlotInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265DpbSlotInfoEXT( - int8_t slotIndex_ = {}, const StdVideoEncodeH265ReferenceInfo * pStdReferenceInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : slotIndex( slotIndex_ ) - , pStdReferenceInfo( pStdReferenceInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265DpbSlotInfoEXT( VideoEncodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265DpbSlotInfoEXT( VkVideoEncodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265DpbSlotInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265DpbSlotInfoEXT & - operator=( VideoEncodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265DpbSlotInfoEXT & operator=( VkVideoEncodeH265DpbSlotInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265DpbSlotInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265DpbSlotInfoEXT & setSlotIndex( int8_t slotIndex_ ) VULKAN_HPP_NOEXCEPT - { - slotIndex = slotIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265DpbSlotInfoEXT & - setPStdReferenceInfo( const StdVideoEncodeH265ReferenceInfo * pStdReferenceInfo_ ) VULKAN_HPP_NOEXCEPT - { - pStdReferenceInfo = pStdReferenceInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265DpbSlotInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265DpbSlotInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, slotIndex, pStdReferenceInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265DpbSlotInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( slotIndex == rhs.slotIndex ) && - ( pStdReferenceInfo == rhs.pStdReferenceInfo ); -# endif - } - - bool operator!=( VideoEncodeH265DpbSlotInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265DpbSlotInfoEXT; - const void * pNext = {}; - int8_t slotIndex = {}; - const StdVideoEncodeH265ReferenceInfo * pStdReferenceInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT ) == - sizeof( VkVideoEncodeH265DpbSlotInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265DpbSlotInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265DpbSlotInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265EmitPictureParametersEXT - { - using NativeType = VkVideoEncodeH265EmitPictureParametersEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH265EmitPictureParametersEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeH265EmitPictureParametersEXT( uint8_t vpsId_ = {}, - uint8_t spsId_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 emitVpsEnable_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable_ = {}, - uint32_t ppsIdEntryCount_ = {}, - const uint8_t * ppsIdEntries_ = {} ) VULKAN_HPP_NOEXCEPT - : vpsId( vpsId_ ) - , spsId( spsId_ ) - , emitVpsEnable( emitVpsEnable_ ) - , emitSpsEnable( emitSpsEnable_ ) - , ppsIdEntryCount( ppsIdEntryCount_ ) - , ppsIdEntries( ppsIdEntries_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH265EmitPictureParametersEXT( VideoEncodeH265EmitPictureParametersEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265EmitPictureParametersEXT( VkVideoEncodeH265EmitPictureParametersEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265EmitPictureParametersEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265EmitPictureParametersEXT( - uint8_t vpsId_, - uint8_t spsId_, - VULKAN_HPP_NAMESPACE::Bool32 emitVpsEnable_, - VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & psIdEntries_ ) - : vpsId( vpsId_ ) - , spsId( spsId_ ) - , emitVpsEnable( emitVpsEnable_ ) - , emitSpsEnable( emitSpsEnable_ ) - , ppsIdEntryCount( static_cast( psIdEntries_.size() ) ) - , ppsIdEntries( psIdEntries_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265EmitPictureParametersEXT & - operator=( VideoEncodeH265EmitPictureParametersEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265EmitPictureParametersEXT & - operator=( VkVideoEncodeH265EmitPictureParametersEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & setVpsId( uint8_t vpsId_ ) VULKAN_HPP_NOEXCEPT - { - vpsId = vpsId_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & setSpsId( uint8_t spsId_ ) VULKAN_HPP_NOEXCEPT - { - spsId = spsId_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & - setEmitVpsEnable( VULKAN_HPP_NAMESPACE::Bool32 emitVpsEnable_ ) VULKAN_HPP_NOEXCEPT - { - emitVpsEnable = emitVpsEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & - setEmitSpsEnable( VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable_ ) VULKAN_HPP_NOEXCEPT - { - emitSpsEnable = emitSpsEnable_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & - setPpsIdEntryCount( uint32_t ppsIdEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - ppsIdEntryCount = ppsIdEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265EmitPictureParametersEXT & - setPpsIdEntries( const uint8_t * ppsIdEntries_ ) VULKAN_HPP_NOEXCEPT - { - ppsIdEntries = ppsIdEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265EmitPictureParametersEXT & setPsIdEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & psIdEntries_ ) VULKAN_HPP_NOEXCEPT - { - ppsIdEntryCount = static_cast( psIdEntries_.size() ); - ppsIdEntries = psIdEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265EmitPictureParametersEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265EmitPictureParametersEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, vpsId, spsId, emitVpsEnable, emitSpsEnable, ppsIdEntryCount, ppsIdEntries ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265EmitPictureParametersEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265EmitPictureParametersEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( vpsId == rhs.vpsId ) && ( spsId == rhs.spsId ) && - ( emitVpsEnable == rhs.emitVpsEnable ) && ( emitSpsEnable == rhs.emitSpsEnable ) && - ( ppsIdEntryCount == rhs.ppsIdEntryCount ) && ( ppsIdEntries == rhs.ppsIdEntries ); -# endif - } - - bool operator!=( VideoEncodeH265EmitPictureParametersEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265EmitPictureParametersEXT; - const void * pNext = {}; - uint8_t vpsId = {}; - uint8_t spsId = {}; - VULKAN_HPP_NAMESPACE::Bool32 emitVpsEnable = {}; - VULKAN_HPP_NAMESPACE::Bool32 emitSpsEnable = {}; - uint32_t ppsIdEntryCount = {}; - const uint8_t * ppsIdEntries = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265EmitPictureParametersEXT ) == - sizeof( VkVideoEncodeH265EmitPictureParametersEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265EmitPictureParametersEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265EmitPictureParametersEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265FrameSizeEXT - { - using NativeType = VkVideoEncodeH265FrameSizeEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265FrameSizeEXT( uint32_t frameISize_ = {}, - uint32_t framePSize_ = {}, - uint32_t frameBSize_ = {} ) VULKAN_HPP_NOEXCEPT - : frameISize( frameISize_ ) - , framePSize( framePSize_ ) - , frameBSize( frameBSize_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265FrameSizeEXT( VideoEncodeH265FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265FrameSizeEXT( VkVideoEncodeH265FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265FrameSizeEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265FrameSizeEXT & operator=( VideoEncodeH265FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265FrameSizeEXT & operator=( VkVideoEncodeH265FrameSizeEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265FrameSizeEXT & setFrameISize( uint32_t frameISize_ ) VULKAN_HPP_NOEXCEPT - { - frameISize = frameISize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265FrameSizeEXT & setFramePSize( uint32_t framePSize_ ) VULKAN_HPP_NOEXCEPT - { - framePSize = framePSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265FrameSizeEXT & setFrameBSize( uint32_t frameBSize_ ) VULKAN_HPP_NOEXCEPT - { - frameBSize = frameBSize_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265FrameSizeEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265FrameSizeEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( frameISize, framePSize, frameBSize ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265FrameSizeEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265FrameSizeEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( frameISize == rhs.frameISize ) && ( framePSize == rhs.framePSize ) && ( frameBSize == rhs.frameBSize ); -# endif - } - - bool operator!=( VideoEncodeH265FrameSizeEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - uint32_t frameISize = {}; - uint32_t framePSize = {}; - uint32_t frameBSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265FrameSizeEXT ) == - sizeof( VkVideoEncodeH265FrameSizeEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265FrameSizeEXT is not nothrow_move_constructible!" ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265ReferenceListsEXT - { - using NativeType = VkVideoEncodeH265ReferenceListsEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH265ReferenceListsEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265ReferenceListsEXT( - uint8_t referenceList0EntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT * pReferenceList0Entries_ = {}, - uint8_t referenceList1EntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT * pReferenceList1Entries_ = {}, - const StdVideoEncodeH265ReferenceModifications * pReferenceModifications_ = {} ) VULKAN_HPP_NOEXCEPT - : referenceList0EntryCount( referenceList0EntryCount_ ) - , pReferenceList0Entries( pReferenceList0Entries_ ) - , referenceList1EntryCount( referenceList1EntryCount_ ) - , pReferenceList1Entries( pReferenceList1Entries_ ) - , pReferenceModifications( pReferenceModifications_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265ReferenceListsEXT( VideoEncodeH265ReferenceListsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265ReferenceListsEXT( VkVideoEncodeH265ReferenceListsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265ReferenceListsEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265ReferenceListsEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceList0Entries_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceList1Entries_ = {}, - const StdVideoEncodeH265ReferenceModifications * pReferenceModifications_ = {} ) - : referenceList0EntryCount( static_cast( referenceList0Entries_.size() ) ) - , pReferenceList0Entries( referenceList0Entries_.data() ) - , referenceList1EntryCount( static_cast( referenceList1Entries_.size() ) ) - , pReferenceList1Entries( referenceList1Entries_.data() ) - , pReferenceModifications( pReferenceModifications_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265ReferenceListsEXT & - operator=( VideoEncodeH265ReferenceListsEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265ReferenceListsEXT & operator=( VkVideoEncodeH265ReferenceListsEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ReferenceListsEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ReferenceListsEXT & - setReferenceList0EntryCount( uint8_t referenceList0EntryCount_ ) VULKAN_HPP_NOEXCEPT - { - referenceList0EntryCount = referenceList0EntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ReferenceListsEXT & setPReferenceList0Entries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT * pReferenceList0Entries_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceList0Entries = pReferenceList0Entries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265ReferenceListsEXT & setReferenceList0Entries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceList0Entries_ ) VULKAN_HPP_NOEXCEPT - { - referenceList0EntryCount = static_cast( referenceList0Entries_.size() ); - pReferenceList0Entries = referenceList0Entries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ReferenceListsEXT & - setReferenceList1EntryCount( uint8_t referenceList1EntryCount_ ) VULKAN_HPP_NOEXCEPT - { - referenceList1EntryCount = referenceList1EntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ReferenceListsEXT & setPReferenceList1Entries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT * pReferenceList1Entries_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceList1Entries = pReferenceList1Entries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265ReferenceListsEXT & setReferenceList1Entries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceList1Entries_ ) VULKAN_HPP_NOEXCEPT - { - referenceList1EntryCount = static_cast( referenceList1Entries_.size() ); - pReferenceList1Entries = referenceList1Entries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ReferenceListsEXT & setPReferenceModifications( - const StdVideoEncodeH265ReferenceModifications * pReferenceModifications_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceModifications = pReferenceModifications_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265ReferenceListsEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265ReferenceListsEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - referenceList0EntryCount, - pReferenceList0Entries, - referenceList1EntryCount, - pReferenceList1Entries, - pReferenceModifications ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265ReferenceListsEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265ReferenceListsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( referenceList0EntryCount == rhs.referenceList0EntryCount ) && - ( pReferenceList0Entries == rhs.pReferenceList0Entries ) && - ( referenceList1EntryCount == rhs.referenceList1EntryCount ) && - ( pReferenceList1Entries == rhs.pReferenceList1Entries ) && - ( pReferenceModifications == rhs.pReferenceModifications ); -# endif - } - - bool operator!=( VideoEncodeH265ReferenceListsEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265ReferenceListsEXT; - const void * pNext = {}; - uint8_t referenceList0EntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT * pReferenceList0Entries = {}; - uint8_t referenceList1EntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH265DpbSlotInfoEXT * pReferenceList1Entries = {}; - const StdVideoEncodeH265ReferenceModifications * pReferenceModifications = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT ) == - sizeof( VkVideoEncodeH265ReferenceListsEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265ReferenceListsEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265ReferenceListsEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265NaluSliceEXT - { - using NativeType = VkVideoEncodeH265NaluSliceEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH265NaluSliceEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265NaluSliceEXT( - uint32_t ctbCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists_ = {}, - const StdVideoEncodeH265SliceHeader * pSliceHeaderStd_ = {} ) VULKAN_HPP_NOEXCEPT - : ctbCount( ctbCount_ ) - , pReferenceFinalLists( pReferenceFinalLists_ ) - , pSliceHeaderStd( pSliceHeaderStd_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265NaluSliceEXT( VideoEncodeH265NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265NaluSliceEXT( VkVideoEncodeH265NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265NaluSliceEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265NaluSliceEXT & operator=( VideoEncodeH265NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265NaluSliceEXT & operator=( VkVideoEncodeH265NaluSliceEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265NaluSliceEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265NaluSliceEXT & setCtbCount( uint32_t ctbCount_ ) VULKAN_HPP_NOEXCEPT - { - ctbCount = ctbCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265NaluSliceEXT & setPReferenceFinalLists( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceFinalLists = pReferenceFinalLists_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265NaluSliceEXT & - setPSliceHeaderStd( const StdVideoEncodeH265SliceHeader * pSliceHeaderStd_ ) VULKAN_HPP_NOEXCEPT - { - pSliceHeaderStd = pSliceHeaderStd_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265NaluSliceEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265NaluSliceEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, ctbCount, pReferenceFinalLists, pSliceHeaderStd ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265NaluSliceEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265NaluSliceEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( ctbCount == rhs.ctbCount ) && - ( pReferenceFinalLists == rhs.pReferenceFinalLists ) && ( pSliceHeaderStd == rhs.pSliceHeaderStd ); -# endif - } - - bool operator!=( VideoEncodeH265NaluSliceEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265NaluSliceEXT; - const void * pNext = {}; - uint32_t ctbCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists = {}; - const StdVideoEncodeH265SliceHeader * pSliceHeaderStd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265NaluSliceEXT ) == - sizeof( VkVideoEncodeH265NaluSliceEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265NaluSliceEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265NaluSliceEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265ProfileEXT - { - using NativeType = VkVideoEncodeH265ProfileEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH265ProfileEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265ProfileEXT( StdVideoH265ProfileIdc stdProfileIdc_ = {} ) VULKAN_HPP_NOEXCEPT - : stdProfileIdc( stdProfileIdc_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265ProfileEXT( VideoEncodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265ProfileEXT( VkVideoEncodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265ProfileEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265ProfileEXT & operator=( VideoEncodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265ProfileEXT & operator=( VkVideoEncodeH265ProfileEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ProfileEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265ProfileEXT & - setStdProfileIdc( StdVideoH265ProfileIdc stdProfileIdc_ ) VULKAN_HPP_NOEXCEPT - { - stdProfileIdc = stdProfileIdc_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265ProfileEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265ProfileEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, stdProfileIdc ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( VideoEncodeH265ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH265ProfileIdc ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( VideoEncodeH265ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( memcmp( &stdProfileIdc, &rhs.stdProfileIdc, sizeof( StdVideoH265ProfileIdc ) ) == 0 ); - } - - bool operator!=( VideoEncodeH265ProfileEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265ProfileEXT; - const void * pNext = {}; - StdVideoH265ProfileIdc stdProfileIdc = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265ProfileEXT ) == - sizeof( VkVideoEncodeH265ProfileEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoEncodeH265ProfileEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265ProfileEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265QpEXT - { - using NativeType = VkVideoEncodeH265QpEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeH265QpEXT( int32_t qpI_ = {}, int32_t qpP_ = {}, int32_t qpB_ = {} ) VULKAN_HPP_NOEXCEPT - : qpI( qpI_ ) - , qpP( qpP_ ) - , qpB( qpB_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH265QpEXT( VideoEncodeH265QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265QpEXT( VkVideoEncodeH265QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265QpEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265QpEXT & operator=( VideoEncodeH265QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265QpEXT & operator=( VkVideoEncodeH265QpEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265QpEXT & setQpI( int32_t qpI_ ) VULKAN_HPP_NOEXCEPT - { - qpI = qpI_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265QpEXT & setQpP( int32_t qpP_ ) VULKAN_HPP_NOEXCEPT - { - qpP = qpP_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265QpEXT & setQpB( int32_t qpB_ ) VULKAN_HPP_NOEXCEPT - { - qpB = qpB_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265QpEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265QpEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( qpI, qpP, qpB ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265QpEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265QpEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( qpI == rhs.qpI ) && ( qpP == rhs.qpP ) && ( qpB == rhs.qpB ); -# endif - } - - bool operator!=( VideoEncodeH265QpEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - int32_t qpI = {}; - int32_t qpP = {}; - int32_t qpB = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT ) == sizeof( VkVideoEncodeH265QpEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoEncodeH265QpEXT is not nothrow_move_constructible!" ); -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265RateControlInfoEXT - { - using NativeType = VkVideoEncodeH265RateControlInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH265RateControlInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlInfoEXT( - uint32_t gopFrameCount_ = {}, - uint32_t idrPeriod_ = {}, - uint32_t consecutiveBFrameCount_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlStructureFlagBitsEXT rateControlStructure_ = - VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlStructureFlagBitsEXT::eUnknown, - uint8_t subLayerCount_ = {} ) VULKAN_HPP_NOEXCEPT - : gopFrameCount( gopFrameCount_ ) - , idrPeriod( idrPeriod_ ) - , consecutiveBFrameCount( consecutiveBFrameCount_ ) - , rateControlStructure( rateControlStructure_ ) - , subLayerCount( subLayerCount_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265RateControlInfoEXT( VideoEncodeH265RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265RateControlInfoEXT( VkVideoEncodeH265RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265RateControlInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265RateControlInfoEXT & - operator=( VideoEncodeH265RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265RateControlInfoEXT & operator=( VkVideoEncodeH265RateControlInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlInfoEXT & - setGopFrameCount( uint32_t gopFrameCount_ ) VULKAN_HPP_NOEXCEPT - { - gopFrameCount = gopFrameCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlInfoEXT & setIdrPeriod( uint32_t idrPeriod_ ) VULKAN_HPP_NOEXCEPT - { - idrPeriod = idrPeriod_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlInfoEXT & - setConsecutiveBFrameCount( uint32_t consecutiveBFrameCount_ ) VULKAN_HPP_NOEXCEPT - { - consecutiveBFrameCount = consecutiveBFrameCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlInfoEXT & setRateControlStructure( - VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlStructureFlagBitsEXT rateControlStructure_ ) VULKAN_HPP_NOEXCEPT - { - rateControlStructure = rateControlStructure_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlInfoEXT & - setSubLayerCount( uint8_t subLayerCount_ ) VULKAN_HPP_NOEXCEPT - { - subLayerCount = subLayerCount_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265RateControlInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265RateControlInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, gopFrameCount, idrPeriod, consecutiveBFrameCount, rateControlStructure, subLayerCount ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265RateControlInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265RateControlInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( gopFrameCount == rhs.gopFrameCount ) && - ( idrPeriod == rhs.idrPeriod ) && ( consecutiveBFrameCount == rhs.consecutiveBFrameCount ) && - ( rateControlStructure == rhs.rateControlStructure ) && ( subLayerCount == rhs.subLayerCount ); -# endif - } - - bool operator!=( VideoEncodeH265RateControlInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265RateControlInfoEXT; - const void * pNext = {}; - uint32_t gopFrameCount = {}; - uint32_t idrPeriod = {}; - uint32_t consecutiveBFrameCount = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlStructureFlagBitsEXT rateControlStructure = - VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlStructureFlagBitsEXT::eUnknown; - uint8_t subLayerCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlInfoEXT ) == - sizeof( VkVideoEncodeH265RateControlInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265RateControlInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265RateControlInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265RateControlLayerInfoEXT - { - using NativeType = VkVideoEncodeH265RateControlLayerInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH265RateControlLayerInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlLayerInfoEXT( - uint8_t temporalId_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useInitialRcQp_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT initialRcQp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useMinQp_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT minQp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useMaxQp_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT maxQp_ = {}, - VULKAN_HPP_NAMESPACE::Bool32 useMaxFrameSize_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeH265FrameSizeEXT maxFrameSize_ = {} ) VULKAN_HPP_NOEXCEPT - : temporalId( temporalId_ ) - , useInitialRcQp( useInitialRcQp_ ) - , initialRcQp( initialRcQp_ ) - , useMinQp( useMinQp_ ) - , minQp( minQp_ ) - , useMaxQp( useMaxQp_ ) - , maxQp( maxQp_ ) - , useMaxFrameSize( useMaxFrameSize_ ) - , maxFrameSize( maxFrameSize_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH265RateControlLayerInfoEXT( VideoEncodeH265RateControlLayerInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265RateControlLayerInfoEXT( VkVideoEncodeH265RateControlLayerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265RateControlLayerInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265RateControlLayerInfoEXT & - operator=( VideoEncodeH265RateControlLayerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265RateControlLayerInfoEXT & - operator=( VkVideoEncodeH265RateControlLayerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setTemporalId( uint8_t temporalId_ ) VULKAN_HPP_NOEXCEPT - { - temporalId = temporalId_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setUseInitialRcQp( VULKAN_HPP_NAMESPACE::Bool32 useInitialRcQp_ ) VULKAN_HPP_NOEXCEPT - { - useInitialRcQp = useInitialRcQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setInitialRcQp( VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT const & initialRcQp_ ) VULKAN_HPP_NOEXCEPT - { - initialRcQp = initialRcQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setUseMinQp( VULKAN_HPP_NAMESPACE::Bool32 useMinQp_ ) VULKAN_HPP_NOEXCEPT - { - useMinQp = useMinQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setMinQp( VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT const & minQp_ ) VULKAN_HPP_NOEXCEPT - { - minQp = minQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setUseMaxQp( VULKAN_HPP_NAMESPACE::Bool32 useMaxQp_ ) VULKAN_HPP_NOEXCEPT - { - useMaxQp = useMaxQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setMaxQp( VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT const & maxQp_ ) VULKAN_HPP_NOEXCEPT - { - maxQp = maxQp_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setUseMaxFrameSize( VULKAN_HPP_NAMESPACE::Bool32 useMaxFrameSize_ ) VULKAN_HPP_NOEXCEPT - { - useMaxFrameSize = useMaxFrameSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265RateControlLayerInfoEXT & - setMaxFrameSize( VULKAN_HPP_NAMESPACE::VideoEncodeH265FrameSizeEXT const & maxFrameSize_ ) VULKAN_HPP_NOEXCEPT - { - maxFrameSize = maxFrameSize_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265RateControlLayerInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265RateControlLayerInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - temporalId, - useInitialRcQp, - initialRcQp, - useMinQp, - minQp, - useMaxQp, - maxQp, - useMaxFrameSize, - maxFrameSize ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265RateControlLayerInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265RateControlLayerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( temporalId == rhs.temporalId ) && - ( useInitialRcQp == rhs.useInitialRcQp ) && ( initialRcQp == rhs.initialRcQp ) && - ( useMinQp == rhs.useMinQp ) && ( minQp == rhs.minQp ) && ( useMaxQp == rhs.useMaxQp ) && - ( maxQp == rhs.maxQp ) && ( useMaxFrameSize == rhs.useMaxFrameSize ) && - ( maxFrameSize == rhs.maxFrameSize ); -# endif - } - - bool operator!=( VideoEncodeH265RateControlLayerInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265RateControlLayerInfoEXT; - const void * pNext = {}; - uint8_t temporalId = {}; - VULKAN_HPP_NAMESPACE::Bool32 useInitialRcQp = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT initialRcQp = {}; - VULKAN_HPP_NAMESPACE::Bool32 useMinQp = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT minQp = {}; - VULKAN_HPP_NAMESPACE::Bool32 useMaxQp = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265QpEXT maxQp = {}; - VULKAN_HPP_NAMESPACE::Bool32 useMaxFrameSize = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265FrameSizeEXT maxFrameSize = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265RateControlLayerInfoEXT ) == - sizeof( VkVideoEncodeH265RateControlLayerInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265RateControlLayerInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265RateControlLayerInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265SessionCreateInfoEXT - { - using NativeType = VkVideoEncodeH265SessionCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH265SessionCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionCreateInfoEXT( - VULKAN_HPP_NAMESPACE::VideoEncodeH265CreateFlagsEXT flags_ = {}, - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , pStdExtensionVersion( pStdExtensionVersion_ ) - {} - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionCreateInfoEXT( VideoEncodeH265SessionCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265SessionCreateInfoEXT( VkVideoEncodeH265SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265SessionCreateInfoEXT( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265SessionCreateInfoEXT & - operator=( VideoEncodeH265SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265SessionCreateInfoEXT & - operator=( VkVideoEncodeH265SessionCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionCreateInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionCreateInfoEXT & - setFlags( VULKAN_HPP_NAMESPACE::VideoEncodeH265CreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionCreateInfoEXT & setPStdExtensionVersion( - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion_ ) VULKAN_HPP_NOEXCEPT - { - pStdExtensionVersion = pStdExtensionVersion_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265SessionCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265SessionCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, pStdExtensionVersion ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265SessionCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( pStdExtensionVersion == rhs.pStdExtensionVersion ); -# endif - } - - bool operator!=( VideoEncodeH265SessionCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265SessionCreateInfoEXT; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeH265CreateFlagsEXT flags = {}; - const VULKAN_HPP_NAMESPACE::ExtensionProperties * pStdExtensionVersion = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionCreateInfoEXT ) == - sizeof( VkVideoEncodeH265SessionCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265SessionCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265SessionCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265SessionParametersAddInfoEXT - { - using NativeType = VkVideoEncodeH265SessionParametersAddInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH265SessionParametersAddInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265SessionParametersAddInfoEXT( - uint32_t vpsStdCount_ = {}, - const StdVideoH265VideoParameterSet * pVpsStd_ = {}, - uint32_t spsStdCount_ = {}, - const StdVideoH265SequenceParameterSet * pSpsStd_ = {}, - uint32_t ppsStdCount_ = {}, - const StdVideoH265PictureParameterSet * pPpsStd_ = {} ) VULKAN_HPP_NOEXCEPT - : vpsStdCount( vpsStdCount_ ) - , pVpsStd( pVpsStd_ ) - , spsStdCount( spsStdCount_ ) - , pSpsStd( pSpsStd_ ) - , ppsStdCount( ppsStdCount_ ) - , pPpsStd( pPpsStd_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH265SessionParametersAddInfoEXT( - VideoEncodeH265SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265SessionParametersAddInfoEXT( VkVideoEncodeH265SessionParametersAddInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoEncodeH265SessionParametersAddInfoEXT( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265SessionParametersAddInfoEXT( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & vpsStd_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ = {} ) - : vpsStdCount( static_cast( vpsStd_.size() ) ) - , pVpsStd( vpsStd_.data() ) - , spsStdCount( static_cast( spsStd_.size() ) ) - , pSpsStd( spsStd_.data() ) - , ppsStdCount( static_cast( ppsStd_.size() ) ) - , pPpsStd( ppsStd_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265SessionParametersAddInfoEXT & - operator=( VideoEncodeH265SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265SessionParametersAddInfoEXT & - operator=( VkVideoEncodeH265SessionParametersAddInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setVpsStdCount( uint32_t vpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - vpsStdCount = vpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setPVpsStd( const StdVideoH265VideoParameterSet * pVpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pVpsStd = pVpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265SessionParametersAddInfoEXT & - setVpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & vpsStd_ ) - VULKAN_HPP_NOEXCEPT - { - vpsStdCount = static_cast( vpsStd_.size() ); - pVpsStd = vpsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setSpsStdCount( uint32_t spsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - spsStdCount = spsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setPSpsStd( const StdVideoH265SequenceParameterSet * pSpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pSpsStd = pSpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265SessionParametersAddInfoEXT & - setSpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & spsStd_ ) - VULKAN_HPP_NOEXCEPT - { - spsStdCount = static_cast( spsStd_.size() ); - pSpsStd = spsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setPpsStdCount( uint32_t ppsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - ppsStdCount = ppsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersAddInfoEXT & - setPPpsStd( const StdVideoH265PictureParameterSet * pPpsStd_ ) VULKAN_HPP_NOEXCEPT - { - pPpsStd = pPpsStd_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265SessionParametersAddInfoEXT & - setPpsStd( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & ppsStd_ ) - VULKAN_HPP_NOEXCEPT - { - ppsStdCount = static_cast( ppsStd_.size() ); - pPpsStd = ppsStd_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265SessionParametersAddInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265SessionParametersAddInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, vpsStdCount, pVpsStd, spsStdCount, pSpsStd, ppsStdCount, pPpsStd ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265SessionParametersAddInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( vpsStdCount == rhs.vpsStdCount ) && - ( pVpsStd == rhs.pVpsStd ) && ( spsStdCount == rhs.spsStdCount ) && ( pSpsStd == rhs.pSpsStd ) && - ( ppsStdCount == rhs.ppsStdCount ) && ( pPpsStd == rhs.pPpsStd ); -# endif - } - - bool operator!=( VideoEncodeH265SessionParametersAddInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265SessionParametersAddInfoEXT; - const void * pNext = {}; - uint32_t vpsStdCount = {}; - const StdVideoH265VideoParameterSet * pVpsStd = {}; - uint32_t spsStdCount = {}; - const StdVideoH265SequenceParameterSet * pSpsStd = {}; - uint32_t ppsStdCount = {}; - const StdVideoH265PictureParameterSet * pPpsStd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersAddInfoEXT ) == - sizeof( VkVideoEncodeH265SessionParametersAddInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265SessionParametersAddInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265SessionParametersAddInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265SessionParametersCreateInfoEXT - { - using NativeType = VkVideoEncodeH265SessionParametersCreateInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeH265SessionParametersCreateInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265SessionParametersCreateInfoEXT( - uint32_t maxVpsStdCount_ = {}, - uint32_t maxSpsStdCount_ = {}, - uint32_t maxPpsStdCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersAddInfoEXT * pParametersAddInfo_ = {} ) - VULKAN_HPP_NOEXCEPT - : maxVpsStdCount( maxVpsStdCount_ ) - , maxSpsStdCount( maxSpsStdCount_ ) - , maxPpsStdCount( maxPpsStdCount_ ) - , pParametersAddInfo( pParametersAddInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeH265SessionParametersCreateInfoEXT( - VideoEncodeH265SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265SessionParametersCreateInfoEXT( VkVideoEncodeH265SessionParametersCreateInfoEXT const & rhs ) - VULKAN_HPP_NOEXCEPT - : VideoEncodeH265SessionParametersCreateInfoEXT( - *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265SessionParametersCreateInfoEXT & - operator=( VideoEncodeH265SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265SessionParametersCreateInfoEXT & - operator=( VkVideoEncodeH265SessionParametersCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersCreateInfoEXT & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersCreateInfoEXT & - setMaxVpsStdCount( uint32_t maxVpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxVpsStdCount = maxVpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersCreateInfoEXT & - setMaxSpsStdCount( uint32_t maxSpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxSpsStdCount = maxSpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersCreateInfoEXT & - setMaxPpsStdCount( uint32_t maxPpsStdCount_ ) VULKAN_HPP_NOEXCEPT - { - maxPpsStdCount = maxPpsStdCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265SessionParametersCreateInfoEXT & setPParametersAddInfo( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersAddInfoEXT * pParametersAddInfo_ ) VULKAN_HPP_NOEXCEPT - { - pParametersAddInfo = pParametersAddInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265SessionParametersCreateInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265SessionParametersCreateInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, maxVpsStdCount, maxSpsStdCount, maxPpsStdCount, pParametersAddInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265SessionParametersCreateInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( maxVpsStdCount == rhs.maxVpsStdCount ) && - ( maxSpsStdCount == rhs.maxSpsStdCount ) && ( maxPpsStdCount == rhs.maxPpsStdCount ) && - ( pParametersAddInfo == rhs.pParametersAddInfo ); -# endif - } - - bool operator!=( VideoEncodeH265SessionParametersCreateInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265SessionParametersCreateInfoEXT; - const void * pNext = {}; - uint32_t maxVpsStdCount = {}; - uint32_t maxSpsStdCount = {}; - uint32_t maxPpsStdCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersAddInfoEXT * pParametersAddInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265SessionParametersCreateInfoEXT ) == - sizeof( VkVideoEncodeH265SessionParametersCreateInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265SessionParametersCreateInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265SessionParametersCreateInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeH265VclFrameInfoEXT - { - using NativeType = VkVideoEncodeH265VclFrameInfoEXT; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeH265VclFrameInfoEXT; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeH265VclFrameInfoEXT( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists_ = {}, - uint32_t naluSliceEntryCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeH265NaluSliceEXT * pNaluSliceEntries_ = {}, - const StdVideoEncodeH265PictureInfo * pCurrentPictureInfo_ = {} ) VULKAN_HPP_NOEXCEPT - : pReferenceFinalLists( pReferenceFinalLists_ ) - , naluSliceEntryCount( naluSliceEntryCount_ ) - , pNaluSliceEntries( pNaluSliceEntries_ ) - , pCurrentPictureInfo( pCurrentPictureInfo_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeH265VclFrameInfoEXT( VideoEncodeH265VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265VclFrameInfoEXT( VkVideoEncodeH265VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeH265VclFrameInfoEXT( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265VclFrameInfoEXT( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - naluSliceEntries_, - const StdVideoEncodeH265PictureInfo * pCurrentPictureInfo_ = {} ) - : pReferenceFinalLists( pReferenceFinalLists_ ) - , naluSliceEntryCount( static_cast( naluSliceEntries_.size() ) ) - , pNaluSliceEntries( naluSliceEntries_.data() ) - , pCurrentPictureInfo( pCurrentPictureInfo_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeH265VclFrameInfoEXT & - operator=( VideoEncodeH265VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeH265VclFrameInfoEXT & operator=( VkVideoEncodeH265VclFrameInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265VclFrameInfoEXT & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265VclFrameInfoEXT & setPReferenceFinalLists( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceFinalLists = pReferenceFinalLists_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265VclFrameInfoEXT & - setNaluSliceEntryCount( uint32_t naluSliceEntryCount_ ) VULKAN_HPP_NOEXCEPT - { - naluSliceEntryCount = naluSliceEntryCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265VclFrameInfoEXT & setPNaluSliceEntries( - const VULKAN_HPP_NAMESPACE::VideoEncodeH265NaluSliceEXT * pNaluSliceEntries_ ) VULKAN_HPP_NOEXCEPT - { - pNaluSliceEntries = pNaluSliceEntries_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeH265VclFrameInfoEXT & setNaluSliceEntries( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - naluSliceEntries_ ) VULKAN_HPP_NOEXCEPT - { - naluSliceEntryCount = static_cast( naluSliceEntries_.size() ); - pNaluSliceEntries = naluSliceEntries_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeH265VclFrameInfoEXT & - setPCurrentPictureInfo( const StdVideoEncodeH265PictureInfo * pCurrentPictureInfo_ ) VULKAN_HPP_NOEXCEPT - { - pCurrentPictureInfo = pCurrentPictureInfo_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeH265VclFrameInfoEXT const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeH265VclFrameInfoEXT &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( - sType, pNext, pReferenceFinalLists, naluSliceEntryCount, pNaluSliceEntries, pCurrentPictureInfo ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeH265VclFrameInfoEXT const & ) const = default; -# else - bool operator==( VideoEncodeH265VclFrameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( pReferenceFinalLists == rhs.pReferenceFinalLists ) && - ( naluSliceEntryCount == rhs.naluSliceEntryCount ) && ( pNaluSliceEntries == rhs.pNaluSliceEntries ) && - ( pCurrentPictureInfo == rhs.pCurrentPictureInfo ); -# endif - } - - bool operator!=( VideoEncodeH265VclFrameInfoEXT const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeH265VclFrameInfoEXT; - const void * pNext = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH265ReferenceListsEXT * pReferenceFinalLists = {}; - uint32_t naluSliceEntryCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeH265NaluSliceEXT * pNaluSliceEntries = {}; - const StdVideoEncodeH265PictureInfo * pCurrentPictureInfo = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeH265VclFrameInfoEXT ) == - sizeof( VkVideoEncodeH265VclFrameInfoEXT ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeH265VclFrameInfoEXT is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeH265VclFrameInfoEXT; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeInfoKHR - { - using NativeType = VkVideoEncodeInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeInfoKHR( VULKAN_HPP_NAMESPACE::VideoEncodeFlagsKHR flags_ = {}, - uint32_t qualityLevel_ = {}, - VULKAN_HPP_NAMESPACE::Extent2D codedExtent_ = {}, - VULKAN_HPP_NAMESPACE::Buffer dstBitstreamBuffer_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferOffset_ = {}, - VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferMaxRange_ = {}, - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR srcPictureResource_ = {}, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot_ = {}, - uint32_t referenceSlotCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots_ = {}, - uint32_t precedingExternallyEncodedBytes_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , qualityLevel( qualityLevel_ ) - , codedExtent( codedExtent_ ) - , dstBitstreamBuffer( dstBitstreamBuffer_ ) - , dstBitstreamBufferOffset( dstBitstreamBufferOffset_ ) - , dstBitstreamBufferMaxRange( dstBitstreamBufferMaxRange_ ) - , srcPictureResource( srcPictureResource_ ) - , pSetupReferenceSlot( pSetupReferenceSlot_ ) - , referenceSlotCount( referenceSlotCount_ ) - , pReferenceSlots( pReferenceSlots_ ) - , precedingExternallyEncodedBytes( precedingExternallyEncodedBytes_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeInfoKHR( VideoEncodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeInfoKHR( VkVideoEncodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeInfoKHR( - VULKAN_HPP_NAMESPACE::VideoEncodeFlagsKHR flags_, - uint32_t qualityLevel_, - VULKAN_HPP_NAMESPACE::Extent2D codedExtent_, - VULKAN_HPP_NAMESPACE::Buffer dstBitstreamBuffer_, - VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferOffset_, - VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferMaxRange_, - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR srcPictureResource_, - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceSlots_, - uint32_t precedingExternallyEncodedBytes_ = {} ) - : flags( flags_ ) - , qualityLevel( qualityLevel_ ) - , codedExtent( codedExtent_ ) - , dstBitstreamBuffer( dstBitstreamBuffer_ ) - , dstBitstreamBufferOffset( dstBitstreamBufferOffset_ ) - , dstBitstreamBufferMaxRange( dstBitstreamBufferMaxRange_ ) - , srcPictureResource( srcPictureResource_ ) - , pSetupReferenceSlot( pSetupReferenceSlot_ ) - , referenceSlotCount( static_cast( referenceSlots_.size() ) ) - , pReferenceSlots( referenceSlots_.data() ) - , precedingExternallyEncodedBytes( precedingExternallyEncodedBytes_ ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeInfoKHR & operator=( VideoEncodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeInfoKHR & operator=( VkVideoEncodeInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoEncodeFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & setQualityLevel( uint32_t qualityLevel_ ) VULKAN_HPP_NOEXCEPT - { - qualityLevel = qualityLevel_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setCodedExtent( VULKAN_HPP_NAMESPACE::Extent2D const & codedExtent_ ) VULKAN_HPP_NOEXCEPT - { - codedExtent = codedExtent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setDstBitstreamBuffer( VULKAN_HPP_NAMESPACE::Buffer dstBitstreamBuffer_ ) VULKAN_HPP_NOEXCEPT - { - dstBitstreamBuffer = dstBitstreamBuffer_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setDstBitstreamBufferOffset( VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferOffset_ ) VULKAN_HPP_NOEXCEPT - { - dstBitstreamBufferOffset = dstBitstreamBufferOffset_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setDstBitstreamBufferMaxRange( VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferMaxRange_ ) VULKAN_HPP_NOEXCEPT - { - dstBitstreamBufferMaxRange = dstBitstreamBufferMaxRange_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & setSrcPictureResource( - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR const & srcPictureResource_ ) VULKAN_HPP_NOEXCEPT - { - srcPictureResource = srcPictureResource_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & setPSetupReferenceSlot( - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot_ ) VULKAN_HPP_NOEXCEPT - { - pSetupReferenceSlot = pSetupReferenceSlot_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setReferenceSlotCount( uint32_t referenceSlotCount_ ) VULKAN_HPP_NOEXCEPT - { - referenceSlotCount = referenceSlotCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setPReferenceSlots( const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots_ ) VULKAN_HPP_NOEXCEPT - { - pReferenceSlots = pReferenceSlots_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeInfoKHR & setReferenceSlots( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - referenceSlots_ ) VULKAN_HPP_NOEXCEPT - { - referenceSlotCount = static_cast( referenceSlots_.size() ); - pReferenceSlots = referenceSlots_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeInfoKHR & - setPrecedingExternallyEncodedBytes( uint32_t precedingExternallyEncodedBytes_ ) VULKAN_HPP_NOEXCEPT - { - precedingExternallyEncodedBytes = precedingExternallyEncodedBytes_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - flags, - qualityLevel, - codedExtent, - dstBitstreamBuffer, - dstBitstreamBufferOffset, - dstBitstreamBufferMaxRange, - srcPictureResource, - pSetupReferenceSlot, - referenceSlotCount, - pReferenceSlots, - precedingExternallyEncodedBytes ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeInfoKHR const & ) const = default; -# else - bool operator==( VideoEncodeInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( qualityLevel == rhs.qualityLevel ) && ( codedExtent == rhs.codedExtent ) && - ( dstBitstreamBuffer == rhs.dstBitstreamBuffer ) && - ( dstBitstreamBufferOffset == rhs.dstBitstreamBufferOffset ) && - ( dstBitstreamBufferMaxRange == rhs.dstBitstreamBufferMaxRange ) && - ( srcPictureResource == rhs.srcPictureResource ) && ( pSetupReferenceSlot == rhs.pSetupReferenceSlot ) && - ( referenceSlotCount == rhs.referenceSlotCount ) && ( pReferenceSlots == rhs.pReferenceSlots ) && - ( precedingExternallyEncodedBytes == rhs.precedingExternallyEncodedBytes ); -# endif - } - - bool operator!=( VideoEncodeInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeFlagsKHR flags = {}; - uint32_t qualityLevel = {}; - VULKAN_HPP_NAMESPACE::Extent2D codedExtent = {}; - VULKAN_HPP_NAMESPACE::Buffer dstBitstreamBuffer = {}; - VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferOffset = {}; - VULKAN_HPP_NAMESPACE::DeviceSize dstBitstreamBufferMaxRange = {}; - VULKAN_HPP_NAMESPACE::VideoPictureResourceKHR srcPictureResource = {}; - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pSetupReferenceSlot = {}; - uint32_t referenceSlotCount = {}; - const VULKAN_HPP_NAMESPACE::VideoReferenceSlotKHR * pReferenceSlots = {}; - uint32_t precedingExternallyEncodedBytes = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeInfoKHR ) == sizeof( VkVideoEncodeInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoEncodeInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeRateControlLayerInfoKHR - { - using NativeType = VkVideoEncodeRateControlLayerInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoEncodeRateControlLayerInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEncodeRateControlLayerInfoKHR( uint32_t averageBitrate_ = {}, - uint32_t maxBitrate_ = {}, - uint32_t frameRateNumerator_ = {}, - uint32_t frameRateDenominator_ = {}, - uint32_t virtualBufferSizeInMs_ = {}, - uint32_t initialVirtualBufferSizeInMs_ = {} ) VULKAN_HPP_NOEXCEPT - : averageBitrate( averageBitrate_ ) - , maxBitrate( maxBitrate_ ) - , frameRateNumerator( frameRateNumerator_ ) - , frameRateDenominator( frameRateDenominator_ ) - , virtualBufferSizeInMs( virtualBufferSizeInMs_ ) - , initialVirtualBufferSizeInMs( initialVirtualBufferSizeInMs_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEncodeRateControlLayerInfoKHR( VideoEncodeRateControlLayerInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeRateControlLayerInfoKHR( VkVideoEncodeRateControlLayerInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeRateControlLayerInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeRateControlLayerInfoKHR & - operator=( VideoEncodeRateControlLayerInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeRateControlLayerInfoKHR & - operator=( VkVideoEncodeRateControlLayerInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & - setAverageBitrate( uint32_t averageBitrate_ ) VULKAN_HPP_NOEXCEPT - { - averageBitrate = averageBitrate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & - setMaxBitrate( uint32_t maxBitrate_ ) VULKAN_HPP_NOEXCEPT - { - maxBitrate = maxBitrate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & - setFrameRateNumerator( uint32_t frameRateNumerator_ ) VULKAN_HPP_NOEXCEPT - { - frameRateNumerator = frameRateNumerator_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & - setFrameRateDenominator( uint32_t frameRateDenominator_ ) VULKAN_HPP_NOEXCEPT - { - frameRateDenominator = frameRateDenominator_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & - setVirtualBufferSizeInMs( uint32_t virtualBufferSizeInMs_ ) VULKAN_HPP_NOEXCEPT - { - virtualBufferSizeInMs = virtualBufferSizeInMs_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlLayerInfoKHR & - setInitialVirtualBufferSizeInMs( uint32_t initialVirtualBufferSizeInMs_ ) VULKAN_HPP_NOEXCEPT - { - initialVirtualBufferSizeInMs = initialVirtualBufferSizeInMs_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeRateControlLayerInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeRateControlLayerInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - averageBitrate, - maxBitrate, - frameRateNumerator, - frameRateDenominator, - virtualBufferSizeInMs, - initialVirtualBufferSizeInMs ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeRateControlLayerInfoKHR const & ) const = default; -# else - bool operator==( VideoEncodeRateControlLayerInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( averageBitrate == rhs.averageBitrate ) && - ( maxBitrate == rhs.maxBitrate ) && ( frameRateNumerator == rhs.frameRateNumerator ) && - ( frameRateDenominator == rhs.frameRateDenominator ) && - ( virtualBufferSizeInMs == rhs.virtualBufferSizeInMs ) && - ( initialVirtualBufferSizeInMs == rhs.initialVirtualBufferSizeInMs ); -# endif - } - - bool operator!=( VideoEncodeRateControlLayerInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeRateControlLayerInfoKHR; - const void * pNext = {}; - uint32_t averageBitrate = {}; - uint32_t maxBitrate = {}; - uint32_t frameRateNumerator = {}; - uint32_t frameRateDenominator = {}; - uint32_t virtualBufferSizeInMs = {}; - uint32_t initialVirtualBufferSizeInMs = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR ) == - sizeof( VkVideoEncodeRateControlLayerInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeRateControlLayerInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeRateControlLayerInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEncodeRateControlInfoKHR - { - using NativeType = VkVideoEncodeRateControlInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEncodeRateControlInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoEncodeRateControlInfoKHR( - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlFlagsKHR flags_ = {}, - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlModeFlagBitsKHR rateControlMode_ = - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlModeFlagBitsKHR::eNone, - uint8_t layerCount_ = {}, - const VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR * pLayerConfigs_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , rateControlMode( rateControlMode_ ) - , layerCount( layerCount_ ) - , pLayerConfigs( pLayerConfigs_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoEncodeRateControlInfoKHR( VideoEncodeRateControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeRateControlInfoKHR( VkVideoEncodeRateControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEncodeRateControlInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeRateControlInfoKHR( - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlFlagsKHR flags_, - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlModeFlagBitsKHR rateControlMode_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR> const & layerConfigs_ ) - : flags( flags_ ) - , rateControlMode( rateControlMode_ ) - , layerCount( static_cast( layerConfigs_.size() ) ) - , pLayerConfigs( layerConfigs_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEncodeRateControlInfoKHR & - operator=( VideoEncodeRateControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEncodeRateControlInfoKHR & operator=( VkVideoEncodeRateControlInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoEncodeRateControlFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlInfoKHR & setRateControlMode( - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlModeFlagBitsKHR rateControlMode_ ) VULKAN_HPP_NOEXCEPT - { - rateControlMode = rateControlMode_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlInfoKHR & setLayerCount( uint8_t layerCount_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = layerCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEncodeRateControlInfoKHR & setPLayerConfigs( - const VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR * pLayerConfigs_ ) VULKAN_HPP_NOEXCEPT - { - pLayerConfigs = pLayerConfigs_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - VideoEncodeRateControlInfoKHR & setLayerConfigs( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< - const VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR> const & layerConfigs_ ) VULKAN_HPP_NOEXCEPT - { - layerCount = static_cast( layerConfigs_.size() ); - pLayerConfigs = layerConfigs_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEncodeRateControlInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEncodeRateControlInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, rateControlMode, layerCount, pLayerConfigs ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEncodeRateControlInfoKHR const & ) const = default; -# else - bool operator==( VideoEncodeRateControlInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( rateControlMode == rhs.rateControlMode ) && ( layerCount == rhs.layerCount ) && - ( pLayerConfigs == rhs.pLayerConfigs ); -# endif - } - - bool operator!=( VideoEncodeRateControlInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEncodeRateControlInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlFlagsKHR flags = {}; - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlModeFlagBitsKHR rateControlMode = - VULKAN_HPP_NAMESPACE::VideoEncodeRateControlModeFlagBitsKHR::eNone; - uint8_t layerCount = {}; - const VULKAN_HPP_NAMESPACE::VideoEncodeRateControlLayerInfoKHR * pLayerConfigs = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEncodeRateControlInfoKHR ) == - sizeof( VkVideoEncodeRateControlInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoEncodeRateControlInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEncodeRateControlInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoEndCodingInfoKHR - { - using NativeType = VkVideoEndCodingInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoEndCodingInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - VideoEndCodingInfoKHR( VULKAN_HPP_NAMESPACE::VideoEndCodingFlagsKHR flags_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoEndCodingInfoKHR( VideoEndCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEndCodingInfoKHR( VkVideoEndCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoEndCodingInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoEndCodingInfoKHR & operator=( VideoEndCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoEndCodingInfoKHR & operator=( VkVideoEndCodingInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoEndCodingInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoEndCodingInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoEndCodingFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoEndCodingInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoEndCodingInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoEndCodingInfoKHR const & ) const = default; -# else - bool operator==( VideoEndCodingInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ); -# endif - } - - bool operator!=( VideoEndCodingInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoEndCodingInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoEndCodingFlagsKHR flags = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoEndCodingInfoKHR ) == sizeof( VkVideoEndCodingInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoEndCodingInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoEndCodingInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoFormatPropertiesKHR - { - using NativeType = VkVideoFormatPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoFormatPropertiesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoFormatPropertiesKHR( - VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined ) VULKAN_HPP_NOEXCEPT - : format( format_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoFormatPropertiesKHR( VideoFormatPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoFormatPropertiesKHR( VkVideoFormatPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoFormatPropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoFormatPropertiesKHR & operator=( VideoFormatPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoFormatPropertiesKHR & operator=( VkVideoFormatPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - - explicit operator VkVideoFormatPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoFormatPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, format ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoFormatPropertiesKHR const & ) const = default; -# else - bool operator==( VideoFormatPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( format == rhs.format ); -# endif - } - - bool operator!=( VideoFormatPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoFormatPropertiesKHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoFormatPropertiesKHR ) == - sizeof( VkVideoFormatPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoFormatPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoFormatPropertiesKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoGetMemoryPropertiesKHR - { - using NativeType = VkVideoGetMemoryPropertiesKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoGetMemoryPropertiesKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoGetMemoryPropertiesKHR( - uint32_t memoryBindIndex_ = {}, - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements_ = {} ) VULKAN_HPP_NOEXCEPT - : memoryBindIndex( memoryBindIndex_ ) - , pMemoryRequirements( pMemoryRequirements_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoGetMemoryPropertiesKHR( VideoGetMemoryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoGetMemoryPropertiesKHR( VkVideoGetMemoryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoGetMemoryPropertiesKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoGetMemoryPropertiesKHR & operator=( VideoGetMemoryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoGetMemoryPropertiesKHR & operator=( VkVideoGetMemoryPropertiesKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoGetMemoryPropertiesKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoGetMemoryPropertiesKHR & - setMemoryBindIndex( uint32_t memoryBindIndex_ ) VULKAN_HPP_NOEXCEPT - { - memoryBindIndex = memoryBindIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoGetMemoryPropertiesKHR & - setPMemoryRequirements( VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements_ ) VULKAN_HPP_NOEXCEPT - { - pMemoryRequirements = pMemoryRequirements_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoGetMemoryPropertiesKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoGetMemoryPropertiesKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, memoryBindIndex, pMemoryRequirements ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoGetMemoryPropertiesKHR const & ) const = default; -# else - bool operator==( VideoGetMemoryPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( memoryBindIndex == rhs.memoryBindIndex ) && - ( pMemoryRequirements == rhs.pMemoryRequirements ); -# endif - } - - bool operator!=( VideoGetMemoryPropertiesKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoGetMemoryPropertiesKHR; - const void * pNext = {}; - uint32_t memoryBindIndex = {}; - VULKAN_HPP_NAMESPACE::MemoryRequirements2 * pMemoryRequirements = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoGetMemoryPropertiesKHR ) == - sizeof( VkVideoGetMemoryPropertiesKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoGetMemoryPropertiesKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoGetMemoryPropertiesKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoQueueFamilyProperties2KHR - { - using NativeType = VkVideoQueueFamilyProperties2KHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoQueueFamilyProperties2KHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoQueueFamilyProperties2KHR( - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagsKHR videoCodecOperations_ = {} ) VULKAN_HPP_NOEXCEPT - : videoCodecOperations( videoCodecOperations_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoQueueFamilyProperties2KHR( VideoQueueFamilyProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoQueueFamilyProperties2KHR( VkVideoQueueFamilyProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoQueueFamilyProperties2KHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoQueueFamilyProperties2KHR & - operator=( VideoQueueFamilyProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoQueueFamilyProperties2KHR & operator=( VkVideoQueueFamilyProperties2KHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoQueueFamilyProperties2KHR & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoQueueFamilyProperties2KHR & setVideoCodecOperations( - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagsKHR videoCodecOperations_ ) VULKAN_HPP_NOEXCEPT - { - videoCodecOperations = videoCodecOperations_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoQueueFamilyProperties2KHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoQueueFamilyProperties2KHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, videoCodecOperations ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoQueueFamilyProperties2KHR const & ) const = default; -# else - bool operator==( VideoQueueFamilyProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( videoCodecOperations == rhs.videoCodecOperations ); -# endif - } - - bool operator!=( VideoQueueFamilyProperties2KHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoQueueFamilyProperties2KHR; - void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoCodecOperationFlagsKHR videoCodecOperations = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoQueueFamilyProperties2KHR ) == - sizeof( VkVideoQueueFamilyProperties2KHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoQueueFamilyProperties2KHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoQueueFamilyProperties2KHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoSessionCreateInfoKHR - { - using NativeType = VkVideoSessionCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eVideoSessionCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoSessionCreateInfoKHR( - uint32_t queueFamilyIndex_ = {}, - VULKAN_HPP_NAMESPACE::VideoSessionCreateFlagsKHR flags_ = {}, - const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pVideoProfile_ = {}, - VULKAN_HPP_NAMESPACE::Format pictureFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - VULKAN_HPP_NAMESPACE::Extent2D maxCodedExtent_ = {}, - VULKAN_HPP_NAMESPACE::Format referencePicturesFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined, - uint32_t maxReferencePicturesSlotsCount_ = {}, - uint32_t maxReferencePicturesActiveCount_ = {} ) VULKAN_HPP_NOEXCEPT - : queueFamilyIndex( queueFamilyIndex_ ) - , flags( flags_ ) - , pVideoProfile( pVideoProfile_ ) - , pictureFormat( pictureFormat_ ) - , maxCodedExtent( maxCodedExtent_ ) - , referencePicturesFormat( referencePicturesFormat_ ) - , maxReferencePicturesSlotsCount( maxReferencePicturesSlotsCount_ ) - , maxReferencePicturesActiveCount( maxReferencePicturesActiveCount_ ) - {} - - VULKAN_HPP_CONSTEXPR - VideoSessionCreateInfoKHR( VideoSessionCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoSessionCreateInfoKHR( VkVideoSessionCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoSessionCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoSessionCreateInfoKHR & operator=( VideoSessionCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoSessionCreateInfoKHR & operator=( VkVideoSessionCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setQueueFamilyIndex( uint32_t queueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT - { - queueFamilyIndex = queueFamilyIndex_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::VideoSessionCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setPVideoProfile( const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pVideoProfile_ ) VULKAN_HPP_NOEXCEPT - { - pVideoProfile = pVideoProfile_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setPictureFormat( VULKAN_HPP_NAMESPACE::Format pictureFormat_ ) VULKAN_HPP_NOEXCEPT - { - pictureFormat = pictureFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setMaxCodedExtent( VULKAN_HPP_NAMESPACE::Extent2D const & maxCodedExtent_ ) VULKAN_HPP_NOEXCEPT - { - maxCodedExtent = maxCodedExtent_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setReferencePicturesFormat( VULKAN_HPP_NAMESPACE::Format referencePicturesFormat_ ) VULKAN_HPP_NOEXCEPT - { - referencePicturesFormat = referencePicturesFormat_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setMaxReferencePicturesSlotsCount( uint32_t maxReferencePicturesSlotsCount_ ) VULKAN_HPP_NOEXCEPT - { - maxReferencePicturesSlotsCount = maxReferencePicturesSlotsCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionCreateInfoKHR & - setMaxReferencePicturesActiveCount( uint32_t maxReferencePicturesActiveCount_ ) VULKAN_HPP_NOEXCEPT - { - maxReferencePicturesActiveCount = maxReferencePicturesActiveCount_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoSessionCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoSessionCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - queueFamilyIndex, - flags, - pVideoProfile, - pictureFormat, - maxCodedExtent, - referencePicturesFormat, - maxReferencePicturesSlotsCount, - maxReferencePicturesActiveCount ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoSessionCreateInfoKHR const & ) const = default; -# else - bool operator==( VideoSessionCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( queueFamilyIndex == rhs.queueFamilyIndex ) && - ( flags == rhs.flags ) && ( pVideoProfile == rhs.pVideoProfile ) && - ( pictureFormat == rhs.pictureFormat ) && ( maxCodedExtent == rhs.maxCodedExtent ) && - ( referencePicturesFormat == rhs.referencePicturesFormat ) && - ( maxReferencePicturesSlotsCount == rhs.maxReferencePicturesSlotsCount ) && - ( maxReferencePicturesActiveCount == rhs.maxReferencePicturesActiveCount ); -# endif - } - - bool operator!=( VideoSessionCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoSessionCreateInfoKHR; - const void * pNext = {}; - uint32_t queueFamilyIndex = {}; - VULKAN_HPP_NAMESPACE::VideoSessionCreateFlagsKHR flags = {}; - const VULKAN_HPP_NAMESPACE::VideoProfileKHR * pVideoProfile = {}; - VULKAN_HPP_NAMESPACE::Format pictureFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - VULKAN_HPP_NAMESPACE::Extent2D maxCodedExtent = {}; - VULKAN_HPP_NAMESPACE::Format referencePicturesFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined; - uint32_t maxReferencePicturesSlotsCount = {}; - uint32_t maxReferencePicturesActiveCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoSessionCreateInfoKHR ) == - sizeof( VkVideoSessionCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "VideoSessionCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoSessionCreateInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoSessionParametersCreateInfoKHR - { - using NativeType = VkVideoSessionParametersCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoSessionParametersCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoSessionParametersCreateInfoKHR( - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParametersTemplate_ = {}, - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession_ = {} ) VULKAN_HPP_NOEXCEPT - : videoSessionParametersTemplate( videoSessionParametersTemplate_ ) - , videoSession( videoSession_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoSessionParametersCreateInfoKHR( VideoSessionParametersCreateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoSessionParametersCreateInfoKHR( VkVideoSessionParametersCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoSessionParametersCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoSessionParametersCreateInfoKHR & - operator=( VideoSessionParametersCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoSessionParametersCreateInfoKHR & - operator=( VkVideoSessionParametersCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoSessionParametersCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionParametersCreateInfoKHR & setVideoSessionParametersTemplate( - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParametersTemplate_ ) VULKAN_HPP_NOEXCEPT - { - videoSessionParametersTemplate = videoSessionParametersTemplate_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionParametersCreateInfoKHR & - setVideoSession( VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession_ ) VULKAN_HPP_NOEXCEPT - { - videoSession = videoSession_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoSessionParametersCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoSessionParametersCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, videoSessionParametersTemplate, videoSession ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoSessionParametersCreateInfoKHR const & ) const = default; -# else - bool operator==( VideoSessionParametersCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( videoSessionParametersTemplate == rhs.videoSessionParametersTemplate ) && - ( videoSession == rhs.videoSession ); -# endif - } - - bool operator!=( VideoSessionParametersCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoSessionParametersCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::VideoSessionParametersKHR videoSessionParametersTemplate = {}; - VULKAN_HPP_NAMESPACE::VideoSessionKHR videoSession = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoSessionParametersCreateInfoKHR ) == - sizeof( VkVideoSessionParametersCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoSessionParametersCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoSessionParametersCreateInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_ENABLE_BETA_EXTENSIONS ) - struct VideoSessionParametersUpdateInfoKHR - { - using NativeType = VkVideoSessionParametersUpdateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eVideoSessionParametersUpdateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR VideoSessionParametersUpdateInfoKHR( uint32_t updateSequenceCount_ = {} ) VULKAN_HPP_NOEXCEPT - : updateSequenceCount( updateSequenceCount_ ) - {} - - VULKAN_HPP_CONSTEXPR VideoSessionParametersUpdateInfoKHR( VideoSessionParametersUpdateInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - VideoSessionParametersUpdateInfoKHR( VkVideoSessionParametersUpdateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : VideoSessionParametersUpdateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - VideoSessionParametersUpdateInfoKHR & - operator=( VideoSessionParametersUpdateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - VideoSessionParametersUpdateInfoKHR & - operator=( VkVideoSessionParametersUpdateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 VideoSessionParametersUpdateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 VideoSessionParametersUpdateInfoKHR & - setUpdateSequenceCount( uint32_t updateSequenceCount_ ) VULKAN_HPP_NOEXCEPT - { - updateSequenceCount = updateSequenceCount_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkVideoSessionParametersUpdateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkVideoSessionParametersUpdateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, updateSequenceCount ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( VideoSessionParametersUpdateInfoKHR const & ) const = default; -# else - bool operator==( VideoSessionParametersUpdateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( updateSequenceCount == rhs.updateSequenceCount ); -# endif - } - - bool operator!=( VideoSessionParametersUpdateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eVideoSessionParametersUpdateInfoKHR; - const void * pNext = {}; - uint32_t updateSequenceCount = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::VideoSessionParametersUpdateInfoKHR ) == - sizeof( VkVideoSessionParametersUpdateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "VideoSessionParametersUpdateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = VideoSessionParametersUpdateInfoKHR; - }; -#endif /*VK_ENABLE_BETA_EXTENSIONS*/ - -#if defined( VK_USE_PLATFORM_WAYLAND_KHR ) - struct WaylandSurfaceCreateInfoKHR - { - using NativeType = VkWaylandSurfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eWaylandSurfaceCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR WaylandSurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateFlagsKHR flags_ = {}, - struct wl_display * display_ = {}, - struct wl_surface * surface_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , display( display_ ) - , surface( surface_ ) - {} - - VULKAN_HPP_CONSTEXPR - WaylandSurfaceCreateInfoKHR( WaylandSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WaylandSurfaceCreateInfoKHR( VkWaylandSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : WaylandSurfaceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - WaylandSurfaceCreateInfoKHR & operator=( WaylandSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WaylandSurfaceCreateInfoKHR & operator=( VkWaylandSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 WaylandSurfaceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WaylandSurfaceCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WaylandSurfaceCreateInfoKHR & setDisplay( struct wl_display * display_ ) VULKAN_HPP_NOEXCEPT - { - display = display_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WaylandSurfaceCreateInfoKHR & setSurface( struct wl_surface * surface_ ) VULKAN_HPP_NOEXCEPT - { - surface = surface_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWaylandSurfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWaylandSurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, display, surface ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( WaylandSurfaceCreateInfoKHR const & ) const = default; -# else - bool operator==( WaylandSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( display == rhs.display ) && - ( surface == rhs.surface ); -# endif - } - - bool operator!=( WaylandSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWaylandSurfaceCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateFlagsKHR flags = {}; - struct wl_display * display = {}; - struct wl_surface * surface = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR ) == - sizeof( VkWaylandSurfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "WaylandSurfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = WaylandSurfaceCreateInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct Win32KeyedMutexAcquireReleaseInfoKHR - { - using NativeType = VkWin32KeyedMutexAcquireReleaseInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eWin32KeyedMutexAcquireReleaseInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - Win32KeyedMutexAcquireReleaseInfoKHR( uint32_t acquireCount_ = {}, - const VULKAN_HPP_NAMESPACE::DeviceMemory * pAcquireSyncs_ = {}, - const uint64_t * pAcquireKeys_ = {}, - const uint32_t * pAcquireTimeouts_ = {}, - uint32_t releaseCount_ = {}, - const VULKAN_HPP_NAMESPACE::DeviceMemory * pReleaseSyncs_ = {}, - const uint64_t * pReleaseKeys_ = {} ) VULKAN_HPP_NOEXCEPT - : acquireCount( acquireCount_ ) - , pAcquireSyncs( pAcquireSyncs_ ) - , pAcquireKeys( pAcquireKeys_ ) - , pAcquireTimeouts( pAcquireTimeouts_ ) - , releaseCount( releaseCount_ ) - , pReleaseSyncs( pReleaseSyncs_ ) - , pReleaseKeys( pReleaseKeys_ ) - {} - - VULKAN_HPP_CONSTEXPR Win32KeyedMutexAcquireReleaseInfoKHR( Win32KeyedMutexAcquireReleaseInfoKHR const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - Win32KeyedMutexAcquireReleaseInfoKHR( VkWin32KeyedMutexAcquireReleaseInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : Win32KeyedMutexAcquireReleaseInfoKHR( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireSyncs_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireKeys_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireTimeouts_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - releaseSyncs_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & releaseKeys_ = {} ) - : acquireCount( static_cast( acquireSyncs_.size() ) ) - , pAcquireSyncs( acquireSyncs_.data() ) - , pAcquireKeys( acquireKeys_.data() ) - , pAcquireTimeouts( acquireTimeouts_.data() ) - , releaseCount( static_cast( releaseSyncs_.size() ) ) - , pReleaseSyncs( releaseSyncs_.data() ) - , pReleaseKeys( releaseKeys_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( acquireSyncs_.size() == acquireKeys_.size() ); - VULKAN_HPP_ASSERT( acquireSyncs_.size() == acquireTimeouts_.size() ); - VULKAN_HPP_ASSERT( acquireKeys_.size() == acquireTimeouts_.size() ); -# else - if ( acquireSyncs_.size() != acquireKeys_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoKHR::Win32KeyedMutexAcquireReleaseInfoKHR: acquireSyncs_.size() != acquireKeys_.size()" ); - } - if ( acquireSyncs_.size() != acquireTimeouts_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoKHR::Win32KeyedMutexAcquireReleaseInfoKHR: acquireSyncs_.size() != acquireTimeouts_.size()" ); - } - if ( acquireKeys_.size() != acquireTimeouts_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoKHR::Win32KeyedMutexAcquireReleaseInfoKHR: acquireKeys_.size() != acquireTimeouts_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( releaseSyncs_.size() == releaseKeys_.size() ); -# else - if ( releaseSyncs_.size() != releaseKeys_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoKHR::Win32KeyedMutexAcquireReleaseInfoKHR: releaseSyncs_.size() != releaseKeys_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Win32KeyedMutexAcquireReleaseInfoKHR & - operator=( Win32KeyedMutexAcquireReleaseInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Win32KeyedMutexAcquireReleaseInfoKHR & - operator=( VkWin32KeyedMutexAcquireReleaseInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setAcquireCount( uint32_t acquireCount_ ) VULKAN_HPP_NOEXCEPT - { - acquireCount = acquireCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setPAcquireSyncs( const VULKAN_HPP_NAMESPACE::DeviceMemory * pAcquireSyncs_ ) VULKAN_HPP_NOEXCEPT - { - pAcquireSyncs = pAcquireSyncs_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoKHR & setAcquireSyncs( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireSyncs_ ) - VULKAN_HPP_NOEXCEPT - { - acquireCount = static_cast( acquireSyncs_.size() ); - pAcquireSyncs = acquireSyncs_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setPAcquireKeys( const uint64_t * pAcquireKeys_ ) VULKAN_HPP_NOEXCEPT - { - pAcquireKeys = pAcquireKeys_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoKHR & setAcquireKeys( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireKeys_ ) VULKAN_HPP_NOEXCEPT - { - acquireCount = static_cast( acquireKeys_.size() ); - pAcquireKeys = acquireKeys_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setPAcquireTimeouts( const uint32_t * pAcquireTimeouts_ ) VULKAN_HPP_NOEXCEPT - { - pAcquireTimeouts = pAcquireTimeouts_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoKHR & setAcquireTimeouts( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireTimeouts_ ) VULKAN_HPP_NOEXCEPT - { - acquireCount = static_cast( acquireTimeouts_.size() ); - pAcquireTimeouts = acquireTimeouts_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setReleaseCount( uint32_t releaseCount_ ) VULKAN_HPP_NOEXCEPT - { - releaseCount = releaseCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setPReleaseSyncs( const VULKAN_HPP_NAMESPACE::DeviceMemory * pReleaseSyncs_ ) VULKAN_HPP_NOEXCEPT - { - pReleaseSyncs = pReleaseSyncs_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoKHR & setReleaseSyncs( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & releaseSyncs_ ) - VULKAN_HPP_NOEXCEPT - { - releaseCount = static_cast( releaseSyncs_.size() ); - pReleaseSyncs = releaseSyncs_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoKHR & - setPReleaseKeys( const uint64_t * pReleaseKeys_ ) VULKAN_HPP_NOEXCEPT - { - pReleaseKeys = pReleaseKeys_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoKHR & setReleaseKeys( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & releaseKeys_ ) VULKAN_HPP_NOEXCEPT - { - releaseCount = static_cast( releaseKeys_.size() ); - pReleaseKeys = releaseKeys_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWin32KeyedMutexAcquireReleaseInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWin32KeyedMutexAcquireReleaseInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - acquireCount, - pAcquireSyncs, - pAcquireKeys, - pAcquireTimeouts, - releaseCount, - pReleaseSyncs, - pReleaseKeys ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Win32KeyedMutexAcquireReleaseInfoKHR const & ) const = default; -# else - bool operator==( Win32KeyedMutexAcquireReleaseInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( acquireCount == rhs.acquireCount ) && - ( pAcquireSyncs == rhs.pAcquireSyncs ) && ( pAcquireKeys == rhs.pAcquireKeys ) && - ( pAcquireTimeouts == rhs.pAcquireTimeouts ) && ( releaseCount == rhs.releaseCount ) && - ( pReleaseSyncs == rhs.pReleaseSyncs ) && ( pReleaseKeys == rhs.pReleaseKeys ); -# endif - } - - bool operator!=( Win32KeyedMutexAcquireReleaseInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWin32KeyedMutexAcquireReleaseInfoKHR; - const void * pNext = {}; - uint32_t acquireCount = {}; - const VULKAN_HPP_NAMESPACE::DeviceMemory * pAcquireSyncs = {}; - const uint64_t * pAcquireKeys = {}; - const uint32_t * pAcquireTimeouts = {}; - uint32_t releaseCount = {}; - const VULKAN_HPP_NAMESPACE::DeviceMemory * pReleaseSyncs = {}; - const uint64_t * pReleaseKeys = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Win32KeyedMutexAcquireReleaseInfoKHR ) == - sizeof( VkWin32KeyedMutexAcquireReleaseInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "Win32KeyedMutexAcquireReleaseInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = Win32KeyedMutexAcquireReleaseInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct Win32KeyedMutexAcquireReleaseInfoNV - { - using NativeType = VkWin32KeyedMutexAcquireReleaseInfoNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eWin32KeyedMutexAcquireReleaseInfoNV; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR - Win32KeyedMutexAcquireReleaseInfoNV( uint32_t acquireCount_ = {}, - const VULKAN_HPP_NAMESPACE::DeviceMemory * pAcquireSyncs_ = {}, - const uint64_t * pAcquireKeys_ = {}, - const uint32_t * pAcquireTimeoutMilliseconds_ = {}, - uint32_t releaseCount_ = {}, - const VULKAN_HPP_NAMESPACE::DeviceMemory * pReleaseSyncs_ = {}, - const uint64_t * pReleaseKeys_ = {} ) VULKAN_HPP_NOEXCEPT - : acquireCount( acquireCount_ ) - , pAcquireSyncs( pAcquireSyncs_ ) - , pAcquireKeys( pAcquireKeys_ ) - , pAcquireTimeoutMilliseconds( pAcquireTimeoutMilliseconds_ ) - , releaseCount( releaseCount_ ) - , pReleaseSyncs( pReleaseSyncs_ ) - , pReleaseKeys( pReleaseKeys_ ) - {} - - VULKAN_HPP_CONSTEXPR Win32KeyedMutexAcquireReleaseInfoNV( Win32KeyedMutexAcquireReleaseInfoNV const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - Win32KeyedMutexAcquireReleaseInfoNV( VkWin32KeyedMutexAcquireReleaseInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - : Win32KeyedMutexAcquireReleaseInfoNV( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoNV( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireSyncs_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireKeys_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireTimeoutMilliseconds_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - releaseSyncs_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & releaseKeys_ = {} ) - : acquireCount( static_cast( acquireSyncs_.size() ) ) - , pAcquireSyncs( acquireSyncs_.data() ) - , pAcquireKeys( acquireKeys_.data() ) - , pAcquireTimeoutMilliseconds( acquireTimeoutMilliseconds_.data() ) - , releaseCount( static_cast( releaseSyncs_.size() ) ) - , pReleaseSyncs( releaseSyncs_.data() ) - , pReleaseKeys( releaseKeys_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( acquireSyncs_.size() == acquireKeys_.size() ); - VULKAN_HPP_ASSERT( acquireSyncs_.size() == acquireTimeoutMilliseconds_.size() ); - VULKAN_HPP_ASSERT( acquireKeys_.size() == acquireTimeoutMilliseconds_.size() ); -# else - if ( acquireSyncs_.size() != acquireKeys_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoNV::Win32KeyedMutexAcquireReleaseInfoNV: acquireSyncs_.size() != acquireKeys_.size()" ); - } - if ( acquireSyncs_.size() != acquireTimeoutMilliseconds_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoNV::Win32KeyedMutexAcquireReleaseInfoNV: acquireSyncs_.size() != acquireTimeoutMilliseconds_.size()" ); - } - if ( acquireKeys_.size() != acquireTimeoutMilliseconds_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoNV::Win32KeyedMutexAcquireReleaseInfoNV: acquireKeys_.size() != acquireTimeoutMilliseconds_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( releaseSyncs_.size() == releaseKeys_.size() ); -# else - if ( releaseSyncs_.size() != releaseKeys_.size() ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::Win32KeyedMutexAcquireReleaseInfoNV::Win32KeyedMutexAcquireReleaseInfoNV: releaseSyncs_.size() != releaseKeys_.size()" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Win32KeyedMutexAcquireReleaseInfoNV & - operator=( Win32KeyedMutexAcquireReleaseInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Win32KeyedMutexAcquireReleaseInfoNV & - operator=( VkWin32KeyedMutexAcquireReleaseInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setAcquireCount( uint32_t acquireCount_ ) VULKAN_HPP_NOEXCEPT - { - acquireCount = acquireCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setPAcquireSyncs( const VULKAN_HPP_NAMESPACE::DeviceMemory * pAcquireSyncs_ ) VULKAN_HPP_NOEXCEPT - { - pAcquireSyncs = pAcquireSyncs_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoNV & setAcquireSyncs( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireSyncs_ ) - VULKAN_HPP_NOEXCEPT - { - acquireCount = static_cast( acquireSyncs_.size() ); - pAcquireSyncs = acquireSyncs_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setPAcquireKeys( const uint64_t * pAcquireKeys_ ) VULKAN_HPP_NOEXCEPT - { - pAcquireKeys = pAcquireKeys_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoNV & setAcquireKeys( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireKeys_ ) VULKAN_HPP_NOEXCEPT - { - acquireCount = static_cast( acquireKeys_.size() ); - pAcquireKeys = acquireKeys_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setPAcquireTimeoutMilliseconds( const uint32_t * pAcquireTimeoutMilliseconds_ ) VULKAN_HPP_NOEXCEPT - { - pAcquireTimeoutMilliseconds = pAcquireTimeoutMilliseconds_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoNV & setAcquireTimeoutMilliseconds( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & acquireTimeoutMilliseconds_ ) - VULKAN_HPP_NOEXCEPT - { - acquireCount = static_cast( acquireTimeoutMilliseconds_.size() ); - pAcquireTimeoutMilliseconds = acquireTimeoutMilliseconds_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setReleaseCount( uint32_t releaseCount_ ) VULKAN_HPP_NOEXCEPT - { - releaseCount = releaseCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setPReleaseSyncs( const VULKAN_HPP_NAMESPACE::DeviceMemory * pReleaseSyncs_ ) VULKAN_HPP_NOEXCEPT - { - pReleaseSyncs = pReleaseSyncs_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoNV & setReleaseSyncs( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & releaseSyncs_ ) - VULKAN_HPP_NOEXCEPT - { - releaseCount = static_cast( releaseSyncs_.size() ); - pReleaseSyncs = releaseSyncs_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 Win32KeyedMutexAcquireReleaseInfoNV & - setPReleaseKeys( const uint64_t * pReleaseKeys_ ) VULKAN_HPP_NOEXCEPT - { - pReleaseKeys = pReleaseKeys_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - Win32KeyedMutexAcquireReleaseInfoNV & setReleaseKeys( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & releaseKeys_ ) VULKAN_HPP_NOEXCEPT - { - releaseCount = static_cast( releaseKeys_.size() ); - pReleaseKeys = releaseKeys_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWin32KeyedMutexAcquireReleaseInfoNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWin32KeyedMutexAcquireReleaseInfoNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - acquireCount, - pAcquireSyncs, - pAcquireKeys, - pAcquireTimeoutMilliseconds, - releaseCount, - pReleaseSyncs, - pReleaseKeys ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Win32KeyedMutexAcquireReleaseInfoNV const & ) const = default; -# else - bool operator==( Win32KeyedMutexAcquireReleaseInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( acquireCount == rhs.acquireCount ) && - ( pAcquireSyncs == rhs.pAcquireSyncs ) && ( pAcquireKeys == rhs.pAcquireKeys ) && - ( pAcquireTimeoutMilliseconds == rhs.pAcquireTimeoutMilliseconds ) && - ( releaseCount == rhs.releaseCount ) && ( pReleaseSyncs == rhs.pReleaseSyncs ) && - ( pReleaseKeys == rhs.pReleaseKeys ); -# endif - } - - bool operator!=( Win32KeyedMutexAcquireReleaseInfoNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWin32KeyedMutexAcquireReleaseInfoNV; - const void * pNext = {}; - uint32_t acquireCount = {}; - const VULKAN_HPP_NAMESPACE::DeviceMemory * pAcquireSyncs = {}; - const uint64_t * pAcquireKeys = {}; - const uint32_t * pAcquireTimeoutMilliseconds = {}; - uint32_t releaseCount = {}; - const VULKAN_HPP_NAMESPACE::DeviceMemory * pReleaseSyncs = {}; - const uint64_t * pReleaseKeys = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Win32KeyedMutexAcquireReleaseInfoNV ) == - sizeof( VkWin32KeyedMutexAcquireReleaseInfoNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "Win32KeyedMutexAcquireReleaseInfoNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = Win32KeyedMutexAcquireReleaseInfoNV; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - -#if defined( VK_USE_PLATFORM_WIN32_KHR ) - struct Win32SurfaceCreateInfoKHR - { - using NativeType = VkWin32SurfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eWin32SurfaceCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR Win32SurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::Win32SurfaceCreateFlagsKHR flags_ = {}, - HINSTANCE hinstance_ = {}, - HWND hwnd_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , hinstance( hinstance_ ) - , hwnd( hwnd_ ) - {} - - VULKAN_HPP_CONSTEXPR - Win32SurfaceCreateInfoKHR( Win32SurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Win32SurfaceCreateInfoKHR( VkWin32SurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : Win32SurfaceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - Win32SurfaceCreateInfoKHR & operator=( Win32SurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - Win32SurfaceCreateInfoKHR & operator=( VkWin32SurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 Win32SurfaceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32SurfaceCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::Win32SurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32SurfaceCreateInfoKHR & setHinstance( HINSTANCE hinstance_ ) VULKAN_HPP_NOEXCEPT - { - hinstance = hinstance_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 Win32SurfaceCreateInfoKHR & setHwnd( HWND hwnd_ ) VULKAN_HPP_NOEXCEPT - { - hwnd = hwnd_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWin32SurfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWin32SurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, hinstance, hwnd ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( Win32SurfaceCreateInfoKHR const & ) const = default; -# else - bool operator==( Win32SurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( hinstance == rhs.hinstance ) && ( hwnd == rhs.hwnd ); -# endif - } - - bool operator!=( Win32SurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -# endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWin32SurfaceCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::Win32SurfaceCreateFlagsKHR flags = {}; - HINSTANCE hinstance = {}; - HWND hwnd = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR ) == - sizeof( VkWin32SurfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "Win32SurfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = Win32SurfaceCreateInfoKHR; - }; -#endif /*VK_USE_PLATFORM_WIN32_KHR*/ - - struct WriteDescriptorSet - { - using NativeType = VkWriteDescriptorSet; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eWriteDescriptorSet; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR WriteDescriptorSet( - VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_ = {}, - uint32_t dstBinding_ = {}, - uint32_t dstArrayElement_ = {}, - uint32_t descriptorCount_ = {}, - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler, - const VULKAN_HPP_NAMESPACE::DescriptorImageInfo * pImageInfo_ = {}, - const VULKAN_HPP_NAMESPACE::DescriptorBufferInfo * pBufferInfo_ = {}, - const VULKAN_HPP_NAMESPACE::BufferView * pTexelBufferView_ = {} ) VULKAN_HPP_NOEXCEPT - : dstSet( dstSet_ ) - , dstBinding( dstBinding_ ) - , dstArrayElement( dstArrayElement_ ) - , descriptorCount( descriptorCount_ ) - , descriptorType( descriptorType_ ) - , pImageInfo( pImageInfo_ ) - , pBufferInfo( pBufferInfo_ ) - , pTexelBufferView( pTexelBufferView_ ) - {} - - VULKAN_HPP_CONSTEXPR WriteDescriptorSet( WriteDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSet( VkWriteDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT - : WriteDescriptorSet( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSet( - VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_, - uint32_t dstBinding_, - uint32_t dstArrayElement_, - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & imageInfo_, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bufferInfo_ = {}, - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - texelBufferView_ = {} ) - : dstSet( dstSet_ ) - , dstBinding( dstBinding_ ) - , dstArrayElement( dstArrayElement_ ) - , descriptorCount( static_cast( !imageInfo_.empty() ? imageInfo_.size() - : !bufferInfo_.empty() ? bufferInfo_.size() - : texelBufferView_.size() ) ) - , descriptorType( descriptorType_ ) - , pImageInfo( imageInfo_.data() ) - , pBufferInfo( bufferInfo_.data() ) - , pTexelBufferView( texelBufferView_.data() ) - { -# ifdef VULKAN_HPP_NO_EXCEPTIONS - VULKAN_HPP_ASSERT( ( !imageInfo_.empty() + !bufferInfo_.empty() + !texelBufferView_.empty() ) <= 1 ); -# else - if ( 1 < ( !imageInfo_.empty() + !bufferInfo_.empty() + !texelBufferView_.empty() ) ) - { - throw LogicError( - VULKAN_HPP_NAMESPACE_STRING - "::WriteDescriptorSet::WriteDescriptorSet: 1 < ( !imageInfo_.empty() + !bufferInfo_.empty() + !texelBufferView_.empty() )" ); - } -# endif /*VULKAN_HPP_NO_EXCEPTIONS*/ - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - WriteDescriptorSet & operator=( WriteDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSet & operator=( VkWriteDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & - setDstSet( VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_ ) VULKAN_HPP_NOEXCEPT - { - dstSet = dstSet_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & setDstBinding( uint32_t dstBinding_ ) VULKAN_HPP_NOEXCEPT - { - dstBinding = dstBinding_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & setDstArrayElement( uint32_t dstArrayElement_ ) VULKAN_HPP_NOEXCEPT - { - dstArrayElement = dstArrayElement_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = descriptorCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & - setDescriptorType( VULKAN_HPP_NAMESPACE::DescriptorType descriptorType_ ) VULKAN_HPP_NOEXCEPT - { - descriptorType = descriptorType_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & - setPImageInfo( const VULKAN_HPP_NAMESPACE::DescriptorImageInfo * pImageInfo_ ) VULKAN_HPP_NOEXCEPT - { - pImageInfo = pImageInfo_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSet & setImageInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - imageInfo_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = static_cast( imageInfo_.size() ); - pImageInfo = imageInfo_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & - setPBufferInfo( const VULKAN_HPP_NAMESPACE::DescriptorBufferInfo * pBufferInfo_ ) VULKAN_HPP_NOEXCEPT - { - pBufferInfo = pBufferInfo_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSet & setBufferInfo( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - bufferInfo_ ) VULKAN_HPP_NOEXCEPT - { - descriptorCount = static_cast( bufferInfo_.size() ); - pBufferInfo = bufferInfo_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSet & - setPTexelBufferView( const VULKAN_HPP_NAMESPACE::BufferView * pTexelBufferView_ ) VULKAN_HPP_NOEXCEPT - { - pTexelBufferView = pTexelBufferView_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSet & setTexelBufferView( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & texelBufferView_ ) - VULKAN_HPP_NOEXCEPT - { - descriptorCount = static_cast( texelBufferView_.size() ); - pTexelBufferView = texelBufferView_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWriteDescriptorSet const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWriteDescriptorSet &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, - pNext, - dstSet, - dstBinding, - dstArrayElement, - descriptorCount, - descriptorType, - pImageInfo, - pBufferInfo, - pTexelBufferView ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( WriteDescriptorSet const & ) const = default; -#else - bool operator==( WriteDescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dstSet == rhs.dstSet ) && - ( dstBinding == rhs.dstBinding ) && ( dstArrayElement == rhs.dstArrayElement ) && - ( descriptorCount == rhs.descriptorCount ) && ( descriptorType == rhs.descriptorType ) && - ( pImageInfo == rhs.pImageInfo ) && ( pBufferInfo == rhs.pBufferInfo ) && - ( pTexelBufferView == rhs.pTexelBufferView ); -# endif - } - - bool operator!=( WriteDescriptorSet const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWriteDescriptorSet; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::DescriptorSet dstSet = {}; - uint32_t dstBinding = {}; - uint32_t dstArrayElement = {}; - uint32_t descriptorCount = {}; - VULKAN_HPP_NAMESPACE::DescriptorType descriptorType = VULKAN_HPP_NAMESPACE::DescriptorType::eSampler; - const VULKAN_HPP_NAMESPACE::DescriptorImageInfo * pImageInfo = {}; - const VULKAN_HPP_NAMESPACE::DescriptorBufferInfo * pBufferInfo = {}; - const VULKAN_HPP_NAMESPACE::BufferView * pTexelBufferView = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::WriteDescriptorSet ) == sizeof( VkWriteDescriptorSet ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "WriteDescriptorSet is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = WriteDescriptorSet; - }; - - struct WriteDescriptorSetAccelerationStructureKHR - { - using NativeType = VkWriteDescriptorSetAccelerationStructureKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eWriteDescriptorSetAccelerationStructureKHR; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR WriteDescriptorSetAccelerationStructureKHR( - uint32_t accelerationStructureCount_ = {}, - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures_ = {} ) VULKAN_HPP_NOEXCEPT - : accelerationStructureCount( accelerationStructureCount_ ) - , pAccelerationStructures( pAccelerationStructures_ ) - {} - - VULKAN_HPP_CONSTEXPR WriteDescriptorSetAccelerationStructureKHR( - WriteDescriptorSetAccelerationStructureKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSetAccelerationStructureKHR( VkWriteDescriptorSetAccelerationStructureKHR const & rhs ) - VULKAN_HPP_NOEXCEPT - : WriteDescriptorSetAccelerationStructureKHR( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSetAccelerationStructureKHR( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - accelerationStructures_ ) - : accelerationStructureCount( static_cast( accelerationStructures_.size() ) ) - , pAccelerationStructures( accelerationStructures_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - WriteDescriptorSetAccelerationStructureKHR & - operator=( WriteDescriptorSetAccelerationStructureKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSetAccelerationStructureKHR & - operator=( VkWriteDescriptorSetAccelerationStructureKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetAccelerationStructureKHR & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetAccelerationStructureKHR & - setAccelerationStructureCount( uint32_t accelerationStructureCount_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureCount = accelerationStructureCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetAccelerationStructureKHR & setPAccelerationStructures( - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures_ ) VULKAN_HPP_NOEXCEPT - { - pAccelerationStructures = pAccelerationStructures_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSetAccelerationStructureKHR & setAccelerationStructures( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - accelerationStructures_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureCount = static_cast( accelerationStructures_.size() ); - pAccelerationStructures = accelerationStructures_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWriteDescriptorSetAccelerationStructureKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWriteDescriptorSetAccelerationStructureKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, accelerationStructureCount, pAccelerationStructures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( WriteDescriptorSetAccelerationStructureKHR const & ) const = default; -#else - bool operator==( WriteDescriptorSetAccelerationStructureKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( accelerationStructureCount == rhs.accelerationStructureCount ) && - ( pAccelerationStructures == rhs.pAccelerationStructures ); -# endif - } - - bool operator!=( WriteDescriptorSetAccelerationStructureKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWriteDescriptorSetAccelerationStructureKHR; - const void * pNext = {}; - uint32_t accelerationStructureCount = {}; - const VULKAN_HPP_NAMESPACE::AccelerationStructureKHR * pAccelerationStructures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::WriteDescriptorSetAccelerationStructureKHR ) == - sizeof( VkWriteDescriptorSetAccelerationStructureKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "WriteDescriptorSetAccelerationStructureKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = WriteDescriptorSetAccelerationStructureKHR; - }; - - struct WriteDescriptorSetAccelerationStructureNV - { - using NativeType = VkWriteDescriptorSetAccelerationStructureNV; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eWriteDescriptorSetAccelerationStructureNV; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR WriteDescriptorSetAccelerationStructureNV( - uint32_t accelerationStructureCount_ = {}, - const VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructures_ = {} ) VULKAN_HPP_NOEXCEPT - : accelerationStructureCount( accelerationStructureCount_ ) - , pAccelerationStructures( pAccelerationStructures_ ) - {} - - VULKAN_HPP_CONSTEXPR WriteDescriptorSetAccelerationStructureNV( - WriteDescriptorSetAccelerationStructureNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSetAccelerationStructureNV( VkWriteDescriptorSetAccelerationStructureNV const & rhs ) - VULKAN_HPP_NOEXCEPT - : WriteDescriptorSetAccelerationStructureNV( - *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSetAccelerationStructureNV( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - accelerationStructures_ ) - : accelerationStructureCount( static_cast( accelerationStructures_.size() ) ) - , pAccelerationStructures( accelerationStructures_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - WriteDescriptorSetAccelerationStructureNV & - operator=( WriteDescriptorSetAccelerationStructureNV const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSetAccelerationStructureNV & - operator=( VkWriteDescriptorSetAccelerationStructureNV const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetAccelerationStructureNV & - setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetAccelerationStructureNV & - setAccelerationStructureCount( uint32_t accelerationStructureCount_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureCount = accelerationStructureCount_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetAccelerationStructureNV & setPAccelerationStructures( - const VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructures_ ) VULKAN_HPP_NOEXCEPT - { - pAccelerationStructures = pAccelerationStructures_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - WriteDescriptorSetAccelerationStructureNV & setAccelerationStructures( - VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & - accelerationStructures_ ) VULKAN_HPP_NOEXCEPT - { - accelerationStructureCount = static_cast( accelerationStructures_.size() ); - pAccelerationStructures = accelerationStructures_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWriteDescriptorSetAccelerationStructureNV const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWriteDescriptorSetAccelerationStructureNV &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, accelerationStructureCount, pAccelerationStructures ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( WriteDescriptorSetAccelerationStructureNV const & ) const = default; -#else - bool operator==( WriteDescriptorSetAccelerationStructureNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && - ( accelerationStructureCount == rhs.accelerationStructureCount ) && - ( pAccelerationStructures == rhs.pAccelerationStructures ); -# endif - } - - bool operator!=( WriteDescriptorSetAccelerationStructureNV const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWriteDescriptorSetAccelerationStructureNV; - const void * pNext = {}; - uint32_t accelerationStructureCount = {}; - const VULKAN_HPP_NAMESPACE::AccelerationStructureNV * pAccelerationStructures = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::WriteDescriptorSetAccelerationStructureNV ) == - sizeof( VkWriteDescriptorSetAccelerationStructureNV ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "WriteDescriptorSetAccelerationStructureNV is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = WriteDescriptorSetAccelerationStructureNV; - }; - - struct WriteDescriptorSetInlineUniformBlock - { - using NativeType = VkWriteDescriptorSetInlineUniformBlock; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = - StructureType::eWriteDescriptorSetInlineUniformBlock; - -#if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR WriteDescriptorSetInlineUniformBlock( uint32_t dataSize_ = {}, - const void * pData_ = {} ) VULKAN_HPP_NOEXCEPT - : dataSize( dataSize_ ) - , pData( pData_ ) - {} - - VULKAN_HPP_CONSTEXPR WriteDescriptorSetInlineUniformBlock( WriteDescriptorSetInlineUniformBlock const & rhs ) - VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSetInlineUniformBlock( VkWriteDescriptorSetInlineUniformBlock const & rhs ) VULKAN_HPP_NOEXCEPT - : WriteDescriptorSetInlineUniformBlock( *reinterpret_cast( &rhs ) ) - {} - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - WriteDescriptorSetInlineUniformBlock( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ ) - : dataSize( static_cast( data_.size() * sizeof( T ) ) ), pData( data_.data() ) - {} -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - WriteDescriptorSetInlineUniformBlock & - operator=( WriteDescriptorSetInlineUniformBlock const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - WriteDescriptorSetInlineUniformBlock & - operator=( VkWriteDescriptorSetInlineUniformBlock const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -#if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetInlineUniformBlock & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetInlineUniformBlock & setDataSize( uint32_t dataSize_ ) VULKAN_HPP_NOEXCEPT - { - dataSize = dataSize_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 WriteDescriptorSetInlineUniformBlock & setPData( const void * pData_ ) VULKAN_HPP_NOEXCEPT - { - pData = pData_; - return *this; - } - -# if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) - template - WriteDescriptorSetInlineUniformBlock & - setData( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries const & data_ ) VULKAN_HPP_NOEXCEPT - { - dataSize = static_cast( data_.size() * sizeof( T ) ); - pData = data_.data(); - return *this; - } -# endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/ -#endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkWriteDescriptorSetInlineUniformBlock const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkWriteDescriptorSetInlineUniformBlock &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -#if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std:: - tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, dataSize, pData ); - } -#endif - -#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - auto operator<=>( WriteDescriptorSetInlineUniformBlock const & ) const = default; -#else - bool operator==( WriteDescriptorSetInlineUniformBlock const & rhs ) const VULKAN_HPP_NOEXCEPT - { -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) - return this->reflect() == rhs.reflect(); -# else - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( dataSize == rhs.dataSize ) && ( pData == rhs.pData ); -# endif - } - - bool operator!=( WriteDescriptorSetInlineUniformBlock const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } -#endif - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eWriteDescriptorSetInlineUniformBlock; - const void * pNext = {}; - uint32_t dataSize = {}; - const void * pData = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::WriteDescriptorSetInlineUniformBlock ) == - sizeof( VkWriteDescriptorSetInlineUniformBlock ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( - std::is_nothrow_move_constructible::value, - "WriteDescriptorSetInlineUniformBlock is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = WriteDescriptorSetInlineUniformBlock; - }; - using WriteDescriptorSetInlineUniformBlockEXT = WriteDescriptorSetInlineUniformBlock; - -#if defined( VK_USE_PLATFORM_XCB_KHR ) - struct XcbSurfaceCreateInfoKHR - { - using NativeType = VkXcbSurfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eXcbSurfaceCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR XcbSurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::XcbSurfaceCreateFlagsKHR flags_ = {}, - xcb_connection_t * connection_ = {}, - xcb_window_t window_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , connection( connection_ ) - , window( window_ ) - {} - - VULKAN_HPP_CONSTEXPR XcbSurfaceCreateInfoKHR( XcbSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - XcbSurfaceCreateInfoKHR( VkXcbSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : XcbSurfaceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - XcbSurfaceCreateInfoKHR & operator=( XcbSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - XcbSurfaceCreateInfoKHR & operator=( VkXcbSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 XcbSurfaceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XcbSurfaceCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::XcbSurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XcbSurfaceCreateInfoKHR & - setConnection( xcb_connection_t * connection_ ) VULKAN_HPP_NOEXCEPT - { - connection = connection_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XcbSurfaceCreateInfoKHR & setWindow( xcb_window_t window_ ) VULKAN_HPP_NOEXCEPT - { - window = window_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkXcbSurfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkXcbSurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, connection, window ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( XcbSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = connection <=> rhs.connection; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &window, &rhs.window, sizeof( xcb_window_t ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( XcbSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && - ( connection == rhs.connection ) && ( memcmp( &window, &rhs.window, sizeof( xcb_window_t ) ) == 0 ); - } - - bool operator!=( XcbSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eXcbSurfaceCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::XcbSurfaceCreateFlagsKHR flags = {}; - xcb_connection_t * connection = {}; - xcb_window_t window = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR ) == - sizeof( VkXcbSurfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "XcbSurfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = XcbSurfaceCreateInfoKHR; - }; -#endif /*VK_USE_PLATFORM_XCB_KHR*/ - -#if defined( VK_USE_PLATFORM_XLIB_KHR ) - struct XlibSurfaceCreateInfoKHR - { - using NativeType = VkXlibSurfaceCreateInfoKHR; - - static const bool allowDuplicate = false; - static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eXlibSurfaceCreateInfoKHR; - -# if !defined( VULKAN_HPP_NO_STRUCT_CONSTRUCTORS ) - VULKAN_HPP_CONSTEXPR XlibSurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::XlibSurfaceCreateFlagsKHR flags_ = {}, - Display * dpy_ = {}, - Window window_ = {} ) VULKAN_HPP_NOEXCEPT - : flags( flags_ ) - , dpy( dpy_ ) - , window( window_ ) - {} - - VULKAN_HPP_CONSTEXPR XlibSurfaceCreateInfoKHR( XlibSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - XlibSurfaceCreateInfoKHR( VkXlibSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - : XlibSurfaceCreateInfoKHR( *reinterpret_cast( &rhs ) ) - {} -# endif /*VULKAN_HPP_NO_STRUCT_CONSTRUCTORS*/ - - XlibSurfaceCreateInfoKHR & operator=( XlibSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT = default; - - XlibSurfaceCreateInfoKHR & operator=( VkXlibSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT - { - *this = *reinterpret_cast( &rhs ); - return *this; - } - -# if !defined( VULKAN_HPP_NO_STRUCT_SETTERS ) - VULKAN_HPP_CONSTEXPR_14 XlibSurfaceCreateInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT - { - pNext = pNext_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XlibSurfaceCreateInfoKHR & - setFlags( VULKAN_HPP_NAMESPACE::XlibSurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT - { - flags = flags_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XlibSurfaceCreateInfoKHR & setDpy( Display * dpy_ ) VULKAN_HPP_NOEXCEPT - { - dpy = dpy_; - return *this; - } - - VULKAN_HPP_CONSTEXPR_14 XlibSurfaceCreateInfoKHR & setWindow( Window window_ ) VULKAN_HPP_NOEXCEPT - { - window = window_; - return *this; - } -# endif /*VULKAN_HPP_NO_STRUCT_SETTERS*/ - - explicit operator VkXlibSurfaceCreateInfoKHR const &() const VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - - explicit operator VkXlibSurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT - { - return *reinterpret_cast( this ); - } - -# if !defined( __GNUC__ ) || ( 70500 < GCC_VERSION ) -# if 14 <= VULKAN_HPP_CPP_VERSION - auto -# else - std::tuple -# endif - reflect() const VULKAN_HPP_NOEXCEPT - { - return std::tie( sType, pNext, flags, dpy, window ); - } -# endif - -# if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR ) - std::strong_ordering operator<=>( XlibSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - if ( auto cmp = sType <=> rhs.sType; cmp != 0 ) - return cmp; - if ( auto cmp = pNext <=> rhs.pNext; cmp != 0 ) - return cmp; - if ( auto cmp = flags <=> rhs.flags; cmp != 0 ) - return cmp; - if ( auto cmp = dpy <=> rhs.dpy; cmp != 0 ) - return cmp; - if ( auto cmp = memcmp( &window, &rhs.window, sizeof( Window ) ); cmp != 0 ) - return ( cmp < 0 ) ? std::strong_ordering::less : std::strong_ordering::greater; - - return std::strong_ordering::equivalent; - } -# endif - - bool operator==( XlibSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return ( sType == rhs.sType ) && ( pNext == rhs.pNext ) && ( flags == rhs.flags ) && ( dpy == rhs.dpy ) && - ( memcmp( &window, &rhs.window, sizeof( Window ) ) == 0 ); - } - - bool operator!=( XlibSurfaceCreateInfoKHR const & rhs ) const VULKAN_HPP_NOEXCEPT - { - return !operator==( rhs ); - } - - public: - VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eXlibSurfaceCreateInfoKHR; - const void * pNext = {}; - VULKAN_HPP_NAMESPACE::XlibSurfaceCreateFlagsKHR flags = {}; - Display * dpy = {}; - Window window = {}; - }; - VULKAN_HPP_STATIC_ASSERT( sizeof( VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR ) == - sizeof( VkXlibSurfaceCreateInfoKHR ), - "struct and wrapper have different size!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_standard_layout::value, - "struct wrapper is not a standard layout!" ); - VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible::value, - "XlibSurfaceCreateInfoKHR is not nothrow_move_constructible!" ); - - template <> - struct CppType - { - using Type = XlibSurfaceCreateInfoKHR; - }; -#endif /*VK_USE_PLATFORM_XLIB_KHR*/ - -} // namespace VULKAN_HPP_NAMESPACE -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_vi.h b/Externals/Vulkan/Include/vulkan/vulkan_vi.h deleted file mode 100644 index 0355e7a162..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_vi.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef VULKAN_VI_H_ -#define VULKAN_VI_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_NN_vi_surface 1 -#define VK_NN_VI_SURFACE_SPEC_VERSION 1 -#define VK_NN_VI_SURFACE_EXTENSION_NAME "VK_NN_vi_surface" -typedef VkFlags VkViSurfaceCreateFlagsNN; -typedef struct VkViSurfaceCreateInfoNN { - VkStructureType sType; - const void* pNext; - VkViSurfaceCreateFlagsNN flags; - void* window; -} VkViSurfaceCreateInfoNN; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateViSurfaceNN)(VkInstance instance, const VkViSurfaceCreateInfoNN* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateViSurfaceNN( - VkInstance instance, - const VkViSurfaceCreateInfoNN* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_wayland.h b/Externals/Vulkan/Include/vulkan/vulkan_wayland.h deleted file mode 100644 index 9afd0b76d5..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_wayland.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef VULKAN_WAYLAND_H_ -#define VULKAN_WAYLAND_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_KHR_wayland_surface 1 -#define VK_KHR_WAYLAND_SURFACE_SPEC_VERSION 6 -#define VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME "VK_KHR_wayland_surface" -typedef VkFlags VkWaylandSurfaceCreateFlagsKHR; -typedef struct VkWaylandSurfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkWaylandSurfaceCreateFlagsKHR flags; - struct wl_display* display; - struct wl_surface* surface; -} VkWaylandSurfaceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateWaylandSurfaceKHR)(VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); -typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, struct wl_display* display); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateWaylandSurfaceKHR( - VkInstance instance, - const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); - -VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceWaylandPresentationSupportKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - struct wl_display* display); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_win32.h b/Externals/Vulkan/Include/vulkan/vulkan_win32.h deleted file mode 100644 index affe0c02ae..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_win32.h +++ /dev/null @@ -1,315 +0,0 @@ -#ifndef VULKAN_WIN32_H_ -#define VULKAN_WIN32_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_KHR_win32_surface 1 -#define VK_KHR_WIN32_SURFACE_SPEC_VERSION 6 -#define VK_KHR_WIN32_SURFACE_EXTENSION_NAME "VK_KHR_win32_surface" -typedef VkFlags VkWin32SurfaceCreateFlagsKHR; -typedef struct VkWin32SurfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkWin32SurfaceCreateFlagsKHR flags; - HINSTANCE hinstance; - HWND hwnd; -} VkWin32SurfaceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateWin32SurfaceKHR)(VkInstance instance, const VkWin32SurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); -typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateWin32SurfaceKHR( - VkInstance instance, - const VkWin32SurfaceCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); - -VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceWin32PresentationSupportKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex); -#endif - - -#define VK_KHR_external_memory_win32 1 -#define VK_KHR_EXTERNAL_MEMORY_WIN32_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_MEMORY_WIN32_EXTENSION_NAME "VK_KHR_external_memory_win32" -typedef struct VkImportMemoryWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagBits handleType; - HANDLE handle; - LPCWSTR name; -} VkImportMemoryWin32HandleInfoKHR; - -typedef struct VkExportMemoryWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - const SECURITY_ATTRIBUTES* pAttributes; - DWORD dwAccess; - LPCWSTR name; -} VkExportMemoryWin32HandleInfoKHR; - -typedef struct VkMemoryWin32HandlePropertiesKHR { - VkStructureType sType; - void* pNext; - uint32_t memoryTypeBits; -} VkMemoryWin32HandlePropertiesKHR; - -typedef struct VkMemoryGetWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - VkDeviceMemory memory; - VkExternalMemoryHandleTypeFlagBits handleType; -} VkMemoryGetWin32HandleInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryWin32HandleKHR)(VkDevice device, const VkMemoryGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle); -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryWin32HandlePropertiesKHR)(VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, HANDLE handle, VkMemoryWin32HandlePropertiesKHR* pMemoryWin32HandleProperties); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryWin32HandleKHR( - VkDevice device, - const VkMemoryGetWin32HandleInfoKHR* pGetWin32HandleInfo, - HANDLE* pHandle); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryWin32HandlePropertiesKHR( - VkDevice device, - VkExternalMemoryHandleTypeFlagBits handleType, - HANDLE handle, - VkMemoryWin32HandlePropertiesKHR* pMemoryWin32HandleProperties); -#endif - - -#define VK_KHR_win32_keyed_mutex 1 -#define VK_KHR_WIN32_KEYED_MUTEX_SPEC_VERSION 1 -#define VK_KHR_WIN32_KEYED_MUTEX_EXTENSION_NAME "VK_KHR_win32_keyed_mutex" -typedef struct VkWin32KeyedMutexAcquireReleaseInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t acquireCount; - const VkDeviceMemory* pAcquireSyncs; - const uint64_t* pAcquireKeys; - const uint32_t* pAcquireTimeouts; - uint32_t releaseCount; - const VkDeviceMemory* pReleaseSyncs; - const uint64_t* pReleaseKeys; -} VkWin32KeyedMutexAcquireReleaseInfoKHR; - - - -#define VK_KHR_external_semaphore_win32 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_WIN32_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME "VK_KHR_external_semaphore_win32" -typedef struct VkImportSemaphoreWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - VkSemaphoreImportFlags flags; - VkExternalSemaphoreHandleTypeFlagBits handleType; - HANDLE handle; - LPCWSTR name; -} VkImportSemaphoreWin32HandleInfoKHR; - -typedef struct VkExportSemaphoreWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - const SECURITY_ATTRIBUTES* pAttributes; - DWORD dwAccess; - LPCWSTR name; -} VkExportSemaphoreWin32HandleInfoKHR; - -typedef struct VkD3D12FenceSubmitInfoKHR { - VkStructureType sType; - const void* pNext; - uint32_t waitSemaphoreValuesCount; - const uint64_t* pWaitSemaphoreValues; - uint32_t signalSemaphoreValuesCount; - const uint64_t* pSignalSemaphoreValues; -} VkD3D12FenceSubmitInfoKHR; - -typedef struct VkSemaphoreGetWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - VkSemaphore semaphore; - VkExternalSemaphoreHandleTypeFlagBits handleType; -} VkSemaphoreGetWin32HandleInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkImportSemaphoreWin32HandleKHR)(VkDevice device, const VkImportSemaphoreWin32HandleInfoKHR* pImportSemaphoreWin32HandleInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetSemaphoreWin32HandleKHR)(VkDevice device, const VkSemaphoreGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkImportSemaphoreWin32HandleKHR( - VkDevice device, - const VkImportSemaphoreWin32HandleInfoKHR* pImportSemaphoreWin32HandleInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetSemaphoreWin32HandleKHR( - VkDevice device, - const VkSemaphoreGetWin32HandleInfoKHR* pGetWin32HandleInfo, - HANDLE* pHandle); -#endif - - -#define VK_KHR_external_fence_win32 1 -#define VK_KHR_EXTERNAL_FENCE_WIN32_SPEC_VERSION 1 -#define VK_KHR_EXTERNAL_FENCE_WIN32_EXTENSION_NAME "VK_KHR_external_fence_win32" -typedef struct VkImportFenceWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - VkFence fence; - VkFenceImportFlags flags; - VkExternalFenceHandleTypeFlagBits handleType; - HANDLE handle; - LPCWSTR name; -} VkImportFenceWin32HandleInfoKHR; - -typedef struct VkExportFenceWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - const SECURITY_ATTRIBUTES* pAttributes; - DWORD dwAccess; - LPCWSTR name; -} VkExportFenceWin32HandleInfoKHR; - -typedef struct VkFenceGetWin32HandleInfoKHR { - VkStructureType sType; - const void* pNext; - VkFence fence; - VkExternalFenceHandleTypeFlagBits handleType; -} VkFenceGetWin32HandleInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkImportFenceWin32HandleKHR)(VkDevice device, const VkImportFenceWin32HandleInfoKHR* pImportFenceWin32HandleInfo); -typedef VkResult (VKAPI_PTR *PFN_vkGetFenceWin32HandleKHR)(VkDevice device, const VkFenceGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkImportFenceWin32HandleKHR( - VkDevice device, - const VkImportFenceWin32HandleInfoKHR* pImportFenceWin32HandleInfo); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetFenceWin32HandleKHR( - VkDevice device, - const VkFenceGetWin32HandleInfoKHR* pGetWin32HandleInfo, - HANDLE* pHandle); -#endif - - -#define VK_NV_external_memory_win32 1 -#define VK_NV_EXTERNAL_MEMORY_WIN32_SPEC_VERSION 1 -#define VK_NV_EXTERNAL_MEMORY_WIN32_EXTENSION_NAME "VK_NV_external_memory_win32" -typedef struct VkImportMemoryWin32HandleInfoNV { - VkStructureType sType; - const void* pNext; - VkExternalMemoryHandleTypeFlagsNV handleType; - HANDLE handle; -} VkImportMemoryWin32HandleInfoNV; - -typedef struct VkExportMemoryWin32HandleInfoNV { - VkStructureType sType; - const void* pNext; - const SECURITY_ATTRIBUTES* pAttributes; - DWORD dwAccess; -} VkExportMemoryWin32HandleInfoNV; - -typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryWin32HandleNV)(VkDevice device, VkDeviceMemory memory, VkExternalMemoryHandleTypeFlagsNV handleType, HANDLE* pHandle); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryWin32HandleNV( - VkDevice device, - VkDeviceMemory memory, - VkExternalMemoryHandleTypeFlagsNV handleType, - HANDLE* pHandle); -#endif - - -#define VK_NV_win32_keyed_mutex 1 -#define VK_NV_WIN32_KEYED_MUTEX_SPEC_VERSION 2 -#define VK_NV_WIN32_KEYED_MUTEX_EXTENSION_NAME "VK_NV_win32_keyed_mutex" -typedef struct VkWin32KeyedMutexAcquireReleaseInfoNV { - VkStructureType sType; - const void* pNext; - uint32_t acquireCount; - const VkDeviceMemory* pAcquireSyncs; - const uint64_t* pAcquireKeys; - const uint32_t* pAcquireTimeoutMilliseconds; - uint32_t releaseCount; - const VkDeviceMemory* pReleaseSyncs; - const uint64_t* pReleaseKeys; -} VkWin32KeyedMutexAcquireReleaseInfoNV; - - - -#define VK_EXT_full_screen_exclusive 1 -#define VK_EXT_FULL_SCREEN_EXCLUSIVE_SPEC_VERSION 4 -#define VK_EXT_FULL_SCREEN_EXCLUSIVE_EXTENSION_NAME "VK_EXT_full_screen_exclusive" - -typedef enum VkFullScreenExclusiveEXT { - VK_FULL_SCREEN_EXCLUSIVE_DEFAULT_EXT = 0, - VK_FULL_SCREEN_EXCLUSIVE_ALLOWED_EXT = 1, - VK_FULL_SCREEN_EXCLUSIVE_DISALLOWED_EXT = 2, - VK_FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXT = 3, - VK_FULL_SCREEN_EXCLUSIVE_MAX_ENUM_EXT = 0x7FFFFFFF -} VkFullScreenExclusiveEXT; -typedef struct VkSurfaceFullScreenExclusiveInfoEXT { - VkStructureType sType; - void* pNext; - VkFullScreenExclusiveEXT fullScreenExclusive; -} VkSurfaceFullScreenExclusiveInfoEXT; - -typedef struct VkSurfaceCapabilitiesFullScreenExclusiveEXT { - VkStructureType sType; - void* pNext; - VkBool32 fullScreenExclusiveSupported; -} VkSurfaceCapabilitiesFullScreenExclusiveEXT; - -typedef struct VkSurfaceFullScreenExclusiveWin32InfoEXT { - VkStructureType sType; - const void* pNext; - HMONITOR hmonitor; -} VkSurfaceFullScreenExclusiveWin32InfoEXT; - -typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceSurfacePresentModes2EXT)(VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, uint32_t* pPresentModeCount, VkPresentModeKHR* pPresentModes); -typedef VkResult (VKAPI_PTR *PFN_vkAcquireFullScreenExclusiveModeEXT)(VkDevice device, VkSwapchainKHR swapchain); -typedef VkResult (VKAPI_PTR *PFN_vkReleaseFullScreenExclusiveModeEXT)(VkDevice device, VkSwapchainKHR swapchain); -typedef VkResult (VKAPI_PTR *PFN_vkGetDeviceGroupSurfacePresentModes2EXT)(VkDevice device, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, VkDeviceGroupPresentModeFlagsKHR* pModes); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfacePresentModes2EXT( - VkPhysicalDevice physicalDevice, - const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, - uint32_t* pPresentModeCount, - VkPresentModeKHR* pPresentModes); - -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireFullScreenExclusiveModeEXT( - VkDevice device, - VkSwapchainKHR swapchain); - -VKAPI_ATTR VkResult VKAPI_CALL vkReleaseFullScreenExclusiveModeEXT( - VkDevice device, - VkSwapchainKHR swapchain); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetDeviceGroupSurfacePresentModes2EXT( - VkDevice device, - const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, - VkDeviceGroupPresentModeFlagsKHR* pModes); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_xcb.h b/Externals/Vulkan/Include/vulkan/vulkan_xcb.h deleted file mode 100644 index 68e61b88f0..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_xcb.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef VULKAN_XCB_H_ -#define VULKAN_XCB_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_KHR_xcb_surface 1 -#define VK_KHR_XCB_SURFACE_SPEC_VERSION 6 -#define VK_KHR_XCB_SURFACE_EXTENSION_NAME "VK_KHR_xcb_surface" -typedef VkFlags VkXcbSurfaceCreateFlagsKHR; -typedef struct VkXcbSurfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkXcbSurfaceCreateFlagsKHR flags; - xcb_connection_t* connection; - xcb_window_t window; -} VkXcbSurfaceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateXcbSurfaceKHR)(VkInstance instance, const VkXcbSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); -typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, xcb_connection_t* connection, xcb_visualid_t visual_id); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateXcbSurfaceKHR( - VkInstance instance, - const VkXcbSurfaceCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); - -VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceXcbPresentationSupportKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - xcb_connection_t* connection, - xcb_visualid_t visual_id); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_xlib.h b/Externals/Vulkan/Include/vulkan/vulkan_xlib.h deleted file mode 100644 index ea5360ab64..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_xlib.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef VULKAN_XLIB_H_ -#define VULKAN_XLIB_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_KHR_xlib_surface 1 -#define VK_KHR_XLIB_SURFACE_SPEC_VERSION 6 -#define VK_KHR_XLIB_SURFACE_EXTENSION_NAME "VK_KHR_xlib_surface" -typedef VkFlags VkXlibSurfaceCreateFlagsKHR; -typedef struct VkXlibSurfaceCreateInfoKHR { - VkStructureType sType; - const void* pNext; - VkXlibSurfaceCreateFlagsKHR flags; - Display* dpy; - Window window; -} VkXlibSurfaceCreateInfoKHR; - -typedef VkResult (VKAPI_PTR *PFN_vkCreateXlibSurfaceKHR)(VkInstance instance, const VkXlibSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); -typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, Display* dpy, VisualID visualID); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkCreateXlibSurfaceKHR( - VkInstance instance, - const VkXlibSurfaceCreateInfoKHR* pCreateInfo, - const VkAllocationCallbacks* pAllocator, - VkSurfaceKHR* pSurface); - -VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceXlibPresentationSupportKHR( - VkPhysicalDevice physicalDevice, - uint32_t queueFamilyIndex, - Display* dpy, - VisualID visualID); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Externals/Vulkan/Include/vulkan/vulkan_xlib_xrandr.h b/Externals/Vulkan/Include/vulkan/vulkan_xlib_xrandr.h deleted file mode 100644 index 8fc35cfc56..0000000000 --- a/Externals/Vulkan/Include/vulkan/vulkan_xlib_xrandr.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef VULKAN_XLIB_XRANDR_H_ -#define VULKAN_XLIB_XRANDR_H_ 1 - -/* -** Copyright 2015-2022 The Khronos Group Inc. -** -** SPDX-License-Identifier: Apache-2.0 -*/ - -/* -** This header is generated from the Khronos Vulkan XML API Registry. -** -*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - - -#define VK_EXT_acquire_xlib_display 1 -#define VK_EXT_ACQUIRE_XLIB_DISPLAY_SPEC_VERSION 1 -#define VK_EXT_ACQUIRE_XLIB_DISPLAY_EXTENSION_NAME "VK_EXT_acquire_xlib_display" -typedef VkResult (VKAPI_PTR *PFN_vkAcquireXlibDisplayEXT)(VkPhysicalDevice physicalDevice, Display* dpy, VkDisplayKHR display); -typedef VkResult (VKAPI_PTR *PFN_vkGetRandROutputDisplayEXT)(VkPhysicalDevice physicalDevice, Display* dpy, RROutput rrOutput, VkDisplayKHR* pDisplay); - -#ifndef VK_NO_PROTOTYPES -VKAPI_ATTR VkResult VKAPI_CALL vkAcquireXlibDisplayEXT( - VkPhysicalDevice physicalDevice, - Display* dpy, - VkDisplayKHR display); - -VKAPI_ATTR VkResult VKAPI_CALL vkGetRandROutputDisplayEXT( - VkPhysicalDevice physicalDevice, - Display* dpy, - RROutput rrOutput, - VkDisplayKHR* pDisplay); -#endif - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Source/Core/VideoBackends/Vulkan/CMakeLists.txt b/Source/Core/VideoBackends/Vulkan/CMakeLists.txt index ec9e1b51cb..a41c5af172 100644 --- a/Source/Core/VideoBackends/Vulkan/CMakeLists.txt +++ b/Source/Core/VideoBackends/Vulkan/CMakeLists.txt @@ -58,7 +58,7 @@ endif() # Only include the Vulkan headers when building the Vulkan backend target_include_directories(videovulkan PRIVATE - ${CMAKE_SOURCE_DIR}/Externals/Vulkan/Include + ${CMAKE_SOURCE_DIR}/Externals/Vulkan-Headers/include ${CMAKE_SOURCE_DIR}/Externals/VulkanMemoryAllocator/include ${CMAKE_SOURCE_DIR}/Externals/libadrenotools/include ) diff --git a/Source/Core/VideoBackends/Vulkan/VulkanLoader.h b/Source/Core/VideoBackends/Vulkan/VulkanLoader.h index d1a426d952..e4c8f9e8a6 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanLoader.h +++ b/Source/Core/VideoBackends/Vulkan/VulkanLoader.h @@ -46,18 +46,21 @@ #ifdef _MSVC_LANG #pragma warning(push, 4) #pragma warning(disable : 4189) // local variable is initialized but not referenced +#pragma warning(disable : 4505) // function with internal linkage is not referenced #endif // #ifdef _MSVC_LANG #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunused-variable" +#pragma clang diagnostic ignored "-Wunused-function" #pragma clang diagnostic ignored "-Wnullability-completeness" #endif // #ifdef __clang__ #ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-variable" +#pragma GCC diagnostic ignored "-Wunused-function" #endif // #ifdef __GNUC__ #define VMA_VULKAN_VERSION 1001000 diff --git a/Source/VSProps/Base.Dolphin.props b/Source/VSProps/Base.Dolphin.props index 33da70013e..d3ef409c9e 100644 --- a/Source/VSProps/Base.Dolphin.props +++ b/Source/VSProps/Base.Dolphin.props @@ -14,7 +14,7 @@ $(ExternalsDir)OpenAL\include;%(AdditionalIncludeDirectories) $(ExternalsDir)expr\include;%(AdditionalIncludeDirectories) $(ExternalsDir)rangeset\include;%(AdditionalIncludeDirectories) - $(ExternalsDir)Vulkan\include;%(AdditionalIncludeDirectories) + $(ExternalsDir)Vulkan-Headers\include;%(AdditionalIncludeDirectories) $(ExternalsDir)VulkanMemoryAllocator\include;%(AdditionalIncludeDirectories) $(ExternalsDir)WIL\include;%(AdditionalIncludeDirectories) From aa393dfb6eb1c7b40016e14e4997829f4a40b191 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 21 Jun 2024 19:49:36 -0400 Subject: [PATCH 115/296] Add MemoryVerifier to AchievementManager Startup rc_client calls the provided memory peeker asynchronously in the callback for starting a session, to validate/invalidate the memory used for achievements. Dolphin cannot access memory from any thread but host or CPU so this access has a small chance of being invalid. This commit adds a MemoryVerifier that the AchievementManager will use to perform this, before changing the peek method back to the original MemoryPeeker for normal operation. --- Source/Core/Core/AchievementManager.cpp | 44 +++++++++++++++++++++---- Source/Core/Core/AchievementManager.h | 1 + 2 files changed, 38 insertions(+), 7 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 3bcf4cfb7b..c85f6f0f59 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -13,6 +13,7 @@ #include #include +#include "Common/Assert.h" #include "Common/CommonPaths.h" #include "Common/FileUtil.h" #include "Common/Image.h" @@ -22,6 +23,7 @@ #include "Common/WorkQueueThread.h" #include "Core/Config/AchievementSettings.h" #include "Core/Core.h" +#include "Core/HW/Memmap.h" #include "Core/PowerPC/MMU.h" #include "Core/System.h" #include "DiscIO/Blob.h" @@ -44,7 +46,7 @@ void AchievementManager::Init() LoadDefaultBadges(); if (!m_client && Config::Get(Config::RA_ENABLED)) { - m_client = rc_client_create(MemoryPeeker, Request); + m_client = rc_client_create(MemoryVerifier, Request); std::string host_url = Config::Get(Config::RA_HOST_URL); if (!host_url.empty()) rc_client_set_host(m_client, host_url.c_str()); @@ -120,6 +122,7 @@ void AchievementManager::LoadGame(const std::string& file_path, const DiscIO::Vo rc_client_set_unofficial_enabled(m_client, Config::Get(Config::RA_UNOFFICIAL_ENABLED)); rc_client_set_encore_mode_enabled(m_client, Config::Get(Config::RA_ENCORE_ENABLED)); rc_client_set_spectator_mode_enabled(m_client, Config::Get(Config::RA_SPECTATOR_ENABLED)); + rc_client_set_read_memory_function(m_client, MemoryVerifier); if (volume) { std::lock_guard lg{m_lock}; @@ -679,13 +682,14 @@ void AchievementManager::LoadGameCallback(int result, const char* error_message, } INFO_LOG_FMT(ACHIEVEMENTS, "Loaded data for game ID {}.", game->id); - AchievementManager::GetInstance().m_display_welcome_message = true; - AchievementManager::GetInstance().FetchGameBadges(); - AchievementManager::GetInstance().m_system = &Core::System::GetInstance(); - AchievementManager::GetInstance().m_update_callback({.all = true}); + auto& instance = AchievementManager::GetInstance(); + rc_client_set_read_memory_function(instance.m_client, MemoryPeeker); + instance.m_display_welcome_message = true; + instance.FetchGameBadges(); + instance.m_system = &Core::System::GetInstance(); + instance.m_update_callback({.all = true}); // Set this to a value that will immediately trigger RP - AchievementManager::GetInstance().m_last_rp_time = - std::chrono::steady_clock::now() - std::chrono::minutes{2}; + instance.m_last_rp_time = std::chrono::steady_clock::now() - std::chrono::minutes{2}; } void AchievementManager::ChangeMediaCallback(int result, const char* error_message, @@ -706,6 +710,7 @@ void AchievementManager::ChangeMediaCallback(int result, const char* error_messa ERROR_LOG_FMT(ACHIEVEMENTS, "RetroAchievements media change failed: {}", error_message); } + rc_client_set_read_memory_function(AchievementManager::GetInstance().m_client, MemoryPeeker); } void AchievementManager::DisplayWelcomeMessage() @@ -914,11 +919,36 @@ void AchievementManager::Request(const rc_api_request_t* request, }); } +// Currently, when rc_client calls the memory peek method provided in its constructor (or in +// rc_client_set_read_memory_function) it will do so on the thread that calls DoFrame, which is +// currently the host thread, with one exception: an asynchronous callback in the load game process. +// This is done to validate/invalidate each memory reference in the downloaded assets, mark assets +// as unsupported, and notify the player upon startup that there are unsupported assets and how +// many. As such, all that call needs to do is return the number of bytes that can be read with this +// call. As only the CPU and host threads are allowed to read from memory, I provide a separate +// method for this verification. In lieu of a more convenient set of steps, I provide MemoryVerifier +// to rc_client at construction, and in the Load Game callback, after the verification has been +// complete, I call rc_client_set_read_memory_function to switch to the usual MemoryPeeker for all +// future synchronous calls. +u32 AchievementManager::MemoryVerifier(u32 address, u8* buffer, u32 num_bytes, rc_client_t* client) +{ + auto& system = Core::System::GetInstance(); + u32 ram_size = system.GetMemory().GetRamSizeReal(); + if (address >= ram_size) + return 0; + return std::min(ram_size - address, num_bytes); +} + u32 AchievementManager::MemoryPeeker(u32 address, u8* buffer, u32 num_bytes, rc_client_t* client) { if (buffer == nullptr) return 0u; auto& system = Core::System::GetInstance(); + if (!(Core::IsHostThread() || Core::IsCPUThread())) + { + ASSERT_MSG(ACHIEVEMENTS, false, "MemoryPeeker called from wrong thread"); + return 0; + } Core::CPUThreadGuard threadguard(system); for (u32 num_read = 0; num_read < num_bytes; num_read++) { diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index ce99008808..c26d3bcf96 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -177,6 +177,7 @@ private: static void Request(const rc_api_request_t* request, rc_client_server_callback_t callback, void* callback_data, rc_client_t* client); + static u32 MemoryVerifier(u32 address, u8* buffer, u32 num_bytes, rc_client_t* client); static u32 MemoryPeeker(u32 address, u8* buffer, u32 num_bytes, rc_client_t* client); void FetchBadge(Badge* badge, u32 badge_type, const BadgeNameFunction function, const UpdatedItems callback_data); From 0f659508eadd010dbffb1e0cb7f7826971b4b66e Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 22 Jun 2024 18:19:27 +0100 Subject: [PATCH 116/296] DolphinQt: fix two -Wunused-lambda-capture warnings Also clean up signals a bit. --- Source/Core/DolphinQt/Settings.cpp | 5 ----- Source/Core/DolphinQt/Settings.h | 1 - Source/Core/DolphinQt/Settings/InterfacePane.cpp | 10 +++++----- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 9cc1a1a5ab..4ab29c3e0f 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -354,11 +354,6 @@ void Settings::NotifyRefreshGameListComplete() emit GameListRefreshCompleted(); } -void Settings::RefreshMetadata() -{ - emit MetadataRefreshRequested(); -} - void Settings::NotifyMetadataRefreshComplete() { emit MetadataRefreshCompleted(); diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index 479d723e59..a99e8c7dca 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -104,7 +104,6 @@ public: void RefreshGameList(); void NotifyRefreshGameListStarted(); void NotifyRefreshGameListComplete(); - void RefreshMetadata(); void NotifyMetadataRefreshComplete(); void ReloadTitleDB(); bool IsAutoRefreshEnabled() const; diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index c375214bd3..42f186abee 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -235,15 +235,15 @@ void InterfacePane::ConnectLayout() connect(m_checkbox_use_builtin_title_database, &QCheckBox::toggled, &Settings::Instance(), &Settings::GameListRefreshRequested); connect(m_checkbox_use_covers, &QCheckBox::toggled, &Settings::Instance(), - &Settings::RefreshMetadata); + &Settings::MetadataRefreshRequested); connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(), &Settings::SetDebugModeEnabled); - connect(m_combobox_theme, &QComboBox::currentIndexChanged, this, - [this](int index) { Settings::Instance().TriggerThemeChanged(); }); + connect(m_combobox_theme, &QComboBox::currentIndexChanged, &Settings::Instance(), + &Settings::ThemeChanged); connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this, &InterfacePane::OnUserStyleChanged); connect(m_combobox_language, &QComboBox::currentIndexChanged, this, - [this]() { OnLanguageChanged(); }); + &InterfacePane::OnLanguageChanged); connect(m_checkbox_top_window, &QCheckBox::toggled, &Settings::Instance(), &Settings::KeepWindowOnTopChanged); connect(m_radio_cursor_visible_movement, &ConfigRadioInt::OnSelected, &Settings::Instance(), @@ -253,7 +253,7 @@ void InterfacePane::ConnectLayout() connect(m_radio_cursor_visible_always, &ConfigRadioInt::OnSelected, &Settings::Instance(), &Settings::CursorVisibilityChanged); connect(m_checkbox_lock_mouse, &QCheckBox::toggled, &Settings::Instance(), - [this]() { Settings::Instance().LockCursorChanged(); }); + &Settings::LockCursorChanged); } void InterfacePane::UpdateShowDebuggingCheckbox() From 5c46716d28056dc41de4097efd33c89f45ae7a37 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 23 Jun 2024 01:15:59 +0100 Subject: [PATCH 117/296] DolphinQt: fix two -Wshadow-uncaptured-local warnings --- Source/Core/DolphinQt/GameList/GameList.cpp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 1003cff599..97c596b969 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -299,16 +299,14 @@ void GameList::MakeEmptyView() size_policy.setRetainSizeWhenHidden(true); m_empty->setSizePolicy(size_policy); - connect(&Settings::Instance(), &Settings::GameListRefreshRequested, this, - [this, refreshing_msg = refreshing_msg] { - m_empty->setText(refreshing_msg); - m_empty->setEnabled(false); - }); - connect(&Settings::Instance(), &Settings::GameListRefreshCompleted, this, - [this, empty_msg = empty_msg] { - m_empty->setText(empty_msg); - m_empty->setEnabled(true); - }); + connect(&Settings::Instance(), &Settings::GameListRefreshRequested, this, [this, refreshing_msg] { + m_empty->setText(refreshing_msg); + m_empty->setEnabled(false); + }); + connect(&Settings::Instance(), &Settings::GameListRefreshCompleted, this, [this, empty_msg] { + m_empty->setText(empty_msg); + m_empty->setEnabled(true); + }); } void GameList::resizeEvent(QResizeEvent* event) From 8e7d11d1a1c421b9c89105a33a71924c7d619ff9 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 23 Jun 2024 01:32:18 +0100 Subject: [PATCH 118/296] DolphinQt: fix -Wunused-const-variable warning --- Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp index 6c815e4a15..ad7305ac15 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp @@ -59,8 +59,6 @@ #include "InputCommon/ControllerInterface/CoreDevice.h" #include "InputCommon/InputConfig.h" -constexpr const char* PROFILES_DIR = "Profiles/"; - MappingWindow::MappingWindow(QWidget* parent, Type type, int port_num) : QDialog(parent), m_port(port_num) { From ce2f4101f3e50d61a1d4a7348a016d928930ff33 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 23 Jun 2024 03:44:05 +0200 Subject: [PATCH 119/296] Core/VideoCommon: Revert change from #12828 This causes Dual Core to lock up during the boot sequence, because it tries to wait for a not-yet-running GPU thread. Fixes https://bugs.dolphin-emu.org/issues/13559 --- Source/Core/VideoCommon/VideoConfig.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 0e2e3566ea..efa159795c 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -66,12 +66,15 @@ void VideoConfig::Refresh() CPUThreadConfigCallback::AddConfigChangedCallback([]() { auto& system = Core::System::GetInstance(); - system.GetFifo().PauseAndLock(true, false); + const bool lock_gpu_thread = Core::IsRunning(system); + if (lock_gpu_thread) + system.GetFifo().PauseAndLock(true, false); g_Config.Refresh(); g_Config.VerifyValidity(); - system.GetFifo().PauseAndLock(false, true); + if (lock_gpu_thread) + system.GetFifo().PauseAndLock(false, true); }); s_has_registered_callback = true; } From bf230a99096bdd8b09ce8628c7db93715c2ba25f Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 20 Jun 2024 23:15:19 -0400 Subject: [PATCH 120/296] Trim extra characters from measured progress The measured_progress C string for achievements to display potentially contains junk data after the null terminator, which was rendering in the QString in the dialog. This trims those junk characters. --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index a14936171d..c0fc202a8f 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -4,6 +4,7 @@ #ifdef USE_RETRO_ACHIEVEMENTS #include "DolphinQt/Achievements/AchievementBox.h" +#include #include #include #include @@ -92,7 +93,9 @@ void AchievementBox::UpdateData() m_progress_bar->setRange(0, 100); m_progress_bar->setValue(m_achievement->measured_percent); m_progress_bar->setTextVisible(false); - m_progress_label->setText(QString::fromUtf8(m_achievement->measured_progress, PROGRESS_LENGTH)); + m_progress_label->setText( + QString::fromUtf8(m_achievement->measured_progress, + qstrnlen(m_achievement->measured_progress, PROGRESS_LENGTH))); m_progress_bar->setVisible(true); } else From 81fc60f88802aa9fa5f92ebe6bf7f3c824880632 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Sun, 23 Jun 2024 10:49:14 -0700 Subject: [PATCH 121/296] MainWindow: Remove Show() and redistribute its logic to other places. bugfix: SetQWidgetWindowDecorations(this); not called before show() for Windows darkmode titlebars. The actual call to (QWidget) show() needed to come sooner. Show() was originally left alone, but with other checks needing to move with (QWidget) show(), this function became less useful. Show() was originally created to fix the render widget appearing behind the main window, but that appears to work fine in this iteration. --- Source/Core/DolphinQt/Main.cpp | 1 - Source/Core/DolphinQt/MainWindow.cpp | 25 +++++++++---------------- Source/Core/DolphinQt/MainWindow.h | 1 - 3 files changed, 9 insertions(+), 18 deletions(-) diff --git a/Source/Core/DolphinQt/Main.cpp b/Source/Core/DolphinQt/Main.cpp index 6ea70886ee..874253ed78 100644 --- a/Source/Core/DolphinQt/Main.cpp +++ b/Source/Core/DolphinQt/Main.cpp @@ -251,7 +251,6 @@ int main(int argc, char* argv[]) Settings::Instance().ApplyStyle(); MainWindow win{std::move(boot), static_cast(options.get("movie"))}; - win.Show(); #if defined(USE_ANALYTICS) && USE_ANALYTICS if (!Config::Get(Config::MAIN_ANALYTICS_PERMISSION_ASKED)) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 0bef377f07..3cc51ac5f3 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -240,7 +240,10 @@ MainWindow::MainWindow(std::unique_ptr boot_parameters, restoreState(settings.value(QStringLiteral("mainwindow/state")).toByteArray()); restoreGeometry(settings.value(QStringLiteral("mainwindow/geometry")).toByteArray()); if (!Settings::Instance().IsBatchModeEnabled()) + { + SetQWidgetWindowDecorations(this); show(); + } InitControllers(); ConnectHotkeys(); @@ -320,6 +323,12 @@ MainWindow::MainWindow(std::unique_ptr boot_parameters, } Host::GetInstance()->SetMainWindowHandle(reinterpret_cast(winId())); + + if (m_pending_boot != nullptr) + { + StartGame(std::move(m_pending_boot)); + m_pending_boot.reset(); + } } MainWindow::~MainWindow() @@ -2073,19 +2082,3 @@ void MainWindow::ShowRiivolutionBootWidget(const UICommon::GameFile& game) AddRiivolutionPatches(boot_params.get(), std::move(w.GetPatches())); StartGame(std::move(boot_params)); } - -void MainWindow::Show() -{ - if (!Settings::Instance().IsBatchModeEnabled()) - { - SetQWidgetWindowDecorations(this); - QWidget::show(); - } - - // If the booting of a game was requested on start up, do that now - if (m_pending_boot != nullptr) - { - StartGame(std::move(m_pending_boot)); - m_pending_boot.reset(); - } -} diff --git a/Source/Core/DolphinQt/MainWindow.h b/Source/Core/DolphinQt/MainWindow.h index ede2380125..2dcb73ceb2 100644 --- a/Source/Core/DolphinQt/MainWindow.h +++ b/Source/Core/DolphinQt/MainWindow.h @@ -78,7 +78,6 @@ public: const std::string& movie_path); ~MainWindow(); - void Show(); WindowSystemInfo GetWindowSystemInfo() const; bool eventFilter(QObject* object, QEvent* event) override; From 01b44837f4f970246e800d46e57e4382eb17d065 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 15 Jun 2024 18:15:45 +0200 Subject: [PATCH 122/296] Android: Track whether app is in foreground --- .../dolphinemu/DolphinApplication.java | 2 + .../dolphinemu/utils/ActivityTracker.kt | 41 +++++++++++++++++++ Source/Android/jni/ActivityTracker.cpp | 21 ++++++++++ Source/Android/jni/CMakeLists.txt | 3 +- Source/Core/Core/AchievementManager.cpp | 4 ++ Source/Core/Core/AchievementManager.h | 3 ++ 6 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/ActivityTracker.kt create mode 100644 Source/Android/jni/ActivityTracker.cpp diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/DolphinApplication.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/DolphinApplication.java index c197c002b0..e0816e408b 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/DolphinApplication.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/DolphinApplication.java @@ -6,6 +6,7 @@ import android.app.Application; import android.content.Context; import android.hardware.usb.UsbManager; +import org.dolphinemu.dolphinemu.utils.ActivityTracker; import org.dolphinemu.dolphinemu.utils.DirectoryInitialization; import org.dolphinemu.dolphinemu.utils.Java_GCAdapter; import org.dolphinemu.dolphinemu.utils.Java_WiimoteAdapter; @@ -20,6 +21,7 @@ public class DolphinApplication extends Application { super.onCreate(); application = this; + registerActivityLifecycleCallbacks(new ActivityTracker()); VolleyUtil.init(getApplicationContext()); System.loadLibrary("main"); diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/ActivityTracker.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/ActivityTracker.kt new file mode 100644 index 0000000000..b3a6a5d91a --- /dev/null +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/ActivityTracker.kt @@ -0,0 +1,41 @@ +package org.dolphinemu.dolphinemu.utils + +import android.app.Activity +import android.app.Application.ActivityLifecycleCallbacks +import android.os.Bundle + +class ActivityTracker : ActivityLifecycleCallbacks { + val resumedActivities = HashSet() + var backgroundExecutionAllowed = false + + override fun onActivityCreated(activity: Activity, bundle: Bundle?) {} + + override fun onActivityStarted(activity: Activity) {} + + override fun onActivityResumed(activity: Activity) { + resumedActivities.add(activity) + if (!backgroundExecutionAllowed && !resumedActivities.isEmpty()) { + backgroundExecutionAllowed = true + setBackgroundExecutionAllowedNative(true) + } + } + + override fun onActivityPaused(activity: Activity) { + resumedActivities.remove(activity) + if (backgroundExecutionAllowed && resumedActivities.isEmpty()) { + backgroundExecutionAllowed = false + setBackgroundExecutionAllowedNative(false) + } + } + + override fun onActivityStopped(activity: Activity) {} + + override fun onActivitySaveInstanceState(activity: Activity, bundle: Bundle) {} + + override fun onActivityDestroyed(activity: Activity) {} + + companion object { + @JvmStatic + external fun setBackgroundExecutionAllowedNative(allowed: Boolean) + } +} diff --git a/Source/Android/jni/ActivityTracker.cpp b/Source/Android/jni/ActivityTracker.cpp new file mode 100644 index 0000000000..b871890576 --- /dev/null +++ b/Source/Android/jni/ActivityTracker.cpp @@ -0,0 +1,21 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include + +#include "Common/Logging/Log.h" +#include "Core/AchievementManager.h" + +extern "C" { + +JNIEXPORT void JNICALL +Java_org_dolphinemu_dolphinemu_utils_ActivityTracker_setBackgroundExecutionAllowedNative( + JNIEnv*, jclass, jboolean allowed) +{ + // This is called with allowed == false when the app goes into the background. + // We use this to stop continuously running background threads so we don't waste battery. + + INFO_LOG_FMT(CORE, "SetBackgroundExecutionAllowed {}", allowed); + AchievementManager::GetInstance().SetBackgroundExecutionAllowed(allowed); +} +} diff --git a/Source/Android/jni/CMakeLists.txt b/Source/Android/jni/CMakeLists.txt index ab2acc7063..7ddae94c07 100644 --- a/Source/Android/jni/CMakeLists.txt +++ b/Source/Android/jni/CMakeLists.txt @@ -1,4 +1,5 @@ add_library(main SHARED + ActivityTracker.cpp Cheats/ARCheat.cpp Cheats/Cheats.h Cheats/GeckoCheat.cpp @@ -11,6 +12,7 @@ add_library(main SHARED GameList/GameFile.cpp GameList/GameFile.h GameList/GameFileCache.cpp + GpuDriver.cpp Host.cpp Host.h InfinityConfig.cpp @@ -32,7 +34,6 @@ add_library(main SHARED RiivolutionPatches.cpp SkylanderConfig.cpp WiiUtils.cpp - GpuDriver.cpp ) target_link_libraries(main diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c85f6f0f59..8227df450b 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -158,6 +158,10 @@ bool AchievementManager::IsGameLoaded() const return game_info && game_info->id != 0; } +void AchievementManager::SetBackgroundExecutionAllowed(bool allowed) +{ +} + void AchievementManager::FetchPlayerBadge() { FetchBadge(&m_player_badge, RC_IMAGE_TYPE_USER, diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index c26d3bcf96..935b4c0948 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -96,6 +96,7 @@ public: bool HasAPIToken() const; void LoadGame(const std::string& file_path, const DiscIO::Volume* volume); bool IsGameLoaded() const; + void SetBackgroundExecutionAllowed(bool allowed); void FetchPlayerBadge(); void FetchGameBadges(); @@ -239,6 +240,8 @@ public: constexpr void LoadGame(const std::string&, const DiscIO::Volume*) {} + constexpr void SetBackgroundExecutionAllowed(bool allowed) {} + constexpr void DoFrame() {} constexpr void CloseGame() {} From f8f117e59972aeb0f6ee0926132e9f68ed1b4bad Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 24 Jun 2024 15:06:37 -0400 Subject: [PATCH 123/296] GeneralPane: Update "Beta" auto update track to "Releases" --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index a2eda20e9d..00f7c5ea17 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -194,7 +194,7 @@ void GeneralPane::CreateAutoUpdate() auto_update_group_layout->addRow(tr("&Auto Update:"), m_combobox_update_track); for (const QString& option : - {tr("Don't Update"), tr("Beta (once a month)"), tr("Dev (multiple times a day)")}) + {tr("Don't Update"), tr("Releases (every few months)"), tr("Dev (multiple times a day)")}) m_combobox_update_track->addItem(option); } From 9c432e960b2a4aa2e401468ec042958fe0fb62eb Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 24 Jun 2024 15:06:54 -0400 Subject: [PATCH 124/296] AboutDialog: Update copyright year to 2024 --- Source/Core/DolphinQt/AboutDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/AboutDialog.cpp b/Source/Core/DolphinQt/AboutDialog.cpp index c051b803fc..8bd03c5b4b 100644 --- a/Source/Core/DolphinQt/AboutDialog.cpp +++ b/Source/Core/DolphinQt/AboutDialog.cpp @@ -89,7 +89,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) // in your translation, please use the type of curly quotes that's appropriate for // your language. If you aren't sure which type is appropriate, see // https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features - tr("\u00A9 2003-2015+ Dolphin Team. \u201cGameCube\u201d and \u201cWii\u201d are " + tr("\u00A9 2003-2024+ Dolphin Team. \u201cGameCube\u201d and \u201cWii\u201d are " "trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way."))); QLabel* logo = new QLabel(); From 04b0ceedcdf13b0878ceb2d6a05d35d86e0bacee Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 24 Jun 2024 15:08:12 -0400 Subject: [PATCH 125/296] Android: Update copyright year in About dialog to 2024 --- Source/Android/app/src/main/res/values/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 0726d9b40d..052a0a0028 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -874,7 +874,7 @@ It can efficiently compress both junk data and encrypted Wii data. Website GitHub Support - \u00A9 2003–2015+ Dolphin Team. \u201cGameCube\u201d and \u201cWii\u201d are trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way. + \u00A9 2003–2024+ Dolphin Team. \u201cGameCube\u201d and \u201cWii\u201d are trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way. System driver The GPU driver that is part of the OS. From 1a33e2845271b9a46d986f09e051fac88e6e50d7 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 20 Jun 2024 00:35:46 -0400 Subject: [PATCH 126/296] Update Achievement Sort and Progress on RP Whenever a request to update the Rich Presence comes in, typically every ten seconds, the Achievement Progress Widget will update the sort order of the achievements and all of their measured values. --- .../DolphinQt/Achievements/AchievementBox.cpp | 55 ++++++++++--------- .../AchievementProgressWidget.cpp | 16 ++++-- .../Achievements/AchievementsWindow.cpp | 2 +- 3 files changed, 40 insertions(+), 33 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index edfcf6fdf9..987b92a6a0 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -61,33 +61,36 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve void AchievementBox::UpdateData() { - std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; - // rc_client guarantees m_achievement will be valid as long as the game is loaded - if (!AchievementManager::GetInstance().IsGameLoaded()) - return; - - const auto& badge = AchievementManager::GetInstance().GetAchievementBadge( - m_achievement->id, m_achievement->state != RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED); - std::string_view color = AchievementManager::GRAY; - if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_HARDCORE) - color = AchievementManager::GOLD; - else if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_SOFTCORE) - color = AchievementManager::BLUE; - QImage i_badge(&badge.data.front(), badge.width, badge.height, QImage::Format_RGBA8888); - m_badge->setPixmap( - QPixmap::fromImage(i_badge).scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - m_badge->adjustSize(); - m_badge->setStyleSheet(QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); - - if (m_achievement->state == RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED) { - m_status->setText( - tr("Unlocked at %1") - .arg(QDateTime::fromSecsSinceEpoch(m_achievement->unlock_time).toString())); - } - else - { - m_status->setText(tr("Locked")); + std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; + // rc_client guarantees m_achievement will be valid as long as the game is loaded + if (!AchievementManager::GetInstance().IsGameLoaded()) + return; + + const auto& badge = AchievementManager::GetInstance().GetAchievementBadge( + m_achievement->id, m_achievement->state != RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED); + std::string_view color = AchievementManager::GRAY; + if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_HARDCORE) + color = AchievementManager::GOLD; + else if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_SOFTCORE) + color = AchievementManager::BLUE; + QImage i_badge(&badge.data.front(), badge.width, badge.height, QImage::Format_RGBA8888); + m_badge->setPixmap( + QPixmap::fromImage(i_badge).scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + m_badge->adjustSize(); + m_badge->setStyleSheet( + QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); + + if (m_achievement->state == RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED) + { + m_status->setText( + tr("Unlocked at %1") + .arg(QDateTime::fromSecsSinceEpoch(m_achievement->unlock_time).toString())); + } + else + { + m_status->setText(tr("Locked")); + } } UpdateProgress(); diff --git a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp index 352645c5db..235f37a5d8 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp @@ -51,7 +51,7 @@ void AchievementProgressWidget::UpdateData(bool clean_all) m_common_layout->removeWidget(widget); if (std::strcmp(widget->metaObject()->className(), "QLabel") == 0) { - delete widget; + widget->deleteLater(); delete item; } } @@ -64,22 +64,26 @@ void AchievementProgressWidget::UpdateData(bool clean_all) auto* achievement_list = rc_client_create_achievement_list(client, RC_CLIENT_ACHIEVEMENT_CATEGORY_CORE_AND_UNOFFICIAL, RC_CLIENT_ACHIEVEMENT_LIST_GROUPING_PROGRESS); + if (!achievement_list) + return; for (u32 ix = 0; ix < achievement_list->num_buckets; ix++) { m_common_layout->addWidget(new QLabel(tr(achievement_list->buckets[ix].label))); for (u32 jx = 0; jx < achievement_list->buckets[ix].num_achievements; jx++) { auto* achievement = achievement_list->buckets[ix].achievements[jx]; - auto box_itr = m_achievement_boxes.find(achievement->id); - if (box_itr == m_achievement_boxes.end()) + auto box_itr = m_achievement_boxes.lower_bound(achievement->id); + if (box_itr != m_achievement_boxes.end() && box_itr->first == achievement->id) { - m_achievement_boxes[achievement->id] = std::make_shared(this, achievement); + box_itr->second->UpdateProgress(); + m_common_layout->addWidget(box_itr->second.get()); } else { - box_itr->second->UpdateProgress(); + const auto new_box_itr = m_achievement_boxes.try_emplace( + box_itr, achievement->id, std::make_shared(this, achievement)); + m_common_layout->addWidget(new_box_itr->second.get()); } - m_common_layout->addWidget(m_achievement_boxes[achievement->id].get()); } } rc_client_destroy_achievement_list(achievement_list); diff --git a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp index b796b9dc3e..eb79896de2 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp @@ -89,7 +89,7 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite { m_header_widget->UpdateData(); } - if (updated_items.all_achievements) + if (updated_items.all_achievements || updated_items.rich_presence) m_progress_widget->UpdateData(false); else if (updated_items.achievements.size() > 0) m_progress_widget->UpdateData(updated_items.achievements); From e58d6f4f1fb2911eb583daa1ebcf1d01986ea14d Mon Sep 17 00:00:00 2001 From: JMC47 Date: Wed, 26 Jun 2024 01:53:47 -0400 Subject: [PATCH 127/296] Disable Dualcore in Geist Fixes random crashes and unknown opcode errors. --- Data/Sys/GameSettings/GIT.ini | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Data/Sys/GameSettings/GIT.ini diff --git a/Data/Sys/GameSettings/GIT.ini b/Data/Sys/GameSettings/GIT.ini new file mode 100644 index 0000000000..0dff27858d --- /dev/null +++ b/Data/Sys/GameSettings/GIT.ini @@ -0,0 +1,16 @@ +# GITP01, GITE01 - Geist + +[Core] +# Values set here will override the main Dolphin settings. +# The game has random crashes and tons of unknown opcodes +# when using Dualcore. +CPUThread = False + +[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. From 3dbaf38eae8415f6ed8420ab36b49358c39cf3eb Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 26 Jun 2024 20:22:36 +0200 Subject: [PATCH 128/296] Translation resources sync with Transifex --- Languages/po/ar.po | 2912 ++++++++++++++-------------- Languages/po/ca.po | 2868 +++++++++++++++------------- Languages/po/cs.po | 2868 +++++++++++++++------------- Languages/po/da.po | 2870 +++++++++++++++------------- Languages/po/de.po | 2870 +++++++++++++++------------- Languages/po/dolphin-emu.pot | 2868 +++++++++++++++------------- Languages/po/el.po | 2871 +++++++++++++++------------- Languages/po/en.po | 2868 +++++++++++++++------------- Languages/po/es.po | 3325 +++++++++++++++++--------------- Languages/po/fa.po | 2868 +++++++++++++++------------- Languages/po/fi.po | 3371 +++++++++++++++++--------------- Languages/po/fr.po | 2973 +++++++++++++++-------------- Languages/po/hr.po | 2868 +++++++++++++++------------- Languages/po/hu.po | 3489 +++++++++++++++++---------------- Languages/po/it.po | 2970 +++++++++++++++-------------- Languages/po/ja.po | 2943 ++++++++++++++-------------- Languages/po/ko.po | 2937 ++++++++++++++-------------- Languages/po/ms.po | 2871 +++++++++++++++------------- Languages/po/nb.po | 2870 +++++++++++++++------------- Languages/po/nl.po | 2934 ++++++++++++++-------------- Languages/po/pl.po | 2871 +++++++++++++++------------- Languages/po/pt.po | 2868 +++++++++++++++------------- Languages/po/pt_BR.po | 2981 +++++++++++++++-------------- Languages/po/ro.po | 2868 +++++++++++++++------------- Languages/po/ru.po | 3498 ++++++++++++++++++---------------- Languages/po/sr.po | 2868 +++++++++++++++------------- Languages/po/sv.po | 2884 ++++++++++++++-------------- Languages/po/tr.po | 2937 ++++++++++++++-------------- Languages/po/zh_CN.po | 2945 ++++++++++++++-------------- Languages/po/zh_TW.po | 2868 +++++++++++++++------------- 30 files changed, 46141 insertions(+), 42861 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index 5412dee6d8..f3fd0031b0 100644 --- a/Languages/po/ar.po +++ b/Languages/po/ar.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: mansoor , 2013,2015-2024\n" "Language-Team: Arabic (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -91,7 +91,7 @@ msgstr "" "%1\n" "يريد الانضمام إلى المجموعة." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -125,7 +125,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (%3 إصدار)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (المخزون)" @@ -145,7 +145,7 @@ msgstr "%1 (بطيء)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -159,11 +159,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 إعداد الرسومات" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -180,7 +180,7 @@ msgstr "%1 لا يدعم هذه الميزة علي النظام الخاص بك msgid "%1 doesn't support this feature." msgstr "%1 لا يدعم هذه الميزة." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -190,33 +190,27 @@ msgstr "" "%2 موضوع(s)\n" "%3 الإطار الحالي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 قد انضم" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 لقد غادر" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 القرص غير صالح" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 is now golfing" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -224,13 +218,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "نطاقات الذاكرة %1" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 نقاط" @@ -242,30 +236,30 @@ msgstr "%1 وجدت جلسة" msgid "%1 sessions found" msgstr "%1 الجلسات التي تم العثور عليها" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (السرعة القياسية)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -277,6 +271,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -346,11 +344,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&حول" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&إضافة نقطة توقف الذاكرة" @@ -359,7 +357,7 @@ msgstr "&إضافة نقطة توقف الذاكرة" msgid "&Add New Code..." msgstr "&إضافة رمز جديد" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&إضافة وظيفة" @@ -367,15 +365,15 @@ msgstr "&إضافة وظيفة" msgid "&Add..." msgstr "&إضافة" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&إعدادات الصوت" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&التحديث التلقائي" @@ -383,11 +381,15 @@ msgstr "&التحديث التلقائي" msgid "&Borderless Window" msgstr "&نافذة بلا حدود" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&نقاط التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&تتبع اخطاء المحاكي" @@ -395,15 +397,15 @@ msgstr "&تتبع اخطاء المحاكي" msgid "&Cancel" msgstr "&إلغاء" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&تحقق من وجود تحديثات" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&مسح الرموز" @@ -411,7 +413,7 @@ msgstr "&مسح الرموز" msgid "&Clone..." msgstr "&استنساخ" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&رمز" @@ -419,16 +421,15 @@ msgstr "&رمز" msgid "&Connected" msgstr "&متصل" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&إعدادات ذراع التحكم" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&نسخ العنوان" @@ -436,20 +437,20 @@ msgstr "&نسخ العنوان" msgid "&Create..." msgstr "&إنشاء..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&حذف" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&حذف المشاهدة" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -463,11 +464,11 @@ msgstr "&تحرير الرمز" msgid "&Edit..." msgstr "&تحرير" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&إخراج القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&محاكاة" @@ -487,41 +488,41 @@ msgstr "&تصدير الحالة" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&الخط" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&الإطار المسبق" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&إعدادات المظهر الحر" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&إنشاء رموز من" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub مستودع " -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&إعدادات الرسومات" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&مساعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&إعدادات مفاتيح الاختصار" @@ -541,11 +542,11 @@ msgstr "&استيراد الحالة" msgid "&Import..." msgstr "&استيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity قاعدة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&blr إدراج" @@ -553,23 +554,23 @@ msgstr "&blr إدراج" msgid "&Interframe Blending" msgstr "&مزج الإطارات" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&اللغة" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&تحميل الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Load Symbol Map" @@ -579,19 +580,23 @@ msgstr "&تحميل الملف إلى العنوان الحالي" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&تأمين المصغرات في القائمة" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&فيلم" @@ -599,7 +604,7 @@ msgstr "&فيلم" msgid "&Mute" msgstr "&صامت" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&شبكة الاتصال" @@ -608,23 +613,23 @@ msgid "&No" msgstr "&لا" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&فتح" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&خيارات" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&HLE وظائف تصحيح" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&إيقاف مؤقت" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&تشغيل" @@ -632,7 +637,7 @@ msgstr "&تشغيل" msgid "&Properties" msgstr "&خصائص" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&وضع للقراءة فقط" @@ -640,7 +645,7 @@ msgstr "&وضع للقراءة فقط" msgid "&Refresh List" msgstr "&تحديث القائمة" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&تسجل" @@ -653,24 +658,24 @@ msgstr "&إزالة" msgid "&Remove Code" msgstr "&إزالة الرمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&إعادة تسمية الرمز" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&إعادة" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&أدارة حزمة الموارد" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" @@ -678,31 +683,31 @@ msgstr "&Save Symbol Map" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Skylanders منفذ" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&حد السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&إيقاف " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&المظهر" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&المواضيع" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&أدوات" @@ -712,21 +717,21 @@ msgstr "&إلغاء تحميل القرص" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&مشاهدة" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&الموقع" @@ -738,23 +743,23 @@ msgstr "&معلومات عن اللعبة" msgid "&Yes" msgstr "&نعم" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' لم يتم العثور على أي أسماء رموز تم إنشاؤها" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' لم يتم العثور على المسح بحثًا عن الوظائف الشائعة بدلاً من ذلك" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(داكن)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(فاتح)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(النظام)" @@ -790,12 +795,12 @@ msgstr "- طرح" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--غير معروف--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -856,7 +861,7 @@ msgstr "16-bit عدد صحيح موقع" msgid "16-bit Unsigned Integer" msgstr "16-bit عدد صحيح غير موقع" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -914,7 +919,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:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -940,7 +945,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1033,27 +1038,27 @@ msgstr "< أقل-من" msgid "" msgstr "<لا شيء>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "<لغة النظام>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "إذا لم تكن متأكدا فاترك هذا دون تحديد" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1078,8 +1083,8 @@ msgstr "" msgid "> Greater-than" msgstr "> أكثر-من" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "جلسة لعب الشبكة جارية بالفعل!" @@ -1100,7 +1105,7 @@ msgstr "" " wad سيؤدي تثبيت \n" "هذا إلى استبداله بشكل لا رجعة فيه. استمر ؟" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "القرص بالفعل على وشك أن يتم إدراجه." @@ -1116,7 +1121,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "لا يمكن تحميل حالة الحفظ دون تحديد لعبة لتشغيلها" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1136,7 +1141,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "لا يمكن تشغيل المزامنة إلا عند تشغيل لعبة وي." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1173,7 +1178,7 @@ msgstr "" "دعم ريموت وي في اللعب عبر الشبكة تجريبي وقد لا يعمل بشكل الصحيح.\n" "استخدام على مسؤوليتك الخاصة.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR رموز" @@ -1216,16 +1221,10 @@ msgid "Achievement Settings" msgstr "إعدادات الإنجاز" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "الإنجازات" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "عمل" @@ -1298,7 +1297,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "تفعيل المحادثة في اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "نشط" @@ -1306,15 +1305,15 @@ msgstr "نشط" msgid "Active Infinity Figures:" msgstr "النشطة Infinity شخصيات" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "قائمة انتظار مؤشر الترابط النشط" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "المواضيع النشطة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "محول" @@ -1322,7 +1321,7 @@ msgstr "محول" msgid "Adapter Detected" msgstr "كشف عن محول" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "محول" @@ -1332,7 +1331,7 @@ msgstr "محول" msgid "Add" msgstr "أضف" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "إضافة نقطة توقف" @@ -1357,43 +1356,43 @@ msgstr "إضافة نقطة توقف" msgid "Add a Memory Breakpoint" msgstr "أضف نقطة توقف الذاكرة" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "أضف الذاكرة ونقطة التوقف" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "اضف إليه &تنبية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "إضافة للمشاهدة" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "أضف" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "عنوان" @@ -1532,7 +1531,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "كل مزدوج" @@ -1541,7 +1540,7 @@ msgstr "كل مزدوج" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1549,34 +1548,34 @@ msgid "All Files" msgstr "كل الملفات" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "(*) كل الملفات" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "كل تعويم" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "GC/Wii جميع ملفات" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "كل سداسي عشري" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "جميع حالات الحفظ (*.sav *.s##);; كل الملفات (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "جميع الأعداد الصحيحة الموقعة" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "جميع الأعداد الصحيحة غير الموقعة" @@ -1592,7 +1591,7 @@ msgstr "جميع رموز اللاعبين متزامنة." msgid "All players' saves synchronized." msgstr "حفظ جميع اللاعبين متزامنة." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "السماح بإعدادات المنطقة الغير متطابقة" @@ -1600,7 +1599,7 @@ msgstr "السماح بإعدادات المنطقة الغير متطابقة" msgid "Allow Usage Statistics Reporting" msgstr "السماح بالإبلاغ عن إحصائيات الاستخدام" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "SD Card السماح للكتابة على" @@ -1618,7 +1617,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "مصادر الإدخال البديلة" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "دائما" @@ -1640,7 +1639,7 @@ msgstr "كان من المتوقع وجود قرص مدرج ولكن لم يتم msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "تحليل" @@ -1666,15 +1665,15 @@ msgstr "التنعيم" msgid "Any Region" msgstr "أي منطقة" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "إلحاق التوقيع ل" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "إلحاق ب & ملف التوقيع الموجود" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "تطبيق ملف التوقيع" @@ -1692,7 +1691,7 @@ msgstr "تاريخ الإصدار" msgid "Apply" msgstr "تطبيق" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "تطبيق ملف التوقيع" @@ -1700,7 +1699,7 @@ msgstr "تطبيق ملف التوقيع" msgid "Arbitrary Mipmap Detection" msgstr "Arbitrary Mipmap Detection" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "هل أنت متأكد من أنك تريد حذفها '%1'?" @@ -1712,7 +1711,7 @@ msgstr "هل أنت متأكد من أنك تريد حذف هذا الملف؟" msgid "Are you sure you want to delete this pack?" msgstr "هل أنت متأكد من أنك تريد حذف هذه الحزمة؟" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "هل أنت متأكد من أنك تريد إنهاء اللعب عبر الشبكة؟" @@ -1724,24 +1723,24 @@ msgstr "هل أنت واثق؟" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" -msgstr "تناسب الأبعاد" +msgstr "نسبة الابعاد" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "نسبة العرض إلى الارتفاع تصحيح الدقة الداخلي" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" -msgstr "تناسب الأبعاد" +msgstr "نسبة الابعاد" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1753,7 +1752,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "تعيين منافذ ذراع التحكم" @@ -1774,11 +1773,11 @@ msgstr "أرفق موشن بلس" msgid "Audio" msgstr "الصوت" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "الخلفية الصوتية" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "إعدادات امتداد الصوت" @@ -1794,7 +1793,7 @@ msgstr "الكاتب" msgid "Authors" msgstr "المؤلفون" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "تلقائي" @@ -1803,11 +1802,11 @@ msgstr "تلقائي" msgid "Auto (Multiple of 640x528)" msgstr "تلقائي (Multiple of 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "إعدادات التحديث التلقائي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1819,7 +1818,7 @@ msgstr "" "\n" "يرجى تحديد دقة داخلية محددة." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "ضبط تلقائي لحجم النافذة" @@ -1827,15 +1826,15 @@ msgstr "ضبط تلقائي لحجم النافذة" msgid "Auto-Hide" msgstr "إخفاء تلقائي" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "RSO الكشف التلقائي عن وحدات" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "تزامن تلقائيا مع المجلد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1875,27 +1874,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP تسجل" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "الخلفية" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "تعدد المسارات الخلفية" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "إعدادات الخلفية" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "الخلفية" @@ -1938,7 +1937,7 @@ msgstr "قيمة غير صالحة المقدمة" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "الشعار" @@ -1958,15 +1957,15 @@ msgstr "شريط" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "الأولوية الأساسية" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "الأساسية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "الإعدادات الأساسية" @@ -1982,10 +1981,6 @@ msgstr "لا يمكن استخدام وضع الدُفعات دون تحديد msgid "Battery" msgstr "بطارية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (مرة في الشهر)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -2018,11 +2013,11 @@ msgstr "Binary SSL (read)" msgid "Binary SSL (write)" msgstr "Binary SSL (write)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "(kbps) معدل البت" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2032,7 +2027,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "حجم الكتلة" @@ -2070,67 +2065,67 @@ msgstr "" "libusb تم تمكين وضع عبور البلوتوث ولكن تم تصميم دولفين بدون\n" "لا يمكن استخدام وضع العبور" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "التمهيد لإيقاف مؤقت" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "ملء الشاشة بلا حدود" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "اسفل" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2142,23 +2137,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2175,7 +2170,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2185,19 +2180,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2212,19 +2207,24 @@ msgstr "الفروع" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "كسر" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "توقف" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "تمت مصادفة نقطة توقف! إلغاء للخروج" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "نقاط التوقف" @@ -2258,24 +2258,24 @@ msgstr "خطأ محول النطاق العريض" msgid "Broadband Adapter MAC Address" msgstr "عنوان ماك لمحول النطاق العريض" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "مستعرض جلسات اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "حجم المخزن المؤقت" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "تم تغيير حجم المخزن المؤقت إلى %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "المخزن المؤقت" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2320,11 +2320,11 @@ msgstr "" msgid "C Stick" msgstr "C عصا" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "إنشاء ملف التوقيع" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP تسجيل" @@ -2344,7 +2344,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (أبطأ)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2375,7 +2375,7 @@ msgstr "المعايرة" msgid "Calibration Period" msgstr "فترة المعايرة" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2401,7 +2401,7 @@ msgstr "كاميرا 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2417,18 +2417,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} لا يمكن العثور على ريموت وي من خلال مقبض الاتصال" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "إلغاء" @@ -2437,15 +2437,15 @@ msgstr "إلغاء" msgid "Cancel Calibration" msgstr "إلغاء المعايرة" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2463,11 +2463,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "لا يمكن مقارنة القيمة الأخيرة في البحث الأول" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Cannot find the GC IPL." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2475,7 +2475,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "لا يمكن التحديث بدون نتائج" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2483,7 +2483,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "لا يمكن ضبط بطاقة الذاكرة على مسار فارغ" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 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." @@ -2515,7 +2515,7 @@ msgstr "المركز و المعايرة" msgid "Change &Disc" msgstr "تغيير &القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "تغيير &القرص" @@ -2523,15 +2523,21 @@ msgstr "تغيير &القرص" msgid "Change Disc" msgstr "تغيير القرص" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "تغيير الأقراص تلقائيا" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "{0} قم بتغيير القرص إلى" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2552,7 +2558,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "سيحدث تغيير الاسرار فقط عند إعادة تشغيل اللعبة." @@ -2560,11 +2566,11 @@ msgstr "سيحدث تغيير الاسرار فقط عند إعادة تشغيل msgid "Channel Partition (%1)" msgstr "(%1) قسم القناة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "الحرف الذي تم إدخاله غير صالح" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "محادثه" @@ -2572,7 +2578,7 @@ msgstr "محادثه" msgid "Cheat Code Editor" msgstr "محرر رمز الأسرار" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "بحث عن اسرار" @@ -2580,7 +2586,7 @@ msgstr "بحث عن اسرار" msgid "Cheats Manager" msgstr "مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "NAND تحقق من" @@ -2600,7 +2606,7 @@ msgstr "" "تحقق مما إذا كان لديك الأذونات المطلوبة لحذف الملف أو ما إذا كان لا يزال قيد " "الاستخدام." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "اختباري" @@ -2612,7 +2618,7 @@ msgstr "الصين" msgid "Choose" msgstr "اختر" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "اختيار ملف لفتح" @@ -2620,15 +2626,15 @@ msgstr "اختيار ملف لفتح" msgid "Choose a file to open or create" msgstr "اختر ملفًا لفتحه أو إنشائه" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "اختيار ملف الإدخال ذي الأولوية" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "اختر ملف الإدخال الثانوي" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "GCI اختر المجلد الأساسي" @@ -2641,7 +2647,7 @@ msgstr "اختيار مجلد لاستخراج" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "أزرار كلاسيكية" @@ -2652,18 +2658,18 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "مسح" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "مسح ذاكرة التخزين المؤقت" @@ -2684,7 +2690,7 @@ msgstr "استنساخ و &تحرير الرمز" msgid "Close" msgstr "إغلاق" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "الإعدادات العامة" @@ -2692,11 +2698,11 @@ msgstr "الإعدادات العامة" msgid "Code" msgstr "رمز" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2724,11 +2730,11 @@ msgstr "تصحيح الألوان" msgid "Color Space" msgstr "مساحة اللون" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "دمج اثنين من ملفات التوقيع" @@ -2761,7 +2767,7 @@ msgstr "" "من الممكن أن يكون هذا تفريغًا جيدًا مقارنة بإصدار متجر وي يو للعبة. لا تستطيع " "دولفين التحقق من ذلك." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "تجميع التظليل قبل البدء" @@ -2771,7 +2777,7 @@ msgstr "تجميع التظليل" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "نوع الضغط" @@ -2784,7 +2790,7 @@ msgstr "مستوى الضغط" msgid "Compression:" msgstr "نوع الضغط" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2792,11 +2798,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "شرط" @@ -2812,7 +2818,7 @@ msgstr "الشرط" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "مساعدة مشروطة" @@ -2827,7 +2833,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2881,7 +2892,7 @@ msgstr "إعدادات" msgid "Configure Controller" msgstr "إعدادات ذراع التحكم" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "إعدادات دولفين" @@ -2894,27 +2905,27 @@ msgstr "إعداد الإدخال" msgid "Configure Output" msgstr "إعداد الإخراج" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "تأكيد " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "تأكيد تغيير الخلفية" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "تأكيد على التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "التأكيد" @@ -2924,15 +2935,15 @@ msgstr "التأكيد" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "ربط لوح الميزان" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "ربط لوحة مفاتيح يو إس بي" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "%1 ربط ريموت وي" @@ -2952,7 +2963,7 @@ msgstr "ربط ريموت وي 3" msgid "Connect Wii Remote 4" msgstr "ربط ريموت وي 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "ربط ريموت وي " @@ -2968,7 +2979,7 @@ msgstr "الاتصال بالإنترنت وإجراء تحديث للنظام msgid "Connected" msgstr "متصل" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "الاتصال" @@ -2993,7 +3004,7 @@ msgstr "Control NetPlay Golf Mode" msgid "Control Stick" msgstr "عصا التحكم" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "ملف تعريف ذراع التحكم" @@ -3091,8 +3102,8 @@ msgstr "التقارب" msgid "Convergence:" msgstr "التقارب" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "فشل تحويل." @@ -3100,9 +3111,9 @@ msgstr "فشل تحويل." msgid "Convert" msgstr "تحويل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "تحويل ملف إلى مجلد الآن" @@ -3110,9 +3121,9 @@ msgstr "تحويل ملف إلى مجلد الآن" msgid "Convert File..." msgstr "تحويل الملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "تحويل المجلد إلى ملف الآن" @@ -3136,8 +3147,8 @@ msgstr "" "هل تريد المتابعة على أي حال؟" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "جارٍ التحويل ..." @@ -3168,22 +3179,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "نسخ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "نسخ &الوظيفة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Copy &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "نسخ العنوان" @@ -3191,19 +3202,19 @@ msgstr "نسخ العنوان" msgid "Copy Failed" msgstr "فشل النسخ" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Copy Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "قيمة النسخ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Copy code &line" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "نسخ العنوان المستهدف" @@ -3221,8 +3232,8 @@ msgstr "B نسخ إلى" msgid "Core" msgstr "النواة" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3344,7 +3355,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "تعذر البحث عن الخادم المركزي" @@ -3360,13 +3371,13 @@ msgstr "لا يمكن قراءة الملف" msgid "Country:" msgstr "الدولة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "انشاء" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Infinity قم بإنشاء ملف" @@ -3380,7 +3391,7 @@ msgstr "إنشاء بطاقة ذاكرة جديدة" msgid "Create Skylander File" msgstr "Skylander قم بإنشاء ملف" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "إنشاء تعيينات للأجهزة الأخرى" @@ -3397,11 +3408,11 @@ msgstr "المنشئ" msgid "Critical" msgstr "حرج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "اقتصاص" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3413,60 +3424,60 @@ msgstr "" msgid "Crossfade" msgstr "الإبهات المتداخل" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "المنطقة الحالية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "القيمة الحالية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "السياق الحالي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "لعبة الحالية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "الموضوع الحالي" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" -msgstr "" +msgstr "مخصص" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" -msgstr "" +msgstr "(Stretch) مخصص" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "مساحة العنوان المخصصة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 -msgid "Custom Aspect Ratio Height" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 -msgid "Custom Aspect Ratio Width" -msgstr "" +msgid "Custom Aspect Ratio Height" +msgstr "تخصيص نسبة ارتفاع الابعاد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +msgid "Custom Aspect Ratio Width" +msgstr "تخصيص نسبة عرض الابعاد" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "تخصيص نسبة الابعاد" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3507,7 +3518,7 @@ msgstr "DJ Turntable" msgid "DK Bongos" msgstr "الطبول" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP Emulation Engine" @@ -3515,15 +3526,15 @@ msgstr "DSP Emulation Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (سريع)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (مستحسن)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (بطيء جدا)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (بطيء)" @@ -3554,7 +3565,7 @@ msgstr "بساط الرقص" msgid "Dark" msgstr "مظلم" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "البيانات" @@ -3600,8 +3611,8 @@ msgstr "المنطقة الميتة" msgid "Debug" msgstr "التصحيح" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "التصحيح" @@ -3610,7 +3621,7 @@ msgstr "التصحيح" msgid "Decimal" msgstr "عشري" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "جودة فك التشفير:" @@ -3649,7 +3660,7 @@ msgstr "Y تخفيض" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "افتراضي" @@ -3657,7 +3668,7 @@ msgstr "افتراضي" msgid "Default Config (Read Only)" msgstr "(Read Only) الأعداد الافتراضي" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "الجهاز الافتراضي" @@ -3669,11 +3680,11 @@ msgstr "الخط الافتراضي" msgid "Default ISO:" msgstr "صورة القرص الافتراضية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "الموضوع الافتراضي" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Defer EFB Cache Invalidation" @@ -3681,7 +3692,7 @@ msgstr "Defer EFB Cache Invalidation" msgid "Defer EFB Copies to RAM" msgstr "إلى ذاكرة الوصول العشوائي EFB تأجيل نسخ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3690,8 +3701,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "حذف" @@ -3721,12 +3733,12 @@ msgstr "نسبة العمق" msgid "Depth:" msgstr "العمق" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "الوصف" @@ -3740,8 +3752,8 @@ msgstr "الوصف" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3753,21 +3765,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "منفصل" @@ -3775,7 +3787,7 @@ msgstr "منفصل" msgid "Detect" msgstr "كشف" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3783,11 +3795,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "تحديد النواة المزدوجة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (عدة مرات في اليوم)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "أداة" @@ -3805,7 +3817,7 @@ msgstr "إعدادات الجهاز" msgid "Device VID (e.g., 057e)" msgstr "Device VID (e.g., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "جهاز" @@ -3813,7 +3825,7 @@ msgstr "جهاز" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "تقوم بتعتيم الشاشة بعد خمس دقائق من الخمول ." @@ -3829,11 +3841,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "غير متصل" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "تعطيل" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "تعطيل المربع المحيط" @@ -3842,7 +3849,7 @@ msgstr "تعطيل المربع المحيط" msgid "Disable Copy Filter" msgstr "Disable Copy Filter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" @@ -3850,11 +3857,11 @@ msgstr "Disable EFB VRAM Copies" msgid "Disable Emulation Speed Limit" msgstr "تعطيل محاكاة الحد الأقصى للسرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Fastmem تعطيل" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3862,11 +3869,11 @@ msgstr "" msgid "Disable Fog" msgstr "تعطيل الضباب" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3881,7 +3888,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "القرص" @@ -3905,6 +3918,10 @@ msgstr "القرص" msgid "Discard" msgstr "تجاهل" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "نوع العرض" @@ -3935,11 +3952,11 @@ msgstr "Distance of travel from neutral position." msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "هل تسمح لشركة دولفين بالإبلاغ عن معلومات لمطوري دولفين؟" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "هل تريد إضافة \"%1\" إلى قائمة مسارات الألعاب؟" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "هل تريد مسح قائمه أسماء الرموز ؟" @@ -3949,7 +3966,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "هل تريد إيقاف المحاكاة الحالية؟" @@ -3957,12 +3974,12 @@ msgstr "هل تريد إيقاف المحاكاة الحالية؟" msgid "Do you want to try to repair the NAND?" msgstr "NAND هل تريد محاولة إصلاح" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II Decoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO Log (*.dff)" @@ -3970,9 +3987,9 @@ msgstr "Dolphin FIFO Log (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Map File (*.map)" @@ -3984,8 +4001,8 @@ msgstr "CSV توقيع دولفين ملف" msgid "Dolphin Signature File" msgstr "دولفين توقيع الملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Movies (*.dtm)" @@ -4020,7 +4037,7 @@ msgstr "فشل دولفين في إكمال الإجراء المطلوب." msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "محاكي دولفين مفتوح المصدر لجهاز جيم كيوب و وي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "دولفين قديم جدا لجتياز الخادم " @@ -4036,13 +4053,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "دولفين غير قادر على التحقق من الأقراص غير المرخصة." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "سيستخدم دولفين هذا للعناوين التي لا يمكن تحديد منطقتها تلقائيًا" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "تم تعطيل نظام الاسرار حاليا." @@ -4051,7 +4068,7 @@ msgstr "تم تعطيل نظام الاسرار حاليا." msgid "Domain" msgstr "نطاق" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "عدم التحديث" @@ -4072,7 +4089,7 @@ msgstr "أبواب مقفلة" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "مزدوج" @@ -4094,7 +4111,7 @@ msgstr "تحميل الرموز" msgid "Download Codes from the WiiRD Database" msgstr "WiiRD تحميل رموز من قاعدة بيانات" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "للإستخدام في وضع الشبكة GameTDB.com تحميل أغلفة الألعاب من" @@ -4106,6 +4123,16 @@ msgstr "تم التحميل" msgid "Downloaded %1 codes. (added %2)" msgstr "تم تحميل %1 رموز. (وأضاف %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4145,19 +4172,19 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "تفريغ الصوت" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "تفريغ القوام الأساسي" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "EFB التفريغ المستهدف" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "تفريغ الإطارات" @@ -4165,7 +4192,7 @@ msgstr "تفريغ الإطارات" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4173,7 +4200,7 @@ msgstr "" msgid "Dump Path:" msgstr "مسار التفريغ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "XFB التفريغ المستهدف" @@ -4198,44 +4225,44 @@ msgstr "تفريغ شهادات الأقران" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "الهولندية" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "خروج" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4247,7 +4274,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4259,7 +4286,7 @@ msgstr "" "مناسب للألعاب التنافسية حيث يكون الإنصاف والحد الأدنى من وقت الإستجابة أكثر " "أهمية" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "بداية تحديث الذاكرة" @@ -4278,7 +4305,16 @@ msgstr "شرق اسيا" msgid "Edit Breakpoint" msgstr "تحرير نقطة التوقف" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "حرر" @@ -4298,7 +4334,7 @@ msgstr "تأثير" msgid "Effective" msgstr "فعال" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "الأولوية الفعالة" @@ -4320,11 +4356,11 @@ msgstr "عنصر" msgid "Embedded Frame Buffer (EFB)" msgstr "(EFB) مخزن مؤقت للإطار المضمن" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "فارغة" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "المحاكي قيد التشغيل بالفعل" @@ -4350,7 +4386,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "تمت محاكاة أجهزة يو إس بي" @@ -4375,34 +4411,24 @@ msgstr "سرعة المحاكاة " #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "تمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "تمكين طبقات التحقق من واجهة برمجة التطبيقات" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "تمكين علامة الإنجاز" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "تمكين الإنجازات" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "تمكين تمديد الصوت " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "تمكين الأسرار" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "تمكين إدخال ذراع التحكم" @@ -4410,15 +4436,19 @@ msgstr "تمكين إدخال ذراع التحكم" msgid "Enable Custom RTC" msgstr "تمكين وقت مخصص" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "تمكين واجهة مستخدم التصحيح" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "تمكين ثنائي النواة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Enable Dual Core (لزيادة السرعة)" @@ -4430,7 +4460,7 @@ msgstr "تمكين تجاوز سرعة المعالج التي تمت محاكا msgid "Enable Emulated Memory Size Override" msgstr "تمكين تجاوز المحاكي حجم الذاكرة" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "تمكين ظهور الإنجازات " @@ -4438,15 +4468,15 @@ msgstr "تمكين ظهور الإنجازات " msgid "Enable FPRF" msgstr "FPRF تمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "تمكين تعديلات الرسومات" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4464,41 +4494,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "تمكين المتصدرين" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "MMU تمكين" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "تمكين إشعارات التقدم" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "تمكين المسح التدريجي" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.org تمكين التكامل" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "تمكين الهزاز" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "تمكين شاشة التوقف" @@ -4506,19 +4528,23 @@ msgstr "تمكين شاشة التوقف" msgid "Enable Speaker Data" msgstr "تمكين بيانات مكبر صوت" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "تمكين الإنجازات غير الرسمية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "تمكين تقارير إحصائيات الاستخدام " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink عبر WiiConnect24 قم بتمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "تمكين الإطار الشبكي" @@ -4526,36 +4552,13 @@ msgstr "تمكين الإطار الشبكي" msgid "Enable Write-Back Cache (slow)" msgstr "Enable Write-Back Cache (بطيء)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4563,34 +4566,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "
تمكين فتح الإنجازات" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4623,7 +4633,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4631,7 +4641,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4648,7 +4658,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "لتمكين تمديد الصوت لتتناسب مع سرعة المحاكاة." @@ -4675,7 +4685,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4683,7 +4693,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4691,7 +4701,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4714,13 +4724,17 @@ msgstr "" "\n" "ألغى الاستيراد." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "لم يتم تهيئة الشبكة" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "الإنجليزية" @@ -4737,7 +4751,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "أدخل معرف جهاز يو إس بي " -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "أدخل عنوانًا لمشاهدته" @@ -4761,33 +4775,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4800,52 +4814,52 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "خطأ" @@ -4862,7 +4876,7 @@ msgstr "%1 : خطأ في فتح المحول" msgid "Error collecting save data!" msgstr "خطأ في جمع البيانات المحفوظة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4876,7 +4890,7 @@ msgstr "خطأ في تحميل اللغة المحددة. العودة إلى ا msgid "Error obtaining session list: %1" msgstr "خطأ في الحصول على قائمة الجلسة: 1%" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "حدث خطأ أثناء تحميل بعض حزم النسيج" @@ -4971,12 +4985,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "أوروبا" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Exclusive Ubershaders" @@ -5020,11 +5034,11 @@ msgstr "بداية التعبير المتوقعة" msgid "Expected variable name." msgstr "اسم المتغير المتوقع" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "تجريبي" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "تصدير جميع حفظ وي" @@ -5039,7 +5053,7 @@ msgstr "فشل التصدير" msgid "Export Recording" msgstr "تصدير تسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "تصدير تسجيل" @@ -5067,14 +5081,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "تم التصدير %n الحفظ (الكل)" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "ملحق" @@ -5087,7 +5101,7 @@ msgstr "ملحق إدخال الحركة" msgid "Extension Motion Simulation" msgstr "ملحق محاكاة الحركة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "خارجي" @@ -5095,35 +5109,35 @@ msgstr "خارجي" msgid "External Frame Buffer (XFB)" msgstr "(XFB) مخزن مؤقت للإطار الخارجي" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "NAND استخراج الشهادات من" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "استخراج القرص بأكمله" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "استخراج القسم بأكمله" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "استخراج الملفات" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "إستخراج الملفات" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "استخراج بيانات النظام" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "استخراج جميع الملفات" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "استخراج الملف" @@ -5132,8 +5146,8 @@ msgstr "استخراج الملف" msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO Player" @@ -5149,11 +5163,11 @@ msgstr "" "فشل فتح بطاقة الذاكرة:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "فشل في إضافة هذه الجلسة إلى فهرس اللعب عبر الشبكة: 1%" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5173,7 +5187,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org فشل الاتصال بـ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "%1 فشل الاتصال بالخادم" @@ -5194,15 +5208,15 @@ msgstr "D3D12 فشل إنشاء موارد عمومية" msgid "Failed to create DXGI factory" msgstr "Failed to create DXGI factory" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Infinity فشل إنشاء ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Skylander فشل إنشاء ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5249,15 +5263,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "فشل تصدير ملفات الحفظ التالية:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "NAND فشل استخراج شهادات من" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "فشل استخراج الملف." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "فشل استخراج بيانات النظام." @@ -5279,27 +5293,27 @@ msgstr "D3D فشل في العثور على واحد أو أكثر من رموز msgid "Failed to import \"%1\"." msgstr "\"%1\" فشل الاستيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "فشل استيراد ملف الحفظ. الرجاء تشغيل اللعبة مرة واحدة ، ثم المحاولة مرة أخرى" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "فشل في التهيئة الأساسية" @@ -5319,11 +5333,11 @@ msgid "Failed to install pack: %1" msgstr "%1 :فشل تثبيت الحزمة" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "NAND فشل تثبيت هذا العنوان على" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5331,8 +5345,8 @@ msgstr "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Failed to load RSO module at %1" @@ -5344,21 +5358,21 @@ msgstr "d3d11.dll فشل تحميل" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll فشل تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Failed to load map file '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Skylander فشل تحميل ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "فشل تحميل الملف القابل للتنفيذ إلى الذاكرة." @@ -5372,17 +5386,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "فشل في تعديل Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' فشل في الفتح" @@ -5390,7 +5404,7 @@ msgstr "'%1' فشل في الفتح" msgid "Failed to open Bluetooth device: {0}" msgstr "{0} فشل في فتح جهاز بلوتوث" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5422,15 +5436,15 @@ msgstr "" msgid "Failed to open file." msgstr "فشل فتح ملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "فشل في فتح الخادم" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Infinity فشل في فتح ملف" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5438,11 +5452,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Skylander فشل في فتح ملف" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5491,23 +5505,23 @@ msgstr "\"{0}\" فشلت القراءة من ملف الإدخال" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "فشل في قراءة ملف Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "فشل في قراءة ملف Skylander" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5521,7 +5535,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "{0} فشلت القراءة" @@ -5557,31 +5571,31 @@ msgstr "" "فشل في إعادة تعيين مجلد إعادة توجيه اللعب عبر الشبكة. تحقق من أذونات الكتابة " "الخاصة بك" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Failed to save FIFO log." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Failed to save to signature file '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5634,19 +5648,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "فشل" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "تأخير الإدخال العادل" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "المنطقة الاحتياطية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "المنطقة الاحتياطية" @@ -5659,7 +5673,7 @@ msgstr "سريع" msgid "Fast Depth Calculation" msgstr "سرعة حساب العمق" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5670,7 +5684,7 @@ msgstr "" msgid "Field of View" msgstr "مجال الرؤية" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "رقم الشكل:" @@ -5684,7 +5698,7 @@ msgstr "تفاصيل الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "تنسيق الملف" @@ -5692,24 +5706,24 @@ msgstr "تنسيق الملف" msgid "File Format:" msgstr "تنسيق الملف" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "معلومات الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "اسم الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "مسار الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "حجم الملف" @@ -5796,7 +5810,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "الأعلام" @@ -5805,12 +5818,12 @@ msgstr "الأعلام" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "عدد عشري" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Follow &branch" @@ -5831,7 +5844,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "16:9" @@ -5839,7 +5852,7 @@ msgstr "16:9" msgid "Force 24-Bit Color" msgstr "24-Bit اللون" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "4:3" @@ -5871,11 +5884,11 @@ msgstr "فرض الاستماع منفذ" msgid "Force Nearest" msgstr "Force Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5897,6 +5910,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "تنسيق" @@ -5912,7 +5931,7 @@ msgstr "إلى الأمام" msgid "Forward port (UPnP)" msgstr "Forward port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Found %1 results for \"%2\"" @@ -5922,7 +5941,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "%1 الإطار" @@ -5943,11 +5962,11 @@ msgstr "زيادة سرعة الإطار المسبق" msgid "Frame Advance Reset Speed" msgstr " إعادة تعيين سرعة الإطار المسبق" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "تفريغ الإطار" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "مجموعة الإطار " @@ -5955,7 +5974,7 @@ msgstr "مجموعة الإطار " msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "إطارات للتسجيل" @@ -5975,7 +5994,7 @@ msgstr "%1 ملفات حرة" msgid "Free Look Control Type" msgstr "نوع التحكم في المظهر الحر" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "%1 تحكم في المظهر الحر" @@ -6010,7 +6029,7 @@ msgstr "نظرة حرة" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "الفرنسية" @@ -6029,8 +6048,8 @@ msgid "From" msgstr "من" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "من" @@ -6038,10 +6057,14 @@ msgstr "من" msgid "FullScr" msgstr "شاشة كاملة" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "وظيفة" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "المهام" @@ -6082,11 +6105,11 @@ msgstr "صوت جيم بوي أدفانس" msgid "GBA Window Size" msgstr "حجم النافذة جيم بوي أدفانس" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6128,7 +6151,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "GPU فك تشفير نسيج" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6138,25 +6161,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6168,7 +6191,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6186,22 +6209,22 @@ msgstr "" msgid "Game" msgstr "اللعبة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "جيم بوي أدفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "(*.gba) جيم بوي ادفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "%1 جيم بوي أدفانس في منفذ" @@ -6230,7 +6253,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "معرف اللعبة" @@ -6239,15 +6262,15 @@ msgstr "معرف اللعبة" msgid "Game ID:" msgstr "معرف اللعبة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "حالة اللعبة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "تغيرت اللعبة إلى \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6255,11 +6278,11 @@ msgstr "" "يحتوي ملف اللعبة على تجزئة مختلفة. انقر بزر الماوس الأيمن فوقه، وحدد خصائص، " "وقم بالتبديل إلى علامة التبويب تحقق، وحدد التحقق من التكامل للتحقق من التجزئة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "تحتوي اللعبة على رقم قرص مختلف" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "اللعبة لديها مراجعة مختلفة" @@ -6274,7 +6297,7 @@ msgstr "" "{0:#x}, {1:#x} تم الكتابة فوق اللعبة مع حفظ ألعاب أخرى. تلف البيانات في " "المستقبل" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "منطقة اللعبة غير متطابقة" @@ -6294,11 +6317,11 @@ msgstr "محول وي يو لذراع تحكم جيم كيوب" msgid "GameCube Adapter for Wii U at Port %1" msgstr "محول تحكم جيم كيوب لجهاز وي يو في منفذ %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "تحكم جيم كيوب" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "تحكم جيم كيوب في منفذ %1" @@ -6306,11 +6329,11 @@ msgstr "تحكم جيم كيوب في منفذ %1" msgid "GameCube Controllers" msgstr "تحكم جيم كيوب" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "لوحة المفاتيح جيم كيوب" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "لوحة مفاتيح جيم كيوب في منفذ %1" @@ -6327,7 +6350,7 @@ msgstr "بطاقة الذاكرة جيم كيوب" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "بطاقات ذاكرة جيم كيوب (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "فتحة ميكروفون جيم كيوب %1" @@ -6355,7 +6378,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko رموز" @@ -6365,35 +6388,35 @@ msgstr "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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "عام" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "العامة و الخيارات" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "إنشاء هوية جديد للحصائيات " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "أسماء الرموز التي تم إنشاؤها من '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "الألمانية" @@ -6420,7 +6443,7 @@ msgstr "" msgid "Giants" msgstr "العمالقة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golf وضع" @@ -6429,7 +6452,7 @@ msgid "Good dump" msgstr "تفريغ جيد" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "الرسومات" @@ -6469,7 +6492,7 @@ msgstr "اليسار أخضر" msgid "Green Right" msgstr "اليمين أخضر" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "شبكة" @@ -6506,7 +6529,7 @@ msgstr "" msgid "Hacks" msgstr "هاك" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "رأس" @@ -6538,7 +6561,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "Hex Byte String" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "ست عشرية" @@ -6547,11 +6570,11 @@ msgstr "ست عشرية" msgid "Hide" msgstr "إخفاء" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "إخفاء الكل" @@ -6563,16 +6586,23 @@ msgstr "إخفاء الجلسات داخل اللعبة" msgid "Hide Incompatible Sessions" msgstr "إخفاء جلسات العمل غير المتوافقة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "عالية" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "الأعلى" @@ -6595,7 +6625,7 @@ msgstr "هوست" msgid "Host Code:" msgstr "رمز المضيف" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "سلطة إدخال المضيف" @@ -6603,7 +6633,7 @@ msgstr "سلطة إدخال المضيف" msgid "Host Size" msgstr "حجم المضيف" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6615,11 +6645,11 @@ msgstr "" "مناسب للألعاب غير الرسمية مع أكثر من 3 لاعبين ، وربما على اتصالات غير مستقرة " "أو عالية وقت الإستجابة." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "تم تعطيل سلطة إدخال المضيف" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "تمكين سلطة إدخال المضيف" @@ -6631,7 +6661,7 @@ msgstr "استضافة لعب عبر الشبكة" msgid "Hostname" msgstr "اسم المضيف" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "إعدادات مفاتيح الاختصار" @@ -6641,11 +6671,11 @@ msgstr "إعدادات مفاتيح الاختصار" msgid "Hotkeys" msgstr "مفاتيح الاختصار" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "تتطلب مفاتيح الاختصار التركيز على النافذة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Hybrid Ubershaders" @@ -6698,12 +6728,12 @@ msgstr "IP عنوان " msgid "IPL Settings" msgstr "إعدادات" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "الأشعة تحت الحمراء" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "حساسية الأشعة تحت الحمراء" @@ -6742,7 +6772,7 @@ msgstr "" msgid "Icon" msgstr " أيقونة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -6753,7 +6783,7 @@ msgstr "" "مناسب للألعاب القائمة على الدوران مع عناصر تحكم حساسة للتوقيت ، مثل لعبة " "الجولف." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "إنشاء هوية " @@ -6778,7 +6808,7 @@ msgstr "" "التهيئات النادرة التي تسبب مشكلات الأخطاء والأداء والثبات.\n" "يمكن إلغاء هذا التفويض في أي وقت من خلال إعدادات دولفين." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6792,14 +6822,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6811,7 +6841,7 @@ msgstr "" msgid "Ignore" msgstr "تجاهل" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6843,7 +6873,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB على الفور" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6852,7 +6882,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "النسخة الاحتياطية BootMii NAND استيراد" @@ -6867,15 +6897,15 @@ msgstr "فشل الاستيراد" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "استيراد حفظ وي" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr " NAND استيراد النسخ الاحتياطي" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -6884,6 +6914,15 @@ msgstr "" "NAND استيراد النسخ الاحتياطي\n" "%1s الوقت المنقضي" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "في اللعبة؟" @@ -6961,7 +7000,7 @@ msgstr "تناوب تزايدي" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6970,7 +7009,7 @@ msgstr "" msgid "Infinity Manager" msgstr "Infinity مدير" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6990,12 +7029,12 @@ msgstr "معلومات" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "معلومات" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "منع شاشة التوقف أثناء المحاكاة" @@ -7004,11 +7043,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "إدخال" @@ -7022,23 +7061,19 @@ msgstr "قوة الإدخال المطلوبة للتفعيل." msgid "Input strength to ignore and remap." msgstr "قوة الإدخال للتجاهل وإعادة تعيينها" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Insert &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SD Card ادرج" @@ -7051,11 +7086,11 @@ msgstr "تثبيت" msgid "Install Partition (%1)" msgstr "(%1) تثبيت القسم" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "تثبيت التحديث" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WAD تثبيت" @@ -7063,13 +7098,13 @@ msgstr "WAD تثبيت" msgid "Install to the NAND" msgstr "NAND تثبيت على" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "تعليمات" @@ -7078,7 +7113,7 @@ msgstr "تعليمات" msgid "Instruction Breakpoint" msgstr "نقطة توقف التعليمات" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "التعليمات" @@ -7087,7 +7122,7 @@ msgstr "التعليمات" msgid "Instruction: %1" msgstr "%1 تعليمات" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7104,19 +7139,19 @@ msgstr "كثافة" msgid "Interface" msgstr "الواجهة" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7129,19 +7164,19 @@ msgstr "Internal LZO Error - compression failed" msgid "Internal LZO Error - decompression failed" msgstr "Internal LZO Error - decompression failed" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7156,7 +7191,7 @@ msgstr "الدقة الداخلية" msgid "Internal Resolution:" msgstr "الدقة الداخلية" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7164,7 +7199,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (بطيء)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7180,7 +7215,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "رمز مختلط غير صالح" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "حزمة غير صالحة 1% مقدمة :2%" @@ -7189,11 +7224,11 @@ msgstr "حزمة غير صالحة 1% مقدمة :2%" msgid "Invalid Player ID" msgstr "معرف لاعب غير صالح" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "مكدس استدعاء غير صالح" @@ -7214,7 +7249,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "إدخال غير صالح للحقل \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "إدخال غير صالح المقدمة" @@ -7230,19 +7265,19 @@ msgstr "تم إعطاء معلمات غير صالحة للبحث" msgid "Invalid password provided." msgstr "كلمة مرور المقدمة غير صالحة." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "تسجيل الملف غير صالح" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "معلمات البحث غير صالحة ( أي كائن مختارة)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "سلسلة البحث غير صالحة ( لا يمكن تحويل إلى رقم )" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "سلسلة البحث غير صالحة ( فقط حتى أطوال سلسلة مدعومة)" @@ -7250,13 +7285,13 @@ msgstr "سلسلة البحث غير صالحة ( فقط حتى أطوال سل msgid "Invalid title ID." msgstr "معرف عنوان غير صالح." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "%1 عنوان الساعة غير صالح" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "الإيطالية" @@ -7269,11 +7304,11 @@ msgstr "إيطاليا" msgid "Item" msgstr "عنصر" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7281,47 +7316,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7333,31 +7368,31 @@ msgstr "JIT Recompiler for ARM64 (موصى به)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (موصى به)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "اليابان" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "اليابانية" @@ -7374,12 +7409,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "استمر في الجري" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "إبقاء النافذة في المقدمة" @@ -7413,16 +7448,16 @@ msgstr "مفاتيح" msgid "KiB" msgstr "كيلوبايت" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "طرد لاعب" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "كوريا" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "الكورية" @@ -7443,7 +7478,7 @@ msgstr "تحميل اللعبىة" msgid "L-Analog" msgstr "L-قوة ضغطة" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR حفظ" @@ -7451,7 +7486,11 @@ msgstr "LR حفظ" msgid "Label" msgstr "ضع الكلمة المناسبة" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "آخر قيمة" @@ -7465,23 +7504,23 @@ msgstr "آخر موضع" msgid "Last reset:" msgstr "آخر إعادة تعيين" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "~10ms :وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "~20ms :وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "~40ms :وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "~80ms :وقت الإستجابة" @@ -7489,7 +7528,7 @@ msgstr "~80ms :وقت الإستجابة" msgid "Launching these titles may also fix the issues." msgstr "قد يؤدي تشغيل هذه العناوين أيضا إلى حل المشكلات" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "المتصدرين" @@ -7497,7 +7536,7 @@ msgstr "المتصدرين" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7508,7 +7547,7 @@ msgstr "يسار" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "العصا الأيسر" @@ -7585,11 +7624,11 @@ msgstr "ضوء" msgid "Limit Chunked Upload Speed:" msgstr "الحد من سرعة الرفع المقسم:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "قائمة الأعمدة" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "قائمة" @@ -7598,30 +7637,30 @@ msgid "Listening" msgstr "الاستماع" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "تحميل النسيج المخصص" @@ -7629,11 +7668,11 @@ msgstr "تحميل النسيج المخصص" msgid "Load File" msgstr "تحميل الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "تحميل قائمة جيم كيوب الرئيسية " -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "تحميل بيانات حفظ المضيف فقط" @@ -7739,23 +7778,23 @@ msgstr "تحميل الحالة فتحة 8" msgid "Load State Slot 9" msgstr "تحميل الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "تحميل الحالة من الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "تحميل الحالة من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "تحميل الحالة من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "تحميل وكتابة بيانات حفظ المضيف" @@ -7763,54 +7802,62 @@ msgstr "تحميل وكتابة بيانات حفظ المضيف" msgid "Load from Selected Slot" msgstr "تحميل من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "%1 - %2 تحميل من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Load map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "الرموز المحملة من '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "محلي" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "قفل مؤشر الماوس" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "مقفل" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "سجل" @@ -7819,19 +7866,19 @@ msgstr "سجل" msgid "Log Configuration" msgstr "إعداد السجل" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "تسجيل الدخول" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "تسجيل الخروج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "تسجيل وقت التقديم للملف" @@ -7843,31 +7890,31 @@ msgstr "نوع السجل" msgid "Logger Outputs" msgstr "مسجل المخرجات" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "فشل تسجيل الدخول" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "التكرار الحلقي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "فقد الاتصال بالخادم" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "منخفضة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr " الحد الأدنى" @@ -7879,7 +7926,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -7927,7 +7974,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "الناشر" @@ -7944,16 +7991,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "NAND إدارة" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "أخذ عينات النسيج يدويا" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "تعيين" @@ -7965,11 +8012,11 @@ msgstr "Mask ROM" msgid "Match Found" msgstr "وجد تطابق" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "المخزن المؤقت الأقصى" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "%1 تم تغيير حجم المخزن المؤقت الأقصى إلى" @@ -7978,7 +8025,7 @@ msgstr "%1 تم تغيير حجم المخزن المؤقت الأقصى إلى msgid "Maximum tilt angle." msgstr "أقصى زاوية الميل." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "قد يسبب تباطؤ في قائمة وي وبعض الألعاب." @@ -7999,7 +8046,7 @@ msgstr "نقطة توقف الذاكرة" msgid "Memory Card" msgstr "بطاقة الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "مدير بطاقة الذاكرة" @@ -8027,7 +8074,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8045,7 +8092,7 @@ msgstr "ميغابايت" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "ميكروفون" @@ -8054,15 +8101,15 @@ msgstr "ميكروفون" msgid "Mini" msgstr "مصغره " -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "متنوعة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "إعدادات متنوعة" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8076,7 +8123,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "عدم تطابق بين هياكل البيانات الداخلية." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8096,7 +8143,7 @@ msgstr "" msgid "Modifier" msgstr "معدل" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8112,8 +8159,8 @@ msgstr "تعديل الفتحة" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "%1 تم العثور على وحدات" @@ -8121,7 +8168,7 @@ msgstr "%1 تم العثور على وحدات" msgid "Money:" msgstr "نقود" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "احادي" @@ -8133,11 +8180,11 @@ msgstr "أحادي الظلال" msgid "Monospaced Font" msgstr "خط أحادي المسافة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "إدخال الحركة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "محاكاة الحركة" @@ -8146,23 +8193,10 @@ msgstr "محاكاة الحركة" msgid "Motor" msgstr "محرك" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "رؤية مؤشر الماوس" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "يختفي مؤشر الماوس بعد الخمول ويظهر عند حركة مؤشر الماوس" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "سيكون مؤشر الماوس مرئيًا دائمًا" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "لن يكون مؤشر الماوس مرئيًا أبدًا أثناء تشغيل اللعبة" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8173,13 +8207,13 @@ msgstr "نقل" msgid "Movie" msgstr "فيلم" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8192,10 +8226,10 @@ msgstr "مضاعف" msgid "N&o to All" msgstr "لا للكل" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND تحقق" @@ -8204,8 +8238,8 @@ msgstr "NAND تحقق" msgid "NKit Warning" msgstr "NKit تحذير" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8214,7 +8248,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8231,8 +8265,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8275,7 +8309,7 @@ msgstr "Native (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "لعب عبر الشبكة" @@ -8291,27 +8325,27 @@ msgstr "اعدادات لعب عبر الشبكة" msgid "Netherlands" msgstr "هولندا" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "شبكة الاتصال" @@ -8319,16 +8353,16 @@ msgstr "شبكة الاتصال" msgid "Network dump format:" msgstr "تنسيق تفريغ الشبكة" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "أبدا" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "عدم التحديث التلقائي" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "جديد" @@ -8353,7 +8387,7 @@ msgstr "بحث جديد" msgid "New Tag..." msgstr "علامة جديدة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "تم إنشاء هوية جديدة ." @@ -8370,7 +8404,7 @@ msgstr "علامة جديدة" msgid "Next Game Profile" msgstr "ملف تعريف اللعبة التالية" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "التالية" @@ -8416,7 +8450,7 @@ msgstr "لا يوجد ضغط" msgid "No Match" msgstr "لا تطابق" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "لا يوجد حفظ للبيانات" @@ -8424,12 +8458,12 @@ msgstr "لا يوجد حفظ للبيانات" msgid "No data to modify!" msgstr "لا توجد بيانات لتعديلها" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "لا يوجد وصف متاح" @@ -8441,7 +8475,7 @@ msgstr "لا اخطاء" msgid "No extension selected." msgstr "لم يتم تحديد ملحق" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "لا يوجد ملف تحميل / مسجل." @@ -8449,7 +8483,7 @@ msgstr "لا يوجد ملف تحميل / مسجل." msgid "No game is running." msgstr "لا توجد لعبة قيد التشغيل" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "لا توجد لعبة قيد التشغيل" @@ -8462,11 +8496,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "لم يتم اكتشاف أية مشكلات." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "لم يتم العثور على لعبة مطابقة" @@ -8492,7 +8526,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "'{0}' لم يتم العثور على ملفات تعريف لإعداد اللعبة" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "لم يتم تحميل التسجيل" @@ -8509,10 +8543,10 @@ msgstr "No undo.dtm found, aborting undo load state to prevent movie desyncs" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "لا شيء" @@ -8524,7 +8558,7 @@ msgstr "أمريكا الشمالية" msgid "Not Set" msgstr "غير مجموعة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "ليس كل اللاعبين لديهم اللعبة. هل تريد حقا أن تبدأ؟" @@ -8544,7 +8578,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "لم يتم العثور عليها" @@ -8588,26 +8622,26 @@ msgstr "عدد الهزات في الثانية." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Nunchuk مقياس تسارع" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "أزرار نونشوك" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "عصا نونشوك" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "موافق" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "%1 موضوع" @@ -8659,7 +8693,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "نطاق الكائن" @@ -8680,18 +8714,18 @@ msgstr "" msgid "On" msgstr "تمكين" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "عند الحركة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8706,7 +8740,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "وثائق على الانترنت" @@ -8714,7 +8748,7 @@ msgstr "وثائق على الانترنت" msgid "Only Show Collection" msgstr "عرض المجموعة فقط" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8722,7 +8756,7 @@ msgstr "" "إلحاق رموز فقط بالبادية:\n" "(فارغ لكل الرموز)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8741,7 +8775,7 @@ msgstr "فتح" msgid "Open &Containing Folder" msgstr "فتح موقع الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "فتح مجلد المستخدم" @@ -8750,7 +8784,7 @@ msgstr "فتح مجلد المستخدم" msgid "Open Directory..." msgstr "فتح" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "FIFO فتح سجل" @@ -8816,34 +8850,34 @@ msgstr "البرتقالي" msgid "Orbital" msgstr "Orbital" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8858,11 +8892,11 @@ msgstr "(%1) قسم آخر" msgid "Other State Hotkeys" msgstr "مفاتيح الاختصار حالة الأخرى" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "إدارة الحالة الأخرى" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "لعبة أخرى" @@ -8878,16 +8912,16 @@ msgstr "إعادة تشكيل الإخراج" msgid "Output Resampling:" msgstr "إعادة تشكيل الإخراج" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "الكتابة فوق" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "تشغيل تسجيل الإدخال" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8900,11 +8934,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG مستوى ضغط" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG مستوى ضغط" @@ -8916,7 +8950,7 @@ msgstr "PNG image file (*.png);; All Files (*)" msgid "PPC Size" msgstr "PPC حجم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8950,7 +8984,7 @@ msgstr "Passive" msgid "Passthrough a Bluetooth adapter" msgstr "المرور عبر محول بلوتوث" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "كلمة المرور" @@ -8988,15 +9022,15 @@ msgstr "مسارات" msgid "Pause" msgstr "إيقاف مؤقت" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "وقفة في نهاية الفيلم" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "توقف عند فقدان التركيز" @@ -9012,6 +9046,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9031,7 +9071,7 @@ msgstr "سرعة الذروة لحركات التأرجح الخارجية." msgid "Per-Pixel Lighting" msgstr "لكل بكسل إضاءة" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "تحديث النظام عبر الإنترنت" @@ -9039,15 +9079,15 @@ msgstr "تحديث النظام عبر الإنترنت" msgid "Perform System Update" msgstr "تحديث النظام" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "(ms) نافذة نموذج الأداء" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "(ms) نافذة نموذج الأداء" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "إحصائيات الأداء" @@ -9065,11 +9105,11 @@ msgstr "مساحة العنوان الفعلي" msgid "PiB" msgstr "بيتابايت" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "debug اختر خط" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9082,7 +9122,7 @@ msgid "Pitch Up" msgstr "Pitch Up" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "المنصة" @@ -9090,7 +9130,7 @@ msgstr "المنصة" msgid "Play" msgstr "تشغيل" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "لعب / سجل" @@ -9102,40 +9142,40 @@ msgstr "تشغيل التسجيل" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "خيارات التشغيل" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "لاعب" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "اللاعب الأول" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "اللاعب واحد القدرة الأولى" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "اللاعب واحد القدرة الثانية" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "اللاعب الثاني" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "اللاعب اثنين القدرة الأولى" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "اللاعب الثاني القدرة الثانية" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "اللاعبين" @@ -9152,7 +9192,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "يرجى بدء لعبة قبل بدء البحث باستخدام مناطق الذاكرة القياسية" @@ -9168,7 +9208,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "منفذ %1" @@ -9185,7 +9225,7 @@ msgstr "منفذ" msgid "Portal Slots" msgstr "فتحات البوابة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "تم اكتشاف مزامنة محتملة: %1 قد تمت مزامنتها في الإطار %2" @@ -9201,24 +9241,32 @@ msgstr "تأثير ما بعد المعالجة" msgid "Post-Processing Shader Configuration" msgstr "إعداد تظليل ما بعد المعالجة" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "جلب النسيج المخصص المسبق " -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9243,7 +9291,7 @@ msgstr "اضغط على زر المزامنة" msgid "Pressure" msgstr "الضغط" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9258,7 +9306,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "ملف تعريف اللعبة السابقة" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "السابقة" @@ -9269,7 +9317,7 @@ msgstr "ملف التعريف السابق" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9309,7 +9357,7 @@ msgstr "" "تم العثور علي مشاكل ذات خطورة متوسطة. قد لا تعمل اللعبة بأكملها أو أجزاء " "معينه من اللعبة بشكل صحيح" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "الملف الشخصي" @@ -9318,23 +9366,29 @@ msgstr "الملف الشخصي" msgid "Program Counter" msgstr "عداد البرنامج" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "التقدم" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "عامة" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "أزالة ذاكره التخزين المؤقت لقائمة الألعاب" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9354,7 +9408,7 @@ msgstr "(QoS) تعذر تمكين جوده الخدمة ." msgid "Quality of Service (QoS) was successfully enabled." msgstr "تم تمكين جودة الخدمة (QoS) بنجاح." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "DPLII جودة وحدة فك الترميز\n" @@ -9363,11 +9417,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "مشكلة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "خروج" @@ -9384,19 +9438,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-قوة ضغطة" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "جاهز" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO الكشف التلقائي" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "ادارة" @@ -9417,7 +9471,7 @@ msgstr "نهاية النطاق:" msgid "Range Start: " msgstr "بداية النطاق:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9425,16 +9479,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" -msgstr "" +msgstr "الدقة الداخلية الخام" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "إعادة&مكان التعليمات" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "اقرأ" @@ -9473,8 +9528,8 @@ msgstr "ريموت وي الحقيقي" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9483,23 +9538,23 @@ msgstr "" msgid "Recenter" msgstr "إعادة المركز" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "تسجيل" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "سجل المدخلات" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "تسجيل" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "تسجيل الخيارات" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "تسجيل" @@ -9532,7 +9587,7 @@ msgstr "Redump.org حالة" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9563,7 +9618,7 @@ msgid "Refreshing..." msgstr "تحديث..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "المنطقة" @@ -9584,7 +9639,11 @@ msgstr "المدخلات النسبية" msgid "Relative Input Hold" msgstr "إدخال الإدخال النسبي" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "ذكرني لاحقا" @@ -9592,7 +9651,7 @@ msgstr "ذكرني لاحقا" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "إزالة" @@ -9623,20 +9682,20 @@ msgstr "" "(إلا إذا قمت بحزم ملف ISO بتنسيق مضغوط مثل ZIP بعد ذلك)\n" "هل تريد المتابعة على أية حال؟" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "إعادة تسمية الرمز" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "نافذة العرض" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "عرض إلى النافذة الرئيسية" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9650,10 +9709,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "طلب الانضمام إلى المجموعة" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9663,7 +9728,7 @@ msgstr "إعادة تعيين" msgid "Reset All" msgstr "إعادة تعيين الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "إعادة تعيين تجاهل معالج الذعر" @@ -9695,9 +9760,9 @@ msgstr "إعادة تعيين طريقة العرض" msgid "Reset all saved Wii Remote pairings" msgstr "إعادة تعيين كافة اقتران ريموت وي المحفوظة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" -msgstr "" +msgstr "نوع الدقة" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -9707,7 +9772,7 @@ msgstr "أدارة حزمة الموارد" msgid "Resource Pack Path:" msgstr "مسار حزمة الموارد" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "مطلوب إعادة تشغيل" @@ -9715,11 +9780,11 @@ msgstr "مطلوب إعادة تشغيل" msgid "Restore Defaults" msgstr "استعادة الضبط الافتراضي" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "استعادة التعليمات" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "إعادة المحاولة" @@ -9728,7 +9793,7 @@ msgstr "إعادة المحاولة" msgid "Return Speed" msgstr "عودة السرعة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "إصدار" @@ -9740,7 +9805,7 @@ msgstr "%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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9751,7 +9816,7 @@ msgstr "يمين" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "العصا الايمن" @@ -9787,11 +9852,11 @@ msgstr "Roll Left" msgid "Roll Right" msgstr "Roll Right" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "معرف الغرفة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "دوران" @@ -9809,27 +9874,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9842,7 +9911,7 @@ msgstr "" msgid "Rumble" msgstr "هزاز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Run &To Here" @@ -9850,15 +9919,15 @@ msgstr "Run &To Here" msgid "Run GBA Cores in Dedicated Threads" msgstr "تشغيل جيم بوي أدفانس في خيوط مخصصة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "تشغيل حتى" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9866,23 +9935,23 @@ msgstr "" msgid "Russia" msgstr "روسيا" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD Card" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD Card حجم ملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD Card Image (*.raw);;All Files (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD Card مسار" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD Card إعدادات" @@ -9890,7 +9959,7 @@ msgstr "SD Card إعدادات" msgid "SD Root:" msgstr "SD Root:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "SD مجلد مزامنة" @@ -9925,11 +9994,11 @@ msgstr "SSL سياق" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "حفظ الرموز" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "حفظ الحالة" @@ -9939,9 +10008,9 @@ msgid "Safe" msgstr "آمنة" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9951,25 +10020,25 @@ msgstr "حفظ" msgid "Save All" msgstr "حفظ الكل" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "حفظ التصدير" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "FIFO حفظ سجل" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "احفظ الملف إلى" @@ -9983,11 +10052,11 @@ msgstr "حفظ اللعبة" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "حفظ الاستيراد" @@ -9999,7 +10068,7 @@ msgstr "حفظ الحالة الأقدم" msgid "Save Preset" msgstr "حفظ الإعداد المسبق" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "حفظ ملف التسجيل باسم" @@ -10049,23 +10118,23 @@ msgstr "حفظ الحالة فتحة 8" msgid "Save State Slot 9" msgstr "حفظ الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "حفظ الحالة في ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "حفظ الحالة في أقدم فتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "حفظ الحالة في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "حفظ الحالة في الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10073,7 +10142,7 @@ msgstr "Save Symbol Map &As..." msgid "Save Texture Cache to State" msgstr "حفظ النسيج في ذاكرة التخزين المؤقت إلى الحالة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "حفظ و تحميل الحالة" @@ -10085,11 +10154,11 @@ msgstr "حفظ كإعداد مسبق" msgid "Save as..." msgstr "حفظ بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "حفظ ملف الإخراج المجمع بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10103,11 +10172,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Save in Same Directory as the ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Save map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "احفظ ملف التوقيع" @@ -10115,11 +10184,11 @@ msgstr "احفظ ملف التوقيع" msgid "Save to Selected Slot" msgstr "حفظ في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "%1 - %2 حفظ في الفتحة" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "حفظ" @@ -10131,7 +10200,7 @@ msgstr "لا يمكن إعادة تعيين اقتران ريموت وي الم msgid "Saves:" msgstr "حفظ" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -10148,8 +10217,8 @@ msgid "ScrShot" msgstr "لقطة للشاشة" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "بحث" @@ -10158,7 +10227,7 @@ msgstr "بحث" msgid "Search Address" msgstr "البحث عن عنوان" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "بحث في الكائن الحالي" @@ -10178,7 +10247,7 @@ msgstr "" "البحث غير ممكن حاليا في مساحة العنوان الافتراضية. يرجى تشغيل اللعبة قليلا " "والمحاولة مرة أخرى." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "ابحث عن تعليمات" @@ -10186,7 +10255,7 @@ msgstr "ابحث عن تعليمات" msgid "Search games..." msgstr "بحث عن الالعاب" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "تعليمات البحث" @@ -10220,7 +10289,7 @@ msgstr "حدد" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10231,23 +10300,23 @@ msgid "Select Dump Path" msgstr "تحديد مسار التفريغ" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "حدد ملف تصدير " -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "حدد ملف الشكل" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "حدد جيم بوي أدفانس BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "حدد قرص جيم بوي أدفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "حدد مسار الحفظ جيم بوي أدفانس" @@ -10275,7 +10344,7 @@ msgstr "Skylander حدد مجموعة" msgid "Select Skylander File" msgstr "حدد ملف Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "%1 - %2 حدد الفتحة" @@ -10283,7 +10352,7 @@ msgstr "%1 - %2 حدد الفتحة" msgid "Select State" msgstr "اختر الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "حدد فتحة الحالة" @@ -10344,13 +10413,13 @@ msgstr "اختر الملف" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "حدد ملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" @@ -10358,7 +10427,7 @@ msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" msgid "Select a Game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "SD Card حدد صورة" @@ -10370,7 +10439,7 @@ msgstr "حدد ملف" msgid "Select a game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "NAND حدد عنوانًا لتثبيته إلى" @@ -10378,11 +10447,11 @@ msgstr "NAND حدد عنوانًا لتثبيته إلى" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "RSO حدد عنوان وحدة" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "حدد ملف التسجيل للتشغيل" @@ -10390,12 +10459,12 @@ msgstr "حدد ملف التسجيل للتشغيل" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "(OTP/SEEPROM dump) حدد ملف المفاتيح" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "حدد حفظ الملف" @@ -10418,16 +10487,16 @@ msgstr "اختيار الملف التحكم الشخصي غير موجود " #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "اللعبة المختارة غير موجودة في قائمة الألعاب!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "مؤشر ترابط محدد" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "سياق الموضوع المحدد" @@ -10443,7 +10512,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10473,7 +10542,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10495,7 +10564,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10505,11 +10574,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "إرسال" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "موضع الاستشعار" @@ -10537,6 +10606,10 @@ msgstr "الخادم رفض محاولة الاجتياز" msgid "Set &Value" msgstr "تعيين القيمة" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10554,23 +10627,23 @@ msgstr "اضبط ملف بطاقة الذاكرة على الفتحة A" msgid "Set memory card file for Slot B" msgstr "اضبط ملف بطاقة الذاكرة على الفتحة B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Set symbol &end address" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Set symbol &size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "تعيين عنوان نهاية الرمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "تعيين حجم الرمز (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10580,11 +10653,19 @@ msgstr "" "games.\n" "قد لا تعمل لجميع الألعاب." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "تحدد لغة نظام وي " -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10592,19 +10673,26 @@ msgstr "" "يضبط وقت الاستجابة بالمللي ثانية. قد تقلل القيم الأعلى طقطقة الصوت. خلفيات " "معينة فقط." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "إعدادات" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Can't create setting.txt file" @@ -10612,7 +10700,7 @@ msgstr "SetupWiiMemory: Can't create setting.txt file" msgid "Severity" msgstr "درجة الخطورة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "تجميع التظليل" @@ -10634,32 +10722,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "عرض السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "السجل" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "شريط الأدوات" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "عرض العنوان النشط في عنوان النافذة" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "عرض الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "أستراليا" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "عرض اللعبة الحالية على ديسكورد" @@ -10668,7 +10756,7 @@ msgstr "عرض اللعبة الحالية على ديسكورد" msgid "Show Disabled Codes First" msgstr "عرض الرموز المعطلة أولاً" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -10677,31 +10765,31 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "عرض الرموز الممكّنة أولاً" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS عرض" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "عرض عداد الإطار" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "عرض أوقات الإطار" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "فرنسا" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "جيم كيوب" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "ألمانيا" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Show Golf Mode Overlay" @@ -10709,23 +10797,23 @@ msgstr "Show Golf Mode Overlay" msgid "Show Infinity Base" msgstr "Infinity عرض قاعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "عرض مدخلات العرض" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "ايطاليا" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "اليابان" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "كوريا" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "عرض عداد التأخر" @@ -10733,27 +10821,27 @@ msgstr "عرض عداد التأخر" msgid "Show Language:" msgstr "عرض اللغة" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "إعداد السجل" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "عرض رسائل اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "في اللعب عبر الشبكة Ping عرض الـ" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "هولندا" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "عرض الرسائل المعروضة على الشاشة" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "أوروبا" @@ -10762,27 +10850,27 @@ msgstr "أوروبا" msgid "Show PC" msgstr "عرض الكمبيوتر" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "عرض الرسوم البيانية للأداء" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "عرض المنصات" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" -msgstr "" +msgstr "عرض إحصائيات الإسقاط" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "عرض المناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "عرض عداد إعادة التسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "روسيا" @@ -10790,72 +10878,72 @@ msgstr "روسيا" msgid "Show Skylanders Portal" msgstr "Skylanders عرض بوابة" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "اسبانيا" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "عرض ألوان السرعة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "عرض الإحصاءات" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "عرض ساعة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "تايوان" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "امريكا" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "غير معروف" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "VBlank عرض أوقات" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "VPS عرض " -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "وي" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "العالم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "تظهر في الذاكرة" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "عرض في التعليمات البرمجية" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "عرض في الذاكرة" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "عرض في الرموز" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "عرض في الذاكرة" @@ -10863,71 +10951,104 @@ msgstr "عرض في الذاكرة" msgid "Show in server browser" msgstr "عرض في مستعرض الخادم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "أظهر الهدف في الذاكرة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10949,7 +11070,7 @@ msgstr "جانبية" msgid "Sideways Wii Remote" msgstr "انحراف ريموت وي" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "قاعدة بيانات التوقيع" @@ -10968,12 +11089,12 @@ msgstr "موقع 32" msgid "Signed 8" msgstr "موقع 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "عدد صحيح موقّع" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "الصينية المبسطة" @@ -10990,7 +11111,7 @@ msgstr "Six Axis" msgid "Size" msgstr "الحجم" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11002,7 +11123,7 @@ msgstr "" msgid "Skip" msgstr "تخطى" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Skip Drawing" @@ -11046,6 +11167,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -11120,7 +11244,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "رتب ترتيب أبجدي" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "الصوت" @@ -11134,7 +11258,7 @@ msgstr "اسبانيا" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "الأسبانية" @@ -11142,19 +11266,19 @@ msgstr "الأسبانية" msgid "Speaker Pan" msgstr "مكبر الصوت" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "مستوى الصوت" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Specialized (Default)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "محدد" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11179,11 +11303,11 @@ msgstr "سرعة" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "نهاية المكدس" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "بداية المكدس" @@ -11191,25 +11315,25 @@ msgstr "بداية المكدس" msgid "Standard Controller" msgstr "ذراع تحكم القياسية" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "تشغيل" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "بدء &اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "بدء بحث أسرار جديدة" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "بدء التسجيل" @@ -11217,7 +11341,7 @@ msgstr "بدء التسجيل" msgid "Start Recording" msgstr "بدء التسجيل" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "بدء بملء الشاشة" @@ -11229,14 +11353,14 @@ msgstr "Riivolution بدء مع تصحيحات" msgid "Start with Riivolution Patches..." msgstr "Riivolution بدء مع تصحيحات" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "بدأت اللعبة" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "الحالة" @@ -11268,19 +11392,19 @@ msgstr "خطوة لخارج" msgid "Step Over" msgstr "خطوة أكثر" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "الخروج ناجح!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "مهلة الخروج !" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "خطوة أكثر في التقدم" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "خطوة ناجحة!" @@ -11289,7 +11413,7 @@ msgstr "خطوة ناجحة!" msgid "Stepping" msgstr "التنقل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "استريو" @@ -11318,16 +11442,16 @@ msgid "Stick" msgstr "عصا" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "إيقاف" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "إيقاف تشغيل / تسجيل الإدخال" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "توقفت اللعبة" @@ -11359,11 +11483,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "تمتد إلى النافذة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "مزامنة الإعدادات الصارمة" @@ -11377,7 +11501,11 @@ msgstr "سلسلة" msgid "Strum" msgstr "داعب الأ وتار" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "النمط" @@ -11388,18 +11516,18 @@ msgstr "النمط" msgid "Stylus" msgstr "مرقم" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "ناجح" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "تمت إضافته بنجاح إلى فهرس اللعب عبر الشبكة" @@ -11409,7 +11537,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "تم تحويل%n صورة القرص (اقراص) بنجاح" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "'%1'. تم الحذف بنجاح" @@ -11422,24 +11550,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "تم تصدير ملفات الحفظ بنجاح" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "تم استخراج الشهادات بنجاح من NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "تم استخراج الملف بنجاح." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "استخرجت بنجاح بيانات النظام." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "تم استيراد ملف الحفظ بنجاح" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "تم بنجاح تثبيت هذا العنوان على NAND." @@ -11462,16 +11590,16 @@ msgstr "الدعم" msgid "Supported file formats" msgstr "تنسيقات الملفات المدعومة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Supports SD and SDHC. Default size is 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "محيطي" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "معلق" @@ -11515,17 +11643,17 @@ msgstr "B التبديل إلى" msgid "Symbol" msgstr "رمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "رمز (1%) عنوان النهاية:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "اسم الرمز" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "رموز" @@ -11533,7 +11661,7 @@ msgstr "رموز" msgid "Sync" msgstr "مزامنة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "AR/Gecko مزامنة رموز" @@ -11553,7 +11681,7 @@ msgstr "" "Synchronizes the GPU and CPU threads to help prevent random freezes in Dual " "core mode. (ON = Compatible, OFF = Fast)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11572,24 +11700,24 @@ msgid "Synchronizing save data..." msgstr "جارٍ مزامنة حفظ البيانات" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "لغة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "الإدخال" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS أدوات" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "العلامات" @@ -11599,7 +11727,7 @@ msgstr "العلامات" msgid "Taiko Drum" msgstr "Taiko Drum" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11607,7 +11735,7 @@ msgstr "" msgid "Taiwan" msgstr "تايوان" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "لقطة للشاشة" @@ -11615,7 +11743,7 @@ msgstr "لقطة للشاشة" msgid "Target address range is invalid." msgstr "نطاق العنوان المستهدف غير صالح." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11631,9 +11759,9 @@ msgstr "تقنية" msgid "Test" msgstr "اختبار" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11646,7 +11774,7 @@ msgstr "النسيج من ذاكره التخزين المؤقت" msgid "Texture Cache Accuracy" msgstr "دقة ذاكرة التخزين المؤقت للنسيج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "تفريغ النسيج" @@ -11658,7 +11786,7 @@ msgstr "تصفية النسيج" msgid "Texture Filtering:" msgstr "تصفية النسيج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "طلاء تنسيق النسيج" @@ -11695,7 +11823,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "أقسام نادرة مفقودة." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11703,7 +11831,7 @@ msgstr "" "NAND لا يمكن إصلاح\n" "يوصى بعمل نسخة احتياطية من بياناتك الحالية والبدء من جديد" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND تم اصلاح" @@ -11718,7 +11846,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11768,7 +11896,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11778,7 +11906,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "(at {0:#x} - {1:#x}) تعذر قراءة القرص" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "تعذر العثور على القرص الذي كان على وشك أن يتم إدراجه" @@ -11863,7 +11991,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "نظام الملفات غير صالح أو لا يمكن قراءته." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11905,7 +12033,7 @@ msgstr "" "منطقة اللعبة لا تتطابق مع وحدة التحكم الخاصة بك. لتجنب حدوث مشكلات في قائمة " "النظام ، لا يمكن تحديث وحدة التحكم التي تمت محاكاتها باستخدام هذا القرص." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11942,7 +12070,7 @@ msgstr "قسم التثبيت مفقود." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" -msgstr "" +msgstr "آخر مرة تم فيها وضع الرقم على البوابة" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:181 msgid "" @@ -11966,12 +12094,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "التصحيحات في 1% ليست للعبة المحددة أو مراجعة اللعبة" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "الملف الشخصي '1%' غير موجود" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11995,7 +12123,7 @@ msgid "" msgstr "" "%1 لا يمكن استخدام نفس الملف في فتحات متعددة؛ يتم استخدامه بالفعل من قبل " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12033,7 +12161,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12092,7 +12220,7 @@ msgstr "قسم التحديث مفقود" msgid "The update partition is not at its normal position." msgstr "قسم التحديث ليس في وضعه الطبيعي" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12114,6 +12242,10 @@ msgstr "لم يتم توقيع القسم {0} بشكل صحيح" msgid "The {0} partition is not properly aligned." msgstr "لم تتم محاذاة القسم {0} بشكل صحيح" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "هناك الكثير من الأقسام في جدول القسم الأول." @@ -12125,8 +12257,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12181,11 +12313,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "جهاز يو إس بي مدرج بالفعل في القائمة المسموح لها" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "غير قابل للتمهيد WAD" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "غير صالح WAD" @@ -12203,7 +12335,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "هذا لا يمكن التراجع عنه" @@ -12328,7 +12460,7 @@ msgstr "" msgid "This is a good dump." msgstr "هذا تفريغ جيد" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12352,7 +12484,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "يجب عدم استخدام هذا البرنامج لتشغيل الألعاب التي لا تملكها قانونيًا." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "لا يمكن تشغيل هذا العنوان." @@ -12392,7 +12524,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "يتم ضرب هذه القيمة مع عمق المنصوص عليها في ضبط الرسومات." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12406,7 +12538,7 @@ msgid "" msgstr "" "سيحد ذلك من سرعة التحميل المتراكم لكل عميل ، والذي يستخدم لحفظ المزامنة." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12418,11 +12550,11 @@ msgstr "" "قد يمنع المزامنة في بعض الألعاب التي تستخدم قراءات مخزن مؤقت للإطار المضمن . " "يرجى التأكد من استخدام الجميع لخلفية الفيديو نفسها." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "سياق الموضوع" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "المواضيع" @@ -12445,14 +12577,14 @@ msgstr "إمالة" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "الفترة الزمنية للإدخال المستقر لتشغيل المعايرة. (صفر لتعطيل)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "انتهت مهله" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "العنوان" @@ -12461,12 +12593,12 @@ msgid "To" msgstr "إلى" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "إلى" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "ملء الشاشة" @@ -12488,10 +12620,10 @@ msgstr "كافة أنواع السجلات" #: Source/Core/Core/HotkeyManager.cpp:107 msgid "Toggle Aspect Ratio" -msgstr "تناسب الأبعاد" +msgstr "نسبة الابعاد" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "نقطة التوقف" @@ -12547,7 +12679,7 @@ msgstr "Toggle XFB Immediate Mode" msgid "Tokenizing failed." msgstr "Tokenizing فشل" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12555,7 +12687,7 @@ msgstr "" msgid "Toolbar" msgstr "شريط الأدوات" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "اعلى" @@ -12563,8 +12695,8 @@ msgstr "اعلى" msgid "Top-and-Bottom" msgstr "Top-and-Bottom" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12606,7 +12738,7 @@ msgid "Toy code:" msgstr "رمز اللعبة" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "الصينية التقليدية" @@ -12626,8 +12758,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "خطأ الاجتياز" @@ -12656,7 +12788,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "أزرار الكتف" @@ -12666,7 +12798,7 @@ msgid "Trophy" msgstr "كأس" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12680,7 +12812,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "مساحة عنوان جيم كيوب/وي النموذجية" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "غير معروف" @@ -12692,7 +12824,7 @@ msgstr "امريكا" msgid "USB Device Emulation" msgstr "محاكاة جهاز يو اس بي" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "محاكاة يو اس بي" @@ -12710,14 +12842,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB خطأ في القائمة البيضاء لـ " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12725,7 +12857,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12734,7 +12866,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "RSO تعذر الكشف التلقائي عن وحدة" @@ -12805,11 +12937,11 @@ msgstr "غير مضغوطة GC/Wii صورة (*.iso *.gcm)" msgid "Undead" msgstr "ميت حي" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "تراجع عن تحميل الحالة" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "تراجع عن حفظ الحالة" @@ -12830,28 +12962,28 @@ msgstr "" "NAND إلى إزالة الإصدار المثبت حاليًا من هذا العنوان من\n" "دون حذف بيانات الحفظ الخاصة به. استمر؟" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "امريكا" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "غير معروف" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "(Id:%1 Var:%2) مجهول" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12922,11 +13054,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "غير محدود" @@ -12938,21 +13070,9 @@ msgstr "إلغاء تحميل القرص" msgid "Unlock Cursor" msgstr "فتح المؤشر" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "غير مقفلة" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "تم إلغاء القفل %1 مرة في هذه الجلسة" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Unlocked (غير رسمي)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "فتح هذه الجلسة" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -12978,7 +13098,7 @@ msgstr "غير موقع 32" msgid "Unsigned 8" msgstr "غير موقع 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "عدد صحيح غير موقعة" @@ -12992,8 +13112,8 @@ msgstr "عدد صحيح غير موقعة" msgid "Up" msgstr "فوق" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "التحديث" @@ -13001,11 +13121,11 @@ msgstr "التحديث" msgid "Update Partition (%1)" msgstr "(%1) قسم التحديث" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "تحديث بعد إغلاق دولفين" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "التحديثات المتوفرة" @@ -13050,7 +13170,7 @@ msgstr "عمودي" msgid "Upright Wii Remote" msgstr "ريموت وي وضع عمودي" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "إعدادات تقارير إحصائيات الاستخدام " @@ -13058,31 +13178,37 @@ msgstr "إعدادات تقارير إحصائيات الاستخدام " msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "استخدام جميع بيانات حفظ وي" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "استخدم قاعدة بيانات مدمجة لأسماء الألعاب" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Use Lossless Codec (FFV1)" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" -msgstr "" +msgstr "استخدام التأشير الذي يتم التحكم فيه بالماوس" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "(EuRGB60) PAL60 استخدام وضع " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Use Panic Handlers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13117,7 +13243,7 @@ msgstr "استخدم العناوين الافتراضية عندما يكون msgid "User Config" msgstr "إعداد المستخدم" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "واجهة المستخدم" @@ -13135,10 +13261,17 @@ msgstr "" "يمكنك استخدامها لحفظ أو استرداد القيم بين\n" "مدخلات ومخرجات نفس وحدة التحكم الرئيسية." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "اسم المستخدم" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13147,14 +13280,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13430,8 +13563,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "تحذير" @@ -13441,7 +13574,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13455,28 +13588,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13521,7 +13654,7 @@ msgstr "Western (Windows-1252)" msgid "Whammy" msgstr "الضربة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13529,7 +13662,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13537,7 +13670,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "الاجهزة المسموح لها المرور خلال منفذ يو إس بي " @@ -13569,25 +13702,25 @@ msgstr "ريموت وي" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "%1 ريموت وي" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "مقياس تسارع ريموت وي" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "أزرار ريموت وي" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "جيروسكوب ريموت وي" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "إعدادات ريموت وي" @@ -13595,19 +13728,19 @@ msgstr "إعدادات ريموت وي" msgid "Wii Remotes" msgstr "ريموت وي" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii TAS Input %1 - تحكم كلاسيكي" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii TAS Input %1 - ريموت وي" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS Input %1 - ريموت وي + نونشوك" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "وي و ريموت وي" @@ -13615,7 +13748,7 @@ msgstr "وي و ريموت وي" msgid "Wii data is not public yet" msgstr "بيانات وي ليست عامة بعد" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "ملفات حفظ وي (*.bin);;كل الملفات (*)" @@ -13623,28 +13756,20 @@ msgstr "ملفات حفظ وي (*.bin);;كل الملفات (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools Signature MEGA File" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"سوف يقفل مؤشر الماوس على أداة العرض طالما أنه يحتوي على تركيز. يمكنك ضبط " -"مفتاح الاختصار لفتحه." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" -msgstr "" +msgstr "دقة النافذة" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "حجم النافذة" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13658,10 +13783,11 @@ msgstr "عالم" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "كتابة" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13694,39 +13820,39 @@ msgstr "Write to Log and Break" msgid "Write to Window" msgstr "الكتابة إلى النافذة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "رقم قرص خاطئ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "تجزئة خاطئة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "منطقة خاطئة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "مراجعة خاطئة" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF تسجيل" @@ -13735,9 +13861,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13765,14 +13891,14 @@ msgstr "نعم" msgid "Yes to &All" msgstr "نعم للكل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13856,7 +13982,7 @@ msgstr "يجب تقديم اسم لجلستك!" msgid "You must provide a region for your session!" msgstr "يجب عليك توفير منطقة لجلستك!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "يجب إعادة تشغيل دولفين حتى يسري التغيير." @@ -13876,16 +14002,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13894,7 +14020,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "رمز 3 أصفار غير مدعوم" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13943,7 +14069,7 @@ msgid "default" msgstr "إفتراضي" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "غير متصل" @@ -13951,7 +14077,7 @@ msgstr "غير متصل" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "تخطئ" @@ -13959,7 +14085,7 @@ msgstr "تخطئ" msgid "fake-completion" msgstr "إكمال زائف " -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -14007,16 +14133,6 @@ msgstr "" msgid "none" msgstr "لا شيء" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "إيقاف" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "على" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "او حدد الجهاز" @@ -14034,7 +14150,7 @@ msgstr "sRGB" msgid "this value:" msgstr "هذه القيمة " -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -14101,11 +14217,9 @@ msgstr "| أو" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ فريق دولفين . جيم كيوب و وي هي علامات تجارية لنينتندو . لا " -"ينتمي دولفين مع نينتندو بأي شكل من الأشكال . " #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ca.po b/Languages/po/ca.po index f95a8384d9..56e6f54306 100644 --- a/Languages/po/ca.po +++ b/Languages/po/ca.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Puniasterus , 2013-2016,2021-2023\n" "Language-Team: Catalan (http://app.transifex.com/delroth/dolphin-emu/" @@ -97,7 +97,7 @@ msgstr "" "%1\n" "Aquest usuari vol unir-se al teu grup." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -131,7 +131,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revisió %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -151,7 +151,7 @@ msgstr "%1 (lent)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -165,11 +165,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Paràmetres dels gràfics" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -186,7 +186,7 @@ msgstr "%1 no admet aquesta funció al teu sistema." msgid "%1 doesn't support this feature." msgstr "%1 no admet aquesta funció." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -196,33 +196,27 @@ msgstr "" "%2 objecte(s)\n" "Fotograma actual: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 s'ha unit" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 s'ha marxat" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 no és una ROM vàlida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 ara està jugant al golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -230,13 +224,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "%1 rangs de memòria" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -248,30 +242,30 @@ msgstr "S'ha trobat %1 sessió" msgid "%1 sessions found" msgstr "S'han trobat %1 sessions" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (velocitat normal)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -283,6 +277,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -352,11 +350,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Sobre" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -365,7 +363,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -373,15 +371,15 @@ msgstr "" msgid "&Add..." msgstr "&Afegir..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Paràmetres d'àudio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Actualització automàtica:" @@ -389,11 +387,15 @@ msgstr "&Actualització automàtica:" msgid "&Borderless Window" msgstr "&Finestra sense marges" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Punts d'interrupció" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -403,15 +405,15 @@ msgstr "" " \n" "&Cancel·lar" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Gestor de trucs" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -419,7 +421,7 @@ msgstr "" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Codi" @@ -427,16 +429,15 @@ msgstr "&Codi" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Configuració del controlador" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -444,20 +445,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -471,11 +472,11 @@ msgstr "&Edita codi..." msgid "&Edit..." msgstr "&Edita..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Expulsa el disc" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulació" @@ -495,41 +496,41 @@ msgstr "&Exporta una captura d'estat..." msgid "&Export as .gci..." msgstr "&Exportar com a .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "Avança un &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&Repositori GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Configuració de &gràfics" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Configuració de &tecles d'accés" @@ -549,11 +550,11 @@ msgstr "&Importa una captura d'estat..." msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Insertar blr" @@ -561,23 +562,23 @@ msgstr "&Insertar blr" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Idioma:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Carrega una captura d'estat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -587,19 +588,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Enregistrament" @@ -607,7 +612,7 @@ msgstr "&Enregistrament" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -616,23 +621,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Obre..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opcions" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Executar" @@ -640,7 +645,7 @@ msgstr "&Executar" msgid "&Properties" msgstr "&Propietats" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Mode de només lectura" @@ -648,7 +653,7 @@ msgstr "&Mode de només lectura" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registres" @@ -661,24 +666,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reinicia" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -686,31 +691,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Aturar" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Eines" @@ -720,21 +725,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Vista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Veure" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Pàgina web" @@ -746,23 +751,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -798,12 +803,12 @@ msgstr "" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -864,7 +869,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -922,7 +927,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -948,7 +953,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1041,26 +1046,26 @@ msgstr "< Menys que" msgid "" msgstr " " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr " " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1083,8 +1088,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Més gran que" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Ja hi ha una sessió NetPlay en curs!" @@ -1098,7 +1103,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1112,7 +1117,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1128,7 +1133,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1153,7 +1158,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Codi AR" @@ -1196,16 +1201,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Acció" @@ -1278,7 +1277,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1286,15 +1285,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adaptador" @@ -1302,7 +1301,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador detectat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adaptador:" @@ -1312,7 +1311,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Afegeix" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1337,43 +1336,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Afegir..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adreça" @@ -1499,7 +1498,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1508,7 +1507,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1516,34 +1515,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Tots els fitxers (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1559,7 +1558,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1567,7 +1566,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1585,7 +1584,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1607,7 +1606,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analitzar" @@ -1633,15 +1632,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1659,7 +1658,7 @@ msgstr "Data Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1667,7 +1666,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1679,7 +1678,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1691,16 +1690,16 @@ msgstr "Estàs segur?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Relació d'aspecte" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Relació d'aspecte:" @@ -1708,7 +1707,7 @@ msgstr "Relació d'aspecte:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1720,7 +1719,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1741,11 +1740,11 @@ msgstr "" msgid "Audio" msgstr "Àudio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Motor d'àudio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1761,7 +1760,7 @@ msgstr "Autor" msgid "Authors" msgstr "Autors" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1770,11 +1769,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Múltiple de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1782,7 +1781,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1790,15 +1789,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1838,27 +1837,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Registre BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Configuració del motor" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Motor:" @@ -1901,7 +1900,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Pancarta" @@ -1921,15 +1920,15 @@ msgstr "Barra" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Bàsic" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Configuració bàsica" @@ -1945,10 +1944,6 @@ msgstr "" msgid "Battery" msgstr "Bateria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (una vegada al mes)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1981,11 +1976,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1995,7 +1990,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2031,67 +2026,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Abaix" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2103,23 +2098,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2136,7 +2131,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2146,19 +2141,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2173,19 +2168,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2219,24 +2219,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2281,11 +2281,11 @@ msgstr "" msgid "C Stick" msgstr "Palanca C" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Registre CP" @@ -2305,7 +2305,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2336,7 +2336,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2362,7 +2362,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2378,18 +2378,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2398,15 +2398,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2422,11 +2422,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2434,7 +2434,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2442,7 +2442,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2474,7 +2474,7 @@ msgstr "" msgid "Change &Disc" msgstr "Canviar &Disc" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Canvia el &disc..." @@ -2482,15 +2482,21 @@ msgstr "Canvia el &disc..." msgid "Change Disc" msgstr "Canviar Disc" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2508,7 +2514,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2516,11 +2522,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Xat" @@ -2528,7 +2534,7 @@ msgstr "Xat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Cerca trucs" @@ -2536,7 +2542,7 @@ msgstr "Cerca trucs" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2554,7 +2560,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2566,7 +2572,7 @@ msgstr "Xina" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Trieu un arxiu per obrir" @@ -2574,15 +2580,15 @@ msgstr "Trieu un arxiu per obrir" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2595,7 +2601,7 @@ msgstr "Seleccioni la carpeta on extreure" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2606,18 +2612,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Esborrar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2638,7 +2644,7 @@ msgstr "" msgid "Close" msgstr "Tancar" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2646,11 +2652,11 @@ msgstr "" msgid "Code" msgstr "Codi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2678,11 +2684,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2709,7 +2715,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2719,7 +2725,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2732,7 +2738,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2740,11 +2746,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2760,7 +2766,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2775,7 +2781,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2829,7 +2840,7 @@ msgstr "Configuració" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2842,27 +2853,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Confirmar a l'aturar" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2872,15 +2883,15 @@ msgstr "" msgid "Connect" msgstr "Connectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Connectar la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Connectar el teclat USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2900,7 +2911,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2916,7 +2927,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2941,7 +2952,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3028,8 +3039,8 @@ msgstr "" msgid "Convergence:" msgstr "Convergència:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3037,9 +3048,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3047,9 +3058,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3069,8 +3080,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3099,22 +3110,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3122,19 +3133,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3152,8 +3163,8 @@ msgstr "" msgid "Core" msgstr "Nucli" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3260,7 +3271,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3276,13 +3287,13 @@ msgstr "" msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3296,7 +3307,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3313,11 +3324,11 @@ msgstr "" msgid "Critical" msgstr "Crític" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Retallar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3329,42 +3340,42 @@ msgstr "" msgid "Crossfade" msgstr "Atenuar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3372,15 +3383,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3423,7 +3434,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3431,15 +3442,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3465,7 +3476,7 @@ msgstr "Estora de ball" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3510,8 +3521,8 @@ msgstr "Zona morta" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuració" @@ -3520,7 +3531,7 @@ msgstr "Depuració" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3559,7 +3570,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Per defecte" @@ -3567,7 +3578,7 @@ msgstr "Per defecte" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3579,11 +3590,11 @@ msgstr "" msgid "Default ISO:" msgstr "ISO per defecte:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3591,7 +3602,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3600,8 +3611,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Eliminar" @@ -3631,12 +3643,12 @@ msgstr "" msgid "Depth:" msgstr "Profunditat:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripció" @@ -3650,8 +3662,8 @@ msgstr "Descripció:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3663,21 +3675,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3685,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3693,11 +3705,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Dispositiu" @@ -3715,7 +3727,7 @@ msgstr "Configuració del dispositiu" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3723,7 +3735,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3739,11 +3751,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3752,7 +3759,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3760,11 +3767,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3772,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deshabilitar boira" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3791,7 +3798,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disc" @@ -3815,6 +3828,10 @@ msgstr "Disc" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3845,11 +3862,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3859,7 +3876,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Voleu aturar l'emulació actual?" @@ -3867,12 +3884,12 @@ msgstr "Voleu aturar l'emulació actual?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3880,9 +3897,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3894,8 +3911,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin Pel·lícules TAS (*.dtm)" @@ -3928,7 +3945,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3942,13 +3959,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3957,7 +3974,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3978,7 +3995,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -4000,7 +4017,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -4012,6 +4029,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4051,19 +4078,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Desa l'àudio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Bolcat de destinació EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Desa el vídeo" @@ -4071,7 +4098,7 @@ msgstr "Desa el vídeo" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4079,7 +4106,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4104,44 +4131,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holandès" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Surt" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4153,7 +4180,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4161,7 +4188,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Actualitzacions recents de memòria" @@ -4180,7 +4207,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4200,7 +4236,7 @@ msgstr "Efecte" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4222,11 +4258,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Buida" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "El fil de l'emulador ja s'està executant" @@ -4252,7 +4288,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4274,34 +4310,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Activar Trucs" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4309,15 +4335,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Habilitar Doble nucli" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Habilitar Doble nucli (acceleració)" @@ -4329,7 +4359,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4337,15 +4367,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4363,41 +4393,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Habilitar MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Habilitar Exploració &Progressiva" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Habilitar l'Estalvi de Pantalla" @@ -4405,19 +4427,23 @@ msgstr "Habilitar l'Estalvi de Pantalla" msgid "Enable Speaker Data" msgstr "Activar Altaveu de Dades" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Habilitar Wireframe" @@ -4425,34 +4451,13 @@ msgstr "Habilitar Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4460,34 +4465,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4518,7 +4530,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4526,7 +4538,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4543,7 +4555,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4571,7 +4583,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4579,7 +4591,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4587,7 +4599,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4606,13 +4618,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Anglès" @@ -4629,7 +4645,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4653,33 +4669,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4692,52 +4708,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -4754,7 +4770,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4770,7 +4786,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4861,12 +4877,12 @@ msgstr "" msgid "Euphoria" msgstr "Eufòria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4910,11 +4926,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportar totes les partides guardades de Wii" @@ -4929,7 +4945,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportar gravació" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exporta l'enregistrament..." @@ -4957,14 +4973,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensió" @@ -4977,7 +4993,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4985,35 +5001,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extreure arxiu..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -5022,8 +5038,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Jugador FIFO" @@ -5037,11 +5053,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5061,7 +5077,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5082,15 +5098,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5136,15 +5152,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5163,25 +5179,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5201,18 +5217,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5224,21 +5240,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5252,17 +5268,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5270,7 +5286,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5300,15 +5316,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5316,11 +5332,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5367,23 +5383,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5397,7 +5413,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5428,31 +5444,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5503,19 +5519,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5528,7 +5544,7 @@ msgstr "Ràpid" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5539,7 +5555,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5553,7 +5569,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5561,24 +5577,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "informació del fitxer" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nom de l'arxiu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Mida del fitxer" @@ -5663,7 +5679,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5672,12 +5687,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5697,7 +5712,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forçar 16:9" @@ -5705,7 +5720,7 @@ msgstr "Forçar 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forçar 4:3" @@ -5737,11 +5752,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5763,6 +5778,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5778,7 +5799,7 @@ msgstr "Endavant" msgid "Forward port (UPnP)" msgstr "Reenviar port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5788,7 +5809,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5809,11 +5830,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Rang de Fotogrames" @@ -5821,7 +5842,7 @@ msgstr "Rang de Fotogrames" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5841,7 +5862,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5872,7 +5893,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francès" @@ -5891,8 +5912,8 @@ msgid "From" msgstr "de" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5900,10 +5921,14 @@ msgstr "" msgid "FullScr" msgstr "Amplia" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5944,11 +5969,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5990,7 +6015,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6000,25 +6025,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6030,7 +6055,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6048,22 +6073,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6092,7 +6117,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID del joc" @@ -6101,25 +6126,25 @@ msgstr "ID del joc" msgid "Game ID:" msgstr "ID del joc:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6132,7 +6157,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6152,11 +6177,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6164,11 +6189,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6185,7 +6210,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6213,7 +6238,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codis Gecko" @@ -6223,35 +6248,35 @@ msgstr "Codis 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "General" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Alemany" @@ -6278,7 +6303,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6287,7 +6312,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gràfics" @@ -6327,7 +6352,7 @@ msgstr "Verd Esquerra" msgid "Green Right" msgstr "Verd Dret" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6364,7 +6389,7 @@ msgstr "" msgid "Hacks" msgstr "Modificacions" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6396,7 +6421,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6405,11 +6430,11 @@ msgstr "" msgid "Hide" msgstr "Oculta" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6421,16 +6446,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6453,7 +6485,7 @@ msgstr "Amfitrió" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6461,7 +6493,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6469,11 +6501,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6485,7 +6517,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6495,11 +6527,11 @@ msgstr "" msgid "Hotkeys" msgstr "Tecles d'accés ràpid" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6552,12 +6584,12 @@ msgstr "" msgid "IPL Settings" msgstr "Configuració de IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilitat d'IR:" @@ -6583,14 +6615,14 @@ msgstr "" msgid "Icon" msgstr "Icona" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6607,7 +6639,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6621,14 +6653,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6640,7 +6672,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6672,7 +6704,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6681,7 +6713,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6696,21 +6728,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6788,7 +6829,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6797,7 +6838,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6817,12 +6858,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informació" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6831,11 +6872,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Entrada" @@ -6849,23 +6890,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Inserir la targeta SD" @@ -6878,11 +6915,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6890,13 +6927,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6905,7 +6942,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6914,7 +6951,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6931,19 +6968,19 @@ msgstr "" msgid "Interface" msgstr "Interfície" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6956,19 +6993,19 @@ msgstr "Error intern LZO - la compressió ha fallat" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6983,7 +7020,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Resolució Interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6991,7 +7028,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7007,7 +7044,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7016,11 +7053,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7041,7 +7078,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7057,19 +7094,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Fitxer d'enregistrament invàlid" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Paràmetres de búsqueda invàlids (cap objecte seleccionat)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Cadena de cerca invàlida (no s'ha pogut convertir a número)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Cadena de cerca invàlida (només es soporten longituds de la cadena parelles)" @@ -7078,13 +7115,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italià" @@ -7097,11 +7134,11 @@ msgstr "Itàlia" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7109,47 +7146,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7161,31 +7198,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japó" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonès" @@ -7202,12 +7239,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7241,16 +7278,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Expulsar jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coreà" @@ -7271,7 +7308,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analògic" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7279,7 +7316,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7293,23 +7334,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7317,7 +7358,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7325,7 +7366,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7336,7 +7377,7 @@ msgstr "Esquerra" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Palanca esquerra" @@ -7407,11 +7448,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7420,30 +7461,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Carrega textures personalitzades" @@ -7451,11 +7492,11 @@ msgstr "Carrega textures personalitzades" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7561,23 +7602,23 @@ msgstr "Carregar ranura d'estat 8" msgid "Load State Slot 9" msgstr "Carregar estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Carrega des d'un fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Carrega des de la ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Carrega des d'una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7585,54 +7626,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Registre" @@ -7641,19 +7690,19 @@ msgstr "Registre" msgid "Log Configuration" msgstr "Configuració del registre" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7665,31 +7714,31 @@ msgstr "Tipus de registre" msgid "Logger Outputs" msgstr "Sortides del registrador" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7701,7 +7750,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7749,7 +7798,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Fabricant" @@ -7766,16 +7815,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7787,11 +7836,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7800,7 +7849,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7821,7 +7870,7 @@ msgstr "" msgid "Memory Card" msgstr "Targeta de memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7849,7 +7898,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7863,7 +7912,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Micròfon" @@ -7872,15 +7921,15 @@ msgstr "Micròfon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Miscel·làni" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Configuracions Miscel·lànies" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7892,7 +7941,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7912,7 +7961,7 @@ msgstr "" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7928,8 +7977,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7937,7 +7986,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7949,11 +7998,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7962,23 +8011,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7989,13 +8025,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8008,10 +8044,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8020,8 +8056,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8030,7 +8066,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8047,8 +8083,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8091,7 +8127,7 @@ msgstr "Natiu (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8107,27 +8143,27 @@ msgstr "" msgid "Netherlands" msgstr "Països Baixos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8135,16 +8171,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8169,7 +8205,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8186,7 +8222,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8232,7 +8268,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8240,12 +8276,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "No hi ha descripció disponible" @@ -8257,7 +8293,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8265,7 +8301,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8278,11 +8314,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8305,7 +8341,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8322,10 +8358,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Cap" @@ -8337,7 +8373,7 @@ msgstr "" msgid "Not Set" msgstr "Sense establir" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8357,7 +8393,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8401,26 +8437,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8472,7 +8508,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Rang d'objecte" @@ -8493,18 +8529,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8519,7 +8555,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Documentació en línia" @@ -8527,13 +8563,13 @@ msgstr "&Documentació en línia" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8550,7 +8586,7 @@ msgstr "Obre" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Obre la carpeta de l'&usuari" @@ -8559,7 +8595,7 @@ msgstr "Obre la carpeta de l'&usuari" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8625,34 +8661,34 @@ msgstr "Taronja" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8667,11 +8703,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8687,16 +8723,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Reprodueix l'enregistrament d'entrades" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8709,11 +8745,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8725,7 +8761,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8759,7 +8795,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8797,15 +8833,15 @@ msgstr "Camins" msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pausa al final de l'enregistrament" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8821,6 +8857,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8840,7 +8882,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Il·luminació per píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8848,15 +8890,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8874,11 +8916,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8891,7 +8933,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plataforma" @@ -8899,7 +8941,7 @@ msgstr "Plataforma" msgid "Play" msgstr "Juga" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8911,40 +8953,40 @@ msgstr "Reproduir enregistrament" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opcions de reproducció" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Jugadors" @@ -8961,7 +9003,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8977,7 +9019,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8994,7 +9036,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9010,24 +9052,32 @@ msgstr "Efecte de post-processament:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9050,7 +9100,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9065,7 +9115,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9076,7 +9126,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9110,7 +9160,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Perfil" @@ -9119,23 +9169,29 @@ msgstr "Perfil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9155,18 +9211,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Pregunta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Sortir" @@ -9183,19 +9239,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analògic" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9216,7 +9272,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9224,16 +9280,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9272,8 +9329,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9282,23 +9339,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Enregistrar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opcions d'Enregistrament" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9331,7 +9388,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9362,7 +9419,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regió" @@ -9383,7 +9440,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9391,7 +9452,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Eliminar" @@ -9419,20 +9480,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Renderitzar a la finestra principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9446,10 +9507,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9459,7 +9526,7 @@ msgstr "Reiniciar" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9491,7 +9558,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9503,7 +9570,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9511,11 +9578,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Tornar a intentar" @@ -9524,7 +9591,7 @@ msgstr "Tornar a intentar" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9536,7 +9603,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9547,7 +9614,7 @@ msgstr "Dreta" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Palanca dreta" @@ -9583,11 +9650,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9605,27 +9672,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9638,7 +9709,7 @@ msgstr "" msgid "Rumble" msgstr "Vibració" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9646,15 +9717,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9662,23 +9733,23 @@ msgstr "" msgid "Russia" msgstr "Rússia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9686,7 +9757,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9721,11 +9792,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "&Desa l'Estat" @@ -9735,9 +9806,9 @@ msgid "Safe" msgstr "Segur" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9747,25 +9818,25 @@ msgstr "Desar" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9779,11 +9850,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9795,7 +9866,7 @@ msgstr "Desar l'Estat Més Antic" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9845,23 +9916,23 @@ msgstr "Desar Ranura d'Estat 8" msgid "Save State Slot 9" msgstr "Desar Ranura d'Estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9869,7 +9940,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9881,11 +9952,11 @@ msgstr "" msgid "Save as..." msgstr "Desar com..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9896,11 +9967,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9908,11 +9979,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9924,7 +9995,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9941,8 +10012,8 @@ msgid "ScrShot" msgstr "Captura" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Buscar" @@ -9951,7 +10022,7 @@ msgstr "Buscar" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9969,7 +10040,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9977,7 +10048,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -10011,7 +10082,7 @@ msgstr "Seleccionar" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10022,23 +10093,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10066,7 +10137,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10074,7 +10145,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Tria ranura de captura" @@ -10135,13 +10206,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10149,7 +10220,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10161,7 +10232,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10169,11 +10240,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10181,12 +10252,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Seleccioni el fitxer de partida guardada" @@ -10209,16 +10280,16 @@ msgstr "El perfil del controlador seleccionat no existeix" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10234,7 +10305,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10264,7 +10335,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10286,7 +10357,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10296,11 +10367,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Posició Barra de Sensors" @@ -10328,6 +10399,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10345,52 +10420,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10398,7 +10488,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10420,32 +10510,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Mostrar &Registre" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Mostrar Barra d'&Eines" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Mostrar Austràlia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10454,7 +10544,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10463,31 +10553,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Comptador de fotogrames" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Mostrar Alemanya" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10495,23 +10585,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Visualitza les entrades" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Mostrar Itàlia" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Mostrar Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Comptador de lag" @@ -10519,27 +10609,27 @@ msgstr "Comptador de lag" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Mostrar la &Configuració del Registre" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Mostrar PAL" @@ -10548,27 +10638,27 @@ msgstr "Mostrar PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Mostrar Plataformes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Mostrar Regions" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Comptador de reenregistraments" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10576,72 +10666,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Mostrar Estadístiques" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Rellotge del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10649,71 +10739,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10735,7 +10858,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10754,12 +10877,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Xinès Simplificat" @@ -10776,7 +10899,7 @@ msgstr "" msgid "Size" msgstr "Mida" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10786,7 +10909,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10830,6 +10953,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10900,7 +11026,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10914,7 +11040,7 @@ msgstr "Espanya" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Espanyol" @@ -10922,19 +11048,19 @@ msgstr "Espanyol" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volum de l'altaveu:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10959,11 +11085,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10971,25 +11097,25 @@ msgstr "" msgid "Standard Controller" msgstr "Controlador Estàndard" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Començar" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Comença l'enregistrament d'entrades" @@ -10997,7 +11123,7 @@ msgstr "&Comença l'enregistrament d'entrades" msgid "Start Recording" msgstr "Iniciar Gravació" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11009,14 +11135,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11048,19 +11174,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11069,7 +11195,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11098,16 +11224,16 @@ msgid "Stick" msgstr "Palanca" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Atura" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Atura la reproducció/enregistrament d'entrades" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11139,11 +11265,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Ajustar a la Finestra" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11157,7 +11283,11 @@ msgstr "" msgid "Strum" msgstr "Strum" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11168,18 +11298,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11189,7 +11319,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11202,24 +11332,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11242,16 +11372,16 @@ msgstr "Suport" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11295,17 +11425,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11313,7 +11443,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11331,7 +11461,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11350,24 +11480,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Entrada 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11377,7 +11507,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11385,7 +11515,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Captura de pantalla" @@ -11393,7 +11523,7 @@ msgstr "Captura de pantalla" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11409,9 +11539,9 @@ msgstr "" msgid "Test" msgstr "Prova" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11424,7 +11554,7 @@ msgstr "Cache de textures" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11436,7 +11566,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Superposició del format de textura" @@ -11473,13 +11603,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11494,7 +11624,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11541,7 +11671,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11551,7 +11681,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11630,7 +11760,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11670,7 +11800,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11729,12 +11859,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11754,7 +11884,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11788,7 +11918,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11846,7 +11976,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11868,6 +11998,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11879,8 +12013,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11928,11 +12062,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11950,7 +12084,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12049,7 +12183,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12069,7 +12203,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12109,7 +12243,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12122,7 +12256,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12130,11 +12264,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12157,14 +12291,14 @@ msgstr "Inclinació" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Títol" @@ -12173,12 +12307,12 @@ msgid "To" msgstr "A" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Pantalla completa" @@ -12203,7 +12337,7 @@ msgid "Toggle Aspect Ratio" msgstr "Commutar Relació d'Aspecte" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12259,7 +12393,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12267,7 +12401,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Superior" @@ -12275,8 +12409,8 @@ msgstr "Superior" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12318,7 +12452,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Xinès Tradicional" @@ -12338,8 +12472,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12366,7 +12500,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Gatells" @@ -12376,7 +12510,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12390,7 +12524,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12402,7 +12536,7 @@ msgstr "EUA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12420,14 +12554,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12435,7 +12569,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12444,7 +12578,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12507,11 +12641,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Desfés la càrrega de captura" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Desfer Estat Guardat" @@ -12529,28 +12663,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Desconegut" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12621,11 +12755,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Il·limitat" @@ -12637,20 +12771,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12677,7 +12799,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12691,8 +12813,8 @@ msgstr "" msgid "Up" msgstr "Amunt" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Actualitzar" @@ -12700,11 +12822,11 @@ msgstr "Actualitzar" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12747,7 +12869,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12755,15 +12877,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12771,15 +12893,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Utilitzar Gestors de Pànic" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12813,7 +12941,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12828,10 +12956,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12840,14 +12975,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13110,8 +13245,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advertència" @@ -13121,7 +13256,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13133,28 +13268,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13199,7 +13334,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13207,7 +13342,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13215,7 +13350,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13247,25 +13382,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13273,19 +13408,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13293,7 +13428,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13301,13 +13436,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13316,11 +13445,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13334,10 +13463,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13370,39 +13500,39 @@ msgstr "" msgid "Write to Window" msgstr "Escriu a Finestra" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Registre XF" @@ -13411,9 +13541,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13441,14 +13571,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13525,7 +13655,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Ha de reiniciar Dolphin perquè el canvi faci efecte." @@ -13545,16 +13675,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13563,7 +13693,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Codi Zero 3 no està suportat" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13612,7 +13742,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13620,7 +13750,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -13628,7 +13758,7 @@ msgstr "errno" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13676,16 +13806,6 @@ msgstr "" msgid "none" msgstr "cap" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13703,7 +13823,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13768,7 +13888,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/cs.po b/Languages/po/cs.po index ccfba00df0..112bec3fbb 100644 --- a/Languages/po/cs.po +++ b/Languages/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zbyněk Schwarz , 2011-2016\n" "Language-Team: Czech (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -113,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -144,11 +144,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -165,40 +165,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -206,13 +200,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -224,30 +218,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -259,6 +253,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -328,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -341,7 +339,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -349,15 +347,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Nastavení &zvuku" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -365,11 +363,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Body přerušení" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -377,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -393,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -401,16 +403,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Nastavení ovladače" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -418,20 +419,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -445,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulace" @@ -469,41 +470,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Soubor" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Postup snímkem" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Ú&ložiště Github" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafická nastavení" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Nápověda" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Nastavení &klávesových zkratek" @@ -523,11 +524,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -535,23 +536,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Nahrát Stav" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -561,19 +562,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "Pa&měť" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Video" @@ -581,7 +586,7 @@ msgstr "&Video" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -590,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Otevřít..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "V&olby" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Přehrát" @@ -614,7 +619,7 @@ msgstr "&Přehrát" msgid "&Properties" msgstr "&Vlastnosti" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Režim pouze pro čtení" @@ -622,7 +627,7 @@ msgstr "&Režim pouze pro čtení" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registry" @@ -635,24 +640,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Resetovat" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -660,31 +665,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "Za&stavit" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "Nás&troje" @@ -694,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Zobrazit" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Sledování" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Internetová stránka" @@ -720,23 +725,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -772,12 +777,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -838,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -896,7 +901,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -922,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1015,26 +1020,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1057,8 +1062,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1072,7 +1077,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1086,7 +1091,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1102,7 +1107,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1127,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1170,16 +1175,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1252,7 +1251,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1260,15 +1259,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1276,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Zjištěn adaptér" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adaptér:" @@ -1286,7 +1285,7 @@ msgstr "Adaptér:" msgid "Add" msgstr "Přidat" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1311,43 +1310,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Přidat..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adresa" @@ -1473,7 +1472,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1482,7 +1481,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1490,34 +1489,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1533,7 +1532,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1541,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1559,7 +1558,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1581,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "Anaglyf" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analyzovat" @@ -1607,15 +1606,15 @@ msgstr "Vyhlazení okrajů" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1633,7 +1632,7 @@ msgstr "Datum zavaděče aplikace:" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1641,7 +1640,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1653,7 +1652,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1665,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Poměr Stran:" @@ -1682,7 +1681,7 @@ msgstr "Poměr Stran:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1694,7 +1693,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Přidělit porty ovladače" @@ -1715,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Zvuk" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Podpůrná vrstva zvuku:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1735,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "Autoři" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1744,11 +1743,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Násobek 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1756,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1764,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1812,27 +1811,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Registr BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Nastavení podpůrné vrstvy" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Podpůrná vrstva:" @@ -1875,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Plakát" @@ -1895,15 +1894,15 @@ msgstr "Vibráto" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Základní" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Základní nastavení" @@ -1919,10 +1918,6 @@ msgstr "" msgid "Battery" msgstr "Baterie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1955,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1969,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2005,67 +2000,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Celá obrazovka bez okrajů" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Dole" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2077,23 +2072,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2110,7 +2105,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2120,19 +2115,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2147,19 +2142,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2193,24 +2193,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Vyrovnávací paměť:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2255,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "Kruhová páčka" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Registr CP" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Převaděč s mezipamětí (pomalejší)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2310,7 +2310,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2336,7 +2336,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2352,18 +2352,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2372,15 +2372,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2396,11 +2396,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2408,7 +2408,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2416,7 +2416,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "Vyměnit &disk" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Vyměnit &Disk..." @@ -2456,15 +2456,21 @@ msgstr "Vyměnit &Disk..." msgid "Change Disc" msgstr "Vyměnit Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2482,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2490,11 +2496,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2502,7 +2508,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Hledání Cheatů" @@ -2510,7 +2516,7 @@ msgstr "Hledání Cheatů" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2528,7 +2534,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2540,7 +2546,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Zvolte soubor k otevření" @@ -2548,15 +2554,15 @@ msgstr "Zvolte soubor k otevření" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2569,7 +2575,7 @@ msgstr "Zvolte adresář pro umístění extrakce" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2580,18 +2586,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Vyčistit" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2612,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Zavřít" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2620,11 +2626,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2652,11 +2658,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2683,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2693,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2706,7 +2712,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2714,11 +2720,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2734,7 +2740,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2749,7 +2755,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2803,7 +2814,7 @@ msgstr "Nastavit" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2816,27 +2827,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Při zastavení Potvrdit" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2846,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "Připojit" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Připojit Rola-Bola" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Připojit USB Klávesnici" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2874,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2890,7 +2901,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2915,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "Ovládací páčka" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3002,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "Sblížení:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3011,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3021,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3043,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3073,22 +3084,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopírovat" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3096,19 +3107,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3126,8 +3137,8 @@ msgstr "" msgid "Core" msgstr "Jádro" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3234,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3250,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Země:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3270,7 +3281,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3287,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "Kritické" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Oříznout" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3303,42 +3314,42 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3346,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3397,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3405,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3439,7 +3450,7 @@ msgstr "Taneční podložka" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3484,8 +3495,8 @@ msgstr "Mrtvá Zóna" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Ladění" @@ -3494,7 +3505,7 @@ msgstr "Ladění" msgid "Decimal" msgstr "Desetinné" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3533,7 +3544,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Výchozí" @@ -3541,7 +3552,7 @@ msgstr "Výchozí" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3553,11 +3564,11 @@ msgstr "" msgid "Default ISO:" msgstr "Výchozí ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3565,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3574,8 +3585,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Smazat" @@ -3605,12 +3617,12 @@ msgstr "" msgid "Depth:" msgstr "Hloubka:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Popis" @@ -3624,8 +3636,8 @@ msgstr "Popis:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3637,21 +3649,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3659,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Zjistit" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3667,11 +3679,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Zařízení" @@ -3689,7 +3701,7 @@ msgstr "Nastavení Zařízení" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3697,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Ztmaví obrazovku po pěti minutách nečinnosti." @@ -3713,11 +3725,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Zakázat ohraničující rámeček" @@ -3726,7 +3733,7 @@ msgstr "Zakázat ohraničující rámeček" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3734,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Zakázat limit rychlosti emulace" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3746,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Zakázat Mlhu" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3765,7 +3772,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disk" @@ -3789,6 +3802,10 @@ msgstr "Disk" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3819,11 +3836,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3833,7 +3850,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Chcete současnou emulaci zastavit?" @@ -3841,12 +3858,12 @@ msgstr "Chcete současnou emulaci zastavit?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3854,9 +3871,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3868,8 +3885,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Doplhin Filmy TAS (*.dtm)" @@ -3902,7 +3919,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3916,13 +3933,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3931,7 +3948,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3952,7 +3969,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3974,7 +3991,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3986,6 +4003,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4025,19 +4052,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Vypsat Zvuk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Vypsat Cíl EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Vypsat Snímky" @@ -4045,7 +4072,7 @@ msgstr "Vypsat Snímky" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4053,7 +4080,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4078,44 +4105,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Nizozemština" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "O&dejít" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4127,7 +4154,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4135,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Předčasné Aktualizace Paměti" @@ -4154,7 +4181,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4174,7 +4210,7 @@ msgstr "Efekt" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4196,11 +4232,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Vestavěná vyrovnávací paměť snímků (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Prázdné" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Vlákno Emulace již běží" @@ -4226,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4248,34 +4284,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Povolit Cheaty" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4283,15 +4309,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Povolit dvojité jádro" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Zapnout dvojité jádro (zrychlení)" @@ -4303,7 +4333,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4311,15 +4341,15 @@ msgstr "" msgid "Enable FPRF" msgstr "Povolit FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4337,41 +4367,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Zapnout MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Povolit Progresivní Skenování" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Povolit Spořič Obrazovky" @@ -4379,19 +4401,23 @@ msgstr "Povolit Spořič Obrazovky" msgid "Enable Speaker Data" msgstr "Povolit data reproduktorů" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Povolit hlášení statistik o užívání" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Povolit Drátěný Model" @@ -4399,34 +4425,13 @@ msgstr "Povolit Drátěný Model" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4434,34 +4439,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4494,7 +4506,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4502,7 +4514,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4519,7 +4531,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4547,7 +4559,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4555,7 +4567,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4563,7 +4575,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4582,13 +4594,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet nebyl uaveden" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Angličtina" @@ -4605,7 +4621,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4629,33 +4645,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4668,52 +4684,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Chyba" @@ -4730,7 +4746,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4745,7 +4761,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4836,12 +4852,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Evropa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4885,11 +4901,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportovat všechny uložené hry Wii" @@ -4904,7 +4920,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportovat Nahrávku" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exportovat Nahrávku..." @@ -4932,14 +4948,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Rozšíření" @@ -4952,7 +4968,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4960,35 +4976,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Externí vyrovnávací paměť snímků (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extrahovat Soubor..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4997,8 +5013,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Přehrávač FIFO" @@ -5012,11 +5028,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5036,7 +5052,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5057,15 +5073,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5111,15 +5127,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5138,25 +5154,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5176,18 +5192,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5199,21 +5215,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5227,17 +5243,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5245,7 +5261,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5275,15 +5291,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5291,11 +5307,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5342,23 +5358,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5372,7 +5388,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5403,31 +5419,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5478,19 +5494,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5503,7 +5519,7 @@ msgstr "Rychlá" msgid "Fast Depth Calculation" msgstr "Rychlý výpočet hloubky" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5514,7 +5530,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5528,7 +5544,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5536,24 +5552,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Informace o souboru" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Název souboru" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Velikost souboru" @@ -5638,7 +5654,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5647,12 +5662,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5672,7 +5687,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Vynutit 16:9" @@ -5680,7 +5695,7 @@ msgstr "Vynutit 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Vynutit 4:3" @@ -5712,11 +5727,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5738,6 +5753,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5753,7 +5774,7 @@ msgstr "Dopředu" msgid "Forward port (UPnP)" msgstr "Přesměrování portu (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5763,7 +5784,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5784,11 +5805,11 @@ msgstr "Zvýšit rychlost postupu snímkem" msgid "Frame Advance Reset Speed" msgstr "Resetovat rychlost postupu snímkem" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Rozsah Snímku" @@ -5796,7 +5817,7 @@ msgstr "Rozsah Snímku" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5816,7 +5837,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5847,7 +5868,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francouzština" @@ -5866,8 +5887,8 @@ msgid "From" msgstr "Z" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5875,10 +5896,14 @@ msgstr "" msgid "FullScr" msgstr "CelObr" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5919,11 +5944,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5965,7 +5990,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5975,25 +6000,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6005,7 +6030,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6023,22 +6048,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartridže Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6067,7 +6092,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID hry" @@ -6076,25 +6101,25 @@ msgstr "ID hry" msgid "Game ID:" msgstr "ID Hry:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6107,7 +6132,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6127,11 +6152,11 @@ msgstr "Adaptér GameCube pro Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6139,11 +6164,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "Ovladače GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6160,7 +6185,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6188,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kódy Gecko" @@ -6198,35 +6223,35 @@ msgstr "Kódy 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Obecné" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Vytvořit novou identitu pro statistiky" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Němčina" @@ -6253,7 +6278,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6262,7 +6287,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6302,7 +6327,7 @@ msgstr "Zelená vlevo" msgid "Green Right" msgstr "Zelená vpravo" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6339,7 +6364,7 @@ msgstr "" msgid "Hacks" msgstr "Hacky" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6371,7 +6396,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6380,11 +6405,11 @@ msgstr "" msgid "Hide" msgstr "Skrýt" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6396,16 +6421,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6428,7 +6460,7 @@ msgstr "Hostovat" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6436,7 +6468,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6444,11 +6476,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6460,7 +6492,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6470,11 +6502,11 @@ msgstr "" msgid "Hotkeys" msgstr "Klávesové zkratky" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6527,12 +6559,12 @@ msgstr "" msgid "IPL Settings" msgstr "Nastavení IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "Infrč." #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Citlivost Infračer.:" @@ -6558,14 +6590,14 @@ msgstr "" msgid "Icon" msgstr "Ikona" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6582,7 +6614,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6596,14 +6628,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6615,7 +6647,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6647,7 +6679,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6656,7 +6688,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6671,21 +6703,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6763,7 +6804,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6772,7 +6813,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6792,12 +6833,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informace" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6806,11 +6847,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Vstup" @@ -6824,23 +6865,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Vložit SD Kartu" @@ -6853,11 +6890,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6865,13 +6902,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6880,7 +6917,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6889,7 +6926,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6906,19 +6943,19 @@ msgstr "" msgid "Interface" msgstr "Rozhraní" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6931,19 +6968,19 @@ msgstr "Vnitřní chyba LZO - komprimace selhala" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6958,7 +6995,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Vnitřní Rozlišení:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6966,7 +7003,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Převaděč (nejpomalejší)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6982,7 +7019,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6991,11 +7028,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7016,7 +7053,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7032,19 +7069,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Neplatný soubor s nahrávkou" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Neplatné parametry hledání (není vybrán žádný objekt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Neplatný řetězec hledání (nelze převést na číslo)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Neplatný řetězec hledání (jsou podporovány pouze sudé délky řetězce)" @@ -7052,13 +7089,13 @@ msgstr "Neplatný řetězec hledání (jsou podporovány pouze sudé délky řet msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italština" @@ -7071,11 +7108,11 @@ msgstr "Itálie" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7083,47 +7120,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7135,31 +7172,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japonsko" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonština" @@ -7176,12 +7213,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Okno vždy navrchu" @@ -7215,16 +7252,16 @@ msgstr "Klávesy" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Vykopnout hráče" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korejština" @@ -7245,7 +7282,7 @@ msgstr "" msgid "L-Analog" msgstr "Levý Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7253,7 +7290,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7267,23 +7308,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7291,7 +7332,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7299,7 +7340,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7310,7 +7351,7 @@ msgstr "Vlevo" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Levá páčka" @@ -7381,11 +7422,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7394,30 +7435,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Nahrát" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Nahrát Vlastní Textury" @@ -7425,11 +7466,11 @@ msgstr "Nahrát Vlastní Textury" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7535,23 +7576,23 @@ msgstr "Nahrát stav v pozici 8" msgid "Load State Slot 9" msgstr "Načíst stav v pozici 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7559,54 +7600,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Záznam" @@ -7615,19 +7664,19 @@ msgstr "Záznam" msgid "Log Configuration" msgstr "Nastavení Záznamu" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Zaznamenat dobu vykreslování do souboru" @@ -7639,31 +7688,31 @@ msgstr "Typy Záznamu" msgid "Logger Outputs" msgstr "Výstup Zapisovače" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7675,7 +7724,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7723,7 +7772,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Tvůrce" @@ -7740,16 +7789,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7761,11 +7810,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7774,7 +7823,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Může způsobit zpomalování v nabídce Wii a u některých her." @@ -7795,7 +7844,7 @@ msgstr "" msgid "Memory Card" msgstr "Paměťová karta" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7823,7 +7872,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7837,7 +7886,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -7846,15 +7895,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Ostatní" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Ostatní Nastavení" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7866,7 +7915,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7886,7 +7935,7 @@ msgstr "" msgid "Modifier" msgstr "Modifikátor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7902,8 +7951,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7911,7 +7960,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7923,11 +7972,11 @@ msgstr "Monoskopické stíny" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7936,23 +7985,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7963,13 +7999,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7982,10 +8018,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7994,8 +8030,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8004,7 +8040,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8021,8 +8057,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8065,7 +8101,7 @@ msgstr "Původní (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8081,27 +8117,27 @@ msgstr "" msgid "Netherlands" msgstr "Nizozemí" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8109,16 +8145,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8143,7 +8179,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Nová identita vytvořena." @@ -8160,7 +8196,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8206,7 +8242,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8214,12 +8250,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Žádný popis není dostupný" @@ -8231,7 +8267,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8239,7 +8275,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8252,11 +8288,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8279,7 +8315,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8297,10 +8333,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Žádné" @@ -8312,7 +8348,7 @@ msgstr "" msgid "Not Set" msgstr "Nenastaven" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8332,7 +8368,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8376,26 +8412,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunčak" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8447,7 +8483,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Rozsah Objektu" @@ -8468,18 +8504,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8494,7 +8530,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online &dokumentace" @@ -8502,13 +8538,13 @@ msgstr "Online &dokumentace" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8525,7 +8561,7 @@ msgstr "Otevřít" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8534,7 +8570,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8600,34 +8636,34 @@ msgstr "Oranžová" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8642,11 +8678,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8662,16 +8698,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Spustit vstupní nahrávku..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8684,11 +8720,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8700,7 +8736,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8734,7 +8770,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8772,15 +8808,15 @@ msgstr "Cesty" msgid "Pause" msgstr "Pozastavit" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pozastavit na konci videa" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8796,6 +8832,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8815,7 +8857,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvětlení Podle Pixelu" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8823,15 +8865,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8849,11 +8891,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8866,7 +8908,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platforma" @@ -8874,7 +8916,7 @@ msgstr "Platforma" msgid "Play" msgstr "Spustit" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8886,40 +8928,40 @@ msgstr "Přehrát nahrávku" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Možnosti Přehrávání" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Hráči" @@ -8936,7 +8978,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8952,7 +8994,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8969,7 +9011,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8985,24 +9027,32 @@ msgstr "Efekt Následného Zpracování:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Předzískat vlastní textury" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9025,7 +9075,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9040,7 +9090,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9051,7 +9101,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9085,7 +9135,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9094,23 +9144,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9130,18 +9186,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Otázka" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Ukončit" @@ -9158,19 +9214,19 @@ msgstr "R" msgid "R-Analog" msgstr "Pravý Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9191,7 +9247,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9199,16 +9255,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9247,8 +9304,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9257,23 +9314,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Nahrávat" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Možnosti Nahrávání" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9306,7 +9363,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9337,7 +9394,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Oblast" @@ -9358,7 +9415,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9366,7 +9427,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Odstranit" @@ -9394,20 +9455,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Vykreslit do Hlavního okna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9421,10 +9482,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9434,7 +9501,7 @@ msgstr "Resetovat" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9466,7 +9533,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9478,7 +9545,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9486,11 +9553,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Zkusit znovu" @@ -9499,7 +9566,7 @@ msgstr "Zkusit znovu" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9511,7 +9578,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9522,7 +9589,7 @@ msgstr "Vpravo" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Pravá páčka" @@ -9558,11 +9625,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9580,27 +9647,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9613,7 +9684,7 @@ msgstr "" msgid "Rumble" msgstr "Vibrace" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9621,15 +9692,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9637,23 +9708,23 @@ msgstr "" msgid "Russia" msgstr "Rusko" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9661,7 +9732,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9696,11 +9767,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Uložit Sta&v" @@ -9710,9 +9781,9 @@ msgid "Safe" msgstr "Bezpečná" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9722,25 +9793,25 @@ msgstr "Uložit" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9754,11 +9825,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9770,7 +9841,7 @@ msgstr "Načíst nejstarší stav" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9820,23 +9891,23 @@ msgstr "Uložit stav do pozice 8" msgid "Save State Slot 9" msgstr "Uložit stav do pozice 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9844,7 +9915,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9856,11 +9927,11 @@ msgstr "" msgid "Save as..." msgstr "Uložit jako" -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9871,11 +9942,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9883,11 +9954,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9899,7 +9970,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9916,8 +9987,8 @@ msgid "ScrShot" msgstr "SnímkObrz" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Hledat" @@ -9926,7 +9997,7 @@ msgstr "Hledat" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9944,7 +10015,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9952,7 +10023,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9986,7 +10057,7 @@ msgstr "Vybrat" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9997,23 +10068,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10041,7 +10112,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10049,7 +10120,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Vybrat pozici stavu" @@ -10110,13 +10181,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10124,7 +10195,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10136,7 +10207,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10144,11 +10215,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10156,12 +10227,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Vyberte soubor s uloženou hrou" @@ -10184,16 +10255,16 @@ msgstr "Vybraný profil ovladače neexistuje" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10209,7 +10280,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10239,7 +10310,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10261,7 +10332,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10271,11 +10342,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Poslat" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Umístění Senzorové Tyče:" @@ -10303,6 +10374,10 @@ msgstr "Server zamítl pokus o průchod" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10320,23 +10395,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10345,29 +10420,44 @@ msgstr "" "Nastaví režim zobrazení Wii na 60Hz (480i) místo 50Hz (576i) pro hry PAL.\n" "Nemusí fungovat ve všech hrách." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Nastaví jazyk systému Wii" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "Nastavení paměti Wii: Nelze vytvořit soubor settings.txt" @@ -10375,7 +10465,7 @@ msgstr "Nastavení paměti Wii: Nelze vytvořit soubor settings.txt" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10397,32 +10487,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Zobrazit Záznam" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Zobrazit Panel Nás&trojů" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Zobrazit Autrálii" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10431,7 +10521,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Zobrazit ELF/DOL" @@ -10440,31 +10530,31 @@ msgstr "Zobrazit ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Zobrazit Snímky za Sekundu" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Zobrazit počítadlo snímků" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Zobrazit Francii" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Zobrazit GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Zobrazit Německo" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10472,23 +10562,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Zobrazit Obrazovku Vstupu" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Zobrazit Itálii" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Zobrazit Koreu" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Zobrazit počítadlo zpoždění" @@ -10496,27 +10586,27 @@ msgstr "Zobrazit počítadlo zpoždění" msgid "Show Language:" msgstr "Jazyk Zobrazení:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Zobrazit Nastavení &Záznamu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Zobrazit Nizozemí" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Zobrazit PAL" @@ -10525,27 +10615,27 @@ msgstr "Zobrazit PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Zobrazit Platformy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Zobrazit Regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Zobrazit Rusko" @@ -10553,72 +10643,72 @@ msgstr "Zobrazit Rusko" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Zobrazit Španělsko" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Zobrazit Statistiky" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Zobrazit Tchaj-wan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Zobrazit USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Zobrazit neznámé" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Zobrazit WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Zobrazit Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Zobrazit svět" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10626,71 +10716,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10712,7 +10835,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10731,12 +10854,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Zjednodušená čínština" @@ -10753,7 +10876,7 @@ msgstr "" msgid "Size" msgstr "Velikost" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10763,7 +10886,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10807,6 +10930,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10877,7 +11003,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10891,7 +11017,7 @@ msgstr "Španělsko" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Španělština" @@ -10899,19 +11025,19 @@ msgstr "Španělština" msgid "Speaker Pan" msgstr "Posun reproduktoru" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Hlasitost Reproduktoru:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10936,11 +11062,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10948,25 +11074,25 @@ msgstr "" msgid "Standard Controller" msgstr "Standardní Ovladač" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Začít nahrávat vstup" @@ -10974,7 +11100,7 @@ msgstr "&Začít nahrávat vstup" msgid "Start Recording" msgstr "Začít Nahrávat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10986,14 +11112,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11025,19 +11151,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11046,7 +11172,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11075,16 +11201,16 @@ msgid "Stick" msgstr "Páčka" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zastavit" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11116,11 +11242,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Roztáhnout do Okna" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11134,7 +11260,11 @@ msgstr "" msgid "Strum" msgstr "Brnkat" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11145,18 +11275,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11166,7 +11296,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11179,24 +11309,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11219,16 +11349,16 @@ msgstr "Podpora" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11272,17 +11402,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11290,7 +11420,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11308,7 +11438,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11327,24 +11457,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Jazyk Systému:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS Vstup" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11354,7 +11484,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11362,7 +11492,7 @@ msgstr "" msgid "Taiwan" msgstr "Tchaj-wan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Vytvořit Snímek Obrazovky" @@ -11370,7 +11500,7 @@ msgstr "Vytvořit Snímek Obrazovky" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11386,9 +11516,9 @@ msgstr "" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11401,7 +11531,7 @@ msgstr "Vyrovnávací Paměť Textur" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11413,7 +11543,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Překryv Formátu Textury" @@ -11450,13 +11580,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11471,7 +11601,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11518,7 +11648,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11528,7 +11658,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11607,7 +11737,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11647,7 +11777,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11706,12 +11836,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11731,7 +11861,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11765,7 +11895,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11823,7 +11953,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11845,6 +11975,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11856,8 +11990,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11905,11 +12039,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11927,7 +12061,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12026,7 +12160,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12046,7 +12180,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12087,7 +12221,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "Tato hodnota je vynásobena hloubkou zadanou v grafickém nastavení." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12100,7 +12234,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12108,11 +12242,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12135,14 +12269,14 @@ msgstr "Naklánění" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Název" @@ -12151,12 +12285,12 @@ msgid "To" msgstr "Do" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12181,7 +12315,7 @@ msgid "Toggle Aspect Ratio" msgstr "Přepínat poměr stran" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12237,7 +12371,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12245,7 +12379,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Nahoře" @@ -12253,8 +12387,8 @@ msgstr "Nahoře" msgid "Top-and-Bottom" msgstr "Nad sebou" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12296,7 +12430,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Tradiční Čínština" @@ -12316,8 +12450,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12344,7 +12478,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Spínače" @@ -12354,7 +12488,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12368,7 +12502,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12380,7 +12514,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12398,14 +12532,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12413,7 +12547,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12422,7 +12556,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12485,11 +12619,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Vrátit zpět Nahrání Stavu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Vrátit zpět Uložení Stavu" @@ -12507,28 +12641,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Neznámé" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12599,11 +12733,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Neomezeno" @@ -12615,20 +12749,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12655,7 +12777,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12669,8 +12791,8 @@ msgstr "" msgid "Up" msgstr "Nahoru" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Aktualizovat" @@ -12678,11 +12800,11 @@ msgstr "Aktualizovat" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12725,7 +12847,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Nastavení hlášení statistik o užívání" @@ -12733,15 +12855,15 @@ msgstr "Nastavení hlášení statistik o užívání" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12749,15 +12871,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Použít režim PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Použít Obslužné Rutiny Paniky" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12791,7 +12919,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12806,10 +12934,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12818,14 +12953,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13088,8 +13223,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varování" @@ -13099,7 +13234,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13111,28 +13246,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13177,7 +13312,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13185,7 +13320,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13193,7 +13328,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13225,25 +13360,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13251,19 +13386,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13271,7 +13406,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13279,13 +13414,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13294,11 +13423,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13312,10 +13441,11 @@ msgstr "Světové" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13348,39 +13478,39 @@ msgstr "" msgid "Write to Window" msgstr "Zapsat do Okna" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Registr XF" @@ -13389,9 +13519,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13419,14 +13549,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13503,7 +13633,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Pro uplatnění změn musíte Dolphin restartovat." @@ -13523,16 +13653,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13541,7 +13671,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Kód Zero 3 není podporován" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13590,7 +13720,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13598,7 +13728,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13606,7 +13736,7 @@ msgstr "" msgid "fake-completion" msgstr "předstírat dokončení" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13654,16 +13784,6 @@ msgstr "" msgid "none" msgstr "žádné" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13681,7 +13801,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13746,7 +13866,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/da.po b/Languages/po/da.po index 9cc271b541..4edd020430 100644 --- a/Languages/po/da.po +++ b/Languages/po/da.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Lars Lyngby , 2020-2022\n" "Language-Team: Danish (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -95,7 +95,7 @@ msgstr "" "%1\n" "ønsker at slutte sig til din gruppe." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -129,7 +129,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Udgave %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Beholdning)" @@ -149,7 +149,7 @@ msgstr "%1 (langsom)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -163,11 +163,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Grafikkonfiguration" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -184,40 +184,34 @@ msgstr "%1 understøtter ikke funktionen på dit system." msgid "%1 doesn't support this feature." msgstr "%1 understøtter ikke funktionen." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 ha tilsluttet sig" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 har forladt gruppen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 er ikke en gyldig ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 spiller golf nu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -225,13 +219,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "%1 hukommelsesområder" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -243,30 +237,30 @@ msgstr "%1 session fundet" msgid "%1 sessions found" msgstr "%1 sessioner fundet" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normal hastighed)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -278,6 +272,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -347,11 +345,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Om" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Tilføj Hukommelsesbreakpoint" @@ -360,7 +358,7 @@ msgstr "&Tilføj Hukommelsesbreakpoint" msgid "&Add New Code..." msgstr "&Tilføj ny kode..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Tilføj funktion" @@ -368,15 +366,15 @@ msgstr "&Tilføj funktion" msgid "&Add..." msgstr "&Tilføj..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Lydindstillinger" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -384,11 +382,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Breakpoints" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -396,15 +398,15 @@ msgstr "" msgid "&Cancel" msgstr "&Annuller" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Tjek for opdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Ryd symboler" @@ -412,7 +414,7 @@ msgstr "&Ryd symboler" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Kode" @@ -420,16 +422,15 @@ msgstr "&Kode" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Kontrollerindstillinger" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Kopiér adresse" @@ -437,20 +438,20 @@ msgstr "&Kopiér adresse" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Slet" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -464,11 +465,11 @@ msgstr "&Rediger kode..." msgid "&Edit..." msgstr "&Rediger..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Skub disk ud" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulation" @@ -488,41 +489,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Skrifttype..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Billedfremskydning" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub-repertoire" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafikindstillinger" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Hjælp" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Genvejstastindstillinger" @@ -542,11 +543,11 @@ msgstr "" msgid "&Import..." msgstr "&Importér..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -554,23 +555,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Sprog:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Indlæs Tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -580,19 +581,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Hukommelse" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Film" @@ -600,7 +605,7 @@ msgstr "&Film" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -609,23 +614,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Åbn..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Afspil" @@ -633,7 +638,7 @@ msgstr "&Afspil" msgid "&Properties" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Read-Only Tilstand" @@ -641,7 +646,7 @@ msgstr "&Read-Only Tilstand" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registre" @@ -654,24 +659,24 @@ msgstr "&Fjern" msgid "&Remove Code" msgstr "&Fjern kode" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Nulstil" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -679,31 +684,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Hastighedsgrænse:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Stop" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Værktøjer" @@ -713,21 +718,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Vis" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Betragt" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Website" @@ -739,23 +744,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -791,12 +796,12 @@ msgstr "" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -857,7 +862,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -915,7 +920,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -941,7 +946,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1034,26 +1039,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1076,8 +1081,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1091,7 +1096,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "En disk er allerede ved at blive sat ind" @@ -1105,7 +1110,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1123,7 +1128,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Sync kan kun udføres, når et Wii-spil kører." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1160,7 +1165,7 @@ msgstr "" "ikke korrekt.\n" "Anvend på egen risiko.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kode" @@ -1203,16 +1208,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Handling" @@ -1285,7 +1284,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktiv" @@ -1293,15 +1292,15 @@ msgstr "Aktiv" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1309,7 +1308,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter Opfanget" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1319,7 +1318,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Tilføj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1344,43 +1343,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "Tilføj et hukommelsesbreakpoint" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Tilføj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adresse" @@ -1506,7 +1505,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1515,7 +1514,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1523,34 +1522,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle gemte tilstande (*.sav *.s##);; All Files (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1566,7 +1565,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1574,7 +1573,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1592,7 +1591,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1614,7 +1613,7 @@ msgstr "En indsat disk var forventet men ikke fundet" msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analyser" @@ -1640,15 +1639,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1666,7 +1665,7 @@ msgstr "Apploader Dato:" msgid "Apply" msgstr "Anvend" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1674,7 +1673,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Er du sikker på, at du vil slette '%1'?" @@ -1686,7 +1685,7 @@ msgstr "Er du sikker på, at du vil slette denne fil?" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Er du sikker på, at du vil afslutte NetPlay?" @@ -1698,16 +1697,16 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Formatforhold:" @@ -1715,7 +1714,7 @@ msgstr "Formatforhold:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1727,7 +1726,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Tildel Kontrollerporte" @@ -1748,11 +1747,11 @@ msgstr "Vedhæft Motionplus" msgid "Audio" msgstr "Lyd" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Lyd Backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1768,7 +1767,7 @@ msgstr "Forfatter" msgid "Authors" msgstr "Skabere" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1777,11 +1776,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplum af 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1789,7 +1788,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1797,15 +1796,15 @@ msgstr "" msgid "Auto-Hide" msgstr "Auto-skjul" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1845,27 +1844,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP register" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Backend Indstillinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -1908,7 +1907,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -1928,15 +1927,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Basis" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Basisindstillinger" @@ -1952,10 +1951,6 @@ msgstr "Batchtilstand kan ikke anvendes uden valg af spil." msgid "Battery" msgstr "Batteri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta(en gang i måneden)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1988,11 +1983,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2002,7 +1997,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blokstørrelse" @@ -2040,67 +2035,67 @@ msgstr "" "Bluetooth gennemgangstilstand er aktiveret, men Dolphin blev bygget uden " "libusb. Gennemgangstilstand kan ikke bruges." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup-fil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Kantløs Fuldskærm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Bund" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2112,23 +2107,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2145,7 +2140,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2155,19 +2150,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2182,19 +2177,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2228,24 +2228,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Bufferstørrelse:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Bufferstørrelse ændret til %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2290,11 +2290,11 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP register" @@ -2314,7 +2314,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Oversætter (langsommere)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2345,7 +2345,7 @@ msgstr "Kalibrering" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2371,7 +2371,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2387,18 +2387,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annuller" @@ -2407,15 +2407,15 @@ msgstr "Annuller" msgid "Cancel Calibration" msgstr "Annuller kalibrering" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2431,11 +2431,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2443,7 +2443,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2451,7 +2451,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2483,7 +2483,7 @@ msgstr "" msgid "Change &Disc" msgstr "Skift &Disk" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Skift &Disk..." @@ -2491,15 +2491,21 @@ msgstr "Skift &Disk..." msgid "Change Disc" msgstr "Skift Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2517,7 +2523,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Ændrede snydekoder får først effekt efter genstart af spillet." @@ -2525,11 +2531,11 @@ msgstr "Ændrede snydekoder får først effekt efter genstart af spillet." msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2537,7 +2543,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Snydesøgning" @@ -2545,7 +2551,7 @@ msgstr "Snydesøgning" msgid "Cheats Manager" msgstr "Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Tjek NAND..." @@ -2563,7 +2569,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Tjeksum" @@ -2575,7 +2581,7 @@ msgstr "Kina" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Angiv en fil at åbne" @@ -2583,15 +2589,15 @@ msgstr "Angiv en fil at åbne" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2604,7 +2610,7 @@ msgstr "Angiv en mappe at udpakke til" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Klassiske knapper" @@ -2615,18 +2621,18 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Ryd" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Ryd cache" @@ -2647,7 +2653,7 @@ msgstr "Klon og &Rediger kode..." msgid "Close" msgstr "Luk" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "&Konfiguration" @@ -2655,11 +2661,11 @@ msgstr "&Konfiguration" msgid "Code" msgstr "Kode" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2687,11 +2693,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2718,7 +2724,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2728,7 +2734,7 @@ msgstr "Kompilerer shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2741,7 +2747,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2749,11 +2755,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Betingelse" @@ -2769,7 +2775,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2784,7 +2790,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2838,7 +2849,7 @@ msgstr "Konfigurér" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfigurer Dolphin" @@ -2851,27 +2862,27 @@ msgstr "Konfigurer input" msgid "Configure Output" msgstr "Konfigurer output" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekræft" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Bekræft ved Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Bekræftelse" @@ -2881,15 +2892,15 @@ msgstr "Bekræftelse" msgid "Connect" msgstr "Tilslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Forbind Balanceboard" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Forbind USB Tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Tilslut Wii Remote %1" @@ -2909,7 +2920,7 @@ msgstr "Tilslut Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Tilslut Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Tilslut Wii Remotes" @@ -2925,7 +2936,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2950,7 +2961,7 @@ msgstr "" msgid "Control Stick" msgstr "Kontrol-Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Kontrollerprofil" @@ -3039,8 +3050,8 @@ msgstr "" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3048,9 +3059,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3058,9 +3069,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3080,8 +3091,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3110,22 +3121,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopiér" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopiér &funktion" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopier adresse" @@ -3133,19 +3144,19 @@ msgstr "Kopier adresse" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Kopiér Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3163,8 +3174,8 @@ msgstr "Kopiér til B" msgid "Core" msgstr "Kerne" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3273,7 +3284,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Kan ikke slå den centrale server op" @@ -3289,13 +3300,13 @@ msgstr "" msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3309,7 +3320,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3326,11 +3337,11 @@ msgstr "Skaber:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Beskær" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3342,42 +3353,42 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3385,15 +3396,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3436,7 +3447,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK bongotrommer" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3444,15 +3455,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3478,7 +3489,7 @@ msgstr "Dansemåtte" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Data" @@ -3523,8 +3534,8 @@ msgstr "Dødszone" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3533,7 +3544,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3572,7 +3583,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Standard" @@ -3580,7 +3591,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Standard enhed" @@ -3592,11 +3603,11 @@ msgstr "Standardskrifttype" msgid "Default ISO:" msgstr "Standard ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3604,7 +3615,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3613,8 +3624,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Slet" @@ -3644,12 +3656,12 @@ msgstr "" msgid "Depth:" msgstr "Dybde:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" @@ -3663,8 +3675,8 @@ msgstr "Beskrivelse:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3676,21 +3688,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3698,7 +3710,7 @@ msgstr "" msgid "Detect" msgstr "Opfang" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3706,11 +3718,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Enhed" @@ -3728,7 +3740,7 @@ msgstr "Enhedsindstillinger" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Enhed:" @@ -3736,7 +3748,7 @@ msgstr "Enhed:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Nedtoner lysstyrken efter 5 minutters inaktivitet." @@ -3752,11 +3764,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Deaktivér Afgrænsningsramme" @@ -3765,7 +3772,7 @@ msgstr "Deaktivér Afgrænsningsramme" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Deaktiver EFB VRAM kopier" @@ -3773,11 +3780,11 @@ msgstr "Deaktiver EFB VRAM kopier" msgid "Disable Emulation Speed Limit" msgstr "Deaktiver begrænsning af emulationshastighed" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3785,11 +3792,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deaktivér tåge" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Deaktiver JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3804,7 +3811,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disk" @@ -3828,6 +3841,10 @@ msgstr "Disk" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3858,11 +3875,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3872,7 +3889,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Ønsker du at stoppe den igangværende emulation?" @@ -3880,12 +3897,12 @@ msgstr "Ønsker du at stoppe den igangværende emulation?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II dekoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3893,9 +3910,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3907,8 +3924,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-film (*.dtm)" @@ -3941,7 +3958,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin er for gammel til en gennemløbsserver" @@ -3955,13 +3972,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins snydesystem er slået fra." @@ -3970,7 +3987,7 @@ msgstr "Dolphins snydesystem er slået fra." msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Opdater ikke" @@ -3991,7 +4008,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -4013,7 +4030,7 @@ msgstr "Download koder" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -4025,6 +4042,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4064,19 +4091,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dump Lyd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Drop EFB Mål" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dump Billeder" @@ -4084,7 +4111,7 @@ msgstr "Dump Billeder" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4092,7 +4119,7 @@ msgstr "" msgid "Dump Path:" msgstr "Dump sti:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4117,44 +4144,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Hollandsk" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "F&orlad" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4166,7 +4193,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4174,7 +4201,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Tidlige hukommelsesopdateringer" @@ -4193,7 +4220,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4213,7 +4249,7 @@ msgstr "Effekt" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4235,11 +4271,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Indlejret framebuffer (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emulatortråd kører i forvejen" @@ -4265,7 +4301,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4287,34 +4323,24 @@ msgstr "Emulationshastighed" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Aktivér API Valideringslag" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Aktivér lydtrækning" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Aktivér snydekoder" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4322,15 +4348,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "Aktivér tilpasset RTC" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Aktivér dualcore" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Aktivér dualcore (højere hastighed)" @@ -4342,7 +4372,7 @@ msgstr "Aktivér Emuleret CPU Clock Tilsidesætning " msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4350,15 +4380,15 @@ msgstr "" msgid "Enable FPRF" msgstr "Aktivér PFRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4376,41 +4406,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Aktivér MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Aktivér Progressiv Skanning" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Aktivér vibration" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Aktivér Pauseskærm" @@ -4418,19 +4440,23 @@ msgstr "Aktivér Pauseskærm" msgid "Enable Speaker Data" msgstr "Aktivér højttalerdata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Aktivér rapportering af brugsstatistik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Aktivér Wireframe" @@ -4438,34 +4464,13 @@ msgstr "Aktivér Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4473,34 +4478,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4535,7 +4547,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4543,7 +4555,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4560,7 +4572,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Aktivér strækning af lyden, så lyden afstemmes med emulationshastigheden." @@ -4589,7 +4601,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4597,7 +4609,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4605,7 +4617,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4624,13 +4636,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet blev ikke initialiseret" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Engelsk" @@ -4647,7 +4663,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Indtast USB enhets-ID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4671,33 +4687,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4710,52 +4726,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fejl" @@ -4772,7 +4788,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4788,7 +4804,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4879,12 +4895,12 @@ 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:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4928,11 +4944,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Eksperimentel" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-saves" @@ -4947,7 +4963,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksporter optagelse" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Eksporter optagelse..." @@ -4975,14 +4991,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Udvidelse" @@ -4995,7 +5011,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -5003,35 +5019,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Ekstern framebuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Udpak fil..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -5040,8 +5056,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO-afspiller" @@ -5055,11 +5071,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5079,7 +5095,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5100,15 +5116,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5154,15 +5170,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5181,25 +5197,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5219,18 +5235,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5242,21 +5258,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Fejl ved indlæsning af programmet til hukommelsen" @@ -5270,17 +5286,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5288,7 +5304,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5318,15 +5334,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5334,11 +5350,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5385,23 +5401,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5415,7 +5431,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5446,31 +5462,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5521,19 +5537,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5546,7 +5562,7 @@ msgstr "Hurtig" msgid "Fast Depth Calculation" msgstr "Hurtig udregning af dybte" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5557,7 +5573,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5571,7 +5587,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5579,24 +5595,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Filinfo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Filnavn" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Filstørrelse" @@ -5681,7 +5697,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flag" @@ -5690,12 +5705,12 @@ msgstr "Flag" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5715,7 +5730,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Tving 16:9" @@ -5723,7 +5738,7 @@ msgstr "Tving 16:9" msgid "Force 24-Bit Color" msgstr "Tvunget 24-bit farve " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Tving 4:3" @@ -5755,11 +5770,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5781,6 +5796,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5796,7 +5817,7 @@ msgstr "Fremad" msgid "Forward port (UPnP)" msgstr "Forwardport (UPnp)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5806,7 +5827,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Billede %1" @@ -5827,11 +5848,11 @@ msgstr "Billedfremskydning Forøg Hastighed" msgid "Frame Advance Reset Speed" msgstr "Billedfremskydning Nulstil Hastighed" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Billedvidde" @@ -5839,7 +5860,7 @@ msgstr "Billedvidde" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5859,7 +5880,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5890,7 +5911,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Fransk" @@ -5909,8 +5930,8 @@ msgid "From" msgstr "Fra" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Fra:" @@ -5918,10 +5939,14 @@ msgstr "Fra:" msgid "FullScr" msgstr "Fuld skærm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funktion" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5962,11 +5987,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6008,7 +6033,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "GPU teksturafkodning" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6018,25 +6043,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6048,7 +6073,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6066,22 +6091,22 @@ msgstr "" msgid "Game" msgstr "Spil" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-kassetter (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6110,7 +6135,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Spil-id" @@ -6119,25 +6144,25 @@ msgstr "Spil-id" msgid "Game ID:" msgstr "Spil-id:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Spilstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6150,7 +6175,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6170,11 +6195,11 @@ msgstr "GameCube-adapter til Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube kontroller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6182,11 +6207,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube-kontrollere" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube tastatur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6203,7 +6228,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube mikrofonstik %1" @@ -6231,7 +6256,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koder" @@ -6241,35 +6266,35 @@ msgstr "Gecko-koder" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Generelt" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Generer en ny identitet til statistik" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Tysk" @@ -6296,7 +6321,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6305,7 +6330,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6345,7 +6370,7 @@ msgstr "Grøn venstre" msgid "Green Right" msgstr "Grøn højre" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6382,7 +6407,7 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6414,7 +6439,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Heksadecimal" @@ -6423,11 +6448,11 @@ msgstr "Heksadecimal" msgid "Hide" msgstr "Skjul" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6439,16 +6464,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Høj " -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6471,7 +6503,7 @@ msgstr "Vært" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6479,7 +6511,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6487,11 +6519,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Vært inputautoritet aktiveret" @@ -6503,7 +6535,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Genvejstastindstillinger" @@ -6513,11 +6545,11 @@ msgstr "Genvejstastindstillinger" msgid "Hotkeys" msgstr "Genvejstaster" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Genvejstaster forudsætter vinduefokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6570,12 +6602,12 @@ msgstr "IP-adresse:" msgid "IPL Settings" msgstr "IPL-indstillinger" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR-sensitivitet:" @@ -6601,14 +6633,14 @@ msgstr "" msgid "Icon" msgstr "Ikon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6633,7 +6665,7 @@ msgstr "" "Denne autorisering kan tages tilbage på et hvilket som helst tidspunkt i " "Dolphins indstillinger." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6647,14 +6679,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6666,7 +6698,7 @@ msgstr "" msgid "Ignore" msgstr "Ignorere" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6698,7 +6730,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6707,7 +6739,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6722,21 +6754,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importer Wii-save..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importerer NAND-backup" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6814,7 +6855,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6823,7 +6864,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6843,12 +6884,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Information" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6857,11 +6898,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Input" @@ -6875,23 +6916,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Indsæt SD-kort" @@ -6904,11 +6941,11 @@ msgstr "Installere" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Installer opdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Installere WAD..." @@ -6916,13 +6953,13 @@ msgstr "Installere WAD..." msgid "Install to the NAND" msgstr "Installer til NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruktion" @@ -6931,7 +6968,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instruktion:" @@ -6940,7 +6977,7 @@ msgstr "Instruktion:" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6957,19 +6994,19 @@ msgstr "" msgid "Interface" msgstr "Grænseflade" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6982,19 +7019,19 @@ msgstr "Intern LZO-fjel - komprimering mislykkedes" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7009,7 +7046,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Intern opløsning:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7017,7 +7054,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (langsomst)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7033,7 +7070,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ugyldig mix-kode" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7042,11 +7079,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7067,7 +7104,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7083,19 +7120,19 @@ msgstr "" msgid "Invalid password provided." msgstr "Forkert kodeord indtastet." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Forkert optagelsesfil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Forkerte søgeparametre (intet objekt valgt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Forkert søgetekst (kunne ikke konvertere til tal)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Forkert søgetekst (kun lige længder er understøttet)" @@ -7103,13 +7140,13 @@ msgstr "Forkert søgetekst (kun lige længder er understøttet)" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiensk" @@ -7122,11 +7159,11 @@ msgstr "Italien" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT blok sammenkædning slået fra" @@ -7134,47 +7171,47 @@ msgstr "JIT blok sammenkædning slået fra" msgid "JIT Blocks" msgstr "JIT blokke" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7186,31 +7223,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japansk" @@ -7227,12 +7264,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Hold vinduet øverst" @@ -7266,16 +7303,16 @@ msgstr "Taster" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Smid spiller ud" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Koreansk" @@ -7296,7 +7333,7 @@ msgstr "" msgid "L-Analog" msgstr "L-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7304,7 +7341,11 @@ msgstr "" msgid "Label" msgstr "Mærkat" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7318,23 +7359,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7342,7 +7383,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7350,7 +7391,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7361,7 +7402,7 @@ msgstr "Venstre" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Venstre stik" @@ -7432,11 +7473,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7445,30 +7486,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Indlæs" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Indlæs tilpassede teksturer" @@ -7476,11 +7517,11 @@ msgstr "Indlæs tilpassede teksturer" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7586,23 +7627,23 @@ msgstr "Indlæs tilstand plads 8" msgid "Load State Slot 9" msgstr "Indlæs tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Indlæs tilstand fra valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Indlæs tilstand fra plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7610,54 +7651,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Indlæs fra plads %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Indlæs..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Lokal" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7666,19 +7715,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Konfiguration af log" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Log renderingstider til fil" @@ -7690,31 +7739,31 @@ msgstr "Log typer" msgid "Logger Outputs" msgstr "Logger-outputs" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Lav" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7726,7 +7775,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7774,7 +7823,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Udgiver" @@ -7791,16 +7840,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7812,11 +7861,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7825,7 +7874,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan sænke hastigheden i Wii-menuen og nogle spil." @@ -7846,7 +7895,7 @@ msgstr "Hukommelsesbreakpoint" msgid "Memory Card" msgstr "Hukommelseskort" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7874,7 +7923,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7888,7 +7937,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -7897,15 +7946,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Diverse indstillinger" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7919,7 +7968,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7939,7 +7988,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7955,8 +8004,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7964,7 +8013,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7976,11 +8025,11 @@ msgstr "Monoskopiske skygger" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7989,23 +8038,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8016,13 +8052,13 @@ msgstr "" msgid "Movie" msgstr "Video" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8035,10 +8071,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND tjek" @@ -8047,8 +8083,8 @@ msgstr "NAND tjek" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8057,7 +8093,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8074,8 +8110,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8118,7 +8154,7 @@ msgstr "Oprindelig (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8134,27 +8170,27 @@ msgstr "" msgid "Netherlands" msgstr "Holland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Netværk " @@ -8162,16 +8198,16 @@ msgstr "Netværk " msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Ny" @@ -8196,7 +8232,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Ny identitet genereret." @@ -8213,7 +8249,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8259,7 +8295,7 @@ msgstr "" msgid "No Match" msgstr "Ingen træf" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8267,12 +8303,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Ingen beskrivelse tilgængelig" @@ -8284,7 +8320,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8292,7 +8328,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8305,11 +8341,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8332,7 +8368,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8351,10 +8387,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Ingen" @@ -8366,7 +8402,7 @@ msgstr "" msgid "Not Set" msgstr "Ikke sat" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Det er ikke alle spillere, der har dette spil. Vil du virkelig starte?" @@ -8386,7 +8422,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8430,26 +8466,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "Ok" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8501,7 +8537,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Objektområde" @@ -8522,18 +8558,18 @@ msgstr "" msgid "On" msgstr "På" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8548,7 +8584,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online&dokumentation" @@ -8556,13 +8592,13 @@ msgstr "Online&dokumentation" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8579,7 +8615,7 @@ msgstr "Åbn" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8588,7 +8624,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8654,34 +8690,34 @@ msgstr "Orange" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8696,11 +8732,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Anden tilstand genvejstaster" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Andet spil..." @@ -8716,16 +8752,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Spi&l inputoptagelse..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8738,11 +8774,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8754,7 +8790,7 @@ msgstr "" msgid "PPC Size" msgstr "PPC-størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8788,7 +8824,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Kodeord" @@ -8826,15 +8862,15 @@ msgstr "Stier" msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pause ved slutning på film" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8850,6 +8886,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8869,7 +8911,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Per-pixel belysning" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8877,15 +8919,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8903,11 +8945,11 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -8920,7 +8962,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platform" @@ -8928,7 +8970,7 @@ msgstr "Platform" msgid "Play" msgstr "Afspil" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Spil/optagelse" @@ -8940,40 +8982,40 @@ msgstr "Afspil optagelse" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Playback-indstillinger" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Spiller" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Spillere" @@ -8990,7 +9032,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9006,7 +9048,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Port %1" @@ -9023,7 +9065,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9039,24 +9081,32 @@ msgstr "Postprocessing-effekt" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Indlæs først tilpassede teksturer" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9079,7 +9129,7 @@ msgstr "Tryk på Sync-knap" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9094,7 +9144,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9105,7 +9155,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9139,7 +9189,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9148,23 +9198,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9184,18 +9240,18 @@ msgstr "Servicekvalitet (QoS) kunne ikke aktiveres." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Servicekvalitet (QoS) aktiveret." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Spørgsmål" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Afslut" @@ -9212,19 +9268,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9245,7 +9301,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9253,16 +9309,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9301,8 +9358,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9311,23 +9368,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Optag" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Indstillinger for optagelse" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Optagelse..." @@ -9360,7 +9417,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9391,7 +9448,7 @@ msgid "Refreshing..." msgstr "Genindlæser..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9412,7 +9469,11 @@ msgstr "Relativt input" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9420,7 +9481,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Fjern" @@ -9448,20 +9509,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Render til hovedvindue" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9475,10 +9536,16 @@ msgstr "Rapport: GCIFolder skriver til ikkeallokeret blok {0:#x}" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9488,7 +9555,7 @@ msgstr "Nulstil" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9520,7 +9587,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9532,7 +9599,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Genstart nødvendig" @@ -9540,11 +9607,11 @@ msgstr "Genstart nødvendig" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Prøv igen" @@ -9553,7 +9620,7 @@ msgstr "Prøv igen" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9565,7 +9632,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9576,7 +9643,7 @@ msgstr "Højre" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Højre stik" @@ -9612,11 +9679,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9634,27 +9701,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9667,7 +9738,7 @@ msgstr "" msgid "Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9675,15 +9746,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9691,23 +9762,23 @@ msgstr "" msgid "Russia" msgstr "Rusland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD-kort sti:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9715,7 +9786,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9750,11 +9821,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Ge&m tilstand" @@ -9764,9 +9835,9 @@ msgid "Safe" msgstr "Sikker" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9776,25 +9847,25 @@ msgstr "Gem" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9808,11 +9879,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9824,7 +9895,7 @@ msgstr "Gem ældste tilstand" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9874,23 +9945,23 @@ msgstr "Gem tilstand plads 8" msgid "Save State Slot 9" msgstr "Gem tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Gem tilstand til ældste plads" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Gem tilstand til valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Gem tilstand til plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9898,7 +9969,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9910,11 +9981,11 @@ msgstr "" msgid "Save as..." msgstr "Gem som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9925,11 +9996,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9937,11 +10008,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Gem til plads %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Gem..." @@ -9953,7 +10024,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9970,8 +10041,8 @@ msgid "ScrShot" msgstr "Skærmdump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Søg" @@ -9980,7 +10051,7 @@ msgstr "Søg" msgid "Search Address" msgstr "Søgeadresse" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9998,7 +10069,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -10006,7 +10077,7 @@ msgstr "" msgid "Search games..." msgstr "Søg spil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Søg instruktion" @@ -10040,7 +10111,7 @@ msgstr "Vælg" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10051,23 +10122,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10095,7 +10166,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Vælg plads %1 - %2" @@ -10103,7 +10174,7 @@ msgstr "Vælg plads %1 - %2" msgid "Select State" msgstr "Vælg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Vælg tilstand plads" @@ -10164,13 +10235,13 @@ msgstr "Vælg en mappe" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Vælg en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10178,7 +10249,7 @@ msgstr "" msgid "Select a Game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10190,7 +10261,7 @@ msgstr "" msgid "Select a game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10198,11 +10269,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10210,12 +10281,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Vælg savefilen" @@ -10238,16 +10309,16 @@ msgstr "Valgte kontrollerprofil eksisterer ikke" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10263,7 +10334,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10293,7 +10364,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10315,7 +10386,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10325,11 +10396,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Send" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Sensorbarens position:" @@ -10357,6 +10428,10 @@ msgstr "Serveren nægtede forsøget på traversal" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10374,23 +10449,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10400,29 +10475,44 @@ msgstr "" "(576i) for PAL-spil.\n" "Virker måske ikke med alle spil." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Indstiller Wii-systemets sprog." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Indstillinger" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Kan ikke oprette settings.txt-filen" @@ -10430,7 +10520,7 @@ msgstr "SetupWiiMemory: Kan ikke oprette settings.txt-filen" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10452,32 +10542,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Vis &log" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Vis &værktøjslinje" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Vis Australien" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10486,7 +10576,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" @@ -10495,31 +10585,31 @@ msgstr "Vis ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Vis FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Vis billedtæller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Vis Frankrig" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Vis Tyskland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10527,23 +10617,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Vis input" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Vis Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Vis lag-tæller" @@ -10551,27 +10641,27 @@ msgstr "Vis lag-tæller" msgid "Show Language:" msgstr "Vis sprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Vis log&konfiguration" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Vis NetPlay meddelelser" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Vis NetPlay ping" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Vis Holland" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Vis PAL" @@ -10580,27 +10670,27 @@ msgstr "Vis PAL" msgid "Show PC" msgstr "Vis PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Vis platforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Vis Rusland" @@ -10608,72 +10698,72 @@ msgstr "Vis Rusland" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Vis Spanien" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Vis systemur" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Vis ukendte" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Vis verden" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10681,71 +10771,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10767,7 +10890,7 @@ msgstr "Sidelæns skift" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10786,12 +10909,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Simpel kinesisk" @@ -10808,7 +10931,7 @@ msgstr "" msgid "Size" msgstr "Størrelse" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10818,7 +10941,7 @@ msgstr "" msgid "Skip" msgstr "Spring over" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10862,6 +10985,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10932,7 +11058,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10946,7 +11072,7 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spansk" @@ -10954,19 +11080,19 @@ msgstr "Spansk" msgid "Speaker Pan" msgstr "Højttalerpanorering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Lydstyrke for højtaler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10991,11 +11117,11 @@ msgstr "Fart" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -11003,25 +11129,25 @@ msgstr "" msgid "Standard Controller" msgstr "Standardkontroller" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Start &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Start med at &optage input" @@ -11029,7 +11155,7 @@ msgstr "Start med at &optage input" msgid "Start Recording" msgstr "Start optagelse" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11041,14 +11167,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11080,19 +11206,19 @@ msgstr "Hop ud" msgid "Step Over" msgstr "Hop over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Hop ud succes!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Hop ud timeout!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Hop over udføres..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Hop succes!" @@ -11101,7 +11227,7 @@ msgstr "Hop succes!" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11130,16 +11256,16 @@ msgid "Stick" msgstr "Stik" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11171,11 +11297,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Stræk til vindue" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11189,7 +11315,11 @@ msgstr "Streng" msgid "Strum" msgstr "Klimpre" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11200,18 +11330,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Succes" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11221,7 +11351,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11234,24 +11364,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11274,16 +11404,16 @@ msgstr "Support" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11327,17 +11457,17 @@ msgstr "Byt til B" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symboler" @@ -11345,7 +11475,7 @@ msgstr "Symboler" msgid "Sync" msgstr "Synkronisér" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11363,7 +11493,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11382,24 +11512,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Systemsprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS-input" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11409,7 +11539,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11417,7 +11547,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Tag skærmbillede" @@ -11425,7 +11555,7 @@ msgstr "Tag skærmbillede" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11441,9 +11571,9 @@ msgstr "" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11456,7 +11586,7 @@ msgstr "Tekstur-cache" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11468,7 +11598,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Teksturformatteringslag" @@ -11505,13 +11635,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11526,7 +11656,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11573,7 +11703,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11583,7 +11713,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Disken, der var ved at blive sat ind, kunne ikke ses" @@ -11662,7 +11792,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11702,7 +11832,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11761,12 +11891,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11786,7 +11916,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11820,7 +11950,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11878,7 +12008,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11900,6 +12030,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11911,8 +12045,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11960,11 +12094,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11982,7 +12116,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Kan ikke gøres om!" @@ -12081,7 +12215,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12105,7 +12239,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12145,7 +12279,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "Værdien ganges med grafikindstillingernes dybdeindstilling" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12158,7 +12292,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12166,11 +12300,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12193,14 +12327,14 @@ msgstr "Tilt" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titel" @@ -12209,12 +12343,12 @@ msgid "To" msgstr "Til" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Aktiver &fuldskærm" @@ -12239,7 +12373,7 @@ msgid "Toggle Aspect Ratio" msgstr "Skift forholdstal" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12295,7 +12429,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12303,7 +12437,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Top" @@ -12311,8 +12445,8 @@ msgstr "Top" msgid "Top-and-Bottom" msgstr "Top og bund" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12354,7 +12488,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Traditionel kinesisk" @@ -12374,8 +12508,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12402,7 +12536,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Triggers" @@ -12412,7 +12546,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12426,7 +12560,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12438,7 +12572,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12456,14 +12590,14 @@ msgstr "USB-Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12471,7 +12605,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12480,7 +12614,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12552,11 +12686,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Fortryd indlæsning af tilstand" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Fortræd lagring af tilstand" @@ -12574,28 +12708,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Ukendt" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12666,11 +12800,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Ubegrænset" @@ -12682,20 +12816,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12722,7 +12844,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12736,8 +12858,8 @@ msgstr "" msgid "Up" msgstr "Op" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Opdater" @@ -12745,11 +12867,11 @@ msgstr "Opdater" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Opdatering tilgængelig " @@ -12792,7 +12914,7 @@ msgstr "Oprejst skift" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Indstillinger for brugsstatistik" @@ -12800,15 +12922,15 @@ msgstr "Indstillinger for brugsstatistik" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12816,15 +12938,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Brug PAL60-tilstand (EURGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Brug panikhåndtering" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12858,7 +12986,7 @@ msgstr "" msgid "User Config" msgstr "Brugerindstillinger" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Brugergrænseflade" @@ -12873,10 +13001,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12885,14 +13020,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13155,8 +13290,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advarsel" @@ -13166,7 +13301,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13180,28 +13315,28 @@ msgstr "" "Advarsel: Antal blokke markeret af BAT ({0}) passer ikke med indlæst " "filheader ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13246,7 +13381,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13254,7 +13389,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13262,7 +13397,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13294,25 +13429,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii Remote-knapper" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii Remote-indstillinger" @@ -13320,19 +13455,19 @@ msgstr "Wii Remote-indstillinger" msgid "Wii Remotes" msgstr "Wii Remotes" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii og Wii Remote" @@ -13340,7 +13475,7 @@ msgstr "Wii og Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13348,15 +13483,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"Vil låse musen til renderingswidget så længe den har fokus. Du kan indstille " -"en genvejstast til at låse op." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13365,11 +13492,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13383,10 +13510,11 @@ msgstr "Verden" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13419,39 +13547,39 @@ msgstr "" msgid "Write to Window" msgstr "Skriv til vindue" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF-register" @@ -13460,9 +13588,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13490,14 +13618,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13574,7 +13702,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "" "Du bliver nødt til at genstarte Dolhin før end at ændringen træder i kraft." @@ -13595,16 +13723,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13613,7 +13741,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Nul 3 kode ikke understøttet" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13662,7 +13790,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13670,7 +13798,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13678,7 +13806,7 @@ msgstr "" msgid "fake-completion" msgstr "falsk-udførsel" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13726,16 +13854,6 @@ msgstr "" msgid "none" msgstr "ingen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "eller vælg en enhed" @@ -13753,7 +13871,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13818,7 +13936,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/de.po b/Languages/po/de.po index d3738e90bd..a06acb8e7e 100644 --- a/Languages/po/de.po +++ b/Languages/po/de.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Ettore Atalan , 2015-2020,2024\n" "Language-Team: German (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -115,7 +115,7 @@ msgstr "" "%1\n" "will deiner Gruppe beitreten." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -149,7 +149,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revision %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Bestand)" @@ -169,7 +169,7 @@ msgstr "%1 (langsam)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -183,11 +183,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Grafikeinstellungen" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -204,7 +204,7 @@ msgstr "%1 unterstützt diese Funktion auf Ihrem System nicht." msgid "%1 doesn't support this feature." msgstr "%1 unterstützt diese Funktion nicht." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -214,33 +214,27 @@ msgstr "" "%2 Objekt(e)\n" "Derzeitiger Frame: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 ist beigetreten" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 ist gegangen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 ist kein gültiges ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 golft jetzt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 spielt %2" @@ -248,13 +242,13 @@ msgstr "%1 spielt %2" msgid "%1 memory ranges" msgstr "%1 Speicherbereiche" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 Punkte" @@ -266,30 +260,30 @@ msgstr "%1 Sitzung gefunden" msgid "%1 sessions found" msgstr "%1 Sitzungen gefunden" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normale Geschwindigkeit)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "Wert von %1 wurde geändert" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "Wert von %1 wird verwendet" @@ -301,6 +295,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -370,11 +368,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Über" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Speicherhaltepunkt hinzufügen" @@ -383,7 +381,7 @@ msgstr "&Speicherhaltepunkt hinzufügen" msgid "&Add New Code..." msgstr "Neuen Code &hinzufügen..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "Funktion &hinzufügen" @@ -391,15 +389,15 @@ msgstr "Funktion &hinzufügen" msgid "&Add..." msgstr "&Hinzufügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Audioeinstellungen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Automatisches Update" @@ -407,11 +405,15 @@ msgstr "&Automatisches Update" msgid "&Borderless Window" msgstr "&Randloses Fenster" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Haltepunkte" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -419,15 +421,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Abbrechen" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Cheats-Manager" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Auf Updates prüfen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "Symbole lös&chen" @@ -435,7 +437,7 @@ msgstr "Symbole lös&chen" msgid "&Clone..." msgstr "&Klonen..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Code" @@ -443,16 +445,15 @@ msgstr "&Code" msgid "&Connected" msgstr "&Verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Controller-Einstellungen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "Adresse &kopieren" @@ -460,20 +461,20 @@ msgstr "Adresse &kopieren" msgid "&Create..." msgstr "&Erstellen..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Löschen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Überwachung löschen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -487,11 +488,11 @@ msgstr "Code b&earbeiten..." msgid "&Edit..." msgstr "B&earbeiten..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Disc auswerfen" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulation" @@ -511,41 +512,41 @@ msgstr "&Spielstand exportieren..." msgid "&Export as .gci..." msgstr "&Als GCI exportieren..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Datei" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "Schri&ftart..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Einzelbildwiedergabe" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Freies Umsehen-Einstellungen" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "Symbole erzeu&gen aus" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub-Repositorium" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafikeinstellungen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Hilfe" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Tastenkürzel-Einstellungen" @@ -565,11 +566,11 @@ msgstr "&Spielstand importieren..." msgid "&Import..." msgstr "&Importieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "blr &einfügen" @@ -577,23 +578,23 @@ msgstr "blr &einfügen" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Sprache:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "Spielstand &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "Symbolkarte &laden" @@ -603,19 +604,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "Widgets an Ort und Stelle &sperren" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Arbeitsspeicher" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "Fil&m" @@ -623,7 +628,7 @@ msgstr "Fil&m" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Netzwerk" @@ -632,23 +637,23 @@ msgid "&No" msgstr "&Nein" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "Ö&ffnen..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Optionen" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&HLE-Funktionen patchen" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "Pau&se" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Start" @@ -656,7 +661,7 @@ msgstr "&Start" msgid "&Properties" msgstr "&Eigenschaften" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "Nu&r-Lese-Modus" @@ -664,7 +669,7 @@ msgstr "Nu&r-Lese-Modus" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Register" @@ -677,24 +682,24 @@ msgstr "Entfe&rnen" msgid "&Remove Code" msgstr "Code entfe&rnen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "Symbol &umbenennen" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Ressourcenpaketverwaltung" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "Symbolkarte &speichern" @@ -702,31 +707,31 @@ msgstr "Symbolkarte &speichern" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Geschwindigkeitsbegrenzung:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "Sto&pp" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Design:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "E&xtras" @@ -736,21 +741,21 @@ msgstr "ROM &entladen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Ansicht" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Überwachungsfenster" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Webseite" @@ -762,25 +767,25 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "Konnte '%1' nicht finden, es wurden keine Symbolnamen generiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" "'%1' konnte nicht gefunden werden, es wird stattdessen nach gemeinsamen " "Funktionen gescannt" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Dunkel)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Hell)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(System)" @@ -816,12 +821,12 @@ msgstr "- Subtrahieren" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Unbekannt--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -882,7 +887,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -940,7 +945,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -966,7 +971,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 Blöcke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1059,26 +1064,26 @@ msgstr "< Kleiner als" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1104,8 +1109,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Größer als" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Eine NetPlay-Sitzung läuft bereits!" @@ -1125,7 +1130,7 @@ msgstr "" "\n" "Die Installation dieses WAD wird es unwiderruflich ersetzen. Fortsetzen?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Eine Disc wird momentan bereits eingelesen." @@ -1141,7 +1146,7 @@ msgstr "" "Ein Spielstand kann nicht geladen werden, wenn kein zu startendes Spiel " "angegeben wurde." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1161,7 +1166,7 @@ msgid "A sync can only be triggered when a Wii game is running." msgstr "" "Eine Synchronisierung kann nur ausgelöst werden, wenn ein Wii-Spiel läuft." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1200,7 +1205,7 @@ msgstr "" "eventuell nicht richtig.\n" "Benutzung auf eigene Gefahr.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-Code" @@ -1243,16 +1248,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Errungenschaften" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Aktion" @@ -1341,7 +1340,7 @@ msgstr "Action Replay: Normal Code {0}: Ungültiger Subtype {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "NetPlay Chat aktivieren" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktiv" @@ -1349,15 +1348,15 @@ msgstr "Aktiv" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Aktive Thread-Warteschlange" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Aktive Threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Grafikkarte" @@ -1365,7 +1364,7 @@ msgstr "Grafikkarte" msgid "Adapter Detected" msgstr "Adapter erkannt" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Grafikkarte:" @@ -1375,7 +1374,7 @@ msgstr "Grafikkarte:" msgid "Add" msgstr "Hinzufügen" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "&Haltepunkt hinzufügen" @@ -1400,43 +1399,43 @@ msgstr "Einen Haltepunkt hinzufügen" msgid "Add a Memory Breakpoint" msgstr "Speicherhaltepunkt hinzufügen" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Speicherhaltepunkt hinzufügen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Zur Über&wachung hinzufügen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Zur Überwachung hinzufügen" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Hinzufügen..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adresse" @@ -1583,7 +1582,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1592,7 +1591,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1600,34 +1599,34 @@ msgid "All Files" msgstr "Alle Dateien" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Alle Dateien (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alle GC/Wii-Dateien" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Alle Hexadezimalen" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Speicherstände (*.sav *.s##);; Alle Dateien (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1643,7 +1642,7 @@ msgstr "Alle Codes der Spieler synchronisiert." msgid "All players' saves synchronized." msgstr "Alle Spielstände der Spieler synchronisiert." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Nicht übereinstimmende Regionseinstellungen zulassen" @@ -1651,7 +1650,7 @@ msgstr "Nicht übereinstimmende Regionseinstellungen zulassen" msgid "Allow Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten erlauben" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Schreiben auf SD-Karte zulassen" @@ -1671,7 +1670,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Alternative Eingabequellen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Immer" @@ -1694,7 +1693,7 @@ msgstr "" msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analysiere" @@ -1720,15 +1719,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Beliebige Region" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Signatur anfügen an" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "An &vorhandene Signaturdatei anfügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Signaturdatei an&wenden..." @@ -1748,7 +1747,7 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Übernehmen" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Signaturdatei anwenden" @@ -1756,7 +1755,7 @@ msgstr "Signaturdatei anwenden" msgid "Arbitrary Mipmap Detection" msgstr "Willkürliche Mipmaps erkennen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Möchtest du '%1' wirklich löschen? " @@ -1768,7 +1767,7 @@ msgstr "Möchtest du diese Datei wirklich löschen? " msgid "Are you sure you want to delete this pack?" msgstr "Möchtest du dieses Paket wirklich löschen? " -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Bist du dir sicher, dass du NetPlay beenden möchtest?" @@ -1780,16 +1779,16 @@ msgstr "Bist du dir sicher?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Seitenverhältnis" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Seitenverhältnis:" @@ -1797,7 +1796,7 @@ msgstr "Seitenverhältnis:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1809,7 +1808,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Controller-Ports zuweisen" @@ -1830,11 +1829,11 @@ msgstr "MotionPlus anfügen" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Audio-Backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Audiodehnungseinstellungen" @@ -1850,7 +1849,7 @@ msgstr "Autor" msgid "Authors" msgstr "Autoren" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatisch" @@ -1859,11 +1858,11 @@ msgstr "Automatisch" msgid "Auto (Multiple of 640x528)" msgstr "Automatisch (Vielfaches von 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Einstellungen automatisch updaten" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1875,7 +1874,7 @@ msgstr "" "\n" "Bitte wähle eine spezifische interne Auflösung." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Fenstergröße automatisch anpassen" @@ -1883,15 +1882,15 @@ msgstr "Fenstergröße automatisch anpassen" msgid "Auto-Hide" msgstr "Automatisch verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "RSO-Module automatisch erkennen?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1936,27 +1935,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP-Register" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Rückwärtskette" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Backend Multithreading" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Backend-Einstellungen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -1999,7 +1998,7 @@ msgstr "Unzulässigen Wert angegeben." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -2019,15 +2018,15 @@ msgstr "Leiste" msgid "Base Address" msgstr "Basisadresse" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Basispriorität" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Standard" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Grundeinstellungen" @@ -2045,10 +2044,6 @@ msgstr "" msgid "Battery" msgstr "Batterie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (einmal im Monat)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows usw." @@ -2081,11 +2076,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitrate (kbit/s):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2095,7 +2090,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blockgröße" @@ -2133,67 +2128,67 @@ msgstr "" "Bluetooth-Durchleitungsmodus ist aktiviert, aber Dolphin wurde ohne libusb " "gebaut. Durchleitungsmodus kann nicht verwendet werden." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Pausieren nach Boot" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-Sicherungsdatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii Schlüsseldatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Randloses Vollbild" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Unten" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2205,23 +2200,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2238,7 +2233,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2248,19 +2243,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2275,19 +2270,24 @@ msgstr "Zweige" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Unterbrechen" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Haltepunkt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Haltepunkt gefunden! Schritt heraus abgebrochen." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Haltepunkte" @@ -2321,24 +2321,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "&NetPlay-Sitzungen durchsuchen...." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Puffergröße:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Puffergröße auf %1 geändert" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Puffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2386,11 +2386,11 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "Signatu&rdatei erstellen..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP-Register " @@ -2410,7 +2410,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (langsamer)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2449,7 +2449,7 @@ msgstr "Kalibrierung" msgid "Calibration Period" msgstr "Kalibrierungszeitraum" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2475,7 +2475,7 @@ msgstr "Kamera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Sichtfeld der Kamera (beeinflusst die Empfindlichkeit des Zeigens)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2491,18 +2491,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kann Wiimote bei Verbindungs-Handle {0:02x} nicht finden" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Du kannst keine NetPlay-Session starten, während ein Spiel noch läuft!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Abbrechen" @@ -2511,15 +2511,15 @@ msgstr "Abbrechen" msgid "Cancel Calibration" msgstr "Kalibrierung abbrechen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2538,11 +2538,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Kann die GC IPL nicht finden." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2550,7 +2550,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2558,7 +2558,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" "Kann das Spiel nicht starten, da die GC IPL nicht gefunden werden konnte." @@ -2591,7 +2591,7 @@ msgstr "Zentrieren und Kalibrieren" msgid "Change &Disc" msgstr "Disc &wechseln" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Disc &wechseln..." @@ -2599,15 +2599,21 @@ msgstr "Disc &wechseln..." msgid "Change Disc" msgstr "Disc wechseln" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Discs automatisch wechseln" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Wechsle die Disc zu {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2634,7 +2640,7 @@ msgstr "" "Originalkamera. Hat keine seitliche Bewegung, nur Drehung und du kannst bis " "zum Ursprungspunkt der Kamera zoomen." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Das Wechseln der Cheats wird erst wirksam, nachdem das Spiel neu gestartet " @@ -2644,11 +2650,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2656,7 +2662,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Cheatcode-Editor" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Cheatsuche" @@ -2664,7 +2670,7 @@ msgstr "Cheatsuche" msgid "Cheats Manager" msgstr "Cheat-Verwaltung" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "NAND prüfen..." @@ -2684,7 +2690,7 @@ msgstr "" "Überprüfe, ob du entweder die nötigen Berechtigungen besitzt, um die Datei " "zu löschen, oder ob die Datei noch in Verwendung ist." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Prüfsumme" @@ -2696,7 +2702,7 @@ msgstr "China" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Datei zum Öffnen auswählen" @@ -2704,15 +2710,15 @@ msgstr "Datei zum Öffnen auswählen" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Vorrangige Eingabedatei auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Sekundäre Eingabedatei auswählen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2725,7 +2731,7 @@ msgstr "Ordner zum Extrahieren auswählen" msgid "Clamping of rotation about the yaw axis." msgstr "Drehklemmung um die Gierachse." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Klassische Tasten" @@ -2736,18 +2742,18 @@ msgstr "Klassischer Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Leeren" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Cache leeren" @@ -2768,7 +2774,7 @@ msgstr "Code b&earbeiten und klonen..." msgid "Close" msgstr "Schließen" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ko&nfiguration" @@ -2776,11 +2782,11 @@ msgstr "Ko&nfiguration" msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2808,11 +2814,11 @@ msgstr "Farbkorrektur:" msgid "Color Space" msgstr "Farbraum" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "&Zwei Signaturdateien kombinieren..." @@ -2839,7 +2845,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Shader vor dem Start kompilieren" @@ -2849,7 +2855,7 @@ msgstr "Kompiliere Shader" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Komprimierung" @@ -2862,7 +2868,7 @@ msgstr "Komprimierungsstufe:" msgid "Compression:" msgstr "Komprimierung:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2870,11 +2876,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Bedingung" @@ -2890,7 +2896,7 @@ msgstr "Bedingt" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Bedingte Hilfe" @@ -2905,7 +2911,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2959,7 +2970,7 @@ msgstr "Einstellungen" msgid "Configure Controller" msgstr "Controller konfigurieren" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin konfigurieren" @@ -2972,27 +2983,27 @@ msgstr "Eingabe konfigurieren" msgid "Configure Output" msgstr "Ausgabe konfigurieren" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bestätigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Ändern des Backends bestätigen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Beim Beenden bestätigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Bestätigung" @@ -3002,15 +3013,15 @@ msgstr "Bestätigung" msgid "Connect" msgstr "Verbinden" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Balance Bord anschließen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "USB-Tastatur verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Wiimote %1 verbinden" @@ -3030,7 +3041,7 @@ msgstr "Wiimote 3 verbinden" msgid "Connect Wii Remote 4" msgstr "Wiimote 4 verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Wiimotes verbinden" @@ -3047,7 +3058,7 @@ msgstr "" msgid "Connected" msgstr "Verbunden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Wird verbunden" @@ -3072,7 +3083,7 @@ msgstr "NetPlay Golf-Modus steuern" msgid "Control Stick" msgstr "Control Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Controller-Profil" @@ -3177,8 +3188,8 @@ msgstr "Konvergenz" msgid "Convergence:" msgstr "Konvergenz:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Konvertierung fehlgeschlagen" @@ -3186,9 +3197,9 @@ msgstr "Konvertierung fehlgeschlagen" msgid "Convert" msgstr "Konvertieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3196,9 +3207,9 @@ msgstr "" msgid "Convert File..." msgstr "Datei konvertieren..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3221,8 +3232,8 @@ msgstr "" "Möchtest du trotzdem fortfahren?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Konvertiere..." @@ -3253,22 +3264,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "&Funktion kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "&Hex kopieren" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Adresse kopieren" @@ -3276,19 +3287,19 @@ msgstr "Adresse kopieren" msgid "Copy Failed" msgstr "Kopieren fehlgeschlagen" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Hex kopieren" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Wert kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Codezei&le kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "&Zieladresse kopieren" @@ -3306,8 +3317,8 @@ msgstr "Nach B kopieren" msgid "Core" msgstr "Kern" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3445,7 +3456,7 @@ msgstr "" "Wenn ja, dann musst du möglicherweise deinen Speicherort für die " "Speicherkarte in den Optionen neu angeben." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Konnte den zentralen Server nicht ermitteln" @@ -3461,13 +3472,13 @@ msgstr "Konnte Datei nicht lesen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Erstellen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3481,7 +3492,7 @@ msgstr "Neue Speicherkarte erstellen" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3498,11 +3509,11 @@ msgstr "Ersteller:" msgid "Critical" msgstr "Kritisch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Zuschneiden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3514,42 +3525,42 @@ msgstr "" msgid "Crossfade" msgstr "Überblendung" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Aktuelle Region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Aktueller Kontext" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Aktuelles Spiel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Aktueller Thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3557,15 +3568,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3608,7 +3619,7 @@ msgstr "DJ-Plattenspieler" msgid "DK Bongos" msgstr "DK-Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP-Emulations-Engine" @@ -3616,15 +3627,15 @@ msgstr "DSP-Emulations-Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (schnell)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (empfohlen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (sehr langsam)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (langsam)" @@ -3654,7 +3665,7 @@ msgstr "Tanzmatte" msgid "Dark" msgstr "Dunkel" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Daten" @@ -3699,8 +3710,8 @@ msgstr "Tote Zone" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debug" @@ -3709,7 +3720,7 @@ msgstr "Debug" msgid "Decimal" msgstr "Dezimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Decodierungsqualität:" @@ -3748,7 +3759,7 @@ msgstr "Reduziere Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Standard" @@ -3756,7 +3767,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "Standard-Einstellungen (nur lesen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Standardgerät" @@ -3768,11 +3779,11 @@ msgstr "Standardschriftart" msgid "Default ISO:" msgstr "Standard-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Standard-Thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "EFB-Cache-Invalidierung zurückstellen" @@ -3780,7 +3791,7 @@ msgstr "EFB-Cache-Invalidierung zurückstellen" msgid "Defer EFB Copies to RAM" msgstr "EFB-Kopien auf RAM verschieben" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3795,8 +3806,9 @@ msgstr "" "angewiesen sind.

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Entfernen" @@ -3826,12 +3838,12 @@ msgstr "Tiefe in Prozent:" msgid "Depth:" msgstr "Tiefe:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschreibung" @@ -3845,8 +3857,8 @@ msgstr "Beschreibung:" msgid "Description: %1" msgstr "Beschreibung: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3858,21 +3870,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Gelöst" @@ -3880,7 +3892,7 @@ msgstr "Gelöst" msgid "Detect" msgstr "Erkenne" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3888,11 +3900,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministischer Doppelkern: " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Entwickler (mehrmals am Tag)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Gerät" @@ -3910,7 +3922,7 @@ msgstr "Geräteeinstellungen" msgid "Device VID (e.g., 057e)" msgstr "Geräte VID (z.b., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Gerät:" @@ -3918,7 +3930,7 @@ msgstr "Gerät:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Verdunkelt den Bildschirm nach fünf Minuten Inaktivität." @@ -3934,11 +3946,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Deaktivieren" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Bounding Box deaktivieren" @@ -3947,7 +3954,7 @@ msgstr "Bounding Box deaktivieren" msgid "Disable Copy Filter" msgstr "Kopierfilter deaktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM-Kopien deaktivieren" @@ -3955,11 +3962,11 @@ msgstr "EFB VRAM-Kopien deaktivieren" msgid "Disable Emulation Speed Limit" msgstr "Geschwindigkeitsbegrenzung ausschalten" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Fastmem deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3967,11 +3974,11 @@ msgstr "" msgid "Disable Fog" msgstr "Nebel deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "JIT-Zwischenspeicher deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3990,7 +3997,7 @@ msgstr "" "funktionieren.

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Im Zweifel aktiviert lassen." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disc" @@ -4023,6 +4036,10 @@ msgstr "Disc" msgid "Discard" msgstr "Verwerfen" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Anzeigetyp" @@ -4058,11 +4075,11 @@ msgstr "Weite der Bewegung von der neutralen Position." 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Möchtest du die Liste der Symbolnamen löschen?" @@ -4072,7 +4089,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Laufende Emulation stoppen?" @@ -4080,12 +4097,12 @@ msgstr "Laufende Emulation stoppen?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II Dekoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO-Log (*.dff)" @@ -4093,9 +4110,9 @@ msgstr "Dolphin FIFO-Log (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin-Kartendatei (*.map)" @@ -4107,8 +4124,8 @@ msgstr "Dolphin-Signatur-CSV-Datei" msgid "Dolphin Signature File" msgstr "Dolphin-Signaturdatei" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-Filme (*.dtm)" @@ -4143,7 +4160,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin ist zu alt für den Übergangsserver" @@ -4159,7 +4176,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:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4167,7 +4184,7 @@ msgstr "" "Dolphin wird dies für Titel verwenden, deren Region nicht automatisch " "bestimmt werden kann." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins Cheatsystem ist momentan deaktiviert." @@ -4176,7 +4193,7 @@ msgstr "Dolphins Cheatsystem ist momentan deaktiviert." msgid "Domain" msgstr "Domain" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Nicht updaten" @@ -4197,7 +4214,7 @@ msgstr "Verschlossene Türen" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4219,7 +4236,7 @@ msgstr "Codes herunterladen" msgid "Download Codes from the WiiRD Database" msgstr "Codes von der WiiRD-Datenbank herunterladen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Spiele-Covers von GameTDB.com für die Tabellenansicht herunterladen" @@ -4231,6 +4248,16 @@ msgstr "Herunterladen abgeschlossen" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 Codes heruntergeladen. (%2 hinzugefügt)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4270,19 +4297,19 @@ msgstr "&FakeVMEM dumpen" msgid "Dump &MRAM" msgstr "&MRAM dumpen" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Audio dumpen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Basistexturen dumpen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "EFB-Target dumpen" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Frames dumpen" @@ -4290,7 +4317,7 @@ msgstr "Frames dumpen" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Mipmaps dumpen" @@ -4298,7 +4325,7 @@ msgstr "Mipmaps dumpen" msgid "Dump Path:" msgstr "Dump-Pfad:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4323,7 +4350,7 @@ msgstr "Peer-Zertifikate dumpen" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Druckdauer der Turbo-Taste (Frames):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 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:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holländisch" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Beenden" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4378,7 +4405,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:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4390,7 +4417,7 @@ msgstr "" "Geeignet für kompetetive Spiele, bei denen Fairness und minimale Latenz am " "wichtigsten sind." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Frühe Speicher-Updates" @@ -4409,7 +4436,16 @@ msgstr "Ostasien" msgid "Edit Breakpoint" msgstr "Haltepunkt bearbeiten" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Bearbeiten..." @@ -4429,7 +4465,7 @@ msgstr "Effekt" msgid "Effective" msgstr "Effektiv" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Effektive Priorität" @@ -4451,11 +4487,11 @@ msgstr "Element" msgid "Embedded Frame Buffer (EFB)" msgstr "Eingebetteter Bildspeicher (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Leer" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emu-Thread läuft bereits." @@ -4481,7 +4517,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Emulierte USB-Geräte" @@ -4506,34 +4542,24 @@ msgstr "Emulationsgeschwindigkeit" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Aktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "API-Validierungsschichten aktivieren" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Errungenschaften aktivieren" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Audiodehnung aktivieren" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Cheats aktivieren" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Controller-&Eingabe aktivieren" @@ -4541,15 +4567,19 @@ msgstr "Controller-&Eingabe aktivieren" msgid "Enable Custom RTC" msgstr "Benutzerdefinierte Echtzeituhr aktivieren" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Dual Core aktivieren" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Dual Core aktivieren (Beschleunigung)" @@ -4561,7 +4591,7 @@ msgstr "Emulierte CPU-Taktüberschreibung aktivieren" msgid "Enable Emulated Memory Size Override" msgstr "Überschreiben der emulierten Speichergröße aktivieren" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4569,15 +4599,15 @@ msgstr "" msgid "Enable FPRF" msgstr "FPRF aktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4595,41 +4625,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "MMU aktivieren" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Progressiven Scan aktivieren" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Rumble aktivieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Bildschirmschoner aktivieren" @@ -4637,19 +4659,23 @@ msgstr "Bildschirmschoner aktivieren" msgid "Enable Speaker Data" msgstr "Lautsprecherdaten aktivieren" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten aktivieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Drahtgittermodell aktivieren" @@ -4657,34 +4683,13 @@ msgstr "Drahtgittermodell aktivieren" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4692,34 +4697,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4754,7 +4766,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4762,7 +4774,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4782,7 +4794,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Ermöglicht die Dehnung des Audiosignals, um die Emulationsgeschwindigkeit " @@ -4812,7 +4824,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4820,7 +4832,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4828,7 +4840,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4849,13 +4861,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet konnte nicht initialisiert werden" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Englisch" @@ -4872,7 +4888,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "USB-Geräte ID eingeben" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4896,33 +4912,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4935,52 +4951,52 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fehler" @@ -4997,7 +5013,7 @@ msgstr "Fehler beim Öffnen des Adapters: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5013,7 +5029,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Fehler beim Abrufen der Sitzungsliste: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -5113,12 +5129,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -5162,11 +5178,11 @@ msgstr "Erwarteter Beginn des Ausdrucks." msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Alle Wii-Spielstände exportieren" @@ -5181,7 +5197,7 @@ msgstr "Exportieren fehlgeschlagen" msgid "Export Recording" msgstr "Aufnahme exportieren" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Aufnahme exportieren..." @@ -5209,14 +5225,14 @@ msgstr "Als .&gcs exportieren..." msgid "Export as .&sav..." msgstr "Als .&sav exportieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n Spielstand/stände exportiert" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Erweiterung" @@ -5229,7 +5245,7 @@ msgstr "Erweiterung - Bewegungseingabe" msgid "Extension Motion Simulation" msgstr "Erweiterung - Bewegungssimulation" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Extern" @@ -5237,35 +5253,35 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externer Bildspeicher (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Zertifikate aus NAND extrahieren" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Gesamte Disc extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Gesamte Partition extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Datei extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Dateien extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Systemdaten extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Alle Dateien werden extrahiert..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Verzeichnis wird extrahiert..." @@ -5274,8 +5290,8 @@ msgstr "Verzeichnis wird extrahiert..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO-Player" @@ -5291,11 +5307,11 @@ msgstr "" "Konnte Speicherkarte nicht öffnen:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' anfügen." @@ -5315,7 +5331,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Konnte nicht mit Redump.org verbinden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Konnte nicht mit Server %1 verbinden" @@ -5336,15 +5352,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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5392,15 +5408,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Konnte folgende Spielstände nicht exportieren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Konnte Zertifikate aus NAND nicht extrahieren" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Datei konnte nicht extrahiert werden." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Systemdaten konnten nicht extrahiert werden." @@ -5422,14 +5438,14 @@ msgstr "Ein oder mehrere D3D-Symbole konnten nicht gefunden werden" msgid "Failed to import \"%1\"." msgstr "Konnte \"%1\" nicht importieren." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5437,7 +5453,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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5448,7 +5464,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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Konnte Kern nicht initiieren" @@ -5468,11 +5484,11 @@ msgid "Failed to install pack: %1" msgstr "Konnte Paket: %1 nicht installieren" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Konnte diesen Titel nicht in den NAND installieren." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5480,8 +5496,8 @@ msgstr "" "Fehler beim Lauschen auf Port %1. Wird eine andere Instanz des NetPlay-" "Servers ausgeführt?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Konnte RSO-Modul an %1 nicht laden" @@ -5493,21 +5509,21 @@ 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:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Konnte Kartendatei '%1' nicht laden" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Konnte die ausführbare Datei nicht in den Speicher laden." @@ -5523,17 +5539,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Konnte '&1' nicht öffnen" @@ -5541,7 +5557,7 @@ msgstr "Konnte '&1' nicht öffnen" msgid "Failed to open Bluetooth device: {0}" msgstr "Konnte Bluetooth-Gerät nicht öffnen: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5575,15 +5591,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Konnte Server nicht öffnen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5591,11 +5607,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5645,23 +5661,23 @@ msgstr "Konnte nicht aus der Eingabedatei \"{0}\" lesen." msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5675,7 +5691,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Konnte {0} nicht lesen" @@ -5713,31 +5729,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Konnte FIFO-Log nicht speichern." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Konnte Codekarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Konnte Signaturdatei '%1' nicht speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Konnte Symbolkarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' speichern." -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5790,19 +5806,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Fehler" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Faire Eingangsverzögerung" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Zurückgreifende Region" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Zurückgreifende Region:" @@ -5815,7 +5831,7 @@ msgstr "Schnell" msgid "Fast Depth Calculation" msgstr "Schnelle Tiefenberechnung" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5828,7 +5844,7 @@ msgstr "" msgid "Field of View" msgstr "Sichtfeld" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5842,7 +5858,7 @@ msgstr "Dateidetails" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Dateiformat" @@ -5850,24 +5866,24 @@ msgstr "Dateiformat" msgid "File Format:" msgstr "Dateiformat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Datei-Informationen" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Dateiname" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Dateipfad" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Dateigröße" @@ -5958,7 +5974,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bitschalter" @@ -5967,12 +5982,12 @@ msgstr "Bitschalter" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "&Zweig folgen" @@ -5994,7 +6009,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "16:9 erzwingen" @@ -6002,7 +6017,7 @@ msgstr "16:9 erzwingen" msgid "Force 24-Bit Color" msgstr "24-Bit Farbtiefe erzwingen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "4:3 erzwingen" @@ -6034,11 +6049,11 @@ msgstr "Lauschport erzwingen:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -6064,6 +6079,12 @@ msgstr "" "die Performance und verursacht nur wenige Grafikfehler." "

Im Zweifel aktiviert lassen." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Format:" @@ -6079,7 +6100,7 @@ msgstr "Vorwärts" msgid "Forward port (UPnP)" msgstr "Port öffnen (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "%1 Ergebnisse gefunden für \"%2\"" @@ -6089,7 +6110,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Bild %1" @@ -6110,11 +6131,11 @@ msgstr "Verringere Einzelbildwiedergabegeschwindigkeit" msgid "Frame Advance Reset Speed" msgstr "Einzelbildwiedergabegeschwindigkeit zurücksetzen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Frame-Dump" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Bildbereich" @@ -6122,7 +6143,7 @@ msgstr "Bildbereich" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Frame-Dump Bild(er) '{0}' existiert bereits. Überschreiben?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Bilder zum Aufzeichnen:" @@ -6142,7 +6163,7 @@ msgstr "Freie Dateien: %1" msgid "Free Look Control Type" msgstr "Freies Umsehen-Steuerungstyp" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Freies Umsehen-Controller %1" @@ -6177,7 +6198,7 @@ msgstr "Freies Umsehen umschalten" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Französisch" @@ -6196,8 +6217,8 @@ msgid "From" msgstr "Von" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Von:" @@ -6205,10 +6226,14 @@ msgstr "Von:" msgid "FullScr" msgstr "Vollbild" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funktion" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funktionen" @@ -6249,11 +6274,11 @@ msgstr "GBA-Lautstärke" msgid "GBA Window Size" msgstr "GBA-Fenstergröße" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6295,7 +6320,7 @@ msgstr "GL_MAX_TEXTURE_SIZE ist {0} - muss mindestens 1024 sein." msgid "GPU Texture Decoding" msgstr "GPU-Texturdecodierung" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6307,7 +6332,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL ERROR: Unterstützt deine Grafikkarte OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6315,7 +6340,7 @@ msgstr "" "GPU: OGL ERROR: Braucht GL_ARB_map_buffer_range.\n" "GPU: Unterstützt deine Grafikkarte OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6323,7 +6348,7 @@ msgstr "" "GPU: OGL ERROR: Braucht GL_ARB_sampler_objects.\n" "GPU: Unterstützt deine Grafikkarte OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6331,7 +6356,7 @@ msgstr "" "GPU: OGL ERROR: Braucht GL_ARB_uniform_buffer_object.\n" "GPU: Unterstützt deine Grafikkarte OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6347,7 +6372,7 @@ msgstr "" "GPU: OGL ERROR: Braucht OpenGL Version 3.\n" "GPU: Unterstützt deine Grafikkarte OpenGL 3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6370,16 +6395,16 @@ msgstr "" msgid "Game" msgstr "Spiel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Module (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6387,7 +6412,7 @@ msgstr "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "Alle Dateien (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance auf Port %1" @@ -6416,7 +6441,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Spielkennung" @@ -6425,25 +6450,25 @@ msgstr "Spielkennung" msgid "Game ID:" msgstr "Spielkennung:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Spielstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Spiel auf \"%1\" geändert" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6458,7 +6483,7 @@ msgstr "" "Spielstand mit dem Spielstand eines anderen Spiels überschrieben. " "Datenkorruption voraus {0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6478,11 +6503,11 @@ msgstr "GameCube-Adapter für Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "GameCube-Adapter für Wii U an Port %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube-Controller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "GameCube-Controller an Port %1" @@ -6490,11 +6515,11 @@ msgstr "GameCube-Controller an Port %1" msgid "GameCube Controllers" msgstr "GameCube-Controller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube-Tastatur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-Tastatur an Port %1" @@ -6511,7 +6536,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube Memory Cards (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube Mikrofonslot %1" @@ -6539,7 +6564,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-Codes" @@ -6549,35 +6574,35 @@ msgstr "Gecko-Codes" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Allgemein" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Allgemeines und Optionen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Neue Statistikidentität erzeugen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Generierte Symbolnamen von '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Deutsch" @@ -6604,7 +6629,7 @@ msgstr "Riese" msgid "Giants" msgstr "Riesen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golf-Modus" @@ -6613,7 +6638,7 @@ msgid "Good dump" msgstr "Guter Dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6658,7 +6683,7 @@ msgstr "Grün links" msgid "Green Right" msgstr "Grün rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Tabellenansicht" @@ -6695,7 +6720,7 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Kopf" @@ -6727,7 +6752,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadezimal" @@ -6736,11 +6761,11 @@ msgstr "Hexadezimal" msgid "Hide" msgstr "Verbergen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Alles verbergen" @@ -6752,16 +6777,23 @@ msgstr "In-Game-Sitzungen ausblenden" msgid "Hide Incompatible Sessions" msgstr "Inkompatible Sitzungen ausblenden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Hoch" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Höchste" @@ -6784,7 +6816,7 @@ msgstr "Host" msgid "Host Code:" msgstr "Hostcode:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Host-Eingabeautorität" @@ -6792,7 +6824,7 @@ msgstr "Host-Eingabeautorität" msgid "Host Size" msgstr "Hostgröße" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6805,11 +6837,11 @@ msgstr "" "Geeignet für Gelegenheitsspiele mit 3+ Spielern, möglicherweise bei " "instabilen Verbindungen oder Verbindungen mit hoher Latenz." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Host-Eingabeautorität deaktiviert" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Host-Eingabeautorität aktiviert" @@ -6821,7 +6853,7 @@ msgstr "Mit NetPlay ausrichten" msgid "Hostname" msgstr "Hostname" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Tastenkürzel-Einstellungen" @@ -6831,11 +6863,11 @@ msgstr "Tastenkürzel-Einstellungen" msgid "Hotkeys" msgstr "Tastenkürzel" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Tastaturkürzel benötigen Fensterfokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6894,12 +6926,12 @@ msgstr "IP-Adresse:" msgid "IPL Settings" msgstr "IPL-Einstellungen" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR-Empfindlichkeit:" @@ -6941,7 +6973,7 @@ msgstr "" msgid "Icon" msgstr "Symbol" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -6952,7 +6984,7 @@ msgstr "" "Geeignet für rundenbasierte Spiele mit zeitabhängiger Steuerung, zum " "Beispiel Golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Indentitätserzeugung" @@ -6979,7 +7011,7 @@ msgstr "" "Diese Autorisierung kann jederzeit in den Dolphin-Einstellungen widerrufen " "werden." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6993,14 +7025,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7012,7 +7044,7 @@ msgstr "" msgid "Ignore" msgstr "Ignorieren" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -7052,7 +7084,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Sofort dargestellter XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7067,7 +7099,7 @@ msgstr "" "Performance etwas.

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-Sicherung importieren..." @@ -7082,15 +7114,15 @@ msgstr "Importieren fehlgeschlagen" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Wii-Spielstand importieren..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "NAND-Sicherung wird importiert" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7099,6 +7131,15 @@ msgstr "" "NAND-Sicherung wird importiert\n" "Verstrichene Zeit: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "In-Game?" @@ -7181,7 +7222,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -7190,7 +7231,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7210,12 +7251,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Information" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Bildschirmschoner während der Emulation sperren" @@ -7224,11 +7265,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Eingabe" @@ -7242,23 +7283,19 @@ msgstr "Eingabefestigkeit, die zur Aktivierung benötigt wird." msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "&nop einfügen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SD-Karte einfügen" @@ -7271,11 +7308,11 @@ msgstr "Installieren" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Update installieren" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WAD installieren..." @@ -7283,13 +7320,13 @@ msgstr "WAD installieren..." msgid "Install to the NAND" msgstr "In NAND installieren" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Anweisung" @@ -7298,7 +7335,7 @@ msgstr "Anweisung" msgid "Instruction Breakpoint" msgstr "Anweisungshaltepunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Anweisung:" @@ -7307,7 +7344,7 @@ msgstr "Anweisung:" msgid "Instruction: %1" msgstr "Anweisung: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7324,19 +7361,19 @@ msgstr "Intensität" msgid "Interface" msgstr "Benutzeroberfläche" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7349,19 +7386,19 @@ msgstr "Interner LZO-Fehler - Komprimierung fehlgeschlagen" msgid "Internal LZO Error - decompression failed" msgstr "Interner LZO-Fehler - Dekomprimierung fehlgeschlagen" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7376,7 +7413,7 @@ msgstr "Interne Auflösung" msgid "Internal Resolution:" msgstr "Interne Auflösung:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7384,7 +7421,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (am langsamsten)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreterkern" @@ -7400,7 +7437,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ungültiger gemischter Code" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Ungültiges Paket %1 angegeben: &2" @@ -7409,11 +7446,11 @@ msgstr "Ungültiges Paket %1 angegeben: &2" msgid "Invalid Player ID" msgstr "Ungültige Spieler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Ungültige RSO-Moduladresse: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Ungültiger Aufrufstapel" @@ -7434,7 +7471,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ungültige Eingabe für das Feld \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Ungültige Eingabe eingegeben" @@ -7450,19 +7487,19 @@ msgstr "" msgid "Invalid password provided." msgstr "Ungültiges Passwort angegeben." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Ungültige Aufnahmedatei" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Ungültige Suchparameter (kein Objekt ausgewählt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Ungültiger Suchbegriff (konnte nicht zu Zahl konvertieren)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Ungültiger Suchbegriff (nur gerade Zeichenlängen werden unterstützt)" @@ -7470,13 +7507,13 @@ msgstr "Ungültiger Suchbegriff (nur gerade Zeichenlängen werden unterstützt)" msgid "Invalid title ID." msgstr "Ungültige Titelkennung" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italienisch" @@ -7489,11 +7526,11 @@ msgstr "Italien" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT-Blockverbindung Aus" @@ -7501,47 +7538,47 @@ msgstr "JIT-Blockverbindung Aus" msgid "JIT Blocks" msgstr "JIT-Blöcke" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Zweig Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FließKomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Ganzahl Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LadenSpeichern Fließkomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LadenSpeichern Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LadenSpeichern Gekoppelt Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LadenSpeichern lXz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LadenSpeichern lbzx Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LadenSpeichern lwz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Aus (JIT-Kern)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Gekoppelt Aus" @@ -7553,16 +7590,16 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT-Register-Cache Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT-SystemRegister Aus" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7571,16 +7608,16 @@ msgstr "" "niemals passieren. Melde bitte diesen Vorfall im Bug-Tracker. Dolphin wird " "jetzt beendet." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japanisch" @@ -7597,12 +7634,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Fenster immer im Vordergrund" @@ -7636,16 +7673,16 @@ msgstr "Tasten" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Spieler hinauswerfen" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Koreanisch" @@ -7666,7 +7703,7 @@ msgstr "ROM l&aden..." msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR-Sicherung" @@ -7674,7 +7711,11 @@ msgstr "LR-Sicherung" msgid "Label" msgstr "Bezeichnung" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Letzter Wert" @@ -7688,23 +7729,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Latenz:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Latenz: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Latenz: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Latenz: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Latenz: ~80 ms" @@ -7712,7 +7753,7 @@ msgstr "Latenz: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7720,7 +7761,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7731,7 +7772,7 @@ msgstr "Links" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Stick links" @@ -7808,11 +7849,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Uploadblock-Geschwindigkeit begrenzen:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Listen-Spalten" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Listenansicht" @@ -7821,30 +7862,30 @@ msgid "Listening" msgstr "Lauscht" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "&Ungültige Kartendatei laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "&Andere Kartendatei laden..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Lade benutzerdefinierte Texturen" @@ -7852,11 +7893,11 @@ msgstr "Lade benutzerdefinierte Texturen" msgid "Load File" msgstr "Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "GameCube-Hauptmenü laden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7962,23 +8003,23 @@ msgstr "Spielstand in Slot 8 laden" msgid "Load State Slot 9" msgstr "Spielstand in Slot 9 laden" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Spielstand von Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Spielstand von Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Wii-Systemmenü laden %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7986,28 +8027,28 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Lade von Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Kartendatei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Geladene Symbole von '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8017,26 +8058,34 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/.

Im " "Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Lokal" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8045,19 +8094,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Protokollkonfiguration" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Anmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "JIT-Anweisungsabdeckung protokollieren" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Abmelden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Protokolliert Renderzeit in Datei" @@ -8069,31 +8118,31 @@ msgstr "Log-Typen" msgid "Logger Outputs" msgstr "Logger-Ausgabe" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Anmeldung fehlgeschlagen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Die Verbindung zum NetPlay-Server wurde getrennt..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Niedrig" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Niedrigste" @@ -8105,7 +8154,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -8153,7 +8202,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Hersteller" @@ -8174,16 +8223,16 @@ msgstr "" "machen, die die korrekte Nebelemulation benötigen." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "NAND verwalten" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mapping" @@ -8195,11 +8244,11 @@ msgstr "" msgid "Match Found" msgstr "Übereinstimmung gefunden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Maximaler Puffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Maximale Puffergröße auf %1 geändert" @@ -8208,7 +8257,7 @@ msgstr "Maximale Puffergröße auf %1 geändert" msgid "Maximum tilt angle." msgstr "Maximaler Neigungswinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Kann zu Verlangsamung im Wii-Menü und einigen Spielen führen." @@ -8229,7 +8278,7 @@ msgstr "Speicherhaltepunkt" msgid "Memory Card" msgstr "Speicherkarte" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Speicherkartenverwaltung" @@ -8259,7 +8308,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "MemoryCard: Schreibvorgang mit ungültiger Zieladresse aufgerufen ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8277,7 +8326,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -8286,15 +8335,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Sonstiges" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Sonstige Einstellungen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8308,7 +8357,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Nichtübereinstimmung zwischen internen Datenstrukturen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8328,7 +8377,7 @@ msgstr "" msgid "Modifier" msgstr "Modifikator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8347,8 +8396,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Module gefunden: %1" @@ -8356,7 +8405,7 @@ msgstr "Module gefunden: %1" msgid "Money:" msgstr "Geld:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8368,11 +8417,11 @@ msgstr "Monoskopische Schatten" msgid "Monospaced Font" msgstr "Proportionale Schriftart" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Bewegungseingabe" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Bewegungssimulation" @@ -8381,23 +8430,10 @@ msgstr "Bewegungssimulation" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Mauszeigersichtbarkeit" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Mauszeiger wird immer sichtbar sein." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "Mauszeiger wird nie sichtbar sein, während ein Spiel läuft." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8408,13 +8444,13 @@ msgstr "Bewegen" msgid "Movie" msgstr "Film" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8427,10 +8463,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ein zu allen" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-Prüfung" @@ -8439,8 +8475,8 @@ msgstr "NAND-Prüfung" msgid "NKit Warning" msgstr "NKit-Warnung" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8449,7 +8485,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8466,8 +8502,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8510,7 +8546,7 @@ msgstr "Nativ (640x528)" msgid "Native GCI File" msgstr "Native GCI-Datei" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8526,27 +8562,27 @@ msgstr "NetPlay-Einrichtung" msgid "Netherlands" msgstr "Niederlande" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Netzwerk" @@ -8554,16 +8590,16 @@ msgstr "Netzwerk" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Nie" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Niemals automatisch updaten" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Neu" @@ -8588,7 +8624,7 @@ msgstr "Neue Suche" msgid "New Tag..." msgstr "Neues Tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Neue identität erzeugt." @@ -8605,7 +8641,7 @@ msgstr "Neues Tag" msgid "Next Game Profile" msgstr "Nächstes Spielprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Nächste Übereinstimmung" @@ -8651,7 +8687,7 @@ msgstr "Keine Komprimierung" msgid "No Match" msgstr "Keine Übereinstimmung" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8659,12 +8695,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Keine Beschreibung vorhanden" @@ -8676,7 +8712,7 @@ msgstr "Keine Fehler." msgid "No extension selected." msgstr "Keine Erweiterung ausgewählt." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Keine Datei geladen / aufgezeichnet." @@ -8684,7 +8720,7 @@ msgstr "Keine Datei geladen / aufgezeichnet." msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Es läuft kein Spiel." @@ -8697,11 +8733,11 @@ msgstr "" msgid "No input" msgstr "Keine Eingabe" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Es wurden keine Probleme festgestellt." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8728,7 +8764,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Keine Profile für Spieleinstellung '{0}' gefunden" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Keine Aufnahme geladen." @@ -8747,10 +8783,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Keine" @@ -8762,7 +8798,7 @@ msgstr "Nordamerika" msgid "Not Set" msgstr "Nicht Festgelegt" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Nicht alle Spieler besitzen das Spiel. Möchten Sie trotzdem starten?" @@ -8782,7 +8818,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Nicht gefunden" @@ -8826,26 +8862,26 @@ msgstr "Anzahl der Schüttelungen pro Sekunde." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Nunchuk-Beschleunigungssensor" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Nunchuck-Tasten" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Nunchuck-Stick" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Objekt %1" @@ -8897,7 +8933,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Objektreichweite" @@ -8918,18 +8954,18 @@ msgstr "" msgid "On" msgstr "Ein" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Bei Bewegung" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8944,7 +8980,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online-&Dokumentation" @@ -8952,7 +8988,7 @@ msgstr "Online-&Dokumentation" msgid "Only Show Collection" msgstr "Nur Sammlung anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8960,7 +8996,7 @@ msgstr "" "Nur Symbole anhängen mit dem Präfix:\n" "(Leer für alle Symbole)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8979,7 +9015,7 @@ msgstr "Öffnen" msgid "Open &Containing Folder" msgstr "Über&geordneten Ordner öffnen" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "&Benutzerordner öffnen" @@ -8988,7 +9024,7 @@ msgstr "&Benutzerordner öffnen" msgid "Open Directory..." msgstr "Verzeichnis öffnen..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "FIFO-Log öffnen" @@ -9054,34 +9090,34 @@ msgstr "Orange" msgid "Orbital" msgstr "Orbital" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9096,11 +9132,11 @@ msgstr "Andere Partition (%1)" msgid "Other State Hotkeys" msgstr "Tastenkürzel anderer Spielstand" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Verwaltung anderer Spielstand" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Anderes Spiel..." @@ -9116,16 +9152,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Überschrieben" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Eingabeau&fzeichnung wiedergeben..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9138,11 +9174,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG-Komprimierungsstufe" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG-Komprimierungsstufe:" @@ -9154,7 +9190,7 @@ msgstr "PNG-Bilddatei (*.png);; Alle Dateien (*)" msgid "PPC Size" msgstr "PPC-Größe" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9188,7 +9224,7 @@ msgstr "Passiv" msgid "Passthrough a Bluetooth adapter" msgstr "Bluetooth-Adapter durchleiten" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Passwort" @@ -9226,15 +9262,15 @@ msgstr "Pfade" msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pause am Filmende" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pausieren wenn der Fokus verloren wird" @@ -9250,6 +9286,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9269,7 +9311,7 @@ msgstr "Spitzengeschwindigkeit von nach außen gerichteten Schwenkbewegungen." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Lighting" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Online-Systemaktualisierung durchführen" @@ -9277,15 +9319,15 @@ msgstr "Online-Systemaktualisierung durchführen" msgid "Perform System Update" msgstr "Systemaktualisierung durchführen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -9303,11 +9345,11 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Wähle eine Debug-Schriftart" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9320,7 +9362,7 @@ msgid "Pitch Up" msgstr "Nicken aufwärts" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plattform" @@ -9328,7 +9370,7 @@ msgstr "Plattform" msgid "Play" msgstr "Start" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Abspielen / Aufnahme" @@ -9340,40 +9382,40 @@ msgstr "Aufnahme abspielen" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Wiedergabeoptionen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Spieler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Spieler Eins" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Spieler Zwei" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Spieler" @@ -9390,7 +9432,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9406,7 +9448,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Port %1" @@ -9423,7 +9465,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mögliche Desynchronisation erkannt: %1 wurde wahrscheinlich auf Frame %2 " @@ -9441,24 +9483,32 @@ msgstr "Nachbearbeitungseffekt:" msgid "Post-Processing Shader Configuration" msgstr "Shader-Konfiguration nach der Verarbeitung" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Benutzerdefinierte Texturen vorladen" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Vorzeitiges Filmende in PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Vorzeitiges Filmende in PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Vorzeitiges Filmende in PlayWiimote. {0} > {1}" @@ -9483,7 +9533,7 @@ msgstr "Sync-Taste drücken" msgid "Pressure" msgstr "Druck" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9503,7 +9553,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Vorheriges Spielprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Vorherige Übereinstimmung" @@ -9514,7 +9564,7 @@ msgstr "Vorheriges Profil" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9554,7 +9604,7 @@ msgstr "" "Probleme mit mittlerem Schweregrad wurden gefunden. Das ganze Spiel oder " "bestimmte Teile des Spiels funktionieren möglicherweise nicht richtig." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9563,23 +9613,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "Programmzähler" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Fortschritt" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Spielelisten Cache leeren" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9599,18 +9655,18 @@ msgstr "Quality of Service (QoS) konnte nicht aktiviert werden." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) wurde erfolgreich aktiviert." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "Qualität des DPLII-Decoders. Audiolatenz steigt mit Qualität." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Frage" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Beenden" @@ -9627,19 +9683,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "BEREIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO-Module" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "Automatische RSO-Erkennung" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "LÄUFT" @@ -9660,7 +9716,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Rang %1" @@ -9668,16 +9724,17 @@ msgstr "Rang %1" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Anweisung er&setzen" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Lesen" @@ -9716,8 +9773,8 @@ msgstr "Reale Wiimote" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9726,23 +9783,23 @@ msgstr "" msgid "Recenter" msgstr "Nachzentrieren" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Aufnahme" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Eingaben aufzeichnen" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Aufzeichnung" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Aufnahmeoptionen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Aufzeichnung..." @@ -9781,7 +9838,7 @@ msgstr "Redump.org Status:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9812,7 +9869,7 @@ msgid "Refreshing..." msgstr "Aktualisiere..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9833,7 +9890,11 @@ msgstr "Relative Eingabe" msgid "Relative Input Hold" msgstr "Relative Eingabe halten" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Erinnere mich später" @@ -9841,7 +9902,7 @@ msgstr "Erinnere mich später" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Entfernen" @@ -9872,20 +9933,20 @@ msgstr "" "Speicherplatz gespart (es sei denn, du packst die ISO-Datei anschließend in " "ein komprimiertes Dateiformat wie ZIP). Möchtest du trotzdem fortfahren?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Symbol umbenennen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Renderfenster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Im Hauptfenster rendern" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9901,10 +9962,16 @@ msgstr "Bericht: GCIFolder Schreibe zu nicht zugewiesener Block {0:#x}" msgid "Request to Join Your Party" msgstr "Anfrage deiner Gruppe beizutreten" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9914,7 +9981,7 @@ msgstr "Zurücksetzen" msgid "Reset All" msgstr "Alles zurücksetzen" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9946,7 +10013,7 @@ msgstr "Sichtfeld zurücksetzen" msgid "Reset all saved Wii Remote pairings" msgstr "Alle gespeicherten Wiimote-Kopplungen zurücksetzen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9958,7 +10025,7 @@ msgstr "Ressourcenpaketverwaltung" msgid "Resource Pack Path:" msgstr "Ressourcenpaket-Pfad:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Neustart erforderlich" @@ -9966,11 +10033,11 @@ msgstr "Neustart erforderlich" msgid "Restore Defaults" msgstr "Standard wiederherstellen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Anweisung wiederherstellen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Erneut versuchen" @@ -9979,7 +10046,7 @@ msgstr "Erneut versuchen" msgid "Return Speed" msgstr "Rücklaufgeschwindigkeit" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revision" @@ -9991,7 +10058,7 @@ msgstr "Revision: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10002,7 +10069,7 @@ msgstr "Rechts" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Stick rechts" @@ -10038,11 +10105,11 @@ msgstr "Rollen links" msgid "Roll Right" msgstr "Rollen rechts" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Raum-ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Drehung" @@ -10060,27 +10127,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10093,7 +10164,7 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Bis &hier ausführen" @@ -10101,15 +10172,15 @@ msgstr "Bis &hier ausführen" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -10117,23 +10188,23 @@ msgstr "" msgid "Russia" msgstr "Russland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-Karte" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD-Karten-Dateigröße" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-Kartenabbild (*.raw);;Alle Dateien (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD-Karten-Pfad:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD-Karten-Einstellungen" @@ -10141,7 +10212,7 @@ msgstr "SD-Karten-Einstellungen" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -10176,11 +10247,11 @@ msgstr "SSL-Kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Code speich&ern" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "S&pielstand speichern" @@ -10190,9 +10261,9 @@ msgid "Safe" msgstr "Sicher" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10202,25 +10273,25 @@ msgstr "Speichern" msgid "Save All" msgstr "Alle speichern" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Export speichern" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "FIFO-Log speichern" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Datei speichern unter" @@ -10234,11 +10305,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Import speichern" @@ -10250,7 +10321,7 @@ msgstr "Ältesten Spielstand überschreiben" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -10300,23 +10371,23 @@ msgstr "In Slot 8 speichern" msgid "Save State Slot 9" msgstr "In Slot 9 speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Spielstand in Datei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Spielstand in ältesten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Spielstand in Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Symbolkarte speichern &als..." @@ -10324,7 +10395,7 @@ msgstr "Symbolkarte speichern &als..." msgid "Save Texture Cache to State" msgstr "Texturen-Cache in Spielstand speichern" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Spielstand speichern und laden" @@ -10336,11 +10407,11 @@ msgstr "" msgid "Save as..." msgstr "Speichern unter..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Kombinierte Ausgabedatei speichern als" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10354,11 +10425,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Kartendatei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Signaturdatei speichern" @@ -10366,11 +10437,11 @@ msgstr "Signaturdatei speichern" msgid "Save to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Spielstand in Slot %1 - %2 speichern" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Speichern..." @@ -10384,7 +10455,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "Spielstandfilm {0} ist fehlerhaft, breche die Filmaufnahme ab..." @@ -10401,8 +10472,8 @@ msgid "ScrShot" msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Suche" @@ -10411,7 +10482,7 @@ msgstr "Suche" msgid "Search Address" msgstr "Adresse suchen" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Derzeitiges Objekt suchen" @@ -10429,7 +10500,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Suche nach einer Anweisung" @@ -10437,7 +10508,7 @@ msgstr "Suche nach einer Anweisung" msgid "Search games..." msgstr "Suche Spiele..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Suchanweisung" @@ -10472,7 +10543,7 @@ msgstr "Auswählen" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10483,23 +10554,23 @@ msgid "Select Dump Path" msgstr "Dump-Pfad auswählen" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Export-Verzeichnis auswählen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10527,7 +10598,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2 auswählen" @@ -10535,7 +10606,7 @@ msgstr "Slot %1 - %2 auswählen" msgid "Select State" msgstr "Spielstand auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Spielstand-Slot auswählen" @@ -10596,13 +10667,13 @@ msgstr "Verzeichnis auswählen" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Datei auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10610,7 +10681,7 @@ msgstr "" msgid "Select a Game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "SD-Kartenabbild auswählen" @@ -10622,7 +10693,7 @@ msgstr "" msgid "Select a game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Wähle einen Titel zum Installieren in den NAND aus." @@ -10630,11 +10701,11 @@ msgstr "Wähle einen Titel zum Installieren in den NAND aus." msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Wählen Sie die RSO-Moduladresse aus:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10642,12 +10713,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Wähle die Schlüsseldateien (OTP/SEEPROM Dump)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Wii-Spielstand auswählen" @@ -10670,16 +10741,16 @@ msgstr "Ausgewähltes Controller-Profil existiert nicht" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Das gewählte Spiel existiert nicht in der Spieleliste!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Ausgewählter Thread-Aufrufstapel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Ausgewählter Thread-Kontext" @@ -10697,7 +10768,7 @@ msgstr "" "Wählt ein Anzeigegerät aus.

Im Zweifel, wähle das " "Erste." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10735,7 +10806,7 @@ msgstr "" "
Passiv ist eine andere Art von 3D, die von einigen Fernsehern verwendet " "wird.

Im Zweifel Aus auswählen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10757,7 +10828,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10767,11 +10838,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Senden" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Position der Sensorleiste:" @@ -10801,6 +10872,10 @@ msgstr "Server hat Übergangsversuch abgelehnt." msgid "Set &Value" msgstr "&Wert zuweisen" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10818,23 +10893,23 @@ msgstr "Lege eine Speicherkarten-Datei für Slot A fest" msgid "Set memory card file for Slot B" msgstr "Lege eine Speicherkarten-Datei für Slot B fest" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Symbol-&Endadresse festlegen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "&Symbolgröße festlegen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Symbol-Endadresse festlegen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Symbolgröße festlegen (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10844,29 +10919,44 @@ msgstr "" "Spiele.\n" "Funktioniert nicht bei allen Spielen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Stellt die Wii Systemsprache ein." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Einstellungen" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMem: setting.txt kann nicht erstellt werden" @@ -10874,7 +10964,7 @@ msgstr "SetupWiiMem: setting.txt kann nicht erstellt werden" msgid "Severity" msgstr "Schweregrad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Shader-Kompilierung" @@ -10896,32 +10986,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen-Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "&Log anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "&Werkzeugleiste anzeigen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Aktiven Titel in Fenstertitel anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Alles anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Australien anzeigen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Zeige momentanes Spiel auf Discord" @@ -10930,7 +11020,7 @@ msgstr "Zeige momentanes Spiel auf Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL anzeigen" @@ -10939,31 +11029,31 @@ msgstr "ELF/DOL anzeigen" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Bildzähler anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Frankreich anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "GameCube anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Deutschland anzeigen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Golf-Modus-Überlagerung anzeigen" @@ -10971,23 +11061,23 @@ msgstr "Golf-Modus-Überlagerung anzeigen" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Eingabebildschirm anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Italien anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "JPN anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Korea anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Lag-Zähler anzeigen" @@ -10995,27 +11085,27 @@ msgstr "Lag-Zähler anzeigen" msgid "Show Language:" msgstr "Anzeigesprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Protokoll&konfiguration anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "NetPlay-Nachrichten anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "NetPlay-Ping anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Niederlande anzeigen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Bildschirmnachrichten zeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL anzeigen" @@ -11024,27 +11114,27 @@ msgstr "PAL anzeigen" msgid "Show PC" msgstr "PC anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Plattformen anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Regionen anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Russland anzeigen" @@ -11052,72 +11142,72 @@ msgstr "Russland anzeigen" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Spanien anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Statistiken anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Systemuhr anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Taiwan anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "USA anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Unbekannte anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "VPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Welt anzeigen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Im &Speicher anzeigen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Im Code anzeigen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Im Speicher anzeigen" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Im Code anzeigen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Im Speicher anzeigen" @@ -11125,11 +11215,19 @@ msgstr "Im Speicher anzeigen" msgid "Show in server browser" msgstr "Im Server-Browser anzeigen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "&Ziel im Speicher anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11138,42 +11236,67 @@ msgstr "" "Desynchronisierungswarnungen an.

Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11191,13 +11314,13 @@ msgstr "" "Zeigt beim Spielen mit NetPlay den maximalen Ping eines Spielers an." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11221,7 +11344,7 @@ msgstr "Seitwärts umschalten" msgid "Sideways Wii Remote" msgstr "Wiimote seitwärts" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Signaturendatenbank" @@ -11240,12 +11363,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Signiertes Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chinesisch (Vereinfacht)" @@ -11262,7 +11385,7 @@ msgstr "Sechs Achsen" msgid "Size" msgstr "Größe" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11274,7 +11397,7 @@ msgstr "" msgid "Skip" msgstr "Überspringen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -11323,6 +11446,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Alle Dateien (*)" @@ -11397,7 +11523,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Alphabetisch sortieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Klang:" @@ -11411,7 +11537,7 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spanisch" @@ -11419,19 +11545,19 @@ msgstr "Spanisch" msgid "Speaker Pan" msgstr "Lautsprecherregler" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Lautsprecher-Lautstärke" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Spezifisch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11456,11 +11582,11 @@ msgstr "Geschwindigkeit" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Stapelende" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Stapelstart" @@ -11468,25 +11594,25 @@ msgstr "Stapelstart" msgid "Standard Controller" msgstr "Standard-Controller" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "&NetPlay starten..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Aufzeichnung der Eingabe starten" @@ -11494,7 +11620,7 @@ msgstr "&Aufzeichnung der Eingabe starten" msgid "Start Recording" msgstr "Aufnahme starten" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Im Vollbildmodus starten" @@ -11506,14 +11632,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Spiel gestartet" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Status" @@ -11545,19 +11671,19 @@ msgstr "Schritt heraus" msgid "Step Over" msgstr "Schritt über" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Schritt heraus erfolgreich!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Zeitüberschreitung bei Schritt heraus!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Schritt über in Bearbeitung..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Schritt erfolgreich!" @@ -11566,7 +11692,7 @@ msgstr "Schritt erfolgreich!" msgid "Stepping" msgstr "Schrittweite" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stereo" @@ -11595,16 +11721,16 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Wiedergabe/Aufzeichnung der Eingabe stoppen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Spiel gestoppt" @@ -11646,11 +11772,11 @@ msgstr "" "Texturen) ablegen

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "An Fenstergröße anpassen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Strikte Einstellungs-Synchronisation" @@ -11664,7 +11790,11 @@ msgstr "Zeichenkette" msgid "Strum" msgstr "Klimpern" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Stil:" @@ -11675,18 +11805,18 @@ msgstr "Stil:" msgid "Stylus" msgstr "Eingabestift" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Erfolg" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Erfolgreich zum NetPlay-Index hinzugefügt" @@ -11696,7 +11826,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n Abbild(er) erfolgreich konvertiert." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "'%1' wurde erfolgreich gelöscht." @@ -11709,24 +11839,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Spielstände wurden erfolgreich exportiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Zertifikate aus NAND erfolgreich extrahiert" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Datei erfolgreich extrahiert." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Systemdaten erfolgreich extrahiert." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Spielstand wurde erfolgreich importiert." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Der Titel wurde erfolgreich in den NAND installiert." @@ -11749,16 +11879,16 @@ msgstr "Unterstützung" msgid "Supported file formats" msgstr "Unterstützte Dateiformate" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Unterstützt SD und SDHC. Standardgröße ist 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Ausgesetzt" @@ -11805,17 +11935,17 @@ msgstr "Zu B wechseln" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Symbol (%1) Endadresse:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Symbolname:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symbole" @@ -11823,7 +11953,7 @@ msgstr "Symbole" msgid "Sync" msgstr "Synchronisieren" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "AR/Gecko-Codes synchronisieren" @@ -11843,7 +11973,7 @@ msgstr "" "Synchronisiert die GPU- und CPU-Threads, um zufällige Abstürze im Doppelkern-" "Modus zu vermeiden. (EIN = Kompatibel, AUS = Schnell)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11862,24 +11992,24 @@ msgid "Synchronizing save data..." msgstr "Synchronisiere Spielstände..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Systemsprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS-Eingabe" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS-Werkzeuge" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Tags" @@ -11889,7 +12019,7 @@ msgstr "Tags" msgid "Taiko Drum" msgstr "Taiko-Trommel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Schweif" @@ -11897,7 +12027,7 @@ msgstr "Schweif" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Screenshot erstellen" @@ -11905,7 +12035,7 @@ msgstr "Screenshot erstellen" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11921,9 +12051,9 @@ msgstr "Tech" msgid "Test" msgstr "Testen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11936,7 +12066,7 @@ msgstr "Texturen-Cache" msgid "Texture Cache Accuracy" msgstr "Texturen-Cache-Genauigkeit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Texturdump" @@ -11948,7 +12078,7 @@ msgstr "Texturfilterung" msgid "Texture Filtering:" msgstr "Texturfilterung:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Texturenformat-Überlagerung" @@ -11987,7 +12117,7 @@ msgstr "Die IPL-Datei ist kein bekannter guter Dump. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Die Partitionen der Meisterstücke fehlen." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11995,7 +12125,7 @@ msgstr "" "Das NAND konnte nicht repariert werden. Es wird empfohlen, deine aktuellen " "Daten zu sichern und mit einem frischen NAND neu anzufangen." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "Das NAND wurde repariert." @@ -12010,7 +12140,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12061,7 +12191,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12074,7 +12204,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Die Disc konnte nicht gelesen werden (bei {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Die Disc, die eingelesen werden sollte, konnte nicht gefunden werden." @@ -12163,7 +12293,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Das Dateisystem ist ungültig oder konnte nicht gelesen werden." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12208,7 +12338,7 @@ msgstr "" "Probleme mit dem Hauptmenü zu vermeiden, sind Updates der emulierten Konsole " "mit dieser Disc nicht möglich." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12274,12 +12404,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Das Profil '%1' existiert nicht" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" "Das aufgenommene Spiel ({0}) ist nicht das gleiche gewählte Spiel ({1})" @@ -12305,7 +12435,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12346,7 +12476,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Die ausgewählte Datei \"{0}\" existiert nicht" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12407,7 +12537,7 @@ msgstr "Die Updatepartition fehlt." msgid "The update partition is not at its normal position." msgstr "Die Update-Partition ist nicht in der normalen Position." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12429,6 +12559,10 @@ msgstr "Die {0} Partition ist not korrekt signiert. " msgid "The {0} partition is not properly aligned." msgstr "Die {0} Partition ist nicht richtig ausgerichtet." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Es gibt zu viele Partitionen in der ersten Partitionstabelle." @@ -12440,8 +12574,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12498,11 +12632,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "Dieses USB-Gerät ist bereits freigegeben." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Dieses WAD ist nicht bootfähig." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Dieses WAD ist nicht gültig." @@ -12520,7 +12654,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Dies kann nicht ruckgängig gemacht werden!" @@ -12644,7 +12778,7 @@ msgstr "" msgid "This is a good dump." msgstr "Dies ist ein guter Dump." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12670,7 +12804,7 @@ msgstr "" "Dieses Programm sollte nicht verwendet werden, um Spiele zu spielen, die Sie " "nicht legal besitzen." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Dieser Titel kann nicht gebootet werden." @@ -12721,7 +12855,7 @@ msgstr "" "Dieser Wert wird mit der in den Grafikeinstellungen festgelegten Farbtiefe " "multipliziert." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12736,7 +12870,7 @@ msgstr "" "Dies wird die Geschwindigkeit von Uploadblöcken pro Klient begrenzen, die " "für die Speichersynchronisation benutzt werden." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12748,11 +12882,11 @@ msgstr "" "Kann Desynchronisation in einigen Spielen verhinden, die vom EFB lesen. " "Stelle sicher, dass jeder das gleiche Video-Backend benutzt." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Thread-Kontext" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Threads" @@ -12777,14 +12911,14 @@ msgstr "" "Zeitraum der stabilen Eingabe zum Auslösen der Kalibrierung. (Null zum " "Deaktivieren)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titel" @@ -12793,12 +12927,12 @@ msgid "To" msgstr "Zu" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Zu:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Vollbildmodus umschalten" @@ -12823,7 +12957,7 @@ msgid "Toggle Aspect Ratio" msgstr "Seitenverhältnis umschalten" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Haltepunkt umschalten" @@ -12879,7 +13013,7 @@ msgstr "Sofortigen XFB-Modus umschalten" msgid "Tokenizing failed." msgstr "Tokenisierung fehlgeschlagen." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12887,7 +13021,7 @@ msgstr "" msgid "Toolbar" msgstr "Werkzeugleiste" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Oben" @@ -12895,8 +13029,8 @@ msgstr "Oben" msgid "Top-and-Bottom" msgstr "Übereinander" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12938,7 +13072,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chinesisch (Traditionell)" @@ -12958,8 +13092,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Übergangsfehler" @@ -12988,7 +13122,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Schultertasten" @@ -12998,7 +13132,7 @@ msgid "Trophy" msgstr "Trophäe" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13012,7 +13146,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "UNBEKANNT" @@ -13024,7 +13158,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB-Geräteemulation" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB-Emulation" @@ -13042,7 +13176,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB-Whitelist-Fehler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13053,7 +13187,7 @@ msgstr "" "Low-End-Hardware.

Im Zweifel diesen Modus wählen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13065,7 +13199,7 @@ msgstr "" "

Nur benutzen, falls Hybrid Ubershader ruckeln und " "du eine sehr leistungsfähige GPU hast." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13079,7 +13213,7 @@ msgstr "" "Kompilierung beseitigt, während die Leistung nur minimal beeinflusst wird. " "Die Ergebnisse hängen jedoch vom Verhalten des Grafiktreibers ab." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Konnte RSO-Module nicht automatisch erkennen" @@ -13149,11 +13283,11 @@ msgstr "Unkomprimierte GC/Wii-Abbilder (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Spielstand Laden rückgängig machen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Spielstand Speichern rückgängig machen" @@ -13174,28 +13308,28 @@ msgstr "" "Titels aus dem NAND entfernt, ohne die gespeicherten Daten zu löschen. " "Fortsetzen?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Vereinigte Staaten" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Unbekannt" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Unbekannt (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Unbekannter DVD-Befehl {0:08x} - fataler Fehler" @@ -13272,11 +13406,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Unbekannt(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Unbekannt(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Unbegrenzt" @@ -13288,20 +13422,8 @@ msgstr "ROM entladen" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Entsperrt" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -13328,7 +13450,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Unsigniertes Integer" @@ -13342,8 +13464,8 @@ msgstr "Unsigniertes Integer" msgid "Up" msgstr "Hoch" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Update" @@ -13351,11 +13473,11 @@ msgstr "Update" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Nach dem Beenden von Dolphin updaten" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Update verfügbar" @@ -13400,7 +13522,7 @@ msgstr "Aufrecht umschalten" msgid "Upright Wii Remote" msgstr "Wiimote aufrecht" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Einstellungen zur Berichterstattung von Nutzungsdaten" @@ -13408,15 +13530,15 @@ msgstr "Einstellungen zur Berichterstattung von Nutzungsdaten" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Eingebaute Datenbank von Spielnamen verwenden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Benutze verlustfreien Codec (FFV1)" @@ -13424,15 +13546,21 @@ msgstr "Benutze verlustfreien Codec (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60-Modus (EuRGB60) verwenden" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Warnmeldungen anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13468,7 +13596,7 @@ msgstr "" msgid "User Config" msgstr "Benutzereinstellungen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Benutzeroberfläche" @@ -13483,10 +13611,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Benutzername" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13499,7 +13634,7 @@ msgstr "" "GPU einen ordentlichen Geschwindigkeitsvorteil bringen." "

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13509,7 +13644,7 @@ msgstr "" "stattdessen ein Renderfenster erstellt.

Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13809,8 +13944,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Warnungen" @@ -13820,7 +13955,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13836,7 +13971,7 @@ msgstr "" "Warnung: Anzahl der von der BAT ({0}) angegebenen Blöcke stimmt nicht mit " "der aus dem geladenen Dateiheader ({1}) überein" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -13847,7 +13982,7 @@ msgstr "" "Fortfahren einen anderen Spielstand laden, oder diesen Spielstand, wenn der " "Nur-Lese-Modus ausgeschaltet ist." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -13857,7 +13992,7 @@ msgstr "" "Frame im Spielstand endet (Byte {0} < {1}) (Frame {2} < {3}). Du solltest " "vor dem Fortfahren einen anderen Spielstand laden." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -13868,7 +14003,7 @@ msgstr "" "laden, oder diesen Spielstand, wenn der Nur-Lese-Modus ausgeschaltet ist. " "Andernfalls könnte eine Desynchronisierung auftreten." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13930,7 +14065,7 @@ msgstr "Westeuropäisch (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13942,7 +14077,7 @@ msgstr "" "\"Willkürliche Mipmaps erkennen\" in \"Verbesserungen\" aktiviert ist." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13954,7 +14089,7 @@ msgstr "" "\"Willkürliche Mipmaps erkennen\" in \"Verbesserungen\" aktiviert ist." "

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Freigegebene USB-Durchleitungsgeräte" @@ -13986,25 +14121,25 @@ msgstr "Wiimote" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wiimote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wiimote-Tasten" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wiimote-Einstellungen" @@ -14012,19 +14147,19 @@ msgstr "Wiimote-Einstellungen" msgid "Wii Remotes" msgstr "Wiimotes" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii TAS-Eingabe 1% - Klassischer Controller" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii TAS-Eingabe %1 - Wiimote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS-Eingabe %1 - Wiimote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii und Wiimote" @@ -14032,7 +14167,7 @@ msgstr "Wii und Wiimote" msgid "Wii data is not public yet" msgstr "Wii-Daten sind noch nicht öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-Spielstände (*.bin);;Alle Dateien (*)" @@ -14040,13 +14175,7 @@ msgstr "Wii-Spielstände (*.bin);;Alle Dateien (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools MEGA-Signaturdatei" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -14055,11 +14184,11 @@ msgstr "" msgid "Window Size" msgstr "Fenstergröße" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -14073,10 +14202,11 @@ msgstr "Weltweit" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Schreiben" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -14109,39 +14239,39 @@ msgstr "Schreibe ins Log und brich ab" msgid "Write to Window" msgstr "In Fenster ausgeben" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Falsche Region" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Falsche Revision" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF-Register" @@ -14150,9 +14280,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14180,14 +14310,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja zu &allen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14284,7 +14414,7 @@ msgstr "Sie müssen einen Namen für Ihre Sitzung angeben!" msgid "You must provide a region for your session!" msgstr "Sie müssen eine Region für Ihre Sitzung angeben!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Sie müssen Dolphin neu starten, damit die Änderungen wirksam werden." @@ -14304,16 +14434,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14322,7 +14452,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3-Code wird nicht unterstützt" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -14371,7 +14501,7 @@ msgid "default" msgstr "Standard" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "getrennt" @@ -14379,7 +14509,7 @@ msgstr "getrennt" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14387,7 +14517,7 @@ msgstr "errno" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -14437,16 +14567,6 @@ msgstr "" msgid "none" msgstr "kein" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "aus" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "am" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "oder wähle ein Gerät" @@ -14464,7 +14584,7 @@ msgstr "sRGB" msgid "this value:" msgstr "dieser Wert:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -14534,11 +14654,9 @@ msgstr "| Oder" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2021+ Dolphin Team. „GameCube“ und „Wii“ sind Markenzeichen von " -"Nintendo. Dolphin ist in keiner Weise mit Nintendo verbunden." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index 51bb457bfd..9e19a45dab 100644 --- a/Languages/po/dolphin-emu.pot +++ b/Languages/po/dolphin-emu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -76,7 +76,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -110,7 +110,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -130,7 +130,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -141,11 +141,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -162,40 +162,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -203,13 +197,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -221,30 +215,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -256,6 +250,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -325,11 +323,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -338,7 +336,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -346,15 +344,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -362,11 +360,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -374,15 +376,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -390,7 +392,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -398,16 +400,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -415,20 +416,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -442,11 +443,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "" @@ -466,41 +467,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "" @@ -520,11 +521,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -532,23 +533,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -558,19 +559,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -578,7 +583,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -587,23 +592,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "" @@ -611,7 +616,7 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -619,7 +624,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "" @@ -632,24 +637,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -657,31 +662,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "" @@ -691,21 +696,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -717,23 +722,23 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -769,12 +774,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -835,7 +840,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -893,7 +898,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -919,7 +924,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1012,26 +1017,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1054,8 +1059,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1069,7 +1074,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1083,7 +1088,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1099,7 +1104,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1124,7 +1129,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1167,16 +1172,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1249,7 +1248,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1257,15 +1256,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1273,7 +1272,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "" @@ -1283,7 +1282,7 @@ msgstr "" msgid "Add" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1308,43 +1307,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1470,7 +1469,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1479,7 +1478,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1487,34 +1486,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1530,7 +1529,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1538,7 +1537,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1556,7 +1555,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1578,7 +1577,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "" @@ -1604,15 +1603,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1630,7 +1629,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1638,7 +1637,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1650,7 +1649,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1662,16 +1661,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "" @@ -1679,7 +1678,7 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1691,7 +1690,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1712,11 +1711,11 @@ msgstr "" msgid "Audio" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1732,7 +1731,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "" @@ -1741,11 +1740,11 @@ msgstr "" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1753,7 +1752,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1761,15 +1760,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1809,27 +1808,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "" @@ -1872,7 +1871,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "" @@ -1892,15 +1891,15 @@ msgstr "" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "" @@ -1916,10 +1915,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1952,11 +1947,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1966,7 +1961,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2002,67 +1997,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2074,23 +2069,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2107,7 +2102,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2117,19 +2112,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2144,19 +2139,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2190,24 +2190,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2252,11 +2252,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2276,7 +2276,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2307,7 +2307,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2333,7 +2333,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2349,18 +2349,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2369,15 +2369,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2393,11 +2393,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2405,7 +2405,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2413,7 +2413,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2445,7 +2445,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "" @@ -2453,15 +2453,21 @@ msgstr "" msgid "Change Disc" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2479,7 +2485,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2487,11 +2493,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "" @@ -2499,7 +2505,7 @@ msgstr "" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "" @@ -2507,7 +2513,7 @@ msgstr "" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2525,7 +2531,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2537,7 +2543,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "" @@ -2545,15 +2551,15 @@ msgstr "" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2566,7 +2572,7 @@ msgstr "" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2577,18 +2583,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2609,7 +2615,7 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2617,11 +2623,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2649,11 +2655,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2680,7 +2686,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2690,7 +2696,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2703,7 +2709,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2711,11 +2717,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2731,7 +2737,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2746,7 +2752,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2800,7 +2811,7 @@ msgstr "" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2813,27 +2824,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2843,15 +2854,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2871,7 +2882,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2887,7 +2898,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2912,7 +2923,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -2999,8 +3010,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3008,9 +3019,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3018,9 +3029,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3040,8 +3051,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3070,22 +3081,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3093,19 +3104,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3123,8 +3134,8 @@ msgstr "" msgid "Core" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3231,7 +3242,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3247,13 +3258,13 @@ msgstr "" msgid "Country:" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3267,7 +3278,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3284,11 +3295,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3300,42 +3311,42 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3343,15 +3354,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3394,7 +3405,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3402,15 +3413,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3436,7 +3447,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3481,8 +3492,8 @@ msgstr "" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3491,7 +3502,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3530,7 +3541,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "" @@ -3538,7 +3549,7 @@ msgstr "" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3550,11 +3561,11 @@ msgstr "" msgid "Default ISO:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3562,7 +3573,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3571,8 +3582,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "" @@ -3602,12 +3614,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3621,8 +3633,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3634,21 +3646,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3656,7 +3668,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3664,11 +3676,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "" @@ -3686,7 +3698,7 @@ msgstr "" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3694,7 +3706,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3710,11 +3722,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3723,7 +3730,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3731,11 +3738,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3743,11 +3750,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3762,7 +3769,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "" @@ -3786,6 +3799,10 @@ msgstr "" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3816,11 +3833,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3830,7 +3847,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3838,12 +3855,12 @@ msgstr "" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3851,9 +3868,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3865,8 +3882,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -3899,7 +3916,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3913,13 +3930,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3928,7 +3945,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3949,7 +3966,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3971,7 +3988,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3983,6 +4000,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4022,19 +4049,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "" @@ -4042,7 +4069,7 @@ msgstr "" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4050,7 +4077,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4075,44 +4102,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4124,7 +4151,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4132,7 +4159,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "" @@ -4151,7 +4178,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4171,7 +4207,7 @@ msgstr "" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4193,11 +4229,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "" @@ -4223,7 +4259,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4245,34 +4281,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4280,15 +4306,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "" @@ -4300,7 +4330,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4308,15 +4338,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4334,41 +4364,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "" @@ -4376,19 +4398,23 @@ msgstr "" msgid "Enable Speaker Data" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "" @@ -4396,34 +4422,13 @@ msgstr "" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4431,34 +4436,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4489,7 +4501,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4497,7 +4509,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4514,7 +4526,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4540,7 +4552,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4548,7 +4560,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4556,7 +4568,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4575,13 +4587,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "" @@ -4598,7 +4614,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4622,33 +4638,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4661,52 +4677,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "" @@ -4723,7 +4739,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4737,7 +4753,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4828,12 +4844,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4877,11 +4893,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "" @@ -4896,7 +4912,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "" @@ -4924,14 +4940,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "" @@ -4944,7 +4960,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4952,35 +4968,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4989,8 +5005,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "" @@ -5004,11 +5020,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5028,7 +5044,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5049,15 +5065,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5103,15 +5119,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5130,25 +5146,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5168,18 +5184,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5191,21 +5207,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5219,17 +5235,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5237,7 +5253,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5267,15 +5283,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5283,11 +5299,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5334,23 +5350,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5364,7 +5380,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5395,31 +5411,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5470,19 +5486,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5495,7 +5511,7 @@ msgstr "" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5506,7 +5522,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5520,7 +5536,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5528,24 +5544,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5630,7 +5646,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5639,12 +5654,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5664,7 +5679,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "" @@ -5672,7 +5687,7 @@ msgstr "" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "" @@ -5704,11 +5719,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5730,6 +5745,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5745,7 +5766,7 @@ msgstr "" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5755,7 +5776,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5776,11 +5797,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "" @@ -5788,7 +5809,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5808,7 +5829,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5839,7 +5860,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "" @@ -5858,8 +5879,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5867,10 +5888,14 @@ msgstr "" msgid "FullScr" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5911,11 +5936,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5957,7 +5982,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5967,25 +5992,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5997,7 +6022,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6015,22 +6040,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6059,7 +6084,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6068,25 +6093,25 @@ msgstr "" msgid "Game ID:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6099,7 +6124,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6119,11 +6144,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6131,11 +6156,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6152,7 +6177,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6180,7 +6205,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6190,35 +6215,35 @@ msgstr "" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "" @@ -6245,7 +6270,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6254,7 +6279,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "" @@ -6294,7 +6319,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6331,7 +6356,7 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6363,7 +6388,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6372,11 +6397,11 @@ msgstr "" msgid "Hide" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6388,16 +6413,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6420,7 +6452,7 @@ msgstr "" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6428,7 +6460,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6436,11 +6468,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6452,7 +6484,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6462,11 +6494,11 @@ msgstr "" msgid "Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6519,12 +6551,12 @@ msgstr "" msgid "IPL Settings" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "" @@ -6550,14 +6582,14 @@ msgstr "" msgid "Icon" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6574,7 +6606,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6588,14 +6620,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6607,7 +6639,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6639,7 +6671,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6648,7 +6680,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6663,21 +6695,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6755,7 +6796,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6764,7 +6805,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6784,12 +6825,12 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6798,11 +6839,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "" @@ -6816,23 +6857,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "" @@ -6845,11 +6882,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6857,13 +6894,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6872,7 +6909,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6881,7 +6918,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6898,19 +6935,19 @@ msgstr "" msgid "Interface" msgstr "" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6923,19 +6960,19 @@ msgstr "" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6950,7 +6987,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6958,7 +6995,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6974,7 +7011,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6983,11 +7020,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7008,7 +7045,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7024,19 +7061,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" @@ -7044,13 +7081,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "" @@ -7063,11 +7100,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7075,47 +7112,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7127,31 +7164,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "" @@ -7168,12 +7205,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7207,16 +7244,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "" @@ -7237,7 +7274,7 @@ msgstr "" msgid "L-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7245,7 +7282,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7259,23 +7300,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7283,7 +7324,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7291,7 +7332,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7302,7 +7343,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "" @@ -7370,11 +7411,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7383,30 +7424,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "" @@ -7414,11 +7455,11 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7524,23 +7565,23 @@ msgstr "" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7548,54 +7589,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7604,19 +7653,19 @@ msgstr "" msgid "Log Configuration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7628,31 +7677,31 @@ msgstr "" msgid "Logger Outputs" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7664,7 +7713,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7712,7 +7761,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7729,16 +7778,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7750,11 +7799,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7763,7 +7812,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7784,7 +7833,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7812,7 +7861,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7826,7 +7875,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7835,15 +7884,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7855,7 +7904,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7875,7 +7924,7 @@ msgstr "" msgid "Modifier" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7891,8 +7940,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7900,7 +7949,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7912,11 +7961,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7925,23 +7974,10 @@ msgstr "" msgid "Motor" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7952,13 +7988,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7971,10 +8007,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7983,8 +8019,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -7993,7 +8029,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8010,8 +8046,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8054,7 +8090,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8070,27 +8106,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8098,16 +8134,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8132,7 +8168,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8149,7 +8185,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8195,7 +8231,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8203,12 +8239,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "" @@ -8220,7 +8256,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8228,7 +8264,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8241,11 +8277,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8268,7 +8304,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8285,10 +8321,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "" @@ -8300,7 +8336,7 @@ msgstr "" msgid "Not Set" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8320,7 +8356,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8364,26 +8400,26 @@ msgstr "" msgid "Nunchuk" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8435,7 +8471,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "" @@ -8456,18 +8492,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8482,7 +8518,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "" @@ -8490,13 +8526,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8513,7 +8549,7 @@ msgstr "" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8522,7 +8558,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8588,34 +8624,34 @@ msgstr "" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8630,11 +8666,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8650,16 +8686,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8672,11 +8708,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8688,7 +8724,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8722,7 +8758,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8760,15 +8796,15 @@ msgstr "" msgid "Pause" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8784,6 +8820,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8803,7 +8845,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8811,15 +8853,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8837,11 +8879,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8854,7 +8896,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8862,7 +8904,7 @@ msgstr "" msgid "Play" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8874,40 +8916,40 @@ msgstr "" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "" @@ -8924,7 +8966,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8940,7 +8982,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8957,7 +8999,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8973,24 +9015,32 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9013,7 +9063,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9028,7 +9078,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9039,7 +9089,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9073,7 +9123,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "" @@ -9082,23 +9132,29 @@ msgstr "" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9118,18 +9174,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "" @@ -9146,19 +9202,19 @@ msgstr "" msgid "R-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9179,7 +9235,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9187,16 +9243,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9235,8 +9292,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9245,23 +9302,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9294,7 +9351,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9325,7 +9382,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9346,7 +9403,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9354,7 +9415,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "" @@ -9382,20 +9443,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9409,10 +9470,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9422,7 +9489,7 @@ msgstr "" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9454,7 +9521,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9466,7 +9533,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9474,11 +9541,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9487,7 +9554,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9499,7 +9566,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9510,7 +9577,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "" @@ -9546,11 +9613,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9568,27 +9635,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9601,7 +9672,7 @@ msgstr "" msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9609,15 +9680,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9625,23 +9696,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9649,7 +9720,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9684,11 +9755,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "" @@ -9698,9 +9769,9 @@ msgid "Safe" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9710,25 +9781,25 @@ msgstr "" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9742,11 +9813,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9758,7 +9829,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9808,23 +9879,23 @@ msgstr "" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9832,7 +9903,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9844,11 +9915,11 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9859,11 +9930,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9871,11 +9942,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9887,7 +9958,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9904,8 +9975,8 @@ msgid "ScrShot" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "" @@ -9914,7 +9985,7 @@ msgstr "" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9932,7 +10003,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9940,7 +10011,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9974,7 +10045,7 @@ msgstr "" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9985,23 +10056,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10029,7 +10100,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10037,7 +10108,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10098,13 +10169,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10112,7 +10183,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10124,7 +10195,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10132,11 +10203,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10144,12 +10215,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "" @@ -10172,16 +10243,16 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10197,7 +10268,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10227,7 +10298,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10249,7 +10320,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10259,11 +10330,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "" @@ -10291,6 +10362,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10308,52 +10383,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10361,7 +10451,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10383,32 +10473,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10417,7 +10507,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10426,31 +10516,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10458,23 +10548,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10482,27 +10572,27 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "" @@ -10511,27 +10601,27 @@ msgstr "" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10539,72 +10629,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10612,71 +10702,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10698,7 +10821,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10717,12 +10840,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "" @@ -10739,7 +10862,7 @@ msgstr "" msgid "Size" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10749,7 +10872,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10793,6 +10916,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10863,7 +10989,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10877,7 +11003,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "" @@ -10885,19 +11011,19 @@ msgstr "" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10922,11 +11048,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10934,25 +11060,25 @@ msgstr "" msgid "Standard Controller" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10960,7 +11086,7 @@ msgstr "" msgid "Start Recording" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10972,14 +11098,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11011,19 +11137,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11032,7 +11158,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11061,16 +11187,16 @@ msgid "Stick" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11102,11 +11228,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11120,7 +11246,11 @@ msgstr "" msgid "Strum" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11131,18 +11261,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11152,7 +11282,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11165,24 +11295,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11205,16 +11335,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11258,17 +11388,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11276,7 +11406,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11294,7 +11424,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11313,24 +11443,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11340,7 +11470,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11348,7 +11478,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "" @@ -11356,7 +11486,7 @@ msgstr "" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11372,9 +11502,9 @@ msgstr "" msgid "Test" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11387,7 +11517,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11399,7 +11529,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "" @@ -11436,13 +11566,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11457,7 +11587,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11504,7 +11634,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11514,7 +11644,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11593,7 +11723,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11633,7 +11763,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11692,12 +11822,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11717,7 +11847,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11751,7 +11881,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11809,7 +11939,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11831,6 +11961,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11842,8 +11976,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11889,11 +12023,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11909,7 +12043,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12008,7 +12142,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12028,7 +12162,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12068,7 +12202,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12081,7 +12215,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12089,11 +12223,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12116,14 +12250,14 @@ msgstr "" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "" @@ -12132,12 +12266,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12162,7 +12296,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12218,7 +12352,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12226,7 +12360,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "" @@ -12234,8 +12368,8 @@ msgstr "" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12277,7 +12411,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "" @@ -12297,8 +12431,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12325,7 +12459,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "" @@ -12335,7 +12469,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12349,7 +12483,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12361,7 +12495,7 @@ msgstr "" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12379,14 +12513,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12394,7 +12528,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12403,7 +12537,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12466,11 +12600,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "" @@ -12488,28 +12622,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12580,11 +12714,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12596,20 +12730,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12636,7 +12758,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12650,8 +12772,8 @@ msgstr "" msgid "Up" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "" @@ -12659,11 +12781,11 @@ msgstr "" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12706,7 +12828,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12714,15 +12836,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12730,15 +12852,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12772,7 +12900,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12787,10 +12915,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12799,14 +12934,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13069,8 +13204,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "" @@ -13080,7 +13215,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13092,28 +13227,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13158,7 +13293,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13166,7 +13301,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13174,7 +13309,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13206,25 +13341,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13232,19 +13367,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13252,7 +13387,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13260,13 +13395,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13275,11 +13404,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13293,10 +13422,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13329,39 +13459,39 @@ msgstr "" msgid "Write to Window" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13370,9 +13500,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13400,14 +13530,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13484,7 +13614,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "" @@ -13504,16 +13634,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13522,7 +13652,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13571,7 +13701,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13579,7 +13709,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13587,7 +13717,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13635,16 +13765,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13662,7 +13782,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13727,7 +13847,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/el.po b/Languages/po/el.po index f9602f866d..15bc1b1d39 100644 --- a/Languages/po/el.po +++ b/Languages/po/el.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: MRCYO Dev, 2023\n" "Language-Team: Greek (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -87,7 +87,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -121,7 +121,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Αναθεώρηση %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -141,7 +141,7 @@ msgstr "%1 (αργή)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -152,11 +152,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Ρυθμίσεις Γραφικών" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -173,40 +173,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 έχει φύγει" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -214,13 +208,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -232,30 +226,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Κανονική Ταχύτητα)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -267,6 +261,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -336,11 +334,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Περί" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -349,7 +347,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -357,15 +355,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Ρυθμίσεις Ήχου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Αυτόματη Ενημέρωση:" @@ -373,11 +371,15 @@ msgstr "&Αυτόματη Ενημέρωση:" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Σημεία Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Ιχνηλάτης Σφαλμάτων" @@ -385,15 +387,15 @@ msgstr "&Ιχνηλάτης Σφαλμάτων" msgid "&Cancel" msgstr "&Ακύρωση" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Έλεγχος για Ενημερώσεις..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -401,7 +403,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -409,16 +411,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Ρυθμίσεις Χειριστηρίων" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -426,20 +427,20 @@ msgstr "" msgid "&Create..." msgstr "&Δημιουργία..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Διαγραφή" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -453,11 +454,11 @@ msgstr "" msgid "&Edit..." msgstr "&Επεξεργασία..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Εξαγωγή Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Εξομοίωση" @@ -477,41 +478,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Αρχείο" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Γραμματοσειρά..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Προώθηση ανά Καρέ" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Ρυθμίσεις Γραφικών" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Βοήθεια" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Ρυθμίσεις Πλήκτρων Συντόμευσης" @@ -531,11 +532,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -543,23 +544,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Γλώσσα:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Φόρτωση Σημείου Αποθήκευσης" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -569,19 +570,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Μνήμη" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Ταινία" @@ -589,7 +594,7 @@ msgstr "&Ταινία" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Δίκτυο" @@ -598,23 +603,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Άνοιγμα..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Ρυθμίσεις" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Παύση" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Αναπαραγωγή" @@ -622,7 +627,7 @@ msgstr "&Αναπαραγωγή" msgid "&Properties" msgstr "&Ιδιότητες" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Μόνο Για Ανάγνωση" @@ -630,7 +635,7 @@ msgstr "&Μόνο Για Ανάγνωση" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Καταχωρητές" @@ -643,24 +648,24 @@ msgstr "&Αφαίρεση" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Επανεκκίνηση" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -668,31 +673,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Όριο Ταχύτητας:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Διακοπή" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Θέμα:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Εργαλεία" @@ -702,21 +707,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Ιστοσελίδα" @@ -728,23 +733,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ναι" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -780,12 +785,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -846,7 +851,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -904,7 +909,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -930,7 +935,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1023,26 +1028,26 @@ msgstr "< Λιγότερο-από" msgid "" msgstr "<Τίποτα>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "<Γλώσσα Συστήματος>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1068,8 +1073,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Περισσότερο-από" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1083,7 +1088,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1097,7 +1102,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1113,7 +1118,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1138,7 +1143,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Κωδικός AR" @@ -1181,16 +1186,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1263,7 +1262,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1271,15 +1270,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Ενεργά νήματα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1287,7 +1286,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Προσαρμογέας Εντοπίστηκε" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Προσαρμογέας:" @@ -1297,7 +1296,7 @@ msgstr "Προσαρμογέας:" msgid "Add" msgstr "Προσθήκη" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1322,43 +1321,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Προσθήκη..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Διεύθυνση" @@ -1484,7 +1483,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1493,7 +1492,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1501,34 +1500,34 @@ msgid "All Files" msgstr "Όλα τα Αρχεία" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Όλα τα Αρχεία (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Όλα τα GC/Wii αρχεία" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1544,7 +1543,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Να Επιτρέπονται Ασύμφωνες Ρυθμίσεις Περιοχών" @@ -1552,7 +1551,7 @@ msgstr "Να Επιτρέπονται Ασύμφωνες Ρυθμίσεις Πε msgid "Allow Usage Statistics Reporting" msgstr "Άδεια Μετάδοσης Στατιστικών Χρήσης " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1570,7 +1569,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Πάντοτε" @@ -1592,7 +1591,7 @@ msgstr "" msgid "Anaglyph" msgstr "Ανάγλυφο" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Ανάλυση" @@ -1618,15 +1617,15 @@ msgstr "Εξομάλυνση Ορίων:" msgid "Any Region" msgstr "Οποιαδήποτε Περιοχή" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1644,7 +1643,7 @@ msgstr "Apploader Ημερομηνία:" msgid "Apply" msgstr "Εφαρμογή" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1652,7 +1651,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το '%1';" @@ -1664,7 +1663,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ msgid "Are you sure you want to delete this pack?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το pack;" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Είστε σίγουροι ότι θέλετε να εγκαταλείψετε το NetPlay;" @@ -1676,16 +1675,16 @@ msgstr "Είστε σίγουροι;" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Αναλογία Οθόνης" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Αναλογία Οθόνης:" @@ -1693,7 +1692,7 @@ msgstr "Αναλογία Οθόνης:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1705,7 +1704,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Ορισμός Θυρών Χειριστηρίων" @@ -1726,11 +1725,11 @@ msgstr "Σύνδεση MotionPlus" msgid "Audio" msgstr "Ήχος" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Backend Ήχου:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Ρυθμίσεις Ελαστικότητας Ήχου" @@ -1746,7 +1745,7 @@ msgstr "Συγγραφέας" msgid "Authors" msgstr "Συγγραφείς" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Αυτόματα" @@ -1755,11 +1754,11 @@ msgstr "Αυτόματα" msgid "Auto (Multiple of 640x528)" msgstr "Αυτόματα (Πολλαπλάσιο του 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Ρυθμίσεις Αυτόματης Ενημέρωσης" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1767,7 +1766,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρου" @@ -1775,15 +1774,15 @@ msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρο msgid "Auto-Hide" msgstr "Αυτόματη Απόκρυψη" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1823,27 +1822,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP Καταχωρητές" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Backend Ρυθμίσεις" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -1886,7 +1885,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Εικονίδιο" @@ -1906,15 +1905,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Βασικές" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Βασικές Ρυθμίσεις" @@ -1930,10 +1929,6 @@ msgstr "" msgid "Battery" msgstr "Μπαταρία" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (μια φορά τον μήνα)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1966,11 +1961,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1980,7 +1975,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2016,67 +2011,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Πλήρης Οθόνη Χωρίς Περιθώρια " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Βάση" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2088,23 +2083,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2121,7 +2116,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2131,19 +2126,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2158,19 +2153,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2204,24 +2204,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Μέγεθος Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2266,11 +2266,11 @@ msgstr "" msgid "C Stick" msgstr "Stick Κάμερας " -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP Καταχωρητές" @@ -2290,7 +2290,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (πιο αργή)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2321,7 +2321,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2347,7 +2347,7 @@ msgstr "Κάμερα 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2363,18 +2363,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Άκυρο" @@ -2383,15 +2383,15 @@ msgstr "Άκυρο" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2407,11 +2407,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Δεν μπορεί να βρεθεί το GC IPL." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2419,7 +2419,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2427,7 +2427,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Δεν μπορεί να ξεκινήσει το παιχνίδι, γιατί το GC IPL δεν βρέθηκε." @@ -2459,7 +2459,7 @@ msgstr "" msgid "Change &Disc" msgstr "Αλλαγή &Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Αλλαγή &Δίσκου..." @@ -2467,15 +2467,21 @@ msgstr "Αλλαγή &Δίσκου..." msgid "Change Disc" msgstr "Αλλαγή Δίσκου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Αυτόματη Αλλαγή Δίσκων" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2493,7 +2499,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Η αλλαγή cheats θα τεθεί σε ισχύ μόνο όταν επανεκκινηθεί το παιχνίδι." @@ -2501,11 +2507,11 @@ msgstr "Η αλλαγή cheats θα τεθεί σε ισχύ μόνο όταν msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Συνομιλία" @@ -2513,7 +2519,7 @@ msgstr "Συνομιλία" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Αναζήτηση Cheat" @@ -2521,7 +2527,7 @@ msgstr "Αναζήτηση Cheat" msgid "Cheats Manager" msgstr "Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Έλεγχος NAND..." @@ -2539,7 +2545,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2551,7 +2557,7 @@ msgstr "Κίνα" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Επιλέξτε ένα αρχείο για άνοιγμα" @@ -2559,15 +2565,15 @@ msgstr "Επιλέξτε ένα αρχείο για άνοιγμα" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2580,7 +2586,7 @@ msgstr "Επιλέξτε τον φάκελο προς αποσυμπίεση" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2591,18 +2597,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Καθάρισ." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2623,7 +2629,7 @@ msgstr "" msgid "Close" msgstr "Κλείσιμο" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ρυ&θμίσεις" @@ -2631,11 +2637,11 @@ msgstr "Ρυ&θμίσεις" msgid "Code" msgstr "Κώδικας" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2663,11 +2669,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2694,7 +2700,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2704,7 +2710,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Συμπίεση" @@ -2717,7 +2723,7 @@ msgstr "Επίπεδο Συμπίεσης:" msgid "Compression:" msgstr "Συμπίεση:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2725,11 +2731,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2745,7 +2751,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2760,7 +2766,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2814,7 +2825,7 @@ msgstr "Ρυθμίσεις" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Ρύθμιση Dolphin" @@ -2827,27 +2838,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Επιβεβαίωση" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Επιβεβαίωση αλλαγής backend " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Επιβεβαίωση Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Επιβεβαίωση" @@ -2857,15 +2868,15 @@ msgstr "Επιβεβαίωση" msgid "Connect" msgstr "Σύνδεση" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Σύνδεση Σανίδας Ισορροπίας" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Σύνδεση Πληκτρολογίου USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Σύνδεση Wii Remote %1" @@ -2885,7 +2896,7 @@ msgstr "Σύνδεση Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Σύνδεση Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Σύνδεση Wii Remotes" @@ -2901,7 +2912,7 @@ msgstr "Σύνδεση στο Internet και εκτέλεση ενημέρωσ msgid "Connected" msgstr "Συνδεδεμένο" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2926,7 +2937,7 @@ msgstr "" msgid "Control Stick" msgstr "Stick Ελέγχου " -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3013,8 +3024,8 @@ msgstr "" msgid "Convergence:" msgstr "Σύγκλιση:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3022,9 +3033,9 @@ msgstr "" msgid "Convert" msgstr "Μετατροπή" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3032,9 +3043,9 @@ msgstr "" msgid "Convert File..." msgstr "Μετατροπή Αρχείου..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3054,8 +3065,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Μετατροπή..." @@ -3086,22 +3097,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Αντιγραφή" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3109,19 +3120,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3139,8 +3150,8 @@ msgstr "" msgid "Core" msgstr "Πυρήνας" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3247,7 +3258,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3263,13 +3274,13 @@ msgstr "Αδυναμία ανάγνωσης αρχείου." msgid "Country:" msgstr "Χώρα:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3283,7 +3294,7 @@ msgstr "Δημιουργία Νέας Κάρτας Μνήμης" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3300,11 +3311,11 @@ msgstr "Δημιουργός:" msgid "Critical" msgstr "Κρίσιμο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Κόψιμο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3316,42 +3327,42 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Τρέχουσα Περιοχή" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Τρέχων παιχνίδι" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Τρέχων νήμα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3359,15 +3370,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3410,7 +3421,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Μηχανή Εξομοίωσης DSP" @@ -3418,15 +3429,15 @@ msgstr "Μηχανή Εξομοίωσης DSP" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3452,7 +3463,7 @@ msgstr "Χαλάκι Χορού" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3497,8 +3508,8 @@ msgstr "Νεκρή Ζώνη" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3507,7 +3518,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Δεκαδικός" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Ποιότητα Αποκωδικοποίησης:" @@ -3546,7 +3557,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Προεπιλ." @@ -3554,7 +3565,7 @@ msgstr "Προεπιλ." msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Προεπιλεγμένη Συσκευή" @@ -3566,11 +3577,11 @@ msgstr "" msgid "Default ISO:" msgstr "Προεπιλεγμένο ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3578,7 +3589,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3587,8 +3598,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Διαγραφή" @@ -3618,12 +3630,12 @@ msgstr "" msgid "Depth:" msgstr "Βάθος:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Περιγραφή" @@ -3637,8 +3649,8 @@ msgstr "Περιγραφή:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3650,21 +3662,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3672,7 +3684,7 @@ msgstr "" msgid "Detect" msgstr "Ανίχνευση" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3680,11 +3692,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (πολλαπλές φορές την ημέρα)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Συσκευή" @@ -3702,7 +3714,7 @@ msgstr "Ρυθμίσεις Συσκευής" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Συσκευή:" @@ -3710,7 +3722,7 @@ msgstr "Συσκευή:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" "Σκοτεινιάζει την οθόνη μετά από έλλειψη δραστηριότητας για πέντε λεπτά." @@ -3727,11 +3739,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Απενεργοποίηση Bounding Box" @@ -3740,7 +3747,7 @@ msgstr "Απενεργοποίηση Bounding Box" msgid "Disable Copy Filter" msgstr "Απενεργοποίηση Φίλτρου Αντιγραφής " -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" @@ -3748,11 +3755,11 @@ msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" msgid "Disable Emulation Speed Limit" msgstr "Απενεργοποίηση Ορίου Ταχύτητας Εξομοίωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3760,11 +3767,11 @@ msgstr "" msgid "Disable Fog" msgstr "Απενεργοποίηση Ομίχλης" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Απενεργοποίηση JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3779,7 +3786,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Δίσκος" @@ -3803,6 +3816,10 @@ msgstr "Δίσκος" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3835,11 +3852,11 @@ msgstr "" "Εξουσιοδοτείτε το Dolphin να αναφέρει πληροφορίες στους προγραμματιστές του " "Dolphin;" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3849,7 +3866,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Θέλετε να σταματήσετε την τρέχουσα εξομοίωση;" @@ -3857,12 +3874,12 @@ msgstr "Θέλετε να σταματήσετε την τρέχουσα εξο msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II Αποκωδικοποιητής" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3870,9 +3887,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3884,8 +3901,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Ταινίες (*.dtm)" @@ -3920,7 +3937,7 @@ msgstr "" "Το Dolphin είναι ένας ελεύθερος και ανοικτού κώδικα εξομοιωτής για GameCube " "και Wii." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3934,13 +3951,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Το σύστημα cheat του Dolphin είναι επί του παρόντος απενεργοποιημένο." @@ -3949,7 +3966,7 @@ msgstr "Το σύστημα cheat του Dolphin είναι επί του παρ msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Να Μην Γίνει Ενημέρωση" @@ -3970,7 +3987,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3992,7 +4009,7 @@ msgstr "Λήψη Κωδικών" msgid "Download Codes from the WiiRD Database" msgstr "Λήψη Κωδικών από την WiiRD Database" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" "Λήψη Εξώφυλλων Παιχνιδιών από GameTDB.com για Χρήση σε Προβολή Πλέγματος" @@ -4005,6 +4022,16 @@ msgstr "Η λήψη ολοκληρώθηκε" msgid "Downloaded %1 codes. (added %2)" msgstr "Ελήφθησαν %1 κωδικοί. (προστέθηκαν %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4044,19 +4071,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Εξαγωγή Ήχου" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Εξαγωγή EFB Target" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Εξαγωγή Καρέ" @@ -4064,7 +4091,7 @@ msgstr "Εξαγωγή Καρέ" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4072,7 +4099,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4097,44 +4124,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Ολλανδικά" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "Έ&ξοδος" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4146,7 +4173,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4154,7 +4181,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Ενημερώσεις Μνήμης Νωρίς" @@ -4173,7 +4200,16 @@ msgstr "Ανατολική Ασία" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4193,7 +4229,7 @@ msgstr "Εφέ" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4215,11 +4251,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Κενή" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Το νήμα εξομοίωσης εκτελείται ήδη" @@ -4245,7 +4281,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4267,34 +4303,24 @@ msgstr "Ταχύτητα Εξομοίωσης" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Ενεργοποίηση" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Ενεργοποίηση Ελαστικότητας Ήχου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Ενεργοποίηση Cheat" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4302,15 +4328,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Ενεργοποίηση Διπλού Πυρήνα" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Ενεργοποίηση Διπλού Πυρήνα (επιτάχυνση)" @@ -4322,7 +4352,7 @@ msgstr "Ενεργοποίηση Παράκαμψης Εξομοιωμένου C msgid "Enable Emulated Memory Size Override" msgstr "Ενεργοποίηση Παράκαμψης Εξομοιωμένου Μεγέθους Μνήμης" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4330,15 +4360,15 @@ msgstr "" msgid "Enable FPRF" msgstr "Ενεργοποίηση FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4356,41 +4386,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Ενεργοποίηση MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Ενεργοποίηση Προοδευτικής Σάρωσης" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Ενεργοποίηση Δόνησης" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Ενεργοποίηση Προφύλαξης Οθόνης" @@ -4398,19 +4420,23 @@ msgstr "Ενεργοποίηση Προφύλαξης Οθόνης" msgid "Enable Speaker Data" msgstr "Ενεργοποίηση Δεδομένων Ηχείου" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Ενεργοποίηση Wireframe" @@ -4418,34 +4444,13 @@ msgstr "Ενεργοποίηση Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4453,34 +4458,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4513,7 +4525,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4521,7 +4533,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4538,7 +4550,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4566,7 +4578,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4574,7 +4586,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4582,7 +4594,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4601,13 +4613,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Αγγλικά" @@ -4624,7 +4640,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4648,33 +4664,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4687,52 +4703,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Σφάλμα" @@ -4749,7 +4765,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4765,7 +4781,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4856,12 +4872,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Ευρώπη" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4905,11 +4921,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Πειραματικός" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Εξαγωγή Όλων Των Αποθηκεύσεων Wii" @@ -4924,7 +4940,7 @@ msgstr "Η Εξαγωγή Απέτυχε" msgid "Export Recording" msgstr "Εξαγωγή Εγγραφής" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Εξαγωγή Εγγραφής..." @@ -4952,14 +4968,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Επέκταση" @@ -4972,7 +4988,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4980,35 +4996,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Εξαγωγή Ολόκληρου Δίσκου..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Εξαγωγή Αρχείου..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Εξαγωγή Αρχείων..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Εξαγωγή Αρχείων Συστήματος..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Εξαγωγή Όλων Των Αρχείων..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -5017,8 +5033,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Αναπαραγωγή FIFO" @@ -5032,11 +5048,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5056,7 +5072,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5077,15 +5093,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5131,15 +5147,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5158,25 +5174,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5196,18 +5212,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5219,21 +5235,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5247,17 +5263,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5265,7 +5281,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5295,15 +5311,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5311,11 +5327,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5362,23 +5378,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5392,7 +5408,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5423,31 +5439,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5498,19 +5514,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Αποτυχία" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5523,7 +5539,7 @@ msgstr "Γρήγορη" msgid "Fast Depth Calculation" msgstr "Γρήγορος Υπολογισμός Βάθους" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5534,7 +5550,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5548,7 +5564,7 @@ msgstr "Πληροφορίες Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5556,24 +5572,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Πληροφορίες Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Όνομα Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Διαδρομή Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Μέγεθος Αρχείου" @@ -5658,7 +5674,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5667,12 +5682,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5692,7 +5707,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Επιβολή 16:9" @@ -5700,7 +5715,7 @@ msgstr "Επιβολή 16:9" msgid "Force 24-Bit Color" msgstr "Επιβολή Χρώματος 24-Bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Επιβολή 4:3" @@ -5732,11 +5747,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5758,6 +5773,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5773,7 +5794,7 @@ msgstr "Μπροστά" msgid "Forward port (UPnP)" msgstr "Προώθηση θύρας (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5783,7 +5804,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5804,11 +5825,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Εύρος Καρέ" @@ -5816,7 +5837,7 @@ msgstr "Εύρος Καρέ" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Καρέ για Εγγραφή:" @@ -5836,7 +5857,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5867,7 +5888,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Γαλλικά" @@ -5886,8 +5907,8 @@ msgid "From" msgstr "Από" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Από:" @@ -5895,10 +5916,14 @@ msgstr "Από:" msgid "FullScr" msgstr "Πλήρης Οθόνη" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5939,11 +5964,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5985,7 +6010,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "GPU Αποκωδικοποίηση Υφών" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5995,25 +6020,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6025,7 +6050,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6043,22 +6068,22 @@ msgstr "" msgid "Game" msgstr "Παιχνίδι" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Carts (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6087,7 +6112,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID Παιχνιδιού" @@ -6096,25 +6121,25 @@ msgstr "ID Παιχνιδιού" msgid "Game ID:" msgstr "ID Παιχνιδιού:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Κατάσταση Παιχνιδιού" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6127,7 +6152,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6147,11 +6172,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6159,11 +6184,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube Χειριστήρια" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6180,7 +6205,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6208,7 +6233,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Κωδικοί Gecko" @@ -6218,35 +6243,35 @@ msgstr "Κωδικοί 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Γενικά" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Γερμανικά" @@ -6273,7 +6298,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6282,7 +6307,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Γραφικά" @@ -6322,7 +6347,7 @@ msgstr "Αριστερό Πράσινο" msgid "Green Right" msgstr "Δεξί Πράσινο" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Προβολή Πλέγματος" @@ -6359,7 +6384,7 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6391,7 +6416,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6400,11 +6425,11 @@ msgstr "" msgid "Hide" msgstr "Απόκρυψη" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6416,16 +6441,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Μέγιστη" @@ -6448,7 +6480,7 @@ msgstr "Host" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6456,7 +6488,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6464,11 +6496,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6480,7 +6512,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6490,11 +6522,11 @@ msgstr "" msgid "Hotkeys" msgstr "Πλήκτρα Συντόμευσης" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Τα Πλήκτρα Συντόμευσης Απαιτούν Εστίαση Παραθύρου" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6547,12 +6579,12 @@ msgstr "" msgid "IPL Settings" msgstr "Ρυθμίσεις IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Ευαισθησία IR:" @@ -6578,14 +6610,14 @@ msgstr "" msgid "Icon" msgstr "Εικονίδιο" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6602,7 +6634,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6616,14 +6648,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6635,7 +6667,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6667,7 +6699,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6676,7 +6708,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6691,21 +6723,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6783,7 +6824,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6792,7 +6833,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6812,12 +6853,12 @@ msgstr "Πληροφορίες" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Πληροφορίες" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6826,11 +6867,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Είσοδος" @@ -6844,23 +6885,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Εισαγωγή Κάρτας SD" @@ -6873,11 +6910,11 @@ msgstr "Εγκατάσταση" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Εγκατάσταση Ενημέρωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Εγκατάσταση WAD..." @@ -6885,13 +6922,13 @@ msgstr "Εγκατάσταση WAD..." msgid "Install to the NAND" msgstr "Εγκατάσταση στην NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6900,7 +6937,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6909,7 +6946,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6926,19 +6963,19 @@ msgstr "" msgid "Interface" msgstr "Διεπαφή" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6951,19 +6988,19 @@ msgstr "Εσωτερικό Σφάλμα LZO - αποτυχία συμπίεση msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6978,7 +7015,7 @@ msgstr "Εσωτερική Ανάλυση" msgid "Internal Resolution:" msgstr "Εσωτερική Ανάλυση:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6986,7 +7023,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (πιο αργή απ' όλες)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7002,7 +7039,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7011,11 +7048,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7036,7 +7073,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7052,19 +7089,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Μη έγκυρο αρχείο εγγραφής" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Μη έγκυρες παράμετροι αναζήτησης (δεν επιλέχθηκε αντικείμενο)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Μη έγκυρο string αναζήτησης (δεν μπορεί να γίνει μετατροπή σε νούμερο)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Μη έγκυρο string αναζήτησης (μόνο ζυγά μήκη string υποστηρίζονται)" @@ -7072,13 +7109,13 @@ msgstr "Μη έγκυρο string αναζήτησης (μόνο ζυγά μήκ msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Ιταλικά" @@ -7091,11 +7128,11 @@ msgstr "Ιταλία" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7103,47 +7140,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7155,31 +7192,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Ιαπωνία" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Ιαπωνικά" @@ -7196,12 +7233,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Διατήρηση Παραθύρου στην Κορυφή" @@ -7235,16 +7272,16 @@ msgstr "Πλήκτρα" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Διώξιμο Παίκτη" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Κορέα" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Κορεάτικα" @@ -7265,7 +7302,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Αναλογική" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7273,7 +7310,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7287,23 +7328,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Αδράνεια:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7311,7 +7352,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7319,7 +7360,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7330,7 +7371,7 @@ msgstr "Αριστερά" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Αριστερό Stick" @@ -7401,11 +7442,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Λίστα Στηλών" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Προβολή Λίστας" @@ -7414,30 +7455,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Φόρτωσ." -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Φόρτωση Τροποποιημένων Υφών" @@ -7445,11 +7486,11 @@ msgstr "Φόρτωση Τροποποιημένων Υφών" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Φόρτωση Κυρίως Μενού GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7555,23 +7596,23 @@ msgstr "Φόρτωση Σημείου Αποθήκευσης 8" msgid "Load State Slot 9" msgstr "Φόρτωση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7579,54 +7620,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Φόρτωση..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Καταγραφή" @@ -7635,19 +7684,19 @@ msgstr "Καταγραφή" msgid "Log Configuration" msgstr "Ρυθμίσεις Καταγραφής" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Καταγραφή σε Αρχείο Χρόνου Απόδοσης" @@ -7659,31 +7708,31 @@ msgstr "Τύποι Καταγραφής" msgid "Logger Outputs" msgstr "Έξοδοι Καταγραφής" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Ελάχιστη" @@ -7695,7 +7744,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7743,7 +7792,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Δημιουργός" @@ -7760,16 +7809,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Διαχείριση NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7781,11 +7830,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7794,7 +7843,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" "Μπορεί να προκαλέσει καθυστερήσεις στο Μενού του Wii και σε ορισμένα " @@ -7817,7 +7866,7 @@ msgstr "" msgid "Memory Card" msgstr "Κάρτα Μνήμης" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Διαχειριστής Καρτών Μνήμης" @@ -7845,7 +7894,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7859,7 +7908,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Μικρόφωνο" @@ -7868,15 +7917,15 @@ msgstr "Μικρόφωνο" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Διάφορα" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Διάφορες Ρυθμίσεις" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7888,7 +7937,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7908,7 +7957,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7924,8 +7973,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7933,7 +7982,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7945,11 +7994,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7958,23 +8007,10 @@ msgstr "" msgid "Motor" msgstr "Μοτέρ" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7985,13 +8021,13 @@ msgstr "" msgid "Movie" msgstr "Ταινία" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8004,10 +8040,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Έλεγχος NAND " @@ -8016,8 +8052,8 @@ msgstr "Έλεγχος NAND " msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8026,7 +8062,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8043,8 +8079,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8087,7 +8123,7 @@ msgstr "Αρχική (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8103,27 +8139,27 @@ msgstr "" msgid "Netherlands" msgstr "Ολλανδία" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8131,16 +8167,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8165,7 +8201,7 @@ msgstr "Νέα Αναζήτηση" msgid "New Tag..." msgstr "Νέα Ετικέτα..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8182,7 +8218,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8228,7 +8264,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8236,12 +8272,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Μη διαθέσιμη περιγραφή" @@ -8253,7 +8289,7 @@ msgstr "Κανένα σφάλμα." msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8261,7 +8297,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8274,11 +8310,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Δεν εντοπίστηκαν προβλήματα." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8301,7 +8337,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8318,10 +8354,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Καμία" @@ -8333,7 +8369,7 @@ msgstr "Βόρεια Αμερική" msgid "Not Set" msgstr "Μη Ορισμένο" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8353,7 +8389,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8397,26 +8433,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8468,7 +8504,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Εύρος Αντικειμένου" @@ -8489,18 +8525,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8515,7 +8551,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online &Εγχειρίδια " @@ -8523,13 +8559,13 @@ msgstr "Online &Εγχειρίδια " msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8546,7 +8582,7 @@ msgstr "Άνοιγμα" msgid "Open &Containing Folder" msgstr "Άνοιγμα &Περιεχόμενου Φακέλου" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8555,7 +8591,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8621,34 +8657,34 @@ msgstr "Πορτοκαλί" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8663,11 +8699,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8683,16 +8719,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Α&ναπαραγωγή Εγγραφής Χειρισμών..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8705,11 +8741,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8721,7 +8757,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8755,7 +8791,7 @@ msgstr "Παθητική" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Κωδικός" @@ -8793,15 +8829,15 @@ msgstr "Φάκελοι" msgid "Pause" msgstr "Παύση" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Παύση στο Τέλος της Ταινίας" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Παύση στην Απώλεια Εστίασης Παραθύρου" @@ -8817,6 +8853,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8836,7 +8878,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Φωτισμός ανά Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστήματος" @@ -8844,15 +8886,15 @@ msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστή msgid "Perform System Update" msgstr "Εκτέλεση Ενημέρωσης Συστήματος" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8870,11 +8912,11 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -8887,7 +8929,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Πλατφόρμα" @@ -8895,7 +8937,7 @@ msgstr "Πλατφόρμα" msgid "Play" msgstr "Αναπαραγωγή" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8907,40 +8949,40 @@ msgstr "Αναπαραγωγή Εγγραφής" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Ρυθμίσεις Αναπαραγωγής" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Παίχτες" @@ -8957,7 +8999,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8973,7 +9015,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8990,7 +9032,7 @@ msgstr "Θύρα:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9006,24 +9048,32 @@ msgstr "Post-Processing Εφέ:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Προφόρτωση Τροποποιημένων Υφών" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9046,7 +9096,7 @@ msgstr "" msgid "Pressure" msgstr "Πίεση" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9061,7 +9111,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9072,7 +9122,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9106,7 +9156,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Προφίλ" @@ -9115,23 +9165,29 @@ msgstr "Προφίλ" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Δημόσιος" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Εκκαθάριση Μνήμης Cache Λίστας Παιχνιδιών " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9151,18 +9207,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Ερώτηση" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Έξοδος" @@ -9179,19 +9235,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Αναλογική" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9212,7 +9268,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9220,16 +9276,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9268,8 +9325,8 @@ msgstr "Πραγματικό Wii Remote" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9278,23 +9335,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Εγγραφή" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Ρυθμίσεις Εγγραφής" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Εγγραφή..." @@ -9327,7 +9384,7 @@ msgstr "Redump.org Κατάσταση:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9358,7 +9415,7 @@ msgid "Refreshing..." msgstr "Ανανέωση..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Περιοχή" @@ -9379,7 +9436,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Υπενθύμιση Αργότερα" @@ -9387,7 +9448,7 @@ msgstr "Υπενθύμιση Αργότερα" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Αφαίρεση" @@ -9415,20 +9476,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Αναπαραγωγή στο Κεντρικό Παράθυρο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9442,10 +9503,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9455,7 +9522,7 @@ msgstr "Επανεκκίνηση" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9487,7 +9554,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9499,7 +9566,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Απαιτείται Επανεκκίνηση" @@ -9507,11 +9574,11 @@ msgstr "Απαιτείται Επανεκκίνηση" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Επανάληψη" @@ -9520,7 +9587,7 @@ msgstr "Επανάληψη" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9532,7 +9599,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9543,7 +9610,7 @@ msgstr "Δεξιά" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Δεξί Stick" @@ -9579,11 +9646,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9601,27 +9668,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9634,7 +9705,7 @@ msgstr "" msgid "Rumble" msgstr "Δόνηση" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9642,15 +9713,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9658,23 +9729,23 @@ msgstr "" msgid "Russia" msgstr "Ρωσία" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD Κάρτα" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9682,7 +9753,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9717,11 +9788,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Απ&οθήκευση Σημείου Αποθήκευσης" @@ -9731,9 +9802,9 @@ msgid "Safe" msgstr "Ασφαλής" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9743,25 +9814,25 @@ msgstr "Αποθήκ." msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9775,11 +9846,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9791,7 +9862,7 @@ msgstr "Αποθήκευση Παλαιότερου Σημείου" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9841,23 +9912,23 @@ msgstr "Αποθήκευση Σημείου Αποθήκευσης 8" msgid "Save State Slot 9" msgstr "Αποθήκευση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9865,7 +9936,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9877,11 +9948,11 @@ msgstr "" msgid "Save as..." msgstr "Αποθήκευση ως..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9892,11 +9963,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9904,11 +9975,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Αποθήκευση..." @@ -9920,7 +9991,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9937,8 +10008,8 @@ msgid "ScrShot" msgstr "Στιγμιότυπο" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Αναζήτηση" @@ -9947,7 +10018,7 @@ msgstr "Αναζήτηση" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9965,7 +10036,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9973,7 +10044,7 @@ msgstr "" msgid "Search games..." msgstr "Αναζήτηση παιχνιδιών..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -10007,7 +10078,7 @@ msgstr "Επιλογή" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10018,23 +10089,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10062,7 +10133,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Επιλογή Θέσης %1 - %2" @@ -10070,7 +10141,7 @@ msgstr "Επιλογή Θέσης %1 - %2" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Επιλογή Θέσης Αποθήκευσης" @@ -10131,13 +10202,13 @@ msgstr "Επιλέξτε ένα Φάκελο" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Επιλέξτε ένα Αρχείο" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10145,7 +10216,7 @@ msgstr "" msgid "Select a Game" msgstr "Επιλέξτε ένα Παιχνίδι" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10157,7 +10228,7 @@ msgstr "" msgid "Select a game" msgstr "Επιλέξτε ένα παιχνίδι" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Επιλέξτε ένα αρχείο για εγκατάσταση στην NAND" @@ -10165,11 +10236,11 @@ msgstr "Επιλέξτε ένα αρχείο για εγκατάσταση στ msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10177,12 +10248,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Επιλέξτε αρχείο αποθήκευσης" @@ -10205,16 +10276,16 @@ msgstr "Το επιλεγμένο προφίλ χειρισμού δεν υπά #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10230,7 +10301,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10260,7 +10331,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10282,7 +10353,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10292,11 +10363,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Αποστολή" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Θέση Sensor Bar:" @@ -10324,6 +10395,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10341,23 +10416,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10367,29 +10442,44 @@ msgstr "" "(576i) για τα PAL παιχνίδια.\n" "Μπορεί να μην λειτουργεί για όλα τα παιχνίδια." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Ορίζει την γλώσσα συστήματος του Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Ρυθμίσεις" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Αδυναμία δημιουργίας αρχείου setting.txt" @@ -10397,7 +10487,7 @@ msgstr "SetupWiiMemory: Αδυναμία δημιουργίας αρχείου s msgid "Severity" msgstr "Σοβαρότητα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10419,32 +10509,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Εμφάνιση Παραθύρου Κατα&γραφής " -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Εμφάνιση Γραμμής &Εργαλείων" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Εμφάνιση Ενεργού Τίτλου στον Τίτλο Παραθύρου" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Εμφάνιση Αυστραλίας" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Εμφάνιση Τρέχοντος Παιχνιδιού σε Discord" @@ -10453,7 +10543,7 @@ msgstr "Εμφάνιση Τρέχοντος Παιχνιδιού σε Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Εμφάνιση ELF/DOL" @@ -10462,31 +10552,31 @@ msgstr "Εμφάνιση ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Εμφάνιση FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Εμφάνιση Μετρητή Καρέ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Εμφάνιση Γαλλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Εμφάνιση GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Εμφάνιση Γερμανίας" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10494,23 +10584,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Εμφάνιση Προβολής Χειρισμών" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Εμφάνιση Ιταλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Εμφάνιση Κορέας" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Εμφάνιση Μετρητή Καθυστέρησης " @@ -10518,27 +10608,27 @@ msgstr "Εμφάνιση Μετρητή Καθυστέρησης " msgid "Show Language:" msgstr "Εμφάνιση Γλώσσας:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Εμφάνιση Ρυθμίσεων &Καταγραφέα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Εμφάνιση Μηνυμάτων NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Εμφάνιση NetPlay Ping" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Εμφάνιση Ολλανδίας" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Εμφάνιση Μηνυμάτων στην Οθόνη " -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Εμφάνιση PAL" @@ -10547,27 +10637,27 @@ msgstr "Εμφάνιση PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Εμφάνιση Πλατφόρμας" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Εμφάνιση Περιοχών" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Εμφάνιση Ρωσίας" @@ -10575,72 +10665,72 @@ msgstr "Εμφάνιση Ρωσίας" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Εμφάνιση Ισπανίας" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Εμφάνιση Στατιστικών" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Εμφάνιση Ώρας Συστήματος" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Εμφάνιση Ταϊβάν" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Εμφάνιση USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Εμφάνιση Αγνώστων" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Εμφάνιση WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Εμφάνιση Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Εμφάνιση Κόσμου" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10648,71 +10738,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10734,7 +10857,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "Πλαγιαστό Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10753,12 +10876,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Κινέζικα Απλοποιημένα" @@ -10775,7 +10898,7 @@ msgstr "" msgid "Size" msgstr "Μέγεθος" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10785,7 +10908,7 @@ msgstr "" msgid "Skip" msgstr "Παράλειψη" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10829,6 +10952,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10899,7 +11025,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10913,7 +11039,7 @@ msgstr "Ισπανία" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Ισπανικά" @@ -10921,19 +11047,19 @@ msgstr "Ισπανικά" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Ένταση Ηχείου:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10958,11 +11084,11 @@ msgstr "Ταχύτητα" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10970,25 +11096,25 @@ msgstr "" msgid "Standard Controller" msgstr "Τυπικός Controller" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Εκκίνηση" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Έναρξη &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Εκκίνηση Ε&γγραφής Χειρισμών" @@ -10996,7 +11122,7 @@ msgstr "Εκκίνηση Ε&γγραφής Χειρισμών" msgid "Start Recording" msgstr "Εκκίνηση Εγγραφής" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11008,14 +11134,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Εκκίνηση παιχνιδιού" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11047,19 +11173,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11068,7 +11194,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11097,16 +11223,16 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Διακοπή" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Διακοπή παιχνιδιού" @@ -11138,11 +11264,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Προσαρμογή στο Παράθυρο" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11156,7 +11282,11 @@ msgstr "" msgid "Strum" msgstr "Strum" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11167,18 +11297,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Επιτυχία" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11188,7 +11318,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Επιτυχής διαγραφή '%1'." @@ -11201,24 +11331,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11241,16 +11371,16 @@ msgstr "Υποστήριξη" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11294,17 +11424,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11312,7 +11442,7 @@ msgstr "" msgid "Sync" msgstr "Συγχρονισμός" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11330,7 +11460,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11349,24 +11479,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Γλώσσα Συστήματος:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Ετικέτες" @@ -11376,7 +11506,7 @@ msgstr "Ετικέτες" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11384,7 +11514,7 @@ msgstr "" msgid "Taiwan" msgstr "Ταϊβάν" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Δημιουργία Στιγμιότυπου" @@ -11392,7 +11522,7 @@ msgstr "Δημιουργία Στιγμιότυπου" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11408,9 +11538,9 @@ msgstr "" msgid "Test" msgstr "Τέστ" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11423,7 +11553,7 @@ msgstr "Cache Υφών" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11435,7 +11565,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Επικάλυψη Του Format Υφών" @@ -11472,13 +11602,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11493,7 +11623,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11540,7 +11670,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11550,7 +11680,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11629,7 +11759,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11669,7 +11799,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11728,12 +11858,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11754,7 +11884,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11788,7 +11918,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11846,7 +11976,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11868,6 +11998,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11879,8 +12013,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11929,11 +12063,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11951,7 +12085,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12050,7 +12184,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12072,7 +12206,7 @@ msgstr "" "Αυτό το λογισμικό δεν πρέπει να χρησιμοποιείται για το παίξιμο παιχνιδιών " "που δεν κατέχονται νόμιμα." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12112,7 +12246,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12125,7 +12259,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12133,11 +12267,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12160,14 +12294,14 @@ msgstr "Πλάγιασμα" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Τίτλος" @@ -12176,12 +12310,12 @@ msgid "To" msgstr "Εώς" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Εναλλαγή &Πλήρους Οθόνης" @@ -12206,7 +12340,7 @@ msgid "Toggle Aspect Ratio" msgstr "Εναλλαγή Αναλογίας Οθόνης" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12262,7 +12396,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12270,7 +12404,7 @@ msgstr "" msgid "Toolbar" msgstr "Γραμμή εργαλείων" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Κορυφή" @@ -12278,8 +12412,8 @@ msgstr "Κορυφή" msgid "Top-and-Bottom" msgstr "Πάνω - Κάτω" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12321,7 +12455,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Κινέζικα Παραδοσιακά " @@ -12341,8 +12475,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12369,7 +12503,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Σκανδάλες" @@ -12379,7 +12513,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12393,7 +12527,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12405,7 +12539,7 @@ msgstr "ΗΠΑ" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12423,14 +12557,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12438,7 +12572,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12447,7 +12581,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12510,11 +12644,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Αναίρεση Φόρτωσης Σημείου Αποθ. " -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Αναίρεση Αποθήκευσης Σημείου Αποθ. " @@ -12532,28 +12666,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Ηνωμένες Πολιτείες" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Άγνωστο" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12624,11 +12758,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Απεριόριστη" @@ -12640,20 +12774,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12680,7 +12802,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12694,8 +12816,8 @@ msgstr "" msgid "Up" msgstr "Πάνω" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Ενημέρωση" @@ -12703,11 +12825,11 @@ msgstr "Ενημέρωση" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Ενημέρωση μετά το κλείσιμο του Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Διαθέσιμη ενημέρωση" @@ -12752,7 +12874,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12760,15 +12882,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Χρήση Ενσωματωμένης Βάσης Δεδομένων για Ονόματα Παιχνιδιών" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12776,15 +12898,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Χρήση Λειτουργίας PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Χρήση Οθονών Πανικού" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12818,7 +12946,7 @@ msgstr "" msgid "User Config" msgstr "Ρυθμίσεις Χρήστη" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Διεπαφή Χρήστη" @@ -12833,10 +12961,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12845,14 +12980,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13115,8 +13250,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Προειδοποίηση" @@ -13126,7 +13261,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13138,28 +13273,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13204,7 +13339,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13212,7 +13347,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13220,7 +13355,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13252,25 +13387,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii Remote Κουμπιά" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii Remote Ρυθμίσεις" @@ -13278,19 +13413,19 @@ msgstr "Wii Remote Ρυθμίσεις" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13298,7 +13433,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13306,13 +13441,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13321,11 +13450,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13339,10 +13468,11 @@ msgstr "Κόσμος" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13375,39 +13505,39 @@ msgstr "" msgid "Write to Window" msgstr "Εγγραφή στο Παράθυρο" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF Καταχωρητές" @@ -13416,9 +13546,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13446,14 +13576,14 @@ msgstr "Ναι" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13530,7 +13660,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "" "Πρέπει να κάνετε επανεκκίνηση του Dolphin για να έχει επίπτωση αυτή η αλλαγή." @@ -13551,16 +13681,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13569,7 +13699,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Δεν υποστηρίζεται ο Zero 3 code" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13618,7 +13748,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "αποσύνδεση" @@ -13626,7 +13756,7 @@ msgstr "αποσύνδεση" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13634,7 +13764,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13682,16 +13812,6 @@ msgstr "" msgid "none" msgstr "κανένα" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13709,7 +13829,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13774,12 +13894,9 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015 + ομάδα του Dolphin. Το \"GameCube\" και το \"Wii\" είναι " -"εμπορικά σήματα της Nintendo. Το Dolphin δεν σχετίζεται με τη Nintendo με " -"οποιονδήποτε τρόπο." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/en.po b/Languages/po/en.po index c7d90e5047..5cb74e055d 100644 --- a/Languages/po/en.po +++ b/Languages/po/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -75,7 +75,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -109,7 +109,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -129,7 +129,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -140,11 +140,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -161,40 +161,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -202,13 +196,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -220,30 +214,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -255,6 +249,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -324,11 +322,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -337,7 +335,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -345,15 +343,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -361,11 +359,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -373,15 +375,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -389,7 +391,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -397,16 +399,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -414,20 +415,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -441,11 +442,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "" @@ -465,41 +466,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "" @@ -519,11 +520,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -531,23 +532,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -557,19 +558,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -577,7 +582,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -586,23 +591,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "" @@ -610,7 +615,7 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -618,7 +623,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "" @@ -631,24 +636,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -656,31 +661,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "" @@ -690,21 +695,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -716,23 +721,23 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -768,12 +773,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -834,7 +839,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -892,7 +897,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -918,7 +923,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1011,26 +1016,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1053,8 +1058,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1068,7 +1073,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1082,7 +1087,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1098,7 +1103,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1123,7 +1128,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1166,16 +1171,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1248,7 +1247,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1256,15 +1255,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1272,7 +1271,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "" @@ -1282,7 +1281,7 @@ msgstr "" msgid "Add" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1307,43 +1306,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1469,7 +1468,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1478,7 +1477,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1486,34 +1485,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1529,7 +1528,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1537,7 +1536,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1555,7 +1554,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1577,7 +1576,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "" @@ -1603,15 +1602,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1629,7 +1628,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1637,7 +1636,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1649,7 +1648,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1661,16 +1660,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "" @@ -1678,7 +1677,7 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1690,7 +1689,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1711,11 +1710,11 @@ msgstr "" msgid "Audio" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1731,7 +1730,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "" @@ -1740,11 +1739,11 @@ msgstr "" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1752,7 +1751,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1760,15 +1759,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1808,27 +1807,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "" @@ -1871,7 +1870,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "" @@ -1891,15 +1890,15 @@ msgstr "" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "" @@ -1915,10 +1914,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1951,11 +1946,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1965,7 +1960,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2001,67 +1996,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2073,23 +2068,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2106,7 +2101,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2116,19 +2111,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2143,19 +2138,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2189,24 +2189,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2251,11 +2251,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2275,7 +2275,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2306,7 +2306,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2332,7 +2332,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2348,18 +2348,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2368,15 +2368,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2392,11 +2392,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2404,7 +2404,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2412,7 +2412,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2444,7 +2444,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "" @@ -2452,15 +2452,21 @@ msgstr "" msgid "Change Disc" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2478,7 +2484,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2486,11 +2492,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "" @@ -2498,7 +2504,7 @@ msgstr "" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "" @@ -2506,7 +2512,7 @@ msgstr "" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2524,7 +2530,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2536,7 +2542,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "" @@ -2544,15 +2550,15 @@ msgstr "" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2565,7 +2571,7 @@ msgstr "" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2576,18 +2582,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2608,7 +2614,7 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2616,11 +2622,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2648,11 +2654,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2679,7 +2685,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2689,7 +2695,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2702,7 +2708,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2710,11 +2716,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2730,7 +2736,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2745,7 +2751,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2799,7 +2810,7 @@ msgstr "" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2812,27 +2823,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2842,15 +2853,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2870,7 +2881,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2886,7 +2897,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2911,7 +2922,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -2998,8 +3009,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3007,9 +3018,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3017,9 +3028,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3039,8 +3050,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3069,22 +3080,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3092,19 +3103,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3122,8 +3133,8 @@ msgstr "" msgid "Core" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3230,7 +3241,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3246,13 +3257,13 @@ msgstr "" msgid "Country:" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3266,7 +3277,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3283,11 +3294,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3299,42 +3310,42 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3342,15 +3353,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3393,7 +3404,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3401,15 +3412,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3435,7 +3446,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3480,8 +3491,8 @@ msgstr "" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3490,7 +3501,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3529,7 +3540,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "" @@ -3537,7 +3548,7 @@ msgstr "" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3549,11 +3560,11 @@ msgstr "" msgid "Default ISO:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3561,7 +3572,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3570,8 +3581,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "" @@ -3601,12 +3613,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3620,8 +3632,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3633,21 +3645,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3655,7 +3667,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3663,11 +3675,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "" @@ -3685,7 +3697,7 @@ msgstr "" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3693,7 +3705,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3709,11 +3721,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3722,7 +3729,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3730,11 +3737,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3742,11 +3749,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3761,7 +3768,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "" @@ -3785,6 +3798,10 @@ msgstr "" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3815,11 +3832,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3829,7 +3846,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3837,12 +3854,12 @@ msgstr "" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3850,9 +3867,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3864,8 +3881,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -3898,7 +3915,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3912,13 +3929,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3927,7 +3944,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3948,7 +3965,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3970,7 +3987,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3982,6 +3999,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4021,19 +4048,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "" @@ -4041,7 +4068,7 @@ msgstr "" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4049,7 +4076,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4074,44 +4101,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4123,7 +4150,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4131,7 +4158,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "" @@ -4150,7 +4177,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4170,7 +4206,7 @@ msgstr "" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4192,11 +4228,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "" @@ -4222,7 +4258,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4244,34 +4280,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4279,15 +4305,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "" @@ -4299,7 +4329,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4307,15 +4337,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4333,41 +4363,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "" @@ -4375,19 +4397,23 @@ msgstr "" msgid "Enable Speaker Data" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "" @@ -4395,34 +4421,13 @@ msgstr "" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4430,34 +4435,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4488,7 +4500,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4496,7 +4508,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4513,7 +4525,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4539,7 +4551,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4547,7 +4559,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4555,7 +4567,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4574,13 +4586,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "" @@ -4597,7 +4613,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4621,33 +4637,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4660,52 +4676,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "" @@ -4722,7 +4738,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4736,7 +4752,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4827,12 +4843,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4876,11 +4892,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "" @@ -4895,7 +4911,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "" @@ -4923,14 +4939,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "" @@ -4943,7 +4959,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4951,35 +4967,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4988,8 +5004,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "" @@ -5003,11 +5019,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5027,7 +5043,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5048,15 +5064,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5102,15 +5118,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5129,25 +5145,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5167,18 +5183,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5190,21 +5206,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5218,17 +5234,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5236,7 +5252,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5266,15 +5282,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5282,11 +5298,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5333,23 +5349,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5363,7 +5379,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5394,31 +5410,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5469,19 +5485,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5494,7 +5510,7 @@ msgstr "" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5505,7 +5521,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5519,7 +5535,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5527,24 +5543,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5629,7 +5645,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5638,12 +5653,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5663,7 +5678,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "" @@ -5671,7 +5686,7 @@ msgstr "" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "" @@ -5703,11 +5718,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5729,6 +5744,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5744,7 +5765,7 @@ msgstr "" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5754,7 +5775,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5775,11 +5796,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "" @@ -5787,7 +5808,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5807,7 +5828,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5838,7 +5859,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "" @@ -5857,8 +5878,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5866,10 +5887,14 @@ msgstr "" msgid "FullScr" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5910,11 +5935,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5956,7 +5981,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5966,25 +5991,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5996,7 +6021,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6014,22 +6039,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6058,7 +6083,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6067,25 +6092,25 @@ msgstr "" msgid "Game ID:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6098,7 +6123,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6118,11 +6143,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6130,11 +6155,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6151,7 +6176,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6179,7 +6204,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6189,35 +6214,35 @@ msgstr "" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "" @@ -6244,7 +6269,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6253,7 +6278,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "" @@ -6293,7 +6318,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6330,7 +6355,7 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6362,7 +6387,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6371,11 +6396,11 @@ msgstr "" msgid "Hide" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6387,16 +6412,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6419,7 +6451,7 @@ msgstr "" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6427,7 +6459,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6435,11 +6467,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6451,7 +6483,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6461,11 +6493,11 @@ msgstr "" msgid "Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6518,12 +6550,12 @@ msgstr "" msgid "IPL Settings" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "" @@ -6549,14 +6581,14 @@ msgstr "" msgid "Icon" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6573,7 +6605,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6587,14 +6619,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6606,7 +6638,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6638,7 +6670,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6647,7 +6679,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6662,21 +6694,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6754,7 +6795,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6763,7 +6804,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6783,12 +6824,12 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6797,11 +6838,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "" @@ -6815,23 +6856,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "" @@ -6844,11 +6881,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6856,13 +6893,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6871,7 +6908,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6880,7 +6917,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6897,19 +6934,19 @@ msgstr "" msgid "Interface" msgstr "" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6922,19 +6959,19 @@ msgstr "" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6949,7 +6986,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6957,7 +6994,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6973,7 +7010,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6982,11 +7019,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7007,7 +7044,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7023,19 +7060,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" @@ -7043,13 +7080,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "" @@ -7062,11 +7099,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7074,47 +7111,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7126,31 +7163,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "" @@ -7167,12 +7204,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7206,16 +7243,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "" @@ -7236,7 +7273,7 @@ msgstr "" msgid "L-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7244,7 +7281,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7258,23 +7299,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7282,7 +7323,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7290,7 +7331,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7301,7 +7342,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "" @@ -7369,11 +7410,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7382,30 +7423,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "" @@ -7413,11 +7454,11 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7523,23 +7564,23 @@ msgstr "" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7547,54 +7588,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7603,19 +7652,19 @@ msgstr "" msgid "Log Configuration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7627,31 +7676,31 @@ msgstr "" msgid "Logger Outputs" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7663,7 +7712,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7711,7 +7760,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7728,16 +7777,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7749,11 +7798,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7762,7 +7811,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7783,7 +7832,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7811,7 +7860,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7825,7 +7874,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7834,15 +7883,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7854,7 +7903,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7874,7 +7923,7 @@ msgstr "" msgid "Modifier" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7890,8 +7939,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7899,7 +7948,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7911,11 +7960,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7924,23 +7973,10 @@ msgstr "" msgid "Motor" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7951,13 +7987,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7970,10 +8006,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7982,8 +8018,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -7992,7 +8028,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8009,8 +8045,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8053,7 +8089,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8069,27 +8105,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8097,16 +8133,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8131,7 +8167,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8148,7 +8184,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8194,7 +8230,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8202,12 +8238,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "" @@ -8219,7 +8255,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8227,7 +8263,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8240,11 +8276,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8267,7 +8303,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8284,10 +8320,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "" @@ -8299,7 +8335,7 @@ msgstr "" msgid "Not Set" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8319,7 +8355,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8363,26 +8399,26 @@ msgstr "" msgid "Nunchuk" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8434,7 +8470,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "" @@ -8455,18 +8491,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8481,7 +8517,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "" @@ -8489,13 +8525,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8512,7 +8548,7 @@ msgstr "" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8521,7 +8557,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8587,34 +8623,34 @@ msgstr "" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8629,11 +8665,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8649,16 +8685,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8671,11 +8707,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8687,7 +8723,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8721,7 +8757,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8759,15 +8795,15 @@ msgstr "" msgid "Pause" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8783,6 +8819,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8802,7 +8844,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8810,15 +8852,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8836,11 +8878,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8853,7 +8895,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8861,7 +8903,7 @@ msgstr "" msgid "Play" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8873,40 +8915,40 @@ msgstr "" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "" @@ -8923,7 +8965,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8939,7 +8981,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8956,7 +8998,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8972,24 +9014,32 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9012,7 +9062,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9027,7 +9077,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9038,7 +9088,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9072,7 +9122,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "" @@ -9081,23 +9131,29 @@ msgstr "" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9117,18 +9173,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "" @@ -9145,19 +9201,19 @@ msgstr "" msgid "R-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9178,7 +9234,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9186,16 +9242,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9234,8 +9291,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9244,23 +9301,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9293,7 +9350,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9324,7 +9381,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9345,7 +9402,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9353,7 +9414,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "" @@ -9381,20 +9442,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9408,10 +9469,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9421,7 +9488,7 @@ msgstr "" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9453,7 +9520,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9465,7 +9532,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9473,11 +9540,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9486,7 +9553,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9498,7 +9565,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9509,7 +9576,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "" @@ -9545,11 +9612,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9567,27 +9634,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9600,7 +9671,7 @@ msgstr "" msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9608,15 +9679,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9624,23 +9695,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9648,7 +9719,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9683,11 +9754,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "" @@ -9697,9 +9768,9 @@ msgid "Safe" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9709,25 +9780,25 @@ msgstr "" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9741,11 +9812,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9757,7 +9828,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9807,23 +9878,23 @@ msgstr "" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9831,7 +9902,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9843,11 +9914,11 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9858,11 +9929,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9870,11 +9941,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9886,7 +9957,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9903,8 +9974,8 @@ msgid "ScrShot" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "" @@ -9913,7 +9984,7 @@ msgstr "" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9931,7 +10002,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9939,7 +10010,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9973,7 +10044,7 @@ msgstr "" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9984,23 +10055,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10028,7 +10099,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10036,7 +10107,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10097,13 +10168,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10111,7 +10182,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10123,7 +10194,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10131,11 +10202,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10143,12 +10214,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "" @@ -10171,16 +10242,16 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10196,7 +10267,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10226,7 +10297,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10248,7 +10319,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10258,11 +10329,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "" @@ -10290,6 +10361,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10307,52 +10382,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10360,7 +10450,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10382,32 +10472,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10416,7 +10506,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10425,31 +10515,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10457,23 +10547,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10481,27 +10571,27 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "" @@ -10510,27 +10600,27 @@ msgstr "" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10538,72 +10628,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10611,71 +10701,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10697,7 +10820,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10716,12 +10839,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "" @@ -10738,7 +10861,7 @@ msgstr "" msgid "Size" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10748,7 +10871,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10792,6 +10915,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10862,7 +10988,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10876,7 +11002,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "" @@ -10884,19 +11010,19 @@ msgstr "" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10921,11 +11047,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10933,25 +11059,25 @@ msgstr "" msgid "Standard Controller" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10959,7 +11085,7 @@ msgstr "" msgid "Start Recording" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10971,14 +11097,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11010,19 +11136,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11031,7 +11157,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11060,16 +11186,16 @@ msgid "Stick" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11101,11 +11227,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11119,7 +11245,11 @@ msgstr "" msgid "Strum" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11130,18 +11260,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11151,7 +11281,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11164,24 +11294,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11204,16 +11334,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11257,17 +11387,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11275,7 +11405,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11293,7 +11423,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11312,24 +11442,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11339,7 +11469,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11347,7 +11477,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "" @@ -11355,7 +11485,7 @@ msgstr "" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11371,9 +11501,9 @@ msgstr "" msgid "Test" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11386,7 +11516,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11398,7 +11528,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "" @@ -11435,13 +11565,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11456,7 +11586,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11503,7 +11633,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11513,7 +11643,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11592,7 +11722,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11632,7 +11762,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11691,12 +11821,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11716,7 +11846,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11750,7 +11880,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11808,7 +11938,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11830,6 +11960,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11841,8 +11975,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11888,11 +12022,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11908,7 +12042,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12007,7 +12141,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12027,7 +12161,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12067,7 +12201,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12080,7 +12214,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12088,11 +12222,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12115,14 +12249,14 @@ msgstr "" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "" @@ -12131,12 +12265,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12161,7 +12295,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12217,7 +12351,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12225,7 +12359,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "" @@ -12233,8 +12367,8 @@ msgstr "" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12276,7 +12410,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "" @@ -12296,8 +12430,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12324,7 +12458,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "" @@ -12334,7 +12468,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12348,7 +12482,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12360,7 +12494,7 @@ msgstr "" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12378,14 +12512,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12393,7 +12527,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12402,7 +12536,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12465,11 +12599,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "" @@ -12487,28 +12621,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12579,11 +12713,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12595,20 +12729,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12635,7 +12757,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12649,8 +12771,8 @@ msgstr "" msgid "Up" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "" @@ -12658,11 +12780,11 @@ msgstr "" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12705,7 +12827,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12713,15 +12835,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12729,15 +12851,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12771,7 +12899,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12786,10 +12914,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12798,14 +12933,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13068,8 +13203,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "" @@ -13079,7 +13214,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13091,28 +13226,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13157,7 +13292,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13165,7 +13300,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13173,7 +13308,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13205,25 +13340,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13231,19 +13366,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13251,7 +13386,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13259,13 +13394,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13274,11 +13403,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13292,10 +13421,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13328,39 +13458,39 @@ msgstr "" msgid "Write to Window" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13369,9 +13499,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13399,14 +13529,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13483,7 +13613,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "" @@ -13503,16 +13633,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13521,7 +13651,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13570,7 +13700,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13578,7 +13708,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13586,7 +13716,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13634,16 +13764,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13661,7 +13781,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13726,7 +13846,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/es.po b/Languages/po/es.po index 99c497aefd..5a322af109 100644 --- a/Languages/po/es.po +++ b/Languages/po/es.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Víctor González, 2021-2024\n" +"Last-Translator: Petiso_Carambanal , 2013-2017,2020-2024\n" "Language-Team: Spanish (http://app.transifex.com/delroth/dolphin-emu/" "language/es/)\n" "Language: es\n" @@ -114,7 +114,7 @@ msgstr "" "%1\n" "quiere unirse a tu partida." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -148,7 +148,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (revisión %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (predeterminado)" @@ -168,7 +168,7 @@ msgstr "%1 (lenta)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -182,18 +182,18 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Configuración gráfica para «%1»" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" #. i18n: A positive number of version control commits made compared to some named branch #: Source/Core/DolphinQt/AboutDialog.cpp:27 msgid "%1 commit(s) ahead of %2" -msgstr "" +msgstr "%1 revisión(ones) por delante de %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -203,7 +203,7 @@ msgstr "%1 no soporta esta característica en tu sistema." msgid "%1 doesn't support this feature." msgstr "%1 no es compatible con esta característica." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -213,35 +213,27 @@ msgstr "" "%2 objetos\n" "Fotograma actual: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 se ha unido" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 se ha salido" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 ha desbloqueado %2/%3 logros (%4 en el modo «hardcore»), con un total de " -"%5/%6 puntos (%7 en el modo «hardcore»)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha desbloqueado %2/%3 logros, con un total de %4/%5 puntos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 no es una ROM válida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 ahora está jugando al golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 está jugando a %2" @@ -249,13 +241,13 @@ msgstr "%1 está jugando a %2" msgid "%1 memory ranges" msgstr "%1 rango(s) de memoria" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 puntos" @@ -267,30 +259,30 @@ msgstr "%1 sesión encontrada" msgid "%1 sessions found" msgstr "%1 sesiones encontradas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (velocidad normal)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "El valor de %1 ha cambiado" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "El valor de %1 ha aparecido" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "El valor de %1 se ha utilizado" @@ -302,6 +294,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -371,11 +367,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Acerca de" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Añadir punto de interrupción en memoria" @@ -384,7 +380,7 @@ msgstr "&Añadir punto de interrupción en memoria" msgid "&Add New Code..." msgstr "&Añadir nuevo código..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Añadir función" @@ -392,15 +388,15 @@ msgstr "&Añadir función" msgid "&Add..." msgstr "&Añadir..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Ensamblador" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Ajustes de &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "Actualización automática:" @@ -408,11 +404,15 @@ msgstr "Actualización automática:" msgid "&Borderless Window" msgstr "Ventana sin &bordes" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Puntos de interrupción" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Rastreador de errores" @@ -420,15 +420,15 @@ msgstr "&Rastreador de errores" msgid "&Cancel" msgstr "&Cancelar" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "Administrador de &trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Buscar actualizaciones..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Borrar símbolos" @@ -436,7 +436,7 @@ msgstr "&Borrar símbolos" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Código" @@ -444,16 +444,15 @@ msgstr "&Código" msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Ajustes de &mandos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" -msgstr "" +msgstr "&Copiar dirección" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Copiar dirección:" @@ -461,20 +460,20 @@ msgstr "&Copiar dirección:" msgid "&Create..." msgstr "&Crear..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Borrar" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "Borrar variables &vigiladas" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "Borrar variables &vigiladas" @@ -488,11 +487,11 @@ msgstr "&Editar código..." msgid "&Edit..." msgstr "&Editar..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Expulsar disco" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulación" @@ -512,41 +511,41 @@ msgstr "&Exportar estado" msgid "&Export as .gci..." msgstr "&Exportar como .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Tipo de letra..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "Avanzar &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "Ajustes de &cámara libre" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Generar el mapa de símbolos a partir de..." -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&Repositorio en GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Ajustes de &gráficos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "A&yuda" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Ajustes de a&tajos" @@ -566,11 +565,11 @@ msgstr "&Importar estado" msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "Base de &Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Insertar blr" @@ -578,23 +577,23 @@ msgstr "&Insertar blr" msgid "&Interframe Blending" msgstr "&Fusión de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Idioma:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" -msgstr "" +msgstr "Car&gar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Cargar estado" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "Cargar mapa de símbo&los" @@ -604,19 +603,23 @@ msgstr "&Cargar archivo en dirección actual" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Bloquear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "B&loquear posición de ventanas" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Grabación" @@ -624,7 +627,7 @@ msgstr "&Grabación" msgid "&Mute" msgstr "&Silenciar" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Red" @@ -633,23 +636,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opciones" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Parchear funciones HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Jugar" @@ -657,7 +660,7 @@ msgstr "&Jugar" msgid "&Properties" msgstr "&Propiedades" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Modo de solo lectura" @@ -665,7 +668,7 @@ msgstr "&Modo de solo lectura" msgid "&Refresh List" msgstr "&Actualizar lista" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registros" @@ -678,24 +681,24 @@ msgstr "&Borrar" msgid "&Remove Code" msgstr "&Quitar código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Renombrar símbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reiniciar" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Administrador de paquetes de recursos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Guardar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Guardar mapa de símbolos" @@ -703,31 +706,31 @@ msgstr "&Guardar mapa de símbolos" msgid "&Scan e-Reader Card(s)..." msgstr "E%scanear tarjeta(s) de e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "Portal de &Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Límite de velocidad:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Detener" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema visual:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Hilos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "&Herramientas" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Herramientas" @@ -737,21 +740,21 @@ msgstr "&Quitar ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "Desblo&quear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Vista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Vigilar" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Página web" @@ -763,23 +766,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "No se encontró «%1», no se han generado nombres de símbolos" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "No se encontró «%1», probando con la búsqueda de funciones comunes" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Oscuro)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Claro)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Del sistema)" @@ -815,12 +818,12 @@ msgstr "- Restar" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Desconocido--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -881,7 +884,7 @@ msgstr "Entero con signo de 16 bits" msgid "16-bit Unsigned Integer" msgstr "Entero sin signo de 16 bits" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -939,7 +942,7 @@ msgstr "Entero sin signo de 32 bits" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -965,7 +968,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 bloques)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1058,24 +1061,24 @@ msgstr "< Menor que" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" "Característica desactivada en el modo «hardcore»." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1083,7 +1086,7 @@ msgstr "" "Se ha agotado el tiempo de espera del avance " "automático. La instrucción actual es irrelevante." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1113,8 +1116,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Mayor que" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Ya hay una sesión de juego en red en marcha." @@ -1135,7 +1138,7 @@ msgstr "" "Si instalas este WAD, reemplazarás el título de forma irreversible. ¿Seguro " "que quieres continuar?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Ya hay un disco en proceso de inserción." @@ -1154,7 +1157,7 @@ msgstr "" "Un estado de guardado no puede ser cargado sin especificar el juego a " "ejecutar." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1174,9 +1177,9 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Solo se puede sincronizar el mando de Wii en mitad de la partida." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" -msgstr "" +msgstr "A&utoguardado" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1215,7 +1218,7 @@ msgstr "" "funcione correctamente.\n" "Úsalo bajo tu propio riesgo.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Código AR" @@ -1258,18 +1261,10 @@ msgid "Achievement Settings" msgstr "Ajustes de logros" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Logros" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Los logros han sido desactivados.
Si quieres volver a activarlos, cierra " -"todas las partidas en curso." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Acción" @@ -1359,7 +1354,7 @@ msgstr "Action Replay: código normal {0}: subtipo incorrecto {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Activar el chat del juego en red" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Activo" @@ -1367,15 +1362,15 @@ msgstr "Activo" msgid "Active Infinity Figures:" msgstr "Figuras de Infinity activas:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Cola de hilos activos" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Hilos activos" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adaptador" @@ -1383,7 +1378,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador detectado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adaptador:" @@ -1393,7 +1388,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Añadir" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Añadir &punto de interrupción" @@ -1418,43 +1413,43 @@ msgstr "Añadir punto de interrupción" msgid "Add a Memory Breakpoint" msgstr "Añadir punto de interrupción en memoria" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Añadir punto de &interrupción en memoria" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Añadir punto de interrupción de memoria" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Añadir a &variables vigiladas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Añadir a variables vigiladas" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Añadir..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Dirección:" @@ -1586,6 +1581,29 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"Cambia la forma de escalar la salida de imagen del juego a la resolución de " +"la ventana.
El rendimiento variará en función del número de muestras que " +"utilice cada método.
En comparación con el SSAA, el remuestreo es ideal " +"cuando
la resolución de la ventana de salida no sea un múltiplo de la " +"resolución nativa de la emulación.

Valor predeterminado - [lo " +"más rápido]
Remuestrador bilineal interno de la GPU sin corrección de " +"gamma.
Este valor podría ignorarse si se fuerza la corrección de gamma." +"
Bilineal - [4 muestras]
Interpolación lineal entre píxeles con " +"corrección de gamma.

Bicúbico - [16 muestras]
Interpolación " +"cúbica entre píxeles con corrección de gamma.
Ideal al escalar entre " +"resoluciones cercanas, por ejemplo, entre 1080p y 1440p.
Presenta varios " +"métodos:
B-Spline: Es borroso, pero evita los artefactos tipo " +"«lobing»
Mitchell-Netravali: Un buen término medio entre la falta " +"de definición y el «lobing»
Catmull-Rom: Más realzado, pero puede " +"provocar artefactos tipo «lobing»

Bilineal nítido - [1-4 " +"muestras]
Similar a Vecino más cercano, conserva una imagen más nítida, " +"
pero también la recombina para evitar efectos de resplandores." +"
Funciona mejor con juegos en 2D a resoluciones bajas." +"

Muestreado de áreas - [hasta 324 muestras]
Pondera cada " +"píxel según el porcentaje de área que ocupen. Permite la corrección de gamma." +"
Ideal para remuestrear a una resolución más baja con un valor superior a " +"2x.

Si tienes dudas, selecciona Valor " +"predeterminado." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1611,7 +1629,7 @@ msgid "All Assembly files" msgstr "Todos los archivos de ensamblado" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Todos los valores de coma flotante doble" @@ -1620,7 +1638,7 @@ msgstr "Todos los valores de coma flotante doble" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1628,34 +1646,34 @@ msgid "All Files" msgstr "Todos los archivos" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Todos los archivos (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Todos los valores de coma flotante" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Todos los archivos GC/Wii" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Todos los valores hexadecimales" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos los estados guardados (*.sav *.s##);; Todos los archivos (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Todos los valores enteros con signo" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Todos los valores enteros sin signo" @@ -1671,7 +1689,7 @@ msgstr "Todos los códigos de los jugadores sincronizados." msgid "All players' saves synchronized." msgstr "Todos las partidas guardadas de los jugadores sincronizados." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Permitir configuración de región independiente" @@ -1679,7 +1697,7 @@ msgstr "Permitir configuración de región independiente" msgid "Allow Usage Statistics Reporting" msgstr "Permitir informes de estadísticas de uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Permitir acciones de escritura en la tarjeta SD" @@ -1699,7 +1717,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Fuentes de entrada alternativas" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Siempre" @@ -1721,7 +1739,7 @@ msgstr "Se esperaba la inserción de un disco pero no se encontró ninguno." msgid "Anaglyph" msgstr "Anaglifo" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analizar" @@ -1747,15 +1765,15 @@ msgstr "Suavizado de bordes:" msgid "Any Region" msgstr "Cualquier región" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Añadir firma a" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Añadir al archivo de firma existente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Aplicar archivo de firma..." @@ -1776,7 +1794,7 @@ msgstr "Fecha del «apploader»:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Aplicar archivo de firma" @@ -1784,7 +1802,7 @@ msgstr "Aplicar archivo de firma" msgid "Arbitrary Mipmap Detection" msgstr "Detección arbitraria de mipmaps" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "¿Seguro que quieres borrar «%1»?" @@ -1796,7 +1814,7 @@ msgstr "¿Seguro que quieres borrar este archivo?" msgid "Are you sure you want to delete this pack?" msgstr "¿Seguro que quieres borrar este paquete?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "¿Seguro que quieres salir del juego en red?" @@ -1808,16 +1826,16 @@ msgstr "¿Seguro que quieres continuar?" msgid "Area Sampling" msgstr "Muestreado de áreas" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Relación de aspecto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Resolución interna con corrección de relación de aspecto" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Relación de aspecto:" @@ -1825,7 +1843,7 @@ msgstr "Relación de aspecto:" msgid "Assemble" msgstr "Ensamblar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Ensamblar instrucción" @@ -1837,7 +1855,7 @@ msgstr "Ensamblador" msgid "Assembly File" msgstr "Archivo de ensamblado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Asignar números de puerto para mandos" @@ -1860,11 +1878,11 @@ msgstr "Añadir MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Motor de audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Ajustes de expansión de audio" @@ -1880,7 +1898,7 @@ msgstr "Autor" msgid "Authors" msgstr "Autores" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automática" @@ -1889,11 +1907,11 @@ msgstr "Automática" msgid "Auto (Multiple of 640x528)" msgstr "Automática (múltiplo de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Ajustes de actualización automática" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1905,7 +1923,7 @@ msgstr "" "\n" "Por favor seleccione una resolución interna específica." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Autoajustar tamaño de ventana" @@ -1913,15 +1931,15 @@ msgstr "Autoajustar tamaño de ventana" msgid "Auto-Hide" msgstr "Ocultar automáticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "¿Autodetectar módulos RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Sincronizar automáticamente con carpeta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1961,33 +1979,33 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "Dirección de destino del BBA" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Registro BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Secuencia regresiva" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Motor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Motor multihilo" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Ajustes del motor" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Motor:" @@ -2030,7 +2048,7 @@ msgstr "El valor elegido no es correcto." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Imagen" @@ -2050,15 +2068,15 @@ msgstr "Barra" msgid "Base Address" msgstr "Dirección base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Prioridad base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Ajustes básicos" @@ -2074,10 +2092,6 @@ msgstr "Modo Lote no puede ser usado sin especificar un juego para ejecutar." msgid "Battery" msgstr "Batería" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (una vez al mes)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, etc" @@ -2110,21 +2124,25 @@ msgstr "SSL binario (leer)" msgid "Binary SSL (write)" msgstr "SSL binario (escribir)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" "\n" "Try again with a different character." msgstr "" +"No se ha podido crear una figura en blanco en:\n" +"%1\n" +"\n" +"Vuelve a intentarlo con otro personaje distinto." #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Tamaño del bloque" @@ -2162,97 +2180,97 @@ msgstr "" "Se ha activado el modo de acceso directo a Bluetooth, pero no se puede " "utilizar porque Dolphin se ha compilado sin la biblioteca libusb." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Arrancar pausado" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" "Archivo de copia de respaldo de NAND en formato BootMii (*.bin);;Todos los " "archivos (*) " -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Archivo de claves BootMii (*.bin);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Pantalla completa sin bordes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Inferior" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 -msgid "Branch (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 -msgid "Branch Conditional" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 -msgid "Branch Conditional (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 -msgid "Branch Conditional to Count Register" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 -msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Rama" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 -msgid "Branch Conditional to Link Register" -msgstr "" +msgid "Branch (LR saved)" +msgstr "Rama (LR guardado)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional" +msgstr "Rama condicional" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch Conditional (LR saved)" +msgstr "Rama condicional (LR guardado)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 +msgid "Branch Conditional to Count Register" +msgstr "Rama condicional a registro de cuentas" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 +msgid "Branch Conditional to Count Register (LR saved)" +msgstr "Rama condicional a registro de cuentas (LR guardado)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +msgid "Branch Conditional to Link Register" +msgstr "Rama condicional a registro de vínculos" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Rama condicional a registro de vínculos (LR guardado)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Branch Not Overwritten" +msgstr "Rama no sobrescrita" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 +msgid "Branch Type" +msgstr "Tipo de rama" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 -msgid "Branch Not Overwritten" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 -msgid "Branch Type" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Rama sobrescrita" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Inspector de ramas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Herramienta de inspección de ramas" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Ayuda de la herramienta de inspección de ramas (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Ayuda de la herramienta de inspección de ramas (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Ayuda de la herramienta de inspección de ramas (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Ayuda de la herramienta de inspección de ramas (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2268,8 +2286,23 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"El inspector de ramas es una herramienta de búsqueda de código capaz de " +"aislar ramas concretas de la CPU emulada testeando ramas candidatas con " +"parámetros de búsqueda simples. Si conoces el Ultimap de Cheat Engine, el " +"inspector de ramas es una herramienta similar.\n" +"\n" +"Pulsa el botón Iniciar inspección de ramas para activar la inspección. Esta " +"inspección se mantendrá entre sesiones de emulación y podrás guardar y " +"cargar instantáneas con tus progresos desde el directorio de usuario para " +"que estos persistan tras cerrar el emulador Dolphin. También están " +"disponibles las acciones «Guardar como...» y «Cargar desde...», así como un " +"autoguardado con el que podrás guardar una instantánea de cada paso de la " +"búsqueda. El botón Pausar inspección de ramas hará que el inspector deje de " +"hacer un seguimiento de las ramas hasta que se le diga que continúe. Pulsa " +"el botón Borrar inspección de ramas para eliminar a todas las candidatas y " +"volver a la fase de creación de una lista negra." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2278,22 +2311,29 @@ msgid "" "is pressed for the first time, Branch Watch will switch to the reduction " "phase, and the table will populate with all eligible candidates." msgstr "" +"Una inspección de ramas empieza con la creación de una lista negra: todavía " +"no se han elegido candidatos, pero se pueden excluir los que ya se hayan " +"encontrado de la lista pulsando los botones Ruta de acceso al código no " +"tomada, Rama sobrescrita y Rama no sobrescrita. Cuando pulses por primera " +"vez el botón Ruta de acceso al código tomada, el inspector de ramas pasará a " +"la fase de reducción y la tabla se llenará con todas las candidatas " +"disponibles." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" -msgstr "" +msgstr "Rama a registro de cuentas" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +msgid "Branch to Count Register (LR saved)" +msgstr "Rama a registro de cuentas (LR guardado)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 -msgid "Branch to Count Register (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "Rama a registro de vínculos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Rama a registro de vínculos (LR guardado)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2306,20 +2346,25 @@ msgstr "Ramas" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Pausa" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Punto de interrupción" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" "Se ha encontrado un punto de interrupción. Salto de instrucciones cancelado." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Puntos de interrupción" @@ -2353,24 +2398,24 @@ msgstr "Error del adaptador para banda ancha" msgid "Broadband Adapter MAC Address" msgstr "Dirección MAC del adaptador para banda ancha" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Buscar sesiones de juego en red..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Tamaño de búfer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Tamaño del búfer cambiado a %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Búfer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2417,11 +2462,11 @@ msgstr "Por: %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "C&rear archivo de firma..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Registro CP" @@ -2441,7 +2486,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Intérprete con caché (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2481,7 +2526,7 @@ msgstr "Calibración" msgid "Calibration Period" msgstr "Tiempo de calibración" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Llamada de lista de visualización en %1 con tamaño %2" @@ -2507,7 +2552,7 @@ msgstr "Cámara 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Campo de visión de la cámara (afecta a la sensibilidad del apuntado)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" "Solo se puede generar un código AR para aquellos valores que se encuentren " @@ -2527,18 +2572,18 @@ msgstr "" "No se puede encontrar ningún mando de Wii con el identificador de conexión " "{0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "No puedes empezar el juego en red con un juego en ejecución." #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Cancelar" @@ -2547,17 +2592,17 @@ msgstr "Cancelar" msgid "Cancel Calibration" msgstr "Cancelar calibración" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" -msgstr "" +msgstr "Candidatas: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Candidatas: %1 | Excluidas: %2 | Restantes: %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Candidatas: %1 | Filtradas: %2 | Restantes: %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2572,11 +2617,11 @@ msgstr "El juego no puede iniciar el WAD al no poder instalarlo en la NAND." msgid "Cannot compare against last value on first search." msgstr "No se puede comparar con el último valor en la primera búsqueda." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "No se puede encontrar el IPL de GC" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "No se puede generar el código AR para esta dirección." @@ -2584,7 +2629,7 @@ msgstr "No se puede generar el código AR para esta dirección." msgid "Cannot refresh without results." msgstr "No se puede actualizar si no hay resultados." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "La ruta de la carpeta GCI no puede estar en blanco." @@ -2592,7 +2637,7 @@ msgstr "La ruta de la carpeta GCI no puede estar en blanco." msgid "Cannot set memory card to an empty path." msgstr "La ruta de la tarjeta de memoria no puede estar en blanco." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "No se pudo ejecutar el juego porque no se ha encontrado el IPL de GC." @@ -2624,7 +2669,7 @@ msgstr "Centrar y calibrar" msgid "Change &Disc" msgstr "Cambiar &disco" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Cambiar &disco..." @@ -2632,15 +2677,21 @@ msgstr "Cambiar &disco..." msgid "Change Disc" msgstr "Cambiar disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Cambiar discos automáticamente" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Cambiar al disco {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2671,7 +2722,7 @@ msgstr "" "tiene movimiento lateral, solo rotación, y puedes acercarte al punto de " "origen de la cámara." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Los trucos surtirán efecto la próxima vez que se reinicie el juego." @@ -2679,11 +2730,11 @@ msgstr "Los trucos surtirán efecto la próxima vez que se reinicie el juego." msgid "Channel Partition (%1)" msgstr "Partición del canal (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "¡El personaje introducido no es válido!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Conversación" @@ -2691,7 +2742,7 @@ msgstr "Conversación" msgid "Cheat Code Editor" msgstr "Editor de trucos" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Buscar trucos" @@ -2699,7 +2750,7 @@ msgstr "Buscar trucos" msgid "Cheats Manager" msgstr "Administrador de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Comprobar NAND..." @@ -2719,7 +2770,7 @@ msgstr "" "Asegúrate de tener los permisos adecuados para borrar el archivo y que " "ningún otro programa lo esté usando." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Verificar" @@ -2731,7 +2782,7 @@ msgstr "China" msgid "Choose" msgstr "Seleccionar" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Selecciona un archivo para abrir" @@ -2739,15 +2790,15 @@ msgstr "Selecciona un archivo para abrir" msgid "Choose a file to open or create" msgstr "Selecciona un archivo a abrir o crear" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Selecciona un archivo de entrada principal" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Selecciona un archivo de entrada secundario" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Selecciona la carpeta base GCI" @@ -2760,7 +2811,7 @@ msgstr "Selecciona la carpeta de destino" msgid "Clamping of rotation about the yaw axis." msgstr "Fija la rotación del eje de guiñada." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Botones clásicos" @@ -2771,18 +2822,18 @@ msgstr "Mando clásico" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Borrar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" -msgstr "" +msgstr "Borrar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Borrar caché" @@ -2803,7 +2854,7 @@ msgstr "Clonar y &editar código..." msgid "Close" msgstr "Cerrar" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Co&nfiguración" @@ -2811,13 +2862,13 @@ msgstr "Co&nfiguración" msgid "Code" msgstr "Código" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" -msgstr "" +msgstr "Ruta de acceso a código no tomada" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" -msgstr "" +msgstr "Ruta de acceso a código tomada" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2843,11 +2894,11 @@ msgstr "Corrección de color:" msgid "Color Space" msgstr "Espacio de color" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" -msgstr "" +msgstr "&Visibilidad de columnas" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Combinar dos archivos de firmas..." @@ -2881,7 +2932,7 @@ msgstr "" "pesar de todo, es posible que este volcado sea correcto al compararlo con la " "versión de la eShop de Wii U. Dolphin no puede verificar esta circunstancia." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Compilar sombreadores antes de jugar" @@ -2891,7 +2942,7 @@ msgstr "Compilación de sombreadores" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Compresión" @@ -2904,19 +2955,19 @@ msgstr "Nivel de compresión:" msgid "Compression:" msgstr "Compresión:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." -msgstr "" +msgstr "Cond." #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Condición" @@ -2932,7 +2983,7 @@ msgstr "Condicional" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Ayuda condicional" @@ -2947,7 +2998,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2985,57 +3041,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Condiciones:\n" -"Establece una expresión que será evaluada al llegar a un punto de " -"interrupción. Si la expresión está configurada como falsa o 0, se ignorará " -"el punto de interrupción hasta que se vuelva a llegar a este. Cada " -"instrucción debe estar separada por comas. La última instrucción será la " -"única que se utilice para determinar la acción a tomar.\n" -"\n" -"Registros que se pueden referenciar:\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -" LR, CTR, PC\n" -"\n" -"Funciones:\n" -"Establecer una instrucción: r1 = 8\n" -"Conversiones: s8(0xff). Disponibles: s8, u8, s16, u16, s32, u32\n" -"Pila de llamadas: callstack(0x80123456), callstack(\"anim\")\n" -"Comparación de cadenas: streq(r3, \"abc\"). Ambos parámetros pueden ser " -"direcciones o constantes de cadenas.\n" -"Leer memoria: read_u32(0x80000000). Disponibles: u8, s8, u16, s16, u32, s32, " -"f32, f64\n" -"Escribir memoria: write_u32(r3, 0x80000000). Disponibles: u8, u16, u32, f32, " -"f64\n" -"*actualmente, las escrituras siempre harán de desencadenantes\n" -"\n" -"Operaciones:\n" -"Unarias: -u, !u, ~u\n" -"Matemáticas: * / + -, potencias: **, restantes: %, «shifts»: <<, >>\n" -"Comparaciones: <, <=, >, >=, ==, !=, &&, ||\n" -"Operaciones bit a bit: &, |, ^\n" -"\n" -"Ejemplos:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Escribir e interrumpir: r4 = 8, 1\n" -"Escribir y continuar: f3 = f1 + f2, 0\n" -"La condición debe ir siempre en último lugar.\n" -"\n" -"Solo se deberían utilizar cadenas en callstack() o streq() y siempre deben " -"ir \"entrecomilladas\". No asignes cadenas a una variable.\n" -"Todas las variables se mostrarán en el registro de la interfaz de la memoria " -"en caso de que haya una coincidencia o un resultado NaN (no numérico). Para " -"buscar problemas, asigna una variable a tu ecuación para que se muestre en " -"el registro.\n" -"\n" -"Nota: todos los valores se convertirán de forma interna al formato de doble " -"palabra para hacer los cálculos. Es posible que estos valores se salgan de " -"su rango o se conviertan en NaN (no numéricos). Se mostrará una advertencia " -"en caso de generar un NaN y la variable que se haya convertido en NaN " -"quedará registrada." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3052,7 +3057,7 @@ msgstr "Configurar" msgid "Configure Controller" msgstr "Configurar mando" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Configurar Dolphin" @@ -3065,27 +3070,27 @@ msgstr "Configurar entrada" msgid "Configure Output" msgstr "Configurar salida" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Confirmar cambio de motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Confirmar detención" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Confirmar" @@ -3095,15 +3100,15 @@ msgstr "Confirmar" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Conectar la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Conectar teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Conectar mando de Wii %1" @@ -3123,7 +3128,7 @@ msgstr "Conectar mando de Wii 3" msgid "Connect Wii Remote 4" msgstr "Conectar mando de Wii 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Conectar mandos de Wii" @@ -3140,7 +3145,7 @@ msgstr "" msgid "Connected" msgstr "Conectado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Conectando" @@ -3165,7 +3170,7 @@ msgstr "Controlar el modo golf del juego en red" msgid "Control Stick" msgstr "Stick de control" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Perfil del mando" @@ -3276,8 +3281,8 @@ msgstr "Convergencia" msgid "Convergence:" msgstr "Convergencia:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Fallo en la conversión." @@ -3285,9 +3290,9 @@ msgstr "Fallo en la conversión." msgid "Convert" msgstr "Convertir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Convertir archivo a carpeta" @@ -3295,9 +3300,9 @@ msgstr "Convertir archivo a carpeta" msgid "Convert File..." msgstr "Convertir archivo..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Convertir carpeta a archivo" @@ -3320,8 +3325,8 @@ msgstr "" "queriendo continuar?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Convirtiendo..." @@ -3366,22 +3371,22 @@ msgstr "" "televisores suelen estar diseñados para 2,2.

Si " "tienes dudas, deja esta opción desactivada." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Copiar &función" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Copiar código &hexadecimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copiar dirección" @@ -3389,19 +3394,19 @@ msgstr "Copiar dirección" msgid "Copy Failed" msgstr "Fallo al copiar" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Copiar en hexadecimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copiar valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Copiar código de &línea" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Copiar dirección ob&jetivo" @@ -3419,10 +3424,10 @@ msgstr "Copiar a B" msgid "Core" msgstr "Núcleo" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." -msgstr "" +msgstr "El núcleo no se ha iniciado." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3557,7 +3562,7 @@ msgstr "" "Si es así, entonces es posible que tengas que volver a especificar la " "ubicación de la tarjeta de memoria en las opciones." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "No se pudo encontrar el servidor central" @@ -3573,13 +3578,13 @@ msgstr "No se pudo leer el archivo." msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Crear" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Crear archivo de Infinity" @@ -3593,7 +3598,7 @@ msgstr "Crear nueva tarjeta de memoria" msgid "Create Skylander File" msgstr "Crear archivo de Skylander" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Crear asignaciones para otros dispositivos" @@ -3610,11 +3615,11 @@ msgstr "Creador:" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Recortar imagen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3630,11 +3635,11 @@ msgstr "" msgid "Crossfade" msgstr "Deslizador del mezclador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Descartar vértices en la CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3645,47 +3650,47 @@ msgstr "" "dibujado.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Región actual" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Valor actual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Contexto actual" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Juego actual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Hilo actual" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" -msgstr "" +msgstr "Personalizada (estirada)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Espacio de dirección personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Alto de la relación de aspecto personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Ancho de la relación de aspecto personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Relación de aspecto personalizada:" @@ -3730,7 +3735,7 @@ msgstr "Mesa de mezclas DJ" msgid "DK Bongos" msgstr "DK Bongós" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Motor de emulación del DSP" @@ -3738,15 +3743,15 @@ msgstr "Motor de emulación del DSP" msgid "DSP HLE (fast)" msgstr "DSP HLE (rápido)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (recomendado)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "Intérprete DSP LLE (muy lento)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "Recompilador DSP LLE (lento)" @@ -3776,7 +3781,7 @@ msgstr "Alfombra de baile" msgid "Dark" msgstr "Oscuridad" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Datos" @@ -3821,8 +3826,8 @@ msgstr "Zona muerta" msgid "Debug" msgstr "Depurar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuración" @@ -3831,7 +3836,7 @@ msgstr "Depuración" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Calidad de decodificación:" @@ -3870,7 +3875,7 @@ msgstr "Disminuir Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Valor predeterminado" @@ -3878,7 +3883,7 @@ msgstr "Valor predeterminado" msgid "Default Config (Read Only)" msgstr "Configuración predeterminada (solo lectura)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Dispositivo predeterminado" @@ -3890,11 +3895,11 @@ msgstr "Tipografía predeterminada" msgid "Default ISO:" msgstr "ISO predeterminada:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Hilo predeterminado" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Retrasar invalidación de caché del EFB" @@ -3902,7 +3907,7 @@ msgstr "Retrasar invalidación de caché del EFB" msgid "Defer EFB Copies to RAM" msgstr "Retrasar copias del EFB a la RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3917,8 +3922,9 @@ msgstr "" "estabilidad.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Borrar" @@ -3948,12 +3954,12 @@ msgstr "Porcentaje de profundidad:" msgid "Depth:" msgstr "Profundidad:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripción" @@ -3967,34 +3973,34 @@ msgstr "Descripción:" msgid "Description: %1" msgstr "Descripción: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" -msgstr "" +msgstr "Destino" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Destino (ruta de socket de UNIX o dirección:puerto):" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Destino (dirección:puerto):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" -msgstr "" +msgstr "Destino máx." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" -msgstr "" +msgstr "Destino mín." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" -msgstr "" +msgstr "Símbolo de destino" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Separado" @@ -4002,7 +4008,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Detección de módulos RSO" @@ -4010,11 +4016,11 @@ msgstr "Detección de módulos RSO" msgid "Deterministic dual core:" msgstr "Doble núcleo determinista:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (varias veces al día)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Dispositivo" @@ -4032,7 +4038,7 @@ msgstr "Ajustes de dispositivos" msgid "Device VID (e.g., 057e)" msgstr "VID del dispositivo (por ejemplo: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Dispositivo:" @@ -4040,7 +4046,7 @@ 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/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Oscurece la pantalla después de cinco minutos de inactividad." @@ -4056,11 +4062,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Des&conectado" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Desactivar" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Desactivar delimitado rectangular" @@ -4069,7 +4070,7 @@ msgstr "Desactivar delimitado rectangular" msgid "Disable Copy Filter" msgstr "Desactivar filtrado de copia" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Desactivar copias del EFB a la VRAM" @@ -4077,11 +4078,11 @@ 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:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Desactivar FastMem" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Desactivar Fastmem Arena" @@ -4089,11 +4090,11 @@ msgstr "Desactivar Fastmem Arena" msgid "Disable Fog" msgstr "Desactivar niebla" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Desactivar caché JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Desactivar mapas grandes de puntos de entrada" @@ -4112,7 +4113,7 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Si tienes dudas, deja esta opción activada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disco" @@ -4145,6 +4152,10 @@ msgstr "Disco" msgid "Discard" msgstr "Descartar" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Tipo de visualización" @@ -4181,11 +4192,11 @@ 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "¿Seguro que quieres borrar la lista de nombres simbólicos?" @@ -4195,7 +4206,7 @@ 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "¿Quieres detener la emulación?" @@ -4203,12 +4214,12 @@ msgstr "¿Quieres detener la emulación?" msgid "Do you want to try to repair the NAND?" msgstr "¿Quieres intentar reparar la NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Decodificador Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Registro FIFO de Dolphin (*.dff)" @@ -4216,9 +4227,9 @@ msgstr "Registro FIFO de Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Preajuste de modificación de juego para Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Archivo de mapa de Dolphin (*.map)" @@ -4230,8 +4241,8 @@ msgstr "Archivo de firma CSV de Dolphin" msgid "Dolphin Signature File" msgstr "Archivo de firma de Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Grabación TAS de Dolphin (*.dtm)" @@ -4275,7 +4286,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" "La versión de Dolphin es demasiado antigua para utilizar el servidor de paso" @@ -4292,7 +4303,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:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4300,7 +4311,7 @@ msgstr "" "Dolphin usará este ajuste con aquellos títulos para los que no pueda " "determinar la región automáticamente." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "El sistema de trucos de Dolphin está desactivado." @@ -4309,7 +4320,7 @@ msgstr "El sistema de trucos de Dolphin está desactivado." msgid "Domain" msgstr "Dominio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "No quiero actualizar" @@ -4330,7 +4341,7 @@ msgstr "Cierre de puertas" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Coma flotante doble" @@ -4352,7 +4363,7 @@ msgstr "Descargar códigos" msgid "Download Codes from the WiiRD Database" msgstr "Descargar códigos desde la base de datos de WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 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" @@ -4364,6 +4375,16 @@ msgstr "Descarga completada" msgid "Downloaded %1 codes. (added %2)" msgstr "Se han descargado %1 códigos (%2 de ellos nuevos)." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4403,19 +4424,19 @@ msgstr "Volcar &FakeVMEM" msgid "Dump &MRAM" msgstr "Volcar &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Volcar audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Volcar texturas base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Volcar superficie del EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Volcar fotogramas" @@ -4423,7 +4444,7 @@ msgstr "Volcar fotogramas" msgid "Dump GameCube BBA traffic" msgstr "Volcar tráfico del adaptador de banda ancha de GameCube" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Volcar mipmaps" @@ -4431,7 +4452,7 @@ msgstr "Volcar mipmaps" msgid "Dump Path:" msgstr "Ruta de volcados:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Volcar objetivo XFB" @@ -4456,7 +4477,7 @@ msgstr "Volcado de certificados de par" msgid "Dump root CA certificates" msgstr "Volcar certificados CA raíz" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4476,7 +4497,7 @@ msgstr "" ">Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4485,25 +4506,25 @@ msgstr "" ">Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Duración de presión del botón turbo (fotogramas)" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 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:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holandés" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Salir" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "Copia del EFB %1" @@ -4519,7 +4540,7 @@ msgstr "" "Dolphin, un reinicio vendrá bien en este momento para que Windows vea el " "nuevo driver" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4531,7 +4552,7 @@ msgstr "" "Ideal para juegos competitivos donde la equidad y la latencia mínima son más " "importantes." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Refresco temprano de memoria" @@ -4550,7 +4571,16 @@ msgstr "Asia Oriental" msgid "Edit Breakpoint" msgstr "Editar punto de interrupción" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Editar..." @@ -4570,7 +4600,7 @@ msgstr "Efectos" msgid "Effective" msgstr "Efectivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Prioridad efectiva" @@ -4592,11 +4622,11 @@ msgstr "Clase elemental" msgid "Embedded Frame Buffer (EFB)" msgstr "Búfer de imagen integrado (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Vacía" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "El hilo de emulación ya está ejecutándose" @@ -4625,7 +4655,7 @@ msgstr "" "esta opción puede provocar problemas de estabilidad. Valor predeterminado: " "activado." -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Dispositivos USB emulados" @@ -4650,34 +4680,24 @@ msgstr "Velocidad de emulación" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Habilitar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Activar capas de validación de la API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Activar emblemas de logros" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Activar logros" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Activar expansión de audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Activar trucos" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Activar en&trada de mando" @@ -4685,15 +4705,19 @@ msgstr "Activar en&trada de mando" msgid "Enable Custom RTC" msgstr "RTC personalizado" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Activar opciones de depuración" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activar doble núcleo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Activar doble núcleo (más rápido)" @@ -4705,7 +4729,7 @@ msgstr "Forzar ciclos de reloj de CPU" msgid "Enable Emulated Memory Size Override" msgstr "Forzar tamaño de la memoria emulada" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Activar repetición de logros («Encore»)" @@ -4713,15 +4737,15 @@ msgstr "Activar repetición de logros («Encore»)" msgid "Enable FPRF" msgstr "Activar FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Activar modificaciones de gráficos" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Activar modo «hardcore»" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4756,41 +4780,33 @@ msgstr "" "cuenta que si desactivas el modo «hardcore» en mitad de una partida, no " "podrás volver a activarlo hasta que cierres el juego." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Activar tablas de clasificación" +msgstr "Activar perfiles de bloques JIT" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Activar MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Activar notificaciones de progresos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Activar escaneo progresivo" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Activar integración con RetroAchievements.org" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Activar presencia en aplicación" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Activar vibración" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Activar salvapantallas" @@ -4798,19 +4814,23 @@ msgstr "Activar salvapantallas" msgid "Enable Speaker Data" msgstr "Activar envío de datos al altavoz" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Activar logros no oficiales" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Informar de estadísticas de uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activar WiiConnect24 a través de WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Ver mallas de polígonos" @@ -4818,37 +4838,6 @@ msgstr "Ver mallas de polígonos" msgid "Enable Write-Back Cache (slow)" msgstr "Emular caché de escritura diferida (lento)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"Permite competir en las tablas de clasificación de RetroAchievements." -"

Es necesario activar el modo «hardcore»." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" -"Activa la presencia enriquecida en la página web de RetroAchievements." -"

Mostrará una descripción detallada de lo que esté haciendo el " -"jugador en la página web. Al desactivar esta opción, la página mostrará " -"únicamente el juego al que se esté jugando.

No tiene relación alguna " -"con la Rich Presence de Discord." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4858,7 +4847,7 @@ msgstr "" "puede provocar bloqueos y otros problemas en algunos juegos. (SÍ: " "compatible, NO: desbloqueada)." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4870,7 +4859,7 @@ msgstr "" "con una cuenta de RetroAchievements. Dolphin no guardará tu contraseña de " "forma local y utilizará un token de su API para almacenar tu sesión." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4881,36 +4870,34 @@ msgstr "" "haga un seguimiento de un valor acumulado, por ejemplo, tener 60 de 120 " "estrellas." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." 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 " -"desbloqueado en la página web, así aparecerán notificaciones si se vuelven a " -"cumplir las condiciones para el desbloqueo. Ideal para hacer carreras de " -"tiempo personalizadas o por puro placer." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Activa el desbloqueo de logros.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"Permite desbloquear tanto logros no oficiales como oficiales.

Los " -"logros no oficiales pueden ser logros opcionales o inacabados que " -"RetroAchievements no considere oficiales, útiles para hacer pruebas o por " -"puro placer." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4961,7 +4948,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4974,7 +4961,7 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -5002,7 +4989,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "«Estira» el audio para que vaya sincronizado a la velocidad de emulación." @@ -5042,7 +5029,7 @@ msgstr "" "Desactivado: el ajuste más rápido).

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5054,7 +5041,7 @@ msgstr "" "descontinuados, tales como los Canales Tiempo y Nintendo.\n" "Puedes leer las condiciones del servicio aquí: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5067,7 +5054,7 @@ msgstr "" "los sombreadores compilados.

Si tienes dudas, deja " "esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5094,13 +5081,17 @@ msgstr "" "\n" "Cancelando importación." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet no se inició" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Inglés" @@ -5119,7 +5110,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Introduce un ID de dispositivo USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Introduce una dirección a supervisar:" @@ -5142,34 +5133,36 @@ msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." msgstr "" +"Introduce la dirección IP y el puerto de la instancia de tapserver a la que " +"deseas conectarte." -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5182,52 +5175,52 @@ msgstr "Introduce la dirección del módulo RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -5244,7 +5237,7 @@ msgstr "Error al abrir el adaptador: %1" msgid "Error collecting save data!" msgstr "¡Error al recopilar los datos guardados!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5260,7 +5253,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Error al obtener la lista de sesiones: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Error al cargar algunos packs de texturas" @@ -5357,12 +5350,12 @@ 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:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Ubershaders exclusivos" @@ -5406,11 +5399,11 @@ msgstr "Inicio esperado de la expresión." msgid "Expected variable name." msgstr "Nombre de variable previsto." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportar todas las partidas guardadas de Wii" @@ -5425,7 +5418,7 @@ msgstr "Fallo al exportar" msgid "Export Recording" msgstr "Exportar grabación" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exportar grabación..." @@ -5453,14 +5446,14 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, 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:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensión" @@ -5473,7 +5466,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:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Externo" @@ -5481,35 +5474,35 @@ msgstr "Externo" msgid "External Frame Buffer (XFB)" msgstr "Búfer de imagen externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Extraer certificados de la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Extraer el disco entero..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Extraer la partición entera..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extraer archivo..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Extraer archivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Extraer datos del sistema..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Extrayendo todos los archivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Extrayendo directorio..." @@ -5518,8 +5511,8 @@ msgstr "Extrayendo directorio..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Reproductor FIFO" @@ -5535,11 +5528,11 @@ msgstr "" "Fallo al abrir la tarjeta de memoria:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "No se ha podido añadir al archivo de firma «%1»" @@ -5553,13 +5546,13 @@ msgstr "¡No se ha podido borrar el Skylander!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "¡No se ha podido quitar al Skylander del espacio %1!" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" msgstr "No se ha podido conectar con redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "No se ha podido conectar al servidor: %1" @@ -5580,21 +5573,25 @@ 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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "No se ha podido crear el archivo de Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "¡No se ha podido crear el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" "\n" "The Skylander may already be on the portal." msgstr "" +"No se ha podido crear el archivo de Skylander:\n" +"%1\n" +"\n" +"El Skylander podría estar ya en el portal." #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5641,15 +5638,15 @@ msgstr "No se ha(n) podido exportar %n de %1 archivo(s) de guardado." msgid "Failed to export the following save files:" msgstr "No se ha podido exportar los siguientes archivos de guardado:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "No se han podido extraer los certificados de la NAND." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "No se ha podido extraer el archivo." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "No se han podido extraer los datos del sistema." @@ -5671,14 +5668,14 @@ msgstr "No se ha podido encontrar uno o más símbolos D3D" msgid "Failed to import \"%1\"." msgstr "No se ha podido importar «%1»." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5686,7 +5683,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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5697,7 +5694,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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "No se ha podido iniciar el núcleo" @@ -5720,11 +5717,11 @@ msgid "Failed to install pack: %1" msgstr "No se ha podido instalar el paquete: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 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:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5732,8 +5729,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:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "No se ha podido cargar el módulo RSO en %1" @@ -5745,21 +5742,23 @@ 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:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "No se ha podido cargar el archivo de mapa «%1»" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "¡No se ha podido cargar el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"No se ha podido cargar el archivo de Skylander:\n" +"%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "No se ha podido cargar el ejecutable en memoria." @@ -5775,17 +5774,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "¡No se ha podido modificar el Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "No se ha podido abrir el archivo «%1» para su escritura." -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "No se ha podido abrir el archivo «{0}» para su escritura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "No se ha podido abrir «%1»" @@ -5793,9 +5792,9 @@ msgstr "No se ha podido abrir «%1»" msgid "Failed to open Bluetooth device: {0}" msgstr "No se ha podido abrir el dispositivo Bluetooth: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "No se ha podido abrir la instantánea del inspector de ramas «%1»" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5826,33 +5825,41 @@ msgstr "" msgid "Failed to open file." msgstr "No se ha podido abrir el archivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "No se ha podido contactar con el servidor" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "¡No se ha podido abrir el archivo de Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" "\n" "The file may already be in use on the base." msgstr "" +"No se ha podido abrir el archivo de Infinity:\n" +"%1\n" +"\n" +"El archivo podría estar siendo ya usado por la base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "¡No se ha podido abrir el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" "\n" "The file may already be in use on the portal." msgstr "" +"No se ha podido abrir el archivo de Skylander:\n" +"%1\n" +"\n" +"Es posible que el archivo ya esté siendo utilizado en el portal." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5898,37 +5905,43 @@ 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:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "¡No se ha podido leer el archivo de Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "¡No se ha podido leer el archivo de Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"No se ha podido leer el archivo de Skylander:\n" +"%1\n" +"\n" +"El archivo es demasiado pequeño." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" "Failed to read the contents of file:\n" "%1" msgstr "" +"No se han podido leer los contenidos del archivo:\n" +"%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "No se ha podido leer {0}." @@ -5968,31 +5981,31 @@ msgstr "" "No se ha podido reiniciar la carpeta de redireccionamiento del juego en red. " "Comprueba tus permisos de escritura." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "No se ha podido guardar la instantánea del inspector de ramas «%1»" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "No se ha podido guardar el registro FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 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:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "No se ha podido guardar el archivo de firma «%1»" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 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:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "No se ha podido guardar en el archivo de firma «%1»" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -6049,19 +6062,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Fallido" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Retraso de entrada justo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Región de respaldo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Región de respaldo:" @@ -6074,7 +6087,7 @@ msgstr "Rápida" msgid "Fast Depth Calculation" msgstr "Cálculo de profundidad rápido" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -6087,7 +6100,7 @@ msgstr "" msgid "Field of View" msgstr "Campo visual" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "N.º de figura:" @@ -6101,7 +6114,7 @@ msgstr "Detalles del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Formato del archivo" @@ -6109,24 +6122,24 @@ msgstr "Formato del archivo" msgid "File Format:" msgstr "Formato del archivo:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Información del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nombre del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Ruta del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Tamaño del archivo" @@ -6219,7 +6232,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Indicadores" @@ -6228,12 +6240,12 @@ msgstr "Indicadores" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Coma flotante" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Seguir &rama" @@ -6259,7 +6271,7 @@ msgstr "" "Si necesitas ayuda, consulta esta página." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forzar 16:9" @@ -6267,7 +6279,7 @@ msgstr "Forzar 16:9" msgid "Force 24-Bit Color" msgstr "Forzar color de 24 bits" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forzar 4:3" @@ -6299,13 +6311,13 @@ msgstr "Forzar escucha en puerto:" msgid "Force Nearest" msgstr "Forzar vecino más cercano" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" "Desconexión forzada porque %1 no es compatible con la expansión de VS " "(sombreadores de vértices)." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Conexión forzada porque %1 no es compatible con shaders de geometría." @@ -6339,6 +6351,12 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Formato:" @@ -6354,7 +6372,7 @@ msgstr "Adelante" msgid "Forward port (UPnP)" msgstr "Reenviar puerto (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Encontrado(s) %1 resultado(s) para «%2»" @@ -6364,7 +6382,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "Se ha(n) encontrado %n dirección(ones)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Fotograma %1" @@ -6385,11 +6403,11 @@ msgstr "Avanzar fotogramas más rápido" msgid "Frame Advance Reset Speed" msgstr "Avanzar fotogramas a la veloc. original" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Volcado de fotogramas" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Información de la grabación" @@ -6398,7 +6416,7 @@ msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" "Ya existe un volcado de imagen(es) llamado «{0}». ¿Quieres sustituirlo?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Fotogramas a grabar:" @@ -6418,7 +6436,7 @@ msgstr "Archivos libres: %1" msgid "Free Look Control Type" msgstr "Tipo de control de la cámara libre" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Mando %1 de la cámara libre" @@ -6453,7 +6471,7 @@ msgstr "Alternar cámara libre" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francés" @@ -6472,8 +6490,8 @@ msgid "From" msgstr "Desde" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Desde:" @@ -6481,10 +6499,14 @@ msgstr "Desde:" msgid "FullScr" msgstr "Pant. completa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Función" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funciones" @@ -6525,11 +6547,11 @@ msgstr "Volumen de GBA" msgid "GBA Window Size" msgstr "Tamaño de la ventana de GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "ROM GBA%1 cambiada a «%2»" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "ROM GBA%1 desactivada" @@ -6579,7 +6601,7 @@ msgstr "GL_MAX_TEXTURE_SIZE es {0} - debe ser al menos 1024." msgid "GPU Texture Decoding" msgstr "Decodificar texturas en GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6592,7 +6614,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: ERROR DE OGL: ¿Tu tarjeta gráfica es compatible con OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6600,7 +6622,7 @@ msgstr "" "GPU: ERROR DE OGL: Es necesaria la función GL_ARB_map_buffer_range.\n" "GPU: ¿Tu tarjeta gráfica es compatible con OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6608,7 +6630,7 @@ msgstr "" "GPU: ERROR DE OGL: Es necesaria la función GL_ARB_sampler_objects.\n" "GPU: ¿Tu tarjeta gráfica es compatible con OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6616,7 +6638,7 @@ msgstr "" "GPU: ERROR DE OGL: Es necesaria la función GL_ARB_uniform_buffer_object.\n" "GPU: ¿Tu tarjeta gráfica es compatible con OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6632,7 +6654,7 @@ msgstr "" "GPU: ERROR DE OGL: Es necesario un soporte de OpenGL 3.\n" "GPU: ¿Tu tarjeta gráfica es compatible con OpenGL 3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6655,16 +6677,16 @@ msgstr "" msgid "Game" msgstr "Juego" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartuchos de Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6672,7 +6694,7 @@ msgstr "" "ROMs de Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance en el puerto %1" @@ -6701,7 +6723,7 @@ msgid "Game Gamma:" msgstr "Gamma del juego:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID de juego" @@ -6710,15 +6732,15 @@ msgstr "ID de juego" msgid "Game ID:" msgstr "ID de juego:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Estado del juego" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Juego cambiado a «%1»" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6727,11 +6749,11 @@ msgstr "" "selecciona Propiedades, ve a la pestaña Verificar y selecciona Verificar " "integridad para comprobar su «hash»" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "El juego tiene un número de disco distinto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "El juego es una revisión distinta" @@ -6746,7 +6768,7 @@ msgstr "" "El juego se sobrescribió con los datos guardados de otro juego. Corrupción " "de datos inminente {0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "La región del juego no coincide" @@ -6766,11 +6788,11 @@ msgstr "Adaptador de GameCube para Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Adaptador de GameCube para Wii U en el puerto %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Mando de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Mando de GameCube en el puerto %1" @@ -6778,11 +6800,11 @@ msgstr "Mando de GameCube en el puerto %1" msgid "GameCube Controllers" msgstr "Mandos de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Teclado de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Configuración del teclado GameCube en el puerto %1" @@ -6799,7 +6821,7 @@ msgstr "Tarjetas de memoria de GameCube" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Tarjetas de memoria de GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "Ranura de micrófono de GameCube %1" @@ -6827,7 +6849,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6837,35 +6859,35 @@ msgstr "Códigos 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "General" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Ajustes generales" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Generar código(s) de Action Replay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Generar un nuevo identificador para estadísticas" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." -msgstr "" +msgstr "Se han generado códigos AR." -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Nombres de símbolos generados desde «%1»" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Alemán" @@ -6892,7 +6914,7 @@ msgstr "Giant" msgid "Giants" msgstr "Giants" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Modo golf" @@ -6901,7 +6923,7 @@ msgid "Good dump" msgstr "Volcado bueno" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gráficos" @@ -6946,7 +6968,7 @@ msgstr "Verde izquierdo" msgid "Green Right" msgstr "Verde derecho" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Vista en cuadrícula" @@ -6983,7 +7005,7 @@ msgstr "Posprocesado HDR" msgid "Hacks" msgstr "Arreglos temporales" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Inicio" @@ -7015,7 +7037,7 @@ msgstr "8 (hexad.)" msgid "Hex Byte String" msgstr "Cadena hexadecimal en bytes" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimal" @@ -7024,11 +7046,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Esconder" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" -msgstr "" +msgstr "Ocultar &controles" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Ocultar todo" @@ -7040,16 +7062,23 @@ msgstr "Ocultar sesiones en curso" msgid "Hide Incompatible Sessions" msgstr "Ocultar sesiones no compatibles" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Ocultar GBAs remotas" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Alto" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Más alto" @@ -7072,7 +7101,7 @@ msgstr "Alojar partida" msgid "Host Code:" msgstr "Código de anfitrión:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Autoridad de entrada para el anfitrión" @@ -7080,7 +7109,7 @@ msgstr "Autoridad de entrada para el anfitrión" msgid "Host Size" msgstr "Tamaño del anfitrión" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -7093,11 +7122,11 @@ msgstr "" "Ideal para juegos casuales para 3 o más jugadores, posiblemente en " "conexiones inestables o de alta latencia." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Autoridad de entrada para el anfitrión deshabilitada" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Autoridad de entrada para el anfitrión activada" @@ -7109,7 +7138,7 @@ msgstr "Alojar partida de juego en red" msgid "Hostname" msgstr "Nombre del anfitrión" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Ajustes de atajos" @@ -7119,12 +7148,12 @@ msgstr "Ajustes de atajos" msgid "Hotkeys" msgstr "Atajos del teclado" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" "Reconocer los atajos de teclado solo cuando la ventana esté en primer plano" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Ubershaders híbridos" @@ -7183,12 +7212,12 @@ msgstr "Dirección IP:" msgid "IPL Settings" msgstr "Ajustes del IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilidad IR:" @@ -7229,7 +7258,7 @@ msgstr "" msgid "Icon" msgstr "Icono" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7241,7 +7270,7 @@ msgstr "" "Recomendado para juegos por turnos con controles sensibles al tiempo, como " "el golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Generación de identidad" @@ -7267,7 +7296,7 @@ msgstr "" "fallos de rendimiento y estabilidad.\n" "Puedes desactivarlo en cualquier momento en los ajustes de Dolphin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7288,7 +7317,7 @@ msgstr "" "Si está desactivada, el estado de conexión del mando emulado se vinculará al " "estado de conexión del dispositivo real (en caso de que haya uno)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7300,7 +7329,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7316,9 +7345,9 @@ msgstr "" msgid "Ignore" msgstr "Ignorar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Ignorar resultados de ramas del «&apploader»" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7357,7 +7386,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Mostrar directamente el contenido del XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7372,7 +7401,7 @@ msgstr "" "disminuye ligeramente el rendimiento.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Importar copia de respaldo de la NAND en formato BootMii..." @@ -7387,15 +7416,15 @@ msgstr "Fallo al importar" msgid "Import Save File(s)" msgstr "Importar archivo(s) de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importar partidas guardadas de Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importando copia de respaldo de la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7404,6 +7433,15 @@ msgstr "" "Importando copia de respaldo de la NAND.\n" "Tiempo transcurrido: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "¿Dentro del juego?" @@ -7486,7 +7524,7 @@ msgstr "Rotación incremental (IR)" msgid "Incremental Rotation (rad/sec)" msgstr "Rotación incremental (rad/seg) (IR)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Creador de figuras de Infinity" @@ -7495,7 +7533,7 @@ msgstr "Creador de figuras de Infinity" msgid "Infinity Manager" msgstr "Administrador de Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Objeto de Infinity (*.bin);;" @@ -7519,12 +7557,12 @@ msgstr "Información" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Información" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Desactivar salvapantallas durante la emulación" @@ -7533,11 +7571,11 @@ msgid "Inject" msgstr "Inyectar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Entrada" @@ -7551,23 +7589,19 @@ msgstr "Fuerza de entrada requerida para activación" msgid "Input strength to ignore and remap." msgstr "Fuerza de entrada a ignorar y reasignar." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" -msgstr "" +msgstr "Insertar &BLR" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" -msgstr "" +msgstr "Insertar &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Insertar &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Insertar tarjeta SD" @@ -7580,11 +7614,11 @@ msgstr "Instalar" msgid "Install Partition (%1)" msgstr "Partición de instalación (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Instalar actualización" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7592,13 +7626,13 @@ msgstr "Instalar WAD..." msgid "Install to the NAND" msgstr "Instalar en la NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instrucción" @@ -7607,7 +7641,7 @@ msgstr "Instrucción" msgid "Instruction Breakpoint" msgstr "Punto de interrupción de instrucción" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instrucción:" @@ -7616,7 +7650,7 @@ msgstr "Instrucción:" msgid "Instruction: %1" msgstr "Instrucción: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7637,19 +7671,19 @@ msgstr "Intensidad" msgid "Interface" msgstr "Interfaz" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Error interno de LZ4 - se ha intentado descomprimir {0} bytes" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Error interno de LZ4 - fallo al comprimir" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Error interno de LZ4 - fallo al descomprimir ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" "Error interno de LZ4 - error de coincidencia del tamaño de la carga ({0} / " @@ -7664,7 +7698,7 @@ msgstr "Error interno de LZO - fallo al comprimir" msgid "Internal LZO Error - decompression failed" msgstr "Error interno de LZO - fallo al descomprimir" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7673,7 +7707,7 @@ msgstr "" "No se ha podido recuperar la información de versión obsoleta del estado de " "guardado." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7681,7 +7715,7 @@ msgstr "" "Error interno de LZO - error al analizar la cookie descomprimida de la " "versión y la longitud de cadena de la versión ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7698,7 +7732,7 @@ msgstr "Resolución interna" msgid "Internal Resolution:" msgstr "Resolución interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Error interno al generar el código AR." @@ -7706,7 +7740,7 @@ msgstr "Error interno al generar el código AR." msgid "Interpreter (slowest)" msgstr "Intérprete (muy lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Intérprete de núcleo" @@ -7724,7 +7758,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Código mixto incorrecto" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Paquete %1 no válido proporcionado: %2" @@ -7733,11 +7767,11 @@ msgstr "Paquete %1 no válido proporcionado: %2" msgid "Invalid Player ID" msgstr "ID de jugador incorrecto" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Dirección de módulo RSO incorrecta: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "La pila de llamadas («callstack») no es válida" @@ -7758,7 +7792,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Los datos introducidos en «%1» no son válidos" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Los datos introducidos no son válidos" @@ -7774,19 +7808,19 @@ msgstr "No se han introducido unos parámetros de búsqueda válidos." msgid "Invalid password provided." msgstr "Contraseña proporcionada incorrecta." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Archivo de grabación erróneo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Los parámetros de búsqueda no valen (no has seleccionado nada)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "La cadena de búsqueda no vale (no se pudo convertir en un número)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "La cadena de búsqueda no es válida (solo se permiten tamaños de texto pares)" @@ -7795,13 +7829,13 @@ msgstr "" msgid "Invalid title ID." msgstr "ID de título incorrecto." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Dirección inválida: 1%" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiano" @@ -7814,11 +7848,11 @@ msgstr "Italia" msgid "Item" msgstr "Objeto" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "Sin enlazado de bloques JIT" @@ -7826,47 +7860,47 @@ msgstr "Sin enlazado de bloques JIT" msgid "JIT Blocks" msgstr "Bloques JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "Sin rama JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "Sin coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "Sin números enteros JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "Sin LoadStore de coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "Sin LoadStore JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "Sin LoadStore con parejas JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "Sin LoadStore lXz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "Sin LoadStore lbzx JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "Sin LoadStore lwz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "Sin JIT (núcleo JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "Sin emparejamiento JIT" @@ -7878,16 +7912,16 @@ msgstr "Recompilador JIT para ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT para x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "Sin registro de caché de JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "Sin SystemRegisters JIT" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7896,16 +7930,16 @@ msgstr "" "memoria caché. Esto no debería haber pasado. Te rogamos que informes del " "fallo en el gestor de incidencias. Dolphin se cerrará." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" -msgstr "" +msgstr "El modo JIT no está activo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japón" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonés" @@ -7924,12 +7958,12 @@ msgstr "" "Kaos es el único villano de este trofeo y siempre está desbloqueado. ¡No " "hace falta editar nada!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Seguir ejecutando" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Mantener siempre en primer plano" @@ -7963,16 +7997,16 @@ msgstr "Teclas" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Echar al jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coreano" @@ -7993,7 +8027,7 @@ msgstr "Carg&ar ROM" msgid "L-Analog" msgstr "L analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "Guardar LR" @@ -8001,7 +8035,11 @@ msgstr "Guardar LR" msgid "Label" msgstr "Etiqueta" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Último valor" @@ -8015,23 +8053,23 @@ msgstr "Último uso:" msgid "Last reset:" msgstr "Último reinicio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Latencia:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Latencia: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Latencia: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Latencia: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Latencia: ~80 ms" @@ -8039,7 +8077,7 @@ msgstr "Latencia: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Ejecutar estos títulos también podría ayudar a arreglarlos." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Tablas de clasificación" @@ -8047,7 +8085,7 @@ msgstr "Tablas de clasificación" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -8058,7 +8096,7 @@ msgstr "Izquierda" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Palanca izquierda" @@ -8135,11 +8173,11 @@ msgstr "Luces" msgid "Limit Chunked Upload Speed:" msgstr "Limite la velocidad de subida de datos:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Columnas en la lista" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Vista en lista" @@ -8148,30 +8186,30 @@ msgid "Listening" msgstr "Escuchando" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Cargar" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Cargar archiv&o de mapa incorrecto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Cargar archiv&o de mapa adicional..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "Cargar instantánea del inspector de ramas &desde..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Cargar instantánea del inspector de ramas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Cargar texturas personalizadas" @@ -8179,11 +8217,11 @@ msgstr "Cargar texturas personalizadas" msgid "Load File" msgstr "Cargar archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Cargar menú principal de GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Solo cargar los datos guardados del anfitrión" @@ -8289,23 +8327,23 @@ msgstr "Cargar estado 8" msgid "Load State Slot 9" msgstr "Cargar estado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Cargar estado desde un archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Cargar estado desde la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Cargar estado desde una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Cargar menú del sistema Wii %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Cargar y escribir los datos guardados del anfitrión" @@ -8313,28 +8351,28 @@ msgstr "Cargar y escribir los datos guardados del anfitrión" msgid "Load from Selected Slot" msgstr "Cargar la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Cargar desde la ranura %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Cargar archivo de mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Cargar menú del sistema vWii %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Cargar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Símbolos cargados desde «%1»" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8345,7 +8383,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8354,20 +8392,28 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Local" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Bloquear cursor del ratón" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Bloqueada" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Registro" @@ -8376,19 +8422,19 @@ msgstr "Registro" msgid "Log Configuration" msgstr "Configuración de registro" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Iniciar sesión" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Registros de cobertura de instrucciones JIT" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Cerrar sesión" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Guardar tiempos de dibujado en archivo" @@ -8400,11 +8446,11 @@ msgstr "Tipos de registro" msgid "Logger Outputs" msgstr "Salida de registro" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Fallo al iniciar sesión" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8415,20 +8461,20 @@ msgstr "" "rendimiento de Dolphin.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Bucle" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Se ha perdido la conexión con el servidor de juego en red..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Bajo" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Más bajo" @@ -8440,7 +8486,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "TERMINANDO" @@ -8488,7 +8534,7 @@ msgstr "¡Asegúrate de que haya un Skylander en el espacio %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Creador" @@ -8510,16 +8556,16 @@ msgstr "" "del efecto.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Administrar NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Muestreo manual de texturas" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Asignación" @@ -8531,11 +8577,11 @@ msgstr "Enmascarar ROM" msgid "Match Found" msgstr "Se han encontrado coincidencias" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Búfer máximo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "El tamaño máximo del búfer ha cambiado a %1" @@ -8544,7 +8590,7 @@ msgstr "El tamaño máximo del búfer ha cambiado a %1" msgid "Maximum tilt angle." msgstr "Ángulo de inclinación máximo." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Puede empeorar el rendimiento del menú de Wii y de algunos juegos." @@ -8565,7 +8611,7 @@ msgstr "Punto de interrupción en memoria" msgid "Memory Card" msgstr "Tarjeta de memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Administrador de tarjetas de memoria" @@ -8593,7 +8639,7 @@ msgstr "MemoryCard: Lectura en dirección de destino incorrecta ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Escritura en dirección de destino incorrecta ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8610,7 +8656,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Micrófono" @@ -8619,17 +8665,17 @@ msgstr "Micrófono" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Varios" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Otros ajustes" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" -msgstr "" +msgstr "Varios" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8641,7 +8687,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "No coinciden las estructuras de datos internas." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8661,14 +8707,14 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Adaptador de módem (tapserver)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8688,8 +8734,8 @@ msgstr "Modificar espacio" msgid "Modifying Skylander: %1" msgstr "Modificando Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Módulos encontrados: %1" @@ -8697,7 +8743,7 @@ msgstr "Módulos encontrados: %1" msgid "Money:" msgstr "Dinero:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8709,11 +8755,11 @@ msgstr "Sombras monoscópicas" msgid "Monospaced Font" msgstr "Tipografía monoespaciada" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Entrada de movimientos" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Simulación de movimientos" @@ -8722,26 +8768,10 @@ msgstr "Simulación de movimientos" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Visibilidad del cursor del ratón" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" -"El cursor del ratón se ocultará al estar inactivo y volverá a aparecer " -"cuando se mueva." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "El cursor del ratón será visible en todo momento." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" -"El cursor del ratón no se mostrará mientras se esté ejecutando un juego." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8752,7 +8782,7 @@ msgstr "Movimiento" msgid "Movie" msgstr "Grabación" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8760,9 +8790,9 @@ msgstr "" "La grabación {0} indica que debe empezar a partir de un estado de guardado, " "pero {1} no existe. ¡Es muy probable que la grabación se desincronice!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "Se han producido varios errores al generar los códigos AR." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -8773,10 +8803,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "N&o a todo" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Comprobación de NAND" @@ -8785,8 +8815,8 @@ msgstr "Comprobación de NAND" msgid "NKit Warning" msgstr "Advertencia NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8795,7 +8825,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8818,8 +8848,8 @@ msgstr "" "elegir un valor de gamma, debes igualarlo aquí.

Si " "tienes dudas, deja esta opción en 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8862,7 +8892,7 @@ msgstr "Nativa (640x528)" msgid "Native GCI File" msgstr "Archivo GCI nativo" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "Juego en red" @@ -8878,7 +8908,7 @@ msgstr "Configuración de juego en red" msgid "Netherlands" msgstr "Países Bajos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8887,7 +8917,7 @@ msgstr "" "Cualquier dato guardado que se cree o modifique durante la sesión " "permanecerá en los datos de guardado del anfitrión." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8897,7 +8927,7 @@ msgstr "" "cualquier dato guardado que se cree o modifique durante la sesión se " "eliminará al terminar la misma." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8906,7 +8936,7 @@ msgstr "" "dato guardado que se cree se descartará al terminar la sesión." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Red" @@ -8914,16 +8944,16 @@ msgstr "Red" msgid "Network dump format:" msgstr "Formato del volcado de red:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Nunca" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Desactivar actualizaciones automáticas" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nuevo" @@ -8948,7 +8978,7 @@ msgstr "Nueva búsqueda" msgid "New Tag..." msgstr "Nueva etiqueta..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Se ha generado un identificador nuevo." @@ -8965,7 +8995,7 @@ msgstr "Nueva etiqueta" msgid "Next Game Profile" msgstr "Siguiente perfil de juego" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Siguiente coincidencia" @@ -9011,7 +9041,7 @@ msgstr "Sin compresión" msgid "No Match" msgstr "Sin coincidencias" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "No usar datos guardados" @@ -9019,12 +9049,12 @@ msgstr "No usar datos guardados" msgid "No data to modify!" msgstr "¡No hay datos que modificar!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Sin descripción" @@ -9036,7 +9066,7 @@ msgstr "Sin errores" msgid "No extension selected." msgstr "No has elegido ninguna extensión." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "No se ha cargado o grabado ningún archivo." @@ -9044,7 +9074,7 @@ msgstr "No se ha cargado o grabado ningún archivo." msgid "No game is running." msgstr "No hay ningún juego en ejecución." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "No hay ningún juego en ejecución." @@ -9057,11 +9087,11 @@ msgstr "No has elegido un mod de gráficos." msgid "No input" msgstr "No hay entrada" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "No se ha detectado ningún problema." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "No se ha encontrado el juego correspondiente" @@ -9088,7 +9118,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "No se han encontrado perfiles para la configuración del juego «{0}»" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "No se ha cargado una grabación." @@ -9107,10 +9137,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Ninguno" @@ -9122,7 +9152,7 @@ msgstr "Norteamérica" msgid "Not Set" msgstr "No definido" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Algunos jugadores no tienen el juego. ¿Seguro que quieres continuar?" @@ -9146,7 +9176,7 @@ msgstr "" "No hay suficientes archivos libres en la tarjeta de memoria elegida. Se " "requiere(n) al menos %n archivo(s) libre(s)." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "No se ha encontrado" @@ -9192,78 +9222,78 @@ msgstr "Número de sacudidas por segundo." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Acelerómetro del Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Botones del Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Palanca del Nunchuk" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "Aceptar" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Objeto %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Tamaño de objeto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "X de objeto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Y de objeto 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Tamaño de objeto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "X de objeto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Y de objeto 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Tamaño de objeto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "X de objeto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Y de objeto 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Tamaño de objeto 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "X de objeto 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Y de objeto 4" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Rango de objeto" @@ -9284,11 +9314,11 @@ msgstr "Ajuste" msgid "On" msgstr "Encendido" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Al moverlo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9298,7 +9328,7 @@ msgstr "" "geometría como de vértices para expandir puntos y líneas se seleccionará un " "sombreador de vértices. Esta opción podría afectar al rendimiento.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9312,8 +9342,20 @@ msgid "" "calls and conditional code paths that are only taken when an action is " "performed in the emulated software." msgstr "" +"Una vez llegues a la fase de reducción, tendrás que reducir el número de " +"candidatos que aparezcan en la tabla. Podrás reducirlo también comprobando " +"si una ruta de código ha sido tomada o no desde la última comprobación. " +"También es posible reducir el número de candidatos determinando si la " +"instrucción de una rama ha sido sobrescrita o no desde la primera vez que " +"fue identificada. Puedes filtrar las candidatas por tipo de rama, condición " +"de rama, direcciones de origen o destino y nombres de símbolos de origen o " +"destino.\n" +"\n" +"Cuando hayas experimentado lo suficiente y hecho las suficientes pasadas, " +"tal vez encuentres llamadas a funciones y rutas de código condicional que " +"solo se ejecuten cuando ocurra una acción concreta en el software emulado." -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Documentación en línea" @@ -9321,7 +9363,7 @@ msgstr "&Documentación en línea" msgid "Only Show Collection" msgstr "Mostrar solo tu colección" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9329,7 +9371,7 @@ msgstr "" "Solo añadir símbolos con prefijo:\n" "(Dejar en blanco para añadir todos los símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9348,7 +9390,7 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "Abrir &carpeta contenedora" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Abrir carpeta de &usuario" @@ -9357,7 +9399,7 @@ msgstr "Abrir carpeta de &usuario" msgid "Open Directory..." msgstr "Abrir directorio..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Abrir registro FIFO" @@ -9423,34 +9465,34 @@ msgstr "Naranja" msgid "Orbital" msgstr "Orbitar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" -msgstr "" +msgstr "Origen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" -msgstr "" +msgstr "Origen máx." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" -msgstr "" +msgstr "Origen mín." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" -msgstr "" +msgstr "Símbolo de origen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" -msgstr "" +msgstr "Origen y destino" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9465,11 +9507,11 @@ msgstr "Otra partición (%1)" msgid "Other State Hotkeys" msgstr "Otros atajos de guardado" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Otros elementos de guardado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Otro juego..." @@ -9485,16 +9527,16 @@ msgstr "Remuestreo de salida" msgid "Output Resampling:" msgstr "Remuestreo de salida:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Reproducir pu&lsaciones grabadas..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9507,11 +9549,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "Nivel de compresión de PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "Nivel de compresión de PNG:" @@ -9523,7 +9565,7 @@ msgstr "Archivo de imagen PNG (*.png);; Todos los archivos (*)" msgid "PPC Size" msgstr "Tamaño de PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC contra anfitrión" @@ -9557,7 +9599,7 @@ msgstr "Pasivo" msgid "Passthrough a Bluetooth adapter" msgstr "Acceder directamente a un adaptador de Bluetooth" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Contraseña" @@ -9595,15 +9637,15 @@ msgstr "Rutas" msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" -msgstr "" +msgstr "Pausar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pausar al terminar la grabación" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pausar al pasar a segundo plano" @@ -9623,6 +9665,12 @@ msgstr "" "misma manera que al activar el MMU.

Si tienes " "dudas, deja esta opción desactivada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9642,7 +9690,7 @@ msgstr "Velocidad máxima de los movimientos de balanceo hacia afuera." msgid "Per-Pixel Lighting" msgstr "Iluminación por píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Actualizar la consola a través de Internet" @@ -9650,15 +9698,15 @@ msgstr "Actualizar la consola a través de Internet" msgid "Perform System Update" msgstr "Actualizar la consola" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Período de muestreo de rendimiento (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Período de muestreo de rendimiento (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Estadísticas de rendimiento" @@ -9676,11 +9724,11 @@ msgstr "Espacio de la dirección física" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Elige una tipografía de depuración" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Latencia" @@ -9693,7 +9741,7 @@ msgid "Pitch Up" msgstr "Cabeceo hacia abajo" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plataforma" @@ -9701,7 +9749,7 @@ msgstr "Plataforma" msgid "Play" msgstr "Jugar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Reproducir/grabar" @@ -9713,40 +9761,40 @@ msgstr "Reproducir grabación" msgid "Play Set/Power Disc" msgstr "Set de juego/Disco de poder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opciones de reproducción" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Jugador" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Habilidad uno del jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Habilidad dos del jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Jugador dos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Habilidad uno del jugador dos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Habilidad dos del jugador dos" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Jugadores" @@ -9765,7 +9813,7 @@ msgstr "" "¡Por favor, cambia el valor de «SyncOnSkipIdle» a «True»! El valor está " "desactivado, lo que hace que este problema pase fácilmente." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9780,10 +9828,10 @@ msgstr "Puntero" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Puntero (acceso directo)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Puerto %1" @@ -9800,7 +9848,7 @@ msgstr "Puerto:" msgid "Portal Slots" msgstr "Espacios del portal" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Posible desincronización: podemos haber perdido a %1 en el fotograma %2" @@ -9817,24 +9865,32 @@ msgstr "Efecto de posprocesado:" msgid "Post-Processing Shader Configuration" msgstr "Configuración del sombreador de posprocesado" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Preferir VS para expandir puntos y líneas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Precargar texturas personalizadas" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Final prematuro de la grabación en PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Final prematuro de la grabación en PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Final prematuro de la grabación en PlayWiimote. {0} > {1} " @@ -9859,7 +9915,7 @@ msgstr "Pulsar el botón de sincronización" msgid "Pressure" msgstr "Presión" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9879,7 +9935,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Perfil anterior de juego" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Coincidencia anterior" @@ -9890,7 +9946,7 @@ msgstr "Perfil anterior" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitiva %1:" @@ -9930,7 +9986,7 @@ msgstr "" "Se encontraron problemas de gravedad media. Es posible que todo el juego o " "ciertas partes del mismo no funcionen correctamente." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Perfil" @@ -9939,23 +9995,29 @@ msgstr "Perfil" msgid "Program Counter" msgstr "Contador del programa (PC)" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Progreso" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Vaciar la caché de la lista de juegos" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Debes guardar tus ROMs del IPL en User/GC/." @@ -9975,7 +10037,7 @@ msgstr "No se pudo activar el sistema de calidad de servicio (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "El sistema de calidad de servicio (QoS) se ha activado correctamente." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Calidad del decodificador DPLII. La latencia de audio aumenta con la calidad." @@ -9983,11 +10045,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Pregunta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Salir" @@ -10004,19 +10066,19 @@ msgstr "R" msgid "R-Analog" msgstr "R analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "Listo" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "Módulos RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "Autodetección RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "Funcionando" @@ -10037,7 +10099,7 @@ msgstr "Fin del rango:" msgid "Range Start: " msgstr "Inicio del rango:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Rango %1" @@ -10045,16 +10107,17 @@ msgstr "Rango %1" msgid "Raw" msgstr "Datos en bruto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Resolución interna en bruto" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Reemplazar instrucción" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Leer" @@ -10095,33 +10158,33 @@ msgstr "" "Se han recibido datos no válidos de un mando de Wii a través de la sesión de " "juego en red." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" -msgstr "" +msgstr "Coincidencias recientes" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" msgstr "Centrar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Grabar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Grabar entradas" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Grabando" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opciones de grabación" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Grabando..." @@ -10161,7 +10224,7 @@ msgstr "Estado de redump.org:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10194,7 +10257,7 @@ msgid "Refreshing..." msgstr "Actualizando..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Región" @@ -10215,7 +10278,11 @@ msgstr "Entrada relativa" msgid "Relative Input Hold" msgstr "Parar entrada relativa" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Recordar más tarde" @@ -10223,7 +10290,7 @@ msgstr "Recordar más tarde" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Eliminar" @@ -10254,20 +10321,20 @@ msgstr "" "que meta después el archivo ISO en un formato de archivo comprimido, como " "ZIP). ¿Quieres continuar de todos modos?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Renombrar símbolo" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Ventana de renderización" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Mostrar en la ventana principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10285,10 +10352,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "Solicitud para unirse a tu partida." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10298,7 +10371,7 @@ msgstr "Reiniciar" msgid "Reset All" msgstr "Reiniciar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Reiniciar el ignorado de errores y advertencias" @@ -10330,9 +10403,9 @@ msgstr "Restablecer vista" msgid "Reset all saved Wii Remote pairings" msgstr "Revierte todas las vinculaciones de mandos de Wii existentes." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" -msgstr "" +msgstr "Tipo de resolución:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10342,7 +10415,7 @@ msgstr "Administrador de paquetes de recursos" msgid "Resource Pack Path:" msgstr "Ruta de paquetes de recursos:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Es necesario reiniciar." @@ -10350,11 +10423,11 @@ msgstr "Es necesario reiniciar." msgid "Restore Defaults" msgstr "Restaurar valores predeterminados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Restaurar instrucción" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Reintentar" @@ -10363,7 +10436,7 @@ msgstr "Reintentar" msgid "Return Speed" msgstr "Velocidad de retorno" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revisión" @@ -10375,7 +10448,7 @@ msgstr "Revisión: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10386,7 +10459,7 @@ msgstr "Derecha" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Palanca derecha" @@ -10422,11 +10495,11 @@ msgstr "Balanceo a la izquierda" msgid "Roll Right" msgstr "Balanceo a la derecha" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ID de sala" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Rotación" @@ -10450,27 +10523,31 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10483,7 +10560,7 @@ msgstr "" msgid "Rumble" msgstr "Vibración" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Ejecutar has&ta aquí" @@ -10491,15 +10568,15 @@ msgstr "Ejecutar has&ta aquí" msgid "Run GBA Cores in Dedicated Threads" msgstr "Ejecutar los núcleos de GBA en hilos dedicados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Ejecutar hasta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Ejecutar hasta (ignorando puntos de interrupción)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Ejecutar hasta aparición (ignorando puntos de interrupción)" @@ -10507,23 +10584,23 @@ msgstr "Ejecutar hasta aparición (ignorando puntos de interrupción)" msgid "Russia" msgstr "Rusia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "Tarjeta SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "Tamaño del archivo de tarjeta SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Imagen de tarjeta SD (*.raw);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Ruta de la tarjeta SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "Ajustes de la tarjeta SD" @@ -10531,7 +10608,7 @@ msgstr "Ajustes de la tarjeta SD" msgid "SD Root:" msgstr "Raíz de la SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "Carpeta de sincronización de la SD:" @@ -10566,11 +10643,11 @@ msgstr "Entorno SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Gua&rdar código" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Gua&rdar estado" @@ -10580,9 +10657,9 @@ msgid "Safe" msgstr "Segura" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10592,25 +10669,25 @@ msgstr "Guardar" msgid "Save All" msgstr "Guardar todo" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "Guardar inspección de ramas &como..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Guardar instantánea del inspector de ramas" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Exportar guardado" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Guardar registro FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Guardar archivo en" @@ -10624,11 +10701,11 @@ msgstr "Guardado de juego" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Archivos de guardado de juegos (*.sav);; Todos los archivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Importar guardado" @@ -10640,7 +10717,7 @@ msgstr "Guardar el estado más antiguo" msgid "Save Preset" msgstr "Guardar preajuste" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Guardar archivo de grabación como" @@ -10690,23 +10767,23 @@ msgstr "Ranura de guardado 8" msgid "Save State Slot 9" msgstr "Ranura de guardado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Guardar estado en archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Guardar estado en la ranura más antigua" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Guardar estado en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Guardar estado en ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Guardar map&a de símbolos como..." @@ -10714,7 +10791,7 @@ msgstr "Guardar map&a de símbolos como..." msgid "Save Texture Cache to State" msgstr "Guardar caché de texturas en estado" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Guardar/Cargar estados" @@ -10726,11 +10803,11 @@ msgstr "Guardar como preajuste..." msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Guardar archivo de salida combinado como" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10744,11 +10821,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Guardar en el mismo directorio que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Guardar archivo de mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Guardar archivo de firmas" @@ -10756,11 +10833,11 @@ msgstr "Guardar archivo de firmas" msgid "Save to Selected Slot" msgstr "Guardar en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Guardar en la ranura %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Guardar..." @@ -10774,7 +10851,7 @@ msgstr "" msgid "Saves:" msgstr "Guardados:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "El estado de la grabación {0} está dañado, deteniendo la grabación..." @@ -10791,8 +10868,8 @@ msgid "ScrShot" msgstr "Pantallazo" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Buscar" @@ -10801,7 +10878,7 @@ msgstr "Buscar" msgid "Search Address" msgstr "Buscar dirección" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Buscar objeto actual" @@ -10821,7 +10898,7 @@ msgstr "" "Actualmente no se puede buscar en el espacio de la memoria virtual. Ejecuta " "el juego durante unos minutos y vuelve a intentarlo." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Buscar una instrucción" @@ -10829,7 +10906,7 @@ msgstr "Buscar una instrucción" msgid "Search games..." msgstr "Buscar juegos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Búsqueda de instrucciones" @@ -10865,34 +10942,36 @@ msgstr "Seleccionar" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" msgstr "" +"Seleccionar archivo de instantánea autoguardada del inspector de ramas (si " +"deseas utilizar la carpeta de usuario, cancela)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Seleccionar ruta de volcado" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Seleccionar directorio de exportación" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Seleccionar archivo de figura" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Seleccionar BIOS de GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Seleccionar ROM de GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Seleccionar ruta de archivos de guardado de GBA" @@ -10920,7 +10999,7 @@ msgstr "Seleccionar colección de Skylanders" msgid "Select Skylander File" msgstr "Seleccionar archivo de Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Ranura de guardado %1 - %2" @@ -10928,7 +11007,7 @@ msgstr "Ranura de guardado %1 - %2" msgid "Select State" msgstr "Cargar ranura de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Seleccionar ranura de guardado" @@ -10989,13 +11068,13 @@ msgstr "Seleccionar directorio" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Seleccionar archivo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Seleccionar carpeta a sincronizar con la imagen de la tarjeta SD" @@ -11003,7 +11082,7 @@ msgstr "Seleccionar carpeta a sincronizar con la imagen de la tarjeta SD" msgid "Select a Game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Seleccionar imagen de tarjeta SD" @@ -11015,7 +11094,7 @@ msgstr "Seleccionar archivo" msgid "Select a game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Seleccionar título a instalar en la NAND" @@ -11023,11 +11102,11 @@ msgstr "Seleccionar título a instalar en la NAND" msgid "Select e-Reader Cards" msgstr "Seleccionar tarjetas e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Elige la dirección del módulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Seleccionar archivo de grabación a reproducir" @@ -11035,12 +11114,12 @@ msgstr "Seleccionar archivo de grabación a reproducir" msgid "Select the Virtual SD Card Root" msgstr "Seleccionar carpeta raíz de la tarjeta SD virtual" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Seleccionar archivo de claves (volcado OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Selecciona el archivo de guardado" @@ -11063,16 +11142,16 @@ msgstr "El perfil del mando seleccionado no existe" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "¡El juego seleccionado no existe en la lista de juegos!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Pila de llamadas del hilo seleccionado" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Contexto del hilo seleccionado" @@ -11094,7 +11173,7 @@ msgstr "" "

Si tienes dudas, selecciona la primera opción." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11112,6 +11191,24 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"Selecciona la forma de capturar volcados de fotogramas (vídeos) y capturas " +"de pantalla.
Si cambia la resolución del juego o de la ventana durante " +"una grabación, es posible que se generen varios archivos de vídeo.
Ten en " +"cuenta que las capturas ignorarán siempre la corrección de color y el " +"recorte de imagen.

Resolución de ventana: utiliza la " +"resolución de la ventana de salida (sin contar las bandas negras).
Una " +"opción de volcado sencillo que capturará la imagen más o menos tal y como la " +"estés viendo.
Resolución interna con corrección de relación de " +"aspecto: utiliza la resolución interna (tamaño del XFB) y la corrige " +"utilizando la relación de aspecto objetivo.
Esta opción hará los volcados " +"manteniendo la resolución interna especificada, sin importar cómo se muestre " +"la imagen durante la grabación.
Resolución interna en bruto: " +"utiliza la resolución interna (tamaño del XFB) sin corregirla con la " +"relación de aspecto objetivo.
Esto ofrecerá un volcado limpio sin " +"corregir la relación de aspecto, para que los usuarios tengan una imagen lo " +"más pura posible para su uso en aplicaciones externas de edición." +"

Si tienes dudas, selecciona Resolución interna con " +"corrección de relación de aspecto." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" @@ -11133,7 +11230,7 @@ msgstr "" "usado por ciertos televisores.

Si tienes dudas, " "selecciona «No»." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11154,8 +11251,29 @@ msgid "" "normal circumstances.

If unsure, select Auto." msgstr "" +"Selecciona la relación de aspecto con la que se mostrará el juego.

La " +"relación de aspecto de la imagen que transmiten las consolas originales " +"cambiaba según el juego, y apenas solía coincidir con las relaciones de 4:3 " +"o 16:9. La imagen se mostraría cortada por los bordes de los televisores o " +"no cubriría toda la extensión de las pantallas. Dolphin muestra por defecto " +"la imagen completa sin distorsionar sus proporciones, lo que significa que " +"es normal que la imagen no se extienda por completo por toda la pantalla." +"

Automático: imita un televisor con una relación de aspecto de " +"4:3 o 16:9, según el tipo de imagen que parezca que quiere producir el juego." +"

Forzar 16:9: imita un televisor con una relación de aspecto " +"de 16:9 (panorámica).

Forzar 4:3: imita un televisor con una " +"relación de aspecto de 4:3.

Estirar a ventana: estira la " +"imagen al tamaño de la ventana. Por norma general, distorsionará las " +"proporciones de la imagen.

Personalizada: imita un televisor " +"con la relación de aspecto indicada. Esta opción está pensada para acompañar " +"modificaciones o trucos de relación de aspecto.

Personalizada " +"(estirada): similar a «Personalizada», pero estirará la imagen hasta " +"alcanzar la relación de aspecto especificada. Por norma general, " +"distorsionará las proporciones de la imagen y no debería utilizarse en " +"circunstancias normales.

Si tienes dudas, " +"selecciona Automática." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11173,11 +11291,11 @@ msgstr "" "necesidades.

Si tienes dudas, selecciona OpenGL. " -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Posición de la barra sensora:" @@ -11209,6 +11327,10 @@ msgstr "El servidor de paso rechazó el intento de conexión" msgid "Set &Value" msgstr "Establecer &valor" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11226,23 +11348,23 @@ msgstr "Elige el archivo de la ranura A" msgid "Set memory card file for Slot B" msgstr "Elige el archivo de la ranura B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Especifica la direción final del &símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Ajustar tamaño del &símbolo " -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Escribe la dirección final del símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Ajustar tamaño del símbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11252,11 +11374,19 @@ msgstr "" "los juegos PAL.\n" "Podría no funcionar con todos los juegos." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Establece el idioma del sistema de Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11264,6 +11394,13 @@ msgstr "" "Establece la latencia en milisegundos. Los valores más altos pueden reducir " "la crepitación de audio. Solo funciona con algunos motores de sonido." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11273,13 +11410,13 @@ msgstr "" "dirección virtual de la MEM1 y (en el caso de la Wii) la MEM2. Compatible " "con la gran mayoría de los juegos." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Ajustes" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: No puedo crear archivo setting.txt" @@ -11287,7 +11424,7 @@ msgstr "SetupWiiMemory: No puedo crear archivo setting.txt" msgid "Severity" msgstr "Gravedad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Compilación de sombreadores" @@ -11309,32 +11446,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Mando Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Mostrar velocidad porcentual" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Mostrar ®istro" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Mostrar barra de herramien&tas" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Mostrar nombre del juego actual en el título de la ventana" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Mostrar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Mostrar el juego actual en Discord" @@ -11343,7 +11480,7 @@ msgstr "Mostrar el juego actual en Discord" msgid "Show Disabled Codes First" msgstr "Mostrar primero los códigos desactivados" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Mostrar ELF/DOL" @@ -11352,31 +11489,31 @@ msgstr "Mostrar ELF/DOL" msgid "Show Enabled Codes First" msgstr "Mostrar primero los códigos activados" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Mostrar fotogramas por segundo (FPS)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Mostrar duraciones de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Alemania" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Mostrar superposición de modo de golf" @@ -11384,23 +11521,23 @@ msgstr "Mostrar superposición de modo de golf" msgid "Show Infinity Base" msgstr "Mostrar base de Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Mostrar registro de teclas" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Japón" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Mostrar indicador de retardo" @@ -11408,27 +11545,27 @@ msgstr "Mostrar indicador de retardo" msgid "Show Language:" msgstr "Mostrar idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Mostrar configuración de ®istro" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Mostrar mensajes de juego en red" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Mostrar latencia de juego en red" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Holanda" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Mostrar mensajes en pantalla" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Región PAL" @@ -11437,27 +11574,27 @@ msgstr "Región PAL" msgid "Show PC" msgstr "Mostrar PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Mostrar gráficas de rendimiento" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Mostrar plataformas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" -msgstr "" +msgstr "Mostrar estadísticas de proyección" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Mostrar regiones" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Mostrar contador de regrabaciones" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Rusia" @@ -11465,72 +11602,72 @@ msgstr "Rusia" msgid "Show Skylanders Portal" msgstr "Mostrar portal de Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "España" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Mostrar colores según velocidad" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Mostrar estadísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Mostrar reloj del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Taiwán" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Otros" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Mostrar duraciones de VBlanks" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Mostrar WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Mostrar juegos internacionales" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Mostrar en &memoria" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Mostrar en código" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Mostrar en memoria" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Mostrar en código" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Mostrar en memoria" @@ -11538,11 +11675,19 @@ msgstr "Mostrar en memoria" msgid "Show in server browser" msgstr "Mostrar en el navegador del servidor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Mostrar objetivo en &memoria" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11551,7 +11696,7 @@ msgstr "" "durante una partida de juego en red.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11572,7 +11724,25 @@ msgstr "" "velocidad completa.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11583,7 +11753,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11593,7 +11763,7 @@ msgstr "" "fotograma renderizado y la variación estándar.

Si " "tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11603,7 +11773,7 @@ msgstr "" "de fluidez visual.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11622,13 +11792,15 @@ msgstr "" "juego en red.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"Muestra varias estadísticas sobre la proyección.

Si " +"tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11653,7 +11825,7 @@ msgstr "Cambiar de/a horizontal" msgid "Sideways Wii Remote" msgstr "Mando de Wii en horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Base de datos de firmas" @@ -11672,12 +11844,12 @@ msgstr "Con signo de 32 bits" msgid "Signed 8" msgstr "Con signo de 8 bits" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Entero con signo" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chino simplificado" @@ -11694,7 +11866,7 @@ msgstr "Seis ejes" msgid "Size" msgstr "Tamaño" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11706,7 +11878,7 @@ msgstr "" msgid "Skip" msgstr "Omitir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Omitir dibujado" @@ -11763,6 +11935,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Todos los archivos (*)" @@ -11838,7 +12013,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Ordenar alfabéticamente" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Sonido:" @@ -11852,7 +12027,7 @@ msgstr "España" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Español" @@ -11860,19 +12035,19 @@ msgstr "Español" msgid "Speaker Pan" msgstr "Altavoz estéreo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volumen del altavoz:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Especializados (predeterminado)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Específico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11908,11 +12083,11 @@ msgstr "Velocidad" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Final de la pila" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Inicio de la pila" @@ -11920,25 +12095,25 @@ msgstr "Inicio de la pila" msgid "Standard Controller" msgstr "Mando de juego estándar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Comenzar" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Comenzar &juego en red..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" -msgstr "" +msgstr "Iniciar inspección de ramas" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Iniciar una nueva búsqueda de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Grabar pulsaciones" @@ -11946,7 +12121,7 @@ msgstr "&Grabar pulsaciones" msgid "Start Recording" msgstr "Comenzar grabación" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Empezar en pantalla completa" @@ -11958,14 +12133,14 @@ msgstr "Comenzar con parches de Riivolution" msgid "Start with Riivolution Patches..." msgstr "Comenzar con parches de Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Juego en ejecución" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Estado" @@ -11997,19 +12172,19 @@ msgstr "Saltar una" msgid "Step Over" msgstr "Salir de" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Se ha saltado la instrucción." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Se ha cancelado el salto de instrucciones por tardar demasiado tiempo." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Saltando instrucciones..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Se han saltado las instrucciones." @@ -12018,7 +12193,7 @@ msgstr "Se han saltado las instrucciones." msgid "Stepping" msgstr "Avanzar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Estéreo" @@ -12047,16 +12222,16 @@ msgid "Stick" msgstr "Palanca" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Detener" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Detener la reproducción o grabación de pulsaciones" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Juego detenido" @@ -12099,11 +12274,11 @@ msgstr "" "XFB a la RAM (y textura)

Si tienes dudas, deja esta " "opción activada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Estirar a la ventana" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Sincronizar ajustes de forma estricta" @@ -12117,7 +12292,11 @@ msgstr "Cadena" msgid "Strum" msgstr "Barra de toque" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Estilo:" @@ -12128,18 +12307,18 @@ msgstr "Estilo:" msgid "Stylus" msgstr "Stylus" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Todo correcto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Añadido correctamente al índice de juego en red" @@ -12149,7 +12328,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "Convertidas %n imágene(s)." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "«%1» se ha borrado correctamente." @@ -12162,24 +12341,24 @@ msgstr "Exportados satisfactoriamente %n de %1 archivo(s) de guardado." msgid "Successfully exported save files" msgstr "Las partidas guardadas se han exportado correctamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Se han extraído correctamente los certificados de la NAND." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "El archivo se ha extraído correctamente." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Los datos del sistema se han extraído correctamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Archivo de guardado importado correctamente." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "El título ha sido instalado correctamente en la NAND." @@ -12202,16 +12381,16 @@ msgstr "Ayuda" msgid "Supported file formats" msgstr "Formatos de archivo soportados" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Compatible con tarjetas SD y SDHC. El tamaño por defecto es de 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Envolvente" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Suspendido" @@ -12258,17 +12437,17 @@ msgstr "Cambiar a B" msgid "Symbol" msgstr "Símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Dirección final del símbolo (%1):" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Nombre de símbolo:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Símbolos" @@ -12276,7 +12455,7 @@ msgstr "Símbolos" msgid "Sync" msgstr "Sincronizar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Sincronizar códigos AR/Gecko" @@ -12297,7 +12476,7 @@ msgstr "" "puntuales al utilizar dos o más núcleos (Activado: el ajuste más compatible; " "Desactivado: el ajuste más rápido)." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12318,24 +12497,24 @@ msgid "Synchronizing save data..." msgstr "Sincronizando datos guardados..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Entrada 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Herramientas TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Etiquetas" @@ -12345,7 +12524,7 @@ msgstr "Etiquetas" msgid "Taiko Drum" msgstr "Tambor Taiko" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Cola" @@ -12353,7 +12532,7 @@ msgstr "Cola" msgid "Taiwan" msgstr "Taiwán" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Capturar pantalla" @@ -12361,7 +12540,7 @@ msgstr "Capturar pantalla" msgid "Target address range is invalid." msgstr "El rango de direcciones indicado no es válido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12379,11 +12558,11 @@ msgstr "Tecnología" msgid "Test" msgstr "Probar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Archivos de texto (*.txt);;Todos los archivos (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12394,7 +12573,7 @@ msgstr "Caché de texturas" msgid "Texture Cache Accuracy" msgstr "Precisión de la caché de texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Volcado de texturas" @@ -12406,7 +12585,7 @@ msgstr "Filtrado de texturas" msgid "Texture Filtering:" msgstr "Filtrado de texturas:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Superponer formato de textura" @@ -12450,7 +12629,7 @@ msgstr "El archivo IPL no es un volcado correcto conocido. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Faltan las particiones de los Clásicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12458,7 +12637,7 @@ msgstr "" "No se pudo reparar la NAND. Recomendamos que vuelvas a volcar los datos de " "la consola original y pruebes otra vez desde cero." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "La NAND ha sido reparada." @@ -12475,8 +12654,10 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" +"La cantidad de dinero que tiene este Skylander. Debe ser un valor de entre 0 " +"y 65000." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12526,6 +12707,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"El valor predeterminado de %1 funcionará con un tapserver local y con un " +"newserv. También puedes introducir una dirección de red (dirección:puerto) " +"para conectarte a un tapserver remoto." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12537,7 +12721,7 @@ msgstr "" "\n" "Selecciona otra ruta de destino para «%1»." -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12550,7 +12734,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "No se pudo leer el disco (en {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "No se encontró el disco que se iba a insertar." @@ -12645,7 +12829,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "El sistema de archivos es incorrecto o no pudo ser leído." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12693,7 +12877,7 @@ msgstr "" "con el menú del sistema no podrás actualizar la consola emulada con este " "disco." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12721,6 +12905,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"El nivel de héroe de este Skylander. Solo aparece en Skylanders: Spyro's " +"Adventures. Valor de entre 0 y 100." #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12762,7 +12948,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "El alias para este Skylander. Limitado a 15 caracteres" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12770,12 +12956,12 @@ msgstr "" "Los parches de %1 no sirven para el juego seleccionado o para esta revisión " "del mismo." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "El perfil elegido «%1» no existe" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "El juego grabado ({0}) no es el mismo que el juego elegido ({1})" @@ -12801,7 +12987,7 @@ msgstr "" "No puede utilizarse el mismo archivo en múltiples ranuras. Este archivo ya " "está siendo usado por %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12844,7 +13030,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "El archivo especificado «{0}» no existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12912,7 +13098,7 @@ msgstr "Falta la partición de actualización." msgid "The update partition is not at its normal position." msgstr "La partición de actualización no está en su posición normal." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12936,6 +13122,10 @@ msgstr "La partición {0} no está firmada correctamente." msgid "The {0} partition is not properly aligned." msgstr "La partición {0} no está alineada correctamente." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Hay demasiadas particiones en la primera tabla de particiones." @@ -12950,10 +13140,10 @@ msgstr "" "\n" "¿Quieres guardarlos antes de cerrar?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" -msgstr "" +msgstr "No hay nada que guardar" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -13005,11 +13195,11 @@ msgstr "¡Este tipo de Skylander no puede modificarse todavía!" msgid "This USB device is already whitelisted." msgstr "Este dispositivo USB ya está en la lista." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "No se puede arrancar desde este WAD." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Este WAD no es correcto." @@ -13030,7 +13220,7 @@ msgstr "" "Te rogamos que utilices la compilación ARM64 de Dolphin para una mejor " "experiencia." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Esta acción no puede deshacerse." @@ -13165,9 +13355,9 @@ msgstr "" msgid "This is a good dump." msgstr "Este es un buen volcado." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Solo surtirá efecto en el primer arranque del software emulado" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13189,7 +13379,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "No debes utilizarlo con juegos que no poseas legalmente." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Este título no se puede arrancar." @@ -13241,12 +13431,15 @@ msgstr "" "Este valor se multiplica con la profundidad establecida en la configuración " "de gráficos." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" "use the Branch Type filter options." msgstr "" +"También se filtrarán las ramas incondicionales.\n" +"Si quieres filtrar o no ramas incondicionales,\n" +"utiliza las opciones de filtro por tipo de rama." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" @@ -13256,7 +13449,7 @@ msgstr "" "Esto limitará la velocidad de carga por cliente, que se utiliza para guardar " "la sincronización." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13268,11 +13461,11 @@ msgstr "" "Puede impedir la desincronización en algunos juegos que utilizan lecturas al " "EFB. Asegúrate de que todos los jugadores utilizan el mismo motor de vídeo." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Contexto del hilo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Hilos" @@ -13297,14 +13490,14 @@ msgstr "" "Período de tiempo de entrada estable para activar la calibración. (cero para " "desactivar)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Tiempo de espera agotado" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Título" @@ -13313,12 +13506,12 @@ msgid "To" msgstr "A" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Alternar &pantalla completa" @@ -13343,7 +13536,7 @@ msgid "Toggle Aspect Ratio" msgstr "Alternar relación de aspecto" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Alternar punto de interrupción" @@ -13399,15 +13592,15 @@ msgstr "Alternar el modo inmediato del XFB" msgid "Tokenizing failed." msgstr "Fallo en la tokenización." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" -msgstr "" +msgstr "Controles de herramienta" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Barra de herramientas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Superior" @@ -13415,8 +13608,8 @@ msgstr "Superior" msgid "Top-and-Bottom" msgstr "Por encima/Por debajo" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Aciertos totales" @@ -13458,7 +13651,7 @@ msgid "Toy code:" msgstr "Código de juguete:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chino tradicional" @@ -13478,8 +13671,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Error del servidor de paso" @@ -13510,7 +13703,7 @@ msgstr "Placa AM 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Gatillos" @@ -13520,7 +13713,7 @@ msgid "Trophy" msgstr "Trofeo" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13534,7 +13727,7 @@ msgstr "Alineación según tipo" msgid "Typical GameCube/Wii Address Space" msgstr "Espacio de dirección habitual de GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "Desconocido" @@ -13546,7 +13739,7 @@ msgstr "EE. UU." msgid "USB Device Emulation" msgstr "Emulación de dispositivos USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "Emulación de USB" @@ -13564,7 +13757,7 @@ msgstr "USB de Gecko" msgid "USB Whitelist Error" msgstr "Error en la lista de dispositivos USB permitidos" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13575,7 +13768,7 @@ msgstr "" "equipos de gama baja.

Si tienes dudas, selecciona " "este modo." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13588,7 +13781,7 @@ msgstr "" "imagen con los ubershaders híbridos y tengas una tarjeta gráfica muy potente." "
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13602,7 +13795,7 @@ msgstr "" "afectando mínimamente al rendimiento, pero los resultados dependerán del " "controlador de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "No se puede detectar el módulo RSO" @@ -13673,11 +13866,11 @@ msgstr "Archivos ISO de GC/Wii sin comprimir (*.iso *.gcm)" msgid "Undead" msgstr "Muertos" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Deshacer carga del estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Deshacer guardado del estado" @@ -13697,28 +13890,28 @@ msgstr "" "Si desinstalas el archivo WAD, eliminarás la versión actual del título que " "se encuentra en la NAND sin borrar sus datos guardados. ¿Quieres continuar?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Estados Unidos" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Desconocido" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Desconocido (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando desconocido de DVD {0:08x} - error fatal" @@ -13794,11 +13987,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Desconocido(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Desconocido(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Ilimitado" @@ -13810,21 +14003,9 @@ msgstr "Extraer ROM" msgid "Unlock Cursor" msgstr "Desbloquear cursor" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Desbloqueado" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Desbloqueado %1 veces en esta sesión" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Desbloqueado (modo casual)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Desbloqueado en esta sesión" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13850,7 +14031,7 @@ msgstr "Sin signo de 32 bits" msgid "Unsigned 8" msgstr "Sin signo de 8 bits" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Entero sin signo" @@ -13864,8 +14045,8 @@ msgstr "Entero sin signo" msgid "Up" msgstr "Arriba" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Actualizar" @@ -13873,11 +14054,11 @@ msgstr "Actualizar" msgid "Update Partition (%1)" msgstr "Partición de actualización (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Actualizar al cerrar Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Hay una actualización disponible" @@ -13922,7 +14103,7 @@ msgstr "Cambiar de/a vertical" msgid "Upright Wii Remote" msgstr "Mando de Wii en vertical" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Ajustes de envío de estadísticas de uso" @@ -13932,15 +14113,15 @@ msgstr "" "Introduce 8.8.8.8 para usar una DNS normal, de lo contrario, introduce tu " "dirección personalizada" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Utilizar todos los datos guardados de Wii" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Utilizar base de datos interna de nombres de juegos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Usar códec sin pérdida (FFV1)" @@ -13948,15 +14129,21 @@ msgstr "Usar códec sin pérdida (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Utilizar apuntado con ratón" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usar modo PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Notificar de errores y advertencias" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14005,7 +14192,7 @@ msgstr "Usar direcciones virtuales cuando sea posible" msgid "User Config" msgstr "Configuración del usuario" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Interfaz de usuario" @@ -14024,10 +14211,17 @@ msgstr "" "Puedes utilizarlas para guardar o acceder a valores que se encuentren entre " "las entradas y salidas del mismo mando maestro." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Usuario" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -14041,7 +14235,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14052,7 +14246,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Si no es así y tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14359,8 +14553,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advertencia" @@ -14372,7 +14566,7 @@ msgstr "" "Advertencia: ya hay configurada una ruta manual de carpetas GCI para esta " "ranura. Cualquier cambio que hagas aquí a la ruta GCI no surtirá efecto." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14389,7 +14583,7 @@ msgstr "" "Advertencia: el número de bloques indicados por el BAT ({0}) no coincide con " "el del encabezado de archivo cargado ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14400,7 +14594,7 @@ msgstr "" "cargar otra partida antes de continuar o cargar esta sin el modo de solo " "lectura activo." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14410,7 +14604,7 @@ msgstr "" "del fotograma actual de la partida. (byte {0} < {1}) (fotograma {2} > {3}). " "Deberías cargar otra partida guardada antes de continuar." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14421,7 +14615,7 @@ msgstr "" "o cargar esta partida en el modo de solo lectura. De lo contrario, es muy " "probable que se desincronice." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14484,7 +14678,7 @@ msgstr "Occidental (Windows-1252)" msgid "Whammy" msgstr "Barra de trémolo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14497,7 +14691,7 @@ msgstr "" "
Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14510,7 +14704,7 @@ msgstr "" "arbitrarios.
Si tienes dudas, deja esta opción activada." "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivos USB permitidos para acceso directo a Bluetooth" @@ -14542,25 +14736,25 @@ msgstr "Mando de Wii" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Mando de Wii %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Acelerómetro del mando de Wii" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Botones del mando de Wii" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Giroscopio del mando de Wii" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Ajustes del mando de Wii" @@ -14568,19 +14762,19 @@ msgstr "Ajustes del mando de Wii" msgid "Wii Remotes" msgstr "Mandos de Wii" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Entrada TAS de Wii %1 - Mando clásico" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Entrada TAS de Wii %1 - Mando de Wii" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Entrada TAS de Wii %1 - Mando de Wii y Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii y su mando" @@ -14588,7 +14782,7 @@ msgstr "Wii y su mando" msgid "Wii data is not public yet" msgstr "Los datos de Wii todavía no son públicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Archivos de guardado de Wii (*.bin);;Todos los archivos (*)" @@ -14596,31 +14790,22 @@ msgstr "Archivos de guardado de Wii (*.bin);;Todos los archivos (*)" msgid "WiiTools Signature MEGA File" msgstr "Archivo de firmas MEGA de WiiTools" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"El cursor del ratón quedará anclado a la ventana de renderizado mientras " -"esta se encuentre en primer plano. Puedes asignar un atajo de teclado para " -"desanclarlo." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" -msgstr "" +msgstr "Resolución de ventana" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Tamaño de la ventana" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "Purgar datos de &inspección" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" -msgstr "" +msgstr "Purgar coincidencias recientes" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14632,12 +14817,13 @@ msgstr "Mundo" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Escribir" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Escribir volcado del registro de bloque JIT" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. @@ -14668,39 +14854,39 @@ msgstr "Escribir en registro y pausar" msgid "Write to Window" msgstr "Escribir en la ventana" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Número de disco incorrecto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "«Hash» incorrecto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Región incorrecta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Revisión incorrecta" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Escrito a «%1»." -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Escrito a «{0}»." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Registro XF" @@ -14709,9 +14895,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "Dirección de destino del BBA de XLink Kai" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14739,7 +14925,7 @@ msgstr "Sí" msgid "Yes to &All" msgstr "Sí a &todo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14748,7 +14934,7 @@ msgstr "" "Vas a convertir los contenidos del archivo %2 a la carpeta %1. Se eliminarán " "todos los contenidos de la carpeta. ¿Seguro que quieres continuar?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14864,7 +15050,7 @@ msgstr "¡Debe proporcionar un nombre para su sesión!" msgid "You must provide a region for your session!" msgstr "¡Debes proporcionar una región para tu sesión!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Debes reiniciar Dolphin para que el cambio tenga efecto." @@ -14892,7 +15078,7 @@ msgstr "" "¿Quieres parar para resolver el problema?\n" "Si seleccionas «No», el audio se oirá con ruidos." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14902,9 +15088,9 @@ msgstr "" "datos." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14913,9 +15099,9 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Todavía no hemos implementado el código «Zero 3»" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." -msgstr "" +msgstr "Quedan cero candidatas." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14962,7 +15148,7 @@ msgid "default" msgstr "defecto" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "desconectado" @@ -14970,7 +15156,7 @@ msgstr "desconectado" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Tarjetas e-Reader (*.raw);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14978,9 +15164,9 @@ msgstr "errno" msgid "fake-completion" msgstr "Finalización falsa" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" -msgstr "" +msgstr "falso" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -15028,16 +15214,6 @@ msgstr "" msgid "none" msgstr "Desactivar" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "no" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "sí" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "o elige un dispositivo" @@ -15055,9 +15231,9 @@ msgstr "sRGB" msgid "this value:" msgstr "este valor:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" -msgstr "" +msgstr "verdadero" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 @@ -15124,12 +15300,9 @@ msgstr "| O" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ El equipo de Dolphin. «GameCube» y «Wii» son marcas comerciales " -"de Nintendo. Dolphin no está afiliado a Nintendo y es completamente " -"independiente." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/fa.po b/Languages/po/fa.po index 13ec28a619..f63eb42fab 100644 --- a/Languages/po/fa.po +++ b/Languages/po/fa.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: H.Khakbiz , 2011\n" "Language-Team: Persian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -113,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -144,11 +144,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -165,40 +165,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -206,13 +200,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -224,30 +218,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -259,6 +253,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -328,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -341,7 +339,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -349,15 +347,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -365,11 +363,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&نقاط انفصال" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -377,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -393,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -401,16 +403,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -418,20 +419,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -445,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&برابرسازی" @@ -469,41 +470,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&فایل" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&پيشروى فریم" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "تنظیمات &گرافیک" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&کمک" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "تنظیم &شرت کاتها" @@ -523,11 +524,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -535,23 +536,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&جیت" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&بارگذاری وضعیت" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -561,19 +562,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -581,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -590,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&باز کردن..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&گزینه ها" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "مکث" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&شروع بازی" @@ -614,7 +619,7 @@ msgstr "&شروع بازی" msgid "&Properties" msgstr "خواص" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -622,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "ثبت کردن" @@ -635,24 +640,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "شروع &دوباره" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -660,31 +665,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&توقف" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&ابزارها" @@ -694,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -720,23 +725,23 @@ msgstr "&ویکی" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -772,12 +777,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -838,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -896,7 +901,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -922,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1015,26 +1020,26 @@ msgstr "" msgid "" msgstr "<هیچ>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1057,8 +1062,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1072,7 +1077,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1086,7 +1091,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1102,7 +1107,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1127,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1170,16 +1175,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1252,7 +1251,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1260,15 +1259,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1276,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "آداپتور:" @@ -1286,7 +1285,7 @@ msgstr "آداپتور:" msgid "Add" msgstr "اضافه کردن" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1311,43 +1310,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "اضافه کردن..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1473,7 +1472,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1482,7 +1481,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1490,34 +1489,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1533,7 +1532,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1541,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1559,7 +1558,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1581,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "تحلیل کردن" @@ -1607,15 +1606,15 @@ msgstr "آنتی آلیاسینگ:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1633,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1641,7 +1640,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1653,7 +1652,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1665,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "نسبت طول به عرض تصویر:" @@ -1682,7 +1681,7 @@ msgstr "نسبت طول به عرض تصویر:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1694,7 +1693,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1715,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "صدا" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "پشتوانه صدا:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1735,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "اتوماتیک" @@ -1744,11 +1743,11 @@ msgstr "اتوماتیک" msgid "Auto (Multiple of 640x528)" msgstr "اتوماتیک (ضریب ۶۴۰x۵۲۸)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1756,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1764,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1812,27 +1811,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "ثبت اشاره گر پایه" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "تنظیمات پشتوانه" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "پشتوانه:" @@ -1875,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "نشان" @@ -1895,15 +1894,15 @@ msgstr "نوار" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "بنیانی" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "تنظیمات بنیانی" @@ -1919,10 +1918,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1955,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1969,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2005,67 +2000,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "پائین" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2077,23 +2072,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2110,7 +2105,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2120,19 +2115,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2147,19 +2142,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2193,24 +2193,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "حافظه موقت:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2255,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "استیک سی" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2310,7 +2310,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2336,7 +2336,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2352,18 +2352,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2372,15 +2372,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2396,11 +2396,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2408,7 +2408,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2416,7 +2416,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "تعویض &دیسک..." @@ -2456,15 +2456,21 @@ msgstr "تعویض &دیسک..." msgid "Change Disc" msgstr "تعویض دیسک" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2482,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2490,11 +2496,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "گپ زدن" @@ -2502,7 +2508,7 @@ msgstr "گپ زدن" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "جستجوی کد تقلب" @@ -2510,7 +2516,7 @@ msgstr "جستجوی کد تقلب" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2528,7 +2534,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2540,7 +2546,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "انتخاب فایل برای باز کردن" @@ -2548,15 +2554,15 @@ msgstr "انتخاب فایل برای باز کردن" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2569,7 +2575,7 @@ msgstr "انتخاب پوشه برای استخراج به آن" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2580,18 +2586,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "پاک کردن" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2612,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "بستن" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2620,11 +2626,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2652,11 +2658,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2683,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2693,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2706,7 +2712,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2714,11 +2720,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2734,7 +2740,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2749,7 +2755,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2803,7 +2814,7 @@ msgstr "پیکربندی" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2816,27 +2827,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "تائید برای توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2846,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "اتصال کیبورد USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2874,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2890,7 +2901,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2915,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3002,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3011,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3021,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3043,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3073,22 +3084,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3096,19 +3107,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3126,8 +3137,8 @@ msgstr "" msgid "Core" msgstr "هسته" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3234,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3250,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "کشور:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3270,7 +3281,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3287,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "بحرانی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "حذف قسمتی از تصوير" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3303,42 +3314,42 @@ msgstr "" msgid "Crossfade" msgstr "ضرب دری" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3346,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3397,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3405,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3439,7 +3450,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3484,8 +3495,8 @@ msgstr "منطقه مرده" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "اشکال زدائی کردن" @@ -3494,7 +3505,7 @@ msgstr "اشکال زدائی کردن" msgid "Decimal" msgstr "دسیمال" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3533,7 +3544,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "پیش فرز" @@ -3541,7 +3552,7 @@ msgstr "پیش فرز" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3553,11 +3564,11 @@ msgstr "" msgid "Default ISO:" msgstr "آیزو پیش فرز:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3565,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3574,8 +3585,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "حذف" @@ -3605,12 +3617,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "شرح" @@ -3624,8 +3636,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3637,21 +3649,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3659,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "شناسایی" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3667,11 +3679,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "دستگاه" @@ -3689,7 +3701,7 @@ msgstr "تنظیمات دستگاه" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3697,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3713,11 +3725,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3726,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3734,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3746,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "از کارانداختن مه" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3765,7 +3772,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "دیسک" @@ -3789,6 +3802,10 @@ msgstr "دیسک" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3819,11 +3836,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3833,7 +3850,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "آیا می خواهید برابرسازی فعلی را متوقف کنید؟" @@ -3841,12 +3858,12 @@ msgstr "آیا می خواهید برابرسازی فعلی را متوقف ک msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3854,9 +3871,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3868,8 +3885,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "فیلم های تاس دلفین (*.dtm)" @@ -3902,7 +3919,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3916,13 +3933,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3931,7 +3948,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3952,7 +3969,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3974,7 +3991,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3986,6 +4003,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4025,19 +4052,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "نسخه برداری صدا" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "نسخه برداری مقصد ای اف بی" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "نسخه برداری فریم ها" @@ -4045,7 +4072,7 @@ msgstr "نسخه برداری فریم ها" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4053,7 +4080,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4078,44 +4105,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "هلندی" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "خ&روج" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4127,7 +4154,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4135,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "به روز شدن های اولیه حافظه" @@ -4154,7 +4181,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4174,7 +4210,7 @@ msgstr "افکت" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4196,11 +4232,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "ریسمان شبیه ساز قبلا اجرا شده است" @@ -4226,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4248,34 +4284,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "فعال کردن کدهای تقلب" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4283,15 +4309,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "فعال کردن پردازنده با دو هسته یا بیشتر" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "فعال کردن پردازنده با دو هسته یا بیشتر (بالا بردن سرعت)" @@ -4303,7 +4333,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4311,15 +4341,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4337,41 +4367,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "فعال کردن واحد مدیریت حافظه" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "فعال کردن پويش تصاعدی (Progressive Scan)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "فعال کردن اسکیرین سیور" @@ -4379,19 +4401,23 @@ msgstr "فعال کردن اسکیرین سیور" msgid "Enable Speaker Data" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "فعال کردن خطوط فریم" @@ -4399,34 +4425,13 @@ msgstr "فعال کردن خطوط فریم" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4434,34 +4439,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4492,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4500,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4517,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4545,7 +4557,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4553,7 +4565,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4561,7 +4573,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4580,13 +4592,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "انگلیسی" @@ -4603,7 +4619,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4627,33 +4643,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4666,52 +4682,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "خطا" @@ -4728,7 +4744,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4743,7 +4759,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4834,12 +4850,12 @@ msgstr "" msgid "Euphoria" msgstr "خوشی" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4883,11 +4899,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "" @@ -4902,7 +4918,7 @@ msgstr "" msgid "Export Recording" msgstr "صادر کردن ضبط" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "صادر کردن ضبط..." @@ -4930,14 +4946,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "پسوند" @@ -4950,7 +4966,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4958,35 +4974,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "استخراج فایل..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4995,8 +5011,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "پخش کننده فیفو" @@ -5010,11 +5026,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5034,7 +5050,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5055,15 +5071,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5109,15 +5125,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5136,25 +5152,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5174,18 +5190,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5197,21 +5213,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5225,17 +5241,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5243,7 +5259,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5273,15 +5289,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5289,11 +5305,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5340,23 +5356,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5370,7 +5386,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5401,31 +5417,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5476,19 +5492,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5501,7 +5517,7 @@ msgstr "سریع" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5512,7 +5528,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5526,7 +5542,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5534,24 +5550,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "مشخصات فایل" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5636,7 +5652,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5645,12 +5660,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5670,7 +5685,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "۱۶:۹ اجباری" @@ -5678,7 +5693,7 @@ msgstr "۱۶:۹ اجباری" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "۴:۳ اجباری" @@ -5710,11 +5725,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5736,6 +5751,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5751,7 +5772,7 @@ msgstr "جلو" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5761,7 +5782,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5782,11 +5803,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "محدوده فریم" @@ -5794,7 +5815,7 @@ msgstr "محدوده فریم" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5814,7 +5835,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5845,7 +5866,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "فرانسوی" @@ -5864,8 +5885,8 @@ msgid "From" msgstr "از" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5873,10 +5894,14 @@ msgstr "" msgid "FullScr" msgstr "تمام صفحه" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5917,11 +5942,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5963,7 +5988,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5973,25 +5998,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6003,7 +6028,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6021,22 +6046,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6065,7 +6090,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6074,25 +6099,25 @@ msgstr "" msgid "Game ID:" msgstr "آی دی بازی:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6105,7 +6130,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6125,11 +6150,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6137,11 +6162,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6158,7 +6183,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6186,7 +6211,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "کدهای گیکو" @@ -6196,35 +6221,35 @@ msgstr "کدهای گیکو" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "کلی" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "آلمانی" @@ -6251,7 +6276,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6260,7 +6285,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "گرافیک" @@ -6300,7 +6325,7 @@ msgstr "سبز چپ" msgid "Green Right" msgstr "سبز راست" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6337,7 +6362,7 @@ msgstr "" msgid "Hacks" msgstr "هک" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6369,7 +6394,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6378,11 +6403,11 @@ msgstr "" msgid "Hide" msgstr "مخفی" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6394,16 +6419,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6426,7 +6458,7 @@ msgstr "میزبان" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6434,7 +6466,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6442,11 +6474,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6458,7 +6490,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6468,11 +6500,11 @@ msgstr "" msgid "Hotkeys" msgstr "شرت کاتها" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6525,12 +6557,12 @@ msgstr "" msgid "IPL Settings" msgstr "تنظیمات آی پی ال" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "فروسرخ" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "میزان حساسیت فروسرخ" @@ -6556,14 +6588,14 @@ msgstr "" msgid "Icon" msgstr "تندیس" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6580,7 +6612,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6594,14 +6626,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6613,7 +6645,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6645,7 +6677,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6654,7 +6686,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6669,21 +6701,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6761,7 +6802,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6770,7 +6811,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6790,12 +6831,12 @@ msgstr "مشخصات" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "مشخصات" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6804,11 +6845,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "ورودی" @@ -6822,23 +6863,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "درج کارت اس دی" @@ -6851,11 +6888,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6863,13 +6900,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6878,7 +6915,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6887,7 +6924,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6904,19 +6941,19 @@ msgstr "" msgid "Interface" msgstr "واسط گرافیک" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6929,19 +6966,19 @@ msgstr "خطای داخلی LZO - فشرده سازی با شکست مواجه msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6956,7 +6993,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "وضوح داخلی:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6964,7 +7001,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6980,7 +7017,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6989,11 +7026,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7014,7 +7051,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7030,19 +7067,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "فایل ضبط نامعتبر" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "پارامتر های جستجوی نامعتبر (هیچ شیئ انتخاب نشده)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "رشته جستجوی نامعتبر (قادر به تبدیل به عدد نیست)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "رشته جستجوی نامعتبر (فقط رشته های با طول زوج پشتیبانی می شود)" @@ -7050,13 +7087,13 @@ msgstr "رشته جستجوی نامعتبر (فقط رشته های با طول msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "ایتالیایی" @@ -7069,11 +7106,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7081,47 +7118,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7133,31 +7170,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "ژاپنی" @@ -7174,12 +7211,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7213,16 +7250,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "کره ای" @@ -7243,7 +7280,7 @@ msgstr "" msgid "L-Analog" msgstr "ال آنالوگ" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7251,7 +7288,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7265,23 +7306,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7289,7 +7330,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7297,7 +7338,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7308,7 +7349,7 @@ msgstr "چپ" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "استیک چپ" @@ -7379,11 +7420,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7392,30 +7433,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "بارگذاری" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "بارگذاری بافت اشیاء دلخواه" @@ -7423,11 +7464,11 @@ msgstr "بارگذاری بافت اشیاء دلخواه" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7533,23 +7574,23 @@ msgstr "بارگذاری وضعیت - شکاف ۸" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7557,54 +7598,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "ثبت وقایع" @@ -7613,19 +7662,19 @@ msgstr "ثبت وقایع" msgid "Log Configuration" msgstr "پیکر بندی ثبت وقایع" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7637,31 +7686,31 @@ msgstr "انواع ثبت وقایع" msgid "Logger Outputs" msgstr "خروجی های واقعه نگار" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7673,7 +7722,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7721,7 +7770,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7738,16 +7787,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7759,11 +7808,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7772,7 +7821,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7793,7 +7842,7 @@ msgstr "" msgid "Memory Card" msgstr "کارت حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7821,7 +7870,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7835,7 +7884,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7844,15 +7893,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "متفرقه" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "تنظیمات متفرقه" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7864,7 +7913,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7884,7 +7933,7 @@ msgstr "" msgid "Modifier" msgstr "پیراینده" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7900,8 +7949,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7909,7 +7958,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7921,11 +7970,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7934,23 +7983,10 @@ msgstr "" msgid "Motor" msgstr "موتور" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7961,13 +7997,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7980,10 +8016,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7992,8 +8028,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8002,7 +8038,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8019,8 +8055,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8063,7 +8099,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8079,27 +8115,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8107,16 +8143,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8141,7 +8177,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8158,7 +8194,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8204,7 +8240,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8212,12 +8248,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "تشریحی دردسترس نیست" @@ -8229,7 +8265,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8237,7 +8273,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8250,11 +8286,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8277,7 +8313,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8294,10 +8330,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "هیچ" @@ -8309,7 +8345,7 @@ msgstr "" msgid "Not Set" msgstr "ست نشده است" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8329,7 +8365,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8373,26 +8409,26 @@ msgstr "" msgid "Nunchuk" msgstr "ننچاک" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8444,7 +8480,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "محدوده شیی" @@ -8465,18 +8501,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8491,7 +8527,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "" @@ -8499,13 +8535,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8522,7 +8558,7 @@ msgstr "گشودن" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8531,7 +8567,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8597,34 +8633,34 @@ msgstr "نارنجی" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8639,11 +8675,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8659,16 +8695,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8681,11 +8717,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8697,7 +8733,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8731,7 +8767,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8769,15 +8805,15 @@ msgstr "مسیرها" msgid "Pause" msgstr "مکث" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8793,6 +8829,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8812,7 +8854,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "نورپردازی به ازای هر پیکسل" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8820,15 +8862,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8846,11 +8888,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8863,7 +8905,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8871,7 +8913,7 @@ msgstr "" msgid "Play" msgstr "شروع بازی" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8883,40 +8925,40 @@ msgstr "شروع ضبط" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "گزینه های بازنواخت" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "بازی کنان" @@ -8933,7 +8975,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8949,7 +8991,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8966,7 +9008,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8982,24 +9024,32 @@ msgstr "افکت ها:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9022,7 +9072,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9037,7 +9087,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9048,7 +9098,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9082,7 +9132,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "پروفایل" @@ -9091,23 +9141,29 @@ msgstr "پروفایل" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9127,18 +9183,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "سوال" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "خارج شدن" @@ -9155,19 +9211,19 @@ msgstr "آر" msgid "R-Analog" msgstr "آر آنالوگ" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9188,7 +9244,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9196,16 +9252,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9244,8 +9301,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9254,23 +9311,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "ضبط" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "گزینه های ضبط" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9303,7 +9360,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9334,7 +9391,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9355,7 +9412,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9363,7 +9424,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "پاک کردن" @@ -9391,20 +9452,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "نمایش در پنجره اصلی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9418,10 +9479,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9431,7 +9498,7 @@ msgstr "شروع دوباره" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9463,7 +9530,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9475,7 +9542,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9483,11 +9550,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9496,7 +9563,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9508,7 +9575,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9519,7 +9586,7 @@ msgstr "راست" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "استیک راست" @@ -9555,11 +9622,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9577,27 +9644,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9610,7 +9681,7 @@ msgstr "" msgid "Rumble" msgstr "شوک" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9618,15 +9689,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9634,23 +9705,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9658,7 +9729,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9693,11 +9764,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "ذخ&یره وضعیت" @@ -9707,9 +9778,9 @@ msgid "Safe" msgstr "بی خطر" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9719,25 +9790,25 @@ msgstr "ذخیره" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9751,11 +9822,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9767,7 +9838,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9817,23 +9888,23 @@ msgstr "ذخیره وضعیت - شکاف ۸" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9841,7 +9912,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9853,11 +9924,11 @@ msgstr "" msgid "Save as..." msgstr "ذخیره بعنوان..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9868,11 +9939,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9880,11 +9951,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9896,7 +9967,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9913,8 +9984,8 @@ msgid "ScrShot" msgstr "عکس فوری" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "جستجو" @@ -9923,7 +9994,7 @@ msgstr "جستجو" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9941,7 +10012,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9949,7 +10020,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9983,7 +10054,7 @@ msgstr "انتخاب" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9994,23 +10065,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10038,7 +10109,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10046,7 +10117,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10107,13 +10178,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10121,7 +10192,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10133,7 +10204,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10141,11 +10212,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10153,12 +10224,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "انتخاب فایل ذخیره" @@ -10181,16 +10252,16 @@ msgstr "پروفایل انتخاب شده وجود ندارد" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10206,7 +10277,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10236,7 +10307,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10258,7 +10329,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10268,11 +10339,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "فرستادن" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "موقعیت سنسور بار:" @@ -10300,6 +10371,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10317,52 +10392,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10370,7 +10460,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10392,32 +10482,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "نمایش &ثبت وقایع" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "نمایش نوار &ابزار" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10426,7 +10516,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10435,31 +10525,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "نمایش فریم بر ثانیه" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "نمایش فرانسه" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "نمایش گیم کیوب" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10467,23 +10557,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "نمایش ورودی تصویر" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "نمایش ایتالیا" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "نمایش کره" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10491,27 +10581,27 @@ msgstr "" msgid "Show Language:" msgstr "نمایش زبان:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "نمایش &پیکربندی ثبت وقایع" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "نمایش پال" @@ -10520,27 +10610,27 @@ msgstr "نمایش پال" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "نمایش پایگاه ها" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "نمایش مناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10548,72 +10638,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "نمایش آمار" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "نمایش تایوان" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "نمایش ایالات متحده آمریکا" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "نمایش وی" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10621,71 +10711,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10707,7 +10830,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10726,12 +10849,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "چینی ساده شده" @@ -10748,7 +10871,7 @@ msgstr "" msgid "Size" msgstr "سایز" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10758,7 +10881,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10802,6 +10925,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10872,7 +10998,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10886,7 +11012,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "اسپانیایی" @@ -10894,19 +11020,19 @@ msgstr "اسپانیایی" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "حجم صدای اسپیکر:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10931,11 +11057,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10943,25 +11069,25 @@ msgstr "" msgid "Standard Controller" msgstr "کنترولر استاندارد" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "شروع" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10969,7 +11095,7 @@ msgstr "" msgid "Start Recording" msgstr "شروع ضبط" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10981,14 +11107,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11020,19 +11146,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11041,7 +11167,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11070,16 +11196,16 @@ msgid "Stick" msgstr "استیک" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11111,11 +11237,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "کشیدن تصویر به سایز فعلی پنجره" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11129,7 +11255,11 @@ msgstr "" msgid "Strum" msgstr "مرتعش کردن" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11140,18 +11270,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11161,7 +11291,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11174,24 +11304,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11214,16 +11344,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11267,17 +11397,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11285,7 +11415,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11303,7 +11433,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11322,24 +11452,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "زبان سیستم:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "ورودی تاس" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11349,7 +11479,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11357,7 +11487,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "گرفتن عکس فوری" @@ -11365,7 +11495,7 @@ msgstr "گرفتن عکس فوری" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11381,9 +11511,9 @@ msgstr "" msgid "Test" msgstr "آزمودن" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11396,7 +11526,7 @@ msgstr "حافظه ميانى بافت اشیاء" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11408,7 +11538,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "قالب بندی بافت اشیاء" @@ -11445,13 +11575,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11466,7 +11596,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11513,7 +11643,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11523,7 +11653,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11602,7 +11732,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11642,7 +11772,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11701,12 +11831,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11726,7 +11856,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11760,7 +11890,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11818,7 +11948,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11840,6 +11970,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11851,8 +11985,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11900,11 +12034,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11922,7 +12056,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12021,7 +12155,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12041,7 +12175,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12081,7 +12215,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12094,7 +12228,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12102,11 +12236,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12129,14 +12263,14 @@ msgstr "لرزیدن" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "عنوان" @@ -12145,12 +12279,12 @@ msgid "To" msgstr "به" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12175,7 +12309,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12231,7 +12365,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12239,7 +12373,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "بالا" @@ -12247,8 +12381,8 @@ msgstr "بالا" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12290,7 +12424,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "چینی سنتی" @@ -12310,8 +12444,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12338,7 +12472,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "دکمه ها" @@ -12348,7 +12482,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12362,7 +12496,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12374,7 +12508,7 @@ msgstr "ایالات متحده آمریکا" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12392,14 +12526,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12407,7 +12541,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12416,7 +12550,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12479,11 +12613,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "خنثی کردن وضعیت بارگذاری" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "" @@ -12501,28 +12635,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "ناشناخته" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12593,11 +12727,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12609,20 +12743,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12649,7 +12771,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12663,8 +12785,8 @@ msgstr "" msgid "Up" msgstr "بالا" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "به روز کردن" @@ -12672,11 +12794,11 @@ msgstr "به روز کردن" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12719,7 +12841,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12727,15 +12849,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12743,15 +12865,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "استفاده از دستگذار پنیک" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12785,7 +12913,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12800,10 +12928,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12812,14 +12947,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13082,8 +13217,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "اخطار" @@ -13093,7 +13228,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13105,28 +13240,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13171,7 +13306,7 @@ msgstr "" msgid "Whammy" msgstr "بد شانسی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13179,7 +13314,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13187,7 +13322,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13219,25 +13354,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13245,19 +13380,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13265,7 +13400,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13273,13 +13408,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13288,11 +13417,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13306,10 +13435,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13342,39 +13472,39 @@ msgstr "" msgid "Write to Window" msgstr "نوشتن در پنجره" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13383,9 +13513,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13413,14 +13543,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13497,7 +13627,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "برای اعمال تغییرات شما باید دلفین را از نو اجرا کنید." @@ -13517,16 +13647,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13535,7 +13665,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "کد صفر ۳ پشتیبانی نمی شود" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13584,7 +13714,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13592,7 +13722,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13600,7 +13730,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13648,16 +13778,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13675,7 +13795,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13740,7 +13860,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/fi.po b/Languages/po/fi.po index f9c0947f18..5b46a4b94b 100644 --- a/Languages/po/fi.po +++ b/Languages/po/fi.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Aleksi, 2023-2024\n" "Language-Team: Finnish (http://app.transifex.com/delroth/dolphin-emu/" @@ -93,7 +93,7 @@ msgstr "" "%1\n" "haluaa liittyä ryhmääsi." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -127,7 +127,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revisio %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Sovelluksen mukana tullut)" @@ -147,7 +147,7 @@ msgstr "%1 (hidas)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -161,18 +161,18 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 grafiikka-asetukset" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 Mt (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 Mt (MEM2)" #. i18n: A positive number of version control commits made compared to some named branch #: Source/Core/DolphinQt/AboutDialog.cpp:27 msgid "%1 commit(s) ahead of %2" -msgstr "" +msgstr "%1 muutos(ta) edellä versiota %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -182,7 +182,7 @@ msgstr "%1 ei tue tätä ominaisuutta järjestelmässäsi." msgid "%1 doesn't support this feature." msgstr "%1 ei tue tätä ominaisuutta." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -192,35 +192,27 @@ msgstr "" "%2 kohde(tta)\n" "Nykyinen kehys: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 liittyi" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 lähti" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 on avannut %2/%3 saavutusta (joista %4 vaikeita), saavuttaen %5/%6 " -"pistettä (%7 vaikeaa)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 on avannut %2/%3 saavutusta, saavuttaen %4/%5 pistettä" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 ei ole kelvollinen ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 golffaa nyt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 on pelissä %2" @@ -228,13 +220,13 @@ msgstr "%1 on pelissä %2" msgid "%1 memory ranges" msgstr "%1 muistialuetta" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 pistettä" @@ -246,30 +238,30 @@ msgstr "%1 istunto löytyi" msgid "%1 sessions found" msgstr "%1 istuntoa löytyi" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normaali nopeus)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "Kohdan %1 arvo muuttuu" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "Kohdan %1 arvoon osutaan" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "Kohdan %1 arvoa käytetään" @@ -281,6 +273,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -350,11 +346,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Tietoa" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Lisää muistin keskeytyskohta" @@ -363,7 +359,7 @@ msgstr "&Lisää muistin keskeytyskohta" msgid "&Add New Code..." msgstr "&Lisää uusi koodi..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Lisää funktio" @@ -371,15 +367,15 @@ msgstr "&Lisää funktio" msgid "&Add..." msgstr "&Lisää..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Konekielen kääntäjä" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Ääniasetukset" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Automaattinen päivitys:" @@ -387,11 +383,15 @@ msgstr "&Automaattinen päivitys:" msgid "&Borderless Window" msgstr "&Reunaton ikkuna" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Keskeytyskohdat" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Vianhallintajärjestelmä" @@ -399,15 +399,15 @@ msgstr "&Vianhallintajärjestelmä" msgid "&Cancel" msgstr "&Peruuta" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Huijauskoodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Tarkista päivitykset..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Tyhjennä symbolit" @@ -415,7 +415,7 @@ msgstr "&Tyhjennä symbolit" msgid "&Clone..." msgstr "&Kloonaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Koodi" @@ -423,16 +423,15 @@ msgstr "&Koodi" msgid "&Connected" msgstr "&Yhdistetty" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Ohjainasetukset" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" -msgstr "" +msgstr "&Kopioi osoite" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Kopioi osoite" @@ -440,20 +439,20 @@ msgstr "&Kopioi osoite" msgid "&Create..." msgstr "&Luo..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Poista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Poista vahti" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Poista vahdit" @@ -467,11 +466,11 @@ msgstr "&Muokkaa koodia..." msgid "&Edit..." msgstr "&Muokkaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Poista levy" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulaatio" @@ -491,41 +490,41 @@ msgstr "&Vie tila..." msgid "&Export as .gci..." msgstr "Vie .gci-muodossa..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Fontti..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Kehys kerrallaan" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Vapaan katselun asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Luo symbolit lähteestä" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub-repositorio" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Grafiikka-asetukset" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Ohjeet" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Pikanäppäinasetukset" @@ -545,11 +544,11 @@ msgstr "&Tuo tila..." msgid "&Import..." msgstr "&Tuo..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity-alusta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Lisää blr" @@ -557,23 +556,23 @@ msgstr "&Lisää blr" msgid "&Interframe Blending" msgstr "&Kehysten välinen sekoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Kieli:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Lataa haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Lataa tila" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Lataa symbolikartta" @@ -583,19 +582,23 @@ msgstr "&Lataa tiedosto nykyiseen osoitteeseen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Lukitse vahdit" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Lukitse käyttöliittymäelementit paikoilleen" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Muisti" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Nauhoitus" @@ -603,7 +606,7 @@ msgstr "&Nauhoitus" msgid "&Mute" msgstr "&Mykistä" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Verkko" @@ -612,23 +615,23 @@ msgid "&No" msgstr "&Ei" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Avaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Muuta HLE-funktiot" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Keskeytä" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Käynnistä" @@ -636,7 +639,7 @@ msgstr "&Käynnistä" msgid "&Properties" msgstr "&Ominaisuudet" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Vain luku -tila" @@ -644,7 +647,7 @@ msgstr "&Vain luku -tila" msgid "&Refresh List" msgstr "&Päivitä lista" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Rekisterit" @@ -657,24 +660,24 @@ msgstr "&Poista" msgid "&Remove Code" msgstr "&Poista koodi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Nimeä symboli uudelleen" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Nollaa" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Resurssipakettien hallinta" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Tallenna haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Tallenna symbolikartta" @@ -682,31 +685,31 @@ msgstr "&Tallenna symbolikartta" msgid "&Scan e-Reader Card(s)..." msgstr "&Skannaa e-Reader kortteja..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Skylanders-portaali" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Nopeusrajoitus:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Lopeta" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Teema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Säikeet" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "T&yökalu" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Työkalut" @@ -716,21 +719,21 @@ msgstr "&Poista ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "&Poista vahtien lukitus" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Näytä" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Vahti" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Kotisivu" @@ -742,23 +745,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "K&yllä" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "Kohdetta '%1' ei löydy, symbolinimiä ei luotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "Kohdetta '%1' ei löydy, etsitään sen sijaan yleisiä funktioita" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Tumma)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Vaalea)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Järjestelmä)" @@ -794,12 +797,12 @@ msgstr "- Vähennyslasku" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Tuntematon--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -860,7 +863,7 @@ msgstr "16-bittinen etumerkillinen kokonaisluku" msgid "16-bit Unsigned Integer" msgstr "16-bittinen etumerkitön kokonaisluku" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -918,7 +921,7 @@ msgstr "32-bittinen etumerkitön kokonaisluku" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -944,7 +947,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 lohkoa)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1037,20 +1040,20 @@ msgstr "< Pienempi kuin" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "Poissa käytöstä Hardcore-tilassa." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "Ellet ole varma, jätä tämä pois." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1058,7 +1061,7 @@ msgstr "" "Automaattinen askellus aikakatkaistu. Nykyinen käsky " "ei ole välttämättä haluttu." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1086,8 +1089,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Suurempi kuin" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Nettipeli-istunto on jo käynnissä!" @@ -1107,7 +1110,7 @@ msgstr "" "\n" "Tämän WADin asennus korvaa sen peruuttamattomasti. Jatketaanko?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Levyä ollaan jo laittamassa." @@ -1123,7 +1126,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Tilantallennusta ei voi ladata määräämättä peliä, joka käynnistetään." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1143,9 +1146,9 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Synkronointi on mahdollista vain, kun Wii-peli on käynnissä." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" -msgstr "" +msgstr "&Automaattinen tallennus" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1182,7 +1185,7 @@ msgstr "" "toimi oikein.\n" "Käytä omalla vastuulla.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Action Replay -koodi" @@ -1225,18 +1228,10 @@ msgid "Achievement Settings" msgstr "Saavutusasetukset" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Saavutukset" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Saavutukset ovat poissa käytöstä.
Sulje kaikki käynnissä olevat pelit, " -"jos haluat saavutukset takaisin käyttöön" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Toiminto" @@ -1329,7 +1324,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "Aktivoi nettipelin keskustelu" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktiivinen" @@ -1337,15 +1332,15 @@ msgstr "Aktiivinen" msgid "Active Infinity Figures:" msgstr "Aktiiviset Infinity-hahmot:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Aktiivisten säikeiden jono" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Aktiiviset säikeet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Sovitin" @@ -1353,7 +1348,7 @@ msgstr "Sovitin" msgid "Adapter Detected" msgstr "Sovitin havaittu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Sovitin:" @@ -1363,7 +1358,7 @@ msgstr "Sovitin:" msgid "Add" msgstr "Lisää" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Lisää &keskeytyskohta" @@ -1388,43 +1383,43 @@ msgstr "Lisää keskeytyskohta" msgid "Add a Memory Breakpoint" msgstr "Lisää muistikeskeytyskohta" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Lisää muisti&keskeytyskohta" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Lisää muistikeskeytyskohta" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Lisää &vahtiin" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Lisää vahtiin" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Lisää..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Osoite" @@ -1553,6 +1548,29 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"Vaikuttaa siihen, miten pelin tuottama kuva skaalataan ikkunan " +"kuvatarkkuuteen.
Suorituskyky riippuu lähinnä tekniikoiden käyttämistä " +"otosko'oista.
SSAA:han verrattuna uudelleenotostaminen on hyödyllistä, " +"jos ikkunan
kuvatarkkuus ei ole alkuperäisen kuvatarkkuuden moninkerta." +"

Oletus- [nopein]
Grafiikkasuorittimen sisäinen " +"bilineaarinen otostin, jota ei gamma-korjata.
Valinta saattaa tulla " +"sivuutetuksi, jos gamma-korjaus pakotetaan päälle.

Bilineaarinen - [4 otosta]
Gamma-korjattu lineaarinen interpolointi pikselien " +"välillä.

Bi-kuutiollinen - [16 otosta]
Gamma-korjattu " +"kuutiollinen interpolointi pikselien välillä.
Sopii erityisesti lähellä " +"toisiaan olevien kuvatarkkuuksien skaalaamiseen, esim. 1080p ja 1440p." +"
Sisältää eri vaihtoehdot:
B-Spline: Sumuinen, mutta täysin " +"ilman voimistushäiriöitäMitchell-Netravali: Hyvä välimuoto " +"voimistushäiriöiden ja sumean välillä
Catmull-Rom: Terävämpi, " +"mutta voi aiheuttaa voimistushäriöitä
Terävä bilineaarinen - [1–4 " +"otosta]
Samanlainen kuin \"Lähin naapuri\". Tekniikka mahdollistaa " +"terävän tuloksen,
mutta hyödyntää myös värien sekoittamista väreilyn " +"välttämiseksi.
Toimii parhaiten kaksiulotteisissa peleissä, joissa on " +"pieni kuvatarkkuus.

Alueotostus - [jopa 324 " +"otosta]
Painottaa kuvapisteitä niiden peittämän pinta-alan mukaan. Gamma-" +"korjattu.
Sopii parhaiten yli kahdenkertaiseen pienennykseen." +"

Ellet ole varma, valitse 'Oletus'." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1578,7 +1596,7 @@ msgid "All Assembly files" msgstr "Kaikki konekooditiedostot" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Kaikki 64-bittisinä liukulukuina" @@ -1587,7 +1605,7 @@ msgstr "Kaikki 64-bittisinä liukulukuina" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1595,34 +1613,34 @@ msgid "All Files" msgstr "Kaikki tiedostot" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Kaikki tiedostot (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Kaikki 32-bittisinä liukulukuina" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Kaikki GC-/Wii-tiedostot" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Kaikki heksadesimaalisina" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Kaikki tilatallennukset (*.sav *.s##);; Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Kaikki etumerkillisinä kokonaislukuina" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Kaikki etumerkittöminä kokonaislukuina" @@ -1638,7 +1656,7 @@ msgstr "Kaikkien pelaajien koodit synkronoitu." msgid "All players' saves synchronized." msgstr "Kaikkien pelaajien tallennustiedostot synkronoitu." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Salli sopimattomat alueasetukset" @@ -1646,7 +1664,7 @@ msgstr "Salli sopimattomat alueasetukset" msgid "Allow Usage Statistics Reporting" msgstr "Salli käyttötilastojen raportointi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Salli SD-kortille kirjoittaminen" @@ -1666,7 +1684,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Vaihtoehtoiset syötelähteet" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Aina" @@ -1688,7 +1706,7 @@ msgstr "Sisälle laitettua levyä ei löytynyt, vaikka sitä odotettiin." msgid "Anaglyph" msgstr "Anaglyfi" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analysoi" @@ -1714,15 +1732,15 @@ msgstr "Reunanpehmennys:" msgid "Any Region" msgstr "Mikä vain alue" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Lisää allekirjoitus kohteeseen" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Lisää allekirjoitus &olemassaolevaan allekirjoitustiedostoon..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Käyt&ä allekirjoitustiedostoa..." @@ -1742,7 +1760,7 @@ msgstr "Apploaderin päiväys:" msgid "Apply" msgstr "Käytä" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Käytä allekirjoitustiedostoa" @@ -1750,7 +1768,7 @@ msgstr "Käytä allekirjoitustiedostoa" msgid "Arbitrary Mipmap Detection" msgstr "Mielivaltaisten mipmapien havainta" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Oletko varma, että haluat poistaa profiilin '%1'?" @@ -1762,7 +1780,7 @@ msgstr "Haluatko varmasti poistaa tämän tiedoston?" msgid "Are you sure you want to delete this pack?" msgstr "Oletko varma, että haluat poistaa tämän paketin?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Oletko varma, että haluat lopettaa nettipelin?" @@ -1774,16 +1792,16 @@ msgstr "Oletko varma?" msgid "Area Sampling" msgstr "Alueotanta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Kuvasuhde" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Kuvasuhdekorjattu sisäinen kuvatarkkuus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Kuvasuhde:" @@ -1791,7 +1809,7 @@ msgstr "Kuvasuhde:" msgid "Assemble" msgstr "Tulkkaa" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Tulkkaa käsky" @@ -1803,7 +1821,7 @@ msgstr "Konekoodi" msgid "Assembly File" msgstr "Konekooditiedosto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Aseta ohjainportit" @@ -1826,11 +1844,11 @@ msgstr "Liitä MotionPlus" msgid "Audio" msgstr "Ääni" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Äänen sisäinen järjestelmä:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Äänen venytyksen asetukset" @@ -1846,7 +1864,7 @@ msgstr "Tekijä" msgid "Authors" msgstr "Tekijät" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automaattinen" @@ -1855,11 +1873,11 @@ msgstr "Automaattinen" msgid "Auto (Multiple of 640x528)" msgstr "Automaattinen (640x528:n moninkerta)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Automaattisen päivityksen asetukset" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1871,7 +1889,7 @@ msgstr "" "\n" "Valitse tietty sisäinen kuvatarkkuus. " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Säädä ikkunan kokoa automaattisesti" @@ -1879,15 +1897,15 @@ msgstr "Säädä ikkunan kokoa automaattisesti" msgid "Auto-Hide" msgstr "Automaattinen piilotus" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Havaitaanko RSO-moduulit automaattisesti?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Automaattinen synkronointi kansion kanssa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1927,33 +1945,33 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "BBA:n kohdeosoite" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP-rekisteri " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Ketju kutsujan suuntaan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Sisäinen järjestelmä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Sisäisen järjestelmän monisäikeisyys" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Sisäisen järjestelmän asetukset" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Sisäinen järjestelmä:" @@ -1996,7 +2014,7 @@ msgstr "Virheellinen arvo annettu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banneri" @@ -2016,15 +2034,15 @@ msgstr "Kampi" msgid "Base Address" msgstr "Pohjaosoite" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Perusprioriteetti" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Perustiedot" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Perusasetukset" @@ -2040,10 +2058,6 @@ msgstr "Sarjatilaa ei voi käyttää määräämättä peliä, joka käynnistet msgid "Battery" msgstr "Paristo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (kerran kuukaudessa)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, jne." @@ -2076,21 +2090,25 @@ msgstr "Binäärinen SSL (luku)" msgid "Binary SSL (write)" msgstr "Binäärinen SSL (kirjoitus)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bittivirta (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" "\n" "Try again with a different character." msgstr "" +"Tyhjän hahmon luonti epäonnistui tiedostossa:\n" +"%1\n" +"\n" +"Yritä uudelleen käyttäen toista hahmoa." #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Lohkokoko" @@ -2128,95 +2146,95 @@ msgstr "" "Bluetooth-läpipäästötila on käytössä, mutta Dolphin on käännetty ilman " "libusb-kirjastoa. Läpipäästötilaa ei voi käyttää." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Käynnistä keskeytettynä" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMiin NAND-varmuuskopiotiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMiin avaintiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Reunaton koko näytön tila" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Alareuna" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 -msgid "Branch (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 -msgid "Branch Conditional" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 -msgid "Branch Conditional (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 -msgid "Branch Conditional to Count Register" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 -msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Haara" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 -msgid "Branch Conditional to Link Register" -msgstr "" +msgid "Branch (LR saved)" +msgstr "Haara (LR tallentuu)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional" +msgstr "Haara, ehdollinen" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch Conditional (LR saved)" +msgstr "Haara, ehdollinen (LR tallentuu)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 +msgid "Branch Conditional to Count Register" +msgstr "Haara, ehdollinen, laskurirekisteriin" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 +msgid "Branch Conditional to Count Register (LR saved)" +msgstr "Haara, ehdollinen, laskurirekisteriin (LR tallentuu)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +msgid "Branch Conditional to Link Register" +msgstr "Haara, ehdollinen, linkkirekisteriin" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Haara, ehdollinen, linkkirekisteriin (LR tallentuu)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Branch Not Overwritten" +msgstr "Haaraa ei ylikirjoitettu" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 +msgid "Branch Type" +msgstr "Haaratyyppi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 -msgid "Branch Not Overwritten" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 -msgid "Branch Type" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Haara ylikirjoitettiin" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Haaravahti" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Haaravahtityökalu" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Haaravahtityökalun ohje (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Haaravahtityökalun ohje (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Haaravahtityökalun ohje (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Haaravahtityökalun ohje (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2232,8 +2250,22 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"Haaravahti on koodihakutyökalu, jota voi käyttää haluttujen haarakäskyjen " +"tunnistamiseen perustuen yksinkertaisiin hakukriteereihin. Haaravahti toimii " +"jokseenkin samalla periaatteella kuin Cheat Enginen Ultimap.\n" +"\n" +"Paina \"Aloita haaravahti\" -painiketta aktivoidakseksi haaravahdin. " +"Haaravahdin tiedot säilyvät emulointi-istuntojen päätyttyä, ja kerätyt " +"tiedot voi myös tallentaa käyttäjähakemistoon, jotta ne säilyvät myös " +"Dolphinin sulkemisen jälkeen. Voi myös käyttää \"Tallenna nimellä\"- ja " +"\"Lataa tiedostosta\" -painikkeita, ja lisäksi voit ottaa käyttöön " +"automaattisen tallennuksen, jolloin haun tulokset tallentuvat jokaisen " +"hakukerran jälkeen. \"Keskeytä haaravahti\" -painike estää haaravahtia " +"seuraamasta tulevia haarojen suorituksia, kunnes se käynnistetään taas. Jos " +"painat \"Tyhjennä haaravahti\" -painiketta, kaikki hakutulokset " +"tyhjennetään, ja haaravahti palaa poissulkutilaan." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2242,22 +2274,29 @@ msgid "" "is pressed for the first time, Branch Watch will switch to the reduction " "phase, and the table will populate with all eligible candidates." msgstr "" +"Haaravahti käynnistää aluksi poissulkutilassa, mikä tarkoittaa, että " +"mahdollisia hakukandidaatteja ei ole vielä valittu, mutta mahdollisia " +"tuloksia voi etukäteen sulkea pois painamalla painikkeita \"Koodireittiä ei " +"suoritettu\", \"Haara ylikirjoitettiin\" ja \"Haaraa ei ylikirjoitettu\". " +"Kun painat painiketta \"Koodireitti suoritettiin\" ensimmäisen kerran, " +"haaravahti siirtyy karsintatilaan, ja taulukossa alkavat näkyä mahdolliset " +"hakutulokset." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" -msgstr "" +msgstr "Haara laskurirekisteriin" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +msgid "Branch to Count Register (LR saved)" +msgstr "Haara laskurirekisteriin (LR tallentuu)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 -msgid "Branch to Count Register (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "Haara linkkirekisteriin" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Haara linkkirekisteriin (LR tallentuu)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2270,19 +2309,24 @@ msgstr "Haarat" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Keskeytä" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Keskeytyskohdat" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Saavutettiin keskeytyskohta! Loppuun suoritus keskeytettiin." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Keskeytyskohdat" @@ -2316,24 +2360,24 @@ msgstr "Broadband-sovittimen virhe" msgid "Broadband Adapter MAC Address" msgstr "Broadband-sovittimen MAC-osoit" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Selaa &nettipeli-istuntoja..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Puskurin koko:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Puskurin koko muuttui arvoon %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Puskuri:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2381,11 +2425,11 @@ msgstr "Tekijä(t): %1" msgid "C Stick" msgstr "C-sauva" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "L&uo allekirjoitustiedosto..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP-rekisteri " @@ -2405,7 +2449,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Välimuistillinen tulkki (hitaampi)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2446,7 +2490,7 @@ msgstr "Kalibrointi" msgid "Calibration Period" msgstr "Kalibrointiaika" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Kutsu näyttölistaa kohdassa %1 koolla %2" @@ -2472,7 +2516,7 @@ msgstr "Kamera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Kameran näkökenttä (vaikuttaa osoituksen herkkyyteen)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "Vain virtuaalisessa muistissa oleville arvoille voi luoda AR-koodeja." @@ -2488,18 +2532,18 @@ msgstr "Tämän palkinnon roistoja ei voi muuttaa!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Wii Remote -ohjainta ei löydy yhteystunnisteella {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Nettipeli-istuntoa ei voi käynnistää, kun peli on vielä käynnissä!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Peruuta" @@ -2508,17 +2552,17 @@ msgstr "Peruuta" msgid "Cancel Calibration" msgstr "Peruuta kalibrointi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" -msgstr "" +msgstr "Ehdokkaita: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Ehdokkaita: %1 | Poissuljettu: %2 | Jäljellä: %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Ehdokkaita: %1 | Suodatettu: %2 | Jäljellä: %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2535,11 +2579,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "Edellistä arvoa kohtaan ei voi verrata ensimmäisen haun aikana." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "GC-IPL:ää ei löydy." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Tälle osoitteelle ei voi luoda AR-koodeja." @@ -2547,7 +2591,7 @@ msgstr "Tälle osoitteelle ei voi luoda AR-koodeja." msgid "Cannot refresh without results." msgstr "Ei voi päivittää ilman tuloksia." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "GCI-kansiota ei voi asettaa tyhjäksi hakemistopoluksi." @@ -2555,7 +2599,7 @@ msgstr "GCI-kansiota ei voi asettaa tyhjäksi hakemistopoluksi." msgid "Cannot set memory card to an empty path." msgstr "Muistikorttia ei voi asettaa tyhjäksi hakemistopoluksi." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Peliä ei voi käynnistää, koska GC-IPL:ää ei löydy." @@ -2587,7 +2631,7 @@ msgstr "Keskitä ja kalibr" msgid "Change &Disc" msgstr "Vaihda &levy" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Vaihda &levy..." @@ -2595,15 +2639,21 @@ msgstr "Vaihda &levy..." msgid "Change Disc" msgstr "Vaihda levy" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Vaihda levyä automaattisesti" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Vaihda levy {0}:ksi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2634,7 +2684,7 @@ msgstr "" "liike ei ole mahdollista, ja kamera voi vain kiertää ja zoomata " "alkuperäiseen pisteeseen asti." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Huijauskoodien vaihtamisella on vaikutusta vasta pelin " @@ -2644,11 +2694,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Kanavaosio (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Asetettu hahmo on virheellinen!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Keskustelu" @@ -2656,7 +2706,7 @@ msgstr "Keskustelu" msgid "Cheat Code Editor" msgstr "Huijauskoodien muokkaus" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Koodihaku" @@ -2664,7 +2714,7 @@ msgstr "Koodihaku" msgid "Cheats Manager" msgstr "Koodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Tarkista NAND..." @@ -2684,7 +2734,7 @@ msgstr "" "Tarkista, onko sinulla tiedoston poistoon tarvittavat oikeudet, ja onko se " "edelleen käytössä." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Tarkistussumma" @@ -2696,7 +2746,7 @@ msgstr "Kiina" msgid "Choose" msgstr "Valitse" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Valitse avattava tiedosto" @@ -2704,15 +2754,15 @@ msgstr "Valitse avattava tiedosto" msgid "Choose a file to open or create" msgstr "Valitse luotava tai avattava tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Valitse ensisijainen syötetiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Valitse toissijainen syötetiedosto" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Valitse GCI-pohjakansio" @@ -2725,7 +2775,7 @@ msgstr "Valitse kansio, johon puretaan" msgid "Clamping of rotation about the yaw axis." msgstr "Pystyakselin suhteen tapahtuvan käännön rajoitus." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Classic-ohjaimen painikkeet" @@ -2736,18 +2786,18 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Tyhjennä" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" -msgstr "" +msgstr "Tyhjennä haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Tyhjennä välimuisti" @@ -2768,7 +2818,7 @@ msgstr "Kloonaa ja &muokkaa koodia..." msgid "Close" msgstr "Sulje" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "As&etukset" @@ -2776,13 +2826,13 @@ msgstr "As&etukset" msgid "Code" msgstr "Koodi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" -msgstr "" +msgstr "Koodireittiä ei suoritettu" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" -msgstr "" +msgstr "Koodireitti suoritettiin" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2808,11 +2858,11 @@ msgstr "Värinkorjaus:" msgid "Color Space" msgstr "Väriavaruus" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" -msgstr "" +msgstr "Sarakkeen &näkyvyys" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Yhdistä &kaksi allekirjoitustiedostoa..." @@ -2845,7 +2895,7 @@ msgstr "" "huolimatta on mahdollista, että kyseessä on hyvä vedos verrattuna pelin Wii " "U eShop -julkaisuun. Dolphin ei voi varmentaa tätä." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Käännä varjostimet ennen käynnistystä" @@ -2855,7 +2905,7 @@ msgstr "Käännetään varjostimia" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Pakkausmenetelmä" @@ -2868,19 +2918,19 @@ msgstr "Pakkaustaso:" msgid "Compression:" msgstr "Pakkausmenetelmä:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." -msgstr "" +msgstr "Ehto" #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Ehto" @@ -2896,7 +2946,7 @@ msgstr "Ehto" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Ohje ehdoista" @@ -2911,7 +2961,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2949,53 +3004,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Ehdot:\n" -"Asettaa lausekkeen, joka evaluoidaan keskeytyskohdan saadessa osuman. Jos " -"arvo on epätosi tai 0, osuma ohitetaan keskeyttämättä. Useammat käskyt " -"erotetaan pilkulla, ja vain viimeinen käsky määrää toiminnon.\n" -"\n" -"Rekisterit, joihin lauseke voi viitata:\n" -"yleisrekisterit: r0–r31\n" -"liukulukurekisterit: f0–f32\n" -"linkkirekisteri, laskurirekisteri, ohjelmalaskuri\n" -"\n" -"Toiminnot:\n" -"Rekisterin päivittäminen: r1 = 8\n" -"Tyyppimuunnokset: s8(0xff). Käytettävissä on s8, u8, s16, u16, s32, u32\n" -"Kutsupino: callstack(0x80123456), callstack(\"anim\")\n" -"Merkkijonojen vertailu: streq(r3, \"abc\"). Kumpikin parametri voi olla " -"osoite tai merkkijonovakio.\n" -"Muistin luku: read_u32(0x80000000). Käytettävissä on u8, s8, u16, s16, u32, " -"s32, f32, f64\n" -"Muistin kirjoitus: write_u32(r3, 0x80000000). Käytettävissä on u8, u16, u32, " -"f32, f64\n" -"*tällä hetkellä kirjoitus toteutuu aina\n" -"\n" -"Laskutoimitukset:\n" -"Unaarioperaatiot: -u, !u, ~u\n" -"Aritmetiikka: * / + -, potenssi: **, jakojäännös: %, bittien siirto: <<, >>\n" -"Vertailu: <, <=, >, >=, ==, !=, &&, ||\n" -"Bittioperaatiot: &, |, ^\n" -"\n" -"Esimerkkejä:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & 3) & -4) * 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Kirjoitus ja keskytys: r4 = 8, 1\n" -"Kirjoitus ilman keskeytystä: f3 = f1 + f2, 0\n" -"Ehto tulee aina viimeisenä.\n" -"\n" -"Merkkijonoja voi käyttää vain callstack- ja streq-käskyissä, ja ne " -"kirjoitetaan lainausmerkein. Merkkijonoja ei voi sijoittaa muuttujiin.\n" -"Kaikki muuttujat tulostuvat muistirajapinnan lokiin, jos osuma toteutuu tai " -"laskutoimituksen tulos on NaN. Ongelmien jäljityksessä voi auttaa muuttujan " -"sijoittaminen yhtälöön, jolloin se tulostuu.\n" -"\n" -"Huomaa: Sisäisesti kaikki laskutoimitukset toteutuvat Double-liukuluvuilla. " -"Näin ollen tulokset voivat tulla liian pieniksi tai suuriksi, ja tuloksena " -"voi myös syntyä NaN-arvo. NaN-arvon syntyessä näkyviin tulee varoitus, ja " -"NaN-arvoksi tullut muuttuja tulee lokiin." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3012,7 +3020,7 @@ msgstr "Määritä asetukset" msgid "Configure Controller" msgstr "Ohjaimen asetukset" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphinin asetukset" @@ -3025,27 +3033,27 @@ msgstr "Syöteasetukset" msgid "Configure Output" msgstr "Ulostuloasetukset" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Vahvista" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Vahvista sisäisen järjestelmän muutos" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Vahvista pysäytyksessä" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Vahvistus" @@ -3055,15 +3063,15 @@ msgstr "Vahvistus" msgid "Connect" msgstr "Yhdistä" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Yhdistä tasapainolauta" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Yhdistä USB-näppäimistö" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Yhdistä Wii Remote %1" @@ -3083,7 +3091,7 @@ msgstr "Yhdistä Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Yhdistä Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Yhdistä Wii Remoteja" @@ -3099,7 +3107,7 @@ msgstr "Yhdistetäänkö internetiin ja tehdäänkö järjestelmäpäivitys?" msgid "Connected" msgstr "Yhteydessä" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Yhdistetään" @@ -3124,7 +3132,7 @@ msgstr "Ohjaa nettipelin golf-tilaa" msgid "Control Stick" msgstr "Ohjainsauva" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Ohjainprofiili" @@ -3236,8 +3244,8 @@ msgstr "Yhtenevyys" msgid "Convergence:" msgstr "Yhtenevyys:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Muunto epäonnistui." @@ -3245,9 +3253,9 @@ msgstr "Muunto epäonnistui." msgid "Convert" msgstr "Muunna" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Muunna tiedosto kansioksi nyt" @@ -3255,9 +3263,9 @@ msgstr "Muunna tiedosto kansioksi nyt" msgid "Convert File..." msgstr "Muunna tiedosto..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Muunna kansio tiedostoksi nyt" @@ -3279,8 +3287,8 @@ msgstr "" "säästä merkittävästi tilaa verrattuna ISO-muotoon. Jatketaanko kuitenkin?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Muunnetaan..." @@ -3324,22 +3332,22 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopioi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopioi %funktio" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Kopioi &heksa" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopioi osoite" @@ -3347,19 +3355,19 @@ msgstr "Kopioi osoite" msgid "Copy Failed" msgstr "Kopiointi epäonnistui" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Kopioi heksa" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Kopioi arvo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Kopioi koodi&rivi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Kopioi koh&deosoite" @@ -3377,10 +3385,10 @@ msgstr "Kopioi B:hen" msgid "Core" msgstr "Ydin" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." -msgstr "" +msgstr "Ydintä ei ole alustettu." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3513,7 +3521,7 @@ msgstr "" "jälkeen? Siinä tapauksessa muistikortin paikka on ehkä määritettävä " "uudelleen asetuksista." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Keskuspalvelimen haku epäonnistui" @@ -3529,13 +3537,13 @@ msgstr "Tiedoston luku epäonnistui." msgid "Country:" msgstr "Maa:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Luo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Luo Infinity-tiedosto" @@ -3549,7 +3557,7 @@ msgstr "Luo uusi muistikortti" msgid "Create Skylander File" msgstr "Luo Skylander-tiedosto" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Luo ohjainmäärityksiä muille laitteille" @@ -3566,11 +3574,11 @@ msgstr "Tekijä:" msgid "Critical" msgstr "Kriittinen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Rajaa" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3586,11 +3594,11 @@ msgstr "" msgid "Crossfade" msgstr "Ristihäivytys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Karsi kulmapisteitä suorittimella" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3601,47 +3609,47 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Nykyinen alue" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Nykyinen arvo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Nykyinen konteksti" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Nykyinen peli" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Nykyinen säie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" -msgstr "Muokattu" +msgstr "Oma" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" -msgstr "" +msgstr "Oma (venytä)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Nykyinen osoiteavaruus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Muokatun kuvasuhteen korkeus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Muokatun kuvasuhteen leveys" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Muokattu kuvasuhde:" @@ -3686,7 +3694,7 @@ msgstr "DJ-levysoitin" msgid "DK Bongos" msgstr "DK-bongot" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP:n emulointimoottori" @@ -3694,15 +3702,15 @@ msgstr "DSP:n emulointimoottori" msgid "DSP HLE (fast)" msgstr "DSP-HLE (nopea)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP-HLE (suositus)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP-LLE-tulkki (hyvin hidas)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP-LLE-uudelleenkääntäjä (hidas)" @@ -3732,7 +3740,7 @@ msgstr "Tanssimatto" msgid "Dark" msgstr "Pimeys" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Data" @@ -3778,8 +3786,8 @@ msgstr "Katvealue" msgid "Debug" msgstr "Virheenjäljitys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Virheenjäljitys" @@ -3788,7 +3796,7 @@ msgstr "Virheenjäljitys" msgid "Decimal" msgstr "Desimaali" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Purkulaatu:" @@ -3827,7 +3835,7 @@ msgstr "Vähennä Y:tä" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Oletus" @@ -3835,7 +3843,7 @@ msgstr "Oletus" msgid "Default Config (Read Only)" msgstr "Oletusasetukset (vain luku)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Oletuslaite" @@ -3847,11 +3855,11 @@ msgstr "Oletusfontti" msgid "Default ISO:" msgstr "Oletus-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Oletussäie" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Lykkää EFB-välimuistin mitätöintiä" @@ -3859,7 +3867,7 @@ msgstr "Lykkää EFB-välimuistin mitätöintiä" msgid "Defer EFB Copies to RAM" msgstr "Lykkää EFB:n kopiointia RAM-muistiin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3875,8 +3883,9 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Poista" @@ -3906,12 +3915,12 @@ msgstr "Syvyysprosentti:" msgid "Depth:" msgstr "Syvyys:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Kuvaus" @@ -3925,34 +3934,34 @@ msgstr "Kuvaus:" msgid "Description: %1" msgstr "Kuvaus: %" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" -msgstr "" +msgstr "Kohde" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Kohde (UNIX-pistokkeen polku tai osoite:portti):" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Kohde (osoite:portti):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" -msgstr "" +msgstr "Kohde korkeintaan" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" -msgstr "" +msgstr "Kohde vähintään" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" -msgstr "" +msgstr "Kohdesymbo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Irrallinen" @@ -3960,7 +3969,7 @@ msgstr "Irrallinen" msgid "Detect" msgstr "Havaitse" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Havaitaan RSO-moduuleja" @@ -3968,11 +3977,11 @@ msgstr "Havaitaan RSO-moduuleja" msgid "Deterministic dual core:" msgstr "Deterministinen kaksoisydintila:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Kehitysversiot (monia kertoja päivässä)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Laite" @@ -3990,7 +3999,7 @@ msgstr "Laiteasetukset" msgid "Device VID (e.g., 057e)" msgstr "Laitteen VID (esim. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Laite:" @@ -3998,7 +4007,7 @@ msgstr "Laite:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "Tiedosto %1 ei ole kelvollinen Riivolution XML -tiedosto." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Tummentaa ruudun viiden minuutin epäaktiivisuuden jälkeen." @@ -4014,11 +4023,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Ei &yhteyttä" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Poista käytöstä" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Poista rajoituslaatikko" @@ -4027,7 +4031,7 @@ msgstr "Poista rajoituslaatikko" msgid "Disable Copy Filter" msgstr "Poista kopiointisuodatin käytöstä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Poista EFB-VRAM-kopiointi käytöstä" @@ -4035,11 +4039,11 @@ msgstr "Poista EFB-VRAM-kopiointi käytöstä" msgid "Disable Emulation Speed Limit" msgstr "Poista emulaation nopeusrajoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Poista nopea muistihaku (Fastmem) käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Poista nopean muistikäytön kenttä käytöstä" @@ -4047,11 +4051,11 @@ msgstr "Poista nopean muistikäytön kenttä käytöstä" msgid "Disable Fog" msgstr "Poista sumu käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Poista JIT-välimuisti käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Poista laaja koodin tulokohtien hakurakenne käytöstä" @@ -4070,7 +4074,7 @@ msgstr "" "rikkoutuvat.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Ellet ole varma, jätä " "tämä valituksi." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Levy" @@ -4104,6 +4114,10 @@ msgstr "Levy" msgid "Discard" msgstr "Hylkä" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Näyttötyyppi" @@ -4139,11 +4153,11 @@ msgstr "Matkaetäisyys neutraalipaikasta." 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Haluatko tyhjentää symbolinimien listan?" @@ -4154,7 +4168,7 @@ 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Haluatko lopettaa nykyisen emulaation?" @@ -4162,12 +4176,12 @@ msgstr "Haluatko lopettaa nykyisen emulaation?" msgid "Do you want to try to repair the NAND?" msgstr "Haluatko yrittää NAND-muistin korjaamista?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II -dekooderi" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO -loki (*.dff)" @@ -4175,9 +4189,9 @@ msgstr "Dolphin FIFO -loki (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphinin pelimodien esiasestukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphinin karttatiedosto (*.map)" @@ -4189,8 +4203,8 @@ msgstr "Dolphinin allekirjoitusten CSV-tiedosto" msgid "Dolphin Signature File" msgstr "Dolphinin allekirjoitustiedosto" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-nauhoitus (*.dtm)" @@ -4232,7 +4246,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin on liian vanha käyttämään läpikulkupalvelinta" @@ -4248,7 +4262,7 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin ei pysty todentamaan ei-lisensoituja levyjä." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4256,7 +4270,7 @@ msgstr "" "Dolphin käyttää tätä asetusta julkaisuille, joiden aluetta ei voi määrittää " "automaattisesti." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphinin huijausjärjestelmä on tällä hetkellä pois käytöstä." @@ -4265,7 +4279,7 @@ msgstr "Dolphinin huijausjärjestelmä on tällä hetkellä pois käytöstä." msgid "Domain" msgstr "Verkkotunnus" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Älä päivitä" @@ -4286,7 +4300,7 @@ msgstr "Ovet lukossa" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "64-bittinen liukuluku" @@ -4308,7 +4322,7 @@ msgstr "Lataa koodeja" msgid "Download Codes from the WiiRD Database" msgstr "Lataa koodeja WiiRD -tietokannasta" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Lataa kansikuvia GameTDB.comista ruudukkonäkymään" @@ -4320,6 +4334,16 @@ msgstr "Lataus valmis" msgid "Downloaded %1 codes. (added %2)" msgstr "Ladattu %1 koodia. (lisätty %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4359,19 +4383,19 @@ msgstr "Tee &FakeVMEM-vedos" msgid "Dump &MRAM" msgstr "Tee &MRAM-vedos" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Tee äänivedos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Tee perustekstuurivedos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Tee EFB-kohteen vedos" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Tee kehysvedos" @@ -4379,7 +4403,7 @@ msgstr "Tee kehysvedos" msgid "Dump GameCube BBA traffic" msgstr "Tee GameCube BBA -vedos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Tee mipmap-vedos" @@ -4387,7 +4411,7 @@ msgstr "Tee mipmap-vedos" msgid "Dump Path:" msgstr "Vedostiedostojen polku:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Tee XFB-kohteen vedos" @@ -4412,7 +4436,7 @@ msgstr "Tee vertaisten varmenteiden vedos" msgid "Dump root CA certificates" msgstr "Tee juurivarmentajan varmenteen vedos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4431,7 +4455,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4440,25 +4464,25 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Turbo-painikkeen painalluksen pituus (kehyksiä):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 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:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Hollanti" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "P&oistu" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB-kopio &1" @@ -4474,7 +4498,7 @@ msgstr "" "luultavasti tarvitaan uudelleenkäynnistys, jotta Windows havaitsisi uuden " "ajurin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4486,7 +4510,7 @@ msgstr "" "Tämä sopii kilpailuhenkisiin peleihin, joissa reiluus ja vähäinen viive ovat " "etenkin tärkeitä." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Aikaiset muistipäivitykset" @@ -4505,7 +4529,16 @@ msgstr "Itä-Aasia" msgid "Edit Breakpoint" msgstr "Muokkaa keskeytyskohtaa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Muokkaa..." @@ -4525,7 +4558,7 @@ msgstr "Tehoste" msgid "Effective" msgstr "Näennäinen" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Toiminnallinen prioriteetti" @@ -4547,11 +4580,11 @@ msgstr "Elementti" msgid "Embedded Frame Buffer (EFB)" msgstr "Sulautettu kehyspuskuri (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Tyhjä" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emulaattorisäie on jo käynnissä" @@ -4579,7 +4612,7 @@ msgstr "" "Emuloi oikean laitteiston optisen levyn nopeutta. Käytöstä poistaminen " "saattaa aiheutaa epävakautta. Oletuksena True" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Emuloidut USB-laitteet" @@ -4604,34 +4637,24 @@ msgstr "Emulaation nopeus" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Ota käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Käytä ohjelmointirajapinnan tarkistuskerroksia" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Ota saavutusten ansiomerkit käyttöön" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Ota saavutukset käyttöö" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Käytä äänen venytystä" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Ota huijauskoodit käyttöön" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Ota ohjainsyö&te käyttöön" @@ -4639,15 +4662,19 @@ msgstr "Ota ohjainsyö&te käyttöön" msgid "Enable Custom RTC" msgstr "Ota mukautettu reaaliaikainen kello käyttöön" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Ota virheenkorjauskäyttöliittymä käyttöön" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Ota kaksiydinsuoritin käyttöön" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Ota kaksiydinsuoritin käyttöön (nopeuttaa)" @@ -4659,7 +4686,7 @@ msgstr "Ota kellotaajuuden säätö käyttöön" msgid "Enable Emulated Memory Size Override" msgstr "Ota emuloidun muistin määrän säätö käyttöön" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Ota Encore-saavutukset käyttöön" @@ -4667,15 +4694,15 @@ msgstr "Ota Encore-saavutukset käyttöön" msgid "Enable FPRF" msgstr "Ota FPRF käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Käytä grafiikkamodeja" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Ota Hardcore-tila käyttöön" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4692,42 +4719,52 @@ msgid "" "
Be aware that turning Hardcore Mode off while a game is running requires " "the game to be closed before re-enabling." msgstr "" +"Ota käyttöön Hardcore-tila RetroAchievements-palvelussa.

Hardcore-" +"tilan tarkoituksena on tarjota mahdollisimman hyvin alkuperäistä laitteistoa " +"vastaava pelikokemus. RetroAchievements-palvelun pisteytys painottuu lähinnä " +"hardcore-pisteisiin (myös muiden tilojen pisteitä seurataan, mutta ne ovat " +"vähemmän arvokkaita), ja tulostaulukoille pääsemiseen vaaditaan hardcore-" +"tilaa.

Autenttisen kokemuksen varmistamiseksi seuraavat ominaisuudet " +"poistetaan käytöstä, sillä ne tarjoaisivat emulaattoripelaajille edun " +"konsolipelaajiin nähden:
- Tilatallennusten lataaminen
-- " +"Tilatallennusten luonti on kuitenkin sallittu
- Emulaattorin nopeudet, " +"jotka alittavat 100 %
-- Kehys kerrallaan pelaaminen on kielletty
-- " +"Turbo on sallittu
- Huijauskoodit
- Keskusmuistin muutokset
-- " +"Tiedostojen muuttaminen on kuitenkin sallittu
- " +"Virheenjäljityskäyttöliittymä
- Vapaan katselun " +"tila

Ominaisuutta ei voi ottaa käyttöön, kun peli " +"on käynnissä.
Sulje käynnissä oleva peli, ennen kuin " +"otat hardcore-tilan käyttöön.
Huomaa, että hardcore-tilan poistaminen " +"käytöstä samalla, kun peli on käynnissä, vaatii pelin sulkemista, ennen kuin " +"hardcore-tilan voi ottaa uudelleen käyttöön." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Ota tulostaulukot käyttö" +msgstr "Käytä JIT-lohkojen seurantaa" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Ota MMU käyttöön" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Ota edistymisilmoitukset käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Ota progressiivinen kuva käyttöön" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Ota RetroAchievements.org-yhteys käyttöön" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Ilmoita Rich Presence" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Ota tärinä käyttöön" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Ota näytönsäästäjä käyttöön" @@ -4735,19 +4772,23 @@ msgstr "Ota näytönsäästäjä käyttöön" msgid "Enable Speaker Data" msgstr "Käytä kaiutindataa" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Ota epäviralliset saavutukset käyttöön" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Ota käyttötilastojen raportointi käyttöön" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Käytä WiiLink-palvelua WiiConnect24:n apuna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Ota rautalankatila käyttöön" @@ -4755,38 +4796,6 @@ msgstr "Ota rautalankatila käyttöön" msgid "Enable Write-Back Cache (slow)" msgstr "Käytä takaisinkirjoitusvälimuistia (hidas)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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 "" -"Asetus ottaa saavutusten ansiomerkit käyttöön.

Tällöin emulaattori " -"näyttää kuvakkeita liittyen pelaajaan, peliin ja saavutuksiin. Asetus on " -"toiminnoltaan pieni, ja vaatii hieman lisämuistia ja -aikaa kuvakkeiden " -"lataamiseen." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 -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:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"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 "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4796,7 +4805,7 @@ msgstr "" "johtaa kaatumisiin ja muihin ongelmiin joissakin peleissä. (PÄÄLLÄ = " "Yhteensopivuus, POIS = Rajoittamaton)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4809,7 +4818,7 @@ msgstr "" "tallenna salasanaasi ja käyttää sen sijaan API-avainta käyttäjän " "muistamiseen." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4820,35 +4829,34 @@ msgstr "" "sellaista saavutusta kohden, joka perustuu kertyvään arvoon, esimerkiksi kun " "pelajaa saa 60 tähteä 120:stä." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." 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:65 -msgid "Enable unlocking achievements.
" -msgstr "Ota saavutusten avaaminen käyttöön.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." 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:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4897,7 +4905,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4911,7 +4919,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4939,7 +4947,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "Venyttää ääntä vastaamaan emuloinnin nopeutta." @@ -4976,7 +4984,7 @@ msgstr "" "POIS = Nopea)

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4988,7 +4996,7 @@ msgstr "" "esimerkiksi Forecast- ja Nintendo-kanavien yhteydessä\n" "Voit lukea palveluehdot osoitteesta https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5001,7 +5009,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5026,13 +5034,17 @@ msgstr "" "\n" "Tuonti keskeytyy." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enetin alustus epäonnistui" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Englanti" @@ -5049,7 +5061,7 @@ msgstr "Syötä XLink Kai -asiakasohjelmistoa suorittavan laitteen IP-osoite:" msgid "Enter USB device ID" msgstr "Syötä USB-laitteen tunniste" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Syötä vahdittava osoite:" @@ -5072,34 +5084,35 @@ msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." msgstr "" +"Syötä IP-osoite ja portti sille tap-palvelimelle, johon haluat yhdistää." -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5112,52 +5125,52 @@ msgstr "Syötä RSO-moduulin osoite:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Virhe" @@ -5174,7 +5187,7 @@ msgstr "Virhe sovittimen avauksessa: %1" msgid "Error collecting save data!" msgstr "Virhe tallennustiedoston keräämisessä!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5189,7 +5202,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Virhe istuntolistan hakemisessa: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Virheitä tapahtui joidenkin tekstuuripakettien latauksessa" @@ -5286,12 +5299,12 @@ 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:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eurooppa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Poissulkevat Uber-varjostimet" @@ -5335,11 +5348,11 @@ msgstr "Odotettiin lausekkeen alkua." msgid "Expected variable name." msgstr "Odotettiin muuttujanimeä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Kokeellinen" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Vie kaikki Wii-tallennustiedostot" @@ -5354,7 +5367,7 @@ msgstr "Vieminen epäonnistui" msgid "Export Recording" msgstr "Vie nauhoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Vie nauhoitus..." @@ -5382,14 +5395,14 @@ msgstr "Vie .&gcs-muodossa..." msgid "Export as .&sav..." msgstr "Vie .&sav-muodossa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Viety %n tallennustiedosto(a)" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Lisälaite" @@ -5402,7 +5415,7 @@ msgstr "Lisälaitteen liikesyöte" msgid "Extension Motion Simulation" msgstr "Lisälaitteen liikesimulaatio" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Ulkoinen" @@ -5410,35 +5423,35 @@ msgstr "Ulkoinen" msgid "External Frame Buffer (XFB)" msgstr "Ulkoinen kehyspuskuri (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Vie varmenteet NAND-muistista" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Vie koko levyn sisältö..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Vie kokonainen osio..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Vie tiedosto..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Vie tiedostot..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Vie järjestelmätiedot..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Viedään kaikkia tiedostoja..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Puretaan hakemistoa..." @@ -5447,8 +5460,8 @@ msgstr "Puretaan hakemistoa..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO-toistaja" @@ -5464,11 +5477,11 @@ msgstr "" "Muistikortin avaus epäonnistui:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui" @@ -5482,13 +5495,13 @@ msgstr "Skylanderin nollaaminen epäonnistui!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "Skylanderin poistaminen 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:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Palvelinyhteys epäonnistui: %1" @@ -5509,21 +5522,25 @@ 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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Infinity-tiedoston luonti epäonnistui" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Skylander-tiedoston luonti epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" "\n" "The Skylander may already be on the portal." msgstr "" +"Skylander-tiedoston luominen epäonnistui:\n" +"%1\n" +"\n" +"Skylander saattaa olla jo portaalissa." #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5567,15 +5584,15 @@ msgstr "Tallennustiedostoista %n:n %1:sta vienti epäonnistui." msgid "Failed to export the following save files:" msgstr "Seuraavien tallennustiedostojen vienti epäonnistui:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista epäonnistui" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Tiedoston vieminen epäonnistui." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Järjestelmädatan vienti epäonnistui." @@ -5597,14 +5614,14 @@ msgstr "Yhden tai useamman D3D-symbolin haku epäonnistui" msgid "Failed to import \"%1\"." msgstr "Kohteen \"%1\" tuonti epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5612,7 +5629,7 @@ msgstr "" "Tallennustiedoston tuonti epäonnistui. Annettu tiedosto on vioittunut tai ei " "ole kelvollinen Wii-tallennustiedosto." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5623,7 +5640,7 @@ msgstr "" "(Työkalut -> Hallitse NAND-muistia -> Tarkista NAND...), ja yritä " "tallennustiedoston tuontia sitten uudelleen." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Ytimen alustus epäonnistui" @@ -5646,19 +5663,19 @@ msgid "Failed to install pack: %1" msgstr "Paketin asennus epäonnistui: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Tämän julkaisun asennus NAND-muistiin epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 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:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "RSO-moduulin lataaminen epäonnistui kohdassa %1" @@ -5670,21 +5687,23 @@ 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:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Karttatiedoston '%1' lataus epäonnistui" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Skylander-tiedoston lataus epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"Skylander-tiedoston lataaminen epäonnistui:\n" +"%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Suoritettavan tiedoston lataus muistiin epäonnistui." @@ -5700,17 +5719,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Skylanderin muokkaus epäonnistui!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Tiedoston \"%1\" avaaminen kirjoittamista varten epäonnistui." -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Tiedoston \"{0}\" avaaminen kirjoittamista varten epäonnistui." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Kohteen '%1' avaus epäonnistui" @@ -5718,9 +5737,9 @@ msgstr "Kohteen '%1' avaus epäonnistui" msgid "Failed to open Bluetooth device: {0}" msgstr "Bluetooth-laitteen avaus epäonnistui: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Haaravahtitiedoston \"%1\" avaaminen epäonnistui" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5750,33 +5769,41 @@ msgstr "" msgid "Failed to open file." msgstr "Tiedoston avaaminen epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Palvelimen avaaminen epäonnistui" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Infinity-tiedoston avaaminen epäonnistui!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" "\n" "The file may already be in use on the base." msgstr "" +"Infinity-tiedoston avaaminen epäonnistui:\n" +"%1\n" +"\n" +"Tiedosto saattaa olla jo käytössä alustalla." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Skylander-tiedoston avaaminen epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" "\n" "The file may already be in use on the portal." msgstr "" +"Skylander-tiedoston avaaminen epäonnistui:\n" +"%1\n" +"\n" +"Tiedosto saattaa olla jo käytössä portaalissa." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5820,37 +5847,43 @@ msgstr "Syötetiedostosta \"{0}\" lukeminen epäonnistui." msgid "Failed to read selected savefile(s) from memory card." msgstr "Tallennustiedosto(je)n lukeminen muistikortilta epäonnistui." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Infinity-tiedoston lukeminen epäonnistui!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Skylander-tiedoston lukeminen epäonnistui!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"Skylander-tiedoston luku epäonnistui:\n" +"%1\n" +"\n" +"Tiedosto on liian pieni." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" "Failed to read the contents of file:\n" "%1" msgstr "" +"Tiedoston sisällön luku epäonnistui:\n" +"%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Kohteen {0} lukeminen epäonnistui" @@ -5888,31 +5921,31 @@ msgstr "" "Nettipelin uudelleenohjauskansion nollaaminen epäonnistui. Tarkista " "kirjoitusoikeudet." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Haaravahtitiedoston \"%1\" tallennus epäonnistui" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "FIFO-lokin tallennus epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Koodikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Allekirjoitustiedoston tallentaminen tiedostoon '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Symbolikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' tallentaminen epäonnistui" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5969,19 +6002,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Virhe" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Reilu syöteviive" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Oletusalue" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Oletusalue:" @@ -5994,7 +6027,7 @@ msgstr "Nopea" msgid "Fast Depth Calculation" msgstr "Nopea syvyyslaskenta" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -6007,7 +6040,7 @@ msgstr "" msgid "Field of View" msgstr "Näkökenttä" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Hahmon numero:" @@ -6021,7 +6054,7 @@ msgstr "Tiedoston tiedot" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Tiedostomuoto" @@ -6029,24 +6062,24 @@ msgstr "Tiedostomuoto" msgid "File Format:" msgstr "Tiedostomuoto:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Tiedoston tiedot" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Tiedostonimi" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Tiedostopolku" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Tiedostokoko" @@ -6135,7 +6168,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Liput" @@ -6144,12 +6176,12 @@ msgstr "Liput" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "32-bittinen liukuluku" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Seuraa &haaraa" @@ -6175,7 +6207,7 @@ msgstr "" "Asennusohjeita löytyy tältä sivulta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Pakota 16:9-kuvasuhde" @@ -6183,7 +6215,7 @@ msgstr "Pakota 16:9-kuvasuhde" msgid "Force 24-Bit Color" msgstr "Pakote 24-bittinen värisyvyys" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Pakota 4:3-kuvasuhde" @@ -6215,11 +6247,11 @@ msgstr "Pakota kuunteluportti:" msgid "Force Nearest" msgstr "Pakota lähin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Pakollisesti pois päältä, koska %1 ei tue VS-laajentamista." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Pakollisesti päällä, koska %1 ei tue geometriavarjostimia." @@ -6232,6 +6264,12 @@ msgid "" "available.

If unsure, leave this unchecked." msgstr "" +"Pakottaa pelin tuottamaan kuvaa halutulla kuvasuhteella muuttamalla kameran " +"näkökenttää.
Tekniikka on epävakaa, ja saatavat tulokset vaihtelevat " +"pelistä toiseen (käyttöliittymä voi usein venyä).
Pelikohtaiset AR-/Gecko-" +"koodit tuottavat yleensä paremman tuloksen, jos niitä on saatavilla." +"

Ellet ole varma, jätä tämä valitsematta." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 msgid "" @@ -6246,6 +6284,12 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Muoto:" @@ -6261,7 +6305,7 @@ msgstr "Eteen" msgid "Forward port (UPnP)" msgstr "Tee portinsiirto (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Löytyi %1 tulosta haulla \"%2\"" @@ -6271,7 +6315,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "Löytyi %n osoite(tta)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Kehys %1" @@ -6292,11 +6336,11 @@ msgstr "Kehys kerrallaan: lisää nopeutta" msgid "Frame Advance Reset Speed" msgstr "Kehys kerrallaan: palauta nopeus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Kehysvedostus" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Kehysväli" @@ -6304,7 +6348,7 @@ msgstr "Kehysväli" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Kehysvedoskuva(t) '{0}' on/ovat jo olemassa. Ylikirjoitetaanko?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Nauhoitettavien kehysten määrä:" @@ -6324,7 +6368,7 @@ msgstr "Vapaita tiedostoja: %1" msgid "Free Look Control Type" msgstr "Vapaan katselun hallinnan tyyppi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Vapaan katselun ohjain %1" @@ -6359,7 +6403,7 @@ msgstr "Vapaa katselu päälle/pois" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Ranska" @@ -6378,8 +6422,8 @@ msgid "From" msgstr "Mistä" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Mistä:" @@ -6387,10 +6431,14 @@ msgstr "Mistä:" msgid "FullScr" msgstr "Koko näyttö" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funktio" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Toiminnot" @@ -6431,11 +6479,11 @@ msgstr "GBA-äänenvoimakkuus" msgid "GBA Window Size" msgstr "GBA-ikkunan koko" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1:n ROM:ksi vaihtui \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBA%1:n ROM pois käytöstä" @@ -6485,7 +6533,7 @@ msgstr "GL_MAX_TEXTURE_SIZE on {0} - sen on oltava vähintään 1024." msgid "GPU Texture Decoding" msgstr "Tekstuurien purku grafiikkasuorittimella" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6498,7 +6546,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL-VIRHE: Tukeeko grafiikkasuorittimesi OpenGL 2.0:aa?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6506,7 +6554,7 @@ msgstr "" "GPU: OGL-VIRHE: Tarvitaan GL_ARB_map_buffer_range.\n" "GPU: Tukeeko grafiikkasuorittimesi OpenGL 3.0:aa?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6514,7 +6562,7 @@ msgstr "" "GPU: OGL-VIRHE: Tarvitaan GL_ARB_sampler_objects.\n" "GPU: Tukeeko grafiikkasuorittimesi OpenGL 3.3:a?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6522,7 +6570,7 @@ msgstr "" "GPU: OGL-VIRHE: Tarvitaan GL_ARB_uniform_buffer_object.\n" "GPU: Tukeeko grafiikkasuorittimesi OpenGL 3.1:ä?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6538,7 +6586,7 @@ msgstr "" "GPU: OGL-VIRHE: Tarvitaan OpenGL:n versio 3.\n" "GPU: Tukeeko grafiikkasuorittimesi OpenGL 3:a?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6561,16 +6609,16 @@ msgstr "" msgid "Game" msgstr "Peli" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance -moduulit (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6578,7 +6626,7 @@ msgstr "" "Game Boy Advance -ROMit (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance portissa %1" @@ -6607,7 +6655,7 @@ msgid "Game Gamma:" msgstr "Pelin gamma:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Pelin tunniste" @@ -6616,15 +6664,15 @@ msgstr "Pelin tunniste" msgid "Game ID:" msgstr "Pelin tunniste:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Pelin tila" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Peliksi valittu \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6632,11 +6680,11 @@ msgstr "" "Pelitiedostolla on eri tiiviste; valitse Ominaisuudet, vaihda Varmenna-" "välilehdelle ja käytä Varmenna eheys -ominaisuutta tarkistaaksesi tiivisteen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "Pelillä on eri levynumero" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "Pelillä on eri revisio" @@ -6651,7 +6699,7 @@ msgstr "" "Peli ylikirjoitti toisen pelin tallennustiedoston. Datan vioittumista edessä " "{0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "Pelin alue on eri" @@ -6671,11 +6719,11 @@ msgstr "GameCube-sovitin Wii U:lle" msgid "GameCube Adapter for Wii U at Port %1" msgstr "GameCube-sovitin Wii U:lle portissa %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube -ohjain" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "GameCube -ohjain portissa %1" @@ -6683,11 +6731,11 @@ msgstr "GameCube -ohjain portissa %1" msgid "GameCube Controllers" msgstr "GameCube -ohjaimet" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube -näppäimistö" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "GameCube -näppäimistö portissa %1" @@ -6704,7 +6752,7 @@ msgstr "GameCube -muistikortit" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube -muistikortit (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube -mikrofonin paikka %1" @@ -6722,17 +6770,17 @@ msgstr "Reunakoko" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:411 msgid "Gecko (04)" -msgstr "" +msgstr "Gecko (04)" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:412 msgid "Gecko (C0)" -msgstr "" +msgstr "Gecko (C0)" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:413 msgid "Gecko (C2)" -msgstr "" +msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koodit" @@ -6742,35 +6790,35 @@ msgstr "Gecko-koodit" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Yleinen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Yleinen ja asetukset" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Luo Action Replay -koodi(t)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Luo uusi tilastoidentiteetti" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." -msgstr "" +msgstr "AR-koodi(t) luotu." -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Luotu symbolinimet lähteestä '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Saksa" @@ -6797,7 +6845,7 @@ msgstr "Jätti" msgid "Giants" msgstr "Giants" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golf-tila" @@ -6806,7 +6854,7 @@ msgid "Good dump" msgstr "Hyvä vedos" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafiikka" @@ -6852,7 +6900,7 @@ msgstr "Vihreä vasen" msgid "Green Right" msgstr "Vihreä oikea" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Ruudukkonäkymä" @@ -6889,7 +6937,7 @@ msgstr "HDR:n jälkikäsittely" msgid "Hacks" msgstr "Niksit" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Pää" @@ -6921,7 +6969,7 @@ msgstr "Heksa 8" msgid "Hex Byte String" msgstr "Heksatavujen merkkijono" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Heksadesimaali" @@ -6930,11 +6978,11 @@ msgstr "Heksadesimaali" msgid "Hide" msgstr "Piilota" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" -msgstr "" +msgstr "Piilota &komennot" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Piilota kaikki" @@ -6946,16 +6994,23 @@ msgstr "Piilota pelissä olevat istunnot" msgid "Hide Incompatible Sessions" msgstr "Piilota ei-yhteensopivat istunnot" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Piilota muiden GBA:" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Korkea" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Korkein" @@ -6978,7 +7033,7 @@ msgstr "Isännöi" msgid "Host Code:" msgstr "Isäntäkoneen koodi:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Isäntäkone vastaa syötteestä" @@ -6986,7 +7041,7 @@ msgstr "Isäntäkone vastaa syötteestä" msgid "Host Size" msgstr "Isäntäkoko" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6999,11 +7054,11 @@ msgstr "" "Sopii rennoille peleille vähintään 3 pelaajan kesken, mahdollisesti " "epävakaiden tai suuriviiveisten yhteyksien tapauksessa." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Isäntäkoneen syötevastuu on pois päältä" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Isäntäkoneen syötevastuu on päällä" @@ -7015,7 +7070,7 @@ msgstr "Isännöi nettipelissä" msgid "Hostname" msgstr "Isäntänimi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Pikanäppäinasetukset" @@ -7025,11 +7080,11 @@ msgstr "Pikanäppäinasetukset" msgid "Hotkeys" msgstr "Pikanäppäimet" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Pikanäppäimet vaativat kohdistetun ikkunan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Hybridi-Uber-varjostimet" @@ -7088,12 +7143,12 @@ msgstr "IP-osoite:" msgid "IPL Settings" msgstr "IPL-asetukset" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "Infrapuna" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Infrapunatarkkuus:" @@ -7133,7 +7188,7 @@ msgstr "" msgid "Icon" msgstr "Ikoni" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7145,7 +7200,7 @@ msgstr "" "Sopii vuoropohjaisiin peleihin, kuten golfiin, joissa ohjauksen ajoitus on " "tärkeää." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Identiteetin luonti" @@ -7171,7 +7226,7 @@ msgstr "" "tai suorituskyky- ja vakausongelmia.\n" "Tämän luvan voi perua milloin vain Dolphinin asetuksista." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7192,7 +7247,7 @@ msgstr "" "Jos tämä ei ole käytössä, emuloidun ohjaimen yhteys riippuu siihen " "linkitetyn varsinaisen ohjaimen (jos sellainen on) yhteydestä." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7204,7 +7259,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7220,9 +7275,9 @@ msgstr "" msgid "Ignore" msgstr "Ohita" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Sivuuta &sovelluslataajan haaraosumat" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7261,7 +7316,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Esitä XFB välittömästi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7276,7 +7331,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Tuo BootMii-NAND-varmuuskopio..." @@ -7291,15 +7346,15 @@ msgstr "Tuonti epäonnistui" msgid "Import Save File(s)" msgstr "Tuo tallennustiedosto(ja)" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Tuo Wii-tallennustiedosto..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "NAND-varmuuskopion tuonti käynnissä" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7308,6 +7363,15 @@ msgstr "" "NAND-varmuuskopion tuonti käynnissä\n" " Kulunut aika: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "Peli käynnissä?" @@ -7390,7 +7454,7 @@ msgstr "Vähittäinen kääntö" msgid "Incremental Rotation (rad/sec)" msgstr "Vähittäinen kääntö (rad/s)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Infinity-hahmon luonti." @@ -7399,7 +7463,7 @@ msgstr "Infinity-hahmon luonti." msgid "Infinity Manager" msgstr "Infinity-hallinta" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Infinity-hahmo (*.bin);;" @@ -7422,25 +7486,25 @@ msgstr "Tiedot" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Tiedot" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Estä näytönsäästäjä emuloidessa" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:370 msgid "Inject" -msgstr "" +msgstr "Lisää koodia" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Syöte" @@ -7454,23 +7518,19 @@ msgstr "Aktivoiva syötevoimakkuus." msgid "Input strength to ignore and remap." msgstr "Uudelleenmuunnettava syötevoimakkuus." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" -msgstr "" +msgstr "Lisää &BLR" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" -msgstr "" +msgstr "Lisää tyhjä käsky" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Lisää &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Lisää SD-kortti" @@ -7483,11 +7543,11 @@ msgstr "Asenna" msgid "Install Partition (%1)" msgstr "Asennusosio (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Asenna päivitys" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Asenna WAD..." @@ -7495,13 +7555,13 @@ msgstr "Asenna WAD..." msgid "Install to the NAND" msgstr "Asenna NAND-muistiin" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Käsky" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Käsky" @@ -7510,7 +7570,7 @@ msgstr "Käsky" msgid "Instruction Breakpoint" msgstr "Käskyn keskeytyskohta" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Käsky:" @@ -7519,7 +7579,7 @@ msgstr "Käsky:" msgid "Instruction: %1" msgstr "Käsky: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7540,19 +7600,19 @@ msgstr "Voimakkuus" msgid "Interface" msgstr "Käyttöliittymä" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Sisäinen LZ4-virhe - Yritys purkaa {0} tavua" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Sisäinen LZ4-virhe - pakkaus epäonnistui" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Sisäinen LZ4-virhe - purku epäonnistui ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Sisäinen LZ4-virhe - hyötykuorman koko ei täsmää ({0} / {1})" @@ -7565,7 +7625,7 @@ msgstr "Sisäinen LZO-virhe - pakkaaminen epäonnistui" msgid "Internal LZO Error - decompression failed" msgstr "Sisäinen LZO-virhe - purkaminen epäonnistui" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7573,7 +7633,7 @@ msgstr "" "Sisäinen LZO-virhe - purku epäonnistui ({0}) ({1})\n" "Vanhentuneen tilantallennuksen versiotiedon haku epäonnistui." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7581,7 +7641,7 @@ msgstr "" "Sisäinen LZO-virhe - puretun versioevästeen ja versiomerkkijonon pituuden " "jäsentäminen epäonnistui ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7598,7 +7658,7 @@ msgstr "Sisäinen kuvatarkkuus" msgid "Internal Resolution:" msgstr "Sisäinen kuvatarkkuus:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Sisäinen virhe AR-koodia luonnissa." @@ -7606,7 +7666,7 @@ msgstr "Sisäinen virhe AR-koodia luonnissa." msgid "Interpreter (slowest)" msgstr "Tulkki (hitain)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Tulkkiydin" @@ -7622,7 +7682,7 @@ msgstr "Automaattisen päivityksen palvelu palautti virheellistä JSONia: {0}" msgid "Invalid Mixed Code" msgstr "Virheellinen sekakoodi" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Virheellinen paketti %1 annettu: %2" @@ -7631,11 +7691,11 @@ msgstr "Virheellinen paketti %1 annettu: %2" msgid "Invalid Player ID" msgstr "Virheellinen pelaajatunniste" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Virheellinen RSO-moduulin osoite: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Virheellinen kutsupino" @@ -7656,7 +7716,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Virheellinen syöte kentässä \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Virheellinen syöte" @@ -7672,19 +7732,19 @@ msgstr "Virheelliset parametrit annettiin hakuun." msgid "Invalid password provided." msgstr "Virheellinen salasana annettu." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Virheellinen nauhoitustiedosto" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Virheelliset hakuparametrit (kohdetta ei valittu)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Virheellinen hakumerkkijono (numeroksi muunto epäonnistui)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Virheellinen hakumerkkijono (vain parillisia pituuksia tuetaan)" @@ -7692,13 +7752,13 @@ msgstr "Virheellinen hakumerkkijono (vain parillisia pituuksia tuetaan)" msgid "Invalid title ID." msgstr "Virheellinen julkaisutunniste." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Virheellinen vahtiosoite: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italia" @@ -7711,11 +7771,11 @@ msgstr "Italia" msgid "Item" msgstr "Esin" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT:n lohkolinkitys pois" @@ -7723,47 +7783,47 @@ msgstr "JIT:n lohkolinkitys pois" msgid "JIT Blocks" msgstr "JIT-lohkot" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT-haara pois" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT-liukuluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT-kokonaisluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT-liukuluku-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT-paritettu-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT-IXz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT-Ibzx-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT-Iwz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT pois (JIT-ydin)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT-paritettu pois" @@ -7775,16 +7835,16 @@ msgstr "JIT-kääntäjä ARM64-alustalle (suositus)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-kääntäjä x86-64-alustalle (suositus)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT-rekisterivälimuisti pois" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT-järjestelmärekisterit pois" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7793,16 +7853,16 @@ msgstr "" "Näin ei pitäisi koskaan tapahtua. Ilmoitathan tästä ongelmasta " "vianhallintajärjestelmään. Dolphin sulkeutuu nyt." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" -msgstr "" +msgstr "JIT ei ole aktiivinen" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japani" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japani" @@ -7821,12 +7881,12 @@ msgstr "" "Kaos on ainoa roisto, joka kuuluu tähän palkintoon, ja hän on pelissä aina " "avattuna. Muutoksia ei tarvita!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Jatka suoritusta" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Pidä ikkuna päällimmäisenä" @@ -7860,16 +7920,16 @@ msgstr "Näppäimet" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Poista pelaaja" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korea" @@ -7890,7 +7950,7 @@ msgstr "L&ataa ROM..." msgid "L-Analog" msgstr "L-analogi" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR-tallennus" @@ -7898,7 +7958,11 @@ msgstr "LR-tallennus" msgid "Label" msgstr "Nimi" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Edellinen arvo" @@ -7912,23 +7976,23 @@ msgstr "Viimeksi sijoitettu:" msgid "Last reset:" msgstr "Viimeksi nollattu:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Viive:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Viive: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Viiv: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Viiv: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Viive: ~80 ms" @@ -7936,7 +8000,7 @@ msgstr "Viive: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Näiden julkaisuiden käynnistäminen voi myös korjata ongelmat." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Tulostauluko" @@ -7944,7 +8008,7 @@ msgstr "Tulostauluko" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7955,7 +8019,7 @@ msgstr "Vasen" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Vasen sauva" @@ -8032,11 +8096,11 @@ msgstr "Valo" msgid "Limit Chunked Upload Speed:" msgstr "Rajoita lohkotun lähetyksen nopeutta:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Listan sarakkeet" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Listanäkymä" @@ -8045,30 +8109,30 @@ msgid "Listening" msgstr "Kuunnellaan" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Lataa" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Lataa &huono karttatiedosto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Lataa &muu karttatiedosto..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "Lataa haaravahti &tiedostosta..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Lataa haaravahtitiedosto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Lataa muokatut tekstuurit" @@ -8076,11 +8140,11 @@ msgstr "Lataa muokatut tekstuurit" msgid "Load File" msgstr "Avaa tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Lataa GameCube-päävalikko" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Lataa vain isäntäkoneen tallennustiedostot" @@ -8186,23 +8250,23 @@ msgstr "Palauta tila 8" msgid "Load State Slot 9" msgstr "Palauta tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Palauta tila tiedostosta" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Palauta tila paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Käynnistä Wii-järjestelmävalikko %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Lataa ja kirjoita isäntäkoneen tallennustiedosto" @@ -8210,28 +8274,28 @@ msgstr "Lataa ja kirjoita isäntäkoneen tallennustiedosto" msgid "Load from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Palauta tila paikasta %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Lataa karttatiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Käynnistä vWii-järjestelmävalikko %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Lataa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Symbolit lähteestä '%1' ladattu" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8242,7 +8306,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8251,20 +8315,28 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Paikallinen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Lukitse hiiren osoitin paikoilleen" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Lukittu" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Loki" @@ -8273,19 +8345,19 @@ msgstr "Loki" msgid "Log Configuration" msgstr "Lokiasetukset" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Kirjaudu sisään" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Kirjoita JIT:n käskykattavuus lokiin" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Kirjaudu ulo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Kirjoita hahmonnusaika lokitiedostoon" @@ -8297,11 +8369,11 @@ msgstr "Lokityypit" msgid "Logger Outputs" msgstr "Lokin ulostulot" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Sisäänkirjautuminen epäonnistui" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8312,20 +8384,20 @@ msgstr "" "mittaamiseen.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Silmukka" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Yhteys nettipelipalvelimeen menetettiin..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Matala" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Matalin" @@ -8337,7 +8409,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "KUOLEVA" @@ -8385,7 +8457,7 @@ msgstr "Varmista, että paikassa %1 on Skylander-hahmo!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Tekijä" @@ -8407,16 +8479,16 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Hallitse NAND-muistia" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Manuaalinen tekstuuriotanta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Ohjainmääritys" @@ -8428,11 +8500,11 @@ msgstr "Peite-ROM" msgid "Match Found" msgstr "Tulos löytyi" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Korkein puskurin arvo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Puskurin korkein arvo vaihtui arvoon %1" @@ -8441,7 +8513,7 @@ msgstr "Puskurin korkein arvo vaihtui arvoon %1" msgid "Maximum tilt angle." msgstr "Suurin kallistuskulma." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" "Saattaa aiheuttaa hidastumisongelmia Wii-valikossa ja joissain peleissä." @@ -8463,7 +8535,7 @@ msgstr "Muistin keskeytyskohta" msgid "Memory Card" msgstr "Muistikortti" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Muistikorttien hallinta" @@ -8494,7 +8566,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "MemoryCard: Write-kutsu tapahtui virheellisellä kohdeosoitteella ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8512,7 +8584,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofoni" @@ -8521,17 +8593,17 @@ msgstr "Mikrofoni" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Sekalaiset" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Sekalaiset asetukset" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" -msgstr "" +msgstr "Sekalaiset käskyt" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8543,7 +8615,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Ristiriita sisäisissä tietorakenteissa." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8563,14 +8635,14 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Modeemisovitin (tap-palvelin)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Muunnin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8588,10 +8660,10 @@ msgstr "Muokkaa paikkaa" #. i18n: %1 is a name #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" -msgstr "" +msgstr "Muokataan Skylanderia: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Löydetyt moduulit: %1" @@ -8599,7 +8671,7 @@ msgstr "Löydetyt moduulit: %1" msgid "Money:" msgstr "Raha:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8611,11 +8683,11 @@ msgstr "Monoskooppiset varjot" msgid "Monospaced Font" msgstr "Tasalevyinen fontti" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Liikesyöte" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Liikesimulaatio" @@ -8624,25 +8696,10 @@ msgstr "Liikesimulaatio" msgid "Motor" msgstr "Moottori" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Hiiren osoittimen näkyvyys" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" -"Hiiren osoitin katoaa näkyvistä epäaktiivisuuden jälkeen ja tulee taas " -"näkyviin hiiren liikkuessa." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Hiiren osoite on aina näkyvissä." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "Hiiren osoite ei ole koskaan näkyvissä pelin käynnissä ollessa." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8653,7 +8710,7 @@ msgstr "Liiku" msgid "Movie" msgstr "Nauhoitus" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8661,9 +8718,9 @@ msgstr "" "Nauhoitus {0} kertoo alkaneensa tilantallennuksesta, mutta tilaa {1} ei ole " "olemassa. Nauhoitus mitä todennäköisimmin ei toimi oikein!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "AR-koodien luonnissa tapahtui useita virheitä." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -8674,10 +8731,10 @@ msgstr "Kerroin" msgid "N&o to All" msgstr "E&i kaikkiin" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-tarkistus" @@ -8686,8 +8743,8 @@ msgstr "NAND-tarkistus" msgid "NKit Warning" msgstr "NKit-varoitus" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8696,7 +8753,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8719,8 +8776,8 @@ msgstr "" "

Ellet ole varma, jätä asetus arvoon 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8763,7 +8820,7 @@ msgstr "Alkuperäinen (640x528)" msgid "Native GCI File" msgstr "Alkuperäinen GCI-tiedosto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "Nettipeli" @@ -8779,7 +8836,7 @@ msgstr "Nettipeliasetukset" msgid "Netherlands" msgstr "Alankomaat" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8788,7 +8845,7 @@ msgstr "" "nettipelin aikana luodut ja muutetut tallennustiedostot pysyvät isäntäkoneen " "paikallisissa tallenustiedostoissa." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8798,7 +8855,7 @@ msgstr "" "nettipelin aikana luodut ja muutetut tallennustiedostot hävitetään istunnon " "lopuksi." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8807,7 +8864,7 @@ msgstr "" "aikana luodut tallennustiedostot hävitetään lopuksi." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Verkko" @@ -8815,16 +8872,16 @@ msgstr "Verkko" msgid "Network dump format:" msgstr "Verkkovedosten muoto:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Ei koskaan" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Älä koskaan päivitä automaattisesti" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Uusi" @@ -8835,11 +8892,11 @@ msgstr "Uusi keskeytyskohta" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:706 msgid "New File" -msgstr "" +msgstr "Uusi tiedosto" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:708 msgid "New File (%1)" -msgstr "" +msgstr "Uusi tiedosto (%1)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123 msgid "New Search" @@ -8849,7 +8906,7 @@ msgstr "Uusi haku" msgid "New Tag..." msgstr "Uusi tunniste..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Uusi identiteetti luotu." @@ -8866,7 +8923,7 @@ msgstr "Uusi tunniste" msgid "Next Game Profile" msgstr "Uusi peliprofiili" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Seuraava tulos" @@ -8912,7 +8969,7 @@ msgstr "Ei pakkausta" msgid "No Match" msgstr "Ei hakutuloksia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Ei tallennustiedostoja" @@ -8920,12 +8977,12 @@ msgstr "Ei tallennustiedostoja" msgid "No data to modify!" msgstr "Ei muokattavaa dataa!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Ei kuvausta saatavilla" @@ -8937,7 +8994,7 @@ msgstr "Ei virheitä." msgid "No extension selected." msgstr "Ei valittua lisäosaa." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Ei ladattua/nauhoitettua tiedostoa." @@ -8945,7 +9002,7 @@ msgstr "Ei ladattua/nauhoitettua tiedostoa." msgid "No game is running." msgstr "Peli ei ole käynnissä." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Peli ei ole käynnissä." @@ -8956,13 +9013,13 @@ msgstr "Grafiikkamodia ei ole valittu" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:59 #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:107 msgid "No input" -msgstr "" +msgstr "Ei syötettä" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Ongelmia ei löytynyt." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Sopivaa peliä ei löytynyt" @@ -8988,7 +9045,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Peliasetukselle '{0}' ei löydy profiileja" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Nauhoitusta ei ole ladattu." @@ -9007,10 +9064,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Ei mikään" @@ -9022,7 +9079,7 @@ msgstr "Pohjois-Amerikka" msgid "Not Set" msgstr "Ei asetettu" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Kaikilla pelaajilla ei ole peliä. Haluatko todella aloittaa?" @@ -9046,7 +9103,7 @@ msgstr "" "Kohdemuistikortilla ei ole riittävästi vapaita tiedostoja. Vähintään %n " "vapaa(ta) tiedosto(a) tarvitaan." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Ei löydy" @@ -9092,78 +9149,78 @@ msgstr "Ravistusten määrä sekunnissa." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Nunchukin kiihtyvyysanturi" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Nunchuk-painikkeet" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Nunchukin ohjaussauva" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Olio %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Kohteen 1 koko" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "Kohteen 1 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Kohteen 1 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Kohteen 2 koko" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "Kohteen 2 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Kohteen 2 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Kohteen 3 koko" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "Kohteen 3 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Kohteen 3 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Kohteen 4 koko" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "Kohteen 4 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Kohteen 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Olioväli" @@ -9184,11 +9241,11 @@ msgstr "Osoite-ero" msgid "On" msgstr "Päällä" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Liikkeen yhteydessä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9198,7 +9255,7 @@ msgstr "" "kulmapistevarjostimia pisteiden ja janojen laajentamiseen, tämä asetus " "valitsee kulmapistevarjostimen. Se voi vaikuttaa suorituskykyyn.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9212,8 +9269,19 @@ msgid "" "calls and conditional code paths that are only taken when an action is " "performed in the emulated software." msgstr "" +"Kun haaravahti on siirtynyt karsintatilaan, on aika karsia taulukossa " +"näkyviä ehdokkaita. Ehdokkaiden poistaminen perustuu tarkistuksiin siitä, " +"tuliko koodireitti suoritetuksi viime tarkistuksen jälkeen vai ei. On myös " +"mahdollista karsia ehdokkaita tarkistamalla, tuliko haarakäsky " +"ylikirjoitetuksi ensimmäisen osuman jälkeen vai ei. Voit suodattaa " +"ehdokkaita haaran tyypin ja ehdon sekä alku- ja loppuosoitteen sekä " +"osoitteita vastaavien symbolien mukaan.\n" +"\n" +"Riittävän monen vaiheen ja kokeilun tuloksena haaravahti auttaa löytämään " +"funktiokutsuja ja ehdollisia koodireittejä, jotka suoritetaan vain silloin, " +"kun tietty toiminto tapahtuu emuloidussa ohjelmistossa." -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Verkko-&ohje" @@ -9221,7 +9289,7 @@ msgstr "Verkko-&ohje" msgid "Only Show Collection" msgstr "Näytä vain kokoelma" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9229,7 +9297,7 @@ msgstr "" "Lisää vain symbolit, jotka alkavat näin:\n" "(Jätä tyhjäksi saadaksesi kaikki symbolit)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9248,7 +9316,7 @@ msgstr "Avaa" msgid "Open &Containing Folder" msgstr "Avaa &kansio" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Avaa &käyttäjäkansio" @@ -9257,7 +9325,7 @@ msgstr "Avaa &käyttäjäkansio" msgid "Open Directory..." msgstr "Avaa hakemisto..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Avaa FIFO-loki" @@ -9323,34 +9391,34 @@ msgstr "Oranssi" msgid "Orbital" msgstr "Kiertävä" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" -msgstr "" +msgstr "Alku" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" -msgstr "" +msgstr "Alku enintään" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" -msgstr "" +msgstr "Alku vähintään" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" -msgstr "" +msgstr "Alkusymboli" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" -msgstr "" +msgstr "Alku ja loppu" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9365,17 +9433,17 @@ msgstr "Muu osio (%1):" msgid "Other State Hotkeys" msgstr "Muut tilojen pikanäppäimet" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Muu tilojen hallinta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Muu peli..." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:446 msgid "Output" -msgstr "" +msgstr "Tulos" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" @@ -9385,16 +9453,16 @@ msgstr "Kuvan uudelleenotanta" msgid "Output Resampling:" msgstr "Kuvan uudelleenotanta:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Ylikirjoitettu" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Toista nauhoitus..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9407,11 +9475,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG:n pakkaustaso" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG:n pakkaustaso:" @@ -9423,7 +9491,7 @@ msgstr "PNG-kuvatiedosto (*.png);; Kaikki tiedostot (*)" msgid "PPC Size" msgstr "PPC-koko" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs. isäntäkone" @@ -9457,7 +9525,7 @@ msgstr "Passiivinen" msgid "Passthrough a Bluetooth adapter" msgstr "Bluetooth-sovittimen läpipäästö" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Salasana" @@ -9495,15 +9563,15 @@ msgstr "Polut" msgid "Pause" msgstr "Keskeytä" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" -msgstr "" +msgstr "Keskeytä haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Keskeytä nauhoituksen loputtua" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Keskeytä, kun ikkuna ei ole kohdistettuna" @@ -9524,6 +9592,12 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9543,7 +9617,7 @@ msgstr "Korkein nopeus ulospäin suuntautuville heilahduksille." msgid "Per-Pixel Lighting" msgstr "Kuvapistekohtainen valaistus" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Tee verkossa järjestelmäpäivitys" @@ -9551,15 +9625,15 @@ msgstr "Tee verkossa järjestelmäpäivitys" msgid "Perform System Update" msgstr "Tee järjestelmäpäivitys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Suorituskyvyn otosikkuna (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Suorituskyvyn otosikkuna (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Suorituskykytilastot" @@ -9577,11 +9651,11 @@ msgstr "Fyysinen osoiteavaruus" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Valitse virheenjäljitysfontti" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Vasteaika" @@ -9594,7 +9668,7 @@ msgid "Pitch Up" msgstr "Nyökkäyskulma ylös" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Alusta" @@ -9602,7 +9676,7 @@ msgstr "Alusta" msgid "Play" msgstr "Pelaa" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Toista / nauhoita" @@ -9614,40 +9688,40 @@ msgstr "Toista nauhoitus" msgid "Play Set/Power Disc" msgstr "Lelusarja/Voimakiekko" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Toiston asetukset" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Ensimmäinen pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Ensimmäisen pelaajan ensimmäinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Ensimmäisen pelaajan toinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Toinen pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Toisen pelaajan ensimmäinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Toisen pelaajan toinen kyky" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Pelaajat" @@ -9666,7 +9740,7 @@ msgstr "" "Valitse SyncOnSkipIdle-asetus arvoon True! Asetus ei ole tällä hetkellä " "käytössä, mikä altistaa kyseiselle ongelmalle." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "Aloita peli, ennen kuin teet haun standardimuistialueilla." @@ -9679,10 +9753,10 @@ msgstr "Osoitus" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Osoitin (läpipäästö)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Portti %1" @@ -9699,7 +9773,7 @@ msgstr "Portti:" msgid "Portal Slots" msgstr "Portaalipaikat" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mahdollinen desynkronoituminen havaittu: %1 on voinut desynkronoitua " @@ -9717,26 +9791,34 @@ msgstr "Jälkikäsittelyefekti:" msgid "Post-Processing Shader Configuration" msgstr "Jälkikäsittelyvarjostimen asetukset" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Käytä kulmapistevarjostinta pisteiden ja viivojen laajentamiseen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Esihae muokatut tekstuurit" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" "Esiaikainen nauhoituksen loppu PlayController-järjestelmässä. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" "Esiaikainen nauhoituksen loppu PlayWiimote-järjestelmässä. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Esiaikainen nauhoituksen loppu PlayWiimote-järjestelmässä. {0} + {1}" @@ -9761,7 +9843,7 @@ msgstr "Paina synkronointipainiketta" msgid "Pressure" msgstr "Paine" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9781,7 +9863,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Edellinen peliprofiili" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Edellinen hakutulos" @@ -9792,7 +9874,7 @@ msgstr "Edellinen profiili" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitiivi %1" @@ -9829,7 +9911,7 @@ msgstr "" "Keskisuuria ongelmia löytyi. Koko peli tai osa siitä ei välttämättä toimi " "oikein" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profiili" @@ -9838,23 +9920,29 @@ msgstr "Profiili" msgid "Program Counter" msgstr "Ohjelmalaskuri" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Edistyminen" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Julkinen" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Tyhjennä peliluettelon välimuisti" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Aseta IPL-ROMit User/GC-kansioon" @@ -9874,18 +9962,18 @@ msgstr "QoS-tekniikan käynnistäminen ei onnistunut." msgid "Quality of Service (QoS) was successfully enabled." msgstr "QoS-tekniikan käynnistys onnistui." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "DPLII-purkamisen laatu. Ääniviive kasvaa laadun myötä." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Kysymys" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Poistu" @@ -9902,19 +9990,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-analogi" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "VALMIS" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO-moduulit" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO:n automaattinen havainta" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "KÄYNNISSÄ" @@ -9935,24 +10023,25 @@ msgstr "Alueen loppu:" msgid "Range Start: " msgstr "Alueen alku:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Taso %1" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:409 msgid "Raw" -msgstr "" +msgstr "Raaka" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Raaka sisäinen kuvatarkkuus" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Ko&rvaa käsky" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Luku" @@ -9991,33 +10080,33 @@ msgstr "Oikea Wii Remote" msgid "Received invalid Wii Remote data from Netplay." msgstr "Nettipelistä saapui virheellistä Wii Remote -dataa." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" -msgstr "" +msgstr "Viimeaikaiset osumat" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" msgstr "Keskitä" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Nauhoita" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Nauhoita syötteitä" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Nauhoitus" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Nauhoituksen asetukset" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Nauhoitus käynnissä..." @@ -10058,7 +10147,7 @@ msgstr "Redump.org-tila:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10089,7 +10178,7 @@ msgid "Refreshing..." msgstr "Päivittyy..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Alue" @@ -10110,7 +10199,11 @@ msgstr "Suhteellinen syöte" msgid "Relative Input Hold" msgstr "Suhteellisen syötteen pito" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Muistuta myöhemmin" @@ -10118,7 +10211,7 @@ msgstr "Muistuta myöhemmin" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Poista" @@ -10149,20 +10242,20 @@ msgstr "" "(ellet myös pakkaa ISO-tiedostoa pakattuun muotoon, kuten ZIP, jälkikäteen). " "Haluatko silti jatkaa?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Uudelleennimeä symboli" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Hahmonnusikkuna" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Hahmonna pääikkunaan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10178,10 +10271,16 @@ msgstr "Raportti: GCIFolder kirjoittaa varaamattomaan lohkoon {0:#x}" msgid "Request to Join Your Party" msgstr "Pyyntö liittyä ryhmääsi" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10191,7 +10290,7 @@ msgstr "Nollaa" msgid "Reset All" msgstr "Nollaa kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Nollaa ohittaen paniikkikäsittelijä" @@ -10223,9 +10322,9 @@ msgstr "Palauta näkymä" msgid "Reset all saved Wii Remote pairings" msgstr "Poista kaikki tallennetut Wii Remote -laiteparit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" -msgstr "" +msgstr "Kuvatarkkuuden tyyppi:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10235,7 +10334,7 @@ msgstr "Resurssipakettien hallinta" msgid "Resource Pack Path:" msgstr "Resurssipakettien polku:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Uudelleenkäynnistys tarvitaan" @@ -10243,11 +10342,11 @@ msgstr "Uudelleenkäynnistys tarvitaan" msgid "Restore Defaults" msgstr "Palauta oletukset" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Palauta käsky" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Yritä uudelleen" @@ -10256,7 +10355,7 @@ msgstr "Yritä uudelleen" msgid "Return Speed" msgstr "Palausnopeus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revisi" @@ -10268,7 +10367,7 @@ msgstr "Revisio: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10279,7 +10378,7 @@ msgstr "Oikea" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Oikea ohjaussauva" @@ -10315,11 +10414,11 @@ msgstr "Kallistumakulma vasemmalle" msgid "Roll Right" msgstr "Kallistumakulma oikealle" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Huonetunniste" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Kääntö" @@ -10343,27 +10442,31 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10376,7 +10479,7 @@ msgstr "" msgid "Rumble" msgstr "Tärinä" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Jatka &tähän" @@ -10384,15 +10487,15 @@ msgstr "Jatka &tähän" msgid "Run GBA Cores in Dedicated Threads" msgstr "Suorita GBA-ytimet omissa säikeissään" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Suorita kohtaan asti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Suorita kohtaan asti (ohittaen keskeytyskohdat)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Suorita osumaan asti (ohittaen keskeytyskohdat)" @@ -10400,23 +10503,23 @@ msgstr "Suorita osumaan asti (ohittaen keskeytyskohdat)" msgid "Russia" msgstr "Venäjä" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-kortti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD-kortin tiedostokoko:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-korttikuva (*.raw);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD-kortin polku:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD-korttiasetukset" @@ -10424,7 +10527,7 @@ msgstr "SD-korttiasetukset" msgid "SD Root:" msgstr "SD-juuri:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "SD-synkronointikansio:" @@ -10459,11 +10562,11 @@ msgstr "SSL-konteksti" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Ta&llenna koodi" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Tal&lenna tila" @@ -10473,9 +10576,9 @@ msgid "Safe" msgstr "Varma" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10485,25 +10588,25 @@ msgstr "Tallenna" msgid "Save All" msgstr "Tallenna kaikki" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "Tallenna haaravahti &nimellä..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Tallenna haaravahtitiedosto" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Tallennustiedostojen vienti" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Tallenna FIFO-loki" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Tallenna tiedosto" @@ -10517,11 +10620,11 @@ msgstr "Pelin tallennustiedosto" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Pelien tallennustiedostot (*.sav);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Tallennustiedostojen tuonti" @@ -10533,7 +10636,7 @@ msgstr "Tallenna tila vanhimpaan" msgid "Save Preset" msgstr "Tallenna esiasetukset" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Tallenna nauhoitustiedosto nimellä" @@ -10583,23 +10686,23 @@ msgstr "Tallenna tila 8" msgid "Save State Slot 9" msgstr "Tallenna tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Tallenna tila tiedostoon" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Tallenna tilan vanhimpaan paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Tallenna tila paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Tallenna symbolikartta &nimellä..." @@ -10607,7 +10710,7 @@ msgstr "Tallenna symbolikartta &nimellä..." msgid "Save Texture Cache to State" msgstr "Tallenna tekstuurivälimuisti tilan mukana" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Tallenna ja palauta tila" @@ -10619,11 +10722,11 @@ msgstr "Tallenna esiasetuksena..." msgid "Save as..." msgstr "Tallenna nimellä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Tallenna yhdistetty ulostulotiedosto nimellä" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10637,11 +10740,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Tallenna ROMin kanssa samaan hakemistoon" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Tallenna karttatiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Tallenna allekirjoitustiedosto" @@ -10649,11 +10752,11 @@ msgstr "Tallenna allekirjoitustiedosto" msgid "Save to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Tallenna tila paikkaan %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Tallenna..." @@ -10667,7 +10770,7 @@ msgstr "" msgid "Saves:" msgstr "Tallennustiedostot:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "Tallennustilan nauhoitus {0} on vioittunut, nauhoittaminen pysähtyy..." @@ -10684,8 +10787,8 @@ msgid "ScrShot" msgstr "Kuvakaappaus" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Haku" @@ -10694,7 +10797,7 @@ msgstr "Haku" msgid "Search Address" msgstr "Hae osoite" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Hae nykyinen olio" @@ -10714,7 +10817,7 @@ msgstr "" "Haku ei ole tällä hetkellä mahdollinen näennäisosoiteavaruudessa. Pelaa " "peliä hetken aikaa ja yritä uudelleen." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Etsi käskyä" @@ -10722,7 +10825,7 @@ msgstr "Etsi käskyä" msgid "Search games..." msgstr "Etsi pelejä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Etsi käsky" @@ -10758,34 +10861,36 @@ msgstr "Valitse" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" msgstr "" +"Valitse haaravahdin automaattisen tallennuksen tiedosto (jos haluat käyttää " +"käyttäjäkansiota, valitse \"Peruuta\")" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Valitse vedostiedostojen polku" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Valitse vientihakemisto" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Valitse hahmotiedosto" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Valitse GBA-BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Valitse GBA-ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Valitse GBA-tallennustiedostojen polku" @@ -10813,7 +10918,7 @@ msgstr "Valitse Skylander-kokoelma" msgid "Select Skylander File" msgstr "Valitse Skylander-tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Valitse paikka %1 - %2" @@ -10821,7 +10926,7 @@ msgstr "Valitse paikka %1 - %2" msgid "Select State" msgstr "Valitse tilatallennus" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Valitse tilatallennuksen paikka" @@ -10882,13 +10987,13 @@ msgstr "Valitse hakemisto" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Valitse tiedosto" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Valitse kansio, johon synkronoidaan SD-kortin kuva" @@ -10896,7 +11001,7 @@ msgstr "Valitse kansio, johon synkronoidaan SD-kortin kuva" msgid "Select a Game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Valitse SD-kortin levykuva" @@ -10908,7 +11013,7 @@ msgstr "Valitse tiedosto" msgid "Select a game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Valitse NAND-muistiin asennettava julkaisu" @@ -10916,11 +11021,11 @@ msgstr "Valitse NAND-muistiin asennettava julkaisu" msgid "Select e-Reader Cards" msgstr "Valitse e-Reader-kortti" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Valitse RSO-moduulin osoite" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Valitse toistettava nauhoitustiedosto" @@ -10928,12 +11033,12 @@ msgstr "Valitse toistettava nauhoitustiedosto" msgid "Select the Virtual SD Card Root" msgstr "Valitse virtuaalisen SD-kortin juuri" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Valitse avaintiedosto (OTP-/SEEPROM-vedos)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Valitse tallennustiedosto" @@ -10956,16 +11061,16 @@ msgstr "Valittua ohjainprofiilia ei ole olemassa" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Valittua peliä ei ole pelilistassa!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Valitun säikeen kutsupino" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Valitun säikeen konteksti" @@ -10985,7 +11090,7 @@ msgstr "" "Valitsee käytettävän laitteistosovittimen.

Ellet " "ole varma, valitse ensimmäinen vaihtoehto." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11003,6 +11108,23 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"Valitsee kehysvedosten (videoiden) ja kuvakaappausten keräämiseen " +"käytettävän tavan.
Jos pelin tai ikkunan kuvatarkkuus muuttuu " +"tallennuksen aikana, toiminto voi tuottaa useita videotiedostoja." +"
Huomaathan, että vedokset eivät huomioi värinkorjausta tai kuva-alueen " +"rajausta.

Ikkunan kuvatarkkuus: Käyttää ikkunan kuvatarkkuutta " +"(poislukien mahdolliset mustat palkit).
Tämä on yksinkertainen tekniikka, " +"joka vedostaa kuvan sellaisena kuin se näkyy.
Kuvasuhdekorjattu " +"sisäinen kuvatarkkuus: Käyttää sisäistä kuvatarkkuutta (XFB:n kokoa) ja " +"korjaa sen haluttuun kuvasuhteeseen sopivaksi.
Tekniikka vedostaa aina " +"valitulla sisäisellä kuvakoolla riippumatta siitä, millä tavoin kuva näkyy " +"käyttäjälle tallennuksen aikana.
Raaka sisäinen kuvatarkkuus: " +"Käyttää sisäistä kuvatarkkuuttaa (XFB:n kokoa) korjaamatta sen kuvasuhdetta." +"
Tekniikka tuottaa puhtaan vedoksen ilman välissä tehtyä " +"kuvasuhdekorjausta, jolloin käyttäjällä on paras mahdollisuus jatkokäsitellä " +"videota ulkoisissa videonmuokkausohjelmistoissa." +"

Ellet ole varma, valitse \"Kuvasuhdekorjattu " +"sisäinen kuvatarkkuus\"." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" @@ -11023,7 +11145,7 @@ msgstr "" "3D-tila, jota jotkin TV:t käyttävät.

Ellet ole " "varma, valitse Pois." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11044,8 +11166,26 @@ msgid "" "normal circumstances.

If unsure, select Auto." msgstr "" +"Valitsee pelin näyttämiseen käytettävän kuvasuhteen.

Alkuperäisten " +"laitteiden näyttämä kuvasuhde vaihteli pelikohtaisesti ja oli vain harvoin " +"täsmälleen 4:3 tai 16:9. Useimmiten osa kuvasta leikkautui pois TV:n " +"reunoilla tai kuva ei täyttänyt koko ruutua. Oletuksena Dolphin näyttää koko " +"kuvan muuntamatta sen mittasuhteita, ja siten on tavallista, ettei kuva " +"täytä koko näyttöä.

Automaattinen: Jäljittelee TV:tä, jonka " +"kuvasuhde on joko 4:3 tai 16:9, riippuen siitä, millaista TV:tä varten pelin " +"kuva vaikuttaa olevan räätälöity.

Pakota 16:9: Jäljittelee TV:" +"tä, jonka kuvasuhde on 16:9 (laajakuva).

Pakota 4:3: " +"Jäljittelee TV:tä, jonka kuvasuhde on 4:3.

Venytä ikkunaan: " +"Venyttää kuvan ikkunan kokoon. Tällöin kuvan mittasuhteet voivat vääristyä." +"

Oma: Jäljittelee TV:tä on kuvasuhde on annettu erikseen. " +"Valinta on lähinnä tarkoitettu käytettäväksi yhdessä kuvasuhdetta muuttavien " +"huijauskoodien/muokkausten kanssa.

Oma (venytä): Toimii lähes " +"samoin kuin 'Oma', mutta venyttää kuvan kuvasuhteeseen, mikä voi vääristää " +"kuvan mittasuhteet. Asetusta ei yleensä tarvitse käyttää." +"

Ellet ole varma, valitse Automaattinen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11062,11 +11202,11 @@ msgstr "" "ja valita se, joka on vähiten ongelmallinen.

Ellet " "ole varma, valitse OpenGL." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Lähetä" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Liikkeentunnistimen paikka:" @@ -11098,6 +11238,10 @@ msgstr "Palvelin kieltäytyi läpikulkuyrityksestä" msgid "Set &Value" msgstr "Aseta &arvo" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11115,23 +11259,23 @@ msgstr "Aseta muistikorttitiedosto korttipaikkaan A" msgid "Set memory card file for Slot B" msgstr "Aseta muistikorttitiedosto korttipaikkaan B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Aseta symbolin &loppuosoite" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Aseta symbolin &koko" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Aseta symbolin loppuosoite" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Aseta symbolin koko (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11141,11 +11285,19 @@ msgstr "" "peleille.\n" "Asetus ei välttämättä toimi kaikille peleille.." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Asettaa Wiin järjestelmäkielen." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11153,6 +11305,13 @@ msgstr "" "Asettaa viiveen millisekunneissa. Korkeammat arvot voivat vähentään äänen " "pätkintää. Asetus toimii vain joillain sisäisillä järjestelmillä." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11161,13 +11320,13 @@ msgstr "" "Järjestää haun käyttäen tavallisia MEM1- ja (Wii-konsolilla) MEM2-alueita " "näennäisosoiteavaruudessa. Tämä toimii suurimmalle osalle peleistä." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Asetukset" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: settings.txt-tiedoston luonti epäonnistui" @@ -11175,7 +11334,7 @@ msgstr "SetupWiiMemory: settings.txt-tiedoston luonti epäonnistui" msgid "Severity" msgstr "Vakavuus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Varjostinten kääntäminen" @@ -11197,32 +11356,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen-ohjain" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Näytä prosentuaalinen nopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Näytä &loki" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Näytä &työkalupalkki" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Näytä aktiivinen julkaisu ikkunan otsikossa" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Näytä kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Näytä Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Näytä peli Discordissa" @@ -11231,7 +11390,7 @@ msgstr "Näytä peli Discordissa" msgid "Show Disabled Codes First" msgstr "Näytä käytöstä poistetut koodit ensin" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Näytä ELF/DOL" @@ -11240,31 +11399,31 @@ msgstr "Näytä ELF/DOL" msgid "Show Enabled Codes First" msgstr "Näytä käytössä olevat koodit ensin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Näytä kehysnopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Näytä kehyslaskuri" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Näytä kehysajat" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Näytä Ranska" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Näytä GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Näytä Saksa" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Näytä golf-tilan kerros" @@ -11272,23 +11431,23 @@ msgstr "Näytä golf-tilan kerros" msgid "Show Infinity Base" msgstr "Näytä Infinity-alusta" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Näytä syötteet" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Näytä Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Näytä Japani" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Näytä Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Näytä viivelaskuri" @@ -11296,27 +11455,27 @@ msgstr "Näytä viivelaskuri" msgid "Show Language:" msgstr "Kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Näytä lokin &asetukset" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Näytä nettipelin viestit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Näytä nettipelin vasteaika" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Näytä Alankomaat" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Näytä ruudulle tulevat näyttöviestit" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Näytä PAL" @@ -11325,27 +11484,27 @@ msgstr "Näytä PAL" msgid "Show PC" msgstr "Näytä ohjelmalaskuri" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Näytä suorituskykykaaviot" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Näytä alustat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" -msgstr "" +msgstr "Näytä projektiotilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Näytä alueet" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Näytä uudelleennauhoituslasksuri" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Näytä Venäjä" @@ -11353,72 +11512,72 @@ msgstr "Näytä Venäjä" msgid "Show Skylanders Portal" msgstr "Näytä Skylanders-portaali" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Näytä Espanja" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Näytä nopeusvärit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Näytä tilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Näytä järjestelmän kellonaika" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Näytä Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Näytä USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Näytä tuntematon" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Näytä VBlank-ajat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Näytä VPS-laskuri" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Näytä WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Näytä Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Näytä maailma" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Näytä &muistissa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Näytä koodissa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Näytä muistissa" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Näytä koodissa" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Näytä muistissa" @@ -11426,11 +11585,19 @@ msgstr "Näytä muistissa" msgid "Show in server browser" msgstr "Näytä palvelinselaimessa" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Näytä kohde muistiss&a" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11439,7 +11606,7 @@ msgstr "" "varoitukset nettipelin aikana.

Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11459,7 +11633,25 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11469,7 +11661,7 @@ msgstr "" "millisekunteina, ja keskihajonnan.

Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11479,7 +11671,7 @@ msgstr "" "ja keskihajonnan.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11489,7 +11681,7 @@ msgstr "" "sulavuuden mittana.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Ellet ole varma, jätä " "tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11508,13 +11700,15 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"Näyttää erinäisiä projektiotilastoa.

Ellet ole " +"varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11538,7 +11732,7 @@ msgstr "Vaakasuuntaisuus päälle/pois" msgid "Sideways Wii Remote" msgstr "Vaakasuuntainen Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Allekirjoitustietokanta" @@ -11557,12 +11751,12 @@ msgstr "Etumerkillinen 32-bittinen" msgid "Signed 8" msgstr "Etumerkillinen 8-bittinen" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Etumerkillinen kokonaisluku" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Yksinkertaistettu kiina" @@ -11579,7 +11773,7 @@ msgstr "Kuusiakselinen" msgid "Size" msgstr "Koko" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11591,7 +11785,7 @@ msgstr "" msgid "Skip" msgstr "Ohita" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Ohita piirto" @@ -11646,6 +11840,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Kaikki tiedostot (*)" @@ -11720,7 +11917,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Järjestä aakkosjärjestykseen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Ääni:" @@ -11734,7 +11931,7 @@ msgstr "Espanja" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Espanja" @@ -11742,19 +11939,19 @@ msgstr "Espanja" msgid "Speaker Pan" msgstr "Kaiuttimien tasapaino" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Kaiuttimen äänenvoimakkuus:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Erikoistunut (oletus)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Erityinen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11787,11 +11984,11 @@ msgstr "Nopeus" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Pinon loppu" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Pinon alku" @@ -11799,25 +11996,25 @@ msgstr "Pinon alku" msgid "Standard Controller" msgstr "Vakio-ohjain" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Aloita" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Aloita &nettipeli..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" -msgstr "" +msgstr "Aloita haaravahti" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Aloita uusi huijauskoodihaku" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Aloita syötteen nauhoitus" @@ -11825,7 +12022,7 @@ msgstr "Aloita syötteen nauhoitus" msgid "Start Recording" msgstr "Aloita nauhoittaminen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Aloita koko ruudun tilassa" @@ -11837,14 +12034,14 @@ msgstr "Aloita Riivolution-muutoksin" msgid "Start with Riivolution Patches..." msgstr "Aloita Riivolution-muutoksin..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Peli alkoi" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Tila" @@ -11876,19 +12073,19 @@ msgstr "Jatka loppuun" msgid "Step Over" msgstr "Jätä väliin" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Loppuun jatkaminen onnistui!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Loppuun jatkaminen aikakatkaistiin!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Väliin jättäminen käynnissä..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Suoritus onnistui!" @@ -11897,7 +12094,7 @@ msgstr "Suoritus onnistui!" msgid "Stepping" msgstr "Askellus" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stereo" @@ -11926,16 +12123,16 @@ msgid "Stick" msgstr "Ohjaussauva" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Lopeta" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Lopeta syötteen toisto/nauhoitus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Peli päättyi" @@ -11977,11 +12174,11 @@ msgstr "" "(ja tekstuuriin)

Ellet ole varma, jätä tämä " "valituksi." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Venytä ikkunaan" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Ehdoton asetusten synkronointi" @@ -11995,7 +12192,11 @@ msgstr "Merkkijono" msgid "Strum" msgstr "Rämpytys" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Tyyli:" @@ -12006,18 +12207,18 @@ msgstr "Tyyli:" msgid "Stylus" msgstr "Osoitinkynä" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Onnistui" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Nettipeli-indeksiin lisäys onnistui" @@ -12027,7 +12228,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n levykuvan muunto onnistui." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Määrityksen '%1' poisto onnistui." @@ -12040,24 +12241,24 @@ msgstr "Tallennustiedostoista %n:n %1:stä vienti onnistui." msgid "Successfully exported save files" msgstr "Tallennustiedostojen vienti onnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista onnistui" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Tiedoston purku onnistui." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Järjestelmädatan vienti onnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Tallennustiedoston tuonti onnistui." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Julkaisun asentaminen NAND-muistiin onnistui." @@ -12080,16 +12281,16 @@ msgstr "Tuki" msgid "Supported file formats" msgstr "Yhteensopivat tiedostomuodot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Tukee SD- ja SDHC-muotoja. Oletuskoko on 128 Mt." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround-ääni" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Keskeytynyt" @@ -12136,17 +12337,17 @@ msgstr "Vaihda B:hen" msgid "Symbol" msgstr "Symboli" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Symbolin (%1) loppuosoite:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Symbolin nimi:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symbolit" @@ -12154,7 +12355,7 @@ msgstr "Symbolit" msgid "Sync" msgstr "Synkronoi" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Synkronoi AR-/Gecko-koodit" @@ -12175,7 +12376,7 @@ msgstr "" "estämään satunnaisia jumiutumisia kaksiydin-tilassa. (PÄÄLLÄ = Yhteensopiva, " "POIS = Nopea)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12196,24 +12397,24 @@ msgid "Synchronizing save data..." msgstr "Tallennustiedostojen synkronointi käynnissä..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Järjestelmän kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS-syöte" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS-työkalut" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Tunnisteet" @@ -12223,7 +12424,7 @@ msgstr "Tunnisteet" msgid "Taiko Drum" msgstr "Taiko-rumpu" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Häntä" @@ -12231,7 +12432,7 @@ msgstr "Häntä" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Ota kuvakaappaus" @@ -12239,7 +12440,7 @@ msgstr "Ota kuvakaappaus" msgid "Target address range is invalid." msgstr "Kohdeosoitealue on virheellinen." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12257,11 +12458,11 @@ msgstr "Tekniikka" msgid "Test" msgstr "Testi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Tekstitiedosto (*.txt);;Kaikki tiedostot (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12272,7 +12473,7 @@ msgstr "Tekstuurivälimuisti" msgid "Texture Cache Accuracy" msgstr "Tekstuurivälimuistin tarkkuus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Tekstuurien vedostaminen" @@ -12284,7 +12485,7 @@ msgstr "Tekstuurien suodattaminen" msgid "Texture Filtering:" msgstr "Tekstuurien suodattaminen:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Tekstuurimuodon kerros" @@ -12328,7 +12529,7 @@ msgstr "IPL-tiedosto ei ole tunnettu hyvä vedos. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Masterpiece-osiot puuttuvat." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12336,7 +12537,7 @@ msgstr "" "NAND-muistin korjaus epäonnistui. On suositeltavaa, että teet varmuuskopion " "nykyisestä datasta ja aloitat uudelleen tyhjällä NAND-muistilla." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND-muistin korjaus onnistui." @@ -12352,9 +12553,9 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "Tämän Skylanderin omistaman rahan määrä, välillä 0–65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12400,6 +12601,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"Oletusarvo \"%1\" toimii, kun käytössä on paikallinen tap-palvelinta ja " +"newserv. Voit myös antaa verkko-osoitteen (osoite:portti), jos haluat " +"yhdistää muihin tap-palvelimiin." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12411,7 +12615,7 @@ msgstr "" "\n" "Valitse toinen polku kohteelle \"%1\"" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12423,7 +12627,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Levyn lukeminen epäonnistui (kohdassa {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Laitettavaa levyä ei löytynyt." @@ -12517,7 +12721,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Tiedostojärjestelmä on virheellinen, tai sen luku epäonnistui." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12562,7 +12766,7 @@ msgstr "" "Pelin alue ei vastaa konsolisi aluetta. Järjestelmävalikon ongelmien " "välttämiseksi emuloitua konsolia ei voi päivittää tällä levyllä." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12589,6 +12793,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"Tämän Skylanderin sankaritaso, välillä 0–100. Valinta ilmenee vain pelissä " +"Skylanders: Spyro's Adventures." #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12629,7 +12835,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Tämän Skylanderin lempinimi, korkeintaan 15 merkkiä" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12637,12 +12843,12 @@ msgstr "" "Muutoksia tiedostossa %1 ei ole tarkoitettu valitulle pelille tai " "pelirevisiolle." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Profiilia '%1' ei ole olemassa" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "Nauhoitettu peli ({0}) ei ole sama kuin valittu peli ({1})" @@ -12667,7 +12873,7 @@ msgstr "" "Samaa tiedostoa ei voi käyttää useissa paikoissa; se on jo käytössä paikassa " "%1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12708,7 +12914,7 @@ msgstr "Annettu yhteisavaimen indeksi on {0}, kun sen tulisi olla {1}." msgid "The specified file \"{0}\" does not exist" msgstr "Annettua tiedostoa \"{0}\" ei ole olemassa" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12771,7 +12977,7 @@ msgstr "Päivitysosio puuttuu." msgid "The update partition is not at its normal position." msgstr "Päivitysosio ei ole tavallisella paikallaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12795,6 +13001,10 @@ msgstr "Osion {0} allekirjoitus on virheellinen." msgid "The {0} partition is not properly aligned." msgstr "Osion {0} kohdistus on virheellinen." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Ensimmäisessä osiotaulukossa on liian monta osiota." @@ -12805,11 +13015,14 @@ msgid "" "\n" "Do you want to save before closing?" msgstr "" +"Kohteessa \"%1\" on tallentamattomia muutoksia.\n" +"\n" +"Haluatko tallentaa ne ennen sulkemista?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" -msgstr "" +msgstr "Ei mitään tallennettavaa!" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -12862,11 +13075,11 @@ msgstr "Tällaista Skylanderia ei voi vielä muokata!" msgid "This USB device is already whitelisted." msgstr "Tämä USB-laite on jo hyväksyttyjen listalla." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Tätä WAD-tiedostoa ei voida käynnistää." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Tämä WAD-tiedosto on virheellinen." @@ -12886,7 +13099,7 @@ msgstr "" "Tätä Dolphinin koontiversiota ei ole tehtyy suorittimellesi.\n" "Käytä Dolphinin ARM64-versiota saadaksesi paremman kokemuksen." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Tätä ei voi kumota!" @@ -12959,7 +13172,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:38 msgid "This feature is disabled in hardcore mode." -msgstr "" +msgstr "Tämä ominaisuus ei ole saatavilla hardcore-tilassa." #: Source/Core/DiscIO/NANDImporter.cpp:116 msgid "This file does not contain a valid Wii filesystem." @@ -13012,9 +13225,9 @@ msgstr "" msgid "This is a good dump." msgstr "Tämä vedos on hyvä." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Ominaisuus vaikuttaa vain emuloidun ohjelmiston alustukseen." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13038,7 +13251,7 @@ msgstr "" "Tätä ohjelmistoa ei tule käyttää pelaamaan pelejä, joita et omista " "laillisesti." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Tätä julkaisua ei voi käynnistää." @@ -13086,12 +13299,15 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "Tämä arvo kerrotaan grafiikka-asetusten määräämällä syvyydellä." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" "use the Branch Type filter options." msgstr "" +"Tämä suodattaa myös ehdottomat haarat.\n" +"Jos haluat suodattaa ehdottomat haarat pois tai mukaan,\n" +"käytä haaratyyppisuodatinta." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" @@ -13101,7 +13317,7 @@ msgstr "" "Tämä rajoittaa asiakaskonekohtaisesti lohkotun lähetyksen nopeutta, mitä " "käytetään tallennustiedostojen synkronointiin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13113,11 +13329,11 @@ msgstr "" "Asetus voi estää desynkronoitumista peleissä, jotka lukevat EFB:tä. " "Varmista, että kaikki käyttävät samaa hahmonninta." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Säiekonteksti" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Säikeet" @@ -13141,14 +13357,14 @@ msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" "Tasaisen syötteen aika, joka saa aikaan kalibroinnin. (0 poistaa käytöstä)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Aikakatkaisu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Julkaisu" @@ -13157,12 +13373,12 @@ msgid "To" msgstr "Minne" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Minne:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Koko ruudun tila päälle/pois" @@ -13187,7 +13403,7 @@ msgid "Toggle Aspect Ratio" msgstr "Kuvasuhteen vaihto" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Keskeytyskohta päälle/pois" @@ -13243,15 +13459,15 @@ msgstr "Välitön XFB päälle/pois" msgid "Tokenizing failed." msgstr "Tokenisointi epäonnistui." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" -msgstr "" +msgstr "Työkalun toiminnot" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Työkalupalkki" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Yläreuna" @@ -13259,8 +13475,8 @@ msgstr "Yläreuna" msgid "Top-and-Bottom" msgstr "Päällekkäin" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Osumia yhteensä" @@ -13302,7 +13518,7 @@ msgid "Toy code:" msgstr "Lelukoodi:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Perinteinen kiina" @@ -13322,8 +13538,8 @@ msgstr "Ansamestari" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Läpikulkuvirhe" @@ -13352,7 +13568,7 @@ msgstr "Triforce AM -jalkalista" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Olkanäppäimet" @@ -13362,7 +13578,7 @@ msgid "Trophy" msgstr "Palkinto" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13376,7 +13592,7 @@ msgstr "Tyyppiin perustuva kohdistus" msgid "Typical GameCube/Wii Address Space" msgstr "Tavallinen GameCube-/Wii-osoiteavaruus" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "TUNTEMATON" @@ -13388,7 +13604,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB-laitteiden emulointi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB-emulointi" @@ -13406,7 +13622,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB-hyväksyntävirhe" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13418,7 +13634,7 @@ msgstr "" "

Ellet ole varma, valitse tämä tila." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13431,7 +13647,7 @@ msgstr "" "hybridi-Uber-varjostimilla ja ellei sinulla ole erittäin suorituskykyinen " "grafiikkasuoritin." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13445,7 +13661,7 @@ msgstr "" "kokonaan pätkinnän ja aiheuttaa häviävän pieniä suorituskykyvaikutuksia, " "mutta tämä riippuu grafiikka-ajurien toiminnasta." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "RSO-moduulin tunnistus epäonnistui" @@ -13517,11 +13733,11 @@ msgstr "Pakkaamattomat GC-/Wii-levykuvat (*.iso *.gcm)" msgid "Undead" msgstr "Epäkuolema" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Kumoa tilan palauttaminen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Kumoa tilan tallentaminen" @@ -13542,28 +13758,28 @@ msgstr "" "version NAND-muistista poistamatta kuitenkaan sen tallennustiedostoa. " "Jatketaanko?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Yhdysvallat" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Tuntematon" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Tuntematon (Tunnus:%1 Muuttuja:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Tuntematon DVD-komento {0:08x} - vakava virhe" @@ -13593,7 +13809,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:91 msgid "Unknown Skylander type!" -msgstr "" +msgstr "Tuntematon Skylanderin tyyppi!" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:135 msgid "Unknown address space" @@ -13640,11 +13856,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Tuntematon(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Tuntematon(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Rajoittamaton" @@ -13656,21 +13872,9 @@ msgstr "Poista ROMin lataus" msgid "Unlock Cursor" msgstr "Poista hiiren osoittimen lukitus" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Avattu" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Avattu %1 kertaa tämän peli-istunnon aikana" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Avattu (rento)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Avattu tämän peli-istunnon aikana" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13679,7 +13883,7 @@ msgstr "Purku käynnissä" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" -msgstr "" +msgstr "Tallentamattomat muutokset" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 @@ -13696,7 +13900,7 @@ msgstr "Etumerkitön 32-bittinen" msgid "Unsigned 8" msgstr "Etumerkitön 8-bittinen" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Etumerkitön kokonaisluku" @@ -13710,8 +13914,8 @@ msgstr "Etumerkitön kokonaisluku" msgid "Up" msgstr "Ylös" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Päivitä" @@ -13719,11 +13923,11 @@ msgstr "Päivitä" msgid "Update Partition (%1)" msgstr "Päivitysosio (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Päivitä Dolphinin sulkemisen jälkeen" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Päivitys saatavilla" @@ -13768,7 +13972,7 @@ msgstr "Pystysuuntaisuus päälle/pois" msgid "Upright Wii Remote" msgstr "Pystysuuntainen Wii Remote" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Käyttötilastojen raportointi" @@ -13778,31 +13982,37 @@ msgstr "" "Käytä osoitetta 8.8.8.8 saadaksesi tavallisen nimipalvelimen, tai anna oma " "valinta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Käytä kaikkia Wiin tallennustiedostoja" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Käytä sisäänrakennettua pelien nimien tietokantaa" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Käytä häviötöntä koodekkia (FFV1)" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:173 msgid "Use Mouse Controlled Pointing" -msgstr "" +msgstr "Käytä hiirellä ohjattua osoitusta" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Käytä PAL60-tilaa (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Käytä paniikkikäsittelijöitä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13850,7 +14060,7 @@ msgstr "Käytä näennäisosoitteita, kun mahdollista" msgid "User Config" msgstr "Käyttäjän asetukset" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Käyttöliittymä" @@ -13868,10 +14078,17 @@ msgstr "" "Niitä voi käyttää arvojen hakemiseksi ja tallentamiseksi saman ohjaimen " "syötteiden ja ulostulojen kesken." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Käyttäjänimi" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13885,7 +14102,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valituksi." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13895,7 +14112,7 @@ msgstr "" "erillinen hahmonnusikkuna luodaan sen sijaan.

Ellet " "ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Muussa tapauksessa, ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14192,8 +14409,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varoitus" @@ -14205,7 +14422,7 @@ msgstr "" "Varoitus: GCI-kansion korvauspolku on tällä hetkellä säädetty tähän " "paikkaan. GCI-polun säätäminen tähän ei tuota vaikutuksia." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14221,7 +14438,7 @@ msgstr "" "Varoitus: BAT:n nimeämä lohkolukumäärä ({0}) ei vastaa ladatun tiedoston " "otsaketta ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14231,7 +14448,7 @@ msgstr "" "jälkeen. (tavu {0} > {1}) (syöte {2} > {3}). Lataa toinen tallennustiedosto " "ennen jatkamista, tai lataa tämä tallennustila ilman vain luku -tilaa." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14241,7 +14458,7 @@ msgstr "" "nykyistä kehystä tallennustiedostossa (tavu {0} < {1}) (kehys {2} < {3}). " "Älä lataa uusia tallennustiedostoja ennen jatkamista." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14252,7 +14469,7 @@ msgstr "" "lataa tämä tilatallennus ilman vain luku -tilaa. Muutoin tämä voi johtaa " "desynkronoitumiseen." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14314,7 +14531,7 @@ msgstr "Länsimainen (Windows-1252)" msgid "Whammy" msgstr "Vibrakampi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14327,7 +14544,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valituksi." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14340,7 +14557,7 @@ msgstr "" "Parannuksissa.

Ellet ole varma, jätä tämä valituksi." "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Hyväksyttyjen laitteiden lista USB-läpipäästöön" @@ -14372,25 +14589,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Wii Remoten kiihtyvyysanturi" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii Remoten painikkeet" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Wii Remoten gyroskooppi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii Remote -asetukset" @@ -14398,19 +14615,19 @@ msgstr "Wii Remote -asetukset" msgid "Wii Remotes" msgstr "Wii Remote -ohjaimet" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wiin TAS-syöte %1 - Classic-ohjain" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wiin TAS-syöte %1 - Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wiin TAS-syöte %1 - Wii Remote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii ja Wii Remote" @@ -14418,7 +14635,7 @@ msgstr "Wii ja Wii Remote" msgid "Wii data is not public yet" msgstr "Wii-data ei ole vielä julkista" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-tallennustiedostot (*.bin);;Kaikki tiedostot (*)" @@ -14426,30 +14643,22 @@ msgstr "Wii-tallennustiedostot (*.bin);;Kaikki tiedostot (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools-allekirjoituksen MEGA-tiedosto" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"Lukitsee hiiren osoittimen hahmontimen alueelle niin kauan, kuin se on " -"valittuna. Voit asettaa pikanäppäimen sen vapauttamista varten." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" -msgstr "" +msgstr "Ikkunan kuvatarkkuus" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Ikkunan koko" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "Poista &tutkimusdata" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" -msgstr "" +msgstr "Poista viimeaikaiset osumat" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14461,12 +14670,13 @@ msgstr "Maailma" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Kirjoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Kirjoita JIT-lohkojen lokivedos" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. @@ -14497,39 +14707,39 @@ msgstr "Kirjoita lokiin ja keskeytä" msgid "Write to Window" msgstr "Kirjoita ikkunaan" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Väärä levyn numero" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Väärä tiiviste" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Väärä alue" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Väärä revisio" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Kirjoitettu kohteeseen \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Kirjoitettu kohteeseen \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF-rekisteri " @@ -14538,9 +14748,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA -kohdeosoite" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14568,7 +14778,7 @@ msgstr "Kyllä" msgid "Yes to &All" msgstr "Kyllä k&aikkiin" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14577,7 +14787,7 @@ msgstr "" "Olet muuntamassa tiedoston %2 sisällön kansioon %1. Kaikki kansion nykyinen " "sisältö poistetaan. Oletko varma, että haluat jatkaa?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14672,6 +14882,9 @@ msgid "" "\n" "Do you want to save all and exit?" msgstr "" +"Avoinna on %1 tallentamatonta koodivälilehteä\n" +"\n" +"Haluatko tallentaa kaiken ja poistua?" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229 msgid "You have to enter a name." @@ -14685,7 +14898,7 @@ msgstr "Istunnolle on annettava nimi!" msgid "You must provide a region for your session!" msgstr "Istunnolle on annettava alue!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Dolphin vaatii uudelleenkäynnistyksen, jotta muutos tulee voimaan." @@ -14713,7 +14926,7 @@ msgstr "" "Haluatko lopettaa nyt korjataksesi ongelman?\n" "Jos valitset \"Ei\", ääni voi olla pätkivää." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14722,9 +14935,9 @@ msgstr "" "virheellisesti tai estää tallentamisen." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14733,9 +14946,9 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 -koodia ei tueta" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." -msgstr "" +msgstr "Nolla ehdokasta jäljellä." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14782,7 +14995,7 @@ msgid "default" msgstr "oletus" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "ei yhteydessä" @@ -14790,7 +15003,7 @@ msgstr "ei yhteydessä" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader-kortit (*.raw);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "virhekoodi" @@ -14798,9 +15011,9 @@ msgstr "virhekoodi" msgid "fake-completion" msgstr "näennäisläpäisy" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" -msgstr "" +msgstr "false" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -14848,16 +15061,6 @@ msgstr "" msgid "none" msgstr "ei mikään" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "pois" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "päällä" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "tai valitse laite" @@ -14875,9 +15078,9 @@ msgstr "sRGB" msgid "this value:" msgstr "tämä arvo:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" -msgstr "" +msgstr "true" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 @@ -14942,11 +15145,9 @@ msgstr "| Tai" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin-tiimi. ”GameCube” ja ”Wii” ovat Nintendon " -"tavaramerkkejä. Dolphin ei ole sidoksissa Nintendoon millään tavalla." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/fr.po b/Languages/po/fr.po index 36b0c3ef18..385d199cc2 100644 --- a/Languages/po/fr.po +++ b/Languages/po/fr.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Pascal , 2013-2024\n" "Language-Team: French (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -99,7 +99,7 @@ msgstr "" "%1\n" "souhaite rejoindre la partie." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -133,7 +133,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Révision %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (préréglage)" @@ -153,7 +153,7 @@ msgstr "%1 (lent)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -167,11 +167,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Configuration des graphismes %1" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -188,7 +188,7 @@ msgstr "%1 ne prend pas en charge cette fonctionnalité sur votre système." msgid "%1 doesn't support this feature." msgstr "%1 ne prend pas en charge cette fonctionnalité." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -198,35 +198,27 @@ msgstr "" "%2 objet(s)\n" "Image actuelle : %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 s'est connecté" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 s'est déconnecté" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 a débloqué %2/%3 succès (%4 en hardcore), ce qui vaut %5/%6 points (%7 en " -"hardcore)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 a débloqué %2/%3 succès, ce qui vaut %4/%5 points" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 n'est pas une ROM valide" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 est en mode golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 joue à %2" @@ -234,13 +226,13 @@ msgstr "%1 joue à %2" msgid "%1 memory ranges" msgstr "%1 zones de mémoire" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 points" @@ -252,30 +244,30 @@ msgstr "%1 session trouvée" msgid "%1 sessions found" msgstr "%1 sessions trouvées" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Vitesse normale)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "La valeur de %1 est changée" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "La valeur de %1 est atteinte" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "La valeur de %1 est utilisée" @@ -287,6 +279,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1 : %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2] : %3" @@ -356,11 +352,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&À propos" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&&Ajouter un point d'arrêt mémoire" @@ -369,7 +365,7 @@ msgstr "&&Ajouter un point d'arrêt mémoire" msgid "&Add New Code..." msgstr "&Ajouter un nouveau code..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Ajouter une fonction" @@ -377,15 +373,15 @@ msgstr "&Ajouter une fonction" msgid "&Add..." msgstr "&Ajouter..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Assembleur" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Paramètres &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "Mise à jour &automatique :" @@ -393,11 +389,15 @@ msgstr "Mise à jour &automatique :" msgid "&Borderless Window" msgstr "Fenêtre sans &bordures" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Points d'arrêt" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "Suivi des &bugs" @@ -405,15 +405,15 @@ msgstr "Suivi des &bugs" msgid "&Cancel" msgstr "&Annuler" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "Gestionnaire de &cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "Rechercher des &mises à jour..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Effacer les symboles" @@ -421,7 +421,7 @@ msgstr "&Effacer les symboles" msgid "&Clone..." msgstr "&Cloner..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Code" @@ -429,16 +429,15 @@ msgstr "&Code" msgid "&Connected" msgstr "&Connecté" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Paramètres des &manettes" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "&Copier l'adresse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Copier l'adresse" @@ -446,20 +445,20 @@ msgstr "&Copier l'adresse" msgid "&Create..." msgstr "&Créer..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Supprimer..." #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Effacer la surveillance" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Supprimer les observations" @@ -473,11 +472,11 @@ msgstr "&Modifier le code" msgid "&Edit..." msgstr "&Éditer..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Éjecter le disque" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Émulation" @@ -497,41 +496,41 @@ msgstr "&Exporter l'état..." msgid "&Export as .gci..." msgstr "&Exporter comme .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Police..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Avancement d'image" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "Réglages de la &Vue libre" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Générer les symboles depuis" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Dépôt &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Paramètres &graphiques" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Aide" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Paramètres des &Raccouris clavier" @@ -551,11 +550,11 @@ msgstr "&Importer l'état..." msgid "&Import..." msgstr "&Importer..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Insérer blr" @@ -563,23 +562,23 @@ msgstr "&Insérer blr" msgid "&Interframe Blending" msgstr "Fusion &inter-images" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Langue :" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "&Charger la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Charger l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Charger une Carte de Symboles" @@ -589,19 +588,23 @@ msgstr "&Charger le fichier à l'adresse actuelle" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Verrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "Verrouiller l'emplacement des &Widgets" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "Fil&m" @@ -609,7 +612,7 @@ msgstr "Fil&m" msgid "&Mute" msgstr "&Couper le son" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Réseau" @@ -618,23 +621,23 @@ msgid "&No" msgstr "&Non" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Ouvrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Options" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Patcher les fonctions HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Démarrer" @@ -642,7 +645,7 @@ msgstr "&Démarrer" msgid "&Properties" msgstr "&Propriétés" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "Mode &Lecture seule" @@ -650,7 +653,7 @@ msgstr "Mode &Lecture seule" msgid "&Refresh List" msgstr "&Actualiser la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registres" @@ -663,24 +666,24 @@ msgstr "&Retirer" msgid "&Remove Code" msgstr "&Retirer le Code" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Renommer symbole" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "Gestionnaire de Packs de &Ressources" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "&Sauvegarder la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Sauvegarder la carte des symboles" @@ -688,31 +691,31 @@ msgstr "&Sauvegarder la carte des symboles" msgid "&Scan e-Reader Card(s)..." msgstr "&Lire la ou les carte(s) e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Portail Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Limite de vitesse :" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Stop" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Thème :" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "&Outil" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Outils" @@ -722,21 +725,21 @@ msgstr "&Décharger la ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "&Déverrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Affichage" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Regarder" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "Site &web" @@ -748,23 +751,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Oui" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' introuvable, aucun nom de symbole généré" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' introuvable, recherche de fonctions communes à la place" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Sombre)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Clair)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Système)" @@ -800,12 +803,12 @@ msgstr "- Soustraire" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Inconnu--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -866,7 +869,7 @@ msgstr "Entier 16 bits signé" msgid "16-bit Unsigned Integer" msgstr "Entier 16 bits non signé" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16/9" @@ -924,7 +927,7 @@ msgstr "Entier 32 bits non signé" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -950,7 +953,7 @@ msgstr "4 Gio (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4/3" @@ -1043,21 +1046,21 @@ msgstr "< Inférieur à" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "Désactivé en mode Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1065,7 +1068,7 @@ msgstr "" "Délai dépassé pour l'AutoStepping. L'instruction " "actuelle n'a aucun rapport." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1095,8 +1098,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Supérieur à" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Une session NetPlay est en cours !" @@ -1117,7 +1120,7 @@ msgstr "" "Installer cette WAD va remplacer celle de la NAND de manière irréversible. " "Continuer ?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Un disque est déjà sur le point d'être inséré." @@ -1136,7 +1139,7 @@ msgstr "" "Une sauvegarde d'état ne peut être chargée sans avoir spécifié quel jeu " "démarrer." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1159,7 +1162,7 @@ msgstr "" "Une synchronisation ne peut être faite que lorsqu'un jeu Wii est entrain de " "fonctionner." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "Sauvegarde a&uto" @@ -1198,7 +1201,7 @@ msgstr "" "considérée comme fonctionnelle.\n" "Utilisez-les à vos risques.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Code AR" @@ -1241,18 +1244,10 @@ msgid "Achievement Settings" msgstr "Paramètres des succès" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Succès" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Les succès ont été désactivés.
Veuillez quitter tous les jeux pour " -"réactiver les succès." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Action" @@ -1343,7 +1338,7 @@ msgstr "Action Replay : Code Normal {0} : Sous-type non valide {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Activer le Chat NetPlay" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Actif" @@ -1351,15 +1346,15 @@ msgstr "Actif" msgid "Active Infinity Figures:" msgstr "Figurines Infinity actives :" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "File d'attente de threads actifs" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Threads actifs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adaptateur" @@ -1367,7 +1362,7 @@ msgstr "Adaptateur" msgid "Adapter Detected" msgstr "Adaptateur détecté" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Carte :" @@ -1377,7 +1372,7 @@ msgstr "Carte :" msgid "Add" msgstr "Ajouter" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Ajouter un &point d'arrêt" @@ -1402,43 +1397,43 @@ msgstr "Ajouter un point d'arrêt" msgid "Add a Memory Breakpoint" msgstr "Ajouter un point d'arrêt à la mémoire" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Ajouter un &point d'arrêt mémoire" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Ajouter un point d'arrêt mémoire" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Ajouter à la surveillance" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Ajouter pour observation" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Ajouter..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adresse" @@ -1614,7 +1609,7 @@ msgid "All Assembly files" msgstr "Tous les fichiers Assembleur" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Tout Double" @@ -1623,7 +1618,7 @@ msgstr "Tout Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1631,34 +1626,34 @@ msgid "All Files" msgstr "Tous les fichiers" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Tous les fichiers (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Tout Flottant" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tous les fichiers GC/Wii" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Tout Hexadécimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tous les états sauvegardés (*.sav *.s##);; Tous les fichiers (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Tout Entier Signé" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Tout Entier Non-signé" @@ -1674,7 +1669,7 @@ msgstr "Les codes de tous les joueurs ont été synchronisés." msgid "All players' saves synchronized." msgstr "Les sauvegardes de tous les joueurs ont été synchronisées." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Autoriser des réglages pour région différente" @@ -1682,7 +1677,7 @@ msgstr "Autoriser des réglages pour région différente" msgid "Allow Usage Statistics Reporting" msgstr "Autoriser l'envoi des statistiques d'utilisation" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Autoriser les écritures sur la carte SD" @@ -1702,7 +1697,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Sources alternatives d'entrées" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Toujours" @@ -1724,7 +1719,7 @@ msgstr "Un disque devrait déjà être inséré mais n'a pas été trouvé." msgid "Anaglyph" msgstr "Anaglyphe" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analyser" @@ -1750,15 +1745,15 @@ msgstr "Anti-Aliasing :" msgid "Any Region" msgstr "Toutes régions" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Ajouter la signature à" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Ajouter à un fichier de signature &existant..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "A&ppliquer un fichier de signature" @@ -1779,7 +1774,7 @@ msgstr "Date de l'Apploader :" msgid "Apply" msgstr "Appliquer" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Appliquer un fichier de signature" @@ -1787,7 +1782,7 @@ msgstr "Appliquer un fichier de signature" msgid "Arbitrary Mipmap Detection" msgstr "Détection de mipmap arbitraire" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Êtes-vous sûr de vouloir supprimer \"%1\" ?" @@ -1799,7 +1794,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?" msgid "Are you sure you want to delete this pack?" msgstr "Êtes-vous sûr de vouloir supprimer ce pack ?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Êtes-vous sûr de vouloir quitter NetPlay ?" @@ -1811,16 +1806,16 @@ msgstr "Êtes-vous sûr ?" msgid "Area Sampling" msgstr "Échantillonnage de zone" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Format d'écran" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Résolution interne corrigée du ratio hauteur/largeur" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Format d'écran :" @@ -1828,7 +1823,7 @@ msgstr "Format d'écran :" msgid "Assemble" msgstr "Assembler" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Assembler l'instruction" @@ -1840,7 +1835,7 @@ msgstr "Assembleur" msgid "Assembly File" msgstr "Fichier Assembleur" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Attribuer les ports des manettes" @@ -1863,11 +1858,11 @@ msgstr "Attacher le MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Moteur audio :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Paramètres d'étirement audio" @@ -1883,7 +1878,7 @@ msgstr "Auteur" msgid "Authors" msgstr "Auteurs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1892,11 +1887,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiple de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Paramètres de mise à jour automatique" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1908,7 +1903,7 @@ msgstr "" "\n" "Veuillez choisir une résolution interne spécifique." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Ajuster auto. la taille de la fenêtre" @@ -1916,15 +1911,15 @@ msgstr "Ajuster auto. la taille de la fenêtre" msgid "Auto-Hide" msgstr "Cacher automatiquement" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Détecter automatiquement les modules RSO ?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Synchroniser automatiquement avec le dossier" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1970,27 +1965,27 @@ msgstr "Adresse de destination BBA" msgid "BIOS:" msgstr "BIOS :" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Registres BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Moteur" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Multithreading du moteur" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Paramètres de l'interface audio" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Moteur :" @@ -2033,7 +2028,7 @@ msgstr "Mauvaise valeur fournie." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Bannière" @@ -2053,15 +2048,15 @@ msgstr "Barre" msgid "Base Address" msgstr "Adresse de base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Priorité de base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Paramètres généraux" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Paramètres de base" @@ -2077,10 +2072,6 @@ msgstr "Vous devez spécifier un jeu à lancer pour utiliser le mode batch." msgid "Battery" msgstr "Batterie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (mensuelle)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, etc" @@ -2113,11 +2104,11 @@ msgstr "Binaire SSL (lecture)" msgid "Binary SSL (write)" msgstr "Binaire SSL (écriture)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps) :" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2131,7 +2122,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Taille des blocs" @@ -2169,68 +2160,68 @@ msgstr "" "Le mode pour passer outre le Bluetooth est activé, mais Dolphin a été " "compilé sans libusb. Ce mode ne peut donc pas être utilisé." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Démarrer sur Pause" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" "Fichier de sauvegarde BootMii de la NAND (*.bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fichier de clés BootMii (*.bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Plein écran sans bords" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Bas" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "Branche" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "Branche (LR sauvegardé)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "Branche Conditionnelle" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "Branche Conditionnelle (LR sauvegardé)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "Branche Conditionnelle vers Registre de comptage" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "Branche Conditionnelle vers Registre de comptage (LR sauvegardé)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "Branche Conditionnelle vers Registre de Lien" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "Branche Conditionnelle vers Registre de Lien (LR sauvegardé)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "Branche non écrasée" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "Type de branche" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "La branche a été écrasée" @@ -2242,23 +2233,23 @@ msgstr "Surveillance de Branche" msgid "Branch Watch Tool" msgstr "Outil de surveillance de Branche" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "Aide de l'outil de surveillance de Branche (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "Aide de l'outil de surveillance de Branche (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "Aide de l'outil de surveillance de Branche (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "Aide de l'outil de surveillance de Branche (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2291,7 +2282,7 @@ msgstr "" "\"Effacer la surveillance de Branche\" pour effacer toutes les candidates et " "retourner à la phase de liste noire." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2308,19 +2299,19 @@ msgstr "" "fois, la surveillance de Branche va basculer à la phase de réduction, et la " "table va se remplir avec toutes les candidates éligibles." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "Branche vers Registre de comptage" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "Branche vers Registre de comptage (LR sauvegardé)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "Branche vers Registre de liens" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "Branche vers Registre de liens (LR sauvegardé)" @@ -2335,19 +2326,24 @@ msgstr "Branches" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Arrêt" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Point d'arrêt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Point d'arrêt rencontré ! Sortie abandonnée." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Points d'arrêt" @@ -2381,24 +2377,24 @@ msgstr "Erreur d'adaptateur réseau" msgid "Broadband Adapter MAC Address" msgstr "Adresse MAC de l'adaptateur réseau" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Parcourir les sessions &NetPlay..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Taille du tampon :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Taille de buffer changée à %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer :" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2446,11 +2442,11 @@ msgstr "Par : %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "&Créer un Fichier Signature..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Registre CP" @@ -2470,7 +2466,7 @@ msgstr "CRC32 :" msgid "Cached Interpreter (slower)" msgstr "Interpréteur avec cache (lent)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2510,7 +2506,7 @@ msgstr "Étalonnage" msgid "Calibration Period" msgstr "Durée d'étalonnage" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Appel de la liste d'affichage à %1 avec pour taille %2" @@ -2538,7 +2534,7 @@ msgstr "" "Champ de vue de la caméra (agit sur la sensibilité du pointeur de la " "Wiimote)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" "Peut générer un code AR pour les valeurs dans la mémoire virtuelle " @@ -2556,8 +2552,8 @@ msgstr "Impossible d'éditer les méchants pour ce trophée !" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Impossible de trouver la Wiimote par la gestion de connexion {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Impossible de démarrer une session NetPlay pendant qu'un jeu est en cours " @@ -2565,11 +2561,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annuler" @@ -2578,15 +2574,15 @@ msgstr "Annuler" msgid "Cancel Calibration" msgstr "Annuler l'étalonnage" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "Candidates : %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "Candidates : %1 | Exclues : %2 | Restantes : %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "Candidates : %1 | Filtrées : %2 | Restantes : %3" @@ -2607,11 +2603,11 @@ msgstr "" "Il n'est pas possible de comparer avec la dernière valeur lors d'une " "première recherche." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Impossible de trouver l'IPL de GC" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Impossible de générer un code AR pour cette adresse." @@ -2619,7 +2615,7 @@ msgstr "Impossible de générer un code AR pour cette adresse." msgid "Cannot refresh without results." msgstr "Impossible de rafraîchir lorsqu'il n'y a pas de résultat." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "Impossible d'attribuer un chemin vide pour le dossier GCI." @@ -2627,7 +2623,7 @@ msgstr "Impossible d'attribuer un chemin vide pour le dossier GCI." msgid "Cannot set memory card to an empty path." msgstr "Vous devez indiquer un dossier valide pour la carte mémoire." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Impossible de démarrer le jeu car l'IPL de GC n'a pas pu être trouvé." @@ -2659,7 +2655,7 @@ msgstr "Centrer et étalonner" msgid "Change &Disc" msgstr "&Changer de disque" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "&Changer de disque..." @@ -2667,15 +2663,21 @@ msgstr "&Changer de disque..." msgid "Change Disc" msgstr "Changer de disque" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Changer automatiquement les disques" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Changer le disque par {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2706,7 +2708,7 @@ msgstr "" "seulement et pas de mouvement latéral, et vous pouvez zoomer jusqu'à " "l'emplacement d'origine de la caméra." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Le changement des cheats ne fonctionnera qu'après le redémarrage du jeu." @@ -2715,11 +2717,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Partition de Chaîne (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Le personnage entré est invalide !" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2727,7 +2729,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editeur de cheat codes" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Rechercher un cheat" @@ -2735,7 +2737,7 @@ msgstr "Rechercher un cheat" msgid "Cheats Manager" msgstr "Gestionnaire de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Vérifier la NAND..." @@ -2755,7 +2757,7 @@ msgstr "" "Vérifie si vous avez la permission de supprimer le fichier ou s'il est en " "cours d'utilisation." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Somme de contrôle" @@ -2767,7 +2769,7 @@ msgstr "Chine" msgid "Choose" msgstr "Choisissez" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Choisir un fichier à ouvrir" @@ -2775,15 +2777,15 @@ msgstr "Choisir un fichier à ouvrir" msgid "Choose a file to open or create" msgstr "Choisissez un fichier à ouvrir ou créer" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Choisir le fichier d'entrée prioritaire." -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Choisir le fichier d'entrée secondaire." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Choisissez le dossier racine du GCI" @@ -2796,7 +2798,7 @@ msgstr "Choisir le dossier de destination de l'extraction" msgid "Clamping of rotation about the yaw axis." msgstr "Serrage de la rotation sur l'axe horizontal" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Boutons classiques" @@ -2807,18 +2809,18 @@ msgstr "Manette classique" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Effacer" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "Effacer la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Effacer le cache" @@ -2839,7 +2841,7 @@ msgstr "&Cloner et modifier le Code..." msgid "Close" msgstr "Fermer" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Co&nfiguration" @@ -2847,11 +2849,11 @@ msgstr "Co&nfiguration" msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "\"Chemin de code non pris\"" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "\"Le chemin de code a été pris\"" @@ -2879,11 +2881,11 @@ msgstr "Correction de couleur :" msgid "Color Space" msgstr "Espace de couleur" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "&Visibilité de la colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Combiner &deux fichiers de signature..." @@ -2916,7 +2918,7 @@ msgstr "" "cela, il est possible que ce soit un bon dump comparé à la version eShop de " "Wii U du jeu. Dolphin ne peut pas le vérifier." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Compiler les Shaders avant le démarrage" @@ -2926,7 +2928,7 @@ msgstr "Compilation des Shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Compression" @@ -2939,7 +2941,7 @@ msgstr "Niveau de compression :" msgid "Compression:" msgstr "Compression :" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "Cond." @@ -2947,11 +2949,11 @@ msgstr "Cond." #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Condition" @@ -2967,7 +2969,7 @@ msgstr "Conditionnel" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Aide conditionnelle" @@ -2982,7 +2984,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -3020,56 +3027,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Conditions :\n" -"Définit une expression qui est évaluée lorsqu'un point d'arrêt est atteint. " -"Si l'expression fausse ou 0, le point d'arrêt est ignoré jusqu'à ce qu'il " -"soit à nouveau atteint. Les déclarations doivent être séparées d'une " -"virgule. Seule la dernière déclaration sera utilisée pour déterminer ce " -"qu'il faut faire.\n" -"\n" -"Registres qui peuvent être référencés :\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -" LR, CTR, PC\n" -"\n" -"Fonctions :\n" -"Définir un registre : r1 = 8\n" -"Casts: s8(0xff). Disponible : s8, u8, s16, u16, s32, u32\n" -"Callstack: callstack(0x80123456), callstack(\"anim\")\n" -"Comparer le texte: streq(r3, \"abc\"). Chaque paramètre peut être une " -"adresse ou des constantes de texte.\n" -"Lire en mémoire : read_u32(0x80000000). Disponible : u8, s8, u16, s16, u32, " -"s32, f32, f64\n" -"Écrire en mémoire : write_u32(r3, 0x80000000). Disponible : u8, u16, u32, " -"f32, f64\n" -"*l'écriture est actuellement toujours déclenchée\n" -"\n" -"Opérations :\n" -"Unary: -u, !u, ~u\n" -"Math: * / + -, power: **, remainder: %, shift: <<, >>\n" -"Comparer : <, <=, >, >=, ==, !=, &&, ||\n" -"Bitwise: &, |, ^\n" -"\n" -"Exemples :\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Écrire et pause: r4 = 8, 1\n" -"Écrire et continuer : f3 = f1 + f2, 0\n" -"La condition doit toujours être à la fin\n" -"\n" -"Les valeurs doivent toujours être utilisées dans callstack() ou streq() et " -"\"quoted\". Ne pas assigner une valeur à une variable.\n" -"Toutes les variables seront affichées dans le journal de la mémoire " -"d'interface, si elle est atteinte ou un résultat NaN. Pour vérifier s'il y a " -"un problème, assignez une variable à votre équation pour qu'elle puisse être " -"affichée.\n" -"\n" -"Note: Toutes les valeurs sont converties en interne en Doubles par les " -"calculs. Il leur est possible de sortir des limites ou devenir un NaN. Un " -"avertissement sera affiché si un NaN est retourné, et la variable qui est " -"devenue un NaN sera journalisée." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3086,7 +3043,7 @@ msgstr "Configurer" msgid "Configure Controller" msgstr "Configurer la manette" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Configurer Dolphin" @@ -3099,27 +3056,27 @@ msgstr "Configurer l'entrée" msgid "Configure Output" msgstr "Configurer la sortie" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmer" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Confirmez le changement de moteur" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Confirmer l'arrêt de l'émulation" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Confirmation" @@ -3129,15 +3086,15 @@ msgstr "Confirmation" msgid "Connect" msgstr "Connecter" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Connecter la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Connecter le clavier USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Connecter la Wiimote %1" @@ -3157,7 +3114,7 @@ msgstr "Connecter la Wiimote 3" msgid "Connect Wii Remote 4" msgstr "Connecter la Wiimote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Connecter les Wiimotes" @@ -3173,7 +3130,7 @@ msgstr "Se connecter à Internet et rechercher une mise à jour ?" msgid "Connected" msgstr "Connecté" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Connexion en cours" @@ -3198,7 +3155,7 @@ msgstr "Contrôler le mode Golf de NetPlay" msgid "Control Stick" msgstr "Stick de contrôle" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Config de manette" @@ -3310,8 +3267,8 @@ msgstr "Convergence" msgid "Convergence:" msgstr "Convergence :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Échec de la conversion." @@ -3319,9 +3276,9 @@ msgstr "Échec de la conversion." msgid "Convert" msgstr "Convertir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Convertir le fichier en dossier maintenant" @@ -3329,9 +3286,9 @@ msgstr "Convertir le fichier en dossier maintenant" msgid "Convert File..." msgstr "Convertir le fichier..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Convertir le dossier en fichier maintenant" @@ -3354,8 +3311,8 @@ msgstr "" "conversion vers un ISO. Voulez-vous tout de même continuer ?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Conversion..." @@ -3400,22 +3357,22 @@ msgstr "" "temps 2,2.

Dans le doute, décochez cette case." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Copier" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Copier la &fonction" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Copier l'&hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copier l'adresse" @@ -3423,19 +3380,19 @@ msgstr "Copier l'adresse" msgid "Copy Failed" msgstr "Échec de la copie" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Copier l'Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copier la valeur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Copier la &ligne de code" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Copier l'adresse &cible" @@ -3453,8 +3410,8 @@ msgstr "Copier vers B" msgid "Core" msgstr "Core" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "Le noyau n'est pas initialisé." @@ -3590,7 +3547,7 @@ msgstr "" "Dans ce cas, vous devez à nouveau spécifier l'emplacement du fichier de " "sauvegarde dans les options." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Impossible de trouver le serveur central" @@ -3606,13 +3563,13 @@ msgstr "Impossible de lire le fichier." msgid "Country:" msgstr "Pays :" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Créer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Créer un fichier Infinity" @@ -3626,7 +3583,7 @@ msgstr "Créer une nouvelle Carte mémoire" msgid "Create Skylander File" msgstr "Créer un fichier Skylander" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Crée des mappages pour les autres appareils" @@ -3643,11 +3600,11 @@ msgstr "Créateur :" msgid "Critical" msgstr "Critique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Recadrer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3663,11 +3620,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Affecter le calcul de sommet au CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3678,31 +3635,31 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Région actuelle" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Valeur actuelle" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Contexte acutel" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Jeu en cours" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Thread actuel" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Personnalisé" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "Personnalisé (étirer)" @@ -3710,15 +3667,15 @@ msgstr "Personnalisé (étirer)" msgid "Custom Address Space" msgstr "Espace d'adresse personnalisé" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Hauteur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Largeur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Format d'affichage personnalisé :" @@ -3763,7 +3720,7 @@ msgstr "Tourne-disque DJ" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Moteur d'émulation du DSP (Audio)" @@ -3771,15 +3728,15 @@ msgstr "Moteur d'émulation du DSP (Audio)" msgid "DSP HLE (fast)" msgstr "DSP en HLE (rapide)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (recommandé)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "Interpréteur du DSP en LLE (très lent)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "Recompilateur du DSP en LLE (lent)" @@ -3810,7 +3767,7 @@ msgstr "Tapis de danse" msgid "Dark" msgstr "Ténèbres" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Données" @@ -3855,8 +3812,8 @@ msgstr "Zone morte" msgid "Debug" msgstr "Débug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Débogage" @@ -3865,7 +3822,7 @@ msgstr "Débogage" msgid "Decimal" msgstr "Décimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Qualité de décodage :" @@ -3904,7 +3861,7 @@ msgstr "Réduire Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Par défaut" @@ -3912,7 +3869,7 @@ msgstr "Par défaut" msgid "Default Config (Read Only)" msgstr "Configuration par défaut (lecture seule)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Appareil par défaut" @@ -3924,11 +3881,11 @@ msgstr "Police par défaut" msgid "Default ISO:" msgstr "ISO par défaut :" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Thread par défaut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Différer l'invalidation du cache EFB" @@ -3936,7 +3893,7 @@ msgstr "Différer l'invalidation du cache EFB" msgid "Defer EFB Copies to RAM" msgstr "Reporter les copies EFB vers la RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3951,8 +3908,9 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Supprimer" @@ -3982,12 +3940,12 @@ msgstr "Pourcentage de la profondeur :" msgid "Depth:" msgstr "Profondeur :" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Description" @@ -4001,8 +3959,8 @@ msgstr "Description :" msgid "Description: %1" msgstr "Description : %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "Destination" @@ -4014,21 +3972,21 @@ msgstr "Destination (chemin de socket UNIX ou adresse:port) :" msgid "Destination (address:port):" msgstr "Destination (addresse:port) :" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "Destination Max" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "Destination Min" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "Symbole de destination" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Détaché" @@ -4036,7 +3994,7 @@ msgstr "Détaché" msgid "Detect" msgstr "Détecter" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Détection des modules RSO" @@ -4044,11 +4002,11 @@ msgstr "Détection des modules RSO" msgid "Deterministic dual core:" msgstr "Double cœur déterministe :" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (plusieurs fois par jour)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Appareil" @@ -4066,7 +4024,7 @@ msgstr "Paramètres de la console émulée" msgid "Device VID (e.g., 057e)" msgstr "VID de l'appareil (ex : 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Appareil" @@ -4074,7 +4032,7 @@ 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/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Assombrit l'écran après 5 minutes d'inactivité." @@ -4090,11 +4048,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Dé&connecté" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Désactiver" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Désactiver Bounding Box" @@ -4103,7 +4056,7 @@ msgstr "Désactiver Bounding Box" msgid "Disable Copy Filter" msgstr "Désactiver le filtre de copie" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Désactiver les copies EFB dans la VRAM" @@ -4111,11 +4064,11 @@ 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:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Désactiver Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Désactiver Fastmem Arena" @@ -4123,11 +4076,11 @@ msgstr "Désactiver Fastmem Arena" msgid "Disable Fog" msgstr "Désactiver le brouillard" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Désactiver le cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Désactiver la carte des grands points d'entrée" @@ -4146,7 +4099,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Dans le doute, cochez cette case." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disque" @@ -4179,6 +4138,10 @@ msgstr "Disque" msgid "Discard" msgstr "Fermer" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Type d'affichage" @@ -4215,11 +4178,11 @@ msgstr "Distance parcourue depuis la position neutre." 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Voulez-vous effacer la liste des noms de symboles ?" @@ -4229,7 +4192,7 @@ 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Voulez-vous arrêter l'émulation en cours ?" @@ -4237,12 +4200,12 @@ msgstr "Voulez-vous arrêter l'émulation en cours ?" msgid "Do you want to try to repair the NAND?" msgstr "Souhaitez-vous essayer de réparer la NAND ?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Décodeur Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Journal FIFO de Dolphin (*.dff)" @@ -4250,9 +4213,9 @@ msgstr "Journal FIFO de Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Préréglage de mod de jeu pour Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Fichier de carte pour Dolphin (*.map)" @@ -4264,8 +4227,8 @@ msgstr "Fichier CSV de signature de Dolphin" msgid "Dolphin Signature File" msgstr "Fichier de signature de Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Films TAS Dolphin (*.dtm)" @@ -4308,7 +4271,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin est trop ancien pour le serveur traversal" @@ -4324,7 +4287,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:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4332,7 +4295,7 @@ msgstr "" "Dolphin utilisera ceci pour les titres dont la région ne peut être " "automatiquement déterminée." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Le système de Dolphin pour les cheats est actuellement désactivé." @@ -4341,7 +4304,7 @@ msgstr "Le système de Dolphin pour les cheats est actuellement désactivé." msgid "Domain" msgstr "Domaine" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Ne pas mettre à jour" @@ -4362,7 +4325,7 @@ msgstr "Portes bloquées." #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4384,7 +4347,7 @@ msgstr "Télécharger des codes" msgid "Download Codes from the WiiRD Database" msgstr "Télécharger des codes de WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 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 " @@ -4398,6 +4361,16 @@ msgstr "Téléchargement terminé" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 codes ont été téléchargés. (%2 ajoutés)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4437,19 +4410,19 @@ msgstr "Dumper &FakeVMEM" msgid "Dump &MRAM" msgstr "Dumper la &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Enregistrer le son" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Copier les textures de base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Copier l'EFB cible" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Enregistrer les images" @@ -4457,7 +4430,7 @@ msgstr "Enregistrer les images" msgid "Dump GameCube BBA traffic" msgstr "Dumper le trafic BBA de la GameCube" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Copier les Mip maps" @@ -4465,7 +4438,7 @@ msgstr "Copier les Mip maps" msgid "Dump Path:" msgstr "Dossier de dump :" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Copier l'XFB cible" @@ -4490,7 +4463,7 @@ msgstr "Enregistrer les certificats des pairs" msgid "Dump root CA certificates" msgstr "Enregistrer les certificats CA racine" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Dans le doute, " "décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4509,7 +4482,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4518,25 +4491,25 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Durée d'appui sur le bouton Turbo (en images) :" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 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:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Néerlandais" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Quitter" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "Copie %1 d'EFB" @@ -4552,7 +4525,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:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4564,7 +4537,7 @@ msgstr "" "Convient pour les jeux de compétition où l'égalité et une latence minimale " "sont les plus importantes." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Premières mises à jour de mémoire" @@ -4583,7 +4556,16 @@ msgstr "Asie de l'Est" msgid "Edit Breakpoint" msgstr "Modifier le point d'arrêt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Modifier..." @@ -4603,7 +4585,7 @@ msgstr "Effets" msgid "Effective" msgstr "Effective" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Priorité effective" @@ -4625,11 +4607,11 @@ msgstr "Élément" msgid "Embedded Frame Buffer (EFB)" msgstr "Buffer d'image embarqué (Embedded Frame Buffer - EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Vide" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Thread d'émulation déjà en cours d'exécution" @@ -4657,7 +4639,7 @@ 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:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Appareils USB émulés" @@ -4682,34 +4664,24 @@ msgstr "Vitesse de l'émulation" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Activer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Activer les couches de validation d'API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Activer les badges de succès" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Activer les succès" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Activer l'étirement du son" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Activer les Cheats" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Activer l'entrée de la manette" @@ -4717,15 +4689,19 @@ msgstr "Activer l'entrée de la manette" msgid "Enable Custom RTC" msgstr "Activer l'horloge personnalisée" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Activer l'interface de débogage" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activer le double cœur" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Activer le double cœur (plus rapide)" @@ -4737,7 +4713,7 @@ msgstr "Activer le changement de vitesse du CPU" msgid "Enable Emulated Memory Size Override" msgstr "Modifier la taille de la mémoire émulée" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Activer les succès Encore" @@ -4745,15 +4721,15 @@ msgstr "Activer les succès Encore" msgid "Enable FPRF" msgstr "Activer le FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Activer les mods graphiques" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Activer le mode Hardcore" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4787,41 +4763,33 @@ msgstr "" "
Notez que si vous désactivez le mode Hardcore pendant qu'un jeu est en " "cours, vous devrez quitter le jeu pour réactiver ce mode." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "Activer le profilage de bloc de JIT" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Activer les tableaux de classements" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Activer le MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Activer les notifications de progression" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Activer le balayage progressif" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Activer l'intégration de RetroAchievements.org" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Activer la Rich Presence" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Activer le vibreur" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Activer l'économiseur d'écran" @@ -4829,19 +4797,23 @@ msgstr "Activer l'économiseur d'écran" msgid "Enable Speaker Data" msgstr "Activer les données du haut-parleur" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Activer les succès non officiels" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Activer l'envoi des statistiques d'utilisation" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activer WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Activer le rendu en fil de fer" @@ -4849,37 +4821,6 @@ msgstr "Activer le rendu en fil de fer" msgid "Enable Write-Back Cache (slow)" msgstr "Activer le cache en écriture différée (lent)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"Activer la compétition dans les tableaux de classements de RetroAchievements." -"

Le mode Hardcore doit être activé pour l'utiliser." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" -"Activer la rich presence détaillée sur le site RetroAchievements." -"

Cela fournit une description détaillée de ce que le joueur fait dans " -"le jeu sur le site web. Si désactivé, le site va seulement afficher le jeu " -"qui est joué.

Cela n'a aucune incidence sur la rich presence de " -"Discord." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4889,7 +4830,7 @@ msgstr "" "peut provoquer des plantages et autres soucis dans certains jeux. (ACTIF = " "Compatible, INACTIF = Débloqué)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4902,7 +4843,7 @@ msgstr "" "Dolphin ne sauvegarde pas votre mot de passe sur votre appareil et utilise " "un jeton d'API pour maintenir votre connection. " -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4912,35 +4853,34 @@ msgstr "" "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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"Active le déblocage des succès dans le mode Encore.

Ce mode ré-active " -"les succès que le joueur a déjà débloqués sur le site pour que le joueur " -"soit informé si il remplit à nouveau les conditions de déblocage, utile pour " -"les critères personnalisés de speedrun ou juste pour le fun." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Activer le déblocage des succès.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"Active le déblocage des succès non officiels ainsi que les officiels." -"

Les succès non officiels peuvent être optionnels ou des succès non " -"terminés qui n'ont pas été reconnus comme officiels par RetroAchievements et " -"peuvent être utiles pour tester ou pour le fun." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4989,7 +4929,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -5003,7 +4943,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -5032,7 +4972,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Active l'étirement du son pour qu'il corresponde à la vitesse de l'émulation." @@ -5070,7 +5010,7 @@ msgstr "" "Rapide)

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5082,7 +5022,7 @@ msgstr "" "désormais disparues telles que la Météo ou les Chaînes Nintendo.\n" "Lisez les Termes de service sur : https://www.wiilink24.com/fr/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5095,7 +5035,7 @@ msgstr "" "compilés.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5122,13 +5062,17 @@ msgstr "" "\n" "Abandon de l'importation." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet ne s'est pas initialisé" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Anglais" @@ -5145,7 +5089,7 @@ msgstr "Entrez l'adresse IP de l'appareil exécutant le client XLink Kai :" msgid "Enter USB device ID" msgstr "Entrez l'identifiant du périphérique USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Entrez l'adresse à surveiller :" @@ -5171,33 +5115,33 @@ msgstr "" "Entrez l'adresse IP et le port de l'instance tapserver à laquelle vous " "voulez vous connecter." -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5210,52 +5154,52 @@ msgstr "Entrer l'adresse du module RSO :" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Erreur" @@ -5272,7 +5216,7 @@ msgstr "Erreur lors de l'ouverture de l'adaptateur : %1" msgid "Error collecting save data!" msgstr "Erreur lors de la récupération des données de sauvegarde !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5288,7 +5232,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Erreur lors de l'obtention de la liste des sessions : %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" "Une erreur est survenue lors de l'ouverture de certains packs de texture" @@ -5389,12 +5333,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphorie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europe" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Ubershaders exclusifs" @@ -5438,11 +5382,11 @@ msgstr "Début d'expression attendu" msgid "Expected variable name." msgstr "Nom de variable attendu." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Expérimental" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exporter toutes les sauvegardes Wii" @@ -5457,7 +5401,7 @@ msgstr "L'exportation a échoué" msgid "Export Recording" msgstr "Exporter l'enregistrement..." -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exporter l'enregistrement..." @@ -5485,14 +5429,14 @@ msgstr "Exporter comme .&gcs..." msgid "Export as .&sav..." msgstr "Exporter comme .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n sauvegarde(s) exportée(s)" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extension" @@ -5505,7 +5449,7 @@ msgstr "Entrée d'extension de mouvement" msgid "Extension Motion Simulation" msgstr "Simulation d'extension de mouvement" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Externe" @@ -5513,35 +5457,35 @@ msgstr "Externe" msgid "External Frame Buffer (XFB)" msgstr "Buffer externe d'image (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Extraire les certificats de la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Extraire l'intégralité du disque..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Extraire l'intégralité de la partition..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extraire le fichier..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Extraire les fichiers..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Extraire les données du Système..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Extraction de tous les fichiers..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Extraction du dossier..." @@ -5550,8 +5494,8 @@ msgstr "Extraction du dossier..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Lecteur FIFO" @@ -5567,11 +5511,11 @@ msgstr "" "Impossible d'ouvrir la carte mémoire :\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Impossible d'ajouter cela au fichier de signature '%1'" @@ -5591,7 +5535,7 @@ msgstr "Impossible d'effacer le Skylander du slot %1 !" msgid "Failed to connect to Redump.org" msgstr "Impossible de se connecter à Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Impossible de se connecter au serveur : %1" @@ -5612,15 +5556,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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Impossible de créer le fichier Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Impossible de créer le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5674,15 +5618,15 @@ msgstr "Échec de l'exportation de %n sur %1 fichier(s) de sauvegarde." msgid "Failed to export the following save files:" msgstr "Échec de l'exportation des fichiers de sauvegarde suivants :" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Impossible d'extraire les certificats depuis la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Impossible d'extraire le fichier." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Impossible d'extraire les données du système." @@ -5704,14 +5648,14 @@ msgstr "Impossible de trouver un ou plusieurs symboles D3D" msgid "Failed to import \"%1\"." msgstr "Impossible d'importer \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5719,7 +5663,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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5730,7 +5674,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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Impossible d'initialiser la base" @@ -5753,11 +5697,11 @@ msgid "Failed to install pack: %1" msgstr "Impossible d'installer le pack %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Impossible d'installer ce titre dans la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5765,8 +5709,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:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Impossible de charger le module RSO à %1" @@ -5778,15 +5722,15 @@ msgstr "Impossible de charger d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Impossible de charger dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Impossible d'ouvrir le fichier de carte '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Impossible de charger le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" @@ -5794,7 +5738,7 @@ msgstr "" "Impossible de charger le fichier Skylander :\n" "%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Impossible de charger l'exécutable en mémoire." @@ -5810,17 +5754,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Impossible de modifier Skylander !" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "Impossible d'ouvrir \"%1\" en écriture." -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "Impossible d'ouvrir \"{0}\" en écriture." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Impossible d'ouvrir \"%1\"" @@ -5828,7 +5772,7 @@ msgstr "Impossible d'ouvrir \"%1\"" msgid "Failed to open Bluetooth device: {0}" msgstr "Impossible d'utiliser l'appareil Bluetooth : {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "Impossible d'ouvrir l'instantané de surveillance de Branche \"%1\"" @@ -5861,15 +5805,15 @@ msgstr "" msgid "Failed to open file." msgstr "Impossible d'ouvrir le fichier." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Impossible d'accéder au serveur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Impossible d'ouvrir le fichier Infinity !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5881,11 +5825,11 @@ msgstr "" "\n" "Le fichier est peut-être déjà en cours d'utilisation sur la base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Impossible d'ouvrir le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5941,27 +5885,23 @@ msgstr "" "Impossible de lire le(s) fichier(s) de sauvegarde sélectionné(s) depuis la " "carte mémoire." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Impossible de lire le fichier Infinity !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -"Impossible de lire le fichier Infinity (%1) :\n" -"%1\n" -"\n" -"Le fichier était trop petit." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Impossible de lire le fichier Skylander !" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5981,7 +5921,7 @@ msgstr "" "Impossible de lire le contenu du fichier :\n" "%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Impossible de lire {0}" @@ -6021,33 +5961,33 @@ msgstr "" "Impossible de réinitialiser le dossier de redirection de NetPlay. Vérifiez " "vos droits d'écriture." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" "Échec de la sauvegarde de l'instantané de la surveillance de la branche " "\"%1\"" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Echec de l'enregistrement du journal FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 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:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Impossible de sauvegarder le fichier de signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 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:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Impossible de sauvegarder vers le fichier de signature '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -6104,19 +6044,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Échec" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Délai d'entrée des commandes égalisé" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Région de remplacement" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Région de remplacement :" @@ -6129,7 +6069,7 @@ msgstr "Rapide" msgid "Fast Depth Calculation" msgstr "Calcul rapide de la profondeur" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -6142,7 +6082,7 @@ msgstr "" msgid "Field of View" msgstr "Champ de vision" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Numéro de figurine :" @@ -6156,7 +6096,7 @@ msgstr "Détails du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Format du fichier" @@ -6164,24 +6104,24 @@ msgstr "Format du fichier" msgid "File Format:" msgstr "Format du fichier :" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Infos du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nom du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Chemin du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Taille du fichier" @@ -6273,7 +6213,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Drapeaux" @@ -6282,12 +6221,12 @@ msgstr "Drapeaux" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Flottant" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Suivre la &branche" @@ -6313,7 +6252,7 @@ msgstr "" "Pour des instructions d'installation, consultez cette page." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forcer 16/9è" @@ -6321,7 +6260,7 @@ msgstr "Forcer 16/9è" msgid "Force 24-Bit Color" msgstr "Forcer les couleurs en 24 bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forcer 4/3" @@ -6353,11 +6292,11 @@ msgstr "Forcer l'écoute du port :" msgid "Force Nearest" msgstr "Forcer au plus proche" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Désactivé car %1 ne prend pas en charge les extensions VS." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Activé car %1 ne prend pas en charge les shaders géométriques." @@ -6390,6 +6329,12 @@ msgstr "" "graphiques.

Dans le doute, cochez cette case." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Format :" @@ -6405,7 +6350,7 @@ msgstr "Avant" msgid "Forward port (UPnP)" msgstr "Faire suivre le port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "1% résultats trouvés pour \"%2\"" @@ -6415,7 +6360,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "%n adresse(s) trouvée(s)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Image %1" @@ -6436,11 +6381,11 @@ msgstr "Accélérer la vitesse d'avancement de l'image" msgid "Frame Advance Reset Speed" msgstr "Réinitialiser la vitesse d'avancement de l'image" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Capture d'image" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Plage d'images :" @@ -6448,7 +6393,7 @@ msgstr "Plage d'images :" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "La/Les capture(s) d'image '{0}' existe déjà. Remplacer ?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Images à enregistrer :" @@ -6468,7 +6413,7 @@ msgstr "%1 fichiers libres" msgid "Free Look Control Type" msgstr "Type de contrôle de la vue libre" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Manette %1 pour la Vue libre" @@ -6503,7 +6448,7 @@ msgstr "Activer la vue libre" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Français" @@ -6522,8 +6467,8 @@ msgid "From" msgstr "De" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "De :" @@ -6531,10 +6476,14 @@ msgstr "De :" msgid "FullScr" msgstr "Plein écran" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Fonction" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Fonctions" @@ -6575,11 +6524,11 @@ msgstr "Volume GBA" msgid "GBA Window Size" msgstr "Taille de la fenêtre GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM changée en \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM désactivée" @@ -6629,7 +6578,7 @@ msgstr "GL_MAX_TEXTURE_SIZE est de {0} - il doit être au minimum de 1024." msgid "GPU Texture Decoding" msgstr "Décodage des textures par GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6644,7 +6593,7 @@ msgstr "" "GPU : ERREUR OGL : Est-ce que votre carte graphique prend en charge OpenGL " "2.0 ?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6652,7 +6601,7 @@ msgstr "" "GPU : ERREUR OGL : Nécessite GL_ARB_map_buffer_range.\n" "GPU : Est-ce que votre carte graphique prend en charge OpenGL 3.0 ?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6660,7 +6609,7 @@ msgstr "" "GPU : ERREUR OGL : Nécessite GL_ARB_sampler_objects.\n" "GPU : Est-ce que votre carte graphique prend en charge OpenGL 3.3 ?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6668,7 +6617,7 @@ msgstr "" "GPU : ERREUR OGL : Nécessite GL_ARB_uniform_buffer_object.\n" "GPU : Est-ce que votre carte graphique prend en charge OpenGL 3.1 ?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6684,7 +6633,7 @@ msgstr "" "GPU : ERREUR OGL : Nécessite OpenGL version 3.\n" "GPU : Est-ce que votre carte graphique prend en charge OpenGL 3 ?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6707,16 +6656,16 @@ msgstr "" msgid "Game" msgstr "Jeu" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartes Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6724,7 +6673,7 @@ msgstr "" "ROM de Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance sur le Port %1" @@ -6753,7 +6702,7 @@ msgid "Game Gamma:" msgstr "Gamma du jeu :" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID du jeu" @@ -6762,15 +6711,15 @@ msgstr "ID du jeu" msgid "Game ID:" msgstr "Identifiant du jeu :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Etat du jeu" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Jeu changé en \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6779,11 +6728,11 @@ msgstr "" "sélectionnez Propriétés, cliquer sur l'onglet Vérifier, et sélectionnez " "Vérifier l'intégrité pour vérifier le hash." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "Le jeu a un numéro de disque différent" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "Le jeu a une révision différente" @@ -6798,7 +6747,7 @@ msgstr "" "Leu jeu a écrasé la sauvegarde d'un autre jeu, corruption de données " "probable. {0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "La région du jeu ne concorde pas" @@ -6818,11 +6767,11 @@ msgstr "Adaptateur GameCube pour Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Adaptateur GameCube pour Wii U sur le Port %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Manette GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Manette GameCube sur le port %1" @@ -6830,11 +6779,11 @@ msgstr "Manette GameCube sur le port %1" msgid "GameCube Controllers" msgstr "Manettes GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Clavier pour GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Clavier pour GameCube sur le Port %1" @@ -6851,7 +6800,7 @@ msgstr "Cartes mémoire de GameCube" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Cartes mémoire de GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "Micro pour GameCube, Slot %1" @@ -6879,7 +6828,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codes Gecko" @@ -6889,35 +6838,35 @@ msgstr "Codes 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Général" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Général et Options" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "Générer un/des code(s) Action Replay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Générer une nouvelle identité pour les statistiques" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Code(s) AR généré(s)." -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Nom des symboles générés à partir de '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Allemand" @@ -6944,7 +6893,7 @@ msgstr "Giant" msgid "Giants" msgstr "Giants" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Mode Golf" @@ -6953,7 +6902,7 @@ msgid "Good dump" msgstr "Dump OK" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Graphismes" @@ -6998,7 +6947,7 @@ msgstr "Vert Gauche" msgid "Green Right" msgstr "Vert Droite" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Grille" @@ -7035,7 +6984,7 @@ msgstr "Post-Processing HDR" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Head" @@ -7067,7 +7016,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "Hex Byte String" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadécimal" @@ -7076,11 +7025,11 @@ msgstr "Hexadécimal" msgid "Hide" msgstr "Cacher" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "Cacher les &contrôles" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Tout masquer" @@ -7092,16 +7041,23 @@ msgstr "Masquer les sessions en cours" msgid "Hide Incompatible Sessions" msgstr "Masquer les sessions incompatibles" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Masquer les GBA distantes" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Haute" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "La meilleure" @@ -7124,7 +7080,7 @@ msgstr "Hôte" msgid "Host Code:" msgstr "Code de l'hôte :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Autorité de l'hôte sur les entrées" @@ -7132,7 +7088,7 @@ msgstr "Autorité de l'hôte sur les entrées" msgid "Host Size" msgstr "Taille de l'hôte" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -7145,11 +7101,11 @@ msgstr "" "Convient pour des jeux casual de 3 joueurs et plus, peut-être sur des " "connexions instables ou avec une forte latence." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Autorité de l'hôte sur les entrées désactivée" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Autorité de l'hôte sur les entrées activée" @@ -7161,7 +7117,7 @@ msgstr "Hôte avec Netplay" msgid "Hostname" msgstr "Nom de l'hôte" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Paramètres des Raccouris clavier" @@ -7171,11 +7127,11 @@ msgstr "Paramètres des Raccouris clavier" msgid "Hotkeys" msgstr "Raccourcis clavier" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Les touches de raccourci requièrent que la fenêtre soit sélectionnée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Ubershaders hybrides" @@ -7234,12 +7190,12 @@ msgstr "Adresse IP :" msgid "IPL Settings" msgstr "Paramètres IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilité de l'IR :" @@ -7281,7 +7237,7 @@ msgstr "" msgid "Icon" msgstr "Icône" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7292,7 +7248,7 @@ msgstr "" "Pratique pour les jeux à tour de rôle qui ont des contrôles demandant de la " "précision, comme le golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Génération d'une identité" @@ -7321,7 +7277,7 @@ msgstr "" "Cette autorisation peut être révoquée à tout moment via les réglages de " "Dolphin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7341,7 +7297,7 @@ msgstr "" "Si décochée, l'état de la connexion de la manette émulée est lié\n" "à l'état de la connexion du périphérique physique par défaut (s'il existe)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7352,7 +7308,7 @@ msgstr "" "de fifologs, mais peut être utile pour tester.

Dans " "le doute, décochez cette case." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7368,7 +7324,7 @@ msgstr "" msgid "Ignore" msgstr "Ignorer" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "Ignorer les its de Branche d'&Apploader" @@ -7410,7 +7366,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Présenter immédiatement l'XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7425,7 +7381,7 @@ msgstr "" "abaissant légèrement les performances.

Dans le " "doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Importer une sauvegarde BootMii de la NAND..." @@ -7440,15 +7396,15 @@ msgstr "L'importation a échoué" msgid "Import Save File(s)" msgstr "Importer le(s) fichier(s) de sauvegarde" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importer une sauvegarde Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importation de la sauvegarde de la NAND..." -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7457,6 +7413,15 @@ msgstr "" "Importation de la sauvegarde de la NAND...\n" "Temps écoulé : %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "En cours ?" @@ -7540,7 +7505,7 @@ msgstr "Rotation incrémentale" msgid "Incremental Rotation (rad/sec)" msgstr "Rotation incrémentale (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Créateur de figurine Infinity" @@ -7549,7 +7514,7 @@ msgstr "Créateur de figurine Infinity" msgid "Infinity Manager" msgstr "Gestionnaire Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Objet Infinity (*.bin);;" @@ -7572,12 +7537,12 @@ msgstr "Information" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Information" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Désactiver l'écran de veille pendant l'émulation" @@ -7586,11 +7551,11 @@ msgid "Inject" msgstr "Injecter" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Entrée" @@ -7604,23 +7569,19 @@ msgstr "Force d'appui requise pour l'activation." msgid "Input strength to ignore and remap." msgstr "Force de l'entrée à ignorer et remapper." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "Insérer &BLR" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "Insérer &BLR au démarrage" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "Insérer &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Insérer &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Insérer une carte SD" @@ -7633,11 +7594,11 @@ msgstr "Installer" msgid "Install Partition (%1)" msgstr "Partition d'installation (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Installer la mise à jour" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Installer un WAD..." @@ -7645,13 +7606,13 @@ msgstr "Installer un WAD..." msgid "Install to the NAND" msgstr "Installer dans la NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruction" @@ -7660,7 +7621,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Point d'arrêt instruction" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instruction :" @@ -7669,7 +7630,7 @@ msgstr "Instruction :" msgid "Instruction: %1" msgstr "Instruction : %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7690,19 +7651,19 @@ msgstr "Intensité" msgid "Interface" msgstr "Interface" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Erreur interne LZ4 - Tentative de décompression de {0} octets" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Erreur interne LZ4 - échec de la compression" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Erreur interne LZ4 - échec de la décompression ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" "Erreur interne LZ4 - la taille du paquet ne correspond pas ({0} / {1}))" @@ -7716,7 +7677,7 @@ msgstr "Erreur interne LZO - échec de la compression" msgid "Internal LZO Error - decompression failed" msgstr "Erreur LZO interne - échec de la décompression" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7724,7 +7685,7 @@ msgstr "" "Erreur interne LZO - échec de la décompression ({0}) ({1})\n" "Impossible de récupérer les infos de version des sauvegardes d'état périmées." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7732,7 +7693,7 @@ msgstr "" "Erreur interne LZO - impossible d'analyser de cookie de la version " "décompressée et la longueur du texte de la version ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7749,7 +7710,7 @@ msgstr "Résolution interne" msgid "Internal Resolution:" msgstr "Résolution interne :" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Erreur interne lors de la génération du code AR." @@ -7757,7 +7718,7 @@ msgstr "Erreur interne lors de la génération du code AR." msgid "Interpreter (slowest)" msgstr "Interpréteur (TRÈS lent)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7773,7 +7734,7 @@ msgstr "JSON invalide reçu du service d'auto-update : {0}" msgid "Invalid Mixed Code" msgstr "Code mixte non valide" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Pack %1 non valide indiqué : %2" @@ -7782,11 +7743,11 @@ msgstr "Pack %1 non valide indiqué : %2" msgid "Invalid Player ID" msgstr "ID joueur non valide" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Adresse du module RSO non valide : %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Pile d'exécution non valide" @@ -7807,7 +7768,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Entrée non valide pour le champ \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Entrée indiquée non valide" @@ -7823,19 +7784,19 @@ msgstr "Paramètres de recherche non valides." msgid "Invalid password provided." msgstr "Mot de passe incorrect." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Fichier d'enregitrement non valide" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Paramètres de recherche non valide (aucun objet sélectionné)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Texte de recherche non valide (impossible à convertir en nombre)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Texte de recherche non valide (seules les longueurs de chaînes de caractères " @@ -7845,13 +7806,13 @@ msgstr "" msgid "Invalid title ID." msgstr "ID du titre non valide." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Adresse à surveiller non valide : %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italien" @@ -7864,11 +7825,11 @@ msgstr "Italie" msgid "Item" msgstr "Objet" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7876,47 +7837,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "Blocs JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7928,16 +7889,16 @@ msgstr "Recompilateur JIT pour ARM64 (recommandé)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilateur JIT pour x86-64 (recommandé)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "Cache de registre JIT désactivé" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7946,16 +7907,16 @@ msgstr "" "ne devrait jamais arriver. Veuillez transmettre cet incident au suivi de " "bugs. Dolphin va maintenant quitter." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "JIT n'est pas actif" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japon" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonais" @@ -7974,12 +7935,12 @@ msgstr "" "Kaos est le seul méchant pour ce trophée et est toujours débloqué. Il n'est " "donc pas utile d'éditer quoi que ce soit !" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Continuer l'exécution" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Toujours au premier plan" @@ -8013,16 +7974,16 @@ msgstr "Touches" msgid "KiB" msgstr "Kio" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Sortir le joueur" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Corée" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coréen" @@ -8043,7 +8004,7 @@ msgstr "C&harger une ROM..." msgid "L-Analog" msgstr "L Analog." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "Sauvegarde LR" @@ -8051,7 +8012,11 @@ msgstr "Sauvegarde LR" msgid "Label" msgstr "Étiquette" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Dernière valeur" @@ -8065,23 +8030,23 @@ msgstr "Dernier emplacement :" msgid "Last reset:" msgstr "Dernière réinitialisation :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Latence :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Latence : ~10ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Latence : ~20ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Latence : ~40ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Latence : ~80ms" @@ -8089,7 +8054,7 @@ msgstr "Latence : ~80ms" msgid "Launching these titles may also fix the issues." msgstr "Ce souci peut être corrigé en démarrant ces titres." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Tableaux de classements" @@ -8097,7 +8062,7 @@ msgstr "Tableaux de classements" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -8108,7 +8073,7 @@ msgstr "Gauche" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Stick Gauche" @@ -8185,11 +8150,11 @@ msgstr "Lumière" msgid "Limit Chunked Upload Speed:" msgstr "Limite de vitesse d'envoi de parcelles de données :" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Colonnes de la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Liste" @@ -8198,30 +8163,30 @@ msgid "Listening" msgstr "Écoute" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Charger" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Charger un fichier de carte de &défauts..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Charger un &Autre fichier de carte..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "Charger la surveillance de Branche &depuis..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "Charger l'instantané de surveillance de Branche" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Charger textures personnalisées" @@ -8229,11 +8194,11 @@ msgstr "Charger textures personnalisées" msgid "Load File" msgstr "Charger le fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Charger le Menu Principal de la GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Charger uniquement les données de sauvegarde de l'hôte." @@ -8339,23 +8304,23 @@ msgstr "Charger l'état du Slot 8" msgid "Load State Slot 9" msgstr "Charger l'état du Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Charger un état depuis un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Charge l'état depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Charger un état depuis un slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Charger le Menu Système Wii %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Charger et enregistrer les données de sauvegarde chez l'hôte." @@ -8363,28 +8328,28 @@ msgstr "Charger et enregistrer les données de sauvegarde chez l'hôte." msgid "Load from Selected Slot" msgstr "Charger depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Chargement depuis le Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Charger un fichier de carte" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Charger le menu %1 du système vWii" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Charger..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Symboles chargés à partir de '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8395,7 +8360,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8404,20 +8369,28 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Local" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Verrouiller le curseur de la souris" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Verrouillé" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Journal" @@ -8426,19 +8399,19 @@ msgstr "Journal" msgid "Log Configuration" msgstr "Configuration de la journalisation" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Connexion" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Déconnexion" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Noter le temps de rendu dans un fichier" @@ -8450,11 +8423,11 @@ msgstr "Types de journaux" msgid "Logger Outputs" msgstr "Sorties des journalisations" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Échec de la connection" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8465,20 +8438,20 @@ msgstr "" "performances de Dolphin.

Dans le doute, décochez " "cette case." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Boucle" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Connexion au serveur NetPlay perdue !" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Faible" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "La moins bonne" @@ -8490,7 +8463,7 @@ msgstr "MD5 :" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -8540,7 +8513,7 @@ msgstr "Vérifiez qu'il y a un Skylander dans le slot %1 !" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Concepteur" @@ -8562,16 +8535,16 @@ msgstr "" "

\n" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Gestion de NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Échantillonnage manuel de la texture" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mappage" @@ -8583,11 +8556,11 @@ msgstr "ROM masque" msgid "Match Found" msgstr "Correspondance trouvée" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Tampon maxi :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Taille maximum du tampon changée à %1" @@ -8596,7 +8569,7 @@ msgstr "Taille maximum du tampon changée à %1" msgid "Maximum tilt angle." msgstr "Angle maximum d'inclinaison." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Ceci peut ralentir le Menu Wii et quelques jeux." @@ -8617,7 +8590,7 @@ msgstr "Point d'arrêt mémoire" msgid "Memory Card" msgstr "Carte mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Gestionnaire de cartes mémoires" @@ -8649,7 +8622,7 @@ msgstr "" "MemoryCard : l'écriture a été appelée avec une mauvaise adresse de " "destination ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8667,7 +8640,7 @@ msgstr "Mio" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Micro" @@ -8676,15 +8649,15 @@ msgstr "Micro" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Divers" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Paramètres divers" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "Contrôles divers" @@ -8698,7 +8671,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Non concordance entre les structures de données internes." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8725,7 +8698,7 @@ msgstr "Adaptateur modem (tapserver)" msgid "Modifier" msgstr "Modif." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8745,8 +8718,8 @@ msgstr "Modifier le slot" msgid "Modifying Skylander: %1" msgstr "Modification de Skylander : %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Modules trouvés : %1" @@ -8754,7 +8727,7 @@ msgstr "Modules trouvés : %1" msgid "Money:" msgstr "Argent :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8766,11 +8739,11 @@ msgstr "Ombres monoscopiques" msgid "Monospaced Font" msgstr "Police mono-espacée." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Entrée des mouvements" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Simulation des mouvements" @@ -8779,26 +8752,10 @@ msgstr "Simulation des mouvements" msgid "Motor" msgstr "Vibreur" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Visibilité du curseur de la souris" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" -"Le curseur de la souris est masqué lorsqu'inactif, et réapparaît lors d'un " -"mouvent de la souris." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Le curseur de la souris sera toujours visible." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" -"Le curseur de la souris ne sera jamais visible lorsqu'un jeu sera en cours." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8809,7 +8766,7 @@ msgstr "Déplacement" msgid "Movie" msgstr "Film" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8817,7 +8774,7 @@ msgstr "" "Le film {0} indique qu'il démarre à partir d'un état de sauvegarde, mais {1} " "n'existe pas. Le film ne va probablement pas être synchro !" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "Plusieurs erreurs lors de la génération de codes AR." @@ -8830,10 +8787,10 @@ msgstr "Multiplicateur" msgid "N&o to All" msgstr "Non à &tout" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Vérification de la NAND" @@ -8842,8 +8799,8 @@ msgstr "Vérification de la NAND" msgid "NKit Warning" msgstr "Avertissement pour NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8852,7 +8809,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8875,8 +8832,8 @@ msgstr "" "

Dans le doute, laissez la valeur à 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8919,7 +8876,7 @@ msgstr "Résolution native (640x528)" msgid "Native GCI File" msgstr "Fichier GCI natif" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8935,7 +8892,7 @@ msgstr "Configuration de NetPlay" msgid "Netherlands" msgstr "Pays-bas" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8944,7 +8901,7 @@ msgstr "" "toutes les données de sauvegardes créées ou modifiées pendant la session " "Netplay seront faites chez l'hôte." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8954,7 +8911,7 @@ msgstr "" "toute sauvegarde de données créée ou modifiée pendant la session Netplay " "sera supprimée à la fin de la session." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8963,7 +8920,7 @@ msgstr "" "sauvegardes créées seront supprimées à la fin de la session Netplay." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Réseau" @@ -8971,16 +8928,16 @@ msgstr "Réseau" msgid "Network dump format:" msgstr "Format d'enregistrement du réseau :" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Jamais" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Ne jamais mettre à jour" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nouveau" @@ -9005,7 +8962,7 @@ msgstr "Nouvelle recherche" msgid "New Tag..." msgstr "Nouveau tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Nouvelle identité générée." @@ -9022,7 +8979,7 @@ msgstr "Nouveau tag" msgid "Next Game Profile" msgstr "Profil de jeu suivant" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Rechercher le suivant" @@ -9068,7 +9025,7 @@ msgstr "Aucune compression" msgid "No Match" msgstr "Aucune correspondance trouvée" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Aucune donnée sauvegardée" @@ -9076,12 +9033,12 @@ msgstr "Aucune donnée sauvegardée" msgid "No data to modify!" msgstr "Pas de donnée à modifier !" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Aucune description disponible" @@ -9093,7 +9050,7 @@ msgstr "Pas d'erreur." msgid "No extension selected." msgstr "Aucune extension sélectionnée" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Aucun fichier chargé / enregistré" @@ -9101,7 +9058,7 @@ msgstr "Aucun fichier chargé / enregistré" msgid "No game is running." msgstr "Aucun jeu en fonctionnement." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Aucun jeu en fonctionnement." @@ -9114,11 +9071,11 @@ msgstr "Aucun mod de graphique sélectionné" msgid "No input" msgstr "Aucune entrée" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Aucun souci n'a été détecté" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Aucun jeu correspondant n'a été trouvé" @@ -9145,7 +9102,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Aucun profil trouvé pour les réglages du jeu '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Aucun enregistrement chargé." @@ -9164,10 +9121,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Aucune" @@ -9179,7 +9136,7 @@ msgstr "Amérique du Nord" msgid "Not Set" msgstr "Non défini" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" "Tous les joueurs ne possèdent pas ce jeu. Voulez-vous quand même démarrer ?" @@ -9204,7 +9161,7 @@ msgstr "" "Pas assez de fichiers libres sur la carte mémoire cible. Au moins %n " "fichier(s) libre(s) requis." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Introuvable" @@ -9250,26 +9207,26 @@ msgstr "Nombre de secouements par seconde" msgid "Nunchuk" msgstr "Nunchuck" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Accéléromètre du Nunchuck" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Boutons pour le Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Stick du Nunchuk" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Objet %1" @@ -9321,7 +9278,7 @@ msgstr "Objet 4 : X" msgid "Object 4 Y" msgstr "Objet 4 : Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Plage d'objets :" @@ -9342,11 +9299,11 @@ msgstr "Offset" msgid "On" msgstr "Marche" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Si mouvement" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9356,7 +9313,7 @@ msgstr "" "et les shaders vertex pour étendre des points et des lignes, utiliser le " "shader vertex. Peut affecter les performances.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9383,7 +9340,7 @@ msgstr "" "fonction et les chemins de code conditionnel qui ne sont empruntés que " "lorsqu'une action est faite dans le logiciel émulé." -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Documentation en ligne" @@ -9391,7 +9348,7 @@ msgstr "&Documentation en ligne" msgid "Only Show Collection" msgstr "Afficher uniquement la Collection" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9399,7 +9356,7 @@ msgstr "" "Uniquement ajouter les symboles avec le préfixe :\n" "(Vide pour tous les symboles) " -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9418,7 +9375,7 @@ msgstr "Ouvrir" msgid "Open &Containing Folder" msgstr "Ouvrir l'emplacement du fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Ouvrir le dossier &utilisateur" @@ -9427,7 +9384,7 @@ msgstr "Ouvrir le dossier &utilisateur" msgid "Open Directory..." msgstr "Ouvrir le dossier..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Charger le journal FIFO" @@ -9493,34 +9450,34 @@ msgstr "Orange" msgid "Orbital" msgstr "Orbite" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "Origine" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "Origine maxi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "Origine mini" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "Symbole d'origine" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "Origine et destination" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9535,11 +9492,11 @@ msgstr "Autre partition (%1)" msgid "Other State Hotkeys" msgstr "Autres raccourcis clavier" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Autres manipulations des états" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Autres jeux..." @@ -9555,16 +9512,16 @@ msgstr "Rééchantillonnage de la sortie" msgid "Output Resampling:" msgstr "Rééchantillonnage de la sortie :" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Écrasé" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Jouer l'enregistrement..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9577,11 +9534,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "Niveau de compression en PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "Niveau de compression en PNG :" @@ -9593,7 +9550,7 @@ msgstr "Fichier d'image PNG (*.png);; Tous le fichiers (*)" msgid "PPC Size" msgstr "Taille PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Hôte" @@ -9627,7 +9584,7 @@ msgstr "Passive" msgid "Passthrough a Bluetooth adapter" msgstr "Utiliser un adaptateur Bluetooth tiers" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Mot de passe" @@ -9665,15 +9622,15 @@ msgstr "Dossiers" msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "Mettre en pause la surveillance de la branche" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pause à la fin du Film" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pause lorsque la fenêtre n'est plus sélectionnée" @@ -9693,6 +9650,12 @@ msgstr "" "ci est la même qu'activer le MMU.

Dans le doute, " "décochez cette case." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9712,7 +9675,7 @@ msgstr "Vitesse maximale des mouvements de va-et-vient." msgid "Per-Pixel Lighting" msgstr "Eclairage par pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Effectuer une mise à jour en ligne" @@ -9720,15 +9683,15 @@ msgstr "Effectuer une mise à jour en ligne" msgid "Perform System Update" msgstr "Exécuter une mise à jour du Système" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Fenêtre d'échantillon de performances (en ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Fenêtre d'échantillon de performances (en ms) :" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Statistiques de performances" @@ -9746,11 +9709,11 @@ msgstr "Espace d'adresse physique" msgid "PiB" msgstr "Pio" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Choisissez une police pour le débogage" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9763,7 +9726,7 @@ msgid "Pitch Up" msgstr "Monter" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plateforme" @@ -9771,7 +9734,7 @@ msgstr "Plateforme" msgid "Play" msgstr "Démarrer" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Lecture / Enregistrement" @@ -9783,40 +9746,40 @@ msgstr "Jouer l'enregistrement..." msgid "Play Set/Power Disc" msgstr "Jouer au plateau / Mettre en route le disque" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Options de lecture" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Joueur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Joueur 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Joueur Un Capacité Une" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Joueur Un Capacité Deux" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Joueur Deux" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Joueur Deux Capacité Une" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Joueur Deux Capacité Deux" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Joueurs" @@ -9835,7 +9798,7 @@ msgstr "" "Veuillez changer le paramètre de \"SyncOnSkipIdle\" pour \"True\" ! Il est " "actuellement désactivé, ce qui fait que ce problème va probablement arriver." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9853,7 +9816,7 @@ msgid "Point (Passthrough)" msgstr "Pointage (en direct)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Port %1" @@ -9870,7 +9833,7 @@ msgstr "Port :" msgid "Portal Slots" msgstr "Slots de portail" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Possible désynchronisation détectée : %1 peut s'être désynchronisé à l'image " @@ -9888,24 +9851,32 @@ msgstr "Effet de Post-processing :" msgid "Post-Processing Shader Configuration" msgstr "Configuration du post-traitement des Shaders" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Préférer VS pour l'extension Point/Ligne" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Précharger textures personnalisées" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Fin de film prématurée dans PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Fin de film prématurée dans PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Fin de film prématurée dans PlayWiimote. {0} > {1}" @@ -9930,7 +9901,7 @@ msgstr "Appuyer sur le bouton Sync" msgid "Pressure" msgstr "Pression" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9950,7 +9921,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Profil de jeu précédent" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Rechercher le précédent" @@ -9961,7 +9932,7 @@ msgstr "Profil précédent" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitive %1" @@ -10001,7 +9972,7 @@ msgstr "" "Des problèmes d'une importance moyenne ont été trouvés. Tout ou partie du " "jeu peuvent ne pas fonctionner correctement." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -10010,23 +9981,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Progression" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Publique" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Purger le cache de la liste de jeu" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Placez les ROM d'IPL dans User/GC/." @@ -10046,7 +10023,7 @@ msgstr "La Qualité de Service (QoS) n'a pas pu être activée." msgid "Quality of Service (QoS) was successfully enabled." msgstr "La Qualité de Service (QoS) a été activée avec succès." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Qualité du décodeur Dolby Pro Logic II. Plus la latence est haute, meilleure " @@ -10055,11 +10032,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Question" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Quitter" @@ -10076,19 +10053,19 @@ msgstr "R" msgid "R-Analog" msgstr "R Analog." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "PRÊT" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "Modules RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "Détection automatique du RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "EN EXÉCUTION" @@ -10109,7 +10086,7 @@ msgstr "Fin de zone :" msgid "Range Start: " msgstr "Début de zone :" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Rang %1" @@ -10117,16 +10094,17 @@ msgstr "Rang %1" msgid "Raw" msgstr "Raw (brut)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "Résolution interne brute" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Rem&placer l'instruction" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Lire" @@ -10165,8 +10143,8 @@ msgstr "Wiimote physique" msgid "Received invalid Wii Remote data from Netplay." msgstr "Données invalides de Wiimote reçues depuis le Netplay." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "Hits récents" @@ -10175,23 +10153,23 @@ msgstr "Hits récents" msgid "Recenter" msgstr "Recentrer" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Enregistrer" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Enregistrer les entrées" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Enregistrement" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Options d'enregistrement" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Enregistrement..." @@ -10231,7 +10209,7 @@ msgstr "État de Redump.org :" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10264,7 +10242,7 @@ msgid "Refreshing..." msgstr "Actualisation..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Région" @@ -10285,7 +10263,11 @@ msgstr "Entrée relative" msgid "Relative Input Hold" msgstr "Maintien de l'entrée relative" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Me rappeler plus tard" @@ -10293,7 +10275,7 @@ msgstr "Me rappeler plus tard" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Retirer" @@ -10324,20 +10306,20 @@ msgstr "" "l'espace lors de la conversion en ISO (sauf si vous compressez ensuite le " "fichier ISO en ZIP par exemple). Voulez-vous tout de même continuer ?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Renommer le symbole" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Fenêtre de rendu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Rendu dans la fenêtre principale" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10353,10 +10335,16 @@ msgstr "Rapport : GCIFolder écrit vers le bloc non alloué {0:#x}" msgid "Request to Join Your Party" msgstr "Quelqu'un demande à rejoindre votre partie" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10366,7 +10354,7 @@ msgstr "Reset" msgid "Reset All" msgstr "Tout réinitialiser" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Réinitialiser Ignorer le gestionnaire de panique" @@ -10398,7 +10386,7 @@ msgstr "Réinitialiser la vue" msgid "Reset all saved Wii Remote pairings" msgstr "Réinitialiser tous les jumelages sauvegardés des Wiimotes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "Type de résolution :" @@ -10410,7 +10398,7 @@ msgstr "Gestionnaire de Packs de Ressources" msgid "Resource Pack Path:" msgstr "Dossier du Pack de Ressources :" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Redémarrage requis" @@ -10418,11 +10406,11 @@ msgstr "Redémarrage requis" msgid "Restore Defaults" msgstr "Restaurer les valeurs par défaut" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Restaurer l'instruction" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Réessayer" @@ -10431,7 +10419,7 @@ msgstr "Réessayer" msgid "Return Speed" msgstr "Vitesse du retour" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Révision" @@ -10443,7 +10431,7 @@ msgstr "Révision : %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10454,7 +10442,7 @@ msgstr "Droite" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Stick Droit" @@ -10490,11 +10478,11 @@ msgstr "Enrouler vers la gauche" msgid "Roll Right" msgstr "Enrouler vers la droite" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ID Room" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Rotation" @@ -10517,27 +10505,31 @@ msgstr "" "utilisez la résolution interne native.

Dans le " "doute, décochez cette case." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10550,7 +10542,7 @@ msgstr "" msgid "Rumble" msgstr "Vibreur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Exécu&ter jusqu'ici" @@ -10558,15 +10550,15 @@ msgstr "Exécu&ter jusqu'ici" msgid "Run GBA Cores in Dedicated Threads" msgstr "Exécuter les cœurs de GBA sur des threads dédiés" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Exécuter jusqu'à" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Exécuter jusqu'à (ignorer les points d'arrêts)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Exécuter jusqu'à ce que ce soit atteint (ignorer les points d'arrêts)" @@ -10574,23 +10566,23 @@ msgstr "Exécuter jusqu'à ce que ce soit atteint (ignorer les points d'arrêts) msgid "Russia" msgstr "Russie" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "Carte SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "Taille du fichier de la carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Image de carte SD (*.raw);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "Réglages de la carte SD" @@ -10598,7 +10590,7 @@ msgstr "Réglages de la carte SD" msgid "SD Root:" msgstr "Racine de la carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "Dossier de synchronisation SD :" @@ -10633,11 +10625,11 @@ msgstr "Contexte SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Sau&vegarder le code" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Sau&vegarder l'état" @@ -10647,9 +10639,9 @@ msgid "Safe" msgstr "Sûr " #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10659,25 +10651,25 @@ msgstr "Sauver" msgid "Save All" msgstr "Tout enregistrer" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "Sauvegarder la surveillance de Branche &sous..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "Sauvegarder l'instantané de surveillance de Branche" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Exportation de la sauvegarde" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Enregistrer le journal FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Sauvegarder le fichier sous" @@ -10691,11 +10683,11 @@ msgstr "Sauvegarde du jeu" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Fichiers de sauvegarde de jeu (*.sav);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Importation de la sauvegarde" @@ -10707,7 +10699,7 @@ msgstr "Sauvegarder l'ancien état" msgid "Save Preset" msgstr "Enregistrer le préréglage" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Sauvegarder le fichier d'enregistrement sous" @@ -10757,23 +10749,23 @@ msgstr "Sauvegarder l'état vers le Slot 8" msgid "Save State Slot 9" msgstr "Sauvegarder l'état vers le Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Sauvegarder l'état dans un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Sauvegarder l'état dans le slot le plus ancien" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Sauvegarder l'état dans l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Sauvegarder l'état dans le slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Sauvegarder la carte des symboles &sous..." @@ -10781,7 +10773,7 @@ msgstr "Sauvegarder la carte des symboles &sous..." msgid "Save Texture Cache to State" msgstr "Enreg. le cache de texture dans la sauveg. de l'état" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Sauvegarder et Charger un état" @@ -10793,11 +10785,11 @@ msgstr "Enregistrer sous le préréglage..." msgid "Save as..." msgstr "Enregistrer sous..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Sauvegarder le fichier de sortie combinée sous" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10811,11 +10803,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Placer la sauvegarde dans le même dossier que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Sauvegarder le fichier de carte" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Sauvegarder le fichier de signature" @@ -10823,11 +10815,11 @@ msgstr "Sauvegarder le fichier de signature" msgid "Save to Selected Slot" msgstr "Sauvegarder vers l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Sauvegarder dans le slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Sauvegarder..." @@ -10841,7 +10833,7 @@ msgstr "" msgid "Saves:" msgstr "Sauvegardes :" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" "Le film de sauvegarde d'état {0} est corrompu, arrêt de l'enregistrement du " @@ -10860,8 +10852,8 @@ msgid "ScrShot" msgstr "Capt écran" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Rechercher" @@ -10870,7 +10862,7 @@ msgstr "Rechercher" msgid "Search Address" msgstr "Rechercher l'adresse" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Chercher l'objet actuel" @@ -10890,7 +10882,7 @@ msgstr "" "La recherche n'est pour l'instant pas possible dans l'espace d'adresse " "virtuelle. Exécutez le jeu pendant un moment et essayez à nouveau." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Rechercher une instruction" @@ -10898,7 +10890,7 @@ msgstr "Rechercher une instruction" msgid "Search games..." msgstr "Rechercher des jeux..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Rechercher une instruction" @@ -10933,7 +10925,7 @@ msgstr "Sélectionner" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10946,23 +10938,23 @@ msgid "Select Dump Path" msgstr "Sélectionner le dossier pour le dump :" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Sélectionner le dossier d'exportation" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Sélectionner le fichier de Figurine" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Sélectionner le BIOS de la GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Sélectionner la ROM GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Sélectionner le dossier des sauvegardes GBA" @@ -10990,7 +10982,7 @@ msgstr "Sélectionner la collection Skylander" msgid "Select Skylander File" msgstr "Sélectionnez un fichier Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Sélectionner le slot %1 - %2" @@ -10998,7 +10990,7 @@ msgstr "Sélectionner le slot %1 - %2" msgid "Select State" msgstr "Sélectionner l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Sélectionner l'emplacement de l'état" @@ -11059,13 +11051,13 @@ msgstr "Sélectionner un dossier" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Sélectionner un fichier" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Sélectionnez un dossier à synchroniser avec l'image de la carte SD" @@ -11073,7 +11065,7 @@ msgstr "Sélectionnez un dossier à synchroniser avec l'image de la carte SD" msgid "Select a Game" msgstr "Sélectionner un Jeu" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Sélectionner une image de carte SD" @@ -11085,7 +11077,7 @@ msgstr "Sélectionner un fichier" msgid "Select a game" msgstr "Sélectionner un jeu" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Sélectionner un titre à installer dans la NAND" @@ -11093,11 +11085,11 @@ msgstr "Sélectionner un titre à installer dans la NAND" msgid "Select e-Reader Cards" msgstr "Sélectionner les cartes e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Sélectionner l'adresse du module RSO :" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Sélectionnez le fichier d'enregistrement à lire" @@ -11105,12 +11097,12 @@ msgstr "Sélectionnez le fichier d'enregistrement à lire" msgid "Select the Virtual SD Card Root" msgstr "Sélectionner le dossier racine de la carte SD virtuelle" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Sélectionner le fichier des clés (dump OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Sélectionner le fichier à enregistrer" @@ -11133,16 +11125,16 @@ msgstr "Le profil de contrôleur sélectionné n'existe pas" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Le jeu sélectionné ne figure pas dans la liste des jeux !" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Pile d'appels du thread sélectionné" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Contexte du thread sélectionné" @@ -11162,7 +11154,7 @@ msgstr "" "Sélectionne la carte graphique à utiliser.

Dans le " "doute, sélectionnez la première." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11180,6 +11172,24 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"Sélectionne la façon dont l'enregistrement des images (vidéos) et captures " +"d'écran seront capturées.
Si le jeu ou la fenêtre change de taille durant " +"l'enregistrement, plusieurs fichiers vidéos peuvent être créés.
Notez que " +"la correction de couleur et le recadrage sont toujours ignorés par les " +"captures.

Résolution de la fenêtre : utilise la résolution de " +"la fenêtre de sortie (sans les barres noires).
Ceci est une option simple " +"d'enregistrement qui va capturer l'image plus ou moins telle que vous la " +"voyez.
Résolution interne corrigée par le rapport hauteur/largeur : utilise la résolution interne (taille du XFB), et la corrige par le " +"rapport hauteur/largeur cible.
Cette option va invariablement faire le " +"vidage à la résolution interne sans tenir compte de la manière dont l'image " +"est affichée pendant l'enregistrement.
Résolution interne brute : " +"utilise la résolution interne (taille du XFB) sans la corriger avec le ratio " +"cible.
Ceci fera un vidage propre sans aucune correction du rapport " +"hauteur/largeur pour que les utilisateurs puissent avoir une image aussi " +"fidèle que possible pour utiliser un logiciel d'édition externe." +"

Dans le doute, utilisez \"Résolution interne " +"corrigée par le rapport hauteur/largeur." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" @@ -11201,7 +11211,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11241,7 +11251,7 @@ msgstr "" "être utilisé en temps normal.

Dans le doute, " "sélectionnez Auto." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11258,11 +11268,11 @@ msgstr "" "convient le mieux.

Dans le doute, sélectionnez " "OpenGL." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Envoyer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Position de la Sensor Bar :" @@ -11294,6 +11304,10 @@ msgstr "Le serveur a rejeté la tentative traversal" msgid "Set &Value" msgstr "Définir &Valeur" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11311,23 +11325,23 @@ msgstr "Sélectionner un fichier de carte mémoire pour le Slot A" msgid "Set memory card file for Slot B" msgstr "Sélectionner un fichier de carte mémoire pour le Slot B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Définir l'adresse de &fin du symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Définir la taille du &symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Définir l'adresse de fin du symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Entrer la taille du symbole (%1) :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11337,11 +11351,19 @@ msgstr "" "pour les jeux.\n" "Peut ne pas fonctionner pour tous les jeux." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Définit la langue du système de la Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11349,6 +11371,13 @@ msgstr "" "Définit la latence en millisecondes. Des valeurs élevées peuvent réduire le " "craquement du son. Pour certains moteurs uniquement." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11358,13 +11387,13 @@ msgstr "" "Wii) MEM2 dans l'adressage de la mémoire virtuelle. Ceci fonctionnera pour " "la grande majorité des jeux." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Réglages" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory : Impossible de créer le fichier setting.txt" @@ -11372,7 +11401,7 @@ msgstr "SetupWiiMemory : Impossible de créer le fichier setting.txt" msgid "Severity" msgstr "Importance" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Compilation de Shader" @@ -11394,32 +11423,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Manette Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Afficher le % de vitesse" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Afficher le &journal" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Afficher la barre d'&outils" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Affiche le titre en cours dans le nom de la fenêtre" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Tout afficher" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Afficher Australie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Afficher le jeu en cours sur Discord" @@ -11428,7 +11457,7 @@ msgstr "Afficher le jeu en cours sur Discord" msgid "Show Disabled Codes First" msgstr "Afficher d'abord les codes désactivés" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Afficher les ELF/DOL" @@ -11437,31 +11466,31 @@ msgstr "Afficher les ELF/DOL" msgid "Show Enabled Codes First" msgstr "Afficher d'abord les codes activés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Afficher le nombre de FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Afficher le compteur d'images" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Afficher le temps de rendu par image" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Afficher France" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Afficher GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Afficher Allemagne" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Afficher le Mode golf en surimpression" @@ -11469,23 +11498,23 @@ msgstr "Afficher le Mode golf en surimpression" msgid "Show Infinity Base" msgstr "Afficher la Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Afficher les entrées du contrôleur" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Afficher Italie" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Afficher JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Afficher Corée" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Afficher le compteur de lags" @@ -11493,27 +11522,27 @@ msgstr "Afficher le compteur de lags" msgid "Show Language:" msgstr "Afficher en :" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Afficher la config. de journalisation" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Afficher les messages NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Afficher le ping du NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Afficher Pays-bas" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Afficher les messages informatifs" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Afficher PAL" @@ -11522,27 +11551,27 @@ msgstr "Afficher PAL" msgid "Show PC" msgstr "Afficher PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Afficher les graphiques de performance" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Afficher les plateformes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "Afficher les statistiques de projection" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Afficher les régions" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Afficher le compteur de réenregistrements" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Afficher Russie" @@ -11550,72 +11579,72 @@ msgstr "Afficher Russie" msgid "Show Skylanders Portal" msgstr "Afficher le Portail Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Afficher Espagne" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Afficher les couleurs selon la vitesse" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Afficher les statistiques" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Afficher l'heure du système" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Afficher Taïwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Afficher USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Afficher les inconnus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Afficher les durées de VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Afficher les VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Afficher les WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Afficher Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Afficher Monde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Afficher dans la &mémoire" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Afficher dans le code" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Afficher dans la mémoire" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Afficher dans le &code" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Afficher dans la mémoire" @@ -11623,11 +11652,19 @@ msgstr "Afficher dans la mémoire" msgid "Show in server browser" msgstr "Afficher dans le navigateur de serveurs" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Afficher la &mémoire cible" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11637,7 +11674,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11658,7 +11702,25 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11668,7 +11730,7 @@ msgstr "" "une déviation standard.

Dans le doute, décochez " "cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11678,7 +11740,7 @@ msgstr "" "standard.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11688,7 +11750,7 @@ msgstr "" "fluidité visuelle.

Dans le doute, décochez cette " "case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11707,7 +11769,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11715,7 +11777,7 @@ msgstr "" "Affiche diverses statistiques de projection.

Dans " "le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11739,7 +11801,7 @@ msgstr "Utiliser à l'horizontale" msgid "Sideways Wii Remote" msgstr "Wiimote à l'horizontale" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Base de données de Signatures" @@ -11758,12 +11820,12 @@ msgstr "Signé 32" msgid "Signed 8" msgstr "Signé 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Entier signé" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chinois simplifié" @@ -11780,7 +11842,7 @@ msgstr "Six axes" msgid "Size" msgstr "Taille" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11792,7 +11854,7 @@ msgstr "" msgid "Skip" msgstr "Sauter" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Saute le dessin" @@ -11850,6 +11912,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Tous les fichiers (*)" @@ -11927,7 +11992,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Trier par ordre alphabétique" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Son :" @@ -11941,7 +12006,7 @@ msgstr "Espagne" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Espagnol" @@ -11949,19 +12014,19 @@ msgstr "Espagnol" msgid "Speaker Pan" msgstr "Volume du haut-parleur" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volume du haut-parleur :" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Spécialisé (par défaut)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Spécifique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11997,11 +12062,11 @@ msgstr "Vitesse" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Fin de pile" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Début de pile" @@ -12009,25 +12074,25 @@ msgstr "Début de pile" msgid "Standard Controller" msgstr "Contrôleur standard" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Démarrer &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "Démarrer la surveillance de la Branche" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Démarrer une nouvelle recherche de cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Démarrer l'enregistrement de l'entrée" @@ -12035,7 +12100,7 @@ msgstr "&Démarrer l'enregistrement de l'entrée" msgid "Start Recording" msgstr "Commencer l'enregistrement" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Démarrer en Plein écran" @@ -12047,14 +12112,14 @@ msgstr "Démarrer avec les patchs Riivolution" msgid "Start with Riivolution Patches..." msgstr "Démarrer avec les patchs Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Jeu démarré" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "État" @@ -12086,19 +12151,19 @@ msgstr "Step Out" msgid "Step Over" msgstr "Step Over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Sortie avec succès !" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Temps écoulé pour la sortie !" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Saut en cours..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Pas à pas réussi !" @@ -12107,7 +12172,7 @@ msgstr "Pas à pas réussi !" msgid "Stepping" msgstr "Pas à pas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stéréo" @@ -12136,16 +12201,16 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Arrêter" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Arrêter de jouer/enregistrer l'entrée" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Jeu arrêté" @@ -12187,11 +12252,11 @@ msgstr "" "RAM (et Texture)

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Étirer à la fenêtre" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Synchronisation stricte des paramètres" @@ -12205,7 +12270,11 @@ msgstr "Texte" msgid "Strum" msgstr "Gratter" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Style :" @@ -12216,18 +12285,18 @@ msgstr "Style :" msgid "Stylus" msgstr "Style" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Succès !" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Ajouté avec succès à l'index de NetPlay" @@ -12237,7 +12306,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n image(s) convertie(s) avec succès." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Suppression réussie de \"%1\"." @@ -12250,24 +12319,24 @@ msgstr "Exportation avec succès de %n sur %1 fichier(s) de sauvegarde." msgid "Successfully exported save files" msgstr "Fichiers de sauvegarde exportés avec succès." -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Certificats extraits avec succès depuis la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Fichier extrait avec succès." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Extraction avec succès des données du système." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Fichier de sauvegarde importé avec succès." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Ce titre a été installé avec succès dans la NAND." @@ -12290,17 +12359,17 @@ msgstr "Aide" msgid "Supported file formats" msgstr "Formats de fichiers pris en charge" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" "Prend en charge les cartes SD et SDHC. La taille par défaut est de 128 Mo." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Suspendu" @@ -12347,17 +12416,17 @@ msgstr "Basculer vers B" msgid "Symbol" msgstr "Symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Adresse de fin du symbole (%1) :" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Nom du symbole :" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symboles" @@ -12365,7 +12434,7 @@ msgstr "Symboles" msgid "Sync" msgstr "Synchroniser" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Synchronise les codes AR/Gecko" @@ -12385,7 +12454,7 @@ msgstr "" "Synchronise les tâches entre le GPU et le CPU pour éviter des blocages " "aléatoires en mode Dual Core. (Coché = Compatible, Décoché = Rapide)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12406,24 +12475,24 @@ msgid "Synchronizing save data..." msgstr "Synchronisation des données de sauvegarde..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Langue du système :" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Entrée 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Outils TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Tags" @@ -12433,7 +12502,7 @@ msgstr "Tags" msgid "Taiko Drum" msgstr "Percussion Taiko" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Tail" @@ -12441,7 +12510,7 @@ msgstr "Tail" msgid "Taiwan" msgstr "Taïwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Capture d'écran" @@ -12449,7 +12518,7 @@ msgstr "Capture d'écran" msgid "Target address range is invalid." msgstr "La zone d'adresse cible n'est pas valide." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12467,9 +12536,9 @@ msgstr "Tech" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "Fichier texte (*.txt);;Tous les fichiers (*)" @@ -12482,7 +12551,7 @@ msgstr "Cache de texture" msgid "Texture Cache Accuracy" msgstr "Précision du cache de texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Copie des textures" @@ -12494,7 +12563,7 @@ msgstr "Filtrage de texture" msgid "Texture Filtering:" msgstr "Filtrage de texture :" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Infos de format de texture" @@ -12540,7 +12609,7 @@ msgstr "Le fichier IPL n'est pas connu comme un dump correct. (CRC32 : {0:x})" msgid "The Masterpiece partitions are missing." msgstr "La partition des Chefs-d'œuvre est manquante." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12548,7 +12617,7 @@ msgstr "" "Impossible de réparer la NAND. Il est recommandé de sauvegarder vos données " "actuelles et de recommencer avec une nouvelle NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "La NAND a été réparée." @@ -12567,7 +12636,7 @@ msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" "La quantité d'argent que ce Skylander possède. Compris entre 0 et 65000." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12631,7 +12700,7 @@ msgstr "" "\n" "Veuillez choisir une destination pour \"%1\"" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12644,7 +12713,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Le disque ne peut être lu (à {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Le disque qui allait être inséré n'a pas été trouvé." @@ -12738,7 +12807,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Le système de fichiers n'est pas valide ou ne peut être lu." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12785,7 +12854,7 @@ msgstr "" "soucis avec le Menu Système, il n'est pas possible de mettre à jour la " "console émulée avec ce disque." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12861,12 +12930,12 @@ msgstr "" "Les patchs dans %1 ne sont pas conçus pour le jeu sélectionné ou cette " "révision du jeu." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Le profil \"%1\" n'existe pas." -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" "Le jeu enregistré ({0}) n'est pas le même que le jeu sélectionné ({1})" @@ -12893,7 +12962,7 @@ msgstr "" "Un même fichier ne peut être utilisé sur plusieurs emplacements, il est déjà " "utilisé sur le slot %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12934,7 +13003,7 @@ msgstr "L'index de la clé commune spécifiée est {0} au lieu de {1}." msgid "The specified file \"{0}\" does not exist" msgstr "Le fichier spécifié \"{0}\" n'existe pas" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -13000,7 +13069,7 @@ msgstr "La partition des mises à jour est manquante." msgid "The update partition is not at its normal position." msgstr "La partition des mises à jour n'est pas à sa position normale." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -13024,6 +13093,10 @@ msgstr "La partition n°{0} n'est pas correctement signée." msgid "The {0} partition is not properly aligned." msgstr "La partition n°{0} n'est pas correctement alignée." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Il y a trop de partitions dans la première table de partitions." @@ -13038,8 +13111,8 @@ msgstr "" "\n" "Souhaitez-vous sauvegarder avant de fermer ?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "Il n'y a rien à sauvegarder !" @@ -13094,11 +13167,11 @@ msgstr "Ce type de Skylander ne peut pas encore être modifié !" msgid "This USB device is already whitelisted." msgstr "Ce périphérique USB est déjà sur liste blanche." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Ce WAD n'est pas bootable" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Ce WAD n'est pas valide." @@ -13118,7 +13191,7 @@ msgstr "" "Cette build de Dolphin n'est pas nativement compatible avec votre CPU.\n" "Veuillez exécuter la version ARM64 de Dolphin pour une meilleure expérience." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Ceci est irréversible !" @@ -13250,7 +13323,7 @@ msgstr "" msgid "This is a good dump." msgstr "Ceci est un dump correct." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "Ceci s'applique uniquement au boot initial du logiciel émulé." @@ -13276,7 +13349,7 @@ msgstr "" "Ce logiciel ne doit pas être utilisé pour jouer à des jeux que vous ne " "possédez pas légalement." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Ce titre ne peut pas être démarré." @@ -13328,7 +13401,7 @@ msgstr "" "Cette valeur est multipliée par la profondeur définie dans la configuration " "des graphiques." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -13346,7 +13419,7 @@ msgstr "" "Ceci va limiter la vitesse d'envoi de parcelles de données par client, qui " "est utilisée pour synchroniser la sauvegarde." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13359,11 +13432,11 @@ msgstr "" "d'EFB. Veuillez vous assurer que tout le monde utilise le même moteur " "graphique." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Contexte du flux" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Flux" @@ -13388,14 +13461,14 @@ msgstr "" "Durée pendant laquelle la manette est stable pour activer l'étalonnage (zéro " "pour désactiver)." -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Délai dépassé" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titre" @@ -13404,12 +13477,12 @@ msgid "To" msgstr "À" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "jusqu'à :" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Activer le &plein écran" @@ -13434,7 +13507,7 @@ msgid "Toggle Aspect Ratio" msgstr "Activer le ratio hauteur/largeur" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Activer Point d'arrêt" @@ -13490,7 +13563,7 @@ msgstr "Activer le mode XFB immédiat" msgid "Tokenizing failed." msgstr "Échec du jetonnage." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "Contrôles des outils" @@ -13498,7 +13571,7 @@ msgstr "Contrôles des outils" msgid "Toolbar" msgstr "Barre d'outils" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Haut" @@ -13506,8 +13579,8 @@ msgstr "Haut" msgid "Top-and-Bottom" msgstr "Dessus-dessous" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Nombre de concordances" @@ -13549,7 +13622,7 @@ msgid "Toy code:" msgstr "Code du jouet :" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chinois traditionnel" @@ -13569,8 +13642,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Erreur de Traversal" @@ -13599,7 +13672,7 @@ msgstr "Carte électronique AM 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Déclencheurs" @@ -13609,7 +13682,7 @@ msgid "Trophy" msgstr "Trophée" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13623,7 +13696,7 @@ msgstr "Alignement basé sur Type" msgid "Typical GameCube/Wii Address Space" msgstr "Adresse de mémoire GameCube/Wii typique" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "INCONNU" @@ -13635,7 +13708,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "Émulation d'un appareil USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "Émulation de l'USB" @@ -13653,7 +13726,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Erreur dans la liste blanche des USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13665,7 +13738,7 @@ msgstr "" "

Dans le doute, sélectionnez ce mode." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13678,7 +13751,7 @@ msgstr "" "saccades avec les Ubershaders hybrides et que vous avez un GPU puissant." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13693,7 +13766,7 @@ msgstr "" "impact minimal sur les performances, mais cela dépend du comportement du " "driver de la carte graphique." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Impossible de détecter automatiquement le module RSO" @@ -13764,11 +13837,11 @@ msgstr "Images GC/Wii non compressées (*.iso *.gcm)" msgid "Undead" msgstr "Mort-vivant" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "&Annuler le lancement d'état" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Annuler la sauvegarde de l'état" @@ -13788,28 +13861,28 @@ msgstr "" "Désinstaller le WAD va supprimer la version actuellement installée de ce " "titre dans la NAND sans supprimer ses données de sauvegarde. Continuer ?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "États-Unis" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Inconnu" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Inconnu (Id :%1 Var :%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Commande DVD inconnue {0:08x} - erreur fatale" @@ -13885,11 +13958,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Inconnu(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Inconnu(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Illimitée" @@ -13901,21 +13974,9 @@ msgstr "Décharger la ROM" msgid "Unlock Cursor" msgstr "Débloquer le curseur" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Débloqué" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Débloqué %1 fois pendant cette session" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Débloqué (occasionnel)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Débloqué pendant cette session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13941,7 +14002,7 @@ msgstr "Non signé 32" msgid "Unsigned 8" msgstr "Non signé 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Entier non signé" @@ -13955,8 +14016,8 @@ msgstr "Entier non signé" msgid "Up" msgstr "Haut" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Mettre à jour" @@ -13964,11 +14025,11 @@ msgstr "Mettre à jour" msgid "Update Partition (%1)" msgstr "Partition de mise à jour (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Mettre à jour une fois Dolphin quitté" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Mise à jour disponible" @@ -14013,7 +14074,7 @@ msgstr "Utiliser à la verticale" msgid "Upright Wii Remote" msgstr "Wiimote debout" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Paramètres de l'envoi des données statistiques" @@ -14022,15 +14083,15 @@ msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" "Utilisez 8.8.8.8 pour un DNS normal, ou sinon entrez un DNS personnalisé" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Utiliser toutes les données de sauvegarde de la Wii" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Utiliser la base de données interne des noms de jeux" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Utiliser un codec sans perte (FFV1)" @@ -14038,15 +14099,21 @@ msgstr "Utiliser un codec sans perte (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Utiliser le pointage contrôlé par la souris" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Utiliser le mode PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Utiliser les gestionnaires de panique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14094,7 +14161,7 @@ msgstr "Utiliser les adresses virtuelles lorsque c'est possible" msgid "User Config" msgstr "Configuration personnalisée" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Interface utilisateur" @@ -14113,10 +14180,17 @@ msgstr "" "Vous pouvez les utiliser pour enregistrer ou récupérer des valeurs\n" "entre les entrées et les sorties de la manette parente." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Nom d'utilisateur" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -14130,7 +14204,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14141,7 +14215,7 @@ msgstr "" "créée.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Dans le cas " "contraire et dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14445,8 +14519,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Avertissement" @@ -14458,7 +14532,7 @@ msgstr "" "Attention : un chemin de remplacement de dossier GCI est actuellement " "configuré pour ce slot. Changer le chemin GCI n'aura aucun effet ici." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14475,7 +14549,7 @@ msgstr "" "Attention, le nombre de blocs indiqués par le BAT ({0}) ne correspond pas à " "l'entête de fichier chargée ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14486,7 +14560,7 @@ msgstr "" "autre sauvegarde avant de continuer, ou charger cette sauvegarde en " "désactivant le mode Lecture seule." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14496,7 +14570,7 @@ msgstr "" "actuelle dans la sauvegarde (octet {0} < {1}) (image {2} < {3}). Vous " "devriez charger une autre sauvegarde avant de continuer." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14507,7 +14581,7 @@ msgstr "" "ou charger cet état en désactivant le mode Lecture seule. Dans le cas " "contraire, il y aura probablement une désynchronisation." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14569,7 +14643,7 @@ msgstr "Occidental (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14582,7 +14656,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14595,7 +14669,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Périphériques USB autorisés pour une connexion directe à la Wii émulée" @@ -14627,25 +14701,25 @@ msgstr "Wiimote" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wiimote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Accéléromètre de la Wiimote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Boutons de la Wiimote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Gyroscope de la Wiimote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Paramètres de la Wiimote" @@ -14653,19 +14727,19 @@ msgstr "Paramètres de la Wiimote" msgid "Wii Remotes" msgstr "Wiimotes" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Entrée TAS %1 pour Wii - Manette classique" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Entrée TAS %1 pour Wii - Wiimote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Entrée TAS %1 pour Wii - Wiimote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii et Wiimote" @@ -14673,7 +14747,7 @@ msgstr "Wii et Wiimote" msgid "Wii data is not public yet" msgstr "Données Wii pas encore publiques" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fichiers de sauvegarde de Wii (*.bin);;Tous les fichiers (*)" @@ -14681,15 +14755,7 @@ msgstr "Fichiers de sauvegarde de Wii (*.bin);;Tous les fichiers (*)" msgid "WiiTools Signature MEGA File" msgstr "Fichier MEGA de signature de WiiTools" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"Verrouille le curseur de la souris dans le widget de rendu tant qu'il a le " -"focus. Vous pouvez définir un raccourci clavier pour le déverrouiller." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "Résolution de la fenêtre" @@ -14698,11 +14764,11 @@ msgstr "Résolution de la fenêtre" msgid "Window Size" msgstr "Taille de la fenêtre" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "Effacer les données d'&inspection" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "Effacer les Hits récents" @@ -14716,10 +14782,11 @@ msgstr "Monde" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Écrire" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "Écrire le vidage du journal du bloc JIT" @@ -14752,39 +14819,39 @@ msgstr "Ecrire dans le journal, puis pause" msgid "Write to Window" msgstr "Écrire dans la fenêtre" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Mauvais numéro de disque" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Mauvais hash" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Mauvaise région" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Mauvaise révision" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "Écrit vers \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "Écrit vers \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Registre XF" @@ -14793,9 +14860,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "Adresse de destination de XLink Kai BBA" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14823,7 +14890,7 @@ msgstr "Oui" msgid "Yes to &All" msgstr "Oui à to&ut" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14832,7 +14899,7 @@ msgstr "" "Vous allez convertir le contenu du fichier dans %2 vers un dossier dans %1. " "Tout le contenu du dossier sera supprimé. Souhaitez-vous continuer ?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14950,7 +15017,7 @@ msgstr "Vous devez entrer un nom pour votre session !" msgid "You must provide a region for your session!" msgstr "Vous devez entrer une région pour votre session !" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Vous devez redémarrer Dolphin pour que ce changement prenne effet." @@ -14978,7 +15045,7 @@ msgstr "" "Souhaitez-vous corriger maintenant le problème ?\n" "Si vous sélectionnez \"Non\", le son risque d'être détérioré." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14987,9 +15054,9 @@ msgstr "" "avoir un comportement anormal ou ne pas pouvoir sauvegarder de donnée." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14998,7 +15065,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Code Zero 3 non pris en charge" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "Aucun candidat restant." @@ -15047,7 +15114,7 @@ msgid "default" msgstr "par défaut" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "déconnecté" @@ -15055,7 +15122,7 @@ msgstr "déconnecté" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Cartes e-Reader (*.raw);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -15063,7 +15130,7 @@ msgstr "errno" msgid "fake-completion" msgstr "Faux achèvement" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "faux" @@ -15113,16 +15180,6 @@ msgstr "" msgid "none" msgstr "Aucun" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "Désactivé" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "à" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "ou sélectionnez un de ces périphériques" @@ -15140,7 +15197,7 @@ msgstr "sRGB" msgid "this value:" msgstr "cette valeur :" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "vrai" @@ -15207,11 +15264,9 @@ msgstr "| Or" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin Team. « GameCube » et « Wii » sont des marques déposées " -"de Nintendo. Dolphin n'est affiliée d'aucune manière à Nintendo. " #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/hr.po b/Languages/po/hr.po index 9bb2bccedd..6bdf48a731 100644 --- a/Languages/po/hr.po +++ b/Languages/po/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Alberto Poljak , 2013-2014\n" "Language-Team: Croatian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -113,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -144,11 +144,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -165,40 +165,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -206,13 +200,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -224,30 +218,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -259,6 +253,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -328,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -341,7 +339,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -349,15 +347,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -365,11 +363,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -377,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -393,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -401,16 +403,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -418,20 +419,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -445,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulacija" @@ -469,41 +470,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Datoteka" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Upravljač sličica po sekundi" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Postavke Grafike" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Pomoć" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Postavke prečica na tipkovnici" @@ -523,11 +524,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -535,23 +536,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Učitaj stanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -561,19 +562,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -581,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -590,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Pokreni igru" @@ -614,7 +619,7 @@ msgstr "&Pokreni igru" msgid "&Properties" msgstr "&Svojstva" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -622,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registri" @@ -635,24 +640,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Resetiraj" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -660,31 +665,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Zaustavi igru" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Alati" @@ -694,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Pogled" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -720,23 +725,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -772,12 +777,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -838,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -896,7 +901,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -922,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1015,26 +1020,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1057,8 +1062,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1072,7 +1077,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1086,7 +1091,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1102,7 +1107,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1127,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1170,16 +1175,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1252,7 +1251,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1260,15 +1259,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1276,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1286,7 +1285,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Dodaj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1311,43 +1310,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Dodaj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1473,7 +1472,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1482,7 +1481,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1490,34 +1489,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1533,7 +1532,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1541,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1559,7 +1558,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1581,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analiziraj" @@ -1607,15 +1606,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1633,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1641,7 +1640,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1653,7 +1652,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1665,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Omjer Slike:" @@ -1682,7 +1681,7 @@ msgstr "Omjer Slike:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1694,7 +1693,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1715,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Zvuk" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Upravljač zvuka:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1735,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatski" @@ -1744,11 +1743,11 @@ msgstr "Automatski" msgid "Auto (Multiple of 640x528)" msgstr "Automatski (Višestruko od 640*528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1756,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1764,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1812,27 +1811,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP registar" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Upravljač zvuka- Postavke" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Upravljač:" @@ -1875,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Transparent" @@ -1895,15 +1894,15 @@ msgstr "Tremolo" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Osnovno" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Osnovne postavke" @@ -1919,10 +1918,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1955,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1969,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2005,67 +2000,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Dno" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2077,23 +2072,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2110,7 +2105,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2120,19 +2115,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2147,19 +2142,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2193,24 +2193,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Međuspremnik:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2255,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "C Gljiva" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2310,7 +2310,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2336,7 +2336,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2352,18 +2352,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2372,15 +2372,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2396,11 +2396,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2408,7 +2408,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2416,7 +2416,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Promjeni &Disk..." @@ -2456,15 +2456,21 @@ msgstr "Promjeni &Disk..." msgid "Change Disc" msgstr "Promjeni disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2482,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2490,11 +2496,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Čavrljanje" @@ -2502,7 +2508,7 @@ msgstr "Čavrljanje" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Tražilica" @@ -2510,7 +2516,7 @@ msgstr "Tražilica" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2528,7 +2534,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2540,7 +2546,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Odaberite datoteku za otvaranje" @@ -2548,15 +2554,15 @@ msgstr "Odaberite datoteku za otvaranje" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2569,7 +2575,7 @@ msgstr "Odaberite direktorij u kojega želite raspakirati datoteke" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2580,18 +2586,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Očisti" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2612,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2620,11 +2626,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2652,11 +2658,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2683,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2693,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2706,7 +2712,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2714,11 +2720,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2734,7 +2740,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2749,7 +2755,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2803,7 +2814,7 @@ msgstr "Podesi" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2816,27 +2827,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Potvrdite zaustavljanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2846,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "Spoji" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Priključite USB tipkovnicu" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2874,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2890,7 +2901,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2915,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3002,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3011,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3021,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3043,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3073,22 +3084,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3096,19 +3107,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3126,8 +3137,8 @@ msgstr "" msgid "Core" msgstr "Jezgra" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3234,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3250,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Država:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3270,7 +3281,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3287,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "Kritično" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Podrezati" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3303,42 +3314,42 @@ msgstr "" msgid "Crossfade" msgstr "Prijelaz" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3346,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3397,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3405,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3439,7 +3450,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3484,8 +3495,8 @@ msgstr "Mrtva Zona" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Traženje/ispravljanje pogrešaka" @@ -3494,7 +3505,7 @@ msgstr "Traženje/ispravljanje pogrešaka" msgid "Decimal" msgstr "Decimalan" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3533,7 +3544,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Standardne vrijednosti" @@ -3541,7 +3552,7 @@ msgstr "Standardne vrijednosti" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3553,11 +3564,11 @@ msgstr "" msgid "Default ISO:" msgstr "Uobičajeni ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3565,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3574,8 +3585,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Obriši" @@ -3605,12 +3617,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" @@ -3624,8 +3636,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3637,21 +3649,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3659,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Otkrij" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3667,11 +3679,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Uređaj" @@ -3689,7 +3701,7 @@ msgstr "Postavke Uređaja" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3697,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3713,11 +3725,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3726,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3734,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3746,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemogući maglu" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3765,7 +3772,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disk" @@ -3789,6 +3802,10 @@ msgstr "Disk" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3819,11 +3836,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3833,7 +3850,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Želite li zaustaviti emulaciju?" @@ -3841,12 +3858,12 @@ msgstr "Želite li zaustaviti emulaciju?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3854,9 +3871,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3868,8 +3885,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmovi (*.dtm)" @@ -3902,7 +3919,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3916,13 +3933,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3931,7 +3948,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3952,7 +3969,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3974,7 +3991,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3986,6 +4003,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4025,19 +4052,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dumpiraj Zvuk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Dumpiraj odabranu EFB metu" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dumpiraj Slike" @@ -4045,7 +4072,7 @@ msgstr "Dumpiraj Slike" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4053,7 +4080,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4078,44 +4105,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Nizozemski" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "I&zlaz" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4127,7 +4154,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4135,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Rana Ažuriranja Memorije" @@ -4154,7 +4181,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4174,7 +4210,7 @@ msgstr "Efekt" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4196,11 +4232,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emu Thread je već pokrenut" @@ -4226,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4248,34 +4284,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Omogućite kodove za varanje" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4283,15 +4309,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Omogućite korištenje dvije jezgre" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Omogućite korištenje dvije jezgre (ubrzanje)" @@ -4303,7 +4333,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4311,15 +4341,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4337,41 +4367,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Omogući MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Omogućite Progresivno Skeniranje" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Omogućite Čuvar Zaslona" @@ -4379,19 +4401,23 @@ msgstr "Omogućite Čuvar Zaslona" msgid "Enable Speaker Data" msgstr "Omogući Zvučne Podatke" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Omogući Žičani Okvir" @@ -4399,34 +4425,13 @@ msgstr "Omogući Žičani Okvir" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4434,34 +4439,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4492,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4500,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4517,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4545,7 +4557,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4553,7 +4565,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4561,7 +4573,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4580,13 +4592,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Engleski" @@ -4603,7 +4619,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4627,33 +4643,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4666,52 +4682,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Pogreška" @@ -4728,7 +4744,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4743,7 +4759,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4834,12 +4850,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforija" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4883,11 +4899,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "" @@ -4902,7 +4918,7 @@ msgstr "" msgid "Export Recording" msgstr "Izvedi Snimku Videa" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Izvedi Snimku Videa..." @@ -4930,14 +4946,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Produžetak" @@ -4950,7 +4966,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4958,35 +4974,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Raspakirati Datoteku..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4995,8 +5011,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO Pokretač Datoteka" @@ -5010,11 +5026,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5034,7 +5050,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5055,15 +5071,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5109,15 +5125,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5136,25 +5152,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5174,18 +5190,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5197,21 +5213,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5225,17 +5241,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5243,7 +5259,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5273,15 +5289,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5289,11 +5305,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5340,23 +5356,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5370,7 +5386,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5401,31 +5417,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5476,19 +5492,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5501,7 +5517,7 @@ msgstr "Brzo" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5512,7 +5528,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5526,7 +5542,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5534,24 +5550,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Informacije o Datoteci" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5636,7 +5652,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5645,12 +5660,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5670,7 +5685,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Prisili 16:9" @@ -5678,7 +5693,7 @@ msgstr "Prisili 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Prisili 4:3" @@ -5710,11 +5725,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5736,6 +5751,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5751,7 +5772,7 @@ msgstr "Naprijed" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5761,7 +5782,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5782,11 +5803,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Domet Slike" @@ -5794,7 +5815,7 @@ msgstr "Domet Slike" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5814,7 +5835,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5845,7 +5866,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francuski" @@ -5864,8 +5885,8 @@ msgid "From" msgstr "Iz" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5873,10 +5894,14 @@ msgstr "" msgid "FullScr" msgstr "CijeliZaslon" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5917,11 +5942,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5963,7 +5988,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5973,25 +5998,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6003,7 +6028,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6021,22 +6046,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6065,7 +6090,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6074,25 +6099,25 @@ msgstr "" msgid "Game ID:" msgstr "Identifikacija Igre:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6105,7 +6130,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6125,11 +6150,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6137,11 +6162,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6158,7 +6183,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6186,7 +6211,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Kodovi" @@ -6196,35 +6221,35 @@ msgstr "Gecko Kodovi" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Opće" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Njemački" @@ -6251,7 +6276,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6260,7 +6285,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6300,7 +6325,7 @@ msgstr "Zelena Lijevo" msgid "Green Right" msgstr "Zelena Desno" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6337,7 +6362,7 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6369,7 +6394,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6378,11 +6403,11 @@ msgstr "" msgid "Hide" msgstr "Sakrij" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6394,16 +6419,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6426,7 +6458,7 @@ msgstr "Domaćin" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6434,7 +6466,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6442,11 +6474,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6458,7 +6490,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6468,11 +6500,11 @@ msgstr "" msgid "Hotkeys" msgstr "Brze Tipke" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6525,12 +6557,12 @@ msgstr "" msgid "IPL Settings" msgstr "IPL Postavke" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR Osjetljivost:" @@ -6556,14 +6588,14 @@ msgstr "" msgid "Icon" msgstr "Ikona" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6580,7 +6612,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6594,14 +6626,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6613,7 +6645,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6645,7 +6677,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6654,7 +6686,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6669,21 +6701,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6761,7 +6802,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6770,7 +6811,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6790,12 +6831,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informacije" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6804,11 +6845,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Unos" @@ -6822,23 +6863,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Umetni SD karticu" @@ -6851,11 +6888,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6863,13 +6900,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6878,7 +6915,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6887,7 +6924,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6904,19 +6941,19 @@ msgstr "" msgid "Interface" msgstr "Sučelje" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6929,19 +6966,19 @@ msgstr "Interna LZO pogreška - komprimiranje nije uspjelo" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6956,7 +6993,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Interna Rezolucija:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6964,7 +7001,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6980,7 +7017,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6989,11 +7026,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7014,7 +7051,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7030,19 +7067,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Nevažeći video snimak" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Nevažeći parametri potrage (objekt nije odabran)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" @@ -7050,13 +7087,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Talijanski" @@ -7069,11 +7106,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7081,47 +7118,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7133,31 +7170,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japanski" @@ -7174,12 +7211,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7213,16 +7250,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korejski" @@ -7243,7 +7280,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7251,7 +7288,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7265,23 +7306,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7289,7 +7330,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7297,7 +7338,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7308,7 +7349,7 @@ msgstr "Lijevo" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Lijeva Gljiva" @@ -7379,11 +7420,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7392,30 +7433,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Učitaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Učitaj Posebne Teksture" @@ -7423,11 +7464,11 @@ msgstr "Učitaj Posebne Teksture" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7533,23 +7574,23 @@ msgstr "Učitaj Stanje Igre 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7557,54 +7598,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Zapis" @@ -7613,19 +7662,19 @@ msgstr "Zapis" msgid "Log Configuration" msgstr "Konfiguracija Zapisa" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7637,31 +7686,31 @@ msgstr "Tipovi Zapisa" msgid "Logger Outputs" msgstr "Ispisi Bilježenja" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7673,7 +7722,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7721,7 +7770,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7738,16 +7787,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7759,11 +7808,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7772,7 +7821,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7793,7 +7842,7 @@ msgstr "" msgid "Memory Card" msgstr "Memorijska Kartica" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7821,7 +7870,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7835,7 +7884,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7844,15 +7893,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Razno" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Razne Postavke" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7864,7 +7913,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7884,7 +7933,7 @@ msgstr "" msgid "Modifier" msgstr "Modifikator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7900,8 +7949,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7909,7 +7958,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7921,11 +7970,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7934,23 +7983,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7961,13 +7997,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7980,10 +8016,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7992,8 +8028,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8002,7 +8038,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8019,8 +8055,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8063,7 +8099,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8079,27 +8115,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8107,16 +8143,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8141,7 +8177,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8158,7 +8194,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8204,7 +8240,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8212,12 +8248,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Opis nije dostupan" @@ -8229,7 +8265,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8237,7 +8273,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8250,11 +8286,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8277,7 +8313,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8294,10 +8330,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Ništa" @@ -8309,7 +8345,7 @@ msgstr "" msgid "Not Set" msgstr "Nije Postavljeno" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8329,7 +8365,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8373,26 +8409,26 @@ msgstr "" msgid "Nunchuk" msgstr "Wii Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8444,7 +8480,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Domet Objekta" @@ -8465,18 +8501,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8491,7 +8527,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "" @@ -8499,13 +8535,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8522,7 +8558,7 @@ msgstr "Otvori" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8531,7 +8567,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8597,34 +8633,34 @@ msgstr "Narančasti" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8639,11 +8675,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8659,16 +8695,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8681,11 +8717,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8697,7 +8733,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8731,7 +8767,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8769,15 +8805,15 @@ msgstr "Mape" msgid "Pause" msgstr "Pauza" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8793,6 +8829,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8812,7 +8854,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvjetljenje po pikselu" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8820,15 +8862,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8846,11 +8888,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8863,7 +8905,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8871,7 +8913,7 @@ msgstr "" msgid "Play" msgstr "Pokreni" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8883,40 +8925,40 @@ msgstr "Pokreni Video Snimak" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Postavke Reprodukcije" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Igrači" @@ -8933,7 +8975,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8949,7 +8991,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8966,7 +9008,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8982,24 +9024,32 @@ msgstr "Post-Processing Efekt:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9022,7 +9072,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9037,7 +9087,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9048,7 +9098,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9082,7 +9132,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9091,23 +9141,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9127,18 +9183,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Pitanje" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Izlaz" @@ -9155,19 +9211,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analogan" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9188,7 +9244,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9196,16 +9252,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9244,8 +9301,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9254,23 +9311,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Snimi Video" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opcije Snimanja Videa" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9303,7 +9360,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9334,7 +9391,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9355,7 +9412,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9363,7 +9424,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Ukloni" @@ -9391,20 +9452,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Obrađivati u Glavnom prozoru" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9418,10 +9479,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9431,7 +9498,7 @@ msgstr "Resetiraj" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9463,7 +9530,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9475,7 +9542,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9483,11 +9550,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9496,7 +9563,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9508,7 +9575,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9519,7 +9586,7 @@ msgstr "Desno" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Desna Gljiva" @@ -9555,11 +9622,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9577,27 +9644,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9610,7 +9681,7 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9618,15 +9689,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9634,23 +9705,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9658,7 +9729,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9693,11 +9764,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Sn&imi stanje igre" @@ -9707,9 +9778,9 @@ msgid "Safe" msgstr "Sigurno" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9719,25 +9790,25 @@ msgstr "Snimi" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9751,11 +9822,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9767,7 +9838,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9817,23 +9888,23 @@ msgstr "Snimi Stanje Igre 8" msgid "Save State Slot 9" msgstr "Mjesto za Stanje Snimanja 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9841,7 +9912,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9853,11 +9924,11 @@ msgstr "" msgid "Save as..." msgstr "Snimi kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9868,11 +9939,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9880,11 +9951,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9896,7 +9967,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9913,8 +9984,8 @@ msgid "ScrShot" msgstr "UslikajZaslon" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Traži" @@ -9923,7 +9994,7 @@ msgstr "Traži" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9941,7 +10012,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9949,7 +10020,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9983,7 +10054,7 @@ msgstr "Odaberi" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9994,23 +10065,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10038,7 +10109,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10046,7 +10117,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10107,13 +10178,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10121,7 +10192,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10133,7 +10204,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10141,11 +10212,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10153,12 +10224,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Odaberite snimak igre" @@ -10181,16 +10252,16 @@ msgstr "Odabrani profil kontrolera ne postoji." #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10206,7 +10277,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10236,7 +10307,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10258,7 +10329,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10268,11 +10339,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Poslati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Pozicija Senzora:" @@ -10300,6 +10371,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10317,52 +10392,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10370,7 +10460,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10392,32 +10482,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Pokaži &Zapis" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Pokaži &Alatnu Traku" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10426,7 +10516,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10435,31 +10525,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Pokaži FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Pokaži Francusku" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Pokaži GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10467,23 +10557,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Pokaži Unos Tipki" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Pokaži Italiju" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Pokaži Koreju" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10491,27 +10581,27 @@ msgstr "" msgid "Show Language:" msgstr "Pokaži Jezik:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Pokaži Konfiguraciju za &Zapis" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Pokaži PAL" @@ -10520,27 +10610,27 @@ msgstr "Pokaži PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Pokaži Platforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Pokaži Regije" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10548,72 +10638,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Pokaži Statistike" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Pokaži Taivan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Pokaži SAD" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Pokaži Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10621,71 +10711,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10707,7 +10830,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10726,12 +10849,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Pojednostavljeni Kineski" @@ -10748,7 +10871,7 @@ msgstr "" msgid "Size" msgstr "Veličina" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10758,7 +10881,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10802,6 +10925,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10872,7 +10998,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10886,7 +11012,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Španjolski" @@ -10894,19 +11020,19 @@ msgstr "Španjolski" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Glasnoća Zvučnika:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10931,11 +11057,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10943,25 +11069,25 @@ msgstr "" msgid "Standard Controller" msgstr "Standardni Kontroler" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10969,7 +11095,7 @@ msgstr "" msgid "Start Recording" msgstr "Počni Snimati Video" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10981,14 +11107,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11020,19 +11146,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11041,7 +11167,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11070,16 +11196,16 @@ msgid "Stick" msgstr "Gljiva" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11111,11 +11237,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Rastegni do Prozora" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11129,7 +11255,11 @@ msgstr "" msgid "Strum" msgstr "Drndanje " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11140,18 +11270,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11161,7 +11291,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11174,24 +11304,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11214,16 +11344,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11267,17 +11397,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11285,7 +11415,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11303,7 +11433,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11322,24 +11452,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Jezik Sustava:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS Unos" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11349,7 +11479,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11357,7 +11487,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Uslikaj Ekran" @@ -11365,7 +11495,7 @@ msgstr "Uslikaj Ekran" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11381,9 +11511,9 @@ msgstr "" msgid "Test" msgstr "Testirati" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11396,7 +11526,7 @@ msgstr "Predmemorija za Teksture" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11408,7 +11538,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Prekriti Format Teksture" @@ -11445,13 +11575,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11466,7 +11596,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11513,7 +11643,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11523,7 +11653,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11602,7 +11732,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11642,7 +11772,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11701,12 +11831,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11726,7 +11856,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11760,7 +11890,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11818,7 +11948,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11840,6 +11970,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11851,8 +11985,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11898,11 +12032,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11918,7 +12052,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12017,7 +12151,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12037,7 +12171,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12077,7 +12211,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12090,7 +12224,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12098,11 +12232,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12125,14 +12259,14 @@ msgstr "Nagib" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Naslov" @@ -12141,12 +12275,12 @@ msgid "To" msgstr "Do" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12171,7 +12305,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12227,7 +12361,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12235,7 +12369,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Vrh" @@ -12243,8 +12377,8 @@ msgstr "Vrh" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12286,7 +12420,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Tradicionalni Kineski" @@ -12306,8 +12440,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12334,7 +12468,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Okidači" @@ -12344,7 +12478,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12358,7 +12492,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12370,7 +12504,7 @@ msgstr "SAD" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12388,14 +12522,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12403,7 +12537,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12412,7 +12546,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12475,11 +12609,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Poništi Posljednje Učitavanje" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "" @@ -12497,28 +12631,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Nepoznato" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12589,11 +12723,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12605,20 +12739,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12645,7 +12767,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12659,8 +12781,8 @@ msgstr "" msgid "Up" msgstr "Gore" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Ažuriraj" @@ -12668,11 +12790,11 @@ msgstr "Ažuriraj" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12715,7 +12837,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12723,15 +12845,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12739,15 +12861,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Koristi Rješavanje Panike" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12781,7 +12909,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12796,10 +12924,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12808,14 +12943,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13078,8 +13213,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Upozorenje" @@ -13089,7 +13224,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13101,28 +13236,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13167,7 +13302,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13175,7 +13310,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13183,7 +13318,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13215,25 +13350,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13241,19 +13376,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13261,7 +13396,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13269,13 +13404,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13284,11 +13413,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13302,10 +13431,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13338,39 +13468,39 @@ msgstr "" msgid "Write to Window" msgstr "Pisati na Prozor" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13379,9 +13509,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13409,14 +13539,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13493,7 +13623,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Morate ponovno pokrenuti Dolphin da bi promjene imale efekta." @@ -13513,16 +13643,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13531,7 +13661,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "Zero 3 kod nije podržan" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13580,7 +13710,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13588,7 +13718,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13596,7 +13726,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13644,16 +13774,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13671,7 +13791,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13736,7 +13856,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/hu.po b/Languages/po/hu.po index 8f1ed3a0a9..a82b200ded 100644 --- a/Languages/po/hu.po +++ b/Languages/po/hu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Péter Patkós, 2023-2024\n" "Language-Team: Hungarian (http://app.transifex.com/delroth/dolphin-emu/" @@ -48,7 +48,7 @@ msgstr " (Lemez %1)" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:283 msgid "! Not" -msgstr "" +msgstr "! Nem" #: Source/Core/Core/Boot/Boot.cpp:261 msgid "\"{0}\" is an invalid GCM/ISO file, or is not a GC/Wii ISO." @@ -56,7 +56,7 @@ msgstr "\"{0}\" egy érvénytelen GCM/ISO fájl, vagy nem GC/Wii ISO." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:295 msgid "$ User Variable" -msgstr "" +msgstr "$ Felhasználói változó" #. i18n: The symbol for percent. #. i18n: The percent symbol. @@ -87,7 +87,7 @@ msgstr "" "%1\n" "csatlakozni szeretne a partidhoz." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -121,7 +121,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revízió %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (alap)" @@ -139,24 +139,27 @@ msgstr "%1 (lassú)" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" "%3 frames" msgstr "" +"%1 FIFO bájt\n" +"%2 memóriabájt\n" +"%3 képkocka" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:73 msgid "%1 Graphics Configuration" msgstr "%1 Grafikai beállítások" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -173,40 +176,34 @@ msgstr "%1 nem támogatja ezt a funkciót a rendszereden." msgid "%1 doesn't support this feature." msgstr "%1 nem támogatja ezt a funkciót." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 csatlakozott" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 kilépett" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 nem egy valid ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 éppen golfozik" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 ezzel játszik: %2" @@ -214,13 +211,13 @@ msgstr "%1 ezzel játszik: %2" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 pont" @@ -232,30 +229,30 @@ msgstr "%1 játékmenet található" msgid "%1 sessions found" msgstr "%1 játékmenet található" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normál sebesség)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "%1 értéke megváltozott" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -267,6 +264,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -277,7 +278,7 @@ msgstr "%1[%2]: %3 %" #: Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp:135 msgid "%1[%2]: %3/%4 MiB" -msgstr "" +msgstr "%1[%2]: %3/%4 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 #, c-format @@ -290,7 +291,7 @@ msgstr "%1x Natív (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "" +msgstr "%1x Natív (%2x%3) %4-hez/hoz" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 #, c-format @@ -336,11 +337,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Névjegy" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Új memória töréspont hozzáadása" @@ -349,7 +350,7 @@ msgstr "&Új memória töréspont hozzáadása" msgid "&Add New Code..." msgstr "&Új kód hozzáadása..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Funkció hozzáadása" @@ -357,15 +358,15 @@ msgstr "&Funkció hozzáadása" msgid "&Add..." msgstr "&Hozzáadás..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Audió beállítások" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Automatikus frissítés:" @@ -373,11 +374,15 @@ msgstr "&Automatikus frissítés:" msgid "&Borderless Window" msgstr "&Szegély nélküli ablak" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Töréspontok" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -385,15 +390,15 @@ msgstr "" msgid "&Cancel" msgstr "&Mégse" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Csaláskezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Frissítések keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -401,7 +406,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Kód" @@ -409,16 +414,15 @@ msgstr "&Kód" msgid "&Connected" msgstr "&Csatlakoztatva" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Vezérlő beállítások" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" -msgstr "" +msgstr "&Cím másolása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Cím másolása" @@ -426,20 +430,20 @@ msgstr "&Cím másolása" msgid "&Create..." msgstr "&Létrehozás..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Törlés" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -453,11 +457,11 @@ msgstr "&Kód szerkesztése..." msgid "&Edit..." msgstr "&Szerkesztés..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Lemez kiadása" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emuláció" @@ -477,41 +481,41 @@ msgstr "&Állapot exportálása..." msgid "&Export as .gci..." msgstr "&Exportálás, mint .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fájl" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "Képkocka léptetése" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" -msgstr "" +msgstr "&Szabad nézet beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub tárház" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafikai beállítások" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Súgó" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Gyorsbillentyű beállítások" @@ -531,11 +535,11 @@ msgstr "&Állapot importálása..." msgid "&Import..." msgstr "&Importálás..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -543,23 +547,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Nyelv:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Állapot betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -569,19 +573,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Film" @@ -589,7 +597,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Némítás" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Hálózat" @@ -598,23 +606,23 @@ msgid "&No" msgstr "&Nem" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Megnyitás..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" -msgstr "" +msgstr "&HLE funkciók javítása" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Szünet" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Indítás" @@ -622,7 +630,7 @@ msgstr "&Indítás" msgid "&Properties" msgstr "&Tulajdonságok" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Írásvédett mód" @@ -630,7 +638,7 @@ msgstr "&Írásvédett mód" msgid "&Refresh List" msgstr "&Lista frissítése" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Regiszterek" @@ -643,24 +651,24 @@ msgstr "&Törlés" msgid "&Remove Code" msgstr "&Kód törlése" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" -msgstr "" +msgstr "&Szimbólum átnevezése" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Alapbeállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -668,31 +676,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Sebességkorlát:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Stop" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Téma:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Szálak" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "&Eszköz" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Eszközök" @@ -702,21 +710,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Nézet" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Figyelés" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Weboldal" @@ -728,23 +736,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Igen" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Sötét)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Világos)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Rendszer)" @@ -762,11 +770,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:284 msgid "* Multiply" -msgstr "" +msgstr "* Szorzás" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:287 msgid "+ Add" -msgstr "" +msgstr "+ Hozzáadás" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:298 msgid ", Comma" @@ -774,18 +782,18 @@ msgstr ", vessző" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:288 msgid "- Subtract" -msgstr "" +msgstr "- Kivonás" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 msgid "--> %1" -msgstr "" +msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Ismeretlen--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -793,7 +801,7 @@ msgstr "..." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:285 msgid "/ Divide" -msgstr "" +msgstr "/ Osztás" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:578 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:579 @@ -802,7 +810,7 @@ msgstr "0" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:81 msgid "1 GiB" -msgstr "" +msgstr "1 GiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1080p" @@ -810,11 +818,11 @@ msgstr "1080p" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31 msgid "128 Mbit (2043 blocks)" -msgstr "" +msgstr "128 Mbit (2043 blokk)" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:78 msgid "128 MiB" -msgstr "" +msgstr "128 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "1440p" @@ -822,15 +830,15 @@ msgstr "1440p" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:211 msgid "16 Bytes" -msgstr "" +msgstr "16 bájt" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:85 msgid "16 GiB (SDHC)" -msgstr "" +msgstr "16 GiB (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:28 msgid "16 Mbit (251 blocks)" -msgstr "" +msgstr "16 Mbit (251 blokk)" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:132 msgid "16-bit" @@ -846,7 +854,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -860,11 +868,11 @@ msgstr "1x" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" -msgstr "" +msgstr "2 GiB" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" -msgstr "" +msgstr "256 MiB" #: Source/Core/Core/HotkeyManager.cpp:194 msgid "2x" @@ -880,7 +888,7 @@ msgstr "32 GiB (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:29 msgid "32 Mbit (507 blocks)" -msgstr "" +msgstr "32 Mbit (507 blokk)" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:133 msgid "32-bit" @@ -904,7 +912,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -916,21 +924,21 @@ msgstr "3D mélység" #: Source/Core/Core/HotkeyManager.cpp:195 msgid "3x" -msgstr "" +msgstr "3x" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209 msgid "4 Bytes" -msgstr "" +msgstr "4 bájt" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:83 msgid "4 GiB (SDHC)" -msgstr "" +msgstr "4 GiB (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:26 msgid "4 Mbit (59 blocks)" -msgstr "" +msgstr "4 Mbit (59 blokk)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -948,7 +956,7 @@ msgstr "4x Anizotróp" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:80 msgid "512 MiB" -msgstr "" +msgstr "512 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "5K" @@ -956,11 +964,11 @@ msgstr "5K" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30 msgid "64 Mbit (1019 blocks)" -msgstr "" +msgstr "64 Mbit (1019 blokk)" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" -msgstr "" +msgstr "64 MiB" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 @@ -983,15 +991,15 @@ msgstr "720p" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" -msgstr "" +msgstr "8 bájt" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:84 msgid "8 GiB (SDHC)" -msgstr "" +msgstr "8 GiB (SDHC)" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:27 msgid "8 Mbit (123 blocks)" -msgstr "" +msgstr "8 Mbit (123 blokk)" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:131 msgid "8-bit" @@ -1023,26 +1031,27 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" +"Ha bizonytalan vagy, hagyd üresen." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1067,8 +1076,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1082,7 +1091,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Egy lemez már behelyezés alatt." @@ -1096,7 +1105,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1112,14 +1121,14 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" -msgstr "" +msgstr "A&uto mentés" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 msgid "AD16" -msgstr "" +msgstr "AD16" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:114 msgid "" @@ -1137,7 +1146,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR kód" @@ -1149,7 +1158,7 @@ msgstr "AR kódok" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198 msgid "ASCII" -msgstr "" +msgstr "ASCII" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 #: qtbase/src/gui/kernel/qplatformtheme.cpp:724 @@ -1180,16 +1189,10 @@ msgid "Achievement Settings" msgstr "Teljesítmény beállítások" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Teljesítmények" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1260,9 +1263,9 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:39 msgid "Activate NetPlay Chat" -msgstr "" +msgstr "NetPlay Chat aktiválása" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktív" @@ -1270,15 +1273,15 @@ msgstr "Aktív" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Aktív szálak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adapter" @@ -1286,7 +1289,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter érzékelve" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1296,7 +1299,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Hozzáadás" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "&Töréspont hozzáadása" @@ -1321,43 +1324,43 @@ msgstr "Töréspont hozzáadása" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Hozzáadás" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Cím" @@ -1483,7 +1486,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1492,7 +1495,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1500,34 +1503,34 @@ msgid "All Files" msgstr "Minden fájl" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Minden fájl (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Minden GC/Wii fájl" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" -msgstr "" +msgstr "All Save States (*.sav *.s##);; Minden fájl (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1543,15 +1546,15 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" -msgstr "" +msgstr "Eltérő régióbeállítások engedélyezése" #: Source/Core/DolphinQt/Main.cpp:263 msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "SD kártyára írás engedélyezése" @@ -1569,7 +1572,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Mindig" @@ -1591,7 +1594,7 @@ msgstr "A behelyezni próbált lemez nem található." msgid "Anaglyph" msgstr "Anaglif" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Elemzés" @@ -1617,15 +1620,15 @@ msgstr "Élsimítás:" msgid "Any Region" msgstr "Bármilyen régió" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1643,7 +1646,7 @@ msgstr "Betöltőprogram dátuma:" msgid "Apply" msgstr "Alkalmaz" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1651,7 +1654,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Biztosan törölni szeretnéd: '%1'?" @@ -1663,9 +1666,9 @@ msgstr "Biztosan törlöd ezt a fájlt?" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" -msgstr "" +msgstr "Biztosan ki akarsz lépni a NetPlay-ből?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -1675,16 +1678,16 @@ msgstr "Biztos vagy benne?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Képarány" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Képarány-korrigált belső felbontás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Képarány:" @@ -1692,7 +1695,7 @@ msgstr "Képarány:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1704,7 +1707,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Vezérlő portjainak társítása" @@ -1725,11 +1728,11 @@ msgstr "" msgid "Audio" msgstr "Audió" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Audió feldolgozó:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Hangnyújtás beállítások" @@ -1745,7 +1748,7 @@ msgstr "Szerző" msgid "Authors" msgstr "Készítők" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatikus" @@ -1754,11 +1757,11 @@ msgstr "Automatikus" msgid "Auto (Multiple of 640x528)" msgstr "Automatikus (640x528 többszöröse)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Automatikus frissítés beállításai" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1766,7 +1769,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Ablak automatikus méretezése" @@ -1774,15 +1777,15 @@ msgstr "Ablak automatikus méretezése" msgid "Auto-Hide" msgstr "Automatikus elrejtés" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" -msgstr "" +msgstr "Automatikus szinkronizálás a mappával" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1790,7 +1793,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" -msgstr "" +msgstr "Jelenlegi értékek automatikus frissítése" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). @@ -1822,27 +1825,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP regiszter " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Háttéralkalmazás beállításai" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Háttéralkalmazás:" @@ -1860,17 +1863,17 @@ msgstr "Hátra" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:824 msgid "Bad Value Given" -msgstr "" +msgstr "Rossz érték lett megadva" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:685 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:810 msgid "Bad address provided." -msgstr "" +msgstr "Rossz cím lett megadva." #: Source/Core/DiscIO/VolumeVerifier.cpp:355 msgid "Bad dump" -msgstr "" +msgstr "Rossz kimentés" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:691 @@ -1880,12 +1883,12 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:654 msgid "Bad value provided." -msgstr "" +msgstr "Rossz érték lett megadva." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -1905,15 +1908,15 @@ msgstr "Hangoló" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Alap" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Alapok beállítása" @@ -1929,10 +1932,6 @@ msgstr "" msgid "Battery" msgstr "Akkumulátor" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Béta (havonta egyszer)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, stb." @@ -1955,7 +1954,7 @@ msgstr "Bilineáris" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" -msgstr "" +msgstr "Bináris SSL" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:428 msgid "Binary SSL (read)" @@ -1965,11 +1964,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitráta (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1979,7 +1978,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blokk méret" @@ -2015,67 +2014,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" -msgstr "" +msgstr "BootMii NAND backup fájl(*.bin);;Minden fájl (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" -msgstr "" +msgstr "BootMii keys fájl (*.bin);;Minden fájl (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Szegély nélküli teljes képernyő" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Lent" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2087,23 +2086,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2120,7 +2119,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2130,19 +2129,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2157,19 +2156,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Töréspont" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Töréspontok" @@ -2203,24 +2207,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "&NetPlay játékmenetek böngészése...." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Pufferméret:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Pufferméret megváltozott erre: %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Puffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2265,17 +2269,17 @@ msgstr "" msgid "C Stick" msgstr "C kar" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP regiszter " #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:63 msgid "CPU Emulation Engine:" -msgstr "" +msgstr "CPU emulációs motor:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:52 msgid "CPU Options" @@ -2283,13 +2287,13 @@ msgstr "CPU beállítások" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75 msgid "CRC32:" -msgstr "" +msgstr "CRC32:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:32 msgid "Cached Interpreter (slower)" msgstr "Gyorsítótáras értelmező (lassabb)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2298,7 +2302,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:109 msgid "Calculate" -msgstr "" +msgstr "Kiszámítás" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 msgid "" @@ -2320,7 +2324,7 @@ msgstr "Kalibráció" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2346,7 +2350,7 @@ msgstr "Kamera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2362,18 +2366,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" -msgstr "" +msgstr "Nem indítható NetPlay munkamenet, amíg egy játék fut!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Mégse" @@ -2382,15 +2386,15 @@ msgstr "Mégse" msgid "Cancel Calibration" msgstr "Kalibrálás megszakítása" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2407,29 +2411,29 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." -msgstr "" +msgstr "A GC IPL nem található." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." -msgstr "" +msgstr "Nem generálható AR kód ehhez a címhez." #: Source/Core/DolphinQt/CheatSearchWidget.cpp:438 msgid "Cannot refresh without results." msgstr "Eredmények nélkül nem lehet frissíteni." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." -msgstr "" +msgstr "Nem állítható be üres útvonalra a GCI mappa." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 msgid "Cannot set memory card to an empty path." -msgstr "" +msgstr "Nem állítható be üres útvonalra a memóriakártya." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." -msgstr "" +msgstr "Nem indítható el a játék, mert a GC IPL nem található." #. i18n: "Captured" is a participle here. This string is used when listing villains, not when a #. villain was just captured @@ -2459,7 +2463,7 @@ msgstr "" msgid "Change &Disc" msgstr "Lemez&váltás" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Lemez&váltás..." @@ -2467,19 +2471,28 @@ msgstr "Lemez&váltás..." msgid "Change Disc" msgstr "Lemezváltás" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Automatikus lemezváltás" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" +msgstr "Lemez váltása erre: {0}" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." msgstr "" +"Az emuláció sebességétől függően megváltoztatja az FPS számláló színét." +"

Ha bizonytalan vagy, hagyd kipipálva." #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:51 msgid "" @@ -2493,7 +2506,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2501,11 +2514,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2513,7 +2526,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Csaláskód szerkesztő" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Csalás keresése" @@ -2521,7 +2534,7 @@ msgstr "Csalás keresése" msgid "Cheats Manager" msgstr "Csalás kezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "NAND ellenőrzése..." @@ -2539,9 +2552,9 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" -msgstr "" +msgstr "Ellenőrzőösszeg" #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "China" @@ -2551,7 +2564,7 @@ msgstr "Kína" msgid "Choose" msgstr "Válassz" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Válassz megnyitandó fájlt" @@ -2559,15 +2572,15 @@ msgstr "Válassz megnyitandó fájlt" msgid "Choose a file to open or create" msgstr "Válassz megnyitandó vagy létrehozandó fájlt" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2580,7 +2593,7 @@ msgstr "Válassz mappát a kitömörítéshez" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Klasszikus gombok" @@ -2591,18 +2604,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Törlés" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Gyorsítótár törlése" @@ -2623,7 +2636,7 @@ msgstr "" msgid "Close" msgstr "Bezárás" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ko&nfiguráció" @@ -2631,11 +2644,11 @@ msgstr "Ko&nfiguráció" msgid "Code" msgstr "Kód" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2653,7 +2666,7 @@ msgstr "Színkorrekció" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:24 msgid "Color Correction Configuration" -msgstr "" +msgstr "Színkorrekció konfigurálása" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:180 msgid "Color Correction:" @@ -2663,11 +2676,11 @@ msgstr "Színkorrekció:" msgid "Color Space" msgstr "Színtér" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2694,17 +2707,17 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" #: Source/Core/VideoCommon/ShaderCache.cpp:174 msgid "Compiling Shaders" -msgstr "" +msgstr "Árnyékolók összeállítása" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Tömörítés" @@ -2717,7 +2730,7 @@ msgstr "Tömörítés szintje:" msgid "Compression:" msgstr "Tömörítés:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2725,11 +2738,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2745,7 +2758,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2760,7 +2773,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2814,7 +2832,7 @@ msgstr "Beállítások" msgid "Configure Controller" msgstr "Vezérlő konfigurálása" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin konfigurálása" @@ -2827,27 +2845,27 @@ msgstr "Bemenet konfigurálása" msgid "Configure Output" msgstr "Kimenet konfigurálása" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Megerősítés" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Megerősítés leállításkor" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Megerősítés" @@ -2857,37 +2875,37 @@ msgstr "Megerősítés" msgid "Connect" msgstr "Csatlakozás" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Balance Board csatlakoztatása" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "USB billentyűzet csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" -msgstr "" +msgstr "Wii Remote %1 csatlakoztatása" #: Source/Core/Core/HotkeyManager.cpp:81 msgid "Connect Wii Remote 1" -msgstr "" +msgstr "Wii Remote 1 csatlakoztatása" #: Source/Core/Core/HotkeyManager.cpp:82 msgid "Connect Wii Remote 2" -msgstr "" +msgstr "Wii Remote 2 csatlakoztatása" #: Source/Core/Core/HotkeyManager.cpp:83 msgid "Connect Wii Remote 3" -msgstr "" +msgstr "Wii Remote 3 csatlakoztatása" #: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 4" -msgstr "" +msgstr "Wii Remote 4 csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" -msgstr "" +msgstr "Wii Remote-ok csatlakoztatása" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:116 msgid "Connect Wii Remotes for Emulated Controllers" @@ -2901,7 +2919,7 @@ msgstr "" msgid "Connected" msgstr "Csatlakoztatva" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Csatlakozás" @@ -2926,25 +2944,25 @@ msgstr "" msgid "Control Stick" msgstr "Vezérlő kar" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" -msgstr "" +msgstr "Vezérlő profil" #: Source/Core/Core/HotkeyManager.cpp:342 msgid "Controller Profile 1" -msgstr "" +msgstr "Vezérlő profil 1" #: Source/Core/Core/HotkeyManager.cpp:343 msgid "Controller Profile 2" -msgstr "" +msgstr "Vezérlő profil 2" #: Source/Core/Core/HotkeyManager.cpp:344 msgid "Controller Profile 3" -msgstr "" +msgstr "Vezérlő profil 3" #: Source/Core/Core/HotkeyManager.cpp:345 msgid "Controller Profile 4" -msgstr "" +msgstr "Vezérlő profil 4" #: Source/Core/DolphinQt/Config/ControllersWindow.cpp:16 msgid "Controller Settings" @@ -3013,8 +3031,8 @@ msgstr "Konvergencia" msgid "Convergence:" msgstr "Konvergencia:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Sikertelen átalakítás." @@ -3022,9 +3040,9 @@ msgstr "Sikertelen átalakítás." msgid "Convert" msgstr "Konvertálás" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Fájl mappává konvertálása" @@ -3032,9 +3050,9 @@ msgstr "Fájl mappává konvertálása" msgid "Convert File..." msgstr "Fájl konvertálása..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Mappa fájllá konvertálása " @@ -3054,8 +3072,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Konvertálás..." @@ -3086,22 +3104,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Másolás" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Cím másolása" @@ -3109,19 +3127,19 @@ msgstr "Cím másolása" msgid "Copy Failed" msgstr "Másolás sikertelen" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Érték másolása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3139,8 +3157,8 @@ msgstr "" msgid "Core" msgstr "Mag" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3164,23 +3182,27 @@ msgstr "" #: Source/Core/Core/NetPlayClient.cpp:142 msgid "Could not create client." -msgstr "" +msgstr "Kliens létrehozása sikertelen." #: Source/Core/Core/NetPlayClient.cpp:156 msgid "Could not create peer." -msgstr "" +msgstr "Peer létrehozása sikertelen." #: Source/Core/DolphinQt/WiiUpdate.cpp:49 msgid "" "Could not download update files from Nintendo. Please check your Internet " "connection and try again." msgstr "" +"Nem sikerült letölteni a frissítést a Nintendótól. Ellenőrizd az " +"internetkapcsolatod, majd próbáld újra." #: Source/Core/DolphinQt/WiiUpdate.cpp:44 msgid "" "Could not download update information from Nintendo. Please check your " "Internet connection and try again." msgstr "" +"Nem sikerült letölteni a frissítési információkat a Nintendótól. Ellenőrizd " +"az internetkapcsolatod, majd próbáld újra." #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:169 msgid "" @@ -3247,7 +3269,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "A központi szerver nem található" @@ -3263,13 +3285,13 @@ msgstr "A fájl nem olvasható." msgid "Country:" msgstr "Ország:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Létrehozás" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3283,7 +3305,7 @@ msgstr "Új memóriakártya létrehozása" msgid "Create Skylander File" msgstr "Skylander fájl létrehozása" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3294,17 +3316,17 @@ msgstr "Létrehozás..." #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:118 msgid "Creator:" -msgstr "" +msgstr "Készítő:" #: Source/Core/Common/MsgHandler.cpp:62 msgid "Critical" msgstr "Kritikus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Levágás" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3316,58 +3338,58 @@ msgstr "" msgid "Crossfade" msgstr "Átúsztatás" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Jelenlegi régió" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Jelenlegi érték" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Jelenlegi kontextus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Jelenlegi játék" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Jelenlegi szál" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Egyéni" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" -msgstr "" +msgstr "Egyéni (nyújtott)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" -msgstr "" +msgstr "Egyéni címtartomány" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Egyéni képarány magassága" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Egyéni képarány szélessége" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Egyéni képarány:" @@ -3404,13 +3426,13 @@ msgstr "DFF fájl mérete 0; sérült/nem teljes fájl?" #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:49 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:149 msgid "DJ Turntable" -msgstr "" +msgstr "DJ pult" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:40 msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3418,21 +3440,21 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "DSP HLE (gyors)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (ajánlott)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (nagyon lassú)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (lassú)" #: Source/Core/DolphinQt/Config/ControllerInterface/ControllerInterfaceWindow.cpp:31 msgid "DSU Client" -msgstr "" +msgstr "DSU kliens" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:51 msgid "" @@ -3452,7 +3474,7 @@ msgstr "Dance Mat" msgid "Dark" msgstr "Sötét" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Adat" @@ -3486,7 +3508,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:403 msgid "Datel MaxDrive/Pro files" -msgstr "" +msgstr "Datel MaxDrive/Pro fájlok" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:43 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:37 @@ -3497,8 +3519,8 @@ msgstr "Holtsáv" msgid "Debug" msgstr "Hibakeresés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Hibakeresés" @@ -3507,7 +3529,7 @@ msgstr "Hibakeresés" msgid "Decimal" msgstr "Decimális" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Dekódolás minősége:" @@ -3534,7 +3556,7 @@ msgstr "IR csökkentése" #: Source/Core/Core/HotkeyManager.cpp:183 msgid "Decrease Selected State Slot" -msgstr "" +msgstr "Kiválasztott állapot foglalatának csökkentése" #: Source/Core/Core/FreeLookManager.cpp:108 msgid "Decrease X" @@ -3546,7 +3568,7 @@ msgstr "Y csökkentése" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Alapértelmezett" @@ -3554,7 +3576,7 @@ msgstr "Alapértelmezett" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Alapértelmezett eszköz" @@ -3566,11 +3588,11 @@ msgstr "Alapértelmezett betítípus" msgid "Default ISO:" msgstr "Alapértelmezett ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Alapértelmezett szál" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3578,7 +3600,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3587,8 +3609,9 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Törlés" @@ -3612,18 +3635,18 @@ msgstr "Mélység" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:143 msgid "Depth Percentage:" -msgstr "" +msgstr "Mélység százalékos értéke:" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:220 msgid "Depth:" msgstr "Mélység:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Leírás" @@ -3637,8 +3660,8 @@ msgstr "Leírás:" msgid "Description: %1" msgstr "Leírás: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3650,21 +3673,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Leválasztva" @@ -3672,7 +3695,7 @@ msgstr "Leválasztva" msgid "Detect" msgstr "Észlelés" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "RSO modulok észlelése" @@ -3680,11 +3703,11 @@ msgstr "RSO modulok észlelése" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Fejlesztői (naponta többször)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Eszköz" @@ -3702,7 +3725,7 @@ msgstr "Eszköz beállítások" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Eszköz:" @@ -3710,7 +3733,7 @@ msgstr "Eszköz:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Képernyő sötétítése öt perc inaktivitás után." @@ -3726,11 +3749,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Le&csatlakoztatva" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Letiltás" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Határolókeret kikapcsolása" @@ -3739,7 +3757,7 @@ msgstr "Határolókeret kikapcsolása" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3747,23 +3765,23 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Emulációs sebességkorlát kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" -msgstr "Fastmem tiltása" +msgstr "Fastmem kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" -msgstr "" +msgstr "Fastmem Arena kikapcsolása" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:154 msgid "Disable Fog" msgstr "Köd kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" -msgstr "JIT gyorsítótár tiltása" +msgstr "JIT gyorsítótár kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3778,7 +3796,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Lemez" @@ -3802,9 +3826,13 @@ msgstr "Lemez" msgid "Discard" msgstr "Elvetés" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" -msgstr "" +msgstr "Megjelenítés típusa" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:240 msgid "Display values in Hex" @@ -3832,11 +3860,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3846,7 +3874,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Biztos leállítod az aktuális emulációt?" @@ -3854,22 +3882,22 @@ msgstr "Biztos leállítod az aktuális emulációt?" msgid "Do you want to try to repair the NAND?" msgstr "Szeretnéd helyreállítani a NAND-ot?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" -msgstr "" +msgstr "Dolphin FIFO napló (*.dff)" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:344 msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3881,8 +3909,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS videók (*.dtm)" @@ -3913,9 +3941,9 @@ msgstr "" #. can be downloaded at no cost, but that's not what this message says.) #: Source/Core/DolphinQt/AboutDialog.cpp:74 msgid "Dolphin is a free and open-source GameCube and Wii emulator." -msgstr "" +msgstr "A Dolphin egy szabad, nyílt forráskódú GameCube és Wii emulátor." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "A Dolphin túl régi az átjárási szerverhez" @@ -3929,13 +3957,15 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" +"A Dolphin ezt fogja használni azokhoz a játékokhoz, amelyek régióját nem " +"tudja megállapítani automatikusan." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3944,7 +3974,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Ne frissítsen" @@ -3965,7 +3995,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3987,7 +4017,7 @@ msgstr "Kódok letöltése" msgid "Download Codes from the WiiRD Database" msgstr "Kódok letöltése a WiiRD adatbázisból" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Játékborítók letöltése a GameTDB.com-ról Rács módban való használatra" @@ -3997,6 +4027,16 @@ msgstr "Letöltés sikeres" #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:386 msgid "Downloaded %1 codes. (added %2)" +msgstr "%1 kód letöltve. (%2 hozzáadva)" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." msgstr "" #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. @@ -4038,19 +4078,19 @@ msgstr "&FakeVMEM kimentése" msgid "Dump &MRAM" msgstr "&MRAM kimentése" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Hang kimentése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Alap textúrák kimentése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "EFB cél kimentése" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Képkockák kimentése" @@ -4058,7 +4098,7 @@ msgstr "Képkockák kimentése" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4066,7 +4106,7 @@ msgstr "" msgid "Dump Path:" msgstr "Kimentési út:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "XFB cél kimentése" @@ -4091,44 +4131,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" -msgstr "" +msgstr "Turbógomb lenyomásának időtartama (képkocka):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" -msgstr "" +msgstr "Turbógomb felengedésének időtartama (képkocka):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holland" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "K&ilépés" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4140,7 +4180,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4148,7 +4188,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Korai memória frissítés" @@ -4167,7 +4207,16 @@ msgstr "Kelet-Ázsia" msgid "Edit Breakpoint" msgstr "Töréspont módosítása" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Szerkesztés..." @@ -4187,7 +4236,7 @@ msgstr "Effekt" msgid "Effective" msgstr "Effektív" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4209,17 +4258,17 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Beágyazott képkocka puffer (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Üres" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Az emulációs szál már fut" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:91 msgid "Emulate Disc Speed" -msgstr "" +msgstr "Lemezsebesség emulálása" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 msgid "Emulate Infinity Base" @@ -4231,7 +4280,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:112 msgid "Emulate the Wii's Bluetooth adapter" -msgstr "" +msgstr "Wii Bluetooth adapterének emulálása" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:41 msgid "" @@ -4239,7 +4288,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Emulált USB esközök" @@ -4261,34 +4310,24 @@ msgstr "Emuláció sebessége" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Engedélyezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "API-érvényesítési rétegek használata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Teljesítményjelvények engedélyezése" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Teljesítmények engedélyezése" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Hangnyújtás engedélyezése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Csalások használata" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Vezérlőbemenet engedélyezése" @@ -4296,15 +4335,19 @@ msgstr "Vezérlőbemenet engedélyezése" msgid "Enable Custom RTC" msgstr "Egyéni RTC használata" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Hibakereső felület engedélyezése" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Kétmagos mód használata" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Kétmagos mód használata (gyorsítás)" @@ -4316,7 +4359,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4324,15 +4367,15 @@ msgstr "" msgid "Enable FPRF" msgstr "FPRF használata" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Grafikai modok engedélyezése" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "Hardcore mód engedélyezése" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4350,41 +4393,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Ranglisták engedélyezése" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "MMU használata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Előrehaladási értesítések engedélyezése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Progresszív pásztázás használata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" -msgstr "" +msgstr "Rumble engedélyezése" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Képernyővédő használata" @@ -4392,19 +4427,23 @@ msgstr "Képernyővédő használata" msgid "Enable Speaker Data" msgstr "Hangszóró adatok bekapcsolása" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Nem hivatalos teljesítmények engedélyezése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Használati statisztika jelentése" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Vonalháló használata" @@ -4412,34 +4451,13 @@ msgstr "Vonalháló használata" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4447,34 +4465,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Teljesítmények feloldásának engedélyezése.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4507,7 +4532,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4515,7 +4540,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4532,9 +4557,9 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." -msgstr "" +msgstr "Hangnyújtás engedélyezése az emuláció sebességének igazításához." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:269 msgid "" @@ -4560,7 +4585,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4568,7 +4593,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4576,7 +4601,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4585,7 +4610,7 @@ msgstr "" #. i18n: Character encoding #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:43 msgid "Encoding" -msgstr "" +msgstr "Kódolás" #: Source/Core/DolphinQt/GCMemcardManager.cpp:616 msgid "" @@ -4595,13 +4620,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet nincs inicializálva" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Angol" @@ -4612,29 +4641,29 @@ msgstr "Képjavítások" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:87 msgid "Enter IP address of device running the XLink Kai Client:" -msgstr "" +msgstr "XLink Kai klienst futtató eszköz IP címének megadása:" #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:59 msgid "Enter USB device ID" -msgstr "" +msgstr "USB eszköz ID megadása" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" -msgstr "" +msgstr "Figyelendő cím megadása:" #. i18n: MAC stands for Media Access Control. A MAC address uniquely identifies a network #. interface (physical) like a serial number. "MAC" should be kept in translations. #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:39 msgid "Enter new Broadband Adapter MAC address:" -msgstr "" +msgstr "Új Broadband adapter MAC-cím megadása:" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:301 msgid "Enter password" -msgstr "" +msgstr "Jelszó megadása" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:78 msgid "Enter the DNS server to use:" -msgstr "" +msgstr "Használni kívánt DNS szerver megadása:" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:62 msgid "" @@ -4642,33 +4671,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 msgid "Enter the RSO module address:" -msgstr "" +msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194 #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4681,52 +4710,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Hiba" @@ -4743,11 +4772,11 @@ msgstr "Hiba az adapter megnyitásakor: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" -msgstr "" +msgstr "Érték konvertálási hiba" #: Source/Core/DolphinQt/Translation.cpp:323 msgid "Error loading selected language. Falling back to system default." @@ -4759,13 +4788,13 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1852 msgid "Error processing codes." -msgstr "" +msgstr "Kódfeldolgozási hiba." #: Source/Core/Core/NetPlayClient.cpp:1824 msgid "Error processing data." @@ -4850,12 +4879,12 @@ msgstr "" msgid "Euphoria" msgstr "Eufória" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Európa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4899,11 +4928,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Kísérleti" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Minden Wii mentés exportálása" @@ -4918,7 +4947,7 @@ msgstr "Sikertelen exportálás" msgid "Export Recording" msgstr "Felvétel exportálása" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Felvétel exportálása..." @@ -4946,14 +4975,14 @@ msgstr "Exportálás, mint .&gcs..." msgid "Export as .&sav..." msgstr "Exportálás, mint .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n mentés exportálva" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Kiegészítő" @@ -4966,7 +4995,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Külső" @@ -4974,35 +5003,35 @@ msgstr "Külső" msgid "External Frame Buffer (XFB)" msgstr "Küldő képkockapuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Teljes lemez kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Teljes partíció kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Fájl kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Fájlok kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Rendszeradatok kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Összes fájl kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Könyvtár kibontása..." @@ -5011,8 +5040,8 @@ msgstr "Könyvtár kibontása..." msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO lejátszó" @@ -5028,11 +5057,11 @@ msgstr "" "Memóriakártya megnyitása sikertelen:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5052,7 +5081,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Nem sikerült kapcsolódni ehhez: Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Nem sikerült kapcsolódni a szerverhez: %1" @@ -5073,15 +5102,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Nem sikerült létrehozni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5127,15 +5156,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Fájl kibontása sikertelen." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Rendszeradatok kibontása sikertelen." @@ -5154,12 +5183,12 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "\"%1\" importálása sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5167,14 +5196,14 @@ msgstr "" "Mentési fájl importálása sikertelen. A megadott fájl sérült, vagy nem " "érvényes Wii mentés." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5194,18 +5223,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5217,21 +5246,21 @@ msgstr "d3d11.dll betöltése sikertelen" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll betöltése sikertelen" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Nem sikerült betölteni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5245,17 +5274,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Nem sikerült módosítani a Skylander-t!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' megnyitása sikertelen" @@ -5263,7 +5292,7 @@ msgstr "'%1' megnyitása sikertelen" msgid "Failed to open Bluetooth device: {0}" msgstr "Nem sikerült megnyitni a Bluetooth eszközt: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5293,15 +5322,15 @@ msgstr "" msgid "Failed to open file." msgstr "Nem sikerült megnyitni a fájlt." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Nem sikerült megnyitni a szervert" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Nem sikerült megnyitni az Infinity fájlt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5309,11 +5338,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Nem sikerült megnyitni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5360,23 +5389,23 @@ msgstr "Nem sikerült beolvasni a \"{0}\" bemeneti fájlt." msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Nem sikerült beolvasni az Infinity fájlt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Nem sikerült beolvasni a Skylander fájlt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5390,7 +5419,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "{0} olvasása sikertelen" @@ -5421,31 +5450,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." -msgstr "" +msgstr "FIFO napló mentése sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5496,19 +5525,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5521,7 +5550,7 @@ msgstr "Gyors" msgid "Fast Depth Calculation" msgstr "Gyors mélységszámolás" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5532,7 +5561,7 @@ msgstr "" msgid "Field of View" msgstr "Látómező" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5546,7 +5575,7 @@ msgstr "Fájl részletei" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Fájlformátum" @@ -5554,24 +5583,24 @@ msgstr "Fájlformátum" msgid "File Format:" msgstr "Fájl formátuma:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Fájl információ" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Fájlnév" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Fájl útvonala:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Fájlméret" @@ -5658,7 +5687,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5667,12 +5695,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5692,7 +5720,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "16:9 kényszerítése" @@ -5700,7 +5728,7 @@ msgstr "16:9 kényszerítése" msgid "Force 24-Bit Color" msgstr "24-Bites szín kényszerítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "4:3 kényszerítése" @@ -5732,11 +5760,11 @@ msgstr "" msgid "Force Nearest" msgstr "Legközelebbi kényszerítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5758,6 +5786,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Formátum:" @@ -5773,17 +5807,17 @@ msgstr "Előre" msgid "Forward port (UPnP)" msgstr "Port forward (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" -msgstr "" +msgstr "%1 találat erre: \"%2\"" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:337 #, c-format msgctxt "" msgid "Found %n address(es)." -msgstr "" +msgstr "%n cím található." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5804,11 +5838,11 @@ msgstr "Képkocka léptetés gyorsítás" msgid "Frame Advance Reset Speed" msgstr "Képkocka léptetés alap sebesség" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" -msgstr "" +msgstr "Képkocka kimentés" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Képkocka hatókör" @@ -5816,9 +5850,9 @@ msgstr "Képkocka hatókör" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" -msgstr "" +msgstr "Rögzítendő képkockák:" #: Source/Core/DiscIO/Enums.cpp:36 msgid "France" @@ -5826,23 +5860,23 @@ msgstr "Francia" #: Source/Core/DolphinQt/GCMemcardManager.cpp:312 msgid "Free Blocks: %1" -msgstr "" +msgstr "Szabad blokkok: %1" #: Source/Core/DolphinQt/GCMemcardManager.cpp:313 msgid "Free Files: %1" -msgstr "" +msgstr "Szabad fájlok: %1" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:49 msgid "Free Look Control Type" -msgstr "" +msgstr "Szabad nézet vezérlőtípus" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" -msgstr "" +msgstr "Szabad nézet vezérlő %1" #: Source/Core/DolphinQt/Config/FreeLookWindow.cpp:19 msgid "Free Look Settings" -msgstr "" +msgstr "Szabad nézet beállítások" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:61 msgid "" @@ -5851,23 +5885,27 @@ msgid "" "href=\"https://wiki.dolphin-emu.org/index.php?title=Free_Look\">refer to " "this page." msgstr "" +"A szabad nézet lehetővé teszi a játékon belüli kamera manipulálását. " +"Többféle kameratípus elérhető a legördülő listából.

Részletes " +"útmutatóért látogass el ide." #: Source/Core/Core/FreeLookManager.cpp:315 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:25 msgid "FreeLook" -msgstr "" +msgstr "Szabad nézet" #: Source/Core/Core/HotkeyManager.cpp:348 msgid "Freelook" -msgstr "" +msgstr "Szabad nézet" #: Source/Core/Core/HotkeyManager.cpp:121 msgid "Freelook Toggle" -msgstr "" +msgstr "Szabad nézet kapcsoló" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francia" @@ -5886,8 +5924,8 @@ msgid "From" msgstr "Ettől:" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Ettől:" @@ -5895,33 +5933,37 @@ msgstr "Ettől:" msgid "FullScr" msgstr "Teljes képernyő" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funkció" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funkciók" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:42 msgid "GBA (Integrated)" -msgstr "" +msgstr "GBA (integrált)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:44 msgid "GBA (TCP)" -msgstr "" +msgstr "GBA (TCP)" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:115 msgid "GBA Cartridge Path:" -msgstr "" +msgstr "GBA kazetta útvonal:" #: Source/Core/Core/HotkeyManager.cpp:358 msgid "GBA Core" -msgstr "" +msgstr "GBA mag" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:35 msgid "GBA Port %1" -msgstr "" +msgstr "GBA Port %1" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198 msgid "GBA Settings" @@ -5929,7 +5971,7 @@ msgstr "GBA beállítások" #: Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp:27 msgid "GBA TAS Input %1" -msgstr "" +msgstr "GBA TAS bemenet %1" #: Source/Core/Core/HotkeyManager.cpp:359 msgid "GBA Volume" @@ -5939,17 +5981,17 @@ msgstr "GBA hangerő" msgid "GBA Window Size" msgstr "GBA ablakméret" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" -msgstr "" +msgstr "GBA%1 ROM megváltozott erre: \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" -msgstr "" +msgstr "GBA%1 ROM letiltva" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:38 msgid "GC Port %1" -msgstr "" +msgstr "GC Port %1" #: Source/Core/Core/HW/EXI/EXI_Device.h:103 msgid "GCI Folder" @@ -5965,7 +6007,7 @@ msgstr "GCMemcardDirectory: ClearBlock érvénytelen blokkcímmel lett meghívva #: Source/Core/DolphinQt/ConvertDialog.cpp:349 msgid "GCZ GC/Wii images (*.gcz)" -msgstr "" +msgstr "GCZ GC/Wii képfájlok (*.gcz)" #: Source/Core/VideoCommon/CommandProcessor.cpp:720 msgid "" @@ -5979,13 +6021,13 @@ msgstr "" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:181 msgid "GL_MAX_TEXTURE_SIZE is {0} - must be at least 1024." -msgstr "" +msgstr "GL_MAX_TEXTURE_SIZE mérete {0} - legalább 1024-nek kell lennie." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:73 msgid "GPU Texture Decoding" -msgstr "" +msgstr "GPU textúra dekódolás" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5993,39 +6035,49 @@ msgstr "" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:96 msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" -msgstr "" +msgstr "GPU: OGL ERROR: Támogatja az OpenGL 2.0-t a videokártyád?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" +"GPU: Támogatja az OpenGL 3.0-t a videokártyád?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" +"GPU: Támogatja az OpenGL 3.3-at a videokártyád?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" +"GPU: Támogatja az OpenGL 3.1-et a videokártyád?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" +"GPU: Támogatja az OpenGL 3.0-t a videokártyád?" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:103 msgid "" "GPU: OGL ERROR: Need OpenGL version 3.\n" "GPU: Does your video card support OpenGL 3?" msgstr "" +"GPU: OGL ERROR: Need OpenGL version 3.\n" +"GPU: Támogatja az OpenGL 3-at a videokártyád?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6043,16 +6095,16 @@ msgstr "" msgid "Game" msgstr "Játék" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" -msgstr "" +msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance kártyák (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6060,7 +6112,7 @@ msgstr "" "Game Boy Advance ROMok (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "Minden fájl (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6070,7 +6122,7 @@ msgstr "Játék színtér:" #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:69 msgid "Game Config" -msgstr "" +msgstr "Játék konfiguráció" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:87 msgid "Game Details" @@ -6089,7 +6141,7 @@ msgid "Game Gamma:" msgstr "Játék gamma:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Játék azonosító" @@ -6098,25 +6150,25 @@ msgstr "Játék azonosító" msgid "Game ID:" msgstr "Játék azonosító:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Játék állapot" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "A játéknak eltér a lemezszáma." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "A játéknak eltér a verziója" @@ -6129,7 +6181,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "A játék régiója nem egyezik." @@ -6149,11 +6201,11 @@ msgstr "GameCube adapter Wii U-hoz" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube vezérlő" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6161,11 +6213,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube vezérlők" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube billentyűzet" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6182,7 +6234,7 @@ msgstr "GameCube memóriakártyák" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube memóriakártyák (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6200,17 +6252,17 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:411 msgid "Gecko (04)" -msgstr "" +msgstr "Gecko (04)" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:412 msgid "Gecko (C0)" -msgstr "" +msgstr "Gecko (C0)" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:413 msgid "Gecko (C2)" -msgstr "" +msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko kódok" @@ -6220,35 +6272,35 @@ msgstr "Gecko kódok" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Általános" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Általános és beállítások" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Új statisztikai azonosító generálása" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Német" @@ -6275,7 +6327,7 @@ msgstr "Óriás" msgid "Giants" msgstr "Óriások" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golf mód" @@ -6284,7 +6336,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6296,11 +6348,11 @@ msgstr "Grafikai modok" #: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" -msgstr "" +msgstr "Grafikai kapcsolók" #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:59 msgid "Graphics mods are currently disabled." -msgstr "" +msgstr "A grafikai modok jelenleg ki vannak kapcsolva." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 msgid "" @@ -6324,7 +6376,7 @@ msgstr "Zöld balra" msgid "Green Right" msgstr "Zöld jobbra" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Rács nézet" @@ -6361,7 +6413,7 @@ msgstr "HDR utófeldolgozás" msgid "Hacks" msgstr "Hangolások" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6393,7 +6445,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimális" @@ -6402,11 +6454,11 @@ msgstr "Hexadecimális" msgid "Hide" msgstr "Elrejtés" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" -msgstr "" +msgstr "&Vezérlők elrejtése" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Összes elrejtése" @@ -6418,16 +6470,23 @@ msgstr "Már játékban lévők elrejtése" msgid "Hide Incompatible Sessions" msgstr "Nem kompatibilisek elrejtése" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Távoli GBAk elrejtése" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Magas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Legmagasabb" @@ -6450,7 +6509,7 @@ msgstr "Gazda" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6458,7 +6517,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6466,11 +6525,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6482,7 +6541,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Gyorsbillentyű beállítások" @@ -6492,11 +6551,11 @@ msgstr "Gyorsbillentyű beállítások" msgid "Hotkeys" msgstr "Gyorsbillentyűk" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6549,12 +6608,12 @@ msgstr "IP-cím:" msgid "IPL Settings" msgstr "IPL beállítások" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR érzékenysége:" @@ -6580,14 +6639,14 @@ msgstr "" msgid "Icon" msgstr "Ikon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6604,7 +6663,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6618,14 +6677,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6637,7 +6696,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6669,7 +6728,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6678,7 +6737,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6693,21 +6752,30 @@ msgstr "Importálás sikertelen" msgid "Import Save File(s)" msgstr "Mentési fájl(ok) importálása" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Wii mentés importálása..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "Játékban?" @@ -6722,7 +6790,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:223 msgid "Incorrect hero level value!" -msgstr "" +msgstr "Helytelen hősszint érték!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:246 msgid "Incorrect last placed time!" @@ -6767,7 +6835,7 @@ msgstr "IR növelése" #: Source/Core/Core/HotkeyManager.cpp:182 msgid "Increase Selected State Slot" -msgstr "" +msgstr "Kiválasztott állapot foglalatának növelése" #: Source/Core/Core/FreeLookManager.cpp:107 msgid "Increase X" @@ -6785,7 +6853,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6794,7 +6862,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6814,12 +6882,12 @@ msgstr "Infó" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Információk" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6828,11 +6896,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Bemenet" @@ -6846,23 +6914,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SD kártya behelyezése" @@ -6875,11 +6939,11 @@ msgstr "Telepítés" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Frissítés telepítése" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WAD telepítése..." @@ -6887,13 +6951,13 @@ msgstr "WAD telepítése..." msgid "Install to the NAND" msgstr "Telepítés a NAND-ra" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Utasítás" @@ -6902,7 +6966,7 @@ msgstr "Utasítás" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Utasítás:" @@ -6911,7 +6975,7 @@ msgstr "Utasítás:" msgid "Instruction: %1" msgstr "Utasítás: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6928,19 +6992,19 @@ msgstr "Intenzitás" msgid "Interface" msgstr "Felhasználói felület" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Belső LZ4 hiba - sikertelen tömörítés" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6953,19 +7017,19 @@ msgstr "Belső LZO hiba - sikertelen tömörítés" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6980,7 +7044,7 @@ msgstr "Belső felbontás" msgid "Internal Resolution:" msgstr "Belső felbontás:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6988,7 +7052,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Értelmező (leglassabb)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7004,7 +7068,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7013,11 +7077,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "Érvénytelen játékos ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" -msgstr "" +msgstr "Érvénytelen RSO modulcím: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7038,7 +7102,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Érvénytelen bemenet" @@ -7052,21 +7116,21 @@ msgstr "Érvénytelen paraméterek kerültek megadásra a kereséshez." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 msgid "Invalid password provided." -msgstr "" +msgstr "A megadott jelszó érvénytelen." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Érvénytelen rögzített fájl" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Érvénytelen keresési paraméterek (nincs kiválasztott elem)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Érvénytelen keresési karakterlánc (nem alakítható számmá)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Érvénytelen keresési karakterlánc (csak azonos karakterlánchossz támogatott)" @@ -7075,13 +7139,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Olasz" @@ -7094,11 +7158,11 @@ msgstr "Olaszország" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7106,47 +7170,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7158,31 +7222,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" -msgstr "" +msgstr "A JIT nem aktív" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japán" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japán" @@ -7191,7 +7255,7 @@ msgstr "Japán" #. "a character encoding which is from Japan / used in Japan" rather than "the Japanese language". #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:38 msgid "Japanese (Shift-JIS)" -msgstr "" +msgstr "Japán (Shift-JIS)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:297 msgid "" @@ -7199,12 +7263,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Ablak mindig felül" @@ -7238,16 +7302,16 @@ msgstr "Gombok" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Játékos kirúgása" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korea" @@ -7268,7 +7332,7 @@ msgstr "&ROM betöltése..." msgid "L-Analog" msgstr "Bal analóg" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7276,7 +7340,11 @@ msgstr "" msgid "Label" msgstr "Címke" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Legutóbbi érték" @@ -7290,23 +7358,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Késleltetés:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Késleltetés: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Késleltetés: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Késleltetés: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Késleltetés: ~80 ms" @@ -7314,7 +7382,7 @@ msgstr "Késleltetés: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Ranglisták" @@ -7322,7 +7390,7 @@ msgstr "Ranglisták" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7333,7 +7401,7 @@ msgstr "Balra" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Bal kar" @@ -7404,43 +7472,43 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Oszlopok megjelenítése a listában" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Lista nézet" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:96 msgid "Listening" -msgstr "" +msgstr "Figyelés" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Betöltés" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Egyedi textúrák betöltése" @@ -7448,11 +7516,11 @@ msgstr "Egyedi textúrák betöltése" msgid "Load File" msgstr "Fájl betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "GameCube főmenü betöltése" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7558,23 +7626,23 @@ msgstr "Állapot betöltése, foglalat 8" msgid "Load State Slot 9" msgstr "Állapot betöltése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Állapot betöltése fájlból" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Állapot betöltése a választott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Állapot betöltése foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Wii rendszermenü betöltése %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7582,54 +7650,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Betöltés a kiválasztott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Betöltés a foglalatból %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Betöltés..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Helyi" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Napló" @@ -7638,19 +7714,19 @@ msgstr "Napló" msgid "Log Configuration" msgstr "Napló beállítások" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Bejelentkezés" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Kijelentkezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Renderidő naplózása fájlba" @@ -7662,31 +7738,31 @@ msgstr "Naplótípus" msgid "Logger Outputs" msgstr "Napló kimenetek" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Sikertelen bejelentkezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" -msgstr "" +msgstr "Ismétlés" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Alacsony" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Legalacsonyabb" @@ -7698,7 +7774,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7746,7 +7822,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Készítő" @@ -7763,16 +7839,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "NAND kezelése" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7782,13 +7858,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:846 msgid "Match Found" -msgstr "" +msgstr "Egyezés található" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Max puffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "A maximális pufferméret %1 értékre változott" @@ -7797,7 +7873,7 @@ msgstr "A maximális pufferméret %1 értékre változott" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Talán lassulást okoz a Wii menüben és néhány játéknál." @@ -7818,7 +7894,7 @@ msgstr "Memória töréspont" msgid "Memory Card" msgstr "Memóriakártya" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Memóriakártya kezelő" @@ -7846,7 +7922,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7860,7 +7936,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -7869,17 +7945,17 @@ msgstr "Mikrofon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Egyebek" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Egyéb beállítások" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" -msgstr "" +msgstr "Egyéb vezérlők" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -7889,7 +7965,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7909,7 +7985,7 @@ msgstr "" msgid "Modifier" msgstr "Módosító" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7918,15 +7994,15 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:116 msgid "Modify Slot" -msgstr "" +msgstr "Foglalat módosítása" #. i18n: %1 is a name #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:62 msgid "Modifying Skylander: %1" -msgstr "" +msgstr "Skylander módosítása: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7934,7 +8010,7 @@ msgstr "" msgid "Money:" msgstr "Pénz:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7946,11 +8022,11 @@ msgstr "Monoszkóp árnyékok" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7959,40 +8035,27 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Egérkurzor láthatósága" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Az egérkurzor mindig látható lesz." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "Az egérkurzor nem lesz látható játék közben." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" -msgstr "" +msgstr "Mozgás" #: Source/Core/Core/HotkeyManager.cpp:337 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8005,35 +8068,35 @@ msgstr "" msgid "N&o to All" msgstr "N&em mindre" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND ellenőrzés" #: Source/Core/DolphinQt/NKitWarningDialog.cpp:32 msgid "NKit Warning" -msgstr "" +msgstr "NKit figyelmeztetés" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" -msgstr "" +msgstr "NTSC-J" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:69 msgid "NTSC-J (ARIB TR-B9)" -msgstr "" +msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" -msgstr "" +msgstr "NTSC-K" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:69 msgid "NTSC-M (SMPTE 170M)" -msgstr "" +msgstr "NTSC-M (SMPTE 170M)" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:42 msgid "" @@ -8044,10 +8107,10 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" -msgstr "" +msgstr "NTSC-U" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 @@ -8088,7 +8151,7 @@ msgstr "Natív (640x528)" msgid "Native GCI File" msgstr "Natív GCI fájl" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8104,27 +8167,27 @@ msgstr "NetPlay beállítás" msgid "Netherlands" msgstr "Hollandia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Hálózat" @@ -8132,16 +8195,16 @@ msgstr "Hálózat" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Soha" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Ne frissítsen automatikusan" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Új" @@ -8166,7 +8229,7 @@ msgstr "Új keresés" msgid "New Tag..." msgstr "Új címke..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Új azonosító generálva." @@ -8183,9 +8246,9 @@ msgstr "Új címke" msgid "Next Game Profile" msgstr "Következő játékprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" -msgstr "" +msgstr "Következő egyezés" #: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 #: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 @@ -8227,9 +8290,9 @@ msgstr "Nincs tömörítés" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:858 msgid "No Match" -msgstr "" +msgstr "Nincs egyezés" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Nincs mentett adat" @@ -8237,12 +8300,12 @@ msgstr "Nincs mentett adat" msgid "No data to modify!" msgstr "Nincs módosítható adat!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Nincs elérhető leírás" @@ -8254,7 +8317,7 @@ msgstr "Nincs hiba." msgid "No extension selected." msgstr "Nincs kiterjesztés kiválasztva." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Nincs betöltött / rögzített fájl." @@ -8262,7 +8325,7 @@ msgstr "Nincs betöltött / rögzített fájl." msgid "No game is running." msgstr "Nincs futó játék." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Nincs futó játék." @@ -8275,11 +8338,11 @@ msgstr "Nincs kiválasztva grafikai mod" msgid "No input" msgstr "Nincs bemenet" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Nem található probléma." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8302,9 +8365,9 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." -msgstr "" +msgstr "Nincs betöltött felvétel." #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 @@ -8321,10 +8384,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Nincs" @@ -8336,7 +8399,7 @@ msgstr "Észak-Amerika" msgid "Not Set" msgstr "Nincs megadva" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Nem minden játékos rendelkezik a játékkal. Biztos elindítod?" @@ -8356,7 +8419,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Nem található" @@ -8381,7 +8444,7 @@ msgstr "Megjegyzés" #. i18n: Null is referring to the null video backend, which renders nothing #: Source/Core/VideoBackends/Null/NullBackend.cpp:87 msgid "Null" -msgstr "" +msgstr "Null" #. i18n: The number of times a code block has been executed #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:90 @@ -8400,26 +8463,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8471,13 +8534,13 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Objektum hatókör" #: Source/Core/UICommon/NetPlayIndex.cpp:250 msgid "Oceania" -msgstr "" +msgstr "Óceánia" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:157 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 @@ -8492,18 +8555,18 @@ msgstr "" msgid "On" msgstr "Be" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Mozgatáskor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8518,7 +8581,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online &dokumentáció" @@ -8526,13 +8589,13 @@ msgstr "Online &dokumentáció" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8549,7 +8612,7 @@ msgstr "Megnyitás" msgid "Open &Containing Folder" msgstr "&Tartalmazó mappa megnyitása" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "&Felhasználói mappa megnyitása" @@ -8558,21 +8621,21 @@ msgstr "&Felhasználói mappa megnyitása" msgid "Open Directory..." msgstr "Könyvtár megnyitása..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "FIFO napló megnyitása" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" -msgstr "" +msgstr "GameCube &Mentés mappa megnyitása" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:65 msgid "Open Riivolution XML..." -msgstr "" +msgstr "Riivolution XML megnyitása..." #: Source/Core/DolphinQt/GameList/GameList.cpp:472 msgid "Open Wii &Save Folder" -msgstr "" +msgstr "Wii &Mentés mappa megnyitása" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:382 msgid "Open dump folder" @@ -8624,34 +8687,34 @@ msgstr "Narancs" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8659,20 +8722,20 @@ msgstr "Egyéb" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:158 msgid "Other Partition (%1)" -msgstr "" +msgstr "Egyéb partíció (%1)" #: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" -msgstr "" +msgstr "Egyéb állapot menedzsment" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." -msgstr "" +msgstr "Egyéb játék..." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:446 msgid "Output" @@ -8686,33 +8749,33 @@ msgstr "Kimeneti mintavételezés" msgid "Output Resampling:" msgstr "Kimeneti mintavételezés:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Felülírva" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Bemeneti fe&lvétel lejátszása..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" -msgstr "" +msgstr "PAL" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:70 msgid "PAL (EBU)" -msgstr "" +msgstr "PAL (EBU)" #. i18n: PCAP is a file format #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:426 msgid "PCAP" -msgstr "" +msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG tömörítési szint" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG tömörítés szintje:" @@ -8722,9 +8785,9 @@ msgstr "PNG képfájl (*.png);; Minden fájl (*)" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 msgid "PPC Size" -msgstr "" +msgstr "PPC méret" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8758,7 +8821,7 @@ msgstr "Passzív" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Jelszó" @@ -8773,7 +8836,7 @@ msgstr "Jelszó?" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:40 msgid "Patch Editor" -msgstr "" +msgstr "Patch szerkesztő" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:63 msgid "Patch name" @@ -8796,15 +8859,15 @@ msgstr "Elérési utak" msgid "Pause" msgstr "Szünet" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Szünet a videó végén" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Szünet fókuszvesztéskor" @@ -8820,6 +8883,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8839,7 +8908,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Képpont alapú megvilágítás" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Online rendszerfrissítés végrehajtása" @@ -8847,15 +8916,15 @@ msgstr "Online rendszerfrissítés végrehajtása" msgid "Perform System Update" msgstr "Rendszerfrissítés végrehajtása" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Teljesítménystatisztikák" @@ -8873,13 +8942,13 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" -msgstr "" +msgstr "Ping" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:30 msgid "Pitch Down" @@ -8890,7 +8959,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platform" @@ -8898,7 +8967,7 @@ msgstr "Platform" msgid "Play" msgstr "Indítás" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Indítás / Felvétel" @@ -8910,40 +8979,40 @@ msgstr "Felvétel lejátszása" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Visszajátszási beállítások" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Játékos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Játékosok" @@ -8960,7 +9029,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8976,24 +9045,24 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" -msgstr "" +msgstr "Port %1" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218 msgid "Port %1 ROM:" -msgstr "" +msgstr "Port %1 ROM:" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:103 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:137 msgid "Port:" -msgstr "" +msgstr "Port:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:161 msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9009,24 +9078,32 @@ msgstr "Utófeldolgozási effektus:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Egyedi textúrák előzetes lehívása" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9049,9 +9126,9 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:34 #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:52 msgid "Pressure" -msgstr "" +msgstr "Nyomás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9066,9 +9143,9 @@ msgstr "" msgid "Previous Game Profile" msgstr "Előző játékos profil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" -msgstr "Előző meccs" +msgstr "Előző egyezés" #: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 #: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 @@ -9077,7 +9154,7 @@ msgstr "Előző profil" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9111,7 +9188,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9120,23 +9197,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Haladás" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Nyilvános" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Játéklista gyorsítótár ürítése" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9156,18 +9239,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Kérdés" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Kilépés" @@ -9184,25 +9267,25 @@ msgstr "R" msgid "R-Analog" msgstr "Jobb analóg" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "KÉSZ" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" -msgstr "" +msgstr "RSO modulok" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" -msgstr "" +msgstr "RSO auto-felismerés" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "FUT" #: Source/Core/DolphinQt/ConvertDialog.cpp:357 msgid "RVZ GC/Wii images (*.rvz)" -msgstr "" +msgstr "RVZ GC/Wii képfájlok (*.rvz)" #. i18n: A range of memory addresses #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:127 @@ -9217,24 +9300,25 @@ msgstr "Tartomány vége:" msgid "Range Start: " msgstr "Tartomány eleje:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:409 msgid "Raw" -msgstr "" +msgstr "Nyers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Nyers belső felbontás" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9273,8 +9357,8 @@ msgstr "Valódi Wii Remote" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9283,23 +9367,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Rögzítés" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Rögzítés" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Rögzítési beállítások" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Rögzítés..." @@ -9332,7 +9416,7 @@ msgstr "Redump.org állapot:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9364,7 +9448,7 @@ msgid "Refreshing..." msgstr "Frissítés..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Régió" @@ -9385,7 +9469,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Emlékeztessen később" @@ -9393,7 +9481,7 @@ msgstr "Emlékeztessen később" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Törlés" @@ -9404,7 +9492,7 @@ msgstr "Törlés sikertelen" #: Source/Core/DolphinQt/ConvertDialog.cpp:76 msgid "Remove Junk Data (Irreversible):" -msgstr "" +msgstr "Felesleges adatok törlése (visszavonhatatlan):" #: Source/Core/DolphinQt/GameList/GameList.cpp:523 msgid "Remove Tag..." @@ -9421,20 +9509,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Szimbólum átnevezése" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" -msgstr "" +msgstr "Render ablak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Megjelenítés a főablakban" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9448,10 +9536,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9461,7 +9555,7 @@ msgstr "Alapbeállítások" msgid "Reset All" msgstr "Összes visszaállítása" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9471,11 +9565,11 @@ msgstr "Eredmények visszaállítása" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:391 msgid "Reset Traversal Server" -msgstr "" +msgstr "Átjárási szerver visszaállítása" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:392 msgid "Reset Traversal Server to %1:%2" -msgstr "" +msgstr "Átjárási szerver visszaállítása %1:%2" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:91 msgid "Reset Traversal Settings" @@ -9491,11 +9585,11 @@ msgstr "Nézet visszaállítása" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111 msgid "Reset all saved Wii Remote pairings" -msgstr "" +msgstr "Mentett Wii Remote párosítások visszaállítása" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" -msgstr "" +msgstr "Felbontás típusa:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -9505,7 +9599,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Újraindítás szükséges" @@ -9513,11 +9607,11 @@ msgstr "Újraindítás szükséges" msgid "Restore Defaults" msgstr "Alapértelmezettek visszaállítása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Újra" @@ -9526,19 +9620,19 @@ msgstr "Újra" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" -msgstr "" +msgstr "Revízió" #: Source/Core/DolphinQt/AboutDialog.cpp:65 msgid "Revision: %1" -msgstr "" +msgstr "Revízió: %1" #: Source/Core/Core/FreeLookManager.cpp:91 #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9549,7 +9643,7 @@ msgstr "Jobbra" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Jobb kar" @@ -9561,7 +9655,7 @@ msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 msgid "Riivolution XML files" -msgstr "" +msgstr "Riivolution XML fájlok" #. i18n: Refers to the "rim" of a TaTaCon drum. #: Source/Core/Core/HW/WiimoteEmu/Extension/TaTaCon.cpp:50 @@ -9585,11 +9679,11 @@ msgstr "Balra gurulás" msgid "Roll Right" msgstr "Jobbra gurulás" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Szoba ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9607,27 +9701,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9640,23 +9738,23 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" -msgstr "" +msgstr "GBA-magok futtatása dedikált szálakban" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9664,23 +9762,23 @@ msgstr "" msgid "Russia" msgstr "Oroszország" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD kártya" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD kártya fájlméret:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" -msgstr "" +msgstr "SD kártya képfájl (*.raw);;Minden fájl (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD kártya elérési út:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD kártya beállítások" @@ -9688,7 +9786,7 @@ msgstr "SD kártya beállítások" msgid "SD Root:" msgstr "SD gyökér:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9703,7 +9801,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" -msgstr "" +msgstr "SHA-1:" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:43 msgid "SHA1 Digest" @@ -9711,7 +9809,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191 msgid "SP1:" -msgstr "" +msgstr "SP1:" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:348 msgid "SSL context" @@ -9723,11 +9821,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "K&ód mentése" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Á&llapot mentése" @@ -9737,9 +9835,9 @@ msgid "Safe" msgstr "Biztonságos" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9749,25 +9847,25 @@ msgstr "Mentés" msgid "Save All" msgstr "Összes mentése" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "FIFO napló mentése" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Fájl mentése ide" @@ -9779,13 +9877,13 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:250 msgid "Save Game Files (*.sav);;All Files (*)" -msgstr "" +msgstr "Mentési fájlok (*.sav);;Minden fájl (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9797,7 +9895,7 @@ msgstr "Legrégebbi állapot mentése" msgid "Save Preset" msgstr "Előbeállítás mentése" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Rögzített fájl mentése, mint" @@ -9847,23 +9945,23 @@ msgstr "Állapot mentése, foglalat 8" msgid "Save State Slot 9" msgstr "Állapot mentése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Állapot mentése fájlba" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Állapot mentése a legrégebbi foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Állapot mentése a választott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Állapot mentése a foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9871,7 +9969,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Állapot mentése és betöltése" @@ -9883,11 +9981,11 @@ msgstr "Mentés előbeállításként..." msgid "Save as..." msgstr "Mentés másként..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9898,11 +9996,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Mentés a ROM-mal azonos könyvtárba" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9910,11 +10008,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "Mentés a kiválasztott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Mentés foglalatba %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Mentés..." @@ -9926,9 +10024,9 @@ msgstr "" msgid "Saves:" msgstr "Mentések:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." -msgstr "" +msgstr " {0} állapotmentés videó sérült, a felvétel leáll..." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:149 msgid "Scaled EFB Copy" @@ -9936,15 +10034,15 @@ msgstr "Méretezett EFB másolat" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:313 msgid "Scan succeeded." -msgstr "" +msgstr "Sikeres szkennelés." #: Source/Core/DolphinQt/ToolBar.cpp:126 msgid "ScrShot" msgstr "Pillanatkép" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Keresés" @@ -9953,9 +10051,9 @@ msgstr "Keresés" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" -msgstr "" +msgstr "Aktuális elem keresése" #: Source/Core/DolphinQt/Settings/PathPane.cpp:146 msgid "Search Subfolders" @@ -9971,7 +10069,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Utasítás keresése" @@ -9979,7 +10077,7 @@ msgstr "Utasítás keresése" msgid "Search games..." msgstr "Játékok keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Keresési utasítás" @@ -10013,7 +10111,7 @@ msgstr "Kiválaszt" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10024,25 +10122,25 @@ msgid "Select Dump Path" msgstr "Kimentési útvonal kiválasztása" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Exportálási könyvtár kiválasztása" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "GBA BIOS kiválasztása" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "GBA ROM kiválasztása" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" -msgstr "" +msgstr "GBA mentési útvonal kiválasztása" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" @@ -10058,17 +10156,17 @@ msgstr "" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:138 msgid "Select Riivolution XML file" -msgstr "" +msgstr "Riivolution XML fájl kiválasztása" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" -msgstr "" +msgstr "Skylander Collection kiválasztása" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:556 msgid "Select Skylander File" msgstr "Skylander fájl kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Foglalat kiválasztása %1 - %2" @@ -10076,7 +10174,7 @@ msgstr "Foglalat kiválasztása %1 - %2" msgid "Select State" msgstr "Állapot kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Állapot kiválasztása, foglalat" @@ -10137,13 +10235,13 @@ msgstr "Válassz egy könyvtárat" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Válassz egy fájlt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10151,9 +10249,9 @@ msgstr "" msgid "Select a Game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" -msgstr "" +msgstr "Válassz egy SD kártya képfájlt" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" @@ -10163,7 +10261,7 @@ msgstr "Válassz egy fájlt" msgid "Select a game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10171,24 +10269,24 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" -msgstr "" +msgstr "Válaszd ki az RSO modul címét:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" -msgstr "" +msgstr "Válaszd ki a lejátszandó felvételt" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:192 msgid "Select the Virtual SD Card Root" msgstr "Virtuális SD kártya gyökér kiválasztása" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Válassz mentési fájlt" @@ -10211,16 +10309,16 @@ msgstr "A megadott vezérlő profil nem létezik" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "A kiválasztott játék nem létezik a játéklistában!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10236,7 +10334,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10266,7 +10364,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10288,7 +10386,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10298,11 +10396,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Küldés" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Érzékelősáv helyzete:" @@ -10330,6 +10428,10 @@ msgstr "A szerver elutasította az átjárási kérelmet" msgid "Set &Value" msgstr "&Érték beállítása" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10347,23 +10449,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Szimbólum méret beállítása (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10373,39 +10475,54 @@ msgstr "" "helyett.\n" "Nem biztos, hogy minden játékkal működik." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "A Wii rendszer nyelve." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Beállítások" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: setting.txt fájl nem hozható létre" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:64 msgid "Severity" -msgstr "" +msgstr "Súlyosság" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" -msgstr "" +msgstr "Árnyékoló összeállítás" #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230 @@ -10425,32 +10542,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Sebesség % megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Nap&ló megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Eszközt&ár megjelenítése" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Összes megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Ausztrália megjelenítése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Jelenlegi játék megjelenítése Discordon" @@ -10459,7 +10576,7 @@ msgstr "Jelenlegi játék megjelenítése Discordon" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL megjelenítése" @@ -10468,55 +10585,55 @@ msgstr "ELF/DOL megjelenítése" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Képkockaszámoló megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" -msgstr "" +msgstr "Képkockaidők megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Franciaország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "GameCube megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Németország megjelenítése" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" -msgstr "" +msgstr "Golf mód átfedés megjelenítése" #: Source/Core/Core/HotkeyManager.cpp:199 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Bemeneti kijelző megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Olaszország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "JPN megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Korea megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Eltérési szám megjelenítése" @@ -10524,27 +10641,27 @@ msgstr "Eltérési szám megjelenítése" msgid "Show Language:" msgstr "Nyelv megjelenítése:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Naplózási &beállítások megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "NetPlay üzenetek mgejelenítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "NetPlay ping mgejelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Hollandia megjelenítése" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" -msgstr "" +msgstr "Képernyőn megjelenő üzenetek megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL megjelenítése" @@ -10553,27 +10670,27 @@ msgstr "PAL megjelenítése" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Teljesítmény grafikonok megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Platformok megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Régiók megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Oroszország megjelenítése" @@ -10581,144 +10698,177 @@ msgstr "Oroszország megjelenítése" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Spanyolország megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Statisztikák megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Rendszeróra megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Tajvan megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "USA megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Ismeretlen megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "VPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Világ megjelenítése" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" -msgstr "" +msgstr "Megjelenítés a &memóriában" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" -msgstr "" +msgstr "Megjelenítés a Kódban" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" -msgstr "" +msgstr "Megjelenítés a Memóriában" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" -msgstr "" +msgstr "Megjelenítés a kódban" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" -msgstr "" +msgstr "Megjelenítés a memóriában" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:143 msgid "Show in server browser" -msgstr "" +msgstr "Megjelenítés a szerver böngészőben" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10740,7 +10890,7 @@ msgstr "Oldalra tartás kapcsoló" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10759,12 +10909,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Egyszerűsített kínai" @@ -10781,7 +10931,7 @@ msgstr "" msgid "Size" msgstr "Méret" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10791,7 +10941,7 @@ msgstr "" msgid "Skip" msgstr "Átugrás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10835,17 +10985,20 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Minden fájl (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:215 msgid "Skylander Collection Path:" -msgstr "" +msgstr "Skylander Collection útvonal:" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:522 msgid "Skylander not found in this collection. Create new file?" -msgstr "" +msgstr "A Skylander nem található ebben a gyűjteményben. Létrehozol új fájlt?" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:45 msgid "Skylanders Manager" @@ -10882,11 +11035,11 @@ msgstr "" #: Source/Core/VideoBackends/Software/SWmain.cpp:55 msgid "Software Renderer" -msgstr "" +msgstr "Szoftveres renderer" #: Source/Core/DiscIO/VolumeVerifier.cpp:1322 msgid "Some of the data could not be read." -msgstr "" +msgstr "Az adat egy része nem olvasható." #: Source/Core/DiscIO/VolumeVerifier.cpp:1048 msgid "" @@ -10905,7 +11058,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Alfabetikus rendezés" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Hang:" @@ -10919,7 +11072,7 @@ msgstr "Spanyolország" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spanyol" @@ -10927,19 +11080,19 @@ msgstr "Spanyol" msgid "Speaker Pan" msgstr "Hangszóró pásztázás" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Hangszóró hangerő:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Specifikus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10962,13 +11115,13 @@ msgstr "Sebesség" #. countries it was released in, except Japan, where it's named スカイランダーズ スパイロの大冒険. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:262 msgid "Spyro's Adventure" -msgstr "" +msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10976,25 +11129,25 @@ msgstr "" msgid "Standard Controller" msgstr "Szabványos vezérlő" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "&NetPlay indítása..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Bemenet rögzítésének indítása" @@ -11002,26 +11155,26 @@ msgstr "&Bemenet rögzítésének indítása" msgid "Start Recording" msgstr "Felvétel indítása" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Indítás teljes képernyőn" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:48 msgid "Start with Riivolution Patches" -msgstr "" +msgstr "Indítás Riivolution Patchekkel" #: Source/Core/DolphinQt/GameList/GameList.cpp:411 msgid "Start with Riivolution Patches..." -msgstr "" +msgstr "Indítás Riivolution Patchekkel..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Elindított játék" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Állapot" @@ -11053,19 +11206,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11074,7 +11227,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Sztereó" @@ -11103,16 +11256,16 @@ msgid "Stick" msgstr "Kar" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Játék/felvétel leállítása" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Megállított játék" @@ -11124,7 +11277,7 @@ msgstr "EFB másolatok tárolása csak textúrának" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:219 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:92 msgid "Store XFB Copies to Texture Only" -msgstr "" +msgstr "XFB másolatok tárolása csak textúrának" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:233 msgid "" @@ -11144,11 +11297,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Ablakméretűvé nyújtás" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11162,7 +11315,11 @@ msgstr "" msgid "Strum" msgstr "Pengetés" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Stílus:" @@ -11173,18 +11330,18 @@ msgstr "Stílus:" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Siker" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11194,7 +11351,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n kép sikeresen konvertálva." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Sikeresen törölve '%1'." @@ -11207,24 +11364,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Sikeresen exportált mentési fájlok" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Tanúsítványok sikeresen kivonva a NAND-ból" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Mentett fájl sikeresen importálva." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11247,16 +11404,16 @@ msgstr "Támogatás" msgid "Supported file formats" msgstr "Támogatott fájlformátumok" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." -msgstr "" +msgstr "Támogatja az SD és SDHC formátumot. Az alapértelmezett méret 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Térhangzás" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Felfüggesztve" @@ -11280,6 +11437,9 @@ msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." msgstr "" +"Felcseréli a bal és a jobb szemet. Leginkább az egymás melletti sztereoszkóp " +"módban hasznos.

Ha bizonytalan vagy, hagyd üresen." #: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:58 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:232 @@ -11300,17 +11460,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Szimbólum neve:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11318,7 +11478,7 @@ msgstr "" msgid "Sync" msgstr "Szinkronizálás" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "AR/Gecko kódok szinkronizálása" @@ -11336,7 +11496,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11355,24 +11515,24 @@ msgid "Synchronizing save data..." msgstr "Mentett adatok szinkronizálása..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Rendszer nyelve:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS bemenet" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS eszközök" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Címkék" @@ -11382,7 +11542,7 @@ msgstr "Címkék" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11390,7 +11550,7 @@ msgstr "" msgid "Taiwan" msgstr "Tajvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Pillanatkép készítése" @@ -11398,7 +11558,7 @@ msgstr "Pillanatkép készítése" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11414,11 +11574,11 @@ msgstr "" msgid "Test" msgstr "Teszt" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Szöveges fájl (*.txt);;Minden fájl (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -11427,11 +11587,11 @@ msgstr "Textúra gyorsítótár" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:302 msgid "Texture Cache Accuracy" -msgstr "" +msgstr "Textúra gyorsítótár pontosság" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" -msgstr "" +msgstr "Textúra kimentés" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 msgid "Texture Filtering" @@ -11441,7 +11601,7 @@ msgstr "Textúraszűrés" msgid "Texture Filtering:" msgstr "Textúraszűrés:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Textúra formátum átfedés" @@ -11478,13 +11638,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11497,9 +11657,9 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "Ennek a Skylandernek a pénzösszege. 0 és 65000 között" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11513,7 +11673,7 @@ msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:462 msgid "The data partition is missing." -msgstr "" +msgstr "Az adatpartíció hiányzik." #: Source/Core/DiscIO/VolumeVerifier.cpp:501 msgid "" @@ -11546,7 +11706,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11556,7 +11716,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "A behelyezni próbált lemez nem található." @@ -11583,12 +11743,12 @@ msgstr "A megadott MAC-cím érvénytelen." #. i18n: Here, PID means Product ID (for a USB device). #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 msgid "The entered PID is invalid." -msgstr "" +msgstr "A megadott PID érvénytelen." #. i18n: Here, VID means Vendor ID (for a USB device). #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:134 msgid "The entered VID is invalid." -msgstr "" +msgstr "A megadott VID érvénytelen." #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539 msgid "The expression contains a syntax error." @@ -11601,6 +11761,10 @@ msgid "" "is either corrupted or not a GameCube memory card file.\n" "%2" msgstr "" +"A\n" +" %1\n" +"fájl sérült, vagy nem GameCube memóriakártya fájl.\n" +"%2" #: Source/Core/DolphinQt/ConvertDialog.cpp:408 msgid "" @@ -11637,7 +11801,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "A fájlrendszer érvénytelen, vagy nem olvasható." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11677,7 +11841,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11699,6 +11863,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"Ennek a Skylandernek a hős szintje. Csak a Skylanders: Spyro's Adventuresben " +"látható. 0 és 100 között" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -11708,7 +11874,7 @@ msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:472 msgid "The install partition is missing." -msgstr "" +msgstr "A telepítési partíció hiányzik." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:183 msgid "The last time the figure has been placed on a portal" @@ -11730,20 +11896,20 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Ennek a Skylandernek a beceneve. Maximum 15 karakter" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "A profil '%1' nem létezik" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" -msgstr "" +msgstr "A rögzített játék ({0}) nem egyezik meg a kiválasztott játékkal ({1})" #: Source/Core/DiscIO/VolumeVerifier.cpp:916 msgid "" @@ -11760,15 +11926,17 @@ msgstr "A kapott dekódolt AR kód nem tartalmaz sorokat." msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" +"Nem használható ugyanaz a fájl több foglalatban; már használatban van: %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" +"Nem használható ugyanaz a mappa több foglalatban; már használatban van: %1." #: Source/Core/Core/NetPlayClient.cpp:287 msgid "The server and client's NetPlay versions are incompatible." -msgstr "" +msgstr "A szerver és a kliens NetPlay verziói nem kompatibilisek." #: Source/Core/Core/NetPlayClient.cpp:283 msgid "The server is full." @@ -11795,7 +11963,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "A megadott fájl \"{0}\" nem létezik." -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11853,7 +12021,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11869,12 +12037,16 @@ msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:594 msgid "The {0} partition is not correctly signed." -msgstr "" +msgstr "A {0} partíció aláírása nem megfelelő." #: Source/Core/DiscIO/VolumeVerifier.cpp:539 msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11886,10 +12058,10 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" -msgstr "" +msgstr "Nincs mit elmenteni!" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -11917,7 +12089,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250 msgid "This Gecko code doesn't contain any lines." -msgstr "" +msgstr "Ez a Gecko kód nem tartalmaz egyetlen sort sem." #. i18n: You may want to leave the term "ERROR #002" untranslated, #. since the emulated software always displays it in English. @@ -11929,17 +12101,17 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:102 msgid "This Skylander type can't be modified yet!" -msgstr "" +msgstr "Ez a Skylander típus jelenleg nem módosítható!" #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:153 msgid "This USB device is already whitelisted." msgstr "Ez az USB-eszköz már engedélyezve van." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Ez a WAD nem indítható." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Ez a WAD érvénytelen." @@ -11957,7 +12129,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Ez nem vonható vissza!" @@ -12038,7 +12210,7 @@ msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:1408 msgid "This is a bad dump." -msgstr "" +msgstr "Ez egy rossz kimentés." #: Source/Core/DiscIO/VolumeVerifier.cpp:1401 msgid "" @@ -12054,15 +12226,15 @@ msgstr "" #: Source/Core/DiscIO/VolumeVerifier.cpp:1363 msgid "This is a good dump." -msgstr "" +msgstr "Ez egy jó kimentés." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Ez a beállítás csak az emulált szoftver első indítására vonatkozik." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" -msgstr "" +msgstr "Ez a játékmenet jelszót igényel:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:184 msgid "" @@ -12075,8 +12247,9 @@ msgstr "" #: Source/Core/DolphinQt/AboutDialog.cpp:76 msgid "This software should not be used to play games you do not legally own." msgstr "" +"Ne használd ezt a szoftvert illegálisan megszerzett játékok futtatásához." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12120,7 +12293,7 @@ msgstr "" "Ez az érték összeszorzódik a grafikai beállításokban megadott mélység " "értékkel." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12133,7 +12306,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12141,11 +12314,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Szálak" @@ -12168,14 +12341,14 @@ msgstr "Billenés" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Lejárt az idő" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Cím" @@ -12184,12 +12357,12 @@ msgid "To" msgstr "Eddig:" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" -msgstr "" +msgstr "Eddig:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Teljes képernyő kapcsoló" @@ -12199,11 +12372,11 @@ msgstr "3D anaglif kapcsoló" #: Source/Core/Core/HotkeyManager.cpp:123 msgid "Toggle 3D Side-by-Side" -msgstr "" +msgstr "Egymás-mellett 3D kapcsoló" #: Source/Core/Core/HotkeyManager.cpp:124 msgid "Toggle 3D Top-Bottom" -msgstr "" +msgstr "Egymás-alatt 3D kapcsoló" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:62 msgid "Toggle All Log Types" @@ -12214,7 +12387,7 @@ msgid "Toggle Aspect Ratio" msgstr "Képarány kapcsoló" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Töréspont kapcsoló" @@ -12252,7 +12425,7 @@ msgstr "" #: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle Texture Dumping" -msgstr "Textúrakimentés kapcsoló" +msgstr "Textúra kimentés kapcsoló" #: Source/Core/Core/HotkeyManager.cpp:87 msgid "Toggle USB Keyboard" @@ -12270,7 +12443,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "Sikertelen tokenizálás." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12278,7 +12451,7 @@ msgstr "" msgid "Toolbar" msgstr "Eszköztár" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Fent" @@ -12286,8 +12459,8 @@ msgstr "Fent" msgid "Top-and-Bottom" msgstr "Egymás alatt" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12329,7 +12502,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Hagyományos kínai" @@ -12349,8 +12522,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12377,7 +12550,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Ravaszok" @@ -12387,7 +12560,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12401,7 +12574,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "ISMERETLEN" @@ -12413,7 +12586,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB eszköz emuláció" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB emuláció" @@ -12431,14 +12604,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB engedélyezési hiba" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12446,7 +12619,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12455,7 +12628,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12518,11 +12691,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Állapot betöltésének visszavonása" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Állapot mentésének visszavonása" @@ -12540,34 +12713,34 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Egyesült Államok" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Ismeretlen" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" -msgstr "" +msgstr "Ismeretlen (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Ismeretlen DVD parancs {0:08x} - végzetes hiba" #: Source/Core/Core/NetPlayClient.cpp:1334 msgid "Unknown SYNC_CODES message received with id: {0}" -msgstr "" +msgstr "Ismeretlen SYNC_CODES üzenet érkezett az alábbi azonosítóval: {0}" #: Source/Core/Core/NetPlayServer.cpp:1239 msgid "" @@ -12577,7 +12750,7 @@ msgstr "" #: Source/Core/Core/NetPlayClient.cpp:1035 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" -msgstr "" +msgstr "Ismeretlen SYNC_SAVE_DATA üzenet érkezett az alábbi azonosítóval: {0}" #: Source/Core/Core/NetPlayServer.cpp:1182 msgid "" @@ -12632,11 +12805,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Ismeretlen(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Ismeretlen(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Végtelen" @@ -12648,20 +12821,8 @@ msgstr "ROM ürítése" msgid "Unlock Cursor" msgstr "Kurzor feloldása" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Feloldva" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12688,7 +12849,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12702,8 +12863,8 @@ msgstr "" msgid "Up" msgstr "Fel" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Frissítés" @@ -12711,11 +12872,11 @@ msgstr "Frissítés" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Frissítés a Dolphin bezárása után" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Frissítés elérhető" @@ -12745,6 +12906,8 @@ msgid "" "Updating title %1...\n" "This can take a while." msgstr "" +"Játék frissítése %1...\n" +"Ez eltarthat egy ideig." #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:269 msgid "Upright Hold" @@ -12758,7 +12921,7 @@ msgstr "Függőleges kapcsoló" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Használati statisztika-jelentés beállítások" @@ -12766,15 +12929,15 @@ msgstr "Használati statisztika-jelentés beállítások" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "Használd a 8.8.8.8-at a normál DNS-hez, vagy adj meg egy sajátot." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Veszteségmentes kodek használata (FFV1)" @@ -12782,15 +12945,21 @@ msgstr "Veszteségmentes kodek használata (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 mód használata (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Hibakezelők használata" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12825,13 +12994,13 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Felhasználói kezelőfelület" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:328 msgid "User Variables" -msgstr "" +msgstr "Felhasználói változók" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:330 msgid "" @@ -12840,10 +13009,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Felhasználónév" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12852,14 +13028,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13122,8 +13298,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Figyelem" @@ -13133,7 +13309,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13145,28 +13321,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13204,14 +13380,14 @@ msgstr "Weboldal" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:34 msgid "Western (Windows-1252)" -msgstr "" +msgstr "Western (Windows-1252)" #: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:93 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:138 msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13219,7 +13395,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13227,7 +13403,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Engedélyezett USB átjáró eszközök" @@ -13253,86 +13429,80 @@ msgstr "Wii NAND gyökér:" #: Source/Core/Core/HW/Wiimote.cpp:101 msgid "Wii Remote" -msgstr "" +msgstr "Wii Remote" #: Source/Core/DolphinQt/Config/Mapping/HotkeyControllerProfile.cpp:21 #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" -msgstr "" +msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" -msgstr "" +msgstr "Wii Remote gombok" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" -msgstr "" +msgstr "Wii Remote Giroszkóp" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" -msgstr "" +msgstr "Wii Remote beállítások" #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:103 msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" -msgstr "" +msgstr "Wii és Wii Remote" #: Source/Core/DiscIO/VolumeVerifier.cpp:103 msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" -msgstr "" +msgstr "Wii mentési fájlok (*.bin);;Minden fájl (*)" #: Source/Core/DolphinQt/MenuBar.cpp:79 msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" -msgstr "" +msgstr "Ablakfelbontás" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Ablakméret" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13346,10 +13516,11 @@ msgstr "Világ" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13382,39 +13553,39 @@ msgstr "" msgid "Write to Window" msgstr "Ablakba írás" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Helytelen lemezszám" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Helytelen hash" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Helytelen régió" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Helytelen revízió" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF regiszter " @@ -13423,9 +13594,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13453,14 +13624,14 @@ msgstr "Igen" msgid "Yes to &All" msgstr "&Igen mindre" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13531,13 +13702,13 @@ msgstr "Meg kell adnod egy nevet." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 msgid "You must provide a name for your session!" -msgstr "" +msgstr "Meg kell adnod egy nevet a játékmenethez!" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:350 msgid "You must provide a region for your session!" -msgstr "" +msgstr "Meg kell adnod egy régiót a játékmenethez!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "" "Újra kell indítanod a Dolphin emulátort a változtatások érvényesítéséhez." @@ -13558,16 +13729,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13576,13 +13747,13 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 kód nem támogatott" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" -msgstr "" +msgstr "A Dolphin számára ismeretlen Zero kód: {0:08x}" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:100 msgid "[%1, %2]" @@ -13625,25 +13796,25 @@ msgid "default" msgstr "alapértelmezett" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "e-Reader Cards (*.raw);;All Files (*)" -msgstr "" +msgstr "e-Reader Cards (*.raw);;Minden fájl (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" -msgstr "" +msgstr "errno" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96 msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" -msgstr "" +msgstr "hamis" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -13677,28 +13848,20 @@ msgstr "legutóbbi érték" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:44 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:53 msgid "m/s" -msgstr "" +msgstr "m/mp" #: Source/Core/DolphinQt/GBAWidget.cpp:218 msgid "" "mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." "ss9);;All Files (*)" msgstr "" +"mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *." +"ss9);;Minden fájl (*)" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96 msgid "none" msgstr "nincs" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "ki" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "be" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "vagy válassz egy eszközt" @@ -13706,7 +13869,7 @@ msgstr "vagy válassz egy eszközt" #. i18n: "s" is the symbol for seconds. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:47 msgid "s" -msgstr "" +msgstr "mp" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:101 msgid "sRGB" @@ -13716,9 +13879,9 @@ msgstr "sRGB" msgid "this value:" msgstr "ez az érték:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" -msgstr "" +msgstr "igaz" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 @@ -13742,7 +13905,7 @@ msgstr "" #: Source/Core/UICommon/GameFile.cpp:844 msgid "{0} (NKit)" -msgstr "" +msgstr "{0} (NKit)" #: Source/Core/Core/Boot/Boot.cpp:437 msgid "{0} IPL found in {1} directory. The disc might not be recognized" @@ -13761,15 +13924,17 @@ 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} nem egy mappa, áthelyezése sikertelen *.original-ba.\n" +"Ellenőrizd az írási jogokat vagy mozgasd a fájlokat a Dolphinen kívülre" #: Source/Core/DiscIO/CompressedBlob.cpp:265 #: Source/Core/DiscIO/WIABlob.cpp:1703 msgid "{0} of {1} blocks. Compression ratio {2}%" -msgstr "" +msgstr "{0} / {1} blokk. Tömörítési arány: {2}%" #: Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp:200 msgid "{0} was not a directory, moved to *.original" -msgstr "" +msgstr "{0} nem egy mappa, áthelyezve a *.original-ba" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:294 msgid "| Or" @@ -13781,11 +13946,9 @@ msgstr "| Vagy" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin csapat. A “GameCube” és a “Wii” a Nintendo védjegyei. A " -"Dolphin semmilyen módon nem áll kapcsolatban a Nintendóval." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. @@ -13799,12 +13962,12 @@ msgstr "" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:37 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:30 msgid "°" -msgstr "" +msgstr "°" #. i18n: "°/s" is the symbol for degrees (angular measurement) divided by seconds. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:39 msgid "°/s" -msgstr "" +msgstr "°/mp" #: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:53 msgid "✔ Invite" diff --git a/Languages/po/it.po b/Languages/po/it.po index 13e256760b..b46d2b90de 100644 --- a/Languages/po/it.po +++ b/Languages/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mewster , 2023-2024\n" "Language-Team: Italian (http://app.transifex.com/delroth/dolphin-emu/" @@ -92,7 +92,7 @@ msgstr "" "%1\n" "vuole entrare nel party." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -126,7 +126,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (revisione %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (predefinito)" @@ -146,7 +146,7 @@ msgstr "%1 (lento)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -160,11 +160,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Configurazione Video %1" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -181,7 +181,7 @@ msgstr "%1 non supporta questa funzionalità sul tuo sistema." msgid "%1 doesn't support this feature." msgstr "%1 non supporta questa funzionalità." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -191,35 +191,27 @@ msgstr "" "%2 oggetto/i\n" "Frame corrente: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 è entrato" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 è uscito" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 ha sbloccato %2/%3 achievement (%4 hardcore) del valore di %5/%6 punti " -"(%7 hardcore)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha sbloccato %2/%3 achievement del valore di %4/%5 punti" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 non è una ROM valida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 è in modalità golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 sta giocando a %2" @@ -227,13 +219,13 @@ msgstr "%1 sta giocando a %2" msgid "%1 memory ranges" msgstr "%1 range di memoria" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 punti" @@ -245,30 +237,30 @@ msgstr "Trovata %1 sessione" msgid "%1 sessions found" msgstr "Trovate %1 sessioni" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (velocità normale)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "Il valore di %1 è cambiato" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "Il valore di %1 è stato raggiunto" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "Il valore di %1 è stato usato" @@ -280,6 +272,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -349,11 +345,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&A proposito di..." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Aggiungi punto di interruzione dei dati" @@ -362,7 +358,7 @@ msgstr "&Aggiungi punto di interruzione dei dati" msgid "&Add New Code..." msgstr "&Aggiungi nuovo codice..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Aggiungi funzione" @@ -370,15 +366,15 @@ msgstr "&Aggiungi funzione" msgid "&Add..." msgstr "&Aggiungi..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Impostazioni &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Aggiornamento automatico:" @@ -386,11 +382,15 @@ msgstr "&Aggiornamento automatico:" msgid "&Borderless Window" msgstr "&Finestra senza bordi" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Punti di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -398,15 +398,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Annulla" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Gestore trucchi" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Controlla la presenza di aggiornamenti..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Pulisci simboli" @@ -414,7 +414,7 @@ msgstr "&Pulisci simboli" msgid "&Clone..." msgstr "&Clona..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Codice" @@ -422,16 +422,15 @@ msgstr "&Codice" msgid "&Connected" msgstr "&Connesso" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Impostazioni &Controller" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "&Copia indirizzo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Copia indirizzo" @@ -439,20 +438,20 @@ msgstr "&Copia indirizzo" msgid "&Create..." msgstr "&Nuovo..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Elimina" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Elimina espressione di controllo" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Elimina espressioni di controllo" @@ -466,11 +465,11 @@ msgstr "&Modifica codice..." msgid "&Edit..." msgstr "&Modifica..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Espelli disco" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulazione" @@ -490,41 +489,41 @@ msgstr "&Esporta stato..." msgid "&Export as .gci..." msgstr "&Esporta come .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&File" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Avanza per fotogramma" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Impostazioni camera libera" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Genera simboli da" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Repository &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Impostazioni video" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Aiuto" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Impostazioni tasti di scelta rapida" @@ -544,11 +543,11 @@ msgstr "&Importa stato..." msgid "&Import..." msgstr "&Importa..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Base Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Inserisci blr" @@ -556,23 +555,23 @@ msgstr "&Inserisci blr" msgid "&Interframe Blending" msgstr "&Blending Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Lingua:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "&Carica Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Carica stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Carica mappa dei simboli" @@ -582,19 +581,23 @@ msgstr "&Carica file all'indirizzo corrente" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Blocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Blocca widget" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Filmato" @@ -602,7 +605,7 @@ msgstr "&Filmato" msgid "&Mute" msgstr "&Muto" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Network" @@ -611,23 +614,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Apri..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opzioni" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Patch funzioni HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Gioca" @@ -635,7 +638,7 @@ msgstr "&Gioca" msgid "&Properties" msgstr "&Proprietà" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Modalità sola-lettura" @@ -643,7 +646,7 @@ msgstr "&Modalità sola-lettura" msgid "&Refresh List" msgstr "&Aggiorna elenco" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registri" @@ -656,24 +659,24 @@ msgstr "&Rimuovi" msgid "&Remove Code" msgstr "&Rimuovi codice" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Rinomina simbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Resetta" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Gestione Resource Pack" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "&Salva Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Salva mappa dei simboli" @@ -681,31 +684,31 @@ msgstr "&Salva mappa dei simboli" msgid "&Scan e-Reader Card(s)..." msgstr "&Scansiona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Limite velocità" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Arresta" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Thread" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "&Strumenti" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Strumenti" @@ -715,21 +718,21 @@ msgstr "&Rimuovi ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "&Sblocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Visualizza" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Espressione di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Sito Web" @@ -741,23 +744,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sì" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' non trovato, non sono stati generati nomi dei simboli" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' non trovato, ora cercherò nomi di funzioni comuni" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Buio)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Luce)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Sistema)" @@ -793,12 +796,12 @@ msgstr "- Sottrai" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Sconosciuto--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -859,7 +862,7 @@ msgstr "Signed Integer 16-bit" msgid "16-bit Unsigned Integer" msgstr "Unsigned Integer 16-bit" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -917,7 +920,7 @@ msgstr "Unsigned Integer 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:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -943,7 +946,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocchi)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1036,21 +1039,21 @@ msgstr "< Minore-di" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" "Disabilitato in Modalità Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1058,7 +1061,7 @@ msgstr "" "Timeout per l'AutoStepping. L'istruzione attuale è " "irrilevante." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1088,8 +1091,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Maggiore-di" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Una sessione NetPlay è già in corso!" @@ -1110,7 +1113,7 @@ msgstr "" "Non sarà possibile ripristinare la versione precedente dopo l'installazione " "del WAD. Continuare?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Un disco è già in inserimento." @@ -1127,7 +1130,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Uno stato salvato non può essere caricato senza indicare quale gioco avviare." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1149,7 +1152,7 @@ msgstr "" "La sincronizzazione è possibile soltanto durante l'esecuzione di un gioco " "Wii." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "&Salvataggio automatico" @@ -1188,7 +1191,7 @@ msgstr "" "non funzionare correttamente.\n" "Usalo a tuo rischio e pericolo.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Codice AR" @@ -1231,18 +1234,10 @@ msgid "Achievement Settings" msgstr "Impostazioni achievement" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Achievement" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Gli achievement sono stati disabilitati.
Chiudi tutti i giochi in " -"esecuzione per riabilitarli." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Action" @@ -1333,7 +1328,7 @@ msgstr "Action Replay: Normal Code {0}: sottotipo {1:08x} ({2}) non valido" msgid "Activate NetPlay Chat" msgstr "Attiva chat NetPlay" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Attivo" @@ -1341,15 +1336,15 @@ msgstr "Attivo" msgid "Active Infinity Figures:" msgstr "Statuine Infinity attive:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Coda thread attivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Thread attivi" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adattatore" @@ -1357,7 +1352,7 @@ msgstr "Adattatore" msgid "Adapter Detected" msgstr "Rilevato adattatore" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adattatore:" @@ -1367,7 +1362,7 @@ msgstr "Adattatore:" msgid "Add" msgstr "Aggiungi" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Aggiungi &punto di interruzione" @@ -1392,43 +1387,43 @@ msgstr "Aggiungi un punto di interruzione" msgid "Add a Memory Breakpoint" msgstr "Aggiungi un punto di interruzione dei dati" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Aggiungi punto di interruzione dei &dati" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Aggiungi punto di interruzione dei dati" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Aggiungi &espressione di controllo" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Aggiungi espressione di controllo" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Aggiungi..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Indirizzo" @@ -1604,7 +1599,7 @@ msgid "All Assembly files" msgstr "Tutti i file assembly" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Tutto Double" @@ -1613,7 +1608,7 @@ msgstr "Tutto Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1621,34 +1616,34 @@ msgid "All Files" msgstr "Tutti i file" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Tutti i file (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Tutto Float" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tutti i file GC/Wii" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Tutto Esadecimale" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tutti i salvataggi di stati di gioco (*.sav *.s##);; Tutti i file (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Tutto Signed Integer" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Tutto Unsigned Integer" @@ -1664,7 +1659,7 @@ msgstr "Tutti i codici dei giocatori sono sincronizzati." msgid "All players' saves synchronized." msgstr "Tutti i salvataggi dei giocatori sono sincronizzati." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Permetti diverse impostazioni regione" @@ -1672,7 +1667,7 @@ msgstr "Permetti diverse impostazioni regione" msgid "Allow Usage Statistics Reporting" msgstr "Permetti report statistiche d'uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Permetti scrittura su scheda SD" @@ -1692,7 +1687,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Sorgenti di input alternative" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Sempre" @@ -1714,7 +1709,7 @@ msgstr "Impossibile trovare il disco di cui si era in attesa." msgid "Anaglyph" msgstr "Anaglifo" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analizza" @@ -1740,15 +1735,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualunque regione" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Accoda signature a" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Accoda ad un fil&e di signature preesistente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "A&pplica file signature..." @@ -1768,7 +1763,7 @@ msgstr "Data Apploader" msgid "Apply" msgstr "Applica" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Applica file di signature" @@ -1776,7 +1771,7 @@ msgstr "Applica file di signature" msgid "Arbitrary Mipmap Detection" msgstr "Mipmap Detection arbitraria" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Sei sicuro di voler eliminare '%1'?" @@ -1788,7 +1783,7 @@ msgstr "Sei sicuro di voler eliminare questo file?" msgid "Are you sure you want to delete this pack?" msgstr "Sei sicuro di voler disinstallare questo pack?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Sei sicuro di voler chiudere NetPlay?" @@ -1800,16 +1795,16 @@ msgstr "Sei sicuro?" msgid "Area Sampling" msgstr "Campionamento ad Area" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Rapporto d'aspetto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Risoluzione interna corretta per il rapporto d'aspetto" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Rapporto d'aspetto:" @@ -1817,7 +1812,7 @@ msgstr "Rapporto d'aspetto:" msgid "Assemble" msgstr "Converti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Converti istruzione" @@ -1829,7 +1824,7 @@ msgstr "Assembler" msgid "Assembly File" msgstr "File assembly" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Assegna porte Controller" @@ -1851,11 +1846,11 @@ msgstr "Collega MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Motore audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Impostazioni stretching audio" @@ -1871,7 +1866,7 @@ msgstr "Autore" msgid "Authors" msgstr "Autori" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1880,11 +1875,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplo di 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Impostazioni aggiornamento automatico" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1896,7 +1891,7 @@ msgstr "" "\n" "Seleziona una specifica risoluzione interna." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Ridimensiona automaticamente la finestra" @@ -1904,15 +1899,15 @@ msgstr "Ridimensiona automaticamente la finestra" msgid "Auto-Hide" msgstr "Nascondi automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Individua automaticamente i moduli RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Sincronizza automaticamente con la cartella" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1958,27 +1953,27 @@ msgstr "Indirizzo destinazione BBA" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Registro BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Motore" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Multithreading backend" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Impostazioni motore" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Motore:" @@ -2021,7 +2016,7 @@ msgstr "Valore non valido." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -2041,15 +2036,15 @@ msgstr "Leva" msgid "Base Address" msgstr "Indirizzo base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Priorità base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Impostazioni di base" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Impostazioni di base" @@ -2066,10 +2061,6 @@ msgstr "" msgid "Battery" msgstr "Batteria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (una volta al mese)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, ecc" @@ -2102,11 +2093,11 @@ msgstr "Binary SSL (lettura)" msgid "Binary SSL (write)" msgstr "Binary SSL (scrittura)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2120,7 +2111,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Dimensione blocco" @@ -2158,67 +2149,67 @@ msgstr "" "La modalità ponte Bluetooth è abilitata, ma Dolphin è stato compilato senza " "libusb. La modalità ponte non può essere utilizzata." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Avvia in pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "File di backup NAND BootMII (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "File chiavi BootMii (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Schermo intero senza bordi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Sotto" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "Branch" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "Branch (LR saved)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "Branch Conditional" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "Branch Conditional (LR saved)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "Branch Conditional to Count Register" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "Branch Conditional to Count Register (LR saved)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "Branch Conditional to Link Register" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "Branch Conditional to Link Register (LR saved)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "Branch non sovrascritto" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "Tipologia branch" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "Branch sovrascritto" @@ -2230,23 +2221,23 @@ msgstr "Controllo branch" msgid "Branch Watch Tool" msgstr "Branch Watch Tool" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "Aiuto Branch Watch Tool (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "Aiuto Branch Watch Tool (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "Aiuto Branch Watch Tool (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "Aiuto Branch Watch Tool (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2277,7 +2268,7 @@ msgstr "" "l'esecuzione. Premi il pulsante \"Pulisci Branch Watch\" per rimuovere tutti " "i candidati e tornare alla fase di blacklisting." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2291,21 +2282,21 @@ msgstr "" "con i pulsanti \"Code Path non percorso\", \"Branch sovrascritto\", e " "\"Branch non sovrascritto\". Quando viene premuto il pulsante \"Code Path " "non percorso\" per la prima volta, Branch Watch passa alla fase di " -"riduzione, e la tabella verrà popolata con tutti i candidati compatibili." +"filtraggio, e la tabella verrà popolata con tutti i candidati compatibili." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "Branch to Count Register" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "Branch to Count Register (LR saved)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "Branch to Link Register" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "Branch to Link Register (LR saved)" @@ -2320,20 +2311,25 @@ msgstr "Branch" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Interrompi" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Punto di interruzione" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" "Raggiunto punto di interruzione! Comando di uscita dall'istruzione annullato." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Punti di interruzione" @@ -2367,24 +2363,24 @@ msgstr "Errore adattatore Broadband" msgid "Broadband Adapter MAC Address" msgstr "Indirizzo MAC adattatore Broadband" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Sfoglia sessioni &NetPlay..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Dimensione buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Dimensione del buffer cambiata a %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2432,11 +2428,11 @@ msgstr "Da: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "C&rea file di signature..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Registro CP" @@ -2456,7 +2452,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2496,7 +2492,7 @@ msgstr "Calibrazione" msgid "Calibration Period" msgstr "Tempo di calibrazione" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Chiamata display list a %1 con dimensione %2" @@ -2524,7 +2520,7 @@ msgstr "" "Campo di visione della telecamera (influisce sulla sensibilità del " "puntamento)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "È possibile generare codici AR solo per valori nella memoria virtuale" @@ -2540,19 +2536,19 @@ msgstr "Impossibile modificare i cattivi per questo trofeo!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Impossibile trovare Wii Remote con handle di connessione {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Non è possibile avviare una sessione NetPlay se un gioco è in esecuzione!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annulla" @@ -2561,15 +2557,15 @@ msgstr "Annulla" msgid "Cancel Calibration" msgstr "Annulla calibrazione" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "Candidati: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "Candidati: %1 | Esclusi: %2 | Rimasti: %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "Candidati: %1 | Filtrati: %2 | Rimasti: %3" @@ -2587,11 +2583,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "Non è possibile confrontare con l'ultimo valore della prima ricerca." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Impossibile trovare l'IPL GC" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Non è possibile generare un codice AR per questo indirizzo." @@ -2599,7 +2595,7 @@ msgstr "Non è possibile generare un codice AR per questo indirizzo." msgid "Cannot refresh without results." msgstr "Non è possibile aggiornare senza risultati." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "Impossibile impostare la cartella GCI con un percorso vuoto." @@ -2607,7 +2603,7 @@ msgstr "Impossibile impostare la cartella GCI con un percorso vuoto." msgid "Cannot set memory card to an empty path." msgstr "Impossibile impostare la memory card con un percorso vuoto." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Impossibile avviare il gioco, l'IPL GC non è stato trovato" @@ -2639,7 +2635,7 @@ msgstr "Centra e calibra" msgid "Change &Disc" msgstr "Cambia &disco" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Cambia &disco..." @@ -2647,15 +2643,21 @@ msgstr "Cambia &disco..." msgid "Change Disc" msgstr "Cambia disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Cambia automaticamente disco" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Inserire il disco {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2684,7 +2686,7 @@ msgstr "" "ha movimento laterale, ma solo rotazione e zoom fino al punto di origine " "della telecamera." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Cambiare i trucchi avrà effetto soltanto dopo aver riavviato il gioco." @@ -2692,11 +2694,11 @@ msgstr "Cambiare i trucchi avrà effetto soltanto dopo aver riavviato il gioco." msgid "Channel Partition (%1)" msgstr "Partizione Canale (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Il personaggio inserito non è valido!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2704,7 +2706,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editor di codici" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Cerca codice" @@ -2712,7 +2714,7 @@ msgstr "Cerca codice" msgid "Cheats Manager" msgstr "Gestione codici" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Controlla NAND..." @@ -2732,7 +2734,7 @@ msgstr "" "Controlla di avere i permessi per eliminare il file o se il file è " "attualmente in uso." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Checksum" @@ -2744,7 +2746,7 @@ msgstr "Cina" msgid "Choose" msgstr "Scegli" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Scegli un file da aprire" @@ -2752,15 +2754,15 @@ msgstr "Scegli un file da aprire" msgid "Choose a file to open or create" msgstr "Scegli un file da aprire o creare" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Scegli file di input prioritario" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Scegli file di input secondario" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Scegli la cartella base GCI" @@ -2773,7 +2775,7 @@ msgstr "Scegli la cartella in cui estrarre" msgid "Clamping of rotation about the yaw axis." msgstr "Limite di rotazione sull'asse verticale" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Pulsanti controller tradizionale" @@ -2784,18 +2786,18 @@ msgstr "Controller tradizionale" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Pulisci" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "Pulisci Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Pulisci cache" @@ -2816,7 +2818,7 @@ msgstr "&Clona e modifica codice" msgid "Close" msgstr "Chiudi" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Co&nfigurazione" @@ -2824,11 +2826,11 @@ msgstr "Co&nfigurazione" msgid "Code" msgstr "Codice" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "Code Path non percorso" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "Code Path percorso" @@ -2856,11 +2858,11 @@ msgstr "Correzione colore:" msgid "Color Space" msgstr "Spazio dei colori" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "&Visibilità colonna" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Combina &due file signature..." @@ -2894,7 +2896,7 @@ msgstr "" "dump. Ciononostante, è possibile che si tratti di un buon dump nei confronti " "della versione eShop Wii U del gioco. Dolphin non è in grado di verificarlo." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Compila gli shader prima dell'avvio" @@ -2904,7 +2906,7 @@ msgstr "Compilazione degli shader" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Compressione" @@ -2917,7 +2919,7 @@ msgstr "Livello di compressione:" msgid "Compression:" msgstr "Compressione:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "Cond." @@ -2925,11 +2927,11 @@ msgstr "Cond." #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Condizione" @@ -2945,7 +2947,7 @@ msgstr "Condizionale" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Aiuto condizionale" @@ -2960,7 +2962,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2998,54 +3005,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Condizioni:\n" -"Imposta un'espressione valutata quando viene raggiunto un punto di " -"interruzione. Se l'espressione è falsa o 0, il punto di interruzione viene " -"ignorato fino alla volta successiva. Le espressioni devono essere separate " -"da una virgola. Solo l'ultima espressione verrà usata per determinare cosa " -"fare.\n" -"\n" -"Registri che possono essere referenziati:\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -"LR, CTR, PC\n" -"\n" -"Funzioni:\n" -"Imposta un registro: r1 = 8\n" -"Cast: s8(0xff). Disponibili: s8, u8, s16, u16, s32, u32\n" -"Stack di chiamate: callstack(0x80123456), callstack(\"anim\")\n" -"Confronta stringhe: streq(r3, \"abc\"). Entrambi i parametri possono essere " -"indirizzi o stringhe costanti.\n" -"Leggi Memoria: read_u32(0x80000000). Disponibili: u8, s8, u16, s16, u32, " -"s32, f32, f64\n" -"Scrivi Memoria: write_u32(r3, 0x80000000). Disponibili: u8, u16, u32, f32, " -"f64\n" -"*attualmente la scrittura verrà sempre attivata\n" -"\n" -"Operazioni:\n" -"Unarie: -u, !u, ~u\n" -"Operazioni: * / + -, potenza: **, resto: %, shift: <<, >>\n" -"Compara: <, <=, >, >=, ==, !=, &&, ||\n" -"Bitwise: &, |, ^\n" -"\n" -"Esempi:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Scrivi e interrompi: r4 = 8, 1\n" -"Scrivi e continua: f3 = f1 + f2, 0\n" -"La condizione va sempre per ultima\n" -"\n" -"Le stringhe vanno usate solo con callstack() o streq() e \"virgolettate\". " -"Non assegnare stringhe a variabili.\n" -"Tutte le variabili verranno stampate nel log Memory Interface, se c'è " -"un'interruzione o un risultato NaN. In caso di problemi, assegna una " -"variabile alla tua equazione perché possa venir stampata.\n" -"\n" -"Nota: Tutti i valori sono internamente convertiti a Double per i calcoli. È " -"possibile che vadano fuori dal range o che diventino NaN. Se viene ritornato " -"NaN verrà fornito un avviso e verrà loggata la variabile che è diventata NaN." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3062,7 +3021,7 @@ msgstr "Configura" msgid "Configure Controller" msgstr "Configura controller" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Configura Dolphin" @@ -3075,27 +3034,27 @@ msgstr "Configura input" msgid "Configure Output" msgstr "Configura output" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Conferma" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Conferma cambio backend" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Arresto su conferma" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Conferma" @@ -3105,15 +3064,15 @@ msgstr "Conferma" msgid "Connect" msgstr "Collega" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Collega Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Collega tastiera USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Collega Wii Remote %1" @@ -3133,7 +3092,7 @@ msgstr "Collega Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Collega Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Connetti Wii Remote" @@ -3149,7 +3108,7 @@ msgstr "Connettersi a internet per avviare l'aggiornamento online di sistema?" msgid "Connected" msgstr "Connesso" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Connessione" @@ -3174,7 +3133,7 @@ msgstr "Controlla modalità golf NetPlay" msgid "Control Stick" msgstr "Control Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Profilo controller" @@ -3283,8 +3242,8 @@ msgstr "Convergenza" msgid "Convergence:" msgstr "Convergenza:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Conversione fallita." @@ -3292,9 +3251,9 @@ msgstr "Conversione fallita." msgid "Convert" msgstr "Converti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Converti ora file in cartella" @@ -3302,9 +3261,9 @@ msgstr "Converti ora file in cartella" msgid "Convert File..." msgstr "Converti file..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Converti ora cartella in file" @@ -3327,8 +3286,8 @@ msgstr "" "Vuoi continuare lo stesso?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Conversione in corso..." @@ -3372,22 +3331,22 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Copia" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Copia &funzione" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Copia &esadecimale" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copia indirizzo" @@ -3395,19 +3354,19 @@ msgstr "Copia indirizzo" msgid "Copy Failed" msgstr "Copia non riuscita" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Copia esadecimale" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copia valore" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "(&l) Copia riga di codice" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Copia indirizzo tar&get" @@ -3425,8 +3384,8 @@ msgstr "Copia su B" msgid "Core" msgstr "Core" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "Core non inizializzato." @@ -3563,7 +3522,7 @@ msgstr "" "Se è così, allora potresti dover reimpostare la posizione della memory card " "nelle opzioni." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Impossibile raggiungere il server centrale" @@ -3579,13 +3538,13 @@ msgstr "Impossibile leggere il file." msgid "Country:" msgstr "Paese:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Crea" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Crea file Infinity" @@ -3599,7 +3558,7 @@ msgstr "Crea una nuova Memory Card" msgid "Create Skylander File" msgstr "Crea file Skylander" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Crea configurazioni per altri dispositivi" @@ -3616,11 +3575,11 @@ msgstr "Autore: " msgid "Critical" msgstr "Critico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Taglia immagine lungo i bordi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3636,11 +3595,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Riduci vertici sulla CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3651,31 +3610,31 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Regione corrente" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Valore attuale" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Contesto corrente" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Gioco corrente" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Thread corrente" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "Personalizzato (allarga)" @@ -3683,15 +3642,15 @@ msgstr "Personalizzato (allarga)" msgid "Custom Address Space" msgstr "Spazio degli indirizzi personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Altezza rapporto d'aspetto personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Larghezza rapporto d'aspetto personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Rapporto d'aspetto personalizzato:" @@ -3737,7 +3696,7 @@ msgstr "Console DJ" msgid "DK Bongos" msgstr "Bongo DK" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP Emulation Engine" @@ -3745,15 +3704,15 @@ msgstr "DSP Emulation Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (veloce)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (consigliato)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "Interpreter DSP LLE (molto lento)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "Ricompilatore DSP LLE (lento)" @@ -3783,7 +3742,7 @@ msgstr "Dance Mat" msgid "Dark" msgstr "Buio" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Dati" @@ -3828,8 +3787,8 @@ msgstr "Zona morta" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3838,7 +3797,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Decimale" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Qualità decodifica:" @@ -3877,7 +3836,7 @@ msgstr "Riduci Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Default" @@ -3885,7 +3844,7 @@ msgstr "Default" msgid "Default Config (Read Only)" msgstr "Configurazione di default (sola lettura)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Dispositivo predefinito" @@ -3897,11 +3856,11 @@ msgstr "Font predefinito" msgid "Default ISO:" msgstr "ISO predefinita:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Thread predefinito" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Posponi invalidazione cache EFB" @@ -3909,7 +3868,7 @@ msgstr "Posponi invalidazione cache EFB" msgid "Defer EFB Copies to RAM" msgstr "Posponi copie EFB su RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3924,8 +3883,9 @@ msgstr "" "stabilità.

Nel dubbio, lascia disabilitato." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Elimina" @@ -3955,12 +3915,12 @@ msgstr "Percentuale profondità:" msgid "Depth:" msgstr "Profondità:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrizione" @@ -3974,8 +3934,8 @@ msgstr "Descrizione:" msgid "Description: %1" msgstr "Descrizione: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "Destinazione" @@ -3987,21 +3947,21 @@ msgstr "Destinazione (percorso socket UNIX o indirizzo:porta)" msgid "Destination (address:port):" msgstr "Destinazione (indirizzo:porta):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "Max destinazione" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "Min destinazione" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "Simbolo di destinazione" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Scollegato" @@ -4009,7 +3969,7 @@ msgstr "Scollegato" msgid "Detect" msgstr "Rileva" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Individuazione moduli RSO" @@ -4017,11 +3977,11 @@ msgstr "Individuazione moduli RSO" msgid "Deterministic dual core:" msgstr "Dual core deterministico:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (più volte al giorno)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Periferica" @@ -4039,7 +3999,7 @@ msgstr "Impostazioni periferica" msgid "Device VID (e.g., 057e)" msgstr "Device VID (es. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Dispositivo:" @@ -4048,7 +4008,7 @@ msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" "Non è stato possibile riconoscere %1 come un file Riivolution XML valido." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Oscura lo schermo dopo cinque minuti di inattività." @@ -4064,11 +4024,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Dis&connesso" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Disabilita" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Disabilita Bounding Box" @@ -4077,7 +4032,7 @@ msgstr "Disabilita Bounding Box" msgid "Disable Copy Filter" msgstr "Disabilita copia filtro" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Disattiva copie EFB VRAM" @@ -4085,11 +4040,11 @@ msgstr "Disattiva copie EFB VRAM" msgid "Disable Emulation Speed Limit" msgstr "Disabilita limite velocità di emulazione" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Disabilita Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Disabilita Fastmem Arena" @@ -4097,11 +4052,11 @@ msgstr "Disabilita Fastmem Arena" msgid "Disable Fog" msgstr "Disabilita nebbia" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Disabilita cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Disabilita grandi mappe degli entry point" @@ -4120,7 +4075,7 @@ msgstr "" "alcuni giochi.

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Nel dubbio, lascia selezionato." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disco" @@ -4152,6 +4113,10 @@ msgstr "Disco" msgid "Discard" msgstr "Annulla" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Tipo display" @@ -4187,11 +4152,11 @@ msgstr "Distanza di movimento dalla posizione neutrale." 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Vuoi cancellare la lista dei nomi dei simboli?" @@ -4201,7 +4166,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Vuoi eliminare %n file di salvataggio selezionato/i?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Vuoi interrompere l'emulazione in corso?" @@ -4209,12 +4174,12 @@ msgstr "Vuoi interrompere l'emulazione in corso?" msgid "Do you want to try to repair the NAND?" msgstr "Vuoi provare a correggere la NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Decoder Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Log FIFO Dolphin (*.dff)" @@ -4222,9 +4187,9 @@ msgstr "Log FIFO Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Preset Dolphin Game Mod" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "File mappa Dolphin (*.map)" @@ -4236,8 +4201,8 @@ msgstr "File signature CSV Dolphin" msgid "Dolphin Signature File" msgstr "File signature Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmati TAS Dolphin (*.dtm)" @@ -4280,7 +4245,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin è troppo vecchio per il server traversal" @@ -4296,7 +4261,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:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4304,7 +4269,7 @@ msgstr "" "Dolhin userà questa impostazione per i titoli di cui non potrà riconoscere " "automaticamente la regione." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Il sistema codici di Dolphin è attualmente disabilitato." @@ -4313,7 +4278,7 @@ msgstr "Il sistema codici di Dolphin è attualmente disabilitato." msgid "Domain" msgstr "Dominio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Non aggiornare" @@ -4334,7 +4299,7 @@ msgstr "Porte bloccate" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4356,7 +4321,7 @@ msgstr "Scarica codici" msgid "Download Codes from the WiiRD Database" msgstr "Scarica codici dal Database WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 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" @@ -4368,6 +4333,16 @@ msgstr "Download completato" msgid "Downloaded %1 codes. (added %2)" msgstr "Scaricati %1 codici. (aggiunti %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4407,19 +4382,19 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dump audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Dump texture base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Dump del target EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dump dei frame" @@ -4427,7 +4402,7 @@ msgstr "Dump dei frame" msgid "Dump GameCube BBA traffic" msgstr "Scarica traffico GameCube BBA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Dump Mip Map" @@ -4435,7 +4410,7 @@ msgstr "Dump Mip Map" msgid "Dump Path:" msgstr "Percorso dump:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Dump del Target XFB" @@ -4460,7 +4435,7 @@ msgstr "Dump certificati peer" msgid "Dump root CA certificates" msgstr "Dump certificati root CA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Nel dubbio, " "lascia deselezionato.
" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4479,7 +4454,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4488,25 +4463,25 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Durata pressione pulsante turbo (in frame):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "Durata rilascio pulsante turbo (in frame):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Olandese" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Esci" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "Copia EFB %1" @@ -4522,7 +4497,7 @@ msgstr "" "potrebbe essere necessario un riavvio per permettere a Windows di " "riconoscere il nuovo driver." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4534,7 +4509,7 @@ msgstr "" "Adatto ai giochi competitivi dove l'imparzialità e la latenza minima sono " "più importanti." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Aggiornamenti anticipati della memoria" @@ -4553,7 +4528,16 @@ msgstr "Est Asia" msgid "Edit Breakpoint" msgstr "Modifica punto di interruzione" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Modifica..." @@ -4573,7 +4557,7 @@ msgstr "Effetto" msgid "Effective" msgstr "Effettivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Priorità effettiva" @@ -4595,11 +4579,11 @@ msgstr "Elemento" msgid "Embedded Frame Buffer (EFB)" msgstr "Embedded Frame Buffer (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Vuoto" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Thread dell'emulatore già in esecuzione" @@ -4627,7 +4611,7 @@ msgstr "" "Emula la velocità disco dell'hardware reale. Disabilitarlo potrebbe causare " "instabilità. L'impostazione predefinita è Abilitato" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Dispositivi USB emulati" @@ -4652,34 +4636,24 @@ msgstr "Velocità di emulazione" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Attiva" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Abilita layer di validazione API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Abilita medaglie achievement" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Abilita achievement" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Abilita audio stretching" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Abilita trucchi" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Abilita Inpu&t Controller" @@ -4687,15 +4661,19 @@ msgstr "Abilita Inpu&t Controller" msgid "Enable Custom RTC" msgstr "Abilita RTC personalizzato" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Abilita UI debugging" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Abilita Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Abilita Dual Core (aumenta la velocità)" @@ -4707,7 +4685,7 @@ msgstr "Abilita override del clock della CPU emulata" msgid "Enable Emulated Memory Size Override" msgstr "Abilità override dimensione memoria emulata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Abilita Achievement Encore" @@ -4715,15 +4693,15 @@ msgstr "Abilita Achievement Encore" msgid "Enable FPRF" msgstr "Abilita FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Abilita mod grafiche" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Abilita modalità hardcore" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4757,41 +4735,33 @@ msgstr "" "disattivazione della Modalità Hardcore durante il gioco ne richiede la " "chiusura prima che possa essere riabilitata nuovamente." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "Abilita JIT Block Profiling" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Abilita classifica" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Abilita MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Abilita Notifica Avanzamento" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Abilita scansione progressiva" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Abilita integrazione RetroAchievements.org" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Abilita Rich Presence" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Abilita vibrazione" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Abilita screen saver" @@ -4799,19 +4769,23 @@ msgstr "Abilita screen saver" msgid "Enable Speaker Data" msgstr "Abilita dati altoparlante" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Abilita achievement non ufficiali" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Abilita report statistiche d'uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Abilita WiiConnect24 tramite WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Abilita wireframe" @@ -4819,37 +4793,6 @@ msgstr "Abilita wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "Abilita cache write-back (lento)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"Abilita la competizione nella leaderboard di RetroAchievements.

La " -"Modalità Hardcore deve essere abilitata per il suo utilizzo." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" -"Abliita la rich presence dettagliata nel sito di RetroAchievements." -"

Verrà fornita al sito una descrizione dettagliata di cosa sta " -"facendo il giocatore nel gioco. Se è disabilitata, il sito mostrerà soltanto " -"il nome del gioco in uso.

Non influenza la rich presence di Discord." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4859,7 +4802,7 @@ msgstr "" "causare crash e diversi problemi in alcuni giochi. (ON = Compatibilità, OFF " "= Sbloccato)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4871,7 +4814,7 @@ msgstr "" "RetroAchievements. Dolphin non salva la password localmente e usa un token " "API per mantenere l'autenticazione." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4881,35 +4824,34 @@ msgstr "" "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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"Abilita lo sblocco degli achievement in Modalità Encore.

La Modalità " -"Encore ri-attiva gli achievement che il giocatore ha già sbloccato sul sito " -"per poter ricevere le notifiche quando il giocatore soddisfa nuovamente le " -"condizioni, utile per speedrun custom o anche solo per divertimento." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Abilita lo sblocco di achievement.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"Abilita lo sblocco di achivement ufficiali e non ufficiali.

Gli " -"achievement non ufficiali potrebbero essere achievement opzionali o non " -"completi che non sono stati ritenuti ufficiali da RetroAchievements, e " -"potrebbero essere utili per testing o anche solo per divertimento." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4956,7 +4898,7 @@ msgstr "" "meno che non sia assolutamente necessaria.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4968,7 +4910,7 @@ msgstr "" "solo il backend Vulkan ne trarrebbe beneficio.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4995,7 +4937,7 @@ msgstr "" "giochi continueranno a renderizzare in SDR.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Attiva lo stretching dell'audio affinché corrisponda alla velocità " @@ -5033,7 +4975,7 @@ msgstr "" "Compatibile, OFF = Veloce)

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5045,7 +4987,7 @@ msgstr "" "Meteo e i Canali Nintendo\n" "Leggi i Termini del Servizio su: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5057,7 +4999,7 @@ msgstr "" "simboli di debug per gli shader compilati.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5083,13 +5025,17 @@ msgstr "" "\n" "Importazione annullata." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet non è stato inizializzato" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Inglese" @@ -5108,7 +5054,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Inserisci ID del dispositivo USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Inserisci indirizzo da controllare:" @@ -5134,33 +5080,33 @@ msgstr "" "Inserisci l'indirizzo IP e la porta dell'istanza tapserver a cui vuoi " "connetterti." -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5173,52 +5119,52 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Errore" @@ -5235,7 +5181,7 @@ msgstr "Errore apertura adattatore: %1" msgid "Error collecting save data!" msgstr "Errore recuperando i salvataggi!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5251,7 +5197,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Errore durante l'ottenimento della lista delle sessioni: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Si è verificato un errore durante il caricamento dei texture pack" @@ -5350,12 +5296,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Ubershader esclusivi" @@ -5399,11 +5345,11 @@ msgstr "Inizio di espressione prevista." msgid "Expected variable name." msgstr "Prevista nome variabile." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Sperimentale" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Esporta tutti i salvataggi Wii" @@ -5418,7 +5364,7 @@ msgstr "Esportazione non riuscita" msgid "Export Recording" msgstr "Esporta registrazione" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Esporta registrazione..." @@ -5446,14 +5392,14 @@ msgstr "Esporta come .&gcs..." msgid "Export as .&sav..." msgstr "Esporta come .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Esportato/i %n salvataggio/i" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Estensione" @@ -5466,7 +5412,7 @@ msgstr "Estensione input di movimento" msgid "Extension Motion Simulation" msgstr "Estensione simulazione di movimento" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Esterno" @@ -5474,35 +5420,35 @@ msgstr "Esterno" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Estrai certificati da NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Estrai disco intero..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Estrai partizione intera..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Estrai file..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Estrai file..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Estrai dati di sistema..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Estrazione di tutti i file..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Estrazione cartella..." @@ -5511,8 +5457,8 @@ msgstr "Estrazione cartella..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Lettore FIFO" @@ -5528,11 +5474,11 @@ msgstr "" "Fallita apertura della memory card:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Impossibile aggiungere il file di signature '%1'" @@ -5552,7 +5498,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:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Impossibile connettersi al server: %1" @@ -5573,15 +5519,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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Fallita creazione del file Infinity" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Fallita creazione del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5635,15 +5581,15 @@ msgstr "Fallita l'esportazione di %n su %1 file di salvataggio." msgid "Failed to export the following save files:" msgstr "Fallita l'esportazione dei seguenti file di salvataggio:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Fallita estrazione dei certificati dalla NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Estrazione del file non riuscita." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Fallita estrazione dei dati di sistema." @@ -5665,14 +5611,14 @@ msgstr "Impossibile trovare uno o più simboli D3D" msgid "Failed to import \"%1\"." msgstr "Importazione di \"%1\" non riuscita." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5680,7 +5626,7 @@ msgstr "" "Fallita l'importazione del salvataggio. Il file sembra corrotto o non è un " "file di salvataggio Wii valido." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5691,7 +5637,7 @@ msgstr "" "ripararla (Strumenti -> Gestisci NAND -> Controlla NAND...), quindi importa " "di nuovo il salvataggio." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Inizializzazione fallita" @@ -5714,11 +5660,11 @@ msgid "Failed to install pack: %1" msgstr "Fallita installazione del pack: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Fallita installazione del titolo nella NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5726,8 +5672,8 @@ msgstr "" "Fallito l'ascolto sulla porta %1. C'è già un'altra istanza di un server " "NetPlay in esecuzione?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Fallito caricamento del modulo RSO a %1" @@ -5739,15 +5685,15 @@ msgstr "Caricamento d3d11.dll non riuscito" msgid "Failed to load dxgi.dll" msgstr "Caricamento dxgi.dll non riuscito" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Fallita l'apertura del file mappa '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Fallito caricamento del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" @@ -5755,7 +5701,7 @@ msgstr "" "Fallito caricamento del file Skylander:\n" "%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Impossibile caricare l'eseguibile in memoria." @@ -5771,17 +5717,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Impossibile modificare lo Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "Fallita l'apertura di \"%1\" per la scrittura." -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "Fallita l'apertura di \"{0}\" per la scrittura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Fallita l'apertura di '%1'" @@ -5789,7 +5735,7 @@ msgstr "Fallita l'apertura di '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "Impossibile aprire il dispositivo Bluetooth: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "Fallita l'apertura dello snapshot Branch Watch \"%1\"" @@ -5823,15 +5769,15 @@ msgstr "" msgid "Failed to open file." msgstr "Impossibile aprire il file." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Impossibile avviare il server" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Fallita apertura del file Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5843,11 +5789,11 @@ msgstr "" "\n" "Il file potrebbe già essere in uso sulla base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Fallita apertura del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5902,27 +5848,23 @@ 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:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Fallita lettura del file Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -"Fallita lettura del file Infinity:\n" -"%1\n" -"\n" -"Il file è troppo piccolo." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Fallita lettura del file Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5942,7 +5884,7 @@ msgstr "" "Impossibile leggere il contenuto del file:\n" "%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Fallita lettura di {0}" @@ -5982,31 +5924,31 @@ msgstr "" "Impossibile resettare la cartella di reindirizzamento NetPlay. Controlla di " "avere i corretti permessi di scrittura." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "Fallito il salvataggio dello snapshot Branch Watch \"%1\"" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Fallito il salvataggio del log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Impossibile salvare la mappa del codice nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Impossibile salvare il file di signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Impossibile salvare la mappa dei simboli nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Impossibile salvare nel file di signature '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -6063,19 +6005,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Errore" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Ritardo input imparziale" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Regione alternativa" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Regione alternativa:" @@ -6088,7 +6030,7 @@ msgstr "Rapida" msgid "Fast Depth Calculation" msgstr "Calcolo rapido della profondità" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -6101,7 +6043,7 @@ msgstr "" msgid "Field of View" msgstr "Campo visivo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Statuina numero:" @@ -6115,7 +6057,7 @@ msgstr "Dettagli del file" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Formato del file" @@ -6123,24 +6065,24 @@ msgstr "Formato del file" msgid "File Format:" msgstr "Formato del file:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Info file" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nome file" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Percorso:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Dimensioni del file" @@ -6232,7 +6174,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flag" @@ -6241,12 +6182,12 @@ msgstr "Flag" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Segui &flusso" @@ -6272,7 +6213,7 @@ msgstr "" "Per istruzioni sull'installazione, consulta questa pagina." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forza 16:9" @@ -6280,7 +6221,7 @@ msgstr "Forza 16:9" msgid "Force 24-Bit Color" msgstr "Forza colore 24-Bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forza 4:3" @@ -6312,11 +6253,11 @@ msgstr "Forza ascolto su porta:" msgid "Force Nearest" msgstr "Forza adiacente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Forzato a off perché %1 non supporta l'espansione VS" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Forzato a on perché %1 non supporta i geometry shader." @@ -6348,6 +6289,12 @@ msgstr "" "e causa minori difetti grafici.

Nel dubbio, lascia " "selezionato." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Formato:" @@ -6363,7 +6310,7 @@ msgstr "In avanti" msgid "Forward port (UPnP)" msgstr "Inoltra porta (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Trovati %1 risultati per \"%2\"" @@ -6373,7 +6320,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "Indirizzi trovatI: %n" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Frame %1" @@ -6394,11 +6341,11 @@ msgstr "Aumenta velocità avanzamento frame" msgid "Frame Advance Reset Speed" msgstr "Reimposta velocità avanzamento frame" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Dumping dei frame" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Intervallo fotogramma" @@ -6406,7 +6353,7 @@ msgstr "Intervallo fotogramma" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "L'immagine/i del fotogramma '{0}' esiste già. Vuoi sovrascrivere?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Fotogrammi da registrare:" @@ -6426,7 +6373,7 @@ msgstr "Blocchi liberi: %1" msgid "Free Look Control Type" msgstr "Tipo controlli camera libera" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Controller camera libera %1" @@ -6461,7 +6408,7 @@ msgstr "Abilita/Disabilita camera libera" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francese" @@ -6480,8 +6427,8 @@ msgid "From" msgstr "Da" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Da:" @@ -6489,10 +6436,14 @@ msgstr "Da:" msgid "FullScr" msgstr "Schermo intero" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funzione" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funzioni" @@ -6533,11 +6484,11 @@ msgstr "Volume GBA" msgid "GBA Window Size" msgstr "Dimensioni finestra GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "Cambiata ROM GBA%1 in \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "ROM GBA%1 disabilitata" @@ -6585,7 +6536,7 @@ msgstr "GL_MAX_TEXTURE_SIZE è {0} - deve essere almeno 1024." msgid "GPU Texture Decoding" msgstr "Decodificatore texture GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6597,7 +6548,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: ERRORE OGL: La tua scheda video supporta OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6605,7 +6556,7 @@ msgstr "" "GPU: ERRORE OGL: Serve GL_ARB_map_buffer_range.\n" "GPU: La tua scheda video supporta OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6613,7 +6564,7 @@ msgstr "" "GPU: ERRORE OGL: Occorre GL_ARB_sampler_objects.\n" "GPU: La tua scheda video supporta OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6621,7 +6572,7 @@ msgstr "" "GPU: ERRORE OGL: Occorre GL_ARB_uniform_buffer_object.\n" "GPU: La tua scheda video supporta OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6637,7 +6588,7 @@ msgstr "" "GPU: ERRORE OGL: Occorre OpenGL versione 3.\n" "GPU: La tua scheda video supporta OpenGL 3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6660,16 +6611,16 @@ msgstr "" msgid "Game" msgstr "Gioco" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Schede di gioco Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6677,7 +6628,7 @@ msgstr "" "ROM Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "Tutti i file (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance sulla porta %1" @@ -6706,7 +6657,7 @@ msgid "Game Gamma:" msgstr "Gamma di gioco:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID gioco" @@ -6715,15 +6666,15 @@ msgstr "ID gioco" msgid "Game ID:" msgstr "ID gioco:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Stato del gioco" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Cambiato gioco in \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6732,11 +6683,11 @@ msgstr "" "Proprietà, vai alla scheda Verifica e seleziona Verifica Integrità per " "controllare l'hash." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "Il gioco ha un diverso numero di disco" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "Il gioco ha una revisione differente" @@ -6751,7 +6702,7 @@ msgstr "" "Gioco sovrascritto con un altro salvataggio. Corruzione in posizione {0:#x}, " "{1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "La regione del gioco non coincide" @@ -6771,11 +6722,11 @@ msgstr "Adattatore GameCube per Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Adattatore GameCube per Wii U su porta %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Controller GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Controller GameCube su porta %1" @@ -6783,11 +6734,11 @@ msgstr "Controller GameCube su porta %1" msgid "GameCube Controllers" msgstr "Controller GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Tastiera GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Tastiera GameCube su porta %1" @@ -6804,7 +6755,7 @@ msgstr "Memory Card GameCube" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Memory Card GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "Microfono GameCube slot %1" @@ -6832,7 +6783,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codici Gecko" @@ -6842,35 +6793,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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Generale" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Generale e opzioni" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "Codici Action Replay generati" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Genera una nuova identità statistiche" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Codici AR generati." -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 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:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Tedesco" @@ -6897,7 +6848,7 @@ msgstr "Gigante" msgid "Giants" msgstr "Giganti" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Modalità golf" @@ -6906,7 +6857,7 @@ msgid "Good dump" msgstr "Buon dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Video" @@ -6951,7 +6902,7 @@ msgstr "Verde sinistro" msgid "Green Right" msgstr "Verde destro" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Vista a griglia" @@ -6988,7 +6939,7 @@ msgstr "HDR Post-Processing" msgid "Hacks" msgstr "Hack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Testa" @@ -7020,7 +6971,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "Hex Byte String" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Esadecimale" @@ -7029,11 +6980,11 @@ msgstr "Esadecimale" msgid "Hide" msgstr "Nascondi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "Nascondi &controlli" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Nascondi tutto" @@ -7045,16 +6996,23 @@ msgstr "Nascondi sessioni in-game" msgid "Hide Incompatible Sessions" msgstr "Nascondi sessioni incompatibili" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Nascondi GBA remoti" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Alta" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Più alta" @@ -7077,7 +7035,7 @@ msgstr "Host" msgid "Host Code:" msgstr "Codice host:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Autorità input host" @@ -7085,7 +7043,7 @@ msgstr "Autorità input host" msgid "Host Size" msgstr "Dimensione host" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -7097,11 +7055,11 @@ msgstr "" "Adatto a giochi casual con più di 3 giocatori, ma potenzialmente instabile " "su connessioni ad alta latenza." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Autorità input host disattivata" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Autorità input host attivata" @@ -7113,7 +7071,7 @@ msgstr "Host con NetPlay" msgid "Hostname" msgstr "Hostname" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Impostazioni Tasti di Scelta Rapida" @@ -7123,11 +7081,11 @@ msgstr "Impostazioni Tasti di Scelta Rapida" msgid "Hotkeys" msgstr "Tasti di scelta rapida" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "I tasti rapidi richiedono il focus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Ubershader ibridi" @@ -7186,12 +7144,12 @@ msgstr "Indirizzo IP:" msgid "IPL Settings" msgstr "Impostazioni IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 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:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilità IR:" @@ -7232,7 +7190,7 @@ msgstr "" msgid "Icon" msgstr "Icona" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7243,7 +7201,7 @@ msgstr "" "Adatto a giochi a turni dipendenti dalle tempistiche dei controlli, come il " "golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Generazione identità" @@ -7270,7 +7228,7 @@ msgstr "" "Questa autorizzazione può essere revocata in qualunque momento dal menu " "delle impostazioni di Dolphin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7290,7 +7248,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:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7301,7 +7259,7 @@ msgstr "" "per testing.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7317,7 +7275,7 @@ msgstr "" msgid "Ignore" msgstr "Ignora" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "Ignora &Apploader Branch Hits" @@ -7358,7 +7316,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB immediatamente presente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7373,7 +7331,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Importa backup NAND BootMII..." @@ -7388,15 +7346,15 @@ msgstr "Importazione non riuscita" msgid "Import Save File(s)" msgstr "Importa file di salvataggio" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importa salvataggio Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importazione di backup NAND in corso" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7405,6 +7363,15 @@ msgstr "" "Importazione del backup NAND in corso\n" " Tempo trascorso: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "In gioco?" @@ -7487,7 +7454,7 @@ msgstr "Rotazione incrementale" msgid "Incremental Rotation (rad/sec)" msgstr "Rotazione incrementale (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Creatore statuina Infinity" @@ -7496,7 +7463,7 @@ msgstr "Creatore statuina Infinity" msgid "Infinity Manager" msgstr "Gestione Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Oggetto Infinity (*.bin);;" @@ -7519,12 +7486,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informazioni" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Disabilita lo screensaver durante l'emulazione" @@ -7533,11 +7500,11 @@ msgid "Inject" msgstr "Inject" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Input" @@ -7551,23 +7518,19 @@ msgstr "Forza richiesta per l'attivazione" msgid "Input strength to ignore and remap." msgstr "Forza da ignorare e rimappare." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "Inserisci &BLR" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "Inserisci &BLR all'inizio" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "Inserisci &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Inserisci &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Inserisci scheda SD" @@ -7580,11 +7543,11 @@ msgstr "Installa" msgid "Install Partition (%1)" msgstr "Partizione di installazione (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Installa aggiornamento" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Installa WAD..." @@ -7592,13 +7555,13 @@ msgstr "Installa WAD..." msgid "Install to the NAND" msgstr "Installa su NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Istr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Istruzione" @@ -7607,7 +7570,7 @@ msgstr "Istruzione" msgid "Instruction Breakpoint" msgstr "Punto di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Istruzione:" @@ -7616,7 +7579,7 @@ msgstr "Istruzione:" msgid "Instruction: %1" msgstr "Istruzione: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7637,19 +7600,19 @@ msgstr "Intensità" msgid "Interface" msgstr "Interfaccia" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Errore Interno LZ4 - Tentata decompressione di {0} byte" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Errore Interno LZ4 - compressione non riuscita" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Errore Interno LZ4 - decompressione non riuscita ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Errore Interno LZ4 - dimensione del payload differente ({0} / {1}))" @@ -7662,7 +7625,7 @@ 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:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7670,7 +7633,7 @@ msgstr "" "Errore Interno LZO - decompressione non riuscita ({0}) ({1}) \n" "Impossibile recuperare i dati di versione del salvataggio obsoleto." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7678,7 +7641,7 @@ msgstr "" "Errore Interno LZO - impossibile analizzare il cookie di versione e la " "lunghezza della stringa di versione ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7695,7 +7658,7 @@ msgstr "Risoluzione interna" msgid "Internal Resolution:" msgstr "Risoluzione interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Errore interno durante la generazione del codice AR." @@ -7703,7 +7666,7 @@ msgstr "Errore interno durante la generazione del codice AR." msgid "Interpreter (slowest)" msgstr "Interpreter (il più lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7719,7 +7682,7 @@ msgstr "JSON non valido ricevuto dal servizio di auto-aggiornamento : {0}" msgid "Invalid Mixed Code" msgstr "Codice misto invalido" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Pack non valido %1 fornito: %2" @@ -7728,11 +7691,11 @@ msgstr "Pack non valido %1 fornito: %2" msgid "Invalid Player ID" msgstr "ID giocatore non valido" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Indirizzo del modulo RSO non valido: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Stack di chiamate non valido" @@ -7753,7 +7716,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Input non valido nel campo \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Input non valido" @@ -7769,19 +7732,19 @@ msgstr "Non sono stati forniti parametri validi alla ricerca." msgid "Invalid password provided." msgstr "Inserita password non valida." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "File di registrazione non valido" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Parametri di ricerca non validi (nessun oggetto selezionato)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Stringa di ricerca non valida (impossibile convertire in numero)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Stringa di ricerca non valida (solo stringhe di lunghezza pari sono " @@ -7791,13 +7754,13 @@ msgstr "" msgid "Invalid title ID." msgstr "Title ID non valido." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Indirizzo di controllo non valido: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiano" @@ -7810,11 +7773,11 @@ msgstr "Italia" msgid "Item" msgstr "Oggetto" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "Disattiva linking dei blocchi JIT" @@ -7822,47 +7785,47 @@ msgstr "Disattiva linking dei blocchi JIT" msgid "JIT Blocks" msgstr "Blocchi JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7874,16 +7837,16 @@ msgstr "Ricompilatore JIT per ARM64 (consigliato)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Ricompilatore JIT per x86-64 (consigliato)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "Registro cache JIT Off" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7892,16 +7855,16 @@ msgstr "" "cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo " "problema nel bug tracker. Dolphin ora terminerà." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "JIT non è attivo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Giappone" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Giapponese" @@ -7920,12 +7883,12 @@ msgstr "" "Kaos è l'unico cattivo per questo trofeo ed è sempre sbloccato. Non serve " "modificare nulla!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Rimani in esecuzione" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Finestra sempre in cima" @@ -7959,16 +7922,16 @@ msgstr "Tasti" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Kicka giocatore" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coreano" @@ -7989,7 +7952,7 @@ msgstr "C&arica ROM..." msgid "L-Analog" msgstr "L-Analogico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "Salva LR" @@ -7997,7 +7960,11 @@ msgstr "Salva LR" msgid "Label" msgstr "Etichetta" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Ultimo valore" @@ -8011,23 +7978,23 @@ msgstr "Ultimo posizionamento:" msgid "Last reset:" msgstr "Ultimo reset:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Latenza:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Latenza: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Latenza: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Latenza: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Latenza: ~80 ms" @@ -8035,7 +8002,7 @@ 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:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Classifiche" @@ -8043,7 +8010,7 @@ msgstr "Classifiche" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -8054,7 +8021,7 @@ 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:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Levetta sinistra" @@ -8131,11 +8098,11 @@ msgstr "Luce" msgid "Limit Chunked Upload Speed:" msgstr "Limite velocità upload a blocchi:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Lista colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Vista a lista" @@ -8144,30 +8111,30 @@ msgid "Listening" msgstr "Ascolto" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Carica" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Carica file mappa &invalida..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Carica &altro file mappa..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "&Carica Branch Watch da..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "Carica snapshot Branch Watch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Carica texture personalizzate" @@ -8175,11 +8142,11 @@ msgstr "Carica texture personalizzate" msgid "Load File" msgstr "Carica file" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Carica menu principale GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Carica solo salvataggio dell'host" @@ -8285,23 +8252,23 @@ msgstr "Carica stato di gioco da slot 8" msgid "Load State Slot 9" msgstr "Carica stato di gioco da slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Carica stato da file" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Carica stato dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Carica stato da slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Carica menu di sistema Wii %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Carica e scrivi salvataggio dell'host" @@ -8309,28 +8276,28 @@ msgstr "Carica e scrivi salvataggio dell'host" msgid "Load from Selected Slot" msgstr "Carica dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Carica da slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Carica mappa" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Carica menu di sistema vWii %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Carica..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Caricati simboli da '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8340,7 +8307,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8348,20 +8315,28 @@ msgstr "" "Carica mod grafiche da User/Load/GraphicsMods/.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Locale" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Blocca il cursore del mouse" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Bloccato" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8370,19 +8345,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Configurazione log" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Login" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Log della copertura delle istruzioni JIT" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Logut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Scrivi log del tempo di rendering su file" @@ -8394,11 +8369,11 @@ msgstr "Tipi di log" msgid "Logger Outputs" msgstr "Destinazione logger" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Login non riuscita" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8409,20 +8384,20 @@ msgstr "" "Dolphin.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Loop" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Persa la connessione al server NetPlay..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Bassa" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Più bassa" @@ -8434,7 +8409,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -8482,7 +8457,7 @@ msgstr "Assicurati che ci sia uno Skylander nello slot %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Produttore" @@ -8504,16 +8479,16 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Gestisci NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Texture sampling manuale" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mappatura" @@ -8525,11 +8500,11 @@ msgstr "Maschera ROM" msgid "Match Found" msgstr "Trovata corrispondenza" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Buffer massimo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Dimensione massima del buffer cambiata a %1" @@ -8538,7 +8513,7 @@ msgstr "Dimensione massima del buffer cambiata a %1" msgid "Maximum tilt angle." msgstr "Massimo angolo di inclinazione" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" "Potrebbe causare rallentamenti all'interno del menu Wii e in alcuni giochi." @@ -8560,7 +8535,7 @@ msgstr "Punto di interruzione dei dati" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Gestione Memory Card" @@ -8589,7 +8564,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:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8607,7 +8582,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Microfono" @@ -8616,15 +8591,15 @@ msgstr "Microfono" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Varie" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Impostazioni varie" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "Controlli vari" @@ -8638,7 +8613,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Discordanza tra le strutture dati interne." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8665,7 +8640,7 @@ msgstr "Adattatore modem (tapserver)" msgid "Modifier" msgstr "Mezza incl." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8685,8 +8660,8 @@ msgstr "Modifica slot" msgid "Modifying Skylander: %1" msgstr "Modifica Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Moduli trovati: %1" @@ -8694,7 +8669,7 @@ msgstr "Moduli trovati: %1" msgid "Money:" msgstr "Soldi:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8706,11 +8681,11 @@ msgstr "Ombre monoscopiche" msgid "Monospaced Font" msgstr "Carattere a spaziatura fissa" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Input di movimento" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Simulazione di movimento" @@ -8719,27 +8694,10 @@ msgstr "Simulazione di movimento" msgid "Motor" msgstr "Motore" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Visibilità puntatore mouse" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -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:195 -msgid "Mouse Cursor will always be visible." -msgstr "Il puntatore sarà sempre visibile." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -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 " -"gioco." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8750,7 +8708,7 @@ msgstr "Muovi" msgid "Movie" msgstr "Filmato" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8758,7 +8716,7 @@ msgstr "" "Il filmato {0} comincia da uno stato di gioco, ma {1} non esiste. Il filmato " "molto probabilmente non sarà sincronizzato!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "Errori multipli durante la generazione dei codici AR." @@ -8771,10 +8729,10 @@ msgstr "Moltiplicatore" msgid "N&o to All" msgstr "N&o a tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Controllo NAND" @@ -8783,8 +8741,8 @@ msgstr "Controllo NAND" msgid "NKit Warning" msgstr "Attenzione NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8793,7 +8751,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8815,8 +8773,8 @@ msgstr "" "gioco permette di scegliere un valore gamma, impostalo qui." "

Nel dubbio, lascia a 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8859,7 +8817,7 @@ msgstr "Nativo (640x528)" msgid "Native GCI File" msgstr "File GCI Nativo" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8875,7 +8833,7 @@ msgstr "Impostazioni NetPlay" msgid "Netherlands" msgstr "Olanda" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8884,7 +8842,7 @@ msgstr "" "salvataggio creato o modificato durante la sessione Netplay rimarrà tra i " "salvataggi locali dell'Host." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8894,7 +8852,7 @@ msgstr "" "salvataggio creato o modificato durante la sessione Netplay verrà scartato " "al termine." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8903,7 +8861,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:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Network" @@ -8911,16 +8869,16 @@ msgstr "Network" msgid "Network dump format:" msgstr "Formato dump network:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Mai" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Disabilita aggiornamento automatico" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nuovo" @@ -8945,7 +8903,7 @@ msgstr "Nuova ricerca" msgid "New Tag..." msgstr "Nuovo tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Generata nuova identità" @@ -8962,7 +8920,7 @@ msgstr "Nuovo tag" msgid "Next Game Profile" msgstr "Profilo di gioco successivo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Corrispondenza successiva" @@ -9008,7 +8966,7 @@ msgstr "Nessuna compressione" msgid "No Match" msgstr "Nessuna corrispondenza" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Nessun salvataggio" @@ -9016,12 +8974,12 @@ msgstr "Nessun salvataggio" msgid "No data to modify!" msgstr "Non sono presenti dati da modificare!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Non è disponibile una descrizione" @@ -9033,7 +8991,7 @@ msgstr "Nessun errore." msgid "No extension selected." msgstr "Nessuna estensione selezionata." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Nessun file caricato / registrato." @@ -9041,7 +8999,7 @@ msgstr "Nessun file caricato / registrato." msgid "No game is running." msgstr "Nessun gioco è in esecuzione." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Nessun gioco in esecuzione." @@ -9054,11 +9012,11 @@ msgstr "Non sono state selezionate mod grafiche" msgid "No input" msgstr "Nessun input" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Non sono stati rilevati problemi." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Non sono stati trovati giochi compatibili" @@ -9085,7 +9043,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Nessun profilo trovato per l'impostazione di gioco '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Nessuna registrazione caricata." @@ -9105,10 +9063,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Nessuno" @@ -9120,7 +9078,7 @@ msgstr "Nord America" msgid "Not Set" msgstr "Non impostato" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Non tutti i giocatori hanno il gioco. Vuoi davvero continuare?" @@ -9144,7 +9102,7 @@ msgstr "" "Non ci sono abbastanza file liberi nella memory card di destinazione. Ne " "sono necessari almeno %n." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Non trovato" @@ -9190,26 +9148,26 @@ msgstr "Scuotimenti al secondo." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Accelerometro Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Pulsanti Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Levetta Nunchuk" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Oggetto %1" @@ -9261,7 +9219,7 @@ msgstr "X oggetto 4" msgid "Object 4 Y" msgstr "Y oggetto 4" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Intervallo oggetto" @@ -9282,11 +9240,11 @@ msgstr "Offset" msgid "On" msgstr "On" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Al movimento" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9296,7 +9254,7 @@ msgstr "" "espandere vertici e linee, utilizza sempre il vertex shader. Potrebbe " "influire sulle performance.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9310,8 +9268,19 @@ msgid "" "calls and conditional code paths that are only taken when an action is " "performed in the emulated software." msgstr "" +"Dopo la fase di filtraggio bisogna restringere i candidati mostrati in " +"tabella verificando se un code path sia stato preso o meno dall'ultimo " +"controllo. È anche possibile ridurre i candidati determinando se " +"un'istruzione branch sia stata sovrascritta o meno dalla prima volta in cui " +"è stata percorsa. Puoi filtrare i candidati per tipologia di branch, " +"condizione di branch, indirizzo di origine o di destinazione, e nome del " +"simbolo d'origine o di destinazione.\n" +"\n" +"Dopo abbastanza passaggi e sperimentazioni potrai trovare chiamate a " +"funzione e code path condizionali percorsi solo quando un'azione viene " +"eseguita nel software emulato." -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Documentazione online" @@ -9319,7 +9288,7 @@ msgstr "&Documentazione online" msgid "Only Show Collection" msgstr "Mostra solo collezione" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9327,7 +9296,7 @@ msgstr "" "Inserisci solo simboli con prefisso:\n" "(Vuoto per tutti i simboli)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9346,7 +9315,7 @@ msgstr "Apri" msgid "Open &Containing Folder" msgstr "Apri &percorso file" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Apri cartella &utente" @@ -9355,7 +9324,7 @@ msgstr "Apri cartella &utente" msgid "Open Directory..." msgstr "Apri cartella..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Apri log FIFO" @@ -9421,34 +9390,34 @@ msgstr "Arancione" msgid "Orbital" msgstr "Orbita" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "Origine" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "Max origine" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "Min origine" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "Simbolo d'origine" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "Origine e destinazione" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9463,11 +9432,11 @@ msgstr "Altra partizione (%1)" msgid "Other State Hotkeys" msgstr "Altri tasti rapidi" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Gestione altri stati di gioco" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Altro gioco..." @@ -9483,16 +9452,16 @@ msgstr "Ricampionamento Output" msgid "Output Resampling:" msgstr "Ricampionamento Output:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Sovrascritto" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Riproduci registrazione input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9505,11 +9474,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "Livello compressione PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "Livello compressione PNG:" @@ -9521,7 +9490,7 @@ msgstr "File immagine PNG (*.png);; Tutti i File (*)" msgid "PPC Size" msgstr "Dimensione PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9555,7 +9524,7 @@ msgstr "Passivo" msgid "Passthrough a Bluetooth adapter" msgstr "Usa adattatore Bluetooth ponte" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Password" @@ -9593,15 +9562,15 @@ msgstr "Percorsi" msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "Pausa Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pausa al termine del filmato" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pausa in secondo piano" @@ -9621,6 +9590,12 @@ msgstr "" "avere Abilita MMU attivo.

Nel dubbio, lascia " "deselezionato" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9640,7 +9615,7 @@ msgstr "Velocità massima per oscillare verso l'esterno" msgid "Per-Pixel Lighting" msgstr "Illuminazione per-pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Avviare aggiornamento di sistema online" @@ -9648,15 +9623,15 @@ msgstr "Avviare aggiornamento di sistema online" msgid "Perform System Update" msgstr "Avvia l'aggiornamento di sistema" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Finestra campione performance (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Finestra campione performance (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Statistiche di prestazioni" @@ -9674,11 +9649,11 @@ msgstr "Spazio dell'indirizzo fisico" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Scegli un font di debug" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9691,7 +9666,7 @@ msgid "Pitch Up" msgstr "Inclinazione in alto" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Piattaforma" @@ -9699,7 +9674,7 @@ msgstr "Piattaforma" msgid "Play" msgstr "Gioca" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Avvia / Registra" @@ -9711,40 +9686,40 @@ msgstr "Riproduci registrazione" msgid "Play Set/Power Disc" msgstr "Avvia Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opzioni di riproduzione" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Primo giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Primo giocatore prima abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Primo giocatore seconda abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Secondo giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Secondo giocatore prima abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Secondo giocatore seconda abilità" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Giocatori" @@ -9764,7 +9739,7 @@ msgstr "" "disabilitata, per cui molto probabilmente il problema si verificherà di " "nuovo." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9781,7 +9756,7 @@ msgid "Point (Passthrough)" msgstr "Punto (Passthrough)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Porta %1" @@ -9798,7 +9773,7 @@ msgstr "Porta:" msgid "Portal Slots" msgstr "Slot portale" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "Rilevato possibile desync: %1 potrebbe aver desyncato al frame %2" @@ -9814,24 +9789,32 @@ msgstr "Effetto di post-processing:" msgid "Post-Processing Shader Configuration" msgstr "Configura shader di post-processing" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Preferisci VS per espansione vertici/linee" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Precarica texture personalizzate" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Termine prematuro del filmato in PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Termine prematuro del filmato in PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Termine prematuro del filmato in PlayWiimote. {0} > {1}" @@ -9856,7 +9839,7 @@ msgstr "Premi il pulsante Sync" msgid "Pressure" msgstr "Pressione" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9876,7 +9859,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Profilo di gioco precedente" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Corrispondenza precedente" @@ -9887,7 +9870,7 @@ 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitiva %1" @@ -9927,7 +9910,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:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profilo" @@ -9936,23 +9919,29 @@ msgstr "Profilo" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Avanzamento" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Pubblica" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Pulisci cache lista giochi" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Posiziona le ROM IPL in User/GC/." @@ -9972,18 +9961,18 @@ msgstr "Impossibile abilitare Quality of Service (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) abilitato con successo." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 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:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Conferma" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Esci" @@ -10000,19 +9989,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analogico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "Moduli RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "Auto-rilevamento RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "IN ESECUZIONE" @@ -10033,7 +10022,7 @@ msgstr "Fine intervallo:" msgid "Range Start: " msgstr "Inizio intervallo:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "%1 Posizione" @@ -10041,16 +10030,17 @@ msgstr "%1 Posizione" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "Risoluzione interna originale" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "&Sostituisci istruzione" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Lettura" @@ -10089,8 +10079,8 @@ msgstr "Wii Remote reale" msgid "Received invalid Wii Remote data from Netplay." msgstr "Ricevuti dati Wii Remote non validi da Netplay." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "Recent Hits" @@ -10099,23 +10089,23 @@ msgstr "Recent Hits" msgid "Recenter" msgstr "Centra" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Registra" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Registra input" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Registrazione" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opzioni di registrazione" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Registrazione..." @@ -10154,7 +10144,7 @@ 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:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10185,7 +10175,7 @@ msgid "Refreshing..." msgstr "Aggiornamento..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regione" @@ -10206,7 +10196,11 @@ msgstr "Input relativo" msgid "Relative Input Hold" msgstr "Pressione relativa input" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Ricorda più tardi" @@ -10214,7 +10208,7 @@ msgstr "Ricorda più tardi" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Rimuovi" @@ -10245,20 +10239,20 @@ 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:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Rinomina simbolo" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Finestra di render" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Renderizza nella finestra principale" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10274,10 +10268,16 @@ msgstr "Report: GCIFolder Scrittura su blocco non allocato {0:#x}" msgid "Request to Join Your Party" msgstr "Invita al tuo party" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10287,7 +10287,7 @@ msgstr "Reimposta" msgid "Reset All" msgstr "Reimposta tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Reimposta ignora avvisi di errore" @@ -10319,7 +10319,7 @@ msgstr "Reimposta visuale" msgid "Reset all saved Wii Remote pairings" msgstr "Reimposta tutti gli abbinamenti salvati con i Wii Remote" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "Tipo di risoluzione:" @@ -10331,7 +10331,7 @@ msgstr "Gestione Resource Pack" msgid "Resource Pack Path:" msgstr "Percorso Resource Pack:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Riavvio necessario" @@ -10339,11 +10339,11 @@ msgstr "Riavvio necessario" msgid "Restore Defaults" msgstr "Ripristina predefiniti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Ripristina istruzione" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Riprova" @@ -10352,7 +10352,7 @@ msgstr "Riprova" msgid "Return Speed" msgstr "Velocità di ritorno" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revisione" @@ -10364,7 +10364,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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10375,7 +10375,7 @@ 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:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Levetta destra" @@ -10411,11 +10411,11 @@ msgstr "Rotazione a sinistra" msgid "Roll Right" msgstr "Rotazione a destra" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ID stanza" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Rotazione" @@ -10438,27 +10438,31 @@ msgstr "" "viene usata la risoluzione interna nativa.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10471,7 +10475,7 @@ msgstr "" msgid "Rumble" msgstr "Vibrazione" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "&Esegui fino al cursore" @@ -10479,15 +10483,15 @@ msgstr "&Esegui fino al cursore" msgid "Run GBA Cores in Dedicated Threads" msgstr "Avvia i Core GBA in thread dedicati" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Esegui fino a" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Esegui fino a (ignorando i punti di interruzione)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Esegui fino al raggiungimento (ignorando i punti di interruzione)" @@ -10495,23 +10499,23 @@ msgstr "Esegui fino al raggiungimento (ignorando i punti di interruzione)" msgid "Russia" msgstr "Russia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "Scheda SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "Dimensione file scheda SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Immagine scheda SD (*.raw);;Tutti i file (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Percorso scheda SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "Impostazioni scheda SD" @@ -10519,7 +10523,7 @@ msgstr "Impostazioni scheda SD" msgid "SD Root:" msgstr "Root SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "Cartella sincronizzazione SD:" @@ -10554,11 +10558,11 @@ msgstr "Contesto SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Sal&va codice" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Sal&va stato di gioco" @@ -10568,9 +10572,9 @@ msgid "Safe" msgstr "Sicura" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10580,25 +10584,25 @@ msgstr "Salva" msgid "Save All" msgstr "Salva tutto" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "&Salva Branch Watch come..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "Salva snapshot Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Esporta salvataggio" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Salva log FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Salva con nome" @@ -10612,11 +10616,11 @@ msgstr "Salvataggio di gioco" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "File di salvataggio di gioco (*.sav);;Tutti i file (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Importa salvataggio" @@ -10628,7 +10632,7 @@ msgstr "Salva sul più vecchio stato di gioco" msgid "Save Preset" msgstr "Salva preset" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Salva file registrazione come" @@ -10678,23 +10682,23 @@ msgstr "Salva stato di gioco nello slot 8" msgid "Save State Slot 9" msgstr "Salva stato di gioco nello slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Salva stato su file" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Salva stato su slot più vecchio" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Salva stato nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Salva stato su slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Salva mappa dei simboli &come..." @@ -10702,7 +10706,7 @@ msgstr "Salva mappa dei simboli &come..." msgid "Save Texture Cache to State" msgstr "Salva cache texture su stato" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Salva e carica stato di gioco" @@ -10714,11 +10718,11 @@ msgstr "Salva come preset..." msgid "Save as..." msgstr "Salva come..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Salva file combinato in output come" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10732,11 +10736,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Salva nella stessa cartella della ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Salva file mappa" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Salva file di signature" @@ -10744,11 +10748,11 @@ msgstr "Salva file di signature" msgid "Save to Selected Slot" msgstr "Salva nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Salva su slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Salva..." @@ -10762,7 +10766,7 @@ msgstr "" msgid "Saves:" msgstr "Salvataggi:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "Il salvataggio del filmato {0} è corrotto, arresto registrazione..." @@ -10779,8 +10783,8 @@ msgid "ScrShot" msgstr "Screenshot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Cerca" @@ -10789,7 +10793,7 @@ msgstr "Cerca" msgid "Search Address" msgstr "Cerca indirizzo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Cerca oggetto corrente" @@ -10809,7 +10813,7 @@ msgstr "" "La ricerca nello spazio di indirizzo virtuale non è attualmente possibile. " "Esegui il gioco per un po', quindi riprova." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Cerca un'istruzione" @@ -10817,7 +10821,7 @@ msgstr "Cerca un'istruzione" msgid "Search games..." msgstr "Cerca giochi..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Ricerca istruzione" @@ -10852,7 +10856,7 @@ msgstr "Seleziona" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10865,23 +10869,23 @@ msgid "Select Dump Path" msgstr "Seleziona percorso dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Seleziona cartella di estrazione" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Seleziona file statuina" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Seleziona BIOS GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Seleziona ROM GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Seleziona percorso dei salvataggi GBA" @@ -10909,7 +10913,7 @@ msgstr "Seleziona collezione Skylander" msgid "Select Skylander File" msgstr "Seleziona file Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Seleziona slot %1 - %2" @@ -10917,7 +10921,7 @@ msgstr "Seleziona slot %1 - %2" msgid "Select State" msgstr "Seleziona stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Seleziona slot di stato" @@ -10978,13 +10982,13 @@ msgstr "Seleziona una cartella" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Seleziona un file" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Scegli la cartella da sincronizzare con l'immagine scheda SD" @@ -10992,7 +10996,7 @@ msgstr "Scegli la cartella da sincronizzare con l'immagine scheda SD" msgid "Select a Game" msgstr "Seleziona un gioco" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Seleziona un'immagine scheda SD" @@ -11004,7 +11008,7 @@ msgstr "Seleziona un file" msgid "Select a game" msgstr "Seleziona un gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Seleziona un titolo da installare su NAND" @@ -11012,11 +11016,11 @@ msgstr "Seleziona un titolo da installare su NAND" msgid "Select e-Reader Cards" msgstr "Seleziona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Scegli l'indirizzo del modulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Seleziona la registrazione da eseguire" @@ -11024,12 +11028,12 @@ msgstr "Seleziona la registrazione da eseguire" msgid "Select the Virtual SD Card Root" msgstr "Seleziona la cartella principale per la scheda SD virtuale" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Seleziona il file di salvataggio" @@ -11052,16 +11056,16 @@ msgstr "Il profilo controller selezionato non esiste" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Il gioco selezionato non esiste nella lista dei giochi!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Callstack thread selezionato" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Contesto thread selezionato" @@ -11081,7 +11085,7 @@ msgstr "" "Seleziona l'adattatore hardware da utilizzare.

Nel " "dubbio, seleziona il primo." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11137,7 +11141,7 @@ msgstr "" "una tipologia di 3D usata da alcune TV.

Nel dubbio, " "seleziona Off." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11177,7 +11181,7 @@ msgstr "" "proporzioni dell'immagine, e non dovrebbe mai venire utilizzato." "

Nel dubbio, seleziona Auto." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11194,11 +11198,11 @@ msgstr "" "più compatibile.

Nel dubbio, seleziona OpenGL." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Invia" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Posizione della Sensor Bar: " @@ -11231,6 +11235,10 @@ msgstr "" msgid "Set &Value" msgstr "Imposta &valore" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11248,23 +11256,23 @@ msgstr "Seleziona file per la memory card dello slot A" msgid "Set memory card file for Slot B" msgstr "Seleziona file per la memory card dello slot B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Imposta indirizzo di t&ermine del simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Imposta dimensione del &simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Imposta indirizzo di termine del simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Imposta dimensione del simbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11274,11 +11282,19 @@ msgstr "" "(576i) per i giochi PAL.\n" "Potrebbe non funzionare su tutti i giochi." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Imposta la lingua di sistema del Wii" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11286,6 +11302,13 @@ msgstr "" "Imposta la latenza in millisecondi. Valori maggiori possono correggere un " "audio gracchiante. Solo per alcuni backend." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11294,13 +11317,13 @@ 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:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Impostazioni" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Impossibile creare il file setting.txt" @@ -11308,7 +11331,7 @@ msgstr "SetupWiiMemory: Impossibile creare il file setting.txt" msgid "Severity" msgstr "Severità" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Compilazione shader" @@ -11330,32 +11353,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Controller Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Mostra velocità %" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Mostra finestra di &log" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Mostra barra degli s&trumenti" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Mostra gioco corrente nella barra del titolo" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Mostra tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Mostra Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Mostra gioco corrente su Discord" @@ -11364,7 +11387,7 @@ msgstr "Mostra gioco corrente su Discord" msgid "Show Disabled Codes First" msgstr "Mostra prima codici inattivi" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Mostra ELF/DOL" @@ -11373,31 +11396,31 @@ msgstr "Mostra ELF/DOL" msgid "Show Enabled Codes First" msgstr "Mostra prima codici attivi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Mostra contatore frame" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Mostra tempi frame" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Mostra Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Mostra GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Mostra Germania" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Mostra overlay modalità golf" @@ -11405,23 +11428,23 @@ msgstr "Mostra overlay modalità golf" msgid "Show Infinity Base" msgstr "Mostra base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Mostra tasti di input" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Mostra Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Mostra JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Mostra Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Mostra contatore lag" @@ -11429,27 +11452,27 @@ msgstr "Mostra contatore lag" msgid "Show Language:" msgstr "Mostra lingua:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Mostra &configurazione log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Mostra messaggi NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Mostra ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Mostra Olanda" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Mostra messaggi su schermo" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Mostra PAL" @@ -11458,27 +11481,27 @@ msgstr "Mostra PAL" msgid "Show PC" msgstr "Mostra PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Mostra grafico di performance" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Mostra piattaforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "Mostra informazioni di proiezione" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Mostra regioni" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Mostra contatore re-registrazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Mostra Russia" @@ -11486,72 +11509,72 @@ msgstr "Mostra Russia" msgid "Show Skylanders Portal" msgstr "Mostra portale Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Mostra Spagna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Mostra colori velocità" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Mostra informazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Mostra orologio di sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Mostra Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Mostra USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Mostra sconosciuto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Mostra tempi VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Mostra VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Mostra WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Mostra Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Mostra mondo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Mostra in &memoria" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Mostra nel codice" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Mostra in memoria" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Mostra nel codice" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Mostra in memoria" @@ -11559,11 +11582,19 @@ msgstr "Mostra in memoria" msgid "Show in server browser" msgstr "Mostra nel server browser" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "&Mostra target in memoria" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11572,7 +11603,7 @@ msgstr "" "una partita NetPlay.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11592,7 +11630,25 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11602,7 +11658,7 @@ msgstr "" "deviazione standard.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11612,7 +11668,7 @@ msgstr "" "standard.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11622,7 +11678,7 @@ msgstr "" "misura dell'uniformità di visualizzazione.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11641,7 +11697,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11649,7 +11705,7 @@ msgstr "" "Mostra diverse informazioni di proiezione.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11673,7 +11729,7 @@ msgstr "Attiva/disattiva posizione di traverso" msgid "Sideways Wii Remote" msgstr "Wii Remote in posizione di traverso" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Database signature" @@ -11692,12 +11748,12 @@ msgstr "Signed 32" msgid "Signed 8" msgstr "Signed 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Cinese Semplificato" @@ -11714,7 +11770,7 @@ msgstr "Six Axis" msgid "Size" msgstr "Dimensioni" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11726,7 +11782,7 @@ msgstr "" msgid "Skip" msgstr "Salta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Salta drawing" @@ -11781,6 +11837,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Tutti i file (*)" @@ -11856,7 +11915,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Ordine alfabetico" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Suono:" @@ -11870,7 +11929,7 @@ msgstr "Spagna" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spagnolo" @@ -11878,19 +11937,19 @@ msgstr "Spagnolo" msgid "Speaker Pan" msgstr "Panning altoparlante" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volume altoparlante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Specializzato (default)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Specifico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11924,11 +11983,11 @@ msgstr "Velocità" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Fine stack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Inizio stack" @@ -11936,25 +11995,25 @@ msgstr "Inizio stack" msgid "Standard Controller" msgstr "Controller standard" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Avvia &NetPlay" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "Avvia Branch Watch" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Inizia nuova ricerca cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Avvia re&gistrazione input" @@ -11962,7 +12021,7 @@ msgstr "Avvia re&gistrazione input" msgid "Start Recording" msgstr "Avvia registrazione" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Avvia a schermo intero." @@ -11974,14 +12033,14 @@ msgstr "Avvia con le patch Riivolution" msgid "Start with Riivolution Patches..." msgstr "Avvia con le patch Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Gioco avviato" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Stato" @@ -12013,19 +12072,19 @@ msgstr "Esci dall'istruzione" msgid "Step Over" msgstr "Esegui istruzione" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Uscito con successo dall'istruzione!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Scaduto tempo di uscita dall'istruzione!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Esecuzione dell'istruzione in corso..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Istruzione eseguita con successo!" @@ -12034,7 +12093,7 @@ msgstr "Istruzione eseguita con successo!" msgid "Stepping" msgstr "Entrando" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stereo" @@ -12063,16 +12122,16 @@ msgid "Stick" msgstr "Levetta" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Arresta" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Interrompi riproduzione/registrazione input" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Gioco fermato" @@ -12114,11 +12173,11 @@ msgstr "" "RAM (e su texture)

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Adatta a finestra" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Sincronizzazione esatta impostazioni" @@ -12132,7 +12191,11 @@ msgstr "Stringa" msgid "Strum" msgstr "Strimpellata" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Stile:" @@ -12143,18 +12206,18 @@ msgstr "Stile:" msgid "Stylus" msgstr "Stilo" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Completato" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Inserito con successo nell'indice NetPlay" @@ -12164,7 +12227,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "Convertito con successo %n immagine/i." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "'%1' eliminato con successo." @@ -12177,24 +12240,24 @@ msgstr "Esportato con successo %n file di salvataggio su %1." msgid "Successfully exported save files" msgstr "File di salvataggio esportati con successo" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "I certificati sono stati estratti con successo dalla NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "File estratto con successo." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Dati di sistema estratti con successo." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Salvataggio importato con successo." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Il titolo è stato installato con successo su NAND." @@ -12217,16 +12280,16 @@ msgstr "Supporto" msgid "Supported file formats" msgstr "Formato file supportati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 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:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Sospeso" @@ -12273,17 +12336,17 @@ msgstr "Scambia con B" msgid "Symbol" msgstr "Simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Indirizzo di termine del simbolo (%1):" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Nome del simbolo:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Simboli" @@ -12291,7 +12354,7 @@ msgstr "Simboli" msgid "Sync" msgstr "Sincronizza" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Sincronizza codici AR/Gecko" @@ -12311,7 +12374,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:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12332,24 +12395,24 @@ msgid "Synchronizing save data..." msgstr "Sincronizzazione dei dati di salvataggio in corso..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Lingua di sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Strumenti TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Tag" @@ -12359,7 +12422,7 @@ msgstr "Tag" msgid "Taiko Drum" msgstr "Taiko Drum" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Coda" @@ -12367,7 +12430,7 @@ msgstr "Coda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Cattura uno screenshot" @@ -12375,7 +12438,7 @@ msgstr "Cattura uno screenshot" msgid "Target address range is invalid." msgstr "Il range di indirizzi non è valido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12393,9 +12456,9 @@ msgstr "Tecnica" msgid "Test" msgstr "Prova" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "File di testo (*.txt);;Tutti i file (*)" @@ -12408,7 +12471,7 @@ msgstr "Cache texture" msgid "Texture Cache Accuracy" msgstr "Accuratezza cache texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Dump delle texture" @@ -12420,7 +12483,7 @@ msgstr "Filtraggio texture" msgid "Texture Filtering:" msgstr "Filtraggio texture:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Overlay formato texture" @@ -12464,7 +12527,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:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12472,7 +12535,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:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "La NAND è stata riparata." @@ -12490,7 +12553,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "I soldi di questo Skylander. Tra 0 e 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12554,7 +12617,7 @@ msgstr "" "\n" "Seleziona un'altra destinazione per \"%1\"" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12566,7 +12629,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Impossibile leggere il disco (a {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Impossibile trovare il disco che stava per essere inserito." @@ -12659,7 +12722,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:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12707,7 +12770,7 @@ msgstr "" "problemi col menu di sistema, non è possibile aggiornare la console emulata " "con questo disco." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12782,12 +12845,12 @@ 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:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Il profilo '%1' non esiste" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "Il gioco registrato ({0}) non coincide con il gioco selezionato ({1})" @@ -12811,7 +12874,7 @@ 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:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12851,7 +12914,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "il file specificato \"{0}\" non esiste" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12919,7 +12982,7 @@ 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:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12943,6 +13006,10 @@ msgstr "La partizione {0} non è firmata correttamente." msgid "The {0} partition is not properly aligned." msgstr "La partizione {0} non è correttamente allineata." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Ci sono troppe partizioni nella prima tabella delle partizioni." @@ -12957,8 +13024,8 @@ msgstr "" "\n" "Vuoi salvarli prima di chiudere?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "Non c'è nulla da salvare!" @@ -13013,11 +13080,11 @@ msgstr "Il tipo di questo Skylander non può ancora essere modificato!" msgid "This USB device is already whitelisted." msgstr "Questo dispositivo USB è già stato accettato." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Questo WAD non è avviabile." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Questo WAD non è valido." @@ -13036,7 +13103,7 @@ msgstr "" "Questa build di Dolphin non è stata compilata nativamente per la tua CPU.\n" "Usa la build ARM64 per avere prestazioni migliori." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Impossibile annullare l'operazione!" @@ -13166,7 +13233,7 @@ msgstr "" msgid "This is a good dump." msgstr "Questo è un buon dump." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "Ha effetto solo all'avvio del software emulato" @@ -13192,7 +13259,7 @@ msgstr "" "Questo software non dovrebbe essere utilizzato per la riproduzione di giochi " "di cui non sei legalmente in possesso." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Impossibile avviare questo titolo." @@ -13244,12 +13311,15 @@ msgstr "" "Questo valore viene moltiplicato per la profondità impostata nelle " "configurazioni grafiche." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" "use the Branch Type filter options." msgstr "" +"Verranno filtrati anche branch non condizionali.\n" +"Per filtrare i diversi tipi di branch condizionali usa i filtri Tipologia " +"branch." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" @@ -13259,7 +13329,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:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13271,11 +13341,11 @@ msgstr "" "Può servire a prevenire il desync in alcuni giochi che utilizzano le letture " "dell'EFB. Assicurati che tutti stiano usando lo stesso backend grafico." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Contesto thread" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Thread" @@ -13300,14 +13370,14 @@ msgstr "" "Tempo di input stabile richiesto per iniziare la calibrazione. (zero per " "disabilitare)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Tempo scaduto" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titolo" @@ -13316,12 +13386,12 @@ msgid "To" msgstr "A" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Attiva/disattiva &schermo intero" @@ -13346,7 +13416,7 @@ msgid "Toggle Aspect Ratio" msgstr "Attiva/disattiva rapporto di aspetto" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Attiva/disattiva punto di interruzione" @@ -13402,7 +13472,7 @@ msgstr "Attiva/disattiva modalità XFB immediata" msgid "Tokenizing failed." msgstr "Tokenizzazione fallita." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "Controlli strumenti" @@ -13410,7 +13480,7 @@ msgstr "Controlli strumenti" msgid "Toolbar" msgstr "Barra degli strumenti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Sopra" @@ -13418,8 +13488,8 @@ msgstr "Sopra" msgid "Top-and-Bottom" msgstr "Sopra-e-sotto" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Numero di passaggi" @@ -13461,7 +13531,7 @@ msgid "Toy code:" msgstr "Codice figura:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Cinese Tradizionale" @@ -13481,8 +13551,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Errore traversal" @@ -13512,7 +13582,7 @@ 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Grilletti" @@ -13522,7 +13592,7 @@ msgid "Trophy" msgstr "Trofeo" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13536,7 +13606,7 @@ msgstr "Allineamento per tipo" msgid "Typical GameCube/Wii Address Space" msgstr "Spazio di indirizzi standard GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "SCONOSCIUTO" @@ -13548,7 +13618,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "Dispositivo di emulazione USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "Emulazione USB" @@ -13566,7 +13636,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Errore USB Whitelist" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13578,7 +13648,7 @@ msgstr "" "

Nel dubbio, seleziona questa modalità." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13590,7 +13660,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:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13604,7 +13674,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:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Impossibile individuare automaticamente il modulo RSO" @@ -13675,11 +13745,11 @@ msgstr "Immagini GC/Wii non compresse (*.iso *.gcm)" msgid "Undead" msgstr "Non-morti" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Annulla caricamento stato di gioco" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Annulla salvataggio dello stato di gioco" @@ -13700,28 +13770,28 @@ msgstr "" "attualmente installata su NAND senza cancellarne i file di salvataggio. " "Continuare?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Stati Uniti" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Sconosciuto" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Sconosciuto (id:%1 var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando DVD {0:08x} sconosciuto - errore fatale" @@ -13798,11 +13868,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Sconosciuto(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Sconosciuto(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Illimitato" @@ -13814,21 +13884,9 @@ msgstr "Rimuovi ROM" msgid "Unlock Cursor" msgstr "Sblocca il cursore" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Sbloccato" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Sbloccato %1 volte questa sessione" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Sbloccato (casual)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Sbloccato questa sessione" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13854,7 +13912,7 @@ msgstr "Unsigned 32" msgid "Unsigned 8" msgstr "Unsigned 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Unsigned Integer" @@ -13868,8 +13926,8 @@ msgstr "Unsigned Integer" msgid "Up" msgstr "Su" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Aggiorna" @@ -13877,11 +13935,11 @@ msgstr "Aggiorna" msgid "Update Partition (%1)" msgstr "Partizione di aggiornamento (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Aggiorna alla chiusura di Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Aggiornamento disponibile" @@ -13926,7 +13984,7 @@ msgstr "Attiva/disattiva posizione verticale" msgid "Upright Wii Remote" msgstr "Wii Remote in posizione verticale" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Impostazioni Report Statistiche d'Uso" @@ -13935,15 +13993,15 @@ 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:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Usa tutti i salvataggi Wii" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Usa database interno per i nomi dei giochi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Usa codec lossless (FFV1)" @@ -13951,15 +14009,21 @@ msgstr "Usa codec lossless (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Usa puntamento con il mouse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usa modalità PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Usa avvisi di errore" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14006,7 +14070,7 @@ msgstr "Usa gli indirizzi virtuali quando possibile" msgid "User Config" msgstr "Configurazione utente" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Interfaccia utente" @@ -14024,10 +14088,17 @@ msgstr "" "Puoi usarle per salvare o recuperare valori tra gli\n" "input e gli output dello stesso controller padre." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Username" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -14040,7 +14111,7 @@ msgstr "" "di velocità a seconda del gioco e/o della tua GPU." "

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14051,7 +14122,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Altrimenti, nel dubbio, lascia disattivato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14351,8 +14422,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Attenzione" @@ -14364,7 +14435,7 @@ msgstr "" "Attenzione: un percorso di override per la cartella GCI è correntemente " "impostato per questo slot. Cambiare il percorso GCI non avrà alcun effetto." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14380,7 +14451,7 @@ msgstr "" "Attenzione: Il numero di blocchi indcati dal BAT ({0}) non coincide con il " "file di intestazione caricato ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14391,7 +14462,7 @@ msgstr "" "salvataggio prima di continuare, o caricare questo stesso stato con modalità " "sola-lettura off." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14401,7 +14472,7 @@ msgstr "" "l'attuale frame nel salvataggio (byte {0} < {1}) (frame {2} < {3}). Dovresti " "caricare un altro salvataggio prima di andare oltre." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14412,7 +14483,7 @@ msgstr "" "caricare questo stato in modalità sola-lettura off. Altrimenti probabilmente " "riscontrerai una desincronizzazione." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14474,7 +14545,7 @@ msgstr "Occidentale (Windows-1252)" msgid "Whammy" msgstr "Tremolo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14486,7 +14557,7 @@ msgstr "" "Arbitraria' è abilitato in Miglioramenti.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14498,7 +14569,7 @@ msgstr "" "Detection Arbitraria' è abilitato in Miglioramenti." "

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivi USB ponte accettati" @@ -14530,25 +14601,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Accelerometro Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Pulsanti Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Giroscopio Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Impostazioni Wii Remote" @@ -14556,19 +14627,19 @@ msgstr "Impostazioni Wii Remote" msgid "Wii Remotes" msgstr "Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii TAS Input %1 - Classic Controller" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii TAS Input %1 - Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS Input %1 - Wii Remote + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii e Wii Remote" @@ -14576,7 +14647,7 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dati Wii non ancora pubblici" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)" @@ -14584,15 +14655,7 @@ msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)" msgid "WiiTools Signature MEGA File" msgstr "File WIITools Signature MEGA" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 " -"focus. Puoi impostare un hotkey per sbloccarlo." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "Risoluzione finestra" @@ -14601,11 +14664,11 @@ msgstr "Risoluzione finestra" msgid "Window Size" msgstr "Dimensioni finestra" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "Pulisci &Inspection Data" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "Pulisci Recent Hits" @@ -14619,10 +14682,11 @@ msgstr "Mondo" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Scrittura" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "Scrivi JIT Block Log Dump" @@ -14655,39 +14719,39 @@ msgstr "Scrivi su log e interrompi" msgid "Write to Window" msgstr "Scrivi su finestra" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Numero del disco errato" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Hash errato" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Regione errata" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Revisione errata" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "Scritto su \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "Scritto su \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Registro XF" @@ -14696,9 +14760,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "Indirizzo destinazione XLink Kai BBA" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14726,7 +14790,7 @@ msgstr "Sì" msgid "Yes to &All" msgstr "Sì a &tutto" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14735,7 +14799,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:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14851,7 +14915,7 @@ msgstr "Devi inserire un nome per la tua sessione!" msgid "You must provide a region for your session!" msgstr "Devi indicare una regione per la tua sessione!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "È necessario riavviare Dolphin affinché le modifiche abbiano effetto." @@ -14879,7 +14943,7 @@ msgstr "" "Vuoi terminare l'emulazione per correggere il problema?\n" "Se selezioni \"No\", l'audio potrebbe risultare ingarbugliato." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14888,9 +14952,9 @@ msgstr "" "comportarsi erronamente o non permettere il salvataggio." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14899,7 +14963,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Codice Zero 3 non supportato" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "Zero candidati rimasti." @@ -14948,7 +15012,7 @@ msgid "default" msgstr "default" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "disconnesso" @@ -14956,7 +15020,7 @@ msgstr "disconnesso" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Carte e-Reader (*.raw);;Tutti i file (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14964,7 +15028,7 @@ msgstr "errno" msgid "fake-completion" msgstr "completamento-finto" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "false" @@ -15014,16 +15078,6 @@ msgstr "" msgid "none" msgstr "inattivo" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "off" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "su" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "o seleziona un dispositivo" @@ -15041,7 +15095,7 @@ msgstr "sRGB" msgid "this value:" msgstr "questo valore:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "true" @@ -15110,11 +15164,9 @@ msgstr "| Or" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin Team. “GameCube” e “Wii” sono marchi registrati " -"Nintendo. Dolphin non è in alcun modo associato con Nintendo." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ja.po b/Languages/po/ja.po index 8f7ac65797..2df286c6a8 100644 --- a/Languages/po/ja.po +++ b/Languages/po/ja.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 難波 鷹史, 2023-2024\n" "Language-Team: Japanese (http://app.transifex.com/delroth/dolphin-emu/" @@ -101,7 +101,7 @@ msgstr "" "%1 さんが\n" "あなたのパーティに参加したいようです" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -135,7 +135,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (リビジョン %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Stock)" @@ -155,7 +155,7 @@ msgstr "%1 (低速)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -169,11 +169,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 グラフィック設定" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -190,7 +190,7 @@ msgstr "%1 はあなたのシステム上でこの機能をサポートしてい msgid "%1 doesn't support this feature." msgstr "%1 はこの機能をサポートしていません" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -200,36 +200,28 @@ msgstr "" "%2 オブジェクト\n" "現在のフレーム: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 が入室しました" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 が退室しました" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 は %2%3 の実績 (%4 ハードコア)をロック解除しました。これは %5%6 ポイント" -"(%7 ハードコア)に相当します。" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" "%1 は %2%3 の実績をロック解除しました。これは %4%5 ポイントに相当します。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 は有効な ROM ではありません" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 がゴルフ中" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 は %2 をプレイしています。" @@ -237,13 +229,13 @@ msgstr "%1 は %2 をプレイしています。" msgid "%1 memory ranges" msgstr "%1 memory ranges" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 ポイント" @@ -255,30 +247,30 @@ msgstr "%1 個のセッションを発見" msgid "%1 sessions found" msgstr "%1 個のセッションを発見" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (標準)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 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:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 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:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1's value is used" @@ -290,6 +282,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -359,11 +355,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "Dolphinについて(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "メモリ ブレークポイントの追加(&A)" @@ -372,7 +368,7 @@ msgstr "メモリ ブレークポイントの追加(&A)" msgid "&Add New Code..." msgstr "コードを追加...(&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "ファンクションを追加(&A)" @@ -380,15 +376,15 @@ msgstr "ファンクションを追加(&A)" msgid "&Add..." msgstr "追加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "アセンブラ(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "サウンド設定(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "自動更新(&A):" @@ -396,11 +392,15 @@ msgstr "自動更新(&A):" msgid "&Borderless Window" msgstr "ボーダーレス ウィンドウ(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "ブレークポイント(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "バグトラッカー(&B)" @@ -408,15 +408,15 @@ msgstr "バグトラッカー(&B)" msgid "&Cancel" msgstr "キャンセル(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "チートマネージャ(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "更新を確認...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "クリアシンボル(&C)" @@ -424,7 +424,7 @@ msgstr "クリアシンボル(&C)" msgid "&Clone..." msgstr "クローン...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "コード(&C)" @@ -432,16 +432,15 @@ msgstr "コード(&C)" msgid "&Connected" msgstr "接続(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "コントローラー設定(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "アドレスをコピー(&C)" @@ -449,20 +448,20 @@ msgstr "アドレスをコピー(&C)" msgid "&Create..." msgstr "作成...(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "削除(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "ウォッチの削除(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "ウォッチの削除(&D)" @@ -476,11 +475,11 @@ msgstr "コードを編集...(&E)" msgid "&Edit..." msgstr "編集...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "ディスクの取り出し(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "エミュレーション(&E)" @@ -500,41 +499,41 @@ msgstr "ステートのエクスポート...(&E)" msgid "&Export as .gci..." msgstr "GCI形式でエクスポート...(&E)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "ファイル(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "フォント...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "フレームアドバンス(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "フリールックの設定(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Generate Symbols From" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "GitHub リポジトリ(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "グラフィック設定(&G)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "ヘルプ(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "ホットキーのカスタマイズ(&H)" @@ -554,11 +553,11 @@ msgstr "&Import State..." msgid "&Import..." msgstr "インポート...(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Insert blr" @@ -566,23 +565,23 @@ msgstr "&Insert blr" msgid "&Interframe Blending" msgstr "&Interframe Blending" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "UIの言語(&L):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "ステートロード(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "ロードシンボルマップ(&L)" @@ -592,19 +591,23 @@ msgstr "&Load file to current address" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "ウォッチのロック(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "ツールバーの位置を固定(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memory" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "記録(&M)" @@ -612,7 +615,7 @@ msgstr "記録(&M)" msgid "&Mute" msgstr "ミュート(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Network" @@ -621,23 +624,23 @@ msgid "&No" msgstr "いいえ(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "開く...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "設定(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functions" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "一時停止(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "開始(&P)" @@ -645,7 +648,7 @@ msgstr "開始(&P)" msgid "&Properties" msgstr "プロパティ(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "読み込み専用(&R)" @@ -653,7 +656,7 @@ msgstr "読み込み専用(&R)" msgid "&Refresh List" msgstr "ゲームリストを再更新(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registers" @@ -666,24 +669,24 @@ msgstr "削除(&R)" msgid "&Remove Code" msgstr "コードを削除(&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Rename symbol" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "リセット(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "リソースパックマネージャー(&R)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" @@ -691,31 +694,31 @@ msgstr "&Save Symbol Map" msgid "&Scan e-Reader Card(s)..." msgstr "カードeのスキャン...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "スカイランダーズポータル(&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "速度制限(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "停止(&S)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "テーマ(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "ツール(&T)" @@ -725,21 +728,21 @@ msgstr "ROMを取り外してリセット(&U)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "ウォッチのロックを解除(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "公式Webサイト(&W)" @@ -751,23 +754,23 @@ msgstr "公式Wiki(英語)で動作状況を確認(&W)" msgid "&Yes" msgstr "はい(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' not found, no symbol names generated" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' not found, scanning for common functions instead" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(ダーク)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(ライト)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(システム)" @@ -803,12 +806,12 @@ msgstr "- Subtract(減算)" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "-未確認-" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -869,7 +872,7 @@ msgstr "16-bit Signed Integer" msgid "16-bit Unsigned Integer" msgstr "16-bit Unsigned Integer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -927,7 +930,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:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -953,7 +956,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 ブロック)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1046,23 +1049,23 @@ msgstr "< Less-than(より小さい)" msgid "" msgstr "なし" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "<システムの言語>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" "ハードコアモードでは無効になります。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "よく分からなければ、チェックを入れないでください" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1070,7 +1073,7 @@ msgstr "" "AutoStepping timed out. Current instruction is " "irrelevant." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1099,8 +1102,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Greater-than(より大きい)" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "ネットプレイのセッションは既に進行中です!" @@ -1120,7 +1123,7 @@ msgstr "" "\n" "このWADのバージョンで上書きしますか?元に戻すことはできません!" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "ディスクは既に挿入されています。" @@ -1135,7 +1138,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "起動するタイトルを指定せずにステートセーブをロードすることはできません" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1155,7 +1158,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "WiiリモコンとのシンクロはWiiのゲームを実行中にのみ行えます" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1190,7 +1193,7 @@ msgstr "" "\n" "現在のところ、ネットプレイ上でのWiiリモコンの入力サポートは実験段階です。\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "アクションリプレイコード" @@ -1233,18 +1236,10 @@ msgid "Achievement Settings" msgstr "実績の設定" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "実績" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"実績は無効になりました。
実績を再度有効にするには、実行中のゲームをすべて" -"終了してください。" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Action" @@ -1333,7 +1328,7 @@ msgstr "Action Replay: Normal Code {0}: Invalid subtype {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "ネットプレイ:チャットをアクティブ" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Active" @@ -1341,15 +1336,15 @@ msgstr "Active" msgid "Active Infinity Figures:" msgstr "活発な無限大係数:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Active thread queue" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Active threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "ビデオカード" @@ -1357,7 +1352,7 @@ msgstr "ビデオカード" msgid "Adapter Detected" msgstr "タップが接続されています" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "アダプター:" @@ -1367,7 +1362,7 @@ msgstr "アダプター:" msgid "Add" msgstr "追加" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Add &breakpoint" @@ -1392,43 +1387,43 @@ msgstr "Add a Breakpoint" msgid "Add a Memory Breakpoint" msgstr "Add a Memory Breakpoint" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Add memory &breakpoint" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Add to &watch" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Add to watch" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "追加..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Address" @@ -1581,7 +1576,7 @@ msgid "All Assembly files" msgstr "すべてのアセンブリファイル" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "All Double" @@ -1590,7 +1585,7 @@ msgstr "All Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1598,34 +1593,34 @@ msgid "All Files" msgstr "すべてのファイル" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "すべてのファイル (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "All Float" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "すべての GC/Wii ファイル" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "All Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "全てのステートセーブファイル (*.sav *.s##);; 全てのファイル (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "すべての符号付き整数" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "すべての符号なし整数" @@ -1641,7 +1636,7 @@ msgstr "すべてのプレイヤーのチートコードは同期されました msgid "All players' saves synchronized." msgstr "すべてのプレイヤーのセーブデータは同期されました" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "コンソール上の言語設定の不一致を許可する" @@ -1649,7 +1644,7 @@ msgstr "コンソール上の言語設定の不一致を許可する" msgid "Allow Usage Statistics Reporting" msgstr "利用統計レポートを許可" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "SDカードへの書き込みを許可する" @@ -1669,7 +1664,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "外部入力設定" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "常に表示" @@ -1691,7 +1686,7 @@ msgstr "ディスクの挿入を検出しましたが、見つかりませんで msgid "Anaglyph" msgstr "アナグリフ" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "分析" @@ -1717,15 +1712,15 @@ msgstr "アンチエイリアス:" msgid "Any Region" msgstr "すべて" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "に署名を追加する" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "既存の署名ファイルに追加...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Appl&y Signature File..." @@ -1746,7 +1741,7 @@ msgstr "Apploaderの日付" msgid "Apply" msgstr "適用" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "署名ファイルを適用する" @@ -1754,7 +1749,7 @@ msgstr "署名ファイルを適用する" msgid "Arbitrary Mipmap Detection" msgstr "Arbitrary Mipmap Detection" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "次のプロファイルを削除しますか? '%1'" @@ -1766,7 +1761,7 @@ msgstr "このタイトルの実体ファイルを削除しますか?" msgid "Are you sure you want to delete this pack?" msgstr "このリソースパックを削除しますか?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "ネットプレイを終了しますか?" @@ -1778,16 +1773,16 @@ msgstr "本当によろしいですか?" msgid "Area Sampling" msgstr "エリアサンプリング" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "アスペクト比" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "アスペクト比:" @@ -1795,7 +1790,7 @@ msgstr "アスペクト比:" msgid "Assemble" msgstr "アセンブル" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "アセンブル説明書" @@ -1807,7 +1802,7 @@ msgstr "アセンブラ" msgid "Assembly File" msgstr "アセンブリファイル" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "コントローラ割り当て設定" @@ -1830,11 +1825,11 @@ msgstr "Wiiモーションプラスを取り付ける" msgid "Audio" msgstr "サウンド" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "出力バックエンド:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "タイムストレッチの設定" @@ -1850,7 +1845,7 @@ msgstr "作者" msgid "Authors" msgstr "開発チーム" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自動" @@ -1859,11 +1854,11 @@ msgstr "自動" msgid "Auto (Multiple of 640x528)" msgstr "自動 (640x528のn倍)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "自動更新設定" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1875,7 +1870,7 @@ msgstr "" "\n" "自動以外のレンダリング解像度に設定しなおしてください" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "ウィンドウサイズを自動調整する" @@ -1883,15 +1878,15 @@ msgstr "ウィンドウサイズを自動調整する" msgid "Auto-Hide" msgstr "未操作時に隠す" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO modules?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "次のフォルダと自動同期" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1937,27 +1932,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP register " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "出力バックエンド" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "バックエンドをマルチスレッド化" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "出力設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "出力バックエンド:" @@ -2000,7 +1995,7 @@ msgstr "不正な値が示されました。" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "バナー" @@ -2020,15 +2015,15 @@ msgstr "バー" msgid "Base Address" msgstr "ベースアドレス" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "ベースの優先度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "基本設定" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "基本設定" @@ -2044,10 +2039,6 @@ msgstr "バッチモードの使用にはタイトルの指定が必須です" msgid "Battery" msgstr "バッテリー残量" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "ベータ版 (ひと月に一度)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, その他" @@ -2080,11 +2071,11 @@ msgstr "バイナリー SSL (読み込み)" msgid "Binary SSL (write)" msgstr "バイナリー SSL (書き込み)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "ビットレート (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2094,7 +2085,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "ブロックサイズ" @@ -2133,67 +2124,67 @@ msgstr "" "ドされました。\n" "パススルーの機能は使えません。" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "ブートから一時停止" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND バックアップファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii キー ファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "ボーダーレス フルスクリーン" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "下" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2205,23 +2196,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2238,7 +2229,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2248,19 +2239,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2275,19 +2266,24 @@ msgstr "Branches" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "ブレーク" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "ブレークポイント" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "ブレークポイントが発生しました! ステップアウトが中止されました。" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "ブレークポイント" @@ -2321,24 +2317,24 @@ msgstr "ブロードバンドアダプタのエラー" msgid "Broadband Adapter MAC Address" msgstr "ブロードバンドアダプタ MACアドレス設定" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "ネットプレイセッションブラウザ...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "バッファサイズ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "バッファサイズが変更されました: %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "バッファ:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2386,11 +2382,11 @@ msgstr "By: %1" msgid "C Stick" msgstr "Cスティック" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "署名ファイルの作成(&R)..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP register " @@ -2410,7 +2406,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (低速)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2449,7 +2445,7 @@ msgstr "キャリブレーション" msgid "Calibration Period" msgstr "キャリブレーション周期" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "ディスプレイリスト %1 を、サイズ %2 で呼び出します。" @@ -2475,7 +2471,7 @@ msgstr "カメラ 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "カメラの視野(ポインティングの感度に影響する)。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "仮想メモリ上の値に対してのみARコードを生成できます。" @@ -2491,18 +2487,18 @@ msgstr "このトロフィーの悪役は編集できません!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "接続ハンドル {0:02x} でWiiリモコンが見つかりません。" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "キャンセル" @@ -2511,15 +2507,15 @@ msgstr "キャンセル" msgid "Cancel Calibration" msgstr "キャリブレーション中止" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2536,11 +2532,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "Cannot compare against last value on first search." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "GC IPLが見つかりません" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Cannot generate AR code for this address." @@ -2548,7 +2544,7 @@ msgstr "Cannot generate AR code for this address." msgid "Cannot refresh without results." msgstr "Cannot refresh without results." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "GCI フォルダを空のパスに設定できません。" @@ -2556,7 +2552,7 @@ msgstr "GCI フォルダを空のパスに設定できません。" msgid "Cannot set memory card to an empty path." msgstr "メモリーカードを空のパスに設定できません。" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "GC IPLが見つからないため、ゲームを開始できませんでした。" @@ -2588,7 +2584,7 @@ msgstr "センタリングとキャリブレーション" msgid "Change &Disc" msgstr "ディスクの入れ替え(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "ディスクの入れ替え...(&D)" @@ -2596,15 +2592,21 @@ msgstr "ディスクの入れ替え...(&D)" msgid "Change Disc" msgstr "ディスクの入れ替え" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "ディスクの入れ替えを自動で行う" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "次のディスクに変更:{0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2630,7 +2632,7 @@ msgstr "" "で扱いやすい代わりに、画面全体の回転はできません。

Orbital: ゲーム内カ" "メラを軸とした、回転とズームのみを行える方式" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "変更されたチート内容は次回のゲーム開始時に反映されます" @@ -2638,11 +2640,11 @@ msgstr "変更されたチート内容は次回のゲーム開始時に反映さ msgid "Channel Partition (%1)" msgstr "チャンネルパーティション (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "入力された文字は無効です!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "チャット欄" @@ -2650,7 +2652,7 @@ msgstr "チャット欄" msgid "Cheat Code Editor" msgstr "チートコードエディタ" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "コードサーチ" @@ -2658,7 +2660,7 @@ msgstr "コードサーチ" msgid "Cheats Manager" msgstr "チートマネージャ" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "NANDの整合性チェックを実行..." @@ -2677,7 +2679,7 @@ msgid "" msgstr "" "ファイルを削除する権限があるかどうか、他で使用中でないかを確認してください。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "チェックサム" @@ -2689,7 +2691,7 @@ msgstr "中国" msgid "Choose" msgstr "選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "メモリーカードを選択" @@ -2697,15 +2699,15 @@ msgstr "メモリーカードを選択" msgid "Choose a file to open or create" msgstr "ファイルを開くか作成してください" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "プロパティ入力ファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "セカンダリー入力ファイルの選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "GCI ベース フォルダーを選択します" @@ -2718,7 +2720,7 @@ msgstr "保存先のフォルダを選択してください" msgid "Clamping of rotation about the yaw axis." msgstr "ヨー軸を中心とした回転のクランプ。" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "クラシックコントローラ ボタン" @@ -2729,18 +2731,18 @@ msgstr "クラシックコントローラ" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "全消去" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "キャッシュの消去" @@ -2761,7 +2763,7 @@ msgstr "コードをコピーして編集..." msgid "Close" msgstr "閉じる" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Dolphinの設定(&N)" @@ -2769,11 +2771,11 @@ msgstr "Dolphinの設定(&N)" msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2801,11 +2803,11 @@ msgstr "カラーコレクション:" msgid "Color Space" msgstr "色空間" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Combine &Two Signature Files..." @@ -2838,7 +2840,7 @@ msgstr "" "eShopでリリースされたゲームと比較すると、かなり良いダンプである可能性がありま" "す。Dolphinではこれを確認できません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "ゲーム開始前にシェーダをコンパイルする" @@ -2848,7 +2850,7 @@ msgstr "シェーダをコンパイル中..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "圧縮形式" @@ -2861,7 +2863,7 @@ msgstr "圧縮レベル:" msgid "Compression:" msgstr "圧縮形式:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2869,11 +2871,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Condition" @@ -2889,7 +2891,7 @@ msgstr "条件付き" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Conditional help" @@ -2904,7 +2906,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2942,53 +2949,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"コンディション:\n" -"ブレークポイントがヒットしたときに評価される式を設定します。式が false また" -"は 0 の場合、ブレークポイントは再度ヒットするまで無視されます。ステートメント" -"はコンマで区切らなければなりません。最後のステートメントだけが、何をするかを" -"決定するために使用されます。\n" -"\n" -"参照可能なレジスタ:\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -"LR, CTR, PC\n" -"\n" -"ファンクション:\n" -"レジスターの設定: r1 = 8\n" -"キャスト: s8(0xff). Available: s8, u8, s16, u16, s32, u32\n" -"コールスタック: callstack(0x80123456), callstack(\"anim\")\n" -"文字列の比較: streq(r3, \"abc\"). どちらのパラメーターもアドレスか文字列定数" -"です。\n" -"メモリーの読み込み: read_u32(0x80000000). Available: u8, s8, u16, s16, u32, " -"s32, f32, f64\n" -"メモリーの書き込み: write_u32(r3, 0x80000000). Available: u8, u16, u32, f32, " -"f64\n" -"*現在の書き込みは常にトリガーされます\n" -"\n" -"オペレーション:\n" -"単項: -u, !u, ~u\n" -"計算: * / + -, パワー: **, リマインダー: %, シフト: <<, >>\n" -"比較: <, <=, >, >=, ==, !=, &&, ||\n" -"ビット毎: &, |, ^\n" -"\n" -"例:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"ライトアンドブレーク: r4 = 8, 1\n" -"ライトアンドコンテニュー: f3 = f1 + f2, 0\n" -"条件は常に最後でなければなりません\n" -"\n" -"文字列はcallstack()またはstreq()内で使用し、\"quoted \"しなければなりません。" -"文字列を変数に代入してはなりません。\n" -"すべての変数は、ヒットまたは NaN の結果があれば、Memory Interface のログに出" -"力されます。問題をチェックするには、式に変数を代入し、出力されるようにしま" -"す。\n" -"\n" -"注記:すべての値は、計算のために内部的にダブルスに変換されます。範囲外やNaNに" -"なる可能性があります。NaNが返された場合は警告が出され、NaNになったvarが記録さ" -"れます。" #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3005,7 +2965,7 @@ msgstr "設定" msgid "Configure Controller" msgstr "操作設定" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphinの設定" @@ -3018,27 +2978,27 @@ msgstr "入力設定" msgid "Configure Output" msgstr "出力設定" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "出力バックエンド変更の確認" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "動作停止時に確認" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "確認" @@ -3048,15 +3008,15 @@ msgstr "確認" msgid "Connect" msgstr "ホストに接続" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "バランスWiiボードを接続する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "USBキーボードを接続する" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "%1PのWiiリモコンを接続" @@ -3076,7 +3036,7 @@ msgstr "3PのWiiリモコンを接続" msgid "Connect Wii Remote 4" msgstr "4PのWiiリモコンを接続" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Wiiリモコンの接続" @@ -3092,7 +3052,7 @@ msgstr "インターネットに接続してWiiのシステム更新を行いま msgid "Connected" msgstr "Connected" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "接続" @@ -3117,7 +3077,7 @@ msgstr "ネットプレイゴルフモードのコントロール" msgid "Control Stick" msgstr "コントロールスティック" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "入力設定" @@ -3224,8 +3184,8 @@ msgstr "収束点" msgid "Convergence:" msgstr "収束点 (Convergence):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "変換に失敗しました。" @@ -3233,9 +3193,9 @@ msgstr "変換に失敗しました。" msgid "Convert" msgstr "ファイル形式の変換" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "ファイルをフォルダーに変換する" @@ -3243,9 +3203,9 @@ msgstr "ファイルをフォルダーに変換する" msgid "Convert File..." msgstr "このタイトルを変換..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "フォルダーをファイルに変換する" @@ -3269,8 +3229,8 @@ msgstr "" "このまま変換を行いますか?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "変換中..." @@ -3312,22 +3272,22 @@ msgstr "" "ビは2.2をターゲットにすることが多です。

分からない場" "合はチェックを外してください。" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "コピー" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Copy &function" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Copy &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copy Address" @@ -3335,19 +3295,19 @@ msgstr "Copy Address" msgid "Copy Failed" msgstr "コピーに失敗しました。" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Copy Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copy Value" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Copy code &line" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Copy tar&get address" @@ -3365,8 +3325,8 @@ msgstr "Bへコピー" msgid "Core" msgstr "コア" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3502,7 +3462,7 @@ msgstr "" "もしそうなら、オプションでメモリーカードの場所を指定し直す必要があるかもしれ" "ません。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Couldn't look up central server" @@ -3518,13 +3478,13 @@ msgstr "ファイルを読み込めませんでした。" msgid "Country:" msgstr "発売国" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "作成" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "インフィニティファイルの作成" @@ -3538,7 +3498,7 @@ msgstr "新しくメモリーカードを作成" msgid "Create Skylander File" msgstr "スカイランダーファイルの作成" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "他のデバイスのマッピングの作成" @@ -3555,11 +3515,11 @@ msgstr "制作者:" msgid "Critical" msgstr "致命的なエラー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "クロッピングを有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3575,11 +3535,11 @@ msgstr "" msgid "Crossfade" msgstr "クロスフェーダー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "CPUで頂点をカリングする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3589,31 +3549,31 @@ msgstr "" "マンスと描画統計に影響するおそれがあります。

分から" "ない場合はチェックを外してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "現在の地域" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Current Value" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Current context" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "選択中のタイトル" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Current thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "カスタム" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3621,15 +3581,15 @@ msgstr "" msgid "Custom Address Space" msgstr "カスタムアドレス空間" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "カスタム アスペクト比の高さ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "カスタム アスペクト比の幅" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "カスタム アスペクト比:" @@ -3675,7 +3635,7 @@ msgstr "ターンテーブル" msgid "DK Bongos" msgstr "タルコンガ" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSPのエミュレーション方式:" @@ -3683,15 +3643,15 @@ msgstr "DSPのエミュレーション方式:" msgid "DSP HLE (fast)" msgstr "DSP HLE (高速)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (推奨)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (非常に低速)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (低速)" @@ -3721,7 +3681,7 @@ msgstr "マットコントローラ" msgid "Dark" msgstr "ダーク" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "データ関係" @@ -3766,8 +3726,8 @@ msgstr "遊びの調整" msgid "Debug" msgstr "デバッグ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "デバッグ用" @@ -3776,7 +3736,7 @@ msgstr "デバッグ用" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "デコード精度" @@ -3815,7 +3775,7 @@ msgstr "Y方向 減少" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "既定" @@ -3823,7 +3783,7 @@ msgstr "既定" msgid "Default Config (Read Only)" msgstr "デフォルト設定(読み取り専用)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "既定のデバイス" @@ -3835,11 +3795,11 @@ msgstr "既定のフォント" msgid "Default ISO:" msgstr "デフォルトISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Default thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Defer EFB Cache Invalidation" @@ -3847,7 +3807,7 @@ msgstr "Defer EFB Cache Invalidation" msgid "Defer EFB Copies to RAM" msgstr "メモリへのコピーを遅延させる" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3861,8 +3821,9 @@ msgstr "" "ンスが向上する可能性があります。

分からない場合は" "チェックを外してください。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "削除" @@ -3892,12 +3853,12 @@ msgstr "深度 比率変更:" msgid "Depth:" msgstr "深度 (Depth):" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "説明" @@ -3911,8 +3872,8 @@ msgstr "説明" msgid "Description: %1" msgstr "説明: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3924,21 +3885,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Detached" @@ -3946,7 +3907,7 @@ msgstr "Detached" msgid "Detect" msgstr "検出" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Detecting RSO Modules" @@ -3954,11 +3915,11 @@ msgstr "Detecting RSO Modules" msgid "Deterministic dual core:" msgstr "Deterministic dual core: " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "開発者向け (起動する度に確認)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "デバイス" @@ -3976,7 +3937,7 @@ msgstr "デバイス設定" msgid "Device VID (e.g., 057e)" msgstr "デバイス PID (例: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "デバイス:" @@ -3984,7 +3945,7 @@ msgstr "デバイス:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 を有効な Riivolution XML ファイルとして認識されませんでした。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "5分間操作がない状態が続くと、画面を暗くするようにします" @@ -4000,11 +3961,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "未接続(&c)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Disable" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Bounding Box を無効にする" @@ -4013,7 +3969,7 @@ msgstr "Bounding Box を無効にする" msgid "Disable Copy Filter" msgstr "Disable Copy Filter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" @@ -4021,11 +3977,11 @@ msgstr "Disable EFB VRAM Copies" msgid "Disable Emulation Speed Limit" msgstr "エミュレーション速度 無効化" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Disable Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "ファストメム・アリーナを無効にします" @@ -4033,11 +3989,11 @@ msgstr "ファストメム・アリーナを無効にします" msgid "Disable Fog" msgstr "フォグを無効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "大規模なエントリ ポイント マップを無効にします" @@ -4055,7 +4011,7 @@ msgstr "" "ますが、タイトルによっては不具合が発生します。

よく" "分からなければ、チェックを外さないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
よく" "分からなければ、チェックを外さないでください。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "ディスク" @@ -4086,6 +4048,10 @@ msgstr "ディスク" msgid "Discard" msgstr "廃棄" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Display Type" @@ -4121,11 +4087,11 @@ msgstr "振りの強さをニュートラルポジションからの距離で指 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Dolphinの開発者への情報提供にご協力いただけますか?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\" をゲームパスリストに追加しますか?" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Do you want to clear the list of symbol names?" @@ -4135,7 +4101,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "選択中の %n 個のセーブファイルを削除しますか?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "動作中のゲームを停止しますか?" @@ -4143,12 +4109,12 @@ msgstr "動作中のゲームを停止しますか?" msgid "Do you want to try to repair the NAND?" msgstr "NANDの修復を試みますか?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II decoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO ログファイル (*.dff)" @@ -4156,9 +4122,9 @@ msgstr "Dolphin FIFO ログファイル (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin ゲームMod プリセット" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Map File (*.map)" @@ -4170,8 +4136,8 @@ msgstr "Dolphin Signature CSV File" msgid "Dolphin Signature File" msgstr "Dolphin Signature File" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS ムービー (*.dtm)" @@ -4213,7 +4179,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphinのバージョンが古すぎます" @@ -4229,7 +4195,7 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin is unable to verify unlicensed discs." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4237,7 +4203,7 @@ msgstr "" "地域が自動設定できなかったタイトルに対してDolphinはここで設定した地域を使用し" "ます。" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "チートは現在、無効化されています" @@ -4246,7 +4212,7 @@ msgstr "チートは現在、無効化されています" msgid "Domain" msgstr "Domain" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "更新しない" @@ -4267,7 +4233,7 @@ msgstr "ドアはロックされています" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4289,7 +4255,7 @@ msgstr "Webからコードを入手" msgid "Download Codes from the WiiRD Database" msgstr "Webからコードを入手 (WiiRD Database)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "グリッド表示でパッケージ画像を使用 ( GameTDB.comより取得 )" @@ -4301,6 +4267,16 @@ msgstr "ダウンロード完了" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 個のコードが見つかりました。( 新規追加: %2 個 )" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4340,19 +4316,19 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "サウンドのダンプを行う(WAV形式)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Dump Base Textures" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "EFBターゲットをダンプする" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "フレームのダンプを行う(AVI形式)" @@ -4360,7 +4336,7 @@ msgstr "フレームのダンプを行う(AVI形式)" msgid "Dump GameCube BBA traffic" msgstr "Dump GameCube BBA traffic" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Dump Mip Maps" @@ -4368,7 +4344,7 @@ msgstr "Dump Mip Maps" msgid "Dump Path:" msgstr "ダンプ先:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "XFBターゲットをダンプする" @@ -4393,7 +4369,7 @@ msgstr "Dump peer certificates" msgid "Dump root CA certificates" msgstr "Dump root CA certificates" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
よく分か" "らなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4412,7 +4388,7 @@ msgstr "" "

よく分からない場合は、このチェックを外したままにし" "てください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4421,25 +4397,25 @@ msgstr "" "

よく分からない場合は、このチェックを外したままにし" "てください。" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "ターボボタンを押す時間(フレーム):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "ターボボタンを離す時間(フレーム):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "オランダ語" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "終了" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB copy %1" @@ -4454,7 +4430,7 @@ msgstr "" "近Dolphinのバージョンを更新した場合は、ドライバを認識させるためにWindowsの再" "起動が必要になるかもしれません。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4464,7 +4440,7 @@ msgstr "" "ホストが設定したバッファサイズですべてのプレイヤーの入力を受け付けます。\n" "公平性が重要な対戦ゲーム向けの設定です。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Early Memory Updates" @@ -4483,7 +4459,16 @@ msgstr "東アジア" msgid "Edit Breakpoint" msgstr "Edit Breakpoint" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Edit..." @@ -4503,7 +4488,7 @@ msgstr "エフェクト" msgid "Effective" msgstr "Effective" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Effective priority" @@ -4525,11 +4510,11 @@ msgstr "要素" msgid "Embedded Frame Buffer (EFB)" msgstr "Embedded Frame Buffer (内蔵フレームバッファ)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "空き" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "エミュレーションスレッドはすでに稼働中です" @@ -4557,7 +4542,7 @@ msgstr "" "実際のハードウェアのディスク速度をエミュレートします。無効にすると不安定にな" "ることがあります。デフォルトはTrueです" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "USBデバイスをエミュレート" @@ -4582,34 +4567,24 @@ msgstr "エミュレーション速度" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "有効" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Enable API Validation Layers" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "実績バッジを有効にする" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "実績を有効にする" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "タイムストレッチを有効にする (Audio Stretching)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "チートコードを有効にする" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "コントローラー入力を有効にする(&t)" @@ -4617,15 +4592,19 @@ msgstr "コントローラー入力を有効にする(&t)" msgid "Enable Custom RTC" msgstr "Custom RTC を使用する" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "デバッグUIを有効にする" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "デュアルコア動作を行う" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "デュアルコア動作を行う (速度向上)" @@ -4637,7 +4616,7 @@ msgstr "CPU Clock Override を有効にする" msgid "Enable Emulated Memory Size Override" msgstr "Memory Size Override を有効にする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "アンコール実績を有効にする" @@ -4645,15 +4624,15 @@ msgstr "アンコール実績を有効にする" msgid "Enable FPRF" msgstr "Enable FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "グラフィック MOD を有効にする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "ハードコアモードを有効にします" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4685,41 +4664,33 @@ msgstr "" "ム実行中にハードコアモードをオフにするには、再度有効にする前にゲームを終了す" "る必要があることに注意してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "リーダーボードを有効にする" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "MMU (メモリ管理ユニット) を有効にする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "進捗状況の通知を有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "プログレッシブ表示を有効にする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.orgの統合を有効にする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "リッチプレゼンスを有効にする" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "振動を有効にする" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "スクリーンセーバーを有効にする" @@ -4727,19 +4698,23 @@ msgstr "スクリーンセーバーを有効にする" msgid "Enable Speaker Data" msgstr "Wiiリモコンのスピーカーを有効にする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "非公式アチーブメントを有効にする" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "統計レポートの収集に協力する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink経由でWiiConnect24を有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "ワイヤーフレーム表示を有効にする" @@ -4747,37 +4722,6 @@ msgstr "ワイヤーフレーム表示を有効にする" msgid "Enable Write-Back Cache (slow)" msgstr "ライトバックキャッシュを有効にする (低速)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"RetroAchievementsのリーダーボードで競争ができるようになりました。

ハー" -"ドコアモードを使用するには、ハードコアモードを有効にする必要があります。" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"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 ウェブサイトの詳細なリッチプレゼンスを有効にします。" -"

これは、プレイヤーがゲーム内で何をしているかの詳細な説明をウェブサイ" -"トに提供します。これを無効にすると、ウェブサイトはどのゲームがプレイされてい" -"るかだけを報告します。

これはDiscordのリッチプレゼンスには関係ありませ" -"ん。" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4787,7 +4731,7 @@ msgstr "" "てはクラッシュなどの問題が発生することがあります。(ON = 互換、OFF = ロック解" "除)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4799,7 +4743,7 @@ msgstr "" "があります。Dolphinはパスワードをローカルに保存せず、APIトークンを使用してロ" "グインを維持します。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4809,33 +4753,34 @@ msgstr "" "値を追跡するアチーブメントでプレーヤーが進捗したときに、簡単なポップアップ" "メッセージを表示します。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"アンコールモードで実績のアンロックが可能になります。

アンコールモード" -"では、プレイヤーがすでにアンロックした実績が再度有効になり、アンロック条件を" -"満たした場合に通知されます。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "実績のアンロックを有効にします。
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"公式実績と同様に非公式実績もアンロックできるようにしましょう。

非公式" -"実績とは、RetroAchievementsによって公式とみなされていないオプションの実績や未" -"完成の実績のことで、テスト用や単に楽しむために役立ちます。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4881,7 +4826,7 @@ msgstr "" "まにしておくこと。

よく分からない場合は、チェックを" "外したままにしておいてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4894,7 +4839,7 @@ msgstr "" "ます。

よく分からない場合は、チェックを外したままに" "してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4921,7 +4866,7 @@ msgstr "" "

よく分からない場合は、このチェックを外したままにし" "てください。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "有効にすると音声をエミュレーション速度に合わせて伸長させます" @@ -4957,7 +4902,7 @@ msgstr "" "速)

よく分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4970,7 +4915,7 @@ msgstr "" "利用規約を読む場合は次のURLを参照してください。: https://www.wiilink24.com/" "tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4982,7 +4927,7 @@ msgstr "" "バッグシンボルも有効にします。

よく分からない場合" "は、このチェックを外したままにしてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5007,13 +4952,17 @@ msgstr "" "\n" "インポートを中止します" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet Didn't Initialize" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "英語" @@ -5032,7 +4981,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "デバイス(ハードウェア)IDを入力" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Enter address to watch:" @@ -5056,33 +5005,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5095,52 +5044,52 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "エラー" @@ -5157,7 +5106,7 @@ msgstr "アダプタのオープン時にエラーが発生しました: %1" msgid "Error collecting save data!" msgstr "セーブデータ収集時にエラーが発生しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5172,7 +5121,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "セッションリストの取得エラー: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "テクスチャパックの読み込み中にエラーが発生しました" @@ -5270,12 +5219,12 @@ 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:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "ヨーロッパ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Uber (統合) シェーダーだけを使用する" @@ -5319,11 +5268,11 @@ msgstr "入力値の検証:入力待ち" msgid "Expected variable name." msgstr "変数名が必要です。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "実験的" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "全てのWiiセーブデータをエクスポート" @@ -5338,7 +5287,7 @@ msgstr "エクスポート失敗" msgid "Export Recording" msgstr "録画ファイルのエクスポート" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "録画ファイルのエクスポート..." @@ -5366,14 +5315,14 @@ msgstr "GCS形式でエクスポート..." msgid "Export as .&sav..." msgstr "SAV形式でエクスポート..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n個のファイルをエクスポートしました" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "拡張コントローラ" @@ -5386,7 +5335,7 @@ msgstr "拡張コントローラ モーション(外部入力)" msgid "Extension Motion Simulation" msgstr "拡張コントローラ モーション" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "External" @@ -5394,35 +5343,35 @@ msgstr "External" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (外部フレームバッファ)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "証明書ファイルをNANDから取り出す" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "ディスク全体を抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "パーティション全体を抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "このファイルを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "このファイルを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "システムデータを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "全てのファイルを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "このディレクトリを抽出..." @@ -5431,8 +5380,8 @@ msgstr "このディレクトリを抽出..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO プレーヤー" @@ -5448,11 +5397,11 @@ msgstr "" "メモリカードを開くことに失敗\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "このセッションを NetPlay インデックスに追加できませんでした: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5472,7 +5421,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org に接続できませんでした" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "サーバー %1 に接続できませんでした" @@ -5493,15 +5442,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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Infinityファイルの作成に失敗しました" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Skylanderファイルの作成に失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5550,15 +5499,15 @@ msgstr "%nから%1 セーブファイルのエクスポートに失敗しまし msgid "Failed to export the following save files:" msgstr "次のセーブファイルをエクスポートできませんでした:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "証明書ファイルの取り出しに失敗" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "ファイルの抽出に失敗しました" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "システムデータの抽出に失敗しました" @@ -5580,14 +5529,14 @@ msgstr "Failed to find one or more D3D symbols" msgid "Failed to import \"%1\"." msgstr "\"%1\" をインポートできませんでした" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "セーブファイルのインポートに失敗しました。一度ゲームを起動してから、再度お試" "しください。" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5595,7 +5544,7 @@ msgstr "" "セーブファイルのインポートに失敗しました。指定されたファイルは破損している" "か、有効な Wiiセーブファイルではありません。" -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5605,7 +5554,7 @@ msgstr "" "ルへのアクセスを妨げている可能性があります。NANDを修復し(ツール -> NANDの管" "理 -> NANDのチェック...)、セーブファイルを再度インポートしてみてください。" -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "コアの初期化に失敗しました" @@ -5628,11 +5577,11 @@ msgid "Failed to install pack: %1" msgstr "リソースパック %1 をインストールできませんでした" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "タイトルのインストールに失敗" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5640,8 +5589,8 @@ msgstr "" "ポート番号 %1 で待ち受けできませんでした。別のネットプレイサーバーが実行中に" "なっていませんか?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "%1 にて RSO モジュールをロードできませんでした" @@ -5653,21 +5602,21 @@ msgstr "d3d11.dllのロードに失敗しました" msgid "Failed to load dxgi.dll" msgstr "dxgi.dllのロードに失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "マップ ファイル '%1' のロードに失敗しました" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Skylanderファイルのロードに失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "実行ファイルをメモリに読み込めませんでした。" @@ -5683,17 +5632,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Skylanderの修正に失敗しました!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' のオープンに失敗しました" @@ -5701,7 +5650,7 @@ msgstr "'%1' のオープンに失敗しました" msgid "Failed to open Bluetooth device: {0}" msgstr "Bluetooth デバイスのオープンに失敗しました: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5734,15 +5683,15 @@ msgstr "" msgid "Failed to open file." msgstr "ファイルのオープンに失敗しました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "サーバーを開けませんでした" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Infinity ファイルのオープンに失敗しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5750,11 +5699,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Skylanderファイルのオープンに失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5804,23 +5753,23 @@ msgstr "入力ファイル \"{0}\" からの読み込みに失敗しました。 msgid "Failed to read selected savefile(s) from memory card." msgstr "メモリーカードから選択したセーブファイルの読み込みに失敗しました。" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Infinityファイルの読み込みに失敗しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Skylanderファイルの読み込みに失敗しました!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5834,7 +5783,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "{0} の読み込みに失敗しました" @@ -5874,31 +5823,31 @@ msgstr "" "NetPlayリダイレクトフォルダのリセットに失敗しました。書き込み権限を確認してく" "ださい。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "FIFOログの保存に失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Failed to save to signature file '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5954,19 +5903,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "失敗" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Fair Input Delay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "既定の地域" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "既定の地域:" @@ -5979,7 +5928,7 @@ msgstr "Fast" msgid "Fast Depth Calculation" msgstr "深度の計算を高速に行う" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5992,7 +5941,7 @@ msgstr "" msgid "Field of View" msgstr "視野角(Field of View)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "図番号:" @@ -6006,7 +5955,7 @@ msgstr "ファイル情報" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "ファイル形式" @@ -6014,24 +5963,24 @@ msgstr "ファイル形式" msgid "File Format:" msgstr "ファイル形式:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "ファイル情報" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "ファイル名" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "ファイルパス" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "ファイルサイズ" @@ -6121,7 +6070,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flags" @@ -6130,12 +6078,12 @@ msgstr "Flags" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Follow &branch" @@ -6159,7 +6107,7 @@ msgstr "" "セットアップ方法については、このページを参照してください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "強制的に 16:9 にする" @@ -6167,7 +6115,7 @@ msgstr "強制的に 16:9 にする" msgid "Force 24-Bit Color" msgstr "強制24bitカラー化" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "強制的に 4:3 にする" @@ -6199,12 +6147,12 @@ msgstr "接続待ちポートを次の番号で固定:" msgid "Force Nearest" msgstr "ニアレストを強制" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" "%1 は頂点シェーダー拡張をサポートしていないため、強制的にオフになりました。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "%1 はジオメトリシェーダーをサポートしていないため、強制的にオンになりました。" @@ -6237,6 +6185,12 @@ msgstr "" "

よく分からなければ、チェックを外さないでください。" "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "ファイル形式:" @@ -6252,7 +6206,7 @@ msgstr "前方" msgid "Forward port (UPnP)" msgstr "ポート開放を自動で設定 (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Found %1 results for \"%2\"" @@ -6262,7 +6216,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "Found %n address(es)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Frame %1" @@ -6283,11 +6237,11 @@ msgstr "Frame Advance速度 増加" msgid "Frame Advance Reset Speed" msgstr "Frame Advance速度 リセット" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Frame Dumping" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "フレームの範囲" @@ -6295,7 +6249,7 @@ msgstr "フレームの範囲" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "フレームダンプイメージ '{0}' はすでに存在します。上書きしますか?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "記録するフレーム数" @@ -6315,7 +6269,7 @@ msgstr "追加可能なファイル数:%1" msgid "Free Look Control Type" msgstr "フリールックカメラの操作タイプ" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "フリールック コントローラ設定 %1" @@ -6350,7 +6304,7 @@ msgstr "フリールック 切替" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "フランス語" @@ -6369,8 +6323,8 @@ msgid "From" msgstr "開始" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "開始" @@ -6378,10 +6332,14 @@ msgstr "開始" msgid "FullScr" msgstr "全画面" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Function" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "制御構造" @@ -6422,11 +6380,11 @@ msgstr "GBA 音量" msgid "GBA Window Size" msgstr "GBA 画面サイズ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBAのROMを %1 から \"%2\" へ変更" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBAのROM %1 を無効化" @@ -6474,7 +6432,7 @@ msgstr "GL_MAX_TEXTURE_SIZE is {0} - must be at least 1024." msgid "GPU Texture Decoding" msgstr "GPU上でテクスチャをデコードする" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6486,7 +6444,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL ERROR: OpenGL 2.0に対応したビデオカードを使っていますか?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6494,7 +6452,7 @@ msgstr "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "OpenGL 3.0に対応したビデオカードを使っていますか?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6502,7 +6460,7 @@ msgstr "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "OpenGL 3.3に対応したビデオカードを使っていますか?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6510,7 +6468,7 @@ msgstr "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "OpenGL 3.1に対応したビデオカードを使っていますか?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6526,7 +6484,7 @@ msgstr "" "GPU: OGL ERROR: Need OpenGL version 3.\n" "OpenGL 3.0に対応したビデオカードを使っていますか?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6549,16 +6507,16 @@ msgstr "" msgid "Game" msgstr "タイトル" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "ゲームボーイアドバンス" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "ゲームボーイアドバンスROMファイル (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6566,7 +6524,7 @@ msgstr "" "ゲームボーイアドバンス ROMファイル (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *." "rom *.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "ポート %1 のゲームボーイアドバンス" @@ -6595,7 +6553,7 @@ msgid "Game Gamma:" msgstr "ゲームガンマ:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ゲームID" @@ -6604,15 +6562,15 @@ msgstr "ゲームID" msgid "Game ID:" msgstr "ゲームID" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "状態" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "次のゲームに変更 \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6621,11 +6579,11 @@ msgstr "" "選択し、検証タブに切り替え、完全性の検証を選択しハッシュをチェックしてくださ" "い" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "ゲームのディスク番号が違います" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "ゲームのリビジョンが違います" @@ -6640,7 +6598,7 @@ msgstr "" "ゲームは別のゲームの保存で上書きされました。 {0:#x}、{1:#x} でデータが破損し" "ています" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "ゲームの地域が一致しません" @@ -6660,11 +6618,11 @@ msgstr "Wii U用ゲームキューブコントローラ接続タップ" msgid "GameCube Adapter for Wii U at Port %1" msgstr "ポート %1のWii U用ゲームキューブコントローラ接続タップ" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "ゲームキューブ コントローラー" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "ポート %1のゲームキューブ コントローラ" @@ -6672,11 +6630,11 @@ msgstr "ポート %1のゲームキューブ コントローラ" msgid "GameCube Controllers" msgstr "ゲームキューブ デバイス設定" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "ゲームキューブ キーボード" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "ポート %1のゲームキューブ キーボード" @@ -6693,7 +6651,7 @@ msgstr "ゲームキューブ メモリーカードファイル" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "ゲームキューブ メモリーカードファイル (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "スロット %1のゲームキューブ マイク" @@ -6721,7 +6679,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Geckoコード" @@ -6731,35 +6689,35 @@ msgstr "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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "一般" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "全般" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "新しい統計IDを作成する" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Generated symbol names from '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "ドイツ語" @@ -6786,7 +6744,7 @@ msgstr "ジャイアント" msgid "Giants" msgstr "ジャイアンツ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golf Mode" @@ -6795,7 +6753,7 @@ msgid "Good dump" msgstr "Good dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "グラフィック" @@ -6839,7 +6797,7 @@ msgstr "緑 - 左" msgid "Green Right" msgstr "緑 - 右" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "グリッド表示" @@ -6876,7 +6834,7 @@ msgstr "HDRポストプロセスを有効にする" msgid "Hacks" msgstr "高速化(Hacks)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Head" @@ -6908,7 +6866,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "Hex Byte String" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimal" @@ -6917,11 +6875,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "隠す" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "すべて非表示" @@ -6933,16 +6891,23 @@ msgstr "プレイ中のセッションを隠す" msgid "Hide Incompatible Sessions" msgstr "互換性のないセッションを隠す" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "リモート先のGBAを隠す" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "大" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "高" @@ -6965,7 +6930,7 @@ msgstr "ホストになる" msgid "Host Code:" msgstr "ホストコード:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Host Input Authority" @@ -6973,7 +6938,7 @@ msgstr "Host Input Authority" msgid "Host Size" msgstr "Host Size" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6985,11 +6950,11 @@ msgstr "" "す\n" "3人以上の環境で、通信が不安定な場合やレイテンシが大きい場合に効果的です" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Host Input Authority が無効になりました" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Host Input Authority が有効になりました" @@ -7001,7 +6966,7 @@ msgstr "ネットプレイを開始(ホスト)" msgid "Hostname" msgstr "Hostname" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "ホットキーのカスタマイズ" @@ -7011,11 +6976,11 @@ msgstr "ホットキーのカスタマイズ" msgid "Hotkeys" msgstr "ホットキー" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "フォーカスがあるときのみホットキーを動作させる" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Uber (統合) シェーダーを一部使用する" @@ -7074,12 +7039,12 @@ msgstr "IPアドレス:" msgid "IPL Settings" msgstr "IPL設定" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "ポインタ" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Wiiリモコンの感度" @@ -7119,7 +7084,7 @@ msgstr "" msgid "Icon" msgstr "アイコン" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7129,7 +7094,7 @@ msgstr "" "いつでもホスト(レイテンシが0になる人)を切り替えられるのが特徴です\n" "ゴルフのような、タイミングにシビアなターン制ゲームに最適です" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "IDの作成" @@ -7155,7 +7120,7 @@ msgstr "" "グの特定に役立てたりします。\n" "また、この許可はいつでもDolphinの設定から取り消すことが可能です" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7176,7 +7141,7 @@ msgstr "" "チェックされない場合、エミュレートされたコントローラの接続状態は\n" "実際のデフォルトデバイスの接続状態(ある場合)にリンクされます。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7187,7 +7152,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7203,7 +7168,7 @@ msgstr "" msgid "Ignore" msgstr "無視" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -7243,7 +7208,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFBを即時表示する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7257,7 +7222,7 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND バックアップをインポート..." @@ -7272,15 +7237,15 @@ msgstr "インポートに失敗" msgid "Import Save File(s)" msgstr "セーブファイルのインポート" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Wii セーブデータのインポート..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "NAND バックアップをインポート" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7289,6 +7254,15 @@ msgstr "" "NAND バックアップをインポート中...\n" "経過時間: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "プレイ中?" @@ -7370,7 +7344,7 @@ msgstr "インクリメンタルローテション" msgid "Incremental Rotation (rad/sec)" msgstr "インクリメンタルローテーション(rad/秒)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "インフィニティ・フィギュア・クリエイター" @@ -7379,7 +7353,7 @@ msgstr "インフィニティ・フィギュア・クリエイター" msgid "Infinity Manager" msgstr "インフィニティマネージャー" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "インフィニティオブジェクト (*.bin);;" @@ -7401,12 +7375,12 @@ msgstr "情報" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "情報" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "エミュレーション中はスクリーンセーバーを起動させない" @@ -7415,11 +7389,11 @@ msgid "Inject" msgstr "インジェクト" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "入力" @@ -7433,23 +7407,19 @@ msgstr "起動に必要な入力値。" msgid "Input strength to ignore and remap." msgstr "無視してリマップする入力値。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Insert &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SDカードの挿入をエミュレートする" @@ -7462,11 +7432,11 @@ msgstr "インストール" msgid "Install Partition (%1)" msgstr "インストールパーティション (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "自動更新" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WiiメニューにWADファイルを追加..." @@ -7474,13 +7444,13 @@ msgstr "WiiメニューにWADファイルを追加..." msgid "Install to the NAND" msgstr "NANDへインストール" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruction" @@ -7489,7 +7459,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Instruction Breakpoint" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instruction:" @@ -7498,7 +7468,7 @@ msgstr "Instruction:" msgid "Instruction: %1" msgstr "Instruction: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7519,19 +7489,19 @@ msgstr "強さ" msgid "Interface" msgstr "表示" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "内部 LZ4 エラー - {0} bytesの展開を試行しました" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "内部 LZ4 エラー - 圧縮に失敗しました" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "内部 LZ4 エラー - 展開に失敗しました ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "内部 LZ4 エラー - ペイロードサイズの不一致 ({0} / {1}))" @@ -7544,7 +7514,7 @@ msgstr "Internal LZO Error - compression failed" msgid "Internal LZO Error - decompression failed" msgstr "Internal LZO Error - compression failed" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7552,7 +7522,7 @@ msgstr "" "内部 LZO エラー - 展開に失敗しました ({0}) ({1})\n" "古いセーブステートのバージョン情報を取得できません。" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7560,7 +7530,7 @@ msgstr "" "内部 LZO エラー - 解凍されたバージョンのクッキーとバージョン文字列長 ({0}) の" "解析に失敗しました。" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7577,7 +7547,7 @@ msgstr "レンダリング解像度" msgid "Internal Resolution:" msgstr "内部解像度:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Internal error while generating AR code." @@ -7585,7 +7555,7 @@ msgstr "Internal error while generating AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (非常に低速)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7601,7 +7571,7 @@ msgstr "自動更新サービスから無効な JSON を受信しました: {0}" msgid "Invalid Mixed Code" msgstr "Invalid Mixed Code" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "無効なリソースパック %1 が与えられました:%2" @@ -7610,11 +7580,11 @@ msgstr "無効なリソースパック %1 が与えられました:%2" msgid "Invalid Player ID" msgstr "無効なプレイヤーID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Invalid callstack" @@ -7635,7 +7605,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Invalid input for the field \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Invalid input provided" @@ -7651,19 +7621,19 @@ msgstr "Invalid parameters given to search." msgid "Invalid password provided." msgstr "入力されたパスワードが無効です。" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "不正な録画ファイル" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Invalid search parameters (no object selected)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Invalid search string (couldn't convert to number)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Invalid search string (only even string lengths supported)" @@ -7671,13 +7641,13 @@ msgstr "Invalid search string (only even string lengths supported)" msgid "Invalid title ID." msgstr "無効なタイトルID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Invalid watch address: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "イタリア語" @@ -7690,11 +7660,11 @@ msgstr "イタリア" msgid "Item" msgstr "アイテム" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7702,47 +7672,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7754,16 +7724,16 @@ msgstr "JIT Recompiler for ARM64 (推奨)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (推奨)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7772,16 +7742,16 @@ msgstr "" "このエラーは起こらないはずです。この状況をバグトラッカーへ報告してください。" "Dolphinを終了します。" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "日本" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "日本語" @@ -7800,12 +7770,12 @@ msgstr "" "カオスはこのトロフィーの唯一の悪役であり、常にロック解除されています。何も編" "集する必要はありません!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Keep Running" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "最前面に表示する" @@ -7839,16 +7809,16 @@ msgstr "キー" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "選択したプレイヤーをキック" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "韓国" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "韓国語" @@ -7869,7 +7839,7 @@ msgstr "ROMをロード...(&o)" msgid "L-Analog" msgstr "L (アナログ)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR Save" @@ -7877,7 +7847,11 @@ msgstr "LR Save" msgid "Label" msgstr "Label" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Last Value" @@ -7891,23 +7865,23 @@ msgstr "最終順位:" msgid "Last reset:" msgstr "最終リセット:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "レイテンシ:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "遅延:~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "遅延:~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "遅延:~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "遅延: ~80 ms" @@ -7915,7 +7889,7 @@ msgstr "遅延: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "これらのタイトルを起動すると問題が解決する場合があります。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "リーダーボード" @@ -7923,7 +7897,7 @@ msgstr "リーダーボード" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7934,7 +7908,7 @@ msgstr "左" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Lスティック" @@ -8011,11 +7985,11 @@ msgstr "ライト" msgid "Limit Chunked Upload Speed:" msgstr "Limit Chunked Upload Speed:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "ゲームリストカラムの表示" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "リスト表示" @@ -8024,30 +7998,30 @@ msgid "Listening" msgstr "Listening" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "読込" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "カスタムテクスチャを読み込む" @@ -8055,11 +8029,11 @@ msgstr "カスタムテクスチャを読み込む" msgid "Load File" msgstr "ファイルの読み込み" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "ゲームキューブ メインメニューを起動" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "ホストのセーブデータのみ読み込み" @@ -8165,23 +8139,23 @@ msgstr "ステートロード - スロット 8" msgid "Load State Slot 9" msgstr "ステートロード - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "ファイルからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "次のスロットからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Wiiメニュー %1 を起動" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "ホストのセーブデータの読み込みと書き込み" @@ -8189,28 +8163,28 @@ msgstr "ホストのセーブデータの読み込みと書き込み" msgid "Load from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Load map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "vWii システム・メニュー %1 を読み込みます。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "読込..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Loaded symbols from '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8221,7 +8195,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/

よく" "分からなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8230,20 +8204,28 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "IPアドレスと使用ポート番号" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "マウスカーソルをロック" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "ロックされています" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "ログ" @@ -8252,19 +8234,19 @@ msgstr "ログ" msgid "Log Configuration" msgstr "ログの設定" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "ログイン" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "ログアウト" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "レンダリング時間を記録" @@ -8276,11 +8258,11 @@ msgstr "表示するログ情報" msgid "Logger Outputs" msgstr "ログ出力先" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "ログインに失敗しました" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8291,20 +8273,20 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "ループ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "ネットプレイサーバーへの接続が失われました..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "小" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "低" @@ -8316,7 +8298,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -8364,7 +8346,7 @@ msgstr "スロット %1 に Skylander があることを確認してください #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "メーカー" @@ -8385,16 +8367,16 @@ msgstr "" "ません。

よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Wii NANDの管理" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "手動テクスチャサンプリングを有効にする" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "コントローラ割当位置" @@ -8406,11 +8388,11 @@ msgstr "マスクロム" msgid "Match Found" msgstr "Match Found" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "最大バッファサイズ:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "最大バッファサイズが変更されました: %1" @@ -8419,7 +8401,7 @@ msgstr "最大バッファサイズが変更されました: %1" msgid "Maximum tilt angle." msgstr "最大傾斜角度。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" "有効にしているとWiiメニューやいくつかのタイトルで動作速度が低下する場合があり" @@ -8442,7 +8424,7 @@ msgstr "Memory Breakpoint" msgid "Memory Card" msgstr "メモリーカード" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "GCメモリーカードマネージャ" @@ -8473,7 +8455,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "メモリーカード: 無効な宛先アドレス ({0:#x}) で Write が呼び出されました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8493,7 +8475,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "マイク" @@ -8502,15 +8484,15 @@ msgstr "マイク" msgid "Mini" msgstr "ミニ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "その他" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "その他の設定" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8523,7 +8505,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Mismatch between internal data structures." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8550,7 +8532,7 @@ msgstr "" msgid "Modifier" msgstr "感度変更" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8569,8 +8551,8 @@ msgstr "スロットの変更" msgid "Modifying Skylander: %1" msgstr "スカイランダーを修正中: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Modules found: %1" @@ -8578,7 +8560,7 @@ msgstr "Modules found: %1" msgid "Money:" msgstr "貨幣:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "モノラル" @@ -8590,11 +8572,11 @@ msgstr "Monoscopic Shadows" msgid "Monospaced Font" msgstr "等幅フォント" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "モーション(外部入力)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "モーション" @@ -8603,23 +8585,10 @@ msgstr "モーション" msgid "Motor" msgstr "モーター" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "プレイ中のマウスカーソル表示" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "カーソル操作時のみ表示させます" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "常に表示させます" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "常に非表示にします" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8630,7 +8599,7 @@ msgstr "移動" msgid "Movie" msgstr "記録" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8638,7 +8607,7 @@ msgstr "" "ムービー {0} はセーブステートから開始することを示していますが、{1} は存在しま" "せん。ムービーは同期しない可能性があります!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8651,10 +8620,10 @@ msgstr "乗数" msgid "N&o to All" msgstr "すべていいえ(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 整合性チェック" @@ -8663,8 +8632,8 @@ msgstr "NAND 整合性チェック" msgid "NKit Warning" msgstr "NKit Warning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8673,7 +8642,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8695,8 +8664,8 @@ msgstr "" "に合わせてください。

分からない場合は2.35のままにし" "ておいてください。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8739,7 +8708,7 @@ msgstr "Native (640x528)" msgid "Native GCI File" msgstr "ネイティブGCI 形式" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "ネットプレイ" @@ -8755,7 +8724,7 @@ msgstr "ネットプレイ《セットアップ》" msgid "Netherlands" msgstr "オランダ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8763,7 +8732,7 @@ msgstr "" "ネットプレイはホストのセーブデータの使用を開始し、ネットプレイセッション中に" "作成または変更されたセーブ データはホストのローカルセーブに残ります。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8773,7 +8742,7 @@ msgstr "" "ション中に作成または変更されたセーブデータは、セッション終了時に破棄されま" "す。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8782,7 +8751,7 @@ msgstr "" "イセッション終了時に破棄されます。" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "ネットワーク関係" @@ -8790,16 +8759,16 @@ msgstr "ネットワーク関係" msgid "Network dump format:" msgstr "Network dump format:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "常に非表示" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "自動更新を止める" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "New" @@ -8824,7 +8793,7 @@ msgstr "新しい検索" msgid "New Tag..." msgstr "新しいタグ..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "新しいIDが作成されました。" @@ -8841,7 +8810,7 @@ msgstr "新しいタグ" msgid "Next Game Profile" msgstr "次のゲームプロファイル" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Next Match" @@ -8887,7 +8856,7 @@ msgstr "無圧縮" msgid "No Match" msgstr "No Match" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "セーブデータがありません" @@ -8895,12 +8864,12 @@ msgstr "セーブデータがありません" msgid "No data to modify!" msgstr "変更するデータはありません!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "No description available" @@ -8912,7 +8881,7 @@ msgstr "エラーはありません。" msgid "No extension selected." msgstr "拡張コントローラが選択されていません" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "読み込み/記録ファイルなし" @@ -8920,7 +8889,7 @@ msgstr "読み込み/記録ファイルなし" msgid "No game is running." msgstr "No game is running." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "No game running." @@ -8933,11 +8902,11 @@ msgstr "グラフィック MOD が選択されていません" msgid "No input" msgstr "入力なし" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "問題は見つかりませんでした" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "一致するゲームは見つかりませんでした" @@ -8963,7 +8932,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "ゲーム設定 '{0}' のプロファイルが見つかりません" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "No recording loaded." @@ -8982,10 +8951,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "なし" @@ -8997,7 +8966,7 @@ msgstr "北アメリカ" msgid "Not Set" msgstr "未定義" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "このタイトルを持っていないプレイヤーがいます。続けますか?" @@ -9021,7 +8990,7 @@ msgstr "" "インポート先のメモリーカードの追加可能ファイル数が不足しています。最低でも " "%n ファイルの空きが必要です" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "見つかりません" @@ -9067,26 +9036,26 @@ msgstr "1秒間に行うシェイクの回数" msgid "Nunchuk" msgstr "ヌンチャク" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "ヌンチャク加速度センサー" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "ヌンチャク ボタン" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "ヌンチャクスティック" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Object %1" @@ -9138,7 +9107,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "オブジェクトの範囲" @@ -9159,11 +9128,11 @@ msgstr "Offset" msgid "On" msgstr "有効" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "操作時のみ表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9173,7 +9142,7 @@ msgstr "" "使用をサポートするバックエンドでは、ジョブの頂点シェーダーを選択します。パ" "フォーマンスに影響を与える可能性があります。

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9188,7 +9157,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "オンラインガイドを表示(&D)" @@ -9196,7 +9165,7 @@ msgstr "オンラインガイドを表示(&D)" msgid "Only Show Collection" msgstr "コレクションのみを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9204,7 +9173,7 @@ msgstr "" "Only append symbols with prefix:\n" "(Blank for all symbols)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9223,7 +9192,7 @@ msgstr "開く" msgid "Open &Containing Folder" msgstr "実体ファイルのあるフォルダを開く(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "ユーザーフォルダーを開く(&U)" @@ -9232,7 +9201,7 @@ msgstr "ユーザーフォルダーを開く(&U)" msgid "Open Directory..." msgstr " フォルダーを開く..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "FIFOログファイルを選択" @@ -9298,34 +9267,34 @@ msgstr "オレンジ" msgid "Orbital" msgstr "Orbital" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9340,11 +9309,11 @@ msgstr "その他のパーティション (%1)" msgid "Other State Hotkeys" msgstr "その他" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "その他ステート関係" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "他のタイトル..." @@ -9360,16 +9329,16 @@ msgstr "出力 リサンプリング" msgid "Output Resampling:" msgstr "出力 リサンプリング:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Overwritten" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "録画ファイルを再生...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9382,11 +9351,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG圧縮レベル" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG圧縮レベル:" @@ -9398,7 +9367,7 @@ msgstr "PNG画像ファイル (*.png);; すべてのファイル (*)" msgid "PPC Size" msgstr "PPC Size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9432,7 +9401,7 @@ msgstr "Passive" msgid "Passthrough a Bluetooth adapter" msgstr "PC上のBluetoothアダプターをパススルーする" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "パスワード" @@ -9470,15 +9439,15 @@ msgstr "フォルダ" msgid "Pause" msgstr "一時停止" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "再生終了時に一時停止" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "フォーカスが外れたときに一時停止する" @@ -9498,6 +9467,12 @@ msgstr "" "場合と同じです。

分からない場合はチェックを外してく" "ださい。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9517,7 +9492,7 @@ msgstr "外向きのスイング動作のピーク速度。" msgid "Per-Pixel Lighting" msgstr "ピクセル単位のライティングを有効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Wii システムアップデート" @@ -9525,15 +9500,15 @@ msgstr "Wii システムアップデート" msgid "Perform System Update" msgstr "Wii システムアップデート" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "パフォーマンス サンプル ウィンドウ (ミリ秒)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "パフォーマンス サンプル ウィンドウ (ミリ秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "パフォーマンスステータス" @@ -9551,11 +9526,11 @@ msgstr "Physical address space" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Pick a debug font" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9568,7 +9543,7 @@ msgid "Pitch Up" msgstr "ピッチアップ" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "機種" @@ -9576,7 +9551,7 @@ msgstr "機種" msgid "Play" msgstr "開始" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "再生/記録" @@ -9588,40 +9563,40 @@ msgstr "録画ファイルを再生" msgid "Play Set/Power Disc" msgstr "プレイセット/パワーディスク" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "再生に関する設定" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "プレイヤー名" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "プレイヤー 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "プレイヤー 1 アビリティ 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "プレイヤー 1 アビリティ 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "プレイヤー 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "プレイヤー 2 アビリティ 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "プレイヤー 2 アビリティ 2" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "プレイヤー数" @@ -9640,7 +9615,7 @@ msgstr "" "「SyncOnSkipIdle」設定を「True」に変更してください。現在無効になっているた" "め、この問題が発生する確率が非常に高くなります。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9657,7 +9632,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "ポート %1" @@ -9674,7 +9649,7 @@ msgstr "ポート:" msgid "Portal Slots" msgstr "ポータルスロット" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "非同期が起きたことが検出されました。 %1 は、フレーム %2 で非同期になった可能" @@ -9692,24 +9667,32 @@ msgstr "ポストプロセス:" msgid "Post-Processing Shader Configuration" msgstr "ポストプロセスシェーダーの設定" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "点/線の展開時に頂点シェーダーを優先する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "カスタムテクスチャの事前読込" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "PlayController でムービーが途中で終了しました。 {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "PlayWiimoteでムービーが早く終わりました。{0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "PlayWiimoteでムービーが早く終わりました。{0} > {1}" @@ -9734,7 +9717,7 @@ msgstr "シンクロボタン 押下" msgid "Pressure" msgstr "筆圧" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9753,7 +9736,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "前のゲームプロファイル" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Previous Match" @@ -9764,7 +9747,7 @@ msgstr "前のプロファイル" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitive %1" @@ -9802,7 +9785,7 @@ msgstr "" "影響度「中」の問題が見つかりました。ゲーム全体または特定の機能が動作しない可" "能性があります" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "プロファイル" @@ -9811,23 +9794,29 @@ msgstr "プロファイル" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "進行状況" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "誰でも" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "ゲームリストのキャッシュを消去" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "IPL ROMを User/GC/ に置く。" @@ -9847,7 +9836,7 @@ msgstr "Quality of Service (QoS) は有効になりませんでした" msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) が有効になっています" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Dolby Pro Logic II デコーダの精度を調整します。精度を高めると遅延も大きくなり" @@ -9856,11 +9845,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "確認" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "終了" @@ -9877,19 +9866,19 @@ msgstr "R" msgid "R-Analog" msgstr "R (アナログ)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "READY" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO auto-detection" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "RUNNING" @@ -9910,7 +9899,7 @@ msgstr "Range End: " msgid "Range Start: " msgstr "Range Start: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "順位 %1" @@ -9918,16 +9907,17 @@ msgstr "順位 %1" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Re&place instruction" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Read" @@ -9966,8 +9956,8 @@ msgstr "実機Wiiリモコンを接続" msgid "Received invalid Wii Remote data from Netplay." msgstr "ネットプレイから無効なWiiリモコンデータを受信しました。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9976,23 +9966,23 @@ msgstr "" msgid "Recenter" msgstr "リセット" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "録画" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "コントローラ操作を記録" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Recording" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "録画設定" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "レコーディング..." @@ -10031,7 +10021,7 @@ msgstr "Redump.orgのステータス:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10062,7 +10052,7 @@ msgid "Refreshing..." msgstr "セッションリストを更新中..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地域" @@ -10083,7 +10073,11 @@ msgstr "相対的な操作" msgid "Relative Input Hold" msgstr "相対入力を保持" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "また今度" @@ -10091,7 +10085,7 @@ msgstr "また今度" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "削除" @@ -10123,20 +10117,20 @@ msgstr "" "\n" "変換処理を続行しますか?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Rename symbol" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "ゲームウィンドウ設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "メインウィンドウ部分に描画" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10152,10 +10146,16 @@ msgstr "Report: GCIFolder Writing to unallocated block {0:#x}" msgid "Request to Join Your Party" msgstr "参加要請" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10165,7 +10165,7 @@ msgstr "リセット" msgid "Reset All" msgstr "すべてをリセット" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Reset Ignore Panic Handler" @@ -10197,7 +10197,7 @@ msgstr "位置をリセット" msgid "Reset all saved Wii Remote pairings" msgstr "全てのペアリングをリセットする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -10209,7 +10209,7 @@ msgstr "リソースパックマネージャ" msgid "Resource Pack Path:" msgstr "リソースパックの場所:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "再起動が必要" @@ -10217,11 +10217,11 @@ msgstr "再起動が必要" msgid "Restore Defaults" msgstr "デフォルトの復元" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Restore instruction" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "再試行" @@ -10230,7 +10230,7 @@ msgstr "再試行" msgid "Return Speed" msgstr "戻りの速度" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "使用バージョンとOS" @@ -10242,7 +10242,7 @@ msgstr "Revision: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10253,7 +10253,7 @@ msgstr "右" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Rスティック" @@ -10289,11 +10289,11 @@ msgstr "左にロール" msgid "Roll Right" msgstr "右にロール" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ルームID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "回転操作" @@ -10316,27 +10316,31 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10349,7 +10353,7 @@ msgstr "" msgid "Rumble" msgstr "振動" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Run &To Here" @@ -10357,15 +10361,15 @@ msgstr "Run &To Here" msgid "Run GBA Cores in Dedicated Threads" msgstr "GBAコアを専用のスレッドで実行する" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Run until" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Run until hit (ignoring breakpoints)" @@ -10373,23 +10377,23 @@ msgstr "Run until hit (ignoring breakpoints)" msgid "Russia" msgstr "ロシア" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SDカード" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SDカードのファイルサイズ:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SDカードファイル (*.raw);; すべてのファイル (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SDカード" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SDカードの設定" @@ -10397,7 +10401,7 @@ msgstr "SDカードの設定" msgid "SD Root:" msgstr "SDのルート:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "同期させるフォルダ" @@ -10432,11 +10436,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Sa&ve Code" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "ステートセーブ(&V)" @@ -10446,9 +10450,9 @@ msgid "Safe" msgstr "Safe" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10458,25 +10462,25 @@ msgstr "保存" msgid "Save All" msgstr "すべて保存" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "エクスポートの保存" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "FIFOログの保存" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "次の場所へ保存" @@ -10490,11 +10494,11 @@ msgstr "セーブデータ" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "ゲームボーイアドバンス セーブファイル (*.sav);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "インポートの保存" @@ -10506,7 +10510,7 @@ msgstr "最古のステートに上書き保存" msgid "Save Preset" msgstr "プリセットの保存" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "レコーディングファイルに名前を付けて保存" @@ -10556,23 +10560,23 @@ msgstr "ステートセーブ - スロット 8" msgid "Save State Slot 9" msgstr "ステートセーブ - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "ファイルとして保存" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "最古のステートに上書き保存" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "次のスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10580,7 +10584,7 @@ msgstr "Save Symbol Map &As..." msgid "Save Texture Cache to State" msgstr "Save Texture Cache to State" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "ステートセーブ/ロード" @@ -10592,11 +10596,11 @@ msgstr "プリセットとして保存..." msgid "Save as..." msgstr "ファイルとして保存..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Save combined output file as" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10610,11 +10614,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "ROMと同じフォルダにセーブファイルを保存する" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Save map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Save signature file" @@ -10622,11 +10626,11 @@ msgstr "Save signature file" msgid "Save to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "保存..." @@ -10638,7 +10642,7 @@ msgstr "ペアリングのリセットはWiiのゲームを実行中にのみ行 msgid "Saves:" msgstr "セーブ保存先" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" "セーブステートムービー {0} が破損しているため、ムービーのレコーディングが停止" @@ -10657,8 +10661,8 @@ msgid "ScrShot" msgstr "画面撮影" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Search" @@ -10667,7 +10671,7 @@ msgstr "Search" msgid "Search Address" msgstr "Search Address" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Search Current Object" @@ -10687,7 +10691,7 @@ msgstr "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Search for an Instruction" @@ -10695,7 +10699,7 @@ msgstr "Search for an Instruction" msgid "Search games..." msgstr "ゲームタイトルを検索..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Search instruction" @@ -10729,7 +10733,7 @@ msgstr "選択" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10740,23 +10744,23 @@ msgid "Select Dump Path" msgstr "ダンプ先を選択" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "エクスポート先フォルダを選択" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "フィギュアファイルを選択する" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "GBAのBIOSファイルを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "GBAのROMファイルを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "GBAセーブファイルの保存先を選択" @@ -10784,7 +10788,7 @@ msgstr "Skylanderコレクションの選択" msgid "Select Skylander File" msgstr "Skylanderファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "スロット %1 - %2" @@ -10792,7 +10796,7 @@ msgstr "スロット %1 - %2" msgid "Select State" msgstr "スロットの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "スロットの選択" @@ -10853,13 +10857,13 @@ msgstr "ディレクトリを選択" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "ファイルを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "SDカードへの変更内容を同期するフォルダを選択" @@ -10867,7 +10871,7 @@ msgstr "SDカードへの変更内容を同期するフォルダを選択" msgid "Select a Game" msgstr "ディスクドライブチャンネルに表示するゲームを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "SDカードファイルを選択" @@ -10879,7 +10883,7 @@ msgstr "ファイルの選択" msgid "Select a game" msgstr "タイトルを選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "NANDにインストールするタイトルを選択" @@ -10887,11 +10891,11 @@ msgstr "NANDにインストールするタイトルを選択" msgid "Select e-Reader Cards" msgstr "カードeファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Select the RSO module address:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "再生するレコーディングファイルを選択する" @@ -10899,12 +10903,12 @@ msgstr "再生するレコーディングファイルを選択する" msgid "Select the Virtual SD Card Root" msgstr "仮想SDカードのルートを選択します" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "キーファイル (OTP/SEEPROM ダンプ)を選択" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "セーブファイルを選択" @@ -10927,16 +10931,16 @@ msgstr "選択されたプロファイルは存在しません" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "選択されたゲームがゲームリストに存在しません!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Selected thread callstack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Selected thread context" @@ -10956,7 +10960,7 @@ msgstr "" "描画に使用するビデオカードを選択します。

よく分から" "なければ、一番上のものを選択してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10994,7 +10998,7 @@ msgstr "" "す。

よく分からなければ、「オフ」を選択してくださ" "い。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11016,7 +11020,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11032,11 +11036,11 @@ msgstr "" "うまく動作するものを選んでください。

よく分からない" "場合は OpenGL を選択してください。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "送信" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "センサーバーの位置" @@ -11068,6 +11072,10 @@ msgstr "サーバーが中継処理を拒否しました" msgid "Set &Value" msgstr "Set &Value" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11085,23 +11093,23 @@ msgstr "スロットAに読み込むメモリーカードファイルを選択" msgid "Set memory card file for Slot B" msgstr "スロットBに読み込むメモリーカードファイルを選択" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Set symbol &end address" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Set symbol &size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Set symbol end address" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Set symbol size (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11111,11 +11119,19 @@ msgstr "" "変更します\n" "すべてのタイトルで上手く動作するとは限りません" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Wiiのシステム言語を変更できます" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11123,6 +11139,13 @@ msgstr "" "遅延をミリ秒単位で設定します。値を高くすると、オーディオの音割れが軽減される" "場合があります(特定のバックエンドのみ)。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11131,13 +11154,13 @@ msgstr "" "仮想アドレス空間で標準の MEM1 および (Wii の) MEM2 マッピングを使用して検索を" "設定します。これはほとんどのゲームで機能します。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "設定" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Can't create setting.txt file" @@ -11145,7 +11168,7 @@ msgstr "SetupWiiMemory: Can't create setting.txt file" msgid "Severity" msgstr "影響度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "シェーダコンパイルの設定" @@ -11167,32 +11190,32 @@ msgstr "新幹線" msgid "Shinkansen Controller" msgstr "新幹線専用コントローラー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "% 速度を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "ログを表示(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "ツールバー(&T)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "タイトルバーに起動中のゲーム名を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "すべて表示" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "オーストラリア" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Discordにプレイ中のゲームを表示" @@ -11201,7 +11224,7 @@ msgstr "Discordにプレイ中のゲームを表示" msgid "Show Disabled Codes First" msgstr "無効なコードを最初に表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11210,31 +11233,31 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "有効なコードを最初に表示する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "フレームカウンタを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "フレームタイムを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "フランス" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "ゲームキューブ" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "ドイツ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Show Golf Mode Overlay" @@ -11242,23 +11265,23 @@ msgstr "Show Golf Mode Overlay" msgid "Show Infinity Base" msgstr "インフィニティベースを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "入力された操作を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "イタリア" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "日本" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "韓国" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "ラグカウンタを表示" @@ -11266,27 +11289,27 @@ msgstr "ラグカウンタを表示" msgid "Show Language:" msgstr "次の言語で表示" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "ログの設定を表示(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "ネットプレイ:OSD表示" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "ネットプレイ:Ping表示" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "オランダ" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "OSDを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL規格の地域" @@ -11295,27 +11318,27 @@ msgstr "PAL規格の地域" msgid "Show PC" msgstr "Show PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "パフォーマンスグラフを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "特定機種のソフトだけを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "次の地域のソフトだけを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "再記録カウンターを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "ロシア" @@ -11323,72 +11346,72 @@ msgstr "ロシア" msgid "Show Skylanders Portal" msgstr " Skylandersポータルを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "スペイン" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "スピードカラーを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "統計情報を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "システム時間を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "アメリカ合衆国" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "不明" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "垂直ブランキング期間 (VBlank) 時間を表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "VPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD(Wiiウェア/VC/Wiiチャンネル)" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "地域なし" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Show in &memory" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Show in Code" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Show in Memory" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Show in code" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Show in memory" @@ -11396,11 +11419,19 @@ msgstr "Show in memory" msgid "Show in server browser" msgstr "セッションブラウザに表示" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Show target in memor&y" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11409,7 +11440,7 @@ msgstr "" "画面に表示します。

よく分からなければ、チェックを入" "れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
分からない場合はチェックを外してくださ" "い。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11429,7 +11467,25 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11439,7 +11495,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11449,7 +11505,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11459,7 +11515,7 @@ msgstr "" "す。

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
よく分からなければ、チェックを入れない" "でください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11478,13 +11534,13 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11508,7 +11564,7 @@ msgstr "横持ちの切替" msgid "Sideways Wii Remote" msgstr "横持ちで使用する" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Signature Database" @@ -11527,12 +11583,12 @@ msgstr "Signed 32" msgid "Signed 8" msgstr "Signed 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "簡体字中国語" @@ -11549,7 +11605,7 @@ msgstr "Six Axis" msgid "Size" msgstr "サイズ" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11561,7 +11617,7 @@ msgstr "" msgid "Skip" msgstr "Skip" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Skip Drawing" @@ -11615,6 +11671,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;すべてのファイル (*)" @@ -11691,7 +11750,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "アルファベット順で並べ替え" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "サウンドの設定:" @@ -11705,7 +11764,7 @@ msgstr "スペイン" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "スペイン語" @@ -11713,19 +11772,19 @@ msgstr "スペイン語" msgid "Speaker Pan" msgstr "スピーカー パン調整" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "リモコンスピーカー音量" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Specialized (既定)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Specific" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11758,11 +11817,11 @@ msgstr "速度調整" msgid "Spyro's Adventure" msgstr "スパイロの大冒険" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Stack end" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Stack start" @@ -11770,25 +11829,25 @@ msgstr "Stack start" msgid "Standard Controller" msgstr "標準コントローラ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "スタート" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "ネットプレイを開始...(&N)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "新しいチート検索を開始します" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "操作の記録を開始(&C)" @@ -11796,7 +11855,7 @@ msgstr "操作の記録を開始(&C)" msgid "Start Recording" msgstr "操作の記録を開始" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "フルスクリーンで開始する" @@ -11808,14 +11867,14 @@ msgstr "Riivolution パッチから始めます" msgid "Start with Riivolution Patches..." msgstr "Riivolution パッチから始めます..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "ゲームを開始" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "State" @@ -11847,19 +11906,19 @@ msgstr "Step Out" msgid "Step Over" msgstr "Step Over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Step out successful!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Step out timed out!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Step over in progress..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Step successful!" @@ -11868,7 +11927,7 @@ msgstr "Step successful!" msgid "Stepping" msgstr "Stepping" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "ステレオ" @@ -11897,16 +11956,16 @@ msgid "Stick" msgstr "スティック" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "操作の再生/記録を停止" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "ゲームを終了" @@ -11948,11 +12007,11 @@ msgstr "" "Texture)

よく分からなければ、チェックを外さないでく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "ウィンドウに合わせる" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "設定の同期を厳密にする(Strict Settings Sync)" @@ -11966,7 +12025,11 @@ msgstr "String" msgid "Strum" msgstr "ストラム" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "スタイル:" @@ -11977,18 +12040,18 @@ msgstr "スタイル:" msgid "Stylus" msgstr "スタイラス" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "完了" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "ネットプレイインデックスに正常に追加されました" @@ -11998,7 +12061,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n 画像 は正常に変換されました。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr " '%1' の削除に成功しました" @@ -12011,24 +12074,24 @@ msgstr "保存ファイル %1 から正常に %n エクスポートされまし msgid "Successfully exported save files" msgstr "セーブファイルのエクスポートに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "証明書ファイルの取り出しに成功しました" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "ファイルの取り出しに成功しました" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "システムデータの取り出しに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "セーブファイルのインポートに成功しました。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "タイトルのインストールに成功しました" @@ -12051,16 +12114,16 @@ msgstr "サポート" msgid "Supported file formats" msgstr "サポートしているすべての形式" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "SD および SDHC 仕様のみサポート。デフォルト容量は 128 MB です" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "サラウンド" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Suspended" @@ -12107,17 +12170,17 @@ msgstr "スロットBを操作" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Symbol (%1) end address:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Symbol name:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symbols" @@ -12125,7 +12188,7 @@ msgstr "Symbols" msgid "Sync" msgstr "シンクロ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "AR/Gecko コードを同期する" @@ -12145,7 +12208,7 @@ msgstr "" "CPU/GPUスレッドを同期させることでデュアルコア動作時のフリーズを抑制します " "[有効=互換性重視/無効=速度向上]" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12166,24 +12229,24 @@ msgid "Synchronizing save data..." msgstr "セーブデータの同期中..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "システムの言語:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS関係" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "タグを表示" @@ -12193,7 +12256,7 @@ msgstr "タグを表示" msgid "Taiko Drum" msgstr "タタコン" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Tail" @@ -12201,7 +12264,7 @@ msgstr "Tail" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "スクリーンショット" @@ -12209,7 +12272,7 @@ msgstr "スクリーンショット" msgid "Target address range is invalid." msgstr "Target address range is invalid." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12227,9 +12290,9 @@ msgstr "マシン" msgid "Test" msgstr "テスト" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -12242,7 +12305,7 @@ msgstr "Texture Cache" msgid "Texture Cache Accuracy" msgstr "テクスチャキャッシュの精度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Texture Dumping" @@ -12254,7 +12317,7 @@ msgstr "テクスチャーフィルタリング" msgid "Texture Filtering:" msgstr "テクスチャフィルタ:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "テクスチャフォーマット情報表示" @@ -12298,7 +12361,7 @@ msgstr "IPL ファイルは既知の正常なダンプではありません。 ( msgid "The Masterpiece partitions are missing." msgstr "The Masterpiece partitions are missing." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12306,7 +12369,7 @@ msgstr "" "NANDを修復できませんでした。現在のデータをバックアップして、NANDのダンプから" "やり直すことをオススメします" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NANDの修復に成功しました" @@ -12324,7 +12387,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12383,7 +12446,7 @@ msgstr "" "\n" "「%1」とは別の宛先パスを選択してください" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12395,7 +12458,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "The disc could not be read (at {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "挿入しようとしたディスクが見つかりませんでした。" @@ -12489,7 +12552,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "The filesystem is invalid or could not be read." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12536,7 +12599,7 @@ msgstr "" "ため、このディスクを使用してエミュレートされたコンソールをアップデートするこ" "とはできません。" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12607,12 +12670,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "%1 のパッチは、選択したゲームまたはゲームリビジョン用ではありません。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "選択されたプロファイル '%1' は存在しません" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "記録されたゲーム ({0}) は選択したゲーム ({1}) と同じではありません" @@ -12637,7 +12700,7 @@ msgstr "" "同じファイルを複数のスロットで使用することはできません; すでに %1 によって使" "用されています。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12676,7 +12739,7 @@ msgstr "The specified common key index is {0} but should be {1}." msgid "The specified file \"{0}\" does not exist" msgstr "指定されたファイル \"{0}\" は存在しません" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12739,7 +12802,7 @@ msgstr "The update partition is missing." msgid "The update partition is not at its normal position." msgstr "The update partition is not at its normal position." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12763,6 +12826,10 @@ msgstr "The {0} partition is not correctly signed." msgid "The {0} partition is not properly aligned." msgstr "The {0} partition is not properly aligned." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "There are too many partitions in the first partition table." @@ -12777,8 +12844,8 @@ msgstr "" "\n" "閉じる前に保存しますか?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12833,11 +12900,11 @@ msgstr "この Skylander の種類はまだ改造できません!" msgid "This USB device is already whitelisted." msgstr "このデバイスは既に登録済みです。" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "このWADファイルは起動できません。" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "このWADは無効です" @@ -12859,7 +12926,7 @@ msgstr "" "\n" "すばらしい体験をのために、ぜひ Dolphin の ARM64 ビルドを実行してください。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "元に戻すことはできません!" @@ -12986,7 +13053,7 @@ msgstr "" msgid "This is a good dump." msgstr "This is a good dump." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -13012,7 +13079,7 @@ msgstr "" "合法的に所有していないゲームをプレイするためにこのソフトウェアを使用すること" "はできません。" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "このタイトルは起動できません" @@ -13060,7 +13127,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "ここで設定した値は、グラフィック設定でセットした収束距離に乗算されます" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -13075,7 +13142,7 @@ msgstr "" "これにより、保存同期に使用されるクライアントごとのチャンクアップロードの速度" "が制限されます。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13088,11 +13155,11 @@ msgstr "" "EFB 読み取りを使用する一部のゲームで非同期が妨げられる場合があります。全員が" "同じビデオ バックエンドを使用していることを確認してください。" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Thread context" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Threads" @@ -13116,14 +13183,14 @@ msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" "キャリブレーションを起動するまでの安定した入力の期間。 (無効にする場合はゼロ)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Timed Out" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "タイトル" @@ -13132,12 +13199,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "全画面表示 切り替え(&F)" @@ -13162,7 +13229,7 @@ msgid "Toggle Aspect Ratio" msgstr "アスペクト比 設定切替" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Toggle Breakpoint" @@ -13218,7 +13285,7 @@ msgstr "XFB Immediate Mode 設定切替" msgid "Tokenizing failed." msgstr "トークン化に失敗しました。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -13226,7 +13293,7 @@ msgstr "" msgid "Toolbar" msgstr "ツールバー" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "上" @@ -13234,8 +13301,8 @@ msgstr "上" msgid "Top-and-Bottom" msgstr "Top-and-Bottom" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Total Hits" @@ -13277,7 +13344,7 @@ msgid "Toy code:" msgstr "トイコード:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "繁体字中国語" @@ -13297,8 +13364,8 @@ msgstr "トラップマスター" msgid "Trap Team" msgstr "トラップチーム" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "トラバーサルエラー" @@ -13327,7 +13394,7 @@ msgstr "トライフォース AM ベースボード" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "トリガー" @@ -13337,7 +13404,7 @@ msgid "Trophy" msgstr "トロフィー" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13351,7 +13418,7 @@ msgstr "Type-based Alignment" msgid "Typical GameCube/Wii Address Space" msgstr "一般的な GameCube または Wii のアドレス空間" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "UNKNOWN" @@ -13363,7 +13430,7 @@ msgstr "アメリカ合衆国" msgid "USB Device Emulation" msgstr "USB デバイスエミュレーション" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB エミュレーション" @@ -13381,7 +13448,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB ホワイトリストエラー" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13392,7 +13459,7 @@ msgstr "" "す。

よく分からなければ、これを選択してください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13404,7 +13471,7 @@ msgstr "" "したPCで、Hybrid Ubershaders では問題がある場合にしかオススメできません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13417,7 +13484,7 @@ msgstr "" "ケースではパフォーマンスへの影響を最小限に抑えつつカクつきが解消されるはずで" "すが、実際どのような結果になるかは使用中のビデオドライバに依存します。" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Unable to auto-detect RSO module" @@ -13488,11 +13555,11 @@ msgstr "未圧縮のGC/Wii ISOファイル (*.iso *.gcm)" msgid "Undead" msgstr "アンデット" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "直前のステートロードを取消" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "直前のステートセーブの取消" @@ -13511,28 +13578,28 @@ msgid "" msgstr "" "セーブデータを残してNAND内からこのタイトルを削除します。よろしいですか?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "米国" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "フィルタ無し" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "不明 (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "不明な DVD コマンド {0:08x} - 致命的なエラー" @@ -13609,11 +13676,11 @@ msgid "Unknown(%1 %2).sky" msgstr "不明(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "不明(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "制限なし" @@ -13625,21 +13692,9 @@ msgstr "ROMを取り外してリセット" msgid "Unlock Cursor" msgstr "マウスカーソルをロック 解除" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "ロック解除されています" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "このセッションで %1 回ロック解除されました" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "ロック解除(カジュアル)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "このセッションのロックが解除されました" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13665,7 +13720,7 @@ msgstr "Unsigned 32" msgid "Unsigned 8" msgstr "Unsigned 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Unsigned Integer" @@ -13679,8 +13734,8 @@ msgstr "Unsigned Integer" msgid "Up" msgstr "上" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "再取得" @@ -13688,11 +13743,11 @@ msgstr "再取得" msgid "Update Partition (%1)" msgstr "パーティションを更新しました (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Dolphin 終了後に更新する" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "自動更新" @@ -13737,7 +13792,7 @@ msgstr "直立状態 切替" msgid "Upright Wii Remote" msgstr "直立させた状態で使用する" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "統計レポートの設定" @@ -13746,15 +13801,15 @@ msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" "通常のDNSには8.8.8.8を使用し、そうでなければカスタムDNSを入力してください" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "すべてのWiiセーブデータを使用する" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "ゲーム名の表記に内蔵リストを使用する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "ロスレス映像コーデック (FFV1) を使用する" @@ -13762,15 +13817,21 @@ msgstr "ロスレス映像コーデック (FFV1) を使用する" msgid "Use Mouse Controlled Pointing" msgstr "マウス操作によるポインティグを使用する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 (EuRGB60) モードを使用する" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "パニックハンドラーを使用する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13816,7 +13877,7 @@ msgstr "可能な限り仮想のアドレスを使用します" msgid "User Config" msgstr "ユーザー設定" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "インターフェイス設定" @@ -13834,10 +13895,17 @@ msgstr "" "これらを使用して、次の間の値を保存または取得できます。\n" "同一の親コントローラーの入力値と出力値です。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "ユーザー名" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13850,7 +13918,7 @@ msgstr "" "場合もあります。

よく分からなければ、チェックを外さ" "ないでください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13860,7 +13928,7 @@ msgstr "" "画面でのエミュレーションとなります。

よく分からなけ" "れば、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14153,8 +14221,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -14166,7 +14234,7 @@ msgstr "" "警告: このスロットには現在、GCIフォルダーのオーバーライドパスが設定されていま" "す。ここでGCIパスを調整しても効果はありません。" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14182,7 +14250,7 @@ msgstr "" "警告: BAT で示されたブロック数 ({0}) が、読み込まれたファイルヘッダ ({1}) と" "一致しません" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14192,7 +14260,7 @@ msgstr "" "{1}) (入力 {2} > {3})。続行する前に別のセーブデータをロードするか、読み取り専" "用モードをオフにしてこの状態をロードする必要があります。" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14202,7 +14270,7 @@ msgstr "" "ました (バイト {0} < {1}) (フレーム {2} < {3})。続行する前に、別のセーブデー" "タをロードする必要があります。" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14213,7 +14281,7 @@ msgstr "" "てこの状態をロードする必要があります。そうしないと、おそらく非同期が発生する" "可能性があります。" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14275,7 +14343,7 @@ msgstr "欧米用 (Windows-1252)" msgid "Whammy" msgstr "ワーミー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14287,7 +14355,7 @@ msgstr "" "る場合、任意のベーステクスチャを含みます。

よく分か" "らない場合はチェックしたままにしてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14300,7 +14368,7 @@ msgstr "" "

よく分からない場合はチェックしたままにしてくださ" "い。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "常にパススルーを行うUSBデバイスリスト" @@ -14332,25 +14400,25 @@ msgstr "Wiiリモコン" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wiiリモコン %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Wiiリモコンの加速度センサー" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wiiリモコン ボタン" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Wiiリモコンのジャイロスコープ" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wiiリモコンの設定" @@ -14358,19 +14426,19 @@ msgstr "Wiiリモコンの設定" msgid "Wii Remotes" msgstr "Wiiリモコン" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "TAS用入力 Wii %1 - クラシックコントローラ " -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "TAS用入力 Wii %1 - Wiiリモコン" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "TAS用入力 Wii %1 - Wiiリモコン+ヌンチャク" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "WiiとWiiリモコン" @@ -14378,7 +14446,7 @@ msgstr "WiiとWiiリモコン" msgid "Wii data is not public yet" msgstr "Wii data is not public yet" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii セーブファイル (*.bin);;すべてのファイル (*)" @@ -14386,15 +14454,7 @@ msgstr "Wii セーブファイル (*.bin);;すべてのファイル (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiToolsシグネチャーMEGAファイル" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"ゲームプレイウィンドウ内にフォーカスがある間、マウスカーソルをウィンドウ外に" -"出せないようにします。この設定はホットキーで解除が可能です" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -14403,11 +14463,11 @@ msgstr "" msgid "Window Size" msgstr "画面サイズ" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -14421,10 +14481,11 @@ msgstr "地域なし" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Write" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -14457,39 +14518,39 @@ msgstr "Write to Log and Break" msgid "Write to Window" msgstr "ウィンドウに出力" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "ディスク番号が間違っています" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "間違ったハッシュです" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "間違った地域です" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "間違ったリビジョンです" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF register " @@ -14498,9 +14559,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA 宛先アドレス" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14528,7 +14589,7 @@ msgstr "はい" msgid "Yes to &All" msgstr "すべてはい(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14537,7 +14598,7 @@ msgstr "" "%2 のファイルの内容を %1 のフォルダーに変換しようとしています。フォルダーの現" "在の内容はすべて削除されます。続行してもよろしいですか?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14651,7 +14712,7 @@ msgstr "セッションに名前を付けてください!" msgid "You must provide a region for your session!" msgstr "セッションの地域を指定する必要があります!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "この変更を適用するにはDolphinを再起動してください" @@ -14679,7 +14740,7 @@ msgstr "" "問題を解決するために今すぐ停止しますか?\n" "「No」を選択した場合、音声が乱れることがあります。" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14688,9 +14749,9 @@ msgstr "" "いか、保存が許可されない可能性があります。" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14699,7 +14760,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "03コードはサポートされていません" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -14748,7 +14809,7 @@ msgid "default" msgstr "既定" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "切断されました" @@ -14756,7 +14817,7 @@ msgstr "切断されました" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "カードeファイル (*.raw);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14764,7 +14825,7 @@ msgstr "errno" msgid "fake-completion" msgstr "擬似シングルコア (fake-completion)" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -14814,16 +14875,6 @@ msgstr "" msgid "none" msgstr "なし" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "off" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "on" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "もしくは下の一覧から選択" @@ -14841,7 +14892,7 @@ msgstr "sRGB" msgid "this value:" msgstr "this value:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -14910,11 +14961,9 @@ msgstr "| Or(論理和)" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin Team. 「ゲームキューブ」および「Wii」は任天堂の商標で" -"す。 Dolphin は任天堂とはいかなる関係もありません。" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ko.po b/Languages/po/ko.po index 21e8825d8a..ad98601a8f 100644 --- a/Languages/po/ko.po +++ b/Languages/po/ko.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Siegfried, 2013-2023\n" "Language-Team: Korean (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -91,7 +91,7 @@ msgstr "" "%1 가\n" "당신의 파티에 참여를 원합니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -125,7 +125,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (개정 %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (기본)" @@ -145,7 +145,7 @@ msgstr "%1 (느림)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -159,11 +159,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 그래픽 환경설정" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -180,7 +180,7 @@ msgstr "%1 는 당신의 시스템에서 이 특성을 지원하지 않습니다 msgid "%1 doesn't support this feature." msgstr "%1 는 이 특성을 지원하지 않습니다" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -190,34 +190,27 @@ msgstr "" "%2 오브젝트(들)\n" "현재 프레임: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 가 참가했습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 가 떠났습니다" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 가 %2/%3 달성 (%4 하드코어)을 해제했습니다 %5/%6 점 (%7 하드코어) 의 가치" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 가 %2/%3 달성을 해제했습니다 %4/%5 점의 가치" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 는 적합한 롬이 아닙니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 은 지금 골프중입니다" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 은 %2 를 플레이하고 있습니다" @@ -225,13 +218,13 @@ msgstr "%1 은 %2 를 플레이하고 있습니다" msgid "%1 memory ranges" msgstr "%1 메모리 영역" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 점" @@ -243,30 +236,30 @@ msgstr "%1 세션이 발견되었습니다" msgid "%1 sessions found" msgstr "%1 세션들이 발견되었습니다" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (보통 속도)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "%1 의 값이 변경되었습니다" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "%1 의 값이 일치합니다" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1 의 값이 사용됩니다" @@ -278,6 +271,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -347,11 +344,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "돌핀 정보(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "메모리 중단점 추가 (&A)" @@ -360,7 +357,7 @@ msgstr "메모리 중단점 추가 (&A)" msgid "&Add New Code..." msgstr "새로운 코드 추가... (&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "함수 추가 (&A)" @@ -368,15 +365,15 @@ msgstr "함수 추가 (&A)" msgid "&Add..." msgstr "추가... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "오디오 설정(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "자동 업데이트(&A):" @@ -384,11 +381,15 @@ msgstr "자동 업데이트(&A):" msgid "&Borderless Window" msgstr "틀 없는 창(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "중단점 (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "버그 추적자(&B)" @@ -396,15 +397,15 @@ msgstr "버그 추적자(&B)" msgid "&Cancel" msgstr "취소(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "치트 매니저(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "업데이트 확인(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "부호 지우기 (& C)" @@ -412,7 +413,7 @@ msgstr "부호 지우기 (& C)" msgid "&Clone..." msgstr "복제... (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "코드 (&C)" @@ -420,16 +421,15 @@ msgstr "코드 (&C)" msgid "&Connected" msgstr "연결된(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "컨트롤러 설정(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "주소 복사 (&C)" @@ -437,20 +437,20 @@ msgstr "주소 복사 (&C)" msgid "&Create..." msgstr "생성...(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "삭제 (&)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "관찰 삭제 (&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "관찰들 삭제 (&D)" @@ -464,11 +464,11 @@ msgstr "코드 수정... (&E)" msgid "&Edit..." msgstr "편집... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "디스크 꺼내기(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "에뮬레이션(&E)" @@ -488,41 +488,41 @@ msgstr "상태 내보내기...(&E)" msgid "&Export as .gci..." msgstr ".gci 로 내보내기... (&E)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "파일(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "폰트 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "프레임 진행(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "자유 보기 설정(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "부호 생성 (&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "GitHub 저장소(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "그래픽 설정(&G)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "도움말(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "단축키 설정(&H)" @@ -542,11 +542,11 @@ msgstr "상태 가져오기...(&I)" msgid "&Import..." msgstr "가져오기... (&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "무한대 기반(&I)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "blr 삽입 (&I)" @@ -554,23 +554,23 @@ msgstr "blr 삽입 (&I)" msgid "&Interframe Blending" msgstr "프레임간 혼합(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "JIT(&J)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "언어(&L):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "상태 로드(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "로드 부호 맵 (&L)" @@ -580,19 +580,23 @@ msgstr "파일을 현재 주소로 로드합니다 (&L)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "관찰들 고정 (&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "위젯 고정(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "메모리(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "무비(&M)" @@ -600,7 +604,7 @@ msgstr "무비(&M)" msgid "&Mute" msgstr "음소거(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "네트워크(&N)" @@ -609,23 +613,23 @@ msgid "&No" msgstr "아니요(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "열기...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "옵션(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "HLE 함수 패치 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "일시정지(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "실행(&P)" @@ -633,7 +637,7 @@ msgstr "실행(&P)" msgid "&Properties" msgstr "속성(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "읽기 전용 모드(&R)" @@ -641,7 +645,7 @@ msgstr "읽기 전용 모드(&R)" msgid "&Refresh List" msgstr "목록 새로고침(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "레지스터 (&R)" @@ -654,24 +658,24 @@ msgstr "제거 (&R)" msgid "&Remove Code" msgstr "코드 제거 (&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "부호 이름 바꾸기 (&R)" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "리셋(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "리소스 팩 매니저(&R)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "부호 맵 저장 (&S)" @@ -679,31 +683,31 @@ msgstr "부호 맵 저장 (&S)" msgid "&Scan e-Reader Card(s)..." msgstr "e-Reader 카드 스캔...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "스카이랜더스 포탈 (&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "속도 제한(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "중지(&S)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "테마(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "쓰레드(&T)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "도구(&T)" @@ -713,21 +717,21 @@ msgstr "롬 언로드(&U)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "관찰들 고정풀기 (&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "관찰(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "웹사이트(&W)" @@ -739,23 +743,23 @@ msgstr "위키(&W)" msgid "&Yes" msgstr "예(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' 이 발견되지 않았습니다, 생성된 부호 이름이 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' 이 발견되지 않았습니다, 공통 함수들을 대신 스캔합니다" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(어두움)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(밝음)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(시스템)" @@ -791,12 +795,12 @@ msgstr "- 빼기" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--알려지지 않음--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -857,7 +861,7 @@ msgstr "16-비트 부호화 정수" msgid "16-bit Unsigned Integer" msgstr "16-비트 비부호화 정수" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -915,7 +919,7 @@ msgstr "32-비트 비부호화 정수" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -941,7 +945,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 블락)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1034,21 +1038,21 @@ msgstr "< 보다-적은" msgid "" msgstr "<없음>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "<시스템 언어>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1056,7 +1060,7 @@ msgstr "" "자동스테핑 시간이 지났습니다. 현재 명령은 관련이 없습니" "다." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1082,8 +1086,8 @@ msgstr "" msgid "> Greater-than" msgstr "> 보다-큰" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "넷플레이 세션이 이미 진행 중입니다!" @@ -1103,7 +1107,7 @@ msgstr "" "\n" "이 WAD 를 설치하면 되돌릴 수 없게 바꾸게 됩니다. 계속합니까?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "디스크가 이미 삽입되려는 중입니다." @@ -1119,7 +1123,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "저장 상태는 시작할 게임 명시 없이는 로드될 수 없습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1139,7 +1143,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Wii 게임이 구동 중일 때만 동기화가 발동될 수 있습니다." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1176,7 +1180,7 @@ msgstr "" "니다.\n" "스스로 위험을 감수하고 사용하세요.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR 코드" @@ -1219,16 +1223,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "달성" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "액션" @@ -1317,7 +1315,7 @@ msgstr "액션 리플레이: 일반 코드 0: 올바르지 않은 하위 분류 msgid "Activate NetPlay Chat" msgstr "넷플레이 채팅 활성" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "액티브" @@ -1325,15 +1323,15 @@ msgstr "액티브" msgid "Active Infinity Figures:" msgstr "활성 무한대 피겨:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "활성 쓰레드 큐" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "활성 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "어댑터" @@ -1341,7 +1339,7 @@ msgstr "어댑터" msgid "Adapter Detected" msgstr "어댑터가 감지되었습니다" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "어댑터:" @@ -1351,7 +1349,7 @@ msgstr "어댑터:" msgid "Add" msgstr "추가" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "중단점 추가(&b)" @@ -1376,43 +1374,43 @@ msgstr "중단점 추가" msgid "Add a Memory Breakpoint" msgstr "메모리 중단점 추가" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "메모리 중단점 추가 (&b)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "관찰에 추가 (&w)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "관찰에 추가" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "추가..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "주소" @@ -1556,7 +1554,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "모든 더블" @@ -1565,7 +1563,7 @@ msgstr "모든 더블" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1573,34 +1571,34 @@ msgid "All Files" msgstr "모든 파일" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "모든 파일 (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "모든 실수" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "모든 GC/Wii 파일들" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "모든 16진수" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "모든 저장 상태 (*.sav *.s##);; 모든 파일 (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "모든 부호화 정수" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "모든 비부호화 정수" @@ -1616,7 +1614,7 @@ msgstr "모든 플레이어의 코드가 동기화되었습니다." msgid "All players' saves synchronized." msgstr "모든 플레이어의 저장이 동기화되었습니다." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "맞지 않는 지역 설정 허락" @@ -1624,7 +1622,7 @@ msgstr "맞지 않는 지역 설정 허락" msgid "Allow Usage Statistics Reporting" msgstr "사용 통계 보고 허용" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "SD 카드에 쓰기 허용" @@ -1644,7 +1642,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "대체 입력 소스" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "항상" @@ -1666,7 +1664,7 @@ msgstr "삽입된 디스크가 예상되었지만 찾지 못했습니다." msgid "Anaglyph" msgstr "입체" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "분석" @@ -1692,15 +1690,15 @@ msgstr "안티-앨리어싱:" msgid "Any Region" msgstr "아무 지역" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "서명 덧붙이기" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "존재하는 서명 파일에 덧붙이기... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "서명 파일 적용... (&y)" @@ -1720,7 +1718,7 @@ msgstr "앱로더 날짜:" msgid "Apply" msgstr "적용" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "서명 파일 적용" @@ -1728,7 +1726,7 @@ msgstr "서명 파일 적용" msgid "Arbitrary Mipmap Detection" msgstr "독단적 밉맵 감지" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "'%1' 를 정말로 지우고 싶습니까?" @@ -1740,7 +1738,7 @@ msgstr "이 파일을 정말로 삭제하시겠습니까?" msgid "Are you sure you want to delete this pack?" msgstr "이 팩을 정말로 삭제하시겠습니까?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "정말로 넷플레이를 종료하고 싶습니까?" @@ -1752,16 +1750,16 @@ msgstr "확신합니까?" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "종횡비" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "종횡비:" @@ -1769,7 +1767,7 @@ msgstr "종횡비:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1781,7 +1779,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "컨트롤러 포트 할당" @@ -1802,11 +1800,11 @@ msgstr "모션플러스 연결" msgid "Audio" msgstr "오디오" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "오디오 백엔드:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "오디오 늘림 설정" @@ -1822,7 +1820,7 @@ msgstr "작성자" msgid "Authors" msgstr "제작자" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "자동" @@ -1831,11 +1829,11 @@ msgstr "자동" msgid "Auto (Multiple of 640x528)" msgstr "자동 (640x528의 배수)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "설정 자동 업데이트" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1847,7 +1845,7 @@ msgstr "" "\n" "특정 내부 해상도를 선택해주세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "창 크기 자동 조정" @@ -1855,15 +1853,15 @@ msgstr "창 크기 자동 조정" msgid "Auto-Hide" msgstr "자동-숨기기" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "RSO 모듈을 자동-감지할까요?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "폴더와 자동으로 동기화" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1908,27 +1906,27 @@ msgstr "" msgid "BIOS:" msgstr "바이오스:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP 레지스터" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "백 체인" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "백엔드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "백엔드 멀티쓰레딩" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "백엔드 설정" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "백엔드:" @@ -1971,7 +1969,7 @@ msgstr "안 좋은 값이 제공되었습니다." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "배너" @@ -1991,15 +1989,15 @@ msgstr "바" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "기본 우선순위" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "기본" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "기본 설정" @@ -2015,10 +2013,6 @@ msgstr "배치 모드는 시작할 게임 명시 없이는 사용될 수 없습 msgid "Battery" msgstr "배터리" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "베타 (한 달에 한 번)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, 등등" @@ -2051,11 +2045,11 @@ msgstr "바이너리 SSL (읽기)" msgid "Binary SSL (write)" msgstr "바이너리 SSL (쓰기)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "비트레이트 (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2065,7 +2059,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "블락 크기" @@ -2103,67 +2097,67 @@ msgstr "" "블루투스 패스쓰루 모드가 켜졌습니다, 하지만 돌핀이 libusb 없이 빌드되었습니" "다. 패스쓰루 모드를 사용할 수 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "부팅하고 멈추기" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 백업 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 키 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "틀 없는 전체화면" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "아래" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2175,23 +2169,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2208,7 +2202,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2218,19 +2212,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2245,19 +2239,24 @@ msgstr "분기들" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "중단" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "중단점" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "중단점을 만났습니다! 스텝 나가기가 중단되었습니다." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "중단점" @@ -2291,24 +2290,24 @@ msgstr "광대역 어댑터 에러" msgid "Broadband Adapter MAC Address" msgstr "광대역 어댑터 맥 어드레스" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "넷플레이 세션들 둘러보기...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "버퍼 크기:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "버퍼 크기가 %1 로 변경되었습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "버퍼:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2355,11 +2354,11 @@ msgstr "" msgid "C Stick" msgstr "C 스틱" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "서명 파일 생성... (&C)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP 레지스터" @@ -2379,7 +2378,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "캐시된 인터프리터 (더 느림)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2418,7 +2417,7 @@ msgstr "측정" msgid "Calibration Period" msgstr "측정 기간" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "%1 에 %2 크기로 디스플레이 목록 불러오기" @@ -2444,7 +2443,7 @@ msgstr "카메라 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "카메라 시야 ( 포인팅 민감도에 영향을 줍니다)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "가상 메모리 값용 AR 코드만 생성할 수 있습니다." @@ -2460,18 +2459,18 @@ msgstr "이 트로피를 위해 악당들을 편집할 수 없습니다!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} 연결 핸들로 Wii 리모트를 찾을 수 없음" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "취소" @@ -2480,15 +2479,15 @@ msgstr "취소" msgid "Cancel Calibration" msgstr "측정 취소" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2504,11 +2503,11 @@ msgstr "NAND 에 설치될 수 없기 때문에 이 WAD 를 부팅할 수 없습 msgid "Cannot compare against last value on first search." msgstr "첫 검색의 마지막 값과 비교할 수 없습니다." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "GC IPL 을 찾을 수 없습니다." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "이 주소에 대한 AR 코드를 생성할 수 없습니다." @@ -2516,7 +2515,7 @@ msgstr "이 주소에 대한 AR 코드를 생성할 수 없습니다." msgid "Cannot refresh without results." msgstr "결과 없이 새로할 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "GCI 폴더를 빈 경로로 설정할 수 없습니다." @@ -2524,7 +2523,7 @@ msgstr "GCI 폴더를 빈 경로로 설정할 수 없습니다." msgid "Cannot set memory card to an empty path." msgstr "메모리 카드를 빈 경로로 설정할 수 없습니다." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "GC IPL 을 찾을 수 없어서, 게임을 시작할 수 없습니다." @@ -2556,7 +2555,7 @@ msgstr "중앙과 측정" msgid "Change &Disc" msgstr "디스크 변경(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "디스크 변경...(&D)" @@ -2564,15 +2563,21 @@ msgstr "디스크 변경...(&D)" msgid "Change Disc" msgstr "디스크 변경" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "디스크 자동 교환" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "{0} 로 디스크를 변경합니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2600,7 +2605,7 @@ msgstr "" "이트합니다. 측면 이동은 없습니다, 단지 로테이트하고 카메라의 원본 지점까지 줌" "할 수 있을 겁니다." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "치트 변경은 게임을 재시작해야만 효과가 반영될 것입니다." @@ -2608,11 +2613,11 @@ msgstr "치트 변경은 게임을 재시작해야만 효과가 반영될 것입 msgid "Channel Partition (%1)" msgstr "채널 파티션 (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "입력된 캐릭터가 부적합합니다!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "대화" @@ -2620,7 +2625,7 @@ msgstr "대화" msgid "Cheat Code Editor" msgstr "치트 코드 에디터" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "치트 찾기" @@ -2628,7 +2633,7 @@ msgstr "치트 찾기" msgid "Cheats Manager" msgstr "치트 관리자" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "NAND 체크..." @@ -2648,7 +2653,7 @@ msgstr "" "파일 삭제에 필요한 권한이 있는지 아니면 파일이 여전히 사용중에 있는지 확인하" "세요." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "체크섬" @@ -2660,7 +2665,7 @@ msgstr "중국" msgid "Choose" msgstr "고르세요" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "열 파일 선택하기" @@ -2668,15 +2673,15 @@ msgstr "열 파일 선택하기" msgid "Choose a file to open or create" msgstr "열거나 만들 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "우선 입력 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "차선 입력 파일 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "GCI 기본 폴더를 고르세요" @@ -2689,7 +2694,7 @@ msgstr "압축해제할 폴더를 선택" msgid "Clamping of rotation about the yaw axis." msgstr "요 축에 대한 회전 클램핑." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "클래식 버튼" @@ -2700,18 +2705,18 @@ msgstr "클래식 컨트롤러" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "지움" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "캐시 청소" @@ -2732,7 +2737,7 @@ msgstr "복제하고 코드 수정... (&E)" msgid "Close" msgstr "닫기" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "환경설정(&n)" @@ -2740,11 +2745,11 @@ msgstr "환경설정(&n)" msgid "Code" msgstr "코드" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2772,11 +2777,11 @@ msgstr "색 보정:" msgid "Color Space" msgstr "색 공간" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "두 서명 파일을 합치기... (&T)" @@ -2809,7 +2814,7 @@ msgstr "" "은 Wii U eShop 출시판에 비해 좋은 덤프일 가능성이 있습니다. 돌핀은 이것을 검" "증할 수 없습니다." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "시작하기 전에 쉐이더들 컴파일" @@ -2819,7 +2824,7 @@ msgstr "쉐이더들 컴파일하기" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "압축" @@ -2832,7 +2837,7 @@ msgstr "압축 레블:" msgid "Compression:" msgstr "압축:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2840,11 +2845,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "상태" @@ -2860,7 +2865,7 @@ msgstr "조건" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "조건적 도움" @@ -2875,7 +2880,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2913,51 +2923,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"조건들:\n" -"중단점 히트 때 평가되는 표현식을 설정합니다. 만일 표현식이 false 혹은 0 이" -"면, 그 중단점은 재 히트 때까지 무시됩니다. 서술들은 쉼표로 분리되야 합니다. " -"마지막 서술만 무엇을 할지 결정하는데 쓰일 것입니다.\n" -"\n" -"참조 가능한 레지스터들:\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -" LR, CTR, PC\n" -"\n" -"함수들:\n" -"레지스터 설정: r1 = 8\n" -"캐스트: s8(0xff). 사용가능: s8, u8, s16, u16, s32, u32\n" -"콜스택: callstack(0x80123456), callstack(\"anim\")\n" -"스트링 비교: streq(r3, \"abc\"). 매개변수 둘다 주소나 스트링 상수가 될 수 있" -"습니다.\n" -"메모리 읽기: read_u32(0x80000000). 사용가능: u8, s8, u16, s16, u32, s32, " -"f32, f64\n" -"메모리 쓰기: write_u32(r3, 0x80000000). 사용가능: u8, u16, u32, f32, f64\n" -"*현재 쓰기는 항상 작동할 것입니다\n" -"\n" -"연산자들:\n" -"단항: -u, !u, ~u\n" -"산술: * / + -, power: **, remainder: %, shift: <<, >>\n" -"비교: <, <=, >, >=, ==, !=, &&, ||\n" -"비트연산: &, |, ^\n" -"\n" -"예들:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"쓰고 중단: r4 = 8, 1\n" -"쓰고 계속: f3 = f1 + f2, 0\n" -"조건은 항상 마지막이어야 합니다.\n" -"\n" -"스트링은 callstack() 이나 streq() 와 \"인용된\" 에서만 쓰여야 합니다. 변수에 " -"할당하지 마세요.\n" -"히트나 NaN 결과일 경우, 모든 변수들은 메모리 인터페이스 로그에 프린트될 것입" -"니다. 이슈들을 체크하려면, 방정식에 변수를 할당하세요, 그러면 프린트될 수 있" -"습니다.\n" -"\n" -"노트: 모든 값들은 내부적으로 계산을 위해 더블로 변환됩니다. 범위를 벗어나거" -"나 NaN 이 될 수 있습니다. NaN 이 리턴되면 경고가 주어질 것입니다, 그리고 NaN " -"된 변수가 로그될 것입니다." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -2974,7 +2939,7 @@ msgstr "설정" msgid "Configure Controller" msgstr "컨트롤러 설정" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "돌핀 환경설정" @@ -2987,27 +2952,27 @@ msgstr "입력 설정" msgid "Configure Output" msgstr "출력 설정" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "확정" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "백엔드 변경 확정" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "멈출 때 확인" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "확정" @@ -3017,15 +2982,15 @@ msgstr "확정" msgid "Connect" msgstr "연결" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "밸런스 보드 연결" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "USB 키보드 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Wii 리모트 %1 연결" @@ -3045,7 +3010,7 @@ msgstr "Wii 리모트 3 연결" msgid "Connect Wii Remote 4" msgstr "Wii 리모트 4 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Wii 리모트 연결" @@ -3061,7 +3026,7 @@ msgstr "인터넷에 연결하여 온라인 시스템 업데이트를 하시겠 msgid "Connected" msgstr "연결되었습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "연결중" @@ -3086,7 +3051,7 @@ msgstr "넷플레이 골프 모드 컨트롤" msgid "Control Stick" msgstr "컨트롤 스틱" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "컨트롤러 프로파일" @@ -3188,8 +3153,8 @@ msgstr "수렴" msgid "Convergence:" msgstr "수렴:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "변환을 실패하였습니다." @@ -3197,9 +3162,9 @@ msgstr "변환을 실패하였습니다." msgid "Convert" msgstr "변환" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "파일을 폴더로 지금 변환" @@ -3207,9 +3172,9 @@ msgstr "파일을 폴더로 지금 변환" msgid "Convert File..." msgstr "파일 변환..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "폴더를 파일로 지금 변환" @@ -3231,8 +3196,8 @@ msgstr "" "와 비교해서 뚜렷하게 공간을 절약하지는 않습니다. 아무튼 계속 하시겠습니까?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "변환중..." @@ -3275,22 +3240,22 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "복사" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "함수 복사 (&f)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "헥스 복사 (&h)" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "주소 복사" @@ -3298,19 +3263,19 @@ msgstr "주소 복사" msgid "Copy Failed" msgstr "복사가 실패했습니다" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "헥스 복사" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "값 복사" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "코드 줄 복사 (&l)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "대상 주소 복사(&g)" @@ -3328,8 +3293,8 @@ msgstr "B로 복사" msgid "Core" msgstr "코어" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3462,7 +3427,7 @@ msgstr "" "에뮬레이터 디렉토리를 이동한 후에 이 메시지를 받고 있나요?\n" "그렇다면, 옵션에서 메모리카드 위치를 재지정해야 합니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "중앙 서버를 찾을 수 없습니다" @@ -3478,13 +3443,13 @@ msgstr "파일을 읽을 수 없습니다." msgid "Country:" msgstr "국가:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "생성" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "무한대 파일 생성" @@ -3498,7 +3463,7 @@ msgstr "새로운 메모리 카트 생성" msgid "Create Skylander File" msgstr "스카이랜더 파일 생성" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "다른 디바이스들을 위한 매핑을 생성합니다" @@ -3515,11 +3480,11 @@ msgstr "만든이:" msgid "Critical" msgstr "치명적" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "자르기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3531,11 +3496,11 @@ msgstr "" msgid "Crossfade" msgstr "크로스페이드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "CPU 상에서 정점들 도태" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3545,31 +3510,31 @@ msgstr "" "로우 통계에 효과가 있을지 모릅니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "현재 지역" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "현재 값" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "현재 맥락" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "현재 게임" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "현재 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3577,15 +3542,15 @@ msgstr "" msgid "Custom Address Space" msgstr "커스텀 주소 공간" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3628,7 +3593,7 @@ msgstr "디제이 턴테이블" msgid "DK Bongos" msgstr "DK 봉고" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP 에뮬레이션 엔진" @@ -3636,15 +3601,15 @@ msgstr "DSP 에뮬레이션 엔진" msgid "DSP HLE (fast)" msgstr "DSP HLE (빠름)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (추천됨)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE 인터프리터 (매우 느림)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE 리컴파일러 (느림)" @@ -3674,7 +3639,7 @@ msgstr "댄스 매트" msgid "Dark" msgstr "어두움" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "데이터" @@ -3719,8 +3684,8 @@ msgstr "데드 존" msgid "Debug" msgstr "디버그" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "디버깅" @@ -3729,7 +3694,7 @@ msgstr "디버깅" msgid "Decimal" msgstr "10 진수" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "디코딩 품질:" @@ -3768,7 +3733,7 @@ msgstr "Y 감소" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "기본" @@ -3776,7 +3741,7 @@ msgstr "기본" msgid "Default Config (Read Only)" msgstr "기본 환경 (읽기 전용)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "기본 장치" @@ -3788,11 +3753,11 @@ msgstr "기본 폰트" msgid "Default ISO:" msgstr "기본 ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "기본 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "EFB 캐시 무효화를 연기" @@ -3800,7 +3765,7 @@ msgstr "EFB 캐시 무효화를 연기" msgid "Defer EFB Copies to RAM" msgstr "EFB 램에 복사 연기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3814,8 +3779,9 @@ msgstr "" "다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "삭제" @@ -3845,12 +3811,12 @@ msgstr "깊이 퍼센트:" msgid "Depth:" msgstr "깊이:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "설명" @@ -3864,8 +3830,8 @@ msgstr "설명:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3877,21 +3843,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "떨어진" @@ -3899,7 +3865,7 @@ msgstr "떨어진" msgid "Detect" msgstr "감지" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "RSO 모듈 감지하기" @@ -3907,11 +3873,11 @@ msgstr "RSO 모듈 감지하기" msgid "Deterministic dual core:" msgstr "결정론적 듀얼 코어:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "개발 (하루에 여러 번)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "장치" @@ -3929,7 +3895,7 @@ msgstr "장치 설정" msgid "Device VID (e.g., 057e)" msgstr "장치 VID (예, 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "장치:" @@ -3937,7 +3903,7 @@ msgstr "장치:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 을 적합한 Riivolution XML 파일로 인식하지 못했습니다." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "활동이 없을 경우 5분후에 화면을 어둡게 합니다." @@ -3953,11 +3919,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "연결 끊어진(&c)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "비활성화" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "바운딩 박스 끄기" @@ -3966,7 +3927,7 @@ msgstr "바운딩 박스 끄기" msgid "Disable Copy Filter" msgstr "복사 필터 비활성" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "EFB 비디오램 복사 비활성" @@ -3974,11 +3935,11 @@ msgstr "EFB 비디오램 복사 비활성" msgid "Disable Emulation Speed Limit" msgstr "에뮬레이션 속도 제한 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "패스트멤 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "패스트멤 투기장 비활성" @@ -3986,11 +3947,11 @@ msgstr "패스트멤 투기장 비활성" msgid "Disable Fog" msgstr "안개 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "JIT 캐시 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -4008,7 +3969,7 @@ msgstr "" "도 모릅니다, 하지만 일부 게임은 깨질 것입니다.

잘 모" "르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
잘 모르겠으면, 체크" "해 두세요." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "디스크" @@ -4040,6 +4007,10 @@ msgstr "디스크" msgid "Discard" msgstr "폐기" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "디스플레이 타입" @@ -4075,11 +4046,11 @@ msgstr "중립 위치에서 이동 거리" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "돌핀이 정보를 돌핀 개발자들에게 보고하도록 허가하시겠습니까?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\" 를 게임 경로들의 목록에 추가하고 싶습니까?" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "부호 이름 목록을 청소할까요?" @@ -4089,7 +4060,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "선택된 저장 파일 %n 을 삭제하고 싶습니까?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "에뮬레이션을 중단하고 싶습니까?" @@ -4097,12 +4068,12 @@ msgstr "에뮬레이션을 중단하고 싶습니까?" msgid "Do you want to try to repair the NAND?" msgstr "NAND 고치기를 시도하고 싶습니까?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "돌비 프로 로직 II 디코더" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "돌핀 FIFO 로그 (*.dff)" @@ -4110,9 +4081,9 @@ msgstr "돌핀 FIFO 로그 (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "돌핀 게임 모드 프리셋" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "돌핀 맵 파일 (*.map)" @@ -4124,8 +4095,8 @@ msgstr "돌핀 서명 CSV 파일" msgid "Dolphin Signature File" msgstr "돌핀 서명 파일" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "돌핀 TAS 무비 (*.dtm)" @@ -4167,7 +4138,7 @@ msgstr "돌핀이 요청된 액션 완수에 실패했습니다." msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "돌핀은 무료이고 오픈-소스 게임큐브 및 Wii 에뮬레이터입니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "횡단 서버에 비해 돌핀이 너무 구 버전입니다." @@ -4183,14 +4154,14 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "돌핀은 라이슨스되지 않은 디스크들을 검증할 수 없습니다." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" "돌핀은 자동으로 지역이 결정될 수 없는 타이틀에 대해 이것을 사용할 것입니다." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "돌핀의 치트 시스템이 현재 꺼졌습니다." @@ -4199,7 +4170,7 @@ msgstr "돌핀의 치트 시스템이 현재 꺼졌습니다." msgid "Domain" msgstr "도메인" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "업데이트 안함" @@ -4220,7 +4191,7 @@ msgstr "문들이 잠겼습니다" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "더블" @@ -4242,7 +4213,7 @@ msgstr "코드 다운로드" msgid "Download Codes from the WiiRD Database" msgstr "WiiRD 데이터베이스에서 코드를 다운로드" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "GameTDB.com 에서 그리드 모드에 사용할 게임커버를 다운로드" @@ -4254,6 +4225,16 @@ msgstr "다운로드 완료" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 코드들이 다운로드됨. (%2 추가됨)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4293,19 +4274,19 @@ msgstr "가짜가상메모리 덤프(&F)" msgid "Dump &MRAM" msgstr "MRAM 덤프(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "오디오 덤프" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "기반 텍스처 덤프" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "EFB 타겟 덤프" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "프레임들 덤프" @@ -4313,7 +4294,7 @@ msgstr "프레임들 덤프" msgid "Dump GameCube BBA traffic" msgstr "게임큐브 BBA 트래픽을 덤프" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "밉맵 덤프" @@ -4321,7 +4302,7 @@ msgstr "밉맵 덤프" msgid "Dump Path:" msgstr "덤프 경로:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "XFB 타겟 덤프" @@ -4346,7 +4327,7 @@ msgstr "피어 증명서 덤프" msgid "Dump root CA certificates" msgstr "루트 CA 증명서 덤프" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
잘 모르겠으면, 체크 해제" "해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4364,7 +4345,7 @@ msgstr "" "User/Dump/Textures/로 EFB 복사의 내용을 덤프합니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4372,25 +4353,25 @@ msgstr "" "User/Dump/Textures/로 XFB 복사의 내용을 덤프합니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "터보 버튼 누르기의 기간 (프레임):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "터보 버튼 떼기의 기간 (프레임)" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "네덜란드어" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "종료(&x)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB 복사 %1" @@ -4405,7 +4386,7 @@ msgstr "" "-- 최근에 돌핀 배포를 업그레이드했다면, 윈도우가 새로운 드라이버를 인식하기 " "위해 재부팅이 필요합니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4416,7 +4397,7 @@ msgstr "" "자신의 입력을 게임에 보냅니다.\n" "공정함과 최소의 지연이 가장 중요한 경쟁 게임들에 알맞음." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "빠른 메모리 업데이트" @@ -4435,7 +4416,16 @@ msgstr "동 아시아" msgid "Edit Breakpoint" msgstr "중단점 수정" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "편집..." @@ -4455,7 +4445,7 @@ msgstr "효과" msgid "Effective" msgstr "효과적인" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "효율 우선순위" @@ -4477,11 +4467,11 @@ msgstr "요소" msgid "Embedded Frame Buffer (EFB)" msgstr "내장형 프레임 버퍼 (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "비어있음" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "에뮬 쓰레드가 이미 구동중임" @@ -4509,7 +4499,7 @@ msgstr "" "실제 하드웨어의 디스크 속도를 에뮬합니다. 비활성화는 불안정을 유발할 수 있습" "니다. 기본 값은 True" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "에뮬된 USB 장치들" @@ -4534,34 +4524,24 @@ msgstr "에뮬레이션 속도" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "활성" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "API 검증 레이어 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "달성 배지 활성화" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "달성 활성화" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "오디오 늘림 활성" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "치트 활성화" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "컨트롤러 입력 활성화(&t)" @@ -4569,15 +4549,19 @@ msgstr "컨트롤러 입력 활성화(&t)" msgid "Enable Custom RTC" msgstr "사용자 지정 RTC 켜기" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "디버깅 UI 활성화" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "듀얼 코어 활성화" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "듀얼 코어 활성화 (속도 상승)" @@ -4589,7 +4573,7 @@ msgstr "에뮬된 CPU 클럭 오버라이드 활성화" msgid "Enable Emulated Memory Size Override" msgstr "에뮬된 메모리 크기 오버라이드 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "재 달성 활성화" @@ -4597,15 +4581,15 @@ msgstr "재 달성 활성화" msgid "Enable FPRF" msgstr "FPRF 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "그래픽 모드 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4623,41 +4607,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "리더보드 활성화" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "MMU 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "진척도 알림 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "프로그레시브 스캔 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.org 통합 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "풍부한 존재 활성화" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "진동 활성화" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "화면 보호기 활성화" @@ -4665,19 +4641,23 @@ msgstr "화면 보호기 활성화" msgid "Enable Speaker Data" msgstr "스피커 데이터 활성화" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "비공식 달성 활성화" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "사용 통계 보고 활성화" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink 로 WiiConnect24 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "와이어프레임 활성화" @@ -4685,36 +4665,6 @@ msgstr "와이어프레임 활성화" msgid "Enable Write-Back Cache (slow)" msgstr "롸이트-백 캐시 활성화 (느림)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"RetroAchievements 리더보드에서 경쟁을 활성화합니다.

사용하려면 하드코" -"어 모드가 활성화 되어야만 합니다." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"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 " @@ -4723,7 +4673,7 @@ msgstr "" "에뮬된 디스크 속도를 켭니다. 이것을 비활성화하면 일부 게임에서 깨짐이나 다른 " "문제를 일으킬 수 있습니다. (켬 = 호환성, 끔 = 해제)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4734,7 +4684,7 @@ msgstr "" "

사용하려면 RetroAchievements 계정에 로그인 해야만 합니다. 돌핀은 로그" "인을 유지하기 위해 패스워드를 로컬로 저장하지 않고 API 토큰을 사용합니다." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4743,33 +4693,34 @@ msgstr "" "달성들상에 진척 알림을 활성화합니다.

120 별 중에 60 처럼, 모인 값에 따" "른 달성 진보를 만들 때마다 요약 팝업 메시지를 표시합니다." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"앙코르 모드에서 달성을 해제합니다.

앙코르 모드는 사이트에서 이미 해제" -"된 달성을 재활성화해서 해제된 조건들을 다시 만나면 알림을 받을 수 있습니다, " -"커스텀 스피드런에 유용 혹은 단순 재미용." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "달성 해제 활성화.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"공식 뿐만아니라 비공식 달성 해제도 활성화합니다.

비공식 달성은 " -"RetroAchievements에서 공식으로 간주되지 않은 옵션이나 미완료 달성이될 수 있으" -"며 테스트용 또는 단순히 재미로 유용할 수 있습니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4808,7 +4759,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4820,7 +4771,7 @@ msgstr "" "것은 Vulkan 백엔드 한정입니다.

잘 모르겠으면, 체크" "해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4846,7 +4797,7 @@ msgstr "" "로 여전히 SDR 로 랜더하는 점을 알아두세요.

잘 모르겠" "으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "에뮬레이션 스피드와 맞도록 오디오 늘리기를 활성화합니다." @@ -4877,7 +4828,7 @@ msgstr "" "름)

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4889,7 +4840,7 @@ msgstr "" "한 대체 제공자입니다.\n" "이곳에서 서비스 설명을 읽으세요: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4901,7 +4852,7 @@ msgstr "" "쉐이더용 디버그 부호를 활성화합니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4926,13 +4877,17 @@ msgstr "" "\n" "가져오기를 중단합니다." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet이 초기화되지 않았습니다." #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "영어" @@ -4949,7 +4904,7 @@ msgstr "XLink Kai 클라이언트를 구동할 장치의 IP 주소 입력 :" msgid "Enter USB device ID" msgstr "USB 장치 ID 를 입력하세요" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "관찰할 주소 입력:" @@ -4973,33 +4928,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5012,52 +4967,52 @@ msgstr "RSO 모듈 주소를 입력:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "오류" @@ -5074,7 +5029,7 @@ msgstr "어댑터 열기 에러: %1" msgid "Error collecting save data!" msgstr "저장 데이터 수집 에러!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5089,7 +5044,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "에러가 있는 세션 목록: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "일부 텍스처 팩을 로딩하는 중에 에러가 발생했습니다" @@ -5186,12 +5141,12 @@ msgstr "{1} 파티션에 {0} 사용되지 않은 블락들에서 에러들이 msgid "Euphoria" msgstr "유포리아" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "유럽" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "전용 우버쉐이더" @@ -5235,11 +5190,11 @@ msgstr "표현식의 시작을 예상했습니다." msgid "Expected variable name." msgstr "변수 이름을 예상했습니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "실험적" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "모든 Wii 저장을 내보내기" @@ -5254,7 +5209,7 @@ msgstr "내보내기를 실패했습니다" msgid "Export Recording" msgstr "입력 기록 내보내기" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "입력 기록 내보내기..." @@ -5282,14 +5237,14 @@ msgstr ".gcs 로 내보내기... (&g)" msgid "Export as .&sav..." msgstr ".sav 로 내보내기... (&s)" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n 저장(들)을 내보냈습니다" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "확장" @@ -5302,7 +5257,7 @@ msgstr "확장 모션 입력" msgid "Extension Motion Simulation" msgstr "확장 모션 시뮬레이션" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "외부의" @@ -5310,35 +5265,35 @@ msgstr "외부의" msgid "External Frame Buffer (XFB)" msgstr "외부 프레임 버퍼 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "NAND 에서 증명서 추출" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "전체 디스크 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "전체 파티션 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "파일 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "파일 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "시스템 데이터 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "모든 파일을 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "디렉토리 압축 풀기..." @@ -5347,8 +5302,8 @@ msgstr "디렉토리 압축 풀기..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO 플레이어" @@ -5364,11 +5319,11 @@ msgstr "" "메모리 카드 열기에 실패했습니다:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "넷플레이 목록 : %1 에 이 세션을 추가하는데에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다." @@ -5388,7 +5343,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org 연결에 실패했습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "서버 연결에 실패했습니다: %1" @@ -5409,15 +5364,15 @@ msgstr "D3D12 글로벌 리소스 생성에 실패했습니다" msgid "Failed to create DXGI factory" msgstr "DXGI 팩토리 생성에 실패했습니다" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "무한대 파일 생성에 실패했습니다" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "스카이랜더 파일 생성에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5463,15 +5418,15 @@ msgstr "%1 저장 파일(들)로부터 %n 를 내보내기에 실패했습니다 msgid "Failed to export the following save files:" msgstr "다음 저장 파일들을 내보내기에 실패했습니다:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "NAND 에서 증명서 추출에 실패했습니다" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "파일 압축 풀기에 실패했습니다." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "시스템 데이터 압축 풀기에 실패했습니다." @@ -5493,14 +5448,14 @@ msgstr "하나 이상의 D3D 부호 찾기에 실패했습니다" msgid "Failed to import \"%1\"." msgstr "\"%1\" 가져오기에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "저장 파일을 가져오기에 실패했습니다. 해당 게임을 한번 띄워주세요, 그리고 다" "시 시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5508,7 +5463,7 @@ msgstr "" "저장 파일 가져오기에 실패했습니다. 주어진 파일은 오염되었거나 적합한 Wii 저장" "이 아닙니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5518,7 +5473,7 @@ msgstr "" "것이 그 안에 파일들에 액세스를 막고 있습니다. NAND (도구 -> NAND 관리 -> " "NAND 체크...) 를 고쳐 보세요, 그런 후 저장을 다시 가져오세요." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "코어 인식에 실패했습니다" @@ -5541,11 +5496,11 @@ msgid "Failed to install pack: %1" msgstr "팩 설치에 실패했습니다: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "NAND 에 이 타이틀 설치에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5553,8 +5508,8 @@ msgstr "" "포트 %1 듣기에 실패했습니다. 구동 중인 다른 넷플레이 서버 인스턴스가 있습니" "까?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "%1 에서 RSO 모듈 로드에 실패했습니다" @@ -5566,21 +5521,21 @@ msgstr "d3d11.dll 로드에 실패했습니다" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll 로드에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "맵 파일 '%1' 을 로드에 실패했습니다." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "스카이랜더 파일 로드에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "실행 가능한 것을 메모리에 로드하는데 실패했습니다." @@ -5596,17 +5551,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "스카이랜더 수정에 실패했습니다!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' 를 열기에 실패했습니다" @@ -5614,7 +5569,7 @@ msgstr "'%1' 를 열기에 실패했습니다" msgid "Failed to open Bluetooth device: {0}" msgstr "블루투스 장치 열기에 실패했습니다: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5646,15 +5601,15 @@ msgstr "" msgid "Failed to open file." msgstr "파일 열기에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "서버 열기에 실패했습니다" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "무한대 파일 열기에 실패했습니다!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5662,11 +5617,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "스카이랜더 파일 열기에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5716,23 +5671,23 @@ msgstr "입력 파일 \"{0}\" 로 부터 읽기에 실패했습니다." msgid "Failed to read selected savefile(s) from memory card." msgstr "메모리 카드에서 선택된 저장파일(들)을 읽기에 실패했습니다." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "무한대 파일 읽기에 실패했습니다!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "스카이랜더 파일 읽기에 실패했습니다!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5746,7 +5701,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "{0} 을 읽을 수 없습니다." @@ -5781,31 +5736,31 @@ msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "넷플레이 리다이렉트 폴더 재설정에 실패했습니다. 쓰기 권한을 검증하세요." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "FIFO 로그 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "경로 '%1' 에 코드 맵 저장을 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "서명 파일 '%1' 을 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "경로 '%1' 에 심볼 맵 저장을 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "서명 파일 '%1' 에 저장에 실패했습니다." -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5861,19 +5816,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "실패" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "공정한 입력 지연" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "대비책 지역" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "대비책 지역:" @@ -5886,7 +5841,7 @@ msgstr "빠름" msgid "Fast Depth Calculation" msgstr "빠른 깊이 계산" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5899,7 +5854,7 @@ msgstr "" msgid "Field of View" msgstr "시야" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "피겨 번호:" @@ -5913,7 +5868,7 @@ msgstr "파일 세부사항" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "파일 형식" @@ -5921,24 +5876,24 @@ msgstr "파일 형식" msgid "File Format:" msgstr "파일 형식:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "파일 정보" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "파일 이름" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "파일 경로" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "파일 크기" @@ -6027,7 +5982,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "플래그" @@ -6036,12 +5990,12 @@ msgstr "플래그" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "플로우트" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "분기 따라가기 (&b)" @@ -6066,7 +6020,7 @@ msgstr "" "설정 지시사항에 대해, " "이 페이지를 참고하세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "강제 16:9" @@ -6074,7 +6028,7 @@ msgstr "강제 16:9" msgid "Force 24-Bit Color" msgstr "강제 24-비트 컬러" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "강제 4:3" @@ -6106,11 +6060,11 @@ msgstr "강제 듣기 포트: " msgid "Force Nearest" msgstr "강제 Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "%1 가 VS 확장을 지원하지 않기 때문에 강제로 꺼졌습니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "%1 가 기하학 쉐이더를 지원하지 않기 때문에 강제로 켜졌습니다." @@ -6135,6 +6089,12 @@ msgstr "" "줄여서 품질이 증가합니다. 성능에 영향이 없고 소수의 그래픽 이슈를 읽으킵니다." "

잘 모르겠으면, 체크해 두세요." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "포맷:" @@ -6150,7 +6110,7 @@ msgstr "앞으로" msgid "Forward port (UPnP)" msgstr "포트 열기 (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "%1 결과들을 찾았음 \"%2\" 에 대한 것임" @@ -6160,7 +6120,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "%n 주소(들)을 발견했습니다." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "프레임 %1" @@ -6181,11 +6141,11 @@ msgstr "프레임 진행 속도 증가" msgid "Frame Advance Reset Speed" msgstr "프레임 진행 속도 리셋" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "프레임 덤핑" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "프레임 범위" @@ -6193,7 +6153,7 @@ msgstr "프레임 범위" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "프레임 덤프 이미지(들) '{0}' 가 이미 존재합니다. 덮어쓰시겠습니까?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "녹화할 프레임:" @@ -6213,7 +6173,7 @@ msgstr "빈 파일: %1" msgid "Free Look Control Type" msgstr "자유 보기 컨트롤 타입" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "자유 보기 컨트롤러 %1" @@ -6247,7 +6207,7 @@ msgstr "자유로운 보기 토글" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "프랑스어" @@ -6266,8 +6226,8 @@ msgid "From" msgstr "From" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "에서:" @@ -6275,10 +6235,14 @@ msgstr "에서:" msgid "FullScr" msgstr "전체화면" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "함수" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "함수들" @@ -6319,11 +6283,11 @@ msgstr "GBA 볼륨" msgid "GBA Window Size" msgstr "GBA 창 크기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 롬이 \"%2\" 로 변경되었습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBA%1 롬이 비활성화되었습니다" @@ -6371,7 +6335,7 @@ msgstr "GL_MAX_TEXTURE_SIZE 가 {0} 입니다 - 적어도 1024 이어야만 합 msgid "GPU Texture Decoding" msgstr "GPU 텍스처 디코딩" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6383,7 +6347,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL 에러: 당신의 비디오 카드가 OpenGL 2.0 을 지원합니까?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6391,7 +6355,7 @@ msgstr "" "GPU: OGL 에러: GL_ARB_map_buffer_range 가 필요합니다.\n" "GPU: 당신의 비디오 카드가 OpenGL 3.0 을 지원합니까?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6399,7 +6363,7 @@ msgstr "" "GPU: OGL 에러: GL_ARB_sampler_objects 가 필요합니다.\n" "GPU: 당신의 비디오 카드가 OpenGL 3.3 을 지원합니까?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6407,7 +6371,7 @@ msgstr "" "GPU: OGL 에러: GL_ARB_uniform_buffer_object 가 필요합니다.\n" "GPU: 당신의 비디오 카드가 OpenGL 3.1 을 지원합니까?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6423,7 +6387,7 @@ msgstr "" "GPU: OGL 에러: OpenGL 3 가 필요합니다.\n" "GPU: 당신의 비디오 카드가 OpenGL 3 을 지원합니까?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6446,16 +6410,16 @@ msgstr "" msgid "Game" msgstr "게임" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "게임 보이 어드밴스" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "게임 보이 어드밴스 카트리지 (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6463,7 +6427,7 @@ msgstr "" "게임 보이 어드밴스 롬(*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;모" "든 파일 (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "포트 %1 에 게임 보이 어드밴스" @@ -6492,7 +6456,7 @@ msgid "Game Gamma:" msgstr "게임 감마:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "게임 ID" @@ -6501,15 +6465,15 @@ msgstr "게임 ID" msgid "Game ID:" msgstr "게임 ID:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "게임 상태" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "게임이 \"%1\" 로 변경되었습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6517,11 +6481,11 @@ msgstr "" "게임 파일이 다른 해시를 가지고 있습니다; 그걸 우-클릭; 속성 선택, 검증 탭으" "로 전환, 그리고 해시를 확인하기위해 무결성 검증을 선택하세요." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "게임이 다른 디스크 넘버를 가지고 있습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "게임이 다른 개정을 가지고 있습니다" @@ -6535,7 +6499,7 @@ msgid "" msgstr "" "게임이 다른 게임 저장과 함께 덮어썼습니다. {0:#x}, {1:#x} 앞쪽에 데이터 오염" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "게임 지역이 맞지 않습니다" @@ -6555,11 +6519,11 @@ msgstr "Wii U용 게임큐브 어댑터" msgid "GameCube Adapter for Wii U at Port %1" msgstr "포트 %1 에 Wii U 용 게임큐브 어댑터 " -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "게임큐브 컨트롤러" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "포트 %1 에 게임큐브 컨트롤러" @@ -6567,11 +6531,11 @@ msgstr "포트 %1 에 게임큐브 컨트롤러" msgid "GameCube Controllers" msgstr "게임큐브 컨트롤러" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "게임큐브 키보드" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "포트 %1 에 겜임큐브 키보드" @@ -6588,7 +6552,7 @@ msgstr "게임큐브 메모리 카드" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "게임큐브 메모리 카드 (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "게임큐브 마이크 슬롯 %1" @@ -6616,7 +6580,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 코드" @@ -6626,35 +6590,35 @@ msgstr "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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "일반" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "일반 옵션" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "새로운 통계 식별자 생성" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "'%1' 에서 부호 이름들을 생성했습니다" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "독일어" @@ -6681,7 +6645,7 @@ msgstr "거인" msgid "Giants" msgstr "거인들" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "골프 모드" @@ -6690,7 +6654,7 @@ msgid "Good dump" msgstr "좋은 덤프" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "그래픽" @@ -6734,7 +6698,7 @@ msgstr "초록 왼쪽" msgid "Green Right" msgstr "초록 오른쪽" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "격자 보기" @@ -6771,7 +6735,7 @@ msgstr "HDR 후-처리" msgid "Hacks" msgstr "핵" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "헤드" @@ -6803,7 +6767,7 @@ msgstr "헥스 8" msgid "Hex Byte String" msgstr "헥스 바이트 스트링" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "16진수" @@ -6812,11 +6776,11 @@ msgstr "16진수" msgid "Hide" msgstr "숨기기" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "모두 숨기기" @@ -6828,16 +6792,23 @@ msgstr "인-게임 세션 숨기기" msgid "Hide Incompatible Sessions" msgstr "비호환 세션들 숨기기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "원격 GBA 숨기기" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "높은" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "최고" @@ -6860,7 +6831,7 @@ msgstr "호스트" msgid "Host Code:" msgstr "호스트 코드:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "호스트 입력 권한" @@ -6868,7 +6839,7 @@ msgstr "호스트 입력 권한" msgid "Host Size" msgstr "호스트 크기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6880,11 +6851,11 @@ msgstr "" "3+ 플레이어들과 함께하는 캐주얼 게임에 알맞음, 아마도 불안정하거나 높은 지연 " "연결상에서." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "호스트 입력 권한 꺼짐" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "호스트 입력 권한 켜짐" @@ -6896,7 +6867,7 @@ msgstr "넷플레이로 호스트" msgid "Hostname" msgstr "호스트명" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "단축키 설정" @@ -6906,11 +6877,11 @@ msgstr "단축키 설정" msgid "Hotkeys" msgstr "단축키" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "핫키들은 윈도우 포커스가 필요함" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "하이브리드 우버쉐이더" @@ -6969,12 +6940,12 @@ msgstr "IP 주소:" msgid "IPL Settings" msgstr "IPL 설정" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR 감도:" @@ -7013,7 +6984,7 @@ msgstr "" msgid "Icon" msgstr "아이콘" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7024,7 +6995,7 @@ msgstr "" "\n" "타이밍-민감한 컨트롤을 지진 턴-기반 게임에 알맞음, 골프 같은." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "식별자 생성" @@ -7049,7 +7020,7 @@ msgstr "" "을 우리가 식별하게 도와줍니다.\n" "이 허가는 돌핀 설정에서 어느 때라도 철회될 수 있습니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7069,7 +7040,7 @@ msgstr "" "체크 해제되면, 에뮬된 컨트롤러의 연결 상태는\n" "실제 기본 장비 (만일 있다면)의 연결 상태와 연결됩니다." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7080,7 +7051,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7095,7 +7066,7 @@ msgstr "" msgid "Ignore" msgstr "무시" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -7134,7 +7105,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB 를 즉시 표시합니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7148,7 +7119,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND 백업 가져오기..." @@ -7163,15 +7134,15 @@ msgstr "가져오기를 실패했습니다" msgid "Import Save File(s)" msgstr "저장 파일(들)을 가져오기" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Wii 저장 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "NAND 백업 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7180,6 +7151,15 @@ msgstr "" "NAND 백업 가져오기\n" " 경과 시간: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "인-게임?" @@ -7261,7 +7241,7 @@ msgstr "증분 회전" msgid "Incremental Rotation (rad/sec)" msgstr "증분 회전 (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "무한대 피겨 생성자" @@ -7270,7 +7250,7 @@ msgstr "무한대 피겨 생성자" msgid "Infinity Manager" msgstr "무한대 매니저" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "무한대 오브젝트 (*.bin);;" @@ -7292,12 +7272,12 @@ msgstr "정보" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "정보" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "에뮬하는 동안 화면보호기를 감춥니다" @@ -7306,11 +7286,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "입력" @@ -7324,23 +7304,19 @@ msgstr "활성에 필요한 힘을 입력하세요." msgid "Input strength to ignore and remap." msgstr "무시하고 리매핑할 힘을 입력하세요." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "nop 삽입 (&n)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SD 카드 삽입" @@ -7353,11 +7329,11 @@ msgstr "설치" msgid "Install Partition (%1)" msgstr "파티션 (%1) 설치" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "업데이트 설치" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WAD 설치..." @@ -7365,13 +7341,13 @@ msgstr "WAD 설치..." msgid "Install to the NAND" msgstr "NAND 에 설치" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "명령." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "명령" @@ -7380,7 +7356,7 @@ msgstr "명령" msgid "Instruction Breakpoint" msgstr "명령 중단점" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "명령:" @@ -7389,7 +7365,7 @@ msgstr "명령:" msgid "Instruction: %1" msgstr "명령: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7410,19 +7386,19 @@ msgstr "강도" msgid "Interface" msgstr "인터페이스" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "내부 LZ4 오류 - {0} 바이트 압축해제를 시도했습니다" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "내부 LZ4 오류 - 압축 실패했습니다" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "내부 LZ4 오류 - 압축해제를 실패했습니다 ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "내부 LZ4 오류 - 적재량 크기 맞지 않음 ({0} / {1}))" @@ -7435,7 +7411,7 @@ msgstr "내부 LZO 오류 - 압축 실패했습니다" msgid "Internal LZO Error - decompression failed" msgstr "내부 LZO 오류 - 압축해제를 실패했습니다" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7443,7 +7419,7 @@ msgstr "" "내부 LZO 오류 - 압축풀기 실패했습니다 ({0}) ({1}) \n" "구식의 상태저장 버전 정보를 찾을 수 없었습니다." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7451,7 +7427,7 @@ msgstr "" "내부 LZO 오류 - 압축해제된 버전 쿠키와 버전 스트링 길이를 분석에 실패했습니" "다 ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "내부 LZO 오류 - 압축해제된 버전 스트링 분석에 실패했습니다 ({0} / {1})" @@ -7466,7 +7442,7 @@ msgstr "내부 해상도" msgid "Internal Resolution:" msgstr "내부 해상도:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "AR 코드를 생성하는 동안 내부 에러." @@ -7474,7 +7450,7 @@ msgstr "AR 코드를 생성하는 동안 내부 에러." msgid "Interpreter (slowest)" msgstr "인터프리터 (가장 느림)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "인터프리터 코어" @@ -7490,7 +7466,7 @@ msgstr "자동-업데이트 서비스에서 부적합한 JSON 을 받았습니 msgid "Invalid Mixed Code" msgstr "부적합 복합 코드" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "부적합한 %1 이 제공됨: %2" @@ -7499,11 +7475,11 @@ msgstr "부적합한 %1 이 제공됨: %2" msgid "Invalid Player ID" msgstr "부적합한 플레이어 아이디" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "부적합 RSO 모듈 주소: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "부적합한 스텍호출" @@ -7524,7 +7500,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "필드 \"%1\" 에 부적합한 입력" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "부적합한 입력이 제공됨" @@ -7540,19 +7516,19 @@ msgstr "검색에 부적합 인자들." msgid "Invalid password provided." msgstr "부적합한 패스워드가 제공되었습니다." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "부적합 기록 파일" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "부적합한 찾기 파라미터 (선택된 오브젝트 없음)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "부적합한 찾기 스트링 (숫자로 변환될 수 없었습니다)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "부적합한 찾기 스트링 (짝수 길이 스트링만 지원됩니다)" @@ -7560,13 +7536,13 @@ msgstr "부적합한 찾기 스트링 (짝수 길이 스트링만 지원됩니 msgid "Invalid title ID." msgstr "부적합한 타이틀 ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "부적합한 관찰 주소: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "이탈리아어" @@ -7579,11 +7555,11 @@ msgstr "이탈리아" msgid "Item" msgstr "아이템" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT 블록 연결 끄기" @@ -7591,47 +7567,47 @@ msgstr "JIT 블록 연결 끄기" msgid "JIT Blocks" msgstr "JIT 블록들" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT 분기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT 소수점 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT 정수 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT 로드스토어 부동 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT 로드스토어 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT 로드스토어 짝짓기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT 로드스토어 lXz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT 로드스토어 lbzx 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT 로드스토어 lwz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT 끄기 (JIT 코어)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT 짝짓기 끄기" @@ -7643,16 +7619,16 @@ msgstr "ARM64 용 JIT 리컴파일러 (권장)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "x86-64 용 JIT 리컴파일러 (권장)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT 레지스터 캐시 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT 시스템레지스터 끄기" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7660,16 +7636,16 @@ msgstr "" "JIT 이 캐시 청소후에 코드 공간 찾기에 실패했습니다. 이것은 절대 일어나서는 안" "됩니다. 버그 트랙커에 이 사고를 보고해주세요. 돌핀은 지금 나갈 것입니다." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "일본" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "일본어" @@ -7687,12 +7663,12 @@ msgid "" msgstr "" "Kaos 가 이 트로피에 대한 유일한 악당입니다. 어느 것도 수정할 필요가 없습니다!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "계속 구동하기" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "창을 맨위로 유지" @@ -7726,16 +7702,16 @@ msgstr "키" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "플레이어 차기" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "한국" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "한국어" @@ -7756,7 +7732,7 @@ msgstr "롬 로드...(&L)" msgid "L-Analog" msgstr "L-아날로그" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR 세이브" @@ -7764,7 +7740,11 @@ msgstr "LR 세이브" msgid "Label" msgstr "레이블" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "마지막 값" @@ -7778,23 +7758,23 @@ msgstr "마지막 위치:" msgid "Last reset:" msgstr "마지막 리셋:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "지연:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "지연: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "지연: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "지연: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "지연: ~80 ms" @@ -7802,7 +7782,7 @@ msgstr "지연: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "이 타이틀들을 런칭하면 이슈들도 고칠지도 모릅니다." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "리더보드" @@ -7810,7 +7790,7 @@ msgstr "리더보드" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7821,7 +7801,7 @@ msgstr "왼쪽" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "왼쪽 스틱" @@ -7898,11 +7878,11 @@ msgstr "왼쪽" msgid "Limit Chunked Upload Speed:" msgstr "덩어리된 업로드 스피드 제한:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "목록 세로줄" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "목록 보기" @@ -7911,30 +7891,30 @@ msgid "Listening" msgstr "듣기" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "배드 맵 파일 로드... (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "다른 맵 파일 로드... (&O)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "커스텀 텍스처 로드" @@ -7942,11 +7922,11 @@ msgstr "커스텀 텍스처 로드" msgid "Load File" msgstr "파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "게임큐브 메인 메뉴 로드" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "호스트의 저장 데이터만 로드" @@ -8052,23 +8032,23 @@ msgstr "슬롯 8 상태 로드" msgid "Load State Slot 9" msgstr "슬롯 9 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "파일에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "선택된 슬롯에서 상태를 로드합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "슬롯에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Wii 시스템 메뉴 %1 로드" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "호스트의 저장 데이터 로드하고 쓰기" @@ -8076,28 +8056,28 @@ msgstr "호스트의 저장 데이터 로드하고 쓰기" msgid "Load from Selected Slot" msgstr "선택된 슬롯에서 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "슬롯 %1 - %2 로부터 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "맵 파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "vWii 시스템 메뉴 %1 로드" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "로드..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "'%1' 에서 부호들이 로드되었습니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8107,7 +8087,7 @@ msgstr "" "game_id>/ 에서 커스텀 텍스처를 로드합니다.

잘 모" "르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8116,20 +8096,28 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "지역" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "마우스 커서 가두기" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "잠긴" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "로그" @@ -8138,19 +8126,19 @@ msgstr "로그" msgid "Log Configuration" msgstr "로그 환경설정" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "로그인" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "JIT 명령 커버리지 로그" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "로그아웃" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "렌더 타임을 파일에 로그" @@ -8162,11 +8150,11 @@ msgstr "로그 타입" msgid "Logger Outputs" msgstr "로거 출력" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "로그인 실패" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8176,20 +8164,20 @@ msgstr "" "핀의 성능을 측정하려면 이 기능을 사용하세요.

잘 모르" "겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "루프" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "넷플레이 서버 연결을 잃었습니다..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "낮은" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "최하" @@ -8201,7 +8189,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "빈사" @@ -8249,7 +8237,7 @@ msgstr "슬롯 %1 에 스카이랜더가 있는지 확인하세요!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "제작사" @@ -8270,16 +8258,16 @@ msgstr "" "게임들을 망가뜨릴 것입니다.

잘 모르겠으면, 이것을 체" "크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "NAND 관리" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "수동 텍스처 샘플링" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "매핑" @@ -8291,11 +8279,11 @@ msgstr "마스크 롬" msgid "Match Found" msgstr "일치 발견" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "최대 버퍼:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "최대 버퍼 크기가 %1 로 변경되었습니다" @@ -8304,7 +8292,7 @@ msgstr "최대 버퍼 크기가 %1 로 변경되었습니다" msgid "Maximum tilt angle." msgstr "최대 틸트 각도." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Wii 메뉴와 일부 게임에서 느려짐을 유발할지도 모릅니다." @@ -8325,7 +8313,7 @@ msgstr "메모리 중단점" msgid "Memory Card" msgstr "메모리 카드" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "메모리 카드 관리자" @@ -8353,7 +8341,7 @@ msgstr "메모리카드: 부적합 소스 주소로 호출된 읽기 ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "메모리카드: 부적합 목적지 주소로 호출된 쓰기 ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8370,7 +8358,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "마이크" @@ -8379,15 +8367,15 @@ msgstr "마이크" msgid "Mini" msgstr "미니" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "기타" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "기타 설정" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8399,7 +8387,7 @@ msgstr "헤더안 빈 블락 숫자와 실제 사용되지 않은 블락수가 msgid "Mismatch between internal data structures." msgstr "내부 데이터 구조들끼리 맞지 않습니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8426,7 +8414,7 @@ msgstr "" msgid "Modifier" msgstr "수정자" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8445,8 +8433,8 @@ msgstr "슬롯 수정" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "발견된 모듈: %1" @@ -8454,7 +8442,7 @@ msgstr "발견된 모듈: %1" msgid "Money:" msgstr "돈:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "단일" @@ -8466,11 +8454,11 @@ msgstr "모노스코픽 그림자" msgid "Monospaced Font" msgstr "단일띄어쓰기 폰트" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "모션 입력" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "모션 시뮬레이션" @@ -8479,23 +8467,10 @@ msgstr "모션 시뮬레이션" msgid "Motor" msgstr "모터" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "마우스 커서 가시성" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "비활동 후에 마우스 커서를 숨기고 마우스 커서가 움직이면 돌아갑니다." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "마우스 커서는 항상 보일 것입니다." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "마우스 커서는 게임이 구동되는 동안에 절대로 보이지 않을 것입니다." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8506,7 +8481,7 @@ msgstr "이동" msgid "Movie" msgstr "무비" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8514,7 +8489,7 @@ msgstr "" "무비 {0} 는 상태저장에서 시작함을 뜻합니다, 하지만 {1} 가 존재하지 않습니다. " "해당 무비가 동기화하기 힘들 것입니다!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8527,10 +8502,10 @@ msgstr "곱하는 수" msgid "N&o to All" msgstr "모두 아니오(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 체크" @@ -8539,8 +8514,8 @@ msgstr "NAND 체크" msgid "NKit Warning" msgstr "NKit 경고" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8549,7 +8524,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8570,8 +8545,8 @@ msgstr "" "니다.

만일 게임이 감마 값을 고를 수 있도록 허용한다면, 여기서 맞추세" "요.

모르겠으면, 2.35 로 두세요." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8614,7 +8589,7 @@ msgstr "원본 (640x528)" msgid "Native GCI File" msgstr "원본 GCI 파일" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "넷플레이" @@ -8630,7 +8605,7 @@ msgstr "넷플레이 설정" msgid "Netherlands" msgstr "네덜란드" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8639,7 +8614,7 @@ msgstr "" "션동안 생성되거나 수정된 어느 저장 데이터도 호스트의 로컬 저장에 남을 것입니" "다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8649,7 +8624,7 @@ msgstr "" "레이 세션동안 생성되거나 수정된 어느 저장 데이터도 세션 끝에서 버려질 것입니" "다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8658,7 +8633,7 @@ msgstr "" "이 세션 끝에 버려질 것입니다." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "네트워크" @@ -8666,16 +8641,16 @@ msgstr "네트워크" msgid "Network dump format:" msgstr "네트워크 덤프 포멧:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "절대 아니" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "자동-업데이트 절대 안함" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "새로운" @@ -8700,7 +8675,7 @@ msgstr "새로운 찾기" msgid "New Tag..." msgstr "새로운 태그..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "새로운 식별자가 생성되었습니다." @@ -8717,7 +8692,7 @@ msgstr "새로운 태그" msgid "Next Game Profile" msgstr "다음 게임 프로파일" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "다음 일치" @@ -8763,7 +8738,7 @@ msgstr "압축하지 않음" msgid "No Match" msgstr "일치 없음" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "저장 데이터 없음" @@ -8771,12 +8746,12 @@ msgstr "저장 데이터 없음" msgid "No data to modify!" msgstr "수정할 데이터가 없음!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "적합한 상세 설명 없음" @@ -8788,7 +8763,7 @@ msgstr "에러가 없습니다." msgid "No extension selected." msgstr "선택된 확장이 없습니다." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "로드된 / 녹화된 파일이 없음." @@ -8796,7 +8771,7 @@ msgstr "로드된 / 녹화된 파일이 없음." msgid "No game is running." msgstr "구동중인 게임이 없습니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "구동중인 게임이 없습니다." @@ -8809,11 +8784,11 @@ msgstr "선택된 그래픽 모드가 없음" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "이슈가 감지되지 않았습니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "매칭하는 게임을 찾지 못했습니다" @@ -8839,7 +8814,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "게임 설정 '{0}' 에 대한 프로파일이 없음" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "로드된 녹화가 없습니다." @@ -8857,10 +8832,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "없음" @@ -8872,7 +8847,7 @@ msgstr "북 아메리카" msgid "Not Set" msgstr "설정 안됨" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" "모든 플레이어가 그 게임을 가지고 있지는 않습니다. 정말 시작하고 싶습니까?" @@ -8897,7 +8872,7 @@ msgstr "" "해당 메모리 카드상에 빈 파일들이 충분하지 않습니다. 적어도 %n 빈 파일(들)이 " "요구됩니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "발견되지 않음" @@ -8941,26 +8916,26 @@ msgstr "초당 흔들기 횟수." msgid "Nunchuk" msgstr "눈챠쿠" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "눈처크 가속계" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "눈챠쿠 버튼" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "눈챠쿠 스틱" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "확인" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "오브젝트 %1" @@ -9012,7 +8987,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "오브젝트 범위" @@ -9033,11 +9008,11 @@ msgstr "오프셋" msgid "On" msgstr "켜기" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "움직일 때" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9047,7 +9022,7 @@ msgstr "" "합니다, 작업을 위해서는 꼭지점 쉐이더를 선택하세요. 성능 효과가 있을 수도." "

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9062,7 +9037,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "온라인 문서(&D)" @@ -9070,7 +9045,7 @@ msgstr "온라인 문서(&D)" msgid "Only Show Collection" msgstr "컬렉션만 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9078,7 +9053,7 @@ msgstr "" "접두사를 가진 부호들만 덧붙입니다:\n" "(모든 부호들은 빈칸)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9097,7 +9072,7 @@ msgstr "열기" msgid "Open &Containing Folder" msgstr "담고 있는 폴더 열기(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "사용자 폴더 열기 (&U)" @@ -9106,7 +9081,7 @@ msgstr "사용자 폴더 열기 (&U)" msgid "Open Directory..." msgstr "디렉토리 열기..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "FIFO 로그 열기" @@ -9172,34 +9147,34 @@ msgstr "주황" msgid "Orbital" msgstr "궤도" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9214,11 +9189,11 @@ msgstr "다른 파티션 (%1)" msgid "Other State Hotkeys" msgstr "다른 상태 단축키" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "다른 상태 관리" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "다른 게임..." @@ -9234,16 +9209,16 @@ msgstr "출력 리샘플링" msgid "Output Resampling:" msgstr "출력 리샘플링:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "덮어 쓰여진" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "입력 기록 플레이...(&l)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9256,11 +9231,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG 압축 레블" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG 압축 레블:" @@ -9272,7 +9247,7 @@ msgstr "PNG 이미지 파일 (*.png);; 모든 파일 (*)" msgid "PPC Size" msgstr "PPC 크기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC 대 호스트" @@ -9306,7 +9281,7 @@ msgstr "패씨브" msgid "Passthrough a Bluetooth adapter" msgstr "블루투스 어댑터를 패스쓰루" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "패스워드" @@ -9344,15 +9319,15 @@ msgstr "경로" msgid "Pause" msgstr "일시정지" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "무비의 끝에서 일시정지" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "초점 잃을 때 일시정지" @@ -9372,6 +9347,12 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9391,7 +9372,7 @@ msgstr "바깥쪽 스윙 이동의 피크 가속도" msgid "Per-Pixel Lighting" msgstr "픽셀단위 광원" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "온라인 시스템 업데이트 하기" @@ -9399,15 +9380,15 @@ msgstr "온라인 시스템 업데이트 하기" msgid "Perform System Update" msgstr "시스텝 업데이트 하기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "성능 샘플 윈도우 (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "성능 샘플 윈도우 (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "성능 통계" @@ -9425,11 +9406,11 @@ msgstr "물리적 주소 공간" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "디버그 폰트 고르기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "핑" @@ -9442,7 +9423,7 @@ msgid "Pitch Up" msgstr "피치 올리기" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "플랫폼" @@ -9450,7 +9431,7 @@ msgstr "플랫폼" msgid "Play" msgstr " 실행 " -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "재생 / 녹화" @@ -9462,40 +9443,40 @@ msgstr "(입력) 기록 재생" msgid "Play Set/Power Disc" msgstr "플레이 셋/파워 디스크" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "재생 옵션" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "플레이어" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "플레이어 원" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "플레이어 원 능력 하나" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "플레이어 원 능력 둘" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "플레이어 투" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "플레이어 투 능력 하나" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "플레이어 투 능력 둘" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "플레이어" @@ -9514,7 +9495,7 @@ msgstr "" "\"SyncOnSkipIdle\" 설정을\"True\" 로 바꾸세요! 현재 비활성화 되어있습니다, 이" "게 이 문제를 매우 잘 일어나게 합니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "표준 메모리 영역으로 찾기 시작하기 전에 게임을 시작하세요." @@ -9530,7 +9511,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "포트 %1" @@ -9547,7 +9528,7 @@ msgstr "포트:" msgid "Portal Slots" msgstr "포탈 슬롯들" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "가능한 비동기 감지됨: %1 가 프레임 %2 에서 비동기화된 듯 합니다" @@ -9563,24 +9544,32 @@ msgstr "후-처리 효과:" msgid "Post-Processing Shader Configuration" msgstr "후-처리 쉐이더 환경설정" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "점/선 확장용 선호 VS" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "커스텀 텍스처 프리패치" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "PlayController에 무비 마무리가 미완성되었습니다. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "PlayWiimote에 무비 마무리가 미완성되었습니다. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "PlayWiimote에 무비 마무리가 미완성되었습니다. {0} > {1}" @@ -9605,7 +9594,7 @@ msgstr "동기화 버튼을 누르세요" msgid "Pressure" msgstr "압력" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9624,7 +9613,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "이전 게임 프로파일" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "이전 일치" @@ -9635,7 +9624,7 @@ msgstr "이전 프로파일" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "프리머티브 %1" @@ -9675,7 +9664,7 @@ msgstr "" "중간 심각성을 지닌 문제들이 발견되었습니다. 게임 전체나 특정 부분들이 올바르" "게 작동하지 않을 수도 있습니다." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "프로파일" @@ -9684,23 +9673,29 @@ msgstr "프로파일" msgid "Program Counter" msgstr "프로그램 카운터" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "진행" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "공공" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "게임 목록 캐시 제거" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "IPL 롬을 in User/GC/ 에 두세요." @@ -9720,18 +9715,18 @@ msgstr "서비스의 품질 (QoS) 이 활성화될 수 없었습니다." msgid "Quality of Service (QoS) was successfully enabled." msgstr "서비스의 품질 (QoS) 이 성공적으로 활성화되었습니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "DPLII 디코더의 품질. 오디오 지연이 품질로 증가합니다." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "질문" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "종료" @@ -9748,19 +9743,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-아날로그" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "준비" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO 모듈" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO 자동-감지" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "구동" @@ -9781,7 +9776,7 @@ msgstr "범위 끝: " msgid "Range Start: " msgstr "범위 시작: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "랭크 %1" @@ -9789,16 +9784,17 @@ msgstr "랭크 %1" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "명령 바꾸기 (&p)" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "읽기" @@ -9837,8 +9833,8 @@ msgstr "실제 Wii 리모트" msgid "Received invalid Wii Remote data from Netplay." msgstr "넷플레이에서 부적합한 Wii 원격 데이터를 받았습니다." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9847,23 +9843,23 @@ msgstr "" msgid "Recenter" msgstr "리센터" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "녹화" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "입력 녹화" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "녹화" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "녹화 옵션" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "녹화..." @@ -9902,7 +9898,7 @@ msgstr "Redump.org 상태:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9933,7 +9929,7 @@ msgid "Refreshing..." msgstr "새로고침..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "지역" @@ -9954,7 +9950,11 @@ msgstr "연관 입력" msgid "Relative Input Hold" msgstr "연관 입력 유지" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "나중에 다시 알려주기" @@ -9962,7 +9962,7 @@ msgstr "나중에 다시 알려주기" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "제거" @@ -9993,20 +9993,20 @@ msgstr "" "으로 담지 않는다면) 압축공간을 조금도 절약하지 않습니다. 아무튼 계속 하시겠습" "니까?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "부호 이름 바꾸기" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "렌더 창" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "메인 창에 렌더" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10022,10 +10022,16 @@ msgstr "알림: GCIFolder가 할당되지 않은 블록 {0:#x} 에 씀" msgid "Request to Join Your Party" msgstr "당신의 파티로 참여 요청" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10035,7 +10041,7 @@ msgstr "리셋" msgid "Reset All" msgstr "모두 리셋" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "패닉 핸들러 무시를 리셋" @@ -10067,7 +10073,7 @@ msgstr "보기 리셋" msgid "Reset all saved Wii Remote pairings" msgstr "저장된 모든 Wii 리모트 페어링 재설정" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -10079,7 +10085,7 @@ msgstr "리소스 팩 매니저" msgid "Resource Pack Path:" msgstr "리소스 팩 경로:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "재시작이 요구됩니다" @@ -10087,11 +10093,11 @@ msgstr "재시작이 요구됩니다" msgid "Restore Defaults" msgstr "기본값 복원" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "명령 복구" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "재시도" @@ -10100,7 +10106,7 @@ msgstr "재시도" msgid "Return Speed" msgstr "돌아오기 속도" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "개정" @@ -10112,7 +10118,7 @@ msgstr "개정: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10123,7 +10129,7 @@ msgstr "오른쪽" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "오른쪽 스틱" @@ -10159,11 +10165,11 @@ msgstr "왼쪽 구르기" msgid "Roll Right" msgstr "오른쪽 구르기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "룸 ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "회전" @@ -10185,27 +10191,31 @@ msgstr "" "다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10218,7 +10228,7 @@ msgstr "" msgid "Rumble" msgstr "진동" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "여기까지 실행 (&T)" @@ -10226,15 +10236,15 @@ msgstr "여기까지 실행 (&T)" msgid "Run GBA Cores in Dedicated Threads" msgstr "GBA 코어들을 전용 쓰레드로 구동합니다" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "때까지 구동" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "때까지 구동 (중단점들을 무시)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "일치할 때까지 구동 (중단점들 무시)" @@ -10242,23 +10252,23 @@ msgstr "일치할 때까지 구동 (중단점들 무시)" msgid "Russia" msgstr "러시아" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD 카드" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD 카드 파일 크기:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD 카드 이미지 (*.raw);;모든 파일 (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD 카드 경로:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD 카드 설정" @@ -10266,7 +10276,7 @@ msgstr "SD 카드 설정" msgid "SD Root:" msgstr "SD 루트:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "SD 동기화 폴더:" @@ -10301,11 +10311,11 @@ msgstr "SSL 맥락" msgid "START" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "코드 저장 (&v)" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "상태 저장(&v) " @@ -10315,9 +10325,9 @@ msgid "Safe" msgstr "안전" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10327,25 +10337,25 @@ msgstr "저장" msgid "Save All" msgstr "모두 저장" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "저장 내보내기" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "FIFO 로그 저장" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "에 파일 저장" @@ -10359,11 +10369,11 @@ msgstr "게임 저장" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "게임 저장 파일들 (*.sav);;모든 파일들 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "저장 가져오기" @@ -10375,7 +10385,7 @@ msgstr "가장 오래된 상태 저장" msgid "Save Preset" msgstr "프리셋 저장" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "녹화 파일을 다른 이름으로 저장" @@ -10425,23 +10435,23 @@ msgstr "슬롯 8 상태 저장" msgid "Save State Slot 9" msgstr "슬롯 9 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "파일에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "가장 오래된 슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "선택된 슬롯에 상태를 저장합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "심볼 맵 다른 이름으로 저장... (&A)" @@ -10449,7 +10459,7 @@ msgstr "심볼 맵 다른 이름으로 저장... (&A)" msgid "Save Texture Cache to State" msgstr "텍스처 캐시를 상태로 저장" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "상태 저장과 로드" @@ -10461,11 +10471,11 @@ msgstr "프리셋 다른 이름으로 저장..." msgid "Save as..." msgstr "다른 이름으로 저장..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "합쳐진 출력 파일 다른 이름으로 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10479,11 +10489,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "롬과 같은 디렉토리에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "맵 파일 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "서명 파일 저장" @@ -10491,11 +10501,11 @@ msgstr "서명 파일 저장" msgid "Save to Selected Slot" msgstr "선택된 슬롯에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "슬롯 %1 - %2 에 저장" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "저장..." @@ -10507,7 +10517,7 @@ msgstr "저장된 Wii 리모트 페어링은 게임이 구동 중일 때만 재 msgid "Saves:" msgstr "저장들:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "상태저장 무비 {0} 가 손상되었습니다, 무비 기록 중지 중..." @@ -10524,8 +10534,8 @@ msgid "ScrShot" msgstr "스크린샷" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "찾기" @@ -10534,7 +10544,7 @@ msgstr "찾기" msgid "Search Address" msgstr "주소 검색" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "최근 오브젝트 찾기" @@ -10554,7 +10564,7 @@ msgstr "" "가상 주소 공간에서는 현재 검색할 수 없습니다. 게임을 잠시 구동하신 후에 다시 " "시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "명령에 대한 찾기" @@ -10562,7 +10572,7 @@ msgstr "명령에 대한 찾기" msgid "Search games..." msgstr "게임들 검색..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "명령 찾기" @@ -10596,7 +10606,7 @@ msgstr "선택" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10607,23 +10617,23 @@ msgid "Select Dump Path" msgstr "덤프 경로 선택" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "내보내기 디렉토리 선택" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "피겨 파일 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "GBA 바이오스 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "GBA 롬 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "GBA 저장 경로 선택" @@ -10651,7 +10661,7 @@ msgstr "스카이랜더 컬렉션 선택" msgid "Select Skylander File" msgstr "스카이랜더 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "슬롯 %1 - %2 선택" @@ -10659,7 +10669,7 @@ msgstr "슬롯 %1 - %2 선택" msgid "Select State" msgstr "상태 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "상태 슬롯 선택" @@ -10720,13 +10730,13 @@ msgstr "디렉토리 선택" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "파일 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" @@ -10734,7 +10744,7 @@ msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" msgid "Select a Game" msgstr "게임 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "SD 카드 이미지 선택" @@ -10746,7 +10756,7 @@ msgstr "파일 선택" msgid "Select a game" msgstr "게임 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "NAND 에 설치할 타이틀 선택" @@ -10754,11 +10764,11 @@ msgstr "NAND 에 설치할 타이틀 선택" msgid "Select e-Reader Cards" msgstr "e-Reader 카드 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "RSO 모듈 주소 선택:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "플레이할 녹화 파일 선택" @@ -10766,12 +10776,12 @@ msgstr "플레이할 녹화 파일 선택" msgid "Select the Virtual SD Card Root" msgstr "가상 SD 카드 루트 선택" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "키 파일 선택 (OTP/SEEPROM 덤프)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "저장 파일을 선택" @@ -10794,16 +10804,16 @@ msgstr "선택된 컨트롤러 프로파일이 존재하지 않습니다" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "선택된 게임은 게임 목록에 존재하지 않습니다!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "선택된 쓰레드 콜스택" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "선택된 쓰레드 맥락" @@ -10823,7 +10833,7 @@ msgstr "" "사용할 하드웨어 어댑터를 선택하세요.

잘 모르겠으면, " "처음 것을 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10860,7 +10870,7 @@ msgstr "" "른 유형의 3D입니다.

잘 모르겠으면, 끄기를 선택하세" "요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10882,7 +10892,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10898,11 +10908,11 @@ msgstr "" "가 가장 적은 것을 고르세요.

잘 모르겠으면, OpenGL을 " "선택하세요." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "보내기" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "센서 바 위치:" @@ -10933,6 +10943,10 @@ msgstr "서버가 횡단 시도를 거절했습니다" msgid "Set &Value" msgstr "값 설정(&V)" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10950,23 +10964,23 @@ msgstr "슬롯 A 용 메모리 카드 파일 설정" msgid "Set memory card file for Slot B" msgstr "슬롯 B 용 메모리 카드 파일 설정" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "부호 끝 주소 설정 (&e)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "부호 크기 설정 (&s)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "부호 끝 주소 설정" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "부호 크기 (%1) 설정:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10976,11 +10990,19 @@ msgstr "" "니다.\n" "모든 게임에서 작동하지는 않을 것입니다." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Wii 시스템 언어를 설정합니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10988,6 +11010,13 @@ msgstr "" "지연을 밀리세컨즈로 설정합니다. 값이 높을수록 오디오 튐을 줄일지도 모릅니다. " "특정 백엔드 전용." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -10996,13 +11025,13 @@ msgstr "" "가상 주소 공간에서 표준 MEM1 과 (Wii 상의) MEM2 매핑을 사용하여 검색을 설정합" "니다. 방대한 다수의 게임들에서 작동할 것입니다." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "설정" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "Wii메모리설정: setting.txt 파일을 생성할 수 없음" @@ -11010,7 +11039,7 @@ msgstr "Wii메모리설정: setting.txt 파일을 생성할 수 없음" msgid "Severity" msgstr "심각성" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "쉐이더 컴파일" @@ -11032,32 +11061,32 @@ msgstr "신간선" msgid "Shinkansen Controller" msgstr "신간선 컨트롤러" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "% 속도 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "로그 보기(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "툴바 표시(&T)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "창 제목에 활성 타이틀 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "모두 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "오스트레일리아" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "디스코드에 현재 게임을 보여주기" @@ -11066,7 +11095,7 @@ msgstr "디스코드에 현재 게임을 보여주기" msgid "Show Disabled Codes First" msgstr "비활성된 코드들 먼저 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11075,31 +11104,31 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "활성된 코드들 먼저 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "프레임 카운터 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "프레임 타임 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "프랑스" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "게임큐브" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "독일" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "골프 모드 오버레이 보기" @@ -11107,23 +11136,23 @@ msgstr "골프 모드 오버레이 보기" msgid "Show Infinity Base" msgstr "무한대 베이스 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "입력 표시 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "이탈리아" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "일본 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "한국" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "랙 카운터 보기" @@ -11131,27 +11160,27 @@ msgstr "랙 카운터 보기" msgid "Show Language:" msgstr "언어 보기:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "로그 환경설정(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "넷플레이 메시지 보기" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "넷플레이 핑 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "네덜란드" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "온-스크린 메시지 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL (유럽 방식)" @@ -11160,27 +11189,27 @@ msgstr "PAL (유럽 방식)" msgid "Show PC" msgstr "PC 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "성능 그래프 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "플랫폼 표시" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "지역 표시" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "재녹화 횟수 보이기" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "러시아" @@ -11188,72 +11217,72 @@ msgstr "러시아" msgid "Show Skylanders Portal" msgstr "스카이랜더스 포탈 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "스페인" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "속도 색 보여주기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "통계 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "시스템 클럭 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "타이완" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "USA (미국 방식)" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "알려지지 않음" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "VBlank 타임 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "VPS 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "세계" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "메모리로 보기 (&m)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "코드로 보기" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "메모리로 보기" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "코드로 보기" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "메모리로 보기" @@ -11261,11 +11290,19 @@ msgstr "메모리로 보기" msgid "Show in server browser" msgstr "서버 브라우저에서 보기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "메모리에서 대상을 보여주기(&y)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11274,7 +11311,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11293,7 +11337,25 @@ msgstr "" "풀스피드와 비교해 에뮬레이션의 % 속도를 보여줍니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11303,7 +11365,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11313,7 +11375,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11323,7 +11385,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11342,13 +11404,13 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11372,7 +11434,7 @@ msgstr "옆방향 토글" msgid "Sideways Wii Remote" msgstr "Wii 리모트 옆으로" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "서명 데이터베이스" @@ -11391,12 +11453,12 @@ msgstr "부호화 32" msgid "Signed 8" msgstr "부호화 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "부호화 정수" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "간소화 중국어" @@ -11413,7 +11475,7 @@ msgstr "6 축" msgid "Size" msgstr "크기" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11425,7 +11487,7 @@ msgstr "" msgid "Skip" msgstr "스킵" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "그리기 스킵" @@ -11479,6 +11541,9 @@ msgid "Skylander %1" msgstr "스카이랜더 %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "스카이랜더 (*.sky);;모든 파일들 (*)" @@ -11553,7 +11618,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "알파벳순으로 정렬" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "사운드:" @@ -11567,7 +11632,7 @@ msgstr "스페인" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "스페인어" @@ -11575,19 +11640,19 @@ msgstr "스페인어" msgid "Speaker Pan" msgstr "스피커 팬" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "스피커 볼륨:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "전문화된 (기본값)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "상세" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11619,11 +11684,11 @@ msgstr "속도" msgid "Spyro's Adventure" msgstr "스파이로의 모험" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "스택 끝" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "스택 시작" @@ -11631,25 +11696,25 @@ msgstr "스택 시작" msgid "Standard Controller" msgstr "표준 컨트롤러" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "넷플레이 시작(&N)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "새로운 치트 검색 시작" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "입력 기록 시작(&c)" @@ -11657,7 +11722,7 @@ msgstr "입력 기록 시작(&c)" msgid "Start Recording" msgstr "(입력) 기록 시작" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "전체화면으로 시작" @@ -11669,14 +11734,14 @@ msgstr "Riivolution 패치들로 시작" msgid "Start with Riivolution Patches..." msgstr "Riivolution 패치들로 시작..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "시작된 게임" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "상태" @@ -11708,19 +11773,19 @@ msgstr "스텝 나가기" msgid "Step Over" msgstr "스텝 넘어가기" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "스텝 나가기 성공!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "스텝 나가기 시간 초과!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "스텝 넘어가기 진행 중..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "스텝 성공!" @@ -11729,7 +11794,7 @@ msgstr "스텝 성공!" msgid "Stepping" msgstr "스텝핑" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "스테레오" @@ -11758,16 +11823,16 @@ msgid "Stick" msgstr "스틱" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "중지" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "입력 재생/기록 중지" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "멈춰진 게임" @@ -11807,11 +11872,11 @@ msgstr "" "XFB 복사를 램(과 텍스처)에

잘 모르겠으면, 체크해 두" "세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "창으로 늘림" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "엄격한 설정 동기화" @@ -11825,7 +11890,11 @@ msgstr "스트링" msgid "Strum" msgstr "스트럼" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "스타일:" @@ -11836,18 +11905,18 @@ msgstr "스타일:" msgid "Stylus" msgstr "스타일러스" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "성공" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "넷플레이 목록에 성공적으로 추가되었습니다" @@ -11857,7 +11926,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n 이미지를 성공적으로 변환했습니다." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "'%1' 를 성공적으로 삭제했습니다." @@ -11870,24 +11939,24 @@ msgstr "%1 저장 파일(들)로부터 %n 를 성공적으로 내보냈습니다 msgid "Successfully exported save files" msgstr "저장 파일들을 성공적으로 내보냈습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "NAND 에서 증명서를 성공적으로 추출했습니다" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "성공적으로 파일 압축을 풀었습니다." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "성공적으로 시스템 데이터 압축을 풀었습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "저장 파일을 성공적으로 내보냈습니다." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "NAND 에 이 타이틀을 성공적으로 설치했습니다." @@ -11910,16 +11979,16 @@ msgstr "지원" msgid "Supported file formats" msgstr "지원하는 파일 포멧" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "SD 와 SDHC 를 지원합니다. 기본 크기는 128 MB 입니다." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "서라운드" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "연기된" @@ -11966,17 +12035,17 @@ msgstr "B로 스위치" msgid "Symbol" msgstr "부호" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "부호 (%1) 끝 주소:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "부호 이름:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "부호들" @@ -11984,7 +12053,7 @@ msgstr "부호들" msgid "Sync" msgstr "동기화" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "AR/Gecko 코드들 동기화" @@ -12004,7 +12073,7 @@ msgstr "" "듀얼 코어 모드에서 랜덤 프리징을 막을 수 있도록 GPU와 CPU 쓰레드들을 동기화합" "니다. (켬 = 호환성, 끔 = 빠름)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12023,24 +12092,24 @@ msgid "Synchronizing save data..." msgstr "저장 데이터를 동기화합니다..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "시스템 언어:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS 도구" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "태그" @@ -12050,7 +12119,7 @@ msgstr "태그" msgid "Taiko Drum" msgstr "타이코 드럼" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "꼬리" @@ -12058,7 +12127,7 @@ msgstr "꼬리" msgid "Taiwan" msgstr "타이완" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "스크린샷 찍기" @@ -12066,7 +12135,7 @@ msgstr "스크린샷 찍기" msgid "Target address range is invalid." msgstr "대상 주소 범위가 부적합합니다." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12084,9 +12153,9 @@ msgstr "테크" msgid "Test" msgstr "테스트" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -12099,7 +12168,7 @@ msgstr "텍스처 캐시" msgid "Texture Cache Accuracy" msgstr "텍스처 캐시 정확도" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "텍스처 덤핑" @@ -12111,7 +12180,7 @@ msgstr "텍스처 필터링" msgid "Texture Filtering:" msgstr "텍스처 필터링:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "텍스처 포맷 오버레이" @@ -12154,7 +12223,7 @@ msgstr "IPL 파일이 알려진 좋은 덤프가 아닙니다. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "명작 파티션들이 빠져있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12162,7 +12231,7 @@ msgstr "" "NAND 는 고쳐질 수 없었습니다. 현재 데이터 백업이 권장됩니다 그리고 생생한 " "NAND 로 다시 시작하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND 가 고쳐졌습니다." @@ -12180,7 +12249,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12239,7 +12308,7 @@ msgstr "" "\n" "\"%1\" 에 대한 다른 대상 경로를 선택하세요" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12251,7 +12320,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "디스크가 읽혀질 수 없었습니다 (위치 {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "삽입되려 했던 디스크를 찾을 수 없습니다." @@ -12343,7 +12412,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "파일시스템이 부적합하거나 읽혀질 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12389,7 +12458,7 @@ msgstr "" "게임의 지역이 당신의 콘솔 지역과 맞지 않습니다. 시스템 메뉴로 이슈들을 피하려" "고, 이 디스크를 사용한 에뮬된 콘솔을 업데이트하는 것은 불가능합니다." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12459,12 +12528,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "%1 에 있는 패치들은 선택된 게임이나 게임 리비전 용이 아닙니다." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "프로파일 '%1' 이 존재하지 않습니다" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "기록된 게임 ({0}) 은 선택된 게임 ({1}) 과 같지 않습니다" @@ -12488,7 +12557,7 @@ msgid "" msgstr "" "같은 파일이 여러 슬롯에 사용될 수 없습니다; %1 에서 이미 사용되고 있습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12529,7 +12598,7 @@ msgstr "명시된 공통 키 인덱스는 {0} 입니다 하지만 {1} 이어야 msgid "The specified file \"{0}\" does not exist" msgstr "기술된 \"{0}\" 파일은 존재하지 않습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12593,7 +12662,7 @@ msgstr "업데이트 파티션이 빠져있습니다." msgid "The update partition is not at its normal position." msgstr "업데이트 파티션이 정상적 위치에 있지 않습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12617,6 +12686,10 @@ msgstr "{0} 파티션은 올바르게 서명되어 있지 않습니다." msgid "The {0} partition is not properly aligned." msgstr "{0} 파티션은 올바르게 정렬되어 있지 않습니다." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "첫 파티션 테이블에 너무 많은 파티션들이 있습니다." @@ -12628,8 +12701,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12683,11 +12756,11 @@ msgstr "이 스카이랜더 타입은 아직 수정될 수 없습니다!" msgid "This USB device is already whitelisted." msgstr "이 USB 장치는 이미 와이트리스트되어 있습니다." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "이 WAD 는 부팅이 가능하지 않습니다." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "이 WAD 는 적합하지 않습니다." @@ -12707,7 +12780,7 @@ msgstr "" "이 돌핀 빌드는 본래 당신의 CPU 용으로 컴파일되어 있지 않습니다.\n" "더 나은 경험을 위해 돌핀의 ARM64 빌드를 구동하세요." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "이것은 되돌릴 수 없습니다!" @@ -12832,7 +12905,7 @@ msgstr "" msgid "This is a good dump." msgstr "이것은 좋은 덤프입니다." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12857,7 +12930,7 @@ msgid "This software should not be used to play games you do not legally own." msgstr "" "이 소프트웨어는 합법적 소유가 아닌 게임을 플레이하기 위해 쓰여서는 안됩니다." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "이 타이틀은 부팅될 수 없습니다." @@ -12905,7 +12978,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "이 값은 그래픽 환경설정에서 설정된 깊이와 곱해집니다." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12920,7 +12993,7 @@ msgstr "" "이것은 클라이언트마다 덩어리된 업로드하기의 속도를 제한할 것입니다, 저장 동기" "화에 쓰입니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12932,11 +13005,11 @@ msgstr "" "EFB 읽기를 사용하는 일부 게임에서 비동기화를 막을지도 모릅니다. 모두 같은 비" "디오 백엔드를 사용하는지 확실히 하세요." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "쓰레드 맥락" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "쓰레드" @@ -12959,14 +13032,14 @@ msgstr "기울기" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "측정을 작동시키기 위한 안정적 입력 기간. (제로는 비활성)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "시간 초과" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "타이틀" @@ -12975,12 +13048,12 @@ msgid "To" msgstr "To" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "까지:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "전체화면 토글(&F)" @@ -13005,7 +13078,7 @@ msgid "Toggle Aspect Ratio" msgstr "종횡비 토글" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "중단점 토글" @@ -13061,7 +13134,7 @@ msgstr "XFB 즉시 모드 토글" msgid "Tokenizing failed." msgstr "토큰화를 실패했습니다." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -13069,7 +13142,7 @@ msgstr "" msgid "Toolbar" msgstr "툴바" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "위" @@ -13077,8 +13150,8 @@ msgstr "위" msgid "Top-and-Bottom" msgstr "위 아래로" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "총 히트" @@ -13120,7 +13193,7 @@ msgid "Toy code:" msgstr "토이 코드:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "전통 중국어" @@ -13140,8 +13213,8 @@ msgstr "함정 마스터" msgid "Trap Team" msgstr "트랩 팀" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "횡단 에러" @@ -13170,7 +13243,7 @@ msgstr "트라이포스 AM 베이스보드" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "트리거" @@ -13180,7 +13253,7 @@ msgid "Trophy" msgstr "트로피" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13194,7 +13267,7 @@ msgstr "타입-기반 정돈" msgid "Typical GameCube/Wii Address Space" msgstr "전형적 게임큐브/Wii 주소 공간" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "알려지지 않음" @@ -13206,7 +13279,7 @@ msgstr "미국" msgid "USB Device Emulation" msgstr "USB 장치 에뮬레이션" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB 에뮬레이션" @@ -13224,7 +13297,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB 와이트리스트 에러" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13235,7 +13308,7 @@ msgstr "" "

모르겠으면, 이 모드를 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13247,7 +13320,7 @@ msgstr "" "로 버벅임을 겪었고 매우 강력한 GPU를 가지고 있지 않다면 이것을 사용하지 마세" "요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13260,7 +13333,7 @@ msgstr "" "의 경우 미약한 성능 타격을 얻는 반면 쉐이더 컴파일 버벅임을 완전제거합니다, " "하지만 결과는 비디오 드라이버 행동에 달려있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "RSO 모듈을 자동-감지할 수 없습니다" @@ -13331,11 +13404,11 @@ msgstr "압축풀린 GC/Wii 이미지들 (*.iso *.gcm)" msgid "Undead" msgstr "언데드" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "상태 로드 되돌리기" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "상태 저장 되돌리기" @@ -13355,28 +13428,28 @@ msgstr "" "WAD 를 언인스톨하면 NAND 에서 현재 설치된 이 타이틀 버전을 저장 데이터를 지우" "지 않고 제거하게 됩니다." -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "미국" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "알려지지 않음" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "알려지지 않음 (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "알려지지 않은 DVD 명령 {0:08x} - 치명적 오류" @@ -13452,11 +13525,11 @@ msgid "Unknown(%1 %2).sky" msgstr "알려지지 않음(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "알려지지 않음(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "무제한" @@ -13468,21 +13541,9 @@ msgstr "롬 언로드" msgid "Unlock Cursor" msgstr "마우스 커서 풀기" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "해제됨" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "이 세션을 %1 번 해제하였습니다" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "해제됨 (캐주얼)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "이 세션이 해제되었습니다" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13508,7 +13569,7 @@ msgstr "비부호화 32" msgid "Unsigned 8" msgstr "비부호화 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "부호 없는 정수" @@ -13522,8 +13583,8 @@ msgstr "부호 없는 정수" msgid "Up" msgstr "위쪽" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "업데이트" @@ -13531,11 +13592,11 @@ msgstr "업데이트" msgid "Update Partition (%1)" msgstr "파티션 (%1) 업데이트" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "돌핀을 닫은 후에 업데이트" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "업데이트 사용가능" @@ -13580,7 +13641,7 @@ msgstr "똑바로 토글" msgid "Upright Wii Remote" msgstr "Wii 리모트 똑바로" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "사용 통계 보고 설정" @@ -13588,15 +13649,15 @@ msgstr "사용 통계 보고 설정" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "일반 DNS 용 8.8.8.8 을 사용합니다, 아니면 원하는 서버를 넣으세요." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "모든 Wii 저장 데이터 사용" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "내장된 데이터 베이스의 게임 이름 사용" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "비손실 코덱 (FFV1) 사용" @@ -13604,15 +13665,21 @@ msgstr "비손실 코덱 (FFV1) 사용" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 모드 (EuRGB60) 사용" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "패닉 핸들러 사용" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13656,7 +13723,7 @@ msgstr "가능하면 가상 주소를 사용" msgid "User Config" msgstr "사용자 환경" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "사용자 인터페이스" @@ -13674,10 +13741,17 @@ msgstr "" "같은 부모 컨트롤러의 입력들과 출력들 사이에서\n" "저장하거나 값들을 찾기위해 사용할 수 있습니다." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "사용자이름" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13690,7 +13764,7 @@ msgstr "" "져올 수 있습니다.

모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13700,7 +13774,7 @@ msgstr "" "입니다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
그렇지 않고, 잘 모르겠으" "면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13991,8 +14065,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "경고" @@ -14004,7 +14078,7 @@ msgstr "" "경고: 이 슬롯을 위한 GCI 폴더 오버라이드 경로가 최근 설정되었습니다. 여기에" "서 GCI 경로를 조정하면 효과가 없을 것입니다." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14020,7 +14094,7 @@ msgstr "" "경고: BAT ({0}) 에 의해 나타난 블록수가 파일 헤더 ({1}) 의 수와 일치하지 않습" "니다" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14030,7 +14104,7 @@ msgstr "" "(입력 {2} > {3}). 계속하기전에 다른 저장을 로드해야합니다, 그렇지 않으면 읽" "기-전용 모드가 꺼진 상태로 이것을 로드합니다." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14039,7 +14113,7 @@ msgstr "" "경고: 저장 (바이트 {0} < {1}) (프레임 {2} < {3})에서 현재 프레임 전에 무비가 " "끝나는 저장을 로드했습니다. 계속하기 전에 다른 저장을 로드해야합니다." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14049,7 +14123,7 @@ msgstr "" "전에 다른 저장을 로드해야 합니다, 혹은 읽기-전용 모드를 끄고 로드하세요. 그렇" "지 않으면 아마도 싱크 문제가 생길겁니다." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14110,7 +14184,7 @@ msgstr "웨스턴 (윈도우즈-1252)" msgid "Whammy" msgstr "훼미" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14122,7 +14196,7 @@ msgstr "" "를 포함합니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14134,7 +14208,7 @@ msgstr "" "를 포함합니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "와이트리스트된 USB 패스쓰루 장치들" @@ -14166,25 +14240,25 @@ msgstr "Wii 리모트" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii 리모트 %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Wii 리모트 가속도계" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii 리모트 버튼" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Wii 리모트 자이로스콥" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii 리모트 설정" @@ -14192,19 +14266,19 @@ msgstr "Wii 리모트 설정" msgid "Wii Remotes" msgstr "Wii 리모트" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii TAS 입력 %1 - 클래식 컨트롤러" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii TAS 입력 %1 - Wii 리모트" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS 입력 %1 - Wii 리모트 + 눈챠쿠" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii 와 Wii 리모트" @@ -14212,7 +14286,7 @@ msgstr "Wii 와 Wii 리모트" msgid "Wii data is not public yet" msgstr "Wii 데이터는 아직 공개가 아닙니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 저장 파일 (*.bin);;모든 파일 (*)" @@ -14220,15 +14294,7 @@ msgstr "Wii 저장 파일 (*.bin);;모든 파일 (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools 서명 MEGA 파일" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"포커스가 있는 한 마우스 커서를 렌더 위젯에 가둘 것입니다. 이것을 풀기위한 핫" -"키 설정을 할 수 있습니다." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -14237,11 +14303,11 @@ msgstr "" msgid "Window Size" msgstr "창 크기" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -14255,10 +14321,11 @@ msgstr "세계" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "쓰기" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -14291,39 +14358,39 @@ msgstr "로그에 쓰고 중단" msgid "Write to Window" msgstr "창에 쓰기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "잘못된 디스크 넘버" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "잘못된 해시" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "잘못된 지역" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "잘못된 개정" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF 레지스터" @@ -14332,9 +14399,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA 대상 주소" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14362,7 +14429,7 @@ msgstr "예" msgid "Yes to &All" msgstr "모두 예(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14371,7 +14438,7 @@ msgstr "" "%2 에 있는 파일의 내용을 %1 에 있는 폴더로 변환하려 합니다. 모든 현재 폴더의 " "내용이 삭제됩니다. 정말 계속 하시겠습니까?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14480,7 +14547,7 @@ msgstr "당신의 세션을 위한 이름을 제공해야만 합니다!" msgid "You must provide a region for your session!" msgstr "당신의 세션을 위한 지역을 제공해야만 합니다!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "변경이 적용되려면 돌핀을 재시작 해야 합니다." @@ -14508,7 +14575,7 @@ msgstr "" "문제를 고치기 위해 지금 멈추시겠습니까?\n" "\"아니오\" 를 선택하면, 오디오가 혼란스러울지도 모릅니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14517,9 +14584,9 @@ msgstr "" "지 않게 행동하거나 저장을 허용하지 않을지도 모릅니다." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14528,7 +14595,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 코드는 지원되지 않습니다" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -14577,7 +14644,7 @@ msgid "default" msgstr "기본값" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "연결이 끊겼습니다" @@ -14585,7 +14652,7 @@ msgstr "연결이 끊겼습니다" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader 카드 (*.raw);;모든 파일 (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14593,7 +14660,7 @@ msgstr "errno" msgid "fake-completion" msgstr "가짜-완료" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -14643,16 +14710,6 @@ msgstr "" msgid "none" msgstr "없음" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "끄기" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "켜기" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "또는 장치를 선택하세요" @@ -14670,7 +14727,7 @@ msgstr "sRGB" msgid "this value:" msgstr "이 값:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -14738,11 +14795,9 @@ msgstr "| 또는" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ 돌핀 팀. “게임큐브” 와 “Wii” 는 닌텐도의 상표입니다. 돌핀은 닌텐" -"도와 아무런 관련이 없습니다." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ms.po b/Languages/po/ms.po index b0bac50b38..c085a4a62e 100644 --- a/Languages/po/ms.po +++ b/Languages/po/ms.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: abuyop , 2018\n" "Language-Team: Malay (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -80,7 +80,7 @@ msgstr "" "%1\n" "mahu menyertai kumpulan anda." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -114,7 +114,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revisi %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -148,11 +148,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Konfigurasi Grafik %1" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -169,7 +169,7 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "%1 tidak menyokong fitur ini." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -179,33 +179,27 @@ msgstr "" "%2 objek(s)\n" "Bingkai Semasa: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -213,13 +207,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -231,30 +225,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Kelajuan Biasa)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -266,6 +260,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -335,11 +333,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "Perih&al" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Tambah Titik Henti Ingatan" @@ -348,7 +346,7 @@ msgstr "&Tambah Titik Henti Ingatan" msgid "&Add New Code..." msgstr "T&ambah Kod Baharu..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Tambah fungsi" @@ -356,15 +354,15 @@ msgstr "&Tambah fungsi" msgid "&Add..." msgstr "T&ambah" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Tetapan &Audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Auto Kemaskini:" @@ -372,11 +370,15 @@ msgstr "&Auto Kemaskini:" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Titik Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -384,15 +386,15 @@ msgstr "" msgid "&Cancel" msgstr "&Batal" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Pengurus Menipu" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Kosongkan Simbol" @@ -400,7 +402,7 @@ msgstr "&Kosongkan Simbol" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "K&od" @@ -408,16 +410,15 @@ msgstr "K&od" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Tetapan Ka&walan" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Salin alamat" @@ -425,20 +426,20 @@ msgstr "&Salin alamat" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "Pa&dam" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "Pa&dam Pantauan" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -452,11 +453,11 @@ msgstr "&Sunting Kod..." msgid "&Edit..." msgstr "&Sunting..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulasi" @@ -476,41 +477,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Fon..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "B&ingkai Lanjutan" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Jana Simbol Dari" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Repositori &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Tetapan &Grafik" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Bantuan" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Tetapan Kekunci Pa&nas" @@ -530,11 +531,11 @@ msgstr "" msgid "&Import..." msgstr "&Import..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Sisip blr" @@ -542,23 +543,23 @@ msgstr "&Sisip blr" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Bahasa:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Muat Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Muat Peta Simbol" @@ -568,19 +569,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "Ce&reka" @@ -588,7 +593,7 @@ msgstr "Ce&reka" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -597,23 +602,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "B&uka..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "Pi&lihan" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Tampal Fungsi HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Jeda" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Main" @@ -621,7 +626,7 @@ msgstr "&Main" msgid "&Properties" msgstr "Si&fat" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "Mod Ba&ca-Sahaja" @@ -629,7 +634,7 @@ msgstr "Mod Ba&ca-Sahaja" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Daftar" @@ -642,24 +647,24 @@ msgstr "&Buang" msgid "&Remove Code" msgstr "B&uang Kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Nama semula simbol" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "T&etap Semula" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Simpan Peta Simbol" @@ -667,31 +672,31 @@ msgstr "&Simpan Peta Simbol" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Had Kelajuan:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Henti" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "Ala&tan" @@ -701,21 +706,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Lihat" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Tonton" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Laman Sesawang" @@ -727,23 +732,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' tidak ditemui, tiada nama simbol dijana" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' tidak ditemui, mengimbas fungsi umum sebagai ganti" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -779,12 +784,12 @@ msgstr "" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -845,7 +850,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -903,7 +908,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -929,7 +934,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1022,26 +1027,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1064,8 +1069,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Satu Sesi NetPlay sedang berlangsung!" @@ -1079,7 +1084,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Cakera A sedia dimasukkan." @@ -1093,7 +1098,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1111,7 +1116,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Segerak hanya boleh dipicu bila permainan Wii berjalan." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1136,7 +1141,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1179,16 +1184,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Tindakan" @@ -1261,7 +1260,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktif" @@ -1269,15 +1268,15 @@ msgstr "Aktif" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1285,7 +1284,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Penyesuai Dikesan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Penyesuai" @@ -1295,7 +1294,7 @@ msgstr "Penyesuai" msgid "Add" msgstr "Tambah" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1320,43 +1319,43 @@ msgstr "Tambah satu Titik Henti" msgid "Add a Memory Breakpoint" msgstr "Tambah Titik Henti Ingatan" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Tambah untuk &dipantau" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Tambah..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Alamat" @@ -1492,7 +1491,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1501,7 +1500,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1509,34 +1508,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Semua Keadaan Simpan (*.sav *.s##);; Semua Fail (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1552,7 +1551,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1560,7 +1559,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1578,7 +1577,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1600,7 +1599,7 @@ msgstr "Sebuah cakera tersisip dijangka tetapi tidak ditemui." msgid "Anaglyph" msgstr "Anaglif" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analisis" @@ -1626,15 +1625,15 @@ msgstr "Anti-Alias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1652,7 +1651,7 @@ msgstr "Tarikh Pemuatapl:" msgid "Apply" msgstr "Laksana" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1660,7 +1659,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Anda pasti mahu memadam '%1'?" @@ -1672,7 +1671,7 @@ msgstr "Anda pasti ingin memadam fail ini?" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Anda pasti ingin keluar dari NetPlay?" @@ -1684,16 +1683,16 @@ msgstr "Anda pasti?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Nisbah Bidang:" @@ -1701,7 +1700,7 @@ msgstr "Nisbah Bidang:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1713,7 +1712,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Umpuk Port Kawalan" @@ -1734,11 +1733,11 @@ msgstr "" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Bahagian Belakang Audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Tetapan Peregangan Audio" @@ -1754,7 +1753,7 @@ msgstr "" msgid "Authors" msgstr "Pengarang" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1763,11 +1762,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (640x528 berbilang)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1775,7 +1774,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Auto-Laras Saiz Tetingkap" @@ -1783,15 +1782,15 @@ msgstr "Auto-Laras Saiz Tetingkap" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1831,27 +1830,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Daftar BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Tetapan Bahagian Belakang" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Bahagian Belakang:" @@ -1894,7 +1893,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Sepanduk" @@ -1914,15 +1913,15 @@ msgstr "Palang" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Asas" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Tetapan Asas" @@ -1938,10 +1937,6 @@ msgstr "" msgid "Battery" msgstr "Bateri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1974,11 +1969,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1988,7 +1983,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2026,67 +2021,67 @@ msgstr "" "Mod passthrough Bluetooth dibenarkan, tetapi Dolphin dibina tanpa libusb. " "Mod passthrough tidak dapat digunakan." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "But untuk Dijeda" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Fail sandar NAND BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fail kunci BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Skrin Penuh Tanpa Sempadan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Bawah" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2098,23 +2093,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2131,7 +2126,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2141,19 +2136,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2168,19 +2163,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Henti" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Titik Henti" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Titik henti dihadapi! Langkah keluar dihenti paksa." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Titik Henti" @@ -2214,24 +2214,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Saiz Penimbal:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Saiz penimbal berubah ke %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Penimbal:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2276,11 +2276,11 @@ msgstr "" msgid "C Stick" msgstr "Batang C" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Daftar CP" @@ -2300,7 +2300,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Pentafsir bercache (lebih perlahan)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2331,7 +2331,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2357,7 +2357,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2373,18 +2373,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Tidak dapat memulakan Sesi NetPlay ketika permainan masih berlangsung!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Batal" @@ -2393,15 +2393,15 @@ msgstr "Batal" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2418,11 +2418,11 @@ msgstr "Tidak dapat membut WAD ini kerana ia tidak dipasang dengan NAND." msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Tidak dapat cari IPL GC." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2430,7 +2430,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2438,7 +2438,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Tidak dapat memulakan permainan, kerana IPL GC tidak ditemui." @@ -2470,7 +2470,7 @@ msgstr "" msgid "Change &Disc" msgstr "Ubah &Cakera" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Ubah &Cakera..." @@ -2478,15 +2478,21 @@ msgstr "Ubah &Cakera..." msgid "Change Disc" msgstr "Ubah Cakera" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2504,7 +2510,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Pengubahanan tipu hanya berkesan bila permainan dimulakan semula." @@ -2512,11 +2518,11 @@ msgstr "Pengubahanan tipu hanya berkesan bila permainan dimulakan semula." msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Sembang" @@ -2524,7 +2530,7 @@ msgstr "Sembang" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Gelitar Menipu" @@ -2532,7 +2538,7 @@ msgstr "Gelitar Menipu" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Periksa NAND..." @@ -2552,7 +2558,7 @@ msgstr "" "Periksa sama ada anda telah mendapat keizinan yang diperlukan untuk memadam " "fail atau sama ada ia masih digunakan." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2564,7 +2570,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Pilih satu fail untuk dibuka" @@ -2572,15 +2578,15 @@ msgstr "Pilih satu fail untuk dibuka" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2593,7 +2599,7 @@ msgstr "Pilih folder untuk diekstrak ke" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Butang Klasik" @@ -2604,18 +2610,18 @@ msgstr "Pengawal Klasik" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Kosongkan" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2636,7 +2642,7 @@ msgstr "Klon dan &Sunting Kod..." msgid "Close" msgstr "Tutup" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ko&nfigurasi" @@ -2644,11 +2650,11 @@ msgstr "Ko&nfigurasi" msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2676,11 +2682,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2707,7 +2713,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2717,7 +2723,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2730,7 +2736,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2738,11 +2744,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Keadaan:" @@ -2758,7 +2764,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2773,7 +2779,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2827,7 +2838,7 @@ msgstr "Konfigur" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfigur Dolphin" @@ -2840,27 +2851,27 @@ msgstr "Konfigur Input" msgid "Configure Output" msgstr "Konfigur Output" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Sahkan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Sahkan bil Berhenti" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Pengesahan" @@ -2870,15 +2881,15 @@ msgstr "Pengesahan" msgid "Connect" msgstr "Sambung" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Sambung Papan Imbang" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Sambung Papan Kekunci USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Sambung Wii Remote %1" @@ -2898,7 +2909,7 @@ msgstr "Sambung Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Sambung Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Sambung Wii Remote" @@ -2914,7 +2925,7 @@ msgstr "Sambung ke Internet dan lakukan kemaskini sistem atas-talian?" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2939,7 +2950,7 @@ msgstr "" msgid "Control Stick" msgstr "Bidak Kawalan" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3026,8 +3037,8 @@ msgstr "" msgid "Convergence:" msgstr "Ketumpuan:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3035,9 +3046,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3045,9 +3056,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3067,8 +3078,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3097,22 +3108,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Salin" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Salin &fungsi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Salin &heks" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3120,19 +3131,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Salin &baris kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3150,8 +3161,8 @@ msgstr "" msgid "Core" msgstr "Teras" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3266,7 +3277,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Tidak dapat cari pelayan pusat" @@ -3282,13 +3293,13 @@ msgstr "" msgid "Country:" msgstr "Negara:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3302,7 +3313,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3319,11 +3330,11 @@ msgstr "Pencipta:" msgid "Critical" msgstr "Kritikal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Kerat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3335,42 +3346,42 @@ msgstr "" msgid "Crossfade" msgstr "Resap Silang" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Wilayah Semasa" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3378,15 +3389,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3429,7 +3440,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Enjin Emulasi DSP" @@ -3437,15 +3448,15 @@ msgstr "Enjin Emulasi DSP" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3471,7 +3482,7 @@ msgstr "Tikar Menari" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3516,8 +3527,8 @@ msgstr "Zon Mati" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Menyahpepijat" @@ -3526,7 +3537,7 @@ msgstr "Menyahpepijat" msgid "Decimal" msgstr "Desimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3565,7 +3576,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Lalai" @@ -3573,7 +3584,7 @@ msgstr "Lalai" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3585,11 +3596,11 @@ msgstr "Fon Lalai" msgid "Default ISO:" msgstr "ISO Lalai:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3597,7 +3608,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3606,8 +3617,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Padam" @@ -3637,12 +3649,12 @@ msgstr "Peratus Kedalaman:" msgid "Depth:" msgstr "Kedalaman:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Keterangan" @@ -3656,8 +3668,8 @@ msgstr "Keterangan:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3669,21 +3681,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3691,7 +3703,7 @@ msgstr "" msgid "Detect" msgstr "Kesan" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3699,11 +3711,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Dwi-teras berketentuan:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Peranti" @@ -3721,7 +3733,7 @@ msgstr "Tetapan Peranti" msgid "Device VID (e.g., 057e)" msgstr "VID Peranti (iaitu, 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3729,7 +3741,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Malapkan skrin selepas lima minit ketidakaktifan." @@ -3745,11 +3757,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Lumpuhkan Kotak Pembatas" @@ -3758,7 +3765,7 @@ msgstr "Lumpuhkan Kotak Pembatas" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3766,11 +3773,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Lumpuhkan Had Kelajuan Emulasi" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3778,11 +3785,11 @@ msgstr "" msgid "Disable Fog" msgstr "Lumpuhkan Kabus" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3797,7 +3804,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Cakera" @@ -3821,6 +3834,10 @@ msgstr "Cakera" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3852,11 +3869,11 @@ 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Anda mahu kosongkan senarai nama simbol?" @@ -3866,7 +3883,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Anda hendak hentikan emulasi semasa?" @@ -3874,12 +3891,12 @@ msgstr "Anda hendak hentikan emulasi semasa?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Penyahkod Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Log FIFO Dolphin (*.dff)" @@ -3887,9 +3904,9 @@ msgstr "Log FIFO Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Fail Peta Dolphin (*.map)" @@ -3901,8 +3918,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Cereka TAS Dolphin (*.dtm)" @@ -3937,7 +3954,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin terlalu tua untuk pelayan traversal" @@ -3951,13 +3968,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Sistem tipuan Dolphin buat masa ini dilumpuhkan." @@ -3966,7 +3983,7 @@ msgstr "Sistem tipuan Dolphin buat masa ini dilumpuhkan." msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3987,7 +4004,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Dubel" @@ -4009,7 +4026,7 @@ msgstr "Muat Turun Kod" msgid "Download Codes from the WiiRD Database" msgstr "Muat turun Kod dar Pangkalan Data WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -4021,6 +4038,16 @@ msgstr "Muat turun selesai" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 kod dimuat turun. (%2 ditambah)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4060,19 +4087,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Longgok Audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Longgok Sasaran EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Longgok Bingkai" @@ -4080,7 +4107,7 @@ msgstr "Longgok Bingkai" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4088,7 +4115,7 @@ msgstr "" msgid "Dump Path:" msgstr "Laluan Longgok:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4113,44 +4140,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Bahasa Belanda" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "Ke&luar" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4162,7 +4189,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4170,7 +4197,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Kemaskini Ingatan Awal" @@ -4189,7 +4216,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4209,7 +4245,7 @@ msgstr "Kesan" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4231,11 +4267,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Penimbal Bingkai Terbenam (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Kosong" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Bebenang Emu sudah berjalan" @@ -4261,7 +4297,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4283,34 +4319,24 @@ msgstr "Kelajuan Emulasi" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Benarkan Lapisan Pengesahan API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Benarkan Peregangan Audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Benarkan Menipu" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4318,15 +4344,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "Benarkan RTC Suai" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Benarkan Dwi-Teras" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Benarkan Dwi-Teras (lajukan)" @@ -4338,7 +4368,7 @@ msgstr "Benarkan Pembatalan Jam CPU Teremulasi" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4346,15 +4376,15 @@ msgstr "" msgid "Enable FPRF" msgstr "Benarkan FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4372,41 +4402,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Benarkan MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Benarkan Imbas Progresif" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Benarkan Rumble" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Benarkan Penyelamat Skrin" @@ -4414,19 +4436,23 @@ msgstr "Benarkan Penyelamat Skrin" msgid "Enable Speaker Data" msgstr "Benarkan Data Pembesar Suara" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Benarkan Pelaporan Statistik Penggunaan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Benarkan Bingkai Wayar" @@ -4434,34 +4460,13 @@ msgstr "Benarkan Bingkai Wayar" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4469,34 +4474,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4531,7 +4543,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4539,7 +4551,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4556,7 +4568,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "Benarkan peregangan audio untuk dipadankan dengan kelajuan emulasi." @@ -4584,7 +4596,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4592,7 +4604,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4600,7 +4612,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4619,13 +4631,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet Tidak Diawalkan" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Bahasa Inggeris" @@ -4642,7 +4658,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Masukkan ID peranti USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4666,33 +4682,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4705,52 +4721,52 @@ msgstr "Masukkan alamat modul RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Ralat" @@ -4767,7 +4783,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4781,7 +4797,7 @@ msgstr "Ralat memuatkan bahasa pilihan. Jatuh balik ke lalai sistem." msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4876,12 +4892,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eropah" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4925,11 +4941,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Eskport Semua Simpan Wii" @@ -4944,7 +4960,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksport Rakaman" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Eksport Rakaman..." @@ -4972,14 +4988,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Sambungan" @@ -4992,7 +5008,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -5000,35 +5016,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Penimbal Bingkai Luaran (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Ekstrak Sijil dari NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Ektrak Keseluruhan Cakera..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Ekstrak Keseluruhan Sekatan..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Ekstrak Fail..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Ekstrak Fail..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Ekstrak Data Sistem..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Mengekstrak Semua Fail..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Mengekstrak Direktori..." @@ -5037,8 +5053,8 @@ msgstr "Mengekstrak Direktori..." msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Pemain FIFO" @@ -5052,11 +5068,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5076,7 +5092,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5097,15 +5113,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5151,15 +5167,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Gagal mengekstrak sijil dari NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Gagal mengekstrak fail." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Gagal mengekstrak data sistem." @@ -5178,25 +5194,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Gagal ke teras init" @@ -5216,11 +5232,11 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Gagal memasang tajuk ini ke NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5228,8 +5244,8 @@ msgstr "" "Gagal mendengar pada port %1. Adakah kejadian lain pelayan NetPlay masih " "berjalan?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Gagal memuatkan modul RSO pada %1" @@ -5241,21 +5257,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Gagal memuatkan bolehlaku ke dalam ingatan." @@ -5269,17 +5285,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Gagal membuka '%1'" @@ -5287,7 +5303,7 @@ msgstr "Gagal membuka '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5317,15 +5333,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Gagal membuka pelayan" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5333,11 +5349,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5384,23 +5400,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5414,7 +5430,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5445,31 +5461,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Gagal menyimpan log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5520,19 +5536,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5545,7 +5561,7 @@ msgstr "Pantas" msgid "Fast Depth Calculation" msgstr "Pengiraan Kedalaman Pantas" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5556,7 +5572,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5570,7 +5586,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5578,24 +5594,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Maklumat Fail" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nama Fail" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Saiz Fail" @@ -5682,7 +5698,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bendera" @@ -5691,12 +5706,12 @@ msgstr "Bendera" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Apung" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Ikut &cabang" @@ -5716,7 +5731,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Paksa 16:9" @@ -5724,7 +5739,7 @@ msgstr "Paksa 16:9" msgid "Force 24-Bit Color" msgstr "Paksa warna 24-Bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Paksa 4:3" @@ -5756,11 +5771,11 @@ msgstr "Paksa Port Dengar:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5782,6 +5797,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5797,7 +5818,7 @@ msgstr "Maju" msgid "Forward port (UPnP)" msgstr "Port maju (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5807,7 +5828,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5828,11 +5849,11 @@ msgstr "Bingkai Lanjutan Tingkatkan Kelajuan" msgid "Frame Advance Reset Speed" msgstr "Bingkai Lanjutan Tetap Semula Kelajuan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Julat Bingkai" @@ -5840,7 +5861,7 @@ msgstr "Julat Bingkai" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Bingkai untuk Dirakam:" @@ -5860,7 +5881,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5891,7 +5912,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Perancis" @@ -5910,8 +5931,8 @@ msgid "From" msgstr "Dari" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Dari:" @@ -5919,10 +5940,14 @@ msgstr "Dari:" msgid "FullScr" msgstr "SkrPenuh" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Fungsi" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5963,11 +5988,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6009,7 +6034,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "Penyahkodan Tesktur GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6019,25 +6044,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6049,7 +6074,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6067,22 +6092,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartu Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6111,7 +6136,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID Permainan" @@ -6120,25 +6145,25 @@ msgstr "ID Permainan" msgid "Game ID:" msgstr "ID Permainan:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Permainan bertukar ke \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6151,7 +6176,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6171,11 +6196,11 @@ msgstr "Penyesuai GameCube untuk Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Penyesuai GameCube untuk Wii U pada port %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Pengawal GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Pengawal GameCube pada Port %1" @@ -6183,11 +6208,11 @@ msgstr "Pengawal GameCube pada Port %1" msgid "GameCube Controllers" msgstr "Kawalan GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Papan Kekunci GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Papan Kekunci GameCube pada Port %1" @@ -6204,7 +6229,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Kad Ingatan GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "Slot Mikrofon GameCube %1" @@ -6232,7 +6257,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kod Gecko" @@ -6242,35 +6267,35 @@ msgstr "Kod 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Am" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Am dan Pilihan" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Jana satu Identiti Statistik Baharu" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Nama simbol terjana dari '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Jerman" @@ -6297,7 +6322,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6306,7 +6331,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6346,7 +6371,7 @@ msgstr "Hijau Kiri" msgid "Green Right" msgstr "Hijau Kanan" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Paparan Grid" @@ -6383,7 +6408,7 @@ msgstr "" msgid "Hacks" msgstr "Godam" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6415,7 +6440,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Heksadesimal" @@ -6424,11 +6449,11 @@ msgstr "Heksadesimal" msgid "Hide" msgstr "Sembunyi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6440,16 +6465,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6472,7 +6504,7 @@ msgstr "Hos" msgid "Host Code:" msgstr "Kod Hos:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6480,7 +6512,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6488,11 +6520,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6504,7 +6536,7 @@ msgstr "Hos dengan NetPlay" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Tetapan Kekunci Panas" @@ -6514,11 +6546,11 @@ msgstr "Tetapan Kekunci Panas" msgid "Hotkeys" msgstr "Kekunci Panas" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6571,12 +6603,12 @@ msgstr "Alamat IP:" msgid "IPL Settings" msgstr "Tetapan IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Kepekaan IR:" @@ -6602,14 +6634,14 @@ msgstr "" msgid "Icon" msgstr "Ikon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Penjanaan Identiti" @@ -6636,7 +6668,7 @@ msgstr "" "Keizinan ini juga boleh ditarik balik pada bila-bila masa menerusi tetapan " "Dolphin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6650,14 +6682,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6669,7 +6701,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6701,7 +6733,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Serta-Merta Hadirkan XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6710,7 +6742,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Import Sandar NAND BootMii..." @@ -6725,15 +6757,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Import Simpan Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Mengimport sandar NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -6742,6 +6774,15 @@ msgstr "" "Mengimport sandar NAND\n" "Masa berlalu: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6819,7 +6860,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6828,7 +6869,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6848,12 +6889,12 @@ msgstr "Maklumat" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Maklumat" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6862,11 +6903,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Input" @@ -6880,23 +6921,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Sisip &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Sisip Kad SD" @@ -6909,11 +6946,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Pasang WAD..." @@ -6921,13 +6958,13 @@ msgstr "Pasang WAD..." msgid "Install to the NAND" msgstr "Pasang ke NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6936,7 +6973,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "Titik Henti Arahan" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6945,7 +6982,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6962,19 +6999,19 @@ msgstr "" msgid "Interface" msgstr "Antaramuka" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6987,19 +7024,19 @@ msgstr "Ralat LZO Dalaman - pemampatan gagal" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7014,7 +7051,7 @@ msgstr "Resolusi Dalaman" msgid "Internal Resolution:" msgstr "Resolusi Dalaman:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7022,7 +7059,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Pentafsir (paling perlahan)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7038,7 +7075,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Kod Bercampur Tidak Sah" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7047,11 +7084,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "ID Pemain Tidak Sah" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Alamat modul RSO tidak sah: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Tindanan panggilan tidak sah" @@ -7072,7 +7109,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Input tidak sah untuk medan \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Input tidak sah disediakan" @@ -7088,19 +7125,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Fail rakaman tidak sah" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Parameter gelintar tidak sah (tiada objek dipilih)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Parameter gelintar tidak sah (tidak dapat tukar ke nombor)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Parameter gelintar tidak sah (hanya panjang rentetan disokong)" @@ -7108,13 +7145,13 @@ msgstr "Parameter gelintar tidak sah (hanya panjang rentetan disokong)" msgid "Invalid title ID." msgstr "ID tajuk tidak sah." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Itali" @@ -7127,11 +7164,11 @@ msgstr "Itali" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7139,47 +7176,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7191,31 +7228,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Jepun" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Jepun" @@ -7232,12 +7269,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Kekalkan Tetingkap berada Diatas" @@ -7271,16 +7308,16 @@ msgstr "Kekunci" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Tendang Pemain" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korea" @@ -7301,7 +7338,7 @@ msgstr "" msgid "L-Analog" msgstr "Analog-L" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7309,7 +7346,11 @@ msgstr "" msgid "Label" msgstr "Label" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7323,23 +7364,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Kependaman:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7347,7 +7388,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7355,7 +7396,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7366,7 +7407,7 @@ msgstr "Kiri" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Bidak Kiri" @@ -7437,11 +7478,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Lajur Senarai" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Paparan Senarai" @@ -7450,30 +7491,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Muat" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Muat Fail Peta &Lain..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Muat Tekstur Suai" @@ -7481,11 +7522,11 @@ msgstr "Muat Tekstur Suai" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Muat Menu Utama GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7591,23 +7632,23 @@ msgstr "Muat Slot Keadaan 8" msgid "Load State Slot 9" msgstr "Muat Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Muat Keadaan dari Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Muat Keadaan dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Muat Keadaan dari Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Muat Menu Sistem Wii %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7615,54 +7656,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Muat dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Muat dari Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Muat fail peta" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Muat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Simbol dimuatkan dari '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7671,19 +7720,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Log Konfigurasi" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Log Masa Terap ke Fail" @@ -7695,31 +7744,31 @@ msgstr "Log Jenis" msgid "Logger Outputs" msgstr "Output Pengelog" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Sambung dengan pelayan NetPlay terputus..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7731,7 +7780,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7779,7 +7828,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Pembuat:" @@ -7796,16 +7845,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7817,11 +7866,11 @@ msgstr "" msgid "Match Found" msgstr "Padanan Ditemui" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7830,7 +7879,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Ia menyebabkan kelembapan dalam menu Wii dan sesetengah permainan." @@ -7851,7 +7900,7 @@ msgstr "Titik Henti Ingatan" msgid "Memory Card" msgstr "Kad Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7879,7 +7928,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7897,7 +7946,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -7906,15 +7955,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Pelbagai" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Tetapan Pelbagai" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7926,7 +7975,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7946,7 +7995,7 @@ msgstr "" msgid "Modifier" msgstr "Pengubahsuai" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7962,8 +8011,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7971,7 +8020,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7983,11 +8032,11 @@ msgstr "Bayang Monoskopik" msgid "Monospaced Font" msgstr "Fon Monospace" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7996,23 +8045,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8023,13 +8059,13 @@ msgstr "" msgid "Movie" msgstr "Cereka" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8042,10 +8078,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Semak NAND" @@ -8054,8 +8090,8 @@ msgstr "Semak NAND" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8064,7 +8100,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8081,8 +8117,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8125,7 +8161,7 @@ msgstr "Natif (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8141,27 +8177,27 @@ msgstr "" msgid "Netherlands" msgstr "Belanda" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8169,16 +8205,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Baharu" @@ -8203,7 +8239,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Identiti baharu dijanakan." @@ -8220,7 +8256,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8266,7 +8302,7 @@ msgstr "" msgid "No Match" msgstr "Tiada Padanan" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8274,12 +8310,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Tiada keterangan tersedia" @@ -8291,7 +8327,7 @@ msgstr "" msgid "No extension selected." msgstr "Tiada sambungan dipilih" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Tiada fail dimuatkan / dirakam." @@ -8299,7 +8335,7 @@ msgstr "Tiada fail dimuatkan / dirakam." msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8312,11 +8348,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Tiada isu dikesan." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8339,7 +8375,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8358,10 +8394,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Tiada" @@ -8373,7 +8409,7 @@ msgstr "" msgid "Not Set" msgstr "Tidak Ditetapkan" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Bukan semua pemain memilik permainan. Anda pasti mahu mulakannya?" @@ -8393,7 +8429,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8437,26 +8473,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Butang Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Bidak Nunchuk" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8508,7 +8544,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Julat Objek" @@ -8529,18 +8565,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8555,7 +8591,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Dokumentasi Atas Talian" @@ -8563,13 +8599,13 @@ msgstr "&Dokumentasi Atas Talian" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8588,7 +8624,7 @@ msgstr "Buka" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8597,7 +8633,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Buka log FIFO" @@ -8663,34 +8699,34 @@ msgstr "Oren" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8705,11 +8741,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Kekunci Panas Keadaan Lain" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Lain-lain Pengurusan Keadaan" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8725,16 +8761,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Ma&in Rakaman Input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8747,11 +8783,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8763,7 +8799,7 @@ msgstr "Fail imej PNG (*.png);; Semua Fail (*)" msgid "PPC Size" msgstr "Saiz PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8797,7 +8833,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "Passthrough penyesuai Bluetooth" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8835,15 +8871,15 @@ msgstr "Laluan" msgid "Pause" msgstr "Jeda" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Jeda Dipenghujung Cereka" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Jeda jika Hilang Fokus" @@ -8859,6 +8895,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8878,7 +8920,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Pencahayaan Per-Piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Lakukan Kemaskini Sistem Atas-Talian" @@ -8886,15 +8928,15 @@ msgstr "Lakukan Kemaskini Sistem Atas-Talian" msgid "Perform System Update" msgstr "Lakukan Kemaskini Sistem" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8912,11 +8954,11 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Ambil satu fon nyahpepijat" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8929,7 +8971,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platform" @@ -8937,7 +8979,7 @@ msgstr "Platform" msgid "Play" msgstr "Main" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8949,40 +8991,40 @@ msgstr "Main Rakaman" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Pilihan Main Balik" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Pemain" @@ -8999,7 +9041,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9015,7 +9057,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Port %1" @@ -9032,7 +9074,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Nyahsegerak berkemungkinan dikesan: %1 mungkin telah dinyahsegerak pada " @@ -9050,24 +9092,32 @@ msgstr "Kesan Pasca-Pemprosesan:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Dapatkan Tekstur Suai" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9092,7 +9142,7 @@ msgstr "Tekan Butang Segerak" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9107,7 +9157,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9118,7 +9168,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9152,7 +9202,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9161,23 +9211,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "Kiraan Program" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9197,18 +9253,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Soalan" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Keluar" @@ -9225,19 +9281,19 @@ msgstr "R" msgid "R-Analog" msgstr "Analog-R" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "Modul RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9258,7 +9314,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9266,16 +9322,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "&Ganti arahan" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Baca" @@ -9314,8 +9371,8 @@ msgstr "Wii Remote Sebenar" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9324,23 +9381,23 @@ msgstr "" msgid "Recenter" msgstr "Tengahkan semula" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Rakam" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Pilihan Rakaman" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Merakam..." @@ -9373,7 +9430,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9404,7 +9461,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Wilayah" @@ -9425,7 +9482,11 @@ msgstr "Input Relatif" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9433,7 +9494,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Buang" @@ -9461,20 +9522,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Nama semula simbol" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Terap ke Tetingkap Utama" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9488,10 +9549,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9501,7 +9568,7 @@ msgstr "Tetap Semula" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9533,7 +9600,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Tetap semula semua perpasangan Wii Remote tersimpan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9545,7 +9612,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Mula Semula Diperlukan" @@ -9553,11 +9620,11 @@ msgstr "Mula Semula Diperlukan" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Cuba Lagi" @@ -9566,7 +9633,7 @@ msgstr "Cuba Lagi" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9578,7 +9645,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9589,7 +9656,7 @@ msgstr "Kanan" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Bidak Kanan" @@ -9625,11 +9692,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ID Bilik" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9647,27 +9714,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9680,7 +9751,7 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "&Jalankan Di Sini" @@ -9688,15 +9759,15 @@ msgstr "&Jalankan Di Sini" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9704,23 +9775,23 @@ msgstr "" msgid "Russia" msgstr "Rusia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Laluan Kad SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9728,7 +9799,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9763,11 +9834,11 @@ msgstr "" msgid "START" msgstr "MULA" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Keadaan S&impan" @@ -9777,9 +9848,9 @@ msgid "Safe" msgstr "Selamat" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9789,25 +9860,25 @@ msgstr "Simpan" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Simpan log FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Simpan Fail ke" @@ -9821,11 +9892,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9837,7 +9908,7 @@ msgstr "Simpan Keadaan Terlama" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9887,23 +9958,23 @@ msgstr "Simpan Slot Keadaan 8" msgid "Save State Slot 9" msgstr "Simpan Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Simpan Keadaan ke Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Simpan Keadaan ke Slot Terlama" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Simpan Keadaan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Simpan Keadaan ke Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Simpan Peta Simbol Sebag&ai..." @@ -9911,7 +9982,7 @@ msgstr "Simpan Peta Simbol Sebag&ai..." msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Simpan dan Muat Keadaan" @@ -9923,11 +9994,11 @@ msgstr "" msgid "Save as..." msgstr "Simpan sebagai..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9938,11 +10009,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Simpan fail peta" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Simpan fail tandatangan" @@ -9950,11 +10021,11 @@ msgstr "Simpan fail tandatangan" msgid "Save to Selected Slot" msgstr "Simpan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Simpan ke Slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Simpan..." @@ -9968,7 +10039,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9985,8 +10056,8 @@ msgid "ScrShot" msgstr "CkpSkrin" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Gelintar" @@ -9995,7 +10066,7 @@ msgstr "Gelintar" msgid "Search Address" msgstr "Gelintar Alamat" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Gelintar Objek Semasa" @@ -10013,7 +10084,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -10021,7 +10092,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -10055,7 +10126,7 @@ msgstr "Pilih" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10066,23 +10137,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10110,7 +10181,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Pilih Slot %1 - %2" @@ -10118,7 +10189,7 @@ msgstr "Pilih Slot %1 - %2" msgid "Select State" msgstr "Pilih Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Pilih Slot Keadaan" @@ -10179,13 +10250,13 @@ msgstr "Pilih satu Direktori" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Pilih satu Fail" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10193,7 +10264,7 @@ msgstr "" msgid "Select a Game" msgstr "Pilih satu Permainan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10205,7 +10276,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Pilih satu tajuk untuk dipasang ke dalam NAND" @@ -10213,11 +10284,11 @@ msgstr "Pilih satu tajuk untuk dipasang ke dalam NAND" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10225,12 +10296,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Pilih fail kunci (longgok OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Pilih fail simpan" @@ -10253,16 +10324,16 @@ msgstr "Profil pengawal terpilih tidak wujud" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10278,7 +10349,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10308,7 +10379,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10330,7 +10401,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10340,11 +10411,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Hantar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Kedudukan Palang Penderia:" @@ -10372,6 +10443,10 @@ msgstr "Pelayan menolak percubaan travesal" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10389,23 +10464,23 @@ msgstr "Tetapkan fail kad ingatan untuk Slot A" msgid "Set memory card file for Slot B" msgstr "Tetapkan fail kad ingatan untuk Slot B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Tetapkan alamat &akhir simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Tetapkan &saiz simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Tetapkan alamat akhir simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Tetapkan saiz simbol (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10415,29 +10490,44 @@ msgstr "" "permainan PAL.\n" "Mungkin tidak berfungsi untk semua permainan." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Tetapkan bahasa sistem Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Tetapan" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Tidak dapat cipta fail setting.txt" @@ -10445,7 +10535,7 @@ msgstr "SetupWiiMemory: Tidak dapat cipta fail setting.txt" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10467,32 +10557,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Tunjuk &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Tunjuk Palang Ala&t" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Tunjuk Tajuk Aktif dalam Tajuk Tetingkap" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Tunjuk Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10501,7 +10591,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Tunjuk ELF/DOL" @@ -10510,31 +10600,31 @@ msgstr "Tunjuk ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Tunjuk FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Tunjuk Kiraan Bingkai" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Tunjuk Perancis" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Tunjuk GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Tunjuk Jerman" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10542,23 +10632,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Tunjuk Paparan Input" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Tunjuk Itali" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Tunjuk Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Tunjuk Kiraan Lengah" @@ -10566,27 +10656,27 @@ msgstr "Tunjuk Kiraan Lengah" msgid "Show Language:" msgstr "Tunjuk Bahasa:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Tunjuk K&onfigurasi Log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Tunjuk Mesej NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Tunjuk Ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Tunjuk Belanda" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Tunjuk PAL" @@ -10595,27 +10685,27 @@ msgstr "Tunjuk PAL" msgid "Show PC" msgstr "Tunjuk PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Tunjuk Platform" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Tunjuk Wilayah" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Tunjuk Rusia" @@ -10623,72 +10713,72 @@ msgstr "Tunjuk Rusia" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Tunjuk Sepanyol" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Tunjuk Statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Tunjuk Jam Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Tunjuk Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Tunjuk USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Tunjuk Tidak Diketahui" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Tunjuk WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Tunjuk Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Tunjuk Dunia" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10696,71 +10786,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10782,7 +10905,7 @@ msgstr "Togol Sisi" msgid "Sideways Wii Remote" msgstr "Wii Remote Sisi" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Pangkalan Data Tandatangan" @@ -10801,12 +10924,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Integer Bertanda" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Cina Ringkas" @@ -10823,7 +10946,7 @@ msgstr "" msgid "Size" msgstr "Saiz" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10835,7 +10958,7 @@ msgstr "" msgid "Skip" msgstr "Langkau" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10879,6 +11002,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10949,7 +11075,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10963,7 +11089,7 @@ msgstr "Sepanyol" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Sepanyol" @@ -10971,19 +11097,19 @@ msgstr "Sepanyol" msgid "Speaker Pan" msgstr "Lata Pembesar Suara" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volum Pembesar Suara:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11008,11 +11134,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -11020,25 +11146,25 @@ msgstr "" msgid "Standard Controller" msgstr "Pengawal Piawai" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Mula" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Mula &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Mula Me&rakam Input" @@ -11046,7 +11172,7 @@ msgstr "Mula Me&rakam Input" msgid "Start Recording" msgstr "Mula Rakaman" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11058,14 +11184,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Permainan bermula" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11097,19 +11223,19 @@ msgstr "Langkah Keluar" msgid "Step Over" msgstr "Langkah Melalui" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Langkah keluar berjaya!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Langkah keluar tamat masa!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Langkah atas masih berjalan..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Langkah berjaya!" @@ -11118,7 +11244,7 @@ msgstr "Langkah berjaya!" msgid "Stepping" msgstr "Melangkah" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11147,16 +11273,16 @@ msgid "Stick" msgstr "Bidak" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Henti Memainkan/Merakam Input" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Permainan berhenti" @@ -11188,11 +11314,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Regang ke Tetingkap" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11206,7 +11332,11 @@ msgstr "Rentetan" msgid "Strum" msgstr "Strum" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11217,18 +11347,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Berjaya" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11238,7 +11368,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Berjaya memadam '%1'." @@ -11251,24 +11381,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Berjaya mengimport fail simpan" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Berjaya mengekstrak sijil dari NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Berjaya mengekstrak fail." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Berjaya mengekstrak data sistem." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Berjaya memasang tajuk ini ke NAND." @@ -11291,16 +11421,16 @@ msgstr "Sokongan" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11344,17 +11474,17 @@ msgstr "" msgid "Symbol" msgstr "Simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Nama simbol:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Simbol" @@ -11362,7 +11492,7 @@ msgstr "Simbol" msgid "Sync" msgstr "Segerak" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11380,7 +11510,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11399,24 +11529,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Bahasa Sistem:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Alatan TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11426,7 +11556,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11434,7 +11564,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Ambil Cekupan Skrin" @@ -11442,7 +11572,7 @@ msgstr "Ambil Cekupan Skrin" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11458,9 +11588,9 @@ msgstr "" msgid "Test" msgstr "Uji" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11473,7 +11603,7 @@ msgstr "Tekstur Cache" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11485,7 +11615,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Tindihan Format Tekstur" @@ -11522,7 +11652,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11530,7 +11660,7 @@ msgstr "" "NAND tidak dapat dibaiki. Adalah disarankan menyandar data semasa anda dan " "mula kembali dengan NAND yang baharu." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND telah dibaiki." @@ -11545,7 +11675,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11592,7 +11722,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11602,7 +11732,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Cakera yang hendak dimasukkan tidak ditemui." @@ -11681,7 +11811,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11725,7 +11855,7 @@ msgstr "" "masalah dengan menu sistem. Adalah mustahil mengemaskini konsol teremulasi " "dengan cakera ini." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11784,12 +11914,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Profil '%1' tidak wujud" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11809,7 +11939,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11843,7 +11973,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11903,7 +12033,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11925,6 +12055,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11936,8 +12070,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11989,11 +12123,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "Peranti USB sudah berada dalam senarai putih." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "WAD ini tidak boleh dibutkan." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "WAD ini tidak sah." @@ -12011,7 +12145,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Ia tidak boleh dikembalikan!" @@ -12113,7 +12247,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12135,7 +12269,7 @@ msgstr "" "Perisian ini tidak seharusnya digunakan untuk main permainan bukan milik " "anda secara sah." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Tajuk ini tidak boleh dibutkan." @@ -12178,7 +12312,7 @@ msgid "" msgstr "" "Nilai ini digandakan dengan kedalaman ditetapkan dalam konfigurasi grafik." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12191,7 +12325,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12199,11 +12333,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12226,14 +12360,14 @@ msgstr "Condong" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Tajuk" @@ -12242,12 +12376,12 @@ msgid "To" msgstr "Ke" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Ke:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Togol &Skrin Penuh" @@ -12272,7 +12406,7 @@ msgid "Toggle Aspect Ratio" msgstr "Togol Nisbah Bidang" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Togol Titik Henti" @@ -12328,7 +12462,7 @@ msgstr "Togol Mod Serta-Merta XFB" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12336,7 +12470,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Atas" @@ -12344,8 +12478,8 @@ msgstr "Atas" msgid "Top-and-Bottom" msgstr "Atas-dan-Bawah" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12387,7 +12521,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Cina Tradisional" @@ -12407,8 +12541,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Ralat Traversal" @@ -12435,7 +12569,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Pemicu" @@ -12445,7 +12579,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12459,7 +12593,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12471,7 +12605,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12489,14 +12623,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12504,7 +12638,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12513,7 +12647,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12580,11 +12714,11 @@ msgstr "Imej GC/Wii Tak Mampat (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Buat Asal Muat Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Buat Asal Keadaan Simpan" @@ -12604,28 +12738,28 @@ msgstr "" "Menyahpasang WAD akan membuang versi terpasang semasa bagi tajuk ini dari " "NAND tanpa memadam data simpannya. Mahu teruskan?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Amerika Syarikat" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Tidak diketahui" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12696,11 +12830,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Tanpa had" @@ -12712,20 +12846,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12752,7 +12874,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Integer Tidak Bertanda" @@ -12766,8 +12888,8 @@ msgstr "Integer Tidak Bertanda" msgid "Up" msgstr "Naik" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Kemaskini" @@ -12775,11 +12897,11 @@ msgstr "Kemaskini" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12824,7 +12946,7 @@ msgstr "Togol Tegak" msgid "Upright Wii Remote" msgstr "Wii Remote Tegak" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Tetapan Pelaporan Statistik Penggunaan" @@ -12832,15 +12954,15 @@ msgstr "Tetapan Pelaporan Statistik Penggunaan" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Guna Pangkalan Data Terbina-Dalam Nama Permainan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12848,15 +12970,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Guna Mod PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Guna Pengendali Panik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12892,7 +13020,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Antaramuka Pengguna" @@ -12907,10 +13035,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12919,14 +13054,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13189,8 +13324,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Amaran" @@ -13200,7 +13335,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13212,28 +13347,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13278,7 +13413,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13286,7 +13421,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13294,7 +13429,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Peranti Menerusi USB Senarai Putih" @@ -13326,25 +13461,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Jauh Wii %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Tetapan Kawalan Jauh Wii" @@ -13352,19 +13487,19 @@ msgstr "Tetapan Kawalan Jauh Wii" msgid "Wii Remotes" msgstr "Wii Remotes" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii dan Wii Remote" @@ -13372,7 +13507,7 @@ msgstr "Wii dan Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fail simpan Wii (*.bin);;Semua Fail (*)" @@ -13380,13 +13515,7 @@ msgstr "Fail simpan Wii (*.bin);;Semua Fail (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13395,11 +13524,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13413,10 +13542,11 @@ msgstr "Dunia" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Tulis" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13449,39 +13579,39 @@ msgstr "Tulis ke Log dan Henti" msgid "Write to Window" msgstr "Tulis ke Tetingkap" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Daftar XF" @@ -13490,9 +13620,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13520,14 +13650,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13608,7 +13738,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Anda mesti mulakan semula Dolphin supaya perubahan berkesan." @@ -13628,16 +13758,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13646,7 +13776,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Kod Zero 3 tidak disokong" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13695,7 +13825,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13703,7 +13833,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13711,7 +13841,7 @@ msgstr "" msgid "fake-completion" msgstr "pelengkapan-palsu" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13759,16 +13889,6 @@ msgstr "" msgid "none" msgstr "tiada" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "hidup" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "atau pilih satu peranti" @@ -13786,7 +13906,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13851,12 +13971,9 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"(c) 2003-2015+ Pasukan Dolphin. \"GameCube\" dan \"Wii\" adalah tanda " -"dagangan Nintendo. Dolphin tidak berkaitan dengan Nintendo dalam apa jua " -"keadaan." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/nb.po b/Languages/po/nb.po index ce7d755dc7..878dec49fd 100644 --- a/Languages/po/nb.po +++ b/Languages/po/nb.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" @@ -95,7 +95,7 @@ msgstr "" "%1\n" "vil bli med i din gruppe." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -129,7 +129,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revisjon %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -149,7 +149,7 @@ msgstr "%1 (tregt)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -163,11 +163,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Grafikkoppsett" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -184,7 +184,7 @@ msgstr "%1 støtter ikke denne funksjonen på ditt system." msgid "%1 doesn't support this feature." msgstr "%1 støtter ikke denne funksjonen." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -194,33 +194,27 @@ msgstr "" "%2 objekt(er)\n" "Nåværende bilderute: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 ble med" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 har forlatt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 golfer nå" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -228,13 +222,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -246,30 +240,30 @@ msgstr "%1 økt funnet" msgid "%1 sessions found" msgstr "%1 økter funnet" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normal hastighet)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -281,6 +275,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -350,11 +348,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Om" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Legg til minnestoppunkt" @@ -363,7 +361,7 @@ msgstr "&Legg til minnestoppunkt" msgid "&Add New Code..." msgstr "&Legg til ny kode…" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Legg til funksjon" @@ -371,15 +369,15 @@ msgstr "&Legg til funksjon" msgid "&Add..." msgstr "&Legg til..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Lyd-innstillinger" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Autooppdater:" @@ -387,11 +385,15 @@ msgstr "&Autooppdater:" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Brytepunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Feilsporer" @@ -399,15 +401,15 @@ msgstr "&Feilsporer" msgid "&Cancel" msgstr "&Avbryt" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Se etter oppdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Tøm symboler" @@ -415,7 +417,7 @@ msgstr "&Tøm symboler" msgid "&Clone..." msgstr "&Dupliser..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Kode" @@ -423,16 +425,15 @@ msgstr "&Kode" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Kontroller-innstillinger" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Kopier adresse" @@ -440,20 +441,20 @@ msgstr "&Kopier adresse" msgid "&Create..." msgstr "&Opprett …" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Slett" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Slett Overvåker" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -467,11 +468,11 @@ msgstr "&Rediger kode…" msgid "&Edit..." msgstr "&Rediger..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Løs ut disk" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulering" @@ -491,41 +492,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Skrift…" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Bilde for bilde" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "%Generer symboler fra" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub-pakkebrønn" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafikkinnstillinger" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Hjelp" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Innstillinger for &hurtigtaster" @@ -545,11 +546,11 @@ msgstr "" msgid "&Import..." msgstr "&Importer..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Sett inn blr" @@ -557,23 +558,23 @@ msgstr "&Sett inn blr" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Språk:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "Åpne hurtiglagring" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Last symbolkart" @@ -583,19 +584,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Lås fast moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Film" @@ -603,7 +608,7 @@ msgstr "&Film" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Nettverk" @@ -612,23 +617,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Åpne…" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Innstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Patch HLE-funksjoner" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Spill" @@ -636,7 +641,7 @@ msgstr "&Spill" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Skrivebeskyttet modus" @@ -644,7 +649,7 @@ msgstr "&Skrivebeskyttet modus" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registere" @@ -657,24 +662,24 @@ msgstr "&Fjern" msgid "&Remove Code" msgstr "&Fjern kode" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Gi symbol nytt navn" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Tilbakestill" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Ressurspakke-behandler" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Lagre symbolkart" @@ -682,31 +687,31 @@ msgstr "&Lagre symbolkart" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Fartsgrense:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "S&topp" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Drakt:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Tråder" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Verktøy" @@ -716,21 +721,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "Vi&s" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Se" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Nettside" @@ -742,23 +747,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' ikke funnet, ingen symbolnavn generert" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' ikke funnet, scanner for vanlige funksjoner istedet" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -794,12 +799,12 @@ msgstr "- Trekk fra" msgid "--> %1" msgstr "→ %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -860,7 +865,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -918,7 +923,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -944,7 +949,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokker)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1037,26 +1042,26 @@ msgstr "< Mindre enn" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1082,8 +1087,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Større enn" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "En NetPlay-økt finnes allerede!" @@ -1097,7 +1102,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "En plate er i ferd med å bli satt inn." @@ -1111,7 +1116,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1129,7 +1134,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Synkronisering kan bare utløses når et Wii-spill kjører." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1165,7 +1170,7 @@ msgstr "" "Wiimote-støtte i NetPlay er eksperimentell, og kan muligens fungere feil.\n" "Benytt med din egen risiko.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kode" @@ -1208,16 +1213,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Handling" @@ -1290,7 +1289,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "Aktiver NetPlay-chat" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktiv" @@ -1298,15 +1297,15 @@ msgstr "Aktiv" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Aktive tråder" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1314,7 +1313,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter oppdaget" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1324,7 +1323,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Legg til" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1349,43 +1348,43 @@ msgstr "Legg til et Stoppunkt" msgid "Add a Memory Breakpoint" msgstr "Legg til et MinneStoppunkt" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Legg til i &overvåkingslisten" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Legg til…" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adresse" @@ -1520,7 +1519,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1529,7 +1528,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1537,34 +1536,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Alle filer (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle lagringsstadier (*.sav *.s##);; Alle filer (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1580,7 +1579,7 @@ msgstr "Alle spilleres koder er synkronisert." msgid "All players' saves synchronized." msgstr "Alle spilleres lagringsfiler er synkronisert." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1588,7 +1587,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "Tillat rapportering av brukerstatistikk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Tillat lagringer til SD-kort" @@ -1606,7 +1605,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Alternative inndatakilder" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1628,7 +1627,7 @@ msgstr "En innsatt plate var forventet, men ble ikke funnet." msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analyser" @@ -1654,15 +1653,15 @@ msgstr "Kantutjevning:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Legg signatur til" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Føy på til &eksisterende signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Legg p&å Singaturfil..." @@ -1680,7 +1679,7 @@ msgstr "Programinnlaster-dato:" msgid "Apply" msgstr "Bruk" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Bruk signaturfil" @@ -1688,7 +1687,7 @@ msgstr "Bruk signaturfil" msgid "Arbitrary Mipmap Detection" msgstr "Arbitrær Mipmap Oppdagelse" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Er du sikker på at du vil slette \"%1\"?" @@ -1700,7 +1699,7 @@ msgstr "Er du sikker på at du vil slette denne filen?" msgid "Are you sure you want to delete this pack?" msgstr "Er du sikker på at du vil slette denne pakken?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Er du sikker på at du vil avslutte NetPlay?" @@ -1712,16 +1711,16 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Billedforhold:" @@ -1729,7 +1728,7 @@ msgstr "Billedforhold:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1741,7 +1740,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Velg kontrollerporter" @@ -1762,11 +1761,11 @@ msgstr "Tilknytt MotionPlus" msgid "Audio" msgstr "Lyd-CD" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Lyd-bakende:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Innstillinger for lydstrekking" @@ -1782,7 +1781,7 @@ msgstr "Forfatter" msgid "Authors" msgstr "Forfattere" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1791,11 +1790,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplum av 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Auto-oppdater innstillinger" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1807,7 +1806,7 @@ msgstr "" "\n" "Vennligst velg en spesifikk intern oppløsning." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Automatisk justering av vindusstørrelse" @@ -1815,15 +1814,15 @@ msgstr "Automatisk justering av vindusstørrelse" msgid "Auto-Hide" msgstr "Gjem automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Vil du auto-oppdage RSO-moduler?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1863,27 +1862,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP-register " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Bakende-innstillinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Motor:" @@ -1926,7 +1925,7 @@ msgstr "Dårlig verdi angitt." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -1946,15 +1945,15 @@ msgstr "Bjelke" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Grunnprioritet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Grunnleggende" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Grunnleggende innstillinger" @@ -1970,10 +1969,6 @@ msgstr "" msgid "Battery" msgstr "Batteri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (en gang i måneden)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, osv." @@ -2006,11 +2001,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitfrekvens (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2020,7 +2015,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blokkstørrelse" @@ -2058,67 +2053,67 @@ msgstr "" "Blåtann gjennomstrømningsmodus er aktivert, men Dolphin ble bygd uten " "Libusdb. Gjennomstrømmingsmodus kan ikke benyttes." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Start opp i pausemodus" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND sikkerhetskopifil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii nøkkelfil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Rammefri fullskjermsvisning" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Nede" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2130,23 +2125,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2163,7 +2158,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2173,19 +2168,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2200,19 +2195,24 @@ msgstr "Grener" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Stopp" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Stoppunkt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Stoppunkt nådd! Utstepping avbrutt." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Stoppunkter" @@ -2246,24 +2246,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Utforsk &NetPlay-sesjoner..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Hurtiglagerstørrelse:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Bufferstørrelse endret til %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Mellomlager:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2308,11 +2308,11 @@ msgstr "" msgid "C Stick" msgstr "C-joystick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "Lag Signatu&rfil..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP-register " @@ -2332,7 +2332,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Hurtiglagret fortolker (tregere)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2363,7 +2363,7 @@ msgstr "Kalibrering" msgid "Calibration Period" msgstr "Kalibreringsperiode" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2389,7 +2389,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2405,18 +2405,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Kan ikke starte en NetPlay-økt mens et spill er aktivt!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Avbryt" @@ -2425,15 +2425,15 @@ msgstr "Avbryt" msgid "Cancel Calibration" msgstr "Avbryt kalibrering" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2450,11 +2450,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Finner ikke GC IPL." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2462,7 +2462,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2470,7 +2470,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Kan ikke starte spillet, fordi GC IPL ikke ble funnet." @@ -2502,7 +2502,7 @@ msgstr "Sentrer og kalibrer" msgid "Change &Disc" msgstr "Endre &disk" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Endre &disk…" @@ -2510,15 +2510,21 @@ msgstr "Endre &disk…" msgid "Change Disc" msgstr "Endre disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Endre disk automatisk" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2536,7 +2542,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Endring av juksekode vil kun tre i kraft etter at spillet er startet på nytt." @@ -2545,11 +2551,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2557,7 +2563,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Juksekode-redigeringsverktøy" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Juksekodesøk" @@ -2565,7 +2571,7 @@ msgstr "Juksekodesøk" msgid "Cheats Manager" msgstr "Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Sjekk NAND..." @@ -2585,7 +2591,7 @@ msgstr "" "Sjekk om du har tillatelsene påkrevd for å slette denne filen, eller om " "filen fortsatt er i bruk." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Sjekksum" @@ -2597,7 +2603,7 @@ msgstr "Kina" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Velg en fil å åpne" @@ -2605,15 +2611,15 @@ msgstr "Velg en fil å åpne" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Velg prioritetsinputfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Velg andre input fil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2626,7 +2632,7 @@ msgstr "Velg mappen å pakke ut til" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Klassiske knapper" @@ -2637,18 +2643,18 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Nullstill" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Tøm mellomlager" @@ -2669,7 +2675,7 @@ msgstr "Klon og &rediger kode..." msgid "Close" msgstr "Lukk" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "&Oppsett" @@ -2677,11 +2683,11 @@ msgstr "&Oppsett" msgid "Code" msgstr "Kode" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2709,11 +2715,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Kombiner &to signaturfiler..." @@ -2740,7 +2746,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Kompiler shadere før start" @@ -2750,7 +2756,7 @@ msgstr "Komplierer skygger" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Kompresjon" @@ -2763,7 +2769,7 @@ msgstr "Kompresjonsnivå:" msgid "Compression:" msgstr "Komprimering:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2771,11 +2777,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Betingelse" @@ -2791,7 +2797,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2806,7 +2812,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2860,7 +2871,7 @@ msgstr "Sett opp" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Sett opp Dolphin" @@ -2873,27 +2884,27 @@ msgstr "Sett opp inndata" msgid "Configure Output" msgstr "Sett opp utdata" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekreft" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Bekreft endring av backend" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Bekreft ved stans" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Bekreftelse" @@ -2903,15 +2914,15 @@ msgstr "Bekreftelse" msgid "Connect" msgstr "Koble til" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Koble til balansebrett" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Koble til USB-tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Koble til Wii Remote %1" @@ -2931,7 +2942,7 @@ msgstr "Koble til Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Koble til Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Koble til Wii Remote-er" @@ -2947,7 +2958,7 @@ msgstr "Koble til Internett og utfør nettbasert systemoppdatering?" msgid "Connected" msgstr "Tilkoblet" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2972,7 +2983,7 @@ msgstr "Kontroller NetPlay-golfmodus" msgid "Control Stick" msgstr "Sirkel-joystick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Kontrollerprofil" @@ -3065,8 +3076,8 @@ msgstr "" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3074,9 +3085,9 @@ msgstr "" msgid "Convert" msgstr "Konverter" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3084,9 +3095,9 @@ msgstr "" msgid "Convert File..." msgstr "Konverter fil …" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3106,8 +3117,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Konverterer…" @@ -3136,22 +3147,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopier" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopier &funksjon" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Kopier &heksadesimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopier adresse" @@ -3159,19 +3170,19 @@ msgstr "Kopier adresse" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Kopier heksadesimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Kopier kode&linje" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3189,8 +3200,8 @@ msgstr "Kopier til B" msgid "Core" msgstr "Kjerne" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3305,7 +3316,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Kunne ikke finne sentral tjener" @@ -3321,13 +3332,13 @@ msgstr "Kunne ikke lese fil." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3341,7 +3352,7 @@ msgstr "Opprett et nytt minnekort" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3358,11 +3369,11 @@ msgstr "Skaper:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Beskjær" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3374,42 +3385,42 @@ msgstr "" msgid "Crossfade" msgstr "Kryssutfasing" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Nåværende region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Nåværende sammenheng" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Nåværende spill" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Nåværende tråd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3417,15 +3428,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3468,7 +3479,7 @@ msgstr "DJ dreiebord" msgid "DK Bongos" msgstr "DK-bongotrommer" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP-emuleringsmotor" @@ -3476,15 +3487,15 @@ msgstr "DSP-emuleringsmotor" msgid "DSP HLE (fast)" msgstr "DSP HLE (raskt)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3510,7 +3521,7 @@ msgstr "Dansematte" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Data" @@ -3555,8 +3566,8 @@ msgstr "Dødsone" msgid "Debug" msgstr "Feilsøk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Feilretting" @@ -3565,7 +3576,7 @@ msgstr "Feilretting" msgid "Decimal" msgstr "Desimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Dekodingskvalitet:" @@ -3604,7 +3615,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Standard" @@ -3612,7 +3623,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "Standard Konfigurasjon (Kun Lesing)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Standard enhet" @@ -3624,11 +3635,11 @@ msgstr "Forvalgt skrift" msgid "Default ISO:" msgstr "Forvalgt ISO-fil:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Standardtråd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Utsett EFB cahce-invalidering" @@ -3636,7 +3647,7 @@ msgstr "Utsett EFB cahce-invalidering" msgid "Defer EFB Copies to RAM" msgstr "Utsett EFB Kopier til RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3645,8 +3656,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Slett" @@ -3676,12 +3688,12 @@ msgstr "Dybdeprosent:" msgid "Depth:" msgstr "Dybde:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" @@ -3695,8 +3707,8 @@ msgstr "Beskrivelse:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3708,21 +3720,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Frakoblet" @@ -3730,7 +3742,7 @@ msgstr "Frakoblet" msgid "Detect" msgstr "Finn automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3738,11 +3750,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministisk dobbelkjerne:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Utviklingsutgave (flere ganger daglig)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Enhet" @@ -3760,7 +3772,7 @@ msgstr "Enhetsinnstillinger" msgid "Device VID (e.g., 057e)" msgstr "Enhets-VID (f.eks 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Enhet:" @@ -3768,7 +3780,7 @@ msgstr "Enhet:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Demp skjermbelysning etter fem minutters inaktivitet." @@ -3784,11 +3796,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Skru av bounding-box-kalkulasjoner" @@ -3797,7 +3804,7 @@ msgstr "Skru av bounding-box-kalkulasjoner" msgid "Disable Copy Filter" msgstr "Slå av Kopieringsfilter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Slå av EFB VRAM Kopier" @@ -3805,11 +3812,11 @@ msgstr "Slå av EFB VRAM Kopier" msgid "Disable Emulation Speed Limit" msgstr "Skru av hastighetsbegrensning av emulering" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3817,11 +3824,11 @@ msgstr "" msgid "Disable Fog" msgstr "Skru av tåke" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Deaktiver JIT-lager" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3836,7 +3843,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Plate" @@ -3860,6 +3873,10 @@ msgstr "Plate" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3890,11 +3907,11 @@ msgstr "Reiseavstand fra nøytral posisjon." 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Vil du tømme listen over symbolnavn?" @@ -3904,7 +3921,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Vil du stoppe pågående emulering?" @@ -3912,12 +3929,12 @@ msgstr "Vil du stoppe pågående emulering?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II-dekoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO-Logg (*.dff)" @@ -3925,9 +3942,9 @@ msgstr "Dolphin FIFO-Logg (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Map Fil (*.map)" @@ -3939,8 +3956,8 @@ msgstr "Dolphin-signatur-CSV-fil" msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-Filmer (*.dtm)" @@ -3975,7 +3992,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin er for gammel for traverseringsserveren" @@ -3991,13 +4008,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kan ikke verifisere ulisensierte disker." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins juksesystem er for øyeblikket deaktivert." @@ -4006,7 +4023,7 @@ msgstr "Dolphins juksesystem er for øyeblikket deaktivert." msgid "Domain" msgstr "Domene" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Ikke oppdater" @@ -4027,7 +4044,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Dobbel" @@ -4049,7 +4066,7 @@ msgstr "Last ned koder" msgid "Download Codes from the WiiRD Database" msgstr "Last ned koder fra WiiRD-databasen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Last ned spillcovere fra GameTDB.com for bruk i portrettmodus" @@ -4061,6 +4078,16 @@ msgstr "Nedlasting fullført" msgid "Downloaded %1 codes. (added %2)" msgstr "Lastet %1 koder. (Lagt til %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4100,19 +4127,19 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dump lyd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Dump grunnteksturer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Dump EFB-mål" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dumping av bilder" @@ -4120,7 +4147,7 @@ msgstr "Dumping av bilder" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4128,7 +4155,7 @@ msgstr "" msgid "Dump Path:" msgstr "Dump sti:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4153,44 +4180,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Nederlandsk" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Avslutt" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4202,7 +4229,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4210,7 +4237,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Tidlige minneoppdateringer" @@ -4229,7 +4256,16 @@ msgstr "Øst-Asia" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4249,7 +4285,7 @@ msgstr "Effekt" msgid "Effective" msgstr "Effektiv" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4271,11 +4307,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Eksternt bildemellomlager (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emulator-CPU-tråden kjører allerede" @@ -4301,7 +4337,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4323,34 +4359,24 @@ msgstr "Emuleringshastighet" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Aktiver" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Slå på API-valideringslag" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Tillat lydstrekking" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Aktiver juksekoder" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4358,15 +4384,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "Aktiver egendefinert RTC (klokke)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Aktiver bruk av dobbelkjerne" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Aktiver bruk av dobbelkjerne (for bedre ytelse)" @@ -4378,7 +4408,7 @@ msgstr "Aktiver emulert CPU klokkefrekvensoverskridelse" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4386,15 +4416,15 @@ msgstr "" msgid "Enable FPRF" msgstr "Aktiver FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4412,41 +4442,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Aktiver MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Aktiver progressiv skanning" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Aktiver vibrering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Aktiver skjermbeskytter" @@ -4454,19 +4476,23 @@ msgstr "Aktiver skjermbeskytter" msgid "Enable Speaker Data" msgstr "Tillat høyttalerdata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Skru på bruks- og statistikkrapportering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Aktiver wireframe" @@ -4474,34 +4500,13 @@ msgstr "Aktiver wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4509,34 +4514,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4571,7 +4583,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4579,7 +4591,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4596,7 +4608,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "Tillater strekking av lyden for å matche emuleringshastigheten." @@ -4624,7 +4636,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4632,7 +4644,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4640,7 +4652,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4659,13 +4671,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enhet ble ikke igangsatt" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Engelsk" @@ -4682,7 +4698,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Skriv inn ID for USB-enhet" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4706,33 +4722,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4745,52 +4761,52 @@ msgstr "Skriv inn RSO-moduladresse:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Feil" @@ -4807,7 +4823,7 @@ msgstr "Feil under åpning av adapter: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4822,7 +4838,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Feil ved henting av sesjonsliste: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4917,12 +4933,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4966,11 +4982,11 @@ msgstr "Forventet starten på RegEx-innkapsling." msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Eksperimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-lagringsfiler" @@ -4985,7 +5001,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksporter opptak" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Eksporter opptak…" @@ -5013,14 +5029,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Eksporterte %n lagringsfil(er)." #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Utvidelse" @@ -5033,7 +5049,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Ekstern" @@ -5041,35 +5057,35 @@ msgstr "Ekstern" msgid "External Frame Buffer (XFB)" msgstr "Eksternt bildebuffer (EFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Pakk ut sertifikater fra NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Pakk ut hele disken…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Pakk ut hele partisjonen…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Pakk ut fil…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Pakk ut filer…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Pakk ut systemdata…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Pakker ut alle filer..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Pakker ut mappe..." @@ -5078,8 +5094,8 @@ msgstr "Pakker ut mappe..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO-spiller" @@ -5095,11 +5111,11 @@ msgstr "" "Kunne ikke åpne minnekort:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Kunne ikke legge til på signaturfil '%1'" @@ -5119,7 +5135,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Kunne ikke koble til server: %1" @@ -5140,15 +5156,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "Kunne ikke lage DXGI factory" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5194,15 +5210,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Kunne ikke eksportere følgende lagringsfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Klarte ikke å pakke ut sertifikater fra NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Kunne ikke pakke ut fil." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Kunne ikke pakke ut systemdata." @@ -5221,25 +5237,25 @@ msgstr "Kunne ikke finne en eller flere D3D-symboler" msgid "Failed to import \"%1\"." msgstr "Kunne ikke importere \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Klarte ikke å igangsette kjerne" @@ -5259,11 +5275,11 @@ msgid "Failed to install pack: %1" msgstr "Kunne ikke installere pakke: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Klarte ikke å installere denne tittelen til NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5271,8 +5287,8 @@ msgstr "" "Klarte ikke å lytte til port %1. Kjøres det en annen instans av NetPlay-" "tjeneren?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Kunne ikke laste RSO-modul ved %1" @@ -5284,21 +5300,21 @@ msgstr "Kunne ikke laste d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Kunne ikke laste dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Kunne ikke laste map-fil '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Klarte ikke å laste kjørbar fil til minne." @@ -5312,17 +5328,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Klarte ikke å åpne \"%1\"" @@ -5330,7 +5346,7 @@ msgstr "Klarte ikke å åpne \"%1\"" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5362,15 +5378,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Klarte ikke å åpne tjener" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5378,11 +5394,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5429,23 +5445,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5459,7 +5475,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5493,31 +5509,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Lagring av FIFO-logg mislyktes." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Kunne ikke lagre kodemapping til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Kunne ikke lagre signaturfil '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Kunne ikke lagre symbolkart til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Kunne ikke lagre til signaturfil '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5568,19 +5584,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Feil" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5593,7 +5609,7 @@ msgstr "Rask" msgid "Fast Depth Calculation" msgstr "Rask dybdekalkulering" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5604,7 +5620,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5618,7 +5634,7 @@ msgstr "Fildetaljer" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Filformat" @@ -5626,24 +5642,24 @@ msgstr "Filformat" msgid "File Format:" msgstr "Filformat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Fil-informasjon" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Filnavn" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Filbane" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Filstørrelse" @@ -5731,7 +5747,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flagg" @@ -5740,12 +5755,12 @@ msgstr "Flagg" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Flyttall" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Følg &avgrening" @@ -5767,7 +5782,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Tving 16:9" @@ -5775,7 +5790,7 @@ msgstr "Tving 16:9" msgid "Force 24-Bit Color" msgstr "Tving 24-biters farge" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Tving 4:3" @@ -5807,11 +5822,11 @@ msgstr "Tving lytteport:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5833,6 +5848,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Format:" @@ -5848,7 +5869,7 @@ msgstr "Fremover" msgid "Forward port (UPnP)" msgstr "Videresendingsport (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Fant %1 resultater for \"%2\"" @@ -5858,7 +5879,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Bilde %1" @@ -5879,11 +5900,11 @@ msgstr "Øk hastighet for bildeforskuddsvisning" msgid "Frame Advance Reset Speed" msgstr "Tilbakestill bilde-for-bilde-hastighet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Bildespennvidde" @@ -5891,7 +5912,7 @@ msgstr "Bildespennvidde" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Bilder å ta opp:" @@ -5911,7 +5932,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5942,7 +5963,7 @@ msgstr "Frisikts-veksling" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Fransk" @@ -5961,8 +5982,8 @@ msgid "From" msgstr "Fra" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Fra:" @@ -5970,10 +5991,14 @@ msgstr "Fra:" msgid "FullScr" msgstr "Fullskjerm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funksjon" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funksjoner" @@ -6014,11 +6039,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6060,7 +6085,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "GPU-teksturdekoding" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6070,25 +6095,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6100,7 +6125,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6118,22 +6143,22 @@ msgstr "" msgid "Game" msgstr "Spill" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-disker (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6162,7 +6187,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Spill-ID" @@ -6171,25 +6196,25 @@ msgstr "Spill-ID" msgid "Game ID:" msgstr "Spill-ID:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Spillstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Spill endret til \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6202,7 +6227,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6222,11 +6247,11 @@ msgstr "GameCube-adapter for Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "GameCube-adapter for Wii U i port %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube-kontroller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "GameCube-kontroller i port %1" @@ -6234,11 +6259,11 @@ msgstr "GameCube-kontroller i port %1" msgid "GameCube Controllers" msgstr "GameCube-kontrollere" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube-tastatur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-tastatur i port %1" @@ -6255,7 +6280,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube-minnekort (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube-mikrofoninngang i inngang %1" @@ -6283,7 +6308,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-juksekoder" @@ -6293,35 +6318,35 @@ msgstr "Gecko-juksekoder" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Generelt" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Generelt og innstillinger" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Opprett en ny statistikk-identitet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Genererte symbolnavn fra '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Tysk" @@ -6348,7 +6373,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golfmodus" @@ -6357,7 +6382,7 @@ msgid "Good dump" msgstr "God dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafikk" @@ -6397,7 +6422,7 @@ msgstr "Grønn venstre" msgid "Green Right" msgstr "Grønn høyre" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Rutenettvisning" @@ -6434,7 +6459,7 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Head" @@ -6466,7 +6491,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Heksadesimal" @@ -6475,11 +6500,11 @@ msgstr "Heksadesimal" msgid "Hide" msgstr "Gjem" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6491,16 +6516,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "Gjem ikke-kompatible sesjoner" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Høy" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Høyest" @@ -6523,7 +6555,7 @@ msgstr "Vert" msgid "Host Code:" msgstr "Vertskode:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Host Input-autoritet" @@ -6531,7 +6563,7 @@ msgstr "Host Input-autoritet" msgid "Host Size" msgstr "Vertstørrelse" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6539,11 +6571,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Vertsinndataautoritet deaktivert" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Vertsinndataautoritet aktivert" @@ -6555,7 +6587,7 @@ msgstr "Vær vertskap med NetPlay" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Tastesnarveis-innstillinger" @@ -6565,11 +6597,11 @@ msgstr "Tastesnarveis-innstillinger" msgid "Hotkeys" msgstr "Hurtigtaster" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6622,12 +6654,12 @@ msgstr "IP-adresse:" msgid "IPL Settings" msgstr "Innstillinger for IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR-sensitivitet:" @@ -6653,14 +6685,14 @@ msgstr "" msgid "Icon" msgstr "Ikon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Identitetsgenerering" @@ -6686,7 +6718,7 @@ msgstr "" "Denne godkjenningen kan tilbakekalles når som helst fra Dolphins " "innstillinger." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6700,14 +6732,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6719,7 +6751,7 @@ msgstr "" msgid "Ignore" msgstr "Ignorer" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6751,7 +6783,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Øyeblikkelig tilgjengelig XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6760,7 +6792,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Importer BootMii NAND sikkerhetskopi..." @@ -6775,15 +6807,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importer Wii-lagringsfil …" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importing NAND sikkerhetskopi" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -6792,6 +6824,15 @@ msgstr "" "Importerer NAND sikkerhetskopi\n" "Tid passert: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "I spillet?" @@ -6869,7 +6910,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6878,7 +6919,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6898,12 +6939,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informasjon" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6912,11 +6953,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Inngang" @@ -6930,23 +6971,19 @@ msgstr "Inndata styrke kreves for aktivering." msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Sett inn &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Sett inn SD-kort" @@ -6959,11 +6996,11 @@ msgstr "Installer" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Installer oppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Installer WAD…" @@ -6971,13 +7008,13 @@ msgstr "Installer WAD…" msgid "Install to the NAND" msgstr "Installer til NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruksjon" @@ -6986,7 +7023,7 @@ msgstr "Instruksjon" msgid "Instruction Breakpoint" msgstr "Instruksjonsstoppunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instruksjon:" @@ -6995,7 +7032,7 @@ msgstr "Instruksjon:" msgid "Instruction: %1" msgstr "Instruksjon: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7012,19 +7049,19 @@ msgstr "Intensitet" msgid "Interface" msgstr "Grensesnitt" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7037,19 +7074,19 @@ msgstr "Intern LZO-feil - komprimering mislyktes" msgid "Internal LZO Error - decompression failed" msgstr "Intern LZO-feil - dekomprimering mislyktes" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7064,7 +7101,7 @@ msgstr "Intern oppløsning" msgid "Internal Resolution:" msgstr "Intern bildeoppløsning:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7072,7 +7109,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Fortolker (tregest)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Fortolkerkjerne" @@ -7088,7 +7125,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ugyldig mikset kode" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Ugyldig Pakke %1 oppgitt: %2" @@ -7097,11 +7134,11 @@ msgstr "Ugyldig Pakke %1 oppgitt: %2" msgid "Invalid Player ID" msgstr "Ugyldig spiller-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Ugyldig RSO-moduladresse: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Ugyldig kallstakk" @@ -7122,7 +7159,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ugyldig inndata for feltet \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Ugyldig inndata oppgitt" @@ -7138,19 +7175,19 @@ msgstr "" msgid "Invalid password provided." msgstr "Ugyldig passord oppgitt." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Ugyldig opptaksfil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Ugyldige søkeparametre (inget objekt valgt)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Ugyldig søkestring (kunne ikke konverte til tall)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Ugyldig søkestreng (bare strenger av partallslengde støttes)" @@ -7158,13 +7195,13 @@ msgstr "Ugyldig søkestreng (bare strenger av partallslengde støttes)" msgid "Invalid title ID." msgstr "Ugyldig tittel-ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiensk" @@ -7177,11 +7214,11 @@ msgstr "Italia" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT Blokklinking Av" @@ -7189,47 +7226,47 @@ msgstr "JIT Blokklinking Av" msgid "JIT Blocks" msgstr "JIT-blokker" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Branching Av" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FlytTall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Heltall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LastLagre Flyt Av" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LastLagre Av" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LastLagre Parret Av" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LastLagre lXz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT Ibzx Av" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LastLagre Iwz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Av (JIT Kjerne)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Parret Av" @@ -7241,31 +7278,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT Systemregistre Av" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japansk" @@ -7282,12 +7319,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Behold vindu øverst" @@ -7321,16 +7358,16 @@ msgstr "Nøkler" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Spark spiller" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Koreansk" @@ -7351,7 +7388,7 @@ msgstr "" msgid "L-Analog" msgstr "Venstre-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7359,7 +7396,11 @@ msgstr "" msgid "Label" msgstr "Etikett" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7373,23 +7414,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Forsinkelse:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7397,7 +7438,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7405,7 +7446,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7416,7 +7457,7 @@ msgstr "Til venstre" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Venstre joystick" @@ -7491,11 +7532,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Begrens Klump-opplastningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Listekolonner" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Listevisning" @@ -7504,30 +7545,30 @@ msgid "Listening" msgstr "Lytter" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Last" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Last &Dårlig kartfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Last &Annen kartfil..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Last inn brukerlagde teksturer" @@ -7535,11 +7576,11 @@ msgstr "Last inn brukerlagde teksturer" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Last inn GameCube-hovedmeny" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7645,23 +7686,23 @@ msgstr "Åpne hurtiglagringsplass nr. 8" msgid "Load State Slot 9" msgstr "Åpne hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Last inn tilstand fra fil" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Last inn tilstand fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Last inn tilstand fra kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Last inn Wii-systemmeny %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7669,54 +7710,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Last fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Last inn fra kortplass %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Last kartfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Last..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Lastet symboler fra '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Lokal" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Logg" @@ -7725,19 +7774,19 @@ msgstr "Logg" msgid "Log Configuration" msgstr "Logg-innstillinger" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Jit-logg Instruksjonsdekning" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Loggfør opptegningstid til fil" @@ -7749,31 +7798,31 @@ msgstr "Loggtyper" msgid "Logger Outputs" msgstr "Logger utdata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Mistet tilkobling til NetPlay-tjener…" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Lav" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Lavest" @@ -7785,7 +7834,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7833,7 +7882,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Skaper" @@ -7850,16 +7899,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Administrer NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mapping" @@ -7871,11 +7920,11 @@ msgstr "" msgid "Match Found" msgstr "Treff funnet" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Maksimal Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Maksimum bufferstørrelse endret til %1" @@ -7884,7 +7933,7 @@ msgstr "Maksimum bufferstørrelse endret til %1" msgid "Maximum tilt angle." msgstr "Maksimal tilt-vinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan senke ytelse i Wii-menyen og noen spill." @@ -7905,7 +7954,7 @@ msgstr "Minne Stoppunkt" msgid "Memory Card" msgstr "Minnekort" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Minnekortbehandler" @@ -7933,7 +7982,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7951,7 +8000,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -7960,15 +8009,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Diverse innstillinger" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7980,7 +8029,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8000,7 +8049,7 @@ msgstr "" msgid "Modifier" msgstr "Modifiserer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8016,8 +8065,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -8025,7 +8074,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8037,11 +8086,11 @@ msgstr "Monoskopiske skygger" msgid "Monospaced Font" msgstr "Fastbreddeskrift" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Bevegelsesinndata" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Bevegelsessimulering" @@ -8050,23 +8099,10 @@ msgstr "Bevegelsessimulering" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8077,13 +8113,13 @@ msgstr "" msgid "Movie" msgstr "Film" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8096,10 +8132,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-sjekk" @@ -8108,8 +8144,8 @@ msgstr "NAND-sjekk" msgid "NKit Warning" msgstr "NKit-advarsel" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8118,7 +8154,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8135,8 +8171,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8179,7 +8215,7 @@ msgstr "Opprinnelig størrelse (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8195,27 +8231,27 @@ msgstr "NetPlay-innstillinger" msgid "Netherlands" msgstr "Nederland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Nettverk" @@ -8223,16 +8259,16 @@ msgstr "Nettverk" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Aldri autooppdater" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nye" @@ -8257,7 +8293,7 @@ msgstr "Nytt søk" msgid "New Tag..." msgstr "Ny merkelapp..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Ny identietet opprettet." @@ -8274,7 +8310,7 @@ msgstr "Ny etikett" msgid "Next Game Profile" msgstr "Neste spillprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Neste treff" @@ -8320,7 +8356,7 @@ msgstr "Ingen komprimering" msgid "No Match" msgstr "Ingen treff" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8328,12 +8364,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Ingen beskrivelse tilgjengelig" @@ -8345,7 +8381,7 @@ msgstr "Ingen feil." msgid "No extension selected." msgstr "Ingen utvidelse valgt." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Ingen filer lastet / tatt opp." @@ -8353,7 +8389,7 @@ msgstr "Ingen filer lastet / tatt opp." msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8366,11 +8402,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Ingen feil har blitt oppdaget." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8396,7 +8432,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Ingen opptak lastet." @@ -8415,10 +8451,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Ingen" @@ -8430,7 +8466,7 @@ msgstr "Nord-Amerika" msgid "Not Set" msgstr "Ikke satt" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Ikke alle spillere har spillet. Vil du virkelig starte?" @@ -8450,7 +8486,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8494,26 +8530,26 @@ msgstr "Antall ristinger per sekund." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Nunchuk-knapper" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Nunchuck-Joystick" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Objekt %1" @@ -8565,7 +8601,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Objektrekkevidde" @@ -8586,18 +8622,18 @@ msgstr "" msgid "On" msgstr "På" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8612,7 +8648,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Nettbasert &dokumentasjon" @@ -8620,7 +8656,7 @@ msgstr "Nettbasert &dokumentasjon" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8628,7 +8664,7 @@ msgstr "" "Legg til kun symboler med prefiks:\n" "(Blank for alle symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8647,7 +8683,7 @@ msgstr "Åpne" msgid "Open &Containing Folder" msgstr "Åpne &inneholdende mappe" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8656,7 +8692,7 @@ msgstr "" msgid "Open Directory..." msgstr "Åpne mappe..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Åpne FIFO-logg" @@ -8722,34 +8758,34 @@ msgstr "Orange" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8764,11 +8800,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Andre Status-hurtigtaster" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Annen Statusadministrering" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Andre spill..." @@ -8784,16 +8820,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Spi&ll av inndataopptak…" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8806,11 +8842,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8822,7 +8858,7 @@ msgstr "PNG-bildefil (*.png);; Alle filer (*)" msgid "PPC Size" msgstr "PPC-størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8856,7 +8892,7 @@ msgstr "Passiv" msgid "Passthrough a Bluetooth adapter" msgstr "Gjennomstrøm en Blåtann-adapter" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Passord" @@ -8895,15 +8931,15 @@ msgstr "Baner" msgid "Pause" msgstr "Pause" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pause på slutten av filmen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pause ved tapt fokus" @@ -8919,6 +8955,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8938,7 +8980,7 @@ msgstr "Høyeste fart for utgående svingbevegelser." msgid "Per-Pixel Lighting" msgstr "Belysning per piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Utfør pålogget systemoppdatering" @@ -8946,15 +8988,15 @@ msgstr "Utfør pålogget systemoppdatering" msgid "Perform System Update" msgstr "Utfør systemoppdatering" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8972,11 +9014,11 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Velg en debug-font" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -8989,7 +9031,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plattform" @@ -8997,7 +9039,7 @@ msgstr "Plattform" msgid "Play" msgstr "Spill av" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Spill/Ta opp" @@ -9009,40 +9051,40 @@ msgstr "Spill av opptak" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Avspillingsalterntiver" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Spiller" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Spillere" @@ -9059,7 +9101,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9075,7 +9117,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Port %1" @@ -9092,7 +9134,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Potensiell desynkronisering oppdaget: %1 kan ha desynkroniser i bilde %2" @@ -9109,24 +9151,32 @@ msgstr "Postbehandlingseffekt:" msgid "Post-Processing Shader Configuration" msgstr "Oppsett av Etterbehandlings-skyggelegging" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Forhåndsinnlasting av egendefinerte teksturer" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9151,7 +9201,7 @@ msgstr "Trykk Synkroniseringsknapp" msgid "Pressure" msgstr "Trykk" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9166,7 +9216,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Forrige spillprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Forrige spill" @@ -9177,7 +9227,7 @@ msgstr "Forrige profil" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9217,7 +9267,7 @@ msgstr "" "Problemer med medium alvorlighetsgrad funnet. Hele eller deler av spillet " "vil sannsynligvis ikke fungere riktig." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9226,23 +9276,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "Programteller" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Fremdrift" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Tøm spillistehurtiglager" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9262,18 +9318,18 @@ msgstr "Quality of Service (QoS) kunne ikke aktiveres." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) ble aktivert." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Spørsmål" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Avslutt" @@ -9290,19 +9346,19 @@ msgstr "H" msgid "R-Analog" msgstr "Høyre-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO-autooppdaging" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "KJØRER" @@ -9323,7 +9379,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9331,16 +9387,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "B&ytt instruksjon" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Les" @@ -9379,8 +9436,8 @@ msgstr "Ekte Wii Remote" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9389,23 +9446,23 @@ msgstr "" msgid "Recenter" msgstr "Sentrer igjen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Opptak" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Ta opp inndata" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Tar opp" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opptaksinnstillinger" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Tar opp..." @@ -9438,7 +9495,7 @@ msgstr "'Redump.org-'status:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9469,7 +9526,7 @@ msgid "Refreshing..." msgstr "Gjennoppfrisker..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9490,7 +9547,11 @@ msgstr "Relativ inndata" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Minn Meg Senere" @@ -9498,7 +9559,7 @@ msgstr "Minn Meg Senere" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Fjern" @@ -9526,20 +9587,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "&Gi symbol nytt navn" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Renderingsvindu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Spill i hovedvinduet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9553,10 +9614,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "Forespørsel om å bli med i din gruppe" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9566,7 +9633,7 @@ msgstr "Nullstill" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9598,7 +9665,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Tilbakestill alle Wii-kontroll parringer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9610,7 +9677,7 @@ msgstr "Ressurspakkebehandler" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Omstart påkrevd" @@ -9618,11 +9685,11 @@ msgstr "Omstart påkrevd" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Tilbakestill instruksjon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Forsøk igjen" @@ -9631,7 +9698,7 @@ msgstr "Forsøk igjen" msgid "Return Speed" msgstr "Returhastighet" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revisjon" @@ -9643,7 +9710,7 @@ msgstr "Revisjon: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9654,7 +9721,7 @@ msgstr "Til høyre" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Høyre joystick" @@ -9690,11 +9757,11 @@ msgstr "Rull mot venstre" msgid "Roll Right" msgstr "Rull mot høyre" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Rom-ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9712,27 +9779,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9745,7 +9816,7 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Kjør &Til Hit" @@ -9753,15 +9824,15 @@ msgstr "Kjør &Til Hit" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9769,23 +9840,23 @@ msgstr "" msgid "Russia" msgstr "Russland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-kortbilde (*.raw);;Alle filer (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD-kort-sti:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9793,7 +9864,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9828,11 +9899,11 @@ msgstr "SSL-sammenheng" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Lag&ringskode" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Lagre &stadie" @@ -9842,9 +9913,9 @@ msgid "Safe" msgstr "Sikker" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9854,25 +9925,25 @@ msgstr "Lagre" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Lagringsfil Eksport" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Lagre FIFO-logg" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Lagre fil til" @@ -9886,11 +9957,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Lagre import" @@ -9902,7 +9973,7 @@ msgstr "Lagre eldste hurtiglagring" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9952,23 +10023,23 @@ msgstr "Hurtiglagringsplass nr. 8" msgid "Save State Slot 9" msgstr "Hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Lagre tilstand til fil" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Lagre tilstand til eldste kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Lagre tilstand til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Lagre tilstand til kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "&Lagre symbolkart som..." @@ -9976,7 +10047,7 @@ msgstr "&Lagre symbolkart som..." msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Lagre og last inn tilstand" @@ -9988,11 +10059,11 @@ msgstr "" msgid "Save as..." msgstr "Lagre som …" -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Lagre kombinert utdatafil som" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10006,11 +10077,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Lagre kartfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Lagre signaturfil" @@ -10018,11 +10089,11 @@ msgstr "Lagre signaturfil" msgid "Save to Selected Slot" msgstr "Lagre til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Lagre til kortplass %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Lagre …" @@ -10035,7 +10106,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -10052,8 +10123,8 @@ msgid "ScrShot" msgstr "SkjDump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Søk" @@ -10062,7 +10133,7 @@ msgstr "Søk" msgid "Search Address" msgstr "Søkeadresse" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Søk i nåværende objekt" @@ -10080,7 +10151,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Søk etter en instruks" @@ -10088,7 +10159,7 @@ msgstr "Søk etter en instruks" msgid "Search games..." msgstr "Søk spill..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Søk instruksjon" @@ -10123,7 +10194,7 @@ msgstr "Velg" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10134,23 +10205,23 @@ msgid "Select Dump Path" msgstr "Velg dumpens filbane" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Velg eksportmappe" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10178,7 +10249,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Velg inngang %1 - %2" @@ -10186,7 +10257,7 @@ msgstr "Velg inngang %1 - %2" msgid "Select State" msgstr "Velg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Velg kortplass for lagringsstadie" @@ -10247,13 +10318,13 @@ msgstr "Velg mappe" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Velg en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10261,7 +10332,7 @@ msgstr "" msgid "Select a Game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Velg en SD-kortbilledfil" @@ -10273,7 +10344,7 @@ msgstr "" msgid "Select a game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Velg en tittel å installere til NAND" @@ -10281,11 +10352,11 @@ msgstr "Velg en tittel å installere til NAND" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Velg RSO-moduladressen:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10293,12 +10364,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Velg nøkkelfil (OTP/SEEPROM dump)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Velg lagringsfil" @@ -10321,16 +10392,16 @@ msgstr "Valgt kontrolprofil finnes ikke" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Valgt spill eksisterer ikke i spillisten!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10346,7 +10417,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10376,7 +10447,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10398,7 +10469,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10408,11 +10479,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Send" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Sensorbjelkeposisjon:" @@ -10440,6 +10511,10 @@ msgstr "Tjeneren avslo traverseringsforsøk" msgid "Set &Value" msgstr "Sett &verdi" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10457,23 +10532,23 @@ msgstr "Angi minnekortfil for inngang A" msgid "Set memory card file for Slot B" msgstr "Angi minnekortfil for inngang B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Sett symbol-&sluttadresse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Angi symbol&størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Sett symbol-sluttadresse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Angi symbolstørrelse (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10483,29 +10558,44 @@ msgstr "" "spill.\n" "Fungerer kanskje ikke i alle spill." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Sett Wii-systemspråket." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Innstillinger" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Kan ikke opprette «setting.txt»-fil" @@ -10513,7 +10603,7 @@ msgstr "SetupWiiMemory: Kan ikke opprette «setting.txt»-fil" msgid "Severity" msgstr "Alvorlighetsgrad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Skygeleggerkompilering" @@ -10535,32 +10625,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Vis &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Vis &verktøylinje" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Vis aktiv tittel i vindustittel" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Vis Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Vis nåværende spill på Discord" @@ -10569,7 +10659,7 @@ msgstr "Vis nåværende spill på Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" @@ -10578,31 +10668,31 @@ msgstr "Vis ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Vis bildefrekvens (FPS)" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Vis bildeteller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Vis Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Vis Tyskland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Vis golfmodusoverlegg" @@ -10610,23 +10700,23 @@ msgstr "Vis golfmodusoverlegg" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Vis inndataskjerm" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Vis Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Vis lagteller" @@ -10634,27 +10724,27 @@ msgstr "Vis lagteller" msgid "Show Language:" msgstr "Vis språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Vis logg&oppsett" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Vis NetPlay-meldinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Vis NetPlay-ping" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Vis Nederland" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Vis Skjerm-meldinger" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Vis PAL" @@ -10663,27 +10753,27 @@ msgstr "Vis PAL" msgid "Show PC" msgstr "Vis PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Vis plattformer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Vis Russland" @@ -10691,72 +10781,72 @@ msgstr "Vis Russland" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Vis Spania" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Vis systemklokke" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Vis ukjent" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Vis verden" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Vis i &minne" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Vis i kode" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10764,71 +10854,104 @@ msgstr "" msgid "Show in server browser" msgstr "Vis i vertsliste" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10850,7 +10973,7 @@ msgstr "Sideveisveksling" msgid "Sideways Wii Remote" msgstr "Sideveis Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Signaturdatabase" @@ -10869,12 +10992,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Signert heltall" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Forenklet kinesisk" @@ -10891,7 +11014,7 @@ msgstr "" msgid "Size" msgstr "Størrelse" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10903,7 +11026,7 @@ msgstr "" msgid "Skip" msgstr "Hopp over" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10947,6 +11070,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -11019,7 +11145,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Sorter alfabetisk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Lyd:" @@ -11033,7 +11159,7 @@ msgstr "Spania" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spansk" @@ -11041,19 +11167,19 @@ msgstr "Spansk" msgid "Speaker Pan" msgstr "Høytaler-lydforskyvelse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Lydstyrke:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Spesifikk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11078,11 +11204,11 @@ msgstr "Hastighet" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -11090,25 +11216,25 @@ msgstr "" msgid "Standard Controller" msgstr "Forvalgt kontroller" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Start &NetPlay…" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Start inn&dataopptak" @@ -11116,7 +11242,7 @@ msgstr "Start inn&dataopptak" msgid "Start Recording" msgstr "Start opptak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11128,14 +11254,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Startet spill" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Tilstand" @@ -11167,19 +11293,19 @@ msgstr "Stepp ut" msgid "Step Over" msgstr "Stepp over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Utstepping vellykket!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Utstepping tidsutløp!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Stepper over..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Stepp vellykket!" @@ -11188,7 +11314,7 @@ msgstr "Stepp vellykket!" msgid "Stepping" msgstr "Stepper" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stereo" @@ -11217,16 +11343,16 @@ msgid "Stick" msgstr "Joystick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Stopp avspilling/opptak av inndata" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Stoppet spill" @@ -11258,11 +11384,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Strekk til Vindu" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Streng innstillingssynkronisering" @@ -11276,7 +11402,11 @@ msgstr "Streng" msgid "Strum" msgstr "Klimpre" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11287,18 +11417,18 @@ msgstr "" msgid "Stylus" msgstr "Penn" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Vellykket" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Lagt til i NetPlay-indeksen" @@ -11308,7 +11438,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Slettet '%1'." @@ -11321,24 +11451,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Eksportering av lagringsfiler var vellykket" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Ekstrahering av sertifikat fra NAND vellykket" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Ekstrahering av fil vellykket." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Ekstrahering av systemdata vellykket." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Installering av tittelen til NAND var vellykket." @@ -11361,16 +11491,16 @@ msgstr "Støtte" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Støtter SD og SDHC. Standardstørrelsen er 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Suspendert" @@ -11414,17 +11544,17 @@ msgstr "Bytt til B" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Symbol (%1) endeadresse:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Symbolnavn:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symboler" @@ -11432,7 +11562,7 @@ msgstr "Symboler" msgid "Sync" msgstr "Synkroniser" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Synkroniser AR/Gecko-koder" @@ -11452,7 +11582,7 @@ msgstr "" "Synkroniserer GPU- og CPU-trådene for å hindre tilfeldige frys i " "dobbelkjernemodus. (PÅ = kompatibel, AV = raskt)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11471,24 +11601,24 @@ msgid "Synchronizing save data..." msgstr "Synkroniserer lagringsdata..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS-inndata" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS-verktøy" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Etiketter" @@ -11498,7 +11628,7 @@ msgstr "Etiketter" msgid "Taiko Drum" msgstr "Taiko-tromme" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Hale" @@ -11506,7 +11636,7 @@ msgstr "Hale" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Ta skjermbilde" @@ -11514,7 +11644,7 @@ msgstr "Ta skjermbilde" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11530,9 +11660,9 @@ msgstr "" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11545,7 +11675,7 @@ msgstr "Tekstur-hurtiglager" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11557,7 +11687,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Teksturformat-overlegg" @@ -11594,7 +11724,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "Mesterverk-partisjonene mangler." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11602,7 +11732,7 @@ msgstr "" "NAND kunne ikke repareres. Det er anbefalt å sikkerhetskopiere dine " "nåværende data for deretter å starte med en blank NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND er blitt reparert." @@ -11617,7 +11747,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11664,7 +11794,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11674,7 +11804,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Disken som skulle settes inn ble ikke funnet." @@ -11755,7 +11885,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Filsystemet er ugyldig eller kunne ikke leses." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11799,7 +11929,7 @@ msgstr "" "systemmenyen er det ikke mulig å oppdatere den emulerte konsollen ved bruk " "av denne platen." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11860,12 +11990,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Profilen \"%1\" finnes ikke" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11888,7 +12018,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11926,7 +12056,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11988,7 +12118,7 @@ msgstr "Oppdateringspartisjonen mangler." msgid "The update partition is not at its normal position." msgstr "Oppdateringspartisjonen er ikke ved sin normale posisjon." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12010,6 +12140,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Det er for mange partisjoner i den første partisjonstabellen." @@ -12021,8 +12155,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12076,11 +12210,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "USB-enheten er allerede hvitelistet." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Denne WAD kan ikke startes." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Denne WAD er ikke gyldig." @@ -12098,7 +12232,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Dette kan ikke omgjøres!" @@ -12215,7 +12349,7 @@ msgstr "" msgid "This is a good dump." msgstr "Dette er en god dump." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12241,7 +12375,7 @@ msgstr "" "Denne programvaren bør ikke benyttes til å kjøre spill du ikke eier selv " "lovlig." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Denne tittelen kan ikke startes." @@ -12283,7 +12417,7 @@ msgid "" msgstr "" "Denne verdien er multiplisert med dybden som er valgt i grafikkoppsettet." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12298,7 +12432,7 @@ msgstr "" "Dette vil begrense hastigheten til klump-opplasting per klient, som brukes " "til lagrefilssynkronisering." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12306,11 +12440,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Tråder" @@ -12333,14 +12467,14 @@ msgstr "Vend" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Tittel" @@ -12349,12 +12483,12 @@ msgid "To" msgstr "Til" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Bruk &fullskjerm" @@ -12379,7 +12513,7 @@ msgid "Toggle Aspect Ratio" msgstr "Skift bildestørrelse" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Slå av/på stoppunkt" @@ -12435,7 +12569,7 @@ msgstr "Veksle XFB Øyeblikkelig Modus" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12443,7 +12577,7 @@ msgstr "" msgid "Toolbar" msgstr "Verktøylinje" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Oppe" @@ -12451,8 +12585,8 @@ msgstr "Oppe" msgid "Top-and-Bottom" msgstr "Topp-og-bunn" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12494,7 +12628,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Tradisjonell kinesisk" @@ -12514,8 +12648,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Traverseringsfeil" @@ -12544,7 +12678,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Triggere" @@ -12554,7 +12688,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12568,7 +12702,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "UKJENT" @@ -12580,7 +12714,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12598,14 +12732,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB hviteliste-feil" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12613,7 +12747,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12622,7 +12756,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12693,11 +12827,11 @@ msgstr "Ukomprimerte GC/Wii bildefiler (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Angre åpning av hurtiglagring" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Angre hurtiglagring" @@ -12717,28 +12851,28 @@ msgstr "" "Å avinstallere WAD-filen vil fjerne den nåværende installerte versjonen av " "denne tittelen fra NAND, uten å slette dens lagringsdata. Fortsett?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "USA" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Ukjent" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12809,11 +12943,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Ubegrenset" @@ -12825,20 +12959,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12865,7 +12987,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Usignert heltall" @@ -12879,8 +13001,8 @@ msgstr "Usignert heltall" msgid "Up" msgstr "Opp" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Oppdater" @@ -12888,11 +13010,11 @@ msgstr "Oppdater" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Oppdater etter at Dolphin er lukket" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Oppdatering tilgjengelig" @@ -12937,7 +13059,7 @@ msgstr "Oppreisningsveksling" msgid "Upright Wii Remote" msgstr "Oppreist Wii-kontroll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Innstillinger for rapportering av bruksstatistikk" @@ -12945,15 +13067,15 @@ msgstr "Innstillinger for rapportering av bruksstatistikk" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Bruk den innebygde databasen over spillnavn" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Bruk tapsfri kodek (FFV1)" @@ -12961,15 +13083,21 @@ msgstr "Bruk tapsfri kodek (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Bruk PAL60-modus (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Bruk panikkadvarslere" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13003,7 +13131,7 @@ msgstr "" msgid "User Config" msgstr "Brukeroppsett" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Brukergrensesnitt" @@ -13018,10 +13146,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13030,14 +13165,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13300,8 +13435,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advarsel" @@ -13311,7 +13446,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13325,28 +13460,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13391,7 +13526,7 @@ msgstr "Vestlig (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13399,7 +13534,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13407,7 +13542,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Hvitelistede USB-gjennomstrømmingsenheter" @@ -13439,25 +13574,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii-kontrollerknapper" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Innstillinger for Wii Remote" @@ -13465,19 +13600,19 @@ msgstr "Innstillinger for Wii Remote" msgid "Wii Remotes" msgstr "Wii Remoter" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii TAS-inndata %1 - Klassisk-kontroller" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii TAS-inndata %1 - Wii-kontroll" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS-inndata %1 - Wii-kontroll + Nunchuck" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii og Wii-kontroll" @@ -13485,7 +13620,7 @@ msgstr "Wii og Wii-kontroll" msgid "Wii data is not public yet" msgstr "Wii-data er ikke offentlige enda" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-lagringsfiler (*.bin);;Alle filer (*)" @@ -13493,13 +13628,7 @@ msgstr "Wii-lagringsfiler (*.bin);;Alle filer (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13508,11 +13637,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13526,10 +13655,11 @@ msgstr "Verden" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Skriv" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13562,39 +13692,39 @@ msgstr "Skriv til logg og stop" msgid "Write to Window" msgstr "Skriv til vindu" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF-register " @@ -13603,9 +13733,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13633,14 +13763,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13723,7 +13853,7 @@ msgstr "Du må angi et navn for din økt!" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Du må restarte Dolphin for at endringen skal tre i kraft." @@ -13743,16 +13873,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13761,7 +13891,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3-kode støttes ikke" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13810,7 +13940,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "frakoblet" @@ -13818,7 +13948,7 @@ msgstr "frakoblet" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13826,7 +13956,7 @@ msgstr "" msgid "fake-completion" msgstr "falsk-utførrelse" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13874,16 +14004,6 @@ msgstr "" msgid "none" msgstr "ingen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "på" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "eller velg en enhet" @@ -13901,7 +14021,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13966,11 +14086,9 @@ msgstr "| Eller" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2019+ Dolphin-teamet. “GameCube” og “Wii” er registrerte varemerker " -"for Nintendo. Dolphin er ikke tilknyttet Nintendo på noe vis." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/nl.po b/Languages/po/nl.po index dcff6deab0..3754dfbc99 100644 --- a/Languages/po/nl.po +++ b/Languages/po/nl.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mike van der Kuijl , 2020-2024\n" "Language-Team: Dutch (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -110,7 +110,7 @@ msgstr "" "%1\n" "wil lid worden van uw partij." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -144,7 +144,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revisie %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Standaard)" @@ -164,7 +164,7 @@ msgstr "%1 (langzaam)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -178,11 +178,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Grafische Configuratie" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -199,7 +199,7 @@ msgstr "%1 ondersteunt deze functie niet op uw systeem." msgid "%1 doesn't support this feature." msgstr "%1 ondersteunt deze functie niet." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -209,35 +209,27 @@ msgstr "" "%2 object(en)\n" "Huidige Frame: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 doet nu mee" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 is vertrokken" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 heeft %2/%3 prestaties ontgrendeld (%4 hardcore) die %5/%6 punten waard " -"zijn (%7 hardcore)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 heeft %2/%3 prestaties ontgrendeld die %4/%5 punten waard zijn" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 is geen geldige ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 is nu aan het golfen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 is %2 aan het spelen" @@ -245,13 +237,13 @@ msgstr "%1 is %2 aan het spelen" msgid "%1 memory ranges" msgstr "%1 geheugen reeksen" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 punten" @@ -263,30 +255,30 @@ msgstr "%1 sessie gevonden" msgid "%1 sessions found" msgstr "%1 sessies gevonden" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normale Snelheid)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "%1's waarde is veranderd" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "%1's waarde is geraakt" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1's waarde is gebruikt" @@ -298,6 +290,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -368,11 +364,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Over" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Voeg Geheugen Breekpunt Toe" @@ -381,7 +377,7 @@ msgstr "&Voeg Geheugen Breekpunt Toe" msgid "&Add New Code..." msgstr "&Nieuwe Code Toevoegen..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Functie toevoegen" @@ -389,15 +385,15 @@ msgstr "&Functie toevoegen" msgid "&Add..." msgstr "&Toevoegen..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Geluidsinstellingen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Automatisch Bijwerken:" @@ -405,11 +401,15 @@ msgstr "&Automatisch Bijwerken:" msgid "&Borderless Window" msgstr "&Randloos venster" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Breekpunten" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Bug-tracker" @@ -417,15 +417,15 @@ msgstr "&Bug-tracker" msgid "&Cancel" msgstr "&Annuleren" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Controleer op updates..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "Symbolen &wissen" @@ -433,7 +433,7 @@ msgstr "Symbolen &wissen" msgid "&Clone..." msgstr "&Klonen…" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Code" @@ -441,16 +441,15 @@ msgstr "&Code" msgid "&Connected" msgstr "&Verbonden" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Controllerinstellingen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Adres kopiëren" @@ -458,20 +457,20 @@ msgstr "&Adres kopiëren" msgid "&Create..." msgstr "&Aanmaken…" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Verwijderen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Verwijder Watchvenster" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Verwijder Watches" @@ -485,11 +484,11 @@ msgstr "Code &bewerken…" msgid "&Edit..." msgstr "&Bewerken…" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "Schijf &uitwerpen" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulatie" @@ -509,41 +508,41 @@ msgstr "State &exporteren…" msgid "&Export as .gci..." msgstr "Als .gci exporteren…" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Lettertype..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Frame Voorwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Vrije-kijk-instellingen" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "Symbolen &genereren van" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub-repository" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafische instellingen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Hulp" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Sneltoetsinstellingen" @@ -563,11 +562,11 @@ msgstr "State &importeren…" msgid "&Import..." msgstr "&Importeren…" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "Blr …invoegen" @@ -575,23 +574,23 @@ msgstr "Blr …invoegen" msgid "&Interframe Blending" msgstr "&Interframe Menging" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Taal:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "State &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "Symbol-map &laden" @@ -601,19 +600,23 @@ msgstr "&Laad bestand naar huidig adres" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Vergrendel Watches" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Vergrendel Widgets op hun Plaats" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Geheugen" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Opname" @@ -621,7 +624,7 @@ msgstr "&Opname" msgid "&Mute" msgstr "&Dempen" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Netwerk" @@ -630,23 +633,23 @@ msgid "&No" msgstr "&Nee" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Openen…" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opties" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functies" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Spelen" @@ -654,7 +657,7 @@ msgstr "&Spelen" msgid "&Properties" msgstr "&Eigenschappen" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Alleen-lezen-modus" @@ -662,7 +665,7 @@ msgstr "&Alleen-lezen-modus" msgid "&Refresh List" msgstr "Lijst &verversen" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registers" @@ -675,24 +678,24 @@ msgstr "&Verwijderen" msgid "&Remove Code" msgstr "&Code verwijderen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Symbool hernoemen" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Resetten" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Resource Pack Beheer" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Symbol-map opslaan" @@ -700,31 +703,31 @@ msgstr "&Symbol-map opslaan" msgid "&Scan e-Reader Card(s)..." msgstr "&Scan e-Reader Kaart(en)..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Snelheidslimiet:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Stoppen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Thema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Gereedschap" @@ -734,21 +737,21 @@ msgstr "&ROM ontladen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "Watches &ontgrendelen" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Weergave" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Website" @@ -760,23 +763,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' niet gevonden, geen symboolnamen gegenereerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' niet gevonden, in plaats daarvan zoeken naar algemene functies" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Dark)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Licht)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Systeem)" @@ -812,12 +815,12 @@ msgstr "- Aftrekken" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Onbekend--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -878,7 +881,7 @@ msgstr "16-bit Signed Integer" msgid "16-bit Unsigned Integer" msgstr "16-bit Unsigned Integer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -936,7 +939,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:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -962,7 +965,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokken)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1055,20 +1058,20 @@ msgstr "< Minder dan" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "Uitgeschakeld in Hardcore-modus." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1076,7 +1079,7 @@ msgstr "" "AutoStepping timed out. Huidige instructie is niet " "relevant." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1106,8 +1109,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Meer dan" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Er is al een NetPlay sesie bezig!" @@ -1127,7 +1130,7 @@ msgstr "" "\n" "Het installeren van deze WAD zal het onherstelbaar vervangen. Doorgaan?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Er ligt al een schijf in de lade." @@ -1144,7 +1147,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Een save state kan niet worden gebruikt zonder een spel te specificeren. " -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1166,7 +1169,7 @@ msgstr "" "Een synchronisatie kan alleen worden geactiveerd wanneer er een Wii spel " "draait." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1204,7 +1207,7 @@ msgstr "" "Wii-afstandbediening ondersteuning in netplay is experimenteel en " "functioneert mogelijk niet optimaal. Gebruik op eigen risico.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR Code" @@ -1247,18 +1250,10 @@ msgid "Achievement Settings" msgstr "Prestatie-instellingen" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Prestaties" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Prestaties zijn uitgeschakeld.
Sluit alstublieft alle lopende spellen om " -"de prestaties opnieuw in te schakelen." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Actie" @@ -1348,7 +1343,7 @@ msgstr "Action Replay: Normal Code {1}: Onjuist Subtype {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Activeer NetPlay Chat" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Actief" @@ -1356,15 +1351,15 @@ msgstr "Actief" msgid "Active Infinity Figures:" msgstr "Actieve Infinity Figuren:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Actieve thread wachtrij" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Actieve threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adapter" @@ -1372,7 +1367,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter gedetecteerd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1382,7 +1377,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Toevoegen" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Plaats &breekpunt" @@ -1407,43 +1402,43 @@ msgstr "Voeg een Breekpunt Toe" msgid "Add a Memory Breakpoint" msgstr "Voeg Een Geheugen Breekpunt Toe" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Plaats geheugen &breekpunt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Plaats geheugen breekpunt" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Toevoegen aan &watchvenster" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Voeg toe aan watch" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Toevoegen..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adres" @@ -1588,7 +1583,7 @@ msgid "All Assembly files" msgstr "Alle Assembly-bestanden" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Alles Double" @@ -1597,7 +1592,7 @@ msgstr "Alles Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1605,34 +1600,34 @@ msgid "All Files" msgstr "Alle Bestanden" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Alle Bestanden (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Alle Float" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alle GC/Wii bestanden" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Alle Hexadecimaal" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Save States (*.sav *.s##);; Alle Bestanden (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Alles Signed Integer" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Alles Unsigned Integer" @@ -1648,7 +1643,7 @@ msgstr "Codes van alle spelers gesynchroniseerd." msgid "All players' saves synchronized." msgstr "Saves van alle spelers gesynchroniseerd." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Niet-overeenkomende regio-instellingen toestaan" @@ -1656,7 +1651,7 @@ msgstr "Niet-overeenkomende regio-instellingen toestaan" msgid "Allow Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken toestaan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Sta Schrijven naar SD-Kaart toe" @@ -1676,7 +1671,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Alternatieve inputbronnen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Altijd" @@ -1698,7 +1693,7 @@ msgstr "Een geplaatste schijf werd verwacht maar is niet gevonden." msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analyseer" @@ -1724,15 +1719,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Elke Regio" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Voeg Signatuur toe aan" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Toevoegen aan &Bestaand Signatuurbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "P&as Signatuur Toe..." @@ -1752,7 +1747,7 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Toepassen" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Pas signatuurbestand toe..." @@ -1760,7 +1755,7 @@ msgstr "Pas signatuurbestand toe..." msgid "Arbitrary Mipmap Detection" msgstr "Arbitraire Mipmapdetectie" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Weet u zeker dat u '%1' wilt verwijderen?" @@ -1772,7 +1767,7 @@ msgstr "Weet u zeker dat u dit bestand wilt verwijderen?" msgid "Are you sure you want to delete this pack?" msgstr "Weet u zeker dat u dit pakket wilt verwijderen?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Weet u zeker dat u NetPlay wilt afsluiten?" @@ -1784,16 +1779,16 @@ msgstr "Weet u het zeker?" msgid "Area Sampling" msgstr "Gebiedssampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Beeldverhouding" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Beeldverhouding:" @@ -1801,7 +1796,7 @@ msgstr "Beeldverhouding:" msgid "Assemble" msgstr "Assemble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Assemble instructie" @@ -1813,7 +1808,7 @@ msgstr "Assembler" msgid "Assembly File" msgstr "Assembly Bestand" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Controllerpoorten Toewijzen" @@ -1836,11 +1831,11 @@ msgstr "Koppel MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Audio-backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Audiorekkingsinstellingen" @@ -1856,7 +1851,7 @@ msgstr "Auteur" msgid "Authors" msgstr "Auteurs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1865,11 +1860,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (veelvoud van 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Instellingen voor automatisch bijwerken" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1881,7 +1876,7 @@ msgstr "" "\n" "Selecteer een specifieke interne resolutie." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Venstergrootte automatisch aanpassen" @@ -1889,15 +1884,15 @@ msgstr "Venstergrootte automatisch aanpassen" msgid "Auto-Hide" msgstr "Automatisch Verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO module?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Automatisch synchroniseren met map" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1942,27 +1937,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP register " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Backend Multi-threading" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Backend-instellingen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -2005,7 +2000,7 @@ msgstr "Verkeerde waarde opgegeven." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -2025,15 +2020,15 @@ msgstr "Balk" msgid "Base Address" msgstr "Basis Adres" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Basisprioriteit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Basis" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Basisinstellingen" @@ -2049,10 +2044,6 @@ msgstr "Batch modus kan niet worden gebruikt zonder een spel te specificeren. " msgid "Battery" msgstr "Batterij" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Bèta (één keer per maand)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, etc." @@ -2085,11 +2076,11 @@ msgstr "Binaire SSL (lees)" msgid "Binary SSL (write)" msgstr "Binaire SSL (schrijf)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2099,7 +2090,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blokgrootte" @@ -2137,67 +2128,67 @@ msgstr "" "Bluetooth passthrough modus staat aan, maar Dolphin is gecompileerd zonder " "libusb. Passthrough mode kan niet gebruikt worden." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Opstarten naar Pauze" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup bestanden (*.bin);;Alle bestanden (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii sleutelbestand (*.bin);;Alle Bestanden (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Randloos volledig scherm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Beneden" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2209,23 +2200,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2242,7 +2233,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2252,19 +2243,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2279,19 +2270,24 @@ msgstr "Branches" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Afbreken" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Breekpunt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Breekpunt tegengekomen! Uitstappen afgebroken." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Breekpunten" @@ -2325,24 +2321,24 @@ msgstr "Breedbandadapterfout" msgid "Broadband Adapter MAC Address" msgstr "Breedbandadapter-MAC-adres" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Blader &NetPlay Sessies...." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Buffergrootte:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Buffergrootte gewijzigd naar %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2390,11 +2386,11 @@ msgstr "Door: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "M&aak Signatuurbestand aan..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP register " @@ -2414,7 +2410,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Gecachete interpreter (trager)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2454,7 +2450,7 @@ msgstr "Kalibratie" msgid "Calibration Period" msgstr "Kalibratieperiode" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Roep weergave lijst op bij %1 met grootte %2" @@ -2480,7 +2476,7 @@ msgstr "Camera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Camera gezichtsveld (beïnvloedt gevoeligheid van het wijzen)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "Kan alleen AR code genereren voor waarden in virtueel geheugen." @@ -2496,18 +2492,18 @@ msgstr "Kan de schurken voor deze trofee niet aanpassen" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kan Wii-afstandsbediening niet vinden via verbindingshendel {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Kan geen NetPlay-sessie starten als spel nog draait!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annuleren" @@ -2516,15 +2512,15 @@ msgstr "Annuleren" msgid "Cancel Calibration" msgstr "Kalibratie Annuleren" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2542,11 +2538,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "Kan niet vergelijken met de laatste waarde bij de eerste zoekactie." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Kan de GC IPL niet vinden." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Kan geen AR code genereren voor dit adres." @@ -2554,7 +2550,7 @@ msgstr "Kan geen AR code genereren voor dit adres." msgid "Cannot refresh without results." msgstr "Kan niet verversen zonder resultaten." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "Kan GCI map niet op een leeg pad zetten." @@ -2562,7 +2558,7 @@ msgstr "Kan GCI map niet op een leeg pad zetten." msgid "Cannot set memory card to an empty path." msgstr "Kan geheugenkaart niet op een leeg pad zetten." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Kan het spel niet starten, omdat de GC IPL niet kon worden gevonden." @@ -2594,7 +2590,7 @@ msgstr "Centreer en Kalibreer" msgid "Change &Disc" msgstr "&Schijf wisselen" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "&Schijf wisselen…" @@ -2602,15 +2598,21 @@ msgstr "&Schijf wisselen…" msgid "Change Disc" msgstr "Schijf wisselen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Verwissel Schijven Automatisch" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Verander de schijf naar {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2640,7 +2642,7 @@ msgstr "" "de vrije camera rond de originele camera. Heeft geen zijwaartse beweging, " "alleen rotatie. U kunt inzoomen tot het oorsprongspunt van de camera." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Het veranderen van cheats zal pas van kracht worden wanneer het spel opnieuw " @@ -2650,11 +2652,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Kanaal Partitie (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Ingevoerde karakter is ongeldig!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2662,7 +2664,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Cheat Code Bewerker" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Cheat Zoeken" @@ -2670,7 +2672,7 @@ msgstr "Cheat Zoeken" msgid "Cheats Manager" msgstr "Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Controleer NAND..." @@ -2690,7 +2692,7 @@ msgstr "" "Controleer of u de vereiste machtigingen heeft om het bestand te " "verwijderen, of dat het nog in gebruik is." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Controlesom" @@ -2702,7 +2704,7 @@ msgstr "China" msgid "Choose" msgstr "Kies" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Kies een bestand om te openen" @@ -2710,15 +2712,15 @@ msgstr "Kies een bestand om te openen" msgid "Choose a file to open or create" msgstr "Kies een bestand om te openen of te maken" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Kies een inputbestand met prioriteit" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Kies een secundair inputbestand" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Selecteer GCI-basismap" @@ -2731,7 +2733,7 @@ msgstr "Kies een map om naar uit te pakken" msgid "Clamping of rotation about the yaw axis." msgstr "Limiteert rotatie rond the vertical as." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Klassieke Knoppen" @@ -2742,18 +2744,18 @@ msgstr "Klassieke Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Legen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Cache legen" @@ -2774,7 +2776,7 @@ msgstr "Clone en &Wijzig Code..." msgid "Close" msgstr "Sluiten" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Co&nfiguratie" @@ -2782,11 +2784,11 @@ msgstr "Co&nfiguratie" msgid "Code" msgstr "Code" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2814,11 +2816,11 @@ msgstr "Kleur Correctie:" msgid "Color Space" msgstr "Kleurruimte" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Combineer &Twee Signatuurbestanden..." @@ -2852,7 +2854,7 @@ msgstr "" "Desondanks is het mogelijk dat dit een goede dump is vergeleken met de Wii U " "eShop release van het spel. Dolphin kan dit niet verifiëren." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Compileer Shaders Voor Starten" @@ -2862,7 +2864,7 @@ msgstr "Shaders Compileren" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Compressie" @@ -2875,7 +2877,7 @@ msgstr "Compressieniveau:" msgid "Compression:" msgstr "Compressie:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2883,11 +2885,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Conditie" @@ -2903,7 +2905,7 @@ msgstr "Voorwaarde" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Voorwaardelijke hulp" @@ -2918,7 +2920,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2956,55 +2963,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Conditie:\n" -"Stelt een uitdrukking in die wordt geëvalueerd wanneer een onderbrekingspunt " -"wordt geraakt. Als de uitdrukking onwaar of 0 is, wordt het " -"onderbrekingspunt genegeerd tot het opnieuw wordt geraakt. Verklaringen " -"moeten worden gescheiden door een komma. Alleen het laatste statement zal " -"worden gebruikt om te bepalen wat er moet gebeuren.\n" -"\n" -"Registers waarnaar verwezen kan worden:\n" -"GPR's : r0..r31\n" -"FPR's : f0..f31\n" -"LR, CTR, PC\n" -"\n" -"Functies:\n" -"Een register instellen: r1 = 8\n" -"Cast: s8(0xff). Beschikbaar: s8, u8, s16, u16, s32, u32\n" -"Callstack: callstack(0x80123456), callstack(\"anim\")\n" -"Strings vergelijken: streq(r3, \"abc\"). Beide parameters kunnen adressen of " -"stringconstanten zijn.\n" -"Geheugen lezen: read_u32(0x80000000). Beschikbaar: u8, s8, u16, s16, u32, " -"s32, f32, f64\n" -"Geheugen schrijven: write_u32(r3, 0x80000000). Beschikbaar: u8, u16, u32, " -"f32, f64\n" -"*Momenteel schrijven wordt altijd getriggerd\n" -"\n" -"Bewerkingen:\n" -"Unair: -u, !u, ~u\n" -"Wiskunde: * / + -, macht: **, rest: %, shift: <<, >>\n" -"Vergelijken: <, <=, >, >=, ==, !=, &&, ||\n" -"Bitwise: &, |, ^\n" -"\n" -"Voorbeelden:\n" -"r4 == 1\n" -"f0 == 1,0 && f2 < 10,0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Schrijven en onderbreken: r4 = 8, 1\n" -"Schrijven en doorgaan: f3 = f1 + f2, 0\n" -"De voorwaarde moet altijd als laatste\n" -"\n" -"Strings mogen alleen gebruikt worden in callstack() of streq() en \"geciteerd" -"\" worden. Wijs geen strings toe aan een variabele.\n" -"Alle variabelen worden afgedrukt in het logboek van de geheugeninterface als " -"er een hit of een NaN-resultaat is. Om te controleren op problemen, wijs je " -"een variabele toe aan je vergelijking, zodat deze kan worden afgedrukt.\n" -"\n" -"Opmerking: Alle waarden worden intern geconverteerd naar dubbele precisie " -"voor berekeningen. Het is mogelijk dat ze buiten het bereik vallen of NaN " -"worden. Er wordt een waarschuwing gegeven als NaN wordt geretourneerd en de " -"var die NaN werd, wordt gelogd." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3021,7 +2979,7 @@ msgstr "Configureren" msgid "Configure Controller" msgstr "Configureer Controller" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin Configureren" @@ -3034,27 +2992,27 @@ msgstr "Configureer Input" msgid "Configure Output" msgstr "Configureer Output" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bevestigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Backend-wijziging bevestigen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Bevestiging bij Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Bevestiging" @@ -3064,15 +3022,15 @@ msgstr "Bevestiging" msgid "Connect" msgstr "Verbind" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Verbind Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "USB-toetsenbord verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Verbind Wii-afstandsbediening %1" @@ -3092,7 +3050,7 @@ msgstr "Verbind Wii-afstandsbediening 3" msgid "Connect Wii Remote 4" msgstr "Verbind Wii-afstandsbediening 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Verbind Wii-afstandsbedieningen" @@ -3108,7 +3066,7 @@ msgstr "Verbinding maken met internet en een online systeemupdate uitvoeren?" msgid "Connected" msgstr "Verbonden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Verbinden" @@ -3133,7 +3091,7 @@ msgstr "Bedien NetPlay Golf Modus" msgid "Control Stick" msgstr "Controle Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Controllerprofiel" @@ -3237,8 +3195,8 @@ msgstr "Convergentie" msgid "Convergence:" msgstr "Convergentie:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Conversie mislukt." @@ -3246,9 +3204,9 @@ msgstr "Conversie mislukt." msgid "Convert" msgstr "Converteer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Converteer Bestand Nu naar Map" @@ -3256,9 +3214,9 @@ msgstr "Converteer Bestand Nu naar Map" msgid "Convert File..." msgstr "Converteer Bestand..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Converteer Map Nu naar Bestand" @@ -3281,8 +3239,8 @@ msgstr "" "converteren naar ISO. Wilt u toch doorgaan?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Converteren..." @@ -3326,22 +3284,22 @@ msgstr "" "streven vaak naar 2.2.

In geval van twijfel leeg " "laten." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopieer" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopieer &functie" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Kopieer &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopieer Adres" @@ -3349,19 +3307,19 @@ msgstr "Kopieer Adres" msgid "Copy Failed" msgstr "Kopie mislukt" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Kopieer Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Kopieer Waarde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Kopieer code &lijn" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Kopieer &doeladres" @@ -3379,8 +3337,8 @@ msgstr "Kopiëren naar B" msgid "Core" msgstr "Core" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3515,7 +3473,7 @@ msgstr "" "In dat geval moet u uw geheugenkaartlocatie opnieuw aangeven in de " "configuratie." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Kon de centrale server niet vinden" @@ -3531,13 +3489,13 @@ msgstr "Kon bestand niet lezen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Creëer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Maak Infinity Bestand aan" @@ -3551,7 +3509,7 @@ msgstr "Maak Nieuwe Geheugenkaart" msgid "Create Skylander File" msgstr "Maak Skylander Bestand aan" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Maak koppelingen voor andere apparaten" @@ -3568,11 +3526,11 @@ msgstr "Maker:" msgid "Critical" msgstr "Kritiek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Bijsnijden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3584,11 +3542,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Cull Vertices op de CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3598,31 +3556,31 @@ msgstr "" "Kan de prestaties beïnvloeden.

In geval van twijfel " "leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Huidige Regio" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Huidige Waarde" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Huidige context" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Huidig spel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Huidige thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Aangepast" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3630,15 +3588,15 @@ msgstr "" msgid "Custom Address Space" msgstr "Aangepaste Adresruimte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Aangepaste Beeldverhouding Hoogte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Aangepaste Beeldverhouding Breedte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Aangepaste Beeldverhouding:" @@ -3683,7 +3641,7 @@ msgstr "DJ Draaitafel" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP Emulatie Engine" @@ -3691,15 +3649,15 @@ msgstr "DSP Emulatie Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (snel)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (aanbevolen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (zeer langzaam)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (langzaam)" @@ -3729,7 +3687,7 @@ msgstr "Dansmat" msgid "Dark" msgstr "Dark" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Data" @@ -3774,8 +3732,8 @@ msgstr "Dead Zone" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3784,7 +3742,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Decimaal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Decoderingskwaliteit:" @@ -3823,7 +3781,7 @@ msgstr "Verlaag Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Standaard" @@ -3831,7 +3789,7 @@ msgstr "Standaard" msgid "Default Config (Read Only)" msgstr "Standaardconfiguratie (Alleen-lezen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Standaardapparaat" @@ -3843,11 +3801,11 @@ msgstr "Standaardlettertype" msgid "Default ISO:" msgstr "Standaard-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Standaard-thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "EFB-cache-invalidatie uitschakelen" @@ -3855,7 +3813,7 @@ msgstr "EFB-cache-invalidatie uitschakelen" msgid "Defer EFB Copies to RAM" msgstr "Stel EFB Kopieën naar RAM uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3870,8 +3828,9 @@ msgstr "" "stabiliteit.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Verwijderen" @@ -3901,12 +3860,12 @@ msgstr "Dieptepercentage:" msgid "Depth:" msgstr "Diepte:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschrijving" @@ -3920,8 +3879,8 @@ msgstr "Beschrijving:" msgid "Description: %1" msgstr "Beschrijving: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3933,21 +3892,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Ontkoppeld" @@ -3955,7 +3914,7 @@ msgstr "Ontkoppeld" msgid "Detect" msgstr "Detecteer" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "RSO Module Detecteren" @@ -3963,11 +3922,11 @@ msgstr "RSO Module Detecteren" msgid "Deterministic dual core:" msgstr "Deterministische dual-core:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (meerdere keren per dag)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Apparaat" @@ -3985,7 +3944,7 @@ msgstr "Apparaatinstellingen" msgid "Device VID (e.g., 057e)" msgstr "Apparaat VID (bijv., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Apparaat:" @@ -3993,7 +3952,7 @@ msgstr "Apparaat:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 werd niet herkend als een geldig Riivolution XML bestand." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Dimt het scherm na vijf minuten inactiviteit." @@ -4009,11 +3968,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "&Verbinding Verbroken" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Uitschakelen" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Schakel Bounding Box uit" @@ -4022,7 +3976,7 @@ msgstr "Schakel Bounding Box uit" msgid "Disable Copy Filter" msgstr "Schakel Kopieerfilter uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Schakel EFB VRAM Kopieën uit" @@ -4030,11 +3984,11 @@ msgstr "Schakel EFB VRAM Kopieën uit" msgid "Disable Emulation Speed Limit" msgstr "Schakel Emulatie Snelheidslimit uit" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Schakel Fastmem uit" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Schakel Fastmem Arena uit" @@ -4042,11 +3996,11 @@ msgstr "Schakel Fastmem Arena uit" msgid "Disable Fog" msgstr "Schakel Mist uit" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "JIT-cache uitschakelen" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Schakel Large Entry Points Map uit" @@ -4064,7 +4018,7 @@ msgstr "" "verbeteren, maar breekt sommige spellen.

In geval " "van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
In geval van twijfel geselecteerd laten." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Schijf" @@ -4097,6 +4057,10 @@ msgstr "Schijf" msgid "Discard" msgstr "Verwerpen" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Weergavetype" @@ -4134,11 +4098,11 @@ msgstr "" "Machtigt u Dolphin om informatie te rapporteren aan de ontwikkelaars van " "Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Wilt u \"%1\" toevoegen aan de lijst met Spelpaden?" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Wilt u de lijst met symboolnamen wissen?" @@ -4148,7 +4112,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Wilt u de %n geselecteerde save bestand(en) verwijderen?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Wilt u de emulatie stoppen?" @@ -4156,12 +4120,12 @@ msgstr "Wilt u de emulatie stoppen?" msgid "Do you want to try to repair the NAND?" msgstr "Wilt u proberen de NAND te repareren?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II Decoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO Log (*.dff)" @@ -4169,9 +4133,9 @@ msgstr "Dolphin FIFO Log (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin Spel Modificatie Voorinstelling " -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Mapbestand (*.map)" @@ -4183,8 +4147,8 @@ msgstr "Dolphin CSV Signatuurbestand" msgid "Dolphin Signature File" msgstr "Dolphin Signatuurbestand" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Opname (*.dtm)" @@ -4228,7 +4192,7 @@ msgstr "Dolphin kon de gevraagde actie niet voltooien." msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "Dolphin is een vrije en open-source GameCub- en Wii-emulator." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin is te oud voor de traversal server" @@ -4244,7 +4208,7 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kan ongelicenseerde schijven niet verifiëren." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4252,7 +4216,7 @@ msgstr "" "Dolphin gebruikt dit voor spellen waarvan de regio niet automatisch kan " "worden bepaald." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin's cheatsysteem is momenteel uitgeschakeld." @@ -4261,7 +4225,7 @@ msgstr "Dolphin's cheatsysteem is momenteel uitgeschakeld." msgid "Domain" msgstr "Domein" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Niet Updaten" @@ -4282,7 +4246,7 @@ msgstr "Deuren Gesloten" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4304,7 +4268,7 @@ msgstr "Download Codes" msgid "Download Codes from the WiiRD Database" msgstr "Download Codes van de WiiRD-Database" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Download Game Covers van GameTDB.com voor gebruik in Grid-modus" @@ -4316,6 +4280,16 @@ msgstr "Download voltooid" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 codes gedownload. (%2 toegevoegd)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4355,19 +4329,19 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dump Audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Basistexturen dumpen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Dump EFB Doel" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dump Frames" @@ -4375,7 +4349,7 @@ msgstr "Dump Frames" msgid "Dump GameCube BBA traffic" msgstr "Dump GameCube BBA verkeer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Dump Mip Maps" @@ -4383,7 +4357,7 @@ msgstr "Dump Mip Maps" msgid "Dump Path:" msgstr "Dump-Pad:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Dump XFB Doel" @@ -4408,7 +4382,7 @@ msgstr "Dump peer certificaten" msgid "Dump root CA certificates" msgstr "Dump root CA certificaten" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4426,7 +4400,7 @@ msgstr "" "Dumpt de inhoud van EFB-kopieën naar User/Dump/Textures/." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4434,25 +4408,25 @@ msgstr "" "Dumpt de inhoud van XFB-kopieën naar User/Dump/Textures/." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Duur van Turbo-knop in Drukken (frames):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "Duur van Tubo-knop los Laten (frames):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Nederlands" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "Sl&uiten" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB kopie %1" @@ -4467,7 +4441,7 @@ msgstr "" "versie {0}.{1} -- Als u Dolphin recentelijk heeft geüpdatet is het mogelijk " "dat Windows eerst moet herstarten voordat de driver herkend wordt." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4479,7 +4453,7 @@ msgstr "" "Geschikt voor competitieve spellen waarbij rechtvaardigheid en minimale " "latentie het belangrijkst zijn." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Vroege Geheugen Updates" @@ -4498,7 +4472,16 @@ msgstr "Oost-Azië" msgid "Edit Breakpoint" msgstr "Bewerk Breekpunt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Bewerk..." @@ -4518,7 +4501,7 @@ msgstr "Effect" msgid "Effective" msgstr "Effectief" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Effectieve prioriteit" @@ -4540,11 +4523,11 @@ msgstr "Element" msgid "Embedded Frame Buffer (EFB)" msgstr "Embedded Frame Buffer (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Leeg" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emu Thread draait al" @@ -4572,7 +4555,7 @@ msgstr "" "Emuleert de schijfsnelheid van echte hardware. Uitschakelen kan " "instabiliteit veroorzaken. Staat standaard op Aan" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Geëmuleerde USB Apparaten" @@ -4597,34 +4580,24 @@ msgstr "Emulatiesnelheid" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Inschakelen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Activeer API Validatielagen" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Schakel Prestatiebadges in" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Activeer Prestaties" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Activeer Audio Uitrekking" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Activeer Cheats" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Schakel Controller Inpu&t in" @@ -4632,15 +4605,19 @@ msgstr "Schakel Controller Inpu&t in" msgid "Enable Custom RTC" msgstr "Activeer Aangepaste RTC" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Activeer Degugging UI" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activeer Dual-Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Activeer Dual-Core (snelheidsverhoging)" @@ -4652,7 +4629,7 @@ msgstr "Activeer Overschrijven van Geëmuleerde CPU Klok" msgid "Enable Emulated Memory Size Override" msgstr "Schakel Gemuleerde Geheugen Grootte Overschrijven in" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Activeer Encore Prestaties" @@ -4660,15 +4637,15 @@ msgstr "Activeer Encore Prestaties" msgid "Enable FPRF" msgstr "Activeer FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Schakel Grafische Mods in" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Schakel Hardcore-modus in" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4686,41 +4663,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Activeer Leaderboard" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Activeer MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Schakel Voortgangsmeldingen in." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Activeer Progressieve Scan" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Activeer RetroAchievements.org Integratie" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Activeer Rich Presence" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Activeer Trillen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Activeer Schermbeveiliger" @@ -4728,19 +4697,23 @@ msgstr "Activeer Schermbeveiliger" msgid "Enable Speaker Data" msgstr "Activeer Speaker Data" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Activeer Onofficiële Prestaties" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken inschakelen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activeer WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Activeer Wireframe" @@ -4748,29 +4721,6 @@ msgstr "Activeer Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "Write-back-cache inschakelen (traag)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"Activeer deelname aan RetroAchievements.\n" -"Hardcore modus moet ingeschakeld zijn om te gebruiken." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4780,7 +4730,7 @@ msgstr "" "sommige spellen crashes en andere problemen veroorzaken. (AAN = Compatibel, " "UIT = Ontgrendeld)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4788,34 +4738,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Activeer het vrijspelen van prestaties.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4850,7 +4807,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4864,7 +4821,7 @@ msgstr "" "

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4884,7 +4841,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Maakt uitrekking van audio mogelijk, zodat de audio gelijk blijft aan de " @@ -4917,7 +4874,7 @@ msgstr "" "Compatibel, UIT = Snel)

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4929,7 +4886,7 @@ msgstr "" "zoals de Voorspellings- en Nintendo-kanalen.\n" "Lees de servicevoorwaarden op: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4941,7 +4898,7 @@ msgstr "" "schakelt dit ook debug symbolen in voor de gecompileerde shaders." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4966,13 +4923,17 @@ msgstr "" "\n" "Importeren afbreken." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet niet geïnitialiseerd" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Engels" @@ -4989,7 +4950,7 @@ msgstr "Voer IP-adres in van het apparaat waarop de XLink Kai Client draait:" msgid "Enter USB device ID" msgstr "Voer USB apparaat ID in" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Voer adres in voor watch:" @@ -5013,33 +4974,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 msgid "Enter the RSO module address:" msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194 #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5052,52 +5013,52 @@ msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fout" @@ -5114,7 +5075,7 @@ msgstr "Fout bij openen van adapter: %1" msgid "Error collecting save data!" msgstr "Fout bij verzamelen van save data!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5130,7 +5091,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Fout in het verkrijgen van sessie lijst: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Fout opgetreden bij het laden van sommige texture packs" @@ -5229,12 +5190,12 @@ msgstr "Er zijn fouten gevonden in {0} ongebruikte blokken in de {1} partitie." msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Exclusieve Ubershaders" @@ -5278,11 +5239,11 @@ msgstr "Verwachte start van de uitdrukking." msgid "Expected variable name." msgstr "Verwachtte naam van variabele." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Experimenteel" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exporteer alle Wii Saves" @@ -5297,7 +5258,7 @@ msgstr "Exporteren Mislukt" msgid "Export Recording" msgstr "Exporteer Opname" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exporteer Opname..." @@ -5325,14 +5286,14 @@ msgstr "Exporteer als .&gcs..." msgid "Export as .&sav..." msgstr "Exporteer als .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n save(s) geëxporteerd" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensie" @@ -5345,7 +5306,7 @@ msgstr "Extensie Bewegings-input" msgid "Extension Motion Simulation" msgstr "Extensie Bewegings-simulatie" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Extern" @@ -5353,35 +5314,35 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externe Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Certificaten uitpakken van NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Volledige Schijf Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Volledige Partitie Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Bestand Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Bestanden Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Systeemdata Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Alle Bestanden Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Map Uitpakken..." @@ -5390,8 +5351,8 @@ msgstr "Map Uitpakken..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO Speler" @@ -5407,11 +5368,11 @@ msgstr "" "Mislukt geheugenkaart te open:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "Mislukt om deze sessie aan de NetPlay index toe voegen: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Mislukt om signatuurbestand toe te voegen aan bestand '%1'" @@ -5432,7 +5393,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Mislukt om met Redump.org te verbinden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Mislukt om verbinding te maken met server: %1" @@ -5453,15 +5414,15 @@ msgstr "Mislukt om D3D12 global resources te creëren" msgid "Failed to create DXGI factory" msgstr "Mislukt om DXGI factory te creëren" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Mislukt om Infinity bestand te creëren" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Mislukt om Skylander bestand te creëren!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5510,15 +5471,15 @@ msgstr "Exporteren van %n van de %1 save bestand(en) is mislukt." msgid "Failed to export the following save files:" msgstr "Kon de volgende save bestanden niet exporteren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Kon geen certificaten uitpakken van NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Uitpakken van het bestand is mislukt." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Uitpakken van de systeemdata is mislukt." @@ -5540,14 +5501,14 @@ msgstr "Kon één of meerdere D3D symbolen niet vinden" msgid "Failed to import \"%1\"." msgstr "Mislukt om \"%1\" te importeren." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Save bestand importeren mislukt. Start het spel eerst en probeer het dan " "opnieuw." -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5555,7 +5516,7 @@ msgstr "" "Save bestand importeren mislukt. Het bestand lijkt beschadigd te zijn of is " "geen geldige Wii-save." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5565,7 +5526,7 @@ msgstr "" "verhindert de toegang tot bestanden erin. Probeer uw NAND te repareren " "(Tools -> Beheer NAND -> Controleer NAND...) en importeer de save opnieuw." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Kon core niet initiëren" @@ -5588,11 +5549,11 @@ msgid "Failed to install pack: %1" msgstr "Het is niet gelukt om het pakket te installeren: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Kon deze titel niet installeren op de NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5600,8 +5561,8 @@ msgstr "" "Luisteren naar poort %1 mislukt. Is er nog een exemplaar van de NetPlay-" "server actief?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Kon RSO-module op %1 niet laden" @@ -5613,21 +5574,21 @@ msgstr "Kon d3d11.dll niet laden" msgid "Failed to load dxgi.dll" msgstr "Kon dxgi.dll niet laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Kon mapbestand'%1' niet laden" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Laden van Skylander bestand mislukt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Kon het uitvoerbare bestand niet in het geheugen laden." @@ -5643,17 +5604,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Mislukt om Skylander te wijzigen!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Kon '%1' niet openen" @@ -5661,7 +5622,7 @@ msgstr "Kon '%1' niet openen" msgid "Failed to open Bluetooth device: {0}" msgstr "Kon Bluetooth-apparaat niet openen: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5693,15 +5654,15 @@ msgstr "" msgid "Failed to open file." msgstr "Openen bestand mislukt." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Kon server niet openen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Openen van Infinity bestand mislukt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5709,11 +5670,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Openen van Skylander bestand mislukt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5763,23 +5724,23 @@ msgstr "Lezen van het inputbestand \"{0}\" is mislukt." msgid "Failed to read selected savefile(s) from memory card." msgstr "Lezen van geselecteerde save bestand(en) van geheugenkaart mislukt." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Lezen van infinity bestand mislukt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Lezen van Skylander bestand mislukt!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5793,7 +5754,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Lezen van {0} is mislukt" @@ -5827,31 +5788,31 @@ msgstr "Kon NetPlay NAND-map niet resetten. Controleer uw schrijfrechten." msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "Kon NetPlay omleid map niet resetten. Controleer uw schrijfrechten." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Mislukt om FIFO op te slaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Kon code map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Kon signatuurbestand '%1' niet opslaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Kon symbool map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Kon niet opslaan naar signatuurbestand '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5904,19 +5865,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Gefaald" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Eerlijke Input Vertraging" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Terugvalregio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Terugvalregio:" @@ -5929,7 +5890,7 @@ msgstr "Snel" msgid "Fast Depth Calculation" msgstr "Snelle Diepteberekening" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5942,7 +5903,7 @@ msgstr "" msgid "Field of View" msgstr "Gezichtsveld" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Figuur Nummer:" @@ -5956,7 +5917,7 @@ msgstr "Bestand Details" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Bestandsformaat" @@ -5964,24 +5925,24 @@ msgstr "Bestandsformaat" msgid "File Format:" msgstr "Bestandsformaat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Bestandsinfo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Bestandsnaam" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Bestandspad" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Bestandsgrootte" @@ -6073,7 +6034,6 @@ msgstr "Vaste Uitlijning" #. 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flags" @@ -6082,12 +6042,12 @@ msgstr "Flags" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Volg &branch" @@ -6113,7 +6073,7 @@ msgstr "" "Voor setup instructies, raadpleeg deze pagina." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forceer 16:9" @@ -6121,7 +6081,7 @@ msgstr "Forceer 16:9" msgid "Force 24-Bit Color" msgstr "24-bits kleuren forceren" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forceer 4:3" @@ -6153,11 +6113,11 @@ msgstr "Forceer Luisterpoort:" msgid "Force Nearest" msgstr "Forceer Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Uitgeschakeld omdat %1 geen VS uitbreiding ondersteunt." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Uitgeschakeld omdat %1 geen geometry shaders ondersteunt." @@ -6184,6 +6144,12 @@ msgstr "" "

In geval van twijfel geselecteerd laten." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Formaat:" @@ -6199,7 +6165,7 @@ msgstr "Vooruit" msgid "Forward port (UPnP)" msgstr "Poort forwarden (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "%1 resultaten gevonden voor \"%2\"" @@ -6209,7 +6175,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "%n adres(sen) gevonden." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Frame %1" @@ -6230,11 +6196,11 @@ msgstr "Frame Vordering Verhoog Snelheid" msgid "Frame Advance Reset Speed" msgstr "Frame Voorwaarts Reset Snelheid" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Frame Dumping" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Framebereik" @@ -6242,7 +6208,7 @@ msgstr "Framebereik" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Frame Dump-afbeelding(en) '{0}' bestaan al. Overschrijven?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Frames om Op te Nemen:" @@ -6262,7 +6228,7 @@ msgstr "Vrije Bestanden: %1" msgid "Free Look Control Type" msgstr "Vrije-Kijk Bestuur Methode" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Vrije-Kijk Controller %1" @@ -6297,7 +6263,7 @@ msgstr "Vrije-Kijk Schakelaar" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Frans" @@ -6316,8 +6282,8 @@ msgid "From" msgstr "Van" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Van:" @@ -6325,10 +6291,14 @@ msgstr "Van:" msgid "FullScr" msgstr "Volledig scherm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Functie" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Functies" @@ -6369,11 +6339,11 @@ msgstr "GBA Volume" msgid "GBA Window Size" msgstr "GBA-venstergrootte" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM verandert naar \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM uitgeschakeld" @@ -6421,7 +6391,7 @@ msgstr "GL_MAX_TEXTURE_SIZE is {0} - moet op zijn minst 1024 zijn." msgid "GPU Texture Decoding" msgstr "Textuurdecodering door GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6433,7 +6403,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL FOUT: Ondersteunt uw videokaart OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6441,7 +6411,7 @@ msgstr "" "GPU: OGL FOUT: GL_ARB_map_buffer_range vereist.\n" "GPU: Ondersteunt uw videokaart OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6449,7 +6419,7 @@ msgstr "" "GPU: OGL FOUT: GL_ARB_sampler_objects vereist.\n" "GPU: Ondersteunt uw videokaart OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6457,7 +6427,7 @@ msgstr "" "GPU: OGL FOUT: GL_ARB_uniform_buffer_object vereist.\n" "GPU: Ondersteunt uw videokaart OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6473,7 +6443,7 @@ msgstr "" "GPU: OGL FOUT: OpenGL versie 3 vereist.\n" "GPU: Ondersteunt uw videokaart OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6496,16 +6466,16 @@ msgstr "" msgid "Game" msgstr "Spel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Carts (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6513,7 +6483,7 @@ msgstr "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "Alle Bestanden (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance aan Poort %1" @@ -6542,7 +6512,7 @@ msgid "Game Gamma:" msgstr "Gamma Spel:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Spel ID" @@ -6551,15 +6521,15 @@ msgstr "Spel ID" msgid "Game ID:" msgstr "Spel ID:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Spelstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Spel gewijzigd naar \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6568,11 +6538,11 @@ msgstr "" "selecteer Eigenschappen, ga naar het tabblad Verifieer, en selecteer " "Verifieer Integriteit om de hash te controleren" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "Spel heeft een ander schijf nummer" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "Spel heeft een andere revisie" @@ -6585,7 +6555,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "Spel overschreven door een andere save. Data corruptie {0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "Spel regio komt niet overeen" @@ -6605,11 +6575,11 @@ msgstr "GameCube Adapter voor de Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "GameCube Adapter voor de Wii U op Poort %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube Controller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "GameCube Controller op Poort %1" @@ -6617,11 +6587,11 @@ msgstr "GameCube Controller op Poort %1" msgid "GameCube Controllers" msgstr "GameCube-controllers" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube-toetsenbord" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-toetsenbord op poort %1" @@ -6638,7 +6608,7 @@ msgstr "GameCube Geheugenkaart" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube Geheugenkaarten (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube Microfoon Slot %1" @@ -6666,7 +6636,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Codes" @@ -6676,35 +6646,35 @@ msgstr "Gecko Codes" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Algemeen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Algemeen en Opties" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Nieuwe statistiekidentiteit genereren" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Gegenereerde symboolnamen van '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Duits" @@ -6731,7 +6701,7 @@ msgstr "Giant" msgid "Giants" msgstr "Giants" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golf Modus" @@ -6740,7 +6710,7 @@ msgid "Good dump" msgstr "Goede dump" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafisch" @@ -6786,7 +6756,7 @@ msgstr "Groen Links" msgid "Green Right" msgstr "Groen Rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Rasterweergave" @@ -6823,7 +6793,7 @@ msgstr "HDR Post-Processing" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Hoofd" @@ -6855,7 +6825,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "Hex Byte String" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimaal" @@ -6864,11 +6834,11 @@ msgstr "Hexadecimaal" msgid "Hide" msgstr "Verbergen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Alles verbergen" @@ -6880,16 +6850,23 @@ msgstr "In-game-sessies verbergen" msgid "Hide Incompatible Sessions" msgstr "Incompatibele sessies verbergen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Externe GBA's verbergen" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Hoog" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Hoogste" @@ -6912,7 +6889,7 @@ msgstr "Host" msgid "Host Code:" msgstr "Host-code:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Host Input Autoriteit" @@ -6920,7 +6897,7 @@ msgstr "Host Input Autoriteit" msgid "Host Size" msgstr "Hostgrootte" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6932,11 +6909,11 @@ msgstr "" "maar de latentie voor anderen groter wordt. Geschikt voor casual spellen met " "3+ spelers, mogelijk op onstabiele of hoge latency-verbindingen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Host Input Autoriteit uitgeschakeld" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Host Input Autoriteit ingeschakeld" @@ -6948,7 +6925,7 @@ msgstr "Host met NetPlay" msgid "Hostname" msgstr "Hostnaam" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Sneltoets­instellingen" @@ -6958,11 +6935,11 @@ msgstr "Sneltoets­instellingen" msgid "Hotkeys" msgstr "Sneltoetsen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Sneltoetsen vereisen vensterfocus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Hybride Ubershaders" @@ -7021,12 +6998,12 @@ msgstr "IP-adres:" msgid "IPL Settings" msgstr "IPL-instellingen" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR-gevoeligheid:" @@ -7067,7 +7044,7 @@ msgstr "" msgid "Icon" msgstr "Icoon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7077,7 +7054,7 @@ msgstr "" "vertraging heeft) op elk moment gewisseld kan worden.\n" "Geschikt voor turn-based spellen met timing gevoelige bediening, zoals golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Identiteitsgeneratie" @@ -7104,7 +7081,7 @@ msgstr "" "Deze machtiging kan op elk moment worden ingetrokken via de Dolphin-" "instellingen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7125,7 +7102,7 @@ msgstr "" "gekoppeld aan de verbindingsstatus van de echte standaard controller (als er " "een is)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7136,7 +7113,7 @@ msgstr "" "nuttig zijn voor testen

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7152,7 +7129,7 @@ msgstr "" msgid "Ignore" msgstr "Negeren" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -7192,7 +7169,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB direct presenteren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7206,7 +7183,7 @@ msgstr "" "en vermindert prestaties enigszins.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-back-up importeren…" @@ -7221,15 +7198,15 @@ msgstr "Importeren mislukt" msgid "Import Save File(s)" msgstr "Save-bestand(en) importeren" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Wii-save importeren…" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "NAND-back-up importeren" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7238,6 +7215,15 @@ msgstr "" "NAND-back-up importeren\n" " Verstreken tijd: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "In het spel?" @@ -7320,7 +7306,7 @@ msgstr "Incrementele Rotatie" msgid "Incremental Rotation (rad/sec)" msgstr "Incrementele Rotatie (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Infinity Figuur Maker" @@ -7329,7 +7315,7 @@ msgstr "Infinity Figuur Maker" msgid "Infinity Manager" msgstr "Infinity Beheer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Infinity Object (*.bin);;" @@ -7351,12 +7337,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informatie" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Schermbeveiliging blokkeren tijdens emulatie" @@ -7365,11 +7351,11 @@ msgid "Inject" msgstr "Injecteren" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Input" @@ -7383,23 +7369,19 @@ msgstr "Drempelwaarde voor inputsterkte" msgid "Input strength to ignore and remap." msgstr "Inputsterkte om te negeren en opnieuw in te stellen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "&Nop invoegen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SD-Kaart Invoegen" @@ -7412,11 +7394,11 @@ msgstr "Installeren" msgid "Install Partition (%1)" msgstr "Installatiepartitie (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Installeer Update" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WAD installeren…" @@ -7424,13 +7406,13 @@ msgstr "WAD installeren…" msgid "Install to the NAND" msgstr "Naar NAND installeren" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instructie" @@ -7439,7 +7421,7 @@ msgstr "Instructie" msgid "Instruction Breakpoint" msgstr "Instructiebreekpunt" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instructie:" @@ -7448,7 +7430,7 @@ msgstr "Instructie:" msgid "Instruction: %1" msgstr "Instructie: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7469,19 +7451,19 @@ msgstr "Intensiteit" msgid "Interface" msgstr "Interface" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Interne LZ4-fout - Geprobeerd {0} bytes decomprimeren" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Interne LZ4-fout - compressie mislukt" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Interne LZ4-fout - decompressie mislukt ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Interne LZ4-fout - grootte van de data komt niet overeen ({0} / {1}))" @@ -7494,7 +7476,7 @@ msgstr "Interne LZO fout - compressie is mislukt" msgid "Internal LZO Error - decompression failed" msgstr "Interne LZO fout - decompressie is mislukt" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7502,7 +7484,7 @@ msgstr "" "Interne LZO-fout - decompressie mislukt ({0}) ({1})\n" "Niet in staat om verouderde savestate versie-informatie op te halen." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7510,7 +7492,7 @@ msgstr "" "Interne LZO-fout - parsen van gedecomprimeerde versie-string lengte en " "versie-cookie mislukt ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7527,7 +7509,7 @@ msgstr "Interne resolutie" msgid "Internal Resolution:" msgstr "Interne resolutie:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Interne fout bij het genereren van AR code." @@ -7535,7 +7517,7 @@ msgstr "Interne fout bij het genereren van AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (traagst)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreter-kern" @@ -7551,7 +7533,7 @@ msgstr "Ongeldige JSON ontvangen van auto-update service: {0}" msgid "Invalid Mixed Code" msgstr "Ongeldige Gemengde Code" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Ongeldige Pakket %1 ingevoerd: %2" @@ -7560,11 +7542,11 @@ msgstr "Ongeldige Pakket %1 ingevoerd: %2" msgid "Invalid Player ID" msgstr "Ongeldige Speler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Ongeldig RSO-moduleadres: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Ongeldige callstack" @@ -7585,7 +7567,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ongeldige input voor het veld \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Ongeldige input opgegeven" @@ -7601,19 +7583,19 @@ msgstr "Ongeldige parameters gegeven om te zoeken." msgid "Invalid password provided." msgstr "Ongeldig wachtwoord ingevoerd." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Onjuist opnamebestand" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Ongeldige zoekparameters (geen object geselecteerd)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Ongeldige zoekopdracht (niet in staat naar nummers te converteren)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Ongeldige zoekopdracht (alleen gelijke string lengtes zijn ondersteund)" @@ -7622,13 +7604,13 @@ msgstr "" msgid "Invalid title ID." msgstr "Ongeldige titel-ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Ongeldig watch adres: 1%" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiaans" @@ -7641,11 +7623,11 @@ msgstr "Italië" msgid "Item" msgstr "Voorwerp" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Uit" @@ -7653,47 +7635,47 @@ msgstr "JIT Block Linking Uit" msgid "JIT Blocks" msgstr "JIT Blokken" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "Jit Branch Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Integer Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Uit (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Paired Uit" @@ -7705,16 +7687,16 @@ msgstr "JIT Recompiler voor ARM64 (aanbevolen)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler voor x86-64 (aanbevolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT-registercache uitgeschakld" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT SysteemRegisters Uit" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7723,16 +7705,16 @@ msgstr "" "nooit moeten gebeuren. Meld dit incident alstublieft via de bugtracker. " "Dolphin zal nu afsluiten." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japans" @@ -7750,12 +7732,12 @@ msgid "" msgstr "" "Kaos is de enige vijand voor deze trofee. Er hoeft niets gewijzigd te worden!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Blijf Uitvoeren" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Venster bovenaan houden" @@ -7789,16 +7771,16 @@ msgstr "Toetsen" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Speler kicken" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Koreaans" @@ -7819,7 +7801,7 @@ msgstr "L&aad ROM..." msgid "L-Analog" msgstr "L-Analoog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR Save" @@ -7827,7 +7809,11 @@ msgstr "LR Save" msgid "Label" msgstr "Label" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Laatste Waarde" @@ -7841,23 +7827,23 @@ msgstr "Laatst geplaatst:" msgid "Last reset:" msgstr "Laatste reset:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Vertraging:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Vertraging: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Vertraging: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Vertraging: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Vertraging: ~80 ms" @@ -7865,7 +7851,7 @@ msgstr "Vertraging: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Het starten van deze spellen kan de problemen ook verhelpen." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Leiderborden" @@ -7873,7 +7859,7 @@ msgstr "Leiderborden" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7884,7 +7870,7 @@ msgstr "Links" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Linker Stick" @@ -7961,11 +7947,11 @@ msgstr "Licht" msgid "Limit Chunked Upload Speed:" msgstr "Beperk chunked-uploadsnelheid:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Lijstkolommen" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Lijstweergave" @@ -7974,30 +7960,30 @@ msgid "Listening" msgstr "Luisteren" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Laad &Slechte Mapbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Laad &Ander Mapbestand..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Laad Aangepaste Textures" @@ -8005,11 +7991,11 @@ msgstr "Laad Aangepaste Textures" msgid "Load File" msgstr "Laad Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "GameCube Hoofdmenu Laden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Laad Alleen Host Save Data" @@ -8115,23 +8101,23 @@ msgstr "Laad State Slot 8" msgid "Load State Slot 9" msgstr "Laad State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Laad State van Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Laad State van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Laad State van Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Wii-systeemmenu %1 laden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Laad en Schrijf Alleen Host Save Data" @@ -8139,28 +8125,28 @@ msgstr "Laad en Schrijf Alleen Host Save Data" msgid "Load from Selected Slot" msgstr "Laden van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Laad van Slot Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Laad mapbestand" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Laad vWii Systeem Menu %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Symbolen geladen van '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8170,7 +8156,7 @@ msgstr "" "DynamicInputTextures//.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8178,20 +8164,28 @@ msgstr "" "Laadt grafische mods van User/Load/GraphicsMods/." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Lokaal" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Vergrendel Muisaanwijzer" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Vergrendeld" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8200,19 +8194,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Logconfiguratie" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Aanmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "JIT-instructiedekking loggen" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Afmelden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Log Rendertijden naar Bestand" @@ -8224,11 +8218,11 @@ msgstr "Log Types" msgid "Logger Outputs" msgstr "Logger Outputs" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Inloggen Mislukt" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8238,20 +8232,20 @@ msgstr "" "

Gebruik deze optie als u de prestaties van Dolphin wilt meten." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Loop" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Verbinding met NetPlay-server verloren..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Laag" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Laagste" @@ -8263,7 +8257,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -8311,7 +8305,7 @@ msgstr "Zorg ervoor dat er een Skylander in slot %1 zit!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Maker" @@ -8332,16 +8326,16 @@ msgstr "" "mist emulatie rekent.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Beheer NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Handmatige Texture Sampling" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mapping" @@ -8353,11 +8347,11 @@ msgstr "Mask ROM" msgid "Match Found" msgstr "Overeenkomst Gevonden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Max Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Max buffergrootte gewijzigd naar %1" @@ -8366,7 +8360,7 @@ msgstr "Max buffergrootte gewijzigd naar %1" msgid "Maximum tilt angle." msgstr "Maximale kantel hoek." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan leiden tot vertraging van het Wii-menu en een aantal spellen." @@ -8387,7 +8381,7 @@ msgstr "Geheugenbreekpunt" msgid "Memory Card" msgstr "Geheugenkaart" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Geheugenkaart Beheer" @@ -8415,7 +8409,7 @@ msgstr "MemoryCard: Read opgeroepen met onjuiste bron adres ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Write opgeroepen met ongeldige bestemming adres ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8433,7 +8427,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Microfoon" @@ -8442,15 +8436,15 @@ msgstr "Microfoon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Overig" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Overige instellingen" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8464,7 +8458,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Verschil tussen interne data structuren." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8491,7 +8485,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8510,8 +8504,8 @@ msgstr "Wijzig Slot" msgid "Modifying Skylander: %1" msgstr "Wijzig Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Module gevonden: %1" @@ -8519,7 +8513,7 @@ msgstr "Module gevonden: %1" msgid "Money:" msgstr "Geld:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8531,11 +8525,11 @@ msgstr "Monoscopische Schaduwen" msgid "Monospaced Font" msgstr "Niet-proportionele (monospace) Lettertype" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Bewegings-input" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Bewegings-simulatie" @@ -8544,25 +8538,10 @@ msgstr "Bewegings-simulatie" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Zichtbaarheid van Muisaanwijzer" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" -"Muisaanwijzer wordt verborgen na inactiviteit en komt terug zodra de " -"Muisaanwijzer wordt bewogen." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Muisaanwijzer zal altijd zichtbaar zijn." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "Muisaanwijzer zal nooit zichtbaar zijn terwijl een spel draait." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8573,7 +8552,7 @@ msgstr "Verplaats" msgid "Movie" msgstr "Opname" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8581,7 +8560,7 @@ msgstr "" "Opname {0} geeft aan dat het start vanuit een savestate, maar {1} bestaat " "niet. De opname zal waarschijnlijk niet synchroniseren!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8594,10 +8573,10 @@ msgstr "Vermenigvuldiger" msgid "N&o to All" msgstr "N&ee op Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-controle" @@ -8606,8 +8585,8 @@ msgstr "NAND-controle" msgid "NKit Warning" msgstr "NKit-waarschuwing" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8616,7 +8595,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8639,8 +8618,8 @@ msgstr "" "

In geval van twijfel op 2.35 laten." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8683,7 +8662,7 @@ msgstr "Native (640x528)" msgid "Native GCI File" msgstr "Native GCI bestand" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8699,7 +8678,7 @@ msgstr "Netplay Instellingen" msgid "Netherlands" msgstr "Nederland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8708,7 +8687,7 @@ msgstr "" "Netplay-sessie zijn gemaakt of gewijzigd blijven in de lokale saves van de " "host." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8718,7 +8697,7 @@ msgstr "" "de Netplay-sessie zijn gemaakt of gewijzigd worden aan het eind van de " "sessie weggegooid." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8727,7 +8706,7 @@ msgstr "" "worden aan het einde van de Netplay-sessie weggegooid." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Netwerk" @@ -8735,16 +8714,16 @@ msgstr "Netwerk" msgid "Network dump format:" msgstr "Netwerk-dump-formaat:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Nooit" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Nooit Automatisch Updaten" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nieuw" @@ -8769,7 +8748,7 @@ msgstr "Nieuwe Zoekopdracht" msgid "New Tag..." msgstr "Nieuwe Tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Nieuwe identiteit gegenereerd." @@ -8786,7 +8765,7 @@ msgstr "Nieuwe tag" msgid "Next Game Profile" msgstr "Volgend Spel Profiel" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Volgende Overeenkomst" @@ -8832,7 +8811,7 @@ msgstr "Geen Compressie" msgid "No Match" msgstr "Geen Overeenkomst" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Geen Save Data" @@ -8840,12 +8819,12 @@ msgstr "Geen Save Data" msgid "No data to modify!" msgstr "Geen data om te wijzigen!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Geen omschrijving beschikbaar" @@ -8857,7 +8836,7 @@ msgstr "Geen fouten." msgid "No extension selected." msgstr "Geen extensie geselecteerd." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Geen bestand geladen / opgenomen." @@ -8865,7 +8844,7 @@ msgstr "Geen bestand geladen / opgenomen." msgid "No game is running." msgstr "Er draait geen spel." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Er draait geen spel." @@ -8878,11 +8857,11 @@ msgstr "Geen graphics mod geselecteerd" msgid "No input" msgstr "Geen input" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Er zijn geen problemen gedetecteerd." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Geen overeenkomend spel gevonden" @@ -8908,7 +8887,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Geen profielen gevonden voor de spel-instelling '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Geen opname geladen." @@ -8927,10 +8906,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Geen" @@ -8942,7 +8921,7 @@ msgstr "Noord-Amerika" msgid "Not Set" msgstr "Niet ingesteld" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Niet alle spelers hebben het spel. Weet u zeker dat u wilt doorgaan?" @@ -8966,7 +8945,7 @@ msgstr "" "Niet genoeg vrije bestanden op de doelgeheugenkaart. Ten minste %n vrije " "bestand(en) vereist." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Niet gevonden" @@ -9012,26 +8991,26 @@ msgstr "Aantal schudbewegingen per seconde." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Nunchuk Versnellingsmeter" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Nunchuk Knoppen" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Nunchuk Stick" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Object %1" @@ -9083,7 +9062,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Object Bereik" @@ -9104,11 +9083,11 @@ msgstr "Offset" msgid "On" msgstr "Aan" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Bij Beweging" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9118,7 +9097,7 @@ msgstr "" "voor het uitbreiden van punten en lijnen, selecteert de vertex shader voor " "de taak. Kan de prestatie beïnvloeden.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9133,7 +9112,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online &Documentatie" @@ -9141,7 +9120,7 @@ msgstr "Online &Documentatie" msgid "Only Show Collection" msgstr "Alleen Collectie Tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9149,7 +9128,7 @@ msgstr "" "Alleen symbolen toevoegen die beginnen met:\n" "(Leeg voor alle symbolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9168,7 +9147,7 @@ msgstr "Openen" msgid "Open &Containing Folder" msgstr "&Bijbehorende map openen" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "&Gebruikersmap openen" @@ -9177,7 +9156,7 @@ msgstr "&Gebruikersmap openen" msgid "Open Directory..." msgstr "Map openen…" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Open FIFO Log" @@ -9243,34 +9222,34 @@ msgstr "Oranje" msgid "Orbital" msgstr "Orbitaal" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9285,11 +9264,11 @@ msgstr "Andere Partitie (%1)" msgid "Other State Hotkeys" msgstr "Overige State Sneltoetsen" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Overige State Beheer" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Ander spel..." @@ -9305,16 +9284,16 @@ msgstr "Output Resampling" msgid "Output Resampling:" msgstr "Output Resampling:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Overschrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Input Opname Af&spelen..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9327,11 +9306,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG Compressie Level" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG Compressie Level:" @@ -9343,7 +9322,7 @@ msgstr "PNG afbeeldingsbestand (*.png);; Alle bestanden (*)" msgid "PPC Size" msgstr "PPC Grootte" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9377,7 +9356,7 @@ msgstr "Passief" msgid "Passthrough a Bluetooth adapter" msgstr "Bluetooth-adapter doorgeven" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Wachtwoord" @@ -9415,15 +9394,15 @@ msgstr "Paden" msgid "Pause" msgstr "Pauze" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pauzeer aan het Einde van de Opname" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pauzeer bij Verliezen van Focus" @@ -9439,6 +9418,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9458,7 +9443,7 @@ msgstr "Top snelheid van buitenwaartse zwaai beweging." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Belichting" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Voer Online Systeemupdate Uit" @@ -9466,15 +9451,15 @@ msgstr "Voer Online Systeemupdate Uit" msgid "Perform System Update" msgstr "Voer Systeemupdate Uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Venster van prestatiemonster (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Venster van prestatiemonster (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Prestatiestatistieken" @@ -9492,11 +9477,11 @@ msgstr "Fysieke adresruimte" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Kies een debug-lettertype" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9509,7 +9494,7 @@ msgid "Pitch Up" msgstr "Stamp Omhoog" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platform" @@ -9517,7 +9502,7 @@ msgstr "Platform" msgid "Play" msgstr "Spelen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Afspelen / Opnemen" @@ -9529,40 +9514,40 @@ msgstr "Speel Opname" msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Terugspeel Opties" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Speler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Speler Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Speler Een Vaardigheid Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Speler Een Vaardigheid Twee" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Tweede Speler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Speler Twee Vaardigheid Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Speler Twee Vaardigheid Twee" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Spelers" @@ -9581,7 +9566,7 @@ msgstr "" "Verander de instelling \"SyncOnSkipIdle\" naar \"True\"! Op dit moment is " "het uitgeschakeld, waardoor dit probleem zeer waarschijnlijk zal optreden." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9599,7 +9584,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Poort %1" @@ -9616,7 +9601,7 @@ msgstr "Poort:" msgid "Portal Slots" msgstr "Portal Slots" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mogelijke desync gedetecteerd: %1 heeft mogelijk sync verloren in frame %2" @@ -9633,24 +9618,32 @@ msgstr "Post-Processing Effect:" msgid "Post-Processing Shader Configuration" msgstr "Post-Processing Shader Configuratie" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Geef voorkeur aan VS voor Punt/Lijn uitbreiding" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Prefetch Aangepaste Textures" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Vroegtijdig opname einde in PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Vroegtijdig opname einde in PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Vroegtijdig opname einde in PlayWiimote. {0} > {1}" @@ -9675,7 +9668,7 @@ msgstr "Druk Op Sync Knop" msgid "Pressure" msgstr "Druk" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9695,7 +9688,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Vorig Spel Profiel" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Vorige Overeenkomst" @@ -9706,7 +9699,7 @@ msgstr "Vorig Profiel" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitief %1" @@ -9746,7 +9739,7 @@ msgstr "" "Er zijn problemen met middelmatig ernst gevonden. Het spel of bepaalde delen " "van het spel zullen misschien niet goed werken." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profiel" @@ -9755,23 +9748,29 @@ msgstr "Profiel" msgid "Program Counter" msgstr "Programmateller" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Voortgang" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Openbaar" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Gamelijstcache opschonen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Zet IPL ROMs in Gebruiker/GC/." @@ -9791,7 +9790,7 @@ msgstr "Quality of Service (QoS) kan niet worden geactiveerd." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) is succesvol geactiveerd." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Kwaliteit van de DPLII decoder. Audio vetraging neemt toe met de kwaliteit." @@ -9799,11 +9798,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Vraag" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Stoppen" @@ -9820,19 +9819,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analoog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "GEREED" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO autodetectie" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "LOPEND" @@ -9853,7 +9852,7 @@ msgstr "Bereik Einde:" msgid "Range Start: " msgstr "Bereik Start:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Rang %1" @@ -9861,16 +9860,17 @@ msgstr "Rang %1" msgid "Raw" msgstr "Rauw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Ver&vang instructie" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Lezen" @@ -9909,8 +9909,8 @@ msgstr "Echte Wii-afstandsbediening" msgid "Received invalid Wii Remote data from Netplay." msgstr "Ongeldige Wii-afstandsbediening gegevens ontvangen van Netplay." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9919,23 +9919,23 @@ msgstr "" msgid "Recenter" msgstr "Hercentreren" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Opnemen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Input Opnemen" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Opnemen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opname Opties" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Opnemen..." @@ -9975,7 +9975,7 @@ msgstr "Redump.org Status:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10007,7 +10007,7 @@ msgid "Refreshing..." msgstr "Verversen..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regio" @@ -10028,7 +10028,11 @@ msgstr "Relatieve Input" msgid "Relative Input Hold" msgstr "Relatieve Input Vasthouden" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Herinner Me Later" @@ -10036,7 +10040,7 @@ msgstr "Herinner Me Later" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Verwijder" @@ -10067,20 +10071,20 @@ msgstr "" "ISO (tenzij u het ISO-bestand verpakt in een gecomprimeerd bestandsformaat " "zoals ZIP achteraf). Wilt u toch doorgaan?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Hernoem symbool" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Render-venster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Renderen naar hoofdvenster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10096,10 +10100,16 @@ msgstr "Report: GCIFolder schrijft naar niet gealloceerde blok {0:#x}" msgid "Request to Join Your Party" msgstr "Verzoek om Lid te Worden van Uw Partij" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10109,7 +10119,7 @@ msgstr "Reset" msgid "Reset All" msgstr "Reset Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Reset Negeer Panic Handler" @@ -10141,7 +10151,7 @@ msgstr "Reset Weergave" msgid "Reset all saved Wii Remote pairings" msgstr "Reset alle opgeslagen Wii-afstandsbediening koppelingen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -10153,7 +10163,7 @@ msgstr "Resource Pack Beheer" msgid "Resource Pack Path:" msgstr "Pad naar Resource Pack:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Herstarten Vereist" @@ -10161,11 +10171,11 @@ msgstr "Herstarten Vereist" msgid "Restore Defaults" msgstr "Herstel Standaardinstellingen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Herstel instructie" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Opnieuw" @@ -10174,7 +10184,7 @@ msgstr "Opnieuw" msgid "Return Speed" msgstr "Terugkeer Snelheid" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revisie" @@ -10186,7 +10196,7 @@ msgstr "Revisie: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10197,7 +10207,7 @@ msgstr "Rechts" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Rechter Stick" @@ -10233,11 +10243,11 @@ msgstr "Rol Links" msgid "Roll Right" msgstr "Rol Rechts" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Kamer ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Rotatie" @@ -10260,27 +10270,31 @@ msgstr "" "interne resolutie wordt gebruikt.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10293,7 +10307,7 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Loop &Tot Hier" @@ -10301,15 +10315,15 @@ msgstr "Loop &Tot Hier" msgid "Run GBA Cores in Dedicated Threads" msgstr "Voer GBA Emulatie uit in Specifieke threads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Uitvoeren tot" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Uitvoeren tot (negeer breekpunten)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Uitvoeren tot hit (negeer breekpunten)" @@ -10317,23 +10331,23 @@ msgstr "Uitvoeren tot hit (negeer breekpunten)" msgid "Russia" msgstr "Rusland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-Kaart" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD-Kaart Bestandsgrootte:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-Kaartafbeedling (*.raw);;Alle Bestanden(*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD-Kaart Pad:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD-Kaart-instellingen" @@ -10341,7 +10355,7 @@ msgstr "SD-Kaart-instellingen" msgid "SD Root:" msgstr "SD Root:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "SD Sync Map:" @@ -10376,11 +10390,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Code Op&slaan" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "S&la State Op" @@ -10390,9 +10404,9 @@ msgid "Safe" msgstr "Veilig" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10402,25 +10416,25 @@ msgstr "Opslaan" msgid "Save All" msgstr "Sla Alles op" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Export Opslaan" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Sla FIFO log op" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Bestand Opslaan in" @@ -10434,11 +10448,11 @@ msgstr "Spel Opslag" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Spel Save Bestanden (*.sav);;All Files (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Import Opslaan" @@ -10450,7 +10464,7 @@ msgstr "Sla Oudste State op" msgid "Save Preset" msgstr "Voorinstelling opslaan" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Sla Opnamebestand op Als" @@ -10500,23 +10514,23 @@ msgstr "Save State Slot 8" msgid "Save State Slot 9" msgstr "Save State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Save State naar Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Save State naar Oudste Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Save State naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Save State naar Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Sla Symbol Map Op &Als..." @@ -10524,7 +10538,7 @@ msgstr "Sla Symbol Map Op &Als..." msgid "Save Texture Cache to State" msgstr "Textuurcache in Save-state opslaan" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Save en Laad State" @@ -10536,11 +10550,11 @@ msgstr "Opslaan als voorinstelling..." msgid "Save as..." msgstr "Opslaan als..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Gecombineerde outputbestand opslaan als" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10554,11 +10568,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Save in de Zelfde Map als de ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Sla mapbestand op" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Sla signatuurbestand op" @@ -10566,11 +10580,11 @@ msgstr "Sla signatuurbestand op" msgid "Save to Selected Slot" msgstr "Opslaan naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Opslaan naar Slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Opslaan..." @@ -10584,7 +10598,7 @@ msgstr "" msgid "Saves:" msgstr "Saves:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "Savestate opname {0} is corrupt, opname wordt gestopt..." @@ -10601,8 +10615,8 @@ msgid "ScrShot" msgstr "Schermafdruk" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Zoeken" @@ -10611,7 +10625,7 @@ msgstr "Zoeken" msgid "Search Address" msgstr "Zoek Adres" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Zoek Huidig Object" @@ -10631,7 +10645,7 @@ msgstr "" "Zoeken is momenteel niet mogelijk in de virtuele adresruimte. Laat het spel " "een tijdje draaien en probeer het opnieuw." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Zoek naar Instructie" @@ -10639,7 +10653,7 @@ msgstr "Zoek naar Instructie" msgid "Search games..." msgstr "Zoek Spellen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Zoek instructie" @@ -10673,7 +10687,7 @@ msgstr "Selecteer" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10684,23 +10698,23 @@ msgid "Select Dump Path" msgstr "Selecteer Dump Pad" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Selecteer Export Map" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Selecteer Figuur Bestand" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Selecteer GBA BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Selecteer GBA ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Selecteer GBA Saves Pad" @@ -10728,7 +10742,7 @@ msgstr "Selecteer Skylander Collectie" msgid "Select Skylander File" msgstr "Selecteer Skylander Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Selecteer Slot %1 - %2" @@ -10736,7 +10750,7 @@ msgstr "Selecteer Slot %1 - %2" msgid "Select State" msgstr "Selecteer State" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Selecteer State Slot" @@ -10797,13 +10811,13 @@ msgstr "Selecteer een Map" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Selecteer een Bestand" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Selecteer een map om te synchroniseren met de SD-kaart afbeelding" @@ -10811,7 +10825,7 @@ msgstr "Selecteer een map om te synchroniseren met de SD-kaart afbeelding" msgid "Select a Game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Selecteer een SD-Kaartafbeelding" @@ -10823,7 +10837,7 @@ msgstr "Selecteer een bestand" msgid "Select a game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Selecteer een titel om te installeren op de NAND" @@ -10831,11 +10845,11 @@ msgstr "Selecteer een titel om te installeren op de NAND" msgid "Select e-Reader Cards" msgstr "Selecteer e-Reader Kaarten" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Selecteer het RSO module adres:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Selecteer Opnamebestand om Af te Spelen" @@ -10843,12 +10857,12 @@ msgstr "Selecteer Opnamebestand om Af te Spelen" msgid "Select the Virtual SD Card Root" msgstr "Selecteer de Virtuele SD-Kaart Root" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Selecteer het sleutelbestand (OTP/SEEPROM dump)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Selecteer het save bestand" @@ -10871,16 +10885,16 @@ msgstr "Geselecteerde controller profiel bestaat niet" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Het geselecteerde spel bestaat niet in de spellijst!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Geselecteerde thread callstack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Geselecteerde thread context" @@ -10900,7 +10914,7 @@ msgstr "" "Selecteert een hardware-adapter om te gebruiken.

In " "geval van twijfel de eerste selecteren." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10938,7 +10952,7 @@ msgstr "" "dat door sommige tv's wordt gebruikt.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10960,7 +10974,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10977,11 +10991,11 @@ msgstr "" "selecteren die het minst problematisch is.

In geval " "van twijfel OpenGL selecteren." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Verzend" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Sensor Bar Positie:" @@ -11014,6 +11028,10 @@ msgstr "Server heeft traversal poging geweigerd" msgid "Set &Value" msgstr "Stel &Waarde In" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11031,23 +11049,23 @@ msgstr "Stel geheugenkaartbestand in voor Slot A" msgid "Set memory card file for Slot B" msgstr "Stel geheugenkaartbestand in voor Slot B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Stel symbool in &eindadres" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Stel symbool in &grootte" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Stel symbool eindadres in" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Stel symboolgrootte (%1) in:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11057,11 +11075,19 @@ msgstr "" "PAL spellen.\n" "Werkt mogelijk niet voor alle spellen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Stelt de Wii-systeemtaal in." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11069,6 +11095,13 @@ msgstr "" "Stelt de vertraging in milliseconden in. Hogere waarden kunnen audio gekraak " "verminderen. Alleen voor bepaalde backends." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11078,13 +11111,13 @@ msgstr "" "virtuele adresruimte. Dit zal werken voor de overgrote meerderheid van " "spellen." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Instellingen" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMem: Kan setting.txt niet aanmaken" @@ -11092,7 +11125,7 @@ msgstr "SetupWiiMem: Kan setting.txt niet aanmaken" msgid "Severity" msgstr "Ernst" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Shadercompilatie" @@ -11114,32 +11147,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Snelheidspercentage tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Toon &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "&Werkbalk tonen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Actieve game in venstertitel weergeven" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Alles tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Australië tonen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Huidig spel op Discord tonen" @@ -11148,7 +11181,7 @@ msgstr "Huidig spel op Discord tonen" msgid "Show Disabled Codes First" msgstr "Toon Eerst de Uitgeschakelde Codes" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL tonen" @@ -11157,31 +11190,31 @@ msgstr "ELF/DOL tonen" msgid "Show Enabled Codes First" msgstr "Toon Eerst de Ingeschakelde Codes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Frameteller tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Frametijden tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Frankrijk tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "GameCube tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Duitsland tonen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Golfmodus-overlay tonen" @@ -11189,23 +11222,23 @@ msgstr "Golfmodus-overlay tonen" msgid "Show Infinity Base" msgstr "Toon Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Inputweergave tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Italië tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "JPN tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Korea tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Vertragingsteller tonen" @@ -11213,27 +11246,27 @@ msgstr "Vertragingsteller tonen" msgid "Show Language:" msgstr "Taal tonen:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Toon Log &Configuratie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "NetPlay-berichten tonen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "NetPlay-ping tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Nederland tonen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "On-screen-berichtgevingen tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL tonen" @@ -11242,27 +11275,27 @@ msgstr "PAL tonen" msgid "Show PC" msgstr "PC weergeven" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Prestatiegrafieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Platforms tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Regio's tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Heropnameteller tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Rusland tonen" @@ -11270,72 +11303,72 @@ msgstr "Rusland tonen" msgid "Show Skylanders Portal" msgstr "Toon Skylanders Portal" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Spanje tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Snelheidskleuren tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Statistieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Systeemklok tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Taiwan tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "VS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Onbekend tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "VBlank-tijden tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "VPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Wereld tonen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "In &geheugen weergeven" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "In Code Weergeven" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "In Geheugen Weergeven" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "In code tonen" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "In geheugen weergeven" @@ -11343,11 +11376,19 @@ msgstr "In geheugen weergeven" msgid "Show in server browser" msgstr "Weergeef in server browser" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Doel in &geheugen tonen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11356,7 +11397,7 @@ msgstr "" "tijdens NetPlay.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11376,7 +11424,25 @@ msgstr "" "snelheid.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11386,7 +11452,7 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11396,7 +11462,7 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11406,7 +11472,7 @@ msgstr "" "de visuele vloeiendheid.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11424,13 +11490,13 @@ msgstr "" "Toont de maximum ping van de spelers tijdens NetPlay." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11454,7 +11520,7 @@ msgstr " Schakel Zijwaarts" msgid "Sideways Wii Remote" msgstr "Wii-afstandsbediening Zijwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Signatuurdatabase" @@ -11473,12 +11539,12 @@ msgstr "Signed 32" msgid "Signed 8" msgstr "Signed 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Vereenvoudigd Chinees" @@ -11495,7 +11561,7 @@ msgstr "Zes Assen" msgid "Size" msgstr "Grootte" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11507,7 +11573,7 @@ msgstr "" msgid "Skip" msgstr "Overslaan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Tekenen Overslaan" @@ -11561,6 +11627,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Alle Bestanden (*)" @@ -11635,7 +11704,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Sorteer Alfabetisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Geluid:" @@ -11649,7 +11718,7 @@ msgstr "Spanje" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spaans" @@ -11657,19 +11726,19 @@ msgstr "Spaans" msgid "Speaker Pan" msgstr "Speaker Pan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Speaker Volume:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Gespecialiseerd (Standaard)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Specifiek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11704,11 +11773,11 @@ msgstr "Snelheid" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Stack eind" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Stack begin" @@ -11716,25 +11785,25 @@ msgstr "Stack begin" msgid "Standard Controller" msgstr "Standaardcontroller" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Start &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Start Nieuwe Cheat Zoekopdracht" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Start Input &Opname" @@ -11742,7 +11811,7 @@ msgstr "Start Input &Opname" msgid "Start Recording" msgstr "Start Opname" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "In volledig scherm starten" @@ -11754,14 +11823,14 @@ msgstr "Start met Riivolution Patches" msgid "Start with Riivolution Patches..." msgstr "Start met Riivolution Patches..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Gestart spel" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Staat" @@ -11793,19 +11862,19 @@ msgstr "Stap Uit" msgid "Step Over" msgstr "Stap Over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Uitstappen succesvol!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Uitstappen timed out!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Overstappen in voortgang..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Stap succesvol!" @@ -11814,7 +11883,7 @@ msgstr "Stap succesvol!" msgid "Stepping" msgstr "Stappen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stereo" @@ -11843,16 +11912,16 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stoppen" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Afspelen/opnemen van input stoppen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Gestopt spel" @@ -11894,11 +11963,11 @@ msgstr "" "Texture)

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Uitrekken naar venster" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Strikte Instellingensynchronisatie" @@ -11912,7 +11981,11 @@ msgstr "String" msgid "Strum" msgstr "Strum" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Stijl:" @@ -11923,18 +11996,18 @@ msgstr "Stijl:" msgid "Stylus" msgstr "Stylus" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Geslaagd" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Succesvol aan NetPlay index toegevoegd" @@ -11944,7 +12017,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "Succesvol %n afbeelding(en) geconverteerd." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "'%1' is succesvol verwijderd." @@ -11957,24 +12030,24 @@ msgstr "Exporteren van %n van de %1 save bestand(en) gelukt." msgid "Successfully exported save files" msgstr "Save bestanden succesvol geëxporteerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Certificaten succesvol uitgepakt van NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Bestand succesvol uitgepakt." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Systeemdata succesvol uitgepakt." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Save bestand succesvol geïmporteerd." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Titel succesvol geïnstalleerd op de NAND." @@ -11997,16 +12070,16 @@ msgstr "Ondersteuning" msgid "Supported file formats" msgstr "Ondersteunde bestandsformaten" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Ondersteunt SD en SDHC. De standaardgrootte is 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Onderbroken" @@ -12053,17 +12126,17 @@ msgstr "Overschakelen naar B" msgid "Symbol" msgstr "Symbool" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Symbool (%1) eindadres:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Symboolnaam:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symbolen" @@ -12071,7 +12144,7 @@ msgstr "Symbolen" msgid "Sync" msgstr "Sync" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "AR/Gecko Codes Synchroniseren" @@ -12091,7 +12164,7 @@ msgstr "" "Synchroniseert de GPU- en CPU-threads om willekeurige vastlopers te " "voorkomen in Dual-core modus. (Aan = Compatibel, Uit = Snel)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12112,24 +12185,24 @@ msgid "Synchronizing save data..." msgstr "Synchroniseren van save data..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Systeemtaal:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS-input" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS-gereedschap" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Tags" @@ -12139,7 +12212,7 @@ msgstr "Tags" msgid "Taiko Drum" msgstr "Taiko Drum" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Staart" @@ -12147,7 +12220,7 @@ msgstr "Staart" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Maak Screenshot" @@ -12155,7 +12228,7 @@ msgstr "Maak Screenshot" msgid "Target address range is invalid." msgstr "Doeladresbereik is ongeldig." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12173,9 +12246,9 @@ msgstr "Tech" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -12188,7 +12261,7 @@ msgstr "Textuurcache" msgid "Texture Cache Accuracy" msgstr "Nauwkeurigheid van textuurcache" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Texture Dumping" @@ -12200,7 +12273,7 @@ msgstr "Textuurfiltering" msgid "Texture Filtering:" msgstr "Textuurfiltering:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Texture Formaat Overlay" @@ -12244,7 +12317,7 @@ msgstr "Het IPL bestand is geen bekende goede dump. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "De Masterpiece partities ontbreken." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12252,7 +12325,7 @@ msgstr "" "De NAND kon niet worden gerepareerd. Het wordt aanbevolen om een back-up te " "maken van uw huidige gegevens en opnieuw te beginnen met een nieuwe NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "De NAND is gerepareerd." @@ -12270,7 +12343,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12330,7 +12403,7 @@ msgstr "" "\n" "Selecteer een ander bestemmingspad voor \"%1\"" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12342,7 +12415,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Schijf kan niet worden gelezen (op {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" "De schijf die op het punt stond geplaatst te worden, kon niet worden " @@ -12440,7 +12513,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Het bestandssysteem is ongeldig of kon niet gelezen worden." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12488,7 +12561,7 @@ msgstr "" "met het systeemmenu te voorkomen, is het niet mogelijk om de geëmuleerde " "console met deze schijf bij te werken." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12561,12 +12634,12 @@ msgid "The patches in %1 are not for the selected game or game revision." msgstr "" "De patches in %1 zijn niet voor het geselecteerde spel or spel revisie." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Het profiel '%1' bestaat niet" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" "Het opgenomen spel ({0}) is niet hetzelfde als het geselecteerde spel ({1})" @@ -12593,7 +12666,7 @@ msgstr "" "Hetzelfde bestand kan niet in meerdere slots worden gebruikt; het wordt al " "gebruikt door %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12635,7 +12708,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Het opgegeven bestand \"{0}\" bestaat niet" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12700,7 +12773,7 @@ msgstr "De updatepartitie ontbreekt." msgid "The update partition is not at its normal position." msgstr "De updatepartitie staat niet op zijn normale positie." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12724,6 +12797,10 @@ msgstr "De {0} partitie is niet correct ondertekend." msgid "The {0} partition is not properly aligned." msgstr "De {0} partitie is niet goed uitgelijnd." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Er zijn te veel partities in de eerste partitietabel." @@ -12738,8 +12815,8 @@ msgstr "" "\n" "Wilt u opslaan voordat u afsluit?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12795,11 +12872,11 @@ msgstr "Dit Skylander-type kan nog niet worden gewijzigd!" msgid "This USB device is already whitelisted." msgstr "Dit USB apparaat staat al op de whitelist." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Deze WAD is niet opstartbaar." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Deze WAD is niet geldig." @@ -12819,7 +12896,7 @@ msgstr "" "Deze build van Dolphin is niet gecompileerd voor uw CPU.\n" "Draai alstublieft de ARM64 build van Dolphin voor een betere ervaring." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Dit kan niet ongedaan gemaakt worden!" @@ -12950,7 +13027,7 @@ msgstr "" msgid "This is a good dump." msgstr "Dit is een goede dump." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12976,7 +13053,7 @@ msgstr "" "Deze software moet niet worden gebruikt om spellen te spelen die u niet " "legaal bezit." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Deze titel kan niet worden opgestart." @@ -13028,7 +13105,7 @@ msgstr "" "Deze waarde wordt vermenigvuldigd met de gekozen diepte waarde in de " "grafische instellingen." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -13043,7 +13120,7 @@ msgstr "" "Dit zal de snelheid van het chunked uploaden per client beperken, wat wordt " "gebruikt om saves te synchroniseren." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13055,11 +13132,11 @@ msgstr "" "Kan desync in spellen die EFB-reads gebruiken voorkomen. Zorg ervoor dat " "iedereen dezelfde video-backend gebruikt." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Thread context" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Threads" @@ -13084,14 +13161,14 @@ msgstr "" "Tijdsperiode van stabiele input om kalibratie te activeren. (nul om uit te " "schakelen)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Timed Out" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titel" @@ -13100,12 +13177,12 @@ msgid "To" msgstr "Naar" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Naar:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Volledig scherm omschakelen" @@ -13130,7 +13207,7 @@ msgid "Toggle Aspect Ratio" msgstr "Schakel Beeldverhouding Om" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Schakel Breekpunt Om" @@ -13186,7 +13263,7 @@ msgstr "Schakel XFB Onmiddellijke Modus Om" msgid "Tokenizing failed." msgstr "Tokeniseren is mislukt." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -13194,7 +13271,7 @@ msgstr "" msgid "Toolbar" msgstr "Toolbar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Boven" @@ -13202,8 +13279,8 @@ msgstr "Boven" msgid "Top-and-Bottom" msgstr "Boven en Beneden" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Totale Hits" @@ -13245,7 +13322,7 @@ msgid "Toy code:" msgstr "Figuur-code:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chinees (Traditioneel)" @@ -13265,8 +13342,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Traversalfout" @@ -13295,7 +13372,7 @@ msgstr "Triforce AM Baseboard" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Trekkers" @@ -13305,7 +13382,7 @@ msgid "Trophy" msgstr "Trofee" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13319,7 +13396,7 @@ msgstr "Type gebaseerde Uitlijning" msgid "Typical GameCube/Wii Address Space" msgstr "Typische GameCube/Wii Adresruimte" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "ONBEKEND" @@ -13331,7 +13408,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB Apparaat Emulatie" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB Emulatie" @@ -13349,7 +13426,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB Whitelist Fout" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13360,7 +13437,7 @@ msgstr "" "low-end hardware.

In geval van twijfel deze modus " "selecteren." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13372,7 +13449,7 @@ msgstr "" "

Alleen aanbevolen als u stotteringen ondervindt " "met Hybride Ubershaders en u een krachtige GPU heeft." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13386,7 +13463,7 @@ msgstr "" "het shadercompilatie met minimale impact op de prestaties, maar de " "resultaten zijn afhankelijk van het gedrag van video-stuurprogramma's." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Kan RSO-module niet automatisch detecteren" @@ -13458,11 +13535,11 @@ msgstr "Ongecomprimeerde GC/Wii-afbeeldingen (*.iso *.gcm)" msgid "Undead" msgstr "Ondood" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Laad State Ongedaan Maken" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Save State Ongedaan Maken" @@ -13483,28 +13560,28 @@ msgstr "" "van deze titel uit de NAND, zonder dat zijn save data wordt verwijderd. " "Doorgaan?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Verenigde Staten" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Onbekend" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Onbekend (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Onbekend DVD commando {0:08x} - fatale fout" @@ -13581,11 +13658,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Onbekend(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Onbekend(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Onbeperkt" @@ -13597,21 +13674,9 @@ msgstr "Leeg ROM" msgid "Unlock Cursor" msgstr "Ontgrendel Cursor" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Ontgrendeld" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "%1 keer ontgrendeld deze sessie" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Ontgrendeld (Casual)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Deze sessie ontgrendeld" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13637,7 +13702,7 @@ msgstr "Unsigned 32" msgid "Unsigned 8" msgstr "Unsigned 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Unsigned Integer" @@ -13651,8 +13716,8 @@ msgstr "Unsigned Integer" msgid "Up" msgstr "Omhoog" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Update" @@ -13660,11 +13725,11 @@ msgstr "Update" msgid "Update Partition (%1)" msgstr "Update Partitie (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Update na het sluiten van Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Update beschikbaar" @@ -13709,7 +13774,7 @@ msgstr "Schakel Rechtop" msgid "Upright Wii Remote" msgstr "Wii-afstandsbediening Rechtop" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Instellingen voor rapportage van gebruiksstatistieken" @@ -13717,15 +13782,15 @@ msgstr "Instellingen voor rapportage van gebruiksstatistieken" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "Gebruik 8.8.8.8 voor normale DNS, voer anders uw eigen in" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Alle Wii Save Data gebruiken" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Gebruik Ingebouwde Database met Spelnamen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Gebruik Lossless Codec (FFV1)" @@ -13733,15 +13798,21 @@ msgstr "Gebruik Lossless Codec (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Gebruik Muis Gestuurd Wijzen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Gebruik PAL60 Modus (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Gebruik Panic Handlers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13786,7 +13857,7 @@ msgstr "Gebruik virtuele adressen waar mogelijk" msgid "User Config" msgstr "Gebruikersconfiguratie" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Gebruikersinterface" @@ -13804,10 +13875,17 @@ msgstr "" "besturingsuitdrukking. U kunt ze gebruiken om waarden op te slaan of te " "verkrijgen tussen input en output van dezelfde controller." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Gebruikersnaam" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13821,7 +13899,7 @@ msgstr "" "

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13831,7 +13909,7 @@ msgstr "" "zal er een render venster worden aangemaakt.

In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14127,8 +14205,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Waarschuwing" @@ -14140,7 +14218,7 @@ msgstr "" "Waarschuwing: Een GCI-map overschrijf pad is momenteel geconfigureerd voor " "dit slot . Het aanpassen van het GCI-pad hier heeft geen effect." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14157,7 +14235,7 @@ msgstr "" "Waarschuwing: Het aantal blokken aangegeven door BAT ({0}) komt niet overeen " "met de geladen bestandsheader ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14167,7 +14245,7 @@ msgstr "" "opname bevindt. (byte {0} > {1}) (input {2} > {3}). U moet een andere save " "laden voordat u verdergaat, of deze state laden in alleen-lezen modus." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14177,7 +14255,7 @@ msgstr "" "het huidige beeld in de save (byte {0} < {1}) (frame {2} < {3}). U moet een " "andere save laden voordat u verder gaat." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14188,7 +14266,7 @@ msgstr "" "of deze staat laden met alleen-lezen uitgeschakeld. Anders zullen er " "waarschijnlijk synchronisatieproblemen optreden. " -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14250,7 +14328,7 @@ msgstr "Westers (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14262,7 +14340,7 @@ msgstr "" "Mipmapdetectie' is ingeschakeld in Verbeteringen." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14274,7 +14352,7 @@ msgstr "" "Mipmapdetectie' is ingeschakeld in Verbeteringen." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Whitelist van USB Passthrough Apparaten" @@ -14306,25 +14384,25 @@ msgstr "Wii-afstandsbediening" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii-afstandsbediening %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr " Wii-afstandsbediening Versnellingsmeter" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii-afstandbedieningsknoppen" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Gyroscoop van Wii-afstandbediening" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii-afstandsbedienings-instellingen" @@ -14332,19 +14410,19 @@ msgstr "Wii-afstandsbedienings-instellingen" msgid "Wii Remotes" msgstr "Wii-afstandsbedieningen" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii-TAS-input %1 - Klassieke controller" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii-TAS-input %1 - Wii-afstandsbediening" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii-TAS-input %1 - Wii-afstandsbediening + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii en Wii-afstandsbediening" @@ -14352,7 +14430,7 @@ msgstr "Wii en Wii-afstandsbediening" msgid "Wii data is not public yet" msgstr "Wii data is nog niet publiek" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii save bestanden (*.bin);;All Files (*)" @@ -14360,15 +14438,7 @@ msgstr "Wii save bestanden (*.bin);;All Files (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools Signatuur MEGA Bestand" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"Vergrendelt de muisaanwijzer binnen de render-widget zolang deze focus " -"heeft. U kunt een sneltoets instellen om deze te ontgrendelen." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -14377,11 +14447,11 @@ msgstr "" msgid "Window Size" msgstr "Venstergrootte" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -14395,10 +14465,11 @@ msgstr "Wereld" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Schrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -14431,39 +14502,39 @@ msgstr "Schrijf naar Log en Breek af" msgid "Write to Window" msgstr "Naar venster schrijven" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Verkeerde schijf nummer" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Verkeerde hash" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Verkeerde regio" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Verkeerde revisie" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF register " @@ -14472,9 +14543,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA Bestemmings Adres" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14502,7 +14573,7 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja op &Alles" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14512,7 +14583,7 @@ msgstr "" "de map in %1. Alle huidige inhoud van de map zal worden verwijderd. Weet u " "zeker dat u door wilt gaan?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14628,7 +14699,7 @@ msgstr "U moet een naam voor uw sessie opgeven!" msgid "You must provide a region for your session!" msgstr "U moet een regio voor uw sessie opgeven!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "U moet Dolphin herstarten voordat deze optie effect zal hebben." @@ -14656,7 +14727,7 @@ msgstr "" "Wilt u nu stoppen om het probleem op te lossen?\n" "Als u \"Nee\" kiest, kan het geluid vervormd zijn." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14665,9 +14736,9 @@ msgstr "" "onjuist functioneren of opslaan niet toe staan." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14676,7 +14747,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 code niet ondersteund" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -14725,7 +14796,7 @@ msgid "default" msgstr "standaard" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "verbinding verbroken" @@ -14733,7 +14804,7 @@ msgstr "verbinding verbroken" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader Kaarten (*.raw);;Alle Bestanden (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14741,7 +14812,7 @@ msgstr "errno" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -14791,16 +14862,6 @@ msgstr "" msgid "none" msgstr "geen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "uit" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "aan" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "of selecteer een apparaat" @@ -14818,7 +14879,7 @@ msgstr "sRGB" msgid "this value:" msgstr "deze waarde:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -14887,12 +14948,9 @@ msgstr "| Of" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin Team. “GameCube”en “Wii” zijn geregistreerde " -"handelsmerken van Nintendo. Dolphin is op geen enkele manier verbonden met " -"Nintendo." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/pl.po b/Languages/po/pl.po index 2c2ca5d5e4..2d2874f7db 100644 --- a/Languages/po/pl.po +++ b/Languages/po/pl.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: FlexBy, 2021,2023\n" "Language-Team: Polish (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -105,7 +105,7 @@ msgstr "" "%1\n" "chce dołączyć do Twojej rozgrywki." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -139,7 +139,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Rewizja %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -159,7 +159,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -170,11 +170,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Konfiguracja graficzna %1" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -191,7 +191,7 @@ msgstr "%1 nie wspiera tej funkcji na twoim systemie." msgid "%1 doesn't support this feature." msgstr "%1 nie wspiera tej funkcji." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -201,33 +201,27 @@ msgstr "" "%2 obiekt(ów)\n" "Aktualna klatka: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 dołączył(a)" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 wyszedł" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -235,13 +229,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -253,30 +247,30 @@ msgstr "Znaleziono %1 sesję" msgid "%1 sessions found" msgstr "Znaleziono %1 sesji" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normalna szybkość)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1's wartość jest używana" @@ -288,6 +282,10 @@ msgstr "" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -357,11 +355,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&O programie" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Dodaj punkt przerwania pamięci" @@ -370,7 +368,7 @@ msgstr "&Dodaj punkt przerwania pamięci" msgid "&Add New Code..." msgstr "&Dodaj nowy kod..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Dodaj funkcję" @@ -378,15 +376,15 @@ msgstr "&Dodaj funkcję" msgid "&Add..." msgstr "&Dodaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Ustawienia &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Automatyczna aktualizacja:" @@ -394,11 +392,15 @@ msgstr "&Automatyczna aktualizacja:" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Punkty przerwania" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -406,15 +408,15 @@ msgstr "" msgid "&Cancel" msgstr "&Anuluj" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Sprawdź aktualizacje..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "Wy&czyść Symbole" @@ -422,7 +424,7 @@ msgstr "Wy&czyść Symbole" msgid "&Clone..." msgstr "&Klonuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -430,16 +432,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Ustawienia &kontrolerów" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Kopiuj adres" @@ -447,20 +448,20 @@ msgstr "&Kopiuj adres" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Usuń" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Usuń obejrzenie" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -474,11 +475,11 @@ msgstr "&Edytuj kod..." msgid "&Edit..." msgstr "&Edytuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulacja" @@ -498,41 +499,41 @@ msgstr "&Eksportuj Stan..." msgid "&Export as .gci..." msgstr "&Eksportuj jako .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Plik" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Czcionka..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "Wyprzedzanie &klatek" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Generuj Symbole Z" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&Repozytorium GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Ustawienia &graficzne" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "Po&moc" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Ustawienia &skrótów klawiaturowych" @@ -552,11 +553,11 @@ msgstr "&Importuj Stan..." msgid "&Import..." msgstr "&Importuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -564,23 +565,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Język:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Wczytaj stan" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -590,19 +591,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "Pa&mięć" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Film" @@ -610,7 +615,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Wycisz" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Sieć" @@ -619,23 +624,23 @@ msgid "&No" msgstr "&Nie" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Otwórz..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opcje" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "W&strzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Graj" @@ -643,7 +648,7 @@ msgstr "&Graj" msgid "&Properties" msgstr "&Właściwości" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Tryb tylko do odczytu" @@ -651,7 +656,7 @@ msgstr "&Tryb tylko do odczytu" msgid "&Refresh List" msgstr "&Odśwież listę" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Rejestry" @@ -664,24 +669,24 @@ msgstr "&Usuń" msgid "&Remove Code" msgstr "&Usuń kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "Z&resetuj" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -689,31 +694,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "Limit &szybkości:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Zatrzymaj" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Motyw:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Wątków" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Narzędzia" @@ -723,21 +728,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Widok" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Obejrz" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Strona internetowa" @@ -749,23 +754,23 @@ msgstr "Wi&ki" msgid "&Yes" msgstr "&Tak" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -801,12 +806,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -867,7 +872,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -925,7 +930,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -951,7 +956,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1044,28 +1049,28 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Jeśli nie jesteś pewien, pozostaw to pole niezaznaczone." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1091,8 +1096,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Sesja NetPlay jest już rozpoczęta!" @@ -1106,7 +1111,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Dysk już jest gotowy do włożenia." @@ -1121,7 +1126,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Stan zapisu nie może zostać wczytany bez określenia gry do uruchomienia." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1139,7 +1144,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Synchronizacja może być uruchomiona, tylko gdy działa gra Wii." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1164,7 +1169,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1207,16 +1212,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Akcja" @@ -1289,7 +1288,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1297,15 +1296,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1313,7 +1312,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter wykryty" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1323,7 +1322,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Dodaj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1348,43 +1347,43 @@ msgstr "Dodaj punkt przerwania" msgid "Add a Memory Breakpoint" msgstr "Dodaj punkt przerwania pamięci" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Dodaj do &oglądania" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Dodaj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adres" @@ -1521,7 +1520,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1530,7 +1529,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1538,34 +1537,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Wszystkie stany zapisu (*.sav *.s##);; wszystkie pliki (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1581,7 +1580,7 @@ msgstr "Kody wszystkich graczy zsynchronizowane." msgid "All players' saves synchronized." msgstr "Zapisy wszystkich graczy zsynchronizowane." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Zezwalaj na niedopasowane ustawienia regionalne" @@ -1589,7 +1588,7 @@ msgstr "Zezwalaj na niedopasowane ustawienia regionalne" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1607,7 +1606,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1629,7 +1628,7 @@ msgstr "Oczekiwano włożonego dysku ale go nie wykryto." msgid "Anaglyph" msgstr "Anaglifowy" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analizuj" @@ -1655,15 +1654,15 @@ msgstr "Antyaliasing:" msgid "Any Region" msgstr "Jakikolwiek region" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1681,7 +1680,7 @@ msgstr "Data Apploadera:" msgid "Apply" msgstr "Zastosuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1689,7 +1688,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Czy jesteś pewien, że chcesz usunąć '%1'?" @@ -1701,7 +1700,7 @@ msgstr "Czy jesteś pewien, że chcesz usunąć ten plik?" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Czy jesteś pewien, że chcesz zamknąć NetPlay?" @@ -1713,16 +1712,16 @@ msgstr "Czy jesteś pewien?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Proporcje obrazu:" @@ -1730,7 +1729,7 @@ msgstr "Proporcje obrazu:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1742,7 +1741,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Przypisz porty kontrolerów" @@ -1763,11 +1762,11 @@ msgstr "" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Silnik audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Ustawienia rozciągania dźwięku" @@ -1783,7 +1782,7 @@ msgstr "Twórca" msgid "Authors" msgstr "Autorzy" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatyczne" @@ -1792,11 +1791,11 @@ msgstr "Automatyczne" msgid "Auto (Multiple of 640x528)" msgstr "Automatyczna (wielokrotność 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Ustawienia automatycznej aktualizacji" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1804,7 +1803,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Automatycznie dopasuj rozmiar okna" @@ -1812,15 +1811,15 @@ msgstr "Automatycznie dopasuj rozmiar okna" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1860,27 +1859,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Rejestr BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Ustawienia silnika" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Silnik:" @@ -1923,7 +1922,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Baner" @@ -1943,15 +1942,15 @@ msgstr "Wajcha" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Podstawowe" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Ustawienia podstawowe" @@ -1967,10 +1966,6 @@ msgstr "" msgid "Battery" msgstr "Bateria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (raz w miesiącu)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -2003,11 +1998,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2017,7 +2012,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2053,67 +2048,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Pełny ekran bez ramek" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Dół" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2125,23 +2120,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2158,7 +2153,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2168,19 +2163,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2195,19 +2190,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Przerwij" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Punkt przerwania" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Napotkano punkt przerwania! Wyjście anulowane." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Punkty przerwania" @@ -2241,24 +2241,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Rozmiar bufora:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Rozmiar bufora zmieniono na %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Bufor:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2303,11 +2303,11 @@ msgstr "" msgid "C Stick" msgstr "C Gałka" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Rejestr CP" @@ -2327,7 +2327,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Buforowany Interpreter (wolniejszy)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2358,7 +2358,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2384,7 +2384,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2400,19 +2400,19 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Nie można uruchomić Sesji NetPlay, podczas gdy gra wciąż jest uruchomiona!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Anuluj" @@ -2421,15 +2421,15 @@ msgstr "Anuluj" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2445,11 +2445,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2457,7 +2457,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2465,7 +2465,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2497,7 +2497,7 @@ msgstr "" msgid "Change &Disc" msgstr "Zmień &dysk" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Zmień &dysk..." @@ -2505,15 +2505,21 @@ msgstr "Zmień &dysk..." msgid "Change Disc" msgstr "Zmień dysk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Zmieniaj dyski automatycznie" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2531,7 +2537,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Zmienianie cheatów uzyska efekt dopiero wtedy, gdy gra zostanie ponownie " @@ -2541,11 +2547,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Rozmówki" @@ -2553,7 +2559,7 @@ msgstr "Rozmówki" msgid "Cheat Code Editor" msgstr "Edytor kodów cheatowania" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Szukaj cheatów" @@ -2561,7 +2567,7 @@ msgstr "Szukaj cheatów" msgid "Cheats Manager" msgstr "Menadżer cheatów" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2579,7 +2585,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Suma kontrolna" @@ -2591,7 +2597,7 @@ msgstr "Chiny" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Wybierz plik do otwarcia" @@ -2599,15 +2605,15 @@ msgstr "Wybierz plik do otwarcia" msgid "Choose a file to open or create" msgstr "Wybierz plik do otwarcia lub utworzenia" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2620,7 +2626,7 @@ msgstr "Wybierz folder do wypakowania" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2631,18 +2637,18 @@ msgstr "Kontroler Klasyczny" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Wyczyść" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Wyczyść pamięć podręczną" @@ -2663,7 +2669,7 @@ msgstr "Sklonuj i &edytuj kod..." msgid "Close" msgstr "Zamknij" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ko&nfiguracja" @@ -2671,11 +2677,11 @@ msgstr "Ko&nfiguracja" msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2703,11 +2709,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2734,7 +2740,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2744,7 +2750,7 @@ msgstr "Kompilowanie shaderów" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2757,7 +2763,7 @@ msgstr "Poziom kompresji:" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2765,11 +2771,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2785,7 +2791,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2800,7 +2806,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2854,7 +2865,7 @@ msgstr "Konfiguruj" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfiguruj Dolphin" @@ -2867,27 +2878,27 @@ msgstr "Skonfiguruj wejście" msgid "Configure Output" msgstr "Skonfiguruj wyjście" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Potwierdź" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Potwierdź przy zatrzymaniu" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Potwierdzenie" @@ -2897,15 +2908,15 @@ msgstr "Potwierdzenie" msgid "Connect" msgstr "Połącz" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Podłącz Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Podłącz klawiaturę USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2925,7 +2936,7 @@ msgstr "Połącz Wiilot 3" msgid "Connect Wii Remote 4" msgstr "Połącz Wiilot 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Połącz Wiiloty" @@ -2941,7 +2952,7 @@ msgstr "Połączyć z Internetem i przeprowadzić aktualizację systemu?" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Łączenie" @@ -2966,7 +2977,7 @@ msgstr "" msgid "Control Stick" msgstr "Gałka sterująca" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Profil kontrolera" @@ -3053,8 +3064,8 @@ msgstr "" msgid "Convergence:" msgstr "Konwergencja:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3062,9 +3073,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3072,9 +3083,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3094,8 +3105,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3124,22 +3135,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopiuj" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopiuj &funkcję" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Kopiuj &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopiuj adres" @@ -3147,19 +3158,19 @@ msgstr "Kopiuj adres" msgid "Copy Failed" msgstr "Kopiowanie nie powiodło się" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Kopiuj Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3177,8 +3188,8 @@ msgstr "" msgid "Core" msgstr "Rdzeń" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3289,7 +3300,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3305,13 +3316,13 @@ msgstr "" msgid "Country:" msgstr "Kraj:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3325,7 +3336,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3342,11 +3353,11 @@ msgstr "Twórca:" msgid "Critical" msgstr "Krytyczny" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Przycinanie obrazu" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3358,42 +3369,42 @@ msgstr "" msgid "Crossfade" msgstr "Suwak" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Aktualny region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3401,15 +3412,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3452,7 +3463,7 @@ msgstr "" msgid "DK Bongos" msgstr "Bongosy DK" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Tryb emulacji DSP" @@ -3460,15 +3471,15 @@ msgstr "Tryb emulacji DSP" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3494,7 +3505,7 @@ msgstr "Mata do tańczenia" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3539,8 +3550,8 @@ msgstr "Dead Zone" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugowanie" @@ -3549,7 +3560,7 @@ msgstr "Debugowanie" msgid "Decimal" msgstr "Dziesiętnie" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3588,7 +3599,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Domyślne" @@ -3596,7 +3607,7 @@ msgstr "Domyślne" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3608,11 +3619,11 @@ msgstr "Domyślna czcionka" msgid "Default ISO:" msgstr "Domyślne ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3620,7 +3631,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3629,8 +3640,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Usuń" @@ -3660,12 +3672,12 @@ msgstr "" msgid "Depth:" msgstr "Głębia:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" @@ -3679,8 +3691,8 @@ msgstr "Opis:" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3692,21 +3704,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3714,7 +3726,7 @@ msgstr "" msgid "Detect" msgstr "Wykryj" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3722,11 +3734,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministyczna dwurdzeniowość:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Deweloperska (wiele razy w ciągu dnia)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Urządzenie" @@ -3744,7 +3756,7 @@ msgstr "Ustawienia urządzenia" msgid "Device VID (e.g., 057e)" msgstr "VID urządzenia (np. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3752,7 +3764,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Ekran wygasa po 5 minutach braku aktywności." @@ -3768,11 +3780,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Wyłącz prostokąt ograniczający" @@ -3781,7 +3788,7 @@ msgstr "Wyłącz prostokąt ograniczający" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3789,11 +3796,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Wyłącz limit szybkości emulacji" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3801,11 +3808,11 @@ msgstr "" msgid "Disable Fog" msgstr "Wyłącz mgłę" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3820,7 +3827,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Dysk" @@ -3844,6 +3857,10 @@ msgstr "Dysk" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3875,11 +3892,11 @@ 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Czy chcesz wyczyścić listę nazw symboli?" @@ -3889,7 +3906,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Zatrzymać aktualną emulację?" @@ -3897,12 +3914,12 @@ msgstr "Zatrzymać aktualną emulację?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dekoder Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3910,9 +3927,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3924,8 +3941,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmy TAS (*.dtm)" @@ -3960,7 +3977,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3974,13 +3991,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "System cheatów programu Dolphin jest aktualnie wyłączony." @@ -3989,7 +4006,7 @@ msgstr "System cheatów programu Dolphin jest aktualnie wyłączony." msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Nie aktualizuj" @@ -4010,7 +4027,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -4032,7 +4049,7 @@ msgstr "Pobierz kody" msgid "Download Codes from the WiiRD Database" msgstr "Pobierz kody z bazy danych WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -4044,6 +4061,16 @@ msgstr "Pobieranie zakończone" msgid "Downloaded %1 codes. (added %2)" msgstr "Pobrano %1 kodów. (dodano %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4083,19 +4110,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Zrzucaj audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Zrzucaj docelowy EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Zrzucaj klatki" @@ -4103,7 +4130,7 @@ msgstr "Zrzucaj klatki" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4111,7 +4138,7 @@ msgstr "" msgid "Dump Path:" msgstr "Ścieżka zrzutu:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4136,44 +4163,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holenderski" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Wyjście" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4185,7 +4212,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4193,7 +4220,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Wczesne aktualizacje pamięci" @@ -4212,7 +4239,16 @@ msgstr "Azja Wschodnia" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4232,7 +4268,7 @@ msgstr "Efekt" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4254,11 +4290,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "Wbudowany bufor klatki (Embedded Frame Buffer - EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Pusty" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Wątek emulacji jest już uruchomiony" @@ -4284,7 +4320,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4306,34 +4342,24 @@ msgstr "Szybkość emulacji" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Włącz weryfikację warstw API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Włącz rozciąganie dźwięku" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Włącz cheaty" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4341,15 +4367,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "Włącz dostosowany RTC" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Włącz dwa rdzenie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Włącz dwa rdzenie (przyspieszenie)" @@ -4361,7 +4391,7 @@ msgstr "Zmień częstotliwość taktowania emulowanego CPU" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4369,15 +4399,15 @@ msgstr "" msgid "Enable FPRF" msgstr "Włącz FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4395,41 +4425,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Włącz MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Włącz skanowanie progresywne" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Włącz wygaszacz ekranu" @@ -4437,19 +4459,23 @@ msgstr "Włącz wygaszacz ekranu" msgid "Enable Speaker Data" msgstr "Włącz dane głosu" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Włącz raportowanie statystyk użytkowania" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Włącz przedstawienie szkieletowe" @@ -4457,34 +4483,13 @@ msgstr "Włącz przedstawienie szkieletowe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4492,34 +4497,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4554,7 +4566,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4562,7 +4574,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4579,7 +4591,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4607,7 +4619,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4615,7 +4627,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4623,7 +4635,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4642,13 +4654,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet nie zainicjował się" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Angielski" @@ -4665,7 +4681,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Wprowadź ID urządzenia USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4689,33 +4705,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4728,52 +4744,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Błąd" @@ -4790,7 +4806,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4805,7 +4821,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4900,12 +4916,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4949,11 +4965,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Eksportuj wszystkie zapisy Wii" @@ -4968,7 +4984,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksportuj nagranie" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Eksportuj nagranie..." @@ -4996,14 +5012,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Rozszerzenie" @@ -5016,7 +5032,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -5024,35 +5040,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Zewnętrzny bufor klatki (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Wypakuj certyfikaty z NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Wypakuj cały dysk..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Wypakuj całą partycję" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Wypakuj plik..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Wypakuj pliki..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Wypakuj dane systemowe..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Wypakowywanie wszystkich plików..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Wypakowywanie folderu..." @@ -5061,8 +5077,8 @@ msgstr "Wypakowywanie folderu..." msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Odtwarzacz FIFO" @@ -5076,11 +5092,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5100,7 +5116,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5121,15 +5137,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5175,15 +5191,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Nie udało się wypakować pliku." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5202,25 +5218,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5240,11 +5256,11 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5252,8 +5268,8 @@ msgstr "" "Nasłuch na porcie %1 zakończony niepowodzeniem. Czy jest uruchomiony jakiś " "inny serwer NetPlay?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5265,21 +5281,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5293,17 +5309,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Nie udało się otworzyć '%1'" @@ -5311,7 +5327,7 @@ msgstr "Nie udało się otworzyć '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5341,15 +5357,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5357,11 +5373,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5408,23 +5424,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5438,7 +5454,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5469,31 +5485,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Nie udało się zapisać log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5544,19 +5560,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5569,7 +5585,7 @@ msgstr "Szybki" msgid "Fast Depth Calculation" msgstr "Szybkie obliczanie głębi" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5580,7 +5596,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5594,7 +5610,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5602,24 +5618,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Informacje o pliku" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nazwa pliku" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Rozmiar pliku" @@ -5704,7 +5720,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flagi" @@ -5713,12 +5728,12 @@ msgstr "Flagi" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5738,7 +5753,7 @@ msgid "" "\">refer to this page
." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Wymuszaj 16:9" @@ -5746,7 +5761,7 @@ msgstr "Wymuszaj 16:9" msgid "Force 24-Bit Color" msgstr "Wymuszaj 24-bitowy kolor" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Wymuszaj 4:3" @@ -5778,11 +5793,11 @@ msgstr "Wymuszaj nasłuch na porcie:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5804,6 +5819,12 @@ msgid "" "unsure, leave this checked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5819,7 +5840,7 @@ msgstr "W przód" msgid "Forward port (UPnP)" msgstr "Przekieruj port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5829,7 +5850,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5850,11 +5871,11 @@ msgstr "Zwiększ szybkość wyprzedzania klatek" msgid "Frame Advance Reset Speed" msgstr "Zresetuj szybkość wyprzedzania klatek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Zrzucanie klatek" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Zasięg klatki" @@ -5862,7 +5883,7 @@ msgstr "Zasięg klatki" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5882,7 +5903,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5913,7 +5934,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francuski" @@ -5932,8 +5953,8 @@ msgid "From" msgstr "Z" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5941,10 +5962,14 @@ msgstr "" msgid "FullScr" msgstr "Pełny ekran" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funkcja" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5985,11 +6010,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6031,7 +6056,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "Dekodowanie tekstur za pomocą GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6041,25 +6066,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6071,7 +6096,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6089,22 +6114,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartridże GBA (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6133,7 +6158,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID gry" @@ -6142,25 +6167,25 @@ msgstr "ID gry" msgid "Game ID:" msgstr "ID gry:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Zmieniono grę na \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6173,7 +6198,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6193,11 +6218,11 @@ msgstr "Adapter GameCube do Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Adapter GameCube do Wii U w porcie %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Kontroler GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Kontroler GameCube w porcie %1" @@ -6205,11 +6230,11 @@ msgstr "Kontroler GameCube w porcie %1" msgid "GameCube Controllers" msgstr "Kontrolery GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Klawiatura GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Klawiatura GameCube w porcie %1" @@ -6226,7 +6251,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6254,7 +6279,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kody Gecko" @@ -6264,35 +6289,35 @@ msgstr "Kody 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Główne" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Ogóły i opcje" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Generuj nową tożsamość" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Niemiecki" @@ -6319,7 +6344,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6328,7 +6353,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafika" @@ -6368,7 +6393,7 @@ msgstr "Zielony lewo" msgid "Green Right" msgstr "Zielony prawo" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Widok kafelków" @@ -6405,7 +6430,7 @@ msgstr "" msgid "Hacks" msgstr "Hacki" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6437,7 +6462,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Heksadecymalne" @@ -6446,11 +6471,11 @@ msgstr "Heksadecymalne" msgid "Hide" msgstr "Ukryj" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6462,16 +6487,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6494,7 +6526,7 @@ msgstr "Hostuj" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6502,7 +6534,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6510,11 +6542,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6526,7 +6558,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Ustawienia skrótów klawiaturowych" @@ -6536,11 +6568,11 @@ msgstr "Ustawienia skrótów klawiaturowych" msgid "Hotkeys" msgstr "Skróty klawiaturowe" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6593,12 +6625,12 @@ msgstr "Adres IP:" msgid "IPL Settings" msgstr "Ustawienia IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Czułość IR" @@ -6624,14 +6656,14 @@ msgstr "" msgid "Icon" msgstr "Ikona" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Generacja tożsamości" @@ -6657,7 +6689,7 @@ msgstr "" "powodują błędy oraz problemy z wydajnością i stabilnością.\n" "Autoryzacja może zostać wycofana w każdej chwili poprzez ustawienia programu." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6671,14 +6703,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6690,7 +6722,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6722,7 +6754,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Natychmiastowo obecny XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6731,7 +6763,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6746,21 +6778,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importuj zapis Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6838,7 +6879,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6847,7 +6888,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6867,12 +6908,12 @@ msgstr "Informacje" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informacja" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6881,11 +6922,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Wejście" @@ -6899,23 +6940,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Włóż kartę SD" @@ -6928,11 +6965,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Zainstaluj WAD..." @@ -6940,13 +6977,13 @@ msgstr "Zainstaluj WAD..." msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6955,7 +6992,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6964,7 +7001,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6981,19 +7018,19 @@ msgstr "" msgid "Interface" msgstr "Interfejs" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7006,19 +7043,19 @@ msgstr "Wewnętrzny błąd LZO - kompresja nie powiodła się" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7033,7 +7070,7 @@ msgstr "Rozdzielczość wewnętrzna" msgid "Internal Resolution:" msgstr "Rozdzielczość wewnętrzna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7041,7 +7078,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (najwolniejszy)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7057,7 +7094,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7066,11 +7103,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7091,7 +7128,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7107,19 +7144,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Newłaściwy plik nagrania" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Niewłaściwy parametr przeszukiwania (nie wybrano obiektu)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Niewłaściwy łańcuch przeszukiwania (nie udało się zamienić na liczbę)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Niewłaściwy łańcuch przeszukiwania (wspierane są tylko równe długości " @@ -7129,13 +7166,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Włoski" @@ -7148,11 +7185,11 @@ msgstr "Włochy" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7160,47 +7197,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7212,31 +7249,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japonia" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japoński" @@ -7253,12 +7290,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Trzymaj okno zawsze na wierzchu" @@ -7292,16 +7329,16 @@ msgstr "Klawisze" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Wyrzuć gracza" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Koreański" @@ -7322,7 +7359,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7330,7 +7367,11 @@ msgstr "" msgid "Label" msgstr "Etykieta" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7344,23 +7385,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Opóźnienie" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7368,7 +7409,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7376,7 +7417,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7387,7 +7428,7 @@ msgstr "Lewo" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Gałka lewa" @@ -7458,11 +7499,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Pokaż kolumny" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Widok listy" @@ -7471,30 +7512,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Wczytaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Wczytuj dostosowane tekstury" @@ -7502,11 +7543,11 @@ msgstr "Wczytuj dostosowane tekstury" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7612,23 +7653,23 @@ msgstr "Wczytaj stan Slot 8" msgid "Load State Slot 9" msgstr "Wczytaj stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Wczytaj stan z pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Wczytaj stan z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Wczytaj stan ze slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7636,54 +7677,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Wczytaj z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Wczytaj ze slotu Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Wczytaj plik map" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Wczytaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7692,19 +7741,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Konfiguracja logu" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Loguj czas renderowania do pliku" @@ -7716,31 +7765,31 @@ msgstr "Typy logów" msgid "Logger Outputs" msgstr "Logger Outputs" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7752,7 +7801,7 @@ msgstr "" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7800,7 +7849,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Producent" @@ -7817,16 +7866,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7838,11 +7887,11 @@ msgstr "" msgid "Match Found" msgstr "Trafienie znalezione" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7851,7 +7900,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Może powodować spowolnienie w Wii Menu i niektórych grach." @@ -7872,7 +7921,7 @@ msgstr "" msgid "Memory Card" msgstr "Karta pamięci" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7900,7 +7949,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7914,7 +7963,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -7923,15 +7972,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Różne" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Ustawienia różne" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7943,7 +7992,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7963,7 +8012,7 @@ msgstr "" msgid "Modifier" msgstr "Zmiennik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7979,8 +8028,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7988,7 +8037,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -8000,11 +8049,11 @@ msgstr "Monoskopowe cienie" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -8013,23 +8062,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8040,13 +8076,13 @@ msgstr "" msgid "Movie" msgstr "Film" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8059,10 +8095,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8071,8 +8107,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8081,7 +8117,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8098,8 +8134,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8142,7 +8178,7 @@ msgstr "Natywna (640x528)" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8158,27 +8194,27 @@ msgstr "" msgid "Netherlands" msgstr "Holandia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8186,16 +8222,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8220,7 +8256,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Nowa tożsamość została wygenerowana." @@ -8237,7 +8273,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8283,7 +8319,7 @@ msgstr "" msgid "No Match" msgstr "Brak trafień" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8291,12 +8327,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Brak opisu" @@ -8308,7 +8344,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8316,7 +8352,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8329,11 +8365,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Nie wykryto żadnych problemów" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8356,7 +8392,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8373,10 +8409,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Brak" @@ -8388,7 +8424,7 @@ msgstr "Ameryka Północna" msgid "Not Set" msgstr "Nieokreślona" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Nie wszyscy gracze mają tę grę. Czy na pewno chcesz rozpocząć?" @@ -8408,7 +8444,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8452,26 +8488,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8523,7 +8559,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Zasięg objektu" @@ -8544,18 +8580,18 @@ msgstr "" msgid "On" msgstr "Włączone" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8570,7 +8606,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Dokumentacja online" @@ -8578,13 +8614,13 @@ msgstr "&Dokumentacja online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8603,7 +8639,7 @@ msgstr "Otwórz" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8612,7 +8648,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Otwórz log FIFO" @@ -8678,34 +8714,34 @@ msgstr "Pomarańczowy" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8720,11 +8756,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "Inne skróty klawiaturowe stanów" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Inne zarządzanie stanami" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8740,16 +8776,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Odtwórz nagranie wejścia..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8762,11 +8798,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8778,7 +8814,7 @@ msgstr "Plik graficzny PNG (*.png);; All Files (*)" msgid "PPC Size" msgstr "Rozmiar PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8812,7 +8848,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8850,15 +8886,15 @@ msgstr "Ścieżki" msgid "Pause" msgstr "Wstrzymaj" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Wstrzymaj na końcu filmu" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Wstrzymaj gdy okno nieaktywne" @@ -8874,6 +8910,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8893,7 +8935,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Oświetlenie na piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8901,15 +8943,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8927,11 +8969,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8944,7 +8986,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platforma" @@ -8952,7 +8994,7 @@ msgstr "Platforma" msgid "Play" msgstr "Graj" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8964,40 +9006,40 @@ msgstr "Odtwórz nagranie" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opcje odtwarzania" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Gracze" @@ -9014,7 +9056,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9030,7 +9072,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Port %1" @@ -9047,7 +9089,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9063,24 +9105,32 @@ msgstr "Efekt przetwarzania końcowego:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Wstępnie pobieraj dostosowane tekstury" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9105,7 +9155,7 @@ msgstr "Naciśnij przycisk Sync" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9120,7 +9170,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9131,7 +9181,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9165,7 +9215,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9174,23 +9224,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "Licznik programu" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9210,18 +9266,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Pytanie" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Zamknij" @@ -9238,19 +9294,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9271,7 +9327,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9279,16 +9335,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9327,8 +9384,8 @@ msgstr "Prawdziwy Wiilot" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9337,23 +9394,23 @@ msgstr "" msgid "Recenter" msgstr "Wyśrodkuj" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Nagranie" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opcje nagrywania" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Nagrywanie..." @@ -9386,7 +9443,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9417,7 +9474,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9438,7 +9495,11 @@ msgstr "Wejście relatywne" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9446,7 +9507,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Usuń" @@ -9474,20 +9535,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Renderuj do okna głównego‭" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9501,10 +9562,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9514,7 +9581,7 @@ msgstr "Zresetuj" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9546,7 +9613,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Zresetuj wszystkie zapisane sparowania Wiilotów" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9558,7 +9625,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Wymagane ponowne uruchomienie" @@ -9566,11 +9633,11 @@ msgstr "Wymagane ponowne uruchomienie" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Ponów" @@ -9579,7 +9646,7 @@ msgstr "Ponów" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9591,7 +9658,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9602,7 +9669,7 @@ msgstr "Prawo" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Gałka prawa" @@ -9638,11 +9705,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ID pokoju" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9660,27 +9727,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9693,7 +9764,7 @@ msgstr "" msgid "Rumble" msgstr "Wibracje" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9701,15 +9772,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9717,23 +9788,23 @@ msgstr "" msgid "Russia" msgstr "Rosja" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Ścieżka karty SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9741,7 +9812,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9776,11 +9847,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Z&apisz stan" @@ -9790,9 +9861,9 @@ msgid "Safe" msgstr "Bezpieczny" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9802,25 +9873,25 @@ msgstr "Zapisz" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Zapisz log FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Zapisz plik do" @@ -9834,11 +9905,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9850,7 +9921,7 @@ msgstr "Zapisz najstarszy stan" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9900,23 +9971,23 @@ msgstr "Zapisz stan Slot 8" msgid "Save State Slot 9" msgstr "Zapisz stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Zapisz stan do pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Zapisz stan w najstarszym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Zapisz stan we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Zapisz stan w slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9924,7 +9995,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Zapisz i wczytaj stan" @@ -9936,11 +10007,11 @@ msgstr "" msgid "Save as..." msgstr "Zapisz jako..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9951,11 +10022,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9963,11 +10034,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "Zapisz we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Zapisz w slocie %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Zapisz..." @@ -9979,7 +10050,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9996,8 +10067,8 @@ msgid "ScrShot" msgstr "Zrzut ekranu" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Szukaj" @@ -10006,7 +10077,7 @@ msgstr "Szukaj" msgid "Search Address" msgstr "Szukaj adresu" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Przeszukaj aktualny obiekt" @@ -10024,7 +10095,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -10032,7 +10103,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -10066,7 +10137,7 @@ msgstr "Wybierz" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10077,23 +10148,23 @@ msgid "Select Dump Path" msgstr "Wybierz ścieżkę zrzutu" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10121,7 +10192,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Wybierz slot %1 - %2" @@ -10129,7 +10200,7 @@ msgstr "Wybierz slot %1 - %2" msgid "Select State" msgstr "Wybierz stan" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Wybierz slot stanu" @@ -10190,13 +10261,13 @@ msgstr "Wybierz ścieżkę" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Wybierz plik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10204,7 +10275,7 @@ msgstr "" msgid "Select a Game" msgstr "Wybierz grę" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10216,7 +10287,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10224,11 +10295,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10236,12 +10307,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Wybierz plik do zapisu" @@ -10264,16 +10335,16 @@ msgstr "Wybrany profil kontrolera nie istnieje" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10289,7 +10360,7 @@ msgid "" "select the first one." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10319,7 +10390,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10341,7 +10412,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10351,11 +10422,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Wyślij" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Pozycja Sensor Baru:" @@ -10383,6 +10454,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10400,23 +10475,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10426,29 +10501,44 @@ msgstr "" "gier PAL.\n" "Może nie działać z niektórymi grami." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Ustawia język systemu Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Ustawienia" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMem: Nie można utworzyć pliku setting.txt" @@ -10456,7 +10546,7 @@ msgstr "SetupWiiMem: Nie można utworzyć pliku setting.txt" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10478,32 +10568,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Pokaż &log" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Pokaż pasek &narzędzi" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Pokazuj aktywny tytuł w tytule okna" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Pokaż Australię" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Pokazuj aktualną grę w programie Discord" @@ -10512,7 +10602,7 @@ msgstr "Pokazuj aktualną grę w programie Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Pokaż ELF/DOL" @@ -10521,31 +10611,31 @@ msgstr "Pokaż ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Pokazuj kl./s" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Pokazuj licznik klatek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Pokaż Francję" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Pokaż GameCube'a" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Pokaż Niemcy" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10553,23 +10643,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Pokaż wejścia ekranu" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Pokaż Włochy" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Pokaż Koreę" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Pokaż licznik lagów" @@ -10577,27 +10667,27 @@ msgstr "Pokaż licznik lagów" msgid "Show Language:" msgstr "Pokaż język:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Pokaż &konfigurację logu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Pokazuj wiadomości NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Pokazuj ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Pokaż Holandię" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Pokaż PAL" @@ -10606,27 +10696,27 @@ msgstr "Pokaż PAL" msgid "Show PC" msgstr "Pokaż PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Pokaż platformy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Pokaż regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Pokaż Rosję" @@ -10634,72 +10724,72 @@ msgstr "Pokaż Rosję" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Pokaż Hiszpanię" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Pokazuj statystyki" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Pokaż zegar systemowy" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Pokaż Tajwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Pokaż USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Pokaż nieznane" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Pokaż WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Pokaż Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Pokaż świat" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10707,71 +10797,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10793,7 +10916,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "Wiilot trzymany poziomo" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10812,12 +10935,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chiński uproszczony" @@ -10834,7 +10957,7 @@ msgstr "" msgid "Size" msgstr "Rozmiar" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10844,7 +10967,7 @@ msgstr "" msgid "Skip" msgstr "Pomiń" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10888,6 +11011,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10960,7 +11086,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10974,7 +11100,7 @@ msgstr "Hiszpania" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Hiszpański" @@ -10982,19 +11108,19 @@ msgstr "Hiszpański" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Poziom głośnika:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11019,11 +11145,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -11031,25 +11157,25 @@ msgstr "" msgid "Standard Controller" msgstr "Standardowy kontroler" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Uruchom &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Rozpocznij nagrywanie wejścia" @@ -11057,7 +11183,7 @@ msgstr "&Rozpocznij nagrywanie wejścia" msgid "Start Recording" msgstr "Rozpocznij nagrywanie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11069,14 +11195,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11108,19 +11234,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Wyjście udane!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Wyjście przekroczyło czas oczekiwania!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Przekraczanie w toku..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Krok wykonany!" @@ -11129,7 +11255,7 @@ msgstr "Krok wykonany!" msgid "Stepping" msgstr "Kroki" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11158,16 +11284,16 @@ msgid "Stick" msgstr "Gałka" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zatrzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Zatrzymana gra" @@ -11199,11 +11325,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Rozciągnij do okna" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Ścisła synchronizacja ustawień" @@ -11217,7 +11343,11 @@ msgstr "Łańcuch" msgid "Strum" msgstr "Struny" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11228,18 +11358,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Powodzenie" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11249,7 +11379,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Pomyślnie usunięto '%1'." @@ -11262,24 +11392,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Pliki zapisów zostały pomyślnie wyeksportowane" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Certyfikaty z NAND zostały pomyślnie wyodrębnione" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Plik został pomyślnie wyodrębniony." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Dane systemowe zostały pomyślnie wyodrębnione." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Ten tytuł został pomyślnie zainstalowany do NAND." @@ -11302,16 +11432,16 @@ msgstr "Wsparcie" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11355,17 +11485,17 @@ msgstr "" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symbole" @@ -11373,7 +11503,7 @@ msgstr "Symbole" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11391,7 +11521,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11410,24 +11540,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Język systemu:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Wejście 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Narzędzia TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11437,7 +11567,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11445,7 +11575,7 @@ msgstr "" msgid "Taiwan" msgstr "Tajwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Zrób zrzut ekranu" @@ -11453,7 +11583,7 @@ msgstr "Zrób zrzut ekranu" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11469,9 +11599,9 @@ msgstr "" msgid "Test" msgstr "Testuj" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11484,7 +11614,7 @@ msgstr "Bufor tekstur" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11496,7 +11626,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Nakładka formatu tekstur" @@ -11533,13 +11663,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND został naprawiony." @@ -11554,7 +11684,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11601,7 +11731,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11611,7 +11741,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Dysk, który miał być włożony nie mógł zostać odnaleziony." @@ -11690,7 +11820,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11730,7 +11860,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11789,12 +11919,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Profil '%1' nie istnieje." -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11814,7 +11944,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11848,7 +11978,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11906,7 +12036,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11928,6 +12058,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11939,8 +12073,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11988,11 +12122,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "To urządzenie USB jest już na białej liście." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -12010,7 +12144,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "To nie może być cofnięte!" @@ -12109,7 +12243,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12135,7 +12269,7 @@ msgstr "" "To oprogramowanie nie powinno być używane do grania w tytuły, których nie " "posiadasz." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12178,7 +12312,7 @@ msgid "" msgstr "" "Ta wartość zwielokrotnia się z głębią ustawioną w konfiguracji graficznej." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12191,7 +12325,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12199,11 +12333,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12226,14 +12360,14 @@ msgstr "Przechylenie" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Tytuł" @@ -12242,12 +12376,12 @@ msgid "To" msgstr "Do" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Do:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Przełącz pełny &ekran" @@ -12272,7 +12406,7 @@ msgid "Toggle Aspect Ratio" msgstr "Przełącz proporcje obrazu" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Przełącz punkt przerwania" @@ -12328,7 +12462,7 @@ msgstr "Przełącz tryb natychmiastowy XFB" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12336,7 +12470,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Góra" @@ -12344,8 +12478,8 @@ msgstr "Góra" msgid "Top-and-Bottom" msgstr "Góra-i-dół" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12387,7 +12521,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chiński tradycyjny" @@ -12407,8 +12541,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12435,7 +12569,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Spusty" @@ -12445,7 +12579,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12459,7 +12593,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12471,7 +12605,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12489,14 +12623,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12504,7 +12638,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12513,7 +12647,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12576,11 +12710,11 @@ msgstr "Nieskompresowane obrazy gier GC/Wii (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Cofnij wczytywanie stanu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Cofnij zapisywanie stanu" @@ -12598,28 +12732,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Stany Zjednoczone" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Nieznany" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12690,11 +12824,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Nieograniczona szybkość" @@ -12706,20 +12840,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12746,7 +12868,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12760,8 +12882,8 @@ msgstr "" msgid "Up" msgstr "Góra" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Aktualizuj" @@ -12769,11 +12891,11 @@ msgstr "Aktualizuj" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Zaktualizuj po zamknięciu programu Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12816,7 +12938,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "Wiilot trzymany pionowo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Ustawienia raportowania statystyk użytkowania" @@ -12824,15 +12946,15 @@ msgstr "Ustawienia raportowania statystyk użytkowania" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Użyj wbudowanej bazy danych nazw gier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12840,15 +12962,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Użyj trybu PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Użyj Panic Handlers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12882,7 +13010,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Interfejs użytkownika" @@ -12897,10 +13025,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12909,14 +13044,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13179,8 +13314,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Ostrzeżenie" @@ -13190,7 +13325,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13202,28 +13337,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13268,7 +13403,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13276,7 +13411,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13284,7 +13419,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Zezwolone urządzenia przejściowe USB" @@ -13316,25 +13451,25 @@ msgstr "Wiilot" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Pilot %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Ustawienia Wii Pilota" @@ -13342,19 +13477,19 @@ msgstr "Ustawienia Wii Pilota" msgid "Wii Remotes" msgstr "Wiiloty" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii i Wiilot" @@ -13362,7 +13497,7 @@ msgstr "Wii i Wiilot" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Pliki zapisu Wii (*.bin);Wszystkie pliki (*)" @@ -13370,13 +13505,7 @@ msgstr "Pliki zapisu Wii (*.bin);Wszystkie pliki (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13385,11 +13514,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13403,10 +13532,11 @@ msgstr "Świat" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13439,39 +13569,39 @@ msgstr "" msgid "Write to Window" msgstr "Wpisz do okna" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Rejestr XF" @@ -13480,9 +13610,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13510,14 +13640,14 @@ msgstr "Tak" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13594,7 +13724,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Musisz ponownie uruchomić program Dolphin, aby zastosować zmianę." @@ -13614,16 +13744,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -13632,7 +13762,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Kod 3 zero niewspierany" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13681,7 +13811,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13689,7 +13819,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13697,7 +13827,7 @@ msgstr "" msgid "fake-completion" msgstr "fałszywe-ukończenie‭‭" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13745,16 +13875,6 @@ msgstr "" msgid "none" msgstr "żadna" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "lub wybierz urządzenie" @@ -13772,7 +13892,7 @@ msgstr "" msgid "this value:" msgstr "ta wartość:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13837,12 +13957,9 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin Team. „GameCube” oraz „Wii” są zastrzeżonymi znakami " -"towarowymi Nintendo. Dolphin nie jest powiązany z Nintendo w jakikolwiek " -"sposób." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/pt.po b/Languages/po/pt.po index e54b039990..4e05f1b99d 100644 --- a/Languages/po/pt.po +++ b/Languages/po/pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zilaan , 2011\n" "Language-Team: Portuguese (http://app.transifex.com/delroth/dolphin-emu/" @@ -80,7 +80,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -114,7 +114,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -145,11 +145,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -166,40 +166,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -207,13 +201,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -225,30 +219,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -260,6 +254,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -329,11 +327,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -342,7 +340,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -350,15 +348,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -366,11 +364,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Pontos de partida" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -378,15 +380,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -394,7 +396,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -402,16 +404,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -419,20 +420,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -446,11 +447,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulação" @@ -470,41 +471,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Ficheiro" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Avançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Definições Gráficas" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Definições de Teclas de Atalho" @@ -524,11 +525,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -536,23 +537,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Carregar Estado" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -562,19 +563,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -582,7 +587,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -591,23 +596,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Começar" @@ -615,7 +620,7 @@ msgstr "&Começar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -623,7 +628,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registos" @@ -636,24 +641,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -661,31 +666,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Parar" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Ferramentas" @@ -695,21 +700,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Ver" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -721,23 +726,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -773,12 +778,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -839,7 +844,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -897,7 +902,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -923,7 +928,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1016,26 +1021,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1058,8 +1063,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1073,7 +1078,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1087,7 +1092,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1103,7 +1108,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1128,7 +1133,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1171,16 +1176,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1253,7 +1252,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1261,15 +1260,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1277,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adaptador:" @@ -1287,7 +1286,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Adicionar" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1312,43 +1311,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Adicionar..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1474,7 +1473,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1483,7 +1482,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1491,34 +1490,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1534,7 +1533,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1542,7 +1541,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1560,7 +1559,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1582,7 +1581,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analisar" @@ -1608,15 +1607,15 @@ msgstr "Anti-Serrilhamento" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1634,7 +1633,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1642,7 +1641,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1654,7 +1653,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1666,16 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Proporção de ecrã:" @@ -1683,7 +1682,7 @@ msgstr "Proporção de ecrã:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1695,7 +1694,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1716,11 +1715,11 @@ msgstr "" msgid "Audio" msgstr "Áudio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Áudio Backend :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1736,7 +1735,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automático" @@ -1745,11 +1744,11 @@ msgstr "Automático" msgid "Auto (Multiple of 640x528)" msgstr "Automático (Multiplo de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1757,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1765,15 +1764,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1813,27 +1812,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Definições Backend" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -1876,7 +1875,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -1896,15 +1895,15 @@ msgstr "Barra" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Definições Básicas" @@ -1920,10 +1919,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1956,11 +1951,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1970,7 +1965,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2006,67 +2001,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Inferior" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2078,23 +2073,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2111,7 +2106,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2121,19 +2116,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2148,19 +2143,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2194,24 +2194,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2256,11 +2256,11 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2280,7 +2280,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2311,7 +2311,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2337,7 +2337,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2353,18 +2353,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2373,15 +2373,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2397,11 +2397,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2409,7 +2409,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2417,7 +2417,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2449,7 +2449,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Mudar &Disco..." @@ -2457,15 +2457,21 @@ msgstr "Mudar &Disco..." msgid "Change Disc" msgstr "Mudar Disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2483,7 +2489,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2491,11 +2497,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Conversa" @@ -2503,7 +2509,7 @@ msgstr "Conversa" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Procura de Cheats" @@ -2511,7 +2517,7 @@ msgstr "Procura de Cheats" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2529,7 +2535,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2541,7 +2547,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Escolha um ficheiro para abrir" @@ -2549,15 +2555,15 @@ msgstr "Escolha um ficheiro para abrir" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2570,7 +2576,7 @@ msgstr "Escolha a pasta para extrair" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2581,18 +2587,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Limpar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2613,7 +2619,7 @@ msgstr "" msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2621,11 +2627,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2653,11 +2659,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2684,7 +2690,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2694,7 +2700,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2707,7 +2713,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2715,11 +2721,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2735,7 +2741,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2750,7 +2756,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2804,7 +2815,7 @@ msgstr "Configuração" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2817,27 +2828,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Confirmar Ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2847,15 +2858,15 @@ msgstr "" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2875,7 +2886,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2891,7 +2902,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2916,7 +2927,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3003,8 +3014,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3012,9 +3023,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3022,9 +3033,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3044,8 +3055,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3074,22 +3085,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3097,19 +3108,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3127,8 +3138,8 @@ msgstr "" msgid "Core" msgstr "Core" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3235,7 +3246,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3251,13 +3262,13 @@ msgstr "" msgid "Country:" msgstr "País" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3271,7 +3282,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3288,11 +3299,11 @@ msgstr "" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Recortar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3304,42 +3315,42 @@ msgstr "" msgid "Crossfade" msgstr "Desvanecimento cruzado" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3347,15 +3358,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3398,7 +3409,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3406,15 +3417,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3440,7 +3451,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3485,8 +3496,8 @@ msgstr "Zona morta" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuração" @@ -3495,7 +3506,7 @@ msgstr "Depuração" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3534,7 +3545,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Padrão" @@ -3542,7 +3553,7 @@ msgstr "Padrão" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3554,11 +3565,11 @@ msgstr "" msgid "Default ISO:" msgstr "ISO Padrão:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3566,7 +3577,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3575,8 +3586,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Apagar" @@ -3606,12 +3618,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" @@ -3625,8 +3637,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3638,21 +3650,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3660,7 +3672,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3668,11 +3680,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Dispositivo" @@ -3690,7 +3702,7 @@ msgstr "Definições de Dispositivo" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3698,7 +3710,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3714,11 +3726,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3727,7 +3734,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3735,11 +3742,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3747,11 +3754,11 @@ msgstr "" msgid "Disable Fog" msgstr "Desactivar Nevoeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3766,7 +3773,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disco" @@ -3790,6 +3803,10 @@ msgstr "Disco" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3820,11 +3837,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3834,7 +3851,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Deseja parar a emulação actual?" @@ -3842,12 +3859,12 @@ msgstr "Deseja parar a emulação actual?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3855,9 +3872,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3869,8 +3886,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS filmes (*.dtm)" @@ -3903,7 +3920,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3917,13 +3934,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3932,7 +3949,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3953,7 +3970,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3975,7 +3992,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3987,6 +4004,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4026,19 +4053,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Depositar Áudio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Depositar Alvo EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Depositar Quadros" @@ -4046,7 +4073,7 @@ msgstr "Depositar Quadros" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4054,7 +4081,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4079,44 +4106,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holandês" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "S&air" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4128,7 +4155,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4136,7 +4163,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Actualizações de Memória Inicial" @@ -4155,7 +4182,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4175,7 +4211,7 @@ msgstr "Efeito" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4197,11 +4233,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Thread de Emulador já em execução" @@ -4227,7 +4263,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4249,34 +4285,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Activar Cheats" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4284,15 +4310,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activar Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Activar Dual Core (aumento de desempenho)" @@ -4304,7 +4334,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4312,15 +4342,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4338,41 +4368,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Activar MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Activar Progressive Scan" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Activar Protector de Ecrã" @@ -4380,19 +4402,23 @@ msgstr "Activar Protector de Ecrã" msgid "Enable Speaker Data" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Activar Wireframe" @@ -4400,34 +4426,13 @@ msgstr "Activar Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4435,34 +4440,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4493,7 +4505,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4501,7 +4513,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4518,7 +4530,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4546,7 +4558,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4554,7 +4566,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4562,7 +4574,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4581,13 +4593,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Inglês" @@ -4604,7 +4620,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4628,33 +4644,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4667,52 +4683,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Erro" @@ -4729,7 +4745,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4745,7 +4761,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4836,12 +4852,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4885,11 +4901,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportar Todos os Jogos Guardados Wii" @@ -4904,7 +4920,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -4932,14 +4948,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensão" @@ -4952,7 +4968,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4960,35 +4976,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extrair Ficheiro..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4997,8 +5013,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Reprodutor FIFO" @@ -5012,11 +5028,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5036,7 +5052,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5057,15 +5073,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5111,15 +5127,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5138,25 +5154,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5176,18 +5192,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5199,21 +5215,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5227,17 +5243,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5245,7 +5261,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5275,15 +5291,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5291,11 +5307,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5342,23 +5358,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5372,7 +5388,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5403,31 +5419,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5478,19 +5494,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5503,7 +5519,7 @@ msgstr "Rápido" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5514,7 +5530,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5528,7 +5544,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5536,24 +5552,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Informação de Ficheiro" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5638,7 +5654,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5647,12 +5662,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5672,7 +5687,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forçar 16:9" @@ -5680,7 +5695,7 @@ msgstr "Forçar 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forçar 4:3" @@ -5712,11 +5727,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5738,6 +5753,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5753,7 +5774,7 @@ msgstr "Frente" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5763,7 +5784,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5784,11 +5805,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Alcance de Quadros" @@ -5796,7 +5817,7 @@ msgstr "Alcance de Quadros" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5816,7 +5837,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5847,7 +5868,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francês" @@ -5866,8 +5887,8 @@ msgid "From" msgstr "De" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5875,10 +5896,14 @@ msgstr "" msgid "FullScr" msgstr "Ecrã Inteiro" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5919,11 +5944,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5965,7 +5990,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5975,25 +6000,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6005,7 +6030,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6023,22 +6048,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6067,7 +6092,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6076,25 +6101,25 @@ msgstr "" msgid "Game ID:" msgstr "ID do Jogo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6107,7 +6132,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6127,11 +6152,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6139,11 +6164,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6160,7 +6185,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6188,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6198,35 +6223,35 @@ msgstr "Códigos 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Geral" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Alemão" @@ -6253,7 +6278,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6262,7 +6287,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gráficos" @@ -6302,7 +6327,7 @@ msgstr "Verde Esquerda" msgid "Green Right" msgstr "Verde Direita" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6339,7 +6364,7 @@ msgstr "" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6371,7 +6396,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6380,11 +6405,11 @@ msgstr "" msgid "Hide" msgstr "Esconder" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6396,16 +6421,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6428,7 +6460,7 @@ msgstr "Host" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6436,7 +6468,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6444,11 +6476,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6460,7 +6492,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6470,11 +6502,11 @@ msgstr "" msgid "Hotkeys" msgstr "Teclas de Atalho" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6527,12 +6559,12 @@ msgstr "" msgid "IPL Settings" msgstr "Definições IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IV" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilidade de Infra Vermelhos" @@ -6558,14 +6590,14 @@ msgstr "" msgid "Icon" msgstr "Ícone" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6582,7 +6614,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6596,14 +6628,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6615,7 +6647,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6647,7 +6679,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6656,7 +6688,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6671,21 +6703,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6763,7 +6804,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6772,7 +6813,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6792,12 +6833,12 @@ msgstr "Informação" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informação" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6806,11 +6847,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Entrada" @@ -6824,23 +6865,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Inserir Cartão SD" @@ -6853,11 +6890,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6865,13 +6902,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6880,7 +6917,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6889,7 +6926,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6906,19 +6943,19 @@ msgstr "" msgid "Interface" msgstr "Iinterface" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6931,19 +6968,19 @@ msgstr "Erro interno de LZO - compressão falhou" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6958,7 +6995,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Resolução Interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6966,7 +7003,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6982,7 +7019,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6991,11 +7028,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7016,7 +7053,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7032,19 +7069,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Ficheiro de Gravação inválido" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" @@ -7052,13 +7089,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiano" @@ -7071,11 +7108,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7083,47 +7120,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7135,31 +7172,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonês" @@ -7176,12 +7213,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7215,16 +7252,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coreano" @@ -7245,7 +7282,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7253,7 +7290,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7267,23 +7308,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7291,7 +7332,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7299,7 +7340,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7310,7 +7351,7 @@ msgstr "Esquerda" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Stick Esquerdo" @@ -7381,11 +7422,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7394,30 +7435,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Carregar Texturas Personalizadas" @@ -7425,11 +7466,11 @@ msgstr "Carregar Texturas Personalizadas" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7535,23 +7576,23 @@ msgstr "Carregar Estado Slot 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7559,54 +7600,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Relatório" @@ -7615,19 +7664,19 @@ msgstr "Relatório" msgid "Log Configuration" msgstr "Configuração de Relatório" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7639,31 +7688,31 @@ msgstr "Tipos de Relatório" msgid "Logger Outputs" msgstr "Saídas de Gerador de Relatórios" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7675,7 +7724,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7723,7 +7772,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7740,16 +7789,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7761,11 +7810,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7774,7 +7823,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7795,7 +7844,7 @@ msgstr "" msgid "Memory Card" msgstr "Cartão de memória" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7823,7 +7872,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7837,7 +7886,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7846,15 +7895,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Diversos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Configurações Diversas" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7866,7 +7915,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7886,7 +7935,7 @@ msgstr "" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7902,8 +7951,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7911,7 +7960,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7923,11 +7972,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7936,23 +7985,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7963,13 +7999,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7982,10 +8018,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7994,8 +8030,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8004,7 +8040,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8021,8 +8057,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8065,7 +8101,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8081,27 +8117,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8109,16 +8145,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8143,7 +8179,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8160,7 +8196,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8206,7 +8242,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8214,12 +8250,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Nenhuma descrição disponível" @@ -8231,7 +8267,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8239,7 +8275,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8252,11 +8288,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8279,7 +8315,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8296,10 +8332,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Nenhum" @@ -8311,7 +8347,7 @@ msgstr "" msgid "Not Set" msgstr "Não definido" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8331,7 +8367,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8375,26 +8411,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8446,7 +8482,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Alcance de Objecto" @@ -8467,18 +8503,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8493,7 +8529,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Online e documentação" @@ -8501,13 +8537,13 @@ msgstr "Online e documentação" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8524,7 +8560,7 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8533,7 +8569,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8599,34 +8635,34 @@ msgstr "Laranja" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8641,11 +8677,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8661,16 +8697,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8683,11 +8719,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8699,7 +8735,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8733,7 +8769,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8771,15 +8807,15 @@ msgstr "Caminhos" msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8795,6 +8831,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8814,7 +8856,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminação por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8822,15 +8864,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8848,11 +8890,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8865,7 +8907,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8873,7 +8915,7 @@ msgstr "" msgid "Play" msgstr "Começar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8885,40 +8927,40 @@ msgstr "Tocar Gravação" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opções de Reprodução" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Jogadores" @@ -8935,7 +8977,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8951,7 +8993,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8968,7 +9010,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8984,24 +9026,32 @@ msgstr "Efeito de Pós-Processamento" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9024,7 +9074,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9039,7 +9089,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9050,7 +9100,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9084,7 +9134,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Perfil" @@ -9093,23 +9143,29 @@ msgstr "Perfil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9129,18 +9185,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Questão" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Sair" @@ -9157,19 +9213,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analógico" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9190,7 +9246,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9198,16 +9254,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9246,8 +9303,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9256,23 +9313,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Gravar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opções de Gravação" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9305,7 +9362,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9336,7 +9393,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9357,7 +9414,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9365,7 +9426,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Remover" @@ -9393,20 +9454,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Renderizar para a Janela Principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9420,10 +9481,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9433,7 +9500,7 @@ msgstr "Reset" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9465,7 +9532,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9477,7 +9544,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9485,11 +9552,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9498,7 +9565,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9510,7 +9577,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9521,7 +9588,7 @@ msgstr "Direita" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Stick Direito" @@ -9557,11 +9624,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9579,27 +9646,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9612,7 +9683,7 @@ msgstr "" msgid "Rumble" msgstr "Vibração" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9620,15 +9691,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9636,23 +9707,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9660,7 +9731,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9695,11 +9766,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Gua&rdar Estado" @@ -9709,9 +9780,9 @@ msgid "Safe" msgstr "Seguro" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9721,25 +9792,25 @@ msgstr "Guardar" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9753,11 +9824,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9769,7 +9840,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9819,23 +9890,23 @@ msgstr "Guardar Estado Slot 8" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9843,7 +9914,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9855,11 +9926,11 @@ msgstr "" msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9870,11 +9941,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9882,11 +9953,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9898,7 +9969,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9915,8 +9986,8 @@ msgid "ScrShot" msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "" @@ -9925,7 +9996,7 @@ msgstr "" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9943,7 +10014,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9951,7 +10022,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9985,7 +10056,7 @@ msgstr "Seleccionar" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9996,23 +10067,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10040,7 +10111,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10048,7 +10119,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10109,13 +10180,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10123,7 +10194,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10135,7 +10206,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10143,11 +10214,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10155,12 +10226,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Seleccione o ficheiro de jogo guardado" @@ -10183,16 +10254,16 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10208,7 +10279,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10238,7 +10309,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10260,7 +10331,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10270,11 +10341,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Posição da Barra de Sensor:" @@ -10302,6 +10373,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10319,52 +10394,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10372,7 +10462,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10394,32 +10484,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Mostrar &Relatório" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Mostrar Barra de Ferramen&tas" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10428,7 +10518,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10437,31 +10527,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10469,23 +10559,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Mostrar visualização de Entradas" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Mostrar Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Mostrar Coreia" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10493,27 +10583,27 @@ msgstr "" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Mostrar &Configuração de Relatório" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Mostrar Pal" @@ -10522,27 +10612,27 @@ msgstr "Mostrar Pal" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Mostrar Plataformas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10550,72 +10640,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Mostrar Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10623,71 +10713,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10709,7 +10832,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10728,12 +10851,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chinês Simplificado" @@ -10750,7 +10873,7 @@ msgstr "" msgid "Size" msgstr "Dimensão" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10760,7 +10883,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10804,6 +10927,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10874,7 +11000,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10888,7 +11014,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Espanhol" @@ -10896,19 +11022,19 @@ msgstr "Espanhol" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volume do Altifalante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10933,11 +11059,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10945,25 +11071,25 @@ msgstr "" msgid "Standard Controller" msgstr "Comando padrão" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Começar" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10971,7 +11097,7 @@ msgstr "" msgid "Start Recording" msgstr "Começar Gravação" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10983,14 +11109,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11022,19 +11148,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11043,7 +11169,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11072,16 +11198,16 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11113,11 +11239,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Ajustar à janela" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11131,7 +11257,11 @@ msgstr "" msgid "Strum" msgstr "Strum" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11142,18 +11272,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11163,7 +11293,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11176,24 +11306,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11216,16 +11346,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11269,17 +11399,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11287,7 +11417,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11305,7 +11435,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11324,24 +11454,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Idioma do sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Entrada 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11351,7 +11481,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11359,7 +11489,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Tirar Screenshot" @@ -11367,7 +11497,7 @@ msgstr "Tirar Screenshot" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11383,9 +11513,9 @@ msgstr "" msgid "Test" msgstr "Teste" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11398,7 +11528,7 @@ msgstr "Cache de Textura" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11410,7 +11540,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Formato da textura" @@ -11447,13 +11577,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11468,7 +11598,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11515,7 +11645,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11525,7 +11655,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11604,7 +11734,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11644,7 +11774,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11703,12 +11833,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11728,7 +11858,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11762,7 +11892,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11820,7 +11950,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11842,6 +11972,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11853,8 +11987,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11902,11 +12036,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11924,7 +12058,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12023,7 +12157,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12043,7 +12177,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12083,7 +12217,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12096,7 +12230,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12104,11 +12238,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12131,14 +12265,14 @@ msgstr "Tilt" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Título" @@ -12147,12 +12281,12 @@ msgid "To" msgstr "Para" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12177,7 +12311,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12233,7 +12367,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12241,7 +12375,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Topo" @@ -12249,8 +12383,8 @@ msgstr "Topo" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12292,7 +12426,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chinês Tradicional" @@ -12312,8 +12446,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12340,7 +12474,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Gatilhos" @@ -12350,7 +12484,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12364,7 +12498,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12376,7 +12510,7 @@ msgstr "EUA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12394,14 +12528,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12409,7 +12543,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12418,7 +12552,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12481,11 +12615,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Retroceder Carregamento de Estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "" @@ -12503,28 +12637,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Desconhecido" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12595,11 +12729,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12611,20 +12745,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12651,7 +12773,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12665,8 +12787,8 @@ msgstr "" msgid "Up" msgstr "Cima" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Actualizar" @@ -12674,11 +12796,11 @@ msgstr "Actualizar" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12721,7 +12843,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12729,15 +12851,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12745,15 +12867,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Usar Manipuladores de Pânico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12787,7 +12915,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12802,10 +12930,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12814,14 +12949,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13084,8 +13219,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Aviso" @@ -13095,7 +13230,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13107,28 +13242,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13173,7 +13308,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13181,7 +13316,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13189,7 +13324,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13221,25 +13356,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13247,19 +13382,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13267,7 +13402,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13275,13 +13410,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13290,11 +13419,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13308,10 +13437,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13344,39 +13474,39 @@ msgstr "" msgid "Write to Window" msgstr "Escrever para a Janela" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13385,9 +13515,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13415,14 +13545,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13499,7 +13629,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Tem que reiniciar o Dolphin para que as alterações sejam efectuadas" @@ -13519,16 +13649,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13537,7 +13667,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "Código Zero 3 não é suportado" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13586,7 +13716,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13594,7 +13724,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13602,7 +13732,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13650,16 +13780,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13677,7 +13797,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13742,7 +13862,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index f797bb5636..ba46aff353 100644 --- a/Languages/po/pt_BR.po +++ b/Languages/po/pt_BR.po @@ -10,9 +10,9 @@ # David Rodrigues , 2014-2015,2019 # Efraim, 2019 # Efraim, 2019 -# Emertels , 2020 -# Emertels , 2020-2022 -# Emertels , 2020 +# Emertels, 2020 +# Emertels, 2020-2022 +# Emertels, 2020 # Felipefpl, 2015 # Felipefpl , 2015 # Felipefpl, 2015 @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mateus B. Cassiano , 2017,2021-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/delroth/dolphin-" @@ -128,7 +128,7 @@ msgstr "" "%1\n" "quer se juntar ao seu grupo." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1%" @@ -162,7 +162,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revisão %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Padrão)" @@ -182,7 +182,7 @@ msgstr "%1 (lento)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -196,11 +196,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Configuração de Gráficos %1" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -217,7 +217,7 @@ msgstr "O backend %1 não é compatível com esse recurso no seu sistema." msgid "%1 doesn't support this feature." msgstr "O backend %1 não é compatível com esse recurso." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -227,35 +227,27 @@ msgstr "" "%2 objeto(s)\n" "Quadro Atual: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 entrou" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 saiu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 desbloqueou %2 de %3 conquistas (%4 hardcore) valendo %5 de %6 pontos (%7 " -"hardcore)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 desbloqueou %2 de %3 conquistas valendo %4 de %5 pontos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 não é uma ROM válida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 assumiu controle do golfe" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 está jogando %2" @@ -263,13 +255,13 @@ msgstr "%1 está jogando %2" msgid "%1 memory ranges" msgstr "%1 alcances da memória" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 pontos" @@ -281,30 +273,30 @@ msgstr "%1 sessão encontrada" msgid "%1 sessions found" msgstr "%1 sessões encontradas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Velocidade Normal)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "o valor do %1 foi mudado" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "O valor do %1 foi atingido" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "O valor do %1 é usado" @@ -316,6 +308,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -385,11 +381,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Sobre" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Adicionar Ponto de Interrupção de Memória" @@ -398,7 +394,7 @@ msgstr "&Adicionar Ponto de Interrupção de Memória" msgid "&Add New Code..." msgstr "&Adicionar Novo Código..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Adicionar função" @@ -406,15 +402,15 @@ msgstr "&Adicionar função" msgid "&Add..." msgstr "&Adicionar..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Configurações de &Som" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "C&anal:" @@ -422,11 +418,15 @@ msgstr "C&anal:" msgid "&Borderless Window" msgstr "Janela Sem &Bordas" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Pontos de Interrupção" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -434,15 +434,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Cancelar" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "Gerenciador de &Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "Verificar &Atualizações..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Limpar Símbolos" @@ -450,7 +450,7 @@ msgstr "&Limpar Símbolos" msgid "&Clone..." msgstr "&Duplicar..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Código" @@ -458,16 +458,15 @@ msgstr "&Código" msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Configurações de &Controles" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "&Copiar Endereço" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Copiar endereço" @@ -475,20 +474,20 @@ msgstr "&Copiar endereço" msgid "&Create..." msgstr "&Criar..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "E&xcluir" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Apagar Observação" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Apagar Relógios" @@ -502,11 +501,11 @@ msgstr "&Editar Código..." msgid "&Edit..." msgstr "&Editar..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Ejetar Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulação" @@ -526,41 +525,41 @@ msgstr "&Exportar Estado Salvo..." msgid "&Export as .gci..." msgstr "&Exportar como .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Fonte..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "A&vançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Configurações do Olhar Livre" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Gerar Símbolos De" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Repositório no &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Configurações de &Gráficos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "Aj&uda" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Configurações das &Teclas de Atalho" @@ -580,11 +579,11 @@ msgstr "&Importar Estado Salvo..." msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "Base &Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Inserir blr" @@ -592,23 +591,23 @@ msgstr "&Inserir blr" msgid "&Interframe Blending" msgstr "&Mistura do Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Idioma:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "&Carregar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "Carregar Estado Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Carregar o Mapa dos Símbolos" @@ -618,19 +617,23 @@ msgstr "&Carregar o arquivo no endereço atual" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Trancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "B&loquear Widgets" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Gravação" @@ -638,7 +641,7 @@ msgstr "&Gravação" msgid "&Mute" msgstr "Ativar &Mudo" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Rede" @@ -647,23 +650,23 @@ msgid "&No" msgstr "&Não" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "A&brir..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Funções HLE do Patch" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "P&ausar" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "Inici&ar" @@ -671,7 +674,7 @@ msgstr "Inici&ar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "Modo &Somente Leitura" @@ -679,7 +682,7 @@ msgstr "Modo &Somente Leitura" msgid "&Refresh List" msgstr "&Atualizar Lista" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registradores" @@ -692,24 +695,24 @@ msgstr "&Remover" msgid "&Remove Code" msgstr "&Remover Código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Renomear Símbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reiniciar" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "Gerenciador de Pacotes de &Recursos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "&Salvar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Salvar Mapa de Símbolos" @@ -717,31 +720,31 @@ msgstr "&Salvar Mapa de Símbolos" msgid "&Scan e-Reader Card(s)..." msgstr "&Escanear Cartões do e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "Portal &Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Limite de Velocidade:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Parar" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Threads" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "&Ferramenta" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Ferramentas" @@ -751,21 +754,21 @@ msgstr "&Fechar ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "&Destrancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Visualizar" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "A&ssistir" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Website" @@ -777,23 +780,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sim" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1\" não foi encontrado, nenhum nome de símbolo foi gerado" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' não foi encontrado, ao invés disto escaneando por funções comuns" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Escuro)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Claro)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Sistema)" @@ -829,12 +832,12 @@ msgstr "- Subtrair" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Desconhecido--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -895,7 +898,7 @@ msgstr "Inteiro de 16 bits (Com Sinal)" msgid "16-bit Unsigned Integer" msgstr "Inteiro de 16 bits (Sem Sinal)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -953,7 +956,7 @@ msgstr "Inteiro de 32 bits (Sem Sinal)" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -979,7 +982,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbits (59 blocos)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1072,22 +1075,22 @@ msgstr "< Menor que" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "Desativado no Modo Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1095,7 +1098,7 @@ msgstr "" "O tempo do AutoStepping se esgotou. A instrução atual " "é irrelevante." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1124,8 +1127,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Maior que" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Uma sessão do NetPlay já está em progresso!" @@ -1145,7 +1148,7 @@ msgstr "" "\n" "Instalar este WAD substituirá permanentemente a versão anterior. Continuar?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Um disco já está prestes a ser inserido." @@ -1164,7 +1167,7 @@ msgstr "" "Não é possível carregar um estado salvo sem especificar um jogo para " "executar." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1186,7 +1189,7 @@ msgstr "" "Uma sincronização só pode ser acionada quando um jogo de Wii está em " "execução." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "Salvar A&utomaticamente" @@ -1222,7 +1225,7 @@ msgstr "" "• Suporte para o Wii Remote no NetPlay é experimental e pode não funcionar " "corretamente. Use por sua conta e risco.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Códigos AR" @@ -1265,18 +1268,10 @@ msgid "Achievement Settings" msgstr "Configurações das Conquistas" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Conquistas" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"As conquistas foram desativadas.
Por favor feche todos os jogos em " -"execução para reativar as conquistas." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Ação" @@ -1369,7 +1364,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "Ativar Chat do NetPlay" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Ativo" @@ -1377,15 +1372,15 @@ msgstr "Ativo" msgid "Active Infinity Figures:" msgstr "Figuras Infinity Ativas" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Fila do thread ativo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Threads ativas" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adaptador" @@ -1393,7 +1388,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador Detectado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adaptador:" @@ -1403,7 +1398,7 @@ msgstr "Adaptador:" msgid "Add" msgstr "Adicionar" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Adicionar &ponto de interrupção" @@ -1428,43 +1423,43 @@ msgstr "Adicionar Ponto de Interrupção" msgid "Add a Memory Breakpoint" msgstr "Adicionar Ponto de Interrupção de Memória" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Adicionar ponto de interrupção da &memória" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Adicionar ponto de interrupção da memória" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Adicionar a &observação" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Adicionar a observação" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Adicionar..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Endereço" @@ -1638,7 +1633,7 @@ msgid "All Assembly files" msgstr "Todos os arquivos do Assembly" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Tudo Duplo" @@ -1647,7 +1642,7 @@ msgstr "Tudo Duplo" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1655,34 +1650,34 @@ msgid "All Files" msgstr "Todos os arquivos" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Todos os arquivos (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Todos Flutuantes" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Todos os arquivos do GC/Wii" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Tudo Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos os Estados Salvos (*.sav *.s##);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Todos os Inteiros Assinados" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Todos os Inteiros Não Assinados" @@ -1698,7 +1693,7 @@ msgstr "Todos os códigos dos jogadores sincronizados." msgid "All players' saves synchronized." msgstr "Todos os saves dos jogadores sincronizados." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Permitir Configurações de Região Incompatíveis" @@ -1706,7 +1701,7 @@ msgstr "Permitir Configurações de Região Incompatíveis" msgid "Allow Usage Statistics Reporting" msgstr "Permitir Envio de Estatísticas de Uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Permitir Gravações no Cartão SD" @@ -1726,7 +1721,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Fontes de Entrada Adicionais" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Sempre" @@ -1748,7 +1743,7 @@ msgstr "Era esperado um disco inserido mas não foi achado." msgid "Anaglyph" msgstr "Anáglifo" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analisar" @@ -1774,15 +1769,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualquer Região" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Anexar assinatura a" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Anexar ao &Arquivo de Assinatura Existente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Apl&icar Arquivo de Assinatura..." @@ -1802,7 +1797,7 @@ msgstr "Data do Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Aplicar arquivo de assinatura" @@ -1810,7 +1805,7 @@ msgstr "Aplicar arquivo de assinatura" msgid "Arbitrary Mipmap Detection" msgstr "Detecção de Mipmaps Arbitrários" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Tem certeza de que deseja excluir o perfil \"%1\"?" @@ -1822,7 +1817,7 @@ msgstr "Tem certeza de que deseja excluir este arquivo?" msgid "Are you sure you want to delete this pack?" msgstr "Tem certeza de que deseja excluir esse pacote?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Você tem certeza que você quer sair do NetPlay?" @@ -1834,16 +1829,16 @@ msgstr "Tem certeza?" msgid "Area Sampling" msgstr "Amostragem da Área" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Proporção de Tela" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Resolução Interna com Proporção de Tela Corrigida" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Proporção de Tela:" @@ -1851,7 +1846,7 @@ msgstr "Proporção de Tela:" msgid "Assemble" msgstr "Assemble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Instruções do Assembly" @@ -1863,7 +1858,7 @@ msgstr "Assembler" msgid "Assembly File" msgstr "Arquivo Assembly" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Definir Porta dos Controles" @@ -1886,11 +1881,11 @@ msgstr "Conectar o Motion Plus" msgid "Audio" msgstr "Áudio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Configurações do Alongamento de Áudio" @@ -1906,7 +1901,7 @@ msgstr "Autor" msgid "Authors" msgstr "Autores" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automática" @@ -1915,11 +1910,11 @@ msgstr "Automática" msgid "Auto (Multiple of 640x528)" msgstr "Automática (Múltipla de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Configurações de Atualização Automática" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1931,7 +1926,7 @@ msgstr "" "\n" "Por favor selecione uma resolução interna específica." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Auto-Ajustar o Tamanho da Janela" @@ -1939,15 +1934,15 @@ msgstr "Auto-Ajustar o Tamanho da Janela" msgid "Auto-Hide" msgstr "Ocultar Automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Auto-detectar os módulos do RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Sincronizar Automaticamente com a Pasta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1993,27 +1988,27 @@ msgstr "Endereço de destino do BBA" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Registrador BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Cadeia Traseira" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Usar Múltiplas Threads" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Configurações do Backend" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -2056,7 +2051,7 @@ msgstr "Valor ruim fornecido." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -2076,15 +2071,15 @@ msgstr "Barra" msgid "Base Address" msgstr "Endereço Base" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Prioridade base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Configurações Básicas" @@ -2102,10 +2097,6 @@ msgstr "" msgid "Battery" msgstr "Bateria" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (mensalmente)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, etc." @@ -2138,11 +2129,11 @@ msgstr "SSL Binário (leitura)" msgid "Binary SSL (write)" msgstr "SSL Binário (gravação)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Taxa de Bits (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2156,7 +2147,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Tamanho do Bloco" @@ -2195,67 +2186,67 @@ msgstr "" "foi compilada sem o libusb. O modo de redirecionamento não pode ser " "utilizado." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Do Início até a Pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Arquivo de backup da NAND do BootMii (*.bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Arquivo de chaves do BootMii (*.bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Tela Cheia Sem Bordas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Embaixo" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "Branch" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "Branch (LR salvo)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "Branch Condicional" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "Branch Condicional (LR salvo)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "Branch Condicional para Registrador Contador" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "Branch Condicional para Registrador Contador (LR salvo)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "Branch Condicional para Registrador de Link" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "Branch Condicional para Registrador de Link (LR salvo)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "Branch Não Foi Sobrescrita" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "Tipo de Branch" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "Branch Foi Sobrescrita" @@ -2267,23 +2258,23 @@ msgstr "Branch Watch" msgid "Branch Watch Tool" msgstr "Ferramenta Branch Watch" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "Ajuda da Ferramenta Branch Watch (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "Ajuda da Ferramenta Branch Watch (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "Ajuda da Ferramenta Branch Watch (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "Ajuda da Ferramenta Branch Watch (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2314,7 +2305,7 @@ msgstr "" "seja instruída a resumir o monitoramento. Pressione o botão \"Limpar Branch " "Watch\" para remover todos os candidatos e retornar à etapa de exclusão." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2331,19 +2322,19 @@ msgstr "" "ferramenta avançará para a próxima fase e preencherá a tabela com todos os " "candidatos elegíveis." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "Branch para Registrador Contador" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "Branch para Registrador Contador (LR salvo)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "Branch para Registrador de Link" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "Branch para Registrador de Link (LR salvo)" @@ -2358,19 +2349,24 @@ msgstr "Vertentes" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Interrupção" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Pontos de Interrupção" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Ponto de interrupção encontrado! Saída abortada." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Pontos de Interrupção" @@ -2404,24 +2400,24 @@ msgstr "Erro no Adaptador de Banda Larga" msgid "Broadband Adapter MAC Address" msgstr "Endereço MAC do Adaptador de Banda Larga" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Navegar pelas &Sessões do NetPlay..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Tamanho do Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Tamanho do buffer alterado para %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffer:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2469,11 +2465,11 @@ msgstr "Autor(a): %1" msgid "C Stick" msgstr "Eixo C" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "C&riar Arquivo de Assinatura..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "Registrador CP" @@ -2493,7 +2489,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Interpretador com Cache (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2533,7 +2529,7 @@ msgstr "Calibração" msgid "Calibration Period" msgstr "Período de Calibração" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Lista de exibição de chamadas em %1 com tamanho %2" @@ -2559,7 +2555,7 @@ msgstr "Câmera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Campo de visão da câmera (afeta a sensibilidade da pontaria)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "Só é possível gerar códigos AR para valores na memória virtual." @@ -2576,8 +2572,8 @@ msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" "Não foi possível encontrar o Wii Remote pelo identificador de conexão {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Não é possível iniciar uma sessão do NetPlay enquanto um jogo está em " @@ -2585,11 +2581,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Cancelar" @@ -2598,15 +2594,15 @@ msgstr "Cancelar" msgid "Cancel Calibration" msgstr "Cancelar Calibração" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "Candidatos: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "Candidatos: %1 | Excluídos: %2 | Restantes: %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "Candidatos: %1 | Filtrados: %2 | Restantes: %3" @@ -2624,11 +2620,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "Não consegue comparar com o último valor na primeira busca." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Não foi possível encontrar o IPL do GameCube." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Não é possível gerar um código AR para este endereço." @@ -2636,7 +2632,7 @@ msgstr "Não é possível gerar um código AR para este endereço." msgid "Cannot refresh without results." msgstr "Não pode atualizar sem resultados." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "Não é possível definir o local da Pasta CGI para um caminho vazio." @@ -2644,7 +2640,7 @@ msgstr "Não é possível definir o local da Pasta CGI para um caminho vazio." msgid "Cannot set memory card to an empty path." msgstr "Não é possível definir o local do Memory Card para um caminho vazio." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" "Não foi possível iniciar o jogo porque o IPL do GameCube não foi encontrado." @@ -2677,7 +2673,7 @@ msgstr "Centralizar e Calibrar" msgid "Change &Disc" msgstr "Trocar &Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "&Trocar Disco..." @@ -2685,15 +2681,21 @@ msgstr "&Trocar Disco..." msgid "Change Disc" msgstr "Trocar Disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Trocar Discos Automaticamente" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Trocar o disco para {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2723,7 +2725,7 @@ msgstr "" "tem movimento lateral, só rotação e você pode aumentar o zoom até o ponto de " "origem da câmera." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Alterações nos cheats só terão efeito quando o jogo for reiniciado." @@ -2731,11 +2733,11 @@ msgstr "Alterações nos cheats só terão efeito quando o jogo for reiniciado." msgid "Channel Partition (%1)" msgstr "Partição do Canal (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "O personagem informado é inválido!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2743,7 +2745,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editor de Código de Cheat" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Pesquisa de Cheats" @@ -2751,7 +2753,7 @@ msgstr "Pesquisa de Cheats" msgid "Cheats Manager" msgstr "Gerenciador de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Verificar NAND..." @@ -2771,7 +2773,7 @@ msgstr "" "Verifique se você tem as permissões necessárias para excluir o arquivo ou se " "ele ainda está em uso." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Checksum" @@ -2783,7 +2785,7 @@ msgstr "China" msgid "Choose" msgstr "..." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Abrir" @@ -2791,15 +2793,15 @@ msgstr "Abrir" msgid "Choose a file to open or create" msgstr "Escolha um arquivo pra abrir ou criar" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Escolha a prioridade do arquivo de entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Escolha o arquivo secundário de entrada dos dados" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Escolher a pasta base do GCI" @@ -2812,7 +2814,7 @@ msgstr "Selecionar pasta" msgid "Clamping of rotation about the yaw axis." msgstr "Fixação da rotação sobre o eixo da guinada." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Botões do Classic Controller" @@ -2823,18 +2825,18 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Limpar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "Limpar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Limpar Cache" @@ -2855,7 +2857,7 @@ msgstr "Duplicar e &Editar Código..." msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Co&nfigurações" @@ -2863,11 +2865,11 @@ msgstr "Co&nfigurações" msgid "Code" msgstr "Código" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "Caminho de Código Não Executado" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "Caminho de Código Executado" @@ -2895,11 +2897,11 @@ msgstr "Correção de Cores:" msgid "Color Space" msgstr "Espaço de Cores" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "Colunas &Visíveis" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Combinar &Dois Arquivos de Assinatura..." @@ -2933,7 +2935,7 @@ msgstr "" "Mesmo assim, é possível que seja uma cópia válida se comparada com a edição " "digital da eShop do Wii U. O Dolphin não pode verificar se esse é o caso." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Compilar Shaders Antes de Iniciar" @@ -2943,7 +2945,7 @@ msgstr "Compilando Shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Compressão" @@ -2956,7 +2958,7 @@ msgstr "Nível da Compressão:" msgid "Compression:" msgstr "Compressão:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "Condição" @@ -2964,11 +2966,11 @@ msgstr "Condição" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Condição" @@ -2984,7 +2986,7 @@ msgstr "Condicional" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Ajuda Condicional" @@ -2999,7 +3001,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -3037,54 +3044,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Condições:\n" -"Define uma expressão que é evaliada quando um ponto de interrupção é " -"atingido. Se a expressão é falsa ou 0 o ponto de interrupção é ignorado até " -"ser atingido de novo. As declarações devem ser separadas por uma vírgula. Só " -"a última declaração será usada pra determinar o que fazer.\n" -"\n" -"Registros que podem ser referenciados:\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -" LR, CTR, PC\n" -"\n" -"Funções:\n" -"Define um registro: r1 = 8\n" -"Lança: s8(0xff). Disponíveis: s8, u8, s16, u16, s32, u32\n" -"Callstack: callstack(0x80123456), callstack(\"anim\")\n" -"Comparar Strings: streq(r3, \"abc\"). Ambos os parâmetros podem ser " -"endereços ou constants das strings.\n" -"Ler Memória: read_u32(0x80000000). Disponíveis: u8, s8, u16, s16, u32, s32, " -"f32, f64\n" -"Gravar Memória: write_u32(r3, 0x80000000). Disponíveis: u8, u16, u32, f32, " -"f64\n" -"*a gravação atual sempre estará engatilhada\n" -"\n" -"Operações:\n" -"Unário: -u, !u, ~u\n" -"Math: * / + -, power: **, remainder: %, shift: <<, >>\n" -"Comparação: <, <=, >, >=, ==, !=, &&, ||\n" -"Bitwise: &, |, ^\n" -"\n" -"Exemplos:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Gravação e interrupção: r4 = 8, 1\n" -"Gravar e continuar: f3 = f1 + f2, 0\n" -"A condição deve ser sempre a última\n" -"\n" -"As strings só devem ser usadas no callstack() or streq() and \"quoted\". Não " -"atribua as strings a uma variável.\n" -"Todas as variáveis serão impressas no registro de Interface da Memória, se " -"há um acerto ou um resultado da NaN. Pra procurar problemas atribua uma " -"variável a sua equação pra que possa ser impressa.\n" -"\n" -"Nota: Todos os valores são convertidos internamente em Duplos pra cálculos. " -"É possível pra eles sairem fora do alcance ou se tornarem NaNs. Um aviso " -"será dado se for retornado um NaN e a variável que se tornou NaN será " -"registrada." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3101,7 +3060,7 @@ msgstr "Configurar" msgid "Configure Controller" msgstr "Configurar" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Abrir Configurações" @@ -3114,27 +3073,27 @@ msgstr "Configurar a Entrada dos Dados" msgid "Configure Output" msgstr "Configurar a Saída dos Dados" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Confirmar mudança de backend" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Confirmar ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Confirmação" @@ -3144,15 +3103,15 @@ msgstr "Confirmação" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Conectar/Desconectar Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Wii Remote %1" @@ -3172,7 +3131,7 @@ msgstr "Conectar/Desconectar Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Conectar/Desconectar Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Conectar Wii Remotes" @@ -3188,7 +3147,7 @@ msgstr "Conectar-se à Internet e realizar uma atualização online do sistema?" msgid "Connected" msgstr "Conectado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Conectando" @@ -3213,7 +3172,7 @@ msgstr "Controlar Modo Golfe do NetPlay" msgid "Control Stick" msgstr "Eixo Principal" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Perfil do Controle" @@ -3323,8 +3282,8 @@ msgstr "Convergência" msgid "Convergence:" msgstr "Convergência:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Falha na conversão." @@ -3332,9 +3291,9 @@ msgstr "Falha na conversão." msgid "Convert" msgstr "Converter" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Converter Arquivo para Pasta Agora" @@ -3342,9 +3301,9 @@ msgstr "Converter Arquivo para Pasta Agora" msgid "Convert File..." msgstr "Converter Arquivo..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Converter Pasta para Arquivo Agora" @@ -3367,8 +3326,8 @@ msgstr "" "a conversão para ISO. Deseja continuar assim mesmo?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Convertendo..." @@ -3414,22 +3373,22 @@ msgstr "" "normalmente usam o alvo 2.2.

Na dúvida, mantenha " "essa opção desativada." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Copiar &função" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Copiar &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copiar Endereço" @@ -3437,19 +3396,19 @@ msgstr "Copiar Endereço" msgid "Copy Failed" msgstr "Falha ao Copiar" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Copiar Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copiar Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Copiar &linha de código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Copiar o end&ereço do alvo" @@ -3467,8 +3426,8 @@ msgstr "Copiar para B" msgid "Core" msgstr "Core" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "Core não inicializado." @@ -3608,7 +3567,7 @@ msgstr "" "Se sim, então você pode precisar reespecificar o local do seu arquivo de " "Memory Card nas configurações." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Não foi possível encontrar o servidor central" @@ -3624,13 +3583,13 @@ msgstr "Não foi possível ler o arquivo." msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Criar" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Criar Arquivo do Infinity" @@ -3644,7 +3603,7 @@ msgstr "Criar Novo Memory Card" msgid "Create Skylander File" msgstr "Criar Arquivo do Skylander" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Criar mapeamentos pra outros dispositivos" @@ -3661,11 +3620,11 @@ msgstr "Autor:" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Cortar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3681,11 +3640,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Selecionar Vértices na CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3696,31 +3655,31 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Região Atual" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Valor atual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Contexto atual" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Jogo atual" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Thread atual" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "Personalizada (Esticada)" @@ -3728,15 +3687,15 @@ msgstr "Personalizada (Esticada)" msgid "Custom Address Space" msgstr "Espaço do Endereço Personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Altura da proporção de tela personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Largura da proporção de tela personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Proporção de Tela Personalizada:" @@ -3779,7 +3738,7 @@ msgstr "Mesa de DJ" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Mecanismo de Emulação do DSP" @@ -3787,15 +3746,15 @@ msgstr "Mecanismo de Emulação do DSP" msgid "DSP HLE (fast)" msgstr "DSP HLE (rápido)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (recomendado)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "Interpretador DSP LLE (muito lento)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "Recompilador DSP LLE (lento)" @@ -3825,7 +3784,7 @@ msgstr "Tapete de Dança" msgid "Dark" msgstr "Trevas" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Dados" @@ -3870,8 +3829,8 @@ msgstr "Zona Morta" msgid "Debug" msgstr "Depuração" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuração" @@ -3880,7 +3839,7 @@ msgstr "Depuração" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Qualidade de Decodificação:" @@ -3919,7 +3878,7 @@ msgstr "Diminuir Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Padrão" @@ -3927,7 +3886,7 @@ msgstr "Padrão" msgid "Default Config (Read Only)" msgstr "Configuração Padrão (Somente Leitura)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Dispositivo Padrão" @@ -3939,11 +3898,11 @@ msgstr "Fonte Padrão" msgid "Default ISO:" msgstr "ISO padrão:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Thread padrão" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Adiar Invalidação do Cache do EFB" @@ -3951,7 +3910,7 @@ msgstr "Adiar Invalidação do Cache do EFB" msgid "Defer EFB Copies to RAM" msgstr "Adiar Cópias do EFB para RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3966,8 +3925,9 @@ msgstr "" "estabilidade.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Excluir" @@ -3997,12 +3957,12 @@ msgstr "Porcentagem da Profundidade:" msgid "Depth:" msgstr "Profundidade:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" @@ -4016,8 +3976,8 @@ msgstr "Descrição:" msgid "Description: %1" msgstr "Descrição: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "Destino" @@ -4029,21 +3989,21 @@ msgstr "Destino (caminho p/ soquete UNIX ou endereço:porta):" msgid "Destination (address:port):" msgstr "Destino (endereço:porta):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "Destino Máx." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "Destino Mín." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "Símbolo de Destino" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Separado" @@ -4051,7 +4011,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Detectando os Módulos do RSO" @@ -4059,11 +4019,11 @@ msgstr "Detectando os Módulos do RSO" msgid "Deterministic dual core:" msgstr "Dual core determinístico:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Dev (todos os dias)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Dispositivo" @@ -4081,7 +4041,7 @@ msgstr "Configurações do Dispositivo" msgid "Device VID (e.g., 057e)" msgstr "VID do Dispositivo (ex.: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Dispositivo:" @@ -4089,7 +4049,7 @@ msgstr "Dispositivo:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 não reconhecido como um arquivo XML válido do Riivolution." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" "Escurece a tela após 5 minutos de inatividade durante a emulação de " @@ -4107,11 +4067,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Des&conectado" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Desativar" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Desativar Bounding Box" @@ -4120,7 +4075,7 @@ msgstr "Desativar Bounding Box" msgid "Disable Copy Filter" msgstr "Desativar Filtro de Cópia" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Desativar Cópias VRAM do EFB" @@ -4128,11 +4083,11 @@ msgstr "Desativar Cópias VRAM do EFB" msgid "Disable Emulation Speed Limit" msgstr "Desativar Limite de Velocidade" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Desativar Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Desativar Arena do Fastmem" @@ -4140,11 +4095,11 @@ msgstr "Desativar Arena do Fastmem" msgid "Disable Fog" msgstr "Desativar Névoa" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Desativar Cache do JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Desativar o Mapa dos Pontos de Entrada Grandes" @@ -4163,7 +4118,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Na dúvida, mantenha " "essa opção ativada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disco" @@ -4196,6 +4157,10 @@ msgstr "Disco" msgid "Discard" msgstr "Descartar" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Tipo de Exibição" @@ -4233,11 +4198,11 @@ msgstr "" "Você autoriza o Dolphin a enviar estatísticas de uso para a equipe de " "desenvolvimento?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Você quer limpar a lista dos nomes do símbolos?" @@ -4247,7 +4212,7 @@ 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Deseja parar a emulação atual?" @@ -4255,12 +4220,12 @@ msgstr "Deseja parar a emulação atual?" msgid "Do you want to try to repair the NAND?" msgstr "Deseja tentar efetuar um reparo na NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Decodificador Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Registro FIFO do Dolphin (*.dff)" @@ -4268,9 +4233,9 @@ msgstr "Registro FIFO do Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Pré-definição do Mod do Jogo no Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Arquivo do Mapa do Dolphin (*.map)" @@ -4282,8 +4247,8 @@ msgstr "Arquivo CSV de Assinatura do Dolphin" msgid "Dolphin Signature File" msgstr "Arquivo de Assinatura do Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Gravações TAS do Dolphin (*.dtm)" @@ -4327,7 +4292,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Versão do Dolphin é muito antiga para o servidor traversal" @@ -4343,7 +4308,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:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4351,7 +4316,7 @@ msgstr "" "O Dolphin usará a região padrão quando não for possível determinar a região " "do software automaticamente." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "O sistema de cheats do Dolphin está desativado no momento." @@ -4360,7 +4325,7 @@ msgstr "O sistema de cheats do Dolphin está desativado no momento." msgid "Domain" msgstr "Domínio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Desativar Atualizações" @@ -4381,7 +4346,7 @@ msgstr "Portas Fechadas" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Dobro" @@ -4403,7 +4368,7 @@ msgstr "Baixar Códigos" msgid "Download Codes from the WiiRD Database" msgstr "Baixar Códigos da Base de Dados do WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Mostrar Capas de Jogos Baixadas do GameTDB.com no Modo Grade" @@ -4415,6 +4380,16 @@ msgstr "Download completo" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 códigos baixados (%2 adicionados)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4454,19 +4429,19 @@ msgstr "Exportar &FakeVMEM" msgid "Dump &MRAM" msgstr "Exportar &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Exportar Áudio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Exportar Texturas de Base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Exportar Alvo EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Exportar Quadros" @@ -4474,7 +4449,7 @@ msgstr "Exportar Quadros" msgid "Dump GameCube BBA traffic" msgstr "Exportar tráfego do BBA do GameCube" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Exportar Mip Maps" @@ -4482,7 +4457,7 @@ msgstr "Exportar Mip Maps" msgid "Dump Path:" msgstr "Exportação:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Exportar Alvo XFB" @@ -4507,7 +4482,7 @@ msgstr "Exportar certificados de mesmo nível" msgid "Dump root CA certificates" msgstr "Exportar certificados raiz da CA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Na " "dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4526,7 +4501,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4535,25 +4510,25 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Duração do Pressionar do Botão Turbo (frames):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 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:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Holandês" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "S&air" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "Cópia do EFB %1" @@ -4569,7 +4544,7 @@ msgstr "" "provavelmente será necessário reiniciar o computador para que o Windows " "utilize o novo driver." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4581,7 +4556,7 @@ msgstr "" "Adequado para jogos competitivos em que imparcialidade e latência mínima são " "mais importantes." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Atualizações Prévias de Memória" @@ -4600,7 +4575,16 @@ msgstr "Ásia Oriental" msgid "Edit Breakpoint" msgstr "Editar Ponto de Interrupção" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Editar..." @@ -4620,7 +4604,7 @@ msgstr "Efeito" msgid "Effective" msgstr "Efetivo" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Prioridade efetiva" @@ -4642,11 +4626,11 @@ msgstr "Elemento" msgid "Embedded Frame Buffer (EFB)" msgstr "Frame Buffer Embutido (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Vazio" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Thread de Emulação já está em execução" @@ -4674,7 +4658,7 @@ 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:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Dispositivos USB Emulados" @@ -4699,34 +4683,24 @@ msgstr "Velocidade de Emulação" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Ativar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Ativar Camadas de Validação da API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Ativar Ícones de Conquistas" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Ativar Conquistas" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Ativar Alongamento de Áudio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Ativar Cheats" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Ativar Entrada do Control&e" @@ -4734,15 +4708,19 @@ msgstr "Ativar Entrada do Control&e" msgid "Enable Custom RTC" msgstr "Ativar RTC Personalizado" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Ativar Interface de Depuração" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Ativar Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Ativar Dual Core (aumento na velocidade)" @@ -4754,7 +4732,7 @@ msgstr "Ativar Ajuste de Clock da CPU Emulada" msgid "Enable Emulated Memory Size Override" msgstr "Ativar Ajuste de Memória do Console Emulado" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Ativar Conquistas Encore" @@ -4762,15 +4740,15 @@ msgstr "Ativar Conquistas Encore" msgid "Enable FPRF" msgstr "Ativar FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Ativar Mods Gráficos" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Ativar Modo Hardcore" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4804,41 +4782,33 @@ msgstr "" "ativar.
Desativar o Modo Hardcore enquanto um jogo está em execução " "requer que o jogo seja fechado antes de ser possível reativá-lo." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "Ativar Perfilamento de Bloco JIT" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Ativar Placar de Líderes" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Ativar MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Ativar Notificações de Progresso" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Ativar Varredura Progressiva" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Ativar Integração RetroAchievements.org" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Ativar Status de Atividade" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Ativar Vibração" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Ativar Proteção de Tela" @@ -4846,19 +4816,23 @@ msgstr "Ativar Proteção de Tela" msgid "Enable Speaker Data" msgstr "Ativar Dados do Auto-Falante" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Ativar Conquistas Não Oficiais" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Ativar Envio de Estatísticas de Uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Ativar WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Ativar Wireframe" @@ -4866,37 +4840,6 @@ msgstr "Ativar Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "Ativar Cache Write-Back (lento)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"Ativa submissão nos placares de líderes do RetroAchievements.

Exige " -"que o Modo Hardcore esteja ativado." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" -"Ativa status de atividade detalhados no website do RetroAchievements." -"

Isso mostra descrições detalhadas sobre o que o jogador está fazendo " -"dentro do jogo no website. Se desativado, o website mostrará apenas qual " -"jogo está em execução.

Essa opção não tem relação com o status de " -"atividade do Discord." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4905,7 +4848,7 @@ msgstr "" "Ativa a emulação de velocidade do disco. Pode causar travamentos e outros " "problemas em alguns jogos (ON = Compatível, OFF = Desbloqueada)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4917,7 +4860,7 @@ msgstr "" "para ser utilizada. Dolphin não salva sua senha localmente, utilizando um " "token de API para manter o acesso." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4927,36 +4870,34 @@ msgstr "" "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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"Ativa o desbloqueio de conquistas no modo Encore.

O modo Encore " -"reativa conquistas que já foram desbloqueadas no website, de modo que os " -"jogadores sejam notificados sempre que atenderem os requisitos de " -"desbloqueio, útil para critérios de speedrun personalizados, ou por pura " -"diversão." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Ativa o desbloqueio de conquistas.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"Ativa o desbloqueio de conquistas não oficiais, assim como conquistas " -"oficiais.

Conquistas não oficiais utilizam critérios opcionais ou não " -"finalizados, que não tenham sido validados como oficiais pela equipe do " -"RetroAchievements, útil para teste, ou por pura diversão." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -5003,7 +4944,7 @@ msgstr "" "absolutamente necessária.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -5016,7 +4957,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -5044,7 +4985,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Previne picotamentos no áudio causados por variações na velocidade de " @@ -5082,7 +5023,7 @@ msgstr "" "(ON = Compatível, OFF = Rápido)

Na dúvida, mantenha " "essa opção desativada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5094,7 +5035,7 @@ msgstr "" "como o Forecast Channel e o Nintendo Channel.\n" "Leia os Termos de Serviço em: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5107,7 +5048,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5132,13 +5073,17 @@ msgstr "" "\n" "Abortando importação." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet Não Inicializou" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Inglês" @@ -5155,7 +5100,7 @@ msgstr "Informe o endereço IP do dispositivo executando o cliente XLink Kai:" msgid "Enter USB device ID" msgstr "Informe a ID do dispositivo USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Insira o endereço a observar:" @@ -5181,33 +5126,33 @@ msgstr "" "Informe o endereço IP e a porta da instância tapserver que você gostaria de " "se conectar." -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5220,52 +5165,52 @@ msgstr "Insira o endereço do módulo do RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Erro" @@ -5282,7 +5227,7 @@ msgstr "Erro ao Abrir o Adaptador: %1" msgid "Error collecting save data!" msgstr "Erro ao coletar os dados do save!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5296,7 +5241,7 @@ 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:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Um erro ocorreu enquanto carregava alguns pacotes de texturas" @@ -5393,12 +5338,12 @@ 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:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Ubershaders Exclusivos" @@ -5442,11 +5387,11 @@ msgstr "Início esperado da expressão." msgid "Expected variable name." msgstr "Nome esperado da variável." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportar Todos os Dados Salvos do Wii" @@ -5461,7 +5406,7 @@ msgstr "Falha ao Exportar" msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -5489,14 +5434,14 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n dado(s) salvo(s) exportado(s)" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Acessório" @@ -5509,7 +5454,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:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "IP Externo" @@ -5517,35 +5462,35 @@ msgstr "IP Externo" msgid "External Frame Buffer (XFB)" msgstr "Frame Buffer Externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Extrair Certificados da NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Extrair Disco Inteiro..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Extrair Partição Inteira..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extrair Arquivo..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Extrair Arquivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Extrair Dados do Sistema..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Extraindo Todos os Arquivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Extraindo Diretório..." @@ -5554,8 +5499,8 @@ msgstr "Extraindo Diretório..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO Player" @@ -5571,11 +5516,11 @@ msgstr "" "Falha ao abrir o Memory Card:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Falha ao anexar ao arquivo de assinatura '%1'" @@ -5596,7 +5541,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:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Falha na conexão com o servidor: %1" @@ -5617,15 +5562,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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Falha ao criar arquivo do Infinity!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Falha ao criar arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5681,15 +5626,15 @@ msgstr "Falha ao exportar %n de %1 arquivo(s) de jogo(s) salvo(s)." msgid "Failed to export the following save files:" msgstr "Falha ao exportar os seguintes dados salvos:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Falha ao extrair os certificados da NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Falha ao extrair arquivo." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Falha ao extrair dados do sistema." @@ -5711,14 +5656,14 @@ msgstr "Falha ao localizar um ou mais símbolos do Direct3D" msgid "Failed to import \"%1\"." msgstr "Falha ao importar \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5726,7 +5671,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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5737,7 +5682,7 @@ msgstr "" "NAND (Ferramentas -> Gerenciar NAND -> Verificar NAND...) , então importe os " "dados salvos novamente." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Falha ao inicializar o núcleo" @@ -5760,11 +5705,11 @@ msgid "Failed to install pack: %1" msgstr "Falha ao instalar pacote: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Falha ao instalar esse software na NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5772,8 +5717,8 @@ msgstr "" "Falha ao acessar a porta %1. Existe outra instância do servidor NetPlay em " "execução?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Falha ao carregar o módulo RSO em %1" @@ -5785,15 +5730,15 @@ msgstr "Falha ao carregar d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Falha ao carregar dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Falha ao carregar o arquivo de mapa '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Falha ao carregar arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" @@ -5801,7 +5746,7 @@ msgstr "" "Falha ao carregar arquivo do Skylander:\n" "%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Falha ao carregar o executável para a memória." @@ -5817,17 +5762,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Falha ao modificar o Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "Falha ao abrir \"%1\" para escrita." -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "Falha ao abrir \"{0}\" para escrita." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Falha ao abrir '%1'" @@ -5835,7 +5780,7 @@ msgstr "Falha ao abrir '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "Falha ao acessar o dispositivo Bluetooth: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "Falha ao abrir o estado do Branch Watch \"%1\"" @@ -5868,15 +5813,15 @@ msgstr "" msgid "Failed to open file." msgstr "Falha ao abrir o arquivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Falha ao abrir o servidor" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Falha ao abrir arquivo do Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5888,11 +5833,11 @@ msgstr "" "\n" "O arquivo pode já estar sendo utilizado na base." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Falha ao abrir arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5948,27 +5893,23 @@ msgstr "" "Falha ao ler o(s) arquivo(s) de jogo(s) salvo(s) selecionado(s) do Memory " "Card." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Falha ao ler arquivo do Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -"Falha ao ler arquivo do Infinity:\n" -"%1\n" -"\n" -"O arquivo é muito pequeno." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Falha ao ler arquivo do Skylander!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5988,7 +5929,7 @@ msgstr "" "Falha ao ler conteúdo do arquivo:\n" "%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Falha ao ler {0}" @@ -6028,31 +5969,31 @@ msgstr "" "Falha ao redefinir a pasta de redirecionamento do NetPlay. Verifique as " "permissões de gravação." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "Falha ao salvar o estado do Branch Watch \"%1\"" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Falha ao salvar o log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 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:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Falha ao salvar o arquivo de assinatura '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 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:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Falha ao salvar no arquivo de assinatura '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -6109,19 +6050,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Falha" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Host Imparcial" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Configurações de Região" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Região Padrão:" @@ -6134,7 +6075,7 @@ msgstr "Rápido" msgid "Fast Depth Calculation" msgstr "Cálculo Rápido de Profundidade" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -6147,7 +6088,7 @@ msgstr "" msgid "Field of View" msgstr "Campo de Visualização" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Número da Figura:" @@ -6161,7 +6102,7 @@ msgstr "Detalhes do Arquivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Formato" @@ -6169,24 +6110,24 @@ msgstr "Formato" msgid "File Format:" msgstr "Formato do Arquivo:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Informações do Arquivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Nome do Arquivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Local" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Tamanho" @@ -6279,7 +6220,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bandeiras" @@ -6288,12 +6228,12 @@ msgstr "Bandeiras" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Flutuação" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Seguir &vertente" @@ -6319,7 +6259,7 @@ msgstr "" "Para instruções de configuração, consulte essa página." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forçar 16:9" @@ -6327,7 +6267,7 @@ msgstr "Forçar 16:9" msgid "Force 24-Bit Color" msgstr "Forçar Cores de 24 Bits" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forçar 4:3" @@ -6359,13 +6299,13 @@ msgstr "Forçar Porta de Escuta:" msgid "Force Nearest" msgstr "Forçar Pelo Mais Próximo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" "Opção desativada pois o backend %1 não suporta expansão " "por SV." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "Opção ativada pois o backend %1 não suporta shaders de " @@ -6401,6 +6341,12 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Formato:" @@ -6416,7 +6362,7 @@ msgstr "Para frente" msgid "Forward port (UPnP)" msgstr "Abrir porta (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "%1 resultados encontrados para \"%2\"" @@ -6426,7 +6372,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "%n endereço(s) encontrado(s)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Quadro %1" @@ -6447,11 +6393,11 @@ msgstr "Aumentar Velocidade" msgid "Frame Advance Reset Speed" msgstr "Redefinir Velocidade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Exportação de Quadros" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Intervalo de Quadros" @@ -6459,7 +6405,7 @@ msgstr "Intervalo de Quadros" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Imagem(ns) da exportação de quadros '{0}' já existe(m). Substituir?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Quadros a Gravar:" @@ -6479,7 +6425,7 @@ msgstr "Arquivos Livres: %1" msgid "Free Look Control Type" msgstr "Tipo de Controle do Olhar Livre" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Controle de Olhar Livre %1" @@ -6514,7 +6460,7 @@ msgstr "Ativar/Desativar Olhar Livre" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Francês" @@ -6533,8 +6479,8 @@ msgid "From" msgstr "De" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "De:" @@ -6542,10 +6488,14 @@ msgstr "De:" msgid "FullScr" msgstr "Tela Cheia" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Função" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funções" @@ -6586,11 +6536,11 @@ msgstr "Volume do GBA" msgid "GBA Window Size" msgstr "Tamanho da Janela do GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "ROM do GBA%1 alterada para \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "ROM desativada do GBA%1" @@ -6639,7 +6589,7 @@ msgstr "GL_MAX_TEXTURE_SIZE é {0} - deve ser pelo menos 1024." msgid "GPU Texture Decoding" msgstr "Decodificação de Texturas na GPU" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6652,7 +6602,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: ERRO OGL: Sua placa de vídeo é compatível com o OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6660,7 +6610,7 @@ msgstr "" "GPU: ERRO OGL: extensão GL_ARB_map_buffer_range indisponível.\n" "GPU: Sua placa de vídeo é compatível com o OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6668,7 +6618,7 @@ msgstr "" "GPU: ERRO OGL: extensão GL_ARB_sampler_objects indisponível.\n" "GPU: Sua placa de vídeo é compatível com o OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6676,7 +6626,7 @@ msgstr "" "GPU: ERRO OGL: extensão GL_ARB_uniform_buffer_object indisponível.\n" "GPU: Sua placa de vídeo é compatível com o OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6692,7 +6642,7 @@ msgstr "" "GPU: ERRO OGL: suporte ao OpenGL 3.0 indisponível.\n" "GPU: Sua placa de vídeo é compatível com o OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6715,16 +6665,16 @@ msgstr "" msgid "Game" msgstr "Jogo" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartuchos do Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6732,7 +6682,7 @@ msgstr "" "ROMs do Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance na Porta %1" @@ -6761,7 +6711,7 @@ msgid "Game Gamma:" msgstr "Gama do Jogo:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID do Jogo" @@ -6770,15 +6720,15 @@ msgstr "ID do Jogo" msgid "Game ID:" msgstr "ID do Jogo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Status do Jogo" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Jogo alterado para \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6787,11 +6737,11 @@ msgstr "" "selecione Propriedades, alterne para a guia Verificar, e selecione Verificar " "Integridade para calcular o hash" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "O número de disco do jogo é diferente" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "A revisão do jogo é diferente" @@ -6806,7 +6756,7 @@ msgstr "" "Jogo sobrescrito por outro jogo salvo. Dados corrompidos adiante {0:#x}, {1:" "#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "A região do jogo é diferente" @@ -6826,11 +6776,11 @@ msgstr "Adaptador do GameCube para Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Adaptador do GameCube para Wii U na Porta %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Controle de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Controle de GameCube na Porta %1" @@ -6838,11 +6788,11 @@ msgstr "Controle de GameCube na Porta %1" msgid "GameCube Controllers" msgstr "Controles do GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Teclado de GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Teclado de GameCube na Porta %1" @@ -6859,7 +6809,7 @@ msgstr "Memory Cards do GameCube" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Memory Cards do GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "Microfone de GameCube no Slot %1" @@ -6887,7 +6837,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6897,35 +6847,35 @@ msgstr "Códigos 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Geral" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Geral e Opções" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "Gerar Código(s) do Action Replay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Gerar uma Nova ID de Estatísticas " -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Código(s) AR gerado(s)." -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Nomes de símbolos gerados a partir de '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Alemão" @@ -6952,7 +6902,7 @@ msgstr "Gigante" msgid "Giants" msgstr "Gigantes" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Modo Golfe" @@ -6961,7 +6911,7 @@ msgid "Good dump" msgstr "Cópia válida" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Gráficos" @@ -7006,7 +6956,7 @@ msgstr "Verde Esquerdo" msgid "Green Right" msgstr "Verde Direito" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Exibição em Grade" @@ -7043,7 +6993,7 @@ msgstr "Pós-Processamento HDR" msgid "Hacks" msgstr "Hacks" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Cabeça" @@ -7075,7 +7025,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "String do Byte Hexadecimal" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimal" @@ -7084,11 +7034,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Ocultar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "Ocultar &Controles" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Ocultar Tudo" @@ -7100,16 +7050,23 @@ msgstr "Esconder Sessões Dentro-do-Jogo" msgid "Hide Incompatible Sessions" msgstr "Esconder Sessões Incompatíveis" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Ocultar GBAs Remotos" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Alto" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Muito Alto" @@ -7132,7 +7089,7 @@ msgstr "Hospedar" msgid "Host Code:" msgstr "Código da Sala:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Host Autoritário" @@ -7140,7 +7097,7 @@ msgstr "Host Autoritário" msgid "Host Size" msgstr "Tamanho do Hospedeiro" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -7153,11 +7110,11 @@ msgstr "" "Adequado para jogos casuais com mais de 3 jogadores, possivelmente em " "conexões instáveis ou de alta latência." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Host autoritário desativado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Host autoritário ativado" @@ -7169,7 +7126,7 @@ msgstr "Hospedar no NetPlay" msgid "Hostname" msgstr "Nome do Hospedeiro" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Configurações das Teclas de Atalho" @@ -7179,11 +7136,11 @@ msgstr "Configurações das Teclas de Atalho" msgid "Hotkeys" msgstr "Teclas de Atalho" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Desativar Teclas de Atalho em Segundo Plano" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Ubershaders Híbridos" @@ -7242,12 +7199,12 @@ msgstr "Endereço IP:" msgid "IPL Settings" msgstr "Configurações do IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilidade do Ponteiro:" @@ -7289,7 +7246,7 @@ msgstr "" msgid "Icon" msgstr "Ícone" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7300,7 +7257,7 @@ msgstr "" "Adequado para jogos baseados em turnos com controles sensíveis ao tempo, " "como golfe." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "ID de Estatísticas" @@ -7329,7 +7286,7 @@ msgstr "" "Essa permissão pode ser revogada a qualquer momento através das " "configurações do Dolphin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7350,7 +7307,7 @@ msgstr "" "Se desmarcado o estado da conexão do controle emulado é ligado\n" "ao estado da conexão do dispositivo padrão real (se houver um)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7361,7 +7318,7 @@ msgstr "" "pode ser útil para testes.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7377,7 +7334,7 @@ msgstr "" msgid "Ignore" msgstr "Ignorar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "Ignorar Acertos de Branch do &Apploader" @@ -7418,7 +7375,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Exibir o XFB Imediatamente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7433,7 +7390,7 @@ msgstr "" "levemente o desempenho.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Importar Backup da NAND do BootMii..." @@ -7448,15 +7405,15 @@ msgstr "Falha ao Importar" msgid "Import Save File(s)" msgstr "Importar Arquivo(s) de Jogo Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importar Dados Salvos do Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importando backup da NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7465,6 +7422,15 @@ msgstr "" "Importando backup da NAND\n" " Tempo decorrido: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "Dentro do Jogo?" @@ -7547,7 +7513,7 @@ msgstr "Rotação Incremental" msgid "Incremental Rotation (rad/sec)" msgstr "Rotação Incremental (rad/seg)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Criador de Figura Infinity" @@ -7556,7 +7522,7 @@ msgstr "Criador de Figura Infinity" msgid "Infinity Manager" msgstr "Gerenciador do Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Objeto Infinity (*.bin);;" @@ -7578,12 +7544,12 @@ msgstr "Informações" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informação" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Desativar Proteção de Tela Durante a Emulação" @@ -7592,11 +7558,11 @@ msgid "Inject" msgstr "Injetar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Entrada de Dados" @@ -7610,23 +7576,19 @@ msgstr "Força de entrada requerida pra ativação." msgid "Input strength to ignore and remap." msgstr "Força da entrada pra ignorar e remapear." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "Inserir &BLR" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "Inserir &BLR no início" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "Inserir &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Inserir &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Inserir Cartão SD" @@ -7639,11 +7601,11 @@ msgstr "Instalar" msgid "Install Partition (%1)" msgstr "Partição de Instalação (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Instalar Atualização" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7651,13 +7613,13 @@ msgstr "Instalar WAD..." msgid "Install to the NAND" msgstr "Instalar na NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instrução" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instrução" @@ -7666,7 +7628,7 @@ msgstr "Instrução" msgid "Instruction Breakpoint" msgstr "Ponto de Interrupção da Instrução" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instrução:" @@ -7675,7 +7637,7 @@ msgstr "Instrução:" msgid "Instruction: %1" msgstr "Instrução: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7696,19 +7658,19 @@ msgstr "Intensidade" msgid "Interface" msgstr "Interface" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Erro Interno do LZ4 - falha ao extrair {0} bytes" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Erro Interno do LZ4 - falha na compressão" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Erro Interno do LZ4 - falha na extração ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Erro Interno do LZ4 - discrepância no tamanho do payload ({0} / {1})) " @@ -7721,7 +7683,7 @@ msgstr "Erro Interno do LZO - falha na compressão" msgid "Internal LZO Error - decompression failed" msgstr "Erro Interno do LZO - falha na extração" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7729,7 +7691,7 @@ msgstr "" "Erro Interno do LZO - falha na extração ({0}) ({1}) \n" "Não foi possível recuperar informações de versão do estado salvo legado." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7737,7 +7699,7 @@ msgstr "" "Erro Interno do LZO - falha ao processar cookie de versão extraída e " "comprimento do texto de versão ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7753,7 +7715,7 @@ msgstr "Resolução Interna" msgid "Internal Resolution:" msgstr "Resolução Interna:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Erro interno enquanto gera o código AR." @@ -7761,7 +7723,7 @@ msgstr "Erro interno enquanto gera o código AR." msgid "Interpreter (slowest)" msgstr "Interpretador (muito lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Núcleo do Interpretador" @@ -7777,7 +7739,7 @@ msgstr "JSON inválido recebido do serviço de atualizações automáticas: {0}" msgid "Invalid Mixed Code" msgstr "Código Misturado Inválido" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "O pacote %1 fornecido é inválido: %2" @@ -7786,11 +7748,11 @@ msgstr "O pacote %1 fornecido é inválido: %2" msgid "Invalid Player ID" msgstr "ID de Jogador Inválida" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Endereço do módulo do RSO inválido: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Callstack inválido" @@ -7811,7 +7773,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Entrada inválida para o campo \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Entrada de dados inválida fornecida" @@ -7827,19 +7789,19 @@ msgstr "Parâmetros inválidos dados pra procurar." msgid "Invalid password provided." msgstr "Senha inválida fornecida." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Arquivo de gravação inválido" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Parâmetros de pesquisa inválidos (nenhum objeto selecionado)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "String de pesquisa inválida (não foi possível converter para número)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "String de pesquisa inválida (apenas comprimentos correspondentes de string " @@ -7849,13 +7811,13 @@ msgstr "" msgid "Invalid title ID." msgstr "ID do título inválida." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Endereço da observação inválido: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiano" @@ -7868,11 +7830,11 @@ msgstr "Itália" msgid "Item" msgstr "Item" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "Link de Blocos JIT Desativado" @@ -7880,47 +7842,47 @@ msgstr "Link de Blocos JIT Desativado" msgid "JIT Blocks" msgstr "Blocos JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "Vertente do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "Ponto Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "Inteiro do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "LoadStore Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "LoadStore do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "LoadStore Emparelhado do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "LoadStore lXz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "LoadStore lbzx do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "LoadStore lwz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT Desligado (Núcleo do JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "Emparelhamento do JIT Desligado" @@ -7932,16 +7894,16 @@ msgstr "Recompilador JIT ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "Registro do Cache do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "Registros do Sistema do JIT Desligado" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7950,16 +7912,16 @@ msgstr "" "nunca deveria acontecer. Por favor relate este incidente no bug tracker. O " "Dolphin irá fechar agora." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "JIT não está ativo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japão" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonês" @@ -7978,12 +7940,12 @@ msgstr "" "Kaos é o único vilão pra esse troféu e está sempre destrancado. Não há " "necessidade de editar nada!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Manter em Execução" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Manter Janela no Topo" @@ -8017,16 +7979,16 @@ msgstr "Teclas" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Remover Jogador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Coréia" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coreano" @@ -8047,7 +8009,7 @@ msgstr "Abrir R&OM..." msgid "L-Analog" msgstr "L (analógico)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "Save do LR" @@ -8055,7 +8017,11 @@ msgstr "Save do LR" msgid "Label" msgstr "Rótulo" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Último Valor" @@ -8069,23 +8035,23 @@ msgstr "Último uso:" msgid "Last reset:" msgstr "Último reset:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Latência:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Latência: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Latência: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Latência: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Latência: ~80 ms" @@ -8093,7 +8059,7 @@ msgstr "Latência: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Executar os softwares afetados talvez corrija os problemas detectados." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Placar de Líderes" @@ -8101,7 +8067,7 @@ msgstr "Placar de Líderes" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -8112,7 +8078,7 @@ msgstr "Esquerda" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Eixo Esquerdo" @@ -8189,11 +8155,11 @@ msgstr "Luz" msgid "Limit Chunked Upload Speed:" msgstr "Limitar Velocidade de Envio de Fragmentos:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Selecionar Colunas" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Exibição em Lista" @@ -8202,30 +8168,30 @@ msgid "Listening" msgstr "Escutando" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Carregar o &Arquivo do Mapa Ruim..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Carregar o &Outro Arquivo do Mapa..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "Carregar Branch Watch &De..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "Carregar estado do Branch Watch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Carregar Texturas Personalizadas" @@ -8233,11 +8199,11 @@ msgstr "Carregar Texturas Personalizadas" msgid "Load File" msgstr "Carregar Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Carregar Menu Principal do GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Somente Carregar Dados Salvos do Host" @@ -8343,23 +8309,23 @@ msgstr "Carregar do Slot 8" msgid "Load State Slot 9" msgstr "Carregar do Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Carregar do Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Carregar do Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Carregar Wii System Menu %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Carregar e Armazenar Dados Salvos do Host" @@ -8367,28 +8333,28 @@ msgstr "Carregar e Armazenar Dados Salvos do Host" msgid "Load from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Carregar o arquivo do mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Carregar vWii System Menu %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Carregar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Símbolos carregados do '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8399,7 +8365,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8408,20 +8374,28 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "IP Local" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Travar Cursor do Mouse" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Trancado" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8430,19 +8404,19 @@ msgstr "Log" msgid "Log Configuration" msgstr "Configurações" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Entrar" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Registrar Cobertura das Instruções do JIT" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Sair" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Registrar Tempo de Renderização" @@ -8454,11 +8428,11 @@ msgstr "Tipos de Log" msgid "Logger Outputs" msgstr "Saída de Dados" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Falha no Login" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8469,20 +8443,20 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Reprodução contínua" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Perdeu a conexão com o servidor do NetPlay..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Baixo" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Muito baixo" @@ -8494,7 +8468,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUNDO" @@ -8542,7 +8516,7 @@ msgstr "Certifique-se que há um Skylander no slot %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Fabricante" @@ -8564,16 +8538,16 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Gerenciar NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Amostragem Manual de Texturas" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mapeamento" @@ -8585,11 +8559,11 @@ msgstr "Mask ROM" msgid "Match Found" msgstr "Combinação Achada" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Buffer Máximo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Tamanho máximo do buffer alterado para %1" @@ -8598,7 +8572,7 @@ msgstr "Tamanho máximo do buffer alterado para %1" msgid "Maximum tilt angle." msgstr "Ângulo máximo de inclinação." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Pode causar lentidão no Wii Menu e em alguns jogos." @@ -8619,7 +8593,7 @@ msgstr "Pontos de Interrupção da Memória" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Gerenciador de Memory Cards" @@ -8647,7 +8621,7 @@ msgstr "MemoryCard: Leitura chamada com endereço inválido da fonte ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Gravação chamada com endereço de destino inválido ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8665,7 +8639,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Microfone" @@ -8674,15 +8648,15 @@ msgstr "Microfone" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Diversos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Configurações Diversas" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "Outros Controles" @@ -8696,7 +8670,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Incompatibilidade entre as estruturas internas dos dados." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8723,7 +8697,7 @@ msgstr "Adaptador de Modem (tapserver)" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8743,8 +8717,8 @@ msgstr "Modificar Slot" msgid "Modifying Skylander: %1" msgstr "Modificando o Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Módulos achados: %1" @@ -8752,7 +8726,7 @@ msgstr "Módulos achados: %1" msgid "Money:" msgstr "Dinheiro:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8764,11 +8738,11 @@ msgstr "Sombras Monoscópicas" msgid "Monospaced Font" msgstr "Fonte de Largura Fixa" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Dados de Movimento" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Simulação de Movimentos" @@ -8777,27 +8751,10 @@ msgstr "Simulação de Movimentos" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Visibilidade do Cursor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" -"Oculta o cursor do mouse após um período de inatividade e reexibe ao ser " -"movido." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Exibe permanentemente o cursor do mouse." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" -"Oculta permanentemente o cursor do mouse enquanto um jogo estiver em " -"execução." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8808,7 +8765,7 @@ msgstr "Mover" msgid "Movie" msgstr "Gravação" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8816,7 +8773,7 @@ msgstr "" "A gravação {0} indica que inicia a partir de um estado salvo, mas {1} não " "existe. A gravação provavelmente não será sincronizada!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "Múltiplos erros ao gerar os códigos AR." @@ -8829,10 +8786,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "Não para T&odos" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Verificação da NAND" @@ -8841,8 +8798,8 @@ msgstr "Verificação da NAND" msgid "NKit Warning" msgstr "Aviso sobre o NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8851,7 +8808,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8874,8 +8831,8 @@ msgstr "" "mesmo valor aqui.

Na dúvida, mantenha essa opção em " "2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8918,7 +8875,7 @@ msgstr "Nativa (640x528)" msgid "Native GCI File" msgstr "Arquivo GCI Nativo" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "NetPlay" @@ -8934,7 +8891,7 @@ msgstr "Configuração do NetPlay" msgid "Netherlands" msgstr "Holanda" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8943,7 +8900,7 @@ msgstr "" "criado ou modificado durante a sessão permanecerá nos dados salvos locais do " "host." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8952,7 +8909,7 @@ msgstr "" "NetPlay iniciará utilizando os dados salvos do host, mas qualquer dado salvo " "criado ou modificado durante a sessão será descartado ao sair dela." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8961,7 +8918,7 @@ msgstr "" "a sessão será descartado ao sair dela." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Rede" @@ -8969,16 +8926,16 @@ msgstr "Rede" msgid "Network dump format:" msgstr "Formato do despejo de rede:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Nunca" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Desativar Atualizações" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Novo" @@ -9003,7 +8960,7 @@ msgstr "Nova Pesquisa" msgid "New Tag..." msgstr "Nova Etiqueta..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Uma nova ID foi gerada." @@ -9020,7 +8977,7 @@ msgstr "Nova etiqueta" msgid "Next Game Profile" msgstr "Próximo Perfil de Jogo" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Combinação Seguinte" @@ -9066,7 +9023,7 @@ msgstr "Sem Compressão" msgid "No Match" msgstr "Sem Combinação" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Não Utilizar Dados Salvos" @@ -9074,12 +9031,12 @@ msgstr "Não Utilizar Dados Salvos" msgid "No data to modify!" msgstr "Não há dados pra modificar!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Nenhuma descrição disponível" @@ -9091,7 +9048,7 @@ msgstr "Não há erros." msgid "No extension selected." msgstr "Nenhum acessório selecionado." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Nenhum arquivo carregado / gravado." @@ -9099,7 +9056,7 @@ msgstr "Nenhum arquivo carregado / gravado." msgid "No game is running." msgstr "Nenhum jogo está em execução." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Nenhum jogo em execução" @@ -9112,11 +9069,11 @@ msgstr "Nenhum mod gráfico selecionado." msgid "No input" msgstr "Sem entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Não foram detectados problemas." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Nenhum jogo correspondente encontrado" @@ -9142,7 +9099,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Nenhum perfil encontrado pra configuração do jogo '{0}'" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Nenhuma gravação carregada." @@ -9161,10 +9118,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Nenhum" @@ -9176,7 +9133,7 @@ msgstr "América do Norte" msgid "Not Set" msgstr "Desconhecido" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Nem todos os jogadores possuem o jogo. Iniciar assim mesmo?" @@ -9200,7 +9157,7 @@ msgstr "" "Não há arquivos livres o bastante no memory card alvo. Pelo menos %n " "arquivo(s) livre(s) requerido(s)." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Não encontrado" @@ -9246,26 +9203,26 @@ msgstr "Número de tremidas por segundo." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Acelerômetro do Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Botões do Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Eixo do Nunchuk" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Objeto %1" @@ -9317,7 +9274,7 @@ msgstr "Posição X do Objeto 4" msgid "Object 4 Y" msgstr "Posição Y do Objeto 4" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Intervalo de Objetos" @@ -9338,11 +9295,11 @@ msgstr "Deslocamento" msgid "On" msgstr "Ligado" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Ao Mover" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9352,7 +9309,7 @@ msgstr "" "vértices para expansão de pontos e linhas, utiliza shaders de vértices para " "o trabalho. Pode afetar o desempenho.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9379,7 +9336,7 @@ msgstr "" "são executados apenas quando uma ação específica é executada no software " "emulado." -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Documentação Online" @@ -9387,7 +9344,7 @@ msgstr "&Documentação Online" msgid "Only Show Collection" msgstr "Mostrar Apenas Coleção" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9395,7 +9352,7 @@ msgstr "" "Só anexar símbolos com o prefixo:\n" "(Em branco pra todos os símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9414,7 +9371,7 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "Abrir &Local do Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Abrir Pasta do &Usuário" @@ -9423,7 +9380,7 @@ msgstr "Abrir Pasta do &Usuário" msgid "Open Directory..." msgstr "Abrir Diretório..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Abrir log do FIFO" @@ -9489,34 +9446,34 @@ msgstr "Laranja" msgid "Orbital" msgstr "Orbital" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "Origem" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "Origem Máx." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "Origem Mín." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "Símbolo de Origem" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "Origem e Destino" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9531,11 +9488,11 @@ msgstr "Outra Partição (%1)" msgid "Other State Hotkeys" msgstr "Outros" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Gerenciamento de Estados Salvos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Outro jogo..." @@ -9551,16 +9508,16 @@ msgstr "Saída da Reamostragem" msgid "Output Resampling:" msgstr "Saída da Reamostragem:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Reproduzir Gravação de Replay..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9573,11 +9530,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "Nível da Compressão do PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG Compression Level:" @@ -9589,7 +9546,7 @@ msgstr "Arquivo de imagem PNG (*.png);;Todos os arquivos (*)" msgid "PPC Size" msgstr "Tamanho do PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC vs Hospedeiro" @@ -9623,7 +9580,7 @@ msgstr "Passivo" msgid "Passthrough a Bluetooth adapter" msgstr "Redirecionar um adaptador Bluetooth" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Senha" @@ -9661,15 +9618,15 @@ msgstr "Locais" msgid "Pause" msgstr "Pausar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "Pausar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "&Pausar no Fim do Replay" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pausar ao Perder Foco" @@ -9690,6 +9647,12 @@ msgstr "" "

Se não tiver certeza deixe isto desmarcado." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9709,7 +9672,7 @@ msgstr "Velocidade pico dos movimentos de balanço externos." msgid "Per-Pixel Lighting" msgstr "Iluminação Por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Executar Atualização do Sistema Online" @@ -9717,15 +9680,15 @@ msgstr "Executar Atualização do Sistema Online" msgid "Perform System Update" msgstr "Executar Atualização do Sistema" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Tamanho da Amostra de Desempenho (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Tamanho da Amostra de Desempenho (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Estatísticas de Desempenho" @@ -9743,11 +9706,11 @@ msgstr "Espaço do endereço físico" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Escolha a fonte de depuração" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9760,7 +9723,7 @@ msgid "Pitch Up" msgstr "Pra cima" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plataforma" @@ -9768,7 +9731,7 @@ msgstr "Plataforma" msgid "Play" msgstr "Reproduzir" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Reproduzir / Gravar" @@ -9780,40 +9743,40 @@ msgstr "Reproduzir Gravação" msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opções de Reprodução" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Jogador" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Jogador 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Jogador 1, Habilidade 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Jogador 1, Habilidade 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Jogador 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Jogador 2, Habilidade 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Jogador 2, Habilidade 2" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Jogadores" @@ -9832,7 +9795,7 @@ msgstr "" "Por favor altere a configuração \"SyncOnSkipIdle\" para \"True\"! Ela está " "desativada no momento, o que torna esse problema muito provável de acontecer." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9850,7 +9813,7 @@ msgid "Point (Passthrough)" msgstr "Apontar (Redirecionamento)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Porta %1" @@ -9867,7 +9830,7 @@ msgstr "Porta:" msgid "Portal Slots" msgstr "Slots do Portal" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Possível dessincronia detectada: %1 pode ter dessincronizado no quadro %2" @@ -9884,24 +9847,32 @@ msgstr "Efeito de Pós-Processamento:" msgid "Post-Processing Shader Configuration" msgstr "Configurações do Shader de Pós-Processamento" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Preferir SV para Expansão de Ponto/Linha" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Pré-carregar Texturas Personalizadas" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Fim prematuro da gravação no PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Fim prematuro da gravação no PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Fim prematuro da gravação no PlayWiimote. {0} > {1}" @@ -9926,7 +9897,7 @@ msgstr "Sincronizar (Redirecionamento Bluetooth)" msgid "Pressure" msgstr "Pressão" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9946,7 +9917,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Perfil de Jogo Anterior" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Combinação Anterior" @@ -9957,7 +9928,7 @@ msgstr "Perfil Anterior" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitivo %1" @@ -9997,7 +9968,7 @@ msgstr "" "Problemas de gravidade média foram encontrados. O jogo inteiro ou certas " "partes dele podem não funcionar corretamente." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Perfil" @@ -10006,23 +9977,29 @@ msgstr "Perfil" msgid "Program Counter" msgstr "Contador do Programa" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Progresso" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Limpar Cache da Lista de Jogos" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Coloque as ROMs do IPL na pasta User/GC//." @@ -10042,7 +10019,7 @@ msgstr "A Qualidade do Serviço (QoS) não pôde ser ativada." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Qualidade do Serviço (QoS) ativado com sucesso." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Qualidade do decodificador DPLII. A latência do áudio aumenta com a " @@ -10051,11 +10028,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Pergunta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Sair" @@ -10072,19 +10049,19 @@ msgstr "R" msgid "R-Analog" msgstr "R (analógico)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "Módulos do RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "Auto-detecção do RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "EM EXECUÇÃO" @@ -10105,7 +10082,7 @@ msgstr "Final do Alcance: " msgid "Range Start: " msgstr "Início do Alcance: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Rank %1" @@ -10113,16 +10090,17 @@ msgstr "Rank %1" msgid "Raw" msgstr "Bruto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "Resolução Interna Bruta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Su&bstituir instrução" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Ler" @@ -10161,8 +10139,8 @@ msgstr "Wii Remote Real" msgid "Received invalid Wii Remote data from Netplay." msgstr "Dados do Wii Remote inválidos recebidos do NetPlay." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "Acertos Recentes" @@ -10171,23 +10149,23 @@ msgstr "Acertos Recentes" msgid "Recenter" msgstr "Re-centralizar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Gravar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Gravar a Entrada dos Dados" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Gravação" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opções da Gravação" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Gravando..." @@ -10227,7 +10205,7 @@ msgstr "Status no Redump.org:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10259,7 +10237,7 @@ msgid "Refreshing..." msgstr "Atualizando..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Região" @@ -10280,7 +10258,11 @@ msgstr "Entrada Relativa dos Dados" msgid "Relative Input Hold" msgstr "Manter a Entrada Relativa dos Dados" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Me Lembrar Mais Tarde" @@ -10288,7 +10270,7 @@ msgstr "Me Lembrar Mais Tarde" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Remover" @@ -10319,20 +10301,20 @@ msgstr "" "(a menos que você comprima o arquivo ISO em um formato como ZIP " "posteriormente). Deseja continuar mesmo assim?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Renomear Símbolo" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Janela de Renderização" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Renderizar na Janela Principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10348,10 +10330,16 @@ msgstr "Relatório: Gravação da GCIFolder no bloco não alocado {0:#x}" msgid "Request to Join Your Party" msgstr "Pedido pra se Juntar ao seu Grupo" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10361,7 +10349,7 @@ msgstr "Redefinir" msgid "Reset All" msgstr "Resetar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Redefinir Ignorar Gerenciadores de Pânico" @@ -10393,7 +10381,7 @@ msgstr "Redefinir Câmera" msgid "Reset all saved Wii Remote pairings" msgstr "Redefinir pareamento de todos os Wii Remotes salvos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "Resolução de Captura:" @@ -10405,7 +10393,7 @@ msgstr "Gerenciador de Pacotes de Recursos" msgid "Resource Pack Path:" msgstr "Pacotes de Recursos:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Reinicialização Necessária" @@ -10413,11 +10401,11 @@ msgstr "Reinicialização Necessária" msgid "Restore Defaults" msgstr "Restaurar Padrões" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Restaurar instrução" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Repetir" @@ -10426,7 +10414,7 @@ msgstr "Repetir" msgid "Return Speed" msgstr "Velocidade de Retorno" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revisão" @@ -10438,7 +10426,7 @@ msgstr "Revisão: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10449,7 +10437,7 @@ msgstr "Direita" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Eixo Direito" @@ -10485,11 +10473,11 @@ msgstr "Rolar pra Esquerda" msgid "Roll Right" msgstr "Rolar pra Direita" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Código da Sala" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Rotação" @@ -10512,50 +10500,35 @@ msgstr "" "resolução interna nativa.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" -"Linhas da tabela podem ser clicadas com o botão esquerdo nas colunas de " -"origem, destino e símbolo para mostrar o endereço correspondente no painel " -"de Código. Clicar com o botão direito na(s) linha(s) selecionada(s) mostrará " -"um menu de contexto.\n" -"\n" -"Se a coluna de destino em uma linha da tabela for clicada com o botão " -"direito, uma ação para substituir a instrução no(s) destino(s) com uma " -"instrução BLR (Branch para Registrador de Link) estará disponível, mas " -"somente se a instrução de branch em cada origem salva o registrador de link, " -"e uma ação para copiar o(s) endereço(s) para a área de transferência estará " -"disponível.\n" -"\n" -"Se a coluna do símbolo de origem / destino em uma linha da tabela for " -"clicada com o botão direito, uma ação para substituir a(s) instrução(ões) no " -"início do símbolo com uma instrução BLR estará disponível, mas somente se " -"cada símbolo de origem / destino for encontrado.\n" -"\n" -"Todos os menus de contexto tem uma ação para excluir a(s) linha(s) " -"selecionada(s) da lista de candidatos." #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10564,7 +10537,7 @@ msgstr "" msgid "Rumble" msgstr "Vibração" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Correr &Até Aqui" @@ -10572,15 +10545,15 @@ msgstr "Correr &Até Aqui" msgid "Run GBA Cores in Dedicated Threads" msgstr "Executar Instâncias do GBA em Processos Dedicados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Executar até" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Executar até (ignorando pontos de interrupção)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Executar até atingir (ignorando os pontos de interrupção)" @@ -10588,23 +10561,23 @@ msgstr "Executar até atingir (ignorando os pontos de interrupção)" msgid "Russia" msgstr "Rússia" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "Cartão SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "Tamanho do Cartão SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Imagem do Cartão SD (*.raw);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Local do Cartão SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "Configurações do Cartão SD" @@ -10612,7 +10585,7 @@ msgstr "Configurações do Cartão SD" msgid "SD Root:" msgstr "Raiz do SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "Pasta de Sincronização do SD:" @@ -10647,11 +10620,11 @@ msgstr "Contexto do SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Sa&lvar Código" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Salvar Estado Salvo" @@ -10661,9 +10634,9 @@ msgid "Safe" msgstr "Seguro" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10673,25 +10646,25 @@ msgstr "Salvar" msgid "Save All" msgstr "Salvar Todos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "S&alvar Branch Watch Como..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "Salvar estado do Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Exportar Dados Salvos" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Salvar o Log do FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Salvar o Arquivo em" @@ -10705,11 +10678,11 @@ msgstr "Jogo Salvo" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Arquivo de jogo salvo (*.sav);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Importar Dados Salvos" @@ -10721,7 +10694,7 @@ msgstr "Salvar Estado Mais Antigo" msgid "Save Preset" msgstr "Salvar Predefinição" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Salvar o Arquivo da Gravação Como" @@ -10771,23 +10744,23 @@ msgstr "Salvar no Slot 8" msgid "Save State Slot 9" msgstr "Salvar no Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Salvar no Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Salvar no Slot Mais Antigo" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Salvar no Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Salvar o Mapa dos Símbolos &Como..." @@ -10795,7 +10768,7 @@ msgstr "Salvar o Mapa dos Símbolos &Como..." msgid "Save Texture Cache to State" msgstr "Armazenar Cache de Texturas no Estado Salvo" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Salvar e Carregar Estados Salvos" @@ -10807,11 +10780,11 @@ msgstr "Salvar como Predefinição..." msgid "Save as..." msgstr "Salvar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Salvar o arquivo de saída combinada dos dados como" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10825,11 +10798,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Salvar na Mesma Pasta da ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Salvar o arquivo do mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Salvar o arquivo de assinatura" @@ -10837,11 +10810,11 @@ msgstr "Salvar o arquivo de assinatura" msgid "Save to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Salvar..." @@ -10855,7 +10828,7 @@ msgstr "" msgid "Saves:" msgstr "Dados Salvos:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "O estado salvo da gravação {0} está corrompido, parando a gravação..." @@ -10872,8 +10845,8 @@ msgid "ScrShot" msgstr "Screenshot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Pesquisar" @@ -10882,7 +10855,7 @@ msgstr "Pesquisar" msgid "Search Address" msgstr "Procurar Endereço" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Procurar o Objeto Atual" @@ -10902,7 +10875,7 @@ msgstr "" "A busca atualmente não é possível no espaço do endereço virtual. Por favor " "execute o jogo um pouco e tente de novo." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Procurar uma Instrução" @@ -10910,7 +10883,7 @@ msgstr "Procurar uma Instrução" msgid "Search games..." msgstr "Pesquisar jogos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Procurar instrução" @@ -10946,7 +10919,7 @@ msgstr "Selecionar" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10959,23 +10932,23 @@ msgid "Select Dump Path" msgstr "Selecione o Caminho do Dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Selecione o Diretório de Exportação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Selecionar Arquivo da Figura" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Selecionar a BIOS do GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Selecionar a ROM do GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Selecione o Caminho dos Saves do GBA" @@ -11003,7 +10976,7 @@ msgstr "Selecione a Correção do Skylander" msgid "Select Skylander File" msgstr "Selecione o arquivo do Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2" @@ -11011,7 +10984,7 @@ msgstr "Slot %1 - %2" msgid "Select State" msgstr "Selecionar" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Slot de Estado Salvo" @@ -11072,13 +11045,13 @@ msgstr "Selecione um Diretório" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Selecione um Arquivo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Selecione uma pasta pra sincronizar com a imagem do cartão SD" @@ -11086,7 +11059,7 @@ msgstr "Selecione uma pasta pra sincronizar com a imagem do cartão SD" msgid "Select a Game" msgstr "Selecione um Jogo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Selecione uma Imagem do Cartão SD" @@ -11098,7 +11071,7 @@ msgstr "Selecione um arquivo" msgid "Select a game" msgstr "Selecione um jogo" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Selecione um título pra instalar no NAND" @@ -11106,11 +11079,11 @@ msgstr "Selecione um título pra instalar no NAND" msgid "Select e-Reader Cards" msgstr "Selecione os Cartões do e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Selecione o endereço do módulo do RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Selecione o Arquivo da Gravação a Executar" @@ -11118,12 +11091,12 @@ msgstr "Selecione o Arquivo da Gravação a Executar" msgid "Select the Virtual SD Card Root" msgstr "Selecione a Raiz do Cartão SD Virtual" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Selecione o arquivo das chaves (dump do OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Importar" @@ -11146,16 +11119,16 @@ msgstr "O perfil de controle selecionado não existe" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "O jogo selecionado não existe na lista de jogos!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Thread do callstack selecionado" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Contexto do thread selecionado" @@ -11175,7 +11148,7 @@ msgstr "" "Seleciona o adaptador de vídeo a ser utilizado.

Na " "dúvida, selecione o primeiro da lista." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11231,7 +11204,7 @@ msgstr "" "utilizado por algumas TVs.

Na dúvida, selecione " "\"Desligado\"." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11272,7 +11245,7 @@ msgstr "" "

Na dúvida, selecione \"Automática\"." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11288,11 +11261,11 @@ msgstr "" "é recomendado testar cada um e selecionar o backend menos problemático." "

Na dúvida, selecione \"OpenGL\"." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Posição da Sensor Bar:" @@ -11324,6 +11297,10 @@ msgstr "O servidor rejeitou a tentativa traversal" msgid "Set &Value" msgstr "Definir &Valor" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11341,23 +11318,23 @@ msgstr "Definir arquivo do memory card pro Slot A" msgid "Set memory card file for Slot B" msgstr "Definir arquivo do memory card pro Slot B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Definir final do &endereço do símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Definir tamanho do &símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Definir final do endereço do símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Definir tamanho do símbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11367,11 +11344,19 @@ msgstr "" "jogos PAL.\n" "Pode não funcionar em todos os jogos." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Define o idioma do sistema do Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11379,6 +11364,13 @@ msgstr "" "Define a latência em milissegundos. Valores mais altos podem reduzir " "picotamentos no áudio. Disponível somente em alguns backends." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11387,13 +11379,13 @@ msgstr "" "Configura a busca usando mapeamentos MEM1 e MEM2 padrão (no Wii) no espaço " "do endereço virtual. Isto funcionará para a vasta maioria dos jogos." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Configurações" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Não foi possível criar o arquivo setting.txt" @@ -11401,7 +11393,7 @@ msgstr "SetupWiiMemory: Não foi possível criar o arquivo setting.txt" msgid "Severity" msgstr "Gravidade" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Compilação de Shaders" @@ -11423,32 +11415,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Controle Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Mostrar Velocidade em %" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Mostrar &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Mostrar Barra de &Ferramentas" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Mostrar Software em Execução no Título da Janela" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Mostrar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Austrália" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Mostrar Jogo em Execução no Discord" @@ -11457,7 +11449,7 @@ msgstr "Mostrar Jogo em Execução no Discord" msgid "Show Disabled Codes First" msgstr "Mostrar Códigos Desativados Primeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11466,31 +11458,31 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "Mostrar Códigos Ativados Primeiro" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Mostrar Contador de Quadros" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Mostrar Duração dos Quadros" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "França" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Alemanha" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Mostrar Sobreposição do Modo Golfe" @@ -11498,23 +11490,23 @@ msgstr "Mostrar Sobreposição do Modo Golfe" msgid "Show Infinity Base" msgstr "Mostrar Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Mostrar Entrada de Dados" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Japão" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Coréia" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Mostrar Contador de Lag" @@ -11522,27 +11514,27 @@ msgstr "Mostrar Contador de Lag" msgid "Show Language:" msgstr "Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Mostrar &Configurações do Log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Mostrar Mensagens do NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Mostrar Ping do NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Holanda" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Mostrar Mensagens na Tela" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Europa" @@ -11551,27 +11543,27 @@ msgstr "Europa" msgid "Show PC" msgstr "Mostrar PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Mostrar Gráfico de Desempenho" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Mostrar Plataformas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "Exibir Estatísticas de Projeção" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Mostrar Contador de Regravações" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Rússia" @@ -11579,72 +11571,72 @@ msgstr "Rússia" msgid "Show Skylanders Portal" msgstr "Mostrar Portal Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Espanha" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Mostrar Velocidade em Cores" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Exibir Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Mostrar Relógio do Sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Desconhecido" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Mostrar Duração do VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Global" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Mostrar na &memória" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Mostrar no Código" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Mostrar na Memória" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Mostrar no código" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Mostrar na memória" @@ -11652,11 +11644,19 @@ msgstr "Mostrar na memória" msgid "Show in server browser" msgstr "Mostrar no navegador do servidor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Mostrar o alvo na &memória" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11665,7 +11665,7 @@ msgstr "" "enquanto joga no NetPlay.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11685,7 +11692,25 @@ msgstr "" "velocidade total.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11695,7 +11720,7 @@ msgstr "" "e seu desvio padrão.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11705,7 +11730,7 @@ msgstr "" "desvio padrão.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11715,7 +11740,7 @@ msgstr "" "métrica de suavidade visual.

Na dúvida, mantenha " "essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11734,7 +11759,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11742,7 +11767,7 @@ msgstr "" "Mostra várias estatísticas de projeção.

Na dúvida, " "mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11766,7 +11791,7 @@ msgstr "Alternar Horizontal" msgid "Sideways Wii Remote" msgstr "Wii Remote na Horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Base de Dados da Assinatura" @@ -11785,12 +11810,12 @@ msgstr "Assinado 32" msgid "Signed 8" msgstr "Assinou 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Inteiro Assinada" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chinês Simplificado" @@ -11807,7 +11832,7 @@ msgstr "Seis Eixos" msgid "Size" msgstr "Tamanho" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11819,7 +11844,7 @@ msgstr "" msgid "Skip" msgstr "Ignorar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Ignorar Desenho" @@ -11873,6 +11898,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Todos os arquivos (*)" @@ -11947,7 +11975,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Classificar por Nome" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Modo de Som:" @@ -11961,7 +11989,7 @@ msgstr "Espanha" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Espanhol" @@ -11969,19 +11997,19 @@ msgstr "Espanhol" msgid "Speaker Pan" msgstr "Balanço do Speaker" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volume do Auto-Falante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Especializada (Padrão)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Específico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12016,11 +12044,11 @@ msgstr "Velocidade" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Fim das pilhas" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Início das pilhas" @@ -12028,25 +12056,25 @@ msgstr "Início das pilhas" msgid "Standard Controller" msgstr "Controle Padrão" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Iniciar &NetPlay..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "Iniciar Branch Watch" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Iniciar Nova Pesquisa" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Iniciar Gravação de Replay" @@ -12054,7 +12082,7 @@ msgstr "&Iniciar Gravação de Replay" msgid "Start Recording" msgstr "Iniciar Gravação" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Iniciar em Tela Cheia" @@ -12066,14 +12094,14 @@ msgstr "Iniciar com Patches do Riivolution" msgid "Start with Riivolution Patches..." msgstr "Iniciar com Patches do Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Jogo iniciado" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Estado" @@ -12105,19 +12133,19 @@ msgstr "Saída" msgid "Step Over" msgstr "Passagem" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Saída bem-sucedida!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "O tempo pra sair esgotou!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Passagem em progresso..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Passo bem-sucedido!" @@ -12126,7 +12154,7 @@ msgstr "Passo bem-sucedido!" msgid "Stepping" msgstr "Passando" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Estéreo" @@ -12155,16 +12183,16 @@ msgid "Stick" msgstr "Eixo" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Parar a Reprodução/Gravação de Replay" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Jogo parado" @@ -12206,11 +12234,11 @@ msgstr "" "Cópias do XFB na RAM (e na Textura)

Na dúvida, " "mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Esticar para a Janela" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Sincronização Rigorosa das Configurações" @@ -12224,7 +12252,11 @@ msgstr "String" msgid "Strum" msgstr "Palheta" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Estilo:" @@ -12235,18 +12267,18 @@ msgstr "Estilo:" msgid "Stylus" msgstr "Stylus" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Sucesso" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Sessão adicionada com sucesso ao indexador do NetPlay" @@ -12256,7 +12288,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n imagem(ns) convertida(s) com sucesso." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Perfil \"%1\" excluído com sucesso." @@ -12269,24 +12301,24 @@ msgstr "%n de %1 arquivo(s) de jogo salvo exportados com sucesso." msgid "Successfully exported save files" msgstr "Arquivos dos saves exportados com sucesso" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Certificados da NAND extraídos com sucesso" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Arquivo extraído com sucesso." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Dados extraídos do sistema com sucesso." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Arquivo de dados salvos importado com sucesso." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Software instalado na NAND com sucesso." @@ -12309,16 +12341,16 @@ msgstr "Suporte" msgid "Supported file formats" msgstr "Formatos de arquivo suportados" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Suporta SD e SDHC. O tamanho padrão é 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Suspenso" @@ -12365,17 +12397,17 @@ msgstr "Alternar para B" msgid "Symbol" msgstr "Símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Fim do endereço do Símbolo (%1)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Nome do símbolo:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Símbolos" @@ -12383,7 +12415,7 @@ msgstr "Símbolos" msgid "Sync" msgstr "Sincronizar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Sincronizar Códigos AR/Gecko" @@ -12403,7 +12435,7 @@ msgstr "" "Sincroniza os threads da GPU e da CPU pra ajudar a impedir os congelamentos " "aleatórios no modo Dual Core. (ON = Compatível, OFF = Rápido)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12424,24 +12456,24 @@ msgid "Synchronizing save data..." msgstr "Sincronizando dados salvos..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Idioma do Sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Entrada de Dados 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Ferramentas de TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Etiquetas" @@ -12451,7 +12483,7 @@ msgstr "Etiquetas" msgid "Taiko Drum" msgstr "Tambor Taiko" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Cauda" @@ -12459,7 +12491,7 @@ msgstr "Cauda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Capturar Tela" @@ -12467,7 +12499,7 @@ msgstr "Capturar Tela" msgid "Target address range is invalid." msgstr "O alcance do endereço alvo é inválido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12485,9 +12517,9 @@ msgstr "Tecnologia" msgid "Test" msgstr "Testar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "Arquivo de texto (*.txt);;Todos os arquivos (*)" @@ -12500,7 +12532,7 @@ msgstr "Cache de Texturas" msgid "Texture Cache Accuracy" msgstr "Precisão do Cache de Texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Exportação de Texturas" @@ -12512,7 +12544,7 @@ msgstr "Filtragem de Textura" msgid "Texture Filtering:" msgstr "Filtragem de Textura:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Sobreposição do Formato das Texturas" @@ -12559,7 +12591,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "As partições das Masterpieces estão ausentes." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12567,7 +12599,7 @@ msgstr "" "A NAND não pôde ser reparada. É recomendável fazer backup dos dados salvos " "atuais e recomeçar do zero com uma NAND limpa." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "A NAND foi reparada." @@ -12585,7 +12617,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "A quantidade de dinheiro que esse Skylander possui. Entre 0 e 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12650,7 +12682,7 @@ msgstr "" "\n" "Por favor selecione outro local para \"%1\"" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12662,7 +12694,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "O disco não pôde ser lido (em {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "O disco que estava prestes a ser inserido não foi encontrado." @@ -12757,7 +12789,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "O sistema de arquivos é inválido ou não pôde ser lido." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12807,7 +12839,7 @@ msgstr "" "evitar problemas com o Wii System Menu, não é possível atualizar o console " "emulado usando este disco." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12881,12 +12913,12 @@ msgstr "O apelido para esse Skylander. Limitado a 15 caracteres" msgid "The patches in %1 are not for the selected game or game revision." msgstr "Os patches no %1 não são pro jogo selecionado ou revisão do jogo." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "O perfil \"%1\" não existe" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "O jogo gravado ({0}) não é o mesmo do jogo selecionado ({1})" @@ -12911,7 +12943,7 @@ msgid "" msgstr "" "O mesmo arquivo não pode ser usado em múltiplos slots; já é usado pelo %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12951,7 +12983,7 @@ msgstr "O índice de chave comum especificado é {0}, mas deveria ser {1}." msgid "The specified file \"{0}\" does not exist" msgstr "O arquivo especificado \"{0}\" não existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -13016,7 +13048,7 @@ msgstr "A partição de atualização está ausente." msgid "The update partition is not at its normal position." msgstr "A partição de atualização não está em sua posição normal." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -13040,6 +13072,10 @@ msgstr "A partição {0} não foi assinada corretamente." msgid "The {0} partition is not properly aligned." msgstr "A partição {0} não está alinhada corretamente." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Existem muitas partições na primeira tabela de partições." @@ -13054,8 +13090,8 @@ msgstr "" "\n" "Você quer salvar antes de fechar?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "Não há nada para salvar!" @@ -13109,11 +13145,11 @@ msgstr "Este tipo de Skylander ainda não pode ser modificado!" msgid "This USB device is already whitelisted." msgstr "O dispositivo USB informado já está na lista de redirecionamento." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Este WAD não é inicializável." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Este WAD não é válido." @@ -13134,7 +13170,7 @@ msgstr "" "processador.\n" "Por favor utilize a edição ARM64 do Dolphin para obter a melhor experiência." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Isto não pode ser desfeito!" @@ -13267,7 +13303,7 @@ msgstr "" msgid "This is a good dump." msgstr "Essa cópia é válida." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "Aplicável apenas ao boot inicial do software emulado." @@ -13293,7 +13329,7 @@ msgstr "" "Este software não deve ser usado pra jogar jogos que você não possui " "legalmente." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Este software não pode ser iniciado." @@ -13345,7 +13381,7 @@ msgstr "" "Esse valor é multiplicado com a profundidade definida nas configurações " "gráficas." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -13363,7 +13399,7 @@ msgstr "" "Isto limitará a velocidade do upload fragmentado por cliente, a qual é usada " "pra sincronizar os saves." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13375,11 +13411,11 @@ msgstr "" "Pode impedir a dessincronização em alguns jogos que usam leituras do EFB. " "Por favor garanta que todos usem o mesmo backend de vídeo." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Contexto do thread" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Threads" @@ -13404,14 +13440,14 @@ msgstr "" "Período de tempo da entrada de dados estável pra engatilhar a calibração. " "(zero pra desativar)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Tempo Esgotado" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Título" @@ -13420,12 +13456,12 @@ msgid "To" msgstr "Até" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Até:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "Alternar &Tela Cheia" @@ -13450,7 +13486,7 @@ msgid "Toggle Aspect Ratio" msgstr "Alternar Proporção de Tela" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Ativar/Desativar Pontos de Interrupção" @@ -13506,7 +13542,7 @@ msgstr "Ativar/Desativar Exibição Imediata do XFB" msgid "Tokenizing failed." msgstr "Falha na tokenização." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "Controles da Ferramenta" @@ -13514,7 +13550,7 @@ msgstr "Controles da Ferramenta" msgid "Toolbar" msgstr "Barra de Ferramentas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Em cima" @@ -13522,8 +13558,8 @@ msgstr "Em cima" msgid "Top-and-Bottom" msgstr "Sobreposto" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Total de Acertos" @@ -13565,7 +13601,7 @@ msgid "Toy code:" msgstr "Código do brinquedo:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chinês Tradicional" @@ -13585,8 +13621,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Erro Traversal" @@ -13615,7 +13651,7 @@ msgstr "Triforce AM Baseboard" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Gatilhos" @@ -13625,7 +13661,7 @@ msgid "Trophy" msgstr "Troféu" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13639,7 +13675,7 @@ msgstr "Alinhamento baseado no tipo" msgid "Typical GameCube/Wii Address Space" msgstr "Espaço de endereço típico do GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "DESCONHECIDO" @@ -13651,7 +13687,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "Emulação de Dispositivo USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "Emulação USB" @@ -13669,7 +13705,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Erro no Redirecionamento USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13680,7 +13716,7 @@ msgstr "" "hardware de entrada.

Na dúvida, selecione esse modo." "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13693,7 +13729,7 @@ msgstr "" "notado engasgos com os Ubershaders Híbridos e possua uma GPU " "consideravelmente potente.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13707,7 +13743,7 @@ msgstr "" "compilação de shaders com um impacto mínimo no desempenho, mas os resultados " "dependem do comportamento do driver de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Incapaz de auto-detectar o módulo do RSO" @@ -13779,11 +13815,11 @@ msgstr "Imagens do GC/Wii sem compressão (*.iso *.gcm)" msgid "Undead" msgstr "Morto-Vivo" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Desfazer Carregamento" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Desfazer Estado Salvo" @@ -13803,28 +13839,28 @@ msgstr "" "Desinstalar o WAD removerá a versão atualmente instalada desse software da " "NAND, sem excluir seus dados salvos. Continuar?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "Estados Unidos" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Desconhecido" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Desconhecido (ID: %1 Var.: %2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando desconhecido do DVD {0:08x} - erro fatal" @@ -13900,11 +13936,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Desconhecido (%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Desconhecido (%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Ilimitado" @@ -13916,21 +13952,9 @@ msgstr "Fechar ROM" msgid "Unlock Cursor" msgstr "Destravar Cursor" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Desbloqueada" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Desbloqueada %1 vezes nesta sessão" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Desbloqueada (Casual)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Desbloqueada nesta sessão" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13956,7 +13980,7 @@ msgstr "Não Assinou 32" msgid "Unsigned 8" msgstr "Não Assinou 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Inteiro Não Assinada" @@ -13970,8 +13994,8 @@ msgstr "Inteiro Não Assinada" msgid "Up" msgstr "Para cima" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Atualizar" @@ -13979,11 +14003,11 @@ msgstr "Atualizar" msgid "Update Partition (%1)" msgstr "Partição de Atualização (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Atualizar após fechar o Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Atualização disponível" @@ -14028,7 +14052,7 @@ msgstr "Alternar Vertical" msgid "Upright Wii Remote" msgstr "Wii Remote na Vertical" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Configurações de Estatísticas de Uso" @@ -14036,15 +14060,15 @@ msgstr "Configurações de Estatísticas de Uso" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "Use 8.8.8.8 para DNS normal, ou digite o endereço do DNS personalizado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Utilizar Todos os Dados Salvos do Wii" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Usar Nomes de Jogos da Base de Dados Embutida" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Usar Codec Sem Perdas (FFV1)" @@ -14052,15 +14076,21 @@ msgstr "Usar Codec Sem Perdas (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Usar o Ponteiro Controlado pelo Mouse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usar Modo PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Usar Gerenciadores de Pânico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14109,7 +14139,7 @@ msgstr "Use endereços virtuais quando possível" msgid "User Config" msgstr "Configuração do Usuário" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Interface do Usuário" @@ -14127,10 +14157,17 @@ msgstr "" "Você pode usá-las pra salvar ou recuperar os valores entre\n" "as entradas e saídas do mesmo controle principal." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Nome do Usuário" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -14144,7 +14181,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14154,7 +14191,7 @@ msgstr "" "separada será criada para a renderização.

Na " "dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Caso " "contrário, na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14456,8 +14493,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Aviso" @@ -14469,7 +14506,7 @@ msgstr "" "AVISO: uma pasta GCI substituta está atualmente configurada para esse slot. " "Alterar o local da pasta GCI aqui não terá nenhum efeito." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14486,7 +14523,7 @@ msgstr "" "AVISO: O número de blocos indicados pelo BAT ({0}) não corresponde com o " "cabeçalho do arquivo carregado ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14497,7 +14534,7 @@ msgstr "" "salvo antes de continuar, ou então carregar esse estado com o modo somente " "leitura desativado." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14507,7 +14544,7 @@ msgstr "" "atual no estado (byte {0} < {1}) (quadro {2} < {3}). Você deve carregar " "outro estado salvo antes de continuar." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14518,7 +14555,7 @@ msgstr "" "carregar esse estado com o modo somente leitura desativado, caso contrário " "você provavelmente obterá uma dessincronização." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14580,7 +14617,7 @@ msgstr "Ocidental (Windows-1252)" msgid "Whammy" msgstr "Distorção" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14593,7 +14630,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14606,7 +14643,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivos Permitidos no Redirecionamento USB" @@ -14638,25 +14675,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Acelerômetro do Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Botões do Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Giroscópio do Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Configurações do Wii Remote" @@ -14664,19 +14701,19 @@ msgstr "Configurações do Wii Remote" msgid "Wii Remotes" msgstr "Wii Remotes" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Entrada de Dados TAS - Classic Controller %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Entrada de Dados TAS - Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Entrada de Dados TAS - Wii Remote + Nunchuk %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii e Wii Remote" @@ -14684,7 +14721,7 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dados do Wii ainda não são públicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Arquivo de dados salvos do Wii (*.bin);;Todos os arquivos (*)" @@ -14692,16 +14729,7 @@ msgstr "Arquivo de dados salvos do Wii (*.bin);;Todos os arquivos (*)" msgid "WiiTools Signature MEGA File" msgstr "MEGA Arquivo de Assinatura do WiiTools" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"Trava o cursor do mouse dentro da janela de renderização sempre que ela " -"estiver em foco.\n" -"Você pode definir uma tecla de atalho para destravá-lo." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "Resolução da Janela" @@ -14710,11 +14738,11 @@ msgstr "Resolução da Janela" msgid "Window Size" msgstr "Tamanho da Janela" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "Limpar Dados de &Inspeção" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "Limpar Acertos Recentes" @@ -14728,10 +14756,11 @@ msgstr "Global" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "Salvar Despejo de Log do Bloco JIT" @@ -14764,39 +14793,39 @@ msgstr "Gravar no Log e Dividir" msgid "Write to Window" msgstr "Gravar na Janela" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Número de disco incorreto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Hash incorreto" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Região incorreta" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Revisão incorreta" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "Escrito em \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "Escrito em \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "Registrador XF" @@ -14805,9 +14834,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "Endereço de Destino do Adaptador XLink Kai" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14835,7 +14864,7 @@ msgstr "Sim" msgid "Yes to &All" msgstr "Sim para &Todos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14845,7 +14874,7 @@ msgstr "" "%1. Todo o conteúdo existente na pasta será excluído. Tem certeza de que " "quer continuar?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14966,7 +14995,7 @@ msgstr "Você deve fornecer um nome para sua sessão!" msgid "You must provide a region for your session!" msgstr "Você deve fornecer uma região para sua sessão!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Você precisa reiniciar o Dolphin para que as alterações tenham efeito." @@ -14994,7 +15023,7 @@ msgstr "" "Gostaria de interromper a emulação para corrigir o problema?\n" "Se optar por continuar, o áudio pode não funcionar corretamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -15003,9 +15032,9 @@ msgstr "" "comportar de maneira incorreta ou não permitir que novos dados sejam salvos." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -15014,7 +15043,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Código Zero 3 não é suportado" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "Zero candidatos restantes." @@ -15063,7 +15092,7 @@ msgid "default" msgstr "padrão" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "desconectado" @@ -15071,7 +15100,7 @@ msgstr "desconectado" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "Cartões do e-Reader (*.raw);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -15079,7 +15108,7 @@ msgstr "errno" msgid "fake-completion" msgstr "Falsa conclusão" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "false" @@ -15129,16 +15158,6 @@ msgstr "" msgid "none" msgstr "Nenhum" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "desligado" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "ligado" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "ou selecione um dispositivo da lista" @@ -15156,7 +15175,7 @@ msgstr "sRGB" msgid "this value:" msgstr "este valor:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "true" @@ -15223,11 +15242,9 @@ msgstr "| Ou" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Equipe Dolphin. \"GameCube\" e \"Wii\" são marcas registradas " -"da Nintendo. Dolphin não é afiliado à Nintendo de forma alguma." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ro.po b/Languages/po/ro.po index 77d0461eae..45a8f75093 100644 --- a/Languages/po/ro.po +++ b/Languages/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Arian - Cazare Muncitori , 2014\n" "Language-Team: Romanian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -113,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -144,11 +144,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -165,40 +165,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -206,13 +200,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -224,30 +218,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -259,6 +253,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -328,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -341,7 +339,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -349,15 +347,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -365,11 +363,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Puncte de întrerupere" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -377,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -393,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -401,16 +403,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -418,20 +419,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -445,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulare" @@ -469,41 +470,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fișier" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Avans Cadru" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Configurări Grafică" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Ajutor" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Configurări Tastă Rapidă" @@ -523,11 +524,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -535,23 +536,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "&Status de Încărcare" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -561,19 +562,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -581,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -590,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Deschide..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opțiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pauză" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Redare" @@ -614,7 +619,7 @@ msgstr "&Redare" msgid "&Properties" msgstr "&Proprietăți" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -622,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Înregistrări" @@ -635,24 +640,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Resetează" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -660,31 +665,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Stop" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Instrumente" @@ -694,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Vizualizează" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -720,23 +725,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -772,12 +777,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -838,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -896,7 +901,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -922,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1015,26 +1020,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1057,8 +1062,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1072,7 +1077,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1086,7 +1091,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1102,7 +1107,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1127,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1170,16 +1175,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1252,7 +1251,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1260,15 +1259,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1276,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adaptor:" @@ -1286,7 +1285,7 @@ msgstr "Adaptor:" msgid "Add" msgstr "Adaugă" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1311,43 +1310,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Adaugă..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1473,7 +1472,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1482,7 +1481,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1490,34 +1489,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1533,7 +1532,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1541,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1559,7 +1558,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1581,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analizează" @@ -1607,15 +1606,15 @@ msgstr "Antialias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1633,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1641,7 +1640,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1653,7 +1652,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1665,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Raport Aspect:" @@ -1682,7 +1681,7 @@ msgstr "Raport Aspect:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1694,7 +1693,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1715,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Backend Audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1735,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1744,11 +1743,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiple de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1756,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1764,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1812,27 +1811,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Înregistrare BP" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Configurări Backend" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -1875,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -1895,15 +1894,15 @@ msgstr "Bară" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Principal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Configurări Principale" @@ -1919,10 +1918,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1955,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1969,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2005,67 +2000,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Jos" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2077,23 +2072,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2110,7 +2105,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2120,19 +2115,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2147,19 +2142,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2193,24 +2193,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Tampon:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2255,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2310,7 +2310,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2336,7 +2336,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2352,18 +2352,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2372,15 +2372,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2396,11 +2396,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2408,7 +2408,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2416,7 +2416,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Schimbă &Discul..." @@ -2456,15 +2456,21 @@ msgstr "Schimbă &Discul..." msgid "Change Disc" msgstr "Schimbă Discul" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2482,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2490,11 +2496,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat" @@ -2502,7 +2508,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Căutare Trișări" @@ -2510,7 +2516,7 @@ msgstr "Căutare Trișări" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2528,7 +2534,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2540,7 +2546,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Alege un fișier pentru a-l deschide" @@ -2548,15 +2554,15 @@ msgstr "Alege un fișier pentru a-l deschide" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2569,7 +2575,7 @@ msgstr "Alege dosarul pentru a-l extrage" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2580,18 +2586,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Curăță" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2612,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Închide" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2620,11 +2626,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2652,11 +2658,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2683,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2693,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2706,7 +2712,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2714,11 +2720,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2734,7 +2740,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2749,7 +2755,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2803,7 +2814,7 @@ msgstr "Configurare" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2816,27 +2827,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Confirmă la Oprire" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2846,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "Conectare" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Conectează Placa de Echilibru" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Conectează Tastatura USB" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2874,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2890,7 +2901,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2915,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3002,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3011,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3021,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3043,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3073,22 +3084,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3096,19 +3107,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3126,8 +3137,8 @@ msgstr "" msgid "Core" msgstr "Nucleu" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3234,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3250,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Țara:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3270,7 +3281,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3287,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "Critic" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Decupare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3303,42 +3314,42 @@ msgstr "" msgid "Crossfade" msgstr "Estompare Intercalată" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3346,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3397,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3405,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3439,7 +3450,7 @@ msgstr "Saltea de Dans" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3484,8 +3495,8 @@ msgstr "Zonă Moartă" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depanare" @@ -3494,7 +3505,7 @@ msgstr "Depanare" msgid "Decimal" msgstr "Zecimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3533,7 +3544,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Implicit" @@ -3541,7 +3552,7 @@ msgstr "Implicit" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3553,11 +3564,11 @@ msgstr "" msgid "Default ISO:" msgstr "ISO implicit:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3565,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3574,8 +3585,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Șterge" @@ -3605,12 +3617,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descriere" @@ -3624,8 +3636,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3637,21 +3649,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3659,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Detectare" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3667,11 +3679,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Dispozitiv" @@ -3689,7 +3701,7 @@ msgstr "Configurări Dispozitiv" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3697,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3713,11 +3725,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3726,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3734,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3746,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Dezactivează Ceața" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3765,7 +3772,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disc" @@ -3789,6 +3802,10 @@ msgstr "Disc" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3819,11 +3836,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3833,7 +3850,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Vrei să oprești emularea curentă?" @@ -3841,12 +3858,12 @@ msgstr "Vrei să oprești emularea curentă?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3854,9 +3871,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3868,8 +3885,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr " Filme TAS Dolphin (*.dtm)" @@ -3902,7 +3919,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3916,13 +3933,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3931,7 +3948,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3952,7 +3969,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3974,7 +3991,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3986,6 +4003,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4025,19 +4052,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dump Audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Dump Destinație EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dump Cadre" @@ -4045,7 +4072,7 @@ msgstr "Dump Cadre" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4053,7 +4080,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4078,44 +4105,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Olandeză" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "I&sire" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4127,7 +4154,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4135,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Actualizări Anterioare Memorie" @@ -4154,7 +4181,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4174,7 +4210,7 @@ msgstr "Efect" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4196,11 +4232,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Firul Emu rulează deja" @@ -4226,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4248,34 +4284,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Activare Trucuri" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4283,15 +4309,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activare Nucleu Dublu" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Activare Nucleu Dublu (accelerare)" @@ -4303,7 +4333,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4311,15 +4341,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4337,41 +4367,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Activare MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Activare Scanare Progresivă" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Activare Economizor Ecran" @@ -4379,19 +4401,23 @@ msgstr "Activare Economizor Ecran" msgid "Enable Speaker Data" msgstr "Activare Date Vorbitor" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Activare Wireframe" @@ -4399,34 +4425,13 @@ msgstr "Activare Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4434,34 +4439,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4492,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4500,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4517,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4545,7 +4557,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4553,7 +4565,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4561,7 +4573,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4580,13 +4592,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Engleză" @@ -4603,7 +4619,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4627,33 +4643,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4666,52 +4682,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Eroare" @@ -4728,7 +4744,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4744,7 +4760,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4835,12 +4851,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4884,11 +4900,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportă Toate Salvările Wii" @@ -4903,7 +4919,7 @@ msgstr "" msgid "Export Recording" msgstr "Export Înregistrare" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Export Înregistrare..." @@ -4931,14 +4947,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extensie" @@ -4951,7 +4967,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4959,35 +4975,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extrage Fișier..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4996,8 +5012,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Jucător FIFO" @@ -5011,11 +5027,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5035,7 +5051,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5056,15 +5072,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5110,15 +5126,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5137,25 +5153,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5175,18 +5191,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5198,21 +5214,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5226,17 +5242,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5244,7 +5260,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5274,15 +5290,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5290,11 +5306,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5341,23 +5357,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5371,7 +5387,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5402,31 +5418,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5477,19 +5493,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5502,7 +5518,7 @@ msgstr "Rapid" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5513,7 +5529,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5527,7 +5543,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5535,24 +5551,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Info Fişier " #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5637,7 +5653,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5646,12 +5661,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5671,7 +5686,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Forțare 16:9" @@ -5679,7 +5694,7 @@ msgstr "Forțare 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Forțare 4:3" @@ -5711,11 +5726,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5737,6 +5752,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5752,7 +5773,7 @@ msgstr "Înainte" msgid "Forward port (UPnP)" msgstr "Redirecționare port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5762,7 +5783,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5783,11 +5804,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Interval Cadru" @@ -5795,7 +5816,7 @@ msgstr "Interval Cadru" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5815,7 +5836,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5846,7 +5867,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Franceză" @@ -5865,8 +5886,8 @@ msgid "From" msgstr "De la" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5874,10 +5895,14 @@ msgstr "" msgid "FullScr" msgstr "EcrComplet" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5918,11 +5943,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5964,7 +5989,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5974,25 +5999,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6004,7 +6029,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6022,22 +6047,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6066,7 +6091,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6075,25 +6100,25 @@ msgstr "" msgid "Game ID:" msgstr "ID Joc:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6106,7 +6131,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6126,11 +6151,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6138,11 +6163,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6159,7 +6184,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6187,7 +6212,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Coduri Gecko" @@ -6197,35 +6222,35 @@ msgstr "Coduri 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "General" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Germană" @@ -6252,7 +6277,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6261,7 +6286,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafică" @@ -6301,7 +6326,7 @@ msgstr "Verde Stânga" msgid "Green Right" msgstr "Verde Dreapta" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6338,7 +6363,7 @@ msgstr "" msgid "Hacks" msgstr "Soluții" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6370,7 +6395,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6379,11 +6404,11 @@ msgstr "" msgid "Hide" msgstr "Ascunde" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6395,16 +6420,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6427,7 +6459,7 @@ msgstr "Gazdă" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6435,7 +6467,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6443,11 +6475,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6459,7 +6491,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6469,11 +6501,11 @@ msgstr "" msgid "Hotkeys" msgstr "Taste rapide" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6526,12 +6558,12 @@ msgstr "" msgid "IPL Settings" msgstr "Configurări IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Sensibilitate IR:" @@ -6557,14 +6589,14 @@ msgstr "" msgid "Icon" msgstr "Pictogramă" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6581,7 +6613,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6595,14 +6627,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6614,7 +6646,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6646,7 +6678,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6655,7 +6687,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6670,21 +6702,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6762,7 +6803,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6771,7 +6812,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6791,12 +6832,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informații" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6805,11 +6846,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Intrare" @@ -6823,23 +6864,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Introdu Card SD" @@ -6852,11 +6889,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6864,13 +6901,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6879,7 +6916,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6888,7 +6925,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6905,19 +6942,19 @@ msgstr "" msgid "Interface" msgstr "Interfață" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6930,19 +6967,19 @@ msgstr "Eroare internă LZO - compresia a eșuat" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6957,7 +6994,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "Rezoluția Internă:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6965,7 +7002,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6981,7 +7018,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6990,11 +7027,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7015,7 +7052,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7031,19 +7068,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Fișier de înregistrare invalid" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Parametrii de căutare invalizi (nici un obiect selectat)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Expresie de căutare invalidă (nu se poate converti în număr)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" "Expresie de căutare invalidă (numai lungimile de siruri de caractere sunt " @@ -7053,13 +7090,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italiană" @@ -7072,11 +7109,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7084,47 +7121,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7136,31 +7173,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japoneză" @@ -7177,12 +7214,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7216,16 +7253,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Coreeană" @@ -7246,7 +7283,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7254,7 +7291,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7268,23 +7309,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7292,7 +7333,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7300,7 +7341,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7311,7 +7352,7 @@ msgstr "Stânga" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Stick Stânga" @@ -7382,11 +7423,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7395,30 +7436,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Încarcă" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Încarcă Texturi Personalizate" @@ -7426,11 +7467,11 @@ msgstr "Încarcă Texturi Personalizate" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7536,23 +7577,23 @@ msgstr "Încarcă Status din Slotul 8" msgid "Load State Slot 9" msgstr "Încarcă Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7560,54 +7601,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Jurnal" @@ -7616,19 +7665,19 @@ msgstr "Jurnal" msgid "Log Configuration" msgstr "Configurare Jurnal" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7640,31 +7689,31 @@ msgstr "Tipuri jurnal" msgid "Logger Outputs" msgstr "Jurnale Generate" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7676,7 +7725,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7724,7 +7773,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7741,16 +7790,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7762,11 +7811,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7775,7 +7824,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7796,7 +7845,7 @@ msgstr "" msgid "Memory Card" msgstr "Card de memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7824,7 +7873,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7838,7 +7887,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7847,15 +7896,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Configurări Diverse" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7867,7 +7916,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7887,7 +7936,7 @@ msgstr "" msgid "Modifier" msgstr "Modificator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7903,8 +7952,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7912,7 +7961,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7924,11 +7973,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7937,23 +7986,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7964,13 +8000,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7983,10 +8019,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7995,8 +8031,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8005,7 +8041,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8022,8 +8058,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8066,7 +8102,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8082,27 +8118,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8110,16 +8146,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8144,7 +8180,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8161,7 +8197,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8207,7 +8243,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8215,12 +8251,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Nu există o descriere disponibilă" @@ -8232,7 +8268,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8240,7 +8276,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8253,11 +8289,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8280,7 +8316,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8297,10 +8333,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Nimic" @@ -8312,7 +8348,7 @@ msgstr "" msgid "Not Set" msgstr "Nestabilit" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8332,7 +8368,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8376,26 +8412,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8447,7 +8483,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Interval Obiect" @@ -8468,18 +8504,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8494,7 +8530,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Documentație Online" @@ -8502,13 +8538,13 @@ msgstr "&Documentație Online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8525,7 +8561,7 @@ msgstr "Deschide" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8534,7 +8570,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8600,34 +8636,34 @@ msgstr "Portocaliu" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8642,11 +8678,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8662,16 +8698,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8684,11 +8720,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8700,7 +8736,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8734,7 +8770,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8772,15 +8808,15 @@ msgstr "Căi" msgid "Pause" msgstr "Pauză" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8796,6 +8832,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8815,7 +8857,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminare Per-Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8823,15 +8865,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8849,11 +8891,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8866,7 +8908,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8874,7 +8916,7 @@ msgstr "" msgid "Play" msgstr "Rulare" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8886,40 +8928,40 @@ msgstr "Rulează Înregistrarea" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Opțiuni de Rulare" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Playere" @@ -8936,7 +8978,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8952,7 +8994,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8969,7 +9011,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8985,24 +9027,32 @@ msgstr "Efect Post-Procesare:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9025,7 +9075,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9040,7 +9090,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9051,7 +9101,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9085,7 +9135,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9094,23 +9144,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9130,18 +9186,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Întrebare" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Renunță" @@ -9158,19 +9214,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9191,7 +9247,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9199,16 +9255,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9247,8 +9304,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9257,23 +9314,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Înregistrare" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Opțiuni Înregistrare" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9306,7 +9363,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9337,7 +9394,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9358,7 +9415,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9366,7 +9427,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Elimină" @@ -9394,20 +9455,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Redare în Fereastra Principală" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9421,10 +9482,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9434,7 +9501,7 @@ msgstr "Resetare" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9466,7 +9533,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9478,7 +9545,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9486,11 +9553,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9499,7 +9566,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9511,7 +9578,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9522,7 +9589,7 @@ msgstr "Dreapta" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Dreapta Stick" @@ -9558,11 +9625,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9580,27 +9647,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9613,7 +9684,7 @@ msgstr "" msgid "Rumble" msgstr "Vibrație" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9621,15 +9692,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9637,23 +9708,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9661,7 +9732,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9696,11 +9767,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Sal&vează Status" @@ -9710,9 +9781,9 @@ msgid "Safe" msgstr "Sigur" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9722,25 +9793,25 @@ msgstr "Salvare" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9754,11 +9825,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9770,7 +9841,7 @@ msgstr "Salvează cel mai Vechi Status" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9820,23 +9891,23 @@ msgstr "Salvează Status din Slotul 8" msgid "Save State Slot 9" msgstr "Salvează Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9844,7 +9915,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9856,11 +9927,11 @@ msgstr "" msgid "Save as..." msgstr "Salvează ca..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9871,11 +9942,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9883,11 +9954,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9899,7 +9970,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9916,8 +9987,8 @@ msgid "ScrShot" msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Căutare" @@ -9926,7 +9997,7 @@ msgstr "Căutare" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9944,7 +10015,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9952,7 +10023,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9986,7 +10057,7 @@ msgstr "Selectează" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9997,23 +10068,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10041,7 +10112,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10049,7 +10120,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10110,13 +10181,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10124,7 +10195,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10136,7 +10207,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10144,11 +10215,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10156,12 +10227,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Selectează fișierul salvat" @@ -10184,16 +10255,16 @@ msgstr "Profilul controlerului selectat, nu există" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10209,7 +10280,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10239,7 +10310,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10261,7 +10332,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10271,11 +10342,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Trimite" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Poziția barei de senzor:" @@ -10303,6 +10374,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10320,52 +10395,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10373,7 +10463,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10395,32 +10485,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Afișare &Jurnal" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Afișare &Bară de Instrumente" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10429,7 +10519,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10438,31 +10528,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Afișare FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Afișare Franța" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Afișare GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10470,23 +10560,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Afișare Ecran Conectat" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Afișare Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Afișare Coreea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10494,27 +10584,27 @@ msgstr "" msgid "Show Language:" msgstr "Afișare Limbă:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Afișare Jurnal &Configurare" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Afișare PAL" @@ -10523,27 +10613,27 @@ msgstr "Afișare PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Afișare Platforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Afișare Regiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10551,72 +10641,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Afișare Statistici" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Afișare Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Afișare SUA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Afișare Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10624,71 +10714,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10710,7 +10833,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10729,12 +10852,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Chineză simplificată" @@ -10751,7 +10874,7 @@ msgstr "" msgid "Size" msgstr "Dimensiune" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10761,7 +10884,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10805,6 +10928,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10875,7 +11001,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10889,7 +11015,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spaniolă" @@ -10897,19 +11023,19 @@ msgstr "Spaniolă" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Volum Difuzor:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10934,11 +11060,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10946,25 +11072,25 @@ msgstr "" msgid "Standard Controller" msgstr "Controler Standard" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10972,7 +11098,7 @@ msgstr "" msgid "Start Recording" msgstr "Pornește Înregistrarea" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10984,14 +11110,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11023,19 +11149,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11044,7 +11170,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11073,16 +11199,16 @@ msgid "Stick" msgstr "Joystick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11114,11 +11240,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Potrivește la Fereastră" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11132,7 +11258,11 @@ msgstr "" msgid "Strum" msgstr "Zgârietură" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11143,18 +11273,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11164,7 +11294,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11177,24 +11307,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11217,16 +11347,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11270,17 +11400,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11288,7 +11418,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11306,7 +11436,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11325,24 +11455,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Limbă Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Intrare 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11352,7 +11482,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11360,7 +11490,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Realizează CapturăEcran" @@ -11368,7 +11498,7 @@ msgstr "Realizează CapturăEcran" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11384,9 +11514,9 @@ msgstr "" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11399,7 +11529,7 @@ msgstr "Cache Textură" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11411,7 +11541,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Suprapunere Format Textură" @@ -11448,13 +11578,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11469,7 +11599,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11516,7 +11646,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11526,7 +11656,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11605,7 +11735,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11645,7 +11775,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11704,12 +11834,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11729,7 +11859,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11763,7 +11893,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11821,7 +11951,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11843,6 +11973,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11854,8 +11988,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11903,11 +12037,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11925,7 +12059,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12024,7 +12158,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12044,7 +12178,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12084,7 +12218,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12097,7 +12231,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12105,11 +12239,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12132,14 +12266,14 @@ msgstr "Înclinare:" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titlu" @@ -12148,12 +12282,12 @@ msgid "To" msgstr "Către" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12178,7 +12312,7 @@ msgid "Toggle Aspect Ratio" msgstr "Comută Raportul de Aspect" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12234,7 +12368,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12242,7 +12376,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Sus" @@ -12250,8 +12384,8 @@ msgstr "Sus" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12293,7 +12427,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Chineză tradițională" @@ -12313,8 +12447,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12341,7 +12475,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Declanșatori" @@ -12351,7 +12485,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12365,7 +12499,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12377,7 +12511,7 @@ msgstr "SUA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12395,14 +12529,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12410,7 +12544,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12419,7 +12553,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12482,11 +12616,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Anulare Status Încărcare" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Anulare Status Salvare" @@ -12504,28 +12638,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Necunoscut" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12596,11 +12730,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12612,20 +12746,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12652,7 +12774,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12666,8 +12788,8 @@ msgstr "" msgid "Up" msgstr "Sus" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Actualizare" @@ -12675,11 +12797,11 @@ msgstr "Actualizare" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12722,7 +12844,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12730,15 +12852,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12746,15 +12868,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Utilizează Asistenți de Panică" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12788,7 +12916,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12803,10 +12931,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12815,14 +12950,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13085,8 +13220,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Atenție" @@ -13096,7 +13231,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13108,28 +13243,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13174,7 +13309,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13182,7 +13317,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13190,7 +13325,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13222,25 +13357,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13248,19 +13383,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13268,7 +13403,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13276,13 +13411,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13291,11 +13420,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13309,10 +13438,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13345,39 +13475,39 @@ msgstr "" msgid "Write to Window" msgstr "Scrie în Fereastră" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13386,9 +13516,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13416,14 +13546,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13500,7 +13630,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Trebuie să repornești Dolphin pentru ca modificările să aibă efect." @@ -13520,16 +13650,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13538,7 +13668,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "Codul Zero 3 nu este acceptat" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13587,7 +13717,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13595,7 +13725,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13603,7 +13733,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13651,16 +13781,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13678,7 +13798,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13743,7 +13863,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/ru.po b/Languages/po/ru.po index 393a63f128..629db40418 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Илья Гредасов , 2021\n" "Language-Team: Russian (http://app.transifex.com/delroth/dolphin-emu/" @@ -105,7 +105,7 @@ msgstr "" "%1\n" "хочет присоединиться к вашей группе." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -139,7 +139,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Ревизия %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (из коробки)" @@ -159,7 +159,7 @@ msgstr "%1 (медленно)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -173,18 +173,18 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "Настройка графики %1" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" -msgstr "%1 MB (MEM1)" +msgstr "%1 МБ (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" -msgstr "%1 MB (MEM2)" +msgstr "%1 МБ (MEM2)" #. i18n: A positive number of version control commits made compared to some named branch #: Source/Core/DolphinQt/AboutDialog.cpp:27 msgid "%1 commit(s) ahead of %2" -msgstr "" +msgstr "%1 фикс. перед %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -194,7 +194,7 @@ msgstr "%1 не поддерживает данный функционал на msgid "%1 doesn't support this feature." msgstr "%1 не поддерживает данный функционал." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -204,49 +204,41 @@ msgstr "" "%2 объект(ов)\n" "Текущий кадр: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 присоединился" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 вышел" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 разблокировал достижений: %2 из %3 (%4 в режиме Хардкор) в количестве " -"очков: %5 из %6 (%7 в режиме хардкор)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 разблокировал достижений: %2 из %3 в количестве очков: %4 из %5" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" -msgstr "%1 — не корректный образ игры" +msgstr "%1 — некорректный образ игры" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 теперь играет в гольф" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 играет в %2" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 msgid "%1 memory ranges" -msgstr "%1 байт памяти" +msgstr "Диапазонов памяти: %1" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "%1 мс" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "Очков: %1" @@ -258,30 +250,30 @@ msgstr "Найдено сессий: %1" msgid "%1 sessions found" msgstr "Найдено сессий: %1" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" -msgstr "%1% (%2 MHz)" +msgstr "%1% (%2 МГц)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (обычная скорость)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "Значение %1 изменено" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "Достигнуто значение %1" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "Используется значение %1" @@ -293,6 +285,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -316,7 +312,7 @@ msgstr "Родное %1x (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "Родное %1x (%2x%3) для %4" +msgstr "Собственное %1x (%2x%3) для %4" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 #, c-format @@ -362,11 +358,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Об эмуляторе" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Добавить точку останова в памяти" @@ -375,7 +371,7 @@ msgstr "&Добавить точку останова в памяти" msgid "&Add New Code..." msgstr "&Добавить код..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Добавить функцию" @@ -383,15 +379,15 @@ msgstr "&Добавить функцию" msgid "&Add..." msgstr "&Добавить..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Ассемблер" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "Настройки &звука" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Автообновление:" @@ -399,11 +395,15 @@ msgstr "&Автообновление:" msgid "&Borderless Window" msgstr "&Окно без рамок" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Точки останова" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Баг-трекер" @@ -411,15 +411,15 @@ msgstr "&Баг-трекер" msgid "&Cancel" msgstr "&Отмена" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Проверить обновления..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Очистить символы" @@ -427,7 +427,7 @@ msgstr "&Очистить символы" msgid "&Clone..." msgstr "&Клонировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Код" @@ -435,16 +435,15 @@ msgstr "&Код" msgid "&Connected" msgstr "&Подключен" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "Настройки &управления" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" -msgstr "" +msgstr "&Скопировать адрес" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Скопировать адрес" @@ -452,20 +451,20 @@ msgstr "&Скопировать адрес" msgid "&Create..." msgstr "&Создать..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Удалить" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Удалить из наблюдения" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Удалить из наблюдений" @@ -479,11 +478,11 @@ msgstr "&Изменить код..." msgid "&Edit..." msgstr "&Изменить..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Извлечь диск" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Эмуляция" @@ -503,41 +502,41 @@ msgstr "&Экспорт состояния…" msgid "&Export as .gci..." msgstr "&Экспорт в .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Файл" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Шрифт..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "Перемотка &кадров" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "Настройки &свободного обзора" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Создать символы из" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Репозиторий на &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "Настройки &графики" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Помощь" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "Горячие &клавиши" @@ -557,11 +556,11 @@ msgstr "&Импорт состояния…" msgid "&Import..." msgstr "&Импортировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Вставить blr" @@ -569,23 +568,23 @@ msgstr "&Вставить blr" msgid "&Interframe Blending" msgstr "&Межкадровый блендинг" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Язык:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Загрузить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "Быстрая &загрузка" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Загрузить карту символов" @@ -595,19 +594,23 @@ msgstr "&Загрузить файл по текущему адресу" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Зафиксировать наблюдения" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Зафиксировать виджеты" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Память" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Запись" @@ -615,7 +618,7 @@ msgstr "&Запись" msgid "&Mute" msgstr "&Выключить звук" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Сеть" @@ -624,23 +627,23 @@ msgid "&No" msgstr "&Нет" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Открыть..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Опции" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Патчить HLE-функции" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Пауза" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Запустить" @@ -648,7 +651,7 @@ msgstr "&Запустить" msgid "&Properties" msgstr "&Свойства" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "Режим \"Только для &чтения\"" @@ -656,7 +659,7 @@ msgstr "Режим \"Только для &чтения\"" msgid "&Refresh List" msgstr "&Обновить список" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Регистры" @@ -669,24 +672,24 @@ msgstr "&Удалить" msgid "&Remove Code" msgstr "&Удалить код" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Переименовать символ" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Сбросить" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Менеджер наборов ресурсов" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Сохранить наблюдение ветви" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Сохранить карту символов" @@ -694,31 +697,31 @@ msgstr "&Сохранить карту символов" msgid "&Scan e-Reader Card(s)..." msgstr "&Сканировать карту(ы) электронного ридера…" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Портал Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Ограничение скорости:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Остановить" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Тема:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Потоки" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "&Инструмент" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Инструменты" @@ -728,21 +731,21 @@ msgstr "&Выгрузить образ игры" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "&Разблокировать наблюдения" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Наблюдение" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Сайт" @@ -754,23 +757,23 @@ msgstr "&Вики" msgid "&Yes" msgstr "&Да" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' не найден, имена символов не созданы" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' не найден, ищем на замену распространенные функции" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Тёмная)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Светлая)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Системная)" @@ -806,12 +809,12 @@ msgstr "- Вычесть" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Неизвестно--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -872,7 +875,7 @@ msgstr "16-разрядное целое число со знаком" msgid "16-bit Unsigned Integer" msgstr "16-разрядное целое число без знака" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -930,7 +933,7 @@ msgstr "32-разрядное целое число без знака" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -956,7 +959,7 @@ msgstr "16 ГиБ (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Мбит (59 блоков)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1049,22 +1052,22 @@ msgstr "< Меньше чем" msgid "" msgstr "<Ничего>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "<Системный язык>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." -msgstr "Отключено в режиме Хардкор." +msgstr "Отключено в режиме «Хардкор»." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Если вы не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1072,7 +1075,7 @@ msgstr "" "Время ожидания автоперемещения истекло. Текущая " "инструкция не применима." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1102,8 +1105,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Больше чем" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Сессия сетевой игры уже создана!" @@ -1123,7 +1126,7 @@ msgstr "" "\n" "После установки этого WAD вернуть прежнюю версию не получится. Продолжить?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Диск уже должен быть вставлен." @@ -1139,7 +1142,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Чтобы загрузить быстрое сохранение, нужно указать игру." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1159,9 +1162,9 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Синхронизация возможна только при запущенной игре для Wii." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" -msgstr "" +msgstr "А&втосохранение" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1196,7 +1199,7 @@ msgstr "" "Игра по сети с Wii Remote экспериментальная и может не работать.\n" "Используйте на свой страх и риск.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-код" @@ -1239,18 +1242,10 @@ msgid "Achievement Settings" msgstr "Параметры достижений" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Достижения" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Достижения были отключены.
Чтобы снова включить их, закройте все " -"запущенные игры." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Действие" @@ -1338,7 +1333,7 @@ msgstr "Action Replay: нормальный код {0}: неверный под msgid "Activate NetPlay Chat" msgstr "Активировать чат сетевой игры" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Активна" @@ -1346,15 +1341,15 @@ msgstr "Активна" msgid "Active Infinity Figures:" msgstr "Активные фигурки Infinity:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Активная очередь потоков" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Активные потоки" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Адаптер" @@ -1362,7 +1357,7 @@ msgstr "Адаптер" msgid "Adapter Detected" msgstr "Адаптер обнаружен" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Адаптер:" @@ -1372,7 +1367,7 @@ msgstr "Адаптер:" msgid "Add" msgstr "Добавить" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Добавить &точку останова" @@ -1397,43 +1392,43 @@ msgstr "Добавить точку останова" msgid "Add a Memory Breakpoint" msgstr "Добавить точку останова в памяти" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Добавить &точку останова в памяти" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Добавить в &наблюдение" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Добавить в наблюдение" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Добавить..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Адрес" @@ -1469,12 +1464,12 @@ msgstr "" "изменит внешний вид текстур игры и может вызвать проблемы в небольшом " "количестве игр.

Эта опция несовместима с ручной выборкой текстур." "

Если вы не уверены, выберите «По умолчанию»." #. i18n: Refers to plastic shell of game controller (stick gate) that limits stick movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:107 msgid "Adjusts target radius of simulated stick gate." -msgstr "Настраивает целевой радиус моделируемого кольца джойстика." +msgstr "Настраивает целевой радиус моделируемого джойстика." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:246 msgid "" @@ -1561,6 +1556,29 @@ msgid "" "corrected.
Best for downscaling by more than 2x." "

If unsure, select 'Default'." msgstr "" +"Влияет на масштабирование вывода игры в соответствии с разрешением окна." +"
Производительность в основном зависит от количества образцов, которые " +"использует каждый метод.
По сравнению с SSAA, ресамплинг полезен в том " +"случае, если выходное
разрешение окна не умножается на собственное " +"разрешение эмуляции.

По умолчанию — [самый " +"быстрый]
Внутренний билинейный сэмплер ГП без гамма-коррекции.
Эта " +"настройка может быть проигнорирована, если гамма-коррекция включена " +"принудительно.

Билинейный метод — [4 образца]
Линейная " +"интерполяция между пикселями с гамма-коррекцией.

Бикубический " +"метод — [16 образцов]
Кубическая интерполяция между пикселями с гамма-" +"коррекцией.
Хорошо подходит при изменении масштаба между близкими " +"разрешениями, например 1080p и 1440p.
Бывает в различных вариантах:" +"
B-сплайн: размытый, но исключает любые артефакты боковых " +"лепестков
Mitchell-Netravali: хороший промежуточный вариант между " +"размытостью и боковыми лепестками
Catmull-Rom: более чёткий, но " +"может вызывать артефакты боковых лепестков

Чёткий билинейный — " +"[1—4 образца]
Похож на метод «Ближайшего соседа», сохраняет чёткий вид, " +"но также делает некоторое смешивание, чтобы избежать мерцания.
Лучше " +"всего работает в 2D-играх с низким разрешением.

Выборка по " +"площади — [до 324 образцов]
Взвешивает пиксели по проценту площади, " +"которую они занимают. Гамма-коррекция.
Лучше всего подходит для " +"уменьшения масштаба более чем в 2 раза.

Если вы не " +"уверены, выберите значение «По умолчанию»." #: Source/Core/UICommon/NetPlayIndex.cpp:251 msgid "Africa" @@ -1586,7 +1604,7 @@ msgid "All Assembly files" msgstr "Все файлы сборки" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Все двойной точности с плавающей точкой" @@ -1595,7 +1613,7 @@ msgstr "Все двойной точности с плавающей точко #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1603,34 +1621,34 @@ msgid "All Files" msgstr "Все файлы" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Все файлы (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Все с плавающей точкой" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Все файлы GC/Wii" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Все шестнадцатеричные" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Файлы быстрых сохранений (*.sav, *.s##);; Все файлы (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Все целые числа со знаком" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Все целые числа без знака" @@ -1646,7 +1664,7 @@ msgstr "Коды всех игроков синхронизированы." msgid "All players' saves synchronized." msgstr "Сохранения всех игроков синхронизированы." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Разрешить несовпадение настроек региона" @@ -1654,7 +1672,7 @@ msgstr "Разрешить несовпадение настроек регио msgid "Allow Usage Statistics Reporting" msgstr "Разрешить отправку статистики об использовании" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Разрешить запись на SD-карту" @@ -1674,7 +1692,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Другие источники ввода" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Всегда" @@ -1696,7 +1714,7 @@ msgstr "Ожидалась вставка диска, но он не был об msgid "Anaglyph" msgstr "Анаглиф" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Анализ" @@ -1722,15 +1740,15 @@ msgstr "Сглаживание:" msgid "Any Region" msgstr "Любой регион" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Добавить сигнатуру к" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Добавить к &имеющемуся файлу с сигнатурами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Примени&ть файл с сигнатурами..." @@ -1750,7 +1768,7 @@ msgstr "Дата загрузчика:" msgid "Apply" msgstr "Применить" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Применить файл с сигнатурами" @@ -1758,7 +1776,7 @@ msgstr "Применить файл с сигнатурами" msgid "Arbitrary Mipmap Detection" msgstr "Обнаружение произвольных MIP-текстур" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Вы действительно хотите удалить '%1'?" @@ -1770,7 +1788,7 @@ msgstr "Вы действительно хотите удалить этот ф msgid "Are you sure you want to delete this pack?" msgstr "Вы уверены, что хотите удалить этот набор?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Вы уверены, что хотите выйти из сетевой игры?" @@ -1782,16 +1800,16 @@ msgstr "Вы уверены?" msgid "Area Sampling" msgstr "Выборка по площади" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Соотношение сторон" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Внутреннее разрешение с коррекцией соотношения сторон" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Соотношение сторон:" @@ -1799,7 +1817,7 @@ msgstr "Соотношение сторон:" msgid "Assemble" msgstr "Сборка" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Сборка инструкции" @@ -1811,7 +1829,7 @@ msgstr "Ассемблер" msgid "Assembly File" msgstr "Файл сборки" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Назначить порты контроллеров" @@ -1834,11 +1852,11 @@ msgstr "Подключить MotionPlus" msgid "Audio" msgstr "Звук" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Звуковой бэкенд:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Настройки растяжения звука" @@ -1854,7 +1872,7 @@ msgstr "Автор" msgid "Authors" msgstr "Авторы" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Автоматически" @@ -1863,11 +1881,11 @@ msgstr "Автоматически" msgid "Auto (Multiple of 640x528)" msgstr "Автоматически (Кратное 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Настройки автообновления" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1879,7 +1897,7 @@ msgstr "" "\n" "Пожалуйста, выберите конкретное внутреннее разрешение." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Автонастройка размера окна" @@ -1887,15 +1905,15 @@ msgstr "Автонастройка размера окна" msgid "Auto-Hide" msgstr "Автоскрытие" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Обнаруживать RSO автоматически?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Автоматически синхронизировать с папкой" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1935,33 +1953,33 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "Адрес назначения BBA" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "Регистр в ТО " -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Цепочка возврата" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Бэкенд" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Многопоточный бэкенд" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Настройки бэкенда" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Бэкенд:" @@ -2004,7 +2022,7 @@ msgstr "Указано некорректное значение." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Логотип" @@ -2024,15 +2042,15 @@ msgstr "Тремоло" msgid "Base Address" msgstr "Базовый адрес" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Базовый приоритет" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Основные" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Основные настройки" @@ -2048,10 +2066,6 @@ msgstr "Пакетный режим не может использоваться msgid "Battery" msgstr "Батарея" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Бета (раз в месяц)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows и т.д." @@ -2084,21 +2098,25 @@ msgstr "Бинарный SSL (чтение)" msgid "Binary SSL (write)" msgstr "Бинарный SSL (запись)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Битрейт (кбит/с):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" "\n" "Try again with a different character." msgstr "" +"Не удалось создать пустую фигурку в:\n" +"%1\n" +"\n" +"Повторите попытку с другим персонажем." #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Размер блока" @@ -2136,95 +2154,95 @@ msgstr "" "Включён режим проброса Bluetooth, но Dolphin собран без поддержки libusb. " "Невозможно использовать режим проброса." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Пауза после запуска" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Файл бэкапа NAND BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Файл с ключами BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Полноэкранный режим без рамок" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "снизу" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 -msgid "Branch (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 -msgid "Branch Conditional" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 -msgid "Branch Conditional (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 -msgid "Branch Conditional to Count Register" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 -msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Ветвь" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 -msgid "Branch Conditional to Link Register" -msgstr "" +msgid "Branch (LR saved)" +msgstr "Ветвь (регистр связи сохранён)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +msgid "Branch Conditional" +msgstr "Инструкция ветвления" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +msgid "Branch Conditional (LR saved)" +msgstr "Инструкция ветвления (регистр связи сохранён)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 +msgid "Branch Conditional to Count Register" +msgstr "Инструкция ветвления для счётчика-регистра" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 +msgid "Branch Conditional to Count Register (LR saved)" +msgstr "Инструкция ветвления для счётчика-регистра (регистр связи сохранён)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +msgid "Branch Conditional to Link Register" +msgstr "Инструкция ветвления для регистра связи" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Инструкция ветвления для регистра связи (регистр связи сохранён)" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +msgid "Branch Not Overwritten" +msgstr "Ветвь не перезаписана" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 +msgid "Branch Type" +msgstr "Тип ветви" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 -msgid "Branch Not Overwritten" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 -msgid "Branch Type" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Ветвь перезаписана" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Branch Watch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Инструмент Branch Watch" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Справка инструмента Branch Watch (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Справка инструмента Branch Watch (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Справка инструмента Branch Watch (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Справка инструмента Branch Watch (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2240,8 +2258,22 @@ msgid "" "Branch Watch\" button to clear all candidates and return to the blacklist " "phase." msgstr "" +"Branch Watch — это инструмент для поиска кода, который может изолировать " +"ветви, отслеживаемые эмулируемым ЦП, проверяя ветви-кандидаты по простым " +"критериям. Если вы знакомы с Ultimap от Cheat Engine, Branch Watch похож на " +"неё.\n" +"\n" +"Нажмите кнопку «Запустить Branch Watch», чтобы активировать Branch Watch. " +"Branch Watch сохраняется во всех сессиях эмуляции, и снимок вашего прогресса " +"может быть сохранён и загружен из каталога пользователя, чтобы сохраниться " +"после закрытия Dolphin Emulator. Также доступны действия «Сохранить как...» " +"и «Загрузить из...», а автосохранение можно включить, чтобы сохранять снимок " +"на каждом этапе поиска. При нажатии кнопки «Приостановить Branch Watch» " +"Branch Watch прекратит отслеживание дальнейших достижений в ветви, пока ему " +"не будет дано указание возобновить работу. Нажмите кнопку «Очистить Branch " +"Watch», чтобы удалить всех кандидатов и вернуться к фазе чёрного списка." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2250,22 +2282,28 @@ msgid "" "is pressed for the first time, Branch Watch will switch to the reduction " "phase, and the table will populate with all eligible candidates." msgstr "" +"Branch Watch запускается на этапе составления чёрного списка, то есть " +"кандидаты ещё не выбраны, но найденные на данный момент кандидаты могут быть " +"исключены из кандидатур нажатием кнопок «Путь кода не выполнен», «Ветвь " +"перезаписана» и «Ветвь не перезаписана». Как только кнопка «Путь кода " +"выполнен» будет нажата в первый раз, Branch Watch перейдёт к этапу " +"сокращения, и таблица будет заполнена всеми подходящими кандидатами." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" -msgstr "" +msgstr "Ветвь счётчика-регистра" + +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +msgid "Branch to Count Register (LR saved)" +msgstr "Ветвь счётчика-регистра (регистр связи сохранён)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 -msgid "Branch to Count Register (LR saved)" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 msgid "Branch to Link Register" -msgstr "" +msgstr "Ветвь регистра связи" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Ветвь регистра связи (регистр связи сохранён)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2278,19 +2316,24 @@ msgstr "Ветви" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Останов" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Точка останова" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Попадание в точку останова! Шаг с выходом отменён." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Точки останова" @@ -2324,24 +2367,24 @@ msgstr "Ошибка широкополосного адаптера" msgid "Broadband Adapter MAC Address" msgstr "MAC-адрес широкополосного адаптера" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Просмотр &сессий сетевой игры..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Размер буфера:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Размер буфера изменён на %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Буфер:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2388,11 +2431,11 @@ msgstr "Автор: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "С&оздать файл с сигнатурами..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP-регистр " @@ -2412,7 +2455,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Кэширующий интерпретатор (медленнее)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2452,7 +2495,7 @@ msgstr "Калибровка" msgid "Calibration Period" msgstr "Период калибровки" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Вызов списка отображения по адресу %1 с размером %2" @@ -2478,7 +2521,7 @@ msgstr "Камера 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Поле зрения камеры (влияет на точность наведения)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "Может генерировать AR-код только для значений в виртуальной памяти." @@ -2494,18 +2537,18 @@ msgstr "Не удалось изменить злодеев для этого т msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Не удаётся найти Wii Remote по дескриптору {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Отмена" @@ -2514,17 +2557,17 @@ msgstr "Отмена" msgid "Cancel Calibration" msgstr "Отменить калибровку" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" -msgstr "" +msgstr "Кандидатов: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Кандидатов: %1 | Исключено: %2 | Осталось: %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Кандидатов: %1 | Отфильтровано: %2 | Осталось: %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2540,11 +2583,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "Не удалось сравнить с последним значением при первом поиске." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Не удалось найти IPL GC." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Не удалось создать AR-код для этого адреса." @@ -2552,7 +2595,7 @@ msgstr "Не удалось создать AR-код для этого адре msgid "Cannot refresh without results." msgstr "Не удалось обновить без результатов." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "Не удалось установить папку GCI на пустой путь." @@ -2560,7 +2603,7 @@ msgstr "Не удалось установить папку GCI на пусто msgid "Cannot set memory card to an empty path." msgstr "Не удалось установить карту памяти на пустой путь." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Не удалось запустить игру, потому что IPL GC не был найден." @@ -2592,7 +2635,7 @@ msgstr "Центрировать и откалибровать" msgid "Change &Disc" msgstr "Сменить &диск" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Сменить &диск..." @@ -2600,22 +2643,28 @@ msgstr "Сменить &диск..." msgid "Change Disc" msgstr "Сменить диск" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Автоматически сменять диски" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Сменить диск на {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." msgstr "" -"Изменяет цвет счетчика FPS в зависимости от скорости эмуляции скорости." -"

Если вы не уверены, оставьте этот флажок галочку.
Если вы не уверены, не устанавливайте этот флажок." +"" #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:51 msgid "" @@ -2639,7 +2688,7 @@ msgstr "" "вращать, а при помощи масштабирования можно вернуться к исходной точке " "камеры." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Изменения в читах вступят в силу после перезапуска игры." @@ -2647,11 +2696,11 @@ msgstr "Изменения в читах вступят в силу после msgid "Channel Partition (%1)" msgstr "Раздел с каналом (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Введён недопустимый символ." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Чат" @@ -2659,7 +2708,7 @@ msgstr "Чат" msgid "Cheat Code Editor" msgstr "Редактор чит-кодов" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Поиск чит-кодов" @@ -2667,7 +2716,7 @@ msgstr "Поиск чит-кодов" msgid "Cheats Manager" msgstr "Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Проверить NAND..." @@ -2687,7 +2736,7 @@ msgstr "" "Проверьте, достаточно ли у вас прав для удаления этого файла, и используется " "ли он приложением." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Контр. сумма" @@ -2699,7 +2748,7 @@ msgstr "Китай" msgid "Choose" msgstr "Выбрать" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Выберите открываемый файл" @@ -2707,15 +2756,15 @@ msgstr "Выберите открываемый файл" msgid "Choose a file to open or create" msgstr "Выберите файл, который следует открыть или создать" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Выберите основной входной файл" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Выберите вторичный входной файл" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Выберите базовую папку GCI" @@ -2728,7 +2777,7 @@ msgstr "Выберите папку для извлечения файлов" msgid "Clamping of rotation about the yaw axis." msgstr "Ограничение вращения вокруг оси рыскания." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Кнопки Classic" @@ -2739,18 +2788,18 @@ msgstr "Контроллер Classic" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Очистить" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" -msgstr "" +msgstr "Очистить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Очистить кэш" @@ -2771,7 +2820,7 @@ msgstr "Скопировать и &изменить код..." msgid "Close" msgstr "Закрыть" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "&Настройка" @@ -2779,13 +2828,13 @@ msgstr "&Настройка" msgid "Code" msgstr "Код" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" -msgstr "" +msgstr "Путь кода не выполнен" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" -msgstr "" +msgstr "Путь кода выполнен" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2811,11 +2860,11 @@ msgstr "Цветовая коррекция:" msgid "Color Space" msgstr "Цветовое пространство" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" -msgstr "" +msgstr "Видимость &столбца" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Объединить &два файла с сигнатурами..." @@ -2836,7 +2885,7 @@ msgid "" msgstr "" "По сравнению с дисковым изданием игры для Wii, были обнаружены проблемы " "низкой степени серьёзности. Несмотря на это, вполне возможно, что это " -"приемлемый дамп по сравнению с Wii U eShop. Dolphin не удалось подтвердить " +"корректный дамп по сравнению с Wii U eShop. Dolphin не удалось подтвердить " "это." #: Source/Core/DiscIO/VolumeVerifier.cpp:1394 @@ -2846,10 +2895,10 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" "По сравнению с дисковым изданием игры для Wii, это недопустимый дамп. " -"Несмотря на это, вполне возможно, что это приемлемый дамп по сравнению с " +"Несмотря на это, вполне возможно, что это корректный дамп по сравнению с " "выпуском игры для Wii U в магазине eShop. Dolphin не удалось проверить это." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Компилировать шейдеры перед запуском" @@ -2859,7 +2908,7 @@ msgstr "Компиляция шейдеров" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Сжатие" @@ -2872,19 +2921,19 @@ msgstr "Уровень сжатия:" msgid "Compression:" msgstr "Сжатие:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." -msgstr "" +msgstr "Усл." #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Условие" @@ -2900,7 +2949,7 @@ msgstr "Условие" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Справка по использованию условий" @@ -2915,7 +2964,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2953,55 +3007,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Условия:\n" -"Задаёт выражение, которое вычисляется при достижении точки останова. Если " -"выражение равно false или 0, точка останова игнорируется до тех пор, пока не " -"будет достигнута снова. Выражения должны быть разделены запятой. Только " -"последнее выражение будет использоваться для определения дальнейших " -"действий.\n" -"\n" -"Регистры, на которые можно ссылаться:\n" -"GPRs : r0..r31\n" -"FPRs: f0..f31\n" -" LR, CTR, PC\n" -"\n" -"Функции:\n" -"Установить регистр: r1 = 8\n" -"Заменяет: s8(0xff). Доступно: s8, u8, s16, u16, s32, u32\n" -"Стек вызовов: callstack(0x80123456), callstack(\"anim\")\n" -"Сравнение строк: streq(r3, \"abc\"). Оба параметра могут быть адресами или " -"строковыми константами.\n" -"Чтение памяти: read_u32(0x80000000). Доступны: u8, s8, u16, s16, u32, s32, " -"f32, f64\n" -"Запись в память: write_u32(r3, 0x80000000). Доступно: u8, u16, u32, f32, " -"f64\n" -"*текущая запись всегда будет срабатывать\n" -"\n" -"Операции:\n" -"Унарные: -u, !u, ~u\n" -"Математические: * / + -, мощность: **, остаток: %, сдвиг: <<, >>\n" -"Сравнение: <, <=, >, >=, ==, !=, &&, ||\n" -"Побитовые: &, |, ^\n" -"\n" -"Примеры:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Запись и прерывание: r4 = 8, 1\n" -"Запись и продолжение: f3 = f1 + f2, 0\n" -"Условие всегда должно быть последним\n" -"\n" -"Строки должны использоваться только в callstack() или streq() и только в " -"\"кавычках\". Не присваивайте строки переменным.\n" -"Все переменные будут выведены в журнал интерфейса памяти при достижении " -"точки останова или при результате NaN. Для проверки на наличие ошибок " -"присвойте переменную уравнению, чтобы чтобы её можно было вывести.\n" -"\n" -"Примечание: для расчётов все значения преобразуются в числа двойной точности " -"с плавающей точкой. Возможно, они могут выйти за пределы диапазона или стать " -"NaN. Будет сделано предупреждение, если возвращается NaN, и переменная, " -"ставшая NaN, будет занесена в журнал." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3018,7 +3023,7 @@ msgstr "Настройка" msgid "Configure Controller" msgstr "Настроить контроллер" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Настройка Dolphin" @@ -3031,27 +3036,27 @@ msgstr "Настройка ввода" msgid "Configure Output" msgstr "Настройка вывода" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Подтвердить" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Подтвердите смену бэкенда" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Подтверждать остановку" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Подтверждение" @@ -3061,15 +3066,15 @@ msgstr "Подтверждение" msgid "Connect" msgstr "Подключиться" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Подключить Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Подключить USB-клавиатуру" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Подключить Wii Remote %1" @@ -3089,7 +3094,7 @@ msgstr "Подключить Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Подключить Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Подключить Wii Remote" @@ -3105,7 +3110,7 @@ msgstr "Подключиться к интернету и выполнить о msgid "Connected" msgstr "Подключен" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Подключение" @@ -3130,7 +3135,7 @@ msgstr "Управление режимом гольфа сетевой игры msgid "Control Stick" msgstr "Control Stick" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Профиль контроллера" @@ -3167,9 +3172,9 @@ msgid "" msgstr "" "Регулирует базовую яркость чисто белой поверхности в нитах. Полезно для для " "адаптации к различным условиям освещения при использовании HDR-дисплея." -"

Для того чтобы эта настройка начала действовать, требуется вывод " -"HDR.

Если не уверены, оставьте значение 203.
Для того чтобы эта настройка начала действовать, требуется вывод HDR." +"

Если не уверены, оставьте значение 203." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 msgid "" @@ -3239,8 +3244,8 @@ msgstr "Сведение" msgid "Convergence:" msgstr "Сведение:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Ошибка преобразования" @@ -3248,9 +3253,9 @@ msgstr "Ошибка преобразования" msgid "Convert" msgstr "Конвертация" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Преобразовать файл в папку" @@ -3258,9 +3263,9 @@ msgstr "Преобразовать файл в папку" msgid "Convert File..." msgstr "Конвертировать файл..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Преобразовать папку в файл" @@ -3283,8 +3288,8 @@ msgstr "" "ISO. Вы всё равно хотите продолжить?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Идёт конвертация..." @@ -3329,22 +3334,22 @@ msgstr "" "часто ориентируются на 2.2.

Если вы не уверены, не " "устанавливайте этот флажок." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Копировать" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Скопировать &функцию" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Скопировать &hex-значение" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Скопировать адрес" @@ -3352,19 +3357,19 @@ msgstr "Скопировать адрес" msgid "Copy Failed" msgstr "Копирование не удалось" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Скопировать hex-значение" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Скопировать значение" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Скопировать код &строки" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Скопировать целе&вой адрес" @@ -3382,10 +3387,10 @@ msgstr "Скопировать на B" msgid "Core" msgstr "Ядро" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." -msgstr "" +msgstr "Ядро не инициализировано." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3518,7 +3523,7 @@ msgstr "" "папку, то, возможно, потребуется заново указать расположение вашей карты " "памяти в настройках." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Не удалось обнаружить центральный сервер" @@ -3534,13 +3539,13 @@ msgstr "Не удалось прочесть файл." msgid "Country:" msgstr "Страна:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Создать" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Создать файл Infinity" @@ -3554,7 +3559,7 @@ msgstr "Создать новую карту памяти" msgid "Create Skylander File" msgstr "Создать файл Skylander" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Создать сопоставления для других устройств" @@ -3571,11 +3576,11 @@ msgstr "Создатель:" msgid "Critical" msgstr "Критический" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Обрезка" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3584,18 +3589,18 @@ msgstr "" "Обрезает изображение, изменяя его исходное соотношение сторон (которое редко " "точно соответствует 4:3 или 16:9), к конкретному целевому соотношению сторон " "пользователя (например, 4:3 или 16:9).

Если вы не " -"уверены, оставьте этот параметр не отмеченным." #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:82 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:175 msgid "Crossfade" msgstr "Кроссфейдер" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "Убрать вершины на процессоре" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3606,47 +3611,47 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Текущий регион" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Тек. значение" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Текущий контекст" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Текущей игры" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Текущий поток" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Другое" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" -msgstr "" +msgstr "Другое (растягивание)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Другое адресное пространство" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 -msgid "Custom Aspect Ratio Height" -msgstr "Другая высота в соотношении сторон" - #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 -msgid "Custom Aspect Ratio Width" -msgstr "Другая ширина в соотношении сторон" +msgid "Custom Aspect Ratio Height" +msgstr "Высота другого соотношения сторон" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +msgid "Custom Aspect Ratio Width" +msgstr "Ширина другого соотношения сторон" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Другое соотношение сторон:" @@ -3691,7 +3696,7 @@ msgstr "DJ пульт" msgid "DK Bongos" msgstr "Бонго DK" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "Движок эмуляции DSP" @@ -3699,15 +3704,15 @@ msgstr "Движок эмуляции DSP" msgid "DSP HLE (fast)" msgstr "DSP HLE (быстрый)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (рекомендуется)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "Интерпретатор DSP LLE (очень медленно)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "Рекомпилятор DSP LLE (медленно)" @@ -3737,7 +3742,7 @@ msgstr "Танцевальный коврик" msgid "Dark" msgstr "Тьма" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Данные" @@ -3782,8 +3787,8 @@ msgstr "Мёртвая зона" msgid "Debug" msgstr "Отладка" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Отладка" @@ -3792,7 +3797,7 @@ msgstr "Отладка" msgid "Decimal" msgstr "Десятичный" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Качество декодирования:" @@ -3831,7 +3836,7 @@ msgstr "Уменьшить по Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "По умолчанию" @@ -3839,7 +3844,7 @@ msgstr "По умолчанию" msgid "Default Config (Read Only)" msgstr "Конфигурация по умолчанию (только для чтения)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Устройство по умолчанию" @@ -3851,11 +3856,11 @@ msgstr "Шрифт по умолчанию" msgid "Default ISO:" msgstr "Образ по умолчанию:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Поток по умолчанию" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Отложить инвалидацию кэша EFB" @@ -3863,7 +3868,7 @@ msgstr "Отложить инвалидацию кэша EFB" msgid "Defer EFB Copies to RAM" msgstr "Отложенное копирование EFB в ОЗУ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3878,8 +3883,9 @@ msgstr "" "через ЦП.

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Удалить" @@ -3909,12 +3915,12 @@ msgstr "Процент глубины:" msgid "Depth:" msgstr "Глубина:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Описание" @@ -3928,34 +3934,34 @@ msgstr "Описание:" msgid "Description: %1" msgstr "Описание: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" -msgstr "" +msgstr "Назначение" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Назначение (путь к сокету UNIX или адрес:порт):" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Назначение (адрес:порт):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" -msgstr "" +msgstr "Макс. назначение" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" -msgstr "" +msgstr "Мин. назначение" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" -msgstr "" +msgstr "Символ назначения" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Отсоединён" @@ -3963,7 +3969,7 @@ msgstr "Отсоединён" msgid "Detect" msgstr "Считать" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Обнаружение модулей RSO" @@ -3971,11 +3977,11 @@ msgstr "Обнаружение модулей RSO" msgid "Deterministic dual core:" msgstr "Детерминированная двухядерность:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Разрабатываемая (несколько раз в день)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Устройство" @@ -3993,7 +3999,7 @@ msgstr "Настройки устройства" msgid "Device VID (e.g., 057e)" msgstr "VID устройства (напр., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Устройство:" @@ -4001,7 +4007,7 @@ msgstr "Устройство:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "Не удалось распознать %1 как действительный XML-файл Riivolution." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Затемняет экран после пяти минут бездействия." @@ -4017,11 +4023,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Отк&лючено" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Отключить" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Отключить эмуляцию bounding box" @@ -4030,7 +4031,7 @@ msgstr "Отключить эмуляцию bounding box" msgid "Disable Copy Filter" msgstr "Отключить фильтр копирования" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Отключить копии EFB в VRAM" @@ -4038,11 +4039,11 @@ msgstr "Отключить копии EFB в VRAM" msgid "Disable Emulation Speed Limit" msgstr "Отключить огр. скорости эмуляции" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Отключить быструю память" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Отключить Fastmem Arena" @@ -4050,11 +4051,11 @@ msgstr "Отключить Fastmem Arena" msgid "Disable Fog" msgstr "Отключить туман" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Отключить кэш JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Отключить карту больших точек входа" @@ -4073,7 +4074,7 @@ msgstr "" "игры не будут работать.

Если не уверены – оставьте " "включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Если не уверены – оставьте включенным." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Диск" @@ -4106,6 +4113,10 @@ msgstr "Диск" msgid "Discard" msgstr "Отменить" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Тип отображения" @@ -4141,11 +4152,11 @@ msgstr "Проходимое расстояние из исходной пози msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Вы разрешаете отправку данной информации разработчикам Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Вы хотите добавить \"%1\" в список путей к играм?" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Вы хотите очистить список имён символов?" @@ -4155,7 +4166,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Вы хотите удалить выбранные файлы сохранений (%n шт.)?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Вы хотите остановить текущую эмуляцию?" @@ -4163,12 +4174,12 @@ msgstr "Вы хотите остановить текущую эмуляцию?" msgid "Do you want to try to repair the NAND?" msgstr "Вы хотите попытаться восстановить NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Декодер Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Лог Dolphin FIFO (*.dff)" @@ -4176,9 +4187,9 @@ msgstr "Лог Dolphin FIFO (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Предварительная установка игрового мода Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Файл карты Dolphin (*.map)" @@ -4190,8 +4201,8 @@ msgstr "CSV-файл с сигнатурами Dolphin" msgid "Dolphin Signature File" msgstr "Файл с сигнатурами Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "TAS-ролики (*.dtm)" @@ -4235,7 +4246,7 @@ msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" "Dolphin – бесплатный эмулятор GameCube и Wii с открытым исходным кодом." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Слишком старая версия Dolphin для подключения к промежуточному серверу" @@ -4251,7 +4262,7 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin не может проверить нелицензионные диски." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4259,7 +4270,7 @@ msgstr "" "Dolphin будет использовать его для продуктов, регион которых не удалось " "определить автоматически." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "На данный момент поддержка читов в Dolphin отключена." @@ -4268,7 +4279,7 @@ msgstr "На данный момент поддержка читов в Dolphin msgid "Domain" msgstr "Домен" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Не обновлять" @@ -4289,7 +4300,7 @@ msgstr "Двери заблокированы" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4311,7 +4322,7 @@ msgstr "Скачать коды" msgid "Download Codes from the WiiRD Database" msgstr "Скачать коды из базы данных WiiRD" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "Загружать обложки игр с GameTDB.com для показа в виде сетки" @@ -4323,6 +4334,16 @@ msgstr "Загрузка завершена" msgid "Downloaded %1 codes. (added %2)" msgstr "Скачано %1 кодов. (добавлено %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4362,19 +4383,19 @@ msgstr "Дампить &FakeVMEM" msgid "Dump &MRAM" msgstr "Дампить &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Дампить звук" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Дампить основные текстуры" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Дампить конечный EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Дампить кадры" @@ -4382,7 +4403,7 @@ msgstr "Дампить кадры" msgid "Dump GameCube BBA traffic" msgstr "Создать дамп трафика GameCube BBA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Дампить Mip-текстуры" @@ -4390,7 +4411,7 @@ msgstr "Дампить Mip-текстуры" msgid "Dump Path:" msgstr "Путь к дампам:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Создать дамп конечного XFB" @@ -4415,7 +4436,7 @@ msgstr "Дампить сертификаты" msgid "Dump root CA certificates" msgstr "Создать дамп корневых сертификатов ЦС" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Если не уверены – оставьте " "выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4434,7 +4455,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4443,25 +4464,25 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Длительность нажатия турбо-кнопки (в кадрах):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "Длительность отпускания турбо-кнопки (в кадрах):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Голландский" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Закрыть" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "Копия EFB %1" @@ -4476,7 +4497,7 @@ msgstr "" "{1} -- Если вы недавно обновили Dolphin, то, скорее всего, необходимо " "перезагрузить компьютер, чтобы Windows обнаружил новый драйвер." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4488,7 +4509,7 @@ msgstr "" "Подходит для соревновательных игр, где важны честность и минимальная " "задержка." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Ранние обновления памяти" @@ -4507,7 +4528,16 @@ msgstr "Восточная Азия" msgid "Edit Breakpoint" msgstr "Изменить точку останова" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Изменить…" @@ -4527,7 +4557,7 @@ msgstr "Эффект" msgid "Effective" msgstr "Эффективное" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Эффективный приоритет" @@ -4549,11 +4579,11 @@ msgstr "Элемент" msgid "Embedded Frame Buffer (EFB)" msgstr "Встроенный буфер кадров (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Пусто" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Процесс эмулятора уже запущен" @@ -4581,7 +4611,7 @@ msgstr "" "Эмулирует скорость воспроизведения диска реального оборудования. Отключение " "может привести к нестабильности. По умолчанию True" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Эмулируемые устройства USB" @@ -4606,50 +4636,44 @@ msgstr "Скорость эмуляции" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Включить" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Включить слои проверки API" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Включить значки достижений" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Включить достижения" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Включить растяжение звука" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Включить чит-коды" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" -msgstr "Включить вход контроллера" +msgstr "Включить вход контроллер&а" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:162 msgid "Enable Custom RTC" msgstr "Включить переопределение времени" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Включить интерфейс отладки" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Включить двухядерный режим" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Включить двухядерный режим (ускорение)" @@ -4661,7 +4685,7 @@ msgstr "Переопределять частоту эмулируемого Ц msgid "Enable Emulated Memory Size Override" msgstr "Включить переопределение эмулируемого размера памяти" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Включить достижения «На бис»" @@ -4669,15 +4693,15 @@ msgstr "Включить достижения «На бис»" msgid "Enable FPRF" msgstr "Включить FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Включить графические моды" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" -msgstr "Включить режим Хардкор" +msgstr "Включить режим «Хардкор»" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4694,56 +4718,48 @@ msgid "" "
Be aware that turning Hardcore Mode off while a game is running requires " "the game to be closed before re-enabling." msgstr "" -"Включить режим Хардкор в RetroAchievements.

Режим Хардкор " +"Включить режим «Хардкор» в RetroAchievements.

Режим «Хардкор» " "предназначен для того, чтобы обеспечить опыт, максимально приближённый к " "игре на оригинальном оборудовании. Рейтинги RetroAchievements в первую " -"очередь ориентированы на очки в режиме Хардкор (очки в режиме Софткор " +"очередь ориентированы на очки в режиме «Хардкор» (очки в режиме «Софткор» " "учитываются, но не так сильно) и таблицы лидеров требуют включения режима " -"Хардкор.

Чтобы обеспечить такой опыт, следующие функции будут " +"«Хардкор».

Чтобы обеспечить такой опыт, следующие функции будут " "отключены, так как они дают игрокам на эмуляторе преимущество перед игроками " "на консоли:
- Загрузка состояний
-- Сохранение состояний " -"разрешено
- Скорость эмулятора ниже 100%
-- Продвижение кадра " -"отключено
-- Турбо разрешено
- Читы
- Патчи памяти
-- Патчи " +"разрешено
- Скорость эмулятора ниже 100%
-- Перемотка кадров " +"отключена
-- Турбо разрешено
- Читы
- Патчи памяти
-- Патчи " "файлов разрешены
- ПИ отладки
- Freelook

Не " "может быть включён во время игры.
Закройте текущую " -"игру перед включением.
Имейте в виду, что выключение режима Хардкор во " +"игру перед включением.
Имейте в виду, что выключение режима «Хардкор» во " "время игры требует закрытия игры перед повторным включением." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Включить таблицы лидеров" +msgstr "Включить профилирование блока JIT" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Включить MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "Включить уведомления о прогрессе" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Включить прогрессивную развёртку" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Включить интеграцию с RetroAchievements.org" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Включить Rich Presence" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Включить вибрацию" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Включить скринсейвер" @@ -4751,19 +4767,23 @@ msgstr "Включить скринсейвер" msgid "Enable Speaker Data" msgstr "Включить данные динамика" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Включить неофициальные достижения" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Включить отправку статистики об использовании" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Включить WiiConnect24 с помощью WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Включить каркас моделей" @@ -4771,36 +4791,6 @@ msgstr "Включить каркас моделей" msgid "Enable Write-Back Cache (slow)" msgstr "Включить кэш с обратной записью (медленно)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"Включить соревнование в таблицах лидеров RetroAchievements." -"

Необходимо включить режим Хардкор." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" -"Включить подробности Rich Presence на сайте RetroAchievements.

Эта " -"опция предоставляет подробное описание того, что игрок делает в игре, на " -"сайте. Если эта функция отключена, сайт будет сообщать только о том, в какую " -"игру играют.

Это никак не влияет на Rich Presence в Discord." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4810,7 +4800,7 @@ msgstr "" "может привести к сбоям и другим проблемам в некоторых играх. (ВКЛ = выше " "совместимость, ОТКЛ = разблокировка)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4822,7 +4812,7 @@ msgstr "" "систему с учётной записью RetroAchievements. Dolphin не сохраняет ваш пароль " "локально и использует API-токен для сохранения имени пользователя." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4833,37 +4823,34 @@ msgstr "" "достижении, которое отслеживает накопленное значение, например 60 звёзд из " "120." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"Включить разблокировку достижений в режиме «На бис».

Режим «На бис» " -"повторно активирует достижения, которые игрок уже разблокировал на сайте, " -"так что игрок получит уведомление, если снова выполнит условия " -"разблокировки. Это полезно для пользовательских критериев скоростного " -"прохождения игры или просто для развлечения." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Включить разблокировку достижений.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"Включить возможность разблокировки неофициальных, а также официальных " -"достижений.

Неофициальные достижения могут быть необязательными или " -"незаконченными достижениями, которые не были признаны RetroAchievements " -"официальными и могут быть полезны для тестирования или просто для " -"развлечения." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4913,7 +4900,7 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4926,7 +4913,7 @@ msgstr "" "Vulkan.

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4949,12 +4936,12 @@ msgstr "" "интерфейсом и монитором). Может потребоваться полноэкранный режим." "

Это даёт шейдерам для постобработки больше пространства для " "точности, позволяет работать шейдерам для постобработки «AutoHDR» и " -"позволяет полностью отображать цветовые пространства PAL и NTSC-J.

" -"Обратите внимание, что игры всё равно отображаются в SDR." +"позволяет полностью отображать цветовые пространства PAL и NTSC-J." +"

Обратите внимание, что игры всё равно отображаются в SDR." "

Если вы не уверены, не устанавливайте этот флажок." -"" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "Включает растяжение звука для соответствия скорости эмуляции." @@ -4990,7 +4977,7 @@ msgstr "" "= выше совместимость, ОТКЛ = выше скорость)

Если вы " "не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5003,7 +4990,7 @@ msgstr "" "Ознакомьтесь с условиями предоставления услуг на сайте: https://www." "wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5013,10 +5000,10 @@ msgstr "" "Задействует проверку API-вызовов, совершаемых видео-бэкендом, что может " "помочь при отладке графических проблем. На D3D-бэкенде и Vulkan-бэкенде это " "также задействует отладочные символы для компилируемых шейдеров." -"

Если не уверены – оставьте выключенным.
Если не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5042,13 +5029,17 @@ msgstr "" "\n" "Отмена импорта." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet не был инициализирован" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Английский" @@ -5065,7 +5056,7 @@ msgstr "Введите IP-адрес устройства, на котором msgid "Enter USB device ID" msgstr "Введите ID USB-устройства" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Введите адрес для наблюдения:" @@ -5088,34 +5079,36 @@ msgid "" "Enter the IP address and port of the tapserver instance you want to connect " "to." msgstr "" +"Введите IP-адрес и порт экземпляра tapserver, к которому вы хотите " +"подключиться." -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5128,52 +5121,52 @@ msgstr "Введите адрес модуля RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Ошибка" @@ -5190,7 +5183,7 @@ msgstr "Ошибка открытия адаптера: %1" msgid "Error collecting save data!" msgstr "Ошибка сбора данных сохранения." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5205,7 +5198,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Ошибка при получении списка сессий: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Возникла ошибка при загрузке некоторых пакетов текстур" @@ -5302,12 +5295,12 @@ msgstr "В {0} неиспользуемых блоках раздела {1} на msgid "Euphoria" msgstr "Эйфория" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Европа" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Только убершейдеры" @@ -5351,11 +5344,11 @@ msgstr "Ожидалось начало выражения." msgid "Expected variable name." msgstr "Ожидалось название переменной." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Экспериментальные" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Экспортировать все сохранения Wii" @@ -5370,7 +5363,7 @@ msgstr "Не удалось экспортировать" msgid "Export Recording" msgstr "Экспорт записи" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Экспорт записи..." @@ -5398,14 +5391,14 @@ msgstr "Экспорт в .&gcs..." msgid "Export as .&sav..." msgstr "Экспорт в .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Экспортировано сохранений: %n" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Расширение" @@ -5418,7 +5411,7 @@ msgstr "Данные движения расширения" msgid "Extension Motion Simulation" msgstr "Симуляция движения расширения" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Внешний адрес" @@ -5426,35 +5419,35 @@ msgstr "Внешний адрес" msgid "External Frame Buffer (XFB)" msgstr "Внешний буфер кадров (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Извлечь сертификаты из NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Извлечь весь диск..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Извлечь весь раздел..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Извлечь файл..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Извлечь файлы..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Извлечь системные данные..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Извлечение всех файлов..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Извлечение папки..." @@ -5463,8 +5456,8 @@ msgstr "Извлечение папки..." msgid "FD" msgstr "ФД" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "Проигрыватель FIFO" @@ -5480,11 +5473,11 @@ msgstr "" "Не удалось открыть карту памяти:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "Не удалось добавить сессию в индекс сетевой игры: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Не удалось добавить данные в файл с сигнатурами '%1'" @@ -5498,13 +5491,13 @@ msgstr "Не удалось очистить Skylander." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "Не удалось очистить Skylander из слота %1." #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" msgstr "Не удалось подключиться к Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Не удалось подключиться к серверу: %1" @@ -5525,27 +5518,32 @@ msgstr "Не удалось создать глобальные ресурсы D msgid "Failed to create DXGI factory" msgstr "Не удалось создать фабрику DXGI" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Не удалось создать файл Infinity." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Не удалось создать файл Skylander." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" "\n" "The Skylander may already be on the portal." msgstr "" +"Не удалось создать файл Skylander:\n" +"%1\n" +"\n" +"Возможно, Skylander уже есть на портале." #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -"Не удалось удалить файл сохранения NetPlay GBA{0}. Проверьте права на запись." +"Не удалось удалить файл сохранения NetPlay GBA{0}. Проверьте, есть ли у вас " +"права на запись." #: Source/Core/Core/NetPlayClient.cpp:1082 msgid "Failed to delete NetPlay memory card. Verify your write permissions." @@ -5582,15 +5580,15 @@ msgstr "Не удалось экспортировать %n из %1 сохран msgid "Failed to export the following save files:" msgstr "Не удалось экспортировать следующие файлы сохранений:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Не удалось извлечь сертификаты из NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Не удалось извлечь файл." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Не удалось извлечь системные данные." @@ -5612,14 +5610,14 @@ msgstr "Не удалось найти один или более символ D msgid "Failed to import \"%1\"." msgstr "Не удалось импортировать \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Не удалось импортировать файл сохранения. Пожалуйста, запустите игру, а " "потом попробуйте ещё раз." -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5627,7 +5625,7 @@ msgstr "" "Не удалось импортировать файл сохранения. Похоже, что данный файл повреждён " "или не является корректным сохранением Wii." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5638,7 +5636,7 @@ msgstr "" "ваш NAND (Инструменты -> Управлять NAND -> Проверить NAND...), затем " "импортируйте файл сохранения ещё раз." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Не удалось инициализировать ядро" @@ -5661,11 +5659,11 @@ msgid "Failed to install pack: %1" msgstr "Не удалось установить набор: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Не удалось установить этот продукт в NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5673,8 +5671,8 @@ msgstr "" "Не удалось инициализировать прослушивание порта %1. У вас запущен ещё один " "сервер сетевой игры?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Не удалось загрузить модуль RSO на %1" @@ -5686,21 +5684,23 @@ msgstr "Не удалось загрузить d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Не удалось загрузить dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Не удалось загрузить файл с картой '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Не удалось загрузить файл Skylander." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"Не удалось загрузить файл Skylander:\n" +"%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Не удалось загрузить исполняемый файл в память." @@ -5716,17 +5716,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Не удалось изменить Skylander." -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Не удалось открыть «%1» для записи." -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Не удалось открыть «{0}» для записи." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Не удалось открыть '%1'" @@ -5734,9 +5734,9 @@ msgstr "Не удалось открыть '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "Не удалось открыть Bluetooth-устройство: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Не удалось открыть снимок Branch Watch «%1»" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5768,33 +5768,41 @@ msgstr "" msgid "Failed to open file." msgstr "Не удалось открыть файл." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Не удалось открыть сервер" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Не удалось открыть файл Infinity." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" "\n" "The file may already be in use on the base." msgstr "" +"Не удалось открыть файл Infinity:\n" +"%1\n" +"\n" +"Возможно, файл уже используется в базе." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Не удалось открыть файл Skylander." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" "\n" "The file may already be in use on the portal." msgstr "" +"Не удалось открыть файл Skylander:\n" +"%1\n" +"\n" +"Возможно, файл уже используется на портале." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5838,37 +5846,43 @@ msgstr "Не удалось прочесть входной файл \"{0}\"." msgid "Failed to read selected savefile(s) from memory card." msgstr "Не удалось прочитать выбранные файлы сохранений с карты памяти." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Не удалось прочитать файл Infinity." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Не удалось прочитать файл Skylander." -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"Не удалось прочитать файл Skylander:\n" +"%1\n" +"\n" +"Файл был слишком маленьким." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" "Failed to read the contents of file:\n" "%1" msgstr "" +"Не удалось прочитать содержимое файла:\n" +"%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Не удалось прочесть {0}" @@ -5907,31 +5921,31 @@ msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Не удалось сбросить папку перенаправления NetPlay. Проверьте права на запись." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Не удалось сохранить снимок Branch Watch «%1»" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Не удалось сохранить лог FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "Не удалось сохранить карту кода по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Не удалось сохранить файл сигнатуры '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "Не удалось сохранить карту символов по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Не удалось сохранить файл с сигнатурами '%1'" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5988,19 +6002,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Ошибка" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Честная задержка ввода" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Резервный регион" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Резервный регион:" @@ -6013,7 +6027,7 @@ msgstr "Быстрое" msgid "Fast Depth Calculation" msgstr "Быстрое вычисление глубины" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -6026,7 +6040,7 @@ msgstr "" msgid "Field of View" msgstr "Поле зрения" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Номер фигурки:" @@ -6040,7 +6054,7 @@ msgstr "Информация о файле" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Формат файла" @@ -6048,24 +6062,24 @@ msgstr "Формат файла" msgid "File Format:" msgstr "Формат файла:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Информация о файле" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Имя файла" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Путь к файлу" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Размер файла" @@ -6152,11 +6166,10 @@ msgstr "Не удалось исправить контрольные суммы #. i18n: "Fixed" here means that the alignment is always the same #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204 msgid "Fixed Alignment" -msgstr "Исправленное выравнивание" +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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Флаги" @@ -6165,12 +6178,12 @@ msgstr "Флаги" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Перейти к &ветке" @@ -6196,7 +6209,7 @@ msgstr "" "Инструкции по установке доступны на этой странице." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Принудительно 16:9" @@ -6204,7 +6217,7 @@ msgstr "Принудительно 16:9" msgid "Force 24-Bit Color" msgstr "Принудительная 24-битная палитра" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Принудительно 4:3" @@ -6236,11 +6249,11 @@ msgstr "Принудительно слушать порт:" msgid "Force Nearest" msgstr "Принудительно метод ближайших соседей" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Принудительно отключено, поскольку %1 не поддерживает расширение VS." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "Принудительно включено, поскольку %1 не поддерживает геометрические шейдеры." @@ -6275,6 +6288,12 @@ msgstr "" "

Если не уверены – оставьте включенным." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Формат:" @@ -6290,7 +6309,7 @@ msgstr "Вперед" msgid "Forward port (UPnP)" msgstr "Пробросить порт (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Найдено %1 результатов для \"%2\"" @@ -6300,7 +6319,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "Найдено адресов: %n." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Кадр %1" @@ -6321,11 +6340,11 @@ msgstr "Перемотка кадров: увел. скорость" msgid "Frame Advance Reset Speed" msgstr "Перемотка кадров: сбросить скорость" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Дамп кадров" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Диапазон кадров" @@ -6333,7 +6352,7 @@ msgstr "Диапазон кадров" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Изображения с дампами кадра(ов) '{0}' уже существуют. Перезаписать?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Кадров для записи:" @@ -6353,7 +6372,7 @@ msgstr "Свободных файлов: %1" msgid "Free Look Control Type" msgstr "Тип управления свободным обзором" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Контроллер свободного обзора %1" @@ -6388,7 +6407,7 @@ msgstr "Вкл./выкл. свободный обзор" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Французский" @@ -6407,8 +6426,8 @@ msgid "From" msgstr "от" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "От:" @@ -6416,10 +6435,14 @@ msgstr "От:" msgid "FullScr" msgstr "Во весь экран" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Функция" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Функции" @@ -6434,7 +6457,7 @@ msgstr "GBA (внеш. эмулятор по TCP)" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:115 msgid "GBA Cartridge Path:" -msgstr "Путь к картриджу GBA" +msgstr "Путь к картриджу GBA:" #: Source/Core/Core/HotkeyManager.cpp:358 msgid "GBA Core" @@ -6460,11 +6483,11 @@ msgstr "Громкость GBA" msgid "GBA Window Size" msgstr "Размер окна GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "ROM GBA%1 изменён на «%2»" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "ROM GBA%1 отключён" @@ -6497,7 +6520,7 @@ msgid "" "Further errors will be sent to the Video Backend log and Dolphin will now " "likely crash or hang." msgstr "" -"GFX FIFO: Неизвестный код операции ({0:#04x} @ {1}, preprocess={2}).\n" +"GFX FIFO: неизвестный код операции ({0:#04x} @ {1}, preprocess={2}).\n" "\n" "{3}\n" "\n" @@ -6512,7 +6535,7 @@ msgstr "GL_MAX_TEXTURE_SIZE равен {0} - должен быть не мень msgid "GPU Texture Decoding" msgstr "Декодирование текстур на ГП" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6525,7 +6548,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "ГП: ОШИБКА OGL: Ваша видеокарта поддерживает OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6533,7 +6556,7 @@ msgstr "" "ГП: ОШИБКА OGL: Требуется GL_ARB_map_buffer_range.\n" "ГП: Ваша видеокарта поддерживает OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6541,7 +6564,7 @@ msgstr "" "ГП: ОШИБКА OGL: Требуется GL_ARB_sampler_objects.\n" "ГП: Ваша видеокарта поддерживает OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6549,7 +6572,7 @@ msgstr "" "ГП: ОШИБКА OGL: Требуется GL_ARB_uniform_buffer_object.\n" "ГП: Ваша видеокарта поддерживает OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6565,7 +6588,7 @@ msgstr "" "ГП: ОШИБКА OGL: Требуется OpenGL версии 3.\n" "ГП: Ваша видеокарта поддерживает OpenGL 3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6588,16 +6611,16 @@ msgstr "" msgid "Game" msgstr "Игра" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Картриджи от Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6605,7 +6628,7 @@ msgstr "" "Образы игр Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Все файлы (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance в порту %1" @@ -6634,7 +6657,7 @@ msgid "Game Gamma:" msgstr "Гамма игры:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "ID игры" @@ -6643,28 +6666,28 @@ msgstr "ID игры" msgid "Game ID:" msgstr "ID игры:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Статус игры" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Игра изменена на \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" "Игровой файл имеет другой хэш; щелкните его правой кнопкой мыши, выберите " -"Свойства, переключитесь на вкладку вкладку \"Проверка\" и выберите " -"\"Проверить целостность\", чтобы проверить хэш" +"Свойства, переключитесь на вкладку вкладку «Проверка» и выберите «Проверить " +"целостность», чтобы проверить хэш" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "Игра имеет другой номер диска" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "Игра имеет другую версию" @@ -6679,7 +6702,7 @@ msgstr "" "Игра перезаписана сохранениями других игр. Повреждение данных после {0:#x}, " "{1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "Игровой регион не соответствует" @@ -6699,11 +6722,11 @@ msgstr "Адаптер GameCube для Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "Адаптер GameCube для Wii U на порту %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "Контроллер GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "Контроллер GameCube на порту %1" @@ -6711,11 +6734,11 @@ msgstr "Контроллер GameCube на порту %1" msgid "GameCube Controllers" msgstr "Контроллеры GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "Клавиатура GameCube" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "Клавиатура GameCube на порту %1" @@ -6732,7 +6755,7 @@ msgstr "Карты памяти GameCube" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "Карты памяти GameCube (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "Микрофон GameCube − Слот %1" @@ -6760,7 +6783,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-коды" @@ -6770,35 +6793,35 @@ msgstr "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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Общие" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Общее и настройки" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Сгенерировать код(ы) Action Replay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Сгенерировать новый ID сбора статистики" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." -msgstr "" +msgstr "Сгенерированы AR-коды." -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Созданы имена символов из '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Немецкий" @@ -6825,7 +6848,7 @@ msgstr "Гигант" msgid "Giants" msgstr "Гиганты" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Режим гольфа" @@ -6834,7 +6857,7 @@ msgid "Good dump" msgstr "Хороший дамп" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Графика" @@ -6880,7 +6903,7 @@ msgstr "Зеленая слева" msgid "Green Right" msgstr "Зеленая справа" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "В виде сетки" @@ -6917,7 +6940,7 @@ msgstr "Постобработка HDR" msgid "Hacks" msgstr "Хаки" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Голова" @@ -6947,9 +6970,9 @@ msgstr "8 (шестнадцатер.)" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:137 msgid "Hex Byte String" -msgstr "Шестнадцатеричная строка в байтах " +msgstr "Шестнадцатеричная строка в байтах" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Шестнадцатеричный" @@ -6958,11 +6981,11 @@ msgstr "Шестнадцатеричный" msgid "Hide" msgstr "Спрятать" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" -msgstr "" +msgstr "Скрыть &элементы управления" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Скрыть все" @@ -6974,16 +6997,23 @@ msgstr "Скрыть сессии \"В игре\"" msgid "Hide Incompatible Sessions" msgstr "Скрыть несовместимые сессии" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Скрыть сетевые GBA" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Высокая" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Самое высокое" @@ -7006,7 +7036,7 @@ msgstr "Создать" msgid "Host Code:" msgstr "Код хоста:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Хост управляет вводом" @@ -7014,7 +7044,7 @@ msgstr "Хост управляет вводом" msgid "Host Size" msgstr "Размер хоста" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -7027,11 +7057,11 @@ msgstr "" "Подходит для казуальных игр с 3 и более игроками, возможно, при нестабильных " "соединениях или соединениях с высокой задержкой." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Хост не управляет вводом" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Хост управляет вводом" @@ -7043,7 +7073,7 @@ msgstr "Создать сетевую игру" msgid "Hostname" msgstr "Имя хоста" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Горячие клавиши" @@ -7053,11 +7083,11 @@ msgstr "Горячие клавиши" msgid "Hotkeys" msgstr "Горячие клавиши" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Для горячих клавиш требуется окно в фокусе" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Гибридные убершейдеры" @@ -7116,12 +7146,12 @@ msgstr "IP-адрес:" msgid "IPL Settings" msgstr "Настройки IPL" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "ИК" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Чувствительность ИК:" @@ -7162,7 +7192,7 @@ msgstr "" msgid "Icon" msgstr "Иконка" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7173,7 +7203,7 @@ msgstr "" "Подходит для пошаговых игр с элементами управления, чувствительными ко " "времени, такими как гольф." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Генерация ID" @@ -7199,7 +7229,7 @@ msgstr "" "производительности и стабильности.\n" "Данное разрешение можно отозвать в любой момент из настроек Dolphin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7216,21 +7246,21 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" "Если включено — эмулируемый контроллер всегда подключён.\n" -"Если выключено — подключённость эмулируемого контроллера зависит\n" +"Если отключено — подключённость эмулируемого контроллера зависит\n" "от подключённости реального устройства по умолчанию (при наличии такового)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" "Если включено, то все обновления памяти происходят одновременно перед первым " -"кадром

Вызывает проблемы со многими журналами FIFO, но может быть " +"кадром.

Вызывает проблемы со многими журналами FIFO, но может быть " "полезно для тестирования.

Если вы не уверены, не " "устанавливайте этот флажок." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7246,9 +7276,9 @@ msgstr "" msgid "Ignore" msgstr "Игнорировать" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Игнорировать &достижения ветви Apploader" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7286,7 +7316,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Выводить XFB немедленно" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7301,7 +7331,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Импортировать бэкап BootMii NAND..." @@ -7316,15 +7346,15 @@ msgstr "Не удалось импортировать" msgid "Import Save File(s)" msgstr "Импорт файлов сохранений" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Импортировать сохранение Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Импортирование бэкапа NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7333,6 +7363,15 @@ msgstr "" "Импортирование бэкапа NAND\n" " Прошло времени: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "В игре?" @@ -7368,7 +7407,7 @@ msgstr "Некорректное количество денег" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:229 msgid "Incorrect nickname!" -msgstr "Некорректное прозвище" +msgstr "Некорректный ник." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235 msgid "Incorrect playtime value!" @@ -7415,7 +7454,7 @@ msgstr "Увеличивающееся вращение" msgid "Incremental Rotation (rad/sec)" msgstr "Увеличивающееся вращение (рад/с)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Создатель фигурок Infinity" @@ -7424,7 +7463,7 @@ msgstr "Создатель фигурок Infinity" msgid "Infinity Manager" msgstr "Менеджер Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Объект Infinity (*.bin);;" @@ -7446,12 +7485,12 @@ msgstr "Информация" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Информация" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Запретить скринсейвер во время эмуляции" @@ -7460,11 +7499,11 @@ msgid "Inject" msgstr "Ввести" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Ввод" @@ -7478,23 +7517,19 @@ msgstr "Сила ввода, требуемая для активации." msgid "Input strength to ignore and remap." msgstr "Входная сила, которую следует игнорировать и перезадать." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" -msgstr "" +msgstr "Вставить &BLR" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" -msgstr "" +msgstr "Вставить &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Вставить &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Вставить SD-карту" @@ -7507,11 +7542,11 @@ msgstr "Установить" msgid "Install Partition (%1)" msgstr "Установить раздел (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Установить обновление" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Установить WAD..." @@ -7519,13 +7554,13 @@ msgstr "Установить WAD..." msgid "Install to the NAND" msgstr "Установить в NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Инстр." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Инструкция" @@ -7534,7 +7569,7 @@ msgstr "Инструкция" msgid "Instruction Breakpoint" msgstr "Точка останова инструкции" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Инструкция:" @@ -7543,7 +7578,7 @@ msgstr "Инструкция:" msgid "Instruction: %1" msgstr "Инструкция: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7564,22 +7599,22 @@ msgstr "Интенсивность" msgid "Interface" msgstr "Интерфейс" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Внутренняя ошибка LZ4 — попытка распаковки {0} байт" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Внутренняя ошибка LZ4 — ошибка сжатия" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Внутренняя ошибка LZ4 — ошибка распаковки ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" -"Внутренняя ошибка LZ4 — несоответствие размера полезной нагрузки ({0} / {1}))" +"Внутренняя ошибка LZ4 — несоответствие размера полезной нагрузки ({0}/{1}))" #: Source/Core/Core/NetPlayCommon.cpp:67 Source/Core/Core/NetPlayCommon.cpp:151 msgid "Internal LZO Error - compression failed" @@ -7590,7 +7625,7 @@ msgstr "Внутренняя ошибка LZO - ошибка сжатия" msgid "Internal LZO Error - decompression failed" msgstr "Внутренняя ошибка LZO - распаковка не удалась" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7598,7 +7633,7 @@ msgstr "" "Внутренняя ошибка LZO — ошибка распаковки ({0}) ({1}). \n" "Не удалось получить информацию об устаревшей версии savestate." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7606,12 +7641,12 @@ msgstr "" "Внутренняя ошибка LZO — не удалось разобрать распакованный файл cookie и " "длину строки версии ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" "Внутренняя ошибка LZO — не удалось разобрать распакованную строку версии " -"({0} / {1})" +"({0}/{1})" #: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 @@ -7623,7 +7658,7 @@ msgstr "Внутреннее разрешение" msgid "Internal Resolution:" msgstr "Внутреннее разрешение:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Внутренняя ошибка генерации AR-кода" @@ -7631,7 +7666,7 @@ msgstr "Внутренняя ошибка генерации AR-кода" msgid "Interpreter (slowest)" msgstr "Интерпретатор (самый медленный)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Ядро интерпретатора" @@ -7647,7 +7682,7 @@ msgstr "От службы автообновления получен недоп msgid "Invalid Mixed Code" msgstr "Неверный смешанный код" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Некорректный набор %1 указан: %2" @@ -7656,11 +7691,11 @@ msgstr "Некорректный набор %1 указан: %2" msgid "Invalid Player ID" msgstr "Некорректный ID игрока" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Некорректный адрес модуля RSO: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Некорректный стэк вызовов" @@ -7681,7 +7716,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Неверные входные данные для поля \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Неверные входные данные" @@ -7697,19 +7732,19 @@ msgstr "Заданы недопустимые параметры для поис msgid "Invalid password provided." msgstr "Предоставлен неверный пароль." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Неверный файл записи" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Неверные параметры поиска (не выбран объект)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Неверная строка поиска (невозможно конвертировать в число)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Неверная строка поиска (поддерживаются только строки чётной длины)" @@ -7717,13 +7752,13 @@ msgstr "Неверная строка поиска (поддерживаются msgid "Invalid title ID." msgstr "Неверный ID продукта." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Недопустимый адрес наблюдения: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Итальянский" @@ -7736,11 +7771,11 @@ msgstr "Италия" msgid "Item" msgstr "Элемент" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "Отключить линковку блоков JIT" @@ -7748,47 +7783,47 @@ msgstr "Отключить линковку блоков JIT" msgid "JIT Blocks" msgstr "Блоки JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "Отключить JIT Branch" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "Отключить JIT для FloatingPoint" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "Отключить JIT для Integer" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "Отключить JIT LoadStore Floating" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "Отключить JIT LoadStore" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "Отключить JIT LoadStore Paired" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "Отключить JIT LoadStore lXz" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "Отключить JIT LoadStore lbzx" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "Отключить JIT LoadStore lwz" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "Отключить JIT (ядро JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "Отключить JIT Paired" @@ -7800,16 +7835,16 @@ msgstr "JIT-рекомпилятор для ARM64 (рекомендуется)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-рекомпилятор для x86-64 (рекомендуется)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "Отключить кэш регистров JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "Отключить JIT SystemRegisters" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7818,16 +7853,16 @@ msgstr "" "происходить. Пожалуйста, сообщите об этой ошибке в багтрекере. Dolphin " "завершит работу." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" -msgstr "" +msgstr "JIT не активирован" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Япония" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Японский" @@ -7846,12 +7881,12 @@ msgstr "" "Kaos — единственный злодей для этого трофея, и он всегда разблокирован. Не " "нужно ничего редактировать." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Оставить запущенным" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Держать окно поверх остальных" @@ -7885,16 +7920,16 @@ msgstr "Клавиши" msgid "KiB" msgstr "КиБ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Исключить игрока" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Корея" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Корейский" @@ -7915,7 +7950,7 @@ msgstr "З&агрузить ROM…" msgid "L-Analog" msgstr "L-аналог" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "Сохр. LR" @@ -7923,7 +7958,11 @@ msgstr "Сохр. LR" msgid "Label" msgstr "Название" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Посл. значение" @@ -7937,23 +7976,23 @@ msgstr "Последнее размещение:" msgid "Last reset:" msgstr "Последний сброс:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Задержка:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Задержка: ~10 мс" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Задержка: ~20 мс" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Задержка: ~40 мс" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Задержка: ~80 мс" @@ -7961,7 +8000,7 @@ msgstr "Задержка: ~80 мс" msgid "Launching these titles may also fix the issues." msgstr "Запуск этих игр также может устранить проблемы." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "Таблицы лидеров" @@ -7969,7 +8008,7 @@ msgstr "Таблицы лидеров" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7980,7 +8019,7 @@ msgstr "Влево" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Левый стик" @@ -8057,11 +8096,11 @@ msgstr "Свет" msgid "Limit Chunked Upload Speed:" msgstr "Ограничить скорость закачки:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Столбцы в списке" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "В виде списка" @@ -8070,30 +8109,30 @@ msgid "Listening" msgstr "Прослушивание" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Загр." -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Загрузить файл с &плохими картами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Загрузить &другой файл с картой..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "Загрузить Branch Watch &из…" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Загрузить снимок Branch Watch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Загружать свои текстуры" @@ -8101,11 +8140,11 @@ msgstr "Загружать свои текстуры" msgid "Load File" msgstr "Загрузить файл" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Загрузить главное меню GameCube" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Загрузка только данных сохранений хоста" @@ -8211,23 +8250,23 @@ msgstr "Быстрая загрузка 8" msgid "Load State Slot 9" msgstr "Быстрая загрузка 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Быстрая загрузка из файла" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Быстрая загрузка из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Быстрая загрузка из слота" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Загрузить системное меню Wii %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Загрузка и запись данных сохранений хоста" @@ -8235,28 +8274,28 @@ msgstr "Загрузка и запись данных сохранений хо msgid "Load from Selected Slot" msgstr "Загрузить из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Быстрая загрузка из слота %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Загрузить файл с картой" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Загрузить системное меню vWii %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Загрузить..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Загружены символы из '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8266,7 +8305,7 @@ msgstr "" "DynamicInputTextures/<game_id>/.

Если не " "уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8275,20 +8314,28 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Локальный адрес" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Захватывать курсор мыши" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Заблокировано" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Лог" @@ -8297,19 +8344,19 @@ msgstr "Лог" msgid "Log Configuration" msgstr "Настройка логирования" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Войти" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Логировать покрытие инструкций JIT" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Выйти" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Записывать время рендеринга в файл" @@ -8321,11 +8368,11 @@ msgstr "Типы записей" msgid "Logger Outputs" msgstr "Вывод логов" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Не удалось выполнить вход" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8336,20 +8383,20 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Повторять" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Соединение с сервером сетевой игры потеряно..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Низкая" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Самое низкое" @@ -8361,7 +8408,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "УМИРАЕТ" @@ -8398,7 +8445,7 @@ msgstr "Убедитесь, что количество денег состав #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230 msgid "Make sure that the nickname is between 0 and 15 characters long!" -msgstr "Убедитесь, что прозвище содержит от 0 до 15 символов." +msgstr "Убедитесь, что ник содержит от 0 до 15 символов." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236 msgid "Make sure that the playtime value is valid!" @@ -8410,7 +8457,7 @@ msgstr "Убедитесь, что в слоте %1 есть Skylander." #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Создатель" @@ -8432,16 +8479,16 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Управлять NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Ручная выборка текстур" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Порты" @@ -8453,11 +8500,11 @@ msgstr "Масочное ПЗУ" msgid "Match Found" msgstr "Найдено совпадение" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Максимальный буфер:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Максимальный размер буфера изменён на %1" @@ -8466,7 +8513,7 @@ msgstr "Максимальный размер буфера изменён на % msgid "Maximum tilt angle." msgstr "Максимальный угол наклона." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Может привести к замедлению в меню Wii и некоторых играх." @@ -8487,7 +8534,7 @@ msgstr "Точка останова в памяти" msgid "Memory Card" msgstr "Карта памяти" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Менеджер карт памяти" @@ -8515,7 +8562,7 @@ msgstr "MemoryCard: вызвано чтение некорректного уч msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: вызвана запись в некорректный участок памяти ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8532,7 +8579,7 @@ msgstr "МиБ" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Микрофон" @@ -8541,17 +8588,17 @@ msgstr "Микрофон" msgid "Mini" msgstr "Мини" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Разное" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Разное" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" -msgstr "" +msgstr "Разные элементы управления" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8563,7 +8610,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Расхождение во внутренних структурах данных." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8583,14 +8630,14 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Адаптер для модема (tapserver)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Модиф." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8610,8 +8657,8 @@ msgstr "Изменить слот" msgid "Modifying Skylander: %1" msgstr "Изменение Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Найдено модулей: %1" @@ -8619,7 +8666,7 @@ msgstr "Найдено модулей: %1" msgid "Money:" msgstr "Деньги:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Моно" @@ -8631,11 +8678,11 @@ msgstr "Моноскопические тени" msgid "Monospaced Font" msgstr "Моноширный шрифт" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Данные движения" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Симуляция движения" @@ -8644,24 +8691,10 @@ msgstr "Симуляция движения" msgid "Motor" msgstr "Мотор" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Отображение курсора мыши" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" -"Курсор мыши скрывается после бездействия и возвращается при перемещении." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Курсор мыши будет отображаться всегда." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "Курсор мыши не будет отображаться, если игра запущена." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8672,7 +8705,7 @@ msgstr "Перемещение" msgid "Movie" msgstr "Ролик" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8680,9 +8713,9 @@ msgstr "" "Ролик {0} указывает, что он начинается из состояния сохранения, но {1} не " "существует. Скорее всего, ролик не будет синхронизирован." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "При генерации AR-кодов возникло несколько ошибок." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -8693,10 +8726,10 @@ msgstr "Множитель" msgid "N&o to All" msgstr "&Нет для всех" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Проверка NAND" @@ -8705,8 +8738,8 @@ msgstr "Проверка NAND" msgid "NKit Warning" msgstr "Предупреждение NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8715,7 +8748,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8738,8 +8771,8 @@ msgstr "" "

Если вы не уверены, оставьте значение 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8782,7 +8815,7 @@ msgstr "Родное (640x528)" msgid "Native GCI File" msgstr "Стандартный файл GCI" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "Сетевая игра" @@ -8798,7 +8831,7 @@ msgstr "Настройка сетевой игры" msgid "Netherlands" msgstr "Нидерландский" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8807,17 +8840,17 @@ msgstr "" "сохранений, созданные или изменённые во время сеанса Netplay, останутся в " "локальных сохранениях хоста." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -"Netplay начнет использовать данные сохранений хоста, но все данные " +"Netplay начнёт использовать данные сохранений хоста, но все данные " "сохранений, созданные или изменённые во время сеанса Netplay, будут " "отброшены в конце сеанса." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8826,7 +8859,7 @@ msgstr "" "будут удалены по окончании сеанса Netplay." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Сеть" @@ -8834,16 +8867,16 @@ msgstr "Сеть" msgid "Network dump format:" msgstr "Формат дампа сети:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Никогда" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Запретить автообновление" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Новая" @@ -8868,7 +8901,7 @@ msgstr "Новый поиск" msgid "New Tag..." msgstr "Новая метка..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Новый ID сгенерирован." @@ -8885,7 +8918,7 @@ msgstr "Новая метка" msgid "Next Game Profile" msgstr "Следующий игровой профиль" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Следующее совпадение" @@ -8931,7 +8964,7 @@ msgstr "Без сжатия" msgid "No Match" msgstr "Нет совпадений" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Нет данных сохранений" @@ -8939,12 +8972,12 @@ msgstr "Нет данных сохранений" msgid "No data to modify!" msgstr "Нет данных для изменения." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Нет описания" @@ -8956,7 +8989,7 @@ msgstr "Ошибок нет." msgid "No extension selected." msgstr "Не выбрано расширение." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Файл не загружен / записан." @@ -8964,7 +8997,7 @@ msgstr "Файл не загружен / записан." msgid "No game is running." msgstr "Ни одной игры не запущено." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Ни одной игры не запущено." @@ -8977,11 +9010,11 @@ msgstr "Графический мод не выбран." msgid "No input" msgstr "Нет входных данных" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Проблем не обнаружено." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Соответствующая игра не найдена" @@ -9008,7 +9041,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Профили для игровой настройки '{0}' не найдены" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Запись не загружена." @@ -9027,10 +9060,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Отсутствует" @@ -9042,7 +9075,7 @@ msgstr "Северная Америка" msgid "Not Set" msgstr "Не установлено" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Не у всех игроков есть игра. Вы действительно хотите начать?" @@ -9066,7 +9099,7 @@ msgstr "" "Недостаточно свободных файлов на выбранной карте памяти. Требуется свободных " "файлов: не менее %n." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Не найдено" @@ -9112,78 +9145,78 @@ msgstr "Количество встрясок в секунду." msgid "Nunchuk" msgstr "Нунчак" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Акселерометр Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Кнопки нунчака" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Стик нунчака" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Объект %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Размер объекта 1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "Объект 1 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Объект 1 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Размер объекта 2" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "Объект 2 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Объект 2 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Размер объекта 3" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "Объект 3 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Объект 3 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Размер объекта 4" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "Объект 4 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Объект 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Диапазон обьектов" @@ -9204,22 +9237,21 @@ msgstr "Смещение" msgid "On" msgstr "Вкл" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "При перемещении" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -"На серверных частях, поддерживающих использование как геометрического " -"шейдера, так и вершинного шейдера для расширения точек и линий, выбирается " -"вершинный шейдер для выполнения задания. Может влиять на производительность." -"

%1" +"На бэкендах, поддерживающих использование как геометрического шейдера, так и " +"вершинного шейдера для расширения точек и линий, выбирается вершинный шейдер " +"для выполнения задания. Может влиять на производительность.

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9233,8 +9265,19 @@ msgid "" "calls and conditional code paths that are only taken when an action is " "performed in the emulated software." msgstr "" +"Находясь на этапе сокращения, пора начать сужать круг кандидатов, " +"представленных в таблице. Далее сократите число кандидатов, проверив, был ли " +"выполнен путь кода с момента последней проверки. Также можно сократить число " +"кандидатов, определив, была ли перезаписана инструкция ветвления с момента " +"её первого выполнения. Фильтр кандидатов по типу ветвления, условию " +"ветвления, адресу начала или назначения адресу, имени символа источника или " +"назначения.\n" +"\n" +"После достаточного количества проходов и экспериментов вы сможете найти " +"вызовы функций и пути кода условия, которые выполняются только при при " +"выполнении какого-либо действия в эмулируемом программном обеспечении." -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Онлайн-&документация" @@ -9242,7 +9285,7 @@ msgstr "Онлайн-&документация" msgid "Only Show Collection" msgstr "Показывать только коллекцию" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9250,7 +9293,7 @@ msgstr "" "Добавлять только символы с префиксом:\n" "(Пусто - все символы)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9269,7 +9312,7 @@ msgstr "Открыть" msgid "Open &Containing Folder" msgstr "Открыть &папку с образом" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Открыть папку &пользователя" @@ -9278,7 +9321,7 @@ msgstr "Открыть папку &пользователя" msgid "Open Directory..." msgstr "Открыть папку..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Открыть лог FIFO" @@ -9344,34 +9387,34 @@ msgstr "Оранжевая" msgid "Orbital" msgstr "По орбите" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" -msgstr "" +msgstr "Источник" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" -msgstr "" +msgstr "Макс. источник" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" -msgstr "" +msgstr "Мин. источник" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" -msgstr "" +msgstr "Символ источника" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" -msgstr "" +msgstr "Источник и назначение" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9386,11 +9429,11 @@ msgstr "Другой раздел (%1)" msgid "Other State Hotkeys" msgstr "Другие горячие клавиши" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Другое управление сохранениями" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Другой игры..." @@ -9406,16 +9449,16 @@ msgstr "Результаты повторной выборки" msgid "Output Resampling:" msgstr "Результаты повторной выборки:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Перезаписано" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "&Проиграть записанный ввод..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9428,11 +9471,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "Уровень сжатия PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "Уровень сжатия PNG:" @@ -9444,7 +9487,7 @@ msgstr "Файл изображения PNG (*.png);; Все файлы (*)" msgid "PPC Size" msgstr "Размер PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC и Хост" @@ -9478,7 +9521,7 @@ msgstr "Пассивный" msgid "Passthrough a Bluetooth adapter" msgstr "Пробрасывать Bluetooth-адаптер" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Пароль" @@ -9516,15 +9559,15 @@ msgstr "Пути" msgid "Pause" msgstr "Пауза" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" -msgstr "" +msgstr "Приостановить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Пауза в конце ролика" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Пауза при потере фокуса" @@ -9545,6 +9588,12 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9564,7 +9613,7 @@ msgstr "Пиковая скорость взмаха." msgid "Per-Pixel Lighting" msgstr "Попискельное освещение" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Обновить систему через интернет" @@ -9572,15 +9621,15 @@ msgstr "Обновить систему через интернет" msgid "Perform System Update" msgstr "Выполнить обновление системы" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Окно образца производительности (мс)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Окно образца производительности (мс):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Статистика производительности" @@ -9598,11 +9647,11 @@ msgstr "Физическое адресное пространство" msgid "PiB" msgstr "ПиБ" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Выбрать шрифт для отладки" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Пинг" @@ -9615,7 +9664,7 @@ msgid "Pitch Up" msgstr "Тангаж вверх" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Платформа" @@ -9623,7 +9672,7 @@ msgstr "Платформа" msgid "Play" msgstr "Запуск" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Проигрывание / запись" @@ -9635,40 +9684,40 @@ msgstr "Проиграть записанное" msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Параметры просмотра" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Игрок" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Игрок 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Игрок 1 Способность 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Игрок 1 Способность 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Игрок 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Игрок 2 Способность 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Игрок 2 Способность 2" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Игроки" @@ -9687,7 +9736,7 @@ msgstr "" "Измените настройку «SyncOnSkipIdle» на «True». В настоящее время она " "отключена, что делает эту проблему очень вероятной." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "Прежде чем начать поиск в стандартных областях памяти, запустите игру." @@ -9700,10 +9749,10 @@ msgstr "Направление" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Направление (проброс)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Порт %1" @@ -9720,7 +9769,7 @@ msgstr "Порт:" msgid "Portal Slots" msgstr "Слоты портала" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Обнаружена возможная рассинхронизация: %1, вероятно, рассинхронизовался на " @@ -9738,24 +9787,32 @@ msgstr "Эффект пост-обработки:" msgid "Post-Processing Shader Configuration" msgstr "Конфигурация шейдеров пост-обработки" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Предпочтение VS для расширения точек/линий" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Предзагружать свои текстуры" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Преждевременный конец ролика в PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Преждевременный конец ролика в PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Преждевременный конец ролика в PlayWiimote. {0} > {1}" @@ -9780,7 +9837,7 @@ msgstr "Кнопка синхронизации" msgid "Pressure" msgstr "Давление" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9800,7 +9857,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Предыдущий игровой профиль" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Предыдущее совпадение" @@ -9811,7 +9868,7 @@ msgstr "Предыдущий профиль" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Примитив %1" @@ -9851,7 +9908,7 @@ msgstr "" "Обнаружены проблемы со средней критичностью. Вся игра или её фрагменты могут " "работать некорректно." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Профиль" @@ -9860,23 +9917,29 @@ msgstr "Профиль" msgid "Program Counter" msgstr "Счётчик команд" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Ход выполнения" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Открытые" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Очистить кэш списка игр" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Поместите ПЗУ IPL в User/GC/<регион>." @@ -9896,7 +9959,7 @@ msgstr "Не удаётся включить Quality of Service (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) успешно включен." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Качество декодера DPLII. С увеличением качества возрастает задержка аудио." @@ -9904,11 +9967,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Вопрос" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Выход" @@ -9925,19 +9988,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-аналог" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "ГОТОВ" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "Модули RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "Автообнаружение RSO" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "РАБОТАЕТ" @@ -9958,7 +10021,7 @@ msgstr "Конец диапазона: " msgid "Range Start: " msgstr "Начало диапазона: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Место %1" @@ -9966,16 +10029,17 @@ msgstr "Место %1" msgid "Raw" msgstr "Raw (без обработки)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Внутреннее разрешение Raw" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "За&менить инструкцию" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Чтение" @@ -10014,33 +10078,33 @@ msgstr "Настоящий Wii Remote" msgid "Received invalid Wii Remote data from Netplay." msgstr "От Netplay получены неверные данные Wii Remote." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" -msgstr "" +msgstr "Последние достижения" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:31 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:29 msgid "Recenter" msgstr "Центровка" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Запись" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Записывать ввод" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Запись" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Опции записи" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Запись..." @@ -10080,7 +10144,7 @@ msgstr "Статус на Redump.org:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -10113,7 +10177,7 @@ msgid "Refreshing..." msgstr "Обновление..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Регион" @@ -10134,7 +10198,11 @@ msgstr "Относительный ввод" msgid "Relative Input Hold" msgstr "Удерж. относ. ввод" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Напомнить позже" @@ -10142,7 +10210,7 @@ msgstr "Напомнить позже" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Удалить" @@ -10173,20 +10241,20 @@ msgstr "" "конечно, вы впоследствии не запакуете данный образ в архив вроде ZIP). Вы " "всё равно хотите продолжить?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Переименовать символ" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Окно отрисовки" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Выводить изображение в главное окно" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10202,10 +10270,16 @@ msgstr "Отчёт: GCIFolder пишет в невыделенный блок {0 msgid "Request to Join Your Party" msgstr "Запрос на присоединение к вашей группе" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10215,7 +10289,7 @@ msgstr "Сбросить" msgid "Reset All" msgstr "Сбросить все" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Сброс игнорирования обработчика ошибок" @@ -10247,9 +10321,9 @@ msgstr "Сбросить поле" msgid "Reset all saved Wii Remote pairings" msgstr "Сбросить все сопряжения Wii Remote" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" -msgstr "" +msgstr "Тип разрешения:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10259,7 +10333,7 @@ msgstr "Менеджер наборов ресурсов" msgid "Resource Pack Path:" msgstr "Путь к наборам ресурсов:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Требуется перезапуск" @@ -10267,11 +10341,11 @@ msgstr "Требуется перезапуск" msgid "Restore Defaults" msgstr "По умолчанию" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Восстановить инструкцию" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Повтор" @@ -10280,7 +10354,7 @@ msgstr "Повтор" msgid "Return Speed" msgstr "Скорость возврата" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Ревизия" @@ -10292,7 +10366,7 @@ msgstr "Ревизия: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10303,7 +10377,7 @@ msgstr "Вправо" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Правый стик" @@ -10339,11 +10413,11 @@ msgstr "Крен влево" msgid "Roll Right" msgstr "Крен вправо" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "ID комнаты" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Поворот" @@ -10366,27 +10440,31 @@ msgstr "" "используется родное внутреннее разрешение

Если вы " "не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10399,7 +10477,7 @@ msgstr "" msgid "Rumble" msgstr "Вибрация" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Запуск &до сюда" @@ -10407,15 +10485,15 @@ msgstr "Запуск &до сюда" msgid "Run GBA Cores in Dedicated Threads" msgstr "Запускать ядра GBA в выделенных потоках" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Выполнить до" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Выполнить до (игнорирование точек останова)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Выполнить до достижения (игнорирование точек останова)" @@ -10423,23 +10501,23 @@ msgstr "Выполнить до достижения (игнорирование msgid "Russia" msgstr "Россия" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-карты" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "Размер файла SD-карты:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Образ SD-карты (*.raw);;Все файлы (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "Путь к SD-карте:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "Параметры SD-карты" @@ -10447,7 +10525,7 @@ msgstr "Параметры SD-карты" msgid "SD Root:" msgstr "Корневой каталог SD-карты:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "Папка синхронизации:" @@ -10482,11 +10560,11 @@ msgstr "Контекст SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "Со&хранить код" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Быстрое &сохранение" @@ -10496,9 +10574,9 @@ msgid "Safe" msgstr "Безопасное" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10508,25 +10586,25 @@ msgstr "Сохр." msgid "Save All" msgstr "Сохранить все" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "Сохранить Branch Watch &как…" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Сохранить снимок Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Экспортировать сохранение" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Сохранить лог FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Сохранить файл в" @@ -10540,11 +10618,11 @@ msgstr "Сохранение игры" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Файлы сохранений игры (*.sav);;Все файлы (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Импортировать сохранение" @@ -10556,7 +10634,7 @@ msgstr "Сохранить самое старое сохранение" msgid "Save Preset" msgstr "Сохранить предустановку" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Сохранить файл записи как" @@ -10606,23 +10684,23 @@ msgstr "Быстрое сохранение 8" msgid "Save State Slot 9" msgstr "Быстрое сохранение 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Быстрое сохранение в файл" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Быстрое сохранение в старый слот" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Быстрое сохранение в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Быстрое сохранение в слот" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Сохранить карту символов &как..." @@ -10630,7 +10708,7 @@ msgstr "Сохранить карту символов &как..." msgid "Save Texture Cache to State" msgstr "Хранить кэш текстур в сохранении" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Быстрые сохранение и загрузка" @@ -10642,11 +10720,11 @@ msgstr "Сохранить как предустановку…" msgid "Save as..." msgstr "Сохранить как..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Сохранить объединённый файл как" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10661,11 +10739,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Сохранение в той же папке, где и образ" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Сохранить файл с картой" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Сохранить файл сигнатуры" @@ -10673,11 +10751,11 @@ msgstr "Сохранить файл сигнатуры" msgid "Save to Selected Slot" msgstr "Сохранить в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Сохранить в слот %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Сохранить..." @@ -10691,7 +10769,7 @@ msgstr "" msgid "Saves:" msgstr "Сохранения:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "Быстрое сохранение ролика {0} повреждено, остановка записи ролика..." @@ -10708,8 +10786,8 @@ msgid "ScrShot" msgstr "Скриншот" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Поиск" @@ -10718,7 +10796,7 @@ msgstr "Поиск" msgid "Search Address" msgstr "Найти адрес" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Искать текущий объект" @@ -10738,7 +10816,7 @@ msgstr "" "Поиск в виртуальном адресном пространстве пока невозможен. Пожалуйста, " "запустите игру на некоторое время и попробуйте снова." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Найти инструкцию" @@ -10746,7 +10824,7 @@ msgstr "Найти инструкцию" msgid "Search games..." msgstr "Искать игры..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Поиск инструкции" @@ -10782,34 +10860,36 @@ msgstr "Выбрать" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" msgstr "" +"Выберите файл автосохранения снимков Branch Watch (чтобы сохранить в папке " +"пользователя, отмените)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Выберите путь к дампам" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Выберите папку для экспорта" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Выберите файл фигурки" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Выбрать BIOS GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Выбрать образ игры GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Выберите путь к файлам сохранений GBA" @@ -10837,7 +10917,7 @@ msgstr "Выберите коллекцию Skylander" msgid "Select Skylander File" msgstr "Выберите файл Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Выбрать слот %1 - %2" @@ -10845,7 +10925,7 @@ msgstr "Выбрать слот %1 - %2" msgid "Select State" msgstr "Выбор сохранения" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Выбрать слот сохранения" @@ -10906,13 +10986,13 @@ msgstr "Выберите папку" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Выберите файл" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Выберите папку для синхронизации с образом SD-карты" @@ -10920,7 +11000,7 @@ msgstr "Выберите папку для синхронизации с обр msgid "Select a Game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Выберите образ SD-карты" @@ -10932,7 +11012,7 @@ msgstr "Выберите файл" msgid "Select a game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Выберите продукт для установки в NAND" @@ -10940,11 +11020,11 @@ msgstr "Выберите продукт для установки в NAND" msgid "Select e-Reader Cards" msgstr "Выбрать e-карточки" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Выберите адрес модуля RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Выберите файл записи, который следует воспроизвести" @@ -10952,12 +11032,12 @@ msgstr "Выберите файл записи, который следует в msgid "Select the Virtual SD Card Root" msgstr "Выберите коренной каталог виртуальной SD-карты" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Выберите файл с ключами (дамп OTP/SEEPROM)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Выберите файл сохранения" @@ -10980,16 +11060,16 @@ msgstr "Выбранный профиль контроллера не сущес #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Выбранной игры нету в списке игр!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Выбранный стэк вызовов потока" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Выбранный контекст потока" @@ -11009,7 +11089,7 @@ msgstr "" "Выбирает используемый аппаратный адаптер.

Если не " "уверены – выберите первый." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11027,6 +11107,23 @@ msgid "" "software.

If unsure, leave this at \"Aspect Ratio " "Corrected Internal Resolution\"." msgstr "" +"Выбор способа захвата дампов кадров (видео) и снимков экрана.
Если во " +"время записи меняется разрешение игры или окна, может быть создано несколько " +"видеофайлов.
Обратите внимание, что цветокоррекция и кадрирование всегда " +"игнорируются при захвате.

Разрешение окна: использует разрешение " +"окна вывода (без чёрных полос).
Это простая опция дампа, которая позволит " +"захватить изображение более или менее таким, каким вы его видите." +"
Внутреннее разрешение с коррекцией соотношения сторон: использует " +"внутреннее разрешение (размер XFB) и корректирует его по заданному " +"соотношению сторон.
Эта опция будет последовательно производить дамп с " +"указанным внутренним разрешением, независимо от того, как изображение " +"отображается во время записи.
Внутреннее разрешение изображения RAW: использует внутреннее разрешение (размер XFB), не корректируя его с " +"помощью целевого соотношения сторон.
Это обеспечит чистый дамп без какой-" +"либо коррекции соотношения сторон, чтобы пользователи имели максимально " +"возможные необработанные входные данные для внешнего ПО для редактирования." +"

Если вы не уверены, оставьте значение «Внутреннее " +"разрешение с коррекцией соотношения сторон»." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 msgid "" @@ -11047,7 +11144,7 @@ msgstr "" "– ещё один вид 3D, который используется в некоторых телевизорах." "

Если не уверены – выберите Выкл." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11068,8 +11165,28 @@ msgid "" "normal circumstances.

If unsure, select Auto." msgstr "" +"Выбор соотношения сторон изображения, используемого при визуализации." +"

Соотношение сторон изображения, выводимого на оригинальных консолях, " +"зависело от игры и редко соответствовало точным 4:3 или 16:9. Часть " +"изображения обрезалась краями телевизора, или изображение не заполняло " +"телевизор полностью. По умолчанию Dolphin отображает изображение целиком, не " +"искажая его пропорций, так что это нормально, если изображение не помещается " +"полностью на экране.

Автоматическое: имитирует телевизор с " +"соотношением сторон 4:3 или 16:9, в зависимости от того, на какой тип " +"телевизора ориентирована игра.

Принудительно 16:9: имитирует " +"телевизор с соотношением сторон 16:9 (широкоэкранный)." +"

Принудительно 4:3: имитирует телевизор с соотношением сторон " +"4:3.

Растянуть по окну: растягивает изображение до размеров " +"окна, искажая пропорции изображения.

Пользовательское: " +"имитирует телевизор с указанным соотношением сторон. В основном " +"предназначено для использования с чит-кодами/модификациями соотношения " +"сторон экрана.

Пользовательское (Растянутое): аналогично " +"«пользовательскому», но растягивает изображение до указанного соотношения " +"сторон экрана. Это искажает пропорции изображения, и его не следует " +"использовать в обычных условиях.

Если вы не " +"уверены, выберите «Автоматическое»." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11086,11 +11203,11 @@ msgstr "" "

Если не уверены – выберите OpenGL." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Отправить" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Месторасположение сенсора:" @@ -11122,6 +11239,10 @@ msgstr "Сервер отверг попытку обхода" msgid "Set &Value" msgstr "Присвоить &значение" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -11139,23 +11260,23 @@ msgstr "Назначить файл карты памяти для слота A" msgid "Set memory card file for Slot B" msgstr "Назначить файл карты памяти для слота B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Назначить адрес &конца символа" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Назначить &размер символа" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Назначить адрес конца символа" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Назначить размер символа (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11165,11 +11286,19 @@ msgstr "" "игр.\n" "Может не работать для некоторых игр." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Устанавливает язык системы для Wii." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11177,6 +11306,13 @@ msgstr "" "Устанавливает задержку в миллисекундах. Большие значения могут уменьшить " "треск звука. Только для некоторых бэкендов." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -11186,13 +11322,13 @@ msgstr "" "Wii) MEM2 в виртуальном адресном пространстве. Это подходит для подавляющего " "большинства игр." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Настройки" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: не удалось создать файл setting.txt" @@ -11200,7 +11336,7 @@ msgstr "SetupWiiMemory: не удалось создать файл setting.txt" msgid "Severity" msgstr "Критичность" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Компиляция шейдеров" @@ -11222,32 +11358,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Контроллер Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Показывать % скорости" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Показать &лог" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Отображать панель &инструментов" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Показывать название запущенной игры в заголовке окна" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Показать все" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Австралия" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Показывать текущую игру в Discord" @@ -11256,7 +11392,7 @@ msgstr "Показывать текущую игру в Discord" msgid "Show Disabled Codes First" msgstr "Показывать отключённые коды первыми" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL-файлы" @@ -11265,31 +11401,31 @@ msgstr "ELF/DOL-файлы" msgid "Show Enabled Codes First" msgstr "Показывать включённые коды первыми" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Показывать FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Показывать счётчик кадров" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Показывать время кадра" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Франция" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Германия" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Показывать оверлей режима гольфа" @@ -11297,23 +11433,23 @@ msgstr "Показывать оверлей режима гольфа" msgid "Show Infinity Base" msgstr "Показать Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Показывать ввод экрана" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Италия" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Япония" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Корея" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Показывать счётчик лагов" @@ -11321,27 +11457,27 @@ msgstr "Показывать счётчик лагов" msgid "Show Language:" msgstr "Язык отображения:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Показать &настройки логирования" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Показывать сообщения в сетевой игре" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Показывать пинг в сетевой игре" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Голландия" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Показывать наэкранные сообщения" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL" @@ -11350,27 +11486,27 @@ msgstr "PAL" msgid "Show PC" msgstr "Показать СК" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Показывать графики производительности" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Отображать игры платформ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" -msgstr "" +msgstr "Показывать статистику проекции" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Отображать игры регионов" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Показывать счётчик перезаписей" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Россия" @@ -11378,72 +11514,72 @@ msgstr "Россия" msgid "Show Skylanders Portal" msgstr "Показать портал Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Испания" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Отображение цветов в зависимости от скорости" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Показывать статистику" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Показывать системное время" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Тайвань" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Неизвестный" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Показывать длительность VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Показывать VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD-файлы" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Мир" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Показать в &памяти" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Показать в коде" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Показать в памяти" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Показать в коде" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Показать в памяти" @@ -11451,11 +11587,19 @@ msgstr "Показать в памяти" msgid "Show in server browser" msgstr "Показывать в списке серверов" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "Показать целевой объект в памят&и" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11464,7 +11608,7 @@ msgstr "" "рассинхроне в сетевой игре.

Если не уверены – " "оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -"Показывает % скорости эмуляции по сравнению с полной " -"

Если вы не уверены, не устанавливайте этот флажок." -"" +"Показывает % скорости эмуляции по сравнению с " +"полной

Если вы не уверены, не устанавливайте этот " +"флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11495,7 +11664,7 @@ msgstr "" "также стандартное отклонение.

Если вы не уверены, " "не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11505,7 +11674,7 @@ msgstr "" "стандартное отклонение.

Если вы не уверены, не " "устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11515,7 +11684,7 @@ msgstr "" "показатель визуальной плавности.

Если вы не " "уверены, установите этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11534,13 +11703,15 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"Показывает различную статистику проекции.

Если не " +"уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11564,7 +11735,7 @@ msgstr "Положить на бок" msgid "Sideways Wii Remote" msgstr "Wii Remote на боку" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "База данных сигнатур" @@ -11583,12 +11754,12 @@ msgstr "32-разрядное число со знаком" msgid "Signed 8" msgstr "8-разрядное число со знаком" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Знаковое целое" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Упрощ. китайский" @@ -11605,7 +11776,7 @@ msgstr "По шести осям" msgid "Size" msgstr "Размер" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11617,7 +11788,7 @@ msgstr "" msgid "Skip" msgstr "Пропустить" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Пропуск отрисовки" @@ -11672,6 +11843,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Все файлы (*)" @@ -11746,7 +11920,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Сортировать по алфавиту" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Звук:" @@ -11760,7 +11934,7 @@ msgstr "Испания" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Испанский" @@ -11768,19 +11942,19 @@ msgstr "Испанский" msgid "Speaker Pan" msgstr "Баланс звука" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Громкость динамика:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Специализированные (по умолчанию)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Особенность" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11814,11 +11988,11 @@ msgstr "Скорость" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Конец стэка" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Начало стэка" @@ -11826,25 +12000,25 @@ msgstr "Начало стэка" msgid "Standard Controller" msgstr "Стандартный контроллер" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Старт" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Начать &сетевую игру..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" -msgstr "" +msgstr "Запуск Branch Watch" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Новый поиск читов" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "&Начать запись ввода" @@ -11852,7 +12026,7 @@ msgstr "&Начать запись ввода" msgid "Start Recording" msgstr "Начать запись" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Запускать во весь экран" @@ -11864,14 +12038,14 @@ msgstr "Запуск с исправлениями Riivolution" msgid "Start with Riivolution Patches..." msgstr "Запуск с исправлениями Riivolution…" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Игра начата" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Состояние" @@ -11903,19 +12077,19 @@ msgstr "Шаг с выходом" msgid "Step Over" msgstr "Шаг с обходом" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Шаг с выходом выполнен успешно!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Истекло время ожидания шага с выходом!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Выполняется шаг с обходом..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Шаг выполнен успешно!" @@ -11924,7 +12098,7 @@ msgstr "Шаг выполнен успешно!" msgid "Stepping" msgstr "Шаги" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Стерео" @@ -11953,16 +12127,16 @@ msgid "Stick" msgstr "Стик" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Стоп" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Остановить проигр./запись ввода" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Игра остановлена" @@ -12004,11 +12178,11 @@ msgstr "" "текстуре)

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Растянуть по окну" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Строгая синхронизация настроек" @@ -12022,7 +12196,11 @@ msgstr "Строка" msgid "Strum" msgstr "Бренчание" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Стиль:" @@ -12033,18 +12211,18 @@ msgstr "Стиль:" msgid "Stylus" msgstr "Стилус" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Успешно" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Успешно добавлена в индекс сетевой игры" @@ -12054,7 +12232,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "Успешно сконвертировано образов: %n." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "'%1' успешно удалён." @@ -12067,24 +12245,24 @@ msgstr "Файлы сохранений (%n из %1 шт.) успешно экс msgid "Successfully exported save files" msgstr "Файлы сохранений успешно экспортированы" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Сертификаты успешно извлечены из NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Файл успешно извлечён." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Системные данные успешно извлечены." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Файл сохранения успешно импортирован." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Данный продукт успешно установлен в NAND." @@ -12107,16 +12285,16 @@ msgstr "Поддержка" msgid "Supported file formats" msgstr "Поддерживаемые форматы файлов" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Поддерживаются SD и SDHC. Размер по умолчанию: 128 Мбайт." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Объёмный" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Приостановлен" @@ -12164,17 +12342,17 @@ msgstr "Переключиться на B" msgid "Symbol" msgstr "Символ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Адрес конца символа (%1):" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Имя символа:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Символы" @@ -12182,7 +12360,7 @@ msgstr "Символы" msgid "Sync" msgstr "Синхронизация" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Синхронизировать коды AR/Gecko" @@ -12202,7 +12380,7 @@ msgstr "" "Синхронизировать потоки ГП и ЦП для исправления случайных зависаний в " "двухядерном режиме. (ВКЛ = Совместимость, ВЫКЛ = Скорость)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12221,24 +12399,24 @@ msgid "Synchronizing save data..." msgstr "Синхронизация сохранений..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Язык системы:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "Ввод 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "Управление TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Метки" @@ -12248,7 +12426,7 @@ msgstr "Метки" msgid "Taiko Drum" msgstr "Барабан Тайко" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Хвост" @@ -12256,7 +12434,7 @@ msgstr "Хвост" msgid "Taiwan" msgstr "Тайвань" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Сделать скриншот" @@ -12264,7 +12442,7 @@ msgstr "Сделать скриншот" msgid "Target address range is invalid." msgstr "Диапазон целевых адресов является недопустимым." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12282,11 +12460,11 @@ msgstr "Техника" msgid "Test" msgstr "Проверить" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Текстовый файл (*.txt);;Все файлы (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12297,7 +12475,7 @@ msgstr "Кэширование текстур" msgid "Texture Cache Accuracy" msgstr "Точность кэширования текстур" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Дамп текстур" @@ -12309,7 +12487,7 @@ msgstr "Фильтрация текстур" msgid "Texture Filtering:" msgstr "Фильтрация текстур:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Наложение форматов текстур" @@ -12331,10 +12509,10 @@ msgid "" msgstr "" "Рендерер Direct3D 11 требует поддержки функций, не поддерживаемых вашей " "конфигурацией системы. Вы можете продолжать использовать этот бэкэнд, но при " -"этом вы столкнетесь с графические артефакты в некоторых играх.\n" +"этом вы столкнётесь с графические артефакты в некоторых играх.\n" "\n" "Вы действительно хотите перейти на Direct3D 11? Если не уверены, выберите " -"\"Нет\"." +"«Нет»." #: Source/Core/DiscIO/VolumeVerifier.cpp:601 msgid "The H3 hash table for the {0} partition is not correct." @@ -12354,7 +12532,7 @@ msgstr "IPL-файла нет в списке известных коррект msgid "The Masterpiece partitions are missing." msgstr "Отсутствуют разделы Masterpiece." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12362,7 +12540,7 @@ msgstr "" "Не получается исправить NAND. Рекомендуется создать резервную копию текущих " "данных и поставить NAND с нуля." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND успешно исправлен." @@ -12378,9 +12556,9 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "Количество денег у этого скайлендера. От 0 до 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12426,6 +12604,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"Значение по умолчанию «%1» будет работать с локальным tapserver и newserv. " +"Вы также можете указать сетевое расположение (адрес:порт) для подключения к " +"удалённому tapserver." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12437,7 +12618,7 @@ msgstr "" "\n" "Выберите другой путь назначения для «%1»" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12449,7 +12630,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Не удалось прочесть диск (в диапазоне {0:#x} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Ожидаемый диск не был найден." @@ -12543,7 +12724,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Файловая система некорректна или не может быть прочитана." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12589,7 +12770,7 @@ msgstr "" "Регионы игры и консоли не совпадают. Обновление эмулируемой консоли при " "помощи данного диска невозможно, т.к. это приведёт к ошибкам системного меню." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12615,6 +12796,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"Уровень героя этого скайлендера. Встречается только в Skylanders: Spyro's " +"Adventures. От 0 до 100" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12654,19 +12837,19 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Ник для этого скайлендера. Ограничен 15 символами" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." msgstr "" "Исправления из %1 не работают для выбранной игры или для этой версии игры." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Профиль '%1' не существует" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "Записанная игра ({0}) не совпадает с выбранной игрой ({1})" @@ -12691,7 +12874,7 @@ msgstr "" "Один и тот же файл не может использоваться в нескольких слотах; он уже " "используется %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12732,7 +12915,7 @@ msgstr "Указанный общий ключевой индекс: {0}, а д msgid "The specified file \"{0}\" does not exist" msgstr "Указанный файл \"{0}\" не существует" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12797,7 +12980,7 @@ msgstr "Отсутствует раздел с обновлением." msgid "The update partition is not at its normal position." msgstr "Раздел с обновлением находится не на своей обычной позиции." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12821,6 +13004,10 @@ msgstr "Раздел {0} некорректно подписан." msgid "The {0} partition is not properly aligned." msgstr "Раздел {0} некорректно выровнен." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "В первой таблице разделов содержится слишком много разделов." @@ -12835,10 +13022,10 @@ msgstr "" "\n" "Сохранить изменения перед закрытием?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" -msgstr "" +msgstr "Нет данных для сохранения." #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -12890,11 +13077,11 @@ msgstr "Этот тип скайлендера пока не может быть msgid "This USB device is already whitelisted." msgstr "Это USB-устройства уже в белом списке." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Этот WAD не является загрузочным." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Этот WAD не является корректным." @@ -12914,7 +13101,7 @@ msgstr "" "Эта сборка Dolphin не скомпилирована для вашего процессора.\n" "Запустите сборку Dolphin для ARM64 для наилучшей работы." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Это нельзя отменить!" @@ -12974,16 +13161,21 @@ msgid "" "CPU, but your current settings make this unlikely to happen. If this error " "is stopping the game from working, please report it to the developers." msgstr "" +"Эта ошибка обычно вызвана десинхронизацией эмулируемого ГП с эмулируемым ЦП, " +"но ваши текущие параметры делают это маловероятным. Если эта ошибка мешает " +"игре работать, сообщите об этом разработчикам." #: Source/Core/VideoCommon/CommandProcessor.cpp:708 msgid "" "This error is usually caused by the emulated GPU desyncing with the emulated " "CPU. Turn off the \"Dual Core\" setting to avoid this." msgstr "" +"Эта ошибка обычно вызвана десинхронизацией эмулируемого ГП с эмулируемым ЦП. " +"Чтобы избежать этого, отключите параметр «Двухъядерный режим»." #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:38 msgid "This feature is disabled in hardcore mode." -msgstr "Эта функция отключена в режиме Хардкор." +msgstr "Эта функция отключена в режиме «Хардкор»." #: Source/Core/DiscIO/NANDImporter.cpp:116 msgid "This file does not contain a valid Wii filesystem." @@ -13038,9 +13230,11 @@ msgstr "" msgid "This is a good dump." msgstr "Данный дамп — хороший." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" +"Это относится только к начальной загрузке эмулируемого программного " +"обеспечения." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13064,7 +13258,7 @@ msgstr "" "Это ПО не должно использоваться для воспроизведения игр, которыми вы не " "владеете." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Этот продукт нельзя загрузить." @@ -13115,12 +13309,15 @@ msgid "" msgstr "" "Данное значение умножается на глубину, указанную в графических настройках." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" "use the Branch Type filter options." msgstr "" +"Также отфильтрует ветви при безусловном переходе.\n" +"Чтобы отфильтровать ветви при безусловном переходе или нет,\n" +"используйте параметры фильтра «Тип ветви»." #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:161 msgid "" @@ -13130,7 +13327,7 @@ msgstr "" "Ограничит скорость закачки данных для каждого клиента. Используется для " "синхронизации сохранений." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -13142,11 +13339,11 @@ msgstr "" "Может предотвратить рассинхрон в некоторых играх, которые используют чтение " "EFB. Пожалуйста, убедитесь, что у всех одинаковый бэкенд видео." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Контекст потока" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Потоки" @@ -13170,14 +13367,14 @@ msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" "Период времени стабильного ввода для запуска калибровки. (ноль - отключить)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Время ожидания истекло" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Название" @@ -13186,12 +13383,12 @@ msgid "To" msgstr "до" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "До:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Полноэкранный режим" @@ -13216,7 +13413,7 @@ msgid "Toggle Aspect Ratio" msgstr "Изменить соотношение сторон" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Точка останова" @@ -13272,15 +13469,15 @@ msgstr "Вкл./выкл. немедленный режим XFB" msgid "Tokenizing failed." msgstr "Ошибка токенизации." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" -msgstr "" +msgstr "Элементы управления инструмента" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" msgstr "Панель инструментов" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "сверху" @@ -13288,8 +13485,8 @@ msgstr "сверху" msgid "Top-and-Bottom" msgstr "Вертикальная стереопара" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Всего достижений" @@ -13331,7 +13528,7 @@ msgid "Toy code:" msgstr "Код игрушки:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Традиц. китайский" @@ -13351,8 +13548,8 @@ msgstr "Мастер ловушек" msgid "Trap Team" msgstr "Команда ловушек" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Ошибка промежуточного сервера" @@ -13381,7 +13578,7 @@ msgstr "Системная плата Triforce AM" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Рычажки" @@ -13391,7 +13588,7 @@ msgid "Trophy" msgstr "Трофей" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13405,7 +13602,7 @@ msgstr "Выравнивание по типу" msgid "Typical GameCube/Wii Address Space" msgstr "Обычное адресное пространство GameCube/Wii" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "НЕИЗВЕСТНО" @@ -13417,7 +13614,7 @@ msgstr "США" msgid "USB Device Emulation" msgstr "Эмуляция устройства USB" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "Эмуляция USB" @@ -13435,7 +13632,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Ошибка белого списка USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13446,7 +13643,7 @@ msgstr "" "слабого оборудования.

Если не уверены – выберите " "этот режим." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13459,7 +13656,7 @@ msgstr "" "вас не бывает подтормаживаний или же у вас слабый ГП — не пользуйтесь этим " "режимом.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13473,7 +13670,7 @@ msgstr "" "подтормаживания при компиляции шейдеров с минимальным влиянием на " "производительность, но конечный результат зависит от поведения драйвера ГП." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Не удалось автоматически обнаружить модуль RSO" @@ -13544,11 +13741,11 @@ msgstr "Несжатые образы GC/Wii (*.iso *.gcm)" msgid "Undead" msgstr "Нежить" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Отменить быструю загрузку" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Отменить быстрое сохранение" @@ -13568,28 +13765,28 @@ msgstr "" "Удаление WAD приведет к удалению текущей версии этого продукта из NAND без " "удаления его сохраненных данных. Продолжить?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "США" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Неизвестно" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Неизвестно (Ид.:%1 Пер.:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Неизвестная команда DVD {0:08x} - критическая ошибка" @@ -13664,11 +13861,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Неизвестный(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Неизвестный(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Без ограничения" @@ -13680,21 +13877,9 @@ msgstr "Выгрузить образ игры" msgid "Unlock Cursor" msgstr "Разблок. курсор" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Разблокировано" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Разблокировано %1 раз(а) в этом сеансе" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Разблокировано (казуальная игра)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Разблокировано в этом сеансе" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13720,7 +13905,7 @@ msgstr "32-разрядное число без знака" msgid "Unsigned 8" msgstr "8-разрядное число без знака" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Беззнаковое целое" @@ -13734,8 +13919,8 @@ msgstr "Беззнаковое целое" msgid "Up" msgstr "Вверх" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Обновление" @@ -13743,11 +13928,11 @@ msgstr "Обновление" msgid "Update Partition (%1)" msgstr "Обновить раздел (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Обновить после закрытия Dolphin" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Доступно обновление" @@ -13792,7 +13977,7 @@ msgstr "Поставить вертикально" msgid "Upright Wii Remote" msgstr "Wii Remote вертикально" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Настройки отправки статистики об использовании" @@ -13802,15 +13987,15 @@ msgstr "" "Используйте 8.8.8.8 для обычной DNS, в противном случае введите свой " "собственный" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Использовать все данные сохранений Wii" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Использовать встроенную базу названий игр" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Использовать кодек без потерь (FFV1)" @@ -13818,15 +14003,21 @@ msgstr "Использовать кодек без потерь (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Использовать наведение с помощью мыши" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Режим PAL60 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Использовать обработчики ошибок" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13839,6 +14030,18 @@ msgid "" "Anisotropic Filtering is currently incompatible with Manual Texture Sampling." "

If unsure, leave this unchecked." msgstr "" +"Использование ручного варианта осуществления выборки текстур вместо " +"встроенной функциональности внутреннего графического интерфейса.

Эта " +"настройка может исправить графические проблемы в некоторых играх на " +"определенных ГП, чаще всего вертикальные линии в FMV. Кроме того, включение " +"ручной выборки текстур позволит корректно эмулировать искривление текстуры в " +"особых случаях (при внутреннем разрешении 1x или при отключённом " +"масштабировании EFB, а также при отключённых пользовательских текстурах) и " +"лучше эмулирует расчёт уровня детализации.

Это обеспечивается за счёт " +"потенциально худшей производительности, особенно при высоких внутренних " +"разрешениях; кроме того, анизотропная фильтрация в настоящее время " +"несовместима с ручной выборкой текстур.

Если вы не " +"уверены, снимите этот флажок." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:141 msgid "Use a single depth buffer for both eyes. Needed for a few games." @@ -13862,7 +14065,7 @@ msgstr "По возможности использовать виртуальн msgid "User Config" msgstr "Пользовательская конфигурация" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Интерфейс пользователя" @@ -13881,10 +14084,17 @@ msgstr "" "Вы можете использовать их для сохранения и извлечения значений между\n" "входами и выходами одного и того же родительского контроллера." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Имя пользователя" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13897,7 +14107,7 @@ msgstr "" "зависимости от игры и/или ГП.

Если не уверены – " "оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13907,7 +14117,7 @@ msgstr "" "этого будет создано отдельное окно вывода.

Если не " "уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
В противном случае, " "если не уверены – оставьте выключенной." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14200,8 +14413,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Предупреждение" @@ -14214,7 +14427,7 @@ msgstr "" "переопределения папки GCI. Изменение пути к GCI здесь не будет иметь " "никакого эффекта." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14231,7 +14444,7 @@ msgstr "" "Предупреждение: количество блоков, указанное в BAT ({0}), не совпадает с " "указанным в заголовке загруженного файла ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14241,7 +14454,7 @@ msgstr "" "ролика. (байт {0} > {1}) (ввод {2} > {3}). Перед продолжением загрузите " "другое сохранение или загрузите это сохранение с правами на запись." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14251,7 +14464,7 @@ msgstr "" "текущим кадром в сохранении (байт {0} < {1}) (кадр {2} < {3}). Перед " "продолжением загрузите другое сохранение." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14261,7 +14474,7 @@ msgstr "" "({1:#x}). Перед продолжением загрузите другое сохранение или загрузите это " "сохранение с правами на запись. Иначе весьма вероятна рассинхронизация." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14322,7 +14535,7 @@ msgstr "Западная (Windows-1252)" msgid "Whammy" msgstr "Флойд" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14335,7 +14548,7 @@ msgstr "" "

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14348,7 +14561,7 @@ msgstr "" "

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Белый список пробрасываемых USB-устройств" @@ -14380,25 +14593,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" -msgstr "" +msgstr "Акселерометр Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Кнопки Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" -msgstr "" +msgstr "Гироскоп Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Настройки контроллера Wii" @@ -14406,19 +14619,19 @@ msgstr "Настройки контроллера Wii" msgid "Wii Remotes" msgstr "Контроллеры Wii" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Ввод Wii TAS %1 - Контроллер Classic" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Ввод Wii TAS %1 - Wii Remote" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Ввод Wii TAS %1 - Wii Remote + Нунчак" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii и Wii Remote" @@ -14426,7 +14639,7 @@ msgstr "Wii и Wii Remote" msgid "Wii data is not public yet" msgstr "Данные Wii ещё не опубликованы" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Файлы сохранений Wii (*.bin);;Все файлы (*)" @@ -14434,28 +14647,22 @@ msgstr "Файлы сохранений Wii (*.bin);;Все файлы (*)" msgid "WiiTools Signature MEGA File" msgstr "MEGA-файл с сигнатурами WiiTools" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" -msgstr "" +msgstr "Разрешение окна" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" msgstr "Размер окна" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" -msgstr "" +msgstr "Очистить &данные контроля" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" -msgstr "" +msgstr "Удалить последние достижения" #: Source/Core/DolphinQt/Config/LogWidget.cpp:134 msgid "Word Wrap" @@ -14467,12 +14674,13 @@ msgstr "Мир" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Запись" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Запись дампа журнала блока JIT" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. @@ -14503,50 +14711,50 @@ msgstr "Записать в лог и остановиться" msgid "Write to Window" msgstr "Записать в окно" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" -msgstr "" +msgstr "Неверный номер диска" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" -msgstr "" +msgstr "Неверный хэш" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" -msgstr "" +msgstr "Неверный регион" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" -msgstr "" +msgstr "Неверная версия" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Записано в «%1»." -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Записано в «{0}»." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF-регистр " #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:93 msgid "XLink Kai BBA Destination Address" -msgstr "" +msgstr "Адрес назначения BBA XLink Kai" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14574,19 +14782,25 @@ msgstr "Да" msgid "Yes to &All" msgstr "Да для &всех" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" +"Вы собираетесь преобразовать содержимое файла по адресу %2 в папку по адресу " +"%1. Всё текущее содержимое папки будет удалено. Вы уверены, что хотите " +"продолжить?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " "to continue?" msgstr "" +"Вы собираетесь преобразовать содержимое папки по адресу %1 в файл по адресу " +"%2. Всё текущее содержимое файла будет удалено. Вы уверены, что хотите " +"продолжить?" #: Source/Core/DolphinQt/NKitWarningDialog.cpp:39 msgid "" @@ -14628,6 +14842,9 @@ msgid "" "for \"Phantasy Star Online Episode I & II\". If you are unsure, turn back " "now and configure a \"Standard Controller\"." msgstr "" +"Вы настраиваете «Контроллер клавиатуры». Это устройство предназначено " +"исключительно для игры «Phantasy Star Online Episode I & II». Если вы не " +"уверены, вернитесь назад и настройте «Стандартный контроллер»." #: Source/Core/UICommon/AutoUpdate.cpp:222 msgid "You are running the latest version available on this update track." @@ -14647,6 +14864,16 @@ msgid "" "Would you like to stop now to fix the problem?\n" "If you select \"No\", audio might be garbled." msgstr "" +"Вы используете старый бесплатный ROM DSP, созданный командой Dolphin.\n" +"В связи с улучшением точности эмуляции, этот ROM больше не работает " +"правильно.\n" +"\n" +"Удалите файлы dsp_rom.bin и dsp_coef.bin из папки GC в папке пользователя, " +"чтобы использовать самый последний бесплатный ROM DSP, или замените их " +"качественными дампами из настоящей консоли GameCube/Wii.\n" +"\n" +"Хотите остановиться, чтобы устранить проблему?\n" +"Если выбрать «Нет», звук может быть искажён." #: Source/Core/Core/IOS/ES/ES.cpp:337 msgid "" @@ -14666,6 +14893,9 @@ msgid "" "\n" "Do you want to save all and exit?" msgstr "" +"У вас открыты несохранённые вкладки сборки (%1)\n" +"\n" +"Сохранить всё и выйти?" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229 msgid "You have to enter a name." @@ -14679,7 +14909,7 @@ msgstr "Вы должны ввести имя вашей сессии!" msgid "You must provide a region for your session!" msgstr "Вы должны указать регион для вашей сессии!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Необходимо перезапустить Dolphin, чтобы изменения вступили в силу." @@ -14698,17 +14928,27 @@ msgid "" "Would you like to stop now to fix the problem?\n" "If you select \"No\", audio might be garbled." msgstr "" +"Ваши ROM DSP имеют неправильные хэши.\n" +"\n" +"Удалите файлы dsp_rom.bin и dsp_coef.bin из папки GC в папке пользователя, " +"чтобы использовать бесплатные ROM DSP, или замените их качественными дампами " +"из настоящей консоли GameCube/Wii.\n" +"\n" +"Остановиться сейчас, чтобы устранить проблему?\n" +"Если выбрать «Нет», звук может быть искажён." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" +"Ваша память NAND содержит больше данных, чем разрешено. Программное " +"обеспечение Wii может вести себя неправильно или не разрешить сохранение." #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14717,9 +14957,9 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 code не поддерживается" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." -msgstr "" +msgstr "Осталось 0 кандидатов." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14739,7 +14979,7 @@ msgstr "^ Искл. или" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "aligned" -msgstr "" +msgstr "выровнено" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:209 msgid "any value" @@ -14766,7 +15006,7 @@ msgid "default" msgstr "по умолчанию" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "не подключено" @@ -14774,7 +15014,7 @@ msgstr "не подключено" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-карточки (*.raw);;Все файлы (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "номер ошибки" @@ -14782,9 +15022,9 @@ msgstr "номер ошибки" msgid "fake-completion" msgstr "ложное дополнение" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" -msgstr "" +msgstr "ложь" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:190 msgid "is equal to" @@ -14832,16 +15072,6 @@ msgstr "" msgid "none" msgstr "отсутствует" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "выкл." - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "на" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "или выберите устройство" @@ -14853,15 +15083,15 @@ msgstr "с" #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:101 msgid "sRGB" -msgstr "" +msgstr "sRGB" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:206 msgid "this value:" msgstr "это значение:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" -msgstr "" +msgstr "истина" #: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:35 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:185 @@ -14870,7 +15100,7 @@ msgstr "Планшет uDraw GameTablet" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:176 msgid "unaligned" -msgstr "" +msgstr "не выровнено" #. i18n: This string is referring to a game mode in Super Smash Bros. Brawl called Masterpieces #. where you play demos of NES/SNES/N64 games. This string is referring to a specific such demo @@ -14927,11 +15157,9 @@ msgstr "| Или" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Команда Dolphin. “GameCube” и “Wii” являются торговыми марками " -"Nintendo. Dolphin никоим образом не связан с Nintendo." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/sr.po b/Languages/po/sr.po index 0dddc086a0..5dfc4624f3 100644 --- a/Languages/po/sr.po +++ b/Languages/po/sr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: nikolassj, 2011\n" "Language-Team: Serbian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -113,7 +113,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -144,11 +144,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -165,40 +165,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -206,13 +200,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -224,30 +218,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -259,6 +253,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "" @@ -328,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -341,7 +339,7 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "" @@ -349,15 +347,15 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "" @@ -365,11 +363,15 @@ msgstr "" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -377,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -393,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "" @@ -401,16 +403,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -418,20 +419,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -445,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulacija" @@ -469,41 +470,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Fajl" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Graficke Opcije" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Pomoc" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Hotkey Opcije" @@ -523,11 +524,11 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -535,23 +536,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "Loaduj Savestate" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -561,19 +562,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "" @@ -581,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -590,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Pokreni" @@ -614,7 +619,7 @@ msgstr "&Pokreni" msgid "&Properties" msgstr "&Pribor/Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "" @@ -622,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Registri" @@ -635,24 +640,24 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -660,31 +665,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Stop" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Alat" @@ -694,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Pogledaj" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "" @@ -720,23 +725,23 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -772,12 +777,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -838,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -896,7 +901,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -922,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1015,26 +1020,26 @@ msgstr "" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1057,8 +1062,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1072,7 +1077,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1086,7 +1091,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1102,7 +1107,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1127,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1170,16 +1175,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1252,7 +1251,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1260,15 +1259,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1276,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter" @@ -1286,7 +1285,7 @@ msgstr "Adapter" msgid "Add" msgstr "Dodaj" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1311,43 +1310,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Dodaj..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "" @@ -1473,7 +1472,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1482,7 +1481,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1490,34 +1489,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1533,7 +1532,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1541,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1559,7 +1558,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1581,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "" @@ -1607,15 +1606,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1633,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1641,7 +1640,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1653,7 +1652,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1665,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "" @@ -1682,7 +1681,7 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1694,7 +1693,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1715,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Zvuk" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1735,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1744,11 +1743,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1756,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1764,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1812,27 +1811,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "" @@ -1875,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Baner" @@ -1895,15 +1894,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Osnovno/ni/ne" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Osnovne opcije" @@ -1919,10 +1918,6 @@ msgstr "" msgid "Battery" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1955,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1969,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2005,67 +2000,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Donji deo/dno" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2077,23 +2072,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2110,7 +2105,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2120,19 +2115,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2147,19 +2142,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2193,24 +2193,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2255,11 +2255,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2310,7 +2310,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2336,7 +2336,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2352,18 +2352,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2372,15 +2372,15 @@ msgstr "" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2396,11 +2396,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2408,7 +2408,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2416,7 +2416,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Promeni &Disk..." @@ -2456,15 +2456,21 @@ msgstr "Promeni &Disk..." msgid "Change Disc" msgstr "Promeni Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2482,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2490,11 +2496,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chat/Caskanje" @@ -2502,7 +2508,7 @@ msgstr "Chat/Caskanje" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Trazi Chit" @@ -2510,7 +2516,7 @@ msgstr "Trazi Chit" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2528,7 +2534,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2540,7 +2546,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Biraj fajl da otvoris " @@ -2548,15 +2554,15 @@ msgstr "Biraj fajl da otvoris " msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2569,7 +2575,7 @@ msgstr "Biraj folder u kome zelis da ekstraktujes " msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2580,18 +2586,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Ocisti" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2612,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2620,11 +2626,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2652,11 +2658,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2683,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2693,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2706,7 +2712,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2714,11 +2720,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2734,7 +2740,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2749,7 +2755,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2803,7 +2814,7 @@ msgstr "" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2816,27 +2827,27 @@ msgstr "" msgid "Configure Output" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2846,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "" @@ -2874,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "" @@ -2890,7 +2901,7 @@ msgstr "" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2915,7 +2926,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "" @@ -3002,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3011,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3021,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3043,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3073,22 +3084,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3096,19 +3107,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3126,8 +3137,8 @@ msgstr "" msgid "Core" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3234,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3250,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Zemlja:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3270,7 +3281,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3287,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Izseci" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3303,42 +3314,42 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3346,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3397,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3405,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3439,7 +3450,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3484,8 +3495,8 @@ msgstr "Mrtva Zona " msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3494,7 +3505,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3533,7 +3544,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "" @@ -3541,7 +3552,7 @@ msgstr "" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3553,11 +3564,11 @@ msgstr "" msgid "Default ISO:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3565,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3574,8 +3585,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Obrisi" @@ -3605,12 +3617,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3624,8 +3636,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3637,21 +3649,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3659,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Detekuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3667,11 +3679,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Uredjaj " @@ -3689,7 +3701,7 @@ msgstr "Opcije Uredjaja " msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3697,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3713,11 +3725,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3726,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3734,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3746,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemoguci \"Fog\"" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3765,7 +3772,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disk" @@ -3789,6 +3802,10 @@ msgstr "Disk" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3819,11 +3836,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3833,7 +3850,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3841,12 +3858,12 @@ msgstr "" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3854,9 +3871,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3868,8 +3885,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -3902,7 +3919,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3916,13 +3933,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3931,7 +3948,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3952,7 +3969,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3974,7 +3991,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3986,6 +4003,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4025,19 +4052,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "" @@ -4045,7 +4072,7 @@ msgstr "" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4053,7 +4080,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4078,44 +4105,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4127,7 +4154,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4135,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "" @@ -4154,7 +4181,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4174,7 +4210,7 @@ msgstr "" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4196,11 +4232,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "" @@ -4226,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4248,34 +4284,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4283,15 +4309,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "" @@ -4303,7 +4333,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4311,15 +4341,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4337,41 +4367,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "" @@ -4379,19 +4401,23 @@ msgstr "" msgid "Enable Speaker Data" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "" @@ -4399,34 +4425,13 @@ msgstr "" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4434,34 +4439,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4492,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4500,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4517,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4543,7 +4555,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4551,7 +4563,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4559,7 +4571,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4578,13 +4590,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "" @@ -4601,7 +4617,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4625,33 +4641,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4664,52 +4680,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -4726,7 +4742,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4740,7 +4756,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4831,12 +4847,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4880,11 +4896,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "" @@ -4899,7 +4915,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "" @@ -4927,14 +4943,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "" @@ -4947,7 +4963,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4955,35 +4971,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4992,8 +5008,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "" @@ -5007,11 +5023,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5031,7 +5047,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5052,15 +5068,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5106,15 +5122,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5133,25 +5149,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5171,18 +5187,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5194,21 +5210,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5222,17 +5238,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5240,7 +5256,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5270,15 +5286,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5286,11 +5302,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5337,23 +5353,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5367,7 +5383,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5398,31 +5414,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5473,19 +5489,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5498,7 +5514,7 @@ msgstr "Brzo " msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5509,7 +5525,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5523,7 +5539,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5531,24 +5547,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "" @@ -5633,7 +5649,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5642,12 +5657,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5667,7 +5682,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "" @@ -5675,7 +5690,7 @@ msgstr "" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "" @@ -5707,11 +5722,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5733,6 +5748,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5748,7 +5769,7 @@ msgstr "" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5758,7 +5779,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5779,11 +5800,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "" @@ -5791,7 +5812,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5811,7 +5832,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5842,7 +5863,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "" @@ -5861,8 +5882,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5870,10 +5891,14 @@ msgstr "" msgid "FullScr" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5914,11 +5939,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5960,7 +5985,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5970,25 +5995,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6000,7 +6025,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6018,22 +6043,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6062,7 +6087,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "" @@ -6071,25 +6096,25 @@ msgstr "" msgid "Game ID:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6102,7 +6127,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6122,11 +6147,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6134,11 +6159,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6155,7 +6180,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6183,7 +6208,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6193,35 +6218,35 @@ msgstr "" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Nemacki " @@ -6248,7 +6273,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6257,7 +6282,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafike" @@ -6297,7 +6322,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6334,7 +6359,7 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6366,7 +6391,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6375,11 +6400,11 @@ msgstr "" msgid "Hide" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6391,16 +6416,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6423,7 +6455,7 @@ msgstr "" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6431,7 +6463,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6439,11 +6471,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6455,7 +6487,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6465,11 +6497,11 @@ msgstr "" msgid "Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6522,12 +6554,12 @@ msgstr "" msgid "IPL Settings" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "" @@ -6553,14 +6585,14 @@ msgstr "" msgid "Icon" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6577,7 +6609,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6591,14 +6623,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6610,7 +6642,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6642,7 +6674,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6651,7 +6683,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6666,21 +6698,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6758,7 +6799,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6767,7 +6808,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6787,12 +6828,12 @@ msgstr "Info " #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Informacija " -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6801,11 +6842,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "" @@ -6819,23 +6860,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "" @@ -6848,11 +6885,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6860,13 +6897,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6875,7 +6912,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6884,7 +6921,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6901,19 +6938,19 @@ msgstr "" msgid "Interface" msgstr "" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6926,19 +6963,19 @@ msgstr "" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6953,7 +6990,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6961,7 +6998,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6977,7 +7014,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6986,11 +7023,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7011,7 +7048,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7027,19 +7064,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" @@ -7047,13 +7084,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italianski " @@ -7066,11 +7103,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7078,47 +7115,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7130,31 +7167,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japanski " @@ -7171,12 +7208,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7210,16 +7247,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korejski " @@ -7240,7 +7277,7 @@ msgstr "" msgid "L-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7248,7 +7285,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7262,23 +7303,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7286,7 +7327,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7294,7 +7335,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7305,7 +7346,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "" @@ -7373,11 +7414,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7386,30 +7427,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Ucitaj " -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "" @@ -7417,11 +7458,11 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7527,23 +7568,23 @@ msgstr "Ucitaj State Slot 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7551,54 +7592,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7607,19 +7656,19 @@ msgstr "" msgid "Log Configuration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7631,31 +7680,31 @@ msgstr "" msgid "Logger Outputs" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7667,7 +7716,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7715,7 +7764,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7732,16 +7781,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7753,11 +7802,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7766,7 +7815,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7787,7 +7836,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7815,7 +7864,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7829,7 +7878,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7838,15 +7887,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7858,7 +7907,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7878,7 +7927,7 @@ msgstr "" msgid "Modifier" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7894,8 +7943,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7903,7 +7952,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7915,11 +7964,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7928,23 +7977,10 @@ msgstr "" msgid "Motor" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7955,13 +7991,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7974,10 +8010,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7986,8 +8022,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -7996,7 +8032,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8013,8 +8049,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8057,7 +8093,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8073,27 +8109,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8101,16 +8137,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8135,7 +8171,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8152,7 +8188,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8198,7 +8234,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8206,12 +8242,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "" @@ -8223,7 +8259,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8231,7 +8267,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8244,11 +8280,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8271,7 +8307,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8288,10 +8324,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "" @@ -8303,7 +8339,7 @@ msgstr "" msgid "Not Set" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8323,7 +8359,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8367,26 +8403,26 @@ msgstr "" msgid "Nunchuk" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8438,7 +8474,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "" @@ -8459,18 +8495,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8485,7 +8521,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "" @@ -8493,13 +8529,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8516,7 +8552,7 @@ msgstr "Otvori " msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8525,7 +8561,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8591,34 +8627,34 @@ msgstr "" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8633,11 +8669,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8653,16 +8689,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8675,11 +8711,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8691,7 +8727,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8725,7 +8761,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8763,15 +8799,15 @@ msgstr "" msgid "Pause" msgstr "Pauza " -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8787,6 +8823,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8806,7 +8848,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8814,15 +8856,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8840,11 +8882,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8857,7 +8899,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8865,7 +8907,7 @@ msgstr "" msgid "Play" msgstr "Pokreni " -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8877,40 +8919,40 @@ msgstr "Pokreni snimanje " msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "" @@ -8927,7 +8969,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8943,7 +8985,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8960,7 +9002,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8976,24 +9018,32 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9016,7 +9066,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9031,7 +9081,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9042,7 +9092,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9076,7 +9126,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9085,23 +9135,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9121,18 +9177,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Pitanje " -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Izadji " @@ -9149,19 +9205,19 @@ msgstr "" msgid "R-Analog" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9182,7 +9238,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9190,16 +9246,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9238,8 +9295,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9248,23 +9305,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9297,7 +9354,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9328,7 +9385,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9349,7 +9406,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9357,7 +9418,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "" @@ -9385,20 +9446,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9412,10 +9473,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9425,7 +9492,7 @@ msgstr "Reset/Restart " msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9457,7 +9524,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9469,7 +9536,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9477,11 +9544,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9490,7 +9557,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9502,7 +9569,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9513,7 +9580,7 @@ msgstr "" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "" @@ -9549,11 +9616,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9571,27 +9638,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9604,7 +9675,7 @@ msgstr "" msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9612,15 +9683,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9628,23 +9699,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9652,7 +9723,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9687,11 +9758,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "" @@ -9701,9 +9772,9 @@ msgid "Safe" msgstr "Siguran " #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9713,25 +9784,25 @@ msgstr "Snimaj" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9745,11 +9816,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9761,7 +9832,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9811,23 +9882,23 @@ msgstr "Snimaj State Slot 8" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9835,7 +9906,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9847,11 +9918,11 @@ msgstr "" msgid "Save as..." msgstr "Snimaj kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9862,11 +9933,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9874,11 +9945,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9890,7 +9961,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9907,8 +9978,8 @@ msgid "ScrShot" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "" @@ -9917,7 +9988,7 @@ msgstr "" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9935,7 +10006,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9943,7 +10014,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9977,7 +10048,7 @@ msgstr "Izaberi " #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9988,23 +10059,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10032,7 +10103,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10040,7 +10111,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "" @@ -10101,13 +10172,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10115,7 +10186,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10127,7 +10198,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10135,11 +10206,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10147,12 +10218,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Izaberi \"snimani fajl/the save state\"" @@ -10175,16 +10246,16 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10200,7 +10271,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10230,7 +10301,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10252,7 +10323,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10262,11 +10333,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Isprati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "" @@ -10294,6 +10365,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10311,52 +10386,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10364,7 +10454,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10386,32 +10476,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10420,7 +10510,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10429,31 +10519,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10461,23 +10551,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10485,27 +10575,27 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "" @@ -10514,27 +10604,27 @@ msgstr "" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10542,72 +10632,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10615,71 +10705,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10701,7 +10824,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10720,12 +10843,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "" @@ -10742,7 +10865,7 @@ msgstr "" msgid "Size" msgstr "Velicina" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10752,7 +10875,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10796,6 +10919,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10866,7 +10992,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10880,7 +11006,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "" @@ -10888,19 +11014,19 @@ msgstr "" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10925,11 +11051,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10937,25 +11063,25 @@ msgstr "" msgid "Standard Controller" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Pokreni " -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10963,7 +11089,7 @@ msgstr "" msgid "Start Recording" msgstr "Pokreni Snimanje" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10975,14 +11101,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11014,19 +11140,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11035,7 +11161,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11064,16 +11190,16 @@ msgid "Stick" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr " Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11105,11 +11231,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11123,7 +11249,11 @@ msgstr "" msgid "Strum" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11134,18 +11264,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11155,7 +11285,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11168,24 +11298,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11208,16 +11338,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11261,17 +11391,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11279,7 +11409,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11297,7 +11427,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11316,24 +11446,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11343,7 +11473,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11351,7 +11481,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "" @@ -11359,7 +11489,7 @@ msgstr "" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11375,9 +11505,9 @@ msgstr "" msgid "Test" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11390,7 +11520,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11402,7 +11532,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "" @@ -11439,13 +11569,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11460,7 +11590,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11507,7 +11637,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11517,7 +11647,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11596,7 +11726,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11636,7 +11766,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11695,12 +11825,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11720,7 +11850,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11754,7 +11884,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11812,7 +11942,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11834,6 +11964,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11845,8 +11979,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11892,11 +12026,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11912,7 +12046,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12011,7 +12145,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12031,7 +12165,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12071,7 +12205,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12084,7 +12218,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12092,11 +12226,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12119,14 +12253,14 @@ msgstr "" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "" @@ -12135,12 +12269,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12165,7 +12299,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12221,7 +12355,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12229,7 +12363,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "" @@ -12237,8 +12371,8 @@ msgstr "" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12280,7 +12414,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "" @@ -12300,8 +12434,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12328,7 +12462,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "" @@ -12338,7 +12472,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12352,7 +12486,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12364,7 +12498,7 @@ msgstr "" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12382,14 +12516,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12397,7 +12531,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12406,7 +12540,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12469,11 +12603,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "" @@ -12491,28 +12625,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Nepoznat/o" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12583,11 +12717,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "" @@ -12599,20 +12733,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12639,7 +12761,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12653,8 +12775,8 @@ msgstr "" msgid "Up" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Updejt " @@ -12662,11 +12784,11 @@ msgstr "Updejt " msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12709,7 +12831,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12717,15 +12839,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12733,15 +12855,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12775,7 +12903,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12790,10 +12918,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12802,14 +12937,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13072,8 +13207,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Upozorenje " @@ -13083,7 +13218,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13095,28 +13230,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13161,7 +13296,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13169,7 +13304,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13177,7 +13312,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13209,25 +13344,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13235,19 +13370,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13255,7 +13390,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13263,13 +13398,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13278,11 +13407,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13296,10 +13425,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13332,39 +13462,39 @@ msgstr "" msgid "Write to Window" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13373,9 +13503,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13403,14 +13533,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13487,7 +13617,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "" @@ -13507,16 +13637,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13525,7 +13655,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13574,7 +13704,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13582,7 +13712,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13590,7 +13720,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13638,16 +13768,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13665,7 +13785,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13730,7 +13850,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/sv.po b/Languages/po/sv.po index c3cecfef96..e362669471 100644 --- a/Languages/po/sv.po +++ b/Languages/po/sv.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: JosJuice, 2015-2024\n" "Language-Team: Swedish (http://app.transifex.com/delroth/dolphin-emu/" @@ -95,7 +95,7 @@ msgstr "" "%1\n" "vill vara med i din grupp." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -129,7 +129,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (revision %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (inbyggd)" @@ -149,7 +149,7 @@ msgstr "%1 (långsamt)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -163,11 +163,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1-grafikkonfigurering" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -184,7 +184,7 @@ msgstr "%1 stöder inte den här funktionen på ditt system." msgid "%1 doesn't support this feature." msgstr "%1 stöder inte den här funktionen." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -194,35 +194,27 @@ msgstr "" "%2 objekt\n" "Nuvarande bildruta: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 har gått med" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 har gått ut" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 har låst upp %2/%3 prestationer (%4 hardcore) värda %5/%6 poäng (%7 " -"hardcore)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 har låst upp %2/%3 prestationer värda %4/%5 poäng" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 är inte en giltig ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 golfar nu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 spelar %2" @@ -230,13 +222,13 @@ msgstr "%1 spelar %2" msgid "%1 memory ranges" msgstr "%1 minnesintervall" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 poäng" @@ -248,30 +240,30 @@ msgstr "%1 session hittades" msgid "%1 sessions found" msgstr "%1 sessioner hittades" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (normal hastighet)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "%1:s värde ändras" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "%1:s värde träffas" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1:s värde används" @@ -283,6 +275,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -352,11 +348,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Om" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Lägg till minnesbrytpunkt" @@ -365,7 +361,7 @@ msgstr "&Lägg till minnesbrytpunkt" msgid "&Add New Code..." msgstr "&Lägg till ny kod…" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Lägg till funktion" @@ -373,15 +369,15 @@ msgstr "&Lägg till funktion" msgid "&Add..." msgstr "&Lägg till..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Ljudinställningar" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Uppdatera automatiskt:" @@ -389,11 +385,15 @@ msgstr "&Uppdatera automatiskt:" msgid "&Borderless Window" msgstr "&Kantlöst fönster" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Brytpunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Bugghanterare" @@ -401,15 +401,15 @@ msgstr "&Bugghanterare" msgid "&Cancel" msgstr "&Avbryt" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Leta efter uppdateringar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Rensa symboler" @@ -417,7 +417,7 @@ msgstr "&Rensa symboler" msgid "&Clone..." msgstr "&Klona..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Kod" @@ -425,16 +425,15 @@ msgstr "&Kod" msgid "&Connected" msgstr "&Inkopplad" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Kontrollinställningar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Kopiera adress" @@ -442,20 +441,20 @@ msgstr "&Kopiera adress" msgid "&Create..." msgstr "&Skapa..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Radera" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Ta bort bevakning" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -469,11 +468,11 @@ msgstr "&Redigera kod…" msgid "&Edit..." msgstr "&Redigera..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Mata ut skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emulering" @@ -493,41 +492,41 @@ msgstr "&Exportera snabbsparning..." msgid "&Export as .gci..." msgstr "&Exportera som .gci..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Arkiv" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Teckensnitt…" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "Gå fram en &bildruta" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Fri vy-inställningar" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Generera symboler från" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "Källkoden på &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "G&rafikinställningar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Hjälp" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Kortkommandoinställningar" @@ -547,11 +546,11 @@ msgstr "&Importera snabbsparning..." msgid "&Import..." msgstr "&Importera..." -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinitybas" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&Infoga blr" @@ -559,23 +558,23 @@ msgstr "&Infoga blr" msgid "&Interframe Blending" msgstr "Tidsut&jämning" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Språk:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "L&äs in snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Ladda symbol-map" @@ -585,19 +584,23 @@ msgstr "&Ladda fil till nuvarande adress" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Lås fast gränssnittselement" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Inspelning" @@ -605,7 +608,7 @@ msgstr "&Inspelning" msgid "&Mute" msgstr "&Tyst" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Nätverk" @@ -614,23 +617,23 @@ msgid "&No" msgstr "&Nej" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Öppna..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "A<ernativ" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&Patcha HLE-funktioner" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Spela" @@ -638,7 +641,7 @@ msgstr "&Spela" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "S&krivskyddat läge" @@ -646,7 +649,7 @@ msgstr "S&krivskyddat läge" msgid "&Refresh List" msgstr "&Uppdatera lista" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Register" @@ -659,24 +662,24 @@ msgstr "&Ta bort" msgid "&Remove Code" msgstr "&Ta bort kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Byt namn på symbol" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Återställ" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Resurspaketshanterare" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Spara symbol-map" @@ -684,31 +687,31 @@ msgstr "&Spara symbol-map" msgid "&Scan e-Reader Card(s)..." msgstr "&Skanna e-Readerkort..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Skylandersportal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Hastighetsbegränsning:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "S&toppa" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&Trådar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Verktyg" @@ -718,21 +721,21 @@ msgstr "Ladda &ur ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Visa" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&Bevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Webbplats" @@ -744,23 +747,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' hittades inte, inga symbolnamn genererade" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' hittades inte, skannar efter vanliga funktioner istället" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -796,12 +799,12 @@ msgstr "- Subtrahera" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Okänd--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -862,7 +865,7 @@ msgstr "16-bitars signerat heltal" msgid "16-bit Unsigned Integer" msgstr "16-bitars osignerat heltal" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -920,7 +923,7 @@ msgstr "32-bitars osignerat heltal" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -946,7 +949,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 block)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1039,22 +1042,22 @@ msgstr "< Mindre än" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1062,7 +1065,7 @@ msgstr "" "Tiden tog slut för autostegning. Den nuvarande " "instruktionen är irrelevant." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1090,8 +1093,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Större än" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "En nätspelssession pågår redan!" @@ -1112,7 +1115,7 @@ msgstr "" "Om du installerar denna WAD kommer titeln skrivas över. Detta går inte att " "ångra. Vill du fortsätta?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "En skiva håller redan på att sättas in." @@ -1128,7 +1131,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "En snabbsparning kan inte laddas utan att ange ett spel att starta." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1149,7 +1152,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Det går bara att synka när ett Wii-spel körs." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1187,7 +1190,7 @@ msgstr "" "nödvändigtvis korrekt.\n" "Använd det på egen risk.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kod" @@ -1230,16 +1233,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Prestationer" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Handling" @@ -1328,7 +1325,7 @@ msgstr "Action Replay: Normalkod {0}: Ogiltig undertyp {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Aktivera nätspelschatt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktiv" @@ -1336,15 +1333,15 @@ msgstr "Aktiv" msgid "Active Infinity Figures:" msgstr "Aktiva Infinityfigurer:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Aktiv trådkö" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Aktiva trådar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "Adapter" @@ -1352,7 +1349,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter upptäcktes" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "Adapter:" @@ -1362,7 +1359,7 @@ msgstr "Adapter:" msgid "Add" msgstr "Lägg till" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "Lägg till &brytpunkt" @@ -1387,43 +1384,43 @@ msgstr "Lägg till brytpunkt" msgid "Add a Memory Breakpoint" msgstr "Lägg till en minnesbrytpunkt" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Lägg till minnes&brytpunkt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Lägg till minnesbrytpunkt" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "Lägg till &bevakning" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Lägg till bevakning" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Lägg till..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adress" @@ -1568,7 +1565,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Alla double" @@ -1577,7 +1574,7 @@ msgstr "Alla double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1585,34 +1582,34 @@ msgid "All Files" msgstr "Alla filer" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Alla filer (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Alla float" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alla GC/Wii-filer" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alla snabbsparningar (*.sav *.s##);; Alla filer (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1628,7 +1625,7 @@ msgstr "Alla spelares koder har synkroniserats." msgid "All players' saves synchronized." msgstr "Alla spelares sparfiler har synkroniserats." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Tillåt regionsinställningar som inte matchar" @@ -1636,7 +1633,7 @@ msgstr "Tillåt regionsinställningar som inte matchar" msgid "Allow Usage Statistics Reporting" msgstr "Tillåt rapportering av användningsstatistik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "Tillåt ändringar på SD-kort" @@ -1656,7 +1653,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Alternativa inmatningskällor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Alltid" @@ -1678,7 +1675,7 @@ msgstr "En inmatad skiva förväntades men hittades inte." msgid "Anaglyph" msgstr "Anaglyf" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analysera" @@ -1704,15 +1701,15 @@ msgstr "Kantutjämning:" msgid "Any Region" msgstr "Valfri region" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Lägg till signatur i" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "Lägg till i &existerande signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "Appli&cera signaturfil..." @@ -1732,7 +1729,7 @@ msgstr "Apploader-datum:" msgid "Apply" msgstr "Verkställ" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "Applicera signaturfil" @@ -1740,7 +1737,7 @@ msgstr "Applicera signaturfil" msgid "Arbitrary Mipmap Detection" msgstr "Upptäck godtyckliga mipmaps" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "Vill du verkligen radera '%1'?" @@ -1752,7 +1749,7 @@ msgstr "Vill du verkligen radera den här filen?" msgid "Are you sure you want to delete this pack?" msgstr "Är du säker på att du vill radera det här paketet?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "Är du säker på att du vill avsluta nätspelssessionen?" @@ -1764,16 +1761,16 @@ msgstr "Är du säker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "Bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "Bildförhållande:" @@ -1781,7 +1778,7 @@ msgstr "Bildförhållande:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1793,7 +1790,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Tilldela kontrolluttag" @@ -1814,11 +1811,11 @@ msgstr "Anslut MotionPlus" msgid "Audio" msgstr "Ljud" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Ljudbackend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Ljudsträckningsinställningar" @@ -1834,7 +1831,7 @@ msgstr "Skapare" msgid "Authors" msgstr "Författare" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1843,11 +1840,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (multipel av 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Automatiska uppdateringar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1860,7 +1857,7 @@ msgstr "" "\n" "Välj en specifik intern upplösning." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Autojustera fönsterstorlek" @@ -1868,15 +1865,15 @@ msgstr "Autojustera fönsterstorlek" msgid "Auto-Hide" msgstr "Dölj automatiskt" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "Upptäck RSO-moduler automatiskt?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Synkronisera med mapp automatiskt" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1922,27 +1919,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP-register" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Bakåtkedja" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Flertrådning i backend" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Backendinställningar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Backend:" @@ -1985,7 +1982,7 @@ msgstr "Ogiltigt värde angivet." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Banner" @@ -2005,15 +2002,15 @@ msgstr "Svajarm" msgid "Base Address" msgstr "Basadress" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Basprioritet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Grundläggande" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Grundläggande inställningar" @@ -2029,10 +2026,6 @@ msgstr "Batchläget kan inte användas utan att ange ett spel att starta." msgid "Battery" msgstr "Batteri" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (en gång i månaden)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, etc" @@ -2065,11 +2058,11 @@ msgstr "Binär SSL (läs)" msgid "Binary SSL (write)" msgstr "Binär SSL (skriv)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bithastighet (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2079,7 +2072,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blockstorlek" @@ -2117,67 +2110,67 @@ msgstr "" "Bluetooth-genomsläppningsläge är påslaget, men Dolphin byggdes utan libusb. " "Genomsläppningsläge kan inte användas." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Pausa vid start" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-kopia (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii-nyckelfil (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Kantlös helskärm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Under" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2189,23 +2182,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2222,7 +2215,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2232,19 +2225,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2259,19 +2252,24 @@ msgstr "Grenar" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Bryt" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Brytpunkt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Brytpunkt påträffades! Urstegning avbruten." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Brytpunkter" @@ -2305,24 +2303,24 @@ msgstr "Fel i bredbandsadapter" msgid "Broadband Adapter MAC Address" msgstr "Bredbandsadapterns MAC-adress" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "Bläddra bland &nätspelssessioner..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Buffertstorlek:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Buffertstorleken ändrades till %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Buffert:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2370,11 +2368,11 @@ msgstr "Av: %1" msgid "C Stick" msgstr "C-spak" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "S&kapa signaturfil..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP-register" @@ -2394,7 +2392,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Interpreterare med cache (långsammare)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2434,7 +2432,7 @@ msgstr "Kalibrering" msgid "Calibration Period" msgstr "Kalibreringstid" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "Anropa visningslista på adress %1 med storlek %2" @@ -2460,7 +2458,7 @@ msgstr "Kamera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Kamerans synfält (påverkar pekarens känslighet)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "Det går bara att generera AR-koder för värden i virtuellt minne." @@ -2476,19 +2474,19 @@ msgstr "Det går inte att redigera skurkar för den här trofén!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kan inte hitta Wii-fjärrkontrollen med anslutnings-handle {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Det går inte att starta en nätspelssession medan ett spel fortfarande körs!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Avbryt" @@ -2497,15 +2495,15 @@ msgstr "Avbryt" msgid "Cancel Calibration" msgstr "Avbryt kalibrering" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2526,11 +2524,11 @@ msgid "Cannot compare against last value on first search." msgstr "" "Det går inte att jämföra med föregående värde under den första sökningen." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "Kan inte hitta GC-IPL-filen." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Det går inte att generera en AR-kod för den här adressen." @@ -2538,7 +2536,7 @@ msgstr "Det går inte att generera en AR-kod för den här adressen." msgid "Cannot refresh without results." msgstr "Det går inte att uppdatera utan resultat." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "GCI-mappen kan inte vara en tom sökväg." @@ -2546,7 +2544,7 @@ msgstr "GCI-mappen kan inte vara en tom sökväg." msgid "Cannot set memory card to an empty path." msgstr "Minneskortet kan inte vara en tom sökväg." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "Kunde inte starta spelet för att GC-IPL-filen inte kunde hittas." @@ -2578,7 +2576,7 @@ msgstr "Centrera och kalibrera" msgid "Change &Disc" msgstr "Byt &skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "Byt s&kiva..." @@ -2586,15 +2584,21 @@ msgstr "Byt s&kiva..." msgid "Change Disc" msgstr "Byt skiva" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Byt skivor automatiskt" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Byt skiva till {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2623,7 +2627,7 @@ msgstr "" "kameran kring den ursprungliga kameran. Har ingen rörlighet sidledes, endast " "rotation, och du kan zooma upp till kamerans ursprungsläge." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Fuskändringar kommer inte börja gälla förrän spelet startas om." @@ -2631,11 +2635,11 @@ msgstr "Fuskändringar kommer inte börja gälla förrän spelet startas om." msgid "Channel Partition (%1)" msgstr "Kanalpartition (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Den angivna karaktären är ogiltig!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Chatt" @@ -2643,7 +2647,7 @@ msgstr "Chatt" msgid "Cheat Code Editor" msgstr "Fuskkodsredigerare" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Sök efter fusk" @@ -2651,7 +2655,7 @@ msgstr "Sök efter fusk" msgid "Cheats Manager" msgstr "Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "Kontrollera NAND-minne..." @@ -2671,7 +2675,7 @@ msgstr "" "Kontrollera om du har rättigheterna som krävs för att radera filen eller om " "filen fortfarande används." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Kontrollsumma" @@ -2683,7 +2687,7 @@ msgstr "Kina" msgid "Choose" msgstr "Välj" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Välj en fil att öppna" @@ -2691,15 +2695,15 @@ msgstr "Välj en fil att öppna" msgid "Choose a file to open or create" msgstr "Välj en fil att öppna eller skapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Välj primär indatafil" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "Välj sekundär indatafil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "Välj GCI-basmapp" @@ -2712,7 +2716,7 @@ msgstr "Välj filkatalogen att extrahera till" msgid "Clamping of rotation about the yaw axis." msgstr "Begränsning av horisontal rotation." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Classic-knappar" @@ -2723,18 +2727,18 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Rensa" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Rensa cache" @@ -2755,7 +2759,7 @@ msgstr "Klona och &redigera kod…" msgid "Close" msgstr "Stäng" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ko&nfiguration" @@ -2763,11 +2767,11 @@ msgstr "Ko&nfiguration" msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2795,11 +2799,11 @@ msgstr "Färgkorrigering:" msgid "Color Space" msgstr "Färgrymd" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "Kombinera &två signaturfiler..." @@ -2826,7 +2830,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Kompilera shaders före start" @@ -2836,7 +2840,7 @@ msgstr "Kompilerar shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Komprimering" @@ -2849,7 +2853,7 @@ msgstr "Komprimeringsnivå:" msgid "Compression:" msgstr "Komprimering:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2857,11 +2861,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Villkor" @@ -2877,7 +2881,7 @@ msgstr "Villkor" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Hjälp för villkor" @@ -2892,7 +2896,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2946,7 +2955,7 @@ msgstr "Konfigurera" msgid "Configure Controller" msgstr "Anpassa kontroll" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfigurera Dolphin" @@ -2959,27 +2968,27 @@ msgstr "Konfigurera inmatning" msgid "Configure Output" msgstr "Konfigurera utmatning" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekräfta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Bekräfta byte av backend" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Bekräfta vid stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Bekräftelse" @@ -2989,15 +2998,15 @@ msgstr "Bekräftelse" msgid "Connect" msgstr "Anslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Anslut balansbräda" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "Anslut USB-tangentbord" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Anslut Wii-fjärrkontroll %1" @@ -3017,7 +3026,7 @@ msgstr "Anslut Wii-fjärrkontroll 3" msgid "Connect Wii Remote 4" msgstr "Anslut Wii-fjärrkontroll 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Anslut Wii-fjärrkontroller" @@ -3033,7 +3042,7 @@ msgstr "Vill du ansluta till internet och uppdatera Wii-systemmjukvaran?" msgid "Connected" msgstr "Ansluten" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Ansluter" @@ -3058,7 +3067,7 @@ msgstr "Kontrollera nätspelsgolfläge" msgid "Control Stick" msgstr "Kontrollspak" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Kontrollprofil" @@ -3163,8 +3172,8 @@ msgstr "Konvergens" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Konvertering misslyckades." @@ -3172,9 +3181,9 @@ msgstr "Konvertering misslyckades." msgid "Convert" msgstr "Konvertera" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Konvertera fil till mapp nu" @@ -3182,9 +3191,9 @@ msgstr "Konvertera fil till mapp nu" msgid "Convert File..." msgstr "Konvertera fil..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Konvertera mapp till fil nu" @@ -3207,8 +3216,8 @@ msgstr "" "fortsätta ändå?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Konverterar..." @@ -3248,22 +3257,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopiera" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopiera &funktion" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Kopiera &hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopiera adress" @@ -3271,19 +3280,19 @@ msgstr "Kopiera adress" msgid "Copy Failed" msgstr "Kopiering misslyckades" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Kopiera hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Kopiera värde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Kopiera kod&rad" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3301,8 +3310,8 @@ msgstr "Kopiera till B" msgid "Core" msgstr "Kärna" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3439,7 +3448,7 @@ msgstr "" "I så fall kan du behöva ställa in dina minneskortsplatser i inställningarna " "igen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Kunde inte slå upp centralserver" @@ -3455,13 +3464,13 @@ msgstr "Kunde inte läsa in filen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Skapa" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Skapa Infinityfil" @@ -3475,7 +3484,7 @@ msgstr "Skapa nytt minneskort" msgid "Create Skylander File" msgstr "Skapa Skylanderfil" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Skapa mappningar för andra enheter" @@ -3492,11 +3501,11 @@ msgstr "Skapare:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Beskär" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3508,42 +3517,42 @@ msgstr "" msgid "Crossfade" msgstr "Överbländning" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Nuvarande region" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Nuvarande värde" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Aktuell kontext" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Nuvarande spel" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Aktuell tråd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3551,15 +3560,15 @@ msgstr "" msgid "Custom Address Space" msgstr "Anpassat adressutrymme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3602,7 +3611,7 @@ msgstr "DJ-skivspelare" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP-emuleringsmotor" @@ -3610,15 +3619,15 @@ msgstr "DSP-emuleringsmotor" msgid "DSP HLE (fast)" msgstr "DSP HLE (snabb)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (rekommenderas)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE-interpreterare (väldigt långsam)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE-omkompilator (långsam)" @@ -3648,7 +3657,7 @@ msgstr "Dansmatta" msgid "Dark" msgstr "Mörker" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Data" @@ -3693,8 +3702,8 @@ msgstr "Död zon" msgid "Debug" msgstr "Felsökning" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Felsökning" @@ -3703,7 +3712,7 @@ msgstr "Felsökning" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Dekodningskvalitet:" @@ -3742,7 +3751,7 @@ msgstr "Minska Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Standard" @@ -3750,7 +3759,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "Standardinställningar (skrivskyddad)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Standardenhet" @@ -3762,11 +3771,11 @@ msgstr "Standardteckensnitt" msgid "Default ISO:" msgstr "Standard-ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Förvald tråd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "Fördröj EFB-cacheinvalidering" @@ -3774,7 +3783,7 @@ msgstr "Fördröj EFB-cacheinvalidering" msgid "Defer EFB Copies to RAM" msgstr "Fördröj EFB-kopior till RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3789,8 +3798,9 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Radera" @@ -3820,12 +3830,12 @@ msgstr "Djupandel:" msgid "Depth:" msgstr "Djup:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivning" @@ -3839,8 +3849,8 @@ msgstr "Beskrivning:" msgid "Description: %1" msgstr "Beskrivning: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3852,21 +3862,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Frikopplad" @@ -3874,7 +3884,7 @@ msgstr "Frikopplad" msgid "Detect" msgstr "Sök" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "Upptäcker RSO-moduler" @@ -3882,11 +3892,11 @@ msgstr "Upptäcker RSO-moduler" msgid "Deterministic dual core:" msgstr "Deterministiska dubbla kärnor:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Utveckling (flera gånger om dagen)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Enhet" @@ -3904,7 +3914,7 @@ msgstr "Enhetsinställningar" msgid "Device VID (e.g., 057e)" msgstr "Enhetens VID (t.ex. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Enhet:" @@ -3912,7 +3922,7 @@ msgstr "Enhet:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 verkar inte vara en giltig Riivolution-XML-fil." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Gör skärmen mörkare efter fem minuters inaktivitet." @@ -3928,11 +3938,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "&Frånkopplad" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Avaktivera" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Inaktivera Bounding Box" @@ -3941,7 +3946,7 @@ msgstr "Inaktivera Bounding Box" msgid "Disable Copy Filter" msgstr "Inaktivera kopieringsfilter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "Inaktivera EFB-VRAM-kopior" @@ -3949,11 +3954,11 @@ msgstr "Inaktivera EFB-VRAM-kopior" msgid "Disable Emulation Speed Limit" msgstr "Inaktivera emuleringshastighetsgräns" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Inaktivera fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Inaktivera fastmemarena" @@ -3961,11 +3966,11 @@ msgstr "Inaktivera fastmemarena" msgid "Disable Fog" msgstr "Inaktivera dimma" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "Inaktivera JIT-cache" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3984,7 +3989,7 @@ msgstr "" "inte fungera rätt.

Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Om du är " "osäker kan du lämna detta markerat." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Skiva" @@ -4016,6 +4027,10 @@ msgstr "Skiva" msgid "Discard" msgstr "Kasta" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Visningstyp" @@ -4051,11 +4066,11 @@ 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:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 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:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Vill du tömma symbolnamnlistan?" @@ -4065,7 +4080,7 @@ 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:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Vill du stoppa den aktuella emuleringen?" @@ -4073,12 +4088,12 @@ msgstr "Vill du stoppa den aktuella emuleringen?" msgid "Do you want to try to repair the NAND?" msgstr "Vill du försöka reparera NAND-minnet?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II-dekoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin-FIFO-logg (*.dff)" @@ -4086,9 +4101,9 @@ msgstr "Dolphin-FIFO-logg (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Förinställd Dolphin-spelmod" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin-map-fil (*.map)" @@ -4100,8 +4115,8 @@ msgstr "Dolphin-signatur-CSV-fil" msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin-TAS-filmer (*.dtm)" @@ -4145,7 +4160,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:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin är för gammal för traverseringsservern" @@ -4161,14 +4176,14 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kan inte verifiera olicensierade skivor." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" "Dolphin använder detta för titlar vars region inte kan avgöras automatiskt." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins fusksystem är avstängt just nu." @@ -4177,7 +4192,7 @@ msgstr "Dolphins fusksystem är avstängt just nu." msgid "Domain" msgstr "Domän" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Uppdatera inte" @@ -4198,7 +4213,7 @@ msgstr "Dörrar låsta" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4220,7 +4235,7 @@ msgstr "Ladda ner koder" msgid "Download Codes from the WiiRD Database" msgstr "Ladda ner koder från WiiRD-databasen" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 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" @@ -4232,6 +4247,16 @@ msgstr "Nedladdning slutförd" msgid "Downloaded %1 codes. (added %2)" msgstr "Laddade ner %1 koder. (Lade till %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4271,19 +4296,19 @@ msgstr "Dumpa &FakeVMEM" msgid "Dump &MRAM" msgstr "Dumpa &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Dumpa ljud" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Dumpa bastexturer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "Dumpa EFB-mål" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Dumpa bildrutor" @@ -4291,7 +4316,7 @@ msgstr "Dumpa bildrutor" msgid "Dump GameCube BBA traffic" msgstr "Dumpa GameCube-BBA-trafik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Dumpa mipmaps" @@ -4299,7 +4324,7 @@ msgstr "Dumpa mipmaps" msgid "Dump Path:" msgstr "Dump-sökväg:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "Dumpa XFB-mål" @@ -4324,7 +4349,7 @@ msgstr "Dumpa peer-certifikat" msgid "Dump root CA certificates" msgstr "Dumpa rot-CA-certifikat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Om du är osäker kan du " "lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4343,7 +4368,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4352,25 +4377,25 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Varaktighet för turboknapptryckning (bildrutor):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 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:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Nederländska" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "A&vsluta" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB-kopia %1" @@ -4386,7 +4411,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:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4398,7 +4423,7 @@ msgstr "" "Lämpligt för tävlingar där neutralitet och minimal latens är som mest " "viktigt." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Tidiga minnesuppdateringar" @@ -4417,7 +4442,16 @@ msgstr "Östasien" msgid "Edit Breakpoint" msgstr "Redigera brytpunkt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Redigera..." @@ -4437,7 +4471,7 @@ msgstr "Effekt" msgid "Effective" msgstr "Effektivt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Faktisk prioritet" @@ -4459,11 +4493,11 @@ msgstr "Element" msgid "Embedded Frame Buffer (EFB)" msgstr "Inbäddad bildrutebuffert (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Emuleringstråd körs redan" @@ -4489,7 +4523,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Emulerade USB-enheter" @@ -4514,34 +4548,24 @@ msgstr "Emuleringshastighet" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Aktivera" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "Aktivera API-valideringslager" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Aktivera prestationer" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Aktivera ljudsträckning" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Aktivera fusk" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4549,15 +4573,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "Aktivera egen realtidsklocka" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Aktivera felsökningsgränssnitt" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Aktivera dubbla kärnor" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Aktivera dubbla kärnor (höjer prestandan)" @@ -4569,7 +4597,7 @@ msgstr "Åsidosätt den emulerade CPU:ns hastighet" msgid "Enable Emulated Memory Size Override" msgstr "Åsidosätt den emulerade minnesstorleken" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Aktivera reprisprestationer" @@ -4577,15 +4605,15 @@ msgstr "Aktivera reprisprestationer" msgid "Enable FPRF" msgstr "Aktivera FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Aktivera grafikmoddar" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4603,41 +4631,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "Aktivera MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Aktivera Progressive scan" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "Aktivera RetroAchievements.org-integrering" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Aktivera skärmsläckare" @@ -4645,19 +4665,23 @@ msgstr "Aktivera skärmsläckare" msgid "Enable Speaker Data" msgstr "Aktivera högtalardata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Aktivera inofficiella prestationer" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Aktivera statistikrapportering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "Aktivera WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Aktivera Wireframe" @@ -4665,27 +4689,6 @@ msgstr "Aktivera Wireframe" msgid "Enable Write-Back Cache (slow)" msgstr "Aktivera cache för skrivningar (långsamt)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4694,7 +4697,7 @@ msgstr "" "Aktiverar emulerad skivhastighet. Att stänga av detta kan leda till kraschar " "och andra problem i vissa spel. (PÅ = kompatibel, AV = obegränsad)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4702,38 +4705,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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 "" -"Aktiverar upplåsning av prestationer i reprisläge.

Reprisläge " -"återaktiverar prestationer som du redan har låst upp så att du får en notis " -"om du uppnår kraven för att låsa upp prestationen igen. Användbart för " -"anpassade speedrun-kriterier eller helt enkelt för skojs skull." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4768,7 +4774,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4781,7 +4787,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4808,7 +4814,7 @@ msgstr "" "SDR internt.

Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "Sträcker ut ljudet så att det matchar emulationshastigheten." @@ -4836,7 +4842,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4848,7 +4854,7 @@ msgstr "" "Forecast Channel och Nintendo Channel.\n" "Läs användarvillkoren på: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4861,7 +4867,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4886,13 +4892,17 @@ msgstr "" "\n" "Avbryter import." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet initialiserades inte" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "Engelska" @@ -4909,7 +4919,7 @@ msgstr "Ange IP-adress för enheten som kör XLink Kai-klienten:" msgid "Enter USB device ID" msgstr "Ange ID för en USB-enhet" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Ange adress att bevaka:" @@ -4933,33 +4943,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4972,52 +4982,52 @@ msgstr "Ange RSO-moduladressen:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fel" @@ -5034,7 +5044,7 @@ msgstr "Ett fel uppstod när adaptern skulle öppnas: %1" msgid "Error collecting save data!" msgstr "Fel uppstod när spardata samlades in!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5050,7 +5060,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Ett fel uppstod när sessionslistan skulle hämtas: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Ett fel uppstod när vissa texturpaket laddades" @@ -5147,12 +5157,12 @@ 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:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Exklusiva übershaders" @@ -5196,11 +5206,11 @@ msgstr "Början av uttryck förväntades." msgid "Expected variable name." msgstr "Variabelnamn förväntades." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Exportera alla Wii-sparningar" @@ -5215,7 +5225,7 @@ msgstr "Exportering misslyckades" msgid "Export Recording" msgstr "Exportera inspelning" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Exportera inspelning..." @@ -5243,14 +5253,14 @@ msgstr "Exportera som .&gcs..." msgid "Export as .&sav..." msgstr "Exportera som .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "Exporterade %n sparfil(er)" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Extern kontroll" @@ -5263,7 +5273,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:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Extern" @@ -5271,35 +5281,35 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Extern bildrutebuffert (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "Extrahera certifikat från NAND-minne" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Extrahera hela skivan..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Extrahera hela partitionen..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Extrahera fil..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Extrahera filer..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Extrahera systemdata..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Extraherar alla filer..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Extraherar katalog..." @@ -5308,8 +5318,8 @@ msgstr "Extraherar katalog..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO-spelare" @@ -5325,11 +5335,11 @@ msgstr "" "Misslyckades att öppna minneskortet:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 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:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "Misslyckades att lägga till i signaturfilen \"%1\"" @@ -5349,7 +5359,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Misslyckades att ansluta till Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Misslyckades att ansluta till server: %1" @@ -5370,15 +5380,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:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Misslyckades att skapa Infinityfil" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Misslyckades att skapa Skylanderfil!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5428,15 +5438,15 @@ msgstr "Misslyckades med att exportera %n av %1 sparfil(er)." msgid "Failed to export the following save files:" msgstr "Misslyckades att exportera följande sparfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "Misslyckades att extrahera certifikat från NAND-minnet" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Misslyckades att extrahera filen." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Misslyckades att extrahera systemdata." @@ -5458,14 +5468,14 @@ msgstr "Misslyckades att hitta en eller flera D3D-symboler" msgid "Failed to import \"%1\"." msgstr "Misslyckades att importera \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 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:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5473,7 +5483,7 @@ msgstr "" "Misslyckades att importera sparfil. Den givna filen verkar vara skadad eller " "är inte en giltig Wii-sparfil." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5484,7 +5494,7 @@ msgstr "" "minnet (Verktyg -> Hantera NAND -> Kontrollera NAND-minne...) och importera " "sedan sparfilen igen." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Misslyckades att initialisera kärnan" @@ -5507,18 +5517,18 @@ msgid "Failed to install pack: %1" msgstr "Misslyckades att installera paket: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Misslyckades att installera denna titel till NAND-minnet." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 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:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "Misslyckades att ladda RSO-model vid %1" @@ -5530,21 +5540,21 @@ msgstr "Misslyckades att ladda d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Misslyckades att ladda dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Misslyckades att läsa map-filen \"%1\"" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Misslyckades att ladda Skylanderfilen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Kunde inte läsa in den exekverbara filen till minnet." @@ -5560,17 +5570,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Misslyckades att modifiera Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Misslyckades att öppna '%1'" @@ -5578,7 +5588,7 @@ msgstr "Misslyckades att öppna '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "Misslyckades att öppna Bluetooth-enhet: {0}" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5610,15 +5620,15 @@ msgstr "" msgid "Failed to open file." msgstr "Kunde inte öppna fil." -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "Misslyckades att öppna servern" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "Misslyckades att öppna Infinityfilen!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5626,11 +5636,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "Misslyckades att öppna Skylanderfilen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5680,23 +5690,23 @@ msgstr "Misslyckades att läsa från indatafilen \"{0}\"." 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:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "Misslyckades att läsa Infinityfilen!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "Misslyckades att läsa Skylanderfilen!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5710,7 +5720,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "Misslyckades att läsa {0}" @@ -5750,31 +5760,31 @@ msgstr "" "Misslyckades att nollställa nätspelsomdirigeringsmappen. Kontrollera " "skrivrättigheterna." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "Misslyckades att spara FIFO-logg." -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 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:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "Misslyckades att spara signaturfilen \"%1\"" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 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:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "Misslyckades att spara till signaturfilen \"%1\"" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5827,19 +5837,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "Misslyckades" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "Rättvis latens" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "Region" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "Region:" @@ -5852,7 +5862,7 @@ msgstr "Snabb" msgid "Fast Depth Calculation" msgstr "Snabb djupberäkning" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5865,7 +5875,7 @@ msgstr "" msgid "Field of View" msgstr "Synfält" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "Figurnummer:" @@ -5879,7 +5889,7 @@ msgstr "Fildetaljer" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Filformat" @@ -5887,24 +5897,24 @@ msgstr "Filformat" msgid "File Format:" msgstr "Filformat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Filinformation" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Filnamn" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Sökväg" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Filstorlek" @@ -5993,7 +6003,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Flaggor" @@ -6002,12 +6011,12 @@ msgstr "Flaggor" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "Följ &gren" @@ -6031,7 +6040,7 @@ msgstr "" "För instruktioner, se " "den här sidan." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "Tvinga 16:9" @@ -6039,7 +6048,7 @@ msgstr "Tvinga 16:9" msgid "Force 24-Bit Color" msgstr "24-bitars färg" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "Tvinga 4:3" @@ -6071,11 +6080,11 @@ msgstr "Lyssna på port:" msgid "Force Nearest" msgstr "Tvinga närmsta" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Kan inte sättas på eftersom %1 inte stöder VS-expansion." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Kan inte stängas av eftersom %1 inte stöder geometrishaders." @@ -6101,6 +6110,12 @@ msgstr "" "prestandan och orsakar få grafikproblem.

Om du är " "osäker kan du lämna detta markerat." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Format:" @@ -6116,7 +6131,7 @@ msgstr "Framåt" msgid "Forward port (UPnP)" msgstr "Vidaresänd port (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "Hittade %1 resultat för \"%2\"" @@ -6126,7 +6141,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "Hittade %n adress(er)." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "Bildruta %1" @@ -6147,11 +6162,11 @@ msgstr "Gå fram en bildruta - Öka hastighet" msgid "Frame Advance Reset Speed" msgstr "Gå fram en bildruta - Nollställ hastighet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "Bildrutedumpning" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Räckvidd för bildrutor" @@ -6159,7 +6174,7 @@ msgstr "Räckvidd för bildrutor" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Bildrutedumpfilen \"{0}\" finns redan. Vill du skriva över?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "Bildrutor att spela in:" @@ -6179,7 +6194,7 @@ msgstr "Lediga filer: %1" msgid "Free Look Control Type" msgstr "Fri vy-kontrolltyp" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "Fri vy-kontroll %1" @@ -6214,7 +6229,7 @@ msgstr "Fri kamera - Slå på/av" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Franska" @@ -6233,8 +6248,8 @@ msgid "From" msgstr "Från" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "Från:" @@ -6242,10 +6257,14 @@ msgstr "Från:" msgid "FullScr" msgstr "Helskärm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Funktion" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "Funktioner" @@ -6286,11 +6305,11 @@ msgstr "GBA-volym" msgid "GBA Window Size" msgstr "GBA-fönsterstorlek" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1:s ROM ändrad till \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBA%1:s ROM borttagen" @@ -6338,7 +6357,7 @@ msgstr "GL_MAX_TEXTURE_SIZE är {0} - måste vara minst 1024." msgid "GPU Texture Decoding" msgstr "GPU-texturdekodning" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6350,7 +6369,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL-FEL: Stöder ditt grafikkort OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6358,7 +6377,7 @@ msgstr "" "GPU: OGL-FEL: Behöver GL_ARB_map_buffer_range.\n" "GPU: Stöder ditt grafikkort OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6366,7 +6385,7 @@ msgstr "" "GPU: OGL-FEL: Behöver GL_ARB_sampler_objects.\n" "GPU: Stöder ditt grafikkort OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6374,7 +6393,7 @@ msgstr "" "GPU: OGL-FEL: Behöver GL_ARB_uniform_buffer_object.\n" "GPU: Stöder ditt grafikkort OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6390,7 +6409,7 @@ msgstr "" "GPU: OGL-FEL: Behöver OpenGL version 3.\n" "GPU: Stöder ditt grafikkort OpenGL 3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6413,16 +6432,16 @@ msgstr "" msgid "Game" msgstr "Spel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-kassetter (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6430,7 +6449,7 @@ msgstr "" "Game Boy Advance-ROM-filer (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *." "bin);;Alla filer (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "Game Boy Advance i uttag %1" @@ -6459,7 +6478,7 @@ msgid "Game Gamma:" msgstr "Spelets gamma:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Spel-ID" @@ -6468,15 +6487,15 @@ msgstr "Spel-ID" msgid "Game ID:" msgstr "Spel-ID:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Spelstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "Bytte spel till \"%1\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6484,11 +6503,11 @@ msgstr "" "Spelfilen har en annan hash; högerklicka på spelet, välj Egenskaper, gå till " "Verifiera-fliken och välj Verifiera integritet för att kontrollera hashen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "Spelet har ett annat skivnummer" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "Spelet har en annan revision" @@ -6503,7 +6522,7 @@ msgstr "" "Spelet skrevs över med ett annat spels sparfil. Data kommer antagligen bli " "korrupt {0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "Spelets region matchar inte" @@ -6523,11 +6542,11 @@ msgstr "GameCube-adapter för Wii U" msgid "GameCube Adapter for Wii U at Port %1" msgstr "GameCube-adapter för Wii U i uttag %1" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube-kontroll" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "GameCube-kontroll i uttag %1" @@ -6535,11 +6554,11 @@ msgstr "GameCube-kontroll i uttag %1" msgid "GameCube Controllers" msgstr "GameCube-kontroller" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube-tangentbord" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "GameCube-tangentbord i uttag %1" @@ -6556,7 +6575,7 @@ msgstr "GameCude-minneskort" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube-minneskort (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube-mikrofon i plats %1" @@ -6584,7 +6603,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koder" @@ -6594,35 +6613,35 @@ msgstr "Gecko-koder" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Allmänt" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Allmänt och alternativ" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Generera en ny statistikidentitet" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "Genererade symbolnamn från '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Tyska" @@ -6649,7 +6668,7 @@ msgstr "Jätte" msgid "Giants" msgstr "Giants" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "Golfläge" @@ -6658,7 +6677,7 @@ msgid "Good dump" msgstr "Korrekt kopia" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafik" @@ -6703,7 +6722,7 @@ msgstr "Grön vänster" msgid "Green Right" msgstr "Grön höger" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Rutnätsvy" @@ -6740,7 +6759,7 @@ msgstr "HDR efterbehandling" msgid "Hacks" msgstr "Hack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "Huvud" @@ -6772,7 +6791,7 @@ msgstr "Hex 8" msgid "Hex Byte String" msgstr "Hexbytesträng" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimal" @@ -6781,11 +6800,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Göm" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "Dölj alla" @@ -6797,16 +6816,23 @@ msgstr "Dölj sessioner som har startat" msgid "Hide Incompatible Sessions" msgstr "Dölj inkompatibla sessioner" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "Dölj andras GBA-fönster" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "Hög" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "Högsta" @@ -6829,7 +6855,7 @@ msgstr "Värd" msgid "Host Code:" msgstr "Värdkod:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "Värdauktoritet för indata" @@ -6837,7 +6863,7 @@ msgstr "Värdauktoritet för indata" msgid "Host Size" msgstr "Värdstorlek" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6850,11 +6876,11 @@ msgstr "" "Lämplig för casual spel med 3+ spelare, eventuellt på instabila eller höga " "latensanslutningar." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "Värdauktoritet för indata avstängt" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "Värdauktoritet för indata påslaget" @@ -6866,7 +6892,7 @@ msgstr "Starta nätspel som värd" msgid "Hostname" msgstr "Värdnamn" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Kortkommandoinställningar" @@ -6876,11 +6902,11 @@ msgstr "Kortkommandoinställningar" msgid "Hotkeys" msgstr "Kortkommandon" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Snabbtangenter kräver fönsterfokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "Hybridübershaders" @@ -6939,12 +6965,12 @@ msgstr "IP-adress:" msgid "IPL Settings" msgstr "IPL-inställningar" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR-känslighet:" @@ -6985,7 +7011,7 @@ msgstr "" msgid "Icon" msgstr "Ikon" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -6995,7 +7021,7 @@ msgstr "" "latens) kan ändras när som helst.\n" "Lämplig för turbaserade spel med tidskänsliga kontroller, till exempel golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "Identitetsgenerering" @@ -7022,7 +7048,7 @@ msgstr "" "Du kan dra tillbaka detta godkännande när som helst genom Dolphins " "inställningar." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7044,7 +7070,7 @@ msgstr "" "anslutningstillstånd att länkas till den reella förvalda enhetens\n" "anslutningstillstånd (om sådan finns)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7055,7 +7081,7 @@ msgstr "" "hjälpa vid tester.

Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7071,7 +7097,7 @@ msgstr "" msgid "Ignore" msgstr "Ignorera" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -7112,7 +7138,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Presentera XFB omedelbart" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7127,7 +7153,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "Importera BootMii-NAND-kopia..." @@ -7142,15 +7168,15 @@ msgstr "Importering misslyckades" msgid "Import Save File(s)" msgstr "Importera sparfil(er)" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Importera Wii-sparning…" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "Importerar NAND-kopia" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7159,6 +7185,15 @@ msgstr "" "Importerar NAND-kopia\n" " Förfluten tid: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "Spelar?" @@ -7241,7 +7276,7 @@ msgstr "Inkrementell rotation" msgid "Incremental Rotation (rad/sec)" msgstr "Inkrementell rotation (rad/sek)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Infinityfigurskapare" @@ -7250,7 +7285,7 @@ msgstr "Infinityfigurskapare" msgid "Infinity Manager" msgstr "Infinityhanterare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Infinityobjekt (*.bin);;" @@ -7272,12 +7307,12 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Information" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "Blockera skärmsläckare under emulering" @@ -7286,11 +7321,11 @@ msgid "Inject" msgstr "Injicera" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Indata" @@ -7304,23 +7339,19 @@ msgstr "Inmatningsstyrka som krävs för att aktiveras." msgid "Input strength to ignore and remap." msgstr "Inmatningsstyrka att ignorera samt skala med." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Sätt in &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "Sätt in SD-kort" @@ -7333,11 +7364,11 @@ msgstr "Installera" msgid "Install Partition (%1)" msgstr "Installationspartition (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Installera uppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "Installera WAD…" @@ -7345,13 +7376,13 @@ msgstr "Installera WAD…" msgid "Install to the NAND" msgstr "Installera till NAND-minnet" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "Instr." #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "Instruktion" @@ -7360,7 +7391,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "Instruktionsbrytpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "Instruktion:" @@ -7369,7 +7400,7 @@ msgstr "Instruktion:" msgid "Instruction: %1" msgstr "Instruktion: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7386,19 +7417,19 @@ msgstr "Intensitet" msgid "Interface" msgstr "Gränssnitt" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "Internt LZ4-fel - Försökte dekomprimera {0} byte" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "Internt LZ4-fel - komprimering misslyckades" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "Internt LZ4-fel - dekomprimering misslyckades ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "Internt LZ4-fel - payloadstorleken matchar inte ({0} / {1})" @@ -7411,7 +7442,7 @@ msgstr "Internt LZO-fel - komprimering misslyckades" msgid "Internal LZO Error - decompression failed" msgstr "Internt LZO-fel - dekomprimering misslyckades" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7420,7 +7451,7 @@ msgstr "" "Det gick inte att hämta versionsinformation från den här gamla " "snabbsparningen." -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" @@ -7428,7 +7459,7 @@ msgstr "" "Internt LZO-fel - misslyckades att läsa dekomprimerad versionskaka och " "versionssträngslängd ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7445,7 +7476,7 @@ msgstr "Intern upplösning" msgid "Internal Resolution:" msgstr "Intern upplösning:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "Ett internt fel uppstod när AR-kod skulle genereras." @@ -7453,7 +7484,7 @@ msgstr "Ett internt fel uppstod när AR-kod skulle genereras." msgid "Interpreter (slowest)" msgstr "Interpreterare (långsammast)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "Interpreterarkärna" @@ -7469,7 +7500,7 @@ msgstr "Tog emot ogiltig JSON från autouppdateringstjänsten: {0}" msgid "Invalid Mixed Code" msgstr "Ogiltig blandad kod" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "Ogiltigt paket %1: %2" @@ -7478,11 +7509,11 @@ msgstr "Ogiltigt paket %1: %2" msgid "Invalid Player ID" msgstr "Ogiltigt spelar-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "Ogiltig RSO-moduladress: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "Ogiltig anropsstack" @@ -7503,7 +7534,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ogiltig indata för fältet \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "Ogiltig indata" @@ -7519,19 +7550,19 @@ msgstr "Ogiltiga sökparametrar." msgid "Invalid password provided." msgstr "Ogiltigt lösenord angivet." -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Ogiltig inspelningsfil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Ogiltiga sökparametrar (inget objekt markerat)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Ogiltig söksträng (kunde inte konvertera till siffror)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Ogiltig söksträng (endast jämna stränglängder stöds)" @@ -7539,13 +7570,13 @@ msgstr "Ogiltig söksträng (endast jämna stränglängder stöds)" msgid "Invalid title ID." msgstr "Ogiltigt titel-ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "Ogiltig bevakningsadress: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italienska" @@ -7558,11 +7589,11 @@ msgstr "Italien" msgid "Item" msgstr "Föremål" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "JIT-blocklänkning av" @@ -7570,47 +7601,47 @@ msgstr "JIT-blocklänkning av" msgid "JIT Blocks" msgstr "JIT-block" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "JIT Branch av" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint av" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "JIT Integer av" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating av" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "JIT LoadStore av" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired av" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz av" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx av" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz av" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "JIT av (JIT-kärna)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "JIT Paired av" @@ -7622,16 +7653,16 @@ msgstr "JIT-omkompilerare för ARM64 (rekommenderas)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-omkompilerare för x86-64 (rekommenderas)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "JIT Register Cache av" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters av" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7640,16 +7671,16 @@ msgstr "" "aldrig hända. Rapportera gärna detta till utvecklarna. Dolphin kommer nu " "avslutas." -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japanska" @@ -7668,12 +7699,12 @@ msgstr "" "Kaos är den enda skurken för den här trofén och är alltid upplåst. Det finns " "inget att redigera." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Fortsätt köra" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Visa alltid fönster överst" @@ -7707,16 +7738,16 @@ msgstr "Tangenter" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Sparka ut spelare" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Koreanska" @@ -7737,7 +7768,7 @@ msgstr "&Ladda in ROM..." msgid "L-Analog" msgstr "L-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR Save" @@ -7745,7 +7776,11 @@ msgstr "LR Save" msgid "Label" msgstr "Etikett" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "Föregående värde" @@ -7759,23 +7794,23 @@ msgstr "Senast placerad:" msgid "Last reset:" msgstr "Senast nollställd:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Latens:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "Latens: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "Latens: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "Latens: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "Latens: ~80 ms" @@ -7783,7 +7818,7 @@ msgstr "Latens: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Det är möjligt att problemen också kan fixas av att starta titlarna." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7791,7 +7826,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7802,7 +7837,7 @@ msgstr "Vänster" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Vänster spak" @@ -7879,11 +7914,11 @@ msgstr "Ljus" msgid "Limit Chunked Upload Speed:" msgstr "Begränsa segmentuppladdningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "Listkolumner" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Listvy" @@ -7892,30 +7927,30 @@ msgid "Listening" msgstr "Lyssnar" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Läs in" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "Ladda &felaktig map-fil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "Ladda &annan map-fil..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Läs in anpassade texturer" @@ -7923,11 +7958,11 @@ msgstr "Läs in anpassade texturer" msgid "Load File" msgstr "Ladda fil" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "Ladda GameCube-huvudmeny" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "Ladda bara värdens spardata" @@ -8033,23 +8068,23 @@ msgstr "Läs in snabbsparningsplats 8" msgid "Load State Slot 9" msgstr "Läs in snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Läs in snabbsparning från fil" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Läs in snabbsparning från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Läs in snabbsparning från plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Starta Wii-systemmeny %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "Ladda och skriv värdens spardata" @@ -8057,28 +8092,28 @@ msgstr "Ladda och skriv värdens spardata" msgid "Load from Selected Slot" msgstr "Ladda från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "Läs in från plats %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "Ladda map-fil" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "Starta vWii-systemmeny %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Ladda..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "Laddade symboler från '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8088,7 +8123,7 @@ msgstr "" "User/Load/DynamicInputTextures/<spel-id>/.

Om " "du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8097,20 +8132,28 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Lokalt" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "Lås muspekare" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Låst" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Logg" @@ -8119,19 +8162,19 @@ msgstr "Logg" msgid "Log Configuration" msgstr "Loggkonfiguration" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "Logga in" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "Logga JIT-instruktionstäckning" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "Logga ut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Logga renderingstid till fil" @@ -8143,11 +8186,11 @@ msgstr "Loggtyper" msgid "Logger Outputs" msgstr "Loggningsutdata" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "Inloggning misslyckades" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8158,20 +8201,20 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "Slinga" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "Tappade anslutningen till nätspelsservern..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "Låg" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "Lägsta" @@ -8183,7 +8226,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MHE" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "MORIBUND" @@ -8231,7 +8274,7 @@ msgstr "Se till att det finns en Skylander på plats %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "Skapare" @@ -8253,16 +8296,16 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "Hantera NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "Manuell textursampling" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "Mappning" @@ -8274,11 +8317,11 @@ msgstr "Mask-ROM" msgid "Match Found" msgstr "Sökträff hittades" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "Maxbuffert:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "Buffertstorleken ändrades till %1" @@ -8287,7 +8330,7 @@ msgstr "Buffertstorleken ändrades till %1" msgid "Maximum tilt angle." msgstr "Maximal lutningsvinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan leda till prestandaproblem i Wii-menyn och vissa spel." @@ -8308,7 +8351,7 @@ msgstr "Minnesbrytpunkt" msgid "Memory Card" msgstr "Minneskort" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "Minneskorthanterare" @@ -8336,7 +8379,7 @@ msgstr "MemoryCard: Read anropades med ogiltig källadress ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Write anropades med ogiltig destinationsadress ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8354,7 +8397,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -8363,15 +8406,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Övrigt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Övriga inställningar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8384,7 +8427,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "De interna datastrukturerna matchar inte." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8411,7 +8454,7 @@ msgstr "" msgid "Modifier" msgstr "Redigerare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8431,8 +8474,8 @@ msgstr "Modifiera plats" msgid "Modifying Skylander: %1" msgstr "Modifierar Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "Moduler hittade: %1" @@ -8440,7 +8483,7 @@ msgstr "Moduler hittade: %1" msgid "Money:" msgstr "Pengar:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "Mono" @@ -8452,11 +8495,11 @@ msgstr "Monoskopiska skuggor" msgid "Monospaced Font" msgstr "Teckensnitt med fast teckenbredd" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "Rörelseinmatning" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "Rörelsesimulering" @@ -8465,23 +8508,10 @@ msgstr "Rörelsesimulering" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "Muspekarsynlighet" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "Muspekaren döljs efter inaktivitet och återvänder när du rör på musen." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "Muspekaren syns alltid." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "Muspekaren syns aldrig medan ett spel körs." - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8492,7 +8522,7 @@ msgstr "Flytta" msgid "Movie" msgstr "Inspelning" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" @@ -8500,7 +8530,7 @@ msgstr "" "Inspelningen {0} säger att den börjar från en snabbsparning, men {1} finns " "inte. Inspelningen kommer antagligen inte synka!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8513,10 +8543,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ej till alla" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-minneskontroll" @@ -8525,8 +8555,8 @@ msgstr "NAND-minneskontroll" msgid "NKit Warning" msgstr "NKit-varning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8535,7 +8565,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8552,8 +8582,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8596,7 +8626,7 @@ msgstr "Ursprunglig (640x528)" msgid "Native GCI File" msgstr "Vanlig GCI-fil" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "Nätspel" @@ -8612,7 +8642,7 @@ msgstr "Nätspelsinställningar" msgid "Netherlands" msgstr "Nederländerna" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8620,7 +8650,7 @@ msgstr "" "Nätspel startar med värdens spardata, och spardata som skapas eller " "förändras under nätspelssessionen sparas bland värdens lokala spardata." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8629,7 +8659,7 @@ msgstr "" "Nätspel startar med värdens spardata, men spardata som skapas eller " "förändras under nätspelssessionen slängs när sessionen tar slut." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8638,7 +8668,7 @@ msgstr "" "nätspelssessionen tar slut." #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Nätverk" @@ -8646,16 +8676,16 @@ msgstr "Nätverk" msgid "Network dump format:" msgstr "Format för nätverksdumpning:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "Aldrig" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "Uppdatera aldrig automatiskt" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Ny" @@ -8680,7 +8710,7 @@ msgstr "Ny sökning" msgid "New Tag..." msgstr "Ny etikett..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "En ny identitet har genererats." @@ -8697,7 +8727,7 @@ msgstr "Ny etikett" msgid "Next Game Profile" msgstr "Nästa spelprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "Nästa matchning" @@ -8743,7 +8773,7 @@ msgstr "Ingen komprimering" msgid "No Match" msgstr "Ingen sökträff" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "Ingen spardata" @@ -8751,12 +8781,12 @@ msgstr "Ingen spardata" msgid "No data to modify!" msgstr "Ingen data att modifiera!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Ingen beskrivning tillgänglig" @@ -8768,7 +8798,7 @@ msgstr "Inga fel." msgid "No extension selected." msgstr "Ingen extern kontroll har valts." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "Ingen fil inläst/inspelad." @@ -8776,7 +8806,7 @@ msgstr "Ingen fil inläst/inspelad." msgid "No game is running." msgstr "Inget spel körs." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "Inget spel körs." @@ -8789,11 +8819,11 @@ msgstr "Ingen grafikmodd vald" msgid "No input" msgstr "Ingen indata" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "Inga problem upptäcktes." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "Inget matchande spel hittades" @@ -8819,7 +8849,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "Inga profiler hittades för spelinställningen \"{0}\"" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "Ingen inspelning laddad." @@ -8838,10 +8868,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Ingen" @@ -8853,7 +8883,7 @@ msgstr "Nordamerika" msgid "Not Set" msgstr "Inte angiven" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "Vissa spelare har inte detta spel. Vill du verkligen starta?" @@ -8876,7 +8906,7 @@ msgstr "" "För få lediga filer på destinationsminneskortet. Minst %n ledig(a) fil(er) " "krävs." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "Hittades inte" @@ -8922,26 +8952,26 @@ msgstr "Antal skakningar per sekund." msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "Nunchuk-accelerometer" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "Nunchuk-knappar" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "Nunchuk-spak" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "OK" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "Objekt %1" @@ -8993,7 +9023,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Räckvidd för objekt" @@ -9014,18 +9044,18 @@ msgstr "Förskjutning" msgid "On" msgstr "På" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "Vid rörelse" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9040,7 +9070,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "&Dokumentation online " @@ -9048,7 +9078,7 @@ msgstr "&Dokumentation online " msgid "Only Show Collection" msgstr "Visa bara samling" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9056,7 +9086,7 @@ msgstr "" "Lägg endast till symboler med prefix:\n" "(Lämna tomt för att exportera alla symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9075,7 +9105,7 @@ msgstr "Öppna" msgid "Open &Containing Folder" msgstr "Öppna &innehållande mapp" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "Öppna &användarmapp" @@ -9084,7 +9114,7 @@ msgstr "Öppna &användarmapp" msgid "Open Directory..." msgstr "Öppna mapp..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "Öppna FIFO-logg" @@ -9150,34 +9180,34 @@ msgstr "Orange" msgid "Orbital" msgstr "Omloppsbana" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9192,11 +9222,11 @@ msgstr "Annan partition (%1)" msgid "Other State Hotkeys" msgstr "Andra snabbsparningskortkommandon" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "Annan snabbsparningshantering" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Annat spel..." @@ -9212,16 +9242,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Överskrivet" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "Spe&la upp inspelning..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9234,11 +9264,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG-komprimeringsnivå" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG-komprimeringsnivå:" @@ -9250,7 +9280,7 @@ msgstr "PNG-bildfil (*.png);; Alla filer (*)" msgid "PPC Size" msgstr "PPC-storlek" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC mot värd" @@ -9284,7 +9314,7 @@ msgstr "Passiv" msgid "Passthrough a Bluetooth adapter" msgstr "Släpp igenom en Bluetoothadapter" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Lösenord" @@ -9322,15 +9352,15 @@ msgstr "Sökvägar" msgid "Pause" msgstr "Pausa" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Pausa vid slutet av inspelningar" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "Pausa när fokus förloras" @@ -9346,6 +9376,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9365,7 +9401,7 @@ msgstr "Topphastigheten för svingande utåt." msgid "Per-Pixel Lighting" msgstr "Ljus per bildpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "Uppdatera systemmjukvaran via internet" @@ -9373,15 +9409,15 @@ msgstr "Uppdatera systemmjukvaran via internet" msgid "Perform System Update" msgstr "Uppdatera systemmjukvaran" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "Prestandasampelfönster (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "Prestandasampelfönster (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "Prestandastatistik" @@ -9399,11 +9435,11 @@ msgstr "Fysiskt adressutrymme" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "Välj ett teckensnitt för felsökning" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "Ping" @@ -9416,7 +9452,7 @@ msgid "Pitch Up" msgstr "Luta uppåt" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Plattform" @@ -9424,7 +9460,7 @@ msgstr "Plattform" msgid "Play" msgstr "Spela" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "Spela / spela in" @@ -9436,40 +9472,40 @@ msgstr "Spela upp inspelning" msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Uppspelningsalternativ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "Spelare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "Spelare ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "Spelare ett förmåga ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "Spelare ett förmåga två" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "Spelare två" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "Spelare två förmåga ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "Spelare två förmåga två" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Spelare" @@ -9489,7 +9525,7 @@ msgstr "" "avstängd, vilket leder till väldigt stor risk för det här problemet att " "inträffa." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9507,7 +9543,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "Uttag %1" @@ -9524,7 +9560,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "Portalplatser" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Möjlig desynkronisation upptäcktes: %1 kan ha desynkroniserat under bildruta " @@ -9542,24 +9578,32 @@ msgstr "Efterbehandlingseffekt:" msgid "Post-Processing Shader Configuration" msgstr "Efterbehandlingsshaderkonfiguration" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "Föredra VS för att expandera punkter/linjer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "Läs in anpassade texturer i förhand" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "Tidigt inspelningsslut i PlayController. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "Tidigt inspelningsslut i PlayWiimote. {0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "Tidigt inspelningsslut i PlayWiimote. {0} > {1}" @@ -9584,7 +9628,7 @@ msgstr "Synkknapptryckning" msgid "Pressure" msgstr "Tryck" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9604,7 +9648,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "Föregående spelprofil" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "Föregående matchning" @@ -9615,7 +9659,7 @@ msgstr "Föregående profil" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "Primitiv %1" @@ -9655,7 +9699,7 @@ msgstr "" "Någorlunda allvarliga problem har påträffats. Hela spelet eller vissa delar " "av spelet kommer kanske inte fungera riktigt." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9664,23 +9708,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "Förlopp" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "Töm cache för spellista" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "Lägg IPL-ROM-filer i User/GC/." @@ -9700,7 +9750,7 @@ msgstr "Det gick inte att sätta på Quality of Service (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) har satts på." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Kvaliteten för DPLII-dekodern. Ljudlatensen ökar ju högre kvaliteten är." @@ -9708,11 +9758,11 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Fråga" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Avsluta" @@ -9729,19 +9779,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO auto-upptäckt" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "KÖR" @@ -9762,7 +9812,7 @@ msgstr "Intervall slut:" msgid "Range Start: " msgstr "Intervall start:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "Rank %1" @@ -9770,16 +9820,17 @@ msgstr "Rank %1" msgid "Raw" msgstr "Rå" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "Byt &ut instruktion" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "Läs" @@ -9818,8 +9869,8 @@ msgstr "Riktig Wii-fjärrkontroll" msgid "Received invalid Wii Remote data from Netplay." msgstr "Tog emot ogiltig Wii-fjärrkontrollsdata från nätspel." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9828,23 +9879,23 @@ msgstr "" msgid "Recenter" msgstr "Återställ" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Spela in" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "Spela in inmatningar" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "Inspelning" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Inspelningsalternativ" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "Spelar in..." @@ -9883,7 +9934,7 @@ msgstr "Redump.org-status:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9914,7 +9965,7 @@ msgid "Refreshing..." msgstr "Uppdaterar..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9935,7 +9986,11 @@ msgstr "Relativ Inmatning" msgid "Relative Input Hold" msgstr "Relativ Inmatning Håll" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "Påminn mig senare" @@ -9943,7 +9998,7 @@ msgstr "Påminn mig senare" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Ta bort" @@ -9974,20 +10029,20 @@ msgstr "" "inte sedan packar in ISO-filen i ett komprimerat filformat såsom ZIP). Vill " "du fortsätta ändå?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "Byt namn på symbol" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "Renderingsfönster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Rendera till huvudfönstret" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10003,10 +10058,16 @@ msgstr "Rapport: GCIFolder skriver till oallokerat block {0:#x}" msgid "Request to Join Your Party" msgstr "Förfrågan att vara med i din grupp" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -10016,7 +10077,7 @@ msgstr "Återställ" msgid "Reset All" msgstr "Återställ alla" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "Nollställ ignorera panikhanterare" @@ -10048,7 +10109,7 @@ msgstr "Återställ vy" msgid "Reset all saved Wii Remote pairings" msgstr "Nollställ alla sparade Wii-fjärrkontrollparningar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -10060,7 +10121,7 @@ msgstr "Resurspaketshanterare" msgid "Resource Pack Path:" msgstr "Resurspaketssökväg:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Omstart krävs" @@ -10068,11 +10129,11 @@ msgstr "Omstart krävs" msgid "Restore Defaults" msgstr "Återställ förval" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "Återställ instruktion" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Försök igen" @@ -10081,7 +10142,7 @@ msgstr "Försök igen" msgid "Return Speed" msgstr "Returhastighet" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "Revision" @@ -10093,7 +10154,7 @@ msgstr "Revision: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10104,7 +10165,7 @@ msgstr "Höger" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Höger spak" @@ -10140,11 +10201,11 @@ msgstr "Rulla vänster" msgid "Roll Right" msgstr "Rulla höger" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "Rum-ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "Rotation" @@ -10167,27 +10228,31 @@ msgstr "" "upplösning används.

Om du är osäker, lämna detta " "avmarkerat." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10200,7 +10265,7 @@ msgstr "" msgid "Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "Kör &hit" @@ -10208,15 +10273,15 @@ msgstr "Kör &hit" msgid "Run GBA Cores in Dedicated Threads" msgstr "Kör GBA-kärnor i dedikerade trådar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "Kör tills" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "Kör tills (och ignorera brytpunkter)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "Kör tills träff (och ignorera brytpunkter)" @@ -10224,23 +10289,23 @@ msgstr "Kör tills träff (och ignorera brytpunkter)" msgid "Russia" msgstr "Ryssland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "Filstorlek för SD-kort:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-kortsavbildning (*.raw);;Alla filer (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD-kortssökväg:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD-kortsinställningar" @@ -10248,7 +10313,7 @@ msgstr "SD-kortsinställningar" msgid "SD Root:" msgstr "SD-rot:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "SD-synkmapp:" @@ -10283,11 +10348,11 @@ msgstr "SSL-kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "&Spara kod" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "Spa&ra snabbsparning" @@ -10297,9 +10362,9 @@ msgid "Safe" msgstr "Säker" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10309,25 +10374,25 @@ msgstr "Spara" msgid "Save All" msgstr "Spara alla" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "Sparfilsexportering" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "Spara FIFO-logg" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "Spara fil till" @@ -10341,11 +10406,11 @@ msgstr "Sparfil" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Sparfiler (*.sav);;Alla filer (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "Sparfilsimportering" @@ -10357,7 +10422,7 @@ msgstr "Spara äldsta snabbsparning" msgid "Save Preset" msgstr "Spara förinställningar" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "Spara inspelning som" @@ -10407,23 +10472,23 @@ msgstr "Spara snabbsparningsplats 8" msgid "Save State Slot 9" msgstr "Spara snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "Spara snabbsparning till fil" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "Spara snabbsparning på äldsta platsen" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Snabbspara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "Spara snabbsparning på plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "Spara symbol-map so&m..." @@ -10431,7 +10496,7 @@ msgstr "Spara symbol-map so&m..." msgid "Save Texture Cache to State" msgstr "Spara texturcache i snabbsparningar" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "Spara och läs in snabbsparning" @@ -10443,11 +10508,11 @@ msgstr "Spara som förinställningar..." msgid "Save as..." msgstr "Spara som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "Spara kombinerad utdatafil som" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10461,11 +10526,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Spara i samma katalog som ROM-filen" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "Spara map-fil" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "Spara signaturfil" @@ -10473,11 +10538,11 @@ msgstr "Spara signaturfil" msgid "Save to Selected Slot" msgstr "Spara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "Spara på plats %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Spara..." @@ -10491,7 +10556,7 @@ msgstr "" msgid "Saves:" msgstr "Sparfiler:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "Snabbsparningsinspelningen {0} är korrupt. Inspelningen stoppas..." @@ -10508,8 +10573,8 @@ msgid "ScrShot" msgstr "Skärmdump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Sök" @@ -10518,7 +10583,7 @@ msgstr "Sök" msgid "Search Address" msgstr "Sök adress" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Sök aktuellt objekt" @@ -10538,7 +10603,7 @@ msgstr "" "Sökning är inte möjligt i virtuellt adressutrymme just nu. Kör spelet ett " "kort tag och prova igen." -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Sök efter en instruktion" @@ -10546,7 +10611,7 @@ msgstr "Sök efter en instruktion" msgid "Search games..." msgstr "Sök efter spel..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "Sök efter en instruktion" @@ -10580,7 +10645,7 @@ msgstr "Välj" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10591,23 +10656,23 @@ msgid "Select Dump Path" msgstr "Välj dump-sökväg:" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "Välj exporteringskatalog" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "Välj figurfil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "Välj GBA-BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "Välj GBA-ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "Välj GBA-sparfilssökväg" @@ -10635,7 +10700,7 @@ msgstr "Välj Skylandersamling" msgid "Select Skylander File" msgstr "Välj Skylanderfil" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "Välj plats %1 - %2" @@ -10643,7 +10708,7 @@ msgstr "Välj plats %1 - %2" msgid "Select State" msgstr "Välj snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Välj snabbsparningsplats" @@ -10704,13 +10769,13 @@ msgstr "Välj en mapp" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Välj en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "Välj mapp att synkronisera med SD-kortsfilen" @@ -10718,7 +10783,7 @@ msgstr "Välj mapp att synkronisera med SD-kortsfilen" msgid "Select a Game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Välj en SD-kortsavbildning" @@ -10730,7 +10795,7 @@ msgstr "Välj en fil" msgid "Select a game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "Välj en titel att installera till NAND-minnet" @@ -10738,11 +10803,11 @@ msgstr "Välj en titel att installera till NAND-minnet" msgid "Select e-Reader Cards" msgstr "Välj e-Readerkort" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "Välj RSO-modulens adress:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "Välj inspelning att spela upp" @@ -10750,12 +10815,12 @@ msgstr "Välj inspelning att spela upp" msgid "Select the Virtual SD Card Root" msgstr "Välj rot för virtuellt SD-kort" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Välj nyckelfil (OTP/SEEPROM-kopia)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Välj sparningsfilen" @@ -10778,16 +10843,16 @@ msgstr "Den valda kontrollprofilen finns inte" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "Det valda spelet finns inte i spellistan!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "Markerad tråds anropsstack" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "Markerad tråds kontext" @@ -10807,7 +10872,7 @@ msgstr "" "Väljer en hårdvaruadapter att använda.

Om du är " "osäker kan du välja den första." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10844,7 +10909,7 @@ msgstr "" "
Passiv är en annan typ av 3D som används av vissa TV-apparater." "

Om du är osäker kan du välja Av." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10866,7 +10931,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10884,11 +10949,11 @@ msgstr "" "

Om du är osäker kan du välja OpenGL." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Skicka" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Position för Sensor Bar:" @@ -10920,6 +10985,10 @@ msgstr "Servern avvisade traverseringsförsök" msgid "Set &Value" msgstr "Sätt &värde" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10937,23 +11006,23 @@ msgstr "Välj minneskortsfil för plats A" msgid "Set memory card file for Slot B" msgstr "Välj minneskortsfil för plats B" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "Ställ in slut&adress för symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "Ställ in &storlek för symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "Ställ in slutadress för symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "Ange storlek för symbol (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10962,11 +11031,19 @@ msgstr "" "Sätter Wii-bildläget till 60Hz (480i) istället för 50Hz (576i) för PAL-spel. " "Vissa spel stöder inte detta." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Ställer in Wii-systemspråk." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10974,6 +11051,13 @@ msgstr "" "Anger latens i millisekunder. Högre värden kan minska ljudknaster. Endast " "för vissa backends." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -10983,13 +11067,13 @@ msgstr "" "mappningarna i virtuellt adressutrymme. Detta fungerar för de allra flesta " "spel." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Inställningar" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: Kan inte skapa filen setting.txt" @@ -10997,7 +11081,7 @@ msgstr "SetupWiiMemory: Kan inte skapa filen setting.txt" msgid "Severity" msgstr "Allvarlighet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Shaderkompilering" @@ -11019,32 +11103,32 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansenkontroll" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "Visa %-hastighet" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "Visa &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Visa &verktygsfält" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Visa aktiv titel i fönstertitel" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "Visa alla" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Visa Australien" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Visa nuvarande spel på Discord" @@ -11053,7 +11137,7 @@ msgstr "Visa nuvarande spel på Discord" msgid "Show Disabled Codes First" msgstr "Visa avstängda koder först" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "Visa ELF/DOL" @@ -11062,31 +11146,31 @@ msgstr "Visa ELF/DOL" msgid "Show Enabled Codes First" msgstr "Visa påslagna koder först" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "Visa bildfrekvens" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Visa bildruteräknare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "Visa bildrutetider" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Visa Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "Visa GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Visa Tyskland" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "Visa överlägg för golfläge" @@ -11094,23 +11178,23 @@ msgstr "Visa överlägg för golfläge" msgid "Show Infinity Base" msgstr "Visa Infinitybas" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Visa indata" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "Visa Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "Visa JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Visa Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Visa laggräknare" @@ -11118,27 +11202,27 @@ msgstr "Visa laggräknare" msgid "Show Language:" msgstr "Visa språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Visa logg&konfiguration" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "Visa nätspelsmeddelanden" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "Visa nätspelsping" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Visa Nederländerna" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "Visa meddelanden på skärmen" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "Visa PAL" @@ -11147,27 +11231,27 @@ msgstr "Visa PAL" msgid "Show PC" msgstr "Visa PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "Visa prestandagrafer" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Visa plattformar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Visa regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "Visa ominspelningsräknare" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Visa Ryssland" @@ -11175,72 +11259,72 @@ msgstr "Visa Ryssland" msgid "Show Skylanders Portal" msgstr "Visa Skylandersportal" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "Visa Spanien" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "Visa hastighetsfärger" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "Visa statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Visa systemklocka" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Visa Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Visa USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Visa okänd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "Visa vblank-tider" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "Visa VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "Visa WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Visa Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Visa världen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "Visa i &minne" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "Visa i kod" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "Visa i minne" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "Visa i kod" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "Visa i minne" @@ -11248,11 +11332,19 @@ msgstr "Visa i minne" msgid "Show in server browser" msgstr "Visa i serverlistan" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11261,42 +11353,67 @@ msgstr "" "under nätspel.

Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11314,13 +11431,13 @@ msgstr "" "Visar spelarens maximala ping under nätspel.

Om du " "är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11344,7 +11461,7 @@ msgstr "Tryck för liggande läge" msgid "Sideways Wii Remote" msgstr "Liggande Wii-fjärrkontroll" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "Signaturdatabas" @@ -11363,12 +11480,12 @@ msgstr "Signerat 32" msgid "Signed 8" msgstr "Signerat 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "Signed int" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Förenklad kinesiska" @@ -11385,7 +11502,7 @@ msgstr "Sex axlar" msgid "Size" msgstr "Storlek" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11397,7 +11514,7 @@ msgstr "" msgid "Skip" msgstr "Hoppa över" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "Hoppa över att rita" @@ -11452,6 +11569,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;Alla filer(*)" @@ -11526,7 +11646,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Sortera alfabetiskt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Ljud:" @@ -11540,7 +11660,7 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spanska" @@ -11548,19 +11668,19 @@ msgstr "Spanska" msgid "Speaker Pan" msgstr "Högtalarpanorering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Högtalarvolym:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "Specialiserad (standard)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "Specifik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11594,11 +11714,11 @@ msgstr "Hastighet" msgid "Spyro's Adventure" msgstr "Spyro's Adventure" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "Stackslut" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "Stackstart" @@ -11606,25 +11726,25 @@ msgstr "Stackstart" msgid "Standard Controller" msgstr "Standardkontroll" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "Starta &nätspel..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "Starta ny fusksökning" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "Starta &inspelning" @@ -11632,7 +11752,7 @@ msgstr "Starta &inspelning" msgid "Start Recording" msgstr "Starta inspelning" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "Starta i helskärm" @@ -11644,14 +11764,14 @@ msgstr "Starta med Riivolution-moddar" msgid "Start with Riivolution Patches..." msgstr "Starta med Riivolution-moddar..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "Startade spelet" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "Tillstånd" @@ -11683,19 +11803,19 @@ msgstr "Stega ut" msgid "Step Over" msgstr "Stega över" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "Urstegningen lyckades!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "Urstegningen gjorde timeout!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "Överstegning pågår..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "Stegning lyckades!" @@ -11704,7 +11824,7 @@ msgstr "Stegning lyckades!" msgid "Stepping" msgstr "Stega" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "Stereo" @@ -11733,16 +11853,16 @@ msgid "Stick" msgstr "Spak" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stoppa" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "Avbryt uppspelning/inspelning" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "Stoppade spelet" @@ -11784,11 +11904,11 @@ msgstr "" "texturer)

Om du är osäker kan du lämna detta " "markerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Sträck ut till fönster" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "Strikt inställningssynkronisering" @@ -11802,7 +11922,11 @@ msgstr "Sträng" msgid "Strum" msgstr "Slagskena" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "Stil:" @@ -11813,18 +11937,18 @@ msgstr "Stil:" msgid "Stylus" msgstr "Penna" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "Klar" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "Lades till i nätspelindex" @@ -11834,7 +11958,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "%n skivavbildning(ar) har konverterats." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "Borttagningen av '%1' lyckades." @@ -11847,24 +11971,24 @@ msgstr "Exporterade %n av %1 sparfil(er)." msgid "Successfully exported save files" msgstr "Exporteringen av sparfiler lyckades" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "Certifikaten har extraherats från NAND-minnet" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "Extraheringen av filen lyckades." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "Extraheringen av systemdata lyckades." -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "Importeringen av sparfilen lyckades." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "Titeln har installerats i NAND-minnet." @@ -11887,16 +12011,16 @@ msgstr "Support" msgid "Supported file formats" msgstr "Filformat som stöds" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Stöder SD och SDHC. Standardstorleken är 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "Surround" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "Vilande" @@ -11943,17 +12067,17 @@ msgstr "Byt till B" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "Slutadress för symbol (%1):" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "Symbolnamn" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Symboler" @@ -11961,7 +12085,7 @@ msgstr "Symboler" msgid "Sync" msgstr "Synka" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "Synka AR/Gecko-koder" @@ -11982,7 +12106,7 @@ msgstr "" "slumpartade frysningar när läget \"Dubbla kärnor\" används. (PÅ = " "kompatibel, AV = snabb)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12003,24 +12127,24 @@ msgid "Synchronizing save data..." msgstr "Synkroniserar spardata..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS-inmatning" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS-verktyg" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Etiketter" @@ -12030,7 +12154,7 @@ msgstr "Etiketter" msgid "Taiko Drum" msgstr "Taikotrumma" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "Svans" @@ -12038,7 +12162,7 @@ msgstr "Svans" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Ta en skärmdump" @@ -12046,7 +12170,7 @@ msgstr "Ta en skärmdump" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12062,9 +12186,9 @@ msgstr "Teknologi" msgid "Test" msgstr "Test" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -12077,7 +12201,7 @@ msgstr "Texturcache" msgid "Texture Cache Accuracy" msgstr "Texturcachenoggrannhet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "Texturdumpning" @@ -12089,7 +12213,7 @@ msgstr "Texturfiltrering" msgid "Texture Filtering:" msgstr "Texturfiltrering:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Överlägg för texturformat" @@ -12133,7 +12257,7 @@ msgstr "IPL-filen är inte en känd korrekt version. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Masterpiecepartitionerna saknas." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12142,7 +12266,7 @@ msgstr "" "säkerhetskopia av ditt nuvarande NAND-minne och sedan börjar om med ett " "nyskapat NAND-minne." -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND-minnet har reparerats." @@ -12160,7 +12284,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12218,7 +12342,7 @@ msgstr "" "\n" "Välj en annan sökväg som destination för \"%1\"" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12230,7 +12354,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "Skivan kunde inte läsas (vid {0:#} - {1:#x})." -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Skivan som skulle sättas in hittades inte." @@ -12324,7 +12448,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Filsystemet är ogiltigt eller kunde inte läsas." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12373,7 +12497,7 @@ msgstr "" "systemmenyn kommer du inte kunna uppdatera den emulerade konsolen med den " "här skivan." -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12444,12 +12568,12 @@ msgid "The patches in %1 are not for the selected game or game revision." msgstr "" "Moddarna i %1 är inte för det valda spelet eller den valda spelrevisionen." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "Profilen '%1' finns inte" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "Det inspelade spelet ({0}) är inte samma som det valda spelet ({1})" @@ -12472,7 +12596,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "Samma fil kan inte användas på flera platser; den används redan av %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12513,7 +12637,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Den angivna filen \"{0}\" finns inte" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12578,7 +12702,7 @@ msgstr "Uppdateringspartitionen saknas." msgid "The update partition is not at its normal position." msgstr "Uppdateringspartitionen är inte på sin normala position." -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12600,6 +12724,10 @@ msgstr "{0}-partitionen är inte korrekt signerad." msgid "The {0} partition is not properly aligned." msgstr "{0}-partitionen ligger inte på en giltig position." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "Det finns för många partitioner i den första partitionstabellen." @@ -12614,8 +12742,8 @@ msgstr "" "\n" "Vill du spara före du stänger den?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12669,11 +12797,11 @@ msgstr "Den här Skylandertypen kan inte modifieras än!" msgid "This USB device is already whitelisted." msgstr "Den här enheten används redan med USB-genomsläppning." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Denna WAD går inte att starta." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "Denna WAD är inte giltig." @@ -12693,7 +12821,7 @@ msgstr "" "Det här bygget av Dolphin är inte kompilerat för din CPU.\n" "Använd ett ARM64-bygge av Dolphin för den bästa upplevelsen." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "Det går inte att ångra detta!" @@ -12827,7 +12955,7 @@ msgstr "" msgid "This is a good dump." msgstr "Detta är en korrekt kopia." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12852,7 +12980,7 @@ msgid "This software should not be used to play games you do not legally own." msgstr "" "Denna mjukvara bör inte användas för att spela spel som du inte äger lagligt." -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "Denna titel kan inte startas." @@ -12904,7 +13032,7 @@ msgstr "" "Det här värdet multipliceras med djupet som har ställts in i " "grafikkonfigurationen." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12919,7 +13047,7 @@ msgstr "" "Detta begränsar hastigheten av uppladdning i segment per klient, vilket " "används för sparningssynkronisering." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12931,11 +13059,11 @@ msgstr "" "Detta kan förhindra desynkronisering i vissa spel som läser från EFB. Se " "till att alla använder samma videobackend." -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "Trådens kontext" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "Trådar" @@ -12960,14 +13088,14 @@ msgstr "" "Hur lång tid indatan ska vara stabil för att kalibrering ska ske. (noll för " "att stänga av)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "Timeout" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Titel" @@ -12976,12 +13104,12 @@ msgid "To" msgstr "till" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "Till:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Helskärm" @@ -13006,7 +13134,7 @@ msgid "Toggle Aspect Ratio" msgstr "Växla bildförhållande" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Slå på/av brytpunkt" @@ -13062,7 +13190,7 @@ msgstr "Slå på/av omedelbar XFB-presentation" msgid "Tokenizing failed." msgstr "Tokenisering misslyckades." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -13070,7 +13198,7 @@ msgstr "" msgid "Toolbar" msgstr "Verktygsfält" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Ovan" @@ -13078,8 +13206,8 @@ msgstr "Ovan" msgid "Top-and-Bottom" msgstr "Topp-och-botten" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "Totalt antal träffar" @@ -13121,7 +13249,7 @@ msgid "Toy code:" msgstr "Leksakskod:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Traditionell kinesiska" @@ -13141,8 +13269,8 @@ msgstr "" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "Traverseringsfel" @@ -13171,7 +13299,7 @@ msgstr "Triforce AM Baseboard" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Avtryckare" @@ -13181,7 +13309,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13195,7 +13323,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "Typiskt GameCube/Wii-adressutrymme" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "OKÄND" @@ -13207,7 +13335,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "USB-enhetsemulering" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB-emulering" @@ -13225,7 +13353,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Ogiltig USB-enhet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13236,7 +13364,7 @@ msgstr "" "kraftfull hårdvara.

Om du är osäker, välj det här " "läget." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13248,7 +13376,7 @@ msgstr "" "om du upplever pauser med hybridübershaders och du har en väldigt kraftfull " "grafikprocessor.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13262,7 +13390,7 @@ msgstr "" "prestandapåverkan, men resultaten varierar beroende på grafikdrivrutinernas " "beteende." -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "Kunde inte upptäcka RSO-modul automatiskt" @@ -13333,11 +13461,11 @@ msgstr "Okomprimerade GC/Wii-skivavbildningar (*.iso *.gcm)" msgid "Undead" msgstr "Odöd" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Ångra inläsning av snabbsparning" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Ångra snabbsparning" @@ -13358,28 +13486,28 @@ msgstr "" "av denna titel tas bort från NAND-minnet utan att dess spardata tas bort. " "Vill du fortsätta?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "USA" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Okänd" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "Okänd (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Okänt DVD-kommando {0:08x} - katastrofalt fel" @@ -13456,11 +13584,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Okänd(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Okänd(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Obegränsad" @@ -13472,21 +13600,9 @@ msgstr "Ladda ur ROM" msgid "Unlock Cursor" msgstr "Lås upp muspekare" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "Upplåst" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "Upplåst %1 gånger denna session" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "Upplåst (casual)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "Upplåst denna session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13512,7 +13628,7 @@ msgstr "Osignerat 32" msgid "Unsigned 8" msgstr "Osignerat 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "Unsigned int" @@ -13526,8 +13642,8 @@ msgstr "Unsigned int" msgid "Up" msgstr "Upp" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Uppdatera" @@ -13535,11 +13651,11 @@ msgstr "Uppdatera" msgid "Update Partition (%1)" msgstr "Uppdateringspartition (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "Uppdatera efter Dolphin stängs" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "Uppdatering tillgänglig" @@ -13584,7 +13700,7 @@ msgstr "Tryck för stående läge" msgid "Upright Wii Remote" msgstr "Stående Wii-fjärrkontroll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "Statistikrapporteringsinställningar" @@ -13592,15 +13708,15 @@ msgstr "Statistikrapporteringsinställningar" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "Ange 8.8.8.8 för vanlig DNS, eller ange en egen" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "Använd all Wii-spardata" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "Använd inbyggd databas för spelnamn" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "Använd förlustfritt kodek (FFV1)" @@ -13608,15 +13724,21 @@ msgstr "Använd förlustfritt kodek (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Använd muskontrollerad pekning" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Använd PAL60-läge (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Använd panikhanterare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13664,7 +13786,7 @@ msgstr "Använd virtuella adresser när det är möjligt" msgid "User Config" msgstr "Användarinställningar" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Användargränssnitt" @@ -13682,10 +13804,17 @@ msgstr "" "Du kan använda dem för att spara eller hämta värden mellan\n" "inmatningar och utmatningar på samma föräldrakontroller." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "Användarnamn" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13698,7 +13827,7 @@ msgstr "" "grafikprocessor.

Om du är osäker kan du lämna detta " "markerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13708,7 +13837,7 @@ msgstr "" "ett renderingsfönster att skapas istället.

Om du är " "osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
I övriga fall kan du lämna detta " "omarkerat om du är osäker." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14002,8 +14131,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varning" @@ -14013,7 +14142,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -14029,7 +14158,7 @@ msgstr "" "Varning: Antalet block indikerade i BAT ({0}) matchar inte den laddade " "filheadern ({1})" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -14040,7 +14169,7 @@ msgstr "" "sparning innan du fortsätter, eller läsa in denna snabbsparning med " "skrivskyddat läge inaktiverat." -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -14051,7 +14180,7 @@ msgstr "" "{1}) (bildruta {2} < {3}). Du bör läsa in en annan sparning innan du " "fortsätter." -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -14062,7 +14191,7 @@ msgstr "" "in denna snabbsparning med skrivskyddat läge inaktiverat. Annars kan du få " "en desynkronisering." -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14124,7 +14253,7 @@ msgstr "Västerländsk (Windows-1252)" msgid "Whammy" msgstr "Svajarm" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14136,7 +14265,7 @@ msgstr "" "mipmaps' är aktiverat i Förbättringar.

Om du är " "osäker kan du lämna detta markerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14149,7 +14278,7 @@ msgstr "" "

Om du är osäker kan du lämna detta markerat." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Enheter som används med USB-genomsläppning" @@ -14181,25 +14310,25 @@ msgstr "Wii-fjärrkontroll" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii-fjärrkontroll %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Wii-fjärrkontrollaccelerometer" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii-fjärrkontrollknappar" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Wii-fjärrkontrollgyroskop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii-fjärrkontrollinställningar" @@ -14207,19 +14336,19 @@ msgstr "Wii-fjärrkontrollinställningar" msgid "Wii Remotes" msgstr "Wii-fjärrkontroller" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii-TAS-inmatning %1 - Classic Controller" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii-TAS-inmatning %1 - Wii-fjärrkontroll" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii-TAS-inmatning %1 - Wii-fjärrkontroll + Nunchuk" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii och Wii-fjärrkontroller" @@ -14227,7 +14356,7 @@ msgstr "Wii och Wii-fjärrkontroller" msgid "Wii data is not public yet" msgstr "Wii-data är inte offentlig än" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-sparfiler (*.bin);;Alla filer (*)" @@ -14235,15 +14364,7 @@ msgstr "Wii-sparfiler (*.bin);;Alla filer (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools-signaturmegafil" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" -"Kommer att låsa muspekaren till renderingskomponenten så länge som den har " -"fokus. Du kan ställa in ett tangentkommando för att låsa upp den." - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -14252,11 +14373,11 @@ msgstr "" msgid "Window Size" msgstr "Fönsterstorlek" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -14270,10 +14391,11 @@ msgstr "Världen" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "Skriv" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -14306,39 +14428,39 @@ msgstr "Skriv till logg och bryt" msgid "Write to Window" msgstr "Skriv till fönster" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "Fel skivnummer" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "Fel hash" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "Fel region" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "Fel revision" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF-register " @@ -14347,9 +14469,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA-destinationsadress" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14377,7 +14499,7 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja till &alla" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14386,7 +14508,7 @@ msgstr "" "Du håller på att konvertera innehållet av filen %2 till mappen %1. Allt som " "finns i mappen just nu kommer raderas. Är du säker på att du vill fortsätta?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14502,7 +14624,7 @@ msgstr "Du måste ange ett namn för din session!" msgid "You must provide a region for your session!" msgstr "Du måste ange en region för din session!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Du måste starta om Dolphin för att ändringarna ska börja gälla." @@ -14530,16 +14652,16 @@ msgstr "" "Vill du avbryta nu för att åtgärda problemet?\n" "Om du väljer \"Nej\" kan det uppstå problem med ljudet." -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14548,7 +14670,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3-kod stöds inte" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -14597,7 +14719,7 @@ msgid "default" msgstr "förval" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "frånkopplad" @@ -14605,7 +14727,7 @@ msgstr "frånkopplad" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Readerkort (*.raw);;Alla filer (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14613,7 +14735,7 @@ msgstr "errno" msgid "fake-completion" msgstr "fake-completion" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "false" @@ -14663,16 +14785,6 @@ msgstr "" msgid "none" msgstr "ingen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "av" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "på" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "eller välj en enhet" @@ -14690,7 +14802,7 @@ msgstr "sRGB" msgid "this value:" msgstr "följande värde:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "true" @@ -14759,11 +14871,9 @@ msgstr "| Eller" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin-teamet. ”GameCube” och ”Wii” är varumärken som tillhör " -"Nintendo. Dolphin är inte associerat med Nintendo på något sätt." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/tr.po b/Languages/po/tr.po index 5360abae0d..6bbccc1784 100644 --- a/Languages/po/tr.po +++ b/Languages/po/tr.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: zenkyomu, 2024\n" "Language-Team: Turkish (http://app.transifex.com/delroth/dolphin-emu/" @@ -100,7 +100,7 @@ msgstr "" "%1\n" "partine katılmak istiyor." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -134,7 +134,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (Revizyon %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (Standart)" @@ -154,7 +154,7 @@ msgstr "%1 (yavaş)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -168,11 +168,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 Grafik Yapılandırması" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (MEM1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (MEM2)" @@ -189,7 +189,7 @@ msgstr "%1, sisteminde bu özellik desteklemiyor." msgid "%1 doesn't support this feature." msgstr "%1 bu özelliği desteklemiyor." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -199,34 +199,27 @@ msgstr "" "%2 nesne\n" "Mevcut Kare: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 katıldı" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 ayrıldı" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 %5/%6 puan değerinde (%7 zorlayıcı) %2/%3 başarıyı açtı (%4 zorlayıcı)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 %4/%5 puan değerinde %2/%3 başarıyı açtı" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 geçerli bir ROM değil" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "Oynama sırası %1'de" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 %2 oynuyor" @@ -234,13 +227,13 @@ msgstr "%1 %2 oynuyor" msgid "%1 memory ranges" msgstr "%1 bellek aralığı" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 puan" @@ -252,30 +245,30 @@ msgstr "%1 oturum bulundu" msgid "%1 sessions found" msgstr "%1 oturum bulundu" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1% (Normal Hız)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "%1'in değeri değiştirildi" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "%1'nin değeri tetiklendi" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1'in değeri kullanıldı" @@ -287,6 +280,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -356,11 +353,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "&Hakkında" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "&Bellek Kesme Noktası Ekle" @@ -369,7 +366,7 @@ msgstr "&Bellek Kesme Noktası Ekle" msgid "&Add New Code..." msgstr "&Yeni Kod Ekle..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "&Fonksiyon Ekle" @@ -377,15 +374,15 @@ msgstr "&Fonksiyon Ekle" msgid "&Add..." msgstr "&Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "&Birleştirici" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "&Ses Ayarları" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "&Otomatik Güncelle:" @@ -393,11 +390,15 @@ msgstr "&Otomatik Güncelle:" msgid "&Borderless Window" msgstr "&Çerçevesiz pencere" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "&Kesme Noktaları" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "&Hata İzleyici" @@ -405,15 +406,15 @@ msgstr "&Hata İzleyici" msgid "&Cancel" msgstr "&İptal" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "&Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "&Güncellemeleri Denetle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "&Sembolleri Temizle" @@ -421,7 +422,7 @@ msgstr "&Sembolleri Temizle" msgid "&Clone..." msgstr "&Çoğalt..." -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "&Kod" @@ -429,16 +430,15 @@ msgstr "&Kod" msgid "&Connected" msgstr "&Bağlandı" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "&Denetleyici Ayarları" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "&Adresi kopyala" @@ -446,20 +446,20 @@ msgstr "&Adresi kopyala" msgid "&Create..." msgstr "&Oluştur..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "&Sil" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "&Gözlemciyi Kaldır" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "&Gözlemcileri Kaldır" @@ -473,11 +473,11 @@ msgstr "&Kodu Düzenle..." msgid "&Edit..." msgstr "&Düzenle..." -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "&Diski Çıkar" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "&Emülasyon" @@ -497,41 +497,41 @@ msgstr "&Durumu Dışa Aktar..." msgid "&Export as .gci..." msgstr "&.gci Olarak Dışarı Aktar..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "&Dosya" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "&Yazı Tipi..." -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "&Kare İlerletme" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "&Serbest Bakış Ayarları" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "&Sembolleri Şuradan Getir" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "&GitHub Repo'su" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "&Grafik Ayarları" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "&Yardım" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "&Kısayol Ayarları" @@ -551,11 +551,11 @@ msgstr "&Durumu İçe Aktar..." msgid "&Import..." msgstr "&İçeri aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "&BLR yerleştir" @@ -563,23 +563,23 @@ msgstr "&BLR yerleştir" msgid "&Interframe Blending" msgstr "&Karelerarası Harmanlama" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "&Dil:" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "Durumu &Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "&Sembol Haritasını Yükle" @@ -589,19 +589,23 @@ msgstr "&Mevcut adrese dosya yükle" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "&Gözlemcileri Kilitle" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "&Gereçleri Yerinde Kilitle" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "&Hafıza" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "&Film" @@ -609,7 +613,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Sustur" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "&Ağ" @@ -618,23 +622,23 @@ msgid "&No" msgstr "&Hayır" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "&Aç..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "&Seçenekler" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "&HLE Fonksiyonlarını Yamala" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "&Duraklat" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "&Oynat" @@ -642,7 +646,7 @@ msgstr "&Oynat" msgid "&Properties" msgstr "&Özellikler" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "&Salt-Okunur Mod" @@ -650,7 +654,7 @@ msgstr "&Salt-Okunur Mod" msgid "&Refresh List" msgstr "&Listeyi Yenile" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "&Kayıtlar" @@ -663,24 +667,24 @@ msgstr "&Kaldır" msgid "&Remove Code" msgstr "&Kodu Sil" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "&Sembolü yeniden adlandır" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "&Sıfırla" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "&Kaynak Paketi Yöneticisi" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "&Sembol Haritasını Kaydet" @@ -688,31 +692,31 @@ msgstr "&Sembol Haritasını Kaydet" msgid "&Scan e-Reader Card(s)..." msgstr "&e-Okuyucu Kart(lar)ı Tara..." -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "&Hız Limiti:" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "&Durdur" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "&İş parçacıkları" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "&Araçlar" @@ -722,21 +726,21 @@ msgstr "&ROM'u Boşalt" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "&Gözlemcilerin Kilidini Aç" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 msgid "&View" msgstr "&Görünüm" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "&İzle" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "&Website" @@ -748,23 +752,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Evet" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "'%1' bulunamadı, sembol adları oluşturulmadı" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' bulunamadı, yerine yaygın fonksiyonlar taranıyor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(Koyu)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(Açık)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(Sistem)" @@ -800,12 +804,12 @@ msgstr "- Çıkar" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--Bilinmeyen--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -866,7 +870,7 @@ msgstr "16-bit İmzalı Tamsayı" msgid "16-bit Unsigned Integer" msgstr "16-bit İmzasız Tamsayı" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -924,7 +928,7 @@ msgstr "32-bit İmzasız Tamsayı" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -950,7 +954,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blok)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1043,22 +1047,22 @@ msgstr "< Daha az" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" "Zorlayıcı Modunda Devre Dışı Bırakıldı." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" "Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." @@ -1066,7 +1070,7 @@ msgstr "" "AutoStepping zaman aşımına uğradı. Mevcut talimat " "ilgisiz." -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1096,8 +1100,8 @@ msgstr "" msgid "> Greater-than" msgstr "> -dan/-den büyük" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "Bir NetPlay Oturumu halihazırda devam ediyor!" @@ -1118,7 +1122,7 @@ msgstr "" "Bu WAD yüklendiğinde geri dönüşü olmayacak şekilde yüklü sürümü " "değiştirecektir. Devam edilsin mi?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "Zaten bir disk takılmak üzere." @@ -1134,7 +1138,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Başlatılacak oyun belirtilmeden 'kaydetme durumu' yüklenemez." -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1154,7 +1158,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "Senkronizasyon, ancak bir Wii oyunu çalışırken yapılabilir." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1191,7 +1195,7 @@ msgstr "" "Netplay'deki Wii Remote desteği deneyseldir ve düzgün çalışmayabilir.\n" "Kullanım riski sana ait.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR Kodu" @@ -1234,18 +1238,10 @@ msgid "Achievement Settings" msgstr "Başarı Ayarları" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "Başarılar" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" -"Başarılar devre dışı bırakıldı.
Başarıları yeniden etkinleştirmek için " -"lütfen tüm çalışan oyunları kapatın." - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "Eylem" @@ -1333,7 +1329,7 @@ msgstr "Action Replay: Normal Kod {0}: Geçersiz alt tür {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "NetPlay Sohbeti Etkinleştir" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "Aktif" @@ -1341,15 +1337,15 @@ msgstr "Aktif" msgid "Active Infinity Figures:" msgstr "Etkin Infinity Figürleri:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "Etkin iş parçacığı sırası" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "Etkin iş parçacıkları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "GPU" @@ -1357,7 +1353,7 @@ msgstr "GPU" msgid "Adapter Detected" msgstr "GPU Algılandı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "GPU:" @@ -1367,7 +1363,7 @@ msgstr "GPU:" msgid "Add" msgstr "Ekle" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "&Breakpoint ekle" @@ -1392,43 +1388,43 @@ msgstr "Breakpoint Ekle" msgid "Add a Memory Breakpoint" msgstr "Breakpoint Ekle" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "Bellek &breakpoint'i ekle" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" msgstr "Bellek breakpoint'i ekle" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "&Gözlemci'ye ekle" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "Gözlemci'ye ekle" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "Ekle..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "Adres" @@ -1580,7 +1576,7 @@ msgid "All Assembly files" msgstr "Tüm Assembly dosyaları" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "Tüm Double" @@ -1589,7 +1585,7 @@ msgstr "Tüm Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1597,34 +1593,34 @@ msgid "All Files" msgstr "Tüm Dosyalar" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "Tüm Float" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tüm GC/Wii dosyaları" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "Tüm Onaltılık" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tüm Kayıt Durumları (*.sav *.s##);; Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "Tüm İmzalı Tamsayı" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "Tüm İmzasız Tamsayı" @@ -1640,7 +1636,7 @@ msgstr "Tüm oyuncuların kodları senkronize edildi." msgid "All players' saves synchronized." msgstr "Tüm oyuncuların kayıtları senkronize edildi." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "Uyumsuz Bölge Ayarlarına İzin Ver" @@ -1648,7 +1644,7 @@ msgstr "Uyumsuz Bölge Ayarlarına İzin Ver" msgid "Allow Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasına İzin Ver" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "SD Karta Yazmaya İzin Ver" @@ -1668,7 +1664,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "Alternatif Giriş Kaynakları" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "Her zaman" @@ -1690,7 +1686,7 @@ msgstr "Takılı bir disk bekleniyordu ancak bulunamadı." msgid "Anaglyph" msgstr "Anaglif" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "Analiz et" @@ -1716,15 +1712,15 @@ msgstr "Kenar Yumuşatma:" msgid "Any Region" msgstr "Herhangi Bir Bölge" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "Şuraya imza ekle" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "&Mevcut İmza Dosyasına Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "İmza Dosyasını &Uygula..." @@ -1745,7 +1741,7 @@ msgstr "Apploader Tarihi:" msgid "Apply" msgstr "Uygula" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "İmza dosyasını uygula" @@ -1753,7 +1749,7 @@ msgstr "İmza dosyasını uygula" msgid "Arbitrary Mipmap Detection" msgstr "Rastgele Mipmap Algılama" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "'%1'i silmek istediğinizden emin misiniz?" @@ -1765,7 +1761,7 @@ msgstr "Bu dosyayı silmek istediğinizden emin misiniz?" msgid "Are you sure you want to delete this pack?" msgstr "Bu paketi silmek istediğinizden emin misiniz?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "NetPlay'den çıkmak istediğinizden emin misiniz?" @@ -1777,16 +1773,16 @@ msgstr "Emin misiniz?" msgid "Area Sampling" msgstr "Alan Örnekleme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "En-Boy Oranı" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "En-Boy Oranı:" @@ -1794,7 +1790,7 @@ msgstr "En-Boy Oranı:" msgid "Assemble" msgstr "Birleştir" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "Talimat birleştir" @@ -1806,7 +1802,7 @@ msgstr "Birleştirici" msgid "Assembly File" msgstr "Assembly Dosyası" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "Denetleyici Bağlantı Noktalarını Ata" @@ -1827,11 +1823,11 @@ msgstr "MotionPlus'u Tak" msgid "Audio" msgstr "Ses" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "Ses Arka Ucu:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "Ses Esnetme Ayarları" @@ -1847,7 +1843,7 @@ msgstr "Yazar" msgid "Authors" msgstr "Yazarlar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Otomatik" @@ -1856,11 +1852,11 @@ msgstr "Otomatik" msgid "Auto (Multiple of 640x528)" msgstr "Otomatik (640x528'in katları)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "Otomatik Güncelleme Ayarları" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1872,7 +1868,7 @@ msgstr "" "\n" "Lütfen belirli bir dahili çözünürlük seçin." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "Pencere Boyutunu Otomatik Ayarla" @@ -1880,15 +1876,15 @@ msgstr "Pencere Boyutunu Otomatik Ayarla" msgid "Auto-Hide" msgstr "Otomatik Gizle" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "RSO modüllerini otomatik olarak algıla?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "Otomatik Olarak Klasörle Senkronize Et" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1934,27 +1930,27 @@ msgstr "" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP kaydı" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "Arka Zincir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "Arka uç" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "Arka Uç Çoklu İş Parçacığı" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "Arka Uç Ayarları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "Arka Uç:" @@ -1997,7 +1993,7 @@ msgstr "Kötü değer sağlandı." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "Afiş" @@ -2017,15 +2013,15 @@ msgstr "Çubuk" msgid "Base Address" msgstr "Baz Adres" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "Baz önceliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "Temel" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "Temel Ayarlar" @@ -2041,10 +2037,6 @@ msgstr "Oyun belirtilmeden yığın işlem modu kullanılamaz." msgid "Battery" msgstr "Batarya" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "Beta (ayda bir kere)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy, DS4Windows, vb." @@ -2077,11 +2069,11 @@ msgstr "Binary SSL (oku)" msgid "Binary SSL (write)" msgstr "Binary SSL (yaz)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "Bit hızı (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2091,7 +2083,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "Blok Boyutu" @@ -2129,67 +2121,67 @@ msgstr "" "Bluetooth geçiş modu etkin, ancak Dolphin libusb olmadan derlendi. Geçiş " "modu kullanılamaz." -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "Önyüklendiğinde Duraklat" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND yedekleme dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii anahtarları dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "Çerçevesiz Tam Ekran" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "Alt" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2201,23 +2193,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2234,7 +2226,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2244,19 +2236,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2271,19 +2263,24 @@ msgstr "Branşlar" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "Kır" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Breakpoint" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "Breakpoint ile karşılaşıldı! Adım dışına çıkma iptal edildi." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "Breakpoint'ler" @@ -2317,24 +2314,24 @@ msgstr "Genişbant Adaptör Hatası" msgid "Broadband Adapter MAC Address" msgstr "Genişbant Adaptör MAC Adresi" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "&NetPlay Oturumlarına Göz Atın..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "Arabellek Boyutu:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "Arabellek boyutu %1 olarak değiştirildi." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "Arabellek:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2382,11 +2379,11 @@ msgstr "%1" msgid "C Stick" msgstr "C Çubuğu" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "&İmzalı Dosya Oluştur..." -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP kaydı " @@ -2406,7 +2403,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Önbellekli Yorumlayıcı (yavaş)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2446,7 +2443,7 @@ msgstr "Kalibrasyon" msgid "Calibration Period" msgstr "Kalibrasyon Periyodu" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "%1 görüntü listesini %2 boyutunda çağır" @@ -2472,7 +2469,7 @@ msgstr "Kamera 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "Kamera görüş alanı (yönlendirme hassasiyetini etkiler)." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "Sadece sanal bellekteki değerler için AR kodu oluşturabilir." @@ -2488,18 +2485,18 @@ msgstr "Bu kupa için kötü karakterler düzenlenemez!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Bağlantı tutamacına göre Wii Remote bulunamıyor {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Bir oyun hâlâ çalışırken bir NetPlay Oturumu başlatılamaz!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "İptal" @@ -2508,15 +2505,15 @@ msgstr "İptal" msgid "Cancel Calibration" msgstr "Kalibrasyonu İptal Et" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2533,11 +2530,11 @@ msgstr "NAND'a yüklenemediği için bu WAD başlatılamıyor." msgid "Cannot compare against last value on first search." msgstr "İlk aramada son değerle karşılaştırılamıyor." -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "GC IPL bulunamadı." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "Bu adres için AR kodu oluşturulamıyor." @@ -2545,7 +2542,7 @@ msgstr "Bu adres için AR kodu oluşturulamıyor." msgid "Cannot refresh without results." msgstr "Sonuçlar olmadan yenilenemiyor." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "GCI klasörünü boş bir yol olarak ayarlayamazsınız." @@ -2553,7 +2550,7 @@ msgstr "GCI klasörünü boş bir yol olarak ayarlayamazsınız." msgid "Cannot set memory card to an empty path." msgstr "Bellek kartını boş bir yola ayarlayamazsınız." -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "GC IPL bulunamadığı için oyun başlatılamıyor." @@ -2585,7 +2582,7 @@ msgstr "Ortala ve Kalibre Et" msgid "Change &Disc" msgstr "&Diski Değiştir" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "&Diski Değiştir..." @@ -2593,15 +2590,21 @@ msgstr "&Diski Değiştir..." msgid "Change Disc" msgstr "Diski Değiştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "Diskleri Otomatik Değiştir" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "Diski {0} olarak değiştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2631,7 +2634,7 @@ msgstr "" "etrafında döndürür. Yanal hareket yoktur, sadece döndürme vardır ve " "kameranın başlangıç noktasına kadar yakınlaştırabilirsiniz." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Değiştirilen hileler oyunu yeniden başlattığınızda etkili olacaktır." @@ -2639,11 +2642,11 @@ msgstr "Değiştirilen hileler oyunu yeniden başlattığınızda etkili olacakt msgid "Channel Partition (%1)" msgstr "Kanal Bölümü (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "Girilen karakter geçersiz!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "Sohbet" @@ -2651,7 +2654,7 @@ msgstr "Sohbet" msgid "Cheat Code Editor" msgstr "Hile Kodu Düzenleyici" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "Hile Arama" @@ -2659,7 +2662,7 @@ msgstr "Hile Arama" msgid "Cheats Manager" msgstr "Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "NAND'ı Kontrol Et..." @@ -2679,7 +2682,7 @@ msgstr "" "Dosyanın silinmesi için gerekli izinlere sahip olup olmadığınızı veya hâlâ " "kullanımda olup olmadığını kontrol edin." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "Sağlama" @@ -2691,7 +2694,7 @@ msgstr "Çin" msgid "Choose" msgstr "Seç" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "Açmak için bir dosya seçin" @@ -2699,15 +2702,15 @@ msgstr "Açmak için bir dosya seçin" msgid "Choose a file to open or create" msgstr "Açmak veya oluşturmak için bir dosya seçin" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "Öncelikli girdi dosyasını seçin" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "İkincil girdi dosyasını seçin" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "GCI baz klasörünü seçin" @@ -2720,7 +2723,7 @@ msgstr "Çıkarılacak klasörü seçin" msgid "Clamping of rotation about the yaw axis." msgstr "Yaw ekseni etrafında dönüşün sıkıştırılması." -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "Klasik Düğmeler" @@ -2731,18 +2734,18 @@ msgstr "Klasik Denetleyici" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "Temizle" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "Önbelleği Temizle" @@ -2763,7 +2766,7 @@ msgstr "Klonla ve Kodu &Düzenle..." msgid "Close" msgstr "Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "Ya&pılandırma" @@ -2771,11 +2774,11 @@ msgstr "Ya&pılandırma" msgid "Code" msgstr "Kod" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2803,11 +2806,11 @@ msgstr "Renk Düzeltme:" msgid "Color Space" msgstr "Renk Alanı" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "İki İmza Dosyasını &Birleştir..." @@ -2840,7 +2843,7 @@ msgstr "" "rağmen, oyunun Wii U eShop sürümüne kıyasla bunun iyi bir döküm olması " "mümkün. Dolphin bunu doğrulayamaz." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "Başlamadan önce gölgelendiricileri derle" @@ -2850,7 +2853,7 @@ msgstr "Gölgelendiriciler Derleniyor" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "Sıkıştırma" @@ -2863,7 +2866,7 @@ msgstr "Sıkıştırma Seviyesi:" msgid "Compression:" msgstr "Sıkıştırma" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2871,11 +2874,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "Koşul" @@ -2891,7 +2894,7 @@ msgstr "Koşullu" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "Koşullu Yardımı" @@ -2906,7 +2909,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2944,52 +2952,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"Koşullar:\n" -"Bir breakpoint'e ulaşıldığında değerlendirilecek bir ifade ayarlar. İfade " -"'false' veya 0 ise breakpoint tekrar vurulana kadar dikkate alınmaz. " -"İfadeler virgülle ayrılmalıdır. Ne yapılacağını belirlemek için yalnızca son " -"ifade kullanılacaktır.\n" -"\n" -"Referans verilebilen register'lar:\n" -"GPR'lar : r0..r31\n" -"FPR'lar : f0..f31\n" -" LR, CTR, PC\n" -"\n" -"Fonksiyonlar:\n" -"Bir register ayarla: r1 = 8\n" -"Cast'ler: s8(0xff). Mevcut: s8, u8, s16, u16, s32, u32\n" -"Çağrı Yığını: callstack(0x80123456), callstack(\"anim\")\n" -"Dizeleri Karşılaştır: streq(r3, \"abc\"). Her iki parametre de adres veya " -"dize sabiti olabilir.\n" -"Belleği oku: read_u32(0x80000000). Mevcut: u8, s8, u16, s16, u32, s32, f32, " -"f64\n" -"Belleğe yaz: write_u32(r3, 0x80000000). Mevcut: u8, u16, u32, f32, f64\n" -"*şu anda yazma her zaman tetiklenir\n" -"\n" -"Operasyonlar:\n" -"Unary: -u, !u, ~u\n" -"Matematik: * / + -, üslü: **, kalan: %, kaydırma: <<, >>\n" -"Karşılaştır: <, <=, >, >=, ==, !=, &&, ||\n" -"Bitwise: &, |, ^\n" -"\n" -"Örnekler:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"Yaz ve kır: r4 = 8, 1\n" -"Yaz ve devam et: f3 = f1 + f2, 0\n" -"Koşul her zaman son olmalı\n" -"\n" -"Dizeler yalnızca callstack() veya streq()'de ve \"alıntılanmış\" şekilde " -"kullanılmalıdır. Değişkenlere dize atamayın.\n" -"Bir isabet veya NaN sonucu varsa, tüm değişkenler Bellek Arayüzü günlüğüne " -"yazdırılacaktır. Sorunları kontrol etmek için denklemlerinize değişken " -"atayın, böylelikle yazdırılabilir.\n" -"\n" -"Not: Tüm değerler, hesaplamalar için dahili olarak 'double'lara " -"dönüştürülür. Menzil dışına çıkmaları ya da NaN haline gelmeleri mümkün. NaN " -"döndürülürse uyarı verilecek ve NaN haline gelen değişken kaydedilececektir." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3006,7 +2968,7 @@ msgstr "Yapılandır" msgid "Configure Controller" msgstr "Denetleyiciyi Yapılandır" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin'i Yapılandır" @@ -3019,27 +2981,27 @@ msgstr "Girdileri Yapılandır" msgid "Configure Output" msgstr "Çıktıları Yapılandır" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Onayla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "Arka uç değişikliğini onayla" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "Durdurmayı Onayla" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "Onay" @@ -3049,15 +3011,15 @@ msgstr "Onay" msgid "Connect" msgstr "Bağlan" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "Balance Board Bağla" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "USB Klavye Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "Wii Remote'u Bağla: %1" @@ -3077,7 +3039,7 @@ msgstr "3. Wii Remote'u Bağla" msgid "Connect Wii Remote 4" msgstr "4. Wii Remote'u Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "Wii Remote Bağla" @@ -3095,7 +3057,7 @@ msgstr "" msgid "Connected" msgstr "Bağlandı" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "Bağlanıyor" @@ -3120,7 +3082,7 @@ msgstr "NetPlay Golf Modunu Kontrol Et" msgid "Control Stick" msgstr "Kontrol Çubuğu" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "Denetleyici Profili" @@ -3230,8 +3192,8 @@ msgstr "Yakınsama" msgid "Convergence:" msgstr "Yakınsama:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "Dönüşüm başarısız oldu." @@ -3239,9 +3201,9 @@ msgstr "Dönüşüm başarısız oldu." msgid "Convert" msgstr "Dönüştür" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "Dosyayı Klasöre Şimdi Dönüştür" @@ -3249,9 +3211,9 @@ msgstr "Dosyayı Klasöre Şimdi Dönüştür" msgid "Convert File..." msgstr "Dosyayı dönüştür..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "Klasörü Dosyaya Şimdi Dönüştür" @@ -3274,8 +3236,8 @@ msgstr "" "Yine de devam etmek istiyor musun?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "Dönüştürülüyor..." @@ -3319,22 +3281,22 @@ msgstr "" "genellikle 2.2'yi hedefler.

Emin değilseniz, bunu " "işaretlemeyin." -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "Kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "Kopyala &Fonksiyon" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "Kopyala &Hex" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Adresi kopyala" @@ -3342,19 +3304,19 @@ msgstr "Adresi kopyala" msgid "Copy Failed" msgstr "Kopyalama başarısız" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "Hex'i Kopyala" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Değeri Kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "Kod &dizesini kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "Hedef ad&resi kopyala" @@ -3372,8 +3334,8 @@ msgstr "B'ye kopyala" msgid "Core" msgstr "Çekirdek" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3508,7 +3470,7 @@ msgstr "" "Öyleyse, seçeneklerde hafıza kartınızın konumunu yeniden belirtmeniz " "gerekebilir." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "Merkezi sunucu aranamadı" @@ -3524,13 +3486,13 @@ msgstr "Dosya okunamadı." msgid "Country:" msgstr "Ülke:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Oluştur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "Infinity Dosyası Oluştur" @@ -3544,7 +3506,7 @@ msgstr "Yeni Hafıza Kartı Oluştur" msgid "Create Skylander File" msgstr "Skylander Dosyası Oluştur" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "Diğer cihazlar için eşlemeler oluştur" @@ -3561,11 +3523,11 @@ msgstr "Oluşturan:" msgid "Critical" msgstr "Kritik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "Kırp" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3581,11 +3543,11 @@ msgstr "" msgid "Crossfade" msgstr "Çapraz solma" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "CPU'da Verteksleri Ayıkla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3596,31 +3558,31 @@ msgstr "" "

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "Mevcut Bölge" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "Mevcut Değer" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "Mevcut bağlam" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "Mevcut oyun" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "Mevcut iş parçacığı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "Özel" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3628,15 +3590,15 @@ msgstr "" msgid "Custom Address Space" msgstr "Özel Adres Alanı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "Özel En Boy Oranı Yüksekliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "Özel En Boy Oranı Genişliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "Özel En Boy Oranı:" @@ -3681,7 +3643,7 @@ msgstr "DJ Turntable" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "DSP Öykünme Motoru" @@ -3689,15 +3651,15 @@ msgstr "DSP Öykünme Motoru" msgid "DSP HLE (fast)" msgstr "DSP HLE (hızlı)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "DSP HLE (önerilen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (acayip yavaş)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (yavaş)" @@ -3727,7 +3689,7 @@ msgstr "Dance Mat" msgid "Dark" msgstr "Dark" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "Veri" @@ -3772,8 +3734,8 @@ msgstr "Ölü Bölge" msgid "Debug" msgstr "Hata ayıkla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Hata ayıklama" @@ -3782,7 +3744,7 @@ msgstr "Hata ayıklama" msgid "Decimal" msgstr "Ondalık" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "Kod Çözme Kalitesi:" @@ -3821,7 +3783,7 @@ msgstr "Y'yi Azalt" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "Varsayılan" @@ -3829,7 +3791,7 @@ msgstr "Varsayılan" msgid "Default Config (Read Only)" msgstr "Varsayılan Yapılandırma (Salt Okunur)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "Varsayılan Cihaz" @@ -3841,11 +3803,11 @@ msgstr "Varsayılan Yazı Tipi" msgid "Default ISO:" msgstr "Varsayılan ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "Varsayılan iş parçacığı" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "EFB Önbelleği Geçersiz Kılmayı Ertele" @@ -3853,7 +3815,7 @@ msgstr "EFB Önbelleği Geçersiz Kılmayı Ertele" msgid "Defer EFB Copies to RAM" msgstr "EFB Kopyalarını RAM'e Ertele" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3868,8 +3830,9 @@ msgstr "" "

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Sil" @@ -3899,12 +3862,12 @@ msgstr "Derinlik Yüzdesi:" msgid "Depth:" msgstr "Derinlik:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Açıklama" @@ -3918,8 +3881,8 @@ msgstr "Açıklama:" msgid "Description: %1" msgstr "Açıklama: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3931,21 +3894,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "Ayrılmış" @@ -3953,7 +3916,7 @@ msgstr "Ayrılmış" msgid "Detect" msgstr "Belirle" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "RSO Modülleri Algılanıyor" @@ -3961,11 +3924,11 @@ msgstr "RSO Modülleri Algılanıyor" msgid "Deterministic dual core:" msgstr "Deterministik çift çekirdek:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "Geliştirme (günde birkaç kez)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "Cihaz" @@ -3983,7 +3946,7 @@ msgstr "Cihaz Ayarları" msgid "Device VID (e.g., 057e)" msgstr "Cihaz VID (örn. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "Cihaz:" @@ -3991,7 +3954,7 @@ msgstr "Cihaz:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 geçerli bir Riivolution XML dosyası olarak tanınmadı." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "Beş dakika boyunca hareketsiz kalınırsa ekranı karartır." @@ -4007,11 +3970,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "Bağlantı ke&sildi" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "Devre Dışı Bırak" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "Sınırlayıcı Kutusunu Devre Dışı Bırak" @@ -4020,7 +3978,7 @@ msgstr "Sınırlayıcı Kutusunu Devre Dışı Bırak" msgid "Disable Copy Filter" msgstr "Kopyalama Filtresini Devre Dışı Bırak" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM Kopyalarını Devre Dışı Bırak" @@ -4028,11 +3986,11 @@ msgstr "EFB VRAM Kopyalarını Devre Dışı Bırak" msgid "Disable Emulation Speed Limit" msgstr "Öykünme Hızı Limitini Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "Fastmem'i Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "Fastmem Alanını Devre Dışı Bırak" @@ -4040,11 +3998,11 @@ msgstr "Fastmem Alanını Devre Dışı Bırak" msgid "Disable Fog" msgstr "Sisi Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "JIT Önbelleğini Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "Büyük Giriş Noktaları Haritasını Devre Dışı Bırak" @@ -4063,7 +4021,7 @@ msgstr "" "

Emin değilsen, bunu işaretli bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
Emin değilsen, bunu işaretli " "bırak." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "Disk" @@ -4096,6 +4060,10 @@ msgstr "Disk" msgid "Discard" msgstr "Vazgeç" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "Ekran Türü" @@ -4133,11 +4101,11 @@ msgstr "" "Dolphin'in geliştiricilerine bilgi bildirmesi için Dolphin'e yetki veriyor " "musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\"yi Oyun Dizinleri listesine eklemek istiyor musun?" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "Simge adlarının listesini temizlemek istiyor musun?" @@ -4147,7 +4115,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "%n seçili kayıt dosyasını silmek istiyor musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "Mevcut öykünmeyi durdurmak istiyor musun?" @@ -4155,12 +4123,12 @@ msgstr "Mevcut öykünmeyi durdurmak istiyor musun?" msgid "Do you want to try to repair the NAND?" msgstr "NAND'ı tamir etmeyi denemek ister misin?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II Kod Çözücü" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO Günlüğü (*.dff)" @@ -4168,9 +4136,9 @@ msgstr "Dolphin FIFO Günlüğü (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin Oyun Modu Ayarı" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Harita Dosyası (*.map)" @@ -4182,8 +4150,8 @@ msgstr "Dolphin İmza CSV Dosyası" msgid "Dolphin Signature File" msgstr "Dolphin İmza Dosyası" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmleri (*.dtm)" @@ -4226,7 +4194,7 @@ msgstr "Dolphin istenen işlemi gerçekleştiremedi." msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "Dolphin ücretsiz ve açık kaynaklı bir GameCube ve Wii emülatörüdür." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin geçiş sunucusu için çok eski" @@ -4242,7 +4210,7 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin lisanssız diskleri doğrulayamıyor." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." @@ -4250,7 +4218,7 @@ msgstr "" "Dolphin bunu, bölgesi otomatik olarak belirlenemeyen başlıklar için " "kullanacaktır." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin'in hile sistemi şu anda devre dışı." @@ -4259,7 +4227,7 @@ msgstr "Dolphin'in hile sistemi şu anda devre dışı." msgid "Domain" msgstr "Alan" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "Güncelleme Yapma" @@ -4280,7 +4248,7 @@ msgstr "Kapılar kilitli" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "Double" @@ -4302,7 +4270,7 @@ msgstr "Kodları İndir" msgid "Download Codes from the WiiRD Database" msgstr "WiiRD Veritabanından Kodları İndir" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "GameTDB.com'dan Oyun Kapaklarını Grid Modunda Kullanmak İçin İndir" @@ -4314,6 +4282,16 @@ msgstr "İndirme tamamlandı" msgid "Downloaded %1 codes. (added %2)" msgstr "%1 kod indirildi. (%2 eklendi)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4353,19 +4331,19 @@ msgstr "&FakeVMEM'i Dök" msgid "Dump &MRAM" msgstr "&MRAM'i Dök" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "Sesi Dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "Baz Dokuları Dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "EFB Hedefini Dök" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "Kareleri Dök" @@ -4373,7 +4351,7 @@ msgstr "Kareleri Dök" msgid "Dump GameCube BBA traffic" msgstr "GameCube BBA trafiğini dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "Mip Map'leri Dök" @@ -4381,7 +4359,7 @@ msgstr "Mip Map'leri Dök" msgid "Dump Path:" msgstr "Döküm Dizini:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "XFB Hedefini Dök" @@ -4406,7 +4384,7 @@ msgstr "Eş sertifikalarını dök" msgid "Dump root CA certificates" msgstr "Kök CA sertifikalarını dök" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4425,7 +4403,7 @@ msgstr "" "

Emin değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4434,25 +4412,25 @@ msgstr "" "

Emin değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "Turbo Düğmesine Basma Süresi (kare):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "Turbo Düğmesini Bırakma Süresi (kare):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Flemenkçe" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "&Çıkış" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB kopyası %1" @@ -4468,7 +4446,7 @@ msgstr "" "yeni sürücüyü görmesini sağlamak için muhtemelen bu noktada bilgisayarınızı " "yeniden başlatman gerekir." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4480,7 +4458,7 @@ msgstr "" "Adaletin ve minimum gecikmenin çok önemli olduğu rekabetçi oyunlar için " "uygundur." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "Erken Hafıza Güncellemeleri" @@ -4499,7 +4477,16 @@ msgstr "Doğu Asya" msgid "Edit Breakpoint" msgstr "Breakpoint'i Düzenle" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "Düzenle..." @@ -4519,7 +4506,7 @@ msgstr "Efekt" msgid "Effective" msgstr "Efektif" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "Efektif önceliği" @@ -4541,11 +4528,11 @@ msgstr "Element" msgid "Embedded Frame Buffer (EFB)" msgstr "Gömülü Kare Arabelleği (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "Boş" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "Öykünme iş parçacığı zaten çalışıyor" @@ -4573,7 +4560,7 @@ msgstr "" "Gerçek donanımın disk hızını öykünün. Devre dışı bırakmak kararsızlığa neden " "olabilir. Varsayılan değer Etkin'dir." -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "Öykünen USB Cihazları" @@ -4598,34 +4585,24 @@ msgstr "Öykünme hızı" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "API Doğrulama Katmanlarını Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "Başarım Rozetlerini Etkinleştir" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "Başarımları Etkinleştir" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "Ses Esnetmeyi Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "Hileleri Etkinleştir" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "Denetleyici Giri&şini Etkinleştir" @@ -4633,15 +4610,19 @@ msgstr "Denetleyici Giri&şini Etkinleştir" msgid "Enable Custom RTC" msgstr "Özel RTC'yi Etkinleştir" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "Hata Ayıklama Arayüzünü Etkinleştir" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Çift Çekirdeği Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "Çift Çekirdeği Etkinleştir (Hızı Artırır)" @@ -4653,7 +4634,7 @@ msgstr "Öykünen CPU Saat Hızını Geçersiz Kılmayı Etkinleştir" msgid "Enable Emulated Memory Size Override" msgstr "Öykünen Bellek Boyutu Geçersiz Kılmayı Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "Encore Başarımlarını Etkinleştir" @@ -4661,15 +4642,15 @@ msgstr "Encore Başarımlarını Etkinleştir" msgid "Enable FPRF" msgstr "FPRF'i Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "Grafik Modlarını Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "Zorlayıcı Modu Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4702,41 +4683,33 @@ msgstr "" "oyun çalışırken Zorlayıcı Modunu kapatmanın, yeniden etkinleştirmeden önce " "oyunun kapatılmasını gerektirdiğini unutmayın." -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "Lider Tablolarını Etkinleştir" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "MMU'yu Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "İlerleme Bildirimlerini Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "Progresif Taramayı Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.org Entegrasyonunu Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "Rich Presence'ı Etkinleştir" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "Rumble'ı Etkinleştir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "Ekran Koruyucusunu Etkinleştir" @@ -4744,19 +4717,23 @@ msgstr "Ekran Koruyucusunu Etkinleştir" msgid "Enable Speaker Data" msgstr "Hoparlör Verisini Etkinleştir" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Resmi Olmayan Başarımları Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasını Etkinleştir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink Aracılığıyla WiiConnect24'u Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "Wireframe'i Etkinleştir" @@ -4764,37 +4741,6 @@ msgstr "Wireframe'i Etkinleştir" msgid "Enable Write-Back Cache (slow)" msgstr "Geri Yazma Önbelleğini Etkinleştir (yavaş)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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 "" -"Başarım rozetlerini etkinleştirir.

Oyuncu, oyun ve başarımlar için " -"simgeler görüntülenir. Basit bir görsel seçenek, ancak görüntüleri indirmek " -"için az miktarda ekstra bellek ve zaman gerektirecektir." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"RetroAchievements liderlik tablolarında yarışmayı etkinleştirir." -"

Kullanmak için Zorlayıcı Modu etkinleştirilmelidir." - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"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 web sitesinde ayrıntılı rich presence'ı etkinleştirir." -"

Bu, web sitesine oyuncunun oyunda ne yaptığına dair ayrıntılı bir " -"açıklama sağlar. Bu devre dışı bırakılırsa, web sitesi yalnızca hangi oyunun " -"oynandığını bildirecektir.

Bu ayarın Discord rich presence ile " -"alakası yoktur." - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4804,7 +4750,7 @@ msgstr "" "çökmelere ve diğer sorunlara neden olabilir. (AÇIK = Uyumlu, KAPALI = " "Limitsiz)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4816,7 +4762,7 @@ msgstr "" "hesabı ile giriş yapmalısın. Dolphin şifreni yerel olarak kaydetmez ve " "oturum açmayı sürdürmek için bir API belirteci kullanır." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4826,35 +4772,34 @@ msgstr "" "120 yıldızdan 60'ı gibi birikmiş bir değeri takip eden bir başarımda " "ilerleme kaydettiğinde kısa bir açılır mesaj görüntülenir." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"Encore Modunda başarımların kilidini açmayı etkinleştirir.

Encore " -"Modu, oyuncunun sitede daha önce açtığı başarımları yeniden etkinleştirir, " -"böylece oyuncu kilit açma koşullarını tekrar karşıladığında bilgilendirilir, " -"özel speedrun kriterleri için veya sadece eğlence için kullanışlıdır." -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "Başarımların kilidini açmayı etkinleştir.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"Resmi başarımların yanı sıra resmi olmayan başarımların kilidini açmayı " -"etkinleştirir.

Resmi olmayan başarımlar, RetroAchievements tarafından " -"resmi olarak kabul edilmemiş isteğe bağlı veya tamamlanmamış başarımlardır. " -"Test veya sadece eğlence için yararlı olabilir." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4900,7 +4845,7 @@ msgstr "" "devre dışı kalmalıdır.

Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4913,7 +4858,7 @@ msgstr "" "arka ucu ile sınırlıdır.

Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4941,7 +4886,7 @@ msgstr "" "dahili olarak SDR'da işlendiğini unutmayın.

Emin " "değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "Öykünme hızına uyması için sesin esnetilmesini sağlar." @@ -4977,7 +4922,7 @@ msgstr "" "(AÇIK = Uyumlu, KAPALI = Hızlı)

Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4989,7 +4934,7 @@ msgstr "" "Kanalları için alternatif bir sağlayıcıdır\n" "Hizmet Koşullarını şu adresten okuyabilirsin: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5002,7 +4947,7 @@ msgstr "" "etkinleştirir.

Emin değilsen, bunu işaretsiz bırak." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5028,13 +4973,17 @@ msgstr "" "\n" "İçe aktarım iptal ediliyor." +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet Başlatılamadı" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "İngilizce" @@ -5051,7 +5000,7 @@ msgstr "XLink Kai istemcisini çalıştıran cihazın IP adresini girin:" msgid "Enter USB device ID" msgstr "USB cihaz ID'sini girin" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "Gözlemek için adres girin:" @@ -5075,33 +5024,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -5114,52 +5063,52 @@ msgstr "RSO modül adresini girin:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Hata" @@ -5176,7 +5125,7 @@ msgstr "Adaptör Açılırken Hata Oluştu: %1" msgid "Error collecting save data!" msgstr "Kayıt verileri toplanırken hata oluştu!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5191,7 +5140,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Oturum listesi alınırken hata oluştu: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "Bazı doku paketleri yüklenirken bir hata oluştu" @@ -5288,12 +5237,12 @@ msgstr "{1} bölümündeki {0} kullanılmayan blokta hatalar bulundu." msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Avrupa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "Ayrıcalıklı Uber Gölgelendiriciler" @@ -5337,11 +5286,11 @@ msgstr "İfadenin başlangıcı bekleniyor." msgid "Expected variable name." msgstr "Değişken ismi bekleniyor." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "Deneysel" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "Tüm Wii Kayıtlarını Dışa Aktar" @@ -5356,7 +5305,7 @@ msgstr "Dışa Aktarma Başarısız Oldu" msgid "Export Recording" msgstr "Kaydı Dışa Aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "Kaydı Dışa Aktar..." @@ -5384,14 +5333,14 @@ msgstr ".&gcs Olarak Dışarı Aktar..." msgid "Export as .&sav..." msgstr ".&sav Olarak Dışarı Aktar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "%n kayıt dışa aktarıldı" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "Eklenti" @@ -5404,7 +5353,7 @@ msgstr "Eklenti Hareket Girişi" msgid "Extension Motion Simulation" msgstr "Eklenti Hareket Simülasyonu" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "Harici" @@ -5412,35 +5361,35 @@ msgstr "Harici" msgid "External Frame Buffer (XFB)" msgstr "Harici Kare Arabelleği (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "NAND'den Sertifikaları Çıkar" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "Tüm Diski Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "Tüm Bölümü Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "Dosyayı Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "Dosyaları Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "Sistem Verilerini Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "Tüm Dosyalar Çıkarılıyor..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "Dizin Çıkarılıyor..." @@ -5449,8 +5398,8 @@ msgstr "Dizin Çıkarılıyor..." msgid "FD" msgstr "FD" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO Oynatıcısı" @@ -5466,11 +5415,11 @@ msgstr "" "Bellek kartı açılamadı:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "Bu oturum NetPlay dizinine eklenemedi: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "İmza dosyasına eklenemedi: '%1'" @@ -5490,7 +5439,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org'a bağlanılamadı." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "Sunucuya bağlanılamadı: %1" @@ -5511,15 +5460,15 @@ msgstr "D3D12 küresel kaynakları oluşturulamadı" msgid "Failed to create DXGI factory" msgstr "DXGI factory oluşturulamadı" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "Infinity dosyası oluşturulamadı" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "Skylander dosyası oluşturulamadı!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5566,15 +5515,15 @@ msgstr "%1 kayıt dosyasından %n tanesi dışa aktarılamadı." msgid "Failed to export the following save files:" msgstr "Aşağıdaki kayıt dosyaları dışa aktarılamadı:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "NAND'den sertifikalar çıkarılamadı" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "Dosya çıkarılamadı." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "Sistem verileri çıkarılamadı." @@ -5596,13 +5545,13 @@ msgstr "Bir veya daha fazla D3D sembolü bulunamadı" msgid "Failed to import \"%1\"." msgstr "\"%1\" içe aktarılamadı." -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Kayıt dosyası içe aktarılamadı. Lütfen oyunu başlatın ve tekrar deneyin." -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5610,7 +5559,7 @@ msgstr "" "Kayıt dosyası içe aktarılamadı. Verilen dosya bozuk veya geçersiz bir Wii " "kaydı olabilir." -#: Source/Core/DolphinQt/MenuBar.cpp:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5620,7 +5569,7 @@ msgstr "" "dosyalara erişimi engelliyor olabilir. NAND'ınızı onarmayı deneyin (Araçlar -" "> NAND'ı Yönet -> NAND'ı Kontrol Et...), ardından kaydı tekrar içe aktarın." -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "Çekirdek başlatılamadı" @@ -5643,11 +5592,11 @@ msgid "Failed to install pack: %1" msgstr "Paket kurulamadı: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "Bu başlık NAND'a kurulamadı." -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5655,8 +5604,8 @@ msgstr "" "Port %1 dinlemesi başarısız oldu. Birden fazla NetPlay sunucusu çalışıyor " "olabilir mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "%1 için RSO modülü yüklenemedi" @@ -5668,21 +5617,21 @@ msgstr "d3d11.dll yüklenemedi" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll yüklenemedi" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "Harita dosyası yüklenemedi '%1'" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "Skylander dosyası yüklenemedi!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "Yürütülebilir dosya belleğe yüklenemedi." @@ -5698,17 +5647,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Skylander modifiye edilemedi!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5716,7 +5665,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5746,15 +5695,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5762,11 +5711,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5813,23 +5762,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5843,7 +5792,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5874,31 +5823,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5949,19 +5898,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5974,7 +5923,7 @@ msgstr "Hızlı" msgid "Fast Depth Calculation" msgstr "Hızlı Derinlik Hesaplaması" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5985,7 +5934,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5999,7 +5948,7 @@ msgstr "Dosya Ayrıntıları" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "Dosya Biçimi" @@ -6007,24 +5956,24 @@ msgstr "Dosya Biçimi" msgid "File Format:" msgstr "Dosya Biçimi:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "Dosya Bilgisi" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "Dosya Adı" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "Dosya Yolu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "Dosya Boyutu" @@ -6109,7 +6058,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "Bayraklar" @@ -6118,12 +6066,12 @@ msgstr "Bayraklar" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -6143,7 +6091,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "16:9'a Zorla" @@ -6151,7 +6099,7 @@ msgstr "16:9'a Zorla" msgid "Force 24-Bit Color" msgstr "24-Bit Renge Zorla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "4:3'e Zorla" @@ -6183,11 +6131,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -6209,6 +6157,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "Biçim:" @@ -6224,7 +6178,7 @@ msgstr "İleri" msgid "Forward port (UPnP)" msgstr "İletme portu (UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -6234,7 +6188,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -6255,11 +6209,11 @@ msgstr "Kare İlerletme Hızını Arttır" msgid "Frame Advance Reset Speed" msgstr "Kare İlerletme Hızını Sıfırla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "Çerçeve Aralığı" @@ -6267,7 +6221,7 @@ msgstr "Çerçeve Aralığı" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -6287,7 +6241,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -6318,7 +6272,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "Fransızca" @@ -6337,8 +6291,8 @@ msgid "From" msgstr "Buradan" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -6346,10 +6300,14 @@ msgstr "" msgid "FullScr" msgstr "Tam Ekran" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "Fonksiyon" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -6390,11 +6348,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -6436,7 +6394,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "GPU Doku Çözücüsü" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6446,25 +6404,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6476,7 +6434,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6494,22 +6452,22 @@ msgstr "" msgid "Game" msgstr "Oyun" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Kartuşu (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6538,7 +6496,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "Oyun ID'si" @@ -6547,25 +6505,25 @@ msgstr "Oyun ID'si" msgid "Game ID:" msgstr "Oyun ID'si:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "Oyun Durumları" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6578,7 +6536,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6598,11 +6556,11 @@ msgstr "Wii U İçin GameCube Adaptörü" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6610,11 +6568,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "GameCube Kontrolcüleri" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6631,7 +6589,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6659,7 +6617,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Kodları" @@ -6669,35 +6627,35 @@ msgstr "Gecko Kodları" #: 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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "Genel" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "Genel ve Seçenekler" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "Yeni bir İstatistik Kimliği Oluşturun" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "Almanca" @@ -6724,7 +6682,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6733,7 +6691,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "Grafikler" @@ -6773,7 +6731,7 @@ msgstr "Yeşil Sol" msgid "Green Right" msgstr "Yeşil Sağ" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "Sütun Görünümü" @@ -6810,7 +6768,7 @@ msgstr "" msgid "Hacks" msgstr "Hileler" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6842,7 +6800,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "Hexadecimal" @@ -6851,11 +6809,11 @@ msgstr "Hexadecimal" msgid "Hide" msgstr "Gizle" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6867,16 +6825,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6899,7 +6864,7 @@ msgstr "Barındırma" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6907,7 +6872,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6915,11 +6880,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6931,7 +6896,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "Kısayol Tuşu Ayarları" @@ -6941,11 +6906,11 @@ msgstr "Kısayol Tuşu Ayarları" msgid "Hotkeys" msgstr "Kısayol Tuşları" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "Kısayol Tuşları Pencere Odağı Gerektirir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6998,12 +6963,12 @@ msgstr "IP Adresi:" msgid "IPL Settings" msgstr "IPL Ayarları" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "Kızılötesi" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "Kızılötesi Hassasiyeti:" @@ -7029,14 +6994,14 @@ msgstr "" msgid "Icon" msgstr "Simge" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -7053,7 +7018,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7067,14 +7032,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7086,7 +7051,7 @@ msgstr "" msgid "Ignore" msgstr "Yoksay" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -7118,7 +7083,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7127,7 +7092,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -7142,21 +7107,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "Wii Kayıtlarını Al..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "Oyunda?" @@ -7234,7 +7208,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -7243,7 +7217,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7263,12 +7237,12 @@ msgstr "Bilgi" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "Bilgilendirme" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -7277,11 +7251,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "Giriş" @@ -7295,23 +7269,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Yerleştir &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "SD Kart Ekle" @@ -7324,11 +7294,11 @@ msgstr "Kur" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "Güncellemeyi Kur" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "WAD Kur..." @@ -7336,13 +7306,13 @@ msgstr "WAD Kur..." msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -7351,7 +7321,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -7360,7 +7330,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7377,19 +7347,19 @@ msgstr "Intensity" msgid "Interface" msgstr "Arayüz" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -7402,19 +7372,19 @@ msgstr "İç LZO Hatası - Sıkıştırma başarısız." msgid "Internal LZO Error - decompression failed" msgstr "Dahili LZO Hatası - genişletme başarısız" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -7429,7 +7399,7 @@ msgstr "Dahili Çözünürlük" msgid "Internal Resolution:" msgstr "Dahili Çözünürlük:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -7437,7 +7407,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Yorumlayıcı (çok yavaş)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -7453,7 +7423,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Geçersiz Karma Kod" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7462,11 +7432,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7487,7 +7457,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7503,19 +7473,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "Hatalı çekim dosyası" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "Geçersiz arama parametreleri (nesne seçilmedi)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "Geçersiz arama dizesi (sayıya dönüştürülemedi)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "Geçersiz arama dizesi (sadece düz dize uzunluğu destekleniyor)" @@ -7523,13 +7493,13 @@ msgstr "Geçersiz arama dizesi (sadece düz dize uzunluğu destekleniyor)" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "İtalyanca" @@ -7542,11 +7512,11 @@ msgstr "İtalya" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7554,47 +7524,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7606,31 +7576,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "Japonya" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japonca" @@ -7647,12 +7617,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "Pencereyi Önde Tut" @@ -7686,16 +7656,16 @@ msgstr "Tuşlar" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "Oyuncuyu At" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "Kore" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korece" @@ -7716,7 +7686,7 @@ msgstr "" msgid "L-Analog" msgstr "L-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7724,7 +7694,11 @@ msgstr "" msgid "Label" msgstr "Etiket" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7738,23 +7712,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "Gecikme:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7762,7 +7736,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7770,7 +7744,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7781,7 +7755,7 @@ msgstr "Sol" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "Sol Çubuk" @@ -7852,11 +7826,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "Liste Görünümü" @@ -7865,30 +7839,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "Özel Dokuları Yükle" @@ -7896,11 +7870,11 @@ msgstr "Özel Dokuları Yükle" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "GameCube Ana Menüsü'nü Yükle" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -8006,23 +7980,23 @@ msgstr "8. Durumu Yükle" msgid "Load State Slot 9" msgstr "9. Durumu Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "Dosyadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "Seçili Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "Wii Sistem Menüsünü Yükle %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -8030,54 +8004,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Seçili Yuvadan Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "Yükle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "Yerel" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Günlük" @@ -8086,19 +8068,19 @@ msgstr "Günlük" msgid "Log Configuration" msgstr "Günlük Yapılandırması" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "Render Süresini Dosyaya Yaz" @@ -8110,31 +8092,31 @@ msgstr "Geçmiş Türü" msgid "Logger Outputs" msgstr "Geçmiş Çıkışı" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -8146,7 +8128,7 @@ msgstr "MD5:" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -8194,7 +8176,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -8211,16 +8193,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -8232,11 +8214,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -8245,7 +8227,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "Bu Wii Menüsünde ve bazı oyunlarda yavaşlamaya neden olabilir." @@ -8266,7 +8248,7 @@ msgstr "" msgid "Memory Card" msgstr "Hafıza Kartı" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -8294,7 +8276,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8308,7 +8290,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "Mikrofon" @@ -8317,15 +8299,15 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "Çeşitli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "Çeşitli Ayarlar" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -8337,7 +8319,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8357,7 +8339,7 @@ msgstr "" msgid "Modifier" msgstr "Değiştirici" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8373,8 +8355,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -8382,7 +8364,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -8394,11 +8376,11 @@ msgstr "Monoskopik Gölgeler" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -8407,23 +8389,10 @@ msgstr "" msgid "Motor" msgstr "Motor" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8434,13 +8403,13 @@ msgstr "" msgid "Movie" msgstr "Film" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -8453,10 +8422,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8465,8 +8434,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8475,7 +8444,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8492,8 +8461,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8536,7 +8505,7 @@ msgstr "Yerel (640x528)" msgid "Native GCI File" msgstr "Yerel GCI Dosyası" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8552,27 +8521,27 @@ msgstr "" msgid "Netherlands" msgstr "Hollanda" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "Ağ" @@ -8580,16 +8549,16 @@ msgstr "Ağ" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Yeni" @@ -8614,7 +8583,7 @@ msgstr "" msgid "New Tag..." msgstr "Yeni Etiket..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "Yeni kimlik oluşturuldu." @@ -8631,7 +8600,7 @@ msgstr "Yeni etiket" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8677,7 +8646,7 @@ msgstr "" msgid "No Match" msgstr "Eşleşme Yok" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8685,12 +8654,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "Açıklama yok" @@ -8702,7 +8671,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8710,7 +8679,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8723,11 +8692,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8750,7 +8719,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8767,10 +8736,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "Hiçbiri" @@ -8782,7 +8751,7 @@ msgstr "" msgid "Not Set" msgstr "Ayarlanmamış" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8802,7 +8771,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8846,26 +8815,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8917,7 +8886,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "Nesne Aralığı" @@ -8938,18 +8907,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8964,7 +8933,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "Çevrimiçi &Belgeler" @@ -8972,13 +8941,13 @@ msgstr "Çevrimiçi &Belgeler" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8995,7 +8964,7 @@ msgstr "Aç" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -9004,7 +8973,7 @@ msgstr "" msgid "Open Directory..." msgstr "Dizin Aç..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -9070,34 +9039,34 @@ msgstr "Turuncu" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9112,11 +9081,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "Diğer oyun..." @@ -9132,16 +9101,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9154,11 +9123,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -9170,7 +9139,7 @@ msgstr "" msgid "PPC Size" msgstr "PPC Boyutu" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -9204,7 +9173,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "Parola" @@ -9242,15 +9211,15 @@ msgstr "Yollar" msgid "Pause" msgstr "Duraklat" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "Filmin Sonunda Duraklat" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -9266,6 +9235,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9285,7 +9260,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Piksel Aydınlatması" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" @@ -9293,15 +9268,15 @@ msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -9319,11 +9294,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -9336,7 +9311,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "Platform" @@ -9344,7 +9319,7 @@ msgstr "Platform" msgid "Play" msgstr "Oynat" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -9356,40 +9331,40 @@ msgstr "Çekimi Oynat" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "Oynatma Seçenekleri" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "Oyuncular" @@ -9406,7 +9381,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9422,7 +9397,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -9439,7 +9414,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9455,24 +9430,32 @@ msgstr "Post-Processing Efekti:" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9497,7 +9480,7 @@ msgstr "Sync düğmesine basın" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9512,7 +9495,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9523,7 +9506,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9557,7 +9540,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "Profil" @@ -9566,23 +9549,29 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9602,18 +9591,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "Soru" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "Çık" @@ -9630,19 +9619,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-Analog" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9663,7 +9652,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9671,16 +9660,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9719,8 +9709,8 @@ msgstr "Gerçek Wii Remote" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9729,23 +9719,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "Çek" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "Çekim Seçenekleri" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9778,7 +9768,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9809,7 +9799,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Bölge" @@ -9830,7 +9820,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9838,7 +9832,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "Kaldır" @@ -9866,20 +9860,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "Ana Pencereye Dönüştür" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9893,10 +9887,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9906,7 +9906,7 @@ msgstr "Sıfırla" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9938,7 +9938,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Kaydedilen tüm Wii Remote eşleştirmelerini sıfırla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9950,7 +9950,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "Yeniden Başlatma Gerekli" @@ -9958,11 +9958,11 @@ msgstr "Yeniden Başlatma Gerekli" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "Tekrar Dene" @@ -9971,7 +9971,7 @@ msgstr "Tekrar Dene" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9983,7 +9983,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9994,7 +9994,7 @@ msgstr "Sağ" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "Sağ Çubuk" @@ -10030,11 +10030,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -10052,27 +10052,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -10085,7 +10089,7 @@ msgstr "" msgid "Rumble" msgstr "Gümbürtü" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -10093,15 +10097,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -10109,23 +10113,23 @@ msgstr "" msgid "Russia" msgstr "Rusya" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD Kart Yolu:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -10133,7 +10137,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -10168,11 +10172,11 @@ msgstr "" msgid "START" msgstr "START TUŞU" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "&Durumu Kaydet" @@ -10182,9 +10186,9 @@ msgid "Safe" msgstr "Güvenli" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10194,25 +10198,25 @@ msgstr "Kaydet" msgid "Save All" msgstr "Tümünü Kaydet" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -10226,11 +10230,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -10242,7 +10246,7 @@ msgstr "En Eski Durumu kaydet" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -10292,23 +10296,23 @@ msgstr "8. Duruma Kaydet" msgid "Save State Slot 9" msgstr "9. Duruma Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "Durumu Seçili Slot'a Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -10316,7 +10320,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -10328,11 +10332,11 @@ msgstr "" msgid "Save as..." msgstr "Farklı kaydet..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10343,11 +10347,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -10355,11 +10359,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "Kaydet..." @@ -10373,7 +10377,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -10390,8 +10394,8 @@ msgid "ScrShot" msgstr "Ekran Görüntüsü" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "Ara" @@ -10400,7 +10404,7 @@ msgstr "Ara" msgid "Search Address" msgstr "Adres Ara" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "Şu Anki Nesneyi Ara" @@ -10418,7 +10422,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "Bir talimat ara" @@ -10426,7 +10430,7 @@ msgstr "Bir talimat ara" msgid "Search games..." msgstr "Oyun ara..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -10460,7 +10464,7 @@ msgstr "Seç" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10471,23 +10475,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10515,7 +10519,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10523,7 +10527,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "Durum Yuvası Seç" @@ -10584,13 +10588,13 @@ msgstr "Bir Dizin Seç" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "Bir Dosya Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10598,7 +10602,7 @@ msgstr "" msgid "Select a Game" msgstr "Bir Oyun Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "Bir SD Kart Kalıbı Seç" @@ -10610,7 +10614,7 @@ msgstr "" msgid "Select a game" msgstr "Bir oyun seç" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10618,11 +10622,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10630,12 +10634,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "Kayıt dosyasını seçin" @@ -10658,16 +10662,16 @@ msgstr "Seçilmiş kontrolcü profili yok" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10683,7 +10687,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10713,7 +10717,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10735,7 +10739,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10745,11 +10749,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Gönder" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "Sensör Çubuğu Konumu:" @@ -10777,6 +10781,10 @@ msgstr "" msgid "Set &Value" msgstr "&Değeri Ayarla" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10794,23 +10802,23 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10820,29 +10828,44 @@ msgstr "" "olarak ayarlar.\n" "Tüm oyunlarda çalışmayabilir." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "Wii sistem dilini ayarlar." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "Ayarlar" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: setting.txt dosyası oluşturulamıyor" @@ -10850,7 +10873,7 @@ msgstr "SetupWiiMemory: setting.txt dosyası oluşturulamıyor" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "Gölgelendirici Derlemesi" @@ -10872,32 +10895,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "&Günlüğü Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "Araç Çubuğunu Gös&ter" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "Etkin Başlığı Pencere Başlığında Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "Avusturalya'yı Göster" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "Discord'da Mevcut Oyunu Göster" @@ -10906,7 +10929,7 @@ msgstr "Discord'da Mevcut Oyunu Göster" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "ELF/DOL'u Göster" @@ -10915,31 +10938,31 @@ msgstr "ELF/DOL'u Göster" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "FPS'yi Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "Kare Sayacını Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "Fransızları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "GameCube'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "Almanları göster" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10947,23 +10970,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "Görüntü Girişini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "İtalyanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "Korelileri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "Takılma Sayacını Göster" @@ -10971,27 +10994,27 @@ msgstr "Takılma Sayacını Göster" msgid "Show Language:" msgstr "Dili Göster:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "Geçmiş &Yapılandırmasını Göster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "NetPlay Mesajlarını Göster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "NetPlay Ping'ini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "Hollanda'yı Göster" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "PAL'ları Göster" @@ -11000,27 +11023,27 @@ msgstr "PAL'ları Göster" msgid "Show PC" msgstr "PC'yi Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "Platformları Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "Bölgeleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "Rusya'yı Göster" @@ -11028,72 +11051,72 @@ msgstr "Rusya'yı Göster" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "İspanya'yı Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "İstatistikleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "Sistem Saatini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "Tayvanlıları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "Amerikanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "Bilinmeyenleri Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "WAD'ları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "Wii'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "Dünyayı Göster" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -11101,71 +11124,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11187,7 +11243,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -11206,12 +11262,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Basitleştirilmiş Çince" @@ -11228,7 +11284,7 @@ msgstr "" msgid "Size" msgstr "Boyut" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11240,7 +11296,7 @@ msgstr "" msgid "Skip" msgstr "Atla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -11284,6 +11340,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -11354,7 +11413,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Alfabetik Sırala" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "Ses:" @@ -11368,7 +11427,7 @@ msgstr "İspanya" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "İspanyolca" @@ -11376,19 +11435,19 @@ msgstr "İspanyolca" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "Hoparlör Ses Seviyesi:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11413,11 +11472,11 @@ msgstr "Hız" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -11425,25 +11484,25 @@ msgstr "" msgid "Standard Controller" msgstr "Standart Denetleyici" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Başlat" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "&Netplay'i Başlat..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -11451,7 +11510,7 @@ msgstr "" msgid "Start Recording" msgstr "Çekimi Başlat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -11463,14 +11522,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11502,19 +11561,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11523,7 +11582,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11552,16 +11611,16 @@ msgid "Stick" msgstr "Çubuk" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Durdur" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11593,11 +11652,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "Pencereye Göre Ayarla" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11611,7 +11670,11 @@ msgstr "" msgid "Strum" msgstr "Tıngırtı" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11622,18 +11685,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11643,7 +11706,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11656,24 +11719,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11696,16 +11759,16 @@ msgstr "Destek" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11749,17 +11812,17 @@ msgstr "" msgid "Symbol" msgstr "Sembol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "Semboller" @@ -11767,7 +11830,7 @@ msgstr "Semboller" msgid "Sync" msgstr "Senkronize Et" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11785,7 +11848,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11804,24 +11867,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "Sistem Dili:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "TAS Girişi" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS Araçları" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "Etiketler" @@ -11831,7 +11894,7 @@ msgstr "Etiketler" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11839,7 +11902,7 @@ msgstr "" msgid "Taiwan" msgstr "Tayvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "Ekran Görüntüsü Al" @@ -11847,7 +11910,7 @@ msgstr "Ekran Görüntüsü Al" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11863,9 +11926,9 @@ msgstr "" msgid "Test" msgstr "Sınama" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11878,7 +11941,7 @@ msgstr "Doku Önbelleği" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11890,7 +11953,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "Doku Biçimi Kaplaması" @@ -11927,13 +11990,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11948,7 +12011,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11995,7 +12058,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12005,7 +12068,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "Takılacak olan disk bulunamadı." @@ -12084,7 +12147,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12124,7 +12187,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12183,12 +12246,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -12208,7 +12271,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12242,7 +12305,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12302,7 +12365,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12324,6 +12387,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -12335,8 +12402,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -12388,11 +12455,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "Bu USB aygıtı zaten beyaz listeye eklenmiş." -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "Bu WAD önyüklenebilir değil." -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -12409,7 +12476,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12511,7 +12578,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12531,7 +12598,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12572,7 +12639,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "Bu değer, grafik yapılandırmasında ayarlanan derinlik ile çarpılır." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12585,7 +12652,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12593,11 +12660,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12620,14 +12687,14 @@ msgstr "Eğim" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "Başlık" @@ -12636,12 +12703,12 @@ msgid "To" msgstr "Buraya" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "&Tam Ekran Moduna Geç" @@ -12666,7 +12733,7 @@ msgid "Toggle Aspect Ratio" msgstr "En-boy Oranını Aç/Kapat" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Kesim Noktasını Aç/Kapat" @@ -12722,7 +12789,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12730,7 +12797,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "Üst" @@ -12738,8 +12805,8 @@ msgstr "Üst" msgid "Top-and-Bottom" msgstr "Üst-ve-Alt" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12781,7 +12848,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Geleneksel Çince" @@ -12801,8 +12868,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12829,7 +12896,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "Tetikler" @@ -12839,7 +12906,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12853,7 +12920,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12865,7 +12932,7 @@ msgstr "AMERİKA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12883,14 +12950,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12898,7 +12965,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12907,7 +12974,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12970,11 +13037,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "Durum Yüklemeyi Geri Al" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "Durum Kaydetmeyi Geri Al" @@ -12994,28 +13061,28 @@ msgstr "" "Yüklü olan WAD dosyası, herhangi bir kayıt verisi silinmeden NAND'dan " "kaldırılacaktır. Devam edilsin mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "ABD" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "Bilinmeyen" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -13086,11 +13153,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "Sınırsız" @@ -13102,20 +13169,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -13142,7 +13197,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -13156,8 +13211,8 @@ msgstr "" msgid "Up" msgstr "Yukarı" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "Güncelle" @@ -13165,11 +13220,11 @@ msgstr "Güncelle" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -13212,7 +13267,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "İstatistik Raporlama Ayarları" @@ -13220,15 +13275,15 @@ msgstr "İstatistik Raporlama Ayarları" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -13236,15 +13291,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 Modunu Kullan (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "Önemli Hataları Bildir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13279,7 +13340,7 @@ msgstr "" msgid "User Config" msgstr "Kullanıcı Yapılandırması" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "Kullanıcı Arayüzü" @@ -13294,10 +13355,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13306,14 +13374,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13578,8 +13646,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Uyarı" @@ -13589,7 +13657,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13601,28 +13669,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13667,7 +13735,7 @@ msgstr "" msgid "Whammy" msgstr "Darbe" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13675,7 +13743,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13683,7 +13751,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "Beyaz Listeye Alınmış USB Geçiş Aygıtları" @@ -13715,25 +13783,25 @@ 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii Remote Ayarları" @@ -13741,19 +13809,19 @@ msgstr "Wii Remote Ayarları" msgid "Wii Remotes" msgstr "Wii Remote Kontrolcüleri" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii ve Wii Remote" @@ -13761,7 +13829,7 @@ msgstr "Wii ve Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13769,13 +13837,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13784,11 +13846,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13802,10 +13864,11 @@ msgstr "Dünya" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13838,39 +13901,39 @@ msgstr "" msgid "Write to Window" msgstr "Pencereye Yaz" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF kaydı " @@ -13879,9 +13942,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -13909,14 +13972,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13997,7 +14060,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "Değişikliğin etkili olması için Dolphin'i yeniden başlatmalısınız." @@ -14017,16 +14080,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14035,7 +14098,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Sıfır 3 kodu desteklenmemektedir" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -14084,7 +14147,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -14092,7 +14155,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -14100,7 +14163,7 @@ msgstr "" msgid "fake-completion" msgstr "sahte-tamamlama" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -14148,16 +14211,6 @@ msgstr "" msgid "none" msgstr "hiçbiri" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "ya da bir aygıt seçin" @@ -14175,7 +14228,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -14240,7 +14293,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index cf5090f6f2..112c3ac2bd 100644 --- a/Languages/po/zh_CN.po +++ b/Languages/po/zh_CN.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 天绝星 , 2015-2024\n" "Language-Team: Chinese (China) (http://app.transifex.com/delroth/dolphin-emu/" @@ -101,7 +101,7 @@ msgstr "" "%1\n" "想参加你的派对。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "%1 %" @@ -135,7 +135,7 @@ msgid "%1 (Revision %3)" msgstr "%1 (修订版 %3)" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "%1 (库)" @@ -155,7 +155,7 @@ msgstr "%1 (慢)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -169,11 +169,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "%1 图形配置" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "%1 MB (内存1)" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "%1 MB (内存2)" @@ -190,7 +190,7 @@ msgstr "%1 在你的系统上不支持此特性。" msgid "%1 doesn't support this feature." msgstr "%1 不支持此特性。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -200,35 +200,27 @@ msgstr "" "%2 对象\n" "当前帧: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "%1 已加入" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "%1 已离开" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" -"%1 已解锁 %2/%3 项成就 (包括 %4 项硬核成就) 折合 %5/%6 成就点数 (包括 %7 硬核" -"点数)" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 已解锁 %2/%3 项成就,折合 %4/%5 成就点数" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "%1 不是有效的 ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "%1 控制中" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "%1 正在玩 %2" @@ -236,13 +228,13 @@ msgstr "%1 正在玩 %2" msgid "%1 memory ranges" msgstr "%1 内存范围" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 msgid "%1 ms" msgstr "%1 毫秒" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "%1 成就点数" @@ -254,30 +246,30 @@ msgstr "已找到 %1 个会话" msgid "%1 sessions found" msgstr "已找到 %1 个会话" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "%1%" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "%1%(正常速度)" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "%1 的值已更改" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "%1 的值被命中" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "%1 的值已使用" @@ -289,6 +281,10 @@ msgstr "%1, %2, %3, %4" msgid "%1: %2" msgstr "%1: %2" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -358,11 +354,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "关于(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "添加内存断点(&A)" @@ -371,7 +367,7 @@ msgstr "添加内存断点(&A)" msgid "&Add New Code..." msgstr "添加新代码...(&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "添加函数(&A)" @@ -379,15 +375,15 @@ msgstr "添加函数(&A)" msgid "&Add..." msgstr "添加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "汇编器(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "音频设置(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "自动更新(&A):" @@ -395,11 +391,15 @@ msgstr "自动更新(&A):" msgid "&Borderless Window" msgstr "无边框窗口(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "断点(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "错误跟踪器(&B)" @@ -407,15 +407,15 @@ msgstr "错误跟踪器(&B)" msgid "&Cancel" msgstr "取消(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "金手指管理器(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "检查更新...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "清除符号(&C)" @@ -423,7 +423,7 @@ msgstr "清除符号(&C)" msgid "&Clone..." msgstr "克隆...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "代码(&C)" @@ -431,16 +431,15 @@ msgstr "代码(&C)" msgid "&Connected" msgstr "连接(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "控制器设置(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "复制地址(&C)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "复制地址(&C)" @@ -448,20 +447,20 @@ msgstr "复制地址(&C)" msgid "&Create..." msgstr "创建...(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "删除(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "删除监视(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "删除监视(&D)" @@ -475,11 +474,11 @@ msgstr "编辑代码...(&E)" msgid "&Edit..." msgstr "编辑...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "弹出光盘(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "模拟(&E)" @@ -499,41 +498,41 @@ msgstr "导出状态...(&E)" msgid "&Export as .gci..." msgstr "导出为 .gci...(&E)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "文件(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "字体...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "逐帧播放(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "自由视点设置(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "生成符号来自(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "GitHub 资源库(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "图形设置(&G)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "帮助(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "热键设置(&H)" @@ -553,11 +552,11 @@ msgstr "导入状态...(&I)" msgid "&Import..." msgstr "导入...(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "Infinity 底座(&I)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "插入 blr (&I)" @@ -565,23 +564,23 @@ msgstr "插入 blr (&I)" msgid "&Interframe Blending" msgstr "帧间混合(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "即时编译器(&J)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "语言(&L):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "载入分支监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "载入状态(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "载入符号映射(&L)" @@ -591,19 +590,23 @@ msgstr "将文件加载到当前地址(&L)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "锁定监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "锁定部件位置(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "内存(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "影片(&M)" @@ -611,7 +614,7 @@ msgstr "影片(&M)" msgid "&Mute" msgstr "静音(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "网络(&N)" @@ -620,23 +623,23 @@ msgid "&No" msgstr "否(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "打开...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "选项(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "修补 HLE 功能函数(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "暂停游戏(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "开始游戏(&P)" @@ -644,7 +647,7 @@ msgstr "开始游戏(&P)" msgid "&Properties" msgstr "属性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "只读模式(&R)" @@ -652,7 +655,7 @@ msgstr "只读模式(&R)" msgid "&Refresh List" msgstr "刷新列表(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "寄存器(&R)" @@ -665,24 +668,24 @@ msgstr "移除(&R)" msgid "&Remove Code" msgstr "移除代码(&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "重命名符号(&R)" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "重置游戏(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "资源包管理器(&R)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "保存分支监视(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "保存符号映射(&S)" @@ -690,31 +693,31 @@ msgstr "保存符号映射(&S)" msgid "&Scan e-Reader Card(s)..." msgstr "扫描 e-Reader 卡...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "Skylanders 传送门(&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "速度限制(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "停止游戏(&S)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "主题(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "线程(&T)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "工具(&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "工具(&T)" @@ -724,21 +727,21 @@ msgstr "卸载 ROM (&U)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "解锁监视(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "监视(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "网站(&W)" @@ -750,23 +753,23 @@ msgstr "百科(&W)" msgid "&Yes" msgstr "是(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "找不到 '%1',未生成符号名" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "找不到 '%1',改为扫描常用函数" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "(深色)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "(浅色)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "(系统)" @@ -802,12 +805,12 @@ msgstr "- 减" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "--未知--" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -868,7 +871,7 @@ msgstr "16 位有符号整数" msgid "16-bit Unsigned Integer" msgstr "16 位无符号整数" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "16:9" @@ -926,7 +929,7 @@ msgstr "32 位无符号整数" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" @@ -952,7 +955,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 区块)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "4:3" @@ -1045,26 +1048,26 @@ msgstr "< 小于" msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "<系统语言>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "在硬核模式下禁用。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "自动步进超时。当前指令与其不相关。" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1090,8 +1093,8 @@ msgstr "警告无效的基地址,默认 msgid "> Greater-than" msgstr "> 大于" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "已经有一个联机会话正在进行!" @@ -1111,7 +1114,7 @@ msgstr "" "\n" "安装此 WAD 替换是不可逆转的。是否继续?" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "光盘已可插入。" @@ -1125,7 +1128,7 @@ msgstr "一些使颜色更准确的功能,使其与 Wii 和 GC 游戏的色彩 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "载入保存状态必须指定要启动的游戏" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1145,7 +1148,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "只有在 Wii 游戏运行时同步才能触发。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "自动保存(&U)" @@ -1180,7 +1183,7 @@ msgstr "" "Wii 遥控器的联机还在实验阶段,可能不会正常工作。\n" "使用需自担风险。\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR 代码" @@ -1223,16 +1226,10 @@ msgid "Achievement Settings" msgstr "成就设置" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "成就" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "成就功能已被禁用。
请关闭所有运行的游戏以重新启用成就功能。" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "操作" @@ -1317,7 +1314,7 @@ msgstr "Action Replay: 正常代码 {0}: 无效子类型 {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "激活联机聊天" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "激活" @@ -1325,15 +1322,15 @@ msgstr "激活" msgid "Active Infinity Figures:" msgstr "正在使用的 Infinity 角色:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "活动线程队列" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "活动线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "适配器" @@ -1341,7 +1338,7 @@ msgstr "适配器" msgid "Adapter Detected" msgstr "检测到适配器" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "适配器:" @@ -1351,7 +1348,7 @@ msgstr "适配器:" msgid "Add" msgstr "添加" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "添加断点(&B)" @@ -1376,43 +1373,43 @@ msgstr "添加一个断点" msgid "Add a Memory Breakpoint" msgstr "添加内存断点" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "添加内存断点(&B)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "添加到监视(&W)" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "添加到监视" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "添加..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "地址" @@ -1570,7 +1567,7 @@ msgid "All Assembly files" msgstr "所有汇编文件" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "所有双精度" @@ -1579,7 +1576,7 @@ msgstr "所有双精度" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1587,34 +1584,34 @@ msgid "All Files" msgstr "所有文件" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "所有文件 (*)" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "所有浮点数" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "所有 GC/Wii 文件" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "全十六进制" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "所有状态存档 (*.sav *.s##);; 所有文件 (*)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "全部有符号整数" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "全部无符号整数" @@ -1630,7 +1627,7 @@ msgstr "所有玩家代码已同步。" msgid "All players' saves synchronized." msgstr "所有玩家存档已同步。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "允许不匹配的区域设置" @@ -1638,7 +1635,7 @@ msgstr "允许不匹配的区域设置" msgid "Allow Usage Statistics Reporting" msgstr "允许使用情况统计报告" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "允许写入 SD 卡" @@ -1658,7 +1655,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "其他输入源" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "总是" @@ -1680,7 +1677,7 @@ msgstr "光盘预计已插入但无法找到。" msgid "Anaglyph" msgstr "色差" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "分析" @@ -1706,15 +1703,15 @@ msgstr "抗锯齿:" msgid "Any Region" msgstr "任意区域" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "附加签名到" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "附加到现有签名文件...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "应用签名文件...(&Y)" @@ -1734,7 +1731,7 @@ msgstr "应用载入器时间:" msgid "Apply" msgstr "应用" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "应用签名文件" @@ -1742,7 +1739,7 @@ msgstr "应用签名文件" msgid "Arbitrary Mipmap Detection" msgstr "特殊多级纹理检测" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "确定要删除 '%1' 吗?" @@ -1754,7 +1751,7 @@ msgstr "确定要删除该文件吗?" msgid "Are you sure you want to delete this pack?" msgstr "确定要删除这个包吗?" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "确定要退出联机吗?" @@ -1766,16 +1763,16 @@ msgstr "确定?" msgid "Area Sampling" msgstr "区域取样" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "宽高比" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "宽高比已校正的内部分辨率" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "宽高比:" @@ -1783,7 +1780,7 @@ msgstr "宽高比:" msgid "Assemble" msgstr "汇编" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "汇编指令" @@ -1795,7 +1792,7 @@ msgstr "汇编器" msgid "Assembly File" msgstr "汇编文件" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "指定控制器端口" @@ -1816,11 +1813,11 @@ msgstr "附带 MotionPlus" msgid "Audio" msgstr "音频" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "音频后端:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "音频伸缩设置" @@ -1836,7 +1833,7 @@ msgstr "作者" msgid "Authors" msgstr "作者" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自动" @@ -1845,11 +1842,11 @@ msgstr "自动" msgid "Auto (Multiple of 640x528)" msgstr "自动(640x528 的倍数)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "自动更新设置" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1860,7 +1857,7 @@ msgstr "" "\n" "请选择特定的内部分辨率。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "自动调整窗口大小" @@ -1868,15 +1865,15 @@ msgstr "自动调整窗口大小" msgid "Auto-Hide" msgstr "自动隐藏" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "自动检测 RSO 模块?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "自动与文件夹同步" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1920,27 +1917,27 @@ msgstr "BBA 目标地址" msgid "BIOS:" msgstr "BIOS:" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "BP 寄存器" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "后链" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "后端" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "后端多线程" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "后端设置" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "后端:" @@ -1983,7 +1980,7 @@ msgstr "值格式不正确。" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "标图" @@ -2003,15 +2000,15 @@ msgstr "摇把" msgid "Base Address" msgstr "基地址" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "基本优先级" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "基本" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "基本设置" @@ -2027,10 +2024,6 @@ msgstr "使用批处理模式必须指定要启动的游戏" msgid "Battery" msgstr "电池" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "体验版(每月一次)" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "BetterJoy,DS4Windows,等" @@ -2063,11 +2056,11 @@ msgstr "二进制 SSL (读取)" msgid "Binary SSL (write)" msgstr "二进制 SSL (写入)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "比特率 (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2081,7 +2074,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "区块大小" @@ -2118,67 +2111,67 @@ msgid "" msgstr "" "蓝牙直通模式已启用,但 Dolphin 构建没有加入 libusb 驱动。无法使用直通模式。" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "引导后暂停" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 备份文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 密钥文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "无边框全屏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "底部" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "分支" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "分支(LR 已保存)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "条件分支" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "条件分支(LR 已保存)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "条件分支到计数寄存器" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "条件分支到计数寄存器(LR 已保存)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "条件分支到链接寄存器" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "条件分支到链接寄存器(LR 已保存)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "分支未被覆盖" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "分支类型" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "分支已被覆盖" @@ -2190,23 +2183,23 @@ msgstr "分支监视" msgid "Branch Watch Tool" msgstr "分支监视工具" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "分支监视工具帮助 (1/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "分支监视工具帮助 (2/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "分支监视工具帮助 (3/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "分支监视工具帮助 (4/4)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2231,7 +2224,7 @@ msgstr "" "一步都能保存快照。“暂停分支监视”按钮将中止分支监视跟踪进一步的分支命中,直到" "被告知恢复。按下“清除分支监视”按钮可清除所有候选数据并返回黑名单阶段。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2245,19 +2238,19 @@ msgstr "" "资格之外 。一旦按下“代码路径已采用”按钮后,分支监视将切换到缩减阶段,并且表格" "将填充所有符合条件的候选数据。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "分支到计数寄存器" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "分支到计数寄存器(LR 已保存)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "分支到链接寄存器" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "分支到链接寄存器(LR 已保存)" @@ -2272,19 +2265,24 @@ msgstr "分支" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "中断" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "断点" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "遇到断点!跳出已中止。" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "断点" @@ -2318,24 +2316,24 @@ msgstr "宽带适配器错误" msgid "Broadband Adapter MAC Address" msgstr "宽带适配器 MAC 地址" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "浏览联机会话...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "缓冲区大小:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "缓冲区大小更改为 %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "缓冲区:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2382,11 +2380,11 @@ msgstr "作者:%1" msgid "C Stick" msgstr "C 摇杆" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "创建签名文件...(&R)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "CP 寄存器" @@ -2406,7 +2404,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "缓存解释器(较慢)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2443,7 +2441,7 @@ msgstr "校准" msgid "Calibration Period" msgstr "校准周期" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "调用位于 %1 大小为 %2 的显示列表" @@ -2469,7 +2467,7 @@ msgstr "镜头 1" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "镜头视野(影响指向的灵敏度)。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "只能为虚拟内存中的数值生成 AR 代码。" @@ -2485,18 +2483,18 @@ msgstr "无法对此奖杯编辑反派角色!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "不能按照连接句柄 {0:02x} 找到 Wii 遥控器" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "取消" @@ -2505,15 +2503,15 @@ msgstr "取消" msgid "Cancel Calibration" msgstr "取消校准" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "候选: %1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "候选: %1 | 排除: %2 | 剩余: %3" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "候选: %1 | 过滤: %2 | 剩余: %3" @@ -2529,11 +2527,11 @@ msgstr "无法启动此 WAD,因为无法将其安装到 NAND 中。" msgid "Cannot compare against last value on first search." msgstr "无法与首次搜索的上个值进行比较。" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "找不到 GC IPL。" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "无法为此地址生成 AR 代码。" @@ -2541,7 +2539,7 @@ msgstr "无法为此地址生成 AR 代码。" msgid "Cannot refresh without results." msgstr "没有结果下无法刷新。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "无法将 GCI 文件夹设置为空路径。" @@ -2549,7 +2547,7 @@ msgstr "无法将 GCI 文件夹设置为空路径。" msgid "Cannot set memory card to an empty path." msgstr "无法将存储卡设置为空路径。" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "找不到 GC IPL,无法启动游戏。" @@ -2581,7 +2579,7 @@ msgstr "中心和校准" msgid "Change &Disc" msgstr "切换光盘(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "切换光盘...(&D)" @@ -2589,15 +2587,21 @@ msgstr "切换光盘...(&D)" msgid "Change Disc" msgstr "切换光盘" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "自动切换光盘" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "切换光盘至 {0}" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2622,7 +2626,7 @@ msgstr "" "转和移动,但无法滚动。易于使用,但有局限性。

轨道:将自由镜头围绕原始" "镜头旋转。没有横向移动,只能旋转,可以放大视角到镜头的原点。" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "游戏重启后更改的金手指才会生效。" @@ -2630,11 +2634,11 @@ msgstr "游戏重启后更改的金手指才会生效。" msgid "Channel Partition (%1)" msgstr "通道分区 (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "输入的字符无效!" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "聊天" @@ -2642,7 +2646,7 @@ msgstr "聊天" msgid "Cheat Code Editor" msgstr "金手指编辑器" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "金手指搜索" @@ -2650,7 +2654,7 @@ msgstr "金手指搜索" msgid "Cheats Manager" msgstr "金手指管理器" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "校验 NAND..." @@ -2668,7 +2672,7 @@ msgid "" "whether it's still in use." msgstr "请检查您是否有删除该文件的权限以及其是否仍在使用。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "校验" @@ -2680,7 +2684,7 @@ msgstr "中国" msgid "Choose" msgstr "选择" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "选择要打开的文件" @@ -2688,15 +2692,15 @@ msgstr "选择要打开的文件" msgid "Choose a file to open or create" msgstr "选择要打开或创建的文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "选择优先输入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "选择次要输入文件" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "选择 GCI 基础文件夹" @@ -2709,7 +2713,7 @@ msgstr "选择提取目标文件夹" msgid "Clamping of rotation about the yaw axis." msgstr "围绕偏转轴的旋转夹角。" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "传统按键" @@ -2720,18 +2724,18 @@ msgstr "传统控制器" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "清除" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "清除分支监视" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "清除缓存" @@ -2752,7 +2756,7 @@ msgstr "复制并编辑代码...(&E)" msgid "Close" msgstr "关闭" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "程序设置(&N)" @@ -2760,11 +2764,11 @@ msgstr "程序设置(&N)" msgid "Code" msgstr "代码" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "代码路径未采用" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "代码路径已采用" @@ -2792,11 +2796,11 @@ msgstr "色彩校正:" msgid "Color Space" msgstr "色彩空间" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "表列可见性(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "合并两个签名文件...(&T)" @@ -2827,7 +2831,7 @@ msgstr "" "与游戏的 Wii 光盘发布版本相比,这是错误的转储。尽管如此,与游戏的 Wii U " "eShop 版本比较的话这可能是一个正确的转储。Dolphin 无法验证这一点。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "在开始前编译着色器" @@ -2837,7 +2841,7 @@ msgstr "正在编译着色器" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "压缩" @@ -2850,7 +2854,7 @@ msgstr "压缩级别:" msgid "Compression:" msgstr "压缩:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "条件。" @@ -2858,11 +2862,11 @@ msgstr "条件。" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "条件" @@ -2878,7 +2882,7 @@ msgstr "条件" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "附带条件帮助" @@ -2893,7 +2897,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2931,46 +2940,6 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" -"状况:\n" -"设置命中断点时计算的表达式。如果表达式为 false 或 0,则忽略断点,直到再次命中" -"断点。语句应该用逗号间隔。只有最后一个语句将用于确定要做什么。\n" -"\n" -"可以参考的寄存器:\n" -"GPRs : r0..r31\n" -"FPRs : f0..f31\n" -"LR, CTR, PC\n" -"\n" -"函数:\n" -"设置寄存器:r1 = 8\n" -"转换:s8(0xff). 可用:s8, u8, s16, u16, s32, u32\n" -"调用堆栈:callstack(0x80123456), callstack(\"anim\")\n" -"比较字符串:streq(r3, \"abc\"). 两个参数都可以是地址或字符串常量。\n" -"读取内存:read_u32(0x80000000). 可用:u8, s8, u16, s16, u32, s32, f32, f64\n" -"写入内存:write_u32(r3, 0x80000000). 可用:u8, u16, u32, f32, f64\n" -"*当前写入会一直触发\n" -"\n" -"操作:\n" -"一元:-u, !u, ~u\n" -"数学:* / + -, power: **, remainder: %, shift: <<, >>\n" -"比较:<, <=, >, >=, ==, !=, &&, ||\n" -"按位:&, |, ^\n" -"\n" -"示例:\n" -"r4 == 1\n" -"f0 == 1.0 && f2 < 10.0\n" -"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" -"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" -"写入并中断:r4 = 8, 1\n" -"写入并继续:f3 = f1 + f2, 0\n" -"条件必须始终是最后一个\n" -"\n" -"字符串只能在 callstack() 或 streq() 中使用并且“引用”。不要将字符串分配给变" -"量。\n" -"如果有命中或 NaN 结果,所有变量都将打印在内存接口日志中。要检查问题,请为方程" -"分配一个变量,以便可以打印显示。\n" -"\n" -"注意:所有值都会在内部转换为双精度数以进行计算。它们有可能超出范围或变为 " -"NaN。如果返回 NaN 将给出警告,并且将变为 NaN 的值记录下来。" #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -2987,7 +2956,7 @@ msgstr "配置" msgid "Configure Controller" msgstr "配置控制器" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin 配置" @@ -3000,27 +2969,27 @@ msgstr "配置输入" msgid "Configure Output" msgstr "配置输出" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "确定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "确认改变后端" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "停止游戏时确认" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "确认" @@ -3030,15 +2999,15 @@ msgstr "确认" msgid "Connect" msgstr "连接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "连接平衡板" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "连接 USB 键盘" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "连接 Wii 遥控器 %1" @@ -3058,7 +3027,7 @@ msgstr "连接 Wii 遥控器 3" msgid "Connect Wii Remote 4" msgstr "连接 Wii 遥控器 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "连接 Wii 遥控器" @@ -3074,7 +3043,7 @@ msgstr "是否连接到互联网并执行在线系统更新?" msgid "Connected" msgstr "已连接" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "正在连接" @@ -3099,7 +3068,7 @@ msgstr "控制联机高尔夫模式" msgid "Control Stick" msgstr "控制摇杆" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "控制器预设" @@ -3197,8 +3166,8 @@ msgstr "会聚" msgid "Convergence:" msgstr "会聚:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "转换失败。" @@ -3206,9 +3175,9 @@ msgstr "转换失败。" msgid "Convert" msgstr "转换" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "立即将文件转换为文件夹" @@ -3216,9 +3185,9 @@ msgstr "立即将文件转换为文件夹" msgid "Convert File..." msgstr "转换文件..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "立即将文件夹转换为文件" @@ -3240,8 +3209,8 @@ msgstr "" "不会节省任何更明显的空间。是否仍要继续?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "正在转换..." @@ -3280,22 +3249,22 @@ msgstr "" "通常以 2.2 为标准。

如无法确定,请不要选中此项。" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "复制" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "复制函数(&F)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "复制十六进制(&H)" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "复制地址" @@ -3303,19 +3272,19 @@ msgstr "复制地址" msgid "Copy Failed" msgstr "复制失败" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "复制十六进制" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "复制数值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "复制代码行(&L)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "复制目标地址(&G)" @@ -3333,8 +3302,8 @@ msgstr "复制到 B" msgid "Core" msgstr "核心" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "核心未初始化。" @@ -3461,7 +3430,7 @@ msgstr "" "您是否是在移动模拟器目录后收到这个消息?\n" "如果是这样,您可能需要在选项中重新指定您的存储卡位置。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "无法查找中心服务器" @@ -3477,13 +3446,13 @@ msgstr "无法读取文件。" msgid "Country:" msgstr "国家:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "创建" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "创建 Infinity 文件" @@ -3497,7 +3466,7 @@ msgstr "创建新存储卡" msgid "Create Skylander File" msgstr "创建 Skylander 文件" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "为其他设备创建映射" @@ -3514,11 +3483,11 @@ msgstr "创建者:" msgid "Critical" msgstr "错误" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "裁切" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3533,11 +3502,11 @@ msgstr "" msgid "Crossfade" msgstr "混音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "清除 CPU 顶点" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3546,31 +3515,31 @@ msgstr "" "清除 CPU 上的顶点以减少所需的绘制调用数。可能影响性能和绘制统计数据。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "当前区域" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "当前值" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "当前上下文" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "当前游戏" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "当前线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "自定义" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "自定义(拉伸)" @@ -3578,15 +3547,15 @@ msgstr "自定义(拉伸)" msgid "Custom Address Space" msgstr "自定义地址空间" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "自定义宽高比高度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "自定义宽高比宽度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "自定义宽高比:" @@ -3629,7 +3598,7 @@ msgstr "打碟机" msgid "DK Bongos" msgstr "DK 小对鼓" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "音频模拟引擎" @@ -3637,15 +3606,15 @@ msgstr "音频模拟引擎" msgid "DSP HLE (fast)" msgstr "音频 HLE (较快)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "音频 HLE (推荐)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "音频 LLE 解释器(很慢)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "音频 LLE 重编译器(较慢)" @@ -3674,7 +3643,7 @@ msgstr "跳舞毯" msgid "Dark" msgstr "暗" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "数据" @@ -3719,8 +3688,8 @@ msgstr "死区" msgid "Debug" msgstr "调试" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "调试" @@ -3729,7 +3698,7 @@ msgstr "调试" msgid "Decimal" msgstr "十进制" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "解码质量:" @@ -3768,7 +3737,7 @@ msgstr "减小 Y" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "默认" @@ -3776,7 +3745,7 @@ msgstr "默认" msgid "Default Config (Read Only)" msgstr "默认配置 (只读)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "默认设备" @@ -3788,11 +3757,11 @@ msgstr "默认字体" msgid "Default ISO:" msgstr "默认镜像:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "默认线程" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "推迟 EFB 缓存失效" @@ -3800,7 +3769,7 @@ msgstr "推迟 EFB 缓存失效" msgid "Defer EFB Copies to RAM" msgstr "推迟 EFB 副本到内存" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3812,8 +3781,9 @@ msgstr "" "存失效。

可能提高一些依靠 CPU EFB 访问游戏的性能,但会牺牲稳定性。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "删除" @@ -3843,12 +3813,12 @@ msgstr "深度百分比:" msgid "Depth:" msgstr "深度:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "说明" @@ -3862,8 +3832,8 @@ msgstr "说明:" msgid "Description: %1" msgstr "说明:%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "目标" @@ -3875,21 +3845,21 @@ msgstr "目标(UNIX 套接字路径或地址:端口):" msgid "Destination (address:port):" msgstr "目标(地址:端口):" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "目标最大" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "目标最小" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "目标符号" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "分离的" @@ -3897,7 +3867,7 @@ msgstr "分离的" msgid "Detect" msgstr "检测" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "正在检测 RSO 模块" @@ -3905,11 +3875,11 @@ msgstr "正在检测 RSO 模块" msgid "Deterministic dual core:" msgstr "确定性双核:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "开发版(一天多次)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "设备" @@ -3927,7 +3897,7 @@ msgstr "设备设置" msgid "Device VID (e.g., 057e)" msgstr "设备 VID (例如: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "设备:" @@ -3935,7 +3905,7 @@ msgstr "设备:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "无法将 %1 识别为有效的 Riivolution XML 文件。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "五分钟非活动状态后变暗屏幕。" @@ -3951,11 +3921,6 @@ msgstr "Direct3D 11" msgid "Dis&connected" msgstr "断开连接(&C)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "禁用" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "禁用边界框" @@ -3964,7 +3929,7 @@ msgstr "禁用边界框" msgid "Disable Copy Filter" msgstr "禁用复制过滤" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "禁用 EFB VRAM 副本" @@ -3972,11 +3937,11 @@ msgstr "禁用 EFB VRAM 副本" msgid "Disable Emulation Speed Limit" msgstr "禁用模拟速度限制" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "禁用快速内存" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "禁用快速内存区" @@ -3984,11 +3949,11 @@ msgstr "禁用快速内存区" msgid "Disable Fog" msgstr "禁用雾化" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "禁用 JIT 缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "禁用超大入口端点映射" @@ -4005,7 +3970,7 @@ msgstr "" "禁用边界框模拟。

这可能显著提高 GPU 性能,但是一些游戏可能会停止运行。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
如无法确定,请选中此项。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "光盘" @@ -4034,6 +4005,10 @@ msgstr "光盘" msgid "Discard" msgstr "丢弃" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "显示类型" @@ -4067,11 +4042,11 @@ msgstr "从中间位置移动的距离。" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "是否授权 Dolphin 向开发者报告信息?" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "是否要添加 \"%1\" 到游戏路径列表?" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "你是否要清除符号名称列表?" @@ -4081,7 +4056,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "是否要删除 %n 已选定的存档文件?" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "您确定是否停止当前模拟?" @@ -4089,12 +4064,12 @@ msgstr "您确定是否停止当前模拟?" msgid "Do you want to try to repair the NAND?" msgstr "你要尝试修复 NAND 吗?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "杜比定向逻辑II解码器" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin FIFO 日志 (*.dff)" @@ -4102,9 +4077,9 @@ msgstr "Dolphin FIFO 日志 (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin 游戏模组预设" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "Dolphin 映射文件 (*.map)" @@ -4116,8 +4091,8 @@ msgstr "Dolphin 签名 CSV 文件" msgid "Dolphin Signature File" msgstr "Dolphin 签名文件" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS 电影 (*.dtm)" @@ -4159,7 +4134,7 @@ msgstr "Dolphin 未能完成请求的操作。" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "Dolphin 是一个免费开源的 GameCube/Wii 模拟器。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "Dolphin 版本太旧,穿透服务器不支持" @@ -4173,13 +4148,13 @@ msgstr "Dolphin 无法正确验证典型的 TGC 文件,因为其不是真实 msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin 无法验证未经授权的光盘。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "Dolphin 会将其用于无法自动确定区域的游戏。" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin 的金手指系统当前已禁用。" @@ -4188,7 +4163,7 @@ msgstr "Dolphin 的金手指系统当前已禁用。" msgid "Domain" msgstr "域名" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "不更新" @@ -4209,7 +4184,7 @@ msgstr "门已锁上" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "双精度" @@ -4231,7 +4206,7 @@ msgstr "下载代码" msgid "Download Codes from the WiiRD Database" msgstr "从 WiiRD 数据库中下载代码" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "从 GameTDB.com 下载游戏封面以便在网格模式下使用" @@ -4243,6 +4218,16 @@ msgstr "下载完成" msgid "Downloaded %1 codes. (added %2)" msgstr "已下载 %1 代码。(已添加 %2)" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4282,19 +4267,19 @@ msgstr "转储伪显存(&F)" msgid "Dump &MRAM" msgstr "转储主内存(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "转储音频" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "转储基本纹理" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "转储 EFB 目标" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "转储帧" @@ -4302,7 +4287,7 @@ msgstr "转储帧" msgid "Dump GameCube BBA traffic" msgstr "转储 GameCube BBA 流量" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "转储 Mip 映射" @@ -4310,7 +4295,7 @@ msgstr "转储 Mip 映射" msgid "Dump Path:" msgstr "转储路径:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "转储 XFB 目标" @@ -4335,7 +4320,7 @@ msgstr "转储对等证书" msgid "Dump root CA certificates" msgstr "转储根 CA 证书" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4352,7 +4337,7 @@ msgstr "" "将 EFB 副本的内容转储到 User/Dump/Textures/ 目录中。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4360,25 +4345,25 @@ msgstr "" "将 XFB 副本的内容转储到 User/Dump/Textures/ 目录中。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "连发按键的按下持续时间(帧):" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "连发按键的松开持续时间(帧):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "荷兰语" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "退出模拟(&X)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "EFB 复制 %1" @@ -4392,7 +4377,7 @@ msgstr "" "错误:此版本的 Dolphin 需要 {0}.{1} 或更高版本的 TAP-Win32 驱动——如果您最近升" "级您的 Dolphin 发行版,可能现在需要重新启动计算机以使 Windows 识别新驱动。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4402,7 +4387,7 @@ msgstr "" "每个玩家将自己的输入发送到游戏,并且所有玩家的缓冲区大小相同,由主机配置。\n" "适用于对公平性和低延迟最注重的竞技型游戏。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "内存提前更新" @@ -4421,7 +4406,16 @@ msgstr "东亚" msgid "Edit Breakpoint" msgstr "编辑断点" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "编辑..." @@ -4441,7 +4435,7 @@ msgstr "效果" msgid "Effective" msgstr "有效" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "有效优先级" @@ -4463,11 +4457,11 @@ msgstr "元素" msgid "Embedded Frame Buffer (EFB)" msgstr "内置帧缓冲 (EFB)" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "空" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "模拟线程已经在运行" @@ -4493,7 +4487,7 @@ msgid "" "Defaults to True" msgstr "模拟实机的光盘速度。禁用可能会导致不稳定。默认启用" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "模拟 USB 设备" @@ -4518,34 +4512,24 @@ msgstr "模拟速度" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "启用" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "启用 API 验证层" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "启用成就徽章" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "启用成就" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "启用音频伸缩" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "启用金手指" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "启用控制器输入(&T)" @@ -4553,15 +4537,19 @@ msgstr "启用控制器输入(&T)" msgid "Enable Custom RTC" msgstr "启用自定义 RTC" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "启用调试页面" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "启用双核心" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "启用双核心(加速)" @@ -4573,7 +4561,7 @@ msgstr "启用模拟 CPU 频率覆盖" msgid "Enable Emulated Memory Size Override" msgstr "启用模拟内存大小覆盖" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "启用硬核成就" @@ -4581,15 +4569,15 @@ msgstr "启用硬核成就" msgid "Enable FPRF" msgstr "启用 FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "启用图形模组" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "启用硬核模式" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4616,41 +4604,33 @@ msgstr "" "用前请关闭当前游戏。
请注意,在游戏运行时关闭硬核模式需要先关闭游戏,然后" "才能重新启用。" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "启用 JIT 区块分析" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "启用排行榜" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "启用 MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "启用成就进度通知" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "启用逐行扫描" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "启用 RetroAchievements.org 集成" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "启用详细状态信息" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "启用震动" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "允许屏幕保护程序" @@ -4658,19 +4638,23 @@ msgstr "允许屏幕保护程序" msgid "Enable Speaker Data" msgstr "启用扬声器" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "启用非官方成就" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "启用使用情况统计报告" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "通过 WiiLink 启用 WiiConnect24" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "启用线框" @@ -4678,33 +4662,6 @@ msgstr "启用线框" msgid "Enable Write-Back Cache (slow)" msgstr "使用回写缓存 (慢速)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" -"允许在 RetroAchievements 排行榜中竞争。

必须启用硬核模式才能使用。" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"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 网站上启用详细的状态展示。

这向网站提供了玩家在游" -"戏中所做操作的详细描述。如果禁用此功能,网站将仅报告正在玩的游戏。

这" -"对 Discord 的详细状态没有影响。" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107 msgid "" "Enable emulated disc speed. Disabling this can cause crashes and other " @@ -4713,7 +4670,7 @@ msgstr "" "启用模拟光盘速度。禁用此功能可能导致某些游戏出现崩溃和其他问题。(ON = 兼容," "OFF = 未锁定)" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4724,7 +4681,7 @@ msgstr "" "RetroAchievements 帐户登录才能使用。Dolphin 不会在本地保存您的密码,而是使用 " "API 令牌来维持登录。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 msgid "" "Enable progress notifications on achievements.

Displays a brief popup " "message whenever the player makes progress on an achievement that tracks an " @@ -4733,32 +4690,34 @@ msgstr "" "启用成就进度通知。

每当玩家在需要累积值的成就上取得进展时,显示一条简" "短的弹出消息,例如已获得 120 颗星中的 60 颗星。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -"在硬核模式中启用解锁成就。

硬核模式会重新启用玩家已在网站上解锁的成" -"就,以便玩家再次满足解锁条件时会收到通知,这对于自定义速通标准很有用或者只是" -"为了好玩。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" -msgstr "启用解锁成就。
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." +msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -"允许像官方成就一样解锁非官方成就。

非官方成就可能是可选的或未完成的成" -"就,尚未被 RetroAchievements 视为官方成就,可能对测试有用或只是为了好玩。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4797,7 +4756,7 @@ msgstr "" "禁用。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4808,7 +4767,7 @@ msgstr "" "有性能提升。目前仅限于 Vulkan 后端。

如无法确定,请" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4831,7 +4790,7 @@ msgstr "" "全显示 PAL 和 NTSC-J 色彩空间。

请注意,游戏仍然在内部以 SDR 渲染。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "对音频进行伸缩以匹配模拟速度" @@ -4862,7 +4821,7 @@ msgstr "" "启用内存管理单元,某些游戏需要启用此项。(开 = 兼容,关 = 快" "速)

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4874,7 +4833,7 @@ msgstr "" "提供商\n" "请阅读服务条款:https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4885,7 +4844,7 @@ msgstr "" "端,这也为已编译的着色器启用调试符号。

如无法确定," "请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4910,13 +4869,17 @@ msgstr "" "\n" " 正在中止导入。 " +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "Enet 没有初始化" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "英语" @@ -4933,7 +4896,7 @@ msgstr "输入正在运行 XLink Kai 客户端的设备 IP 地址:" msgid "Enter USB device ID" msgstr "输入 USB 设备 ID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "输入要监视的地址:" @@ -4957,33 +4920,33 @@ msgid "" "to." msgstr "输入要连接的分接服务器实例 IP 地址和端口。" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4996,52 +4959,52 @@ msgstr "请输入 RSO 模块地址:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "错误" @@ -5058,7 +5021,7 @@ msgstr "打开适配器时出错: %1" msgid "Error collecting save data!" msgstr "收集存档数据时出错!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5072,7 +5035,7 @@ msgstr "加载选定语言错误。正在退回系统默认。" msgid "Error obtaining session list: %1" msgstr "获取会话列表时出错: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "加载一些纹理包时发生错误" @@ -5169,12 +5132,12 @@ msgstr "在 {1} 分区未使用的 {0} 区块中发现错误。" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "欧洲" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "专用超着色器" @@ -5218,11 +5181,11 @@ msgstr "建议用表达式开始符。" msgid "Expected variable name." msgstr "建议使用的变量名称。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "实验性" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "导出所有 Wii 存档" @@ -5237,7 +5200,7 @@ msgstr "导出失败" msgid "Export Recording" msgstr "导出录制" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "导出录制..." @@ -5265,14 +5228,14 @@ msgstr "导出为 .gcs...(&G)" msgid "Export as .&sav..." msgstr "导出为 .sav...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "已导出 %n 个存档" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "扩展" @@ -5285,7 +5248,7 @@ msgstr "扩展体感输入" msgid "Extension Motion Simulation" msgstr "扩展体感模拟" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "外部" @@ -5293,35 +5256,35 @@ msgstr "外部" msgid "External Frame Buffer (XFB)" msgstr "外部帧缓冲 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "从 NAND 中提取证书" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "提取整个光盘..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "提取整个分区..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "提取文件..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "提取文件..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "提取系统数据" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "正在提取所有文件..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "正在提取目录..." @@ -5330,8 +5293,8 @@ msgstr "正在提取目录..." msgid "FD" msgstr "文件描述符" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "FIFO 回放器" @@ -5347,11 +5310,11 @@ msgstr "" "打开存储卡失败:\n" "%1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "无法将此会话添加到联机索引: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "附加到签名文件 '%1' 失败" @@ -5371,7 +5334,7 @@ msgstr "清除插槽 %1 的 Skylander 失败!" msgid "Failed to connect to Redump.org" msgstr "连接 Redump.org 失败" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "连接服务器失败: %1" @@ -5392,15 +5355,15 @@ msgstr "创建 D3D12 全局资源失败" msgid "Failed to create DXGI factory" msgstr "创建 DXGI 工厂失败" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "创建 Infinity 文件失败" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "创建 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5450,15 +5413,15 @@ msgstr "在 %1 个存档文件中 %n 个导出失败。" msgid "Failed to export the following save files:" msgstr "导出以下存档文件失败:" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "从 NAND 中提取证书失败" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "提取文件失败。" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "提取系统数据失败。" @@ -5480,18 +5443,18 @@ msgstr "无法找到一个或多个 D3D 符号" msgid "Failed to import \"%1\"." msgstr "导入 “%1” 失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "导入存档文件失败。请运行一次游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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 -> " @@ -5500,7 +5463,7 @@ msgstr "" "导入存档文件失败。您的 NAND 可能已损坏,或某些因素阻止访问里面的文件。请尝试" "修复 NAND(工具 -> 管理 NAND -> 校验 NAND...),然后再次导入存档。" -#: Source/Core/DolphinQt/MainWindow.cpp:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "初始化核心失败" @@ -5523,18 +5486,18 @@ msgid "Failed to install pack: %1" msgstr "安装包失败: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "无法将该游戏安装到 NAND。" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "监听端口 %1 失败。是否有另一个联机服务器的实例正在运行?" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "无法在 %1 处加载 RSO 模块" @@ -5546,15 +5509,15 @@ msgstr "载入 d3d11.dll 失败" msgid "Failed to load dxgi.dll" msgstr "载入 dxgi.dll 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "载入映射文件 '%1' 失败" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "载入 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" @@ -5562,7 +5525,7 @@ msgstr "" "载入 Skylander 文件失败:\n" "%1" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "加载可执行文件到内存失败。" @@ -5576,17 +5539,17 @@ msgstr "加载 {0} 失败。如果你使用的是 Windows 7,请尝试安装 KB msgid "Failed to modify Skylander!" msgstr "修改 Skylander 失败!" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "打开 “%1” 进行写入失败。" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "打开 “{0}” 进行写入失败。" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "无法打开 '%1'" @@ -5594,7 +5557,7 @@ msgstr "无法打开 '%1'" msgid "Failed to open Bluetooth device: {0}" msgstr "打开蓝牙设备失败: {0} " -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "打开分支监视快照 “%1” 失败" @@ -5626,15 +5589,15 @@ msgstr "" msgid "Failed to open file." msgstr "打开文件失败。" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "打开服务器失败" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "打开 Infinity 文件失败!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5646,11 +5609,11 @@ msgstr "" "\n" "此文件可能已在底座上。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "打开 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5703,27 +5666,23 @@ msgstr "从输入文件 “{0}” 读取失败。" msgid "Failed to read selected savefile(s) from memory card." msgstr "从存储卡读取所选的存档文件失败。" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "读取 Infinity 文件失败!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -"读取 Infinity 文件 (%1) 失败:\n" -"%1\n" -"\n" -"文件过小。" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "读取 Skylander 文件失败!" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5743,7 +5702,7 @@ msgstr "" "读取文件内容失败:\n" "%1" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "读取 {0} 失败" @@ -5777,31 +5736,31 @@ msgstr "重置联机 NAND 文件夹失败。请验证你的写入权限。" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "重置联机重定向文件夹失败。请验证你的写入权限。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "保存分支监视快照 “%1” 失败" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "保存 FIFO 日志失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "保存代码映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "保存签名文件 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "保存符号映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "保存到签名文件 '%1' 失败" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5856,19 +5815,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "失败" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "公平输入延迟" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "备用区域" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "备用区域:" @@ -5881,7 +5840,7 @@ msgstr "快速" msgid "Fast Depth Calculation" msgstr "快速深度计算" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5893,7 +5852,7 @@ msgstr "" msgid "Field of View" msgstr "视野" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "角色编号:" @@ -5907,7 +5866,7 @@ msgstr "文件详细信息" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "文件格式" @@ -5915,24 +5874,24 @@ msgstr "文件格式" msgid "File Format:" msgstr "文件格式:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "文件信息" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "文件名" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "文件路径" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "文件大小" @@ -6021,7 +5980,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "标记" @@ -6030,12 +5988,12 @@ msgstr "标记" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "浮点" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "跟随分支(&B)" @@ -6059,7 +6017,7 @@ msgstr "" "有关设置说明,请参阅此页" "面。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "强制 16:9" @@ -6067,7 +6025,7 @@ msgstr "强制 16:9" msgid "Force 24-Bit Color" msgstr "强制 24 位色" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "强制 4:3" @@ -6099,11 +6057,11 @@ msgstr "强制监听端口:" msgid "Force Nearest" msgstr "强制邻近" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "已强制关闭,因为 %1 不支持顶点着色器扩展。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "已强制打开,因为 %1 不支持几何着色器。" @@ -6132,6 +6090,12 @@ msgstr "" "性能没有影响,并且几乎没有图形问题。

如无法确定,请" "选中此项。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "格式:" @@ -6147,7 +6111,7 @@ msgstr "前" msgid "Forward port (UPnP)" msgstr "转发端口(UPnP)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "已找到 “%2” 的 %1 个结果 " @@ -6157,7 +6121,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "找到 %n 个地址。" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "帧 %1" @@ -6178,11 +6142,11 @@ msgstr "逐帧播放增加速度" msgid "Frame Advance Reset Speed" msgstr "逐帧播放重置速度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "转储帧" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "帧范围" @@ -6190,7 +6154,7 @@ msgstr "帧范围" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "帧转储图像 ‘{0}’ 已经存在。是否覆盖?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "录制帧数:" @@ -6210,7 +6174,7 @@ msgstr "空闲文件数: %1" msgid "Free Look Control Type" msgstr "自由视点控制类型" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "自由视点控制器 %1" @@ -6244,7 +6208,7 @@ msgstr "自由视点切换" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "法语" @@ -6263,8 +6227,8 @@ msgid "From" msgstr "从" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "从:" @@ -6272,10 +6236,14 @@ msgstr "从:" msgid "FullScr" msgstr "全屏" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "函数" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "函数" @@ -6316,11 +6284,11 @@ msgstr "GBA 音量" msgid "GBA Window Size" msgstr "GBA 窗口大小" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM 更改为 “%2”" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM 已禁用" @@ -6367,7 +6335,7 @@ msgstr "GL_最大_纹理_大小 是 {0} - 必须至少 1024 。" msgid "GPU Texture Decoding" msgstr "GPU 纹理解码" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6379,7 +6347,7 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "GPU: OGL 错误:您的显卡是否支持 OpenGL 2.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6387,7 +6355,7 @@ msgstr "" "GPU:错误:需要 GL_ARB_map_buffer_range。\n" "GPU:您的显卡是否支持 OpenGL 3.0?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" @@ -6395,7 +6363,7 @@ msgstr "" "GPU:OGL 错误:需要 GL_ARB_sampler_objects。\n" "GPU:您的显卡是否支持 OpenGL 3.3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" @@ -6403,7 +6371,7 @@ msgstr "" "GPU:OGL 错误:需要 GL_ARB_uniform_buffer_object。\n" "GPU:您的显卡是否支持 OpenGL 3.1?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6419,7 +6387,7 @@ msgstr "" "GPU:OGL 错误:需要 OpenGL 版本 3 。\n" "GPU:您的显卡是否支持 OpenGL 3?" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6442,16 +6410,16 @@ msgstr "" msgid "Game" msgstr "游戏" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "GBA 游戏卡带 (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6459,7 +6427,7 @@ msgstr "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "所有文件 (*)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "GameBoy Advance 连至端口 %1" @@ -6488,7 +6456,7 @@ msgid "Game Gamma:" msgstr "游戏伽玛:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "游戏 ID" @@ -6497,15 +6465,15 @@ msgstr "游戏 ID" msgid "Game ID:" msgstr "游戏 ID:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "游戏状态" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "游戏更改为 “%1”" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" @@ -6513,11 +6481,11 @@ msgstr "" "游戏文件具有不同的哈希值;右键单击文件,选择属性,切换到验证选项卡,然后选择" "验证完整性以检查哈希值" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "游戏具有不同的光盘编号" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "游戏具有不同的修订版" @@ -6530,7 +6498,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "游戏覆盖了其他的游戏存档,将会破坏数据 {0:#x}, {1:#x}" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "游戏区域不匹配" @@ -6550,11 +6518,11 @@ msgstr "Wii U GameCube 适配器" msgid "GameCube Adapter for Wii U at Port %1" msgstr "端口 %1 的 Wii U GameCube 适配器" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "GameCube 控制器" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "端口 %1 的 GameCube 控制器" @@ -6562,11 +6530,11 @@ msgstr "端口 %1 的 GameCube 控制器" msgid "GameCube Controllers" msgstr "GameCube 控制器" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "GameCube 键盘" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "端口 %1 的 GameCube 键盘" @@ -6583,7 +6551,7 @@ msgstr "GameCube 存储卡" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "GameCube 存储卡 (*.raw *.gcp)" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "GameCube 麦克风插槽 %1" @@ -6611,7 +6579,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 代码" @@ -6621,35 +6589,35 @@ msgstr "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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "常规" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "常规和选项" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "生成 Action Replay 代码" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "生成一个新的统计标识" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "已生成 AR 代码。" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "从 '%1' 中生成符号名" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "德语" @@ -6676,7 +6644,7 @@ msgstr "巨人" msgid "Giants" msgstr "巨人" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "高尔夫模式" @@ -6685,7 +6653,7 @@ msgid "Good dump" msgstr "正确的转储" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "图形" @@ -6728,7 +6696,7 @@ msgstr "绿 左" msgid "Green Right" msgstr "绿 右" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "网格视图" @@ -6765,7 +6733,7 @@ msgstr "HDR 后处理" msgid "Hacks" msgstr "修正" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "头" @@ -6797,7 +6765,7 @@ msgstr "十六进制 8" msgid "Hex Byte String" msgstr "十六进制字节字符串" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "十六进制" @@ -6806,11 +6774,11 @@ msgstr "十六进制" msgid "Hide" msgstr "隐藏" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "隐藏控件(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "隐藏全部" @@ -6822,16 +6790,23 @@ msgstr "隐藏正在游戏的会话" msgid "Hide Incompatible Sessions" msgstr "隐藏不兼容的会话" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "隐藏远程 GBA" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "高" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "最高" @@ -6854,7 +6829,7 @@ msgstr "主机" msgid "Host Code:" msgstr "主机代码 :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "主机输入优先权" @@ -6862,7 +6837,7 @@ msgstr "主机输入优先权" msgid "Host Size" msgstr "主机大小" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6873,11 +6848,11 @@ msgstr "" "增加其他人的延迟。\n" "适合 3 人以上的休闲游戏,在连接不稳定或高延迟下或许也能运作。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "主机输入优先权已禁用" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "主机输入优先权已启用" @@ -6889,7 +6864,7 @@ msgstr "建主机联网游戏" msgid "Hostname" msgstr "主机名" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "热键设置" @@ -6899,11 +6874,11 @@ msgstr "热键设置" msgid "Hotkeys" msgstr "热键" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "热键需要窗口是活动状态" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "混合超着色器" @@ -6960,12 +6935,12 @@ msgstr "IP 地址 :" msgid "IPL Settings" msgstr "IPL 设置" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "红外线" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "红外灵敏度:" @@ -7002,7 +6977,7 @@ msgstr "" msgid "Icon" msgstr "图标" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" @@ -7011,7 +6986,7 @@ msgstr "" "与主机输入权限相同,除“主机”(零延迟)之外,其他可以随时切换。\n" "适用于需要时间敏感控制的回合制游戏,如高尔夫球。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "身份标识生成" @@ -7035,7 +7010,7 @@ msgstr "" "问题的罕见程序设置。\n" "您可以随时通过 Dolphin 的程序设置取消本授权。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -7054,7 +7029,7 @@ msgstr "" "如果未选中,则模拟控制器的连接状态关联到\n" "真实默认设备(如果存在)的连接状态。 " -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." @@ -7064,7 +7039,7 @@ msgstr "" "量 fifo 日志,但对测试很有帮助。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -7079,7 +7054,7 @@ msgstr "" msgid "Ignore" msgstr "忽略" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "忽略应用加载器分支命中(&A)" @@ -7117,7 +7092,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "立即呈现 XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7130,7 +7105,7 @@ msgstr "" "能也会略微降低。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "导入 BootMii NAND 备份..." @@ -7145,15 +7120,15 @@ msgstr "导入失败" msgid "Import Save File(s)" msgstr "导入存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "导入 Wii 存档..." -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "正在导入 NAND 备份" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" @@ -7162,6 +7137,15 @@ msgstr "" "正在导入 NAND 备份\n" " 已用时间: %1s" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "游戏中?" @@ -7242,7 +7226,7 @@ msgstr "增量旋转" msgid "Incremental Rotation (rad/sec)" msgstr "增量旋转(度/秒)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "Infinity 角色创建器" @@ -7251,7 +7235,7 @@ msgstr "Infinity 角色创建器" msgid "Infinity Manager" msgstr "Infinity 管理器" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "Infinity 文件 (*.bin);;" @@ -7273,12 +7257,12 @@ msgstr "信息" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "信息" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "在模拟过程中禁止屏幕保护程序" @@ -7287,11 +7271,11 @@ msgid "Inject" msgstr "注入" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "输入" @@ -7305,23 +7289,19 @@ msgstr "激活所需要的输入力度。" msgid "Input strength to ignore and remap." msgstr "要忽略并重新映射的输入力度。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "插入 BLR (&B)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "在开头插入 BLR (&B)" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "插入 NOP (&N)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "插入 nop (&N)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "插入 SD 卡" @@ -7334,11 +7314,11 @@ msgstr "安装" msgid "Install Partition (%1)" msgstr "安装分区 (%1)" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "安装更新" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "安装 WAD..." @@ -7346,13 +7326,13 @@ msgstr "安装 WAD..." msgid "Install to the NAND" msgstr "安装至 NAND" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "指令。" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "指令" @@ -7361,7 +7341,7 @@ msgstr "指令" msgid "Instruction Breakpoint" msgstr "指令断点" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "指令:" @@ -7370,7 +7350,7 @@ msgstr "指令:" msgid "Instruction: %1" msgstr "指令: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7391,19 +7371,19 @@ msgstr "强度" msgid "Interface" msgstr "界面" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "内部 LZ4 错误 - 已尝试解压缩 {0} 字节" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "内部 LZ4 错误 - 压缩失败" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "内部 LZ4 错误 - 解压失败 ({0}, {1}, {2})" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "内部 LZ4 错误 - 有效载荷大小不匹配 ({0} / {1}))" @@ -7416,7 +7396,7 @@ msgstr "内部 LZO 错误 - 压缩失败" msgid "Internal LZO Error - decompression failed" msgstr "内部 LZO 错误 - 解压失败" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." @@ -7424,13 +7404,13 @@ msgstr "" "内部 LZO 错误 - 解压失败 ({0}) ({1}) \n" "无法检索过时的存储状态版本信息。" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "内部 LZO 错误 - 无法解析解压缩的版本 cookie 和版本字符串长度 ({0})" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "内部 LZO 错误 - 无法解析解压缩的版本字符串 ({0} / {1})" @@ -7445,7 +7425,7 @@ msgstr "内部分辨率" msgid "Internal Resolution:" msgstr "内部分辨率:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "生成 AR 代码时出现内部错误。" @@ -7453,7 +7433,7 @@ msgstr "生成 AR 代码时出现内部错误。" msgid "Interpreter (slowest)" msgstr "解释器(最慢)" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "解释器核心" @@ -7469,7 +7449,7 @@ msgstr "从自动更新服务接收到无效的 JSON 数据:{0}" msgid "Invalid Mixed Code" msgstr "无效混合代码" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "包 %1 无效: %2" @@ -7478,11 +7458,11 @@ msgstr "包 %1 无效: %2" msgid "Invalid Player ID" msgstr "无效玩家 ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "无效 RSO 模块地址: %1" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "无效调用堆栈" @@ -7503,7 +7483,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "字段 “%1” 的输入无效" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "提供的输入无效" @@ -7519,19 +7499,19 @@ msgstr "提供的搜索参数无效。" msgid "Invalid password provided." msgstr "提交的密码无效。" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "无效录制文件" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "无效的搜索参数(没有选择对象)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "无效的搜索字符串(无法转换成数字)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "无效的搜索字符串(仅支持相等长度的字符串)" @@ -7539,13 +7519,13 @@ msgstr "无效的搜索字符串(仅支持相等长度的字符串)" msgid "Invalid title ID." msgstr "无效游戏 ID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "无效监视地址: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "意大利语" @@ -7558,11 +7538,11 @@ msgstr "意大利" msgid "Item" msgstr "物品" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "关闭 JIT 区块链接" @@ -7570,47 +7550,47 @@ msgstr "关闭 JIT 区块链接" msgid "JIT Blocks" msgstr "JIT 区块" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "关闭 JIT 分支" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "关闭 JIT 浮点" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "关闭 JIT 整数" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "关闭 JIT 加载存储浮动" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "关闭 JIT 加载存储" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "关闭 JIT 加载存储配对" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "关闭 JIT 加载存储 IXz" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "关闭 JIT 加载存储 Ibzx" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "关闭 JIT 加载存储 Iwz" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "关闭 JIT (JIT 核心)" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "关闭 JIT 配对" @@ -7622,16 +7602,16 @@ msgstr "适用于 ARM64 的 JIT 重编译器(推荐)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "适用于 x86-64 的 JIT 重编译器(推荐)" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "关闭 JIT 寄存器缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "关闭 JIT 系统寄存器" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." @@ -7639,16 +7619,16 @@ msgstr "" "清除缓存后,JIT 无法找到代码空间。这应该从不会出现。请在错误跟踪器中上报此事" "件。 Dolphin 即将退出。" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "JIT 未激活" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "日本" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "日语" @@ -7665,12 +7645,12 @@ msgid "" "edit anything!" msgstr "Kaos 是这个奖杯的唯一反派,且一直是解锁状态。无需编辑任何内容!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "保持运行" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "窗口置顶" @@ -7704,16 +7684,16 @@ msgstr "按键" msgid "KiB" msgstr "KiB" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "踢除玩家" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "韩国" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "韩语" @@ -7734,7 +7714,7 @@ msgstr "载入 ROM...(&O)" msgid "L-Analog" msgstr "L-模拟" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "LR 保存" @@ -7742,7 +7722,11 @@ msgstr "LR 保存" msgid "Label" msgstr "标签" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "上个值" @@ -7756,23 +7740,23 @@ msgstr "上次放置:" msgid "Last reset:" msgstr "上次重置:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "延迟:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "延迟: ~10 毫秒" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "延迟: ~20 毫秒" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "延迟: ~40 毫秒" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "延迟: ~80 毫秒" @@ -7780,7 +7764,7 @@ msgstr "延迟: ~80 毫秒" msgid "Launching these titles may also fix the issues." msgstr "运行这些游戏也许可以解决问题。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "排行榜" @@ -7788,7 +7772,7 @@ msgstr "排行榜" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7799,7 +7783,7 @@ msgstr "左" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "左摇杆" @@ -7876,11 +7860,11 @@ msgstr "光" msgid "Limit Chunked Upload Speed:" msgstr "限制数据块上传速度:" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "表单列" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "列表视图" @@ -7889,30 +7873,30 @@ msgid "Listening" msgstr "正在监听" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "载入损坏映射文件(&B)..." -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "载入其他映射文件(&O)..." -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "载入分支监视...(&F)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "载入分支监视快照" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "加载自定义纹理" @@ -7920,11 +7904,11 @@ msgstr "加载自定义纹理" msgid "Load File" msgstr "载入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "载入 GameCube 主菜单" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "仅加载主机的存档数据" @@ -8030,23 +8014,23 @@ msgstr "载入状态 8" msgid "Load State Slot 9" msgstr "载入状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "从文件中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "从选择的插槽中加载状态" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "从插槽中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "加载 Wii 系统菜单 %1" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "加载和写入主机的存档数据" @@ -8054,28 +8038,28 @@ msgstr "加载和写入主机的存档数据" msgid "Load from Selected Slot" msgstr "从选择的插槽中加载" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "从插槽 %1 - %2 载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "载入映射文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "加载 vWii 系统菜单 %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "载入..." -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "已从 '%1' 中加载符号" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8085,7 +8069,7 @@ msgstr "" "<game_id>/ 目录中的自定义纹理。

如无法确定,请" "不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8093,20 +8077,28 @@ msgstr "" "从 User/Load/GraphicsMods/ 加载图形模组。

如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "本地" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "锁定鼠标光标" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "已锁定" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "日志" @@ -8115,19 +8107,19 @@ msgstr "日志" msgid "Log Configuration" msgstr "日志设置" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "登录" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "记录 JIT 指令范围" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "注销" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "记录渲染时间到文件" @@ -8139,11 +8131,11 @@ msgstr "日志类型" msgid "Logger Outputs" msgstr "日志输出" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "登录失败" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8153,20 +8145,20 @@ msgstr "" "量 Dolphin 的性能。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "循环" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "丢失联机服务器连接..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "低" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "最低" @@ -8178,7 +8170,7 @@ msgstr "MD5:" msgid "MMU" msgstr "MMU" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "即将结束" @@ -8226,7 +8218,7 @@ msgstr "请确保 Skylander 已位于插槽 %1 中!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "制作者" @@ -8246,16 +8238,16 @@ msgstr "" "雾模拟,禁用雾将破坏其游戏性。

如无法确定,请不要选" "中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "管理 NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "手动纹理采样" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "映射" @@ -8267,11 +8259,11 @@ msgstr "伪装 ROM" msgid "Match Found" msgstr "找到匹配" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "最大缓冲区:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "最大缓冲区大小更改为 %1" @@ -8280,7 +8272,7 @@ msgstr "最大缓冲区大小更改为 %1" msgid "Maximum tilt angle." msgstr "最大倾斜角度。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "这会导致 Wii 菜单和一些游戏减速。" @@ -8301,7 +8293,7 @@ msgstr "内存断点" msgid "Memory Card" msgstr "存储卡" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "存储卡管理器" @@ -8329,7 +8321,7 @@ msgstr "MemoryCard: 在无效源地址 ({0:#x}) 中读取调用" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: 在无效目标地址 ({0:#x}) 中写入调用" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8345,7 +8337,7 @@ msgstr "MiB" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "麦克风" @@ -8354,15 +8346,15 @@ msgstr "麦克风" msgid "Mini" msgstr "迷你" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "其它" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "其它设置" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "其他控件" @@ -8374,7 +8366,7 @@ msgstr "标头中的空闲区块数与实际未使用的区块不匹配。" msgid "Mismatch between internal data structures." msgstr "内部数据结构不匹配。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8401,7 +8393,7 @@ msgstr "调制解调器适配器 (分接服务器)" msgid "Modifier" msgstr "修饰键" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8419,8 +8411,8 @@ msgstr "修改插槽" msgid "Modifying Skylander: %1" msgstr "修改 Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "已找到模块: %1" @@ -8428,7 +8420,7 @@ msgstr "已找到模块: %1" msgid "Money:" msgstr "金钱:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "单声道" @@ -8440,11 +8432,11 @@ msgstr "单视场阴影" msgid "Monospaced Font" msgstr "等宽字体" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "体感输入" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "体感模拟" @@ -8453,23 +8445,10 @@ msgstr "体感模拟" msgid "Motor" msgstr "马达" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "鼠标光标可见" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "鼠标光标在不活动后隐藏并在光标移动时可见。" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "鼠标光标将始终可见。" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "游戏运行时鼠标光标将一直不可见。" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -8480,13 +8459,13 @@ msgstr "移动" msgid "Movie" msgstr "影片" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "影片 {0} 表示从一个保存状态开始播放,但 {1} 不存在。电影可能无法同步!" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "生成 AR 代码时出现多个错误。" @@ -8499,10 +8478,10 @@ msgstr "多重分插器" msgid "N&o to All" msgstr "全部选否(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 校验" @@ -8511,8 +8490,8 @@ msgstr "NAND 校验" msgid "NKit Warning" msgstr "NKit 警告" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8521,7 +8500,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "NTSC-K" @@ -8542,8 +8521,8 @@ msgstr "" "值,请在此处进行设置。

如无法确定,请保持为 2.35。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8586,7 +8565,7 @@ msgstr "原生 (640x528)" msgid "Native GCI File" msgstr "内部 GCI 文件" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "联机" @@ -8602,7 +8581,7 @@ msgstr "联机设定" msgid "Netherlands" msgstr "荷兰" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." @@ -8610,7 +8589,7 @@ msgstr "" "联机将开始使用主机的存档数据,并且在联机会话期间创建或修改的任何存档数据都将" "保留在主机的本地存档中。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " @@ -8619,7 +8598,7 @@ msgstr "" "联机将开始使用主机的存档数据,但在联机会话期间创建或修改的任何存档数据都将在" "会话结束时被丢弃。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." @@ -8628,7 +8607,7 @@ msgstr "" "束时被丢弃。" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "网络" @@ -8636,16 +8615,16 @@ msgstr "网络" msgid "Network dump format:" msgstr "网络转储格式:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "从不" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "不要自动更新" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "新" @@ -8670,7 +8649,7 @@ msgstr "新建搜索" msgid "New Tag..." msgstr "新标签..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "已生成新的标识。" @@ -8687,7 +8666,7 @@ msgstr "新标签" msgid "Next Game Profile" msgstr "下一个游戏预设" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "匹配下一个" @@ -8733,7 +8712,7 @@ msgstr "不压缩" msgid "No Match" msgstr "无匹配" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "无存档数据" @@ -8741,12 +8720,12 @@ msgstr "无存档数据" msgid "No data to modify!" msgstr "没有可修改的数据!" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "没有可用的说明" @@ -8758,7 +8737,7 @@ msgstr "没有错误。" msgid "No extension selected." msgstr "未选择扩展。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "文件未加载 / 录制" @@ -8766,7 +8745,7 @@ msgstr "文件未加载 / 录制" msgid "No game is running." msgstr "没有游戏在运行。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "没有游戏运行。" @@ -8779,11 +8758,11 @@ msgstr "未选择图形模组" msgid "No input" msgstr "无输入" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "没有发现问题。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "未找到匹配的游戏" @@ -8808,7 +8787,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "没有找到游戏设置 ‘{0}’ 的预设" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "没有录制被载入。" @@ -8825,10 +8804,10 @@ msgstr "未找到 undo.dtm 文件,为防止影片出现不同步撤销载入 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "无" @@ -8840,7 +8819,7 @@ msgstr "北美" msgid "Not Set" msgstr "未设置" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "并不是所有玩家都有该游戏。你真的要开始吗?" @@ -8860,7 +8839,7 @@ msgid "" "required." msgstr "目标存储卡上没有足够的空闲文件数。至少需要 %n 个文件数。 " -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "未找到" @@ -8904,26 +8883,26 @@ msgstr "每秒摇晃次数。" msgid "Nunchuk" msgstr "双节棍控制器" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "双节棍控制器加速度计" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "双节棍按键" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "双节棍摇杆" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "确定" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "对象 %1" @@ -8975,7 +8954,7 @@ msgstr "对象 4 X" msgid "Object 4 Y" msgstr "对象 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "对象范围" @@ -8996,11 +8975,11 @@ msgstr "偏移量" msgid "On" msgstr "开" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "活动时" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9009,7 +8988,7 @@ msgstr "" "在同时支持使用几何着色器和顶点着色器来扩展点和线的后端上,为任务选择顶点着色" "器。可能会影响性能。

%1" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -9031,7 +9010,7 @@ msgstr "" "经过足够的过程和实验后,您也许能够找到仅在模拟软件中执行操作时才会采用的函数" "调用和条件代码路径。" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "在线文档(&D)" @@ -9039,7 +9018,7 @@ msgstr "在线文档(&D)" msgid "Only Show Collection" msgstr "只显示合集" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9047,7 +9026,7 @@ msgstr "" "仅附加有此前缀的符号:\n" "(留空表示全部)" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9066,7 +9045,7 @@ msgstr "打开" msgid "Open &Containing Folder" msgstr "打开所在目录(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "打开用户目录(&U)" @@ -9075,7 +9054,7 @@ msgstr "打开用户目录(&U)" msgid "Open Directory..." msgstr "打开目录..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "打开 FIFO 日志" @@ -9141,34 +9120,34 @@ msgstr "橙" msgid "Orbital" msgstr "轨道式" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "起始" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "起始最大" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "起始最小" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "起始符号" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "起始和目标" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -9183,11 +9162,11 @@ msgstr "其他分区 (%1)" msgid "Other State Hotkeys" msgstr "其他状态热键" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "其他状态管理" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "其他游戏..." @@ -9203,16 +9182,16 @@ msgstr "输出重采样" msgid "Output Resampling:" msgstr "输出重采样:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "覆盖" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "播放录制...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9225,11 +9204,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP 格式" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "PNG 压缩级别" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "PNG 压缩级别:" @@ -9241,7 +9220,7 @@ msgstr "PNG 图像文件 (*.png);; 所有文件 (*)" msgid "PPC Size" msgstr "PPC 大小" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "PPC 对 Host" @@ -9275,7 +9254,7 @@ msgstr "被动" msgid "Passthrough a Bluetooth adapter" msgstr "直通蓝牙适配器" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "密码" @@ -9313,15 +9292,15 @@ msgstr "路径" msgid "Pause" msgstr "暂停" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "暂停分支监视" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "在影片末尾暂停" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "窗口非活动时暂停" @@ -9340,6 +9319,12 @@ msgstr "" "用 MMU 时相同。

如无法确定,请不要选中此项。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -9359,7 +9344,7 @@ msgstr "向外挥舞的峰值速度。" msgid "Per-Pixel Lighting" msgstr "逐像素光照" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "执行在线系统更新" @@ -9367,15 +9352,15 @@ msgstr "执行在线系统更新" msgid "Perform System Update" msgstr "执行系统更新" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "性能采样窗口(毫秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "性能采样窗口(毫秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "性能统计" @@ -9393,11 +9378,11 @@ msgstr "物理地址空间" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "选择调试字体" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "延迟" @@ -9410,7 +9395,7 @@ msgid "Pitch Up" msgstr "上仰" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "平台" @@ -9418,7 +9403,7 @@ msgstr "平台" msgid "Play" msgstr "开始" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "播放/录制" @@ -9430,40 +9415,40 @@ msgstr "播放录制" msgid "Play Set/Power Disc" msgstr "玩具组合/动力飞盘" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "回放选项" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "玩家" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "玩家 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "玩家 1 的第 1 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "玩家 1 的第 2 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "玩家 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "玩家 2 的第 1 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "玩家 2 的第 2 项能力" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "玩家" @@ -9481,7 +9466,7 @@ msgid "" msgstr "" "请将“SyncOnSkipIdle”设置更改为“True”!当前已被禁用,使得很可能发生这个问题。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "在以标准内存区域开始搜索前,请先运行游戏。" @@ -9497,7 +9482,7 @@ msgid "Point (Passthrough)" msgstr "指向(直通)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "端口 %1" @@ -9514,7 +9499,7 @@ msgstr "端口 :" msgid "Portal Slots" msgstr "传送门插槽" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "检测到可能的非同步异常: %1 或许已在帧 %2 处不同步 " @@ -9530,24 +9515,32 @@ msgstr "后处理效果:" msgid "Post-Processing Shader Configuration" msgstr "后处理着色器配置" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "点/线扩展首选顶点着色器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "预读取自定义纹理" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "在 PlayController 中提前结束影片。{0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "在 PlayWiimote 中提前结束影片。{0} + {1} > {2}" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "在PlayWiimote 中提前结束影片。{0} > {1}" @@ -9572,7 +9565,7 @@ msgstr "按下同步按钮" msgid "Pressure" msgstr "压感" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9590,7 +9583,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "上一个游戏预设" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "匹配上一个" @@ -9601,7 +9594,7 @@ msgstr "上一个预设" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "图元 %1" @@ -9635,7 +9628,7 @@ msgid "" "the game might not work correctly." msgstr "发现中等严重性问题。游戏整体或特定部分可能无法正确运行。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "预设" @@ -9644,23 +9637,29 @@ msgstr "预设" msgid "Program Counter" msgstr "程序计数器" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "进度" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "公开" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "清除游戏列表缓存" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "将 IPL ROM 放至 User/GC/。" @@ -9680,18 +9679,18 @@ msgstr "无法启用服务质量 (QoS)。" msgid "Quality of Service (QoS) was successfully enabled." msgstr "已成功启用服务质量 (QoS)。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "DPLII 解码器的质量。质量越高音频延迟越大。" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "询问" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "退出" @@ -9708,19 +9707,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-模拟" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "就绪" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "RSO 模块" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "RSO 自动检测" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "运行" @@ -9741,7 +9740,7 @@ msgstr "结束范围:" msgid "Range Start: " msgstr "开始范围:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "排名 %1" @@ -9749,16 +9748,17 @@ msgstr "排名 %1" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "原始内部分辨率" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "替换指令(&P)" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "读取" @@ -9797,8 +9797,8 @@ msgstr "真实 Wii 遥控器" msgid "Received invalid Wii Remote data from Netplay." msgstr "从联机中接收到无效的 Wii 遥控器数据。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "最近命中" @@ -9807,23 +9807,23 @@ msgstr "最近命中" msgid "Recenter" msgstr "回到中心" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "录制" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "录制输入" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "正在录制" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "录制选项" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "正在录制..." @@ -9860,7 +9860,7 @@ msgstr "Redump.org 状态:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9891,7 +9891,7 @@ msgid "Refreshing..." msgstr "正在刷新..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地区" @@ -9912,7 +9912,11 @@ msgstr "相对输入" msgid "Relative Input Hold" msgstr "保持相对输入" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "以后提醒我" @@ -9920,7 +9924,7 @@ msgstr "以后提醒我" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "移除" @@ -9950,20 +9954,20 @@ msgstr "" "转换为 ISO 格式时,移除垃圾数据不会节省任何空间(除非以后将 ISO 文件打包为压" "缩文件格式,例如 ZIP 文件)。是否仍要继续?" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "重命名符号" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "渲染窗口" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "渲染到主窗口" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9979,10 +9983,16 @@ msgstr "报告: GCIFolder 正在写入未分配的区块 {0:#x}" msgid "Request to Join Your Party" msgstr "请求加入你的派对" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9992,7 +10002,7 @@ msgstr "重置" msgid "Reset All" msgstr "全部重置" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "重置忽略警告程序" @@ -10024,7 +10034,7 @@ msgstr "重置视图" msgid "Reset all saved Wii Remote pairings" msgstr "重置所有保存的 Wii 遥控器配对" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "分辨率类型:" @@ -10036,7 +10046,7 @@ msgstr "资源包管理器" msgid "Resource Pack Path:" msgstr "资源包路径:" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "需要重启" @@ -10044,11 +10054,11 @@ msgstr "需要重启" msgid "Restore Defaults" msgstr "恢复默认值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "恢复指令" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "重试" @@ -10057,7 +10067,7 @@ msgstr "重试" msgid "Return Speed" msgstr "返回速度" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "修订版" @@ -10069,7 +10079,7 @@ msgstr "修订版: %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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -10080,7 +10090,7 @@ msgstr "右" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "右摇杆" @@ -10116,11 +10126,11 @@ msgstr "左倾" msgid "Roll Right" msgstr "右倾" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "房间 ID" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "旋转" @@ -10141,45 +10151,35 @@ msgstr "" "部分辨率下的图像问题。该选项在使用原生内部分辨率时没有效果。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" -"可以在表中的行里左键单击起始、目标和符号列,以在代码视图中查看关联的地址。右" -"键单击选定的行将弹出上下文菜单。\n" -"\n" -"如果右键单击选择行的起始列,将执行用 NOP 指令(无操作)替换起始处的分支指令操" -"作,并且将地址复制到剪贴板的操作也可使用。\n" -"\n" -"如果右键单击选择行的目标列,则可以使用 BLR 指令(分支到链接寄存器)替换目标处" -"的指令,但前提是每个起始处的分支指令都保存了链接寄存器,并且可以执行将地址复" -"制到剪贴板的操作。\n" -"\n" -"如果右键单击选择行的起始/目标符号列,则可以使用 BLR 指令替换符号最开头的指" -"令,但前提是找到每个起始/目标符号。\n" -"\n" -"所有上下文菜单都具有从候选中删除所选行的操作。" #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10188,7 +10188,7 @@ msgstr "" msgid "Rumble" msgstr "震动" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "运行到此处(&T)" @@ -10196,15 +10196,15 @@ msgstr "运行到此处(&T)" msgid "Run GBA Cores in Dedicated Threads" msgstr "在独占线程中运行 GBA 内核" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "运行直到" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "运行直到(忽略断点)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "运行直到命中(忽略断点)" @@ -10212,23 +10212,23 @@ msgstr "运行直到命中(忽略断点)" msgid "Russia" msgstr "俄罗斯" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "SD 卡" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "SD 卡文件大小:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD 卡镜像 (*.raw);;所有文件 (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "SD 卡路径:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "SD 卡设置" @@ -10236,7 +10236,7 @@ msgstr "SD 卡设置" msgid "SD Root:" msgstr "SD 根目录:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "SD 同步文件夹:" @@ -10271,11 +10271,11 @@ msgstr "SSL 上下文" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "保存代码(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "保存状态(&V)" @@ -10285,9 +10285,9 @@ msgid "Safe" msgstr "安全" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10297,25 +10297,25 @@ msgstr "保存" msgid "Save All" msgstr "保存全部" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "另存分支监视为...(&A)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "保存分支监视快照" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "存档导出" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "保存 FIFO 日志" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "保存文件到" @@ -10329,11 +10329,11 @@ msgstr "游戏存档" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "游戏存档文件 (*.sav);;所有文件 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "存档导入" @@ -10345,7 +10345,7 @@ msgstr "保存到最早状态存档" msgid "Save Preset" msgstr "保存预设" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "录制文件另存为" @@ -10395,23 +10395,23 @@ msgstr "保存状态 8" msgid "Save State Slot 9" msgstr "保存状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "保存状态到文件" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "保存状态到最早的插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "向选中的插槽保存状态" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "保存状态到插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "保存符号映射为...(&A)" @@ -10419,7 +10419,7 @@ msgstr "保存符号映射为...(&A)" msgid "Save Texture Cache to State" msgstr "保存纹理缓存到状态" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "保存和载入状态" @@ -10431,11 +10431,11 @@ msgstr "另存为预设..." msgid "Save as..." msgstr "另存为..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "将组合输出文件另存为" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10448,11 +10448,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "保存在与 ROM 相同的目录中" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "保存映射文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "保存签名文件" @@ -10460,11 +10460,11 @@ msgstr "保存签名文件" msgid "Save to Selected Slot" msgstr "保存至所选插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "保存到插槽 %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "保存..." @@ -10476,7 +10476,7 @@ msgstr "只有在 Wii 游戏运行时保存的 Wii 遥控器配对才能重置 msgid "Saves:" msgstr "存档:" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "即时存档影片 {0} 被破坏,影片录制停止……" @@ -10493,8 +10493,8 @@ msgid "ScrShot" msgstr "截图" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "搜索" @@ -10503,7 +10503,7 @@ msgstr "搜索" msgid "Search Address" msgstr "搜索地址" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "搜索当前对象" @@ -10521,7 +10521,7 @@ msgid "" "for a bit and try again." msgstr "当前无法在虚拟地址空间中进行搜索。请运行一会儿游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "搜索一个指令" @@ -10529,7 +10529,7 @@ msgstr "搜索一个指令" msgid "Search games..." msgstr "搜索游戏..." -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "搜索指令" @@ -10563,7 +10563,7 @@ msgstr "选择" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -10574,23 +10574,23 @@ msgid "Select Dump Path" msgstr "选择转储路径" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "选择导出目录" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "选择角色文件" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "选择 GBA BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "选择 GBA ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "选择 GBA 存档路径" @@ -10618,7 +10618,7 @@ msgstr "选择 Skylander 合集" msgid "Select Skylander File" msgstr "选择 Skylander 文件" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "选择插槽 %1 - %2" @@ -10626,7 +10626,7 @@ msgstr "选择插槽 %1 - %2" msgid "Select State" msgstr "选择状态" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "选择状态插槽" @@ -10687,13 +10687,13 @@ msgstr "选择目录" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "选择文件" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "选择要与 SD 卡镜像同步的文件夹" @@ -10701,7 +10701,7 @@ msgstr "选择要与 SD 卡镜像同步的文件夹" msgid "Select a Game" msgstr "选择游戏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "选择 SD 卡镜像" @@ -10713,7 +10713,7 @@ msgstr "选择文件" msgid "Select a game" msgstr "选择游戏" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "选择要安装到 NAND 的软件" @@ -10721,11 +10721,11 @@ msgstr "选择要安装到 NAND 的软件" msgid "Select e-Reader Cards" msgstr "选择 e-Reader 卡" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "选择 RSO 模块地址:" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "选择要播放的录制文件" @@ -10733,12 +10733,12 @@ msgstr "选择要播放的录制文件" msgid "Select the Virtual SD Card Root" msgstr "选择虚拟 SD 卡根目录" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "选择密钥文件 (OTP/SEEPROM 转储)" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "选择一个存档文件" @@ -10761,16 +10761,16 @@ msgstr "所选控制器预设不存在" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "所选游戏在游戏列表中不存在!" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "选定的线程调用栈" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "选定的线程上下文" @@ -10790,7 +10790,7 @@ msgstr "" "选择要使用的硬件适配器。

如无法确定,请选择第一个。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10835,7 +10835,7 @@ msgstr "" "一部分电视采用被动模式。

如无法确定,请选择“关”。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10868,7 +10868,7 @@ msgstr "" "常情况下不应使用。

如无法确定,请选择“自动”。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10882,11 +10882,11 @@ msgstr "" "的一个以达到最好的模拟效果。

如无法确定,请选" "择“OpenGL”。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "发送" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "感应条位置:" @@ -10917,6 +10917,10 @@ msgstr "穿透尝试被服务器拒绝" msgid "Set &Value" msgstr "设置值(&V)" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10934,23 +10938,23 @@ msgstr "给插槽 A 设置存储卡文件" msgid "Set memory card file for Slot B" msgstr "给插槽 B 设置存储卡文件" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "设置符号终止地址(&E)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "设置符号大小(&S)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "设置符号终止地址" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "设置符号大小 (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10959,16 +10963,31 @@ msgstr "" "将 PAL 制式 Wii 游戏的显示模式由 50Hz (576i) 改为 60Hz (480i)。\n" "可能并不适用于所有游戏。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "设置 Wii 的系统语言。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "以毫秒为单位设置延迟。较高的值可能会减少音频噪声。仅限某些后端。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " @@ -10977,13 +10996,13 @@ msgstr "" "设置搜索在虚拟地址空间中使用标准内存 1 和(在 Wii 上)内存 2 映射。这将适用于" "绝大多数游戏。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "设置" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "SetupWiiMemory: 无法创建 setting.txt 文件" @@ -10991,7 +11010,7 @@ msgstr "SetupWiiMemory: 无法创建 setting.txt 文件" msgid "Severity" msgstr "严重性" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "着色器编译" @@ -11013,32 +11032,32 @@ msgstr "新干线" msgid "Shinkansen Controller" msgstr "新干线控制器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "显示百分比速度" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "显示日志(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "显示工具栏(&T)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "在标题栏显示当前游戏名" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "显示全部" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "显示澳大利亚" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "在 Discord 软件中显示当前游戏" @@ -11047,7 +11066,7 @@ msgstr "在 Discord 软件中显示当前游戏" msgid "Show Disabled Codes First" msgstr "优先显示禁用的代码" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "显示 ELF/DOL" @@ -11056,31 +11075,31 @@ msgstr "显示 ELF/DOL" msgid "Show Enabled Codes First" msgstr "优先显示启用的代码" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "显示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "显示帧计数器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "显示帧生成时间" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "显示法国" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "显示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "显示德国" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "叠加显示高尔夫模式" @@ -11088,23 +11107,23 @@ msgstr "叠加显示高尔夫模式" msgid "Show Infinity Base" msgstr "显示 Infinity 底座" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "显示输入回显" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "显示意大利" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "显示日本" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "显示韩国" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "显示延迟计数器" @@ -11112,27 +11131,27 @@ msgstr "显示延迟计数器" msgid "Show Language:" msgstr "显示语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "显示日志设置(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "显示联机信息" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "显示联机延迟" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "显示荷兰" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "显示屏显消息" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "显示 PAL" @@ -11141,27 +11160,27 @@ msgstr "显示 PAL" msgid "Show PC" msgstr "显示 PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "显示性能图表" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "显示平台" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "显示投影统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "显示地区" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "显示重录计数器" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "显示俄罗斯" @@ -11169,72 +11188,72 @@ msgstr "显示俄罗斯" msgid "Show Skylanders Portal" msgstr "显示 Skylanders 传送门" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "显示西班牙" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "显示速度颜色" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "显示统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "显示系统频率" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "显示台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "显示美国" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "显示未知" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "显示垂直消隐时间" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "显示 VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "显示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "显示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "显示全球" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "在内存中显示(&M)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "在代码中显示" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "在内存中显示" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "在代码中显示" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "在内存中显示" @@ -11242,11 +11261,19 @@ msgstr "在内存中显示" msgid "Show in server browser" msgstr "在服务器浏览器中显示" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "在内存中显示目标(&Y)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11254,7 +11281,7 @@ msgstr "" "在联机游戏时显示聊天消息、缓冲变化和未同步警告。

如" "无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11272,7 +11306,25 @@ msgstr "" "显示与全速相对的百分比模拟速度。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11281,7 +11333,7 @@ msgstr "" "以毫秒显示每个不同渲染帧与标准差之间的平均时间。

如" "无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11290,7 +11342,7 @@ msgstr "" "以毫秒显示每个渲染帧与标准差之间的平均时间。

如无法" "确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11299,7 +11351,7 @@ msgstr "" "显示每秒呈现的不同帧数以衡量视觉平滑度。

如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
如无法确定,请不" "要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11316,7 +11368,7 @@ msgstr "" "在联机游戏时显示玩家的最大延迟。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11324,7 +11376,7 @@ msgstr "" "显示各种投影统计数据。

如无法确定,请不要选中此项。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11348,7 +11400,7 @@ msgstr "切换横握" msgid "Sideways Wii Remote" msgstr "横握 Wii 遥控器" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "签名数据库" @@ -11367,12 +11419,12 @@ msgstr "有符号 32" msgid "Signed 8" msgstr "有符号 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "有符号整数" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "简体中文" @@ -11389,7 +11441,7 @@ msgstr "六轴" msgid "Size" msgstr "大小" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11399,7 +11451,7 @@ msgstr "伸缩缓冲区的大小,以毫秒计。数值过低可能导致噼啪 msgid "Skip" msgstr "跳过" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "跳过绘制" @@ -11451,6 +11503,9 @@ msgid "Skylander %1" msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "Skylander (*.sky);;所有文件 (*)" @@ -11523,7 +11578,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "按字母排序" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "声音:" @@ -11537,7 +11592,7 @@ msgstr "西班牙" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "西班牙语" @@ -11545,19 +11600,19 @@ msgstr "西班牙语" msgid "Speaker Pan" msgstr "扬声器声像" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "扬声器音量:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "专门化(默认)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "特定" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11588,11 +11643,11 @@ msgstr "速度" msgid "Spyro's Adventure" msgstr "小龙斯派罗的大冒险" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "堆栈结束" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "堆栈开始" @@ -11600,25 +11655,25 @@ msgstr "堆栈开始" msgid "Standard Controller" msgstr "标准控制器" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "开始" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "开始联机...(&N)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "开始分支监视" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "开始新的金手指搜索" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "开始录制输入(&C)" @@ -11626,7 +11681,7 @@ msgstr "开始录制输入(&C)" msgid "Start Recording" msgstr "开始录制" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "以全屏启动" @@ -11638,14 +11693,14 @@ msgstr "启动时附带 Riivolution 补丁" msgid "Start with Riivolution Patches..." msgstr "启动时附带 Riivolution 补丁..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "游戏已启动" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "状态" @@ -11677,19 +11732,19 @@ msgstr "单步跳出" msgid "Step Over" msgstr "单步跳过" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "跳出成功!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "跳出超时!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "跳过正在处理..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "单步成功!" @@ -11698,7 +11753,7 @@ msgstr "单步成功!" msgid "Stepping" msgstr "步进" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "立体声" @@ -11727,16 +11782,16 @@ msgid "Stick" msgstr "摇杆" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "停止播放/录制输入" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "游戏已停止" @@ -11774,11 +11829,11 @@ msgstr "" "开启 = XFB 副本为纹理
关闭 = XFB 副本为内存(和纹理)" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "拉伸到窗口大小" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "严格设置同步" @@ -11792,7 +11847,11 @@ msgstr "字符串" msgid "Strum" msgstr "拨弦" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "样式:" @@ -11803,18 +11862,18 @@ msgstr "样式:" msgid "Stylus" msgstr "手写笔" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "成功" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "已成功加入联机索引" @@ -11824,7 +11883,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "成功转换 %n 个镜像。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "成功删除 '%1'。" @@ -11837,24 +11896,24 @@ msgstr "在 %1 个存档文件中 %n 个导出成功。" msgid "Successfully exported save files" msgstr "成功导出存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "已成功从 NAND 中提取证书" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "提取文件成功。" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "提取系统数据成功。" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "导入存档文件成功。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "成功将此软件安装到 NAND。" @@ -11877,16 +11936,16 @@ msgstr "支持" msgid "Supported file formats" msgstr "支持的文件格式" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "支持 SD 和 SDHC 格式。默认大小为 128 MB。" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "环绕" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "已暂停" @@ -11932,17 +11991,17 @@ msgstr "转换到 B" msgid "Symbol" msgstr "符号" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "符号 (%1) 终止地址:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "符号名:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "符号" @@ -11950,7 +12009,7 @@ msgstr "符号" msgid "Sync" msgstr "同步" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "同步 AR/Gecko 代码" @@ -11969,7 +12028,7 @@ msgid "" msgstr "" "同步 GPU 与 CPU 线程以帮助防止双核模式下的随机卡死。(开=兼容,关=快速)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11988,24 +12047,24 @@ msgid "Synchronizing save data..." msgstr "正在同步存档数据..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "系统语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "TAS 工具" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "标签" @@ -12015,7 +12074,7 @@ msgstr "标签" msgid "Taiko Drum" msgstr "太鼓" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "尾" @@ -12023,7 +12082,7 @@ msgstr "尾" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "屏幕截图" @@ -12031,7 +12090,7 @@ msgstr "屏幕截图" msgid "Target address range is invalid." msgstr "目标地址范围无效。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12049,9 +12108,9 @@ msgstr "科技" msgid "Test" msgstr "测试" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "文本文件 (*.txt);;所有文件 (*)" @@ -12064,7 +12123,7 @@ msgstr "纹理缓存" msgid "Texture Cache Accuracy" msgstr "纹理缓存精度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "转储纹理" @@ -12076,7 +12135,7 @@ msgstr "纹理过滤" msgid "Texture Filtering:" msgstr "纹理过滤:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "显示纹理格式" @@ -12117,13 +12176,13 @@ msgstr "此 IPL 文件不是已知的正确转储。(CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "缺少杰作分区。" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "该 NAND 无法修复。建议备份您当前的数据并使用新的 NAND 启动。" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "NAND 已修复。" @@ -12140,7 +12199,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "此 Skylander 拥有的金钱数量。介于 0 至 65000 之间" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12197,7 +12256,7 @@ msgstr "" "\n" "请为 “%1” 选择另一个目标路径" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -12209,7 +12268,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "无法读取此光盘 (at {0:#x} - {1:#x})。" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "无法找到已可插入的光盘。" @@ -12297,7 +12356,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "文件系统无效或无法读取。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -12341,7 +12400,7 @@ msgstr "" "该游戏区域与你的主机不匹配。为避免系统菜单出现问题,现无法使用此光盘更新模拟" "主机。" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -12411,12 +12470,12 @@ msgstr "Skylander 的昵称。不能超过 15 个字符" msgid "The patches in %1 are not for the selected game or game revision." msgstr "此 %1 中的补丁不适用于选定的游戏或游戏修订版。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "配置文件 '%1' 不存在" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "被录制的游戏 ({0}) 与所选游戏 ({1}) 不一致" @@ -12438,7 +12497,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "同一文件不能在多个插槽中使用;其已被 %1 占用。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "同一文件夹不能在多个插槽中使用;其已被 %1 占用。" @@ -12475,7 +12534,7 @@ msgstr "指定的公用密钥索引是 {0} ,但应该为 {1} 。" msgid "The specified file \"{0}\" does not exist" msgstr "指定的文件 “{0}” 不存在" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -12535,7 +12594,7 @@ msgstr "缺少更新分区。" msgid "The update partition is not at its normal position." msgstr "更新分区未处于正常位置。" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -12559,6 +12618,10 @@ msgstr "分区 {0} 未正确签名。" msgid "The {0} partition is not properly aligned." msgstr "分区 {0} 未正确对齐。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "第一个分区表中的分区太多。" @@ -12573,8 +12636,8 @@ msgstr "" "\n" "您要在关闭前保存吗?" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "没有需要保存的内容!" @@ -12626,11 +12689,11 @@ msgstr "此 Skylander 类型现在还无法修改!" msgid "This USB device is already whitelisted." msgstr "此 USB 设备已列入白名单。" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "无法启动该 WAD" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "此 WAD 无效。" @@ -12648,7 +12711,7 @@ msgstr "" "此 Dolphin 构建版本没有对你的 CPU 原生编译。\n" "请运行 Dolphin 的 ARM64 版本以获得更好的体验。" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "不能被撤销!" @@ -12765,7 +12828,7 @@ msgstr "" msgid "This is a good dump." msgstr "这是一个正确的转储。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "这仅适用于模拟软件的初始启动。" @@ -12788,7 +12851,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "该软件不能用于运行你非法持有的游戏。" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "无法启动该软件。" @@ -12834,7 +12897,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "该数值将与图像设置中设定的深度值相乘。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12850,7 +12913,7 @@ msgid "" "save sync." msgstr "这将限制每个客户端用于存档同步的数据块上传速度。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12861,11 +12924,11 @@ msgstr "" "可以防止在某些使用 EFB 读取的游戏中出现不同步。请确保所有人都使用相同的视频后" "端。" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "线程上下文" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "线程" @@ -12888,14 +12951,14 @@ msgstr "倾斜" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "触发校准的稳定输入时间段。(0 为禁用)" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "超时" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "标题" @@ -12904,12 +12967,12 @@ msgid "To" msgstr "至" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "至:" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "切换全屏(&F)" @@ -12934,7 +12997,7 @@ msgid "Toggle Aspect Ratio" msgstr "切换宽高比" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "切换断点" @@ -12990,7 +13053,7 @@ msgstr "切换 XFB 立即模式" msgid "Tokenizing failed." msgstr "标记化失败。" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "工具控件" @@ -12998,7 +13061,7 @@ msgstr "工具控件" msgid "Toolbar" msgstr "工具栏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "顶部" @@ -13006,8 +13069,8 @@ msgstr "顶部" msgid "Top-and-Bottom" msgstr "上下" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "总命中数" @@ -13049,7 +13112,7 @@ msgid "Toy code:" msgstr "玩具代码:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "繁体中文" @@ -13069,8 +13132,8 @@ msgstr "陷阱大师" msgid "Trap Team" msgstr "陷阱小队" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "穿透错误" @@ -13097,7 +13160,7 @@ msgstr "Triforce AM 基板" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "扳机" @@ -13107,7 +13170,7 @@ msgid "Trophy" msgstr "奖杯" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13121,7 +13184,7 @@ msgstr "基于类型对齐" msgid "Typical GameCube/Wii Address Space" msgstr "典型 GameCube/Wii 地址空间" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "未知" @@ -13133,7 +13196,7 @@ msgstr "美国" msgid "USB Device Emulation" msgstr "USB 设备模拟" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "USB 模拟" @@ -13151,7 +13214,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB 白名单错误" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13161,7 +13224,7 @@ msgstr "" "低端硬件。

如无法确定,请选择此模式。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13172,7 +13235,7 @@ msgstr "" "

除非使用混合超着色器遇到卡顿并且拥有非常强大的 " "GPU,否则不要使用此选项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13184,7 +13247,7 @@ msgstr "" "

在理想情况下将在消除着色器编译卡顿的同时尽可能减小性能影响,但效果因" "视频驱动的行为而异。" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "无法自动检测 RSO 模块" @@ -13254,11 +13317,11 @@ msgstr "未压缩的 GC/Wii 镜像 (*.iso *.gcm)" msgid "Undead" msgstr "亡灵" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "撤销载入状态" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "撤销保存状态" @@ -13278,28 +13341,28 @@ msgstr "" "卸载 WAD 会将该游戏的当前已安装版本从 NAND 中移除,而不会删除其存档。是否继" "续?" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "美国" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "未知" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "未知 (Id:%1 Var:%2)" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "未知 DVD 命令 {0:08x} - 致命错误" @@ -13370,11 +13433,11 @@ msgid "Unknown(%1 %2).sky" msgstr "Unknown(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "Unknown(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "无限制" @@ -13386,21 +13449,9 @@ msgstr "卸载 ROM" msgid "Unlock Cursor" msgstr "解锁光标" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "已解锁" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "本次会话期间解锁 %1 次" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "已解锁 (临时)" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" -msgstr "本次会话期间解锁" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" +msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13426,7 +13477,7 @@ msgstr "无符号 32" msgid "Unsigned 8" msgstr "无符号 8" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "无符号整数" @@ -13440,8 +13491,8 @@ msgstr "无符号整数" msgid "Up" msgstr "上" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "更新" @@ -13449,11 +13500,11 @@ msgstr "更新" msgid "Update Partition (%1)" msgstr "更新分区 (%1)" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "关闭 Dolphin 后更新" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "更新可用" @@ -13498,7 +13549,7 @@ msgstr "切换竖握" msgid "Upright Wii Remote" msgstr "竖握 Wii 遥控器" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "使用情况统计报告设置" @@ -13506,15 +13557,15 @@ msgstr "使用情况统计报告设置" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "使用 8.8.8.8 作为通用 DNS,或输入你的自定义设置" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "使用所有 Wii 存档数据" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "使用内建数据库游戏名称" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "使用无损编解码器 (FFV1)" @@ -13522,15 +13573,21 @@ msgstr "使用无损编解码器 (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "使用鼠标控制指针" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "使用 PAL60 模式 (EuRGB60)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "使用警告程序" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13570,7 +13627,7 @@ msgstr "如可能则使用虚拟地址" msgid "User Config" msgstr "用户配置" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "用户界面" @@ -13588,10 +13645,17 @@ msgstr "" "你可以使用其来保存或检索同一个\n" "父控制器输入和输出之间的值。" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "用户名" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -13603,7 +13667,7 @@ msgstr "" "的提速,取决于游戏和/或 GPU。

如无法确定,请选中此" "项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13612,7 +13676,7 @@ msgstr "" "使用整个屏幕进行渲染。

如果禁用,则会创建一个渲染窗口。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
其他情况下,如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13893,8 +13957,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -13906,7 +13970,7 @@ msgstr "" "警告:当前为此插槽配置了 GCI 文件夹覆盖路径。在这里调整 GCI 路径不会有任何效" "果。" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13920,7 +13984,7 @@ msgid "" "the loaded file header ({1})" msgstr "警告:BAT 所标示的区块数 ({0}) 与已载入文件头中的 ({1}) 不匹配" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " @@ -13929,7 +13993,7 @@ msgstr "" "警告:您读取的存档在当前影片结束之后。(字节 {0} > {1}) (输入 {2} > {3}) 。您" "需要读取另一个存档方可继续,或关闭只读模式再读取此状态存档。" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " @@ -13938,7 +14002,7 @@ msgstr "" "警告:您读取的存档影片已结束在存档的当前帧之前 (字节 {0} < {1}) (帧 {2} < " "{3})。您需要读取另一个存档方可继续。" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" @@ -13947,7 +14011,7 @@ msgstr "" "警告:您读取的存档在 {0} ({1:#x}) 字节处与影片不匹配。您需要读取另一个存档方" "可继续,或关闭只读模式再读取此状态存档。否则将可能发生不同步。" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -14006,7 +14070,7 @@ msgstr "西方 (Windows-1252)" msgid "Whammy" msgstr "颤音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14017,7 +14081,7 @@ msgstr "" "卡中启用了“特殊多级纹理检测”,则特殊基本纹理也会被转储。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14028,7 +14092,7 @@ msgstr "" "强选项卡中启用了“特殊多级纹理检测”,则特殊多级纹理也会被转储。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "USB 直通设备白名单" @@ -14060,25 +14124,25 @@ msgstr "Wii 遥控器" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "Wii 遥控器 %1" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "Wii 遥控器加速度计" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "Wii 遥控器按键" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "Wii 遥控器陀螺仪" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "Wii 遥控器设置" @@ -14086,19 +14150,19 @@ msgstr "Wii 遥控器设置" msgid "Wii Remotes" msgstr "Wii 遥控器" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "Wii TAS 输入 %1 - 传统控制器" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "Wii TAS 输入 %1 - Wii 遥控器" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "Wii TAS 输入 %1 - Wii 遥控器 + 双节棍" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "Wii 和 Wii 遥控器" @@ -14106,7 +14170,7 @@ msgstr "Wii 和 Wii 遥控器" msgid "Wii data is not public yet" msgstr "Wii 数据尚未公开" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 存档文件 (*.bin);; 所有文件 (*)" @@ -14114,13 +14178,7 @@ msgstr "Wii 存档文件 (*.bin);; 所有文件 (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools 签名 MEGA 文件" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "只要有活动窗口就把鼠标光标锁定到渲染部件。你可以设置一个热键来解锁。 " - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "窗口分辨率" @@ -14129,11 +14187,11 @@ msgstr "窗口分辨率" msgid "Window Size" msgstr "窗口大小" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "擦除检验数据(&I)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "擦除最近命中" @@ -14147,10 +14205,11 @@ msgstr "全球" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "写入" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "写入 JIT 区块日志转储" @@ -14183,39 +14242,39 @@ msgstr "写入到日志并中断" msgid "Write to Window" msgstr "写入到窗口" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "光盘编号错误" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "哈希值错误" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "区域错误" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "错误修订版" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "已写入 “%1”。" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "已写入 “{0}”。" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "X" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "XF 寄存器" @@ -14224,9 +14283,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "XLink Kai BBA 目标地址" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "Y" @@ -14254,7 +14313,7 @@ msgstr "是" msgid "Yes to &All" msgstr "全部选是(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " @@ -14263,7 +14322,7 @@ msgstr "" "即将把 %2 的文件内容转换到 %1 的文件夹中。文件夹的所有当前内容将被删除。请确" "定是否要继续?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -14369,7 +14428,7 @@ msgstr "你必须为会话提供一个名称!" msgid "You must provide a region for your session!" msgstr "你必须为会话提供一个区域!" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "您必须重新启动 Dolphin 以使改动生效。" @@ -14396,7 +14455,7 @@ msgstr "" "您想现在停下来修复此问题吗?\n" "如果选择“否”,音频可能会嘈杂混乱。" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14404,9 +14463,9 @@ msgstr "" "您的 NAND 包含的数据超过了允许的数量。Wii 软件可能出现异常或不允许保存。" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "Z" @@ -14415,7 +14474,7 @@ msgstr "Z" msgid "Zero 3 code not supported" msgstr "Zero 3 代码不支持" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "剩余候选项为零。" @@ -14464,7 +14523,7 @@ msgid "default" msgstr "默认" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "连接已断开" @@ -14472,7 +14531,7 @@ msgstr "连接已断开" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "e-Reader 卡 (*.raw);;所有文件 (*)" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "errno" @@ -14480,7 +14539,7 @@ msgstr "errno" msgid "fake-completion" msgstr "伪完成" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "假" @@ -14530,16 +14589,6 @@ msgstr "" msgid "none" msgstr "无" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "关" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "开" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "或选择一个设备" @@ -14557,7 +14606,7 @@ msgstr "sRGB" msgid "this value:" msgstr "这个值:" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "真" @@ -14624,11 +14673,9 @@ msgstr "| 或" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" -"© 2003-2015+ Dolphin 团队。“GameCube” 和 “Wii” 是任天堂的商标。Dolphin 与任天" -"堂没有任何形式的关联。" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index e0efff902e..238f1899e3 100644 --- a/Languages/po/zh_TW.po +++ b/Languages/po/zh_TW.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-04-29 20:55+0200\n" +"POT-Creation-Date: 2024-06-26 20:21+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Narusawa Yui , 2016,2018\n" "Language-Team: Chinese (Taiwan) (http://app.transifex.com/delroth/dolphin-" @@ -84,7 +84,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 msgid "%1 %" msgstr "" @@ -118,7 +118,7 @@ msgid "%1 (Revision %3)" msgstr "" #. i18n: "Stock" refers to input profiles included with Dolphin -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:508 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:506 msgid "%1 (Stock)" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -149,11 +149,11 @@ msgstr "" msgid "%1 Graphics Configuration" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:300 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:299 msgid "%1 MB (MEM1)" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:314 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:313 msgid "%1 MB (MEM2)" msgstr "" @@ -170,40 +170,34 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:163 -msgid "" -"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 " -"hardcore)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:174 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:129 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 msgid "%1 is playing %2" msgstr "" @@ -211,13 +205,13 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 +#: 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:148 -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:93 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 msgid "%1 points" msgstr "" @@ -229,30 +223,30 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 msgid "%1%" msgstr "" -#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:283 +#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:282 msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:178 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 msgid "%1% (Normal Speed)" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 msgid "%1's value is changed" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 msgid "%1's value is hit" msgstr "" #. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 msgid "%1's value is used" msgstr "" @@ -264,6 +258,10 @@ msgstr "" msgid "%1: %2" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 +msgid "%1

%2" +msgstr "" + #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" msgstr "%1[%2]: %3" @@ -333,11 +331,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:655 +#: Source/Core/DolphinQt/MenuBar.cpp:649 msgid "&About" msgstr "關於(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" msgstr "" @@ -346,7 +344,7 @@ msgstr "" msgid "&Add New Code..." msgstr "新增代碼 (&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 msgid "&Add function" msgstr "新增功能 (&A)" @@ -354,15 +352,15 @@ msgstr "新增功能 (&A)" msgid "&Add..." msgstr "新增... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:543 +#: Source/Core/DolphinQt/MenuBar.cpp:537 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Audio Settings" msgstr "聲音設定 (&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:198 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 msgid "&Auto Update:" msgstr "自動更新 (&A)" @@ -370,11 +368,15 @@ msgstr "自動更新 (&A)" msgid "&Borderless Window" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 +msgid "&Break On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:506 msgid "&Breakpoints" msgstr "中斷點(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:638 +#: Source/Core/DolphinQt/MenuBar.cpp:632 msgid "&Bug Tracker" msgstr "" @@ -382,15 +384,15 @@ msgstr "" msgid "&Cancel" msgstr "取消 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:262 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "&Cheats Manager" msgstr "作弊碼管理器 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:648 +#: Source/Core/DolphinQt/MenuBar.cpp:642 msgid "&Check for Updates..." msgstr "檢查更新 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Clear Symbols" msgstr "" @@ -398,7 +400,7 @@ msgstr "" msgid "&Clone..." msgstr "相容版 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:477 +#: Source/Core/DolphinQt/MenuBar.cpp:471 msgid "&Code" msgstr "代碼 (&C)" @@ -406,16 +408,15 @@ msgstr "代碼 (&C)" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:590 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Controller Settings" msgstr "控制器設定(&C)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:820 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:839 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" msgstr "" @@ -423,20 +424,20 @@ msgstr "" msgid "&Create..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:809 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1035 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 msgid "&Delete" msgstr "刪除 (&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:359 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Delete Watch" msgstr "刪除監視 (&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:338 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 msgid "&Delete Watches" msgstr "" @@ -450,11 +451,11 @@ msgstr "編輯代碼 (&E)" msgid "&Edit..." msgstr "編輯 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:242 +#: Source/Core/DolphinQt/MenuBar.cpp:235 msgid "&Eject Disc" msgstr "退出碟片 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Emulation" msgstr "模擬 (&E)" @@ -474,41 +475,41 @@ msgstr "" msgid "&Export as .gci..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:282 -#: Source/Core/DolphinQt/MenuBar.cpp:232 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:225 msgid "&File" msgstr "檔案 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:610 +#: Source/Core/DolphinQt/MenuBar.cpp:604 msgid "&Font..." msgstr "字體... (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:361 +#: Source/Core/DolphinQt/MenuBar.cpp:355 msgid "&Frame Advance" msgstr "畫格步進(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:592 +#: Source/Core/DolphinQt/MenuBar.cpp:586 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:634 +#: Source/Core/DolphinQt/MenuBar.cpp:628 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:587 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Graphics Settings" msgstr "影像設定(&G)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:307 -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Help" msgstr "說明(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:585 msgid "&Hotkey Settings" msgstr "快捷鍵設定(&D)" @@ -528,11 +529,11 @@ msgstr "" msgid "&Import..." msgstr "匯入... (&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:268 +#: Source/Core/DolphinQt/MenuBar.cpp:261 msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 msgid "&Insert blr" msgstr "" @@ -540,23 +541,23 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:531 msgid "&JIT" msgstr "&JIT" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:119 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:126 msgid "&Language:" msgstr "語言 (&L)" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:285 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:378 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "&Load State" msgstr "讀取進度(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1033 msgid "&Load Symbol Map" msgstr "" @@ -566,19 +567,23 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:341 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:469 +#: Source/Core/DolphinQt/MenuBar.cpp:463 msgid "&Lock Widgets In Place" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:521 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 +msgid "&Log On Hit" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:515 msgid "&Memory" msgstr "記憶卡(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:784 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "&Movie" msgstr "影片(&M)" @@ -586,7 +591,7 @@ msgstr "影片(&M)" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:529 +#: Source/Core/DolphinQt/MenuBar.cpp:523 msgid "&Network" msgstr "" @@ -595,23 +600,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:234 Source/Core/DolphinQt/MenuBar.cpp:236 +#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 msgid "&Open..." msgstr "開啟(&O)..." -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "&Options" msgstr "選項(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1059 +#: Source/Core/DolphinQt/MenuBar.cpp:1053 msgid "&Patch HLE Functions" msgstr "修正 HLE 功能 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "&Pause" msgstr "暫停(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:356 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Play" msgstr "執行(&P)" @@ -619,7 +624,7 @@ msgstr "執行(&P)" msgid "&Properties" msgstr "屬性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:793 msgid "&Read-Only Mode" msgstr "唯讀模式(&R)" @@ -627,7 +632,7 @@ msgstr "唯讀模式(&R)" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:479 msgid "&Registers" msgstr "寄存器(&R)" @@ -640,24 +645,24 @@ msgstr "移除 (&R)" msgid "&Remove Code" msgstr "移除代碼 (&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:359 +#: Source/Core/DolphinQt/MenuBar.cpp:353 msgid "&Reset" msgstr "重新啟動(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:252 msgid "&Resource Pack Manager" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:283 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1040 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "&Save Symbol Map" msgstr "" @@ -665,31 +670,31 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:260 msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:183 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 msgid "&Speed Limit:" msgstr "限制速度 (&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:358 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Stop" msgstr "停止(&S)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:123 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:138 msgid "&Theme:" msgstr "主題 (&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:494 +#: Source/Core/DolphinQt/MenuBar.cpp:488 msgid "&Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Tools" msgstr "工具(&T)" @@ -699,21 +704,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:344 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:443 +#: Source/Core/DolphinQt/MenuBar.cpp:437 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:504 +#: Source/Core/DolphinQt/MenuBar.cpp:498 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:627 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "&Website" msgstr "網站(&W)" @@ -725,23 +730,23 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1344 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1569 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "'%1' not found, scanning for common functions instead" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" msgstr "" @@ -777,12 +782,12 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:219 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 msgid "--Unknown--" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:333 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:717 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:185 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102 msgid "..." @@ -843,7 +848,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "16:9" msgstr "" @@ -901,7 +906,7 @@ msgstr "" #. i18n: Stereoscopic 3D #: Source/Core/Core/HotkeyManager.cpp:350 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" @@ -927,7 +932,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 msgid "4:3" msgstr "" @@ -1020,26 +1025,26 @@ msgstr "" msgid "" msgstr "<無>" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:72 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:41 msgid "" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:264 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:708 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " "irrelevant." msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:64 +#: Source/Core/DolphinQt/Updater.cpp:65 msgid "" "

A new version of Dolphin is available!

Dolphin %1 is available for " "download. You are running %2.
Would you like to update?

Release " @@ -1062,8 +1067,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1545 -#: Source/Core/DolphinQt/MainWindow.cpp:1612 +#: Source/Core/DolphinQt/MainWindow.cpp:1549 +#: Source/Core/DolphinQt/MainWindow.cpp:1616 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1077,7 +1082,7 @@ msgid "" "Installing this WAD will replace it irreversibly. Continue?" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:472 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:469 msgid "A disc is already about to be inserted." msgstr "" @@ -1091,7 +1096,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:949 +#: Source/Core/DolphinQt/MainWindow.cpp:953 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1107,7 +1112,7 @@ msgstr "" msgid "A sync can only be triggered when a Wii game is running." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" msgstr "" @@ -1132,7 +1137,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:139 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1175,16 +1180,10 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:281 +#: Source/Core/DolphinQt/MenuBar.cpp:274 msgid "Achievements" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:31 -msgid "" -"Achievements have been disabled.
Please close all running games to re-" -"enable achievements." -msgstr "" - #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" msgstr "" @@ -1257,7 +1256,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Active" msgstr "" @@ -1265,15 +1264,15 @@ msgstr "" msgid "Active Infinity Figures:" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 msgid "Active thread queue" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:177 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:180 msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 msgid "Adapter" msgstr "" @@ -1281,7 +1280,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 msgid "Adapter:" msgstr "配接器:" @@ -1291,7 +1290,7 @@ msgstr "配接器:" msgid "Add" msgstr "新增" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:123 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 msgid "Add &breakpoint" msgstr "" @@ -1316,43 +1315,43 @@ msgstr "" msgid "Add a Memory Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138 msgid "Add memory &breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:124 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127 msgid "Add memory breakpoint" 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:132 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:126 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:133 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:129 msgid "Add to &watch" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:501 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897 msgid "Add to watch" msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37 #: Source/Core/DolphinQt/Settings/PathPane.cpp:141 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328 msgid "Add..." msgstr "新增..." -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: 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:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:182 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "Address" msgstr "位址" @@ -1478,7 +1477,7 @@ msgid "All Assembly files" msgstr "" #. i18n: A double precision floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 msgid "All Double" msgstr "" @@ -1487,7 +1486,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:776 +#: Source/Core/DolphinQt/MainWindow.cpp:780 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1495,34 +1494,34 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 msgid "All Files (*)" msgstr "" #. i18n: A floating point number -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:167 msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:779 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" msgstr "" @@ -1538,7 +1537,7 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 msgid "Allow Mismatched Region Settings" msgstr "" @@ -1546,7 +1545,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Allow Writes to SD Card" msgstr "" @@ -1564,7 +1563,7 @@ msgstr "" msgid "Alternate Input Sources" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:208 msgid "Always" msgstr "" @@ -1586,7 +1585,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 msgid "Analyze" msgstr "" @@ -1612,15 +1611,15 @@ msgstr "邊緣抗鋸齒:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1714 +#: Source/Core/DolphinQt/MenuBar.cpp:1718 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1052 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1056 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "Appl&y Signature File..." msgstr "" @@ -1638,7 +1637,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1737 +#: Source/Core/DolphinQt/MenuBar.cpp:1741 msgid "Apply signature file" msgstr "" @@ -1646,7 +1645,7 @@ msgstr "" msgid "Arbitrary Mipmap Detection" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:266 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:264 msgid "Are you sure that you want to delete '%1'?" msgstr "" @@ -1658,7 +1657,7 @@ msgstr "" msgid "Are you sure you want to delete this pack?" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:500 msgid "Are you sure you want to quit NetPlay?" msgstr "" @@ -1670,16 +1669,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 msgid "Aspect Ratio:" msgstr "畫面比例:" @@ -1687,7 +1686,7 @@ msgstr "畫面比例:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" msgstr "" @@ -1699,7 +1698,7 @@ msgstr "" msgid "Assembly File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" msgstr "" @@ -1720,11 +1719,11 @@ msgstr "" msgid "Audio" msgstr "聲音" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 msgid "Audio Backend:" msgstr "聲音裝置:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 msgid "Audio Stretching Settings" msgstr "" @@ -1740,7 +1739,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自動" @@ -1749,11 +1748,11 @@ msgstr "自動" msgid "Auto (Multiple of 640x528)" msgstr "自動 (640x528 的倍數)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:188 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 msgid "Auto Update Settings" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:481 msgid "" "Auto internal resolution is not allowed in strict sync mode, as it depends " "on window size.\n" @@ -1761,7 +1760,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 msgid "Auto-Adjust Window Size" msgstr "" @@ -1769,15 +1768,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1817,27 +1816,27 @@ msgstr "" msgid "BIOS:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:533 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:534 msgid "BP register " msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 msgid "Backend Settings" msgstr "裝置設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 msgid "Backend:" msgstr "" @@ -1880,7 +1879,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Banner" msgstr "橫幅" @@ -1900,15 +1899,15 @@ msgstr "Bar" msgid "Base Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 msgid "Basic" msgstr "基本" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 msgid "Basic Settings" msgstr "基本設定" @@ -1924,10 +1923,6 @@ msgstr "" msgid "Battery" msgstr "電池" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 -msgid "Beta (once a month)" -msgstr "" - #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:37 msgid "BetterJoy, DS4Windows, etc" msgstr "" @@ -1960,11 +1955,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1974,7 +1969,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:692 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Block Size" msgstr "" @@ -2010,67 +2005,67 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:597 +#: Source/Core/DolphinQt/MenuBar.cpp:591 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1807 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1833 +#: Source/Core/DolphinQt/MainWindow.cpp:1837 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 msgid "Borderless Fullscreen" msgstr "無框全螢幕" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Bottom" msgstr "下方" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:376 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:377 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:378 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:379 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:466 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" msgstr "" @@ -2082,23 +2077,23 @@ msgstr "" msgid "Branch Watch Tool" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:706 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:718 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:726 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:737 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:707 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" "Branch Watch is a code-searching tool that can isolate branches tracked by " "the emulated CPU by testing candidate branches with simple criteria. If you " @@ -2115,7 +2110,7 @@ msgid "" "phase." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:719 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:724 msgid "" "Branch Watch starts in the blacklist phase, meaning no candidates have been " "chosen yet, but candidates found so far can be excluded from the candidacy " @@ -2125,19 +2120,19 @@ msgid "" "phase, and the table will populate with all eligible candidates." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:380 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" msgstr "" @@ -2152,19 +2147,24 @@ msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Break" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 +msgid "Break &And Log On Hit" +msgstr "" + #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:42 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 msgid "Breakpoints" msgstr "" @@ -2198,24 +2198,24 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/MenuBar.cpp:267 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 msgid "Buffer size changed to %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Buffer:" msgstr "緩衝:" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:266 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:267 msgid "" "Buggy GPU driver detected.\n" "Please either install the closed-source GPU driver or update your Mesa 3D " @@ -2260,11 +2260,11 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1051 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "C&reate Signature File..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:550 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:551 msgid "CP register " msgstr "" @@ -2284,7 +2284,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2315,7 +2315,7 @@ msgstr "" msgid "Calibration Period" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:287 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:288 msgid "Call display list at %1 with size %2" msgstr "" @@ -2341,7 +2341,7 @@ msgstr "" msgid "Camera field of view (affects sensitivity of pointing)." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:569 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:570 msgid "Can only generate AR code for values in virtual memory." msgstr "" @@ -2357,18 +2357,18 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1538 -#: Source/Core/DolphinQt/MainWindow.cpp:1605 +#: Source/Core/DolphinQt/MainWindow.cpp:1542 +#: Source/Core/DolphinQt/MainWindow.cpp:1609 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1387 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "取消" @@ -2377,15 +2377,15 @@ msgstr "取消" msgid "Cancel Calibration" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:956 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:959 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:974 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" msgstr "" @@ -2401,11 +2401,11 @@ msgstr "" msgid "Cannot compare against last value on first search." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:629 +#: Source/Core/Core/Boot/Boot.cpp:626 msgid "Cannot find the GC IPL." msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:572 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:573 msgid "Cannot generate AR code for this address." msgstr "" @@ -2413,7 +2413,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2421,7 +2421,7 @@ msgstr "" msgid "Cannot set memory card to an empty path." msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:627 +#: Source/Core/Core/Boot/Boot.cpp:624 msgid "Cannot start the game, because the GC IPL could not be found." msgstr "" @@ -2453,7 +2453,7 @@ msgstr "" msgid "Change &Disc" msgstr "更換光碟(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:241 +#: Source/Core/DolphinQt/MenuBar.cpp:234 msgid "Change &Disc..." msgstr "更換光碟(&D)..." @@ -2461,15 +2461,21 @@ msgstr "更換光碟(&D)..." msgid "Change Disc" msgstr "更換光碟" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 msgid "Change Discs Automatically" msgstr "" -#: Source/Core/Core/Movie.cpp:1261 +#: Source/Core/Core/Movie.cpp:1260 msgid "Change the disc to {0}" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:323 +msgid "" +"Changes the appearance and color of Dolphin's buttons." +"

If unsure, select Clean." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2487,7 +2493,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:66 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2495,11 +2501,11 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 msgid "Character entered is invalid!" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267 msgid "Chat" msgstr "聊天" @@ -2507,7 +2513,7 @@ msgstr "聊天" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:174 +#: Source/Core/DolphinQt/CheatsManager.cpp:175 msgid "Cheat Search" msgstr "尋找作弊代碼" @@ -2515,7 +2521,7 @@ msgstr "尋找作弊代碼" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:306 +#: Source/Core/DolphinQt/MenuBar.cpp:299 msgid "Check NAND..." msgstr "" @@ -2533,7 +2539,7 @@ msgid "" "whether it's still in use." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 msgid "Checksum" msgstr "" @@ -2545,7 +2551,7 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:646 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Choose a file to open" msgstr "選擇一個要開啟的檔案" @@ -2553,15 +2559,15 @@ msgstr "選擇一個要開啟的檔案" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1757 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1762 +#: Source/Core/DolphinQt/MenuBar.cpp:1766 msgid "Choose secondary input file" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:540 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose the GCI base folder" msgstr "" @@ -2574,7 +2580,7 @@ msgstr "選擇提取的資料夾存放位置" msgid "Clamping of rotation about the yaw axis." msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:335 msgid "Classic Buttons" msgstr "" @@ -2585,18 +2591,18 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: 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/Config/Mapping/MappingWindow.cpp:152 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 msgid "Clear" msgstr "清除" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:913 +#: Source/Core/DolphinQt/MenuBar.cpp:907 msgid "Clear Cache" msgstr "" @@ -2617,7 +2623,7 @@ msgstr "" msgid "Close" msgstr "關閉" -#: Source/Core/DolphinQt/MenuBar.cpp:580 Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 msgid "Co&nfiguration" msgstr "" @@ -2625,11 +2631,11 @@ msgstr "" msgid "Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" msgstr "" @@ -2657,11 +2663,11 @@ msgstr "" msgid "Color Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:305 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1054 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Combine &Two Signature Files..." msgstr "" @@ -2688,7 +2694,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 msgid "Compile Shaders Before Starting" msgstr "" @@ -2698,7 +2704,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:693 +#: Source/Core/DolphinQt/MenuBar.cpp:687 msgid "Compression" msgstr "" @@ -2711,7 +2717,7 @@ msgstr "" msgid "Compression:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." msgstr "" @@ -2719,11 +2725,11 @@ msgstr "" #. triggering the breakpoint. #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite #. for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:455 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Condition" msgstr "" @@ -2739,7 +2745,7 @@ msgstr "" #. i18n: The title for a dialog that shows help for how to use conditions. If a condition is set #. for a breakpoint, the condition becoming true is a prerequisite for triggering the breakpoint. -#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:368 +#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:373 msgid "Conditional help" msgstr "" @@ -2754,7 +2760,12 @@ msgid "" "Registers that can be referenced:\n" "GPRs : r0..r31\n" "FPRs : f0..f31\n" -" LR, CTR, PC\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" "\n" "Functions:\n" "Set a register: r1 = 8\n" @@ -2808,7 +2819,7 @@ msgstr "設定" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "設定 Dolphin" @@ -2821,27 +2832,27 @@ msgstr "設定輸入" msgid "Configure Output" msgstr "設定輸出" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:263 #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:948 -#: Source/Core/DolphinQt/MainWindow.cpp:1743 +#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:1747 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:178 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1297 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" msgstr "" @@ -2851,15 +2862,15 @@ msgstr "" msgid "Connect" msgstr "連接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 msgid "Connect Balance Board" msgstr "連接平衡板" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Connect USB Keyboard" msgstr "連接 USB 鍵盤" -#: Source/Core/DolphinQt/MenuBar.cpp:341 +#: Source/Core/DolphinQt/MenuBar.cpp:335 msgid "Connect Wii Remote %1" msgstr "連接 Wii Remote %1" @@ -2879,7 +2890,7 @@ msgstr "連接 Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "連接 Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:334 +#: Source/Core/DolphinQt/MenuBar.cpp:328 msgid "Connect Wii Remotes" msgstr "連接 Wii Remote" @@ -2895,7 +2906,7 @@ msgstr "連接至網路並執行線上的系統更新?" msgid "Connected" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:715 msgid "Connecting" msgstr "" @@ -2920,7 +2931,7 @@ msgstr "" msgid "Control Stick" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451 msgid "Controller Profile" msgstr "控制器設定檔" @@ -3007,8 +3018,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Conversion failed." msgstr "" @@ -3016,9 +3027,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 msgid "Convert File to Folder Now" msgstr "" @@ -3026,9 +3037,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 msgid "Convert Folder to File Now" msgstr "" @@ -3048,8 +3059,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 msgid "Converting..." msgstr "" @@ -3078,22 +3089,22 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: 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 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:707 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:736 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:764 msgid "Copy" msgstr "複製" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "Copy &function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "Copy &hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:877 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" @@ -3101,19 +3112,19 @@ msgstr "" msgid "Copy Failed" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:879 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:883 msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:882 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 msgid "Copy code &line" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 msgid "Copy tar&get address" msgstr "" @@ -3131,8 +3142,8 @@ msgstr "" msgid "Core" msgstr "核心" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." msgstr "" @@ -3239,7 +3250,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 msgid "Couldn't look up central server" msgstr "" @@ -3255,13 +3266,13 @@ msgstr "" msgid "Country:" msgstr "國別:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:246 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:284 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 msgid "Create Infinity File" msgstr "" @@ -3275,7 +3286,7 @@ msgstr "" msgid "Create Skylander File" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:108 msgid "Create mappings for other devices" msgstr "" @@ -3292,11 +3303,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 msgid "Crop" msgstr "剪裁" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3308,42 +3319,42 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Current Region" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Current Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 msgid "Current context" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:212 msgid "Current game" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Custom (Stretch)" msgstr "" @@ -3351,15 +3362,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 msgid "Custom Aspect Ratio:" msgstr "" @@ -3402,7 +3413,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 msgid "DSP Emulation Engine" msgstr "" @@ -3410,15 +3421,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3444,7 +3455,7 @@ msgstr "" msgid "Dark" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:139 msgid "Data" msgstr "" @@ -3489,8 +3500,8 @@ msgstr "非作用區" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3499,7 +3510,7 @@ msgstr "" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 msgid "Decoding Quality:" msgstr "" @@ -3538,7 +3549,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:130 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 msgid "Default" msgstr "預設值" @@ -3546,7 +3557,7 @@ msgstr "預設值" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 msgid "Default Device" msgstr "" @@ -3558,11 +3569,11 @@ msgstr "" msgid "Default ISO:" msgstr "預設的 ISO:" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:156 msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3570,7 +3581,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3579,8 +3590,9 @@ msgid "" "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "刪除" @@ -3610,12 +3622,12 @@ msgstr "" msgid "Depth:" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:678 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "描述" @@ -3629,8 +3641,8 @@ msgstr "" msgid "Description: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" msgstr "" @@ -3642,21 +3654,21 @@ msgstr "" msgid "Destination (address:port):" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:419 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:184 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" msgstr "" @@ -3664,7 +3676,7 @@ msgstr "" msgid "Detect" msgstr "檢測" -#: Source/Core/DolphinQt/MenuBar.cpp:1388 +#: Source/Core/DolphinQt/MenuBar.cpp:1392 msgid "Detecting RSO Modules" msgstr "" @@ -3672,11 +3684,11 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" msgstr "裝置" @@ -3694,7 +3706,7 @@ msgstr "裝置設定" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 msgid "Device:" msgstr "" @@ -3702,7 +3714,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3718,11 +3730,6 @@ msgstr "" msgid "Dis&connected" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 -msgid "Disable" -msgstr "" - #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:109 msgid "Disable Bounding Box" msgstr "" @@ -3731,7 +3738,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3739,11 +3746,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:887 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:893 msgid "Disable Fastmem Arena" msgstr "" @@ -3751,11 +3758,11 @@ msgstr "" msgid "Disable Fog" msgstr "關閉霧化" -#: Source/Core/DolphinQt/MenuBar.cpp:885 +#: Source/Core/DolphinQt/MenuBar.cpp:879 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:905 +#: Source/Core/DolphinQt/MenuBar.cpp:899 msgid "Disable Large Entry Points Map" msgstr "" @@ -3770,7 +3777,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:343 +msgid "" +"Disables your screensaver while running a game.

If " +"unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" msgstr "光碟" @@ -3794,6 +3807,10 @@ msgstr "光碟" msgid "Discard" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +msgid "Display Settings" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" msgstr "" @@ -3824,11 +3841,11 @@ msgstr "" msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1744 +#: Source/Core/DolphinQt/MainWindow.cpp:1748 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1298 +#: Source/Core/DolphinQt/MenuBar.cpp:1302 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3838,7 +3855,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:952 +#: Source/Core/DolphinQt/MainWindow.cpp:956 msgid "Do you want to stop the current emulation?" msgstr "您要停止目前的模擬嗎?" @@ -3846,12 +3863,12 @@ msgstr "您要停止目前的模擬嗎?" msgid "Do you want to try to repair the NAND?" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 msgid "Dolby Pro Logic II Decoder" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 msgid "Dolphin FIFO Log (*.dff)" msgstr "" @@ -3859,9 +3876,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1599 -#: Source/Core/DolphinQt/MenuBar.cpp:1616 -#: Source/Core/DolphinQt/MenuBar.cpp:1635 +#: Source/Core/DolphinQt/MenuBar.cpp:1603 +#: Source/Core/DolphinQt/MenuBar.cpp:1620 +#: Source/Core/DolphinQt/MenuBar.cpp:1639 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3873,8 +3890,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS 影片 (*.dtm)" @@ -3907,7 +3924,7 @@ msgstr "" msgid "Dolphin is a free and open-source GameCube and Wii emulator." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1001 msgid "Dolphin is too old for traversal server" msgstr "" @@ -3921,13 +3938,13 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:224 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 msgid "" "Dolphin will use this for titles whose region cannot be determined " "automatically." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:73 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3936,7 +3953,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:201 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Don't Update" msgstr "" @@ -3957,7 +3974,7 @@ msgstr "" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:140 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:200 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:156 msgid "Double" msgstr "" @@ -3979,7 +3996,7 @@ msgstr "" msgid "Download Codes from the WiiRD Database" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:158 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:165 msgid "Download Game Covers from GameTDB.com for Use in Grid Mode" msgstr "" @@ -3991,6 +4008,16 @@ msgstr "" msgid "Downloaded %1 codes. (added %2)" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 +msgid "" +"Downloads full game covers from GameTDB.com to display in the Game List's " +"Grid View. If this setting is unchecked the Game List displays a banner " +"generated from the game's save files, and if the game has no save file " +"displays a generic banner instead.

List View will always use the save " +"file banners.

If unsure, leave this checked." +msgstr "" + #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203 @@ -4030,19 +4057,19 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:848 msgid "Dump Audio" msgstr "轉儲聲音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 msgid "Dump Base Textures" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Dump EFB Target" msgstr "轉儲 EFB 目標" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:842 msgid "Dump Frames" msgstr "轉儲畫格" @@ -4050,7 +4077,7 @@ msgstr "轉儲畫格" msgid "Dump GameCube BBA traffic" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Mip Maps" msgstr "" @@ -4058,7 +4085,7 @@ msgstr "" msgid "Dump Path:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump XFB Target" msgstr "" @@ -4083,44 +4110,44 @@ msgstr "" msgid "Dump root CA certificates" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:61 msgid "Duration of Turbo Button Press (frames):" msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:67 msgid "Duration of Turbo Button Release (frames):" msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Dutch" msgstr "Dutch" -#: Source/Core/DolphinQt/MenuBar.cpp:251 +#: Source/Core/DolphinQt/MenuBar.cpp:244 msgid "E&xit" msgstr "離開(&X)" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:175 msgid "EFB copy %1" msgstr "" @@ -4132,7 +4159,7 @@ msgid "" "driver." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:187 msgid "" "Each player sends their own inputs to the game, with equal buffer size for " "all players, configured by the host.\n" @@ -4140,7 +4167,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:124 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 msgid "Early Memory Updates" msgstr "" @@ -4159,7 +4186,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:425 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit Conditional" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +msgid "Edit conditional expression" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 msgid "Edit..." msgstr "" @@ -4179,7 +4215,7 @@ msgstr "效果" msgid "Effective" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" msgstr "" @@ -4201,11 +4237,11 @@ msgstr "" msgid "Embedded Frame Buffer (EFB)" msgstr "" -#: Source/Core/Core/State.cpp:648 +#: Source/Core/Core/State.cpp:650 msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:242 +#: Source/Core/Core/Core.cpp:247 msgid "Emu Thread already running" msgstr "模擬器線程已經執行中" @@ -4231,7 +4267,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "Emulated USB Devices" msgstr "" @@ -4253,34 +4289,24 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 -msgid "Enable Achievement Badges" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64 -msgid "Enable Achievements" -msgstr "" - -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:150 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 msgid "Enable Cheats" msgstr "開啟作弊" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:56 msgid "Enable Controller Inpu&t" msgstr "" @@ -4288,15 +4314,19 @@ msgstr "" msgid "Enable Custom RTC" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:159 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167 msgid "Enable Debugging UI" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 +msgid "Enable Discord Presence" +msgstr "" + #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "開啟雙核心" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 msgid "Enable Dual Core (speedup)" msgstr "開啟雙核心 (加速)" @@ -4308,7 +4338,7 @@ msgstr "" msgid "Enable Emulated Memory Size Override" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:106 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:86 msgid "Enable Encore Achievements" msgstr "" @@ -4316,15 +4346,15 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Enable Graphics Mods" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:84 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" "Enable Hardcore Mode on RetroAchievements.

Hardcore Mode is intended " "to provide an experience as close to gaming on the original hardware as " @@ -4342,41 +4372,33 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:924 +#: Source/Core/DolphinQt/MenuBar.cpp:918 msgid "Enable JIT Block Profiling" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 -msgid "Enable Leaderboards" -msgstr "" - #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 msgid "Enable MMU" msgstr "開啟 MMU" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:96 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Enable Progressive Scan" msgstr "開啟逐行掃瞄" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:49 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:51 msgid "Enable RetroAchievements.org Integration" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:70 -msgid "Enable Rich Presence" -msgstr "" - #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Enable Screen Saver" msgstr "" @@ -4384,19 +4406,23 @@ msgstr "" msgid "Enable Speaker Data" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:76 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 +msgid "Enable Spectator Mode" +msgstr "" + +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:238 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 msgid "Enable Wireframe" msgstr "開啟線框" @@ -4404,34 +4430,13 @@ msgstr "開啟線框" msgid "Enable Write-Back Cache (slow)" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 -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:68 -msgid "" -"Enable competing in RetroAchievements leaderboards.

Hardcore Mode " -"must be enabled to use." -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72 -msgid "" -"Enable detailed rich presence on the RetroAchievements website.

This " -"provides a detailed description of what the player is doing in game to the " -"website. If this is disabled, the website will only report what game is " -"being played.

This has no bearing on Discord rich presence." -msgstr "" - #: 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:51 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" "Enable integration with RetroAchievements for earning achievements and " "competing in leaderboards.

Must log in with a RetroAchievements " @@ -4439,34 +4444,41 @@ msgid "" "token to maintain login." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:105 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:108 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88 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." +"speedrun criteria or simply for fun.

Setting takes effect on next " +"game load." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:65 -msgid "Enable unlocking achievements.
" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 +msgid "" +"Enable unlocking achievements in Spectator Mode.

While in Spectator " +"Mode, achievements and leaderboards will be processed and displayed on " +"screen, but will not be submitted to the server.

If this is on at " +"game launch, it will not be turned off until game close, because a " +"RetroAchievements session will not be created.

If this is off at game " +"launch, it can be toggled freely while the game is running." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" "Enable unlocking unofficial achievements as well as official achievements." "

Unofficial achievements may be optional or unfinished achievements " "that have not been deemed official by RetroAchievements and may be useful " -"for testing or simply for fun." +"for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4497,7 +4509,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4505,7 +4517,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4522,7 +4534,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4548,7 +4560,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4556,7 +4568,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4564,7 +4576,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4583,13 +4595,17 @@ msgid "" "Aborting import." msgstr "" +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +msgid "End Addr" +msgstr "" + #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "English" msgstr "English" @@ -4606,7 +4622,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 msgid "Enter address to watch:" msgstr "" @@ -4630,33 +4646,33 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1359 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 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:262 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46 #: 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/Mapping/MappingWindow.cpp:253 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:294 #: 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/AssembleInstructionDialog.cpp:105 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:650 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:665 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:989 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1003 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:968 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:982 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:639 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:645 @@ -4669,52 +4685,52 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: 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:239 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:305 -#: Source/Core/DolphinQt/MainWindow.cpp:313 -#: Source/Core/DolphinQt/MainWindow.cpp:1128 -#: Source/Core/DolphinQt/MainWindow.cpp:1537 -#: Source/Core/DolphinQt/MainWindow.cpp:1544 -#: Source/Core/DolphinQt/MainWindow.cpp:1604 -#: Source/Core/DolphinQt/MainWindow.cpp:1611 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1260 -#: Source/Core/DolphinQt/MenuBar.cpp:1343 -#: Source/Core/DolphinQt/MenuBar.cpp:1366 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 -#: Source/Core/DolphinQt/MenuBar.cpp:1655 -#: Source/Core/DolphinQt/MenuBar.cpp:1667 -#: Source/Core/DolphinQt/MenuBar.cpp:1679 -#: Source/Core/DolphinQt/MenuBar.cpp:1701 -#: Source/Core/DolphinQt/MenuBar.cpp:1727 -#: Source/Core/DolphinQt/MenuBar.cpp:1779 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1541 +#: Source/Core/DolphinQt/MainWindow.cpp:1548 +#: Source/Core/DolphinQt/MainWindow.cpp:1608 +#: Source/Core/DolphinQt/MainWindow.cpp:1615 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1347 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1659 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 +#: Source/Core/DolphinQt/MenuBar.cpp:1783 #: 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:1105 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1115 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 #: Source/Core/DolphinQt/ResourcePackManager.cpp:204 #: Source/Core/DolphinQt/ResourcePackManager.cpp:225 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "錯誤" @@ -4731,7 +4747,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:264 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4745,7 +4761,7 @@ msgstr "讀取選擇的語系出錯。返回使用系統預設值。" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:306 +#: Source/Core/DolphinQt/MainWindow.cpp:307 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4836,12 +4852,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Exclusive Ubershaders" msgstr "" @@ -4885,11 +4901,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:326 msgid "Export All Wii Saves" msgstr "匯出全部 Wii 存檔" @@ -4904,7 +4920,7 @@ msgstr "" msgid "Export Recording" msgstr "匯出錄像" -#: Source/Core/DolphinQt/MenuBar.cpp:792 +#: Source/Core/DolphinQt/MenuBar.cpp:786 msgid "Export Recording..." msgstr "匯出錄像..." @@ -4932,14 +4948,14 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1185 +#: Source/Core/DolphinQt/MenuBar.cpp:1182 #, c-format msgctxt "" msgid "Exported %n save(s)" msgstr "" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:272 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47 msgid "Extension" msgstr "擴充" @@ -4952,7 +4968,7 @@ msgstr "" msgid "Extension Motion Simulation" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:523 msgid "External" msgstr "" @@ -4960,35 +4976,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:300 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 msgid "Extract File..." msgstr "提取檔案..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 msgid "Extracting Directory..." msgstr "" @@ -4997,8 +5013,8 @@ msgstr "" msgid "FD" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:39 -#: Source/Core/DolphinQt/MenuBar.cpp:264 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "FIFO Player" msgstr "" @@ -5012,11 +5028,11 @@ msgid "" "%1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:457 msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1728 +#: Source/Core/DolphinQt/MenuBar.cpp:1732 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5036,7 +5052,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 msgid "Failed to connect to server: %1" msgstr "" @@ -5057,15 +5073,15 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 msgid "Failed to create Infinity file" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:786 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:788 msgid "Failed to create Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:787 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:789 msgid "" "Failed to create Skylander file:\n" "%1\n" @@ -5111,15 +5127,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1260 +#: Source/Core/DolphinQt/MenuBar.cpp:1257 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 msgid "Failed to extract system data." msgstr "" @@ -5138,25 +5154,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1161 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1155 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1168 +#: Source/Core/DolphinQt/MenuBar.cpp:1165 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:1128 +#: Source/Core/DolphinQt/MainWindow.cpp:1132 msgid "Failed to init core" msgstr "" @@ -5176,18 +5192,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1639 +#: Source/Core/DolphinQt/MainWindow.cpp:1643 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1438 +#: Source/Core/DolphinQt/MenuBar.cpp:1385 +#: Source/Core/DolphinQt/MenuBar.cpp:1442 msgid "Failed to load RSO module at %1" msgstr "" @@ -5199,21 +5215,21 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1667 +#: Source/Core/DolphinQt/MenuBar.cpp:1671 msgid "Failed to load map file '%1'" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:830 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:832 msgid "Failed to load the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:831 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:833 msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" -#: Source/Core/Core/Boot/Boot.cpp:585 +#: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." msgstr "" @@ -5227,17 +5243,17 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:215 +#: Source/Core/DolphinQt/MenuBar.cpp:208 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:428 +#: Source/Android/jni/MainAndroid.cpp:433 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1722 -#: Source/Core/DolphinQt/RenderWidget.cpp:124 +#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5245,7 +5261,7 @@ msgstr "" msgid "Failed to open Bluetooth device: {0}" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1004 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" msgstr "" @@ -5275,15 +5291,15 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1638 +#: Source/Core/DolphinQt/MainWindow.cpp:1642 msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:168 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5291,11 +5307,11 @@ msgid "" "The file may already be in use on the base." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:805 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:806 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:808 msgid "" "Failed to open the Skylander file:\n" "%1\n" @@ -5342,23 +5358,23 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:177 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:178 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 msgid "" -"Failed to read the Infinity file(%1):\n" +"Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:816 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" msgstr "" -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:817 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819 msgid "" "Failed to read the Skylander file:\n" "%1\n" @@ -5372,7 +5388,7 @@ msgid "" "%1" msgstr "" -#: Source/Core/Core/Movie.cpp:1015 +#: Source/Core/Core/Movie.cpp:1014 msgid "Failed to read {0}" msgstr "" @@ -5403,31 +5419,31 @@ msgstr "" msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:990 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:969 msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:239 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1656 +#: Source/Core/DolphinQt/MenuBar.cpp:1660 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1701 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1780 +#: Source/Core/DolphinQt/MenuBar.cpp:1784 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:536 +#: Source/Core/Core/Core.cpp:538 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 > " @@ -5478,19 +5494,19 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1126 +#: Source/Core/DolphinQt/MenuBar.cpp:1123 msgid "Failure" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:207 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:218 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 msgid "Fallback Region:" msgstr "" @@ -5503,7 +5519,7 @@ msgstr "快速" msgid "Fast Depth Calculation" msgstr "" -#: Source/Core/Core/Movie.cpp:1299 +#: Source/Core/Core/Movie.cpp:1298 msgid "" "Fatal desync. Aborting playback. (Error in PlayWiimote: {0} != {1}, byte " "{2}.){3}" @@ -5514,7 +5530,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:237 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 msgid "Figure Number:" msgstr "" @@ -5528,7 +5544,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "File Format" msgstr "" @@ -5536,24 +5552,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:82 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 msgid "File Info" msgstr "檔案資訊" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "File Name" msgstr "檔案名稱" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:690 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "File Size" msgstr "檔案大小" @@ -5638,7 +5654,6 @@ 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:167 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:88 msgid "Flags" msgstr "" @@ -5647,12 +5662,12 @@ msgstr "" #. i18n: Floating-point (non-integer) number #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 msgid "Follow &branch" msgstr "" @@ -5672,7 +5687,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 16:9" msgstr "強制 16:9" @@ -5680,7 +5695,7 @@ msgstr "強制 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 msgid "Force 4:3" msgstr "強制 4:3" @@ -5712,11 +5727,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5738,6 +5753,12 @@ msgid "" "unsure, leave this checked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:326 +msgid "" +"Forces the render window to stay on top of other windows and applications." +"

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" msgstr "" @@ -5753,7 +5774,7 @@ msgstr "向前" msgid "Forward port (UPnP)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:466 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:467 msgid "Found %1 results for \"%2\"" msgstr "" @@ -5763,7 +5784,7 @@ msgctxt "" msgid "Found %n address(es)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:154 msgid "Frame %1" msgstr "" @@ -5784,11 +5805,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:107 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 msgid "Frame Range" msgstr "" @@ -5796,7 +5817,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:137 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 msgid "Frames to Record:" msgstr "" @@ -5816,7 +5837,7 @@ msgstr "" msgid "Free Look Control Type" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 msgid "Free Look Controller %1" msgstr "" @@ -5847,7 +5868,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "French" msgstr "French" @@ -5866,8 +5887,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 msgid "From:" msgstr "" @@ -5875,10 +5896,14 @@ msgstr "" msgid "FullScr" msgstr "全螢幕" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 msgid "Function" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +msgid "Function Settings" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" msgstr "" @@ -5919,11 +5944,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 msgid "GBA%1 ROM disabled" msgstr "" @@ -5965,7 +5990,7 @@ msgstr "" msgid "GPU Texture Decoding" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:233 msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -5975,25 +6000,25 @@ msgstr "" msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:250 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:251 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:275 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:276 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:259 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:260 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:241 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:242 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" @@ -6005,7 +6030,7 @@ msgid "" "GPU: Does your video card support OpenGL 3?" msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:468 msgid "" "GPU: OGL ERROR: Need at least GLSL 1.30\n" "GPU: Does your video card support OpenGL 3.0?\n" @@ -6023,22 +6048,22 @@ msgstr "" msgid "Game" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:833 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:399 msgid "Game Boy Advance at Port %1" msgstr "" @@ -6067,7 +6092,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "Game ID" msgstr "遊戲 ID" @@ -6076,25 +6101,25 @@ msgstr "遊戲 ID" msgid "Game ID:" msgstr "遊戲 ID :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 msgid "Game changed to \"%1\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644 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" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Game has a different disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Game has a different revision" msgstr "" @@ -6107,7 +6132,7 @@ msgid "" "Game overwrote with another games save. Data corruption ahead {0:#x}, {1:#x}" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Game region does not match" msgstr "" @@ -6127,11 +6152,11 @@ msgstr "" msgid "GameCube Adapter for Wii U at Port %1" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413 msgid "GameCube Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:412 msgid "GameCube Controller at Port %1" msgstr "" @@ -6139,11 +6164,11 @@ msgstr "" msgid "GameCube Controllers" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405 msgid "GameCube Keyboard" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:404 msgid "GameCube Keyboard at Port %1" msgstr "" @@ -6160,7 +6185,7 @@ msgstr "" msgid "GameCube Memory Cards (*.raw *.gcp)" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:417 msgid "GameCube Microphone Slot %1" msgstr "" @@ -6188,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:141 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 代碼" @@ -6198,35 +6223,35 @@ msgstr "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:445 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:443 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:465 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37 msgid "General" msgstr "一般" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428 msgid "General and Options" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:504 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:240 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:586 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1341 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "German" msgstr "German" @@ -6253,7 +6278,7 @@ msgstr "" msgid "Giants" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197 msgid "Golf Mode" msgstr "" @@ -6262,7 +6287,7 @@ msgid "Good dump" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 #: Source/Core/DolphinQt/ToolBar.cpp:131 msgid "Graphics" msgstr "影像" @@ -6302,7 +6327,7 @@ msgstr "綠 左" msgid "Green Right" msgstr "綠 右" -#: Source/Core/DolphinQt/MenuBar.cpp:663 +#: Source/Core/DolphinQt/MenuBar.cpp:657 msgid "Grid View" msgstr "" @@ -6339,7 +6364,7 @@ msgstr "" msgid "Hacks" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:165 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 msgid "Head" msgstr "" @@ -6371,7 +6396,7 @@ msgstr "" msgid "Hex Byte String" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 msgid "Hexadecimal" msgstr "" @@ -6380,11 +6405,11 @@ msgstr "" msgid "Hide" msgstr "隱藏" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:294 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:758 +#: Source/Core/DolphinQt/MenuBar.cpp:752 msgid "Hide All" msgstr "" @@ -6396,16 +6421,23 @@ msgstr "" msgid "Hide Incompatible Sessions" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:234 msgid "Hide Remote GBAs" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 +msgid "" +"Hides the Mouse Cursor whenever it is inside the render window and the " +"render window is focused.

If unsure, select "" +"On Movement"." +msgstr "" + #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 msgid "Highest" msgstr "" @@ -6428,7 +6460,7 @@ msgstr "主機" msgid "Host Code:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191 msgid "Host Input Authority" msgstr "" @@ -6436,7 +6468,7 @@ msgstr "" msgid "Host Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 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" @@ -6444,11 +6476,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 msgid "Host input authority enabled" msgstr "" @@ -6460,7 +6492,7 @@ msgstr "" msgid "Hostname" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 msgid "Hotkey Settings" msgstr "" @@ -6470,11 +6502,11 @@ msgstr "" msgid "Hotkeys" msgstr "快捷鍵" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:160 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169 msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Hybrid Ubershaders" msgstr "" @@ -6527,12 +6559,12 @@ msgstr "" msgid "IPL Settings" msgstr "IPL 設定" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:50 msgid "IR" msgstr "IR" #. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:363 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362 msgid "IR Sensitivity:" msgstr "IR 靈敏度:" @@ -6558,14 +6590,14 @@ msgstr "" msgid "Icon" msgstr "圖示" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:199 msgid "" "Identical to Host Input Authority, except the \"Host\" (who has zero " "latency) can be switched at any time.\n" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 msgid "Identity Generation" msgstr "" @@ -6582,7 +6614,7 @@ msgid "" "This authorization can be revoked at any time through Dolphin's settings." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:168 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 " @@ -6596,14 +6628,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:202 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 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." @@ -6615,7 +6647,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" msgstr "" @@ -6647,7 +6679,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6656,7 +6688,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:304 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6671,21 +6703,30 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:330 +#: Source/Core/DolphinQt/MenuBar.cpp:324 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1820 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1826 +#: Source/Core/DolphinQt/MainWindow.cpp:1830 #, c-format msgid "" "Importing NAND backup\n" " Time elapsed: %1s" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:349 +msgid "" +"In the event of an error, Dolphin will halt to inform you of the error and " +"present choices on how to proceed. With this option disabled, Dolphin will " +"\"ignore\" all errors. Emulation will not be halted and you will not be " +"notified.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" msgstr "" @@ -6763,7 +6804,7 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:192 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 msgid "Infinity Figure Creator" msgstr "" @@ -6772,7 +6813,7 @@ msgstr "" msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6792,12 +6833,12 @@ msgstr "訊息" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1336 -#: Source/Core/DolphinQt/MenuBar.cpp:1579 +#: Source/Core/DolphinQt/MenuBar.cpp:1340 +#: Source/Core/DolphinQt/MenuBar.cpp:1583 msgid "Information" msgstr "訊息" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:161 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171 msgid "Inhibit Screensaver During Emulation" msgstr "" @@ -6806,11 +6847,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1359 -#: Source/Core/DolphinQt/MenuBar.cpp:1419 -#: Source/Core/DolphinQt/MenuBar.cpp:1686 -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "Input" msgstr "輸入" @@ -6824,23 +6865,19 @@ msgstr "" msgid "Input strength to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:827 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:847 -msgid "Insert &BLR at start" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:814 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 msgid "Insert SD Card" msgstr "插入 SD 卡" @@ -6853,11 +6890,11 @@ msgstr "" msgid "Install Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:86 +#: Source/Core/DolphinQt/Updater.cpp:87 msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:302 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Install WAD..." msgstr "" @@ -6865,13 +6902,13 @@ msgstr "" msgid "Install to the NAND" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:46 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 msgid "Instr." msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:46 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:19 msgid "Instruction" msgstr "" @@ -6880,7 +6917,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Instruction:" msgstr "" @@ -6889,7 +6926,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:738 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6906,19 +6943,19 @@ msgstr "" msgid "Interface" msgstr "界面" -#: Source/Core/Core/State.cpp:684 +#: Source/Core/Core/State.cpp:686 msgid "Internal LZ4 Error - Tried decompressing {0} bytes" msgstr "" -#: Source/Core/Core/State.cpp:337 +#: Source/Core/Core/State.cpp:339 msgid "Internal LZ4 Error - compression failed" msgstr "" -#: Source/Core/Core/State.cpp:704 +#: Source/Core/Core/State.cpp:706 msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})" msgstr "" -#: Source/Core/Core/State.cpp:717 +#: Source/Core/Core/State.cpp:719 msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))" msgstr "" @@ -6931,19 +6968,19 @@ msgstr "內部 LZO 錯誤 - 壓縮失敗" msgid "Internal LZO Error - decompression failed" msgstr "" -#: Source/Core/Core/State.cpp:548 +#: Source/Core/Core/State.cpp:550 msgid "" "Internal LZO Error - decompression failed ({0}) ({1}) \n" "Unable to retrieve outdated savestate version info." msgstr "" -#: Source/Core/Core/State.cpp:561 +#: Source/Core/Core/State.cpp:563 msgid "" "Internal LZO Error - failed to parse decompressed version cookie and version " "string length ({0})" msgstr "" -#: Source/Core/Core/State.cpp:578 +#: Source/Core/Core/State.cpp:580 msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" @@ -6958,7 +6995,7 @@ msgstr "" msgid "Internal Resolution:" msgstr "内部解析度:" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:575 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:576 msgid "Internal error while generating AR code." msgstr "" @@ -6966,7 +7003,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:865 +#: Source/Core/DolphinQt/MenuBar.cpp:859 msgid "Interpreter Core" msgstr "" @@ -6982,7 +7019,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:314 +#: Source/Core/DolphinQt/MainWindow.cpp:315 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -6991,11 +7028,11 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1366 +#: Source/Core/DolphinQt/MenuBar.cpp:1370 msgid "Invalid RSO module address: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:348 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:349 msgid "Invalid callstack" msgstr "" @@ -7016,7 +7053,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 msgid "Invalid input provided" msgstr "" @@ -7032,19 +7069,19 @@ msgstr "" msgid "Invalid password provided." msgstr "" -#: Source/Core/Core/Movie.cpp:937 +#: Source/Core/Core/Movie.cpp:938 msgid "Invalid recording file" msgstr "無效的錄像檔" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:393 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:394 msgid "Invalid search parameters (no object selected)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:420 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:421 msgid "Invalid search string (couldn't convert to number)" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:403 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:404 msgid "Invalid search string (only even string lengths supported)" msgstr "" @@ -7052,13 +7089,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Italian" msgstr "Italian" @@ -7071,11 +7108,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:863 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:877 +#: Source/Core/DolphinQt/MenuBar.cpp:871 msgid "JIT Block Linking Off" msgstr "" @@ -7083,47 +7120,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1012 +#: Source/Core/DolphinQt/MenuBar.cpp:1006 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:984 +#: Source/Core/DolphinQt/MenuBar.cpp:978 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:991 +#: Source/Core/DolphinQt/MenuBar.cpp:985 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:969 +#: Source/Core/DolphinQt/MenuBar.cpp:963 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:941 +#: Source/Core/DolphinQt/MenuBar.cpp:935 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:977 +#: Source/Core/DolphinQt/MenuBar.cpp:971 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:955 +#: Source/Core/DolphinQt/MenuBar.cpp:949 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:948 +#: Source/Core/DolphinQt/MenuBar.cpp:942 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:962 +#: Source/Core/DolphinQt/MenuBar.cpp:956 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:929 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:998 +#: Source/Core/DolphinQt/MenuBar.cpp:992 msgid "JIT Paired Off" msgstr "" @@ -7135,31 +7172,31 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1019 +#: Source/Core/DolphinQt/MenuBar.cpp:1013 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1005 +#: Source/Core/DolphinQt/MenuBar.cpp:999 msgid "JIT SystemRegisters Off" msgstr "" -#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:839 -#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1027 +#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 +#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 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." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:417 +#: Source/Android/jni/MainAndroid.cpp:422 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:320 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 msgid "Japanese" msgstr "Japanese" @@ -7176,12 +7213,12 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:187 msgid "Keep Window on Top" msgstr "" @@ -7215,16 +7252,16 @@ msgstr "" msgid "KiB" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295 msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:322 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Korean" msgstr "Korean" @@ -7245,7 +7282,7 @@ msgstr "" msgid "L-Analog" msgstr "L-類比" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:234 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 msgid "LR Save" msgstr "" @@ -7253,7 +7290,11 @@ msgstr "" msgid "Label" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:618 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 +msgid "Language" +msgstr "" + +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" msgstr "" @@ -7267,23 +7308,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 msgid "Latency: ~80 ms" msgstr "" @@ -7291,7 +7332,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 msgid "Leaderboards" msgstr "" @@ -7299,7 +7340,7 @@ msgstr "" #: 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:214 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:215 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21 @@ -7310,7 +7351,7 @@ msgstr "左" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:95 msgid "Left Stick" msgstr "左 搖桿" @@ -7381,11 +7422,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:697 +#: Source/Core/DolphinQt/MenuBar.cpp:691 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:660 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "List View" msgstr "" @@ -7394,30 +7435,30 @@ msgid "Listening" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:110 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Load" msgstr "讀取" -#: Source/Core/DolphinQt/MenuBar.cpp:1044 +#: Source/Core/DolphinQt/MenuBar.cpp:1038 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Load &Other Map File..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:286 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:616 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 msgid "Load Custom Textures" msgstr "" @@ -7425,11 +7466,11 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:280 msgid "Load GameCube Main Menu" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147 msgid "Load Host's Save Data Only" msgstr "" @@ -7535,23 +7576,23 @@ msgstr "讀取儲存格 8" msgid "Load State Slot 9" msgstr "讀取儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:379 +#: Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:380 +#: Source/Core/DolphinQt/MenuBar.cpp:374 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:381 +#: Source/Core/DolphinQt/MenuBar.cpp:375 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1086 +#: Source/Core/DolphinQt/MenuBar.cpp:1083 msgid "Load Wii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152 msgid "Load and Write Host's Save Data" msgstr "" @@ -7559,54 +7600,62 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1598 -#: Source/Core/DolphinQt/MenuBar.cpp:1615 +#: Source/Core/DolphinQt/MenuBar.cpp:1602 +#: Source/Core/DolphinQt/MenuBar.cpp:1619 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1085 +#: Source/Core/DolphinQt/MenuBar.cpp:1082 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:150 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1580 +#: Source/Core/DolphinQt/MenuBar.cpp:1584 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:528 msgid "Local" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:202 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:214 msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:156 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 +msgid "" +"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"set a hotkey to unlock it.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "記錄" @@ -7615,19 +7664,19 @@ msgstr "記錄" msgid "Log Configuration" msgstr "記錄設定" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:59 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Log JIT Instruction Coverage" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" msgstr "" @@ -7639,31 +7688,31 @@ msgstr "記錄類型" msgid "Logger Outputs" msgstr "記錄輸出" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:63 msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 msgid "Lowest" msgstr "" @@ -7675,7 +7724,7 @@ msgstr "" msgid "MMU" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:291 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 msgid "MORIBUND" msgstr "" @@ -7723,7 +7772,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Maker" msgstr "" @@ -7740,16 +7789,16 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:303 +#: Source/Core/DolphinQt/MenuBar.cpp:296 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 msgid "Manual Texture Sampling" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Mapping" msgstr "" @@ -7761,11 +7810,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 msgid "Max buffer size changed to %1" msgstr "" @@ -7774,7 +7823,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7795,7 +7844,7 @@ msgstr "" msgid "Memory Card" msgstr "記憶卡" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:289 msgid "Memory Card Manager" msgstr "" @@ -7823,7 +7872,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1797 +#: Source/Core/DolphinQt/MainWindow.cpp:1801 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7837,7 +7886,7 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:62 #: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:421 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:419 msgid "Microphone" msgstr "" @@ -7846,15 +7895,15 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 msgid "Misc" msgstr "雜項" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 msgid "Misc Settings" msgstr "其它設定" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:482 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" msgstr "" @@ -7866,7 +7915,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1107 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7886,7 +7935,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7902,8 +7951,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1387 -#: Source/Core/DolphinQt/MenuBar.cpp:1538 +#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1542 msgid "Modules found: %1" msgstr "" @@ -7911,7 +7960,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 msgid "Mono" msgstr "" @@ -7923,11 +7972,11 @@ msgstr "" msgid "Monospaced Font" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430 msgid "Motion Input" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429 msgid "Motion Simulation" msgstr "" @@ -7936,23 +7985,10 @@ msgstr "" msgid "Motor" msgstr "馬達" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198 msgid "Mouse Cursor Visibility" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 -msgid "" -"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:195 -msgid "Mouse Cursor will always be visible." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193 -msgid "Mouse Cursor will never be visible while a game is running." -msgstr "" - #: Source/Core/Core/FreeLookManager.cpp:86 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:22 msgid "Move" @@ -7963,13 +7999,13 @@ msgstr "" msgid "Movie" msgstr "" -#: Source/Core/Core/Movie.cpp:978 +#: Source/Core/Core/Movie.cpp:977 msgid "" "Movie {0} indicates that it starts from a savestate, but {1} doesn't exist. " "The movie will likely not sync!" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:581 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." msgstr "" @@ -7982,10 +8018,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1224 -#: Source/Core/DolphinQt/MenuBar.cpp:1242 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:1212 +#: Source/Core/DolphinQt/MenuBar.cpp:1221 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1243 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -7994,8 +8030,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:289 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8004,7 +8040,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-K" msgstr "" @@ -8021,8 +8057,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:291 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8065,7 +8101,7 @@ msgstr "" msgid "Native GCI File" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:100 msgid "NetPlay" msgstr "" @@ -8081,27 +8117,27 @@ msgstr "" msgid "Netherlands" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:154 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." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:149 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 " "session." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:144 msgid "" "Netplay will start without any save data, and any created save data will be " "discarded at the end of the Netplay session." msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183 msgid "Network" msgstr "" @@ -8109,16 +8145,16 @@ msgstr "" msgid "Network dump format:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:191 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:205 msgid "Never" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:84 +#: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8143,7 +8179,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:380 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 msgid "New identity generated." msgstr "" @@ -8160,7 +8196,7 @@ msgstr "" msgid "Next Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 msgid "Next Match" msgstr "" @@ -8206,7 +8242,7 @@ msgstr "" msgid "No Match" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142 msgid "No Save Data" msgstr "" @@ -8214,12 +8250,12 @@ msgstr "" msgid "No data to modify!" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:538 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:555 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:570 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:722 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:725 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:728 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:539 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:556 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:571 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:723 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:726 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:729 msgid "No description available" msgstr "" @@ -8231,7 +8267,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 msgid "No file loaded / recorded." msgstr "" @@ -8239,7 +8275,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 msgid "No game running." msgstr "" @@ -8252,11 +8288,11 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1226 +#: Source/Core/DolphinQt/MenuBar.cpp:1223 msgid "No issues have been detected." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "No matching game was found" msgstr "" @@ -8279,7 +8315,7 @@ msgstr "" msgid "No profiles found for game setting '{0}'" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:139 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:140 msgid "No recording loaded." msgstr "" @@ -8296,10 +8332,10 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:131 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:860 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" msgstr "無" @@ -8311,7 +8347,7 @@ msgstr "" msgid "Not Set" msgstr "未設定" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:473 msgid "Not all players have the game. Do you really want to start?" msgstr "" @@ -8331,7 +8367,7 @@ msgid "" "required." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:653 msgid "Not found" msgstr "" @@ -8375,26 +8411,26 @@ msgstr "" msgid "Nunchuk" msgstr "Nunchuk" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:186 msgid "Nunchuk Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:279 msgid "Nunchuk Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:91 msgid "Nunchuk Stick" msgstr "" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:121 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:173 msgid "Object %1" msgstr "" @@ -8446,7 +8482,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:92 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 msgid "Object Range" msgstr "" @@ -8467,18 +8503,18 @@ msgstr "" msgid "On" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " "job. May affect performance.

%1" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:727 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:732 msgid "" "Once in the reduction phase, it is time to start narrowing down the " "candidates shown in the table. Further reduce the candidates by checking " @@ -8493,7 +8529,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:630 +#: Source/Core/DolphinQt/MenuBar.cpp:624 msgid "Online &Documentation" msgstr "" @@ -8501,13 +8537,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1711 +#: Source/Core/DolphinQt/MenuBar.cpp:1715 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1686 +#: Source/Core/DolphinQt/MenuBar.cpp:1690 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8524,7 +8560,7 @@ msgstr "開啟" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:247 +#: Source/Core/DolphinQt/MenuBar.cpp:240 msgid "Open &User Folder" msgstr "" @@ -8533,7 +8569,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:216 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 msgid "Open FIFO log" msgstr "" @@ -8599,34 +8635,34 @@ msgstr "橘" msgid "Orbital" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:261 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:417 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:416 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:263 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:415 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:356 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431 msgid "Other" @@ -8641,11 +8677,11 @@ msgstr "" msgid "Other State Hotkeys" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457 msgid "Other State Management" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:215 msgid "Other game..." msgstr "" @@ -8661,16 +8697,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:698 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:788 +#: Source/Core/DolphinQt/MenuBar.cpp:782 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:294 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8683,11 +8719,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 msgid "PNG Compression Level:" msgstr "" @@ -8699,7 +8735,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 msgid "PPC vs Host" msgstr "" @@ -8733,7 +8769,7 @@ msgstr "" msgid "Passthrough a Bluetooth adapter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:58 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" msgstr "" @@ -8771,15 +8807,15 @@ msgstr "路徑" msgid "Pause" msgstr "暫停" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:544 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:803 msgid "Pause at End of Movie" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:196 msgid "Pause on Focus Loss" msgstr "" @@ -8795,6 +8831,12 @@ msgid "" "unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:361 +msgid "" +"Pauses the game whenever the render window isn't focused." +"

If unsure, leave this unchecked." +msgstr "" + #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 msgid "Peak angular velocity (measured in turns per second)." @@ -8814,7 +8856,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Perform Online System Update" msgstr "" @@ -8822,15 +8864,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 msgid "Performance Statistics" msgstr "" @@ -8848,11 +8890,11 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1289 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Pick a debug font" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Ping" msgstr "" @@ -8865,7 +8907,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Platform" msgstr "" @@ -8873,7 +8915,7 @@ msgstr "" msgid "Play" msgstr "執行" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:167 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 msgid "Play / Record" msgstr "" @@ -8885,40 +8927,40 @@ msgstr "播放錄像" msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Playback Options" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability Two" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290 msgid "Players" msgstr "玩家" @@ -8935,7 +8977,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8951,7 +8993,7 @@ msgid "Point (Passthrough)" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 msgid "Port %1" msgstr "" @@ -8968,7 +9010,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -8984,24 +9026,32 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +msgid "Power Disc Three" +msgstr "" + +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +msgid "Power Disc Two" +msgstr "" + #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 msgid "Prefetch Custom Textures" msgstr "" -#: Source/Core/Core/Movie.cpp:1196 +#: Source/Core/Core/Movie.cpp:1195 msgid "Premature movie end in PlayController. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1313 +#: Source/Core/Core/Movie.cpp:1312 msgid "Premature movie end in PlayWiimote. {0} + {1} > {2}" msgstr "" -#: Source/Core/Core/Movie.cpp:1287 +#: Source/Core/Core/Movie.cpp:1286 msgid "Premature movie end in PlayWiimote. {0} > {1}" msgstr "" @@ -9024,7 +9074,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9039,7 +9089,7 @@ msgstr "" msgid "Previous Game Profile" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:85 msgid "Previous Match" msgstr "" @@ -9050,7 +9100,7 @@ msgstr "" #. 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. -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:613 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:614 msgid "Primitive %1" msgstr "" @@ -9084,7 +9134,7 @@ msgid "" "the game might not work correctly." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:127 msgid "Profile" msgstr "設定檔" @@ -9093,23 +9143,29 @@ msgstr "設定檔" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:54 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:346 +msgid "" +"Prompts you to confirm that you want to end emulation when you press Stop." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:562 +#: Source/Core/DolphinQt/MenuBar.cpp:556 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:738 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9129,18 +9185,18 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1796 +#: Source/Core/DolphinQt/MainWindow.cpp:1800 msgid "Question" msgstr "問題" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:135 msgid "Quit" msgstr "離開" @@ -9157,19 +9213,19 @@ msgstr "R" msgid "R-Analog" msgstr "R-類比" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1358 msgid "RSO auto-detection" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:285 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:288 msgid "RUNNING" msgstr "" @@ -9190,7 +9246,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:95 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 msgid "Rank %1" msgstr "" @@ -9198,16 +9254,17 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "Read" msgstr "" @@ -9246,8 +9303,8 @@ msgstr "" msgid "Received invalid Wii Remote data from Netplay." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Recent Hits" msgstr "" @@ -9256,23 +9313,23 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 msgid "Record" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:230 msgid "Record Inputs" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:143 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:144 msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:134 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 msgid "Recording..." msgstr "" @@ -9305,7 +9362,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:105 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:100 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89 @@ -9336,7 +9393,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:689 +#: Source/Core/DolphinQt/MenuBar.cpp:683 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9357,7 +9414,11 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:85 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +msgid "Releases (every few months)" +msgstr "" + +#: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" msgstr "" @@ -9365,7 +9426,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: Source/Core/DolphinQt/ResourcePackManager.cpp:41 #: Source/Core/DolphinQt/Settings/PathPane.cpp:142 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:330 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329 msgid "Remove" msgstr "移除" @@ -9393,20 +9454,20 @@ msgid "" "afterwards). Do you want to continue anyway?" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:967 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 msgid "Rename symbol" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Render to Main Window" msgstr "渲染至主視窗" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9420,10 +9481,16 @@ msgstr "" msgid "Request to Join Your Party" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:333 +msgid "" +"Requires the render window to be focused for hotkeys to take effect." +"

If unsure, leave this checked." +msgstr "" + #: 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:930 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 #: qtbase/src/gui/kernel/qplatformtheme.cpp:740 msgid "Reset" @@ -9433,7 +9500,7 @@ msgstr "重置" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:598 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9465,7 +9532,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 msgid "Resolution Type:" msgstr "" @@ -9477,7 +9544,7 @@ msgstr "" msgid "Resource Pack Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:341 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:313 msgid "Restart Required" msgstr "" @@ -9485,11 +9552,11 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:607 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 msgid "Restore instruction" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 msgid "Retry" msgstr "" @@ -9498,7 +9565,7 @@ msgstr "" msgid "Return Speed" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:636 msgid "Revision" msgstr "" @@ -9510,7 +9577,7 @@ msgstr "" #: 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:217 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:218 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22 @@ -9521,7 +9588,7 @@ msgstr "右" #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:99 msgid "Right Stick" msgstr "右 搖桿" @@ -9557,11 +9624,11 @@ msgstr "" msgid "Roll Right" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522 msgid "Room ID" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466 msgid "Rotation" msgstr "" @@ -9579,27 +9646,31 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:738 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:744 msgid "" "Rows in the table can be left-clicked on the origin, destination, and symbol " "columns to view the associated address in Code View. Right-clicking the " "selected row(s) will bring up a context menu.\n" "\n" +"If the origin, destination, or symbol columns are right-clicked, an action " +"copy the relevant address(es) to the clipboard will be available, and an " +"action to set a breakpoint at the relevant address(es) will be available. " +"Note that, for the origin / destination symbol columns, these actions will " +"only be enabled if every row in the selection has a symbol.\n" +"\n" "If the origin column of a row selection is right-clicked, an action to " "replace the branch instruction at the origin(s) with a NOP instruction (No " -"Operation), and an action to copy the address(es) to the clipboard will be " -"available.\n" +"Operation) will be available.\n" "\n" "If the destination column of a row selection is right-clicked, an action to " "replace the instruction at the destination(s) with a BLR instruction (Branch " -"to Link Register) will be available, but only if the branch instruction at " -"every origin saves the link register, and an action to copy the address(es) " -"to the clipboard will be available.\n" +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" "\n" "If the origin / destination symbol column of a row selection is right-" -"clicked, an action to replace the instruction(s) at the start of the symbol " -"with a BLR instruction will be available, but only if every origin / " -"destination symbol is found.\n" +"clicked, an action to replace the instruction at the start of the symbol(s) " +"with a BLR instruction will be available, but will only be enabled if every " +"row in the selection has a symbol.\n" "\n" "All context menus have the action to delete the selected row(s) from the " "candidates." @@ -9612,7 +9683,7 @@ msgstr "" msgid "Rumble" msgstr "震動" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 msgid "Run &To Here" msgstr "" @@ -9620,15 +9691,15 @@ msgstr "" msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:678 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 msgid "Run until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:632 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 msgid "Run until (ignoring breakpoints)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" msgstr "" @@ -9636,23 +9707,23 @@ msgstr "" msgid "Russia" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:224 msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 msgid "SD Card Settings" msgstr "" @@ -9660,7 +9731,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 msgid "SD Sync Folder:" msgstr "" @@ -9695,11 +9766,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:394 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Sa&ve State" msgstr "儲存進度(&V)" @@ -9709,9 +9780,9 @@ msgid "Safe" msgstr "安全" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9721,25 +9792,25 @@ msgstr "儲存" msgid "Save All" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:284 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:599 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1184 +#: Source/Core/DolphinQt/MenuBar.cpp:1181 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:227 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 msgid "Save FIFO log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 msgid "Save File to" msgstr "" @@ -9753,11 +9824,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1139 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1154 -#: Source/Core/DolphinQt/MenuBar.cpp:1160 -#: Source/Core/DolphinQt/MenuBar.cpp:1167 +#: Source/Core/DolphinQt/MenuBar.cpp:1157 +#: Source/Core/DolphinQt/MenuBar.cpp:1164 msgid "Save Import" msgstr "" @@ -9769,7 +9840,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1933 +#: Source/Core/DolphinQt/MainWindow.cpp:1939 msgid "Save Recording File As" msgstr "" @@ -9819,23 +9890,23 @@ msgstr "儲存至儲存格 8" msgid "Save State Slot 9" msgstr "儲存至儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:395 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:397 +#: Source/Core/DolphinQt/MenuBar.cpp:391 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:396 +#: Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:398 +#: Source/Core/DolphinQt/MenuBar.cpp:392 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Save Symbol Map &As..." msgstr "" @@ -9843,7 +9914,7 @@ msgstr "" msgid "Save Texture Cache to State" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456 msgid "Save and Load State" msgstr "" @@ -9855,11 +9926,11 @@ msgstr "" msgid "Save as..." msgstr "另存為..." -#: Source/Core/DolphinQt/MenuBar.cpp:1767 +#: Source/Core/DolphinQt/MenuBar.cpp:1771 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1140 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9870,11 +9941,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1633 +#: Source/Core/DolphinQt/MenuBar.cpp:1637 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1689 +#: Source/Core/DolphinQt/MenuBar.cpp:1693 msgid "Save signature file" msgstr "" @@ -9882,11 +9953,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:436 +#: Source/Core/DolphinQt/MenuBar.cpp:430 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Save..." msgstr "" @@ -9898,7 +9969,7 @@ msgstr "" msgid "Saves:" msgstr "" -#: Source/Core/Core/Movie.cpp:1024 +#: Source/Core/Core/Movie.cpp:1023 msgid "Savestate movie {0} is corrupted, movie recording stopping..." msgstr "" @@ -9915,8 +9986,8 @@ msgid "ScrShot" msgstr "截圖" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:82 -#: Source/Core/DolphinQt/MenuBar.cpp:570 Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 +#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 msgid "Search" msgstr "" @@ -9925,7 +9996,7 @@ msgstr "" msgid "Search Address" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:80 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:81 msgid "Search Current Object" msgstr "" @@ -9943,7 +10014,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:920 +#: Source/Core/DolphinQt/MenuBar.cpp:914 msgid "Search for an Instruction" msgstr "" @@ -9951,7 +10022,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1808 +#: Source/Core/DolphinQt/MenuBar.cpp:1812 msgid "Search instruction" msgstr "" @@ -9985,7 +10056,7 @@ msgstr "選擇" #. i18n: If the user selects a file, Branch Watch will save to that file. #. If the user presses Cancel, Branch Watch will save to a file in the user folder. -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:762 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" @@ -9996,23 +10067,23 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1178 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:139 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:679 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:827 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:708 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 msgid "Select GBA Saves Path" msgstr "" @@ -10040,7 +10111,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:431 msgid "Select Slot %1 - %2" msgstr "" @@ -10048,7 +10119,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:411 +#: Source/Core/DolphinQt/MenuBar.cpp:405 msgid "Select State Slot" msgstr "選擇儲存格" @@ -10109,13 +10180,13 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:771 -#: Source/Core/DolphinQt/MainWindow.cpp:1408 -#: Source/Core/DolphinQt/MainWindow.cpp:1420 +#: Source/Core/DolphinQt/MainWindow.cpp:775 +#: Source/Core/DolphinQt/MainWindow.cpp:1412 +#: Source/Core/DolphinQt/MainWindow.cpp:1424 msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10123,7 +10194,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 msgid "Select a SD Card Image" msgstr "" @@ -10135,7 +10206,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1110 msgid "Select a title to install to NAND" msgstr "" @@ -10143,11 +10214,11 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1419 +#: Source/Core/DolphinQt/MenuBar.cpp:1423 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1855 +#: Source/Core/DolphinQt/MainWindow.cpp:1859 msgid "Select the Recording File to Play" msgstr "" @@ -10155,12 +10226,12 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1832 +#: Source/Core/DolphinQt/MainWindow.cpp:1836 msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1806 -#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MainWindow.cpp:1810 +#: Source/Core/DolphinQt/MenuBar.cpp:1130 msgid "Select the save file" msgstr "選擇存檔" @@ -10183,16 +10254,16 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1341 #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 msgid "Selected game doesn't exist in game list!" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:229 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:232 msgid "Selected thread callstack" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:207 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:210 msgid "Selected thread context" msgstr "" @@ -10208,7 +10279,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10238,7 +10309,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10260,7 +10331,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10270,11 +10341,11 @@ msgid "" "

If unsure, select OpenGL." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "傳送" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 msgid "Sensor Bar Position:" msgstr "傳感器位置:" @@ -10302,6 +10373,10 @@ msgstr "" msgid "Set &Value" msgstr "" +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 +msgid "Set Brea&kpoint" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" @@ -10319,52 +10394,67 @@ msgstr "" msgid "Set memory card file for Slot B" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 msgid "Set symbol &end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 msgid "Set symbol &size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 msgid "Set symbol end address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 msgid "Sets the Wii system language." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 +msgid "" +"Sets the language displayed by Dolphin's User Interface.

Changes to " +"this setting only take effect once Dolphin is restarted." +"

If unsure, select <System Language>." +msgstr "" + +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 +msgid "" +"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " +"have loaded will be presented here, allowing you to switch to them." +"

If unsure, select (System)." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" "Sets up the search using standard MEM1 and (on Wii) MEM2 mappings in virtual " "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:53 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" msgstr "" -#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:440 +#: Source/Core/Core/Boot/Boot_BS2Emu.cpp:439 msgid "SetupWiiMemory: Can't create setting.txt file" msgstr "" @@ -10372,7 +10462,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 msgid "Shader Compilation" msgstr "" @@ -10394,32 +10484,32 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:438 msgid "Show &Log" msgstr "顯示日誌視窗(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:457 +#: Source/Core/DolphinQt/MenuBar.cpp:451 msgid "Show &Toolbar" msgstr "顯示工具列(&T)" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194 msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:757 +#: Source/Core/DolphinQt/MenuBar.cpp:751 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:160 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 msgid "Show Current Game on Discord" msgstr "" @@ -10428,7 +10518,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:719 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show ELF/DOL" msgstr "" @@ -10437,31 +10527,31 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 msgid "Show FPS" msgstr "顯示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:821 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show France" msgstr "顯示 France" -#: Source/Core/DolphinQt/MenuBar.cpp:717 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show GameCube" msgstr "顯示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Germany" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:232 msgid "Show Golf Mode Overlay" msgstr "" @@ -10469,23 +10559,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:833 +#: Source/Core/DolphinQt/MenuBar.cpp:827 msgid "Show Input Display" msgstr "輸入顯示" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Italy" msgstr "顯示 Italy" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Korea" msgstr "顯示 Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:815 msgid "Show Lag Counter" msgstr "" @@ -10493,27 +10583,27 @@ msgstr "" msgid "Show Language:" msgstr "顯示語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:450 +#: Source/Core/DolphinQt/MenuBar.cpp:444 msgid "Show Log &Configuration" msgstr "日誌記錄設定(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Netherlands" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:180 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:192 msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show PAL" msgstr "顯示 PAL" @@ -10522,27 +10612,27 @@ msgstr "顯示 PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:722 +#: Source/Core/DolphinQt/MenuBar.cpp:716 msgid "Show Platforms" msgstr "顯示平台" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:756 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Show Regions" msgstr "顯示區域" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:809 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Russia" msgstr "" @@ -10550,72 +10640,72 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:840 +#: Source/Core/DolphinQt/MenuBar.cpp:834 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Taiwan" msgstr "顯示 Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show USA" msgstr "顯示 USA" -#: Source/Core/DolphinQt/MenuBar.cpp:754 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:718 +#: Source/Core/DolphinQt/MenuBar.cpp:712 msgid "Show WAD" msgstr "顯示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show Wii" msgstr "顯示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:753 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 msgid "Show in &memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:400 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:417 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 msgid "Show in Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:889 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:893 msgid "Show in code" msgstr "" -#: Source/Core/DolphinQt/CheatSearchWidget.cpp:499 +#: Source/Core/DolphinQt/CheatSearchWidget.cpp:500 msgid "Show in memory" msgstr "" @@ -10623,71 +10713,104 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:583 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 msgid "Show target in memor&y" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 +msgid "" +"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"game's code and memory contents, set debugging breakpoints, examine network " +"requests, and more.

If unsure, leave this unchecked." +"" +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:354 +msgid "" +"Shows on-screen display messages over the render window. These messages " +"disappear after several seconds.

If unsure, leave " +"this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the Mouse Cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 +msgid "" +"Shows the active game title in the render window's title bar." +"

If unsure, leave this checked." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10709,7 +10832,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1029 msgid "Signature Database" msgstr "" @@ -10728,12 +10851,12 @@ msgstr "" msgid "Signed 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Simplified Chinese" msgstr "Simplified Chinese" @@ -10750,7 +10873,7 @@ msgstr "" msgid "Size" msgstr "大小" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10760,7 +10883,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Skip Drawing" msgstr "" @@ -10804,6 +10927,9 @@ msgid "Skylander %1" msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 +msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" msgstr "" @@ -10874,7 +11000,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 msgid "Sound:" msgstr "" @@ -10888,7 +11014,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "Spanish" msgstr "Spanish" @@ -10896,19 +11022,19 @@ msgstr "Spanish" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 msgid "Speaker Volume:" msgstr "揚聲器音量:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 msgid "Specialized (Default)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:192 msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -10933,11 +11059,11 @@ msgstr "" msgid "Spyro's Adventure" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack end" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:190 msgid "Stack start" msgstr "" @@ -10945,25 +11071,25 @@ msgstr "" msgid "Standard Controller" msgstr "標準控制器" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:132 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:66 msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:273 +#: Source/Core/DolphinQt/MenuBar.cpp:266 msgid "Start &NetPlay..." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:325 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:553 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:161 +#: Source/Core/DolphinQt/CheatsManager.cpp:162 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Start Re&cording Input" msgstr "" @@ -10971,7 +11097,7 @@ msgstr "" msgid "Start Recording" msgstr "開始錄製" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 msgid "Start in Fullscreen" msgstr "" @@ -10983,14 +11109,14 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 msgid "Started game" msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:73 -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:183 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:74 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:186 msgid "State" msgstr "" @@ -11022,19 +11148,19 @@ msgstr "" msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 msgid "Step successful!" msgstr "" @@ -11043,7 +11169,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" msgstr "" @@ -11072,16 +11198,16 @@ msgid "Stick" msgstr "搖桿" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:789 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Stop Playing/Recording Input" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:410 msgid "Stopped game" msgstr "" @@ -11113,11 +11239,11 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Stretch to Window" msgstr "拉伸至視窗" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176 msgid "Strict Settings Sync" msgstr "" @@ -11131,7 +11257,11 @@ msgstr "" msgid "Strum" msgstr "Strum" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 +msgid "Style" +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" msgstr "" @@ -11142,18 +11272,18 @@ msgstr "" msgid "Stylus" msgstr "" -#: 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/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:223 Source/Core/DolphinQt/MenuBar.cpp:1121 -#: Source/Core/DolphinQt/MenuBar.cpp:1255 +#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Success" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456 msgid "Successfully added to the NetPlay index" msgstr "" @@ -11163,7 +11293,7 @@ msgctxt "" msgid "Successfully converted %n image(s)." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283 msgid "Successfully deleted '%1'." msgstr "" @@ -11176,24 +11306,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1256 +#: Source/Core/DolphinQt/MenuBar.cpp:1253 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1151 +#: Source/Core/DolphinQt/MenuBar.cpp:1148 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1122 +#: Source/Core/DolphinQt/MenuBar.cpp:1119 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11216,16 +11346,16 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 msgid "Surround" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 msgid "Suspended" msgstr "" @@ -11269,17 +11399,17 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 msgid "Symbol (%1) end address:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:933 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 msgid "Symbol name:" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "Symbols" msgstr "" @@ -11287,7 +11417,7 @@ msgstr "" msgid "Sync" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174 msgid "Sync AR/Gecko Codes" msgstr "" @@ -11305,7 +11435,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11324,24 +11454,24 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 msgid "System Language:" msgstr "系統語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:805 +#: Source/Core/DolphinQt/MenuBar.cpp:799 msgid "TAS Input" msgstr "" #. 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:448 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:694 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "Tags" msgstr "" @@ -11351,7 +11481,7 @@ msgstr "" msgid "Taiko Drum" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:168 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:171 msgid "Tail" msgstr "" @@ -11359,7 +11489,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:363 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 msgid "Take Screenshot" msgstr "截取畫面" @@ -11367,7 +11497,7 @@ msgstr "截取畫面" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11383,9 +11513,9 @@ msgstr "" msgid "Test" msgstr "測試" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:601 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:618 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:764 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:600 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" msgstr "" @@ -11398,7 +11528,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 msgid "Texture Dumping" msgstr "" @@ -11410,7 +11540,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 msgid "Texture Format Overlay" msgstr "" @@ -11447,13 +11577,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1244 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1242 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "The NAND has been repaired." msgstr "" @@ -11468,7 +11598,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11515,7 +11645,7 @@ msgid "" "Please select another destination path for \"%1\"" msgstr "" -#: Source/Core/Core/Movie.cpp:362 +#: Source/Core/Core/Movie.cpp:363 msgid "" "The disc change to \"{0}\" could not be saved in the .dtm file.\n" "The filename of the disc image must not be longer than 40 characters." @@ -11525,7 +11655,7 @@ msgstr "" msgid "The disc could not be read (at {0:#x} - {1:#x})." msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:439 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:436 msgid "The disc that was about to be inserted couldn't be found." msgstr "" @@ -11604,7 +11734,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 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 " @@ -11644,7 +11774,7 @@ msgid "" "disc." msgstr "" -#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715 +#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:716 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 " @@ -11703,12 +11833,12 @@ msgstr "" msgid "The patches in %1 are not for the selected game or game revision." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:254 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295 msgid "The profile '%1' does not exist" msgstr "" -#: Source/Core/Core/Movie.cpp:219 +#: Source/Core/Core/Movie.cpp:220 msgid "The recorded game ({0}) is not the same as the selected game ({1})" msgstr "" @@ -11728,7 +11858,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11762,7 +11892,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1205 +#: Source/Core/DolphinQt/MenuBar.cpp:1202 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)." @@ -11820,7 +11950,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1197 +#: Source/Core/DolphinQt/MenuBar.cpp:1194 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)." @@ -11842,6 +11972,10 @@ msgstr "" msgid "The {0} partition is not properly aligned." msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 +msgid "Theme" +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." msgstr "" @@ -11853,8 +11987,8 @@ msgid "" "Do you want to save before closing?" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:583 -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:594 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" msgstr "" @@ -11902,11 +12036,11 @@ msgstr "" msgid "This USB device is already whitelisted." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:288 +#: Source/Core/Core/ConfigManager.cpp:285 msgid "This WAD is not bootable." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:283 +#: Source/Core/Core/ConfigManager.cpp:280 msgid "This WAD is not valid." msgstr "" @@ -11922,7 +12056,7 @@ msgid "" "Please run the ARM64 build of Dolphin for a better experience." msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 #: Source/Core/DolphinQt/GameList/GameList.cpp:835 msgid "This cannot be undone!" msgstr "" @@ -12021,7 +12155,7 @@ msgstr "" msgid "This is a good dump." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." msgstr "" @@ -12041,7 +12175,7 @@ msgstr "" msgid "This software should not be used to play games you do not legally own." msgstr "" -#: Source/Core/Core/ConfigManager.cpp:306 +#: Source/Core/Core/ConfigManager.cpp:303 msgid "This title cannot be booted." msgstr "" @@ -12081,7 +12215,7 @@ msgid "" "This value is multiplied with the depth set in the graphics configuration." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:449 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:454 msgid "" "This will also filter unconditional branches.\n" "To filter for or against unconditional branches,\n" @@ -12094,7 +12228,7 @@ msgid "" "save sync." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:178 msgid "" "This will sync additional graphics settings, and force everyone to the same " "internal resolution.\n" @@ -12102,11 +12236,11 @@ msgid "" "uses the same video backend." msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:144 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:147 msgid "Thread context" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:25 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:26 msgid "Threads" msgstr "" @@ -12129,14 +12263,14 @@ msgstr "傾斜" msgid "Time period of stable input to trigger calibration. (zero to disable)" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294 msgid "Timed Out" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Title" msgstr "標題" @@ -12145,12 +12279,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:98 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:113 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:360 +#: Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Toggle &Fullscreen" msgstr "" @@ -12175,7 +12309,7 @@ msgid "Toggle Aspect Ratio" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:76 -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:898 +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" @@ -12231,7 +12365,7 @@ msgstr "" msgid "Tokenizing failed." msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:350 msgid "Tool Controls" msgstr "" @@ -12239,7 +12373,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 msgid "Top" msgstr "上方" @@ -12247,8 +12381,8 @@ msgstr "上方" msgid "Top-and-Bottom" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:262 -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:49 msgid "Total Hits" msgstr "" @@ -12290,7 +12424,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Traditional Chinese" msgstr "Traditional Chinese" @@ -12310,8 +12444,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 msgid "Traversal Error" msgstr "" @@ -12338,7 +12472,7 @@ msgstr "" #: 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:212 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213 msgid "Triggers" msgstr "扳機" @@ -12348,7 +12482,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12362,7 +12496,7 @@ msgstr "" msgid "Typical GameCube/Wii Address Space" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:294 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:297 msgid "UNKNOWN" msgstr "" @@ -12374,7 +12508,7 @@ msgstr "USA" msgid "USB Device Emulation" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453 msgid "USB Emulation" msgstr "" @@ -12392,14 +12526,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12407,7 +12541,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12416,7 +12550,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1417 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12479,11 +12613,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:382 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 msgid "Undo Load State" msgstr "取消讀取進度" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:399 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 msgid "Undo Save State" msgstr "取消儲存進度" @@ -12501,28 +12635,28 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "United States" msgstr "" -#: Source/Core/Core/State.cpp:652 Source/Core/DiscIO/Enums.cpp:63 +#: Source/Core/Core/State.cpp:654 Source/Core/DiscIO/Enums.cpp:63 #: Source/Core/DiscIO/Enums.cpp:107 Source/Core/DiscIO/Enums.cpp:133 #: 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:759 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:760 msgid "Unknown" msgstr "未知" #. i18n: "Var" is short for "variant" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:57 -#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:855 +#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:857 msgid "Unknown (Id:%1 Var:%2)" msgstr "" -#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1177 +#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1174 msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" @@ -12593,11 +12727,11 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 msgid "Unlimited" msgstr "無限制" @@ -12609,20 +12743,8 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:160 -msgid "Unlocked" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:149 -msgid "Unlocked %1 times this session" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:158 -msgid "Unlocked (Casual)" -msgstr "" - -#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:151 -msgid "Unlocked this session" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +msgid "Unlocked at %1" msgstr "" #: Source/Core/DiscIO/FileBlob.cpp:87 @@ -12649,7 +12771,7 @@ msgstr "" msgid "Unsigned 8" msgstr "" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152 msgid "Unsigned Integer" msgstr "" @@ -12663,8 +12785,8 @@ msgstr "" msgid "Up" msgstr "上" -#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369 +#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 msgid "Update" msgstr "更新" @@ -12672,11 +12794,11 @@ msgstr "更新" msgid "Update Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:77 +#: Source/Core/DolphinQt/Updater.cpp:78 msgid "Update after closing Dolphin" msgstr "" -#: Source/Core/DolphinQt/Updater.cpp:60 +#: Source/Core/DolphinQt/Updater.cpp:61 msgid "Update available" msgstr "" @@ -12719,7 +12841,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12727,15 +12849,15 @@ msgstr "" msgid "Use 8.8.8.8 for normal DNS, else enter your custom one" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166 msgid "Use All Wii Save Data" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:162 msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12743,15 +12865,21 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190 msgid "Use Panic Handlers" msgstr "顯示錯誤提示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:101 +msgid "" +"Use RetroAchievements rich presence in your Discord status.

Show " +"Current Game on Discord must be enabled." +msgstr "" + +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12785,7 +12913,7 @@ msgstr "" msgid "User Config" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:107 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:114 msgid "User Interface" msgstr "" @@ -12800,10 +12928,17 @@ msgid "" "inputs and outputs of the same parent controller." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:54 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Username" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 +msgid "" +"Uses Dolphin's database of properly formatted names in the Game List Title " +"column.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" "Uses a less accurate algorithm to calculate depth values.

Causes " @@ -12812,14 +12947,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13082,8 +13217,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1568 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -13093,7 +13228,7 @@ msgid "" "Adjusting the GCI path here will have no effect." msgstr "" -#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:54 +#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" "Warning: Analog inputs may reset to controller values at random. In some " "cases this can be fixed by adding a deadzone." @@ -13105,28 +13240,28 @@ msgid "" "the loaded file header ({1})" msgstr "" -#: Source/Core/Core/Movie.cpp:1073 +#: Source/Core/Core/Movie.cpp:1072 msgid "" "Warning: You loaded a save that's after the end of the current movie. (byte " "{0} > {1}) (input {2} > {3}). You should load another save before " "continuing, or load this state with read-only mode off." msgstr "" -#: Source/Core/Core/Movie.cpp:1048 +#: Source/Core/Core/Movie.cpp:1047 msgid "" "Warning: You loaded a save whose movie ends before the current frame in the " "save (byte {0} < {1}) (frame {2} < {3}). You should load another save before " "continuing." msgstr "" -#: Source/Core/Core/Movie.cpp:1099 +#: Source/Core/Core/Movie.cpp:1098 msgid "" "Warning: You loaded a save whose movie mismatches on byte {0} ({1:#x}). You " "should load another save before continuing, or load this state with read-" "only mode off. Otherwise you'll probably get a desync." msgstr "" -#: Source/Core/Core/Movie.cpp:1115 +#: Source/Core/Core/Movie.cpp:1114 msgid "" "Warning: You loaded a save whose movie mismatches on frame {0}. You should " "load another save before continuing, or load this state with read-only mode " @@ -13171,7 +13306,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13179,7 +13314,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13187,7 +13322,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13219,25 +13354,25 @@ msgstr "" #: 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:429 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:427 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43 msgid "Wii Remote %1" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:146 msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 msgid "Wii Remote Settings" msgstr "" @@ -13245,19 +13380,19 @@ msgstr "" msgid "Wii Remotes" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:420 msgid "Wii TAS Input %1 - Classic Controller" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:439 msgid "Wii TAS Input %1 - Wii Remote" msgstr "" -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:399 msgid "Wii TAS Input %1 - Wii Remote + Nunchuk" msgstr "" -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:450 msgid "Wii and Wii Remote" msgstr "" @@ -13265,7 +13400,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1131 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13273,13 +13408,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 -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 "" - -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 msgid "Window Resolution" msgstr "" @@ -13288,11 +13417,11 @@ msgstr "" msgid "Window Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:306 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:311 msgid "Wipe &Inspection Data" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:481 msgid "Wipe Recent Hits" msgstr "" @@ -13306,10 +13435,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:931 +#: Source/Core/DolphinQt/MenuBar.cpp:925 msgid "Write JIT Block Log Dump" msgstr "" @@ -13342,39 +13472,39 @@ msgstr "" msgid "Write to Window" msgstr "寫入至視窗" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:647 msgid "Wrong disc number" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643 msgid "Wrong hash" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:651 msgid "Wrong region" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:649 msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:223 +#: Source/Core/DolphinQt/MenuBar.cpp:216 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:434 +#: Source/Android/jni/MainAndroid.cpp:439 msgid "Wrote to \"{0}\"." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:163 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:190 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129 msgid "X" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:565 +#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:566 msgid "XF register " msgstr "" @@ -13383,9 +13513,9 @@ msgid "XLink Kai BBA Destination Address" msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:129 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:169 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:196 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131 msgid "Y" msgstr "" @@ -13413,14 +13543,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 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 " @@ -13497,7 +13627,7 @@ msgstr "" msgid "You must provide a region for your session!" msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:342 +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:314 msgid "You must restart Dolphin in order for the change to take effect." msgstr "You must restart Dolphin in order for the change to take effect." @@ -13517,16 +13647,16 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1214 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" #. i18n: Refers to a 3D axis (used when mapping motion controls) -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174 -#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:175 +#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:202 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133 msgid "Z" msgstr "" @@ -13535,7 +13665,7 @@ msgstr "" msgid "Zero 3 code not supported" msgstr "不支援 Zero 3 代碼" -#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:970 +#: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." msgstr "" @@ -13584,7 +13714,7 @@ msgid "default" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:654 -#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:386 +#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:384 msgid "disconnected" msgstr "" @@ -13592,7 +13722,7 @@ msgstr "" msgid "e-Reader Cards (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188 +#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:191 msgid "errno" msgstr "" @@ -13600,7 +13730,7 @@ msgstr "" msgid "fake-completion" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:325 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:314 msgid "false" msgstr "" @@ -13648,16 +13778,6 @@ msgstr "" msgid "none" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "off" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:188 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:227 -msgid "on" -msgstr "" - #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:81 msgid "or select a device" msgstr "" @@ -13675,7 +13795,7 @@ msgstr "" msgid "this value:" msgstr "" -#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:328 +#: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:317 msgid "true" msgstr "" @@ -13740,7 +13860,7 @@ msgstr "" #. https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features #: Source/Core/DolphinQt/AboutDialog.cpp:92 msgid "" -"© 2003-2015+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " +"© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" From bc67fc97c39628c76a4dbca411b0e8a9bfaf726a Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 26 Jun 2024 20:34:16 +0200 Subject: [PATCH 129/296] Revert "Audit uses of IsRunning and GetState" This reverts commit 72cf2bdb87f09deff22e1085de3290126aa4ad05. SYSCONF settings are getting cleared when they shouldn't be. Let's revert the change until I get proper time to figure out why it's broken. --- .../dolphinemu/dolphinemu/NativeLibrary.java | 10 +--- .../features/settings/model/Settings.kt | 2 +- .../settings/model/view/RunRunnable.kt | 2 +- .../settings/model/view/SettingsItem.kt | 2 +- .../settings/ui/SettingsFragmentPresenter.kt | 4 +- .../dolphinemu/fragments/EmulationFragment.kt | 8 +-- .../dolphinemu/overlay/InputOverlay.kt | 2 +- Source/Android/jni/MainAndroid.cpp | 17 +++--- .../Core/ConfigLoaders/BaseConfigLoader.cpp | 4 +- Source/Core/Core/Core.cpp | 7 +-- Source/Core/Core/Core.h | 5 -- .../AchievementSettingsWidget.cpp | 11 ++-- .../DolphinQt/CheatSearchFactoryWidget.cpp | 3 +- Source/Core/DolphinQt/CheatsManager.cpp | 5 +- .../DolphinQt/Config/CheatWarningWidget.cpp | 5 +- .../Config/Graphics/AdvancedWidget.cpp | 3 +- .../Config/Graphics/GeneralWidget.cpp | 6 +-- .../DolphinQt/Debugger/AssemblerWidget.cpp | 2 +- .../DolphinQt/Debugger/BreakpointWidget.cpp | 2 +- .../DolphinQt/Debugger/CodeViewWidget.cpp | 2 +- .../Core/DolphinQt/Debugger/ThreadWidget.cpp | 2 +- .../Core/DolphinQt/Debugger/WatchWidget.cpp | 5 +- .../Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp | 27 ++++------ Source/Core/DolphinQt/GameList/GameList.cpp | 12 ++--- Source/Core/DolphinQt/HotkeyScheduler.cpp | 2 +- Source/Core/DolphinQt/MainWindow.cpp | 15 +++--- Source/Core/DolphinQt/MenuBar.cpp | 54 ++++++++----------- Source/Core/DolphinQt/MenuBar.h | 2 +- .../Core/DolphinQt/NetPlay/NetPlayDialog.cpp | 2 - .../Core/DolphinQt/Settings/AdvancedPane.cpp | 2 +- Source/Core/DolphinQt/Settings/AudioPane.cpp | 3 +- Source/Core/DolphinQt/Settings/WiiPane.cpp | 3 +- 32 files changed, 100 insertions(+), 131 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java index 1cdd9fa473..43880bd0ba 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java @@ -381,15 +381,9 @@ public final class NativeLibrary */ public static native boolean IsRunning(); - /** - * Returns true if emulation is running and not paused. - */ - public static native boolean IsRunningAndUnpaused(); + public static native boolean IsRunningAndStarted(); - /** - * Returns true if emulation is fully shut down. - */ - public static native boolean IsUninitialized(); + public static native boolean IsRunningAndUnpaused(); /** * Writes out the JitBlock Cache log dump diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt index eedc1405ff..c5c1851e5d 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt @@ -36,7 +36,7 @@ class Settings : Closeable { if (isGameSpecific) { // Loading game INIs while the core is running will mess with the game INIs loaded by the core - check(NativeLibrary.IsUninitialized()) { "Attempted to load game INI while emulating" } + check(!NativeLibrary.IsRunning()) { "Attempted to load game INI while emulating" } NativeConfig.loadGameInis(gameId, revision) } } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt index c52964ff0b..f9d5786e22 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/RunRunnable.kt @@ -20,5 +20,5 @@ class RunRunnable( override val setting: AbstractSetting? = null override val isEditable: Boolean - get() = worksDuringEmulation || NativeLibrary.IsUninitialized() + get() = worksDuringEmulation || !NativeLibrary.IsRunning() } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt index 01c4796e68..3209400ff6 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/view/SettingsItem.kt @@ -54,7 +54,7 @@ abstract class SettingsItem { open val isEditable: Boolean get() { - if (NativeLibrary.IsUninitialized()) return true + if (!NativeLibrary.IsRunning()) return true val setting = setting return setting != null && setting.isRuntimeEditable } diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt index 1573b6408c..6de39ed1e9 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.kt @@ -69,7 +69,7 @@ class SettingsFragmentPresenter( } else if ( menuTag == MenuTag.GRAPHICS && this.gameId.isNullOrEmpty() - && NativeLibrary.IsUninitialized() + && !NativeLibrary.IsRunning() && GpuDriverHelper.supportsCustomDriverLoading() ) { this.gpuDriver = @@ -1303,7 +1303,7 @@ class SettingsFragmentPresenter( if ( this.gpuDriver != null && this.gameId.isNullOrEmpty() - && NativeLibrary.IsUninitialized() + && !NativeLibrary.IsRunning() && GpuDriverHelper.supportsCustomDriverLoading() ) { sl.add( diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt index eeb223c3db..637f4fb924 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.kt @@ -180,11 +180,11 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback { private fun run(isActivityRecreated: Boolean) { if (isActivityRecreated) { - if (NativeLibrary.IsUninitialized()) { - loadPreviousTemporaryState = true - } else { + if (NativeLibrary.IsRunning()) { loadPreviousTemporaryState = false deleteFile(temporaryStateFilePath) + } else { + loadPreviousTemporaryState = true } } else { Log.debug("[EmulationFragment] activity resumed or fresh start") @@ -203,7 +203,7 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback { private fun runWithValidSurface() { runWhenSurfaceIsValid = false - if (NativeLibrary.IsUninitialized()) { + if (!NativeLibrary.IsRunning()) { NativeLibrary.SetIsBooting() val emulationThread = Thread({ if (loadPreviousTemporaryState) { diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt index 7964cc1ebc..dfe557e712 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/overlay/InputOverlay.kt @@ -83,7 +83,7 @@ class InputOverlay(context: Context?, attrs: AttributeSet?) : SurfaceView(contex fun initTouchPointer() { // Check if we have all the data we need yet - val aspectRatioAvailable = NativeLibrary.IsRunning() + val aspectRatioAvailable = NativeLibrary.IsRunningAndStarted() if (!aspectRatioAvailable || surfacePosition == null) return diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 83902892e9..23fc782aeb 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -118,7 +118,8 @@ void Host_Message(HostMessageID id) } else if (id == HostMessageID::WMUserStop) { - Core::QueueHostJob(&Core::Stop); + if (Core::IsRunning(Core::System::GetInstance())) + Core::QueueHostJob(&Core::Stop); } } @@ -275,6 +276,13 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetIsBooting } JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunning(JNIEnv*, jclass) +{ + return s_is_booting.IsSet() || + static_cast(Core::IsRunning(Core::System::GetInstance())); +} + +JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunningAndStarted(JNIEnv*, + jclass) { return static_cast(Core::IsRunning(Core::System::GetInstance())); } @@ -285,13 +293,6 @@ Java_org_dolphinemu_dolphinemu_NativeLibrary_IsRunningAndUnpaused(JNIEnv*, jclas return static_cast(Core::GetState(Core::System::GetInstance()) == Core::State::Running); } -JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_IsUninitialized(JNIEnv*, - jclass) -{ - return static_cast(Core::IsUninitialized(Core::System::GetInstance()) && - !s_is_booting.IsSet()); -} - JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetVersionString(JNIEnv* env, jclass) { diff --git a/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp b/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp index 81e373b422..88fa7c0696 100644 --- a/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp +++ b/Source/Core/Core/ConfigLoaders/BaseConfigLoader.cpp @@ -33,7 +33,7 @@ namespace ConfigLoaders { void SaveToSYSCONF(Config::LayerType layer, std::function predicate) { - if (!Core::IsUninitialized(Core::System::GetInstance())) + if (Core::IsRunning(Core::System::GetInstance())) return; IOS::HLE::Kernel ios; @@ -183,7 +183,7 @@ public: private: void LoadFromSYSCONF(Config::Layer* layer) { - if (!Core::IsUninitialized(Core::System::GetInstance())) + if (Core::IsRunning(Core::System::GetInstance())) return; IOS::HLE::Kernel ios; diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index de791d620c..8399d55cba 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -211,11 +211,6 @@ bool IsRunningOrStarting(Core::System& system) return state == State::Running || state == State::Starting; } -bool IsUninitialized(Core::System& system) -{ - return s_state.load() == State::Uninitialized; -} - bool IsCPUThread() { return tls_is_cpu_thread; @@ -242,7 +237,7 @@ bool Init(Core::System& system, std::unique_ptr boot, const Wind { if (s_emu_thread.joinable()) { - if (!IsUninitialized(system)) + if (IsRunning(system)) { PanicAlertFmtT("Emu Thread already running"); return false; diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index cf30cf3866..e6c440566c 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -134,13 +134,8 @@ void UndeclareAsHostThread(); std::string StopMessage(bool main_thread, std::string_view message); -// Returns true when GetState returns Running or Paused. bool IsRunning(Core::System& system); -// Returns true when GetState returns Starting, Running or Paused. bool IsRunningOrStarting(Core::System& system); -// Returns true when GetState returns Uninitialized. -bool IsUninitialized(Core::System& system); - bool IsCPUThread(); // this tells us whether we are the CPU thread. bool IsGPUThread(); bool IsHostThread(); diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index 6f003dab44..fe83fe9146 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -159,8 +159,6 @@ void AchievementSettingsWidget::OnControllerInterfaceConfigure() void AchievementSettingsWidget::LoadSettings() { - Core::System& system = Core::System::GetInstance(); - bool enabled = Config::Get(Config::RA_ENABLED); bool hardcore_enabled = Config::Get(Config::RA_HARDCORE_ENABLED); bool logged_out = Config::Get(Config::RA_API_TOKEN).empty(); @@ -176,15 +174,18 @@ void AchievementSettingsWidget::LoadSettings() SignalBlocking(m_common_password_input)->setVisible(logged_out); SignalBlocking(m_common_password_input)->setEnabled(enabled); SignalBlocking(m_common_login_button)->setVisible(logged_out); - SignalBlocking(m_common_login_button)->setEnabled(enabled && Core::IsUninitialized(system)); + SignalBlocking(m_common_login_button) + ->setEnabled(enabled && !Core::IsRunning(Core::System::GetInstance())); SignalBlocking(m_common_logout_button)->setVisible(!logged_out); SignalBlocking(m_common_logout_button)->setEnabled(enabled); SignalBlocking(m_common_hardcore_enabled_input) ->setChecked(Config::Get(Config::RA_HARDCORE_ENABLED)); + auto& system = Core::System::GetInstance(); SignalBlocking(m_common_hardcore_enabled_input) - ->setEnabled(enabled && (hardcore_enabled || (Core::IsUninitialized(system) && - !system.GetMovie().IsPlayingInput()))); + ->setEnabled(enabled && + (hardcore_enabled || (Core::GetState(system) == Core::State::Uninitialized && + !system.GetMovie().IsPlayingInput()))); SignalBlocking(m_common_unofficial_enabled_input) ->setChecked(Config::Get(Config::RA_UNOFFICIAL_ENABLED)); diff --git a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp index fd713b6695..e1970dacc5 100644 --- a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp @@ -159,7 +159,8 @@ void CheatSearchFactoryWidget::OnNewSearchClicked() if (m_standard_address_space->isChecked()) { auto& system = Core::System::GetInstance(); - if (!Core::IsRunning(system)) + const Core::State core_state = Core::GetState(system); + if (core_state != Core::State::Running && core_state != Core::State::Paused) { ModalMessageBox::warning( this, tr("No game running."), diff --git a/Source/Core/DolphinQt/CheatsManager.cpp b/Source/Core/DolphinQt/CheatsManager.cpp index 4fea9120b4..53f051785c 100644 --- a/Source/Core/DolphinQt/CheatsManager.cpp +++ b/Source/Core/DolphinQt/CheatsManager.cpp @@ -104,9 +104,8 @@ void CheatsManager::RefreshCodeTabs(Core::State state, bool force) if (!force && (state == Core::State::Starting || state == Core::State::Stopping)) return; - const auto& game_id = state == Core::State::Running || state == Core::State::Paused ? - SConfig::GetInstance().GetGameID() : - std::string(); + const auto& game_id = + state != Core::State::Uninitialized ? SConfig::GetInstance().GetGameID() : std::string(); const auto& game_tdb_id = SConfig::GetInstance().GetGameTDBID(); const u16 revision = SConfig::GetInstance().GetRevision(); diff --git a/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp b/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp index 6c3b9638da..ee52bf9662 100644 --- a/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp +++ b/Source/Core/DolphinQt/Config/CheatWarningWidget.cpp @@ -24,9 +24,8 @@ CheatWarningWidget::CheatWarningWidget(const std::string& game_id, bool restart_ connect(&Settings::Instance(), &Settings::EnableCheatsChanged, this, [this] { Update(Core::IsRunning(Core::System::GetInstance())); }); - connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { - Update(state == Core::State::Running || state == Core::State::Paused); - }); + connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, + [this](Core::State state) { Update(state == Core::State::Running); }); Update(Core::IsRunning(Core::System::GetInstance())); } diff --git a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp index ccc63fe326..0d93614021 100644 --- a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp @@ -43,7 +43,8 @@ AdvancedWidget::AdvancedWidget(GraphicsWindow* parent) }); OnBackendChanged(); - OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); + OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != + Core::State::Uninitialized); } void AdvancedWidget::CreateWidgets() diff --git a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp index 3574e6893a..52f09a6f41 100644 --- a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp @@ -44,7 +44,8 @@ GeneralWidget::GeneralWidget(GraphicsWindow* parent) connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { OnEmulationStateChanged(state != Core::State::Uninitialized); }); - OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); + OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != + Core::State::Uninitialized); } void GeneralWidget::CreateWidgets() @@ -360,8 +361,7 @@ void GeneralWidget::OnBackendChanged(const QString& backend_name) const bool supports_adapters = !adapters.empty(); m_adapter_combo->setCurrentIndex(g_Config.iAdapter); - m_adapter_combo->setEnabled(supports_adapters && - Core::IsUninitialized(Core::System::GetInstance())); + m_adapter_combo->setEnabled(supports_adapters && !Core::IsRunning(Core::System::GetInstance())); static constexpr char TR_ADAPTER_AVAILABLE_DESCRIPTION[] = QT_TR_NOOP("Selects a hardware adapter to use.

" diff --git a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp index fc78b5b613..8dba286c01 100644 --- a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp @@ -791,7 +791,7 @@ bool AssemblerWidget::SaveEditor(AsmEditor* editor) void AssemblerWidget::OnEmulationStateChanged(Core::State state) { - m_inject->setEnabled(state == Core::State::Running || state == Core::State::Paused); + m_inject->setEnabled(state != Core::State::Uninitialized); } void AssemblerWidget::OnTabClose(int index) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 1b74cd8ee9..130e68e860 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -251,7 +251,7 @@ void BreakpointWidget::UpdateButtonsEnabled() if (!isVisible()) return; - const bool is_initialised = Core::IsRunning(m_system); + const bool is_initialised = Core::GetState(m_system) != Core::State::Uninitialized; m_new->setEnabled(is_initialised); m_load->setEnabled(is_initialised); m_save->setEnabled(is_initialised); diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 7f0e50db74..51f2814d9b 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -560,7 +560,7 @@ void CodeViewWidget::OnContextMenu() QMenu* menu = new QMenu(this); menu->setAttribute(Qt::WA_DeleteOnClose, true); - const bool running = Core::IsRunning(m_system); + const bool running = Core::GetState(m_system) != Core::State::Uninitialized; const bool paused = Core::GetState(m_system) == Core::State::Paused; const u32 addr = GetContextAddress(); diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp index 55704e31ad..e48097d0e4 100644 --- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp @@ -258,7 +258,7 @@ void ThreadWidget::Update() auto& system = Core::System::GetInstance(); const auto emu_state = Core::GetState(system); - if (emu_state == Core::State::Stopping || emu_state == Core::State::Uninitialized) + if (emu_state == Core::State::Stopping) { m_thread_table->setRowCount(0); UpdateThreadContext({}); diff --git a/Source/Core/DolphinQt/Debugger/WatchWidget.cpp b/Source/Core/DolphinQt/Debugger/WatchWidget.cpp index 170bfcc792..75d3f13ee6 100644 --- a/Source/Core/DolphinQt/Debugger/WatchWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/WatchWidget.cpp @@ -195,11 +195,10 @@ void WatchWidget::Update() QBrush brush = QPalette().brush(QPalette::Text); - const bool core_is_running = Core::IsRunning(m_system); - if (!core_is_running || !PowerPC::MMU::HostIsRAMAddress(guard, entry.address)) + if (!Core::IsRunning(m_system) || !PowerPC::MMU::HostIsRAMAddress(guard, entry.address)) brush.setColor(Qt::red); - if (core_is_running) + if (Core::IsRunning(m_system)) { if (PowerPC::MMU::HostIsRAMAddress(guard, entry.address)) { diff --git a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp index 30c4b44a86..4d2cadb6ca 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp +++ b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp @@ -59,14 +59,11 @@ FIFOPlayerWindow::FIFOPlayerWindow(FifoPlayer& fifo_player, FifoRecorder& fifo_r }); connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) { - if (state != m_emu_state) - { - if (state == Core::State::Running && m_emu_state != Core::State::Paused) - OnEmulationStarted(); - else if (state == Core::State::Uninitialized) - OnEmulationStopped(); - m_emu_state = state; - } + if (state == Core::State::Running && m_emu_state != Core::State::Paused) + OnEmulationStarted(); + else if (state == Core::State::Uninitialized) + OnEmulationStopped(); + m_emu_state = state; }); installEventFilter(this); @@ -379,11 +376,9 @@ void FIFOPlayerWindow::UpdateLimits() void FIFOPlayerWindow::UpdateControls() { - Core::System& system = Core::System::GetInstance(); - const bool core_is_uninitialized = Core::IsUninitialized(system); - const bool core_is_running = Core::IsRunning(system); - const bool is_recording = m_fifo_recorder.IsRecording(); - const bool is_playing = m_fifo_player.IsPlaying(); + bool running = Core::IsRunning(Core::System::GetInstance()); + bool is_recording = m_fifo_recorder.IsRecording(); + bool is_playing = m_fifo_player.IsPlaying(); m_frame_range_from->setEnabled(is_playing); m_frame_range_from_label->setEnabled(is_playing); @@ -399,10 +394,10 @@ void FIFOPlayerWindow::UpdateControls() m_frame_record_count_label->setEnabled(enable_frame_record_count); m_frame_record_count->setEnabled(enable_frame_record_count); - m_load->setEnabled(core_is_uninitialized); - m_record->setEnabled(core_is_running && !is_playing); + m_load->setEnabled(!running); + m_record->setEnabled(running && !is_playing); - m_stop->setVisible(core_is_running && is_recording); + m_stop->setVisible(running && is_recording); m_record->setVisible(!m_stop->isVisible()); m_save->setEnabled(m_fifo_recorder.IsRecordingDone()); diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 5545a622b3..97c596b969 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -436,7 +436,7 @@ void GameList::ShowContextMenu(const QPoint&) // system menu, trigger a refresh. Settings::Instance().NANDRefresh(); }); - perform_disc_update->setEnabled(Core::IsUninitialized(system) || !system.IsWii()); + perform_disc_update->setEnabled(!Core::IsRunning(system) || !system.IsWii()); } if (!is_mod_descriptor && platform == DiscIO::Platform::WiiWAD) @@ -449,10 +449,10 @@ void GameList::ShowContextMenu(const QPoint&) for (QAction* a : {wad_install_action, wad_uninstall_action}) { - a->setEnabled(Core::IsUninitialized(system)); + a->setEnabled(!Core::IsRunning(system)); menu->addAction(a); } - if (Core::IsUninitialized(system)) + if (!Core::IsRunning(system)) wad_uninstall_action->setEnabled(WiiUtils::IsTitleInstalled(game->GetTitleID())); connect(&Settings::Instance(), &Settings::EmulationStateChanged, menu, @@ -473,8 +473,8 @@ void GameList::ShowContextMenu(const QPoint&) QAction* export_wii_save = menu->addAction(tr("Export Wii Save"), this, &GameList::ExportWiiSave); - open_wii_save_folder->setEnabled(Core::IsUninitialized(system)); - export_wii_save->setEnabled(Core::IsUninitialized(system)); + open_wii_save_folder->setEnabled(!Core::IsRunning(system)); + export_wii_save->setEnabled(!Core::IsRunning(system)); menu->addSeparator(); } @@ -531,7 +531,7 @@ void GameList::ShowContextMenu(const QPoint&) connect(&Settings::Instance(), &Settings::EmulationStateChanged, menu, [=](Core::State state) { netplay_host->setEnabled(state == Core::State::Uninitialized); }); - netplay_host->setEnabled(Core::IsUninitialized(system)); + netplay_host->setEnabled(!Core::IsRunning(system)); menu->addAction(netplay_host); } diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 81ed0bbbe2..66dbaeb8d8 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -188,7 +188,7 @@ void HotkeyScheduler::Run() if (IsHotkey(HK_EXIT)) emit ExitHotkey(); - if (Core::IsUninitialized(system)) + if (!Core::IsRunning(system)) { // Only check for Play Recording hotkey when no game is running if (IsHotkey(HK_PLAY_RECORDING)) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 0bef377f07..f62a7496e7 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -905,7 +905,7 @@ void MainWindow::OnStopComplete() bool MainWindow::RequestStop() { - if (Core::IsUninitialized(Core::System::GetInstance())) + if (!Core::IsRunning(Core::System::GetInstance())) { Core::QueueHostJob([this](Core::System&) { OnStopComplete(); }, true); return true; @@ -1112,7 +1112,7 @@ void MainWindow::StartGame(std::unique_ptr&& parameters) } // If we're running, only start a new game once we've stopped the last. - if (!Core::IsUninitialized(Core::System::GetInstance())) + if (Core::GetState(Core::System::GetInstance()) != Core::State::Uninitialized) { if (!RequestStop()) return; @@ -1536,7 +1536,7 @@ void MainWindow::NetPlayInit() bool MainWindow::NetPlayJoin() { - if (!Core::IsUninitialized(Core::System::GetInstance())) + if (Core::IsRunning(Core::System::GetInstance())) { ModalMessageBox::critical(nullptr, tr("Error"), tr("Can't start a NetPlay Session while a game is still running!")); @@ -1603,7 +1603,7 @@ bool MainWindow::NetPlayJoin() bool MainWindow::NetPlayHost(const UICommon::GameFile& game) { - if (!Core::IsUninitialized(Core::System::GetInstance())) + if (Core::IsRunning(Core::System::GetInstance())) { ModalMessageBox::critical(nullptr, tr("Error"), tr("Can't start a NetPlay Session while a game is still running!")); @@ -1850,7 +1850,7 @@ void MainWindow::OnImportNANDBackup() result.wait(); - m_menu_bar->UpdateToolsMenu(Core::State::Uninitialized); + m_menu_bar->UpdateToolsMenu(Core::IsRunning(Core::System::GetInstance())); } void MainWindow::OnPlayRecording() @@ -1882,8 +1882,7 @@ void MainWindow::OnStartRecording() { auto& system = Core::System::GetInstance(); auto& movie = system.GetMovie(); - if (Core::GetState(system) == Core::State::Starting || - Core::GetState(system) == Core::State::Stopping || movie.IsRecordingInput() || + if (Core::GetState(system) == Core::State::Starting || movie.IsRecordingInput() || movie.IsPlayingInput()) { return; @@ -1915,7 +1914,7 @@ void MainWindow::OnStartRecording() { emit RecordingStatusChanged(true); - if (Core::IsUninitialized(system)) + if (!Core::IsRunning(system)) Play(); } } diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index b7528272a6..75b279db67 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -138,11 +138,9 @@ void MenuBar::OnEmulationStateChanged(Core::State state) m_recording_stop->setEnabled(false); m_recording_export->setEnabled(false); } - const bool can_start_from_boot = m_game_selected && state == Core::State::Uninitialized; - const bool can_start_from_savestate = - state == Core::State::Running || state == Core::State::Paused; - m_recording_play->setEnabled(can_start_from_boot && !hardcore); - m_recording_start->setEnabled((can_start_from_boot || can_start_from_savestate) && + m_recording_play->setEnabled(m_game_selected && !running); + m_recording_play->setEnabled(m_game_selected && !running && !hardcore); + m_recording_start->setEnabled((m_game_selected || running) && !Core::System::GetInstance().GetMovie().IsPlayingInput()); // JIT @@ -161,7 +159,7 @@ void MenuBar::OnEmulationStateChanged(Core::State state) m_symbols->setEnabled(running); UpdateStateSlotMenu(); - UpdateToolsMenu(state); + UpdateToolsMenu(running); OnDebugModeToggled(Settings::Instance().IsDebugModeEnabled()); } @@ -302,8 +300,7 @@ void MenuBar::AddToolsMenu() m_boot_sysmenu->setEnabled(false); - connect(&Settings::Instance(), &Settings::NANDRefresh, this, - [this] { UpdateToolsMenu(Core::State::Uninitialized); }); + connect(&Settings::Instance(), &Settings::NANDRefresh, this, [this] { UpdateToolsMenu(false); }); m_perform_online_update_menu = tools_menu->addMenu(tr("Perform Online System Update")); m_perform_online_update_for_current_region = m_perform_online_update_menu->addAction( @@ -1053,23 +1050,20 @@ void MenuBar::AddSymbolsMenu() m_symbols->addAction(tr("&Patch HLE Functions"), this, &MenuBar::PatchHLEFunctions); } -void MenuBar::UpdateToolsMenu(Core::State state) +void MenuBar::UpdateToolsMenu(bool emulation_started) { - const bool is_uninitialized = state == Core::State::Uninitialized; - const bool is_running = state == Core::State::Running || state == Core::State::Paused; + m_boot_sysmenu->setEnabled(!emulation_started); + m_perform_online_update_menu->setEnabled(!emulation_started); + m_ntscj_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(JAP_DIR))); + m_ntscu_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(USA_DIR))); + m_pal_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(EUR_DIR))); + m_wad_install_action->setEnabled(!emulation_started); + m_import_backup->setEnabled(!emulation_started); + m_check_nand->setEnabled(!emulation_started); + m_import_wii_save->setEnabled(!emulation_started); + m_export_wii_saves->setEnabled(!emulation_started); - m_boot_sysmenu->setEnabled(is_uninitialized); - m_perform_online_update_menu->setEnabled(is_uninitialized); - m_ntscj_ipl->setEnabled(is_uninitialized && File::Exists(Config::GetBootROMPath(JAP_DIR))); - m_ntscu_ipl->setEnabled(is_uninitialized && File::Exists(Config::GetBootROMPath(USA_DIR))); - m_pal_ipl->setEnabled(is_uninitialized && File::Exists(Config::GetBootROMPath(EUR_DIR))); - m_wad_install_action->setEnabled(is_uninitialized); - m_import_backup->setEnabled(is_uninitialized); - m_check_nand->setEnabled(is_uninitialized); - m_import_wii_save->setEnabled(is_uninitialized); - m_export_wii_saves->setEnabled(is_uninitialized); - - if (is_uninitialized) + if (!emulation_started) { IOS::HLE::Kernel ios; const auto tmd = ios.GetESCore().FindInstalledTMD(Titles::SYSTEM_MENU); @@ -1092,7 +1086,7 @@ void MenuBar::UpdateToolsMenu(Core::State state) } const auto bt = WiiUtils::GetBluetoothEmuDevice(); - const bool enable_wiimotes = is_running && bt != nullptr; + const bool enable_wiimotes = emulation_started && bt != nullptr; for (std::size_t i = 0; i < m_wii_remotes.size(); i++) { @@ -1263,20 +1257,16 @@ void MenuBar::OnSelectionChanged(std::shared_ptr game_ m_game_selected = !!game_file; auto& system = Core::System::GetInstance(); - const bool can_start_from_boot = m_game_selected && Core::IsUninitialized(system); - const bool can_start_from_savestate = Core::IsRunning(system); - m_recording_play->setEnabled(can_start_from_boot); - m_recording_start->setEnabled((can_start_from_boot || can_start_from_savestate) && + const bool core_is_running = Core::IsRunning(system); + m_recording_play->setEnabled(m_game_selected && !core_is_running); + m_recording_start->setEnabled((m_game_selected || core_is_running) && !system.GetMovie().IsPlayingInput()); } void MenuBar::OnRecordingStatusChanged(bool recording) { auto& system = Core::System::GetInstance(); - const bool can_start_from_boot = m_game_selected && Core::IsUninitialized(system); - const bool can_start_from_savestate = Core::IsRunning(system); - - m_recording_start->setEnabled(!recording && (can_start_from_boot || can_start_from_savestate)); + m_recording_start->setEnabled(!recording && (m_game_selected || Core::IsRunning(system))); m_recording_stop->setEnabled(recording); m_recording_export->setEnabled(recording); } diff --git a/Source/Core/DolphinQt/MenuBar.h b/Source/Core/DolphinQt/MenuBar.h index 538ca29bb5..b6620291d2 100644 --- a/Source/Core/DolphinQt/MenuBar.h +++ b/Source/Core/DolphinQt/MenuBar.h @@ -43,7 +43,7 @@ public: explicit MenuBar(QWidget* parent = nullptr); - void UpdateToolsMenu(Core::State state); + void UpdateToolsMenu(bool emulation_started); QMenu* GetListColumnsMenu() const { return m_cols_menu; } diff --git a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp index 2bbf52d11d..4ae4b5f315 100644 --- a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp @@ -804,11 +804,9 @@ void NetPlayDialog::DisplayMessage(const QString& msg, const std::string& color, QColor c(color.empty() ? QStringLiteral("white") : QString::fromStdString(color)); if (g_ActiveConfig.bShowNetPlayMessages && Core::IsRunning(Core::System::GetInstance())) - { g_netplay_chat_ui->AppendChat(msg.toStdString(), {static_cast(c.redF()), static_cast(c.greenF()), static_cast(c.blueF())}); - } } void NetPlayDialog::AppendChat(const std::string& msg) diff --git a/Source/Core/DolphinQt/Settings/AdvancedPane.cpp b/Source/Core/DolphinQt/Settings/AdvancedPane.cpp index 0d4e2a8bfd..cfcc3bba81 100644 --- a/Source/Core/DolphinQt/Settings/AdvancedPane.cpp +++ b/Source/Core/DolphinQt/Settings/AdvancedPane.cpp @@ -239,7 +239,7 @@ void AdvancedPane::ConnectLayout() void AdvancedPane::Update() { - const bool running = !Core::IsUninitialized(Core::System::GetInstance()); + const bool running = Core::GetState(Core::System::GetInstance()) != Core::State::Uninitialized; const bool enable_cpu_clock_override_widgets = Config::Get(Config::MAIN_OVERCLOCK_ENABLE); const bool enable_ram_override_widgets = Config::Get(Config::MAIN_RAM_OVERRIDE_ENABLE); const bool enable_custom_rtc_widgets = Config::Get(Config::MAIN_CUSTOM_RTC_ENABLE) && !running; diff --git a/Source/Core/DolphinQt/Settings/AudioPane.cpp b/Source/Core/DolphinQt/Settings/AudioPane.cpp index d2290025ed..289dc28e7d 100644 --- a/Source/Core/DolphinQt/Settings/AudioPane.cpp +++ b/Source/Core/DolphinQt/Settings/AudioPane.cpp @@ -40,7 +40,8 @@ AudioPane::AudioPane() OnEmulationStateChanged(state != Core::State::Uninitialized); }); - OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); + OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != + Core::State::Uninitialized); } void AudioPane::CreateWidgets() diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp index 0e432855af..b6ad36654f 100644 --- a/Source/Core/DolphinQt/Settings/WiiPane.cpp +++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp @@ -93,7 +93,8 @@ WiiPane::WiiPane(QWidget* parent) : QWidget(parent) LoadConfig(); ConnectLayout(); ValidateSelectionState(); - OnEmulationStateChanged(!Core::IsUninitialized(Core::System::GetInstance())); + OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()) != + Core::State::Uninitialized); } void WiiPane::CreateLayout() From f29fe15d77122d6ddfc6bd30ff91680a6bcbecb8 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Fri, 17 May 2024 21:16:59 -0700 Subject: [PATCH 130/296] FrameAdvance: Fix continuous frame advancing while the debug UI is open. Blocks signals from being spammed to update the UI. --- Source/Core/DolphinQt/Host.cpp | 3 +++ Source/Core/DolphinQt/HotkeyScheduler.cpp | 4 ++++ Source/Core/DolphinQt/Settings.cpp | 17 ++++++++++++++++- Source/Core/DolphinQt/Settings.h | 5 +++++ 4 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Host.cpp b/Source/Core/DolphinQt/Host.cpp index bb912a7ab2..80a4247a2b 100644 --- a/Source/Core/DolphinQt/Host.cpp +++ b/Source/Core/DolphinQt/Host.cpp @@ -250,6 +250,9 @@ void Host_YieldToUI() void Host_UpdateDisasmDialog() { + if (Settings::Instance().GetIsContinuouslyFrameStepping()) + return; + QueueOnObject(QApplication::instance(), [] { emit Host::GetInstance()->UpdateDisasmDialog(); }); } diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 81ed0bbbe2..33b4df8ed0 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -113,6 +113,8 @@ static void HandleFrameStepHotkeys() if ((frame_step_count == 0 || frame_step_count == FRAME_STEP_DELAY) && !frame_step_hold) { + if (frame_step_count > 0) + Settings::Instance().SetIsContinuouslyFrameStepping(true); Core::QueueHostJob([](auto& system) { Core::DoFrameStep(system); }); frame_step_hold = true; } @@ -138,6 +140,8 @@ static void HandleFrameStepHotkeys() frame_step_count = 0; frame_step_hold = false; frame_step_delay_count = 0; + Settings::Instance().SetIsContinuouslyFrameStepping(false); + emit Settings::Instance().EmulationStateChanged(Core::GetState(Core::System::GetInstance())); } } diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 4ab29c3e0f..195cf16579 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -59,7 +59,12 @@ Settings::Settings() { qRegisterMetaType(); Core::AddOnStateChangedCallback([this](Core::State new_state) { - QueueOnObject(this, [this, new_state] { emit EmulationStateChanged(new_state); }); + QueueOnObject(this, [this, new_state] { + // Avoid signal spam while continuously frame stepping. Will still send a signal for the first + // and last framestep. + if (!m_continuously_frame_stepping) + emit EmulationStateChanged(new_state); + }); }); Config::AddConfigChangedCallback([this] { @@ -827,3 +832,13 @@ void Settings::SetUSBKeyboardConnected(bool connected) emit USBKeyboardConnectionChanged(connected); } } + +void Settings::SetIsContinuouslyFrameStepping(bool is_stepping) +{ + m_continuously_frame_stepping = is_stepping; +} + +bool Settings::GetIsContinuouslyFrameStepping() const +{ + return m_continuously_frame_stepping; +} diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index a99e8c7dca..68223e62f6 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -120,6 +120,9 @@ public: bool IsUSBKeyboardConnected() const; void SetUSBKeyboardConnected(bool connected); + void SetIsContinuouslyFrameStepping(bool is_stepping); + bool GetIsContinuouslyFrameStepping() const; + // Graphics Config::ShowCursor GetCursorVisibility() const; bool GetLockCursor() const; @@ -228,6 +231,8 @@ private: Settings(); bool m_batch = false; + std::atomic m_continuously_frame_stepping = false; + std::shared_ptr m_client; std::shared_ptr m_server; ControllerInterface::HotplugCallbackHandle m_hotplug_callback_handle; From 16e868b46a676060386a174755a2d324429696a1 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 26 Jun 2024 22:41:11 -0400 Subject: [PATCH 131/296] Removed large empty space at the bottom of achievement/leaderboard lists --- .../Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp | 1 + Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp index e7578a31e9..2a1f07b8da 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp @@ -30,6 +30,7 @@ AchievementLeaderboardWidget::AchievementLeaderboardWidget(QWidget* parent) : QW layout->setContentsMargins(0, 0, 0, 0); layout->setAlignment(Qt::AlignTop); layout->addWidget(m_common_box); + layout->setSizeConstraint(QLayout::SetFixedSize); setLayout(layout); } diff --git a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp index 741cb61227..ca5a10ab31 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp @@ -33,6 +33,7 @@ AchievementProgressWidget::AchievementProgressWidget(QWidget* parent) : QWidget( layout->setContentsMargins(0, 0, 0, 0); layout->setAlignment(Qt::AlignTop); layout->addWidget(m_common_box); + layout->setSizeConstraint(QLayout::SetFixedSize); setLayout(layout); } From 7ffcde3ab3570525bed0c3a366693d892c4fb3ec Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 26 Jun 2024 22:41:39 -0400 Subject: [PATCH 132/296] Fixed misaligned borders on unlocked achievement badges --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 1e524db38f..84544bfc06 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -47,6 +47,12 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve m_progress_label->setStyleSheet(QStringLiteral("background-color:transparent;")); m_progress_label->setAlignment(Qt::AlignCenter); + QVBoxLayout* a_col_left = new QVBoxLayout(); + a_col_left->addSpacerItem(new QSpacerItem(0, 0)); + a_col_left->addWidget(m_badge); + a_col_left->addSpacerItem(new QSpacerItem(0, 0)); + a_col_left->setSizeConstraint(QLayout::SetFixedSize); + a_col_left->setAlignment(Qt::AlignCenter); QVBoxLayout* a_col_right = new QVBoxLayout(); a_col_right->addWidget(title); a_col_right->addWidget(description); @@ -57,7 +63,7 @@ AchievementBox::AchievementBox(QWidget* parent, rc_client_achievement_t* achieve a_prog_layout->setContentsMargins(0, 0, 0, 0); a_prog_layout->addWidget(m_progress_label); QHBoxLayout* a_total = new QHBoxLayout(); - a_total->addWidget(m_badge); + a_total->addLayout(a_col_left); a_total->addLayout(a_col_right); setLayout(a_total); From cfcdaab51471ff1a3ef519b84efcde2a1f7f08a2 Mon Sep 17 00:00:00 2001 From: Joshua de Reeper Date: Wed, 26 Jun 2024 23:04:27 +0100 Subject: [PATCH 133/296] IOS/USB: Use Enum for Infinity Base Positions --- Source/Android/jni/InfinityConfig.cpp | 14 +++-- .../Core/Core/IOS/USB/Emulated/Infinity.cpp | 58 ++++++++++--------- Source/Core/Core/IOS/USB/Emulated/Infinity.h | 27 ++++++++- .../InfinityBase/InfinityBaseWindow.cpp | 55 ++++++++++-------- .../InfinityBase/InfinityBaseWindow.h | 17 ++++-- 5 files changed, 106 insertions(+), 65 deletions(-) diff --git a/Source/Android/jni/InfinityConfig.cpp b/Source/Android/jni/InfinityConfig.cpp index 7be0402769..a5740537b0 100644 --- a/Source/Android/jni/InfinityConfig.cpp +++ b/Source/Android/jni/InfinityConfig.cpp @@ -10,6 +10,8 @@ #include "Core/IOS/USB/Emulated/Infinity.h" #include "Core/System.h" +using FigureUIPosition = IOS::HLE::USB::FigureUIPosition; + extern "C" { JNIEXPORT jobject JNICALL @@ -66,7 +68,7 @@ Java_org_dolphinemu_dolphinemu_features_infinitybase_InfinityConfig_removeFigure jint position) { auto& system = Core::System::GetInstance(); - system.GetInfinityBase().RemoveFigure(position); + system.GetInfinityBase().RemoveFigure(static_cast(position)); } JNIEXPORT jstring JNICALL @@ -87,9 +89,10 @@ Java_org_dolphinemu_dolphinemu_features_infinitybase_InfinityConfig_loadFigure(J } auto& system = Core::System::GetInstance(); - system.GetInfinityBase().RemoveFigure(position); + system.GetInfinityBase().RemoveFigure(static_cast(position)); return ToJString(env, - system.GetInfinityBase().LoadFigure(file_data, std::move(inf_file), position)); + system.GetInfinityBase().LoadFigure(file_data, std::move(inf_file), + static_cast(position))); } JNIEXPORT jstring JNICALL @@ -102,7 +105,7 @@ Java_org_dolphinemu_dolphinemu_features_infinitybase_InfinityConfig_createFigure auto& system = Core::System::GetInstance(); system.GetInfinityBase().CreateFigure(file_name, fig_num); - system.GetInfinityBase().RemoveFigure(position); + system.GetInfinityBase().RemoveFigure(static_cast(position)); File::IOFile inf_file(file_name, "r+b"); if (!inf_file) @@ -116,6 +119,7 @@ Java_org_dolphinemu_dolphinemu_features_infinitybase_InfinityConfig_createFigure } return ToJString(env, - system.GetInfinityBase().LoadFigure(file_data, std::move(inf_file), position)); + system.GetInfinityBase().LoadFigure(file_data, std::move(inf_file), + static_cast(position))); } } diff --git a/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp b/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp index 892eb21324..34a2f40698 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Infinity.cpp @@ -594,7 +594,7 @@ static u32 InfinityCRC32(const std::array& buffer) std::string InfinityBase::LoadFigure(const std::array& buf, - File::IOFile in_file, u8 position) + File::IOFile in_file, FigureUIPosition position) { std::lock_guard lock(m_infinity_mutex); u8 order_added; @@ -615,7 +615,7 @@ InfinityBase::LoadFigure(const std::array(position)]; figure.inf_file = std::move(in_file); memcpy(figure.data.data(), buf.data(), figure.data.size()); @@ -627,24 +627,25 @@ InfinityBase::LoadFigure(const std::array figure_change_response = {0xab, 0x04, position, 0x09, order_added, 0x00}; + std::array figure_change_response = {0xab, 0x04, static_cast(derived_position), + 0x09, order_added, 0x00}; figure_change_response[6] = GenerateChecksum(figure_change_response, 6); m_figure_added_removed_response.push(figure_change_response); return FindFigure(number); } -void InfinityBase::RemoveFigure(u8 position) +void InfinityBase::RemoveFigure(FigureUIPosition position) { std::lock_guard lock(m_infinity_mutex); - InfinityFigure& figure = m_figures[position]; + InfinityFigure& figure = m_figures[static_cast(position)]; if (figure.inf_file.IsOpen()) { @@ -654,8 +655,8 @@ void InfinityBase::RemoveFigure(u8 position) if (figure.present) { - position = DeriveFigurePosition(position); - if (position == 0) + FigureBasePosition derived_position = DeriveFigurePosition(position); + if (derived_position == FigureBasePosition::Unknown) { ERROR_LOG_FMT(IOS_USB, "Invalid Position for Infinity Figure"); return; @@ -663,8 +664,8 @@ void InfinityBase::RemoveFigure(u8 position) figure.present = false; - std::array figure_change_response = {0xab, 0x04, position, 0x09, figure.order_added, - 0x01}; + std::array figure_change_response = { + 0xab, 0x04, static_cast(derived_position), 0x09, figure.order_added, 0x01}; figure_change_response[6] = GenerateChecksum(figure_change_response, 6); m_figure_added_removed_response.push(figure_change_response); } @@ -751,7 +752,7 @@ std::string InfinityBase::FindFigure(u32 number) const return "Unknown Figure"; } -u8 InfinityBase::DeriveFigurePosition(u8 position) +FigureBasePosition InfinityBase::DeriveFigurePosition(FigureUIPosition position) { // In the added/removed response, position needs to be 1 for the hexagon, 2 for Player 1 and // Player 1's abilities, and 3 for Player 2 and Player 2's abilities. In the UI, positions 0, 1 @@ -760,21 +761,26 @@ u8 InfinityBase::DeriveFigurePosition(u8 position) switch (position) { - case 0: - case 1: - case 2: - return 1; - case 3: - case 4: - case 5: - return 2; - case 6: - case 7: - case 8: - return 3; - + case FigureUIPosition::HexagonDiscOne: + case FigureUIPosition::HexagonDiscTwo: + case FigureUIPosition::HexagonDiscThree: + { + return FigureBasePosition::HexagonSlot; + } + case FigureUIPosition::PlayerOne: + case FigureUIPosition::P1AbilityOne: + case FigureUIPosition::P1AbilityTwo: + { + return FigureBasePosition::PlayerOneSlot; + } + case FigureUIPosition::PlayerTwo: + case FigureUIPosition::P2AbilityOne: + case FigureUIPosition::P2AbilityTwo: + { + return FigureBasePosition::PlayerTwoSlot; + } default: - return 0; + return FigureBasePosition::Unknown; } } diff --git a/Source/Core/Core/IOS/USB/Emulated/Infinity.h b/Source/Core/Core/IOS/USB/Emulated/Infinity.h index d4f585ca40..a90a248b65 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Infinity.h +++ b/Source/Core/Core/IOS/USB/Emulated/Infinity.h @@ -66,6 +66,27 @@ private: std::queue> m_response_list; }; +enum class FigureUIPosition : u8 +{ + HexagonDiscOne = 0, + HexagonDiscTwo = 1, + HexagonDiscThree = 2, + PlayerOne = 3, + P1AbilityOne = 4, + P1AbilityTwo = 5, + PlayerTwo = 6, + P2AbilityOne = 7, + P2AbilityTwo = 8 +}; + +enum class FigureBasePosition : u8 +{ + Unknown = 0, + HexagonSlot = 1, + PlayerOneSlot = 2, + PlayerTwoSlot = 3 +}; + class InfinityBase final { public: @@ -79,10 +100,10 @@ public: u8 sequence); void DescrambleAndSeed(u8* buf, u8 sequence, std::array& reply_buf); void GetNextAndScramble(u8 sequence, std::array& reply_buf); - void RemoveFigure(u8 position); + void RemoveFigure(FigureUIPosition position); // Returns Infinity Figure name based on data from in_file param std::string LoadFigure(const std::array& buf, - File::IOFile in_file, u8 position); + File::IOFile in_file, FigureUIPosition position); bool CreateFigure(const std::string& file_path, u32 character); static std::span> GetFigureList(); std::string FindFigure(u32 character) const; @@ -95,7 +116,7 @@ private: InfinityFigure& GetFigureByOrder(u8 order_added); std::array GenerateInfinityFigureKey(const std::vector& sha1_data); std::array GenerateBlankFigureData(u32 figure_num); - u8 DeriveFigurePosition(u8 position); + FigureBasePosition DeriveFigurePosition(FigureUIPosition position); void GenerateSeed(u32 seed); u32 GetNext(); u64 Scramble(u32 num_to_scramble, u32 garbage); diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index 1519dd62f4..aaf8af80e1 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -33,6 +33,8 @@ // static variable to ensure we open at the most recent figure file location static QString s_last_figure_path; +using FigureUIPosition = IOS::HLE::USB::FigureUIPosition; + InfinityBaseWindow::InfinityBaseWindow(QWidget* parent) : QWidget(parent) { // i18n: Window for managing Disney Infinity figures @@ -77,23 +79,23 @@ void InfinityBaseWindow::CreateMainWindow() auto* vbox_group = new QVBoxLayout(); auto* scroll_area = new QScrollArea(); - AddFigureSlot(vbox_group, tr("Play Set/Power Disc"), 0); + AddFigureSlot(vbox_group, tr("Play Set/Power Disc"), FigureUIPosition::HexagonDiscOne); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Power Disc Two"), 1); + AddFigureSlot(vbox_group, tr("Power Disc Two"), FigureUIPosition::HexagonDiscTwo); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Power Disc Three"), 2); + AddFigureSlot(vbox_group, tr("Power Disc Three"), FigureUIPosition::HexagonDiscThree); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player One"), 3); + AddFigureSlot(vbox_group, tr("Player One"), FigureUIPosition::PlayerOne); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player One Ability One"), 4); + AddFigureSlot(vbox_group, tr("Player One Ability One"), FigureUIPosition::P1AbilityOne); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player One Ability Two"), 5); + AddFigureSlot(vbox_group, tr("Player One Ability Two"), FigureUIPosition::P1AbilityTwo); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player Two"), 6); + AddFigureSlot(vbox_group, tr("Player Two"), FigureUIPosition::PlayerTwo); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player Two Ability One"), 7); + AddFigureSlot(vbox_group, tr("Player Two Ability One"), FigureUIPosition::P2AbilityOne); add_line(vbox_group); - AddFigureSlot(vbox_group, tr("Player Two Ability Two"), 8); + AddFigureSlot(vbox_group, tr("Player Two Ability Two"), FigureUIPosition::P2AbilityTwo); m_group_figures->setLayout(vbox_group); scroll_area->setWidget(m_group_figures); @@ -103,7 +105,7 @@ void InfinityBaseWindow::CreateMainWindow() setLayout(main_layout); } -void InfinityBaseWindow::AddFigureSlot(QVBoxLayout* vbox_group, QString name, u8 slot) +void InfinityBaseWindow::AddFigureSlot(QVBoxLayout* vbox_group, QString name, FigureUIPosition slot) { auto* hbox_infinity = new QHBoxLayout(); @@ -112,16 +114,16 @@ void InfinityBaseWindow::AddFigureSlot(QVBoxLayout* vbox_group, QString name, u8 auto* clear_btn = new QPushButton(tr("Clear")); auto* create_btn = new QPushButton(tr("Create")); auto* load_btn = new QPushButton(tr("Load")); - m_edit_figures[slot] = new QLineEdit(); - m_edit_figures[slot]->setEnabled(false); - m_edit_figures[slot]->setText(tr("None")); + m_edit_figures[static_cast(slot)] = new QLineEdit(); + m_edit_figures[static_cast(slot)]->setEnabled(false); + m_edit_figures[static_cast(slot)]->setText(tr("None")); connect(clear_btn, &QAbstractButton::clicked, this, [this, slot] { ClearFigure(slot); }); connect(create_btn, &QAbstractButton::clicked, this, [this, slot] { CreateFigure(slot); }); connect(load_btn, &QAbstractButton::clicked, this, [this, slot] { LoadFigure(slot); }); hbox_infinity->addWidget(label_skyname); - hbox_infinity->addWidget(m_edit_figures[slot]); + hbox_infinity->addWidget(m_edit_figures[static_cast(slot)]); hbox_infinity->addWidget(clear_btn); hbox_infinity->addWidget(create_btn); hbox_infinity->addWidget(load_btn); @@ -129,15 +131,15 @@ void InfinityBaseWindow::AddFigureSlot(QVBoxLayout* vbox_group, QString name, u8 vbox_group->addLayout(hbox_infinity); } -void InfinityBaseWindow::ClearFigure(u8 slot) +void InfinityBaseWindow::ClearFigure(FigureUIPosition slot) { auto& system = Core::System::GetInstance(); - m_edit_figures[slot]->setText(tr("None")); + m_edit_figures[static_cast(slot)]->setText(tr("None")); system.GetInfinityBase().RemoveFigure(slot); } -void InfinityBaseWindow::LoadFigure(u8 slot) +void InfinityBaseWindow::LoadFigure(FigureUIPosition slot) { const QString file_path = DolphinFileDialog::getOpenFileName(this, tr("Select Figure File"), s_last_figure_path, @@ -152,7 +154,7 @@ void InfinityBaseWindow::LoadFigure(u8 slot) LoadFigurePath(slot, file_path); } -void InfinityBaseWindow::CreateFigure(u8 slot) +void InfinityBaseWindow::CreateFigure(FigureUIPosition slot) { CreateFigureDialog create_dlg(this, slot); SetQWidgetWindowDecorations(&create_dlg); @@ -162,7 +164,7 @@ void InfinityBaseWindow::CreateFigure(u8 slot) } } -void InfinityBaseWindow::LoadFigurePath(u8 slot, const QString& path) +void InfinityBaseWindow::LoadFigurePath(FigureUIPosition slot, const QString& path) { File::IOFile inf_file(path.toStdString(), "r+b"); if (!inf_file) @@ -187,11 +189,11 @@ void InfinityBaseWindow::LoadFigurePath(u8 slot, const QString& path) auto& system = Core::System::GetInstance(); system.GetInfinityBase().RemoveFigure(slot); - m_edit_figures[slot]->setText(QString::fromStdString( + m_edit_figures[static_cast(slot)]->setText(QString::fromStdString( system.GetInfinityBase().LoadFigure(file_data, std::move(inf_file), slot))); } -CreateFigureDialog::CreateFigureDialog(QWidget* parent, u8 slot) : QDialog(parent) +CreateFigureDialog::CreateFigureDialog(QWidget* parent, FigureUIPosition slot) : QDialog(parent) { setWindowTitle(tr("Infinity Figure Creator")); setObjectName(QStringLiteral("infinity_creator")); @@ -205,11 +207,14 @@ CreateFigureDialog::CreateFigureDialog(QWidget* parent, u8 slot) : QDialog(paren { const auto figure = entry.second; // Only display entry if it is a piece appropriate for the slot - if ((slot == 0 && + if ((slot == FigureUIPosition::HexagonDiscOne && ((figure > 0x1E8480 && figure < 0x2DC6BF) || (figure > 0x3D0900 && figure < 0x4C4B3F))) || - ((slot == 1 || slot == 2) && (figure > 0x3D0900 && figure < 0x4C4B3F)) || - ((slot == 3 || slot == 6) && figure < 0x1E847F) || - ((slot == 4 || slot == 5 || slot == 7 || slot == 8) && + ((slot == FigureUIPosition::HexagonDiscTwo || slot == FigureUIPosition::HexagonDiscThree) && + (figure > 0x3D0900 && figure < 0x4C4B3F)) || + ((slot == FigureUIPosition::PlayerOne || slot == FigureUIPosition::PlayerTwo) && + figure < 0x1E847F) || + ((slot == FigureUIPosition::P1AbilityOne || slot == FigureUIPosition::P1AbilityTwo || + slot == FigureUIPosition::P2AbilityOne || slot == FigureUIPosition::P2AbilityTwo) && (figure > 0x2DC6C0 && figure < 0x3D08FF))) { const auto figure_name = QString::fromStdString(entry.first); diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h index e619e9b903..3350ff0b94 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.h @@ -20,6 +20,11 @@ namespace Core enum class State; } +namespace IOS::HLE::USB +{ +enum class FigureUIPosition : u8; +} + class InfinityBaseWindow : public QWidget { Q_OBJECT @@ -32,13 +37,13 @@ protected: private: void CreateMainWindow(); - void AddFigureSlot(QVBoxLayout* vbox_group, QString name, u8 slot); + void AddFigureSlot(QVBoxLayout* vbox_group, QString name, IOS::HLE::USB::FigureUIPosition slot); void OnEmulationStateChanged(Core::State state); void EmulateBase(bool emulate); - void ClearFigure(u8 slot); - void LoadFigure(u8 slot); - void CreateFigure(u8 slot); - void LoadFigurePath(u8 slot, const QString& path); + void ClearFigure(IOS::HLE::USB::FigureUIPosition slot); + void LoadFigure(IOS::HLE::USB::FigureUIPosition slot); + void CreateFigure(IOS::HLE::USB::FigureUIPosition slot); + void LoadFigurePath(IOS::HLE::USB::FigureUIPosition slot, const QString& path); QCheckBox* m_checkbox; QGroupBox* m_group_figures; @@ -49,7 +54,7 @@ class CreateFigureDialog : public QDialog Q_OBJECT public: - explicit CreateFigureDialog(QWidget* parent, u8 slot); + explicit CreateFigureDialog(QWidget* parent, IOS::HLE::USB::FigureUIPosition slot); QString GetFilePath() const; protected: From c46c010ae354074db017ebc45c84760e13cc240b Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 27 Jun 2024 14:30:16 -0700 Subject: [PATCH 134/296] AchievementManager: Fix -Wignored-qualifiers warning Fix warning on Android builder by returning bool instead of const bool. --- Source/Core/Core/AchievementManager.cpp | 2 +- Source/Core/Core/AchievementManager.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c85f6f0f59..dbb8da05bc 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -341,7 +341,7 @@ AchievementManager::RichPresence AchievementManager::GetRichPresence() const return m_rich_presence; } -const bool AchievementManager::AreChallengesUpdated() const +bool AchievementManager::AreChallengesUpdated() const { return m_challenges_updated; } diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index c26d3bcf96..6be2006c47 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -116,7 +116,7 @@ public: const Badge& GetAchievementBadge(AchievementId id, bool locked) const; const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id); RichPresence GetRichPresence() const; - const bool AreChallengesUpdated() const; + bool AreChallengesUpdated() const; void ResetChallengesUpdated(); const std::unordered_set& GetActiveChallenges() const; std::vector GetActiveLeaderboards() const; From bef2275f319d07c36a93c65f2c76d20315f6f59e Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Fri, 28 Jun 2024 17:57:40 +0200 Subject: [PATCH 135/296] Core/PatchEngine: Remove remnants of Speedhack system All usages of this have been removed many years ago in cbe9c3e040a466bba410f025e026ed84f3f8b1c0 --- Source/Core/Core/PatchEngine.cpp | 37 ----------------------- Source/Core/Core/PatchEngine.h | 2 -- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 3 -- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 3 -- 4 files changed, 45 deletions(-) diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index 8aac8f1397..f020c754eb 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -10,7 +10,6 @@ #include #include #include -#include #include #include #include @@ -48,7 +47,6 @@ constexpr std::array s_patch_type_strings{{ static std::vector s_on_frame; static std::vector s_on_frame_memory; static std::mutex s_on_frame_memory_mutex; -static std::map s_speed_hacks; const char* PatchTypeAsString(PatchType type) { @@ -175,38 +173,6 @@ void SavePatchSection(Common::IniFile* local_ini, const std::vector& patc local_ini->SetLines("OnFrame", lines); } -static void LoadSpeedhacks(const std::string& section, Common::IniFile& ini) -{ - std::vector keys; - ini.GetKeys(section, &keys); - for (const std::string& key : keys) - { - std::string value; - ini.GetOrCreateSection(section)->Get(key, &value, "BOGUS"); - if (value != "BOGUS") - { - u32 address; - u32 cycles; - bool success = true; - success &= TryParse(key, &address); - success &= TryParse(value, &cycles); - if (success) - { - s_speed_hacks[address] = cycles; - } - } - } -} - -u32 GetSpeedhackCycles(const u32 addr) -{ - const auto iter = s_speed_hacks.find(addr); - if (iter == s_speed_hacks.end()) - return 0; - - return iter->second; -} - void LoadPatches() { const auto& sconfig = SConfig::GetInstance(); @@ -227,8 +193,6 @@ void LoadPatches() Gecko::SetActiveCodes(Gecko::LoadCodes(globalIni, localIni)); ActionReplay::LoadAndApplyCodes(globalIni, localIni); } - - LoadSpeedhacks("Speedhacks", merged); } static void ApplyPatches(const Core::CPUThreadGuard& guard, const std::vector& patches) @@ -360,7 +324,6 @@ bool ApplyFramePatches(Core::System& system) void Shutdown() { s_on_frame.clear(); - s_speed_hacks.clear(); ActionReplay::ApplyCodes({}); Gecko::Shutdown(); } diff --git a/Source/Core/Core/PatchEngine.h b/Source/Core/Core/PatchEngine.h index 128eda26c9..69ec0c9bb7 100644 --- a/Source/Core/Core/PatchEngine.h +++ b/Source/Core/Core/PatchEngine.h @@ -49,8 +49,6 @@ struct Patch const char* PatchTypeAsString(PatchType type); -u32 GetSpeedhackCycles(const u32 addr); - std::optional DeserializeLine(std::string line); std::string SerializeLine(const PatchEntry& entry); void LoadPatchSection(const std::string& section, std::vector* patches, diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index ce63b2e3c4..3c27e16fad 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -958,9 +958,6 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) js.fastmemLoadStore = nullptr; js.fixupExceptionHandler = false; - if (!m_enable_debugging) - js.downcountAmount += PatchEngine::GetSpeedhackCycles(js.compilerPC); - if (i == (code_block.m_num_instructions - 1)) { js.isLastInstruction = true; diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index 6db978402f..e5e6f76dda 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -1145,9 +1145,6 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) js.downcountAmount += opinfo->num_cycles; js.isLastInstruction = i == (code_block.m_num_instructions - 1); - if (!m_enable_debugging) - js.downcountAmount += PatchEngine::GetSpeedhackCycles(js.compilerPC); - // Skip calling UpdateLastUsed for lmw/stmw - it usually hurts more than it helps if (op.inst.OPCD != 46 && op.inst.OPCD != 47) gpr.UpdateLastUsed(op.regsIn | op.regsOut); From 56e1c234133f2f7cbbd5b5f6efa9e5f85b4f97c4 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 26 Jun 2024 22:42:01 -0400 Subject: [PATCH 136/296] Fixed floating overlapping leaderboard bucket headers --- .../AchievementLeaderboardWidget.cpp | 21 +++++++------------ 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp index 2a1f07b8da..c15afea34f 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp @@ -51,7 +51,8 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all) for (u32 bucket = 0; bucket < leaderboard_list->num_buckets; bucket++) { const auto& leaderboard_bucket = leaderboard_list->buckets[bucket]; - m_common_layout->addWidget(new QLabel(tr(leaderboard_bucket.label))); + m_common_layout->addWidget(new QLabel(tr(leaderboard_bucket.label)), row, 0); + row += 2; for (u32 board = 0; board < leaderboard_bucket.num_leaderboards; board++) { const auto* leaderboard = leaderboard_bucket.leaderboards[board]; @@ -65,24 +66,18 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all) QVBoxLayout* a_col_left = new QVBoxLayout(); a_col_left->addWidget(a_title); a_col_left->addWidget(a_description); - if (row > 0) - { - QFrame* a_divider = new QFrame(); - a_divider->setFrameShape(QFrame::HLine); - m_common_layout->addWidget(a_divider, row - 1, 0); - } + QFrame* a_divider = new QFrame(); + a_divider->setFrameShape(QFrame::HLine); + m_common_layout->addWidget(a_divider, row - 1, 0); m_common_layout->addLayout(a_col_left, row, 0); for (size_t ix = 0; ix < 4; ix++) { QVBoxLayout* a_col = new QVBoxLayout(); for (size_t jx = 0; jx < 3; jx++) a_col->addWidget(new QLabel(QStringLiteral("---"))); - if (row > 0) - { - QFrame* a_divider = new QFrame(); - a_divider->setFrameShape(QFrame::HLine); - m_common_layout->addWidget(a_divider, row - 1, static_cast(ix) + 1); - } + QFrame* a_divider_2 = new QFrame(); + a_divider_2->setFrameShape(QFrame::HLine); + m_common_layout->addWidget(a_divider_2, row - 1, static_cast(ix) + 1); m_common_layout->addLayout(a_col, row, static_cast(ix) + 1); } row += 2; From 0615db9e2ec81290734c23f67fa14b86b6fb51f6 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 27 Jun 2024 00:02:39 -0400 Subject: [PATCH 137/296] Made progress bars more legible in dark mode --- Source/Core/DolphinQt/Styles/Dark/dark.qss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Source/Core/DolphinQt/Styles/Dark/dark.qss b/Source/Core/DolphinQt/Styles/Dark/dark.qss index cfaf873feb..4ef591c1ee 100644 --- a/Source/Core/DolphinQt/Styles/Dark/dark.qss +++ b/Source/Core/DolphinQt/Styles/Dark/dark.qss @@ -493,3 +493,10 @@ QTableCornerButton::section { border-left: 0px; border-bottom: 0px; } + +QProgressBar { + border: 2px solid grey; + border-radius: 5px; + background-color: #202020; + } + \ No newline at end of file From de7bf2b6a58f0bb39da7d727ee05943f306b136f Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 27 Jun 2024 00:35:07 -0400 Subject: [PATCH 138/296] Move achievement dialog scrollbars to top when changing games --- Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp index a0e750c4ba..7793843d68 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp @@ -7,6 +7,8 @@ #include #include +#include +#include #include #include @@ -83,6 +85,8 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite m_header_widget->UpdateData(); m_progress_widget->UpdateData(true); m_leaderboard_widget->UpdateData(true); + static_cast(m_tab_widget->widget(1))->verticalScrollBar()->setValue(0); + static_cast(m_tab_widget->widget(2))->verticalScrollBar()->setValue(0); } else { From 75a0a1ed67cd173e378dfbc34b02a52716caa639 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 23:29:08 -0500 Subject: [PATCH 139/296] VideoCommon: update texture asset to properly set near sampler state value --- Source/Core/VideoCommon/Assets/TextureAsset.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/VideoCommon/Assets/TextureAsset.cpp b/Source/Core/VideoCommon/Assets/TextureAsset.cpp index 484e89c19d..b7781d4667 100644 --- a/Source/Core/VideoCommon/Assets/TextureAsset.cpp +++ b/Source/Core/VideoCommon/Assets/TextureAsset.cpp @@ -78,11 +78,11 @@ bool ParseSampler(const VideoCommon::CustomAssetLibrary::AssetID& asset_id, sampler->tm0.mag_filter = FilterMode::Linear; sampler->tm0.mipmap_filter = FilterMode::Linear; } - else if (sampler_state_filter == "point") + else if (sampler_state_filter == "near") { - sampler->tm0.min_filter = FilterMode::Linear; - sampler->tm0.mag_filter = FilterMode::Linear; - sampler->tm0.mipmap_filter = FilterMode::Linear; + sampler->tm0.min_filter = FilterMode::Near; + sampler->tm0.mag_filter = FilterMode::Near; + sampler->tm0.mipmap_filter = FilterMode::Near; } else { From 1c3402502b5483e86e0253fe044e5a3ed95f801a Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 31 May 2024 23:31:10 -0500 Subject: [PATCH 140/296] VideoCommon: set individual texture asset filter/wrap values when loading from json --- .../Core/VideoCommon/Assets/TextureAsset.cpp | 191 ++++++++++++------ 1 file changed, 124 insertions(+), 67 deletions(-) diff --git a/Source/Core/VideoCommon/Assets/TextureAsset.cpp b/Source/Core/VideoCommon/Assets/TextureAsset.cpp index b7781d4667..425b84207c 100644 --- a/Source/Core/VideoCommon/Assets/TextureAsset.cpp +++ b/Source/Core/VideoCommon/Assets/TextureAsset.cpp @@ -3,6 +3,9 @@ #include "VideoCommon/Assets/TextureAsset.h" +#include + +#include "Common/JsonUtil.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" #include "VideoCommon/BPMemory.h" @@ -11,6 +14,45 @@ namespace VideoCommon { namespace { +std::optional ReadWrapModeFromJSON(const picojson::object& json, const std::string& uv) +{ + auto uv_mode = ReadStringFromJson(json, uv).value_or(""); + Common::ToLower(&uv_mode); + + if (uv_mode == "clamp") + { + return WrapMode::Clamp; + } + else if (uv_mode == "repeat") + { + return WrapMode::Repeat; + } + else if (uv_mode == "mirror") + { + return WrapMode::Mirror; + } + + return std::nullopt; +} + +std::optional ReadFilterModeFromJSON(const picojson::object& json, + const std::string& filter) +{ + auto filter_mode = ReadStringFromJson(json, filter).value_or(""); + Common::ToLower(&filter_mode); + + if (filter_mode == "linear") + { + return FilterMode::Linear; + } + else if (filter_mode == "near") + { + return FilterMode::Near; + } + + return std::nullopt; +} + bool ParseSampler(const VideoCommon::CustomAssetLibrary::AssetID& asset_id, const picojson::object& json, SamplerState* sampler) { @@ -19,78 +61,93 @@ bool ParseSampler(const VideoCommon::CustomAssetLibrary::AssetID& asset_id, *sampler = RenderState::GetLinearSamplerState(); - const auto sampler_state_mode_iter = json.find("texture_mode"); - if (sampler_state_mode_iter == json.end()) + const auto sampler_state_wrap_iter = json.find("wrap_mode"); + if (sampler_state_wrap_iter != json.end()) { - ERROR_LOG_FMT(VIDEO, "Asset '{}' failed to parse json, 'texture_mode' not found", asset_id); - return false; - } - if (!sampler_state_mode_iter->second.is()) - { - ERROR_LOG_FMT(VIDEO, "Asset '{}' failed to parse json, 'texture_mode' is not the right type", - asset_id); - return false; - } - std::string sampler_state_mode = sampler_state_mode_iter->second.to_str(); - Common::ToLower(&sampler_state_mode); + if (!sampler_state_wrap_iter->second.is()) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' failed to parse json, 'wrap_mode' is not the right type", + asset_id); + return false; + } + const auto sampler_state_wrap_obj = sampler_state_wrap_iter->second.get(); - if (sampler_state_mode == "clamp") - { - sampler->tm0.wrap_u = WrapMode::Clamp; - sampler->tm0.wrap_v = WrapMode::Clamp; - } - else if (sampler_state_mode == "repeat") - { - sampler->tm0.wrap_u = WrapMode::Repeat; - sampler->tm0.wrap_v = WrapMode::Repeat; - } - else if (sampler_state_mode == "mirrored_repeat") - { - sampler->tm0.wrap_u = WrapMode::Mirror; - sampler->tm0.wrap_v = WrapMode::Mirror; - } - else - { - ERROR_LOG_FMT(VIDEO, - "Asset '{}' failed to parse json, 'texture_mode' has an invalid " - "value '{}'", - asset_id, sampler_state_mode); - return false; + if (const auto mode = ReadWrapModeFromJSON(sampler_state_wrap_obj, "u")) + { + sampler->tm0.wrap_u = *mode; + } + else + { + ERROR_LOG_FMT(VIDEO, + "Asset '{}' failed to parse json, 'wrap_mode[u]' has an invalid " + "value", + asset_id); + return false; + } + + if (const auto mode = ReadWrapModeFromJSON(sampler_state_wrap_obj, "v")) + { + sampler->tm0.wrap_v = *mode; + } + else + { + ERROR_LOG_FMT(VIDEO, + "Asset '{}' failed to parse json, 'wrap_mode[v]' has an invalid " + "value", + asset_id); + return false; + } } - const auto sampler_state_filter_iter = json.find("texture_filter"); - if (sampler_state_filter_iter == json.end()) + const auto sampler_state_filter_iter = json.find("filter_mode"); + if (sampler_state_filter_iter != json.end()) { - ERROR_LOG_FMT(VIDEO, "Asset '{}' failed to parse json, 'texture_filter' not found", asset_id); - return false; - } - if (!sampler_state_filter_iter->second.is()) - { - ERROR_LOG_FMT(VIDEO, "Asset '{}' failed to parse json, 'texture_filter' is not the right type", - asset_id); - return false; - } - std::string sampler_state_filter = sampler_state_filter_iter->second.to_str(); - Common::ToLower(&sampler_state_filter); - if (sampler_state_filter == "linear") - { - sampler->tm0.min_filter = FilterMode::Linear; - sampler->tm0.mag_filter = FilterMode::Linear; - sampler->tm0.mipmap_filter = FilterMode::Linear; - } - else if (sampler_state_filter == "near") - { - sampler->tm0.min_filter = FilterMode::Near; - sampler->tm0.mag_filter = FilterMode::Near; - sampler->tm0.mipmap_filter = FilterMode::Near; - } - else - { - ERROR_LOG_FMT(VIDEO, - "Asset '{}' failed to parse json, 'texture_filter' has an invalid " - "value '{}'", - asset_id, sampler_state_filter); - return false; + if (!sampler_state_filter_iter->second.is()) + { + ERROR_LOG_FMT(VIDEO, "Asset '{}' failed to parse json, 'filter_mode' is not the right type", + asset_id); + return false; + } + const auto sampler_state_filter_obj = sampler_state_filter_iter->second.get(); + + if (const auto mode = ReadFilterModeFromJSON(sampler_state_filter_obj, "min")) + { + sampler->tm0.min_filter = *mode; + } + else + { + ERROR_LOG_FMT(VIDEO, + "Asset '{}' failed to parse json, 'filter_mode[min]' has an invalid " + "value", + asset_id); + return false; + } + + if (const auto mode = ReadFilterModeFromJSON(sampler_state_filter_obj, "mag")) + { + sampler->tm0.mag_filter = *mode; + } + else + { + ERROR_LOG_FMT(VIDEO, + "Asset '{}' failed to parse json, 'filter_mode[mag]' has an invalid " + "value", + asset_id); + return false; + } + + if (const auto mode = ReadFilterModeFromJSON(sampler_state_filter_obj, "mipmap")) + { + sampler->tm0.mipmap_filter = *mode; + } + else + { + ERROR_LOG_FMT(VIDEO, + "Asset '{}' failed to parse json, 'filter_mode[mipmap]' has an invalid " + "value", + asset_id); + return false; + } } return true; From 36ccbbc06edd6130948feef58fb8c1433719711c Mon Sep 17 00:00:00 2001 From: iwubcode Date: Tue, 11 Jun 2024 20:25:40 -0500 Subject: [PATCH 141/296] VideoCommon: add ability to serialize a texture asset metadata to json --- .../Core/VideoCommon/Assets/TextureAsset.cpp | 55 +++++++++++++++++++ Source/Core/VideoCommon/Assets/TextureAsset.h | 1 + 2 files changed, 56 insertions(+) diff --git a/Source/Core/VideoCommon/Assets/TextureAsset.cpp b/Source/Core/VideoCommon/Assets/TextureAsset.cpp index 425b84207c..335ed73b33 100644 --- a/Source/Core/VideoCommon/Assets/TextureAsset.cpp +++ b/Source/Core/VideoCommon/Assets/TextureAsset.cpp @@ -199,6 +199,61 @@ bool TextureData::FromJson(const CustomAssetLibrary::AssetID& asset_id, return true; } +void TextureData::ToJson(picojson::object* obj, const TextureData& data) +{ + if (!obj) [[unlikely]] + return; + + auto& json_obj = *obj; + switch (data.m_type) + { + case TextureData::Type::Type_Texture2D: + json_obj.emplace("type", "texture2d"); + break; + case TextureData::Type::Type_TextureCube: + json_obj.emplace("type", "texturecube"); + break; + case TextureData::Type::Type_Undefined: + break; + }; + + auto wrap_mode_to_string = [](WrapMode mode) { + switch (mode) + { + case WrapMode::Clamp: + return "clamp"; + case WrapMode::Mirror: + return "mirror"; + case WrapMode::Repeat: + return "repeat"; + }; + + return ""; + }; + auto filter_mode_to_string = [](FilterMode mode) { + switch (mode) + { + case FilterMode::Linear: + return "linear"; + case FilterMode::Near: + return "near"; + }; + + return ""; + }; + + picojson::object wrap_mode; + wrap_mode.emplace("u", wrap_mode_to_string(data.m_sampler.tm0.wrap_u)); + wrap_mode.emplace("v", wrap_mode_to_string(data.m_sampler.tm0.wrap_v)); + json_obj.emplace("wrap_mode", wrap_mode); + + picojson::object filter_mode; + filter_mode.emplace("min", filter_mode_to_string(data.m_sampler.tm0.min_filter)); + filter_mode.emplace("mag", filter_mode_to_string(data.m_sampler.tm0.mag_filter)); + filter_mode.emplace("mipmap", filter_mode_to_string(data.m_sampler.tm0.mipmap_filter)); + json_obj.emplace("filter_mode", filter_mode); +} + CustomAssetLibrary::LoadInfo GameTextureAsset::LoadImpl(const CustomAssetLibrary::AssetID& asset_id) { auto potential_data = std::make_shared(); diff --git a/Source/Core/VideoCommon/Assets/TextureAsset.h b/Source/Core/VideoCommon/Assets/TextureAsset.h index fc9e3166df..e0929a79f0 100644 --- a/Source/Core/VideoCommon/Assets/TextureAsset.h +++ b/Source/Core/VideoCommon/Assets/TextureAsset.h @@ -17,6 +17,7 @@ struct TextureData { static bool FromJson(const CustomAssetLibrary::AssetID& asset_id, const picojson::object& json, TextureData* data); + static void ToJson(picojson::object* obj, const TextureData& data); enum class Type { Type_Undefined, From d877cfa4e2c3baf3cb8b8449d1608e1c2f05208c Mon Sep 17 00:00:00 2001 From: Sintendo <3380580+Sintendo@users.noreply.github.com> Date: Wed, 26 Jun 2024 00:07:20 +0200 Subject: [PATCH 142/296] JitArm64_Integer: Optimize subfic for zero When the immediate value is zero, we can do a negation. On ARM64 the NEG /NEGS instructions are just an alias for SUB/SUBS with a hardcoded WZR. Before: ``` ldr w22, [x29, #0x28] mov w21, #0x0 ; =0 subs w22, w21, w22 ``` After: ``` ldr w22, [x29, #0x28] negs w22, w22 ``` --- .../Core/PowerPC/JitArm64/JitArm64_Integer.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp index 7e5817ac0c..f3d263379c 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp @@ -1392,13 +1392,19 @@ void JitArm64::subfic(UGeckoInstruction inst) } else { - const bool allocate_reg = d == a; - gpr.BindToRegister(d, allocate_reg); + const bool will_read = d == a; + const bool is_zero = imm == 0; + const bool allocate_reg = will_read && !is_zero; + gpr.BindToRegister(d, will_read); // d = imm - a ARM64Reg RD = gpr.R(d); - ARM64Reg WA = allocate_reg ? gpr.GetReg() : RD; - MOVI2R(WA, imm); + ARM64Reg WA = ARM64Reg::WZR; + if (!is_zero) + { + WA = will_read ? gpr.GetReg() : RD; + MOVI2R(WA, imm); + } CARRY_IF_NEEDED(SUB, SUBS, RD, WA, gpr.R(a)); if (allocate_reg) From 35f383d9b00b628cb1079be94649934bc67ab991 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sat, 29 Jun 2024 22:59:40 -0400 Subject: [PATCH 143/296] ScmRevGen: Set commits ahead to zero when on a tag --- CMake/ScmRevGen.cmake | 18 +++++++++++++----- Source/Core/Common/make_scmrev.h.js | 26 ++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 5 deletions(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index 65aa8c78c5..d3e59a578f 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -22,16 +22,17 @@ if(GIT_FOUND) execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} rev-list --count HEAD ^master OUTPUT_VARIABLE DOLPHIN_WC_COMMITS_AHEAD_MASTER OUTPUT_STRIP_TRAILING_WHITESPACE) + + # defines DOLPHIN_WC_TAG + execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --exact-match HEAD + OUTPUT_VARIABLE DOLPHIN_WC_TAG + OUTPUT_STRIP_TRAILING_WHITESPACE) endif() # version number set(DOLPHIN_VERSION_MAJOR "5") set(DOLPHIN_VERSION_MINOR "0") -if(DOLPHIN_WC_BRANCH STREQUAL "stable") - set(DOLPHIN_VERSION_PATCH "0") -else() - set(DOLPHIN_VERSION_PATCH ${DOLPHIN_WC_REVISION}) -endif() +set(DOLPHIN_VERSION_PATCH ${DOLPHIN_WC_REVISION}) # If Dolphin is not built from a Git repository, default the version info to # reasonable values. @@ -42,6 +43,13 @@ if(NOT DOLPHIN_WC_REVISION) set(DOLPHIN_WC_COMMITS_AHEAD_MASTER 0) endif() +# If this is a tag (i.e. a release), then set the current patch version and +# the number of commits ahead to zero. +if(DOLPHIN_WC_TAG) + set(DOLPHIN_VERSION_PATCH "0") + set(DOLPHIN_WC_COMMITS_AHEAD_MASTER 0) +endif() + function(configure_source_file path) configure_file( "${PROJECT_SOURCE_DIR}/${path}.in" diff --git a/Source/Core/Common/make_scmrev.h.js b/Source/Core/Common/make_scmrev.h.js index 298f4e0505..b2ff644ecc 100644 --- a/Source/Core/Common/make_scmrev.h.js +++ b/Source/Core/Common/make_scmrev.h.js @@ -6,6 +6,7 @@ var cmd_revision = " rev-parse HEAD"; var cmd_describe = " describe --always --long --dirty"; var cmd_branch = " rev-parse --abbrev-ref HEAD"; var cmd_commits_ahead = " rev-list --count HEAD ^master"; +var cmd_get_tag = " describe --exact-match HEAD"; function GetGitExe() { @@ -59,6 +60,25 @@ function GetFirstStdOutLine(cmd) } } +function AttemptToExecuteCommand(cmd) +{ + try + { + var exec = wshShell.Exec(cmd) + + // wait until the command has finished + while (exec.Status == 0) {} + + return exec.ExitCode; + } + catch (e) + { + // catch "the system cannot find the file specified" error + WScript.Echo("Failed to exec " + cmd + " this should never happen"); + WScript.Quit(1); + } +} + function GetFileContents(f) { try @@ -88,6 +108,12 @@ if (default_update_track == "%DOLPHIN_DEFAULT_UPDATE_TRACK%") default_update_tra // remove hash (and trailing "-0" if needed) from description describe = describe.replace(/(-0)?-[^-]+(-dirty)?$/, '$2'); +// set commits ahead to zero if on a tag +if (AttemptToExecuteCommand(gitexe + cmd_get_tag) == 0) +{ + commits_ahead = "0"; +} + var out_contents = "#define SCM_REV_STR \"" + revision + "\"\n" + "#define SCM_DESC_STR \"" + describe + "\"\n" + From 0e58b3cfb7d8cf24fd42312951fe6cd705e62ffd Mon Sep 17 00:00:00 2001 From: Sintendo <3380580+Sintendo@users.noreply.github.com> Date: Sun, 30 Jun 2024 09:53:48 +0200 Subject: [PATCH 144/296] JitArm64_FloatingPoint: Remove unused temp_gpr from fp_arith --- Source/Core/Core/PowerPC/JitArm64/JitArm64_FloatingPoint.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_FloatingPoint.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_FloatingPoint.cpp index d662c9c3cb..06e3974b9c 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_FloatingPoint.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_FloatingPoint.cpp @@ -132,8 +132,6 @@ void JitArm64::fp_arith(UGeckoInstruction inst) result_reg = reg_encoder(V1Q); } - const ARM64Reg temp_gpr = m_accurate_nans && !single ? gpr.GetReg() : ARM64Reg::INVALID_REG; - switch (op5) { case 18: @@ -251,8 +249,6 @@ void JitArm64::fp_arith(UGeckoInstruction inst) fpr.Unlock(V0Q); if (V1Q != ARM64Reg::INVALID_REG) fpr.Unlock(V1Q); - if (temp_gpr != ARM64Reg::INVALID_REG) - gpr.Unlock(temp_gpr); if (output_is_single) { From 9af7772d91d085ee4377143a67f87f63e99130e1 Mon Sep 17 00:00:00 2001 From: Sintendo <3380580+Sintendo@users.noreply.github.com> Date: Sun, 30 Jun 2024 09:54:09 +0200 Subject: [PATCH 145/296] JitArm64_Paired: Remove unused temp_gpr from ps_arith --- Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp index 398afc8d69..23a06e48ca 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp @@ -141,8 +141,6 @@ void JitArm64::ps_arith(UGeckoInstruction inst) result_reg = reg_encoder(V1Q); } - const ARM64Reg temp_gpr = m_accurate_nans && !singles ? gpr.GetReg() : ARM64Reg::INVALID_REG; - if (m_accurate_nans) { if (V0Q == ARM64Reg::INVALID_REG) @@ -304,8 +302,6 @@ void JitArm64::ps_arith(UGeckoInstruction inst) fpr.Unlock(V1Q); if (V2Q != ARM64Reg::INVALID_REG) fpr.Unlock(V2Q); - if (temp_gpr != ARM64Reg::INVALID_REG) - gpr.Unlock(temp_gpr); ASSERT_MSG(DYNA_REC, singles == singles_func(), "Register allocation turned singles into doubles in the middle of ps_arith"); From 33081184bbfbd43390b16d23ef630ac8a5648851 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 13 Jun 2024 19:58:18 -0400 Subject: [PATCH 146/296] Handle Pausing in AchievementManager There are two pieces of functionality to be added here. One, we want to disallow pausing too frequently, as it may be used as an artificial slowdown. This is handled within the client, which can tell us if a pause is allowed. Two, we want to call rc_client_idle on a periodic basis so the connection with the server can be maintained even while the emulator is paused. --- Source/Core/Core/AchievementManager.cpp | 60 ++++++++++++++++++++++++- Source/Core/Core/AchievementManager.h | 4 ++ Source/Core/Core/Core.cpp | 12 ++++- Source/Core/Core/Core.h | 3 +- 4 files changed, 74 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 8227df450b..223b13a209 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -24,6 +24,7 @@ #include "Core/Config/AchievementSettings.h" #include "Core/Core.h" #include "Core/HW/Memmap.h" +#include "Core/HW/VideoInterface.h" #include "Core/PowerPC/MMU.h" #include "Core/System.h" #include "DiscIO/Blob.h" @@ -46,7 +47,10 @@ void AchievementManager::Init() LoadDefaultBadges(); if (!m_client && Config::Get(Config::RA_ENABLED)) { - m_client = rc_client_create(MemoryVerifier, Request); + { + std::lock_guard lg{m_lock}; + m_client = rc_client_create(MemoryVerifier, Request); + } std::string host_url = Config::Get(Config::RA_HOST_URL); if (!host_url.empty()) rc_client_set_host(m_client, host_url.c_str()); @@ -160,6 +164,9 @@ bool AchievementManager::IsGameLoaded() const void AchievementManager::SetBackgroundExecutionAllowed(bool allowed) { + m_background_execution_allowed = allowed; + if (allowed && Core::GetState(*AchievementManager::GetInstance().m_system) == Core::State::Paused) + DoIdle(); } void AchievementManager::FetchPlayerBadge() @@ -246,6 +253,54 @@ void AchievementManager::DoFrame() } } +bool AchievementManager::CanPause() +{ + u32 frames_to_next_pause = 0; + bool can_pause = rc_client_can_pause(m_client, &frames_to_next_pause); + if (!can_pause) + { + OSD::AddMessage("Cannot spam pausing in hardcore mode.", OSD::Duration::VERY_LONG, + OSD::Color::RED); + OSD::AddMessage( + fmt::format("Can pause in {} seconds.", + static_cast(frames_to_next_pause) / + Core::System::GetInstance().GetVideoInterface().GetTargetRefreshRate()), + OSD::Duration::VERY_LONG, OSD::Color::RED); + } + return can_pause; +} + +void AchievementManager::DoIdle() +{ + std::thread([this]() { + while (true) + { + Common::SleepCurrentThread(1000); + { + std::lock_guard lg{m_lock}; + if (!m_system || Core::GetState(*m_system) != Core::State::Paused) + return; + if (!m_background_execution_allowed) + return; + if (!m_client || !IsGameLoaded()) + return; + } + // rc_client_idle peeks at memory to recalculate rich presence and therefore + // needs to be on host or CPU thread to access memory. + Core::QueueHostJob([this](Core::System& system) { + std::lock_guard lg{m_lock}; + if (!m_system || Core::GetState(*m_system) != Core::State::Paused) + return; + if (!m_background_execution_allowed) + return; + if (!m_client || !IsGameLoaded()) + return; + rc_client_idle(m_client); + }); + } + }).detach(); +} + std::recursive_mutex& AchievementManager::GetLock() { return m_lock; @@ -444,8 +499,8 @@ void AchievementManager::CloseGame() void AchievementManager::Logout() { { - std::lock_guard lg{m_lock}; CloseGame(); + std::lock_guard lg{m_lock}; m_player_badge.width = 0; m_player_badge.height = 0; m_player_badge.data.clear(); @@ -462,6 +517,7 @@ void AchievementManager::Shutdown() { CloseGame(); m_queue.Shutdown(); + std::lock_guard lg{m_lock}; // DON'T log out - keep those credentials for next run. rc_client_destroy(m_client); m_client = nullptr; diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 935b4c0948..f8ce568e62 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -103,6 +103,9 @@ public: void DoFrame(); + bool CanPause(); + void DoIdle(); + std::recursive_mutex& GetLock(); void SetHardcoreMode(); bool IsHardcoreModeActive() const; @@ -194,6 +197,7 @@ private: Badge m_default_game_badge; Badge m_default_unlocked_badge; Badge m_default_locked_badge; + std::atomic_bool m_background_execution_allowed = true; Badge m_player_badge; Hash m_game_hash{}; u32 m_game_id = 0; diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index de791d620c..572aeb0dcd 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -358,7 +358,7 @@ static void CPUSetInitialExecutionState(bool force_paused = false) // SetState must be called on the host thread, so we defer it for later. QueueHostJob([force_paused](Core::System& system) { bool paused = SConfig::GetInstance().bBootToPause || force_paused; - SetState(system, paused ? State::Paused : State::Running); + SetState(system, paused ? State::Paused : State::Running, true, true); Host_UpdateDisasmDialog(); Host_UpdateMainFrame(); Host_Message(HostMessageID::WMUserCreate); @@ -698,7 +698,8 @@ static void EmuThread(Core::System& system, std::unique_ptr boot // Set or get the running state -void SetState(Core::System& system, State state, bool report_state_change) +void SetState(Core::System& system, State state, bool report_state_change, + bool initial_execution_state) { // State cannot be controlled until the CPU Thread is operational if (s_state.load() != State::Running) @@ -707,11 +708,18 @@ void SetState(Core::System& system, State state, bool report_state_change) switch (state) { case State::Paused: +#ifdef USE_RETRO_ACHIEVEMENTS + if (!initial_execution_state && !AchievementManager::GetInstance().CanPause()) + return; +#endif // USE_RETRO_ACHIEVEMENTS // NOTE: GetState() will return State::Paused immediately, even before anything has // stopped (including the CPU). system.GetCPU().EnableStepping(true); // Break Wiimote::Pause(); ResetRumble(); +#ifdef USE_RETRO_ACHIEVEMENTS + AchievementManager::GetInstance().DoIdle(); +#endif // USE_RETRO_ACHIEVEMENTS break; case State::Running: { diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index cf30cf3866..0b414534a5 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -148,7 +148,8 @@ bool IsHostThread(); bool WantsDeterminism(); // [NOT THREADSAFE] For use by Host only -void SetState(Core::System& system, State state, bool report_state_change = true); +void SetState(Core::System& system, State state, bool report_state_change = true, + bool initial_execution_state = false); State GetState(Core::System& system); void SaveScreenShot(); From 1ad982f4695cd2d1c8b83036988a1d4fb8d1b103 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 30 Jun 2024 16:55:47 -0400 Subject: [PATCH 147/296] ScmRevGen: Silence output on the standard error when getting the current tag --- CMake/ScmRevGen.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index d3e59a578f..0faec22eb5 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -26,7 +26,8 @@ if(GIT_FOUND) # defines DOLPHIN_WC_TAG execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --exact-match HEAD OUTPUT_VARIABLE DOLPHIN_WC_TAG - OUTPUT_STRIP_TRAILING_WHITESPACE) + OUTPUT_STRIP_TRAILING_WHITESPACE + ERROR_QUIET) endif() # version number From 79194aae21ed806ef01fd874a36ac8322f09d909 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 30 Jun 2024 16:58:59 -0400 Subject: [PATCH 148/296] Data: Add new macOS app icon --- Data/Dolphin.icns | Bin 103023 -> 341554 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Data/Dolphin.icns b/Data/Dolphin.icns index 4a17b18dec2d820f0bd4d7c3875ac2791c463457..5d33205d6abf9b2c55ddeb0cef55521f248c2385 100644 GIT binary patch literal 341554 zcmc~y&MRhMH8aXgHZ)>j;Fsk44ofy`glX=O&z~GV^;hE;^%b>-;z`()4*q+J20#d@jz#zo{0?Z2-8JNK$j0_A5 znBcMw3z!jXkV3aWrwt4Ye6^k~jv*C{Z=)-Frd}1be}8rlV~V6pfP>^#jjkPw7wu3u z@}Yg!wvBpQ*RI{VVx?)uB11jhJk#F5+alT1R~*TR-fB2?*OmniqAP-u*Rm~DnBpqf z>L@AEme^ML{_FSM@8`Y#`R?~VbK|gFVat#Es=rmA+j+Wte}7<#`I~hI-f_KIcR+jx zljZE{oiW=|4ixWfk@^|hv*6EuS0TV+ zKF~2a}xT|yXbh(Z0mmSTYOaGeZDz#S4AfSo+hBBl1 zpB6cet0&(Wmw3hQj=TN!;j!p&A6ZlOce^h{@UWYiPYy3*>=Bx*?-O^YrgUN9`rC$= zS>GF%@Jtb?l3(!Y1iw*#vDVb}wQKTA4{cdx`};)ut0}j(*>9kHZ7WIAU#?;BvrW@`+qpIJ1}`pk?esjx?y!7Hg2NB*&hzV z8$D|07nbg?DRlbS<=L%p>EViJ3ac5uwr)H=?`Gt*J-k+>Z4ZvU{LxU-lJNYe*YaN- zC9AqJpO%R9zKn2dXH=~?%x}Z2roZ^(#TPCwWK+ZzT-pDzh41l{u!WL!9ydO$iJNfQ z?%K%(l95i=Uq{w4^*@FZ+da-PsRu+C{d^Oi|p7VDOJ{$>biubn#Y zqUR6O8a3a9<*Wr;t_NB_-B|wM?UWKeCdMWE7IyB>u+?*jO^;1n!S;};X)CYJhX$58 zR@1ian8@h+A~UIwF{HnifiG>L*xF4si5fmXBHnLfST*7GnX6yldm70cHvJPZ$MD#n zEiTD&Z)GmraLUhE{rbZnxq_oi0yB~?oVdlb^PCW$!wR)72k#k|ZdDrW_@wA{^`cAY zxqFSpOIUv0yRfxn?V367na}&gs9W&N2xH(Xo;zvvW9Q~N6U(D37wqU;Y&Ab^QDsc* zC+os_3V$ZmGGBBw75LV2>(8nunUg{pVrGB(`-o|Wp+QIA;U!bU4+dC@tlhx7eZ|@r z(S`^3Vzef>@bN2{ZC|xPqPrqf@6pnon+19GFTLTcHSgkyQrx6pBV*^2Vjz}p>vW$( zzFXk!?sn(Sl^FsiulTkXy^=nm<*@GbUb~Q*<*Ki0B#yK0Df&{+&seWgbmyMZ@g5P$ z?gV$moeTd?lt|kke`{OW#BY8Rd81vf)oXluX04R3BO19)lC`l$>&?FU#uGo94S!#p z^H=)UbA6G@Tm?7tWa7+xBiMIK`79cEECj zUxvuVm|N<5^^0z&h$L+J_>1#G;ti%8!#$hap1jWgz3}aiu5ACqCU-t1JzwzkVu0== zt_6nDA3M$^KGQ!IH1BusJ=OR(Y6?A58p?8}3Z8!~^YBf!%$<2%%fDuRYPsIuId6S~ z#s~e!4!?Qrdak2+xPC~Np~^kTK3#i*-fssxj<*ymya`kYC3Ot z9~^dIN%BMHqx&8*PFyPNTJ|V`$2d3H>#**5wzLlxHJ2>9QaW@rluH^)AAPL)a$4|4 z2FqO5^7W!WA9~5;{Lq-{{>Vn#%VXD#<(KBfKKY#>^7zn1rRip!Z;tz~W}8*GBkp7J znjL>#qDptK-23f{|KXF?{PKCO50-w4W!T&NhUv^{y#paKMaAkXyI<8APull9zhX|} zR1>G^zt?o6o^;NWl`CGqUi>Em=eCCmInIYte^-hgG&}G>NaUfL4X4{r=gEuT94VhW z`<>9t))mpmW)+%dzSRth`ORGw-SB)9cY(BAvAxwXmJ8lf^u6-eiO&4obs|~6bB(KF z)UgopB!;jvZ#}+vow0b&#FDpg_ItsZoo}~(4KR|~{b})zZ%?%967#tY)b}#@&bWB= zcw$=6x7D0Wk7rn?m0sJdw0}nT)k2eZ9KUBQc*)8+rz?D>yZVEoC*jVV?Du``1$TZ-b?uEz1vlq^De$*UGZ0>!|z7ojEUmM%IDW`fBT)4)BJVEmlF2B6OQno6RiAK zHgWwv^-a%bZ@5tSH*;TxuwIzPg-6f2w%aV)_n2*Bv3Wx3gKaPE%2xJ%`{wCj!(0`| zVDa-E$3*7B&6_tcdVjp0?W*^y{Y2vDLjOuBPn%}uPnIID^p(!<%igN}^Y}!*-fVvm ze1qv?(W`F9^+z>pRHi+NQu+6s-$m>Z*J)c>hr;{snd2$L4`drZC;iLZ@$%u(whcR-p9H-5&3|$A`^Fn_)9X1qA77Ae zI{wf<{h?+&1Zh&=L3)X5=*Y`_wm+ecxJ-v^0hV1KRnvZd&e^F3`Na00Ef;oNs_L7} zbTj%vVKLhhT}`Xtec$eW?AarK?W5g|&#wy zq+O6E^E={K@|B-^7j2I|5EiSQRVn5_dHKg4-u;|wj;_*J9p|-Qc=Mh~!Bdoi?-jp) zp!r4YoJh=)WgmPN>UA$M>uR3Lwr!i|PAdaP_T|&kKSr5pt-cx^FJ^Spf|DW+Nd{v$))oA0N0=Nwe&d1$s^-BtB@j1|9@Io%As zC^zwyOZBY3<`ufX@15AA=e)D3^Mqja!?w=PM;T|#YT~`>9Xma=;gnHO_NrCvZ*}#L zC0m_dHZ4v^+1KMUtDJM}9y$4l34;55tOH`-+TJePtIx1@?O~lg)8ceq_w^ks_$>7C zMbieEXoWMgFB)dJUi_aXz92$RZJ$IGzu0nR?`WH8rS8$u54H-Ob=_6s>+#{_g84;- z?Rs3BbW%hY^!QukPFkIR#^)THL;w6KX$?{ne_fFKoX7^#}VWvd;Up%>NW;?A#je zg-1LzSNv-i4At;F-dDaf@j{@e>HpP1sZmyk?miIoKYMA?*-QMM74ePBHqQ{hY?Yv1 zv{L5vu~kYwyV)=JdPd!=H@(s$tx@-_O3wd|%)I^U%q_k$uNUjP*d$lD^y26D#X&Dk zWY{a}xBo=LUiHOjq+Mloa!#??nV#<1kJ&~s-{eFK+ z)O&8H>Z;X^o=oM&Uh|gA_U|y$=iZ$9;=t!!cQ1aCED^Bj7Cm2W+=*k8$c>-Et+4#pMljX&7DofLlO z3#VvUJbN)W_#tzTMw?YPRGR zryZh9-3tyoESSFFWjk@u_d+bfag-&TqJ)SPY? z^)=;o^YS}EdAD~6TK(B1k!FADqG-t99ZVBCx(=K#W4<8uS}o3W-M=T<%bv5nHRtqt zCnT!=>dnt&1+EL8tGFIbUi+y0@$rtOdp4)KUjJl&_qN^dN0kpA2j|SFwPU>W$y=Xc z>SCn=)eoDMxeYhu-MK#NRsZgsqP!C?78lpDn?L2M=9yem8-G&#mvZAO8KIteXS7O$ z%p^=0p9U?TvdijJtZej>&0qfpy>8pymHls5#`DkDAI?vYxfJv5k4ck$*F(0;yO|Cc z=rQs8=(6npuvy~G$IQzgcPiZxbN?U7zMp_(r0;Y77UM!`1C;az_ZJXnJ(Otn)s#nsDei9Lc96#YF-ywN_Se< zT}!!i;Mt|eOh?+5@T&Zg_?OmdK zI;VuD%wz*|1_ssLSh~gy3=9kn;I8puyTsF=UM@Ad#tleaV~`CD9(^q33=FEW(5`VT z_m)`K%6Y~4c|xD~9!_NOtl(7o#AUdmL+XiQ)Y3&AO`-wbuHl06Zx`K2y(pHOxjJC= zwnd?lQI65EHaz~Uf&u~^4TgI@^EEoe-BB?&|32^X``O0-@6?~4cQgHc@q6Bh_ad|B z&;0rSef^m~|L5)f{-*eyY1)#WGY3xa5KHX&lfK|uR!6VfV$mfg`@_6vc^i3Y|9{M) zre40{+1`Y6Z+m*B&Q*F#Tt7H%+m#ac?d_NMP7m77w`a@JW%0bW<<3)iHZt;iGi5xV z8_22k`qq(f*^7lwuCKSwxYBa6y}aj@)q#?dH^Hk*-(+TOjV<&!tBm@$&03x%+^XecugYHJ2&-5R#$wOUw?PO-RpXfYT3h?8^zQd1(Z8dy>D|0Xe^u8x3akJ?X1shrT1U4 zEW5+{LcO&5{9OHA`jfrG+TLxLrB}1E*v6pcdf40v`is4fE!?a-$fb1VB%VnNlDvHuTw$x9zuDgSUBhSnokHIK z=6C627ux0A-k0PR{7OLo%Z6)JPH{`^4jh?2@nnM6iK$1^3%(qEd9Aon`smZW{kk=` zZy7(gW2`!@!ja?}Iy1}YIL%AW>dAZlX8O_TM=n}ANq_yPy7&A2x<9`@_r>?+B?_^8 zT+}_&Xa>uMgYDba{rp}Uf6p@S&(13{+}ot*o62N!`(~|m&&a(huqa0ICeN{xk@iBL z3~Sn+Jt;DAPni0cleb5uU*gm6?fQ5A^v|Dh|MO;Tvt||Z_6MCRD>R&EF?dNfpI`j? z#_j8KuA1ha|G&ggEH~~}Q1-qHIlcWp`&;FbjDIlwlrfty_2;P<#WOU{3Yz+FSInyI ze%bqwL(TS-@?FD4Gj#8U=Tuxi@|p24+vHeIohbFjE=h%-L7A)pr>qvN`uySlj>7*d z^DQ36-FfRTbaiFpg!Synzx^~+g_kz3c)3gV)tL`oC${#MH?1+Uin)L3!^9_@F-*zF zpSEn}JM>z6o<-{CmF)L;cqTXGa8FbTFkCzmLOk{};@B@Vehcr_0RY z){_H!5@P2bTrl~ic%t(>;hvN3nSwPU?A9e(Cxz{0)Y>*{$ux)ZEv^td%`f78%)Mc~ z>9Y65na2+nzh9xhZ~k|tI|i#lyw)@5F?Kw^So*|YOwRgYsQaBy|G%zzrc?aJ(ZQ(p zwDuv3#I?@1LR8-R$S$_u{pj)Sd#0~<7o3deYAaz4NVh+J_UZoYGjEvfFTb}rZNahZ z-D|Vf(<(lG%UWY1YedrLp8EC1V`ia;Lz0!wJwucD?XGbpzoi!N@bTOZFX>nHKhTtH zTl!1=?2_2}470V5&n~ztop45l)4_Y%rRfaI8`JBbGsgcrm}6Xar*q3OCA-utQ-({% zdtB}(d7XG#V#%~x#{Y8E0|wb?n{T};l{ftVqQpZyevgin*yDz#?SIa#Yqrwc{c^^y z_V{Y)U!NjYD7LtIPi0B?Q2DKYmcjcS-<5yJUSqO55)>%=*wf6t@?7lM?uVxHmEJ^4 z*-hHRqSju{;(I+;>ckh}D#vd-R`h5DT6hY6yTrjPE zKEu||V82VJ>yI5=X8$9HFKW&;iM!_>%;{NbDX`k9hI`J7u9q8ZF7i7FEzaraSsz>^ zxN9nB$<{@c*6SV~xw+ZZkIT61P>sM3S+08d1xeRg-0h;(8YXSzH29kPetw9&aT(vs zM?TBk+W+#L{kqu1{ff=qb2k{3kDb22lIUJuXEh{F^=DsZN2O;i zIdR|B3s#Gs-FfVklu)!UlZWC# z<0TVU#Q)v3^MOrg^GB`FQ)&!T12fZ)=UwK{+xaJ%L8iIK`T8#3r7IoM3SPX}m)Fe~ z{h8VIbFQ@ftY?OryO@`x?Addp$l+l0zE?lgr1tqn-d#9B&(-Ep(x1Y~-_dkW7dhM%?|$ks@VgNj8LPRI=7$vTeYW|o z-*c@GWb8X??bN5Yi|J=iufw&^K}L-C%9v+;JNdepmp%17pULI?pxN_1+n7Z^p8nw0 ze^+`|TQ2K{nOE;yW@*)KY%lhz5w>c7oSE^%Oj2WKo#3&?Vk5sm?W$vO3r>GZGEr6e z^>R!8JA^zMPdgJkMu} z1gN@-pGf%Ox=AyxC+_u=?dzVN5kJrMT8lG5^t_@!Q`sAk^EbW}yvuK0fY=)2|(eJbS4Ckc0)xN!NeTCEJQpUNboYyS7 zxs5@@?2Gb|jqkfBeK)zQ@#wur+^I0hs{xhR4YCfo3 zr&xQQ`^7ft3of2+VdX1)rk7P-xwtOJEARMa?X^sy!UyVpPneu?Ty^U#^M$W>_FUAt zZ*(K*^STl<%LkfsF67Kz#J!@!-s9eiyggz^uNzud6+ZYI&Fp`_bWhjIxjp$AkCv~U zIcZa9YaHur!?-&u=P~R#XOXUAaLfF**uKrOizCG(_-?&<<@aLyqeRI~lkXo@cu;OM zH@Yy#S)t-VtORpXe%K0mTLb#G6

!PcUyqJ63Kze+zWi=tmh?qJxAm-s_PY?@hN!vM zB`uQw7W!r0SJ5=u#~Jr?QDK*itWC33TJ2|vy^QZ|e!6D(?BQkTU9Ify9MrO9L;P`l z@$GMK*;IXVID21rceEy3-7Du~J~dn_cNohRJD=^lG{bqr%U%C@lG7ON8Pje0>psN0 zIN5z}GVFga^^9z}WU;xy>;3|}MW;k;3ug%~KAth<=jFljY-k?QYq1CLC8gVlrVx zdTMc~Wyv;%2d3MXGMf8gBaDrzJJjrp!EchAUwA>Wxa0FQ$CH)qcZa&Yd6W8?NYO z&nui ze{9slzU=N{-pg}pRgYxvMVD2q`6ln4 zl>cR3_i%^x|J&t~pOw+iB@1sf z9BJgpH#s*gv%ANV`}+0svhCI{CwZ@3aVPRswLzQvgd=HceJ3ouFIy})c;a}<%FPQx z{28>gjY1|JPpwy*_P73U#CM)O*|%Woj4Q7= z7sy`E&DC*LKlbt4A=&St%OA4k=j&ROyj@!{C;E1`ujGx_$0i?TF~78O#d5xndyoFv zDZxJJ$G+;1Up8HtVH$CE+iUgy8#O$ty31BS32ECYC9LfBjd9tG+tR0v7fksmB6~>q zy2NMu8C!(oXI{Kg_S}-?m(?4|JKeKSuouYIC2_xdAXpO56z`VoVqAEBqj=soKDqoe z*=kb78cby---M49FUb{oXI}GHD|z2n;T(47Dt6o4 zlDEcT{_jrboPx8$R$StaWh^MmitE6k|h zl)m$L$h+w=g{FB$``P2a8>BtGeb;;W1-Bc^o0}Kz&39LEICD^_@ALH~+VTDAbu5eT z7TsWaQ6Xer>d~TE;b|h7{!)VF);f&~_uH2|@RRE=tvGW*o2N@`7A!jL?0mdi#j~!?Vhh%3oH`%9knr(edxa z$*>md8fo_!O3Q2jgM`uotGiThJp9g`bR&I-AIz*q@{}bIcU25~~ ze8xpNF5$PgwA>Y`d?BP@*b)Bt-S@JX@873nXP=rpx8dH+%roqTVR}1w;u##Be2(!x zUL*Z+@8LX)<&*6U!;pWC{B$Cs3nZ0lXI3C7Cv z&7_|ye2*4OGBEw7ofv$k>4<8>Ikr@;b%p!w#iG|mFtP>59oSmM`|jWTqj#-u-@Q@x z^q*b%{~s3H!hd9#N+kPDo8Bs~_#^%w-#jUUU!liW9zS*>B3EEbY=WNCg8z))*;ab~ zJ0^NV{YQRGnO(=mp3p<7Uxeij&kcPmByg`yLtn^Os#mh_!nwJjx<7bcG)wpHe9fw} zc!m6-k0$RfnJeDVoE@%rIQDP!htx@vvTqi9sJ#2$pKn+cCw9(4@;&D_^Jn_{2Nys0 z-H|4r@58^Xvsl%r?APz5_oX+pR14m(wf&~0^sn}fvc&slj}7q;<~?}pmAyj$jj+^W zP0`fZy2}(7wRs0dB%N#6mgLQG=6j{u|38t*b=#!+(^i;^u~;j=&C!d=KO_DjqMY;G zwy>x7N{{XNIQ^{grwo=)u@x=V{C$55W_nFM%xCf}D`xZgzcvEf6MWQ@R1bJ7#|tHk z|LdQY^z>HN8Pj~p3T4ebd@4t$@9&U4eA)1w`otF=+cFZOZwS-|MxO664_ZChO}M%E zSS-`JqpAuztbFq<@6On7FA@J_j)}q+S3WGrE7{MrY{rSAgb#%|GD+8i4moBjiN2T*%B?~e=~VrD-d zc|}93O!>9b7$RD<#H1!Nr*F#NzQDHE`sHtd26uzX=$&V#PZix8r2ZuAVNvm;w-H|3 zoy!-Uab@T`baUS4n=jur#{d61#jsu9;MtSg0xzC#?o#VJu6*Zyb3ga|JlYf{wsF4))#OpxOKmpvAKDn=#8or=1C9C z-aK(toALR;(|50n4Ntxa@ITbg_QL$pr7vtYtb6`WKlX>QYN^j$9@%)4XAMh#?6P2b z)f}|IKlxpBxBdjDbp71bM#*g3y3RW!eH02cI5y2@>1LnJe_0+dIJqZp5eVKUe>t?N zOunh;%-Lf$yEN_oEM6{IELrxtXrKC@U5uRtKfWHTc@$^Uv}^XQ$ZE;Y=XZ$gdGzj6 z)t0^S>yG(8jjjBD?x#WB$1RJVXifNFzJBYBrqyw$4+*z-UTRHVQ+faB{7ph74%0XI z-z&H*^lSe8v@_r5ALEt1_u=fpP5J+Gnm(1vO-kUN_IvmI;3G`+KexWW|ETDL?wytX zhkef6ls#=a>A-`cvhP9L?FBwBb$IUVaYggP`_gKGD>|_=64&{aC$dk{U!K$XviBl~ z+TUOLHKOxvEh-lJDjv+5_ARX8#!QdkwS6=0BxJCD+f}GvAb0LorFnv1SkhMhWsfdd z{&;mwQMD$_%uHe9xuZh0HhR3LCkn{hOZ&_1Sl=1vr6Ddo`_lKD)gP|Uz0R=wRAzN=ydulyP9`Q|ZYwDz?ujg8t}v?X3)_kWjUyAAqzhteLo31~CC z{}HM8PxhOjoYP{5YfN9+H{9{~Rc>=nu5I&=h!~|GtdnCpU#fUq{4Uk+yFU11%aVC< z>wYXV6xTbn_e^4Bj@$lA6Bo`8f2+BmiYX>mi81NiTNjgKb>%)kELaN9UVHY`f&Hj| z2IqYLkmVnuqO9=laE)0EI54GK2Ddh z;^fL8sbz8RkJ@)iRZQx&3~CEwb3Wh3cwD!`^j+II{(ZjI;h#Ah59(|CH#2@)?k`>Z z^zpHp7Y;^+`3>$@zwZ;1cHZIt;Jz-$N3kRQ4*ko+GeY*WuQ0D#n<&*E`}ou)js2Tt z4Cl8WGG|+~WS;-M&axG^THyV;X1s5MpX>U5l+3`{`&nj2!rpCd?`n~qG?!jj_wm+_GIKMV1DfyBa zYxt&hyZA5c`PZJQ%$Kn^HFL_%i8rR~RjLxye`ftr$90d`pV`wNpI+&`@p8xC219APX88gapiiCaBG{3GbgeBcY4EnW=@~} z&KJKKOz-~@uKLE{d+XYHF8QnB3|4Yh^2RF+5A|O>(S0#_i^w+Fs@+DeMQbZu|D33h zkL+H5*7i=#;+;M}f`X?{k?^h1eKpsd@kK>eg0rjsri)$X5_K>3zkYnNeu2fU=O4d) zd}8ZxuS0oCamKvAK_S5&tzS=TGg@3(Bq_lcH}UKYTla2OYhlgy=#3|5%(rUeE8&^F zaO#^7|Awks?tg_Z4v4QzZeH?ndRJV^ZqfCk_NL3G%sKo!;rNqelNXl{96VeCP~Xv zn_M<9H|9AN&94cL-WcM`V8f=wcqqNSWAnBCg^PkCy~4HcCHyd)-S@0HtYKkh?3c*3 zFE?)7%2W1&UG!MZNr_YCw>%pDowam!Z42HbviGXPt*NV5UBCIU(eLE(Ka9G{>YwEf zH%<59Ni|;O|8Z?+)&4yJei55ioN>R(lJQ`_QchmodaK3DEq({RTk;|#_J}l({j%#9 z|EL@{;GBK(fon;`UqP$T+d{t-ORhD}`5tQUDb zaP_L|KPSxGGb5fe%FT~W7Hs9y;*j}|HcK95F|%E^e}1&vRIi&X0+V?!U+>Oevyem8 zWcniUlO26ZH>oHck$1YBL-h|oc!7J+k9VqXy*I- zp=VF-`_&0S-&*vy9(r2B(YE!|(u<#!>WZK2U$;2$WZ6s>f$)gyXJ@&~n{Vzrr!5jP z@A49nkIwU6r?bf=tuS>weWKIeP^Us{_JhuUEB1B#mC?H}`|Ux% zR>nS2X^~uiSpAp9D$A=fes^QaFDliT?m6zqr&*NYx$xzzn!D4t6;DsksBrnHBz`dZ zXN#;~%!>K7+0G|Z45kFyd_0~k6aVW_dT!>S{uhFhucsec`11M5o{vLn5QFYJV zpgEfRV;EI)-?OP6RSo6#yKX3xDYNC+#@vl7ati@`9_*E$CBJ1apXt1R?(6sRmCR+33%jB*o8jCP-k)WkFZ{O&zrEp= zSmCU#xm>F;|MeW^QL_lAoR$-tgcFt95+TItH(n z!^unrhiBy4KAXj@w>kQ7)`PMO2M?q;DLig|$?l_b!lq=xjcuTaka}Dia^%7k-6ZGh z2@&x!EmMCyf6KW3?}-GFc_r~%cr&Y?IUK&tySCj4g5vy6UaZ}C>`^O?i;B zq@u6u->Q1*Ieqc*&GR`AcpE1tcX!R4u&DH^XoJ@aE#qEJhsU#j?>GCNy|vUk?*j8B z;YaL`*)(^&NJy5ru!m3LOY4^pAI_vXpUzzK!y$xi@h@NAA3V7l^)|;$lXmUVJ@K+k zL|TjImrV1^yPH-$PfxGiwJ(!(zxJ8%13O>WD@=Pc&5vPfV2NWGW7@s6%lr54e*Z~X z&+PTII~nYvJXib`4%A&>JjU*xd|}(sL|eAn+hY4xZ_PXSic|eea>(sYbM1?3U-K-u z+4)jYH`)IWn`K*mmRJ2LiITfF_N89kCawSD^uFWkqB%Y57?-@=Jb&8S^EpepxNPb+ zzk6sT_fF;0dFhYQhlG98uP+Id-~BsTwpzB7FQj_IT#?j-hJ_uMo*ePsz2KXKU(u3^ zx|VcL)wcq(uZV7(dt}+41^+tcN$k0}`QOF0*K59PuI;Yh#Zyz0cxO*X^Xd&c|HFcn z(i)z6d)IF@>SFgiAnG!Sq5eIW=K=e!zwfl~-6{MbIe%qo@9fUHJv$t?7ajP_t#&f` z(X?6K6da+LZhwCsUw8M@;mP}h;`g`gmri?7`k~TuTb$UD z)hjiBG2zohl?U<@kI4HN|CoHC%ydS;?b836vCHF2!*ZWZe1H5s$FVIYE_*F< zGRqHX`)t^*YPPiRhF_AaTF`Xc)yj(`gBE{3ntEIQ-@~W2*XNh3OT>KodDLI7==u56 zg`b}JALZImlWDn4jMJg_ilR2-<=EdS6nXK=qP`C<8j5w?sE%H{^^q}?px_Q$MASbPg2vCc^?k4&2m#ZcrTL4 z_j}FD*OmMB75=QP_1D?4^ZB#=RR^y8mdJ>ETxq}<@!I;|p$E*?HJk#0=PaKdRC!R_ zsKS&lG?T@LOD;C;OUuRB&*yHhPkw)W|0c7-XFa!e#4ew0IQiR(UMXwV&W+tKWo!?! zt+-~$HJ$&|b1##Ii4MUAU1u}T2(^7#lXvCgvn}$C*8CfWW#D8sy1qx{h0BDL zgtN`xd3=PDDg^u^SGw|h8ho}D<7^ffDtlO@_kUi1y^0rc?3Ez&#NSM?bFg{6mAQ@wM zc0%aDB*IM$1_@CLY+-#~Sk^ZmLNf+g3j| z*^s+w4@&1BzE-3={ZGL>CG}J`rN)y2rOW5C2>fg*+^A{#@Y1xXkUcTkvLTt?XANJM zJzenH)BDH)=L%W5Z9;1O#cpisrf>h(bJpan`)X5BXHh=S@RG#L#)*0 z*x1roWu_)B4YnpmM?pu%!h{nBXL!!=2;Zyz{(Jr_yHfx8c2{F%-__liA1XX7y^E?(02UTi9{(x!6vIDQ~aLSi)euOQ*xX-|J?YWr#5A z>n(FG?)FMb`R_4rF3${MQ*PH+5!vHt(PQgzfcUbDN%)ZKWpz~bn{`(WG zyQ+5jZk<+K>prjQ+qv#HU4H)T%T5P`5A!ct zXV7!7D2aLFNy80igl)p#|DRQ^f9vl{{hj}xnBA6b?)=xVv9q)J*fDj!11|5Z<`%1l;3*(H?1k3yM5RC&t>bk%W)sxy7%SF?CRNOadvyZz4Lyz z??wCmxNq;K?_yP54|30#c0m4-ui1@ao)cdv-Kl>{#}1Dl-KcPR%6yZ1*^zw zD$h^poSPUU6V|NWzqI?6^pyu*YWBx2kS_S@oD2bn*dwweCzPXk9+3h73`@+AOt+VId&K3Xn@#OFO zExaZ5Sz;!$FMDA1c~;nF1OK9b&b;$n6l+uKuQPYg_#q;E^sKb+pN~h`Wz62c(Esxy zbMoysAFSrQl=oV&Gwh7AGmGS<-5`%znyub{+V1?*)_)hz9~RUyUUu$_FNFUqyLTz~e#7sd%&XaKboTE2Zu}hP%T|~#Yqd(_XO~?t3ugK1 zmUntXpw;2!uV0sHp*5Bre8RZ433z(T^R7d>adg*+=y{Y2h z$wjTXx1PV5vN20cY+B<>$C&or!a1$}FAtwKHs0=gzxMj?b@eYl{@?p?*Xm^(;xia0 zbTc^bd=`8Crjo!6^LzeN4+yW}62DTuk%5Kn;Kq+n%F}CDjOwmDKX)^I_hSDa{U1;M z?B`}PV{lE>=aPr{wD;=z-zB@R_%*b?a0}U<`*Wg9(78lo*8u*4nR>@V8^78J?D1jI z*rfY3A~rwkRk`&4qN~~K>(2@9Z#`>bwpSoSE314H2g|d*$NiNLJ;j<$4RggC4lr2g zt@?Xp{{Fw`KKI%F?GitKzwCJZvFLK|vkg`+uCO;Q(YeYxrSaXJ#^ZK6IhXD7r*rN* zdoJMhzQ(N}Kl4a0J?$W*o$A$?4}?5CFTJm@_3_Eza^MwX`KGoH9{A2{;x{r~lI%WE%r&X=9P|G~$t z%{qn}Zv-28U&hosWR^zPK5_g0dRwdJTVWO_mC0W5a~~Qjom79iD&o`zM_Cca*rPX= z&Ye%4hROfj_$&EWlf*)SMe>v0z25Y8r_sUf#_v<#`jse5 zv-{pvBm>2iwqW@x**=*aNydL`Q?ZD z^KA+bp4(k7RnGEx?Zq#}u~(+OV)9yj`;~HjSiMiYfU=0w7v{^gxwn>X3z+um>W$MI z0(bGKY((i;5t1;cNMrC`d{N?9{aWCXq-$bp5xqjf5!n(tE zIkz2J{zWm>t0l+Va(T1TiteWy3YtPXF78XacCYx=+T*&l+$)|=bx`kiNbn1cT6F4y zScAiYXHV?^xtrV7AJnUUaOV8|J>JKaCa-r7Pv6vDvF6{5eF|Wdli1JA`qjPl^6%(do|e8`7K`M+Uc1G-puDR;Ves@t@ZbqYcyky+I@~Qt8G>+F`dobVEI$N?3<~7)Q;=_;t$&H|G89l zdce6=5;HD7-4a$my>{Md?w`$FO#tiNMhCZRAJZzd(hpKkm70*_y|ZVr z&+_Nfo=hpyWY=7o!gk5;6w{w$=+6%Rl9 z|C-oP>0bMB`S;uJRy;m;_(}YeO%uI21tK@@T5H$zy6)~agQc}i4jm~$x5Hzr`_Hr7 zFT3~opY`>|4czB~_?AvNJ7LXdy+S{AtCkl=YPS_{eoklT{A_hRY@U4kTh+^#&0}gW zol2McQ@iD-*Mh4`31`;o%-YeVo+NY2A#`nsTf>{lS>NUCUse9z`_0z+&F@p?^X$zG z^XDp;vZyzr{Eyx&-ZB^m|v%^BosXY<;+Q&E2T!f*x|3mmj1?pGw^& z!^eA*?__EX>s$pvrGriTns)U#eDa9A{c_u3E@s6?m+I24F5^B|b;UNn>Xzw-$=wXP zEFmg;K7}2a5wGd}MBD$EM}^?E0>%d?{kae9sr249_y32_`Ty>JWaTcF|8z1{srYW{ z{O6yVPTAFPP3=xdc-s^4$$RFU>06~=CR{n;cQokK!YP|1Cw-0Jwz#Nx<{2?89ZK$(6Y3_ueqnTh^+3ej6Y}|ATIFu3 z_1otE^cH)w>G|=JD?5EsPC?V#-BY^6y>@ETzluTyr%5n%*PrJ&p*5p;a%#a z>9T!)O7y8EQ*!mwoAR||F7%0L_|BJZ$*KOn=FgM6{kQ(jy>R*bypKu_4?nssTQ^0Q z>6lFN<`q>lxEX$*y8B)Jm;V3F_s{v)++*GGe);{|pIzT+yz6=SSwjB_KgS~>EqB`u zW*x5!%A3}H(5&@{e7-bfImoN0f6VPQ5J}4Xr*iId`rKvb-oE`*`{+%}MuEAdk-Mkq z+Vb!C6z(7Q`w@FQOHvfek7lQ>d92UgFeR`YORuZH-|y%zSAKHW`v;f)Pt@D}XsOOc zp4C$eBr^RTU93%gyFf3PtZVb}u?y`TzVP7C0Y+J{^E&f)4v>O5hOpU*rGv2Z+UP{>Mlrr zi+OhXWy?YV&#BV=S3GY%-sBhj{Klu6dwQ35ZZi;DRY^g-P;!SP8EZ+S8PjcOkH>%uax7+Prz3%dp zD+MLGdD_A?*1XHFluMd8Hf_7i*&v{ut9d}HM(-NWn%p9Z=cbRR zI{e{0bw&JM`I9ft{dbBA>=T{P?U2S9y>)Z%&u1GAot}p?XeoSt^Z&s6xSwZQf6IPi zQKDd3eAT|1w6?14S1E&6j)&gUfQ=_syPOQ~ZaxrV z#B@?Qm2qN$y7gS9)61rq`cGZkx!g}nvQV|Yi|-MusB*0C=hIya^p^&lozfq7T&+yf z{^{!ed36_=&%1Tcn|jf5(sKb9InmC$Q~kslly#&S^79xYYOZ`#FB003W_`cy!Bd~e zYkHR_?z{r3#GPI(nR8fkU&dXAA72|alBX4g^vrDBGI`Up3%Tv0Y)&c}m3g8Orp4PV z*YQa7iXRI#lUvoW%5#H>-O>QxcJ9R5|L=a!<(OIL*7J-jw}zXc&>%H}yJ7a9$K2cJ znQuJHcmC7#|B=&5Hl;+Ln$oms+Z9jCbavN(>#X*L8tj`ipT@+TDrZ!;YVi=+`7z{` zk%Q_v!{z#{YhDN}Vh)FAIkg6L_gRO(uJpTl=J@g{t8N~b;#z!~{YvzXCxyxW^7fRBKu-rYy{9d&0zC8gP;)>1~VW{TK=EjqA%Nl~3KeX`6vS z(!ps~d+da3tdn(e-EURcclnskb-%t`WYtX9Fd1!at{-a_UpUW}oXlNyzUHm+AgpjZNX_i#v?4!t*MQ{~ zMP**%PgWe1e-f}SMutfTTIJoe@SSTQrsU}TxUecw;Ye0=16rb-+3&9zy1Cy}#BI9# zjFpcibf5NB+X%h7yy4=Uhn@2yOX7Kp7#CzbRWdN#S91ID->3Fdiv9$tIp3USq?rnq|NlNMC&hQZIEO7B+78rCH@uDFSpbQ z+zoU7JnrtdN)(*;Pky2MBKN1a1@_G0_1(7AC+jBPNlO_Aq3M^Weh7WUvQl7iZRNi+ z5k(cUoElTD7zG|VERi1oZUwQw^=MqgZ&-mS#oJkZq4zwjAB>LRDYVmr_JZ6a%9eW z4UqR;ZVGZ7y~&xZ`0cCTspkvVtv$}Y@J#r#P4oMCWO5fbta|w(c7D(bwf4Xh!rELF z7ZqLFen;s~iVIYmA~@~l#Jt@#*qeyLy6;tH-n+H9E8*G(P#JeoT!8L*Bgw z%PNn|Zhcp5I)QB~L&1TVes%6`xBA5y`hxq^R4(7+dF3E->15p}_1jhM&r4)t!rDvr z*$dZ1|5TD%c{z8vFoU9yNqY7xm*oQ7sKw6Bet*r7%MYFA?7P2MA%#Uzj=gnLi2l!r zb-4%HB4dx&75&?{LF&iN`AV;=7#DD!Uuyp|lXdp~1p8Bs=bCel`}t%#pG%281!`8$ z*u3(I0K-YeU7k8mOR5rejvTyoC~)ffm^a|!Uhh#)IAf@>z1h-`vv$`4Bx36lmh~m; z1gFh#x_ZQI(w2?tw?9@|tNK@5+;)E92n(5nZUw*Yd z*W;h_*jBm5vT1_PkBqqtTo-pv$<<{4X*}VGmu1HDJ)-JuTc&P$R+!5ga5l!S=$oX0 zlzz|ZoHaXIEIapE=((<#wKO6~>_epc!u!Tc-Ii8$rtaLvD4kX+{afpH`~S1G8yN2J z`4`!(WVmI%dmqyT!NLcRqh&u{xclRc-f`JUohnO;|2kUW}yziWFibMGf zH)sFGL?7Y%*6%j5pIN)ve)G0}whl^Jdl^=2XRx%G_h+5l{nYcZPyg;e(>~>7#I~n> z)Bdu`RG-c2{92^;W80_DlbXC!*9JX3_Mk%4!L<0t9KGx(zoxv8xx-k)=iIyI#GhYw zVlHnpLIqa6yeOuw$qgz=-_J}4UM8|*&W$5(LR&WGXJy~ijoQV1Xwqj7x0^HXR55CF z9$~lNma;oGv!`edYh($BVY>4^tx`#cM~mKYw1C^pzpK=j>IdDwVWvDW=E%C+JNGsC z@;UR0u!p9sisTl5^yP1#Zna=vi-w?|+^-aU?qvdVFJ8Q2cP;PWqPY*IJ{Mp;P^8l= zSh6u&fSZB+7Jt>jLvMd@IlRlT6}maiNbuyg$*%1J-4=#voyBt&Id_~}v`Lr2>C3&8 z`BN+p#K^B{dh4_Bt6tsvwfZOiuo?1%FIn|6VBL98Iucl>_j%>x#{piijSdAlmq{^m zCCvJjmua_A6xXy6ztcQgO0*^Aj$ zD|`QL$X)%X_xx?C1A4#W@m?#BlM)tzgTn5`r3-qLg@!$#c%fbe_&b= zSYvvjC9-&HJx4@>k9Co@xGuv#u?F5vAD(I~@iDkLZPWEmKgDNnY^JrWdBGfZOGxF$ zIT1(O&*@uNE9G*meq2=Br}F=i1}HV~>a00ATd<`{uU;nPG`9JHU=B<5lleS7cW!M$ywru0VGU>i$ z+kD@&B~FfK&`2(dYc-14z5g_;gZ1-<<5iD^yCXD<)l)CMZuWb%^vwpJ8CO%cNzH%k zqg;`zm3;q7*^IK%+Q=Up z3wN|7H`F78ip4ppU88S*As`N>Fa%)wv zsjQLM^I8d&R=tagM|3vTEfqhxPfcO!L{=ZJySWy#ZkcVIoo)8g^YYpGPJY&JB(5+` z;GX#I|M3Y4b033Z^J4L7JI%?9W2`q{sNFZ0bKhHAmI|H)?>^<~FIlqcrB&?wg$BE7 z9G3MRk6b2_e7e&&N5xV4_p)t=x2%4>T6f=bJ5~*28-dCR+zj!oDtkA6WHpixS{C@y zIM{K0+q6uePoDs+!umkA=H(zZGlPo%}kXIfg+)sGQT-*vxLeyOR3ubIzI4UTf9a zcb(sEd~iGG9MQYaLBTM0>HE)4UMoPY0E1nB6ntcl$1FQz(7LL#S0yv~{*`T=cVo7$ zl%9U%d#ZW+hUgvBs#k2adBJ*s)gyVL@O-P^kBcYNSqHOx)!frBo)T)tx61K_$*xOw zO9Rg8OgeKfKy25hKBxWZUd@_Uy>(7+<-K9B`t}X;t+LBvW8;f?*O!G)Kl@OJA?e%m zqHec!y%S%W@m~9$+LYhz^TO_W*xXew*VN7z4+;X6rmYvBHk*}3-cizx^mhq$lSsVh zpT-lBIO|tll6iRUt7D<;^AGo3yz_)ReXH`WY`$bhiP@5~BO+caF7Rj(xVxfsw$<9s zlt(f*F8&bbexAVSy3qQy#+Pb-fdx94E}Jb~ms7Lw)?(&NzAVNQch`S8cI?^9KflY= zer%Ii_O3Yh>dIN?ZXKGqNHk1>JJ4lz*R`Y&hL?RtPQ6=ifijiZ#?v{+J}eJ^{6qLn z;U7-3tI1!|Z(R6VU~(>D_OXTbn-!!pV(m*mK3Uf1EBj`_&dnlQSAyzxpLasXe7kfC z!~UJITO3^ebDMb3c34vS!;UQh}-OqMtKdZmc*zebd2;35q5gPv>OlaKAgUP3f*$_+xgBYYEZQe=5p+?w)nb zBl+eQ6Hl`@GgMxGJo}@xTJ7YNKN&oM8+cC|rcU@_b*FR#^FCgQBTNta0(aUQ#QjPY zF0S7hv!Z3ivc+9TEA81lLDk#EpOf`t{mOQU&f0D^o8$YUV`hzO8d#`KTQ^>jE>%H_i%O6^iH!mF8`jz*_I{!(n z+f&lZADt*LsS95*&8T$I*~bgCnYUNmnW*BuzDO)jF{0LE(i%&KfO40me_O+!>1r^^ zHXphEkT3bKqJV_s5(dl5jn~LqFDBn_RCcwj@{J zuv5(13)>{7|9dQPhUZhU`KPU%;kM?FxgN>s%m~SFT$p=#{p2To$&*vw)?PSiC!_Re zDPLVc1lMN1@*^8&IkjzK*m0l9fbGq$ko{S|3M0{)EtZE4_*TR`(~Icj6>ie2yz8i+ ztJto#rub;YvB2doj15(*4n0p2h$y%0JF2)-^RUAb*F;+}rd?n5m8WkJ7k1up;p&-h z)0d_HnJ{0rVC%;Ne+U3{`@+n zvhzXtiMQV;r+iKHEc#u@u&afOS*UW(D(f3-n&)%hc;N6#bIp~j$uAancAM?`yrh*i zyK0l@HrL7GzOjAp&GoNYA3e4BwXulX^!q25@%61NsSWdw{Jp+pF~jx7Hj z7jB`kZl&-hZ;S6MtL%)nGpju~H>1RRqUEh=36pe=naN8o-M#3T+jh~A7q60D z&i|lp7Vfaj;zZaD`5o?)Y~CL9EIK6US;V1cJNM>pt=AJj%m26XwELW^!*Sy1+WvJ1 z&lnz?amMUhXYy}FpEnm-s?83{`Df(6%2~X+@@2vH9m%(27@o!6*)66h_U@L`HP`l*#cIRGwy3yCmM_+5%#P498I*)LQ;JrDlKpOy}D~ zhAj#K3vbW7vzF(Wd-s+5HY%R~#DqU>sFlfCpkMN*=HnTaO66n4+n@6PdSP@s;`IN? zZ2K8fURRdPl43O6R%q9u;+S}5k#onTBPSQOE@qe_o7y5IJ}L3NT*2L*)3G@v&%O({ z&6PL`cvGKQvTn)RnfbBuhj2HPB!s7dBPR;AN^LHv--uM8(JOu zyN)C!7e3jc`|V`&ex?t{3rZFpa(J|8?FNRP_#1~6L+AD1n!MMq=;Tg4!Eax#-I^Z4hZ=YT3%YDc-f;hucZxt7G7Jf{(GGP`>VT!lK=1geq8r`!y zr~W=$6W^4*#jW;4>j*54`l@gyko9j$~ z7=v-!jg%S3UgRXpZ;16tuboqPXYxm$%>t5DjOQBkEv-Di9liW3P%?+ju66T2>B7^7 zsc)56>x-OI*syWVMvJb!d}b!s#Qq+RWVpps#Idd9ASq7%>Kc2Mv*u@#Up7lKKK9SCoV!`d;qtcRT{G)B# zm$G}`EM7c&oViK+K_%O}xA%W$*c?6Hye?4Ek8RrH#K)`G9Z?L}CV#rb>P$q=b&IZK zfjLz*vRl*B89RI@n4Va+txeYU>3zoeDYLiRm2Q!Lmuvsyh)U&;ebXKX-d8aGaI*X3 z%=$X(^EbjB?>8SfR&-8GZ${6ru7^4d8#^z33>U} zE$@H!?|AU!Cl}d6SS>H{YcYSx-CzCT;XK=Oev_=_Tll}p$h};7?qC1WbEPpUSxJe9 zV;PbrXS?1%VwSL3*Y2rVXY;!Yb3aCYdj9Bu^rz#+YajkK{jPh^`P$MOFSHL>KMqUy z82_QNS@_a=&EI=izAe4J`GRR*MY2V*!N!={G@kX-%mr@!G>5pQtaLZ?NQXir~K48_sY45X~5_H08p+ zCv~yW7qfY`u1$KVv!=ECX?FAGoak@7-?<#vvQ@)gITs1o@(`A0&H<3s@am@6EmWH2sImGv1e19bWQJU845Y z&nPE2?6_R^=2q=)+o0=DpWp20Hj}A)ciMqF;IZ`ElZT$Dzbt1|I6nQx60c)ivtgFW3Lg#Mr?1y}$OIIO=!d>{KUvna?}()laJLoAysiAl~#+ z_=Nm}w>Rx%ZxQ`{t3Olk@v5ZiXAkys8<>kVtaACWSF>f78TUumNzH|smFG?uTzK3t zD?8Ox?F+x4a_z&X*H>Tmd~eSip1x+|4W8|?Vuzf?A7`Jg;QQ2|>iJ2bX72ZZC(BRE ze^@d5_3HKhleX80SngQ&f2Gea-UHThUGEj|=pP6xzQZ`J?t9FG>TA=sF&t6bx?lQ{ z{_9gY56Z8fp8Q1m$G2OB-zOfpIo14;&VSjO%O6&6UoyE~_}0axetOwS+Yc`K5TL_y z{9&<)8LSw6cb(JGHa#BW_OxVU zP3)s>Ggu$|IT77(L-QEz4Enf&NsAr|C^xl|Hu0stPj?w9G3rE@zU2{;Jwfl z3Ga{{n-8Y{tob&rh;@NDL-vNy>SgPC58UUUK1F=L0RNPTz1#%r(p4Mm(^En=@xkAGL^u>HMZ_w;psFZ!Kd9CyFdw*BXe`;BTJ-T3Y-p^S4|3`DbN&cbBHNTF_XR&*GuH!P>7}0oJYU5s!?gP?=VfWVS z^fhh%(KkEKd(!o}P4Xs3)vYQw-6>W1r_AtPNTjP{?Sjd&n;Tbu+Idu;A(V51b;pxg zKYq?|F_&roe$Y@eZE;L+b%Ee-$Q@0`(eT3-I+=ZEr8z|BUG0^<|~y?J(7qY< z)4uZMxp>Hnd*AbPRJN==mt`JPb#R%w{mlzkng2F@bef~->HmJ=<^6xx9A@6Ub@yW~ zMmz29;-JnV!-y4{cXs`G@9X)gH0ONd`R|EEay{Bp)}2!7c^LfOchdKN>~#iTayBU4 z%Uyry#z(%>XZyX6`_u-ivWYhB#CAa@WNX;9L^ZuzFZ`y8iOF2Msm^#_dnap$ zuf&N(lV>N|Z{n`oStcg`@8bJ+@ny_z;%0 zj60H-OlU}xJ>oihFT)YFrrPTV**A#GwcTHPznOFUpILS`#jIj;yw@FE&bi(%`&Ybe zxP^P9?{?9W)D2=kBYQbF%jLg)S`fK;OVT-`35PCx7r9rYP*=?;eKL0H<+=$f@Be-O zXU+0mW`Zu0MDm6eH=c>~C0S>BM>3p~{U^%s_WN#m!{6`!vh%M})OgWT@zZEeeO>0H zIn|Qu1oC|5KAWeRGC6_S?(250^yjA4OpE=wnP+JHe#H3D{ayR~_``1et zy@R{$-X9R<&D)<*qg^QK5wD^(rQ^mNUmiU+=akaI^Y??+F`Se9CwhSUS;pVr6*OUugI$_Gw*V z>Pe#w$Io1fu3z}@%+k7F+Ut`G)Bb$O{&0L&Mc2Py=?@NDPtiZ8?DFgSj!Ts-&BZU%dqccKT*eV+V8 zt41T`ci()o?Vjgiw#T-6KU+VqJO6&IzUR9`yLr}KIN0yR&;2r}>Z#(&Ip5OOOR8N@ zH&rSuG5z4_^I-D#jUKPQ{(a(9qwsR>j|P$0hYRj}Ft0e4_|fgyGqL_DT7Pb-Ugu`3 z=Qh}*&EVCuHFD*af`v!4-YE6FsIJ&yGV4!R(&5_f4`-f;`X7~Vc+~Y^>kg#{+cjS% z-mc0;+JY-^d_i&`YdH!FBzi@NsYTxAB{S^_D_WaL% z8QFPkqq?2`28R6Ezh+p3`JVW@tMA~^gpP3Wx2F$f%;vjwIFjKMo3M2O_wtID$t%(y zzbQQ9C!6wY{gfuLCiA%+_tk%7OtKOEe)gS^;c45uVi%M)$l4VI&v4mOUvh6p{B_YC z>+eob;kOZwpVxHW?5Spj_=C0i49tHnA7As`PWWqEPvG$*xo;=@E|qP*ERmHhm-Ra7 zYo-tT+lM*~A}dT^Tu{(mV;a#I-F5Q+VdcqBTIT9LSg}5jt?c-7CcCE2&r^dZJ+b=} zCi}^Ee%hUn<`s4yE`Jejw~X6p|L5O1#!YTKd^28Od+=SlevZojpW@vr``)*nKRA8L zKeMCfk2h_4{#`McXIDhwSuwxkW(&R*h%sn)nk=}{(!L=w=!Nym=MOyJA1=7i=e1qZ zf-RqOUL*gFJa{W zz;cDz)6Dl+dCGn6xKj18^kuW7y!r3#CnD9edna3IZa?C znVMa`Tz+YPz0V{Y3Hf~4sRvUU_AUOfZ1RU~5BIB`Wc=c|Q0My>-(!0>aOBh`@9!^N zckSVe+EZ^i?mYiDN2UMB)dO#L^yCMCs^!rP@2It5)*+1~Be7i+Bdp7i`-@wase`}_PK zinpKl{~v4l`YX3fp5cZ*##fuo{HJhAK1;GWP%SWz`%m3ewj*1&ANt(u{~#;vckbor znS0MU{rO_Ep!o*Z;|q$BkJo%!ZOL|F+3KC^xC$?}6>qAN{;+1!cE+XU+KNH?sR{Sn zuKr>EK6UP9<;(rmm(G{nZ`*uX_J_o)vmuWUEb9IDVNxAOOV%%4heUb3jf=N)?eA0nN0*xzt{UvzLkuSGSt!)cY=?$ei~<&E#0+{`8X zWBcmMZ~4D3k&oKRC;Y(8=ikd!A6dSfzb_naxTE!^%;~S@kC|=cJtk$ZcmHzp$Gbz% zS>GKveB+eR3HO6~4U6-|>%KYu_&D(|msp_e{QpY-gg;HzEcrS4@_XKj!wvrH(-SZ3 z5a+LBJP>8oA~bo01W!Ac&flD`3(n8Eo>cVz2j8C;N4ivgvhJ(%p1gO{kv`?af6sqX zsZ^V{$v(T^>)EXa>q1ti!uLJ?M`Sy1tIRTqomMOG{d%GIhx)?ETDyDOm%AqX*1mN5 z_3g^Q)ie7~{V=lob-rc#f2QvDRyEuoK6tHWdazVo{iOa!!x!-i@9v&EKJ{i?#F4^o z0Ug7~9S1iwTSaV>bh!Ie(J^L=Xg=e<<#~)r?D0*D<7fVS%Xv2~MR%UX{|{z06F6?~ z+`c^hTM)nM$I9ItJb$gvznAZp*FWg;cGVxja1H*$&YO1^cssS~&6aQ7?lFIZcHKQ` z;qvpXnf2o9zeuzG|MXMk=ljbCr}dT}6>PlS*io}%M%IJ4_R~N5AIC1(#r|2gV%di` zlP4(ad{|xZwCM5U-yg%DEp@Az8pE>TN1V|Q?S@^J+S1+?j26MV46}|(?Ku_@{m`zw zeh%xmjSU}bzg)W{xqZq0m|`=ve|sZXxLkkgzSybECVs$1^!w&?nbR(BUtfP{_dWPJ zm)yhYWg@YHHq7C&=a0^Oe?XP#y3?Qa?^RCjPf}c?A!{rCu|tF9cRnG ztazZfW6nL!?LIrUylc$===;O%-nR$$)VdeB**O(H|HXPgKm1Yn#CLv^mM1!{-pui4 zulc`Bj^h{Q*B{bVotJs1l*J}Q*85Ptp4{DzqZ8-0+Rm-}pfmH7nU$&HYBiy|XT7cl zyx#DMDPRw)#o{Mi2c&j9-O5sa|L6{WTZa9A`;BiUMHTfp@xRnNdfPocF}?onv64fQ z8V0T=fm@y8yZ-%E%t~uMygbezv)A~e$sM^pEa{hzKMq^? z@;~#ukI8$So1ZfoTco^PerEk~XR}`iCpxVZj6Qhn6~q1D??>Vf$o9WCx)3N4`R>@E zk6+RsPGdb^ooCC(Z}{47zk)rpg!iXSx=+O##2Xw{Jl{O|x#OKhlIFkYIzhXat-rI1 zwpRuJ`q1~T^X1wd36cdl%i<3|SM2yN-hU{c{ZVY6*;D55NB2wW@(m>HctbXs7yY=! z{E>Cx-;W9WJJ&?-`)~Yb>2>zY^It5QulfIUu(sT$jm;;1oKm~9cw@!fk0(?jMJyyY zXh+WfuKefJ2m2-aC;nJI{n3{08D}p!*0A0acrLb?VUFAmCJx@1^bE6t%`ZM@?wItG zZyx)Vol~xA{yzLl#q!VZUFH|`Bwt^f;iCS&d;Qf%asL*~3Rk=TkFk#Bi*iKALI3@3 zd;V@#-3Mkyc)ZqO+QKlWTrQ9K!@8#5nj72p6@NVKrXzn-;M>#Y z{Y(L*6n%B`A5*}Fc?47#v>RUFQOWQYZ*}%3`e)+NJ8;oCg(-{rQCRi3^H&_{N zjEQ~RCUbk`b+wcBe-9Q(-7n`lm$K6)J6L;r2A+_Q9`tcMk7oPhY(3 z=?&SBddKT#Zk3TgEoS&SWo^OpN0~o2MsUn4s+;tO&;S1FQ~xVj_nr70;G<(Ba_4V) z=G@H__br*jyil<;=$b`V`mf9Dj$gf^uiJ3<`y%ngPmgtPF1`LRi{bGX*I$!2v2!@S zTB@TEH>FCm`anYKLmh@Ho}vXh#}hbKbKib##kSn=$~BwjZ<#-Z?e4d;K6qb0xh=Id z`s(+Mi$8q3m&6?U@OpH_4xdV~a~s^}wYok_`g7-6RDPgd-JkE(xI3<6*V6p=lPXKzGCC#nypWn= zF^9E*{m521-tVWa*qke3RobWQKEgYxdq?V>3HF7i_Z}TN=n=27D*8q4#rF@^uFX{w zU9T2oSIZ;1L-NL7^}O(R)m4-BeBS<0;w8J4{Xe@SjYl)wAG}z7WM9O-y+Ith1^N3~ z^1J^<7EJBvKfby9_kH<%&Bw12vvrEr9r>m9VZnw>mAU))(itC2SbHR3zMhz0@(S7J z%?2Cok_(+X-p;m==s%eHUH<8jjen$SzaRdtwomDP=!T-C8?H~Mzd2B@FSfjXpA0|u z{%-$Jz0D^+II8av{%~;n!_TZcL~r~IUpe>l!iQls*Y+t`bFco%!FK1g-T`NyJ=fzy zUpS}M|34b`YR zEdPYljV`W@Jo7F1!?j1t`w#xzo_fOYb(C?Y?RM6_eRG`o@5$BjiD~ZcT{o$G~Gd_O^kN^Hc;q>kG zHU^&m-g+c_iO@0b-FVEajPXu?{=w8QlAc9edf&~H9-aKOEc}r%>+gqJ4Cl?bjy~F4 zbNtbX#sl|uu-)JDC-Bbg=Jo$}UnyH2FTTjfnq~c$#6_swO&hhlj4=kJLql{)*|o*}>b(cSL19|Q`8xZU;q zvhN$XyYTSn7HnF}&J!kakLdvON?B1(Rw7r*EHJCn^voSZ90dP*rOD58HWv>{;e})$rTh*`m2yYKQ(hx41uh z-pDexMb%`T;V~_aWvB=nD}bI3QWZq$F+RYw>#f%h7S4a`k^zz3-b*^5rIj*XgqspD#`Rcu8osy;A3qOW(QUde|H6 z_i)NzvXnc|QP=dpl;dXGueA%L6Z8)^eett#{~12#rSnt6{^RNr-w$l}{J3yUD0_Rr zs{MXCDN*9<@0jNDed1bRuQKV^+PXD&*1xt>n!4rQBc&9cbB7{oqPhH@wA!7ox6V7Z z?(o$E@f$?d_M1K{;eQgZJ7=o%L+kDNM%&gubbQ9_clgPn&kb|pK0UYn9xZgZD1P?z z2>tBFA0M9n@OA#VF@B+Pq0HtdN5miK9!#ysYufX)>&cWNJ{2h;W$=$8-kFLA^ezNUY;Ox>(eMcwuhO%5YifOCA zc&K3hfoDmHd)K^9IH`B|@}VD#K7ah2s(RjcUgvo|ojY9jMgBP7KX=pnf7G@|7bR|9 zt5_*L!DbF?1KYB0Ii2mQeZNa|4OOyjw?8-XJ8srd*kW<}$GXFo(>Ip%bZnBz|Gby; zyq{C*$)G=8mnMH?*QhrVsM+)KR>Lp7-q4Q~cN$t9^%?#qzGQsem|1(@sQ-;ndg0cO z(x=6{7f+17QR8-LTI*uF)e$!$Vr0)HCTH?&Og7#Sf9Q$b=PGT%%=?=^Y#2H9(sAKa+@C*4?65shb%EPKYL|=wzu)z$2~p?Y>Vb0W8~5u{t3mxu={wU-M5g;F z>O8%9Dm!-1#{F@BFMn8j;O~dB2mdPKHl8(YOT1e#tLI?B?QPi=+zjd`x@MGax@NI* z@~3BQiz`z9=)5j$DQMZw_4$OA*!5|X|9I@ziT=0yK-(kU!s`d_?=kbdS5v4_@Q3Y? zae=f0H$(r#*Bd-nCC*v1I;U-c{5hrr%oCfZ8@=8+&1zbtdiJ%GQLiGWRiQIqMkPgD zlgNrbdMNTngv`$w+&2Pb!uWQa@0wj2CfoV{P^f3oL0vJ%I^LI_Ke`M`gcq{6P2+#H zT5DSDRA2UA4|N!9EMyH%*evc~U{JaYIt$?Y>#E|zfqSZWu59aS-MnF=#iztX-TTFo z*-smeC-koO-gAn(cEPLA9ikWH=P2EHSFLt3v3==&(E#oDzQ+%hF|PuR3VgWcw}tJh z>bXaYz)>>iXy(UAkU6)1@D*PBc%Riwq}|l)UH4hn=@rRq!XN$S{-0O-PrgpRdo{x^ ztK!U!#}a=STHd%8Qg+*N4(kCa3;v+%RW(uP-%89m7BKs5>DrA^=W~0x3y(eOxUTia z|JueK0_r!t?WXD8)7wz`_=Qlsc^&hA{~s+6N{@-Jk^6k)4OheGW0g}(U!ThAoL)53 z_xP@dIt<1?j3&q^oD91t!JVFX>wyMex3QVs>F+tkZGWzJnzry3M*rkWJiWu&O!1$< zK4$qZ+V1u3(TuU*Zg9u%x#d{n8o^vLJ87d?@9frZ1!4_x{3}I{dbMpmtTSi9$0X^P zHSyf;j1l`@C;U}t31~MKX7S1?zY(dg*MmzBjzBRjprazX` ztkVzBT5IT8J9AC$=?$_k+cq-D0t4d<8x-M=Uc}&?eEJffqy64L$|ya z=*!W4lk>>gF!J$~+G`d|?oHB_HvMKE-(hbV8b7N_W8aZ2Uwajr&zE#S?A_Y!}u4{&HjB?lmQi z`HvQ#YD-!t9c^|lwSwWlxP@$vgQ>%?@lKR}FU*&)-(ns71qj!{Y&3}q@cIkEZmfl*X zWw&jy)uCy2ia+?jEMFLD`Gup#dcu5Wmm8bsuGY2r%Da;%oson0lvh)0@6n05I@b;b z#;=I@;h4C)tNGF9N9#_ht*Yn@{ zNPo)?8RPw-(RQYOiD&E!E}F@LhV51y{Mmd-ssUu|+R!A+lh+Pid&ryUd?##=VovNk zqnZ=$8glQ{{q}Cu3(2@v0ZwZm2)iEI^>4(345Mz*4P|O?44^*%N~k0ESB&0zP4s_ zR_EkRtxxSbCmX$X-g;z{%%M|t$4*7PI-QbvxJWYY^$oXcQp&gLV>;)@EuYWkY$;>E z{$0JE&D&S|z3fipEehssxpU_6w(~{-nHJm(ypF1eWu_hrunu{qwJq;V>?6(a(octW zzCE=pM<;b((i^Ab?yb35`A^wu-~V-;wC1oiGrN3WJjWt=uFxG1B4Z!Uk$v8leXO9m z;cI~ygVY2a8;4kLp3_o?bFZDARk~}M#5B{k+iR|yzD`|hxJkEA$9wNIN#*R`iMgGV zHyz1{e6(au;V#{cI@vu})7GrfopV(^H)31CLc47fOF2&e6*_J7ddIn6`3KXP?E3P# z-_>XQ@;>;f=iR&eH{-6IQOsVM9{Gx02b6~#KRj5mt?P>S%|k)+k8H5f(D~TT_4`_B zc*UcOcTzuYxW6uE)~~LO+`YQjwyoSdRr+mk;+oUn>kn^d71ud(zV-5FhR)};3fU{C zZ#uGpXK%C%sBW{U=W$}5=DK~U-|6NmX?Olyl}C>mKUy*^f4TZWO@Zv;NCu5M<;K>;qX{=M0&d)h zu)KK;UkSe)vtjO<*L|j9>kHPZRe8=cd(i!E z`$_4{AEvb@4ZS0eYK9)3(7u`B1Ao($-W7RDX5}_d7rm3Ps6V_dTR406jO1f04Gx}M zULX^;uf`If=bGBK=;O@W|hb)zy-&9r}_AR`6^nB^;WgjQXPF4Hqp?mqd+BZWp zwqtYNu=%w;e;Oep$&mf)Q;OG$gKsN*ZT91Sy9lRLlR z?X4rX)Sk^K)atSPDbnU_^jhjhRQgw|Ju(q%e0BONrLQ$dFmx^aUiITdi-v1UfYhS} zAD2FX@t39`Mb-s+)8*{rAS| zshN|XDTpyhx=Z~ybEfSDXIS})=3|#LUj53*Iy^J`(R%LN%L%KF&y#*?x)WSSe3L)Y~kJ-Fi9Q)|o4C*MB0KPvtxU1t-|sA0WrPCCQh zl&UP>oK3M@uhe$w-MgV_^wn`^=lo^+EIO9i-M(@BSBS;u17Q+;r`IHJJTP;gPf*FR zPfV{Wvu{*vKXt6Q(xG!f&QVc^&cN!c3)V4wn&|8QP+z=v5qqvfQEchQlsiY#%--Dk zp%Sg-drT^MvB5#+=!cgU^jwdS@!7s+bJeu&Ngs>zs*Nv~a0fJ*e7dzD8x%3i-UYmR zl=OUAH*`7pc6?$WJ|r(f{hnfuuT8irBdF!Zx;QJkKd)YgqGkKDsDleAy=5L)qN-{wmuOtPAXyyv$*I z@%;$9t&VipicWnwPwCss_9fS7`FuzSv5*5L&eUYCU)lnT7qe}DyteWD&fv1xV-Y8p z);xc7O6thP*)wl7O zQYT%L-v7L}*Y$Tu**yQpCDAuCOGW&p`(FA!is#t!{oSqRT}%%a2H*8ITNnM*Ij#47 zhe%tld!p&rlg?R5@}MAY4t!{_#!0rjIdSdj@*7&COR7bI7^yi`lxJ&PT$V#8$8+UFT+C)oS*Ax;t;fe>+E|*DUw1^wn(H zn42a4I5@G1eeogI%VOQk2jg!?+Rlicd8Xr!>&FloW5>Sg@Oym0T}{dlqug#rO}n3x z=dH&4@a+j{KvE9sX@G$lEwY?S=b78|R_uu!1tZWJwWkpADx7)qvHjCp+@QwSFDpLQ!E3WVK zf#DSD&E$krPvi-TFb3qTf881Z|2`mDgPGzp5;6#EOpb=KBGO?OgHv#43xO_F)h$S z*m>^89X!%s(k($HUG{_GcT-}g8-^8W-ru=nlbb5L^wa{^VgvE(O_!g{m>FgH_xJk8 z_t}fQ=Wa+^^zEyH7z5Xo=G2|j*Tfg+8g;TNY%_4yiF-Wj#_<~(Jv*62-P)&RgG-~Q zCtQ@LiL1@q-q!o!%Kh7s%b%Za>~U+|uQ5;0LSxIiiZ2GN`By4V)Lq_t`h(ZBBInJ& zjZQ=}NdEEJ^zEGetcTuHruc5SsF}MY$Dwxm5zm{<3McALd@`Cq5VNXWkbHQ~-4YU7kiYPKU)&HFFMDcST7w4O=Y&@%{wU#EoL5`|X*K%&Y zqNqc{qU}5}rzG>W`3^3xObgTBFY{_fy|jSN*&~i|i~%lFw4_e>6#a9rZ%@1Pe$K?H z_b!A+nasPjOQR=#W#i(x2ci#dKk9m?>-=`lgn;13=b-eEz=M4roOI8v&uc6YgW27)xUPphPi86cj-sP%nZA=>5jS1M3!{D{RWEj zcD2?%&wAMW{pOiX^Ap$Y2z#mIpniYb(yyWp3Js4o{QI-n^km!Ca5ZkR`{!?)blP8Y zdw526nSq_2?vY0c?(AM`gP7kR3t*n#?R<0Q&l8dzZJR`;)ZGe84?5oSs#x^s!a?nG z$7GtWKhfxnp7AKevh?~g`MuArzD)J|H^;Zz?Rq$aiI1Gt>6fAmyf5BG*PmQH$9*d6 zd7e$zDpoeX3D0_v;r?OT=hJ4hx^JzSytUPN{&&?sYzxfve;RNdU-NTukz0*XSs(A+ zdDlO@+&yLO7tOaz-{g93c(c+UnjyNiFK?Q==69QF(6O1PbswAwPRd+$8-4|%4O*nUNfKbMjLN7%fI@rigCihf&(GTn8fs}6g?&SurmxsI{&#V>CeeAt*i=gsk>X%Dz#PqojS+$3lIu9pp)0r)^E4ZL2?&iE#yIgNsMSl4GCotYqvw$I5lDp2f`f{uM!Tr3y zSR2&s-2)zNoS7BC&ER_2G1!-Rrk~lGnO|4>_T$FP}XB^?mt#Kh831fm1P;mQ0`jB{66`-MKODSqkf5|e3~DZ+lzp*eRC6QV=}xg-BSxW8n#T{)UagHQRiBX zOMa(TZhK_<`0QKjgOQ1`0p9=pwms5|cxufhQ(0PiT1xoWjPhsCy#3fY{p(hxPO+>@ zKKJy?M&3_%R~0C{+RSjoyPG@ri{Igzoan^E`&X)SAGfPGzkTx0ZvMuYSPj;ROG}cX zWhUOS^PKpjNjvrVPcDbW&NsbWMEpB#i(Nko>}b)R)jYRI*Fw73Ks;-*^ACXw3o?pW zE;714GoF>5mUVSkzwD0__g1B@KIrkEyTe}I-z@3y{r+FB2m4hF-ZQKXx7x|Xv13U> z<>S>1QCF8uemcG8=$6DSYjhR9>@;@1wr#;W|4*Jb4Hn2Q+xb_6r)HgZQM#d}-XoFd zb8XV6!hTQrrn7nFdR@NtXO16`2@&st2gsAqf@hz!ExgxoYrVXE`cV7%c(L+Eh1Vap zWo(u?H0$ro^LJ)k2%nz)?A+@8Z72PO?dK~0ea>K`b-DKTIY&JP5ouQc$@9(4cigL= zUlC@sb>R=u#7zN9C*084$u-T)GIW>Ofj!M8`@3%(5Z^V0|2Xr6=eiOde5u;CUe%i1 zum5dYRmtLUYm?5E+Q8xfYwaBM>}yl6HC=u#&UPj^D_i5{x$8~)&$_7Zd!bbG%Wz?T za@Vs!2XW{8XZL*V>%RYYGQD!re__csh7YQqW_Et!rk>BV8FtN?>2>YSKE<6szyJ63 zir1KV?Ah0-1pZCeW~_NzHtEqfcE1D1%DwAOGBUic*)F`dQDDm2Z<=o-#jdT)DC7{h z{W8kokj;_aMY%iYW_icC=IpFh2ZznK*{fUm=k8~6yf$&OyZqMdsb|u~lauy``N)Ll zU;Vn=KlW$tFV+Pmbx-tvrn1dgw|UoQRs{h;_Ve5fYYXxw>|Jm3UOIX9wfj#d%P4%X zo;!1g*$2Cm2P*Cf)$}zLE-I5@sJu6)F@s}v%pOUXTi%fdCFNoH0^WLk0nQ(O-C;WY zm~&?9FHmUQKeh1a<6KvnE8?*&{`P8L4D(I;nKtcRBf8}Nk@NNWHs5pq^UD@}x@_}s zby}BE_?44p%U9o)xW?qr{J>Q~_C=Td`q#15|Be?kcFR8EZ<0~S{c+^dIicv8zI|># zH>z3vH0a(`YR7uvc$?j{)?FW6%pYrZw${G367Rk$Fvn>7q~k{1Up=k$x#bOipSgXo zbBePa_uoVD;>k&MlHF4x<5#%K*u0y0d;O2~E4BCe?f>We`Oq#_jSD3=FTP}25T+)j zC%UTA^fBYIaK`wGOZ<~cSL;1avDi}ev6Gei{T`#5b9X#;nBFWlyJL_u_rA~j$4=3w za^7WiJ2NbqJB4+LKHH8ZbEo`nQ=RnS$(?J@1ioClcCzXId*fHynyh_7YgV4B`So#u zuBGqn4!@HJi!SJt-3fl3ANT+3^GjlD<27BtHWG|Y`zgZ*N@*?N^WZ|N|-j!gRm3V^?w}uWse9e=%*s(;Vqz2kX`tPTipwdbLlx=nh*x|M$QDO*TKu z`nA$#7WW>G4^Qn4#k;IdihU`yX4}i~;>!tFg;<8VPx{wY&Eu-H-k&+esNuH%bE3xN zoKG6jZ-Z}nTOP+!fISH<__b%jda?Ee)63$->}vjP+R>Wn_hs9QR7>_1St)kK$wH4; z8S%fg6pL)%uyf-n840#Y{i(dOBe%ZU^7Ve*L)RDE)%NdWy6|l7R_k~MuP_a%DKQKg zM~k};oJsfpQMBpZy89w-s=~h3F>k&EB-yraDz!EU-n4ezUR};)|Bd4?TA|occLIkQ$~o!{cmtOpA8f=_ib#J>w*GJ7CAb{m;9c~uc|&ZYqLk0W_m*A`Jz7eTON@OH~g+MP3pQ7cj`h`be_0H zN&AD3m5%bagJYL_fD-Ay1?v^QZac6sCUH`Dy4`Mx$tuqxQgpvs?mV_bRsOW)x*KeH z<>voB3Fpt<_fzQC5&7Cn=XWtpn0VC4{19&nqekS)jD$~G4dDlR_iFDej(#sbzxK7n zKEc#Jmt`)eBxjU&tt*bX)b~_oLA`;u9INN-9R1fk8o7~XmLeP(=$#LT#)Vj^x%is?bo+b1YjYPd%^PW^J4oA5ASS`VGN%4$A8b-~w}=damxZ5NC0Exi6H)bMJS(y|HqHealh&#LoP$=C5W?|X9i zHrt6k5*M5fsJj=n6s`-y0B zwanM76PYKMHd}u#{gU9dW0B>jb;Y|^8@4|%vGjT*wk*!Xa*vslz`v+s&ho80U1XY; zDO`J|YjC9ef~4)XGi&xe{GDxIyFa)}`du8m^sGN7AAjDi`@_?qZg2SfM)o~lste@k)etzEn_VWjGL0+@?BHsJi96L>(eZ44Cxp~Xf zkJ}!dsPOHZv}0|-it|r68`u8hJFfCF`)FwLovjtA4yCC_t{l65=G1Gy_}??x>jHf1 zq8KtBpIop1zjg}mv+3J=1#k77{bZdtn&umZ zmNqUv+g{ldW6HNMII&B^-^<5p&vOmnmNZ|x15p}J)u;y%RLdP2iALq}h z?N?^+e0|IK-QQ=O^7HpSy%gH;p=J8kIe!ke*SXv;in}Q&wRdf?n6$>vz6h2VjS9Lf zpUN7<8vZFYq_YaE@A>?OSLpDC9l191ypztx zZ;Uaz`#_;9-J!dx`kQ){;hB}y`FBfx{;zp)&p58maEi&vr%TjlZoBZLU8_F%_Q5$y z=T=;*+JBXEnv#(iV_##|ttV3%bXiP({$y0tXPbQT$syLy@gMFk@4NfFCA`P?!A*ze zLw$QQdzt6ua>=aeSPKf_L+Ri&WO($}9X0RL^tsz_t-8t9aA5DhFKegQe!Z7J_e^Li5`@Fi&>UZ(6on?$=2J^Fcw|w2VM%utNJX!F;c8;e`7vfnq81%fY zI&$e`ddlP7nVF>i~{ zlKGNyr11-9me=CWJoTL7*)OU@F3%2oymoJXzQz08`}20ayCWKK`N_1&^HbM(`lr|0 zeZD;Lpu6(*7hc|zccz?CUe>+pw)|_|e~T;xZ1fpoPCsWVQ9W>;z2Z~x+*i+Z=gg^j z)ZRbK;sd9@%~{?czs$eiCWWtVAx*9NiphXFw;iz2(jZ(J14Ka-VR6 z_y4-GDJ88--M~MiGL8Ra&(q&E>ol{9`?t-tZ`>(7cj>j?o8K~6Tsq)jVYjOCajQd| z;02ZG-Hh8SKNaidcIMaAEO!?3llk^$@3C@=gy$QN?tW{rt>CxpWLEEOhnMq-Kfc>~ zlr#5-#HSla{;cJk-*Y~?#q47W>wI^K^Y_yVF7#-uJ$v}jwiQRSgO7a8(-YonzS-~~ zv!&&VdtcP5r25}q&5i0dzr1|%%iip&VCicr!LQ%H%#GT-YJ1(+*uAFP?=|K>zuW2m zT6g}wf6u=hmf0fyBWP~+PKFON=d0VjT%x0H=U?^c$==hZyDk|$s63pf_4?ZJkZ|UO z9?abh!Kum%D>4^zo-p;z+bi**<+(QFHREZwCN)>?Y`djzp%Z+zwP3N)ccTUBQrlB~ zH{Gkabb6Nh)-{!i6KXHH`PH4``+YVw%cEHBx$%{ZT7_~;2`-}|!GeH2Cp^zgo|7HN zvO_m}QsrWq31=qH&o23CH)-XInwMo=QhWKVnX49^G&>yrm86|%pR-Zwp@ZRTf4c55g-f zoag_ZS)cvr{M5)f$~!IAwArlCtxdhJz<&IkvN%)IXO(G2Uq7~_*RJUQwbGz3_4>@O zo6nfuE~pOSH)pnC+#3FFd)6!N+@hv-gD2jfv;JRFlzCAm-+2*6qiS)Y>>EXKzZ^DSm18z5mtDnT+?o%goK$91}WOH+jpM zJv(RhUyOM!lefigMSAgp##V>rx1|=pTb*UR{8-`t74xDcCrl1=S1S!to0Hf6t7y*b zgEA+MYD>?)D%!v^C&jPks8hn*D@;>gEbx>|R`zjwls2VtRc-Xr@6JyjpD)j8JCwGU zpXRH}?nbJ({xM>b~p8Z#|ngRX2(8g0<-PnZ_8OWm4iD$eF>ot3XB$ssEred2@LVTsg)DUE?_Zj$t3=qfV*mw)Qq zT$jxDP=;a#%i$*Ws7`=RB z^zx0pqnB^kj$XbodiloafzrUcNDU z`Nrtw8>5$Rj9$JmdilmJv(d{pMlatOy?kTz@{Q5UH%2et7`=QWW%Tlm(aSeRFW(rw ze1moL@{Q5UH%2et7`=RB^zx0-%Qr?Z-x$4oWAyTk(aSe-MlatOy?kTz@{Q5UH%2et z7`=RB^zx0-%Qr?Z-x$4oW6S8}8>5$Rj9$JmdijR>=;a%umv4+-zA<|F#^~i6qnB@t zUcNDU`Nrtw8>5$Rj9$KRbM*3!(aSeRFW(rwd}H+TjnT_DMlatOy?kTz@{Q5UH%2et z7`=Q0eA~q6$Z;yAuloBP%C&GY=;>Co3ZZBWKIwU(Ns7{=S&Z!^GOw`JZ_@E9c|R|I9Brxqo;5 zXZpj<)BT^32M58#!~Li8Kl49s&gY%~nO}3U_ILhgo6E+?-TUNs^MB5NFK6;IL9Juq z=44}H=x5-za&~odb8)n_G|^LOV34tNak8^AGt^O6l9dqVVPG&d*3(pxml74=;b3KI zVBnOO5f>Jdl^5e-Yi8i$W*43K`2YVGclJuRFmUesf4DI}eb4tgt|kU9r+;_O{{M5^ z)8~C!69cz^90Nn&!L*0!dS^M?7}&&^_@o)K1G*U)nJv2+m>3zES{c|G8JU<_SlQSc z8MqmlAWRNUF0KX!ZWb0cb`DN1ZXO<9o_>Zt24`EzGapE`N`=w1efv**qpn%mpny=cS1gZuX~Fq}HE=g9m2 z|35rEvvAkW?FFO4ggGcau3wtK_6 zGcS(5Ub*FV_k0G1wX0XHShi$!*rFwi=j@+0oq=KL;)M(5&6z!O#}YRmWMC-o@9pmDY;S9AZE0@KV_*<3XaqBx zni^|zl={GaJpcJ`^MAH~U#~bYFr4rF&wQ1E;dAGI=5GuPe>?v({bOM0{?CYuU}9kS z2TBMG3|~9{Gk<4bxYYTd?FIvb-lZ>pTmCbByBgZZkeO^~!ocuOvopZYotI0Bi-CcG z*VDr#h=GBL0faf&7#JA7R9yMRz`(#*9OUlAuN^5(WkaDbNiw49p7{8JNK$j0_A5m|(I@3=5bMY>-OsA6r`)7#tWpT^vIy7~kw= z-=XSWsDJPIva`D{ty>a$u5$r{hm(hsP=`WMpPEDg!#!iOZHC(n`S_EYE4O{T|6}ug zW1D&M2Rl;^+)z>E@o3<1QsCrlDVi2`DQoH7tMBgpUjNGY?($vBE`Mn;etu`(``Ol4 zL-+p*E&V#@a&6kPIodAwidaYCXb4b01ePslYPKs$&CFcMpZP?_YSn>+3*DF3Exz~6 zU?k|KYP{khuS4$J@Fv@Wy@Z`pe<^;t~gzt9D}*JI*BzU0sOJt;7b z;Y+HD)w#vJ=Ck^CPdNOP>j{@jh{Ct6^TfFXkIpgjh-2`%*>LIIk$oRl`cErnEn=OP z&KmPxyfV>X?{nuk2A`8RcE#-pzO?sFZ%kuMqhaWQZ}%pNvnEURv>krN>TsC#ZP&SP zi{5CJwOahl+|PCN)P)#Ech;)!Q%vgrpX6pbe&TD)TyX|ld4*YW^%n!9y^H1@h}Ozk zc2;ynK%-h*`&vDvAJxHe0wEH24V^wSCG;HSZ+)h}N?_ljy`AQwQkydEPR)H9(-_0J znJHBL%Z1mQwdT*{&A#}3-5!aAqb~!E^%<&6BxZ2cJ~WvU^`bSO`|{L&-Lh*SPi_fk zyzcV8>g?_h7bP!!-?B%dLoZtWz#fJdOU^u0_~I($RxP+r+^Cc*@zt$No!K&vw*O3t zU3Z{pg~OYc>}uYlzjnRK_?&OTS3Cc7H{*4KlI7>Q8{TEbcDcm!s3z|@^o?ohJ+taH ze3dy7^XDB4+tlrR^Yg_u2ew>0ZFX>m?Rnj}#v8K~&z0T_;A>rIB{zAyWmus?-|Zdi zH?O_-|C7^!$VJz9OBAB{pK)!tBS zkLxbqihK9fW1hpZuPqIAN3R`eef-NR_g#1D_Lo-*e&lc^+div25H&4q>Q63*)lW@N zX8ZkF*V*(s^S0XUk{K()>o0KEB__T#?2p;_@k%j&%#G^#&1qq4tP%{&_uo$_%e#N@ zOu}A?Giw;TLO&S)U;V(b?W%%4gYv5h;@=~0h%Yc@cE9t$!a?>OSF@RodTzcF7xS~O z+Xr4qTksq7onlUI-BBxXG+0%$=eYUG&82ggW8aFzzYIROktt-^%Y)L(7A3w=`n@yb z;KO=x$90WgeWa{D{C8;5tF{O~c=)QDH1kB>*=?sX7UX&+$V@eVvT+OdEv;`!iT7FS zSkp4wBcg6`{(9R`%kgCGjW*8D|CS!Ljheqs*=+cFP4@c#C(C}l6g zyzUe8ZTVe~(?p|W4Si>yDSh?F#dhk&``ZHRTis=@-u}Zgx2irSkDGBZhphRFgi@I* zk-S^%F>`M$mUH*s_VJc57f3H{UR!p|x4y_JfM|mmWQu>+RjW{Xo*gT}Ng4|9xmYy}$UP?*HGi z<$1fmD8*E0?7E?>c4*^@!@e)u*ItaDUe}TkG*3LjF)CwK=OWfu6{j*~UmWSYZ>AQr z{MNqYlVz9Y|3AH~clrGCe{WWqrt_qw_sgC+Bf~Y>+V7LaLG7A92U1f)SheaFf!ha;6`6G!@8~&};UW7v;pLoyd=veti%)7h%Kxp%7vGTnCMlq^C zme1e!@K1ENh^R<^h@1VY;9Q$W%QhSi+qw43x#W53bC!CVt>{#qxq$O{rsRz_wK^*` zuVwCf$<+q?6CXb)l;8hlPOI9N zAz_Wsa#)Ohy{7MKC2edr%M%@h)#~G_ zZ-p7j?OapRoP6)kx~=W|zVxo2AG!0_&H~T>f(@}52^L1ID;<`WFH`%Y#kPhipIQ3! zO_g&GjHDJb7OZe*nBX*{bMxeu&WtaSrZr{rdH){dd);_+_O!CMzh0f2z3%61dHeT* z(|NCMT5?LZKTH442Zhov8dHzTKlLv4tGx8Qx5e^sWOqpOteBv`(jR9(Y4nkBi7URk zO*Sz74g3BV)5GMxPqVK#_W7mXSpCCY{F~dcM9aw`RnHS!y*^I0gQcWn544hH`1rOO zIw8ke#+Th^_w>y8G2!96*!X*eZ~O0;e(m<#wMc{A>BYKBf$RQslx@|Von_sBI_F)% zHN~q7)aHi#cl)DODxmH6Z_l+=zWp)B%-$J4kE?jS`Puh--?u-Q{IB!EvGwPk>Mmru z_+CfsUC8~KpZ9`%mKkMbo47f&M=?8C_K41t z{&8Ho{{7YWJKlTC*RRm9Jd|U-^m)jh-iYUBoy8tUe;&U1-HOfh;gyFg-dblihZjDm z=nb7M7pV94_x%5pMEn0d=KuHdOxINXR`wreSM zzWo~0zg@N~x_D7quJF|S!~AdOaDV%g?AutZ{Y&=Hp~;W5YqhMx8n-w0KJ7VpG-1OP zspYK23^G~FB8RSQm9CVU=*}C@Gym+VvoaCIA|fjD&z|z#bNkcRkJEBmnd<5v+_L?i z`}4B={N3-}yYqI6F>i^U)3@C--?uR6*<`Nb&YK6>qO**$CTz00s=^a-^x&h?(6^UT z_^$@-nrUqJ_3-3tGKGKQ4_*J}r~Bnx#BW5*wEj;!ru78H!S_3B3LzPUHM9JW5v)xEp*`M%xv>%Q*%UB|)I60)wffopN! zs(E|XemPdy^-Oeeysz06ma8i1sq5_cLmoX@|H`Ys>QFn=LYv|%(*G0QPTc=v8$bWE z=jXLcre>SJ1&2P`e>pzzsx^rmvm56BHfL_660=_>OK1!`Jll!^O?&tYAGr9UN+SBH`AYuzzKM2TV@p9Z0lsNR|oS%@=qIbrkHQz#_SEQ}nqiVlMLFw(h zDbZWs-u(M^ZTyev)9?MVwl8OA3Fc-jJ#s2Psb#mWCCfjbv4=sUZB>4AaALxh zlz!VlBilu5)N7B-DL#1ieB8$OjP=a^U*GroUEblkS4mdZA5^%=Xgj1%3;nS1hFYOv z4BN4c9=1aZz3jx7}OV{?@eSUl9T8=AjHacNk`X6s@-tqU~ z|F4&iudUP$Sa~vDR?w|nuJ6Kvlly!>*d)IXV2(14G-)E-D03-=y-L4acd@3sd%Jzf->dfJe?QB8^YxIp zTOfEqoau)6mcpoeZgV#JzKBWwvhbu^9K(bxH@|;-(y}(WtEpc0|7-j_rs6esc+Raq zc0aD{Z)=$?VfbU!r!Oj3x4&}U6Z&XNWAD=(q4WaD-ir+ukoxjOUy5DNd9hEvn2TpJUrzpyD>cE zSXt)l(@F|O`!t{4U()2C=3C@m{58=*iM{!n_sOhF%iVvjte^VlO8wFO=g#QcSniTY zW@C%Do%aV`g=ZpH;Rm5r)2=d}u=d59^otYD9{V-#)a@1Wipq;F9uN3C``hX>;TA5x zb#?D;`@G6~e*NXsa*O|6Z^%|Wu=^diVz!xMv0rA-?2r|nYdp`Lig_&8!=_$u`O%p% z?c9&;r~RX=pB%Qkcs>3D_dX|^#WP-M|JAYxZ(viGyEQlBo?4-2jF@_NSDEiAMV}LW zDvCa{zX_QKZ%AAE?{`h@wgBIneN%H-e2)12deQa#Qgt?ypJ$!JsXt=k+wXo~e%-ci zeR-qjU9Jc2Q@Ki)8r|}~-Eziy>7LmkI=@*RoG0&}^<(3_&HjI$?aiMXz58Lg<2(0S z;qx;dXrDMZTmQZ_m-7|3+}>jxPXhWG6j}`wttb67u!}xne$tOgNN}as?DOw7D^5Ir zud|m$F)6wBP0wbIDMIVJ`2TEPn1An6@p8Mj3s=`~;O=^|OQ>PWlxe4y-ddD2r@P_A z&f~MngHP4@1cavdv{lJlGHh|vSiNo6`TpFU3^VR;DExM3{k?CNKRE9jOM7h;^8JwW zeZ$fpUh}*9LLcNNBwHpIOf}?VZ@(q6R$$pW+2*ScJwB=WxtRRAn-(|ss7hl;#LD@; zzg0gr22YBAaHs28%YUmKk1yrhyxex(?w{6zkZy)jQ-;hdeOs4q32~dfu{T>#!1BMu zPP4lKlOr$hnfl|HA;ZL@%fC9#eE(|l|1%r+|9iKW|M$=Pf5iTD-(%J)wPSo^JDa&? z<-XAC8IXhvu9@CQEpPplP~jsavq`$})R#b+g%YK2!r~XHEHbU0Z+lg2RixJXtLp=z za$Wm(Z~2*I`8sGZ|GtXe8`F-wvn{{->(}ggMGy8n{Hsm~=VmB9VxTp}%4&BP+np*K zc3$C}m-=%bL~#i&d%Nq0um8XFnn&!**V;a7sc--NSNrhZwQUR13q;RH)rrp0cKEv5 zXqo)RJ&zAa8ulJrk z))f0^JANFvX21XCN9lhY8ZW0dbVjkboO3>UVta8!8F#~pMXPsRP(HO|wfFzc8uR}? zm7c%7=<~t<>?t|w`EUNLJAztIhaR(#k;zK_<1}M}>`A8?R^L?OAGx?JzF+$J+sC#Y zwUFfM^*861ekcE&Nq-hBkNtHrqOT!l@0Q}@$MdW1th(;h^~$Ruiebg#qQK)9GB3ZJ z+Hhj$ijsAvD+7dMCeN9=bJs2=fyjbT;VKu&^4gQ~Pt|K4zcW8r``>=ut;8y`u#djq zR=<0mN!c+ZWXJvSlrqYy|Z&t$KsaGC!3ewnqYTz z`y_cr;fY`JG``&nQ<*U-y~}^?$B!&uX7qe!l;hj;q{D1r97p}Cu=iSGAgu7x-EYtoYopY z)!Aj^%O(9+vL5OC|GR(d*SejiukS5*ba}Ja%cOqIeV3LmN*1kjn z1NWl~%^VbcPUJmFH0YO7?6WFctsf{)$%>~6CP}w9KVNlwe(jaV-|ke|{+*SuUYt>|_|glNT+g7%ao%4Fx8&+GC~^6| zc2KXo{p7#;=Im>Kx9^zO8?bM3O^cRy=yf+pc7oIcfwr>Hin`}=Ua#*Imn*f)n$FM5 z;=Zagb^8-{5tk)*Cl|fXb#2nDT=wINl)S$~|H(5oem!TYWQ=YT`zua8ex%^7SY`>b`$;XAZMZQo||F0fXbN>C=wYOjEF05O*S-WL% z8Kk%0wz8@Js99(CLn8yXp47j){;uZopL@UeH1{=pKeNz5$s4J#GnCMo-e@d!I4LS*$*IB_ zdKONGHD#-NH9Bu(+^^juaUwncj9UkCp%-4Nr=?X~qVg)h`~0=sX$)dh?ev%AeqZOE zSHI@Zf9<_-EG}pKcg5#&o~~qc_}yo8x0n6jxnF;_o{y}&@bLfoR|+R4Uo78dbcie9 z{cNtqy~mCn%LiA@f%-DwzO`D4yOI2{bnc&OH$5GcltME<-we)`P`SE&Q~bk#o9kD& zO(hes~!H#}w3<61M@rg+ct{+D5l zTC%GjByaS6l(d7V=c2^bW001VQ<=)=#2T}y9sG|sTP6#uE3GQ{^Tt zyZ-mX)11dhSEV*@|y72b3{rg_e;mv0kRIlGE z@PL~^s_B%+!tG{xtSrwoWOw@}uJip=SQxIcCW_;N|9_3gDfZmE8w&M!J-X;zDYVzp*}5X-dm!{37Hd=AcXE19o*W&O6A+C8e$ zfdUs_B+so|Qn2jDgU&fm*yp~!C5~-)zc2SGTaS``f+c4N>;mkrR(E}VtZEdp{jtf+YYJu&}P^v(4JE8c{QEHtm1;NhjGX}9&*ap4QeUaz8;+C&yy({Zb=@Yw45G*~UZ z=Ed!JtK`?x^J`RpTwcwvPMa~6ZBp&z;?RV7N`be9ud3XLYvFjt*X{MYd(*ALN8#50 zmb`x>yl?ww`?P1`e%qJ6w{@Q33@MmWdk!C5Xtql5(3P#p8?0nJ_Z{i%aNB?T%<9cE zR0IUIzi!UluVPo=^@)2)8X0baibveBE#R zbVcm_f0xP@EZfd3uu6={B&U<9cSos3I4|?IKhym>blZzAn}=RG(AD)V)b~$C$ozj# z^M5;6zk9R({@>dlg!ku{&SRan4%A2m*Y(kC=Q4V%-UehloQUgMZ0qjSvDkO_)Y%%H z7G5(v?5bDsz6`F_{w>Nk^>3Gy$=m5i!WZ*Tt}vfn`|N4ND8>ucf&(KY1O)yk6msk zoSb44T(iO8WSyLQzozXxxucsBju=as{tD+y&WM`!u|I!0780KejMcKhc*GWdvnvFZLrfmM%lfH90Itr3M-xPSU`FBn! zA~U4#6baOR9%vEr&AT`Ju>Z3c9#8{)u%(^qB)*UEc&#w_dLPr*VGn z=ex4==R`&n_L+yzpLpYgPuI<)0z-+O)CWDsG=xE8FW-V>-dYMd$>iQzd&kA|NZ=ut zPd9^eJ>Z$)$^!8^(_a@V|IKTV3;z9_nfu(VCq4N;@075VttgGN+kL)`<wEUvqFv+2Z>MDkB=n9Pe*h}(TuZ>6`%=qW-}FBUvtqXEdczm< z_dXN6Z4PQSY}%HW%oq_o_ubYa$L9*`nI8na-t+3l()H~JQlqLej<-gikNH~T;S|fd zfSa)-c=xHxUROWuS(>!HDr9oeJ{r)`&U)SEv z%)KvWZF=KTMKB*mPEF6PzIgb*Fhh-CL%}ZP_Fks1Tj#NIoQa*Z|E+yiQjT@s^!-a&8Qw~t$_nRZ z_*rUy;r!gccV*|ddH+ver80N%T85(=J?9)uHF0y4#o4~N{wiE!?Y2dW_in%X!ufga zXO=HB_N-s%_D6y<`%>_}yD>72vRQMdpMSUc<@H(YPYh4~u-l#39L;!pUfl&j@AA99 z1T0p$HdHBWm>kVm$rv!lXeD=p1LIXD2j4%hR@nb^{&6$dzVzqM)%{gJ?8R1E@E<$* z*a6aJR?gzMyiIoU$D)Y1K+VD!;c9s9X5=MjaZ>in(&5aT3 zjY|7AF&!{uYc60;H)%@|yL!RlUz>rVbx^ATBwx5(dcE)k#yEjz&4VdV*lpj!>#!|( zn^`uj_)>Xs)>-E_hLy(!CV%_swVVBc;mN9&H`jig=`>Yc|7-K_)$^@tk4Mid7u|9- zlwm7}gZZw--IKLa`CcDpN=W)I?$G+^p;E)UEJcIrW9Hlb2>v7nJTb@q0ACGnS#E%h&#^@)@(A=Vd-DijTA3 zp7-8dW8REFQv)~WjYsCn@`d|e+9u2VGwDZ;AE;AwS6%f-j^DdOH^DT5Hx2GedYUjCJ4U-*7iG007xZmzYC{Ym%hLg&eM*8Fqv zba@(N<(8cGoG<$8%Ix@Ee|Ngqh}tdh#mBT}`dGd9*0~-I@0}|8Jb>n)eEr#h`{}G|A1RqbEpI%Y9R87`cwfbu)5B$nRxYU0ZC>&# z?3=cX)^E|NFM8!wCQb5&_2DM{3e)r#n`7F2QBE!>H}I#$30VG}W24aTdCY&4u)5N# ze*uaq*J~H}i7lO)ZV<8ilYRdGUfJjQb^JRXw7axC>?>}Y6})C$!u8uKajXGzFVB@| z4@i9)^6~QiUH8|oV|Wn$|Jk`e_s(&%6?3b9+Q;TDA>%Y-SJ|1BeD0I<3zd}g{j)2V z9{ch$^0kKyq_H0Q4D8swZ=ksZ+7LB4*B&B0iKP}?`rS^uBe4DQIjh67UZmwHS~q!1 zEKBfho^NK7mznwe+;aJX7ni2pE^myDWnI9}@<^2N&XjH|zO6^^vpqLz-oEyjNi1VP zx8&BW#qL`LX4wAIw=2`}`*-c4awy+TL8(K~j+M$@xlX(4Rk|UYL*iD)FWhpgE3Yim zyDJpbXj!1AXFolzeHaOk-5rN@1rJ$*D9e9tXY zJG(JWW_Q-ApD*L@{kDI++j_sjjQ9$Xw*?s?>gW7~)Rf+Cn)VtrbPa06yxOO^@cTBU zgWyJt-brX9M#|;%#g257tS{$<+E+zLWJ!Iy2yVv6?*8&spu)$fZqi%}!NBkB+=@L{ z&rMl#(%I#!tEJ~UA;lQhibKDgkABOY8^g+RCSB`lSpVfBRtMdb7t8BZSNs1rcK_ec zFQb<5Nx!!`FlqX{J_nBAgzhV zM1`j~$yY4#O3y)0AC>}+#?=h-cRbVOx6S>$TY>BEm;SUng?^n0%vV}+vL4A~@8XSN z4EU?z`|E;X<$d|S;^pz59vn{(TVo|{EiHAl@Rs++nN6k}t&f2RP95L_r>${6K(*S> zYNjfmxAXaREV8%NoqJsoW#ClxyWgXIw#vtwOV+bLF!aoOxqj)U2Vd0Ll%{by2ya?E zS@iIfH8W+rk9RA4ahfLfzWznwW_L#UzitlN=b4^pGhBPPP22Y9qsjZDSRMq{|B5gF zB&p4=9X9tU`~2;dUna($z_$W88$sCywN;#;Vz$1a`?bPoBY%z~XYuw9xqV zvwu%liNC4)Soojo*vkD}3)K8=86FEHtz!s@V0hsv|7(%`-}%43>b{>DyZ`(7-@nr5 zailH*jbTo{>NmwjhxOadId@pSqoK1Ah$2q@%a+Xj3iFvC1f1TOarYS0hGm6zOKwe2 zdGVUD!YA%tKuqTM3DrI?W{J(7AQbrN=0BB09Y3*9%@`9kCJDxgA9?3oG`JjnYxD26 zyXj}=GezAFWvHC8c8e+@yK+*<&s`3`*+tYlQv&-B6$NBXAo3zlR^c$m_&0 z+yCAzmSS6^aog;5htPuad0Pcl1vwvkd;#^#=E3@9Q!tyNi-q^SExs&xW8t;RpKt7> zg* z3scQrpAglU&#S0v9VoC-3>H_6V!$wl+jQ z4v45KxV`_qW&Yi4hb7z$Uv(H_Sv)NMJ-n@=!?5gWG{dTIS%MDz#@hWgKk{4I?x%0R z)iJ3av4;?YAhi z{>{gq$X3Ue&#jG|aHo%fZ>t*T&9xtA3TJ2KskXc^G+ZMg+90ESl&gU`P4?;mNnYNI zP6yT$YGkYtM!~b zCRcXmP(tES<@SKn8k)|9I=xDP0uw8FXM?J`nehH))|W%;-Q=y#-xt1+ob|sZ;b7!u ziMJ0GueRNDjAuUpiT&BUm=T%0A?extx<7}GPM7QduPg9e=+71Z=QA|K+-~hodoRu)sGQqc_pxc4g>&2W?f0>!&CAX> z{`K7I`t`8$JHyJ?!lKuiKOOzLW1(kWSpBjT->0kk6|I@TmEGC1trByNxG*Ry80~2^ zma?(-wm&Vf_F_oX1+~==THeWCD?5sG|mN%RDxqSN1Of=OD zIz82ZvEV>XzhnW|4AbR8D*Kv(MM4^%h0jqi%b6wo{q9=3zmJs|)>>>|p}cHS%G1tW zoj24<86CR4#Tm0cO`reId`{)REJN#h2|oXfl$viL(rPnbMW5_%==8`|dD^+baS~#j zQ*&kh)K4h~BQIO1V{6TPzd6?|NdeSabt=2d{wgI_`y<>s{b+$>%|%7{r6H-`7+$cpCW0xeMtVpHeV&u5NjYWvS^JvaKwoTlR$S_i)6z5dFi5TI+tQBv?^ zdHsjEGw)X4f4;-*_|oGu?4nP+`@A+qIYB9@BKb9Vyt=0DhUE0SOTYhIaw|p0-JxB| z`Q+L3{3FLaB7&D*%+s5CZerrX&A9oPrsE@R3s*wZ&Jb~4Q(^UO#;i}_p9Kz0 z)jM-v_=t)gL&(96EiuQo-FvwIpKQ0neNTfjY0rj^8QV5~h0Ztdi>co{|M-RB(&NT% zmvSUN_PF)_o2lrfD|T#y_iW||0onhp%Hm^q0@`oC^!Mmo@%wPAz_F}!uWL^fQ>@vV z9Xh)i+#OC8GW#)ZeiB@762^Th$=>atjzae-xrWT?d-|GLKbDKnRgSAa#`<8{b1|jr zy@nz4_w(Jj&FXOX^#9|vUvB%iO}zN`bMK_{ZOkt=hi?)z5HxJrSem(7W;JN+@5=^n zd&$#+7Zy&71P>@|o>cCZ2-M`Qylg<_4WrLfd^WzHrIsZrC+*=h;UyCWm*-kLj{!UGrQ*Y5B7L zH_3O^av2YFr%Lxo8X6lbr#=7Xx*n6vH4x9PU9toy}+f2WAJHNo|Q}(858*7U} zvjo?`mD{9wORr19qLlaO)iQU6cB#8hrlq9&ty#I^t6_?J0%veggn`u|j}1F|dsiE7q<*&-kT?G2r1pd$D-lCaD<*FUtQ?yZ8UNw`tMl{*}kWz{7sm+v0oe zO77)@Be(5BhrDv)*`zBr&jW)Wzv6fk@Olqui5RET{54Jgthje4d{y^SisE!CE7=5U z+DuMHocidX1JhgSnoep8a(@$E} zATd2TdEsJk)qBE*XU;{9<&p-{d{V1f565J=fO74sBe|gs$(zHKx(hr?Y`{B<8tNiLZ=gb5!!8X|M|5S!o{`e>VG&HLSEHJkKI4_;|#KDejibG*FXzfa+HTq0l07|uBh z?|%9FiSRAv(3-sxH$Hrso-fcm)AWYCjeE}SSJ{`%q~%`~Y`(>%x-Y})_l2|Xo^KRY zTOBVu+vn;e^&+vm8nV_KC(bcojCG$DJ~t+2--_eD-{v3FOPSffX|wXLhibLD?wMO& z2(CAK8GYo^->?>jASHXLe`0gapYtq@IkfoC#}moPv-4GXf^Q_beEi^WVcL}s?!{u8 zOa%5E(X_D?>JZ_Td1z`CXCWEEuYSmMT0zpeTMY`E0)?k?rabXx*u=-6q@^icw~fu> zgVd=%IXA4V=FP~u{&3B!)k*U{u1Rmup8H31@~rxh+f{3R_D5&g~MCLE(^J_Pch>^kSz7pdGpMs z^Wqct-3Z*5X0bT+tGbtxRNa<|J&Ap5Je@Okf@{RLhM;QaSxD27@PaN-xw-1XLuCuK z-)%R2UD6xRY}h5*wLee!pIpPN{1<_N3;4`aoGg!Y+}N16H=4m>)k3b-UF#B7t?l3Z zTdrc&+E-?Cl``+JK~^TTr`Y!|K0ZaxU-V9q$s@^LslS_#EYuQfo7GlZ!XT6N_WkDH zIUWjc%u3fnk(*Z5z4@+AtKDc@F7evl-T)~CoG!tq@Cd^L&E;4HVySmd!|b<+I)%??R>q|f1!@;okeqWYA&5$n17Y+ ziH(2hE77|Kzt-(a*lapW{Uo>W1v0u*RvuVpEX3tf7vwCY+^3wn}i(79t@gJEW#jg27E%RajGnGP(X{)CCy!8q* zt8B5iDQ`WzxKa1k6~EM8U5n6tlUkU#BOfpHO=b4tZPlr)wPQQDV&NylKIP)#NvhAE zolu^U^D*%H(QPcB&#d43zJg=vGifQ&QsM2sk3<>bYOc!Z$dtV~bSYs&Q(x29I~r5M zq95K7pMB==#2#ne>I=JiSrdG%Sk`?%kuZ;g;}hm6tr$XhO%UGrv_#B)yYc{u` zMQ102n?p(kbGk`I*|fT8icyPKZdu^#r^vCDK}Sn{ecG zK2u~o+wOVgT#==2x-4sSYJYn^@Qh+u(RA4<_-?{{^Zm~!29%mIIL8?BT)U_-BgSmH z+})^+l^(Xs%8E3zltH6CK`Fa;S}<8(vC^M^H{F@(kIU0rHfnDl9k$3l;^1=Dvvq>( z#xS1XO=`RgpGx%fi8HXD`8Gq)Pf%d;?j~muP+~aF$Ms;w8)=pFhI33CcdW8p_d~Pr zdVY<>lC{rdOOMQ(@%h|_{1x7vMql1N$X_qU(6^r97T0NSWy8}Cyg|+H zg$p)D8Jt<_2CmS(?wGZ{w>{nFe{HGS44Da*ea3ac8^y!q*!CX!>Gt-9r>XnHjVnD) z-2QcKHLFAGy-Q828zp$IIib!?|!RWZi_`{ zw_i#Av`^9G(Q%K6%NqWx&DeK3ul@Y#X04gZgfjjU$&)_TmM!m<=veXF89l-n`x<8K zbhmJEIQ6%)q^l{?L2T-|gX&NGzwUcwlHx5p=gJ3({Ib0KAJMa_xni|G-}s|e$oN3( zn!_3WoMq2hrtX}4zAa*U>?>Kf_NcZz@L<=)zag{N>wzbjO5;l3T)OW3!0_Y`=unbg zi$R!m@Fq3>g|}hpIR;cOM`5d%wGJ5GyzccPpiJn9p!C(pJ@$P!*3D>c{4=w1MMo6N zg+-ckPtQ)OR`h?xX3~0wORsjh9bW1lp9xy@Ex8Fih`QzW!RtAz)_?hIQSGy} zXqBG9#a-d^nx?j1)+6IB$mE3>~&~evN1}-(W^^C zgLz|G=jD~4%%#5a@P)_)^Nz~9?_YgP=8R6q&7YDR)5Xu(?pSG=abwno{gbybY!Hop zJuNNm`tDcnrPJ>}wOT)4TjGWE$7Gc?nJ)Q<+Za{W!@3&L8tb;b_DDT={QVX|X2H`> z7I5CYc(NzYsB(#Ng>ZVoAOQp;JhtJJRXUKI0P&YHW4E6{-Z#G*}~ikH6s+mM{S zHCT9!=oE{7M3zUZdA4R|c`GYUbiod7>vjTB6I4asTU)cnx-M zW8>8UFIVllV%@{HbqP4S)ZT91oX_#;XX~3w*Bv2~y^v9~$U|#Z{$ARmVqKi%>l$ly z?173JYRgpRAUBfO5oI!xl#o_-?o0-Su&TUkX8T7<5P(;g}3`E z@15>%VLf0Q5NXPO@#K7dmrSo$m-88YPBA%%Mu|=ri@EiH(cwqv;e$4Pdu8g6dp-#8 zzK6G6;UDH0Zyd4`+_0EdGgV3QuuNp|Md{;SGeCW^LQu6Wpv!VbYB@{i`UfJcsS4LZ z79Msl@cG8OxnE!|i)8C&FR;^g_pN-CYxgB##ozA{f3M24y0@lG_-Cq~%J^W_oG1<+ zu|Dfc){xq^Y4^;zzylK|zb1p%h=AwAYs%*PK7Ybk>0`9-{5w$GmDaBi*!0>iK)u^& zX8UKS=ps<;sqAhvmU{Ytaq~m;awmUc=3({MLBc+KCuELG?tguwwtIWod*-f-3ntr1 zFF2X;t(I|tT1AxaQsX}D^HsmpEc~bVJ+6K3r)=hSXqFYfNKkIzKDna)le2?EV)##p zUw_=DwlnhY%t@wGSKGC{;m}E((PV0BE}m2%B+S^;aN+~oxr`5QbpGl%Z*dFGbeuiM zNg#_cBE+xmFsM1s7P#P|=Y)CB4Epw!OB$PAJ7qdM@rYNkZ-Pj5=DV{@2R>>y?8#X5 z;?;^b%|DawhEu z-gV`mr*E><BcI>NtVhuj4Hb;o&qi#CJiFSWuU9VG+S?5sS!BhZZW(0j+Eq$x{}n=pw^ zI+nGNMN_jWfcwBAt&dTnpq{X5iH0@jqmH##Aj!4oW~ff|oS8ef9{sROt>(&Yo2!u* zXFpz|&#>XbVaJG_S<35oTr`vVcQG*_c|+E185X{+eQ!aH-3Px@L_baaXVtwa0n`?s zHkaGisLgWIGSfI7Hd$3Y(D>9Jp><0x1Zc9HVT(x8wr~LrPxbz|$7Z4SyQ)+7*g2-i zq{Ue=ACC)ee?24i$ZDbFG`4!)0N;PFR`~JcgeL~qC0qJEVq)Nq(ff7hk5pu7Sk*O? zt~rRz0$DtgJn17eMq)S;*OVKi(cb@7D?rjn^#AaKITaa+h}~)Ox@7Ke)i-Y3;|P3#2CGei&w|yJMH`U?WVzm z^Ln}9VJ6``cxSK3%?N*?>BDqF8@s&!X<^*P&b3bB_zcaeG z2 zXPH0Dc;$aguBhL0*?iDokmqS3QD#TgzDb9gG+kFUZ2VBXi=(5&u)wX^_}J6sdrYQ^ zO*vZI1L_CvI=PcoW^%3N^!0Z=1>%_!q{I0hcic`rvo7hY)j5Z=vtKc1dV z`>*LU?Ui+QXzj8&RL}H;Kh1-!Rxb0PO4$n26Y1Y?PH?zo3!14%9@{<=W$1HqmPyMr zXt*mSXU`EU@lsV}T2yNi#(gVA6g(V|`tFZTGnYZb9yR-cq$ z-pOF_Ox~h3^mduq;@p63~<1{m6-aI9Tc;xHal(o_#(CU&wcZ*?OPvT(P3ENWW26x_m_y!+{;ao z+3iuylir-^G&S8W+wB)83{KU!lEGiW4{dkn&Q=uiEg1F~h-1_x)y78a|(x8m0;7{pU}+ z>T#m*JI}u3Dwg0P(!^c2{SC(!(4eHLy=W4olu!co{2ez-pCYC?5qoU*wusm-%g;)b z<(XdHAb#|Tsd_2n0yYQPho9|hxEpxIvZuMJgSt!+kHWgZ%Lp)9c)uPU<-K1F}vdvsbj)(Y+Hq-X{mjYL|It@Uo+g_Wcl5kzOVko7L3I!ak|+n7sR& zbxCES?B|=;C2f^WSNb{kK2ydk(OZ(|m*_IsgtM}3{t~lj(>k@_P0QLe6;s?}I1h`g zS-HadxCC^f5tQ1OemO-<`)c#*h|40&&+aQZ-TQe$x*pdawd$04TUZ-5mwXUda8ta< zN#Noud6cyiJ<#r1$$gb=upV`vpw-Wic=dxb{Ej3Xo9TRg<8sqD@xNKtZqNEFw|-+w z_M5fWb9InXkt*Bsy9egHd?T~)^X05`uWMV_nR1~u-^_MU>yzRI`QNPn2kO+;Rk5un8mNI|1a{a3E&}ELbuO2K}b|H07X7^Rs`dd90)y(Jh=YHC~voP+{Ip3A~Q}zB- zZDhz;u=vOMhBxudDa^-box1?*h2lyr$bHc0mB%3s0b_ye4H`$@l-(#l^u4vPKBGeB zP2=Nr4<9J7-E)7kjpcoh_XquWv4{3OZyM`O_NAw8jQ;;}htwUm{>Fb-`ba;tbDLaqBUDh*U|l(N1J~&=A?bi0I;4^0GL04)^zi`%)|B+}1ks=daTl zTL$6(%}SNR@85=^cbT=$Lc%Y7T!HUv1m0E@1#&XVs9=C}SmMmvjJnt=6nhU8UpFGU+ zIsLTyC#RsD?zuo9A2fp=E$9{Q_~p{M^`epXl0PkxBKa$S*iY;J zkaa{h_ZNqm>ibBEI01T(<(Pgu9#)PsG%%ApZD4lc#Gh|U z+hWD5uXJAY`^D5C7NyUSbSwrunK-k#(OAml=t3FjtVvETc-ATPsh;LR!<*Y(o&|0Z zaETS0ci8*zhSQJvCKR@xKCsd!>PfzRPt)I#i!|t>EKKtRNoZUm|txs((l=XG9 zuD-0g?NWun>?7j2dk$@Qcl@wyzMEae27&ML%15>-D;!<+zuM-!qx!uG7u4#b@8o_= z^1S^dFXKc|=CU+KhUAnz*Fqh?+{ko{Jd=E2%|W(v85td7OliHrn8WDq9b!!nj`U4$ ze7>Ex|Hnze(h7Zvf8AFy78_+L-#*qU{&I1%P)+8hk53fVyB!eaWSp$9hS5#>!^)Zh z#tqzd%N{*_8N1>1W2*^?*Cz{g+AC#xdiAtU{VNUd)zfVp5 zEd8HWC(pXV>ag;{2aW?DxEzk06l9#pobsT@t?~~ObVUhLdE~jbrhj_+$9eCa3g3tO z{it|9y{2ordf!@u81b8Cen&jyV~d-%KXZL^Nqy1U&x|^HLSYZ;_$z|r86Ji0(4@%Z%T<=5uZQ_v+ycsh`T~y^c>0Eqg7{=-P3I!#~reqc^!X<^o5A zsQh}h+&}XKs{a=3;Mnmzuwd)4vedTErxkerW=`JyBHwxDER)=)cg5Dv{Ohtst&}lA z`yEfc;<3KXpc2&pRzF{J19!5+-c1scnOy6gBIhdY*dVO_TlB*P@i?wyp7QoLr(3xs zO}}>~^c0J7=)~NwYVk+iTbEQueeOEb_~~Vh)4mU!rF`q#4)jgG6slJd?Pzynn_%CD z_jjxx1#9;&74{PT;B~f5JK@v*V}Jj&oC+ z1NVI1ik8)?ue)6@$i!@mU;FNHv%Fr{`}WV-<~l|nJAU6Scz3sExq$gy!<^MMIUhep zPUyYQShvHs;P_1^n}QiG=Kq(!NdA1}fJNt>+-G;ZChk_9JB!ufjD@ts;za!_78h%; z9M*PlhrUl%-+rL@c8n*6_;o0>Rmi(o_eY5S7FcM-0I2x z54Svf+VS%7^`9y~wBl+m6pF^=9godB&>GHK_Kw+q*Wo_*JwX?awVh9R^Hq6SJLBcASj>a}xzn6GtT{xSDQ)Sr{RPBo8> z6!+D13f$i-v~I-%%a|wo{yHe;RsQJFJw&qu%WAy^Hgwl&EQ$+dO&~%Wx)s&lh2bsd>y9W&*2v8jfW( z8r^)VaD{2ZiZ@SUxcg4-o1=Z@orZuPTgCpWr?H1+=O5C~wGqGP#=dB>x?pCu-Ma3a z)surhx%^THn|I)YyB~w=>}Qcv{U4Uvi53O!`@~VN!v1x+QIpNvy9GC8#F=&|+~9NH z)0=SDg1sT^F4ts}7_sBg7E_BD^!~K3>9_FdP@kuB#8RE3@Q~n#lMMG2tM=Sw?7rz= z8`@F-Pbo(Cz-pZf{c|_W*!A+};rzlWukNJ8>wL}c*{A!??(;KNhven`-5&eY8wC4z z{1#*2E@BMW)31;?wb>^kI1PMQ)be)#$38=^w-I#rpgzm@=P9FkM^X`bV?Rlhp$l zl!G5hWIRsU#P5?gJK;Xhe3hwtDD!UHyGzDzPr!J|1Dqs*0x5S@&gOsO8ydjR56X@I;B*61mJ->Q#$x z2Po|6*MDz*xHdS3WyQg17SW75`?g=4_(DZK^YxF`JZ7I;?Qc|%EG(G+BjLtV!CUNy zY~R&h<5RDjbK&s%7o%tcBS8R72_lf5%mXKcQxzg>3 zT5ZkSL(9BV4nBI@)V^Tbk80K(4=4ZSo}g?exqjOWnGcD3#OHDTe%wC)*VOk*>(U6<$()==P(d4Y`He559hUhMVE}%ga+7_ile6`27WI zgPgf;OE4E`A(560hahNPN<6XSm5PUg;w0v}?{!~u4|m4L-P6y>TA(U?FgtDC<6IV@ zxlfwS>V%Ga{)^agrb?$K%0{Ye3V*x*vK9-{<_kWZ}Q?!^_WQKM?xj zx2JlgS&;q8Pg^%`JH_A6sM8v>MoK+5-G)6^=uxPF;l3X^J2o-#EBn3v)+^8PvAbUT z$W;B3FB7gFZS)G>e$@8uo=V0EW&1)u1id$`IC6J4!;HNdocl~=?kzg!&3$4K7d!Kj zqF*8JwK(D)#TTFc@NeHdhOVYnj??ySQ!19tU#$Eh?C{>_!Vf-uP=4^q_#Hp{&l$CM zray??sV8n5XL~@KCHz2Y#nyPvPr2XuUT0ouytZe;*BybB4+qXeOnCV-xtvQqUb+=CZ_%ZHZ){iBf!uETgcw6=y-2AafHdCH) z{v&_ekdEVWZ2oof9FuKpcD?`YoG@=yS>B=B((TS?3+jI@c6<2#4p)5qZoiJx>%<=g zS;ST8#>{HdHZRhCwf=Z-5Bt{XDIo%DzNqJ>-WJc>zvtsjr#)|EDhvuH-JhAl_~`$e zwsfXzhZdFcU)lG~?RC`b9>Fa~@3Q6pp7Sg9z$%l#vnwlSvL2t!7-3v@0aSC@dAU0> zajKSx?DyWsX6L!C@nn3R|NLT++{afB8_p2BEXzOr-FX|PeXm$2+r9g}j`zvDv!0?i z#N{e#E_EK3<^14v&_7XUKdb+Zn(tDIdX10Q7Rb-<@4uLq?4G;rWWCtFJ-@ruIX-5e zpZm`HZ^Zev8w~z2+H5Y=v^ny#IcfhR#)=G~dCe2!bKC;n9D6PETD&>Cc{i`$8*k}7 zxdq3r>`m_ZXm_XZO@PHzX}QAZ+ZjIm%-X7dW<@l^w8qUVoHj1qJNfkYl_y=lDhOS1 z;IsI+zV*G$kt1syZYq%2Z?TfVw7?%-!18l_;c@{b-eD8!+es_ssEeZ?f*y1rayQ~?d1Q31(v@wkMoxAS#$sU@(-cm({Fz)*df*Y zTl>6h-Q17t*Zag+G#;OSdTOmi@syuW?D^;ay3caI{(tHZ#W|U~N{c`H{a9zOGhrXY z`Moh4Sob|zo@KbkFU#xq zaBVR7;daEip&)5%X`UnB;{wmQAl2XgvF^6_gJ{VO zCuX<3wX^td&lJATj_dx09TIkL4|^-``FP#qhBDv8%G;HbpO@CA?PC%sck1Jus(*ib zc*UQs`*^P((DmLiC-T-0?xh)*PyY9q@nZgGkBU>$-xixqmDrTjq`iS}U))cTiWLIo zHN0{B^V>eYZjVk-Y}h8u*DfD+E4#_sBWStAa%Sl4Xk$FTgc@NfNg|K^I$ z`ln0g=5BmEwea*JCjNst|KGiC`5{~(`({N|zWp+%Kc*s&g_|>*w^RfeZN}m?`oURmcP8Vak)_($NVqxUHQSS^3#X;k3w_v2_wc^#QquUS8w%n^a-|caU zF2gO0#?^hlEQ&KU%-OoSlma050I%5*o z9{GLuex05^x%%(Ax|?zGdO4zhRX%Q;_^o?iZ6 zZ);U+)(g$Mb#1n;+=~y|HT$ck2|Pbs{{3_Lx6-Yf3{*uAtpD~`$mieE%lnsPtT>$e zVcWsZyScNrXYMmA%IOxaJif*EJkx@+Oxp^Jjy<_uc&Bp5{+)tq^*`tT3aOhW^FjE3 z{yf{74eNiZ8-zZnIU_0&&-x*~s-983{`Ajy>(yo!hAWp<&VH7yeBATVk(lajPgxmc zCz$zFoO(Zbci-7Z5C8t#yS_>N`@>KB?@6TXH#PV;U-^i)->K=pN_#gMl!_i${x_bF z|IgLBOY`^ENoj{j?>Rknb8nrw*@d^ly60IBSg_a1Y-BbJKkV#ReenD5UVnij>2mL0 zKR#T$pKbc@>+5s=FF7Mv#Cj~U@p~Nqem?!p2phn z+p9!cJ^f5WzjB_F&mY+rfu+6w1Qz?b|Xo-)W`=KSOh;9?bmJ!hJMPV_yEJaMk=;{bBRI50{TJ)i2t$@cPWa#xt2y7Kbf<8D(}he0A|%3;**> z3%aX%AG2g?F3bN^|H<$}ce;P`{havgu7SlpF^&I19^Burc7)NKtMGC01AEzPd+%QT zlD$3CPUm;g)11Zk|62AgHa^MC5WVtPVNr=h@V_J5ysLWT;C#_XX+Oe`?hbeVvh(HjyvsGKxN|?4o!xoo$CVpBFK37| z_|7j_*!ae1p6WHPKmK+0$(~H_e$=-9*!`Tl&}ZNE^Iel?pI*we{h>FIBmjmqwSiVF%+eS4vNpV_ZDVJpM-PCL)E;H9u$TEwm%NkQ)Y z&->%Q8poY^@IB@S>;CUH&K*|^SQYYjGM(Pa#4kE|{~P-~dT9^$|9d#Kq58r9s5`Y> zdvad=IhA_k_2#0x)3wtt|IM4V{*y!B`NUsh438zwtV>oqGP}`yd#}CO{^$1G{@?fh z^>q59^yl)tJx{rGzH`Yigzx_#t}A{rKauCb)@>hyenh^JZrSly=0`5Wj-Y3Eh2mz% z*`?+*Z_hlp?{lK=>~n#==Ue1nugUyh2<5HYg^u}ZQQqb|gigo{H9@e^WGCu3U*3SKtcD}6MAn-%QMwx-TDN4G2 z?dmewprZ%-eT%=%<^Mf@*T-8c%e3Op|NX?|z-wT?&9uOVZ`D@T6b5-~r zv0nd2dO2(MW%^0Wzb?MkuV3-}PwCyqgymum01uOMU6hlD^U+&sPrBexJO;tG{fW5t>(VL{?mT zbIS4bYlZO>euqylSS6ho%NNj}oV!CzE^b$DgwP*%yZJ3A|9{vUI`LDXjOY#C=coVf ze)#)oMT;lPc3Xvf*15OD9{9vJr&n!U+wd*x#?y%}rrOHSUVlJrN9s54_X3aF7nh6f zoiOcU!kH^=_7Wwxg5?n5G(t>wezoBMfDExZ`BU>+|+(enX!RS zK>ERM>(`0#?7yQT1l}-vKd4RA++*MKxlZHoKFM#)3u{?y-f!fZ`zdTEll8;3f9Jjz ze>8tT!@4h~o~bFiw|_*uVB%b(gxsTy_i7*hdtwta>&X8n-zQGzDtz|P?a3XFH4JrC`&sN{{}s#@n0|O& z->b`e9B)7RAyvr48zUgYHb00zn$7V|lw|6^l@>w_OJ1xcfJBk{*8{H2aUZ{Sc&d4XGzfE?%!IRvO#@`RRZpk0M+TdTG zy5#Wn=~a^#P5vtvQE>Mg%Z^*cEC<6xPfCQAZhd4tf2+<#ueklRBcF~OSg)1)&rXC}FMi)IL#IC{f3E#nqSaYg zv|nPM<;R`7TYmW8&~G)bTYSfD@j;<49pdph?uXVkyB~CVAadh;!*jO}JG4qNcONYJ zGWC`B{g(gJKbn6y-LOF-BtPI8C(}&v7ZwKB^7c$FAuvHK{-P~iGx^IV-qLx0xqwJ|2Yql}`@apDgH2ZsK zgXoe*i62*&oW0-7et1Dq{2$ke^M7o=I`hScPyhb!i|pV()W`q9beE~YylXYL9{4_~ zvAAPoQNCEf|DJn?dXALcoQ$)TUQ^|p+nMjPZfD(gaXsUuePX3|S^tOqPTL{0UHH|M zEvkL}#$nHjr>UK4_*$K~k5wRawbX)l;tam~4RYq@8@B!W@_*fO&X1?uZ#SjOhB3T< zzW+Vj4@Z@Xuq5%i$mQp*J*qJK*D3h>rrW*)mh9mi=NeWspKoY?P;fk*Yue$m!)u-X z{M!BS=7jkh?p?BK-os+9lV8hJ^YwE^+hX5W&RVRPqykK`YC3H@>TAat$$TF0q` zUDEST?|f~dlX6(PJ9u`j<;SI8O!XPE<|ipKeVx|me&_Fbh8uZ|OL%fLv}f;qYa#e& zbwbhY_fm@c7^eU0_uYFXJ+nMsZ+XAR$OB)M{cw5%-PR!XXMNO z`0{(t--ov~*m?3reO@O$czs{=(f0pLY86`#sFY60PjmhKPx(RCfyoc|^DV2p-1H&L zj(w-|{S4iG(xPj!obr$G`+WaTJegwi^K#H# zzWXf|cb|S>`F(WW$@$l2o|>ZJx-7=a@8Lqbu6B9NWvkBY+z?xyJg5Ai#UI-{MU|(v zKPYG4$FhIJcW1?a++xYTEvsf{P5zgDaQSclz5X4S{TRY7Sz7%}-cwp2`YK>Yl)-lg z1*_GI>*~38Se`YrQ@1#DA>A%IZ-w_=i+C;n^M9V~yt#Q!h!v<)_-;Q_fnzg2<2B2` zkZ%iq9j@eA-aY^6uvw zzV^hLD^GZj%)CkUUk^Ghu+hCOS0V9z?|+8>dB2lg&t}f;*uy<<@{X4?KNKj~c-(y9 zmSl2h_naR|zke-yS;0|IwT@xQyq6XaYW$yW`dOHFbz5R^$${;!{1oGu=l}csgx`KA z_xI%a{O6taJTjW`=i%h#a<`}43X(U?`{QA#Y4rSX+1<0pBBx(J7HNDw`+@KW>vdv} zW~@I@|6sRA2mf7`{Y%2XFFZ5L()6Jncl_SJz1O)uUf<6?|Jy_NXVOOVU+eONCV zQ@q$MM0}QvxU~4`ok2~LPlT^*p3EO-$K9~Z-|hB|+etSHR$8(DcdJ-MAsdukd}U{$Ur%uQ=BJj8bACLybN#`z1FI7rmR%4}{ItiZWA(PHnm+b5 z^Gn$NtUD5aP+wP$@#lv^&09a3W7})k>UIkMdUIDG|Mp%#x#Y<)63folY`YUMeb?2G zzP&dm-T$J?FiS2c{9$fk%#Br5(%T;|Ieh>#E+=Hww&tpy*V)@54vM zcT-)?Ext9?gCpYSXXQqh?m5ld7JG6`_!T_UL9260^QoyGzj%*TzplL-0%@WA*j<*@ zp5A@ZpRs=D!E}a(h zM8p_Qm;N^UllNbEpYD<7X`DAhh3D*fzA*2H{^XAx-; z$MbReKE)%^|9Q@Z|9R>eb=&D!@q>NI53`$|H%i*Sx?%PzeRKHLuQS)L-}#i);p*l! zMsfR=H;Ky?=I1e9_~Plh`eXJ|8Z`6``NHN z)_24c4mRYLt_+=ur&b@ zSqT35oh$mN?fHQt(|$E8ZLt^D`2X#y)1KeyPmg?@_vh5^hqnbctlz=zC$nRH%qsOO z;d2wrW*uQ~UAp?QPI0_t>3y!H=;J^>78`^7~-ZLFP&r6&XME8 zw>$jc(x-nD@AGsw{Z+7;Bj209$G?=>e44w#Dm`k-`l|XP%J1IlGrXE7vM+Dz zfxnzPcz*49T;sU>_O_RoKfHXw_CxOL+7BD%{Sx1|=iHjT43i&K{dls6PwjMR!5s$o zJArY`{10>wToti7cj)G}ti&6~v>yGB3b^gJW6=iY^;!qEvCmV#!IuBz#y*M%JcU*KmNBnw@LNuq1DzEOZnITFxe*f z@75gOqC}&~2fkmb;a>2qQdlA2{ltnRvT^r*Ni+Po$)?})urEKCd(kOS>)62Kz>Qmv z)c0)uaIEmU<%hoyIV%?%zq%aonBAP~<5KMh$LkX|-R0fCuWh?i*g?sSa#@?C&UNj5 zxamXOht2|Fn~?41GT)obUhTdo*K+ja+5+uIemhc|kI#N^?Fer=Qw{JQpim{3doe*6YYFS>*6Iq-5(M>1VfDCjWnb z;A%s>rI4MX!~WmzPzFv%+XU>pYhKn}d^?QqC+1dr;E3-ab1=UkJJG0FHqD?i7+ z?<|V*7{6csy|4D|?GL8M?OO`lZo3}~`w|$(dBD{ncsn!GR^y_MOdaukdl)(_rLz*R zREx?L9yhg#`xR~-cjs_z1^0rLtPYpe4OBF?w^iEn<=;AQA2sp$oLczBKw1_uoy!< zCwJq%`s4?jv>!?{?dRRT?ZLE(cRc17@_d{v|H;eYsw=}o%^9y{XFbWD#9e*W?EdLb z#tdKm=55$swf~UvyR&)>v+Nu*>Tf+#+jD&`-+zx3X5Lv(pN28kykit+6pvFo5?-%y z zh5f5PE_U(Xp1rR9zSWP?iaeHi;(@be4lmN%5pdY`fRfFIs9RC1Vm1A`7MS>SO+~ta(lU+Y1gZ zb^3E$b%VhUDK&PR_JnYKm79rGaex zvlT6VE;aR{$8DEm|9uPO^;jMR7r*Un`@ko>>gRUGeV-p_m%X?4?0Edp^y+b5_5aro zPHm9RQ@S~^F5kN3hc)BWb=MR`A1a*5Oqv|y`}~^8{8z6}f7Wf-GFkQB>RU_?xOr_^ zRzdbopn( z=DV9RHd5i(21r!Q0UOiu8qAx6d`#mtDTn zY` z89u+uOdsU^xazS-=)>mM9$P(q^XjzjEVG<f7-cGcVXGR8@``RPqum<|MZl#p}b?Z!M5ED9kMT0*=9CRFR1(FqB!sB zy5YyZuV)HBc;wS{`SyIl1I0{5iVd2RiZ4vymfjapeo+72UC#Nl<7b!of&UYC^d4!5DU|upcs4s;hvi>M z!P2!ScO^bh`#I}LmeO|3NQMWx>tEjcaAf1#((2sDIgeDfeiYlek4JC&vy=PZ9Z3Bj zz}nX=&scSTJ?F=l<(wZye(cQLDm1sM6&|?$@VV7XeUViS+lps@ z*33Dx(bJCq`u7L-ertZP{##$|ySX^ZM?7}M*$+Gy*zai{*_Sn`{m)g4Glve(ZLeed zr)&1#GSMsTwf@%diMcT=yzl1Jtc-baoh^QDP1Tdt=Vr<+T@oC)^PymQ%$f(umRa-J zCCek;AL`rA@M=zp!=pR59;`j_^Tk)En!g)ABn0jI{$6HTPR4Sk>G9nESH3&^;r#Nt zBR?L>gy{!mDn2)<n-VrYtOc_nEsf@+WmpwX}{US-G2PrRwo92nib#p z``?G%{8ie&+RvxQe0O@07cBod>x%Dlw^q+*)kjNgm@iye>DXRsQzWb|Ty*2xF56Wn zD|KR`{@TPuot<2NxADY3P0@-Yf*=0By3aS?qMp6Zz}@#nf!}Vm`WoJ|?_}aQCxkOQ z^xeza7uI88rgvp&-h_}LF%LWL(T`ayK_ALhdHlfuQN3C zj(#h&a?SgdD(6pa*>>mGk?@_)kBeu_V|AD+Wme0y@`mmQIrho_!yo*6Y^NPEq2`RJ zgg@)Kw)KDi-k#6-@m#!6lJZ`8zxy>Sc{11SmD6+oZ~f=pzqLBg)#9~%ixOus?wkGa z(l6otT=AlNnBHyQ{BKiS*(DpneVcyR|L4$azqGp9HLm)gz1S@l{!**$4)JsA^qPCm zxAtEAK39JkzwI%f|DeeZ4))8(I(J#kZVmSR$G+-nt?a)yv$Zccu%;C$_!+dI<_Ha#g{xX-|D&%WQzeLDm;@5^7RmbY5^RnT_N$KG$#&;NOGdVBiH zP@m;5g*gsyKlt)d>fKtEnnSw;-u;xHpk5y~^UfP*)@z5SuDt)ZvLfJv?T5u7$DQ5& zoSna|`})OuA3A>~>`<}&?%={dtM0AoN%tLg_0l#99JPnoSv{k+oY&#TvwVl!SV zUHNPOfa_pbT6gZGf3LnDiHPspT)0rL^tE+-)_$u`v*)oo+-oom& zYjfd58ILO#7mppcS>Mchc4k5Ad>INet`ozIwH-T7+H6N^Q>Me|tiTmCch`Bz(cYDd0$&bj6F zq6bc&tB8JJ|KF=)`FzJu%Ime~{J9#+RO9er!TJN1bvHfS_dIgF{aWwdZI@d+JpQTe zxO0nfyIEXyr$GJ>y_)}Wc7^@L)wlBx=u6nOr83k;a@zmg^FQ1%e)IaC%F0huy9{P_ zy^Lirshza?#_v1XXBaH|PRC97ymfkzu2a;&CjNuJ8O0VJdi?m;1*1p&#~)O& zTq)o<{-8=nuJ5tMlI0K1ez@^Ao7rJpjw4{R#?R!Ql8YA>Pds+}Qu2z7q=ye` z8TGBi?er=RW}Fo~o|0E{AGz*U zsrcmYk#vLek8gZ$lotD_JLA?P$!uLdNs~tNzKJnxo}KYraT7kL^?rPKnVfiu@`FoHM?W-r_O@U_ zow&`$yawr$*P8e7Jz>jfW`1fl<-#_O;titj&bjTBui5kIWA)+k74lr&XMcQp@onnC zZ;Ncj-~FjS{JZz(Q`rLt>tY<{%6-{x%aZfpqhL(VnFNOH2Bmu!3+A6++28#B+l`Z- zE;^KQ+l0ma(n_u?3%n@#ujz5Bep|kYi(l79zP;eUOw+mN{rvHEh8G{r=B)4gtC*+p z@xon(BYriplWYp-Z0sMa`FH zr^|e4{aHuvL{0k|>br(3ul>MZfpnXLGuWfepI;UB*}j9*j_t>6eWPdRN|V?g>-AcO3NI&{=)nz4zyh z=ZOYqq-}4!RsUDI!QyTS&kY|Qr8yrJ1)p=s$6ZqXaP3g&^7DtLHaz~Ozc4lb$F=gF z%D0{qin_m-?q`!`{%yzG*=y=&#F_QlN{&sruqLveRUu=Za?eY}exd$f+6*X*=r zhVlzcY&71-8L#=r@y92b9fyLe7RjFf{Oh+wv9ev<3(14m`=3=V>SXLP!t=msL&}~c%>@(+HW_Da)kL687+2WS^9%Kl{{y%MZP7Ed1UOzO-QSgR_5<8*U#4Zdp?D6=CFMFbzS1~<=#)=C21Lx;4#m{NlKINRl!4KzlT%57~;O|`( zo0ad~_|ak8Tlr|;=AV}@Za-l8<@W|oi~m6!XXfoLtd))7+`(zi7t6W(T+JR< z1N(4>Sr#)hKB>kt=2leJT;saeQ~t~MSPknui*vh5OW5l|cy94~sM_o~_<{eN@iSrL z4`B>>+x%Mkr_N>V-XHrRxon4E1y@Y!udU2ImTY!!8>Y|R9rvwy`%$}p(?85C-C_A* zwZQEq8-B)CORll}&{Jw0W5ut>qh7Jb)v6d%-(5FL0ue`IL%~c*Y-22Sgd< ztt9<_#5c3w7w`Y5cyZm?pC9J^&HSMCnR~;B{~UU+*_W!ExS@Qm?Smcvd(-(0)0gay ziTkJ=p|kEw@(yjC89M|I%$UcQUs&?jec6Xsm#Xb}%-QF$ef(&d{_8D&n}6#8?X-;s z)*J1&Y;@cs%y0J0UOxQ{A8+1`d*A$$?aE(iXntv_X5XXQXwJH73ft%DN6e=@pA*Bl zz|#Lz?6QMLcva-{o2e8j4vMTWvIA(uRb>aO#OX>UEce(u6WK*KO_9x z%2ilj;PnC7hs%yW-u*j_q0Z#fgUhn!!Pk!L5|VT6zsqjMyg{&nPsi;0BI$jvo-JHwFpe?(82+7)t-79GJ@=pmMBc#R9iS57n9ds+DRS{hhC;nddh3v+X-D zBm1GC z0oT%hTz*qZj<{(hew?hxB))&+yOST{p1(Zwdxv1bLFW(AU;e%0O78pHX88U0D#Q9J z&gef|AI~-1^M4ac{gJIaOCZ=mVC#u|GMNcn_oIVIB$Bpzjsxy z3XrZ-(rK#yZni^ZU)mQg&nTNT1_lQPPZ!6K1s_;=3hz9=ee6N`Eo<)X(oZ!HOuoIy z;CTPLAo;EEex`8C2f|FgQ`qe}_D%ev>gsQOAiD1NUxr&!T{~acZdi6!@b2>iJUpv8 zKmWYR@PV`YtPHHp64S1?XXfjf&!s-MZ(z=URDI~<->d5n^4948P^@|K-22#`cQwi9 zT3r_$5v)8eCa3&zV}wPY!H%Azk0oNnKloYk?_0yMZ})=iROwIOG;QqGaVLK?`u#oO zqUB5V58npV{w|t=%XWNbjMqbAC$5%|zx8$2edA|#-xC)%Jl^-g zW@DOcHg}+=TXb8(jcsOPS97iJTlG#~qJOOC_Sy4n3MEQg)MF1F-ZraAt-g4tVf$h2 z4gLov=Y87#kn`UM>F@X0%BAje&kN{l5BHtl7QQ2T+JOtr^BK&ux_Y(?+OX#Rh-TW) zyT0MWcjjFoUi+n13TXH9pWlD^VQ$;~rtOmN7|q-N%H1jWv44kW&PE%lydS@(mmlm; zKloSjn`QTYrHT*NAN+OPu}CatO0jyL(*^gGojhg>{2PwvdGI%>KF6=^B&Nd<8$Dn)DFq#svlm*v>#&rw{}BB{06&! zUk;ydozI!CyGL-Hj*Up1;$3;YkN+iO9=XdObhWPceZb0olFgvbzNPg&Z-MFp@6;c0 zwvT5V>3uxm9K-t?S!e9y+3cTkKUb0a&m+`KMoZsHh_~_)4 z$f#q7tuK94JLvv~QJT5p(c$Fu69?u=n2P+dV~lz8(Y@ru?yvf7;XL;3kDV$u9ms#q zt!J3LYEH(Z%p}F<414_Lnaxkj28m`A*Z!zw{cfRqA>Lt4>4}Q+U)_AI`fqpcH{_3s zPG5V!-YzF4zLIOs_kw-mTt_OT>uf#jsuH~sGXF=JS+TEpM) zt#ga*!(8@_kCwgOef;26ksBSQ3vE7hZ@4)*PSDIo-2ayRJLSgS1IGMKb1iM7q&)=k znBxAW?PzaXm$7lj`u56O1?M@0c$Aa2*tkd**H<_eh~+T#ov4wk`~Umco>y0oPROef z`eXC?a93`UujR9a{W3E+<}_KWOE*lhoon%bZvGL^?foK`%)(B2w%V9{R9PcZCv>lD z!fxM!sZWo*@2Q(-p&GMxZ9aaGvLg$+t6I>4+-gadYxB1j?_G9PYvpG~>N*C0B$};&;@6pK{ zHt254cvP7b%UhoO`0mHqAD*3@cG~-$sOJIWu>3EEa{K&ijcS@6ObB-WR8^Jwj#nhF z;>^Tjd;YKeaCK)vXt4=I{TNA&Bld4P{|HNLpDxZ>eCB@ko|Gxf!JjS%-3E7MyL?yl zI)9a0Z^t}EJNjDx6x|$|Rj03gU28J$^shkS?)Qg%8}(b&9cAvNRUXKb+pl^)S;e;1 zB(Wg#;X_e|JwgTV&mVq%>Y?c3A7-tlYD=qRY9?Nrf7q#Ye|8^ot@seJGp>bieWA{! z!+~AO9POtU9ldk)Svs?Tv1!dB&;El84Of zOh(nA$-O`Kub-{=Z;SQq*GfC8|4Q*2be*3j=jV$0F$1CZHf^|n`ewg>k^4J6OJ5M#v z+cVlpeyDLcHX~vu`tMqBONC!-yLBKP@rOg(;rSE%%lUxWQm z;cYva_Sin)I^So}U-qVRpI1f8{3dUSZ9WI*Y~J{JE8_PO}y z{eCkh%Y6|q_~RLG6qqIi9eAl#abL=uaq`Z2C2XL0Wk2L|#**#2I@`ZfuH}c+7}l|@ zx&6vs?Z_uZ{zm^wn_?@b^(=4tEqyg@(k=ymDA0LWFq3)mhv1FYMs;;&3>Jo(t!mRw zR~~(AIO*Qhh|Yf9Z6T;dAYMrW+Wn7nbiA+_!;4Y)#^w#}4JYPtDjmz1nT9tp2X42DUFP z&gz``oY(H3Tw{BGd)Pn5JKP&i>m{2#sD7LJL7L|S=Y&&9g*s0b7A5#D=iZ(ck-NPm z+B)MK@3VB~2iD@3T#}=6UK+)n*DVX%JAcRjAIm>%-dYg3W$mYX$`4l;lrz0IF5!Ee z&p)SXts#H&cD6X4^=co3S)@|GYW;|MyIs2YeDkr4$8+BBo2#tbbYJ_p-ER-Y#N@!e zif1A-BbQ>QoFa3p(g8r%8#>+@p&r^zP-7X&HtmX!M-_s%??ee=~D|T z|1jKO5lLEpPQtUWNV56x@dBMomHXTO$%h}P{IOrIO;BzB-=q@{880{PZd^ZieY;hW zudayx^p!I#<~^Rcu61?eWyYSVvJW0Ca`4a8czJ-ATlPe4mCbwE_2rDL+aI4?6l$_@ zLh$sDyUzGpmxryn-_}1bmUq3;e8%;5FOxH)mIui4{j)oeRS`1hsQ&4wKd%h3ej7j1 zWi-2|@Z(|p0qxR`$BEUwk5)c?VsOCsKw`VZ=coBSybSg2)(_b?FqCV5sT6-ZI|FdSC#MVm1%zcPVlO&O!I4yoJ@1c!C&_uhF&yIycoIN_r;kzU($Z; zxb~T!RbBMY9*qkX(N(-<5;r3v#81ur;Pp49g0=cb=CPVrUf+w?8*I7q<;wBHe+Bhh z(w@C;D0Y`m)s{?dR(CI4b4BB!q28qlx6C+$CB9g7eD29^?K`q8{lIcvxepDR9QWck zUiQ6Q<@otYl*HrUOd<2qeKn6VZ>GhWFQbguRG z@4w_ahbUMV<^R@d!+#AFAM)`EEzlTI-PAu1sQ~G^k@q^=wo#K9aeypk%;Zfal z;E&=f(+{lX`Yqo#%k$5d`k{H}fmn3i|EC`UPcC*}Y-szp8mJtroc}>-$z@H$XLvMcBs_qP1*53xeQA<`{pup za^Ft!p8hdyV)UDsls?h@t7Yv!eLE_h-8+fsyY2(hoY) zY+F2LFdlXdK5(R;^`BLa%g67`CZ{*{xA{le6!mb_mF<_=C(dy1Uzc9cpBu{pRdRG= zc<1mXoH@_dpk}SM(&XAS!w8FG#}T90@b(AULv5!R zKm2DxtO#a7fSJ!6F*EVJAZt2hA z`OULikCj_L+-?fu?A*7p^-=Ptm>q}zdhD3;*S}zTHCGA8QuV{`+w6Wy96!!1x&7pwmWJEgd>`}* zm+R@=ai5=fCi`J%`ibrL_daSpCgVMQUE}``q1mreGLH9FPBjp&tm8SioBvR>{H&*2 zKg`tLvp(sB__|APxXttZc4S*j`ZR&t+;G3tmRpBr%;!D8;Aj7PN$1H`y^dccbYz?# z=dSD&?|%A7ygU84N2%|g2%WbP%pc8ijGz5KP<_+?=Pbkh886rl-nS946RsDjUUbe- zzC$v)qhB}s!-w34`iAYSauur#=kH#2tm00u`G&tgH9rJyySsq#*n6Jx_3x|Z-jDct z++gR{$H%I&3KQn>JiliiTmHuVM~yW>w6Jn6djU$NQWe8+q$h-{*dK>NtD)iz6r1>)-$T z@V4T^sq!CLXRr5ut631wd3k#OVZM6K_m=60uX7zPTzvd&-tV``XQKUPHNEYg&#|G~ z%%8LWR?dCJ(nA}TGBdw-{;7LH_@4NJ(72zw3*vhH*NAR7cvt$|%Tr0kM|ZiMZ0)|I zlB0W1YNL8mj=VI(ThA*;E+08nc*yHdlD`!w3!miBnvA%H7K(ynA0-d=(yaB<%dEWlpm-a>_4>homIHMyj!kS)zHM{IY`t&Bq|nf)KudPgYd@8fW_=3Jj481~vI zZu-u|Y1RkcvsE}9+s<0Yx{phIzmWMCzV8zzKi&F)RqubvnHQ^#xi_{q6hv#*- zkJ{(b#a1z<7d7}>{aIvc--u-1m-jE#_kA>HR(#PM;n_83cHH@A#xP60RZVQ3$L0?4 z-wZR3MocXBnwXSU@#Adn4nd1An~&|0jhp#v&-$}%)ho~MTW%QNID7lIDCHU6e~OOG zkrcL<{je!tviMQtu{%ZE1=LL*Ml<%eZg>4)xc$1Ta%9z?lg@vmi=Ry1<9*{wxN_kO z@BNJXV++H37p9xv<90~>v5hNdm6z+I?%XKXL)Q7 zq;3rMKe+B!3aDB-ln0k&m}GWX~vf5_okbv)srgjD`%x%2wWW%pLRGvAft`uMm| z{Q~C$5odh6+tQ5lOwE#AJErk4OBX#<;^mZ{ zwV(Yv^PZ>ejW)8+^y|NFNq(y@v@dUFg37rY%R-ADXMa4?BmCv%f-^BW6_474`0uQF z(D*)KT@&-ScaxKQf1Y9R+uh)AojK3vLB$UR=ar$`)azpVMW1hRmML#G{?GYA>)*-m z4d;{O8P*ql=dt|Qt*#NLx1WE{(*o(5%W*3+j`#3I9oh3g>c>>aA8fnZH~XHCEqHv( zcwYXQsk;yK3)o&g<Ra!^>o^k#gvt!M)2a|QrH*BAl*TSoH?&H~h zvuA1+d%Rfk^<#`qHU6&`d&mCa!wX5d9b1nuZ!)k<_-$u%`=qsJ#yh{6^R*d5EstKg z?LM_Oc7E?vtF5ytgu=M?t9^L&DfX)V$JLwGzn=VI*A)8)`x)nz`Ry00o5^eE_#xm2 z%fWr~&7NI<5c*ED;H7B2+xO$!C5yFV9<9~>@zmvi@m9mxA3kjtDVKGKtv_y{AIpB9 ztzwzs`}W`3Y>zGPii-WazE8-GufjHG(Hom9N5ikrSFZb_`LOTt%Ec+)A8(jm&n))N zx6D66wm$ozs(!m+vRw7S<1yj|oKIXQnzzq=vGe0a!JjiM=H{}RH^k~5;Z+6AW&A5H zczMH3f8NKFYuHwFF7Iq*%*(I1Wtjckzwy4`hb1*H)@|5v@av|#4_6&L^-(#?R_D); zmU>y4Edq;nzqoYp#?c6g^UDuD{qKK3`^w&jb{(z}KR#+5*xui=o%6veuaLwWfsbRG zr4H3U{_lq_2(U9nn=SpTV8$!?|AXdFWrEc}{0$CnoNG;`igD z%n#kB_4hN*Tz~LMN6vo7)fw3jFO`3IG{1RycHOE^PcN$%rasv zTX-*N$DgTF=(ssGgwwoq-38CnJK`H_{=98nn$av(c29EO%#Y^Foxin7M^5gZGCd`L zP2pko8TI0esinUwxEszlm^|ELA9DQ&s6;&$d4&6{{r2}&drpKtI+5IQFR!7R ztQ7mq5mUC?=)reJm3KFmMXJcp`eEE*YA@Z;__fMy)|)B9Uc&yu-2S`X@}3thKE)hx zYN46jFAq(j<8sETix20=*Blo;W+Q5+w?n-q_0yA$Q(CO#bk2tB-MR9aq2ey@_6>VE z%$%b?gl#)fB(P`dhnB}~&EgE{{oX7KVk#BGh4wksan#KNweU>7Zwj(apA_pM zeO$>lWlyfR#H1~`wXcQ5w*E}=C~HadK54e(?6JjF9BrqkZP-zAvu#VU&ARr49XXbA z*JZ!SH++A0zRlnDh}fT`1;6iU}cBWf+RUWZ_I|bJNX)`Q;sD4|S>z~Vq{Cxs;fd+lqx^;G^w|o3KZm~~bYnktl6{;6` zn}6P92(Vjva_PQ+m7T5os`mu)IX!QDv-D45bk4Z|5GQg|2?zh;U- zap7Ady=VTXTyx^y77A^1vpZI|uBHFe+?sW7uk8Q#Mfl;=|9#58ZDXVvG}-FK>!$hs z_>g?bbM?<#3`gu3mP}R=<6ge=`0HyDiIe#N_I% z!lxFZ;>VvKS$FV%dd2^LYffxuDr;Upt4^zCJ;SuQ`AzF{TI2WV95s3q`fIYazsux5 z0ky}T>f|#NXf0bBF?-u>DPM)@+j{foCKuc--;;aXa7W(lpVuteuGb#-E|Y05IeBh- zufdKlvf4KbW!8Cb+m|cT{(9eIRqMXPr6;d#?|nSso%OX;cZ+Q$H`}+|o)K|fLuega znO;m+JQ7F!|`PIG1BhKeGx^|hf@>hDy*!U+Sra$tG_EXg`ub)e{Mfga$TWnkMPb4!r zDR#BT4cVjnh2nP3|Fd_;f&Lnn8sVpji#Pu0?mp;xD%haoc*C+k6#<#IQm&aZ9Bt>F zf8vHu5zo5s75^k3R4U)CFS$9%ASZI$m;8+zSG?;F*rvi0Jx%v-bdJud-^x>TIS)@u zJ-tCpn*Vi_s`$2+)km$>&7PT>|GRN~zserb4?WL&{2F2(Zr2Vw=&pP8l8elX9h&w@ z6Yl2B`O51M6}D7ZNi6Wtp=~!7^|srnoQbH@+cRZG?2OF^4BhXnoMHLNvv^^xUg*PT zr<&RFMDt%=p0M+i?;Vvtg>^61GW>o%B{O4c&9Ti7E;DR6^?;xGZJlL=SKTUxq+crX zk0X*EJgYqOCx^kwo^3{vlZSf5smMz#^UC&UR?N`Wd?qtP^Yf!emfAB`{wz6qKQ%`D z`4!8>A1%*CA1W)nexiIX|2_Q|KUOxB|M7USBGc-DL$X}umlGPVavP*-K2|Qt^U1NF z|2v|muXpx*UIw*k{sPyNC!aIiaZl7H{7mfg_MJYOHF`VlB`-^HsQa@-vCr+ZrIM|< z-lJ@hN15KdIY%}Wu3XnT|KM@<2kBGldF)k0qw3zWNHBhUTXpt@m&1!63vHhspB9*4 z+MFXFvR=}x`|jthj2&|sXC*|JvGP~mxU*v2NkcJh_WhBEN(y~XrtA5L>&^3D*?P`1 zx=eI>#mySiBF7sVw+~$JV>}embo$478}>Ro$rO*uPwV^Y3Jaf#{qRuuqm`OEv1qE| zG*0%D_m>p^oBH!615eNW%$2qeeIG2fW0>_|#;=IXrsOO+L$}U!tvtRnF)_uDc5T=g zyZFf|^AV8@_)c};QoPd*7hk|tEE1#INs;>rc6{?^Jn7SRjZz4 z%S>K1Uy^zDeBOq+6>mAOA9LO(v`p6BBlgf?NW9NF)YCijnCVgD)VdCBuTK5<{a0rn zIXjbEHz$0Z=|}5#kKcYsb__pY%c$78Pb6de>O_&b!HNuu+gi@2p7`8X-s^(v*F1@c=|8%-P^SC!mHAqh zYA;vLsIf^bI{7=ewD0uSkeF(l<7#)eeO!|tW%A7QLo}n}Q%--$y}TQ^_pmnPv#t>7 zIy_D50iVF9r!VGhefIMvLr5*x0aI<0nK8R^YHwNcU9UanWhT@7deYi_>Enub%h#Ol zE7(zT^VgPQnRUN=N^cg(tlRyj_O_+i_1fdR-&lxUkNu|jR;K^UgpYdBhaO!@mA-Y( za3`o?{Cq}C`OV{7ieoM%7pyuauugaNF_$m3Kc$lGgg-pB%l>ZgOz=l0L&ajTd^R4f zGMx~9CQcJI`E5KcFL(X?lf%%aZz=n7oBG68e8ub24n4S(z2I=i;|cE!zGkWMK*!TU z%4bxY3bRd*W7h7m5PK>5EH1Vs*?av#Q#UiUYo=W-s~hKXPfwcmVWq$Gw#M}n%jI^9 zG;ibo68`Xc|32Yw-HrZLuQVDC)iT(qO}D@8wmD94{<7KYlFnXaOPG_C=@h(4|6yXZ z*F=Nlk1A_I>Q1;G>V4|*xa!QaPqSXjTsW}SN8;y;T4Im< zf$b0280xhu%=a)U91VGV{(ApqzfUhs?%7#AOJ{bNENz`{a&OwLiVpecoIK5lBaVlB z4wgP#nxGUeu6I;Wxj13hj$nma4;?dGJ4sr;@?1B6xX#4lkJ~@o zWe~sf%)DYhbC2bp#t+5^w;%q?F#FFjmq=5?@W3Ox%rolD7!-F-^_wu^`&Rfn z>M_~f6L{hMzwmhPoJaZ0D&m@E@k%GpJ!ekXXU=d-y~9jyp0iNetDRSq#XirP<$v8K zab9q@Nx0OG6W)jXo_ar4&C$K5_iok?J$aG&)24h{(t5T~#s1b$rTS^>^Y15|Ij+C( zT-MKs8w>|_Go)RAz3Q#k-f8~tW!*V7HaLEot-ZeSipiPh>C6hgAvtX-Yp!_CXY~<3 z{#LQfDm=z=!9Nkr#N`hzMsS*!o||>RP2O^+xu|n+p~*}23)g4w&pz{O?UaJ;HjfmK zJrHMp%QTy9qe-D%N8iH0Pj5HPo&2rxCc}j*t^VA-PmE+zt(qPe)Mg2;E0kH+uI%ex zAaiN?-a@H|H;njltxg>~yvr?9D7<;|k#OeeMVb$T=eOlB#~a(vVAf>ImG}L%uyX37 zMRxp^!h4qg7ylofzk?}kPV$3j#`0Z9XNcZDaPM0*|HQn+-%F~jKAllKbDC{|-A9v? z+t$dx+_qukhIvt23|04p%(FBw%(s2_<;}z*!?(VdRdRAJYwi3varqPHZu^HO4;QbD zSd|ns>o@F`CpQyau=2_uldDfyh)&hRs*At)lYhE)@y1RAWd|n3MoIcO_tY>6o zKJJ-X5PUwJQ}}j}w_eN>)x_nWN*`uDQ8F(R{_*+A;*}8>_{Cn4AXAOvq{bT`FHB0uhKhXqtBjaW2jq`RdH##&+-zXrFI#!4*7ISAAk1X z*lxO|FOj4wO%=)=d=1Je;O#2t>SI*Gb#x;L=T;7?RrshB1 z*7GOx?KRI~$a~f>Zp&TZ+UAydd+OgN4H#4rND)3ehK6S*i zBJ^Kvjpq!z$E$K?9rEdwO`fnL>%p!Kt3N%vecdE|ZOx9NMV*F#z-kWUu(&{wWcRpV6X|l517xkl4 zPKSrqTv@L2|NYKmcOpNouCHKa@V;`JVe!Jk`lU6;70(`BQF(*mg^x?0u=63G+5+zx zDRBiWUF`*uah_P0r|ThdQQ*i_Hy^)9`wx6Q9&ThGzr-pwC3&RcBqlzpf7 zzM`Y9J15ly#rtXgT-#ZCdy}Dh?PcFr9yb`?@WgXG303-2{m{#8lK#m&zFW_-nGdMz zl@?iuT~98wY+HLg>5+wW_bbgAmW8o5R@Q);1cuk6TA!Vr7WJbeIXU~2`n*Z~k>4Jl zitd}C(VqMB%!BWz!=*o8&8|oY{@eIr>w)YCZU;m^{AFxan(NHUytM0y`u9Crf!CX6 zuIF{|2`iezB9z8sZs&IBidCd)&O7U{>5$Ua0EX)$;>$6dFbrXaOUerElu~E*oE88I&^;S{8bh!{DZwdFYG+OQ6)a= zxz6{)r6<+jpI_=-SA6_b(ofEqXaBD(U6Z(GT|_2N9P151JF^vGOCpjFsLo+47IU^t z1GPcjPT$sGzx3p2O8YU7iYsnrhLa3(B%6;OzflqL+-##&VxeUB(c^_S>xySb%za#F zD|TM)xZ%#c+e@!l>Rk^uc)L+%`s;16S#y(%ZAHVS&VSsgcQb2ip?%EtL+cMc{O7TL z)Ae`C^JAL&w;x!~nir{MEuF`Zr@#IBwt|{<*ZD+vepFnVDfzEvW9^1_GsB)|G8@#k z&NfmlVJeu}EhNY+DHsAf`S?Vhv8u8@(v_8Y|_2$pspVuz8 z`;l0{`e6FgZ=T(~{$D#C8=R7JPb$1=m3#d;=2<#(!(^$TH8jqoU?wg6I?DCXJk^>r%_7ZVbsWn%<$aF^iB5iYXR^HB>{H6$J9j-X zFJEIPlOx^#Yj=IbzoG@~b|PjBC9DozSDC|2Rvw%rR`on7zFGCx{E5dv?KM@K<1Ah? zZcK|RdZ?t&X+3p4cet|n&W*DV%vYE9J=#>a!Q=VrYn7&-0{-1@^G{Ozxon@>k|*(o z_qQLu{_o$@{;o!uiVnl-yyk5Y_NH?ti~ovn_Ak-WT()=#1#oN#2^*merU`?iP4{|KE`r+2%fz zH!^5{dHCHtO|+&sAysh08{g(FH>?d+ZI*xhQ+DP$n?mWlC6k$M2X(j1?&^H38pFF! zFNgP>UXJcP-v_&EK!thHIsKmnM;BSj=l)dMA0)R@fBBR@&rYq@=Id-eZMO98<@0Gj z&iudqu$-x4Cx4Ah0q-4U15MM2OHTc{NfS40&|SKu&;R3En=()vX!4}TOBQra+^|yL z)vQx`(&<$*RL(`+cwuh-&*tZX%1K3TwYN5T#`~U~s_pK3JnQp>KgqMp0zZ8I*xj?U zqxQ>ty8_mP9gGTZ44?byd^ytT{dUf_4s&~HhU>dMY94v``&vBoFcL2dFYFBOixDt8 zW%l9X^0Je%>>sE8dD6lD*YxFTExT8zHE(xZ?Q?&Wa69A5);|#z-XBB{=C}5<23dZw zTg==E&+Ah}ZcJb{p5P??Z1t^zRS$%hua01APMs>eu;bOOup428UyDQv zExxUY+3`YM9Z{1{yHjlcDd^Abw)5MPblvX7>@zKnX?C6d%76En8SfA4GupjsxVWBa z-K`XM{;yIxi7vIld}pfG&)qs>xi-T~&tsDh+g%DgJ>!Y8=4 zyTkD|`?Hu+p?vlx`zP7II<2T$Z~6GKp~t?;`n=dr^Oehd?d2lAX;(%4F`R4hXG(s* zQ1yYv52Xiws5+WGTVeffeXr|Ri!CoT4n#VvvDCc%oUOr+Eqa;Xs$Tc6>mCW|Kg#re z@ z;hp4)75iA%G4ULD@0h)oZ>849!`rSfNr-aSYE>;ie*Tp$Ls5{aADgr#yV|c4t=@mC zYfiO9KRYM*-Ddqhjbmz$mFH{R{&d@f{j7!UhB@mWRNmqG`TyeCV>RDulFOb;Gw|1$ z@vgUeP<8w%tHp1(&s!NiX7Qye)WX&&wOdSPS@G{COQZIGyQudfmOH7G{VH!aTC*LuOC7Sw3`piFnqvv^jKTf zO3^)gkCop6btEpic;-q8PvV}wbl{u1+pj+fne z!!9I6G`nhYO|vXuG}hP_aLLl5y(r^gU7Z=jj6E`wXE0Azvr;cxS0hk9X=ieVR-f8m zleeo+?o^78F)QpVsNZ&PNxg5pX@nzp67RIRM(eBid`ftBIBu+*nCkX&&t*Z0xn@@@ zZ!s+K^}6-qmF1bv-g(83&rj}OmgHz3F>A)`iOXN!H>;WS-K`B^SSD;Bap1g9#k7|i=NTE( zEH_R(w&roLR`KzRTjr}hYfDnP8Nzo`etPaNH96mc3ts}8MfXTtdk{FQDMjtfgBwmB z&mZvoO;O#owtz&%Z!0sd4@44?~U3@3Cw9bs7;?>g`(`07+ z={eEczwg;m_u!2tw)VNdUU$7$dmi@rV?c9gR7}Ob+`Vk4&AzXCe!%5;gS5zO@yN6( zo#lu8gwB7A5 z-W$zlX6wewS+pK)O)B-|x49mWUhQ^f!HqdAt$i|c4*GVkUncLXqp0d@cJ>q7f*H#X zCPZ&sxM*56Q}N^EjL(l2uZ(z6lA)CUq&r30ZuU9tqgkhyC0+j#407R{8I^n4x@T9t zwlp|sxqIi?*165-@K5WPv)(PJbt|AXEyjy`}}~*bC8G4A8t%kyT^KNW{rij z?l0|YbDDSEzu3upfZ<+HWQ2y#`YAhiEqT6^yN# z%>3)M;)JHp|32;g&f~+I{p`@^7{@76OIDsO!{e<)@<0H+G(5G}kc8Ka_mfXAdYf z7PP&3xcH`9oQTk7Ja@$QY2b8Fl|D!@qy_-(mowl(p+Ww&+AXu;@a%L(G2@$ zW}V@)XALm^sTK3=D7)I?&IpZ{zQ3|Ar(dpI8j*W5WFIJbv)Wc(Pq_K=6Goa;lh^55 z6!m!hfwdM!YuoB#&F3sv+-_8LZ5_jo<+YVR^RDvjvVFNT^AP){+*ACiY4`pH&dGf; z?RVa#{m?)d@MGYf9)IoZcsT)_5%>A8>HoP||Cv_BLxv6hAWl$H2%>!((? zL;Bm9=Wnqcn7i`n(zEZ*&6=mSY!j!vL|Sm&tZ%NtH&SYzY+f6&^S_#9#?u?j>Mu^- zW!Zsh!~%QX5a5Fo(uU?dBYA~+dhd|xRyCDAZK6ANj>KG zLic&>I`(N~|C#!uQ$euTv~IP)V#}}L4682PijepH>!GKc=k?8}TEXbnXiLcOvgT$bCSJ#(TZz7vuCRV`X`aFGe?NtqcQ3nib|NZMN-V=6QCx<~}X6R>IgV*`{ zwoYuFcq8MigY3CIzaM`zm(~8>TLr0|Lv1tOeAs*>{_y%E2e&g8G$(yNs=6DJzZVF2 zT{;}!7|*G&>EPk@+>ulLnfM>I*F2Crz#B5ZbY~J9^MlJ4SJ&IWcl#P4aM$k2+#beU z`;hZb`3q07Pq+LlX!iYh>8pIFqWw#rfAGE$bL_{%$2-q$_;B*1T|{}{Q;8+wx`(n` z4yRgp6&{h`w$BT<=nDI2dT#3Lj~$06ezOtyekfV*qWjYVIqsJ^4xRE}5~GV0<729t zyyn=ni=Ew(zfOFuR<_V|&pNT~cLEJ1Y|r`3Jj%{F7y3x>HLkFW_QG|2OBsaFWMi&e{|*M=Qm>3ORInV{Beo#?o;aOY33oB zdvtSmPuSJ#`c;7E;54z5O)R@l3a>X%ThUojB*_wBrgxS#LHYk7r~a=ouAh$nnfil~ ze`?LOA8Wb7r%pby_|(n|>K_HqEc1;vzsDtdYLo8rvf$pFWxBE#(;n(FXofy*iTi$e zcl-T|dp2wck}}BA?k}3Ps^rXW`*};2B|qKgncvjBjGtfUy?Qpkj@RVvXF%odb!)x+ zO=k>*--F7Z2ocw-pm-@PsX2RiJ$DQ^UX~wAzx=jj>&%FWD&fY;>AB1gyuKXBx!bb; zLd*S&dx|!hXJ<*ptSS1He^~w4_?w1)6-b>asSx5uVW=eJOi`*Ec&}OM`>&KWy6G z|36|j&mQmMi3im0Mp*SDHMHzueD0?fc}(>|*ov z@@?7m5~_|r^_?R5>;caQP^G;=qia?Bey078Ui_HVeqXD=)UVTK!eS|LE{l1WKYcnH zA7S3+DAISN^wX70%Wi1~>z6Yg1U{NB_TEJMx{S<}k7mo(@Xo)i!@AV{>W-5;;Ni#m z+=l(xj~dP{-6<7p_f+>u)>s_=@*(uma~AG5A3nTw3VA%`Kx1+6W9J1E_qfP4KV6$v zxVg8Zba(Hb@~Cr<*c#Ng%=mFscl#_;>(BpI-aGbX%frb^d6&(LGEVJZHeX8TBWL5M z+|yDzx9_Z;$1E%hDi-5XW(GoM3ZGUuPOH}WDs{+xuPMMCyT;fd5GY_1e zeL7+0KGq9Q&t5$@v&?P&S6&8Hp~-#bOmXRD_l#e&6@`E1Jem(r83OsV&^H;uUG z&sH+&%7clK6V9|q%0zR#l$mp|zOh(Mern>iA37gavv9pw^D(l0$uZ4|?4Lp&A8PJ< zGWATVrgqyzs5@>kOrb20ArH1+t5*IsHv|GS0L_{%EuLV7P|;!YY%g z7Rk{`nrDyBD1Z2I+Ka_SJ4D2#10Eg!wJ7vtx`Upo-wm-Cp~?mJrh0Q~RMzXnSm=9h z-@#{gw~BK{;A)ekWw)$~Srv@3Ed(RnKDBXgJFuNG&ybt@Q#s>=uNgkY^|wErR?g{a zUN&E9%>wnKQabar@@?7Gtk~}?xUq+`pV#<<-p8{K4ofa;UoT{@9+A-Ao-e*gYdMSD z5&xRX&&m9@VJlVr%pZ>&aZ`<$Mw)n*gr}sJc*W@r{RAtz$=<8g{DRJ`Y(XVMo zU)4sRwn)Fm)(L4OF7o{DmCid&ye)SMvv4g#UOx(W*+;Tf)C9C&-Zub1CybV(pn zeGbprU43|I+SzsdPuV=H#GkE#6kJVmEv6BHpJy`*cY?gN@CjxhzSnXAXSw;HEGK!= zdoKI)CzoVnuI|*y{r%L!_{qd2XU|;CyS+8;{V(5!bu5WZFBN77{_V@Icj7%bNnj@r zo2Sfy+R5`cBBlIxY}1jfGPxlUBF}%6ePKz*36pEn7Hv#l-0NC;{-K}oftf#Ne>!I9 zBj*{lvrx77!_F-^d(Vqz$D~gE{kZDsg23fR+HcvkiTm!zztk06DVY)4v8 zYyB>qf0preB=_^AxzYpMQzG%kaS^=#%@W+4bdo z??t{o>i87qB(vnki%m*v`==QH2joG7??%Z=)wRi=|IqAS-P z72xqIW}G46oVZc^*hdEmTOg~&p&do>%Qf*(iI;S&v?WM z@lV~U6gO$gj;6UsT&3nM&fV}aY!9OVce;6&8zvcq3zY)QhgW51C7gN2jMOYJXx=(Xq7v5vn&{1-3W)hP5lHStL2+0O1x zEB@)q_uf6Y#U*~O`{j|;pO=jHbDiZocDPLD>BLO7dz-AXzcU0h{Zt8%KG_&~r)qNK z*2jrAE@WgTy)vz>NT{?ItW0n{>&h2%;7gx&TM6H}1B*com#se0=S1}!vy{&ebojZJ#|CaVn9yagW=PX`|C$vrckg+4K@!r{Wez^=X z_t`o)*UgfiHDTqR>cdCVuJ=ecEL#?Hx}V)Iw8?whkl1nHpI{B z=CM=zlY8`Vc<20H!RYTF-Zq6jopPZ0$I4HR7d-r4*=QWldI|Dm<8pC+>$azd!WokF zWnVO|@#Kozee=pnUI*VUjh!a-CX83?*50rAc>T<}-*#)+*6*7=;kE8%9h1LT5&}Q% z;kceqnRvs^(%|569lb9zW*w?YIn`^+I=Ko|6`fRIU3x5kE;~41K&v9}x!liHU-GT% z{XAhu@9jN1EFL}B(5zb?%Tu~#3ZKc;fF)*I-ulcuTFsEbq|q5N|5X3phI^|OXIELu z+RlCSD=<-P5`Rv&rfEdQBk%SXtJu6{9$(gY_^W62CdM&0p^5X(Y==# zw(izxxsVyFf|e&S8(q{gji~rkJzYvCUnXw`v+#%XkD;}hdPYy%me((;{-O18HjiJ3 zO-*=Zz{9C08h@-TP&Ak_anF^?0zbXG2e*pqF}dr@^+~W;++TKZoBqFtk_kO0{v7!D zq*rCzS)Z9#c^On^`?Fo2es&tK_^i3#YHGgCR8W)Zv)Qmmj^V^nX6+e8d}j>9-|uMh zOh3hXK+NL#sb1}SQuVBPdOb6~N$n4v0BgBfWT9^L7!!-dYivqnZy~qt0w-p!}ng-M{6c@AF^SPI~ri|y2i5YR^^e92kbwzet!87 zE!rie-swIyd7=NKNpqAt#kXCZq7#!S({>1(d7x<6x7;UdjoI6#>{zdUT?VOmkQIEH0?EzPN zfsdSP1A`u=ob7I5{JU;F1A}fl=qv#3j{!5aPfBjJ+~F0I;W0Vrk>WF#E@kGx&i*H9 zKaYL3@ygKa~o*32M7B0k*gk~FP^4kc9lSPN<=o?y0IRk*N0*kWa| zqMzQ&2e&Nv#qBe`KYG-$n8|F_>F#cBNxT31pDsRLE4gdp+mhOe@nRo3cD!@S-&-5D zj$wyTtLL(2|8pMk<%c6DH>MnYy2RK4)az3C(6X8TT5O0V+e_E(4^j^cB>RG743BB; zS=7F53A_0B13Qc6-gbHM%|_t=$;jq?MWS--*Jth*vVReLQuDjJ)#vD?s|uC&Z(CE8 z_jP6A!yRVwYpSQ{#Ju{$6%+mN;e(e)T{{wg{3uR1W>#Iu$r^vB#**h@Hg|v9g&&ef zN?*yJT35@&;Cc2FTZ2E#^~_Dv&OX2YBY(2`uR|dfVHR31b22V)xzZ7?m`j{5|MNnt?Sdtp?WbZm_o?|FIXg*c`pFq=qMhwCguCneTICK;`|-r% z_=CRHAJ(SyWbIn#6JHXv<%QJOnc8!!xfduk&q#PVXR+slB9qAH|If>&WxhU}_H@=? z?Sj3_{EBpvo>}k~B`8%M_}b^qvu&9nq(?SqBDQFJ$mss*)S=eTn@ZWwAFI5vC*p2* zw=y5w;zd=3fge>Gc+Na{=Rfa5;fsyp^{bM_UI;Mkx^L1Q&QNjaXJ&_$ACK=jkNuCM z{``5i;(|wXkiCb^!zIl#eL|(#U$0bEe)i<5%@2uJD`PVE9EnsEUs@^gd7jM^k(vMw z)t7?7o$?I{(M1z$s+(37c|C9}QMJ1wuBz&HBP>`&POCWdY4{_qZ$i_xX2jGA@f)i5 zS(sE-7GEsMO1@dBm$xse;J9e?0iNoN*o|v*MAj@m>odhKkHO}?_Cl50!cC>K)}(%x z*Z-M5gYQqchNJqNCkGE{H~bDMN>~(sV5(Tv$HupZFK?Szaoeo%D=6M1&Pje3?|7Yi zu6DvXw&_0{=X=?moUS|by;kU>&{X|zH}_S>$|#t7#Y`$XQdtmNW}g}Q+|Y4dfQ9|C z?T3y!20sciNZnIx|1N8%NJr`lj*XYNmCofBygoXg@%>`)Ntb;Y*6Ow0~%WTAV>Cx=U(XFj{GEv{MD=NHGgf@7M{*~$ISLY@~H z6*gzrf0-zxwq0d!ipUKIix@U1k7rB6zcjqBSMu%%lYZ{KD^)1UwXT)fQrPTdKtO!; zq3x>D@ehveFq&*}^;>7@`9;S(9|;_2e&JQKLf^}4k4=M$+>L2lEp~XtZ2DBt;B9kc zj>V&b18%0(#hp&yWmJx6e*EOpZ2tfH-wQc+cW`_I1yygugOlQ0tIIZTW87ez;ooK( zx%k(8+kYm;5%;2QsNL{TEWNFL)!9HL`oKi7>XRm`dMj=japhR8_~0OYJm7@suhXG# zB6Q+e^A0q=I$5H!f7*L3`6JDzwW>GjPh?Ik;)_}SFJb0^?%(RRH|kF?u!n!jJuQ%- z8$Fx(n)gvb_mg@X4|aPm>Ob|+Y0jmm)rRg<4;(#r^t0Vh^9x3mf}Fb^R2sGY+Q9gA zrsmwc3@kB53!hA0;>&Ptx$usMVt-l>d~jM3)3#W|onhLR3(Mzi5muk0eO;Zc(CgvB z^GO;uCXW{Ub^93Mk*>`BXF;s${3pk!oyni7RoL|?_4o0rguus6b*g^z_JBJAnjdmo z+nX1Qiz~Ltc=v%~RqJe@g=(DEKZ_Hew%y(~@8hodj>2nIFPEm=Iwtw)qVdx5GG>8^ zu6BywT6FpCzFykT;Im~SxBS`Co459hZt&{f`~O9i_qnNGeg#eyTgraZqAg6kswX$b z>(2t&+mpDT_Mc`5=nOybVWQ^uvtJz)MD^~dKX{sq3Elp zjhE%d9sY9Fr?MVIndHtH^c#b_M*4%u{A+U zf!~A<(1=dQsyRXx0`8%9EK(=6xy2u;c!J6(k2}Y5<6>kALk_r=Ru*wx}pVNBW$?CKDL$=%{o8MVX{d41zaBoGyOUo@8X}_0O zU0k*4m}SARIXKnO@leNXRX9MqKyqo`;)kLxFP*9LT-}-|8 zG5zj65}HR&?VKRjI470kqvV?1?@S6Dve`X**h&>wDaz)|KiO2cJ#LlWL>-+Dk(Cow z@={(za9YW&et1AzM&tT~m>=C|mmlV5xhwqYE9{C4Pkpxgd@iUg@yeb(tMpSEHU)Dsru28+ujd`enzJMSlC9;0 znMYV}PvRad=l ze&@mkQHCictOxdS6&yRXN|t}x4wbDBUrtyUut4~QPo3J2n2#SqA00ow{Ds`U*bks4 zrhvJr9?J}Hp}A@j)BUgt3yZ2k!K8u%s;1S2o}U7YZwRKp-lLVVy5Mm5|M&K9W*pp= zZPuuLeRch>IEGsa3EMQ1Rk(eWuWw^=JLmO$Jwu4f1fe|tCR@vp<<*SS&hXoPQa|ab zx;{p&=}~8l1%q_?&B?WDFFWhz9Oj(wofh+e?QKZ9TA|kWf%sS=SNgCx<|JPLjjB#%M>Ob5!B3 zxQpGEMT^tko}9Y*;IG&F8M^K3-v2L|JLA<1%^3HJW1EiM6sb^uwk>I*{4>ReS`2ZF z55gJM!kNPMWFM}dC0k~@$LylTQ%Ntyk27m5GOOXOyHdqfpFAHp{t5Z1kin#0swc7p z-uK(P!{X73hTd179tpL|7@X+ZDm+K)Mf%h9r%ZA+x6SsY?@wl*UDx^k@8jS9{%|qu zdv&~d|M&Ce%okMctAwwa9?4l!@{h|QMXaFf!6%jV)aQN2?X~mn{w}x)742*5< zpW1!$bvbv<&uQHDJl*ztzx#(X{Fs%f9Lcdc`e@DexL0Lf9tIDz81k}SEcngvBb4En z%Yj#-`MX~-r(OTsf7!!9b7I9QlTe$QsXsCcKYxgQ>eU*q#Qtdcq1FQdZl8jlAGF+A z!hSt$2Pjb$9(mZ%llSeBQ13g#fR4?jexh487YP>yIxfAjbfYo&E0}^NpGr{mKFkPOdC! zSbj;n>SGB<(L=Lm6DQ_H`tLBDH_fwRYR%0{!k&*>at|K;*8lauqGPSUd!MKlKHTtX z*Ad}cDsq9J7dzYlHSJixvvTO`wF;gRRrI@F{q@wm#SfRvac#cI+*)%(P4Vl|&;RdB zADkEW_3|x;Nn%yEwaXi8mj-SBF`aG86$5^0hFJ{NlQ#GXpAfH`bw_oxpx*D8;&;De zcIwYP(GU^!Cbrr1*3u4%JjhJQ%8${l>rZJmvKLPI5fHy&%8!6(-Wf-nQ`fEfBV?|3 zFz!(h>*Uq`j})J^d{&R0ImKK&bw8^`SFdMhc%o0YXy&Ig5>@vF?A?M4%F^~J3W`DRGl=bJ@&OlIC*J2e?S2y;-EiO<`X8lv;BLR%l zuY{gf<-D7`K_L6}9IcG>r)p0YHFcGT+de<|=otUK|AnWw$8QsKSbF;ZpG)?60uxqV zPjg7L{oH4KwLoqiLjvCm6Q@l18h3Z=y-hMTuUgl)1pdhHYFTls^+WE-KMy*y<=0sI zZT%Z~SNQBR=hE{JgN;9(e!AtlHz@Z@=|~pp#Z1pxYc`wt+Gg={g=@ASIxM*2$kHj| zifrsLL7T;=tMJP;w??SO$$9k7NO`LE#7TLD#5wQlb^rfv`0+UQf9qC;S2cSdaNBLX zzTl2z&&*p4Ki;i5c5^AGvZrvi|Bp)#(wE;g+wt;Hec)WtPp4Fi73OZaF)e0?{Uv4x z)i}n(?#rHBpVsK06|=*CHvcu-E^wsPc*iXCg~ypomoqHNwEeE%{hrjv<#0B1$)1&! z+dmoB6i(&P``CN(dBW{w+Gc-WZ=BC&wMFc~tp=;N05?F5ZwLV#4wzxj|({j12 z6Nlb?G-LR*xVZHmn}cUQ^NxMe30F^*=UQD|bMNImN5*S&*lr5NJl?Lw2CL*`OeRH( z>CKtG*1E#%+~H?OUx69~1`?uIySuxVa|vi)^D8L2aQ58UQ?1Qz1;u9fKJ?blwyQZa zdD^=F2dxy2zW=5k`|FOqTcvOz}G+4Uy2Gla3*r*N^OQ29bGKm!cDm)4_F=@ zEU((aEVJ+a=06YB_e;nmMDG;n(w(U~Z_BrXyB>$!mcMFyF~{yAzs{%AOV!zpChu_h z>=vwE0IDXSF>fDr)XWRXzR$T2B{C(1V`l5xq1ADo5 zK8W#HzK=`unm^nuf$;K^P1mR?Y2FZI%wQ*B4WL+sJ>tJ@olLMpD$H)dd@i> z&G^mIJ)b#buc*PFmIJ4P*Zt?-{JYWr>@=D6mrvU2X6+HGRB$%cv$^9D7rCP#Zri&D zH!b*Qi?6OOEIe{BAtXd!Pivl*!Kw-RbGCOu`_+VZ>QbX6<1Z{PV$$WYkh5+v#DU^N6SjC4HaH7uND-2 z@wV~$e0XPZ?92(`;;HjlE##yxr@#GFoB5B+ku4;GPwjc(fr9CouRp(0O51+;_O9~! zcT4y4cK`pdHtxl=dEZ}N-CxVvuql19*sF!z^@#=DQ)k{~U{R4#7vT0)$z=+-)akH$ z|4GhGe-^si+~=A0Uas%UPv;jgzj~x^d+;x7c&HrwZuV~ZAu?cJ~+m!c|@!5&^Em(Ywonf@I1FS{IF(@@Xnt+@q1p>-`nxF z$^S0Pw#m=SFTC72e?9xRNBM`-t3+<*&02l_4ch`WSChb)Pwniw|5RS4DD1S@@pDn{ z>GZv?pMGFa>Y3=>cj&8>)0MT~5+3dIR9BxD)XV+dJ!Z#~zkIQe9vNKCeD-IC-p2#m z%({*&Jc(x)c$GR*MzKG1#f<$}J9xfOessBCytDW@6Puh+naL(9-eDv^E&n;!Cz-p%>-{1^-?*zO2Hl54jn#t zwYyuOnOSe;&2H~W?EMFw*35nIbiur-vnOz~_bzz0W=``A4XOTO*NwXQzn*@7SM`41 zdUpOVg7#B({0P2#kK=+G!^D8&PR0&JS5Eyqwk}>YTip5l>Y#O>s#ZGo`zjo|rZVx7 zvZpk|lr4-8W;5*JobbQs!G?XWmT<>sf3ts7eqnwHN6f3wdByYM?r}Ifi|XA;Rnae% zn={$Fydbx=`@qHSc4an3y`3k!{WneLVoH+G5nj|U>^H*TdOUfE#qHR@mBWTzmBLD1U(O$o&Xvn2>I{@K1Sy) zvgx^k;<;;UOzMJ5y<3%a&$R%v%l`qYIx&pN58c6zK(n`q;9<>dljhB(Fr&Gp_2`-Kdy zgwHK{9IyYT?7-uT%fk!jnZ+$uce82mOkOkTfalb9{d)HMVLLeH?5(tTB%rW(_MV+C z)gL4@j@;yo<9ijklXGXm1&*w9rz|@<7k#t{U%8QY+V;DJ*V*~36E{3$`!lb8--F`4 zSs%~Wy_~-(Y;)ek$gr8S@UubM{82 z7_`)+cIH+V9*+J0V?w&l{i=_#2WIL0^cIT$m~5^0?aM3q^ojBTXNzCTH*UPLCQ^Cv znflFVoHd@anK5{DCb^#EuNHO)XY}CPFT-)n=hf=_Rj=>QocrC9%Q2Ztuv1dI&$EIl z=(&>67Aeqh|Ave}P+Dg0y*?!_#zgj3gwve0#hWanzOMPxQWNoR@v2Bmcf%kFmYrET zdNF_gzdRv4E&r#a-oJ0FYgav9)Zc#o_rDno&vVSTq$#$qS-SD($}T76nH}+)7eCs# z$d5gjA>h+?rhw<>tbF&`8n!)jOZcj3zW4l_UH_98#zpS9?B#sl@403q?}BrSZ{1yS z9X$FUpD)*E!E)k-TE5;zIU6>v!m_4tRv@5tL0TXRMc zb1$0=;f8LzS36EDwyV6V|8n*HlDG3`Ze_O@{q?1M*SX95dqc&!*4^^jc>UnkLOD^z z%EH1UfsE2upB`1^vP_sDnyqdTdg1)B^QW9yTOX{;nbSN|gRh~cRBPQ)-R(I)9_*cO zU3Y%ISk=A{ll`Xu&3t&=b-q~Ll!zBO3YJ-0|7EQWH_e{<)YN~gaPi8i0X`GmgEZ6h z3NIeF+Rx=6%}}Shpg@%2P59b>hr9iwZhZeB-XIsQ<-aw{gKNPpubtr!ZgcUwN5sXn zNXQg;o{fu{WOIe5?8r^4^<1|icUpc5bUeOVTRUB!O|nNJJhnf3!`F4E-&fsl)R)V- z*>L~8f499?)R#)>*l*9J8Elk)IChrI)8t(rdPIHpnTyP9$`r+2F zj;X*ipO@!$*xpaC&&L+NSD$Bd%#o|8a9-FZ%dOjtJVD+5g)Rm!j~*6eZVn9GyJJPg zDh9!%w=C9q`R@YzoDS5c`#jI&!*H*6l>=UK_EY^DCjMcMz8TzG5>n^A<#Q$8}*KHHaTaeG> z_ov-`jm4{S`-HGHHx?FH9egn1P-kmT_qNhG?|MJ4;8-xNTe*$v#EW%NdKXVHGOw)w z)%119HN8tA!;@^eM^XE}F8aUY_51!G0x8Gh{=DU7(EE1dSp3(=hwlG+#4q#enuf{A zIIBXtCpQ=po=q`h-0|b`L34%`pS2ma!|%N2tX}tPu73TcHFpx@zr=?|dG2}4xmi@t zsc27yMUudSNwfCsP^tVNp>yOGW*KAnB+Krxl#brNKU>Oketp@zpX=tLqjSv|zopi{ zdCso;r{?4FC6{Nq3f=ZnJuVfx*>0-ElZ+QfDkmxLoT1at^7%*La_0D-i_hKXD#&H( zn%yM2I&5v_<zciXqU-Dp;sqJDOX@bi#! zybbA#H2Gr|#ck)Dq4Oi*v^neHZ&Ukgt{z~m)&Yp3=uP9FnG_g`c8yqfbp z|JRMl{;dzU?6}=+ulMcBG4Z;WQ|&h$*gSFm#F*p%JYOEzW%6*6_sb(Yr&(W|VbgzC z>}iwtl}vE)`>5%>IYZ3zTJ7t9E-qEqe^a|ZU6I#fRd<2aHU3p?SKfSmrgUWC$>t4v zeqLb6)jV?3YI&Cgq}zUUx3+eAzL+GBVtlc5bkeQ|%5~v6zg`H}m%lvr|1LwoHzj{= zJI`0kUFWOBzB_I_S^mhnPd#V%>Q%1sJYqci&5@tetuM~7J)aV6x5MS`R?Y>k^Ht)1 z?A%v$_2c`x2d9qjduW?>mG3uC`sKn`6CW@1JzWo)e7>;k-BH)uD|^$A-s1E#a}PUz z>ij9z;@L~mp3XUeS;x^%~t5#XGbe9n;&Wo>zE!KI?o^T<>w)Pt6YJwHI;u^ z*GJxX-yyE^WRE$6M~ev8mLi{J>NU5Qi;GuJD2wgbD!fOgFzu<@lS7WmD=Z<&<8RXZ zDQ6DeE&rGEc)#55Ur*!XHgPs&90Uc$*2zm+o*3OBH(x6MBpBQN#AUN)-VVy#Y< zx?H=js*LfB9h?Vh9zHtHU(M{$y;r4un>Jtd9l6!cw*(rN2U*_^7Gqn zi;MYkXX?Zji|FSeX_lEMPx+oWdZe&v($r$6^-C5$jyao}j){-eDA9xvF zZV}uN|Mhb(!%K^_r>~yZe7P}|zw+Pg2WkiZPMDsicxmd4ne)En&X0?E<2b9-ea_m? zt2zv|&E4&^UR0E(K7Dgkq4^>x<3_iYusZTh+pc%F=-_g*e~%~rXL|fX)W$37!%n|k zm7RO{et5j*Vx*tY%0k)Kt(Oj#t~j9YzEt>m>E+JjE>$^9ZE25}1kVe&)YxtDs)pGh z=ElNav8w9e1Lo{kwkMrEy|3s|SGDcO@JM)JzbqpBQ+ha$jH zv@qql+LObMM|WFVr{}A6wLP{uo0`*=8Pq7nBR2j0o=@H%a_in3c9%bH>f^T1dr|Vi zHSW^Md17@_ESgnbu2JWVy&Lss;)Lf?Ez53tsh|69X2vih@I2=OOQ*Yb8O#ns;@@`l zGU)zOY5$fT$9iA3;KN0IGwthd8vndG)On-!u$BE?SLVIPqV%fPrKo@!Qzw1e*WTR8 z`E$jB$9JdB-EJ=I>U`pA%(1027U=}+_^^Kew>iG@m1pMbuiyVJ?}H<^rS2bg_p?qs8>wQ}TmK?Um z?&JLasGkp>|9y9eFI%1=H}bibw#9_+T8Ess3h&W6k^Wfy$)cvV@^G_#_jrsX`if1b zZ%p+FPoCf%ofp09<)8C;e?DB4XP#ek@tEseGsc=m_qqE2?zHv0%cjR#EvSshl6N%T z^e(_AGDTg^IM<&gEi6;G;pY=+#;R2RZu?v|53jdZ+KMXHSiG3Hd+pD){(I9B`<>@! zgsr(J`*YcpYwEET8QadSR9gsc7%Y5rcW&=y^Jbp53F~+EXgjZpYLwxb#x^_Oy8d?S z|DP9kpa1h$o|%1L!EUj-eHT9SGHxyAsX3A$t7==dgYWF*vMWc8oU{8*#IN2c+`m-M zhfOV{P`IJ;=+W6rwg@h0ooB|ZvU0BXmG`R`#xu{Qdsuf?6>GZ;-&z8=9%>LnQZMgpZqKDJX{{5b8 zXS#1A|M{|N#^p!n-ddTL&$B{aRko#llKc$8HNg+9wu(OKS!>Sv?$%U4n`66-6ldJ& z@I6p)qaw**{+|V{(ziX9pJkY?Cwn|VzE^$chG*t>A8$eQ(9@->P|a z`k%1a|K0S zYn{hqr>n6Vzuw6yF>BMz1u=`Z@W*V~*ejMlY0Hk^UQ+Ip48+51UzvW7DLwOg{_YLG z9r@!U_MTQ0U`cwWdF?QdXUWc#r|D0fwD}_~vnTQ#m3*G1m&|?ksLn0@+?}->UT&MO z8&~;l=4|`_r{2#xs=K4&@tR9bXG^1Q{9NRhtLJH?e=~i(PEnwz4dXIssHZ-hr{oE z|FL{V>^JM0#INVrXNqc^ z|C#N`{@=AUTJO)fX`Am?UAt6z|G50KgYHanJ3J;YVU3>jEveruNV-?m=N)^S&!0(s zLfp5mPLqsJ&U)N!`r^prE!~ryIeYJL1jGgI;*0tcdui(j?{6=fZ|$_tk-ipw@AnSd zFxzLm{c#)bH}^%|DE!`hcGcYP&H8dp+j+%41amHJYTgyKsrYl17w2ievU7+r`{r-%Pi~j$6cCFaH;%LHcwU`x|if*0VCRg9G z&VHqmIr00-;+!q&@-a@unH!J)yLIX6SJi~vmA!`776|v>UFRpDYMQX3kLdEpQGVbcNS1iJd#lx%8(ijpq}S6r9qM~#(o z^IKPleMxNolHPYsRMTeaHb0wXyX^vJyln72aAD3_zNa(1ul#iEHp^w$(Er6M^LEhO z51g}KO?onCW&Mq9N$-EZ-SNrp_^ zfF>7-+C^PYk`^A@IqUR|q~b;PeRC%=UtvF7f4P+R)&n7%ZG7CXDs&E~KbbDhetN@# z=9d5EvsEj;?%R^ud~;jn--O%8tRGJLE8Fb5e@|_}anbELyMJ8Co|gan=dy#(ZhzeT zHR8nk6VJEwzPh5Xd+f?F)mJ4CA}+mFxj89*i@I#&O{;Bz2lw4FYR~q{J!8l=w_?uu zLn(G-vS^{-`yoow+3sEH3TTy?(N-CP4nGr;_faz@(Lv@1$8Y^e(jW zJhZ54g^#TKtM%L88!wp4xZd^j!z-rO@}8G^9yiOHUXrz0RrlPaC%G#wH%crimd;X_ zztX-iSlUZR#eHkh+*{s7e%B`l&5`1L^n1V5fzKU|>eHUPHTWe&9axdKobC2SHvUT= z8ymUJymFQwm0s$tZvASx)$|p+`Ce#!35=bz=j^qOeXM^&rtbQ;YGZBu{Km@D4X=MT zKAQ6Dt=X#I9$P+IW=wR8z7$wA_tz4$SIY4z&80e5{7SQ=%liI*u)7y`;pNYr7jA@W z8DHpBe;7H(;=C_||Gv4|tBN~!y1sfz4~uTOK(prSgq3L_IF9R=e>3-(IXSO zR>y97d;1qpPQK)ds4s8q;?(D=JmW20RqXk8omtLu)_J!-nXTLX=4ZsE+_(^TPuASM zr`N2LZ_I8lw{zmL{+MF3TG*qrZ-$5F`zvamIg6R^PI|ZbK={o9okLG@A(n_8DVn;< z?z+UvSZ?=2?{5F%X-QMaxVVb3Jn`n+J$f&1xV??J^)}@D#BYb<&Doq)r7s009W0A` zWA$G9weRyVJD9(q=`r?+I%lkQhBw|0db zH`9?xzcT4txU_z+uYFbZIfo06LMLm8PrG~W^(4Psu##=Nn4Kr&R9L^9bi_>SNaL%i zMb>fpTAzh3-|SSsP&qSTR>K)-#uDexZI`Ys-F3yyqD+44jFelLa z@BJBuUsvpPo!^*dEU@K3@5-IWZh(Aoo=yk`^-g z|F0V-lz(5dWBxpuaeiySrj55(_z4-iR85`ot75kI`a{oaSA2G=*t0fh{&7>KqS_T_ zf-}<9=QTVpEXq_8QoCttz9;t5O5HG}(rTUj)t5H*b0r4cRjqv+^Z55SJLb*v81J(N zZrXgiVs6Q#8S0m|svKWZsgSeE+icJImEW_QjZL*==T>~0``mL`q}L4&g_i7jZ_47P zm)tkItuCMb-Lo`jaZ>-%Z*kuwUl<3>XUsHQ8W<#>|JbT;p_S*oV_$dGH)SbnH* z#aZuf*-hcICiPl#pPGoNve+U?(+2jn%oW;3?%&b=@2TOe94Y5jM}7sdf-X-Agj{ZOyqV;Nhrns z+oLA+rFU)0g8K|xCY9MQ|KqrLgX9Ch*K#k`@j7v^ZGZdKj=7d?*TlwM$M}y5`Xc0k<2h=zEtcpyQb>CmE;R^2CK?9GF`73Z|Cz^nTOggv}2xovf*{* zVq=zSrBxvLRWIMz%{b4z=e|lwy(u557HqCXMYE?}40i(P7tC`V0MK zQ+oa7%Y)m6Y(es~Zx_D$b>TP97s(gK7t$Ai`~dPa$o5fzAs-%MMj!q&uGKl^n0mFk zj)8%J!PC{xWt~$(Q)aS(B?H5|=bZt5?z~)5Tnr2hyq+E|K@1E`3?R(G#=yYvrQ*sj z1_lPk;vjb?hIQv;UNSH+xTHpSruq6ZXfZG_a4;~oXELyWlrS(bNP)~}U|zt;zzh~) zWMEjp1e0ZASip>6gH&?=*xCxa5Uzsp&0h9Dx$dF*cKfTUPw#zcyF^IH$=k`(DWgqp zrI#QJ>r+jS+768$?v+g)pFY@%Y*73l&bm@bMbP>EUUs2NuYGr(-0PY5`|rJ|;%{dn zH-Fn=Tm8-M>A8P3-}1wLt~1L1W@)^8&R^k0IZK&F;b;g@KLjoZH_j}4aq82jPZmo8 zi(af`GB!>wyz%wQZJ}i$3j3Iz?l#yLHn~rx{r$n8p882A_wVNFIm~z~_I=m$pvI4@ z9mMDF+_XYsf1%v;o>NQ-F>Z^V+wA(W=;cms)tHqID;-=|lk8uoE))nnquD%#^}rNf zjkkVp*yrC8*%h)NB;o#=hS$Fr>F_N3UZKI=peY%By}jIPSNN_#tpF{9MO-)bMW0%f z;L<$NGAEKDMK2@%U5@;zeM#mW!SlXl2drVz6)gx!cr$O(v-|d`jt?Yu8j4S6Jurh` zz_-8t#fo*xyL=wVif-GXE1D6|C^P@CpSa+k-79rCq2<#m#2@3?LOhf>czTibwl=|^4e#yKVI;>ERTxhahbkWJRy?dOVG0dfnSQ8i}!L| zXP+t6YLNTYWLhuZ&+RuwB3B;R7tnZv^ZGZ*uC1k4FQ&~m<@-BNyPNU4!54LX?uLI^ zvE45AJf^984t!%=dd;kM4bR^j8|*B5*Je!TU#h=0vN3b*^xP)H>NtzI#v8K~&z0T@ zkmqtvwNZO+8TQjb=6YeY`uctUPdOckTy##fM8TT>8P|sOvJ9^dlwVbLdM9N*d(LSM z|4bg~N4XMH^|pr=-8=SZ$K5TTeplH}QlF4%tFRz`qiNy89ea4s=WcvsHdBgkzF*>+ z+?niaQeTEdtYavNio0BSy7RtiV1eb++%3Lsoo*-n|NXzWH}UL6^}LuH8}7I549zw> zr?>8gfwB2^w=?I~&YL+mRy8dx+-W!4AKf!&&gCl9JwNj1jTO%lvlZ-*#6fBhb zUSs~GCxY>A?A2?Qf4rMnKQz~R+&W>dIwgrM`{~~_URK3_P62DDoAL5UJEZck*KLo8 zyVuCj9`}4Xhk9ORrS*$%8gtf{{*sV*+sgT(Pwd+z69ML3d-rhvyW{z|AxHXycht5$ zd!$n~*)cEoE_jh;q?Mc7>*4z61y=~>cx7{wgTXA+< zwEcJa?RS6V*Y6JgEhS*0D}6Tg)ozBTQ_}KGz2Az;O$}LhP|vB>-syhK1f}yaj8+jd zV~_8i{f#l4y{yL7*Z*lwgY$>_>>7MO%{rC4u&t6(L*Zj@S zugkR8{a?O+N6G8s_cyOL3e`Ni&BQfz@umkg9_zkr-FAk1>!cL%6`e}EAFJ^#FI^z4 zUUz#&!OTasxxVEmgzIuYz7XH@>`5!{?Ed-D8$Vghc+x+6=4^Yhb2s{1PuAv6Hq^fH zgKNh=L1($Bo2CYN45sQQ9N3fo_AxC_&RTR&vfr!OdB(=8`rJDnZ7flZaor&z#y(x= z{jHyy_m&$J@>_Y=3TNLO!cS#2xtUwZ=IzQ zwId_nDwp}r#UtyFow^nzdC9nYHvf#B_wU#JYMII|UwG`!sjKM+QtG8*R_#}R@nBQw z&0Q-T9_O1)a_L&TB{Sg$gO+i2Q~%LtM~?n5GGH^-+2?G-!XSF6<;x45mdwTZIj4De z$|_&JdTLv}Z||1s=i9&M?f$B5UiaXC&D*y63gej239$hIIht#Ctw`xQE@rN^{iD#6 z-@(r~<4Z4~F0zx6o655Ns&wU*!|9z5 zPhVW6?Bo=+x%fr-;n1e{2R5^bzuoupmVfNGN$PdK-^Kq)(YJ8eaqHszemC2^Z31RD z8FGK_?msU+t!qj5m6S>E6q}!#@MIi%az5L?(lz;Xrt0jQe-^mw-TD0Wea(YM%l@99 z9lP<9V8Q->Pk0Uo#!TQc`IUAm@w!2RaE17di20UOx%q>aU-XizVq9wrHqHG~shoJu z;Me@-z{%cx@h9!nDiws;CSH&ExJ@ke*uIBXjGw*#dyRkI?j4z@CqLx;qkbTAUrm+G z&L2ku!WLXK=U*KOioc8-EcaN=uBG#=Gdz~~KtNhqxYk5Wb?*6l~=d6}!U0E_Y zYyQ!^Aoh(9pPbKLTLFr*JL%{D95DBbC_dA9zVY|Z{Y;bpF-CIj=eO$om$vbW+SP3_ z`?iZr?(DfGbw=QYK(>QN{{extDZip})DqUb+pbjeD{0gym1RXg8T-UlLy|ly&Ij%gr0tdrI$VV?Lg}rs9@T z>}~#v8^Yr6f9@)`D@=S`x1ZJj_57PVHvHbf_}{Hl*Ij!z+cDk+XZP_gTx_^6*&t%` z9E-!#5AwJlSCnH?D$07ToH9SwUqW;!Xg{^<)eyTij>G3xuQ_ij5uN*q8!W+|ka{l$Ok6T=K zZ9821_b;E-`;+pxL^YV*)4sX+-oTa|bht)p7)9}_~nTKQ;+HWv` zsyw%OZch{+cR#!wS!>LEjIWvL>E*~;;n(YOYU{FhH6}d2v~KtR+Ury8tAC%LU-atx zs=S?I%v+-G$UgVX_bm!~Hkqxs^X9>xIkS3Q)BP2v&!4yd zm>rtsE6ybMeaoy1@0WeQ>+?BoM_aL%y5-8wmBP&`AjKoHe)*%TD*dXCRok*u zYtLW*dv;l~{O>c<4RSo5Ojwn@i}&S&uSdn-?)tNQ z{r)$a%j?*C1l~n)XoRl{HMCg&#Le3EbJxZ7b9!biDEgK2CVLLMR^g}c(xtkWcC0>G z|E(i^Z_3w=`#&GopB2CP-_qZ&F8>LfpK@GqYSQXllZOR1ZeQmD3ZlivC zqw|_wYPSW{mbj}c`b@7{ov);_iyt+cssxLeDwWIU-RSo|Mz(6vV?Rm46X1ApP4!L z(b~5b=L}OB19-3Q;Pq>644iEH&E?`2*C_vA9hQG>=iBquo&H}|Vfx(IVc6NVEP2fqh2;%!Fz!1VAd}*<<{ITW1oj(lh=9-!rDlFkj-IDvo z?)JTs&;@#rBD1|$J?~oi)Z5$q&CZ`~|0{1Q^Zyi>vGQd6R*uEi{LAl7m|$Ae^n7Mi zd=clBl&PoVC(SREn!z*K{@RpxI~Zof*8Z@4cK*kK>;I1*+SOanG5vSAnrPOUo<(-0 zeRG0yw)U#Yoa@}dc*WXKaQdX4ud{`xKRKP0BKYwgYxc$V{s5l&`<5j$9h3U|{iVQ* z%fCx;gqN#x3WExvnqMKZzx=l5rnnzy35mV@*5!qQ=iKL? zE?u*YUSEIoX}^`odbR~OwsAP@Gz!%HHuKVn>)Q$=SzOMUZ~aru^&@54dVkHly>8?FQwrDeDzD#_zghQ?J-+U7_WZZIr54;-X_mI*_@nfuiN$`o zJ;hvCRHj`{PmW(4$Kb-pvUcjCmrMG$%=xj=_HC}bUCIAqx!>OluKizdjP>QghPtR( zZQfgRe_g(#R=DfHv0pt0k0unz@XR^L<91SM6>mI;@TKdYR=6fqrd^Bv464?Zeiwhf z`Kx5%tRFejueF+wm4%uX-B$g{yjaEhMRVfzJtddlW$V{J4DH{2ymdj)cBYEeZSAvy zcCG5U>2qRFvfA94!NQSg+t1$VEmAP@{g?IVc-6VNUsrm|Z+vxO@jcD7wCyIVUCduR zP(LVWc5~grL|CPMYr5L2<_Ce91sukORg(-9OY1csUjAM3;_&kKzTvE|bmKzzy!m(_ zvFkjWnYZ`t{Qupr=hc6cE|2|m_wEJW`?`#;rdRQjnVj*%Gk5IvGI-4S6MFVa zZQYZnObLmH>x$EBe{H&cX8qj{r@W?B?)dYr$$j^68&E`<c3tAJK|x3F zMXtnKuM8uk6qZQfA^Wy+h?cVhjcOD2KTB^-JN>=!P}8jyYY+0|%EF48p!{Cn zmX<5E%Ub;Buj0O{b2a~L9|wo$ZuOUTrTZez?Fwmi_y>=U0ESe_LPw zqvP-S$~*fH)xWW}+;w@P!~4M3A1|I-*I3BB;=k~TUqY|TMJ$w;9pte_&rzUieecUv z4ttNT=9+FRXW{d4W>Ryk$2Mc0>E&;Be(QQ3|9i(`drrNVQyV&?SX|CIUp-NN`Aso* z!-++!cU=(6ymNKwf6FE3EACJCkE}oSQohCfm+YOij-JQ67cLfw&b*AMG?RM{A5b)N zGib?NeLNwzM&+iEvXj(bInTIIww0Dw-*iASlHN&q3Duj9{=c_O-YCO3v*P`|=)9Vz zTl+0OyjO57Rdvv12wCkD(*4*i^GWa8^OG;0*m>fFzWHLc9e3)af4*M*Vj^p}=|bI0 zJ6?PL^RWN%*uL(?ti^s6`g?Aq*G}fE?sw>4oU$9a8x&F0d)cK{!A6Ud?`5w=>Gwc8 zC&ODW)^2n0@W}pVSG!6tWOK-VQ)?xKl(qAd*RK}xIca=!+0`EvOjRL=&ug*7-`e+9 z_xilOA9+0vtrKI)u>02CaN;M&u1j~9sqK8Hn-UY|n{hq$aPOd%vAjx2cH_y2P5@$A;^L-Q$5L~^s zf8E>cf1M2z+~$j3c6-11Ei_;4So1OJi(FL(K$tCm{l zg>o~@`E#`|Z;JNSMfISxQ+viUl`&vyjZc@adhHn>-#=eZ{y(H$S9$fI`yOF~ZjLW< zo*W-?G`C$^2Fu-sJ0y6f#XL4igh`;ogbEA8b;b>~6it-sW@QMq-e|&k~L= zFKc(1ZL`~NDk~@;bXYoi{;nkv2~$$o_rAI8cdUq|q~oc@lMA}{w?3YqS99v5{@v=k zqF>URlJ|0Ga5ub4zVVewVbO)GPse*+9EqR*NB_sspW6JEuii7ZpJ#B%-`9NSc}jfU zFS*x3!REaeUG^@Lo66Gu#c*d!P07mbzto(Zu5~jD&9@5`UlqA3es!$smRGCf`uDDL zm9Kg~TYZ81)suzG9vxJAu-ANE`HlB_cMEUJNfep>TrHL;B~|EA@^9OLj>?r@n|HVQ z)!cREtaw+%C=i$u#r*!s{|Em6-t4*BF8}-d2A2ux|JLQLTzqEf_LEC}nGdrCNUr0w z6Pqn8{`fQ~o)%%L&5g@ar=+Z&lyy-*{?3|R9d*l&6<^!7s{izQ?{{CWFXG=9ajv5A zPi>jeJmnS6I*Y$9Qg#&K+|GQj^l;?skG47+w=+-43{~AM`SDJQ+GR#}_5FNzj_-W4 z>V&2GfA-oh?$6g*K08vs@c+s4)lV#T>E%jEnKhO-_I{OY?mn3C(!@_V%~3XqS>#a5 z7dN@K=ZeCgF1qD!RdsUW6JDh;pHIbWv)d>dt2&XrDM5SwVH5U_nu?d{unHtCOFH^{tpbvW{8$?vP88};=WGVbq9|M&g> z^7C^yecZ?YGv)E}zqRhGQe9w;uFLyO0`+^`mmX9+bL6Gxp_VIumx2mG=l?6W^}gYl zF=0#fqtwyib=n&Y50rH*?7!Q@RIJ`n!noH?Or`7Z=4v#lF*%2 z;mr`em08n#{%OBF_9?6lt7*lJ*S9y)u;W}XWuLT(b!-2i`95@ar=%(CzX#^ z|Clk2cfq9%$Wdj6Evn26m6mWVkDh<-R4xM@;cls0lo=I<*j>mPKU(n0^K;X32?~=$qQE!Is6;dDhvi9z&x&BVR?(fI# zw$FR=9VTpyW^p+ayvr~9o5A$w`9tN za-w?s)fc!=y|Ue{a?^vJwQkiHmb_Z@De>I&>EGgZe}4S`N5|XzAHCTJ=EboV#BwIc z^<3E;$Em^Huxgv7I78#2Ri5(7%4^H!{J5%j{@?k3kIt@-jo5$xwBQNz_kxEGKnAg- zl0m@}*b5CF>Do!UhDzYB#qwWYZ?+b#x+%nnRQWg0d$x`HS22T3lBL+(*AWcIq>ekU z;+xBoYs;`M>fYwpv&;AV*w}yf@7C^jOxM47F*sdyYG`|^7ofgf?zxuerpwd(I_9!{ zvOFJpMQpPDHAeNi7?v~he{Phw&H8##{V(^0i(d=n3?H=QZ@dADIU6>)sc*78`WFbK zO{vPxQBqNnzm@R6cAH)7iZr|1$9A1surW5Y_fDDTzo;*YnsQ%kkNVxJ;IUn`q@uS^ zS!~Y6s~P;W{7U(r^KCrW{c3vooqzA5&)@u@74XQKsV1Chimhq5(amor@sftSlNPD( zSSRGL-&Qo_t7!Bt>GXf<`(OTbKjd65-aYfC?>0N@elBhcF>9_leJeYw*lo0U`4XL~ zN}e44QKEQT#g@~?NhKgmDc z-k!9o?vj{#-IJ>`|KE9~+#hZ8_ptqsCvOftVm2sz{$lZ@Tu_)v#DjXSvIQOO3=5oQ zY^&nAcFa9FI_rq5k_sD)w<4xKQ$a*PFz1hkne>&vJTW zGeO_sb`o1y(3XCW)pO_lJnj9T|K}aw^)WZLJpI0R=dUR)&#fnL>Qn?MZ`-Kf-{`J- znd@cpC(fTQg7UxmwzN$7`?MZ1QnRvdZQ0Zdt5#cCf7>Ni`(iIB?52J7H5mx!136E_*TSiyaeI^=CZ_*Y*4LsnI^?{qOVfH3!-*%YBh|&|hIQS9v|dg<}Z< z^MuoX7|lpb0<{??21m=s-oE}vm{GCUPJ3DJz4Y6&*Ku8m-m|J8^6}Oe&ev>`em~=Q zCE&dtoDo(X-W#fyA@cE127{D0TuiR^zYRTi#ey3oonYh~=y%+jkL z_bg2+zqRV*#>)zd&vUsXBV1ShyBIe2=WEsj$9~V>{OaEOT`x9&sQ&-Bc4t&SQ@10J z9$WJ|Q$OJ}2kOJQ_Gz@{NG>Ry7BAJwJ$pwCWO9k z^My7dt|#>bJ@S-pU+ApEzOY!9`@oHdjTaWhy-;~^o%zFxJ$257Tki=TP;@iidG*Wb z)4RXdd~GUz|L5-KIu3??91a$DFS?&)5#gFx~B&_)!m){Q*%)CD#YB3n{f33YK$f%h4UB&j>F0F%8Y=WU>-P6B3sT-61B(i0M=f09TCz~{Py8rvjFE@T^ zu+fsdzudfJcUf)nZ{hx`GoP-#E^AyE#j=8(sd}fVfJNoiuWu$Tn4B`baL>MAafU{w zRr^+U#&7*~Mt;&P>!<(gK0Wy>S9CA^f$jgb{}0bEY_P1#N#IG#cmU}g$G$d{jOUqu zE;CwE_2#0>S)XtAx9TmLAN!>9Y2nY(leK0qbdKsBT_$zwOGV!TzKuNBclNO+ta(+m zI_84Ki|dR99i?%(UoKsHd|)xxwZk{lABmiNy7v0MwByNqf1?$y`ZL#VXX@DM;aSB6;^Wqobd&C%MjIj>PTVzqDH!dVK%zjL4Hr!op?%zGuiEi0Uxq4wo} z#`!y*c&_fV;rpLFrMO!%toNeJ-MQGCDsRDkX~AR1_=G%9s=`|Tp0(Li)Va^y$lAj0 zyGl<>zP-3T;`!6dze}vt`A;mK^l|c+BOMcV*-zQXe)4(!G0j}=sdi<9QeN3#e%FanU5Fr}0&2H{h^NlEtm#|nD`88!%BfhKz zb){sJW~M&35^LD_WJT`xNZwyx8EmxPe|P`#@ioT-f!DKCUd|Lu-kR^)@?}Z?Y47_# z4<)~=I~Wz*CGzP~2%bK|-Df20@Z7&O0&K#6>CajCLbZh~Fxiul-@zy4e+ad9}|_V*05^|D}j z?X8m$eGPmYWx7LR7bj0(O zx7qNZXK8y)kzU~Ot;!pm*L?o;ves(uWcDY4Cx6)O4R#l4x$<|Ri^uxk4!t@~tLL|h zE?-~q|9f5Lb7Q~1{ssqkG9~UeCC(rx8f^+lp4QV^nw3i=9 z6}~EOT3|6F>-zV9=l}dUTW_>KasPdz%^ebn1{>rYjs$x2Ul3TlPmt^IfKO!qtoE3u=lZIXuDt2Hn|4(r(dN- zuQPu-`gO)aue`8owUjkRS93l34@k9fO02Fec6$8n&A*T5j?4eM@H9H_2Cqb^XoHtDCu-YnFkJbAnpBo*{4?klP%lKgO{wS7&)#8lq`+oGYpUb`RCFb>uiCXPnICvA? zR<1vq#&m4bJbn+t6xIj;{?9#F17lEorvrA+)KImE7*W!42<++D< z6t7kO{9-qE-9+Xm0!uUmfq z>zC@aEJrNjAGGxA?m8~}eBz7%hS_s+7l|=6Zmy3j-NkUByMcNBr`h{?lXp&Pa$al& z9-GRXZh9A~1HJPNcwkCI`i;}3xyLUo_Ud2Wf5j^Ci17@uzpL8~Rdjq}K_Pl;UvJ#4 zDw&E9qq<4+Bm{%Lw+k!wgr0Bdd8)YR*P@;!`p*iUT}Y183S0Yk$Bu04xqq(OG%d?m zD8{rZR4>&!b33D27Gpxlt&{?Tg5YM?=+bZY)h|BBZLO?3{475GvE7E2{dzl@TE28} zC)QNWKlgIBgkaFpHIUxOyHn6!+N*z>i~M6BM}X33N8yRL!M}rf~D*85|2*&gjqE^I@I-zf14Z@BW@F z&_3_)VyW`iOZ9{VkJKZGQfbx&7dF3iI^7 z<_OKz+j?uyPUGM>sl;~!G})2AODiD%V^rUC)AM4r8-Bf3a({YR_`>2%^%J${hh}Fl zsx?wb=Dohsszhi@DT7SX+;Hi=TfSO+SdsEa#nw=1$vb{^CyCYbI3-UzXV|f+8wwua z=;+CQAQo;{@K68$=X=$0zh2}w7rj~!a+`y^Vxp7pzg1Ja8c(Kkek2w z`>ja{ryWkuefnVY_m>w;^Hf?K`M1>V1;_4%zbx~9aXj_fIOSaK^VQv6H(oejKI26F<-R{+01}=j>PclW%E6AD;Ka$ujSj z`QoKPCmBMzV;OV4of30)^{*8@+_KHkmE-P=&Trm^9^Nv4 zF7DKJW(!HWWz>AOJJAAKd?l+r%a@VPu7yT!!l$f!4QRQv7=bK7T8g2_`ZqFYiyvo+8^2Qn%`CntRb9goaMNfIG_S+@d`=EoP$6~fi0XL(f=HI)p zamS5%$rFzzuUNu;^z*e3=l@*rdlA*l{L1-eviH+2zL%x)TFkQTKNr_c2>X|reU!oB z_nM4Mp95FemvXvH3URM}mD17J$hz|pXNtqQGizp4zUrRO)icjoE9$JS>10n)pWC_& zrVd-?#?~J@JioK~?d_VX)qNbCk=ze2E8bZC{pGD27!_<(PoS4g=3|4Bj;9eN>yjBI zZr}g-fb&gY<#D;m-*0B^Wqu;?dREJqTl=>$G)WpxQ&N?^q`abSC8y4es3mO@-aN02 z7F@d^wNCBAg(~~@RZ>guW-MyTv3nuuuvfS&hULOfmy4nSZO)S44FvPqWPYw@iU_LzdXsjB6Z4?MOoR4Jy=>&!kDjt>fYz@x>pLL?uCpST(E+4 zJN4(^TYlNH(m`%&&-=^Pr7n&hcjdiWzU<<^aze@H+u^@V`n9eWJq;f3+0G@rI>?-L z*df_8afNSM-Nz$0xBq*d>8)S=#oV#6nDf7@Ly!37=MqK9`x!Clxxyio<#DPH+;gUrfpde+nLNUjEra`dLoFEg5^yuev!^P8CCOa|Ll zU0L9Hbz$j+Yv4Y~;zv~u`*z3~hnzf{b-tx1blEQ6mx2+84H%QR=KCFaprXbk!8q|D z@0^1l-st>YemQsSyHqTgwgpY-rw`M6e zynWNP*smfecS=XYgiDHlA755HhZNNww_H8Huk`L>b@MFKJ*J^LZ%d(s)seNY`i}+H z=_+)4JQI2wytv)v!gBTpft9}{PKCdgWt4f8xV+(0;uU($eU#a4e;j~eF18Y`IA-u}X}G4ZqXk!`cD-n7?a3g|BG&N38r)%Kp^d&F!d zH$zm+E{=f7`}c5dcy(j4c>48q_WbSYCPsF(tN14SY|YIHmo(Y7TFcU`Y=VcEo~GH_ zW5TXDFtV1dGcl1A83U4{g(eWkk z0naiyn+0Y(CSk&DyN+arp=?>>7yW0C!*>)S?>TDLU>B?Gb4=!JVf%vkDf$`U%|Sk@x8m7Glh+y|6a z{hZpg*#Dnu#(pmAxzQ7j@!rk|zm#<5U(Z)2g#c|Uj*@~WH|=kn(~~QFqa3sN@uXy* z`Fcyf-!!`x%GUeV!1D%pf=_w=Tz&ufv3Ya9JTG`9a9Zm3r}N8_ISs;|Pt=|FaHEvH ze?Y%i6{z8QSDyWZqS+??#H=c{gf$PNpNCJL#k87VEoIHi1&^c>nI1Gm9XBsvTdX*X zV}+@opwRsT8eFFwdO{Z-)|K$OT{^pf@q_w?)s?Py`2r^IpVcm~E+z4Qa?^|>tPNTg z({Bl{|uszRXsrihZI+e2in zIBr=n@D+ymAId*V|IG%bbbjN4w*D>>2=Au zEPo+`NYe|Q_sy-kCV6bp%#E#IIMyZ3XxP|Re+rh57xKn*_yL-Z%@+y$6M67oTBEod^smGLos=B^2-XwcE+uJ z`44#9oOzU(7JU@DeLw*etyecDbKKu3o}8ax_U^yHga2}6rpJBG<~DdnGdy5;uuSbA zqxqAmHEDU5|M8c}I_OziWkUv>XZH8Xs!W>X-Q^oJH*~KJqwT6C`%F(wW=+qT`gein zRoADF3*HI5-gE24(zVAM-Bll}zw8uLEUmW?JQVTO=R|~@(`Q4A&Q1n5hm;uRbOS40 zUzRIU?JdW$4h3AF0glT{KNGysbmmN+fPUp|&qw_8f5mPHDdw|sw91mc{+!`h z5#xmi|Ln!$d7GqW%sl+>$NT=)?f>5{KNhrg+r&+;Kub+5C97k*?Y`VI_jl+&^}BTf zWR%dN6fsKJ&bQ+(p5}WK@*au4 zb>G$dlu02#(C(pf3~!Uo@A%sH>~;%bNzF??-u(IH(z(Pp z0;eaw09ABh&ldb!@~Wovq7`VkW9bwdxrIBT)+=A_Tym#FQ1SISZBIzvot(UI;TO?| z224ty4GP$T{f$uy>FyQJZfh|dPKjRa+-~4L;cN7Vu21#{);*KDx@y6R)gDvAer?QA z&tz)PKniLN~A9-ZvZuEBxDmkBF?m(>Y6kI)OfBk zDPRlcj(wjlyGZrcRJARqJY5_mJ2v{=H)WMjyM1jAD@!bE)YfMv9c!LTaNiAm;?RD3 zrFtggf$CQ>Ju|Onzkj;B=ZW;njTar2GiVp9>m*5UjU&DzT zZ08b6vOt9~A7}5?mWAsK0}Z%OD6RUrjkD(dZnK(6I;K09Buu^d=g`DQiT?5WcAp!g z9h~x+AJ~{|yse_ou;In3A614MDxQ4oHtyE;b4h(+@$qGFiKf|%lu5A*>NV|}&G;Ie zdz>%S-j66ac1q^T{E*lXd(hD3)JfazAZ79z=bo#7gIqlF&o)aMhV5Lp6_$Bxn9~im zerZbf)!m})8<0D2YXqWuhB0h(UyWxCe$XWAK z0Uz(>9RKKeU}H3ciygxXu0G}k8I}L*|KG3s`|)&AT3|2Fwtaz~7nj~h5b`XOee!;F z=b4KWS2*{)vwAuE;dP-qN|Sas3~(E^?$5u#Rini4nV-q_vw zLU)2>SnX_tCsg^aIF08+&MvRV;GOH(X_S;B|L7&yBXXaQgT2gqAAuAF}V8YymGUx z4%ye_+1K^_Z2P!!US-?fkCQhsY!GE(XEINANHfpfsK>w-@JTVGY1P->Iica4Yj=gr zm%VvXMz+)Hh|y&5z|iU}o>?KXQS7<44E?8Gn`^COf71Qh(0S^eHQ!u3JW_+QCmWpU z*tk`~O8_)rkig>7W?I0uc$3sN#;*b#Q$WRZ^h|{-OdC4Z?8|mC@Y%N3@-s&j=cCU4 zRdX!Y#Ncu50uLP2% ziax*G`~sA3O?I6L6B@B4iWd>eaK{%bKXwG|Wy+PQiws9Aa=N=C%w5X%8r zO=cn(kUd99WnW{U$dpEj)lTiv20q((tIY-XvKk%ETG#)BTRWGVp_Hj>rNUizwOzM! zJ3$TU{gn?@?KkiECWLuTvMf%qQftERXkM%+~c_Nn5~B?YwDtx=9e_M(ikIM+~o9@O+Woz!p77w z{E_d|#Xa`MyZz?;Uv&17^8fE_9@5XHclq9V(tpzb5mSTTpBwB)`EUJfReoXUl*w{> ztx!~{+LA|SmO%@+Ww9p0>v!mso#9OG-2oo00FB+QzpwYWt;YK665|$^9i`rf43v*W zJzih{9j7>R_<*F3?b(J~1{WfHC9<@ITcQ}mCSEP~spB;88jqGh=OB5Dcg5iFhQH|&g?<&87z-jt=nd<;(RRAU!+AwN=R#o z`wCDErYhK$!sB+FyMZ}Nc1zo8PLmKJ#;uIgZm_Wh2CyZq5xjr8A#u~%>lJOxI2~=2EU28FnJe4K&#oUnWEa?w};+S3%*+Za><>AB^^s41L>jLn|3NFTn)Pg zu5Zo+_(i?vcp$KN=AB7j&U9=%wKdPVishPtX(Q`mWggD%n*ou5Lc)wa4Ice$=Mu6O zzJ_=3Eju+dm<_MJ+`Ww9aLVmj#{CPXE6n?`LMoJRamQ_wXLtVm3s5wDpRiS<_m4~N zh=-z*7wSI2;ip}6yT2#Jp^45#>Jq43K9{n=o=zvWBE_M{mTHrn(&Nj9*GW3gaLI@W8@(ePql<{Gsvr@TP@`@hX2O2EW?@f0+qzGwPyBg!bWVu+E6fV9%AU6(W%jY= zIhWXaw6vmrrJJqb%42x6^JE=6uQZd6rTLc&a(1g^atZ^lJx%MLseP|!hH!t~yR?Gk z&*ZP}Qo7LEc*LUa?XykqL+mue87d}b22RaOt1QbC4)d0a?`uAzIL-B))AG-T9Fprc z&p23D!5}9(KfZ153XS=?PD}2AMznjtnN{mSfWRlgOVP;@Ehp>RR(g5;zR1EHlH;(p zH*3c%2j}KwTNgf!m!}?|?|SZZ&bYqkX@)s}+sSQt>&txe8{a(q{aT~jzN_xLZ17R* zM@xDy{C*w5`o)H&s5NE6$7JJ#!PS)*+f3S2tN4ucF%e$Zop~3;uOD*l~1h>}CZufPt|8G`n z7MazwQ%EB9&%WgT=smja@4|VN=YA>f%~@Y}td?S2Eq3{;@9dM<26uy1~qvD612PBsf-r z))nQx2Q7Sdcx9{5?{&=olCUzaZrkkxl0AOD!i-ywDK6YN%ixNs8o1S9df%)ue_|$5 z?Xv&U!8gLjQOi5!+pc_7d&k>jzQ-|&n{p) zwA^`tzkVrr&hK{WoeBBN=asZg;Mkt$DUo(0B3nk}7}`X zF&uC@?KmTHzo$M!h-8nTfyDn81}loxZ(p-&XKs%;{teQ{;hW&R=5bcFvr!7Db$Mc; z;NnS!XC`daIn~g6P$B3MV#J9}knv(gXKsQ3YpTMrS2rA)cqZpIpW|FGT|s4DuMD`1 zEI+gF(a~cwqYwPISglrnb=6{~pAr72(o){4=rL?K@O6>?nh4F+=e*8GEWQA4B@vj@ zarx>h=@~D`r>yXG2jk*~sHGXddQG}O*<#|v_HNDT?_;N))bN*`W2X531_lQP(1mc5IlyB` zFYgC{+CdLBnqKNoP@WD=oZm!OueR7++uzFpwUy)4MW0iSJSR2;vsA72VpW#I4 z%=|Oa;K?`Jb9Q_E+xcR;rB+@RyyJ3V|Jf}@TsOC!YP3vWqr3V=r~9w20tv>I$9W`J zuej}3+1BU?YD;Gy;Wylute%_KhfJMrb&>2yf|d=Sov5!e+0d)++bpSzwuh>2)+sHxwd7*@nSDuL1=U58 z^XhzOCrYZ{_KarOk!`+zLs!4_^OYMxK_5Er^M+;$V+XlcCRsK+GVM@$Z)a@K2JKAm~9GBVM9rfgE|7PG4O7@iBqwqKrSnY!lP zbR|f`q;zdBw9WWf+M;>oQgIpntc9_eOM%e70@w&TZuPje4lQF-kqQkIZ!NNs+23HxMS)Z%1l9{6co-Hy27jaqh=Xe}5 za6b0QU{ZbyC#Xq(|A1sqTZYntYZj2X0}W=wuvWh92{Uq}zvU@aai_Fhy|dy`zf#_P z!`~g|Zw=Y_8DAYPoz&?W!QgVWys|D)*Z!S_zwFPFj>+IIb7Bp+%j|jiT8T%$18CNG z_1|D6w#AQK8gIvvEWZrW@2*f)BO-LJ`F>ny z$wjX}e&T=aJMNH{yw{eriEe@#fQR(s%)x5m%59DTLR z{^y_7C*}I{yp-(?K|?Yj7gME+uRS?@L`K}MC-itr&std(MO&!|L!T2jqGXoKw_T|- zImjR?9gw{kG}jhTZQuS%N;S6fPhm5t`8aKN$>)R_Ij_G(UH>AqMDE&z9+>X-hL-0Gl_<_5r7ptbMsm_mwWU`A=J_HbZ8DWS>#p{f)nS z%yT#HdUxLA&-qpJ88`7CeXL|et1F5mK=rX-@EW^cmr8re{q;Khr zUK5#)T}#q%gjE;U4oLQ#%DTaJ#aST$Ta~S&@IrTjazCQvvio&8wWqH3@t&7+x@G1c z*(lueO(xk)~s#L{3r^-vkgH}qsmYF9p=ZFh~ zvVsvmbGpG-6U?;KG-KoTo2Jv2s@<@da5!PgM|Z*9=V#O&eWiTPrl8y<8f~QaS@y` zB;P%^lZ|I`?#}fB_oEful@@o|ckQS>HfLKz?U&`JB_=M_YM zPJEpGfM=QAA6OlYXdFB0Pk(P%kkzzpiLOy)8%KI~amBF?>p8mT-brpTUe&tUqmx5o~&_BQ7D3&C6B5Y+wCw z-G{mDhwEM}I9h0ACU-g@EooQJ#ijXg>cao+{xm!DgxlM+OX3W>>P~OotbK*uHtmcm zIK^5@STtYM%mP)5Dxe8#EVYNDKxt%!oIdYiz1zDRkICu@Kkl2nXX8g3tvK0gq1Oj8 z?B#6d=G6R9jo~@q#30UGy~_2V+@26#;fwRKj-S4MQu@5%&A^t#6djrMQ_VRx{>r+s zzHxK4#bI+kyLapr&v!&@unJzZx|jW;XU);aqHU%2l5d#A(#z%4j>sP8-1s-cW8yu- zYmQL@Htk~T)+~$t_5M_Oc-=;a*k9ZD9O@6PjAVGAaPyewX_G|#JcqTtJaZ0abf__9 z^#->bF*oP}<-gDu1>9{Xwut~$Vp4Pbwf>|*`c!^BhO)z%T5(g z6Lh%J^kan_erJi!~K3#yq`Yj=xOHTVG?@XPkNaRFS%Wx^I&bI;NC5r z4@&JCj=CP=x|7eEoyD!N$7@6O;e`9V-#1Nki`>?G%)6j#yWh3HF&$s+WqVdmwEwmE zpJwdK5?Q4U922EK221lVdK{rF9>NrM^!RGe-?iQyz4zsHnDX}W$843X3HCHMjd#wp z>v}%#{O1F~)Bo-Mba(3gJ6qr0xW7b?;Z^Fv@5Y-QQ*-Vvn*{3A&1QkNqcKP6cX2S; z6>f@WQxw|$ZRxroH3`kGCs(J}2uq7jdX{-s+lc*@|8wC@t;Sa> z_ee2W$9aYCe2~lfGvRjKg+u#_gO5aN_b(OpQvTp|woU%vllqmve{xP;-*ezG^ZM5f z46D{>T#;w!o~OIv#Z8WIH?sqW(wVmvY)z@%$}y|`^taVlYil+fcKs+@Q1iCYRc+gj z`#i_*nVNGJe(hzBdz#$c&pqq!KE{6!%?|dab8md?(RuFw@>j`q#~&05)t1jJR(E}O z{pA%MhNNRR4@mUveIY22tFe)n2Rx%AYwgjHxGDF7C3A_0hh0sp@ZVg6mxufOs~7v^ zZ`t=(nJ)7eDgn&_RdOXC=&=13MC>1Na*qGS{f_APwmltepNnyS9-@=fF(`yPLY@GroLO zG}!s^QGuMJiyFVmA^tftBs3pOu&?Jkqh_{k#}o+ z=g_g6uj$)?gPU1Txjz<5dN3oeVROLWI z?VKOx>)jV$%>5Dh=Vqu=&Btn|Ki99f{&?2^u!~FXaOk^oS*0Ue`x~Q~e(*lK9T8u9 z;n=QqHU6{Wbz&yZk+&_@i8xRy%Xm8Nrc&>6m8@{(wR={HDLmf%@_pY&PtWv4pwM{F zl<=^-dY^9E^F8uE)sz=(oOPknvJ*TPHRm5MXsTAKkI6^hkifcP z(P9iY`Q)c7|D4OToo+vEasJH{Mv((2)>yDr%<3njNWtqM{V5){Ocn-_Sfte2#;Y; zuIUlDK6m;?^%|byo$pTRKfB)gUaw|VjC}Aqh9_2QV(PAZ=i0WTTAbl?vo=E&V?yz& zesNn~Bl~f;5h< zD!f$n?D>VWPJg6)di<@W*R45lxa0D!+K;=P{yej8`SCGW#x|w2aKWV`u|Maj?AP2m zjn(1S$7=_?YL6#$?=ELF_`Wpt$JK(0ZmDeU6G~j{%r5%rUss-V{i-1J=HujZ%ji(Q*AAXvC=RN0_!st8GA1GIwZZ+6b)ez26 z$1?rl)qlwg*6+^^@L&9R%QMln$9rF0==d}x%_`IXYl|I^+COpoz>d%ICjY*F?X}vP zVE5HkQI4P6q-NQo$-P(1cmH2kQ~uC=`gzSrh6AyuI`4k4cB$w880XTvnKebQ@OqgX z&*a>t9=u7BrwgFn9851+rTC;q59oa3Wx#{SRTJ4|@P^PYrV zjqjJ12L&5`xcAoAv)9Uqyz{yyl7aIc@=Oj=h%27H@ui==;7m#><{5ACS0z zSh?dp_exNSUB}HZe|^~RM{9PmCRm=(QHqaQ`}*l8TQ_gtfb?6FP6)`W|J(XucDl`L z{=aeYylc+f5|d8(@#XK$;~a%zZ=TCVtNod#Jm>14qKbmgpY4Snac`)9D)dRrrsvS{ z$sdaDaP~+1x%+RvoqNY*zVovlMOfTs{`*^P&eeLxywx?Va+m&?`TUrEH&Q>)ATnyR z!Vbj++V^9B$g0oppKHmd#e2VM@?W`zl{=Xl;?+(bcbC4cHh=pQmf0+v3C7PGrvJMB zNbGkCT#WCfpsIPxJ)xcl_hk=>g?nhS}ymC}`i{JTObLeD&{4bRmArJP| z-BjDn^kdI~>Ge#Lo_Md6(U~7{(531^1R$Pe0k(Yq(v!F8HJ&|Ml$x z%{!Y~PS4!h`#kt#$tQa@wO{J@xaWOp`ztp)TdpgiNqYldUEEKNiWLIoe|X{;(+~gn zd^kEmv0+zmUz50Y?wkjFldjbBe1CVps#V}Wlkon}KJ)A4I%>5yY44vABEIi?>io5A zyP_Yj+{t?3XUqMgjCV?M+^0H=iogH-_(;F~>&`lf$B zZT466z;^?g(gz9im)-j(Bet*pL$RVA$NQiQ>A(NnIDhlux*GpU_wVd{_HBCcp6V~A zncNIjN-IyLOxBEzvVPT^9P-h&@cMzsbHCz4zW>a%&|{WUZ!mt?`8WN*O@+8e@s^qH z(YG!JuUWQ*X?Mc5`pZw9_6XXsmz(e0et(JFpW-V=uC=~Bq<-wxq4!IElw7Sk^yK%q z@FH>c=*i3pQ$8vuKbHP&cF2GKhpT&wHs3V7DOI8MShHZ+|38;ctNv4KcRtvc&sxV| zfA{y)_Xqd?Y&AQ5%+5HnX3=E5KYm^3^?u!Vy}y~atlIteF{T6=w!#q0Egic*iOu+< zugL%NW{u#@haZ%tKeuJrr{ORCCwR`c_VkYdS_Z$k9xVO${Lg}4YwIqToOr%?XzO3(enS-X?Fjguh-qK3E%X1JI6=s59g!iarl>? zf1Gc6Doo2jRkXtV&z`TX_A1|h#s1w?YZr4v?UUZ0vWLRIue9Fx{CG3P=QxM8Eq8++ zpU8cOud@BmE+yvFT*$xN|FC@Ohb!Ce<$QE#vwv89(z(TgzixMY-RAYHLpwBAGW^@} zp4H&zb-w?z6oT7#f4JT1|0XYQ|IWXq6O+U3F23*B_A-*8B=UeB-?yO@SX8--kzHuef^lc#tC87tefBDDe_ix(c{iR{CKaMQf^7v_ciA`#nf}L!#E_5vgBXh#8435`R>t!9?1`ZM|?Xv-+zqfkFPl9_Q&RjhT^{`(_0Rl{+FsP zI^!GHn}+m+dw;n7^-rcBZq8cw>QH{({GESSYCZjC{qA4L{^JYgPGfcW7n(cy;K|wp ztx4%!&u9Pn=<~l{&hCfj{OVFsuPraUS=ClE$^X{bb4@%hR_BB0)tPqbZmeDYi)Gf% zxU==l+x4N(e;Ll3$Lb*eRq80?r9hwiPyU~H{Gd0zzpZ@R`qztBsJg8@@FV1by`BD% zgW;ToSA`$i%Wm6yck1uWvv1GWss?#2ao*0_XWy1*StjO2GTdOx5n*@lH+-61t2_N~ z_(ADEAJ+W8{w`hHYvNQcpK{iBZKwa=-^cRr?29}_zTYhZ*AML1y0_VC(fQb#vhShu zcmB40_fLs$y`Ew!`_fcIX~@{-mQ`{E=0J!2Qw>4%7bXh}?~`TO7LOOPWy4vvY>q_pdvqRvTiy z@lLrIL#&L#LdBQHX)Zc{=Gy7u$E|+wabw*8eRlcD?79S3Ht`$o{Qn^vVPK;u@PDz7pSev8ZzocQTt@ z_U~HuxbE7e0_Jm=-?KGnrykUO_}Nm_uK2t4c6*&7al7Vb^L-6w*|$Ev66MRe-n=^L z!?x94A1u1^rTE``I3pkbd9|6%?fUPNPd{1zD)3fNV`;(u{~;9&VYwT`F5K7De&8C} zUe8h|^PzN8N7#J#ds^(8y5E=n5Q#tK_VdBoOXj&d<&TOJ}H=d|&)S&CVk1=K|g1CJ$H2yP9vD&-7;BR)&CPpWAwD6MsD~c~@~~|0Bh7 zXX1WL`Xwo#(foG9SErgM*IO*a;){Z|1vLgWMzN+nxbj~=o^Sp{Wv$S!H!mLOI)47z zzj!Gd6$^fT?pMCG|1wrj}1s3~y#=qZ_-A7_@{5r6vcX6l?*Y|-i|=vlc+bB-^ovuJTeD%X^ge?ZzuGxBJ}yx8%;?Xa5})A&}Fk`r+RO5j&1!KN*%J+6#PhZm^e{ z_dTN3Ej2r)aqfq!|CYZOd&Df>p!wG)NNR7G&A*s}*OCX?#4_*fD@;3+aOdwtsf}kY z-<(tH_c2tA;bpRTrsXbHhf|D#H#M2Bh01)`ZGUHeOoR92AM^j*`>yR|^Fu?qC{ake zA^m-P`{u*%^Ti*vZ&)2R_pEfDwM@LSU&BGxgA)s;RXx$F*vY%)_~EMygcIyJ%VJEX zoQ-chUn5(m_xrlR&iiZ@cFPW|*4Mgnm$&;(wmj$Z=7Qa8+rGAUUjFo>Ff1?Rf_c5tvNHN=&ohDet72J z`oqx=_i@Dki*NYLZt(K4YIXACJqvRVetA%?9AkOl=z)_T3SMY#n9nABy*BZ*4Bd8)kuBtOwWydaQ5$>UiAQXdi0z;dX$|j+&oyesg|2 z_Sx#?(<@d-PyRjq;dG~ep6H|C4fX8%ew6Msz3BLT_oulJ#O-sAA6VP``+(Dfe;e#M z=1Ctc3w?2^j6GG-e7blo>%aJ8{~OJj4N5 zPhY69-Tup*+s`e2cb{FW!_am-#(m1K8wuUjcbF8)7;dZCE-Sni$DN)ZeqiPu#b)(? z;-{vU6)Y*#*v}LH;{E=(j{4n>9nufi?BBe0_2Xs9`zy3L*YnsEJWg;dFw^1UyW^fO z|6px{eN!~k{GVDfs(aq`?Eie>pl;*dg5OKqa;qn7jL5w^^^a7@1|0?|5pCXEIgB6f z%i6Nc`0e~`m1~>DkIPG#_p|c1IX>0<;~O~dNBPxVlO8|)TOOx;#Qs1Z|A*AOMm@_- z=j;7Z`?W{?j#0&nIwzZ=Zh_}{ayD}^&Q^N0%D1#L|L4i$&Iz|?ep0&T$K4P4Th}*g z7g{g$^OXKR`$>z0X#EliPL*r#HJ^$(I6ak``DH)DiN6Oolx{yP@#@Y0^K!aJHowp2 zj!TJP+%y0G_3%U76CXr&-u;n0cUyFL@~zhUeKqF}i!$x8`VdjU@vd;gV`J9ehsvIo zI_-Jm`yuDV`H1|?xs7pc($lWb<+lH8Gwq>{hy&tXXF1ZPa57Ixcra(PVr~@v=cl3`%RGkP&JSN5_#+}eq58pe#r(hOJ0`KL=ZHJ@>w;9EREYWE zV#{d%a#;@DCpv!I{>+yjosU1XiQ&U__2#hJ)P(Nc|0Nl&>o(kB-?TP4_ISsK{ak9> zne{{;G41$LU-N3ITlD>94&QPsCcICz7k%_7TB<~C(KFsXybEG~xSWsuarQ+q_ng1~ zJ~@8Kp3=;|ooiXC;fL0Iu8*&_A7WWAHe*TKr_*a5y|<8B$7Un+?{&f}ecg`x$BrwQ zpLn^tJGn6C^Xy5i41TLFZ+zI8bi4T5xo7*knWr4@d~x`d^aJ^sclP`I+Y(}aKwoj* zf9Hy(zo+M&oPRy)+p>O7^_DjBh18lxBe+iRlFF&X|-Mv=y zo^^rXp2YXRooe{Rk~wBCd#hMb_J87ju}5Em7lbbK8_yg9 zZ?@m+F?{y$Z1M4bE*<)NIqv=4uO(7(|H6L$cW3uWWEFAmY4p#Ne4QJzfqOrw$z1$9 z_vL%Jg4quwKTP>k%qPtBGV|uQLx*?NfA#~pUAm}`vsi> z$N!rDVc)0E`SE=C;n`n`Y^Kbd;O#fr^2f`!r{}95xgF1){`B{2veQJbyUt!1{xS-d^BN{Pbs{fc@Qj%M2bT z{_bEuSgm@GEkDXe>eIu=K_7n{T6frdc(~}J2v<}HM_5|Ip@c||LJpCx*IfiwPd|a3uwuIYt8-6FrMpc z$33YlH=h-Y<>^1L<9{!3pq_Je*`J`}wQTF$Ug*2cZjOjNZL>D<*cJ7An<};MDBHhG zQj}xNzx&%l=h-xwb^F0-*dx|&u&hA)-Cw31iZ(4o& zzq(-Mm%kerZiH`Nf3W)Z`MF!f+>#=C+<$XblCjF+e5X78>Y`^`ttNvg^&2U&YGT@NBbTBy2}l?l|)2;^GIb+6CMR@pnGNf1bw`zhdF_ zA9@E4r)lR&zvEpMCDRgUv^^IezG;mFKm{ z-aA}xZe!UO&a)}k=D18>@$WT%*0ywh{OQi|v8$S+Fyx%nlNZG;{oZwq+%vBq`p>ar zBUAX_OUD^M-0p9=&ThZ!=x(N*%8{8;CQ`U7vBVt%^JxRFqFLwtL9ywZ``daJ+7yg#{qk7S)J%?XqOt&j^9IUkWwK@l#_%bSJd16P z+@FWyhu^PwxXHHfJeS4hc;57oACo=y%*oH$bL_zC=GA7~#MYdi{>Aa*6gOpgeyh38 zEM{u$wyPgp`sBDlo};^oSz*s>p-m6hC?5WO<-#7e^AGsNna;Ph9+01>z_PEYB52$0 z2RCY;Nb(Uv2xDTu@e``ls)gRYipVU+(z0^ke#mmh6x_ zH|P4nl%0IHcrQHa`yy4rkT1AyS%NjY`|VXn8T-E;{l9g=wz&na5A*h{Vz?bwF)zWo zW}@Um=?Ilh%*DLz{el4hSdc2vX{9tIK zY`fDRX9fQk-iv#GWTiZ3`u>3bf9l8LhmMXh95Q^#R-Dpu_VxeFo%TF;)`SZ@)xYdc_;|T_JLk5;Pj)b$o6_rjN@V%u496$m+EqNrfCL*1s532iLBmoHr5I{zl$ z*yrE=`aJ^st9j-qI_y7Q`}>Eh)1QO06AgDSKQ-lQ^7FI^mOq=41rKak``hZ=zhjEq zH!)C;^tvvvS*ktvSAgPfc0JAebtXD&2~9_yv(J(K{+Puq;K>)s53T$h z|E_8}*@(Sc-v9gC&-Dk-%f$0P=Gorgv-Z{EJwgrL4Mo-mH2h73Ey5Q4oxa@DG0d+%;CkTbec?x& z?~6YY+EJ@uUNlD|u6BlqJ;R~+wxiSe?y~V;eE6BEVz)w7a^0f0F$enotZlg59)7^- zx#@-DS1Ys(m)%|(&hc^2^n=C9ALex2dLj{4dazYWk7?S2#;dok1-{KH3}SgaNBWz( z+5Sxo9+H3E%wAb@N8h0nE6d2= z`tRu82cnlgXm=LgUAHG~1IG@rdHfTTJ$|#9#BJRvB*$}Px=ZTK75`=Uj^B*GediRD z!g0YzUl;D%zTv3t9)=9-73)floq2!r^@E=Gj_Xpo_k=K@%Y4&=Z5|;XJ&Zx(d*S`7LHDTV5)*dUK-skxz$7jFs_v>ozLZzBz#|jUh{Qt8+ z^}(sto@Gn!-|m;#qrTwcRjCr!8iDhfDSq*f=gmI#Uh=7!!>xlt`B!ro3mliVGZf38 zS+!sC?>-5=|9jusohr=qX8j|2V7^q{7jLIOzn>>6?G)VbCt``s!l&#T9(}ZB+CGmZ zoTZQX^M$3wj}Fg|T(T{>z9O0-pL35?ouNVBez60$8O~R0{t0@*_4~$MzT~2>l?yiC z-E=Z?_ndtNFVt_wM>0I%DBD%Ko8d(5hl@ca4`=`QW4%M?x6O|W)7OS9@MQg9{;VSV z0kb&wN6m^`f8NC=`1WagT|OCqY(>G3|Ll2<-p_x$W~_|uyXBqGZEsndD8>7CF4O<) zhq2#9ANBl=`m#{@a&%tnbeX*@by`)HoDRRrUu%Bo>n!eEr|Vg>y;SvW@vqY_xhH#n z3>RaFsxta-Qfj=5|($Vg5byd5jebb1G|JHuA2DSg@37qUaAc8=W8T{151J?qj`w z{737V{ZlmkGc9uWiN0I-cx~f@&x{jyUP(HBYiEH;ym;HmkMnux!+jdTq~+_=2t5}^CNxc4^z+IG!t9A^**?~=sWsLo4es!yWvvV|!;m zSX0R!Bbu?Lu)eoP(qg%O3GcsmyFEL;&(k~Nxo)+LPOIGw=?4eTrT;biBj5Sj)8vHc zaYp$Ye~w;mIS|fne#>e_?BXAGA9g%7Q{`sZ^VIaNw4BAZy}9di?TTfV$nD?H^*#FZ zllx^4x@uQ2sUPre`1k93%a0rLIX`Mt+}#q@>1|!t!@T|rw{?rflO#pHUrc+}P2RUK zfc1;aZ7!j^&%U%e+WyBEtzuL{sq+v-vV`gW}l5;rN8C%q4?P~$4-RRmL1nno!bR!k{51l>VLYT zmNDZ_;$H6G%Z=_bF{E!@d-h;VaTur6uRZUp6!#Ud*~|!e_jk8e)Dzjz2krYC{)c>z z`|&*3K7sLpM3{WgO2y+Q`|KaM?T~8NADq8eaR1uch0S9Bw|#0v}-dL-_N_toA=%C>l~TC&!OY*i@ycGo_c3`l)V)#u>58JVDIni8_(p< z7fm~@b0^0yUPAT3d#N2;{%tsa$e*>I<@@d6; z-uKz()4$J|Y5Cdqe(|$+=ic1iU4A}1i?!zYy%NhmmKzi;89#AmVj`3GB@<~Pm`ddn~O)x17VeqUc%i~pJ52Q**0X3I(}t9!fjNOFXIET1@slTXFM zgv(D)h--h{SDvLa;kC?@zdRPs8@yf@uiaGP{=Rcva;Y^Z_iZQd+aH}CugZ)mH)Am5 z^sW^U6z81&OY6zyhui<{`0?Jb{?>ja@6WNhCk`Y}J9L-De(9C_2mLQi%P~(ma{t22 zK6$_GZST*0|GP2h_PwJw*!THK9EzB_L85)*!o_M2GoABWdCzWs$aCC0|Du)D3c1f} zOXG^KTrljeR-DsX`6KhNv4L7#&>Eh@CTDKwJ(TQ~wYt^!T)^qJkJ)}+hgZ!U=^=-X zY-{)=^W*Ht$PGWXKh=8NAn>d`Cr$Fe<#Ru_9`N6{;)=ZNp{Dfpj4^*+>M+KM?D%e3 z&=YT(m%R8+=*!aQcDph(6Ak~lJ}$~-uG#u=n)g(zZ$&@;+SWYE+f?&}xq$sJvniXv z>9B&+&u!1iZu9<_s_jhq<8IQoWQr_Mx|Hp$q#(DIq$hVY}zmT z^M)sV-M$ZXJ323X{7`HEBIL)T`}xvxpRMCL!&e?|+LAC!hj-Fm zH?G;a&6TOeUOFX99{&B^>m|#V&iujY;IdOp72*FM*=ugSuiVZv;qityESB*_wpW>! zi0S9PVw&K!Q~Ie92M?R)orpJ%8-&sX0<76f)0rn!EmGOj!+v?;h9CcbNET$3BwF)N zsSNupS#b71H-Ffxk{zCBz31EhS*cKew?LL*`|jA4OYJ4%eRRe!jXP4TAXqu4!6 z>$)4}bH%Z2TDeKKM)q^+4!h*#?V^%CjyyjuAJCQ4+BQ8aXw40=D3v_{Ix^wxaXxzt zH(s^aW-Z+?V~J^vfi16{?p(I+|7M@N>(A(%>(32jD{GMsua)z2t$$X#;Y7Z%%Ch|n z`CdmKN@}^znj^X^!E1f|-Rb^$LJ#gTe|NNCI>%D;-c0^@X0H4`{xb*d4;`(q*lnV* z<45vAYgWCZuNl)8Oj5XJr(wHQmcPsC*%5C z_9a5kj&HSO*0<-$o5!5aJddw_MX<)7Qg*AjCELC%Z#HIPwce|=_gRVb^<6DTD|bGc zFt@G!I_sW?Nk4WzxY}&me&*E_cDvA(kN+p_`7!zZ+V`PZ-?>+cDQt~!@6KWfsrSgT zVe#!f`O)cd&dnWpc?>^X3T@SX%Cvuxu#wo!oAO^}M+Cb$o7I12cuMb+xgFIZ z?N#$2jn#kBWoG}JhsoXl9)D^1&pM%M6K}=+8m>D&shS(+>&Hn(FfZ48-+Xxn{{iN& zrXP;&lG0O&X8q+gVf98{IgRi|E!!k#H2W5mnw`4);Q7?^cO~B~+^4T&cKGt*IF@I< z&Bg_WF+cw|p4Tk>-^{RZzup2r{a>Q~Y|<6A72>j&r5&Uv2)tL=aqjsO=ZE*?qO3mR`Ny>4JIL%r(Y<=KCl ze;+PnxPGk1dWP*P(c;ySw^nOz)Y_rj`dZP?-e;wHrug%loX4Vd+UGOwd&TQzyQQeZ zw5Rgw;;Fm-rV9R8S==5Hl)UWN?E4HZG6s3hFaIjkF;A%aq|6_1=j5MXJ2!kd&>A#5 z_@MuN^R=O`zGt)bOFQgmEQ$H@zTtht@`u7zA)GUwyC0JNwDkP!{qLPZ?lH5SKcx0< z{{EF$w)?dnG|2ywbp8I1@I#Nb{7Kj#Dam4Sxt&Eu-Rj5+xrVJQ=d9+kq%-y1sBHo)8Xm%Zgw?cSs_ zEa~Jbh>@7Y_<3i6)`yrMPi{W_BrvCJKhL^%|4eIc?U0hYzNYPR|7y174;Mf7vr%7v zmwnx}WB#)~Fa5?dr%vup(2wqd&oUN=gR2(Hp8LG&?}Il2`{G{69-Nwb>amKd*oXT} z_s;J7=d<+Q502{zmu}YnJMC5bIGTq)X?E-8MDsn8`;?m3v;0ym+!JXKT>RzW>l17X zthdkkICIZK!#E*L1B(@m{Qm#TS3XexegA+`J>#FA*Fh0q^jm}Xm>*hR{WrL+{7l=Q z%EuQNnD2F#ADH{*TiC0q)e|4?S)8Q$rWp^Z?%Zy(PACCO~7Cf~|xaQTI zD@N=e;~2UBoqylFU#so7zPvEhgCG3j*@_wN zzkYPIuOjhrqqSD)k9CuOUcdPLkl`1(8!Rzjt2un;?@p{$ox>T?H@hLk^}BGlbjNqb z9oHTj`%CYCc=S?%WIg{Mo)7+U+~Ow>y{-sp_&>M)#g9-1KCYhfC;s6u=lY}#Fvj;e-=zqsAt{Z`QZc8 z;qS34uav7jSlzI7!-M@ybzx;`z(JxW8CS-?=0%Flj5sF!ea3uciWk?M4gE0pujU8M&-IB9_w)F@u3mcN^bN&x zvp)E>zMmD(wtUI$n0r-{I%3;*7~bI%^SQ&3;G^HV-s09j_27!Km-F|tiL=jR`uNc@ z{TH);Q+(?I^|Xx!)*J6{-{`g{{6OTv_wuW*Of${9VfRgQX-GP7`=;Il|66StjvaaQYQLs~Y`x@%3y+09CEHC}!1m~&KC_>tOx}gy%R6tD zzJ9R0aeZ_A!vm!Tf1CCwo;3fzGAMgG-|ZNeggsL)&5ej&leguXZ+6Rcr#T&19^J|NmP%h|c(CZ!-X>vHTPNkI8-5%VXy`6qQ*Bpsy>iwE+dPIj-v$2g z{g2NNdlmUy>+6j9nqN=8zVT?j)jiI`zaP&1AiOquPjJ-fhUjZ9yAq2FC1WbeZDKh8 zowz*J>WR(|?wj}d_jUJunUM2CJ3;Wz_5OpJA9dO0GjQb}5I8-|7dJd! z_rY%CQLk&y76ZmG_y*JbNUrPh02|0uiR^*Oc!xN z=2rU}rr&&fUb@}q_3vPOzwNu>j!Qo#erWsT^y5m2Qq7^e7Tj%oe^_=n1}E%Mn#ZX< zWj?2WiJtkRdd@w9c8m}Ivu{~B<)5jM;~E<~n}2@I>m}oO_%wH(K`G{p8+3WJKNq-rwKbD7xA?`oe{2atd}*;F5VLz z<(fJ*@(sp}xmthUzp6ZA_{4(mCC~eVzFvQi_kIZ9SK#yL@#+nMM|%T>pGp=y{eS(R zoL=AUwo3PN0Ut_C|8*B=unw->7KQ23Cs;#f@#PsdFwU*DvCTcyPrFDYf8EoEjq zayFN_!0SjYLy)}3=Zc5z-rU9Qv)9GTF{TG6C|_&)^uu_{ueo13H$1yzn_s@8kHw5h z|GsqDvoBd|6&-hQR-A5sC?#dJ_~@g3pMMriQ%c!<%wSUM1c~DE9}Wd#IZX2={IuBf zL}=-~Z{L!{rrGlUoA-0&QL~NHES~M_mzlvK(|mg(ufv&neslg`Gk>(?b-%TaEtEZ`UhQ_XF1%udltrzGSWa=b2uzKZDvhYsz+Wm{k^(EeKGV$J*TBmF2_Pe~alwX|6}P zIfKc`T|9FgW!qon9?Ld1KNFv^@Xl)^7XRZ5cD0pC$Mp7wA74NFs+H6VxxXhImW#~R zV}6+N@yPp?{q6ArI<}Px?-%($TeySoF`u2o%Ja1%d2@FcWb_z19(2umU;Mz@d5*fR z->UDr%=0;#PdlvmXVB+d#VU8t=trx)bc{koqS)QiKOenpdG_Zy_yv4OIvxA)jDzCx zzw-{LcZE)GEclyfb!|d5Pl{q(pFHcWc?Ury{E`tLuZ*e|i9*S{YKYyWA{UFGrdm`{z<9_z&BuS^!g1@6b@bG+lYE+<q`0ecDY!34?R<---^j=Su{!ro< zlFw}Z#G$4{@{s@W1yvl=*thHdiCgI(Bm7F`><;nwoaS9ORhhbrmYxpqkY#^W@p$Fr z1VOtGJU{$?ihDhjeOEN)`aYgI$q!KuZhULra9+=S@c&MK*MY(-;)|{{E6_)V9cm(-a2We z-1n3pnNLs0+ig2&%(y$*&)NIX4Q>&YJ57!Wu7{3p>znc}hapMbb=Hd+o_WUimK1i+ zjMlssV8hG3pXCqX{Qk--#t(W9XrB*#wW=ka*XN+$ zi}&^%<~mKRtL48N=-$4+>dK_q5q+z!T>0r7FO(+AKHZM@^C|WR*Cn1m*`59L_k*a0 z-0iYL%=f+XTK*?A#5aV9^*+|%pV};ArOta@afzDmuFZ@EXOmtruQ*%r`A$rK*QU8s zc5j;cYxVsD_pcqwytwSta{h+shk3mBCgx{MOgh`qp3dU8&w1tYe-i&%`Rsfjt>*}u zab+=#cZaA{j`A`j?M>!A6dchy>biHi(>P!n{ z{yabMS6Y@mY{uI!20Ppj+&`oqc1MKww3CJHKK2|Yu9%g^EVLHm5JFo3oA-*rrn9i)0N!6LDfb@>dUmYNpd?9 z7qS=0+sA$G+&{sg=~j@;l_wUeVoBR1^NpXCG5-1T#_Y$GN|l;lOXe@Vs5l||(SK&0 zw(z5of41bze(q%5m)@uyr|@H|^n=M(M?PMe%l5J58Lv5Gf5fUQ{^w2`*7kyDe{!JAW6y{A|`e^ba)ad>IFoW8{DSw%No!S2fnJ_&eO)3=I5(lr57XrvC1HI-?tqVAA+|DH5}>h)xNpg#H8bAT*v1x z)-fKxZpv`(-&S$w@v-C&zq-~=?|;qe+qFMIAY!Gk`8Np;o{i@cV{bBqJomB6NKy+w zv^p)|?(H<2&gkf(aCYs!i? zC%ey^-KyxluQ7er%<#}dUzie(35jiqEzqBHs*RiV{%38At32uKHK&~_%72^O(W_X0 zH$mlB!zSTBHJ5+IGcsTPw7D_;=7q(o!fO9?KJ+Ijcm0>2u*v4Nz>lRzFSmCbsBNG9 zU?0PWui*tJ1??wJ+^|yLO)1aatK5viQDJ~A%DuOWBDA}TGa=>@3*hJ_aJ|cY5 z-&%8~f66bmKYw`iWxi;7mj%2smT&HEZ40-4c=t_NGdG`h_mPX2^Evl3p0R%Db4q^x z)PK(#-`nynT3pj`=kKJTEk(^!m~UQMA9_f&uFk{tb<7S|{oZS!LdQ4xmFLtCF*`lV zG(W27#c7E3d3UNOF73N2%zxItR(H;+e=~#355IiA>(t~2PTPa|!?U>OhnI7I zKK{9Nzd(idpD%B27VtNo4*wvx``;DyL-)n@v%YEj-2R>Qz<=%+;+pRg!zWDm&{o&{ zA!9;|cdh8BB#Z7(Wk0M`Q!N?t9KOzRKHlM7$AA2m^W$AVcAcBrEV9GH)?mNRtIm+x zdrE5h2c}HcN<1o4qxmr?>7mYc$@ORN@a)_zv97?L!7uf{b!pAZmGbY;X zXFYyb{Nd{UDNpZyn615M-J z^TzDmcXw`H^6#*!GZFooLUB53pC%S8{8?e~?VNG!MtOnbj~|AsyYERb5HM%5jy2x# zb(8s&Bj(|9K@Y0fZ@gm!wN8B2m3%mQCfv)0Q(MKYYdN3Ir>EMlA6%PsXKwBJ2l1cm z*v$E(>|f8;sQ+DVC-$z7eSXdF`PX9Fm(Sz>qMf+wli`hr_77!C&F+Lr$eotaE4!U5 zzSOShjzmuQA6Eu_A@{7uWp-A**O&6QrL2A&7`v&}Y!Bbls}t1s=qZF+K9eno;pJb$ zy5Znm$-bAToMd*ck$G_AT+S*SKkdE z{=dEIWh-TO@X>Xqo%%w5y8ll7^~tf#x8cY}Ew$+RE$z96N1G~*=CD>U#i;!7J+buc zRquF?`gz4S8hGxVuZ#Y(ld-!hhx$?uj zG5`KPIJnlBJO6^6!kw^L{WmP#YB;C=HhuA9b@%oIu1)n{jDIh`)Bjg=&ZamchFeF! ztqlF7UYKK0*7<0K@8e(IH@?hC_$_)QV?%7^ZR>++62Fryc5ir6^;<%nyVv|@fmF8f zqz&zcH`>b9)?YGX`1wg+R%GEll{GV%byVZLbWZiRc-HOo?Sd;yS>{=c^S6-x8?q+oV(dR#rgR`HfK)Z+fJti-m8Du`%n1cnN!;z zs5dWb+RpXw!*8~|x9_oT=d8Ps!ueL{JXi5@Jx*h_vLdaALGqL5@AX=F`N0~`u1_LA zTn{*&mr{OPbu^;lVMuVTj?MHHF>PYmE&1nj`wpW=#38L3hcL zBToNwj~f@J>^y9}{h?dJ{mD~)S=1Pn{*0T=TOJhuvta4DmhSCkw+Wa?8 z#Au(129k3BtR9>{7ye2#U9ikzkz*CBh0fo&G0{au zkFWmo&JXuRv-ch=khkp3#mP{ zV%_bX*D`IUuS-_7?sMLi^8Aw9YS5pj|=Xmtlz5NzMjpFb^fJqf903Pv2)+d{IJsOX=I~wdHAbG_D!>2^Q`aC*U^v? zU$50awM3uc;EaMDB4?H?3w{{j1!#t0?H0`qGIE<&g~jsjVc!3d%XXlo5lW?`W?;P z*V2-Ttj^p`E|bV%;=8G0!n?w5CeJIDG(U7Lusz_eC+c2dzVGSV z$BN#09XswC9Tf174XR&rrEsNOw{_y+r7#W|oM)Pl`T{D0Vr1#J@E+g0T(^qcc@ zYt#k-`^!5-=X{uwDyMHVJNLY-+cl-W+lMFCOVo7L|C{$A`i<>_;CFp(+J9uzSp28I zXOFjB(_sB}s@JO-7af~t^v5#&H{vMYP%U-)%bG^+>wPtAgSO{z*E@Yt(q*>X@$8hN zg5JK3^LPsP*Tn0VoqwhCXVX)UA6c1_IRS-z?=4+cKK)RjweyqDx#9=%)?XzW+Qa?- zH%5EcIEcCN-`LlGuDM~>(-ZD@R$N+Z%&;uv0pkLDpKW??t-{_gP80G!)b%i&eV+F@ zUo#>5$!ooLw_IQL$B}3C!`$avtRKw3`QVwJe`CDBo2o@Y`i=fO)eo!;|08`@J4~Zg ze$Jz(yKZcmDg7zm zdjA!f;N!C!?qB<`Y|s0$4Lc70+$8&8&A~$twX;NZ{`_dGSGUPfbSXc$v~^?mMuU0v z9LxXjXPzHW-d5aZyy3&+$Odk{hV`5e)_4UZ-f(>E+njZ%R`AJV^@3QAy)S3I2-&*6 z`SHu6=UaJSt!ligyFMiA>f%*yEZ?4<;#{8m`Qy5u#tb&Glh-~@@$SE{LPh5`W9U=w zL#sD!|GHJu|B={a>ocxdKAh*LeO^_^sqc8^bzS%=Zm{(~MZpsRhZ; zx#pVmRI5FC?0tR8qOVyu(xi77KVE&zxvY&la&h;R=@|iR3J;gh@PD@GY*zU`rh>U9 znTL|oG*sucJe8U*a#-b&XW@=*TW#ZdoFBcAntxKybXiM#?#88lG3@Iq#GZWkJmr^4 zOv=x8{T6$UNAmTrpUhI)F0uZ|O-25cPl-D;ubT1)==$vY#apmS>@!Eqw*5yR|7TQr zcVpTn54)g8{t98`W(>u}N8`78O_r^4n7JY7ajTqzT3zhX!#kGDaDKd&TmMVN!W~Oy z6empD9}p?-|4I0i@Ue$?#qA3>2kAG>=YGer-A7I~TyVzXg-7~N2d1|i`nW@mvD4Z7 zfND;D!`TaNd#31ac*7g7DpPhO;e*Hnn>SXB9mQ&~2Hbf{KCx`fW#tLwW(*eYHHVy^ z_ask{>sng;%1Z9&^3zv-I{&$_sCaQz^oI%Tg_lw_+@+R3PPEr9yI(!w<49Q9p2Wso~SD?)~oXD|BD*>|fu%`>~1a^jC!| zo?dJ@oq97%DSFpd#t$=@>}JM%KlosqO!MnI$K0Pwpm3J_?zx`J={$YcTxd0Zvd>`0 zls7fEEW}>gJywlAba83Q>r2ZXf7o@pVlwaXhr3SR+d4OS;ybHrY3>yscOWsBJ$EwI%{#o)&w(wS?y4klF%cT`+ z6E|zBi%ed8~MWyF0gw5)7iAN^o?&GGm()}`zBe-Zs~vVL{r-@`uA44Q1^;(60be-tEN@>-pj z%it8hn@0qA?)IWLUv&~DJdV@V_h-M*d@fVa^`w2f?*_Y*(hZMJ zFNiSq=k!&Wp7#2cT;IX3uL7UN^&Kqz+yUiX-7C}n<(1&oy)6e*zj9RTA6L3-cPhtG zVwXw(hVL&TLbmstL<_X(omGBgYbAE|t@2y3mZM8+r`&CNTzJ=R)2*iD!o5{fs`Zbn z+^yYmcap)*H4?4gJ1cJMKR9OB7|$xh`hW8U{f6fM{1cWGyo>Q?I_F?vc73L&_!ZB4 z3?a|w`%7J4?LM>GlI>+$b~S%uL8g4_wg(nVX0Lr~+p^I6x5rJV;|q7?yuIcnv8zN{ zH~M7+qCKBn@$8Vv!)K=)xnhK$-}rN>BJ*9)N3%lyBl}tHcFNZa3Vxr=F2hm2sOCrl z&%eiu$|rt$!u!Zzfu22I$Sbp%Uw9opZg?gvIm@%};MYo&%SzIWLtvjM{`=-T9>4qI^yx3hd7J<6js-|+E zCKx#XyxJ;0*;)9w%nZZIGe?cZ*OkZ|eKzIObZ%?$Jkk7D-ioUKGz&PL4;?qt_!8Ri zul!W=y;skb|4Y>IGOXtLXLy0nTye&S6>T5hPp#oe{>c9NTgST`hE-}7Ul|o29+goq zeGvNe__5eW;?3>nJSk%~{^Lb?G5rUhTEz4pJacraMd7?9!SOvRI##vL_#`g}|C9xtqy`{(wP>xZ)D{ZEsoALRJ3_wL(fW5#`te}6j?JKZs1n&U41 zRncv}N#*Tk47L_0MIthqN+mhW1@r$@tpO#4dp2o4Zclk#WF94KF$v#UklfGsMD?R@ zqqm{=k1Nxi%o^t#*&miUbIAIQ;r@pG{@-er*Z%8f|G#5Lf$|>}fqzpsZSvT8O5k)y z^OO85H*1$#OE=uK{LviTKB?-^>jT}Dj2?fIJ{TMoTIT#p+xMB_>B_Y}Gn|)CxqM@% z`}Um$zBl+5TFrd&B=^xgrTaD(nr!#xJ58_QdHln44&x7|J6boE>)Z@nnQoVEkn}tH zrpHPC*M6(K_O%(Rel<=^xOF_-xJ{&E>k^J{JDiykPdjSq$@?%vo>!Gm~)L_>DTe^7PC@nGQ&xvrDoNP2Rxve0&la_{4aCBgA4RAls=H)hBjSDO1PNhPsR zve`Y^QttXn`;a1?b?uK{KDJPMxy#pQuEEZpgO`sN#jJZ>wz0I&w@TsJF3F|$SpSPY z2_n|h!A1wvXg%%|`OP9^ynltM|q(Xo{ zDE?NNH_J@cOgwfbGRx-4B&py-hquiL5>MlCmzmw1?ssR-jh#h}b2fVXXr5_3p`~PxQm(CQt5Xe{+tlp-9nJ z<147#|Hd%Uz*(`dcUyhH2`!-II%{Qh)?68VsFR_=|;@-b}> zN-})5n=x2yT-Yiv62pJ=aG^~5>xDC9n!g0-NV!|=TJld|Wpbb`3-|F06`pNLVGoZb zJUe2Vc>L4Z&g?_ScKU=ad90*r_vuYn|B;O~obPxGzH)8vypzkn^jp2nAKwqm1-1vQ zwi`Nzm7WO|*!Ye2)it&Qru#23KC%kiH2DL#f^(Le+#@;5U23}WH?5pk-4l0OJU_HF zLbc|Vx8m#r?(;RfMVzzbkA#16t>t{e^WZUSeFR=d5+D& zifL)H^QPjt3$9eW2tQQvGbbGUtInWK)J-O-PR zy_4Qc?BSHSJ(ZWiFE(PLnyt*)*RGF!EKJ=?Y&2)6tvh$pSmIg7{FtYQ&b3A#o&77w zqqCkX=Fo%>8+B7x9%lbIwI(n=OY&v5WzF*c{nKxI>NbczPuQXT;M#YstqD?ZO81v_ zRB+!_zxsHhI^RNVX@=@YnUhL0?_XcIg2 zeBtjQl`Fd%e+7AJ`mfwz+4n@fbl-`1xA^)0dxOl^s<@|BepuLS&uTP})qwx&>yr|z zrzF3ZLHLsZqvAKeg@m++U} zcx9&fC(|j?5BVDFS--Pw5WT~Yu<@Vag#%~aMxI)G`^4E>tH9%WrGLdE&Xjnu3vN3) z<*cOeXSJj9ll`Tl)$`sMCY*BSx^w4ehLC+~-K(y}eLI&$cs#4p71*c3Yv;eubLD1T z@gHyZEf4x_$7ROw-Q&PCvy=IKkB_)C|C#+uea&8L>4t+rkLT6R^3c2MetMcrcgf95 zd#4ucD3RBVF4DP_>is?J(8Z0L>W_AuA%dvEhQp3VMmWPz;1RW^kK`pf6KOt(;B%;Wa}wX!3F zCaPUb(e9mo>zU!{{6|6aYHk%hnexZ`#uag8)tDUbz@jAO{da!EehLiNdC}fwVt-}2 zv)8{3x(i~M&Dnn4%3sZH_cvjO;sxgq#~q{(_hquh@-p|I{A{ z`7K-Ve$VP4Z+S-PhNnlrrEIl&ZYKHiSEJc}UWY#Bcil8uA3}%U3)&?SSk_pTcLiE{wr_Y*I!!isMhcNwBotfC)+JQPlbBLeqUgh5L5rk zSm!!pkMHWOTzprVZL3P<<(zNl+?vbVPvZeg zu$V`#A74-UmAtgi`)fpulz+vpCI3Q#jvudjrSx;bwk!Jt`Ztu$JS?90YTt%9_lbX^ zYW&Y@mfopMD`G#umLR=DaYC@+&+P>ThpzRi#P9NTe|7gJ!-JL&o!xU4`doi4Nl?0f z!^yB%vfJ~qrP|9Y;>w)erzLFcrX?56y?x|`%;eXGGk!(%dGE>-j#iI}J@)9;Hn_M*Tq&8 zRG=$Ho-7pb;Zl3*{m8r4FzC?HZ8s)yPp|NVHdU0~+mvaxU9mec|4H|+pwm{hisdKc z*V(+WZI+c09iRUGwYS`_rw(bV9h!Gv%<_OZ$W^iEuukI!CHl%*isv z2Q)upxvX>XzX>`|54gyw-4W=k@zIMBPJd?|vVOMlFYnNzBK5x5kBuL%2zt-0RE}49 z-P2z)X-Z9Syll`X{#^OSdhRP%!~6BG$*-wiboE^h zLxEI*QgZjx1dg`%OnK}6EIY8Y^W@a$Y9E82u|J+rH073i>`x{8WjiYBv-X~|d39&@ zm)ujOM-5AEYc2iv*2|V->AWu?7R&|pJ8Q2@GV){Bsa<%yYP$D!GX^{3rv(N-4)o?c zFLYliAU>-wf6g@R^GCGI?S4(Hneabk6QBIDhzsR?N=K)h7XLWCCMe!d^XFMv?SA!z z|M&0TQd7L(xIL>GLkXM1r=vT6yb#mLTxhQMO-x5VDtGf;8#4w=wSYrMKrt&`>3L&g zO=gW=4yX9-ps9C$oY<^wr|~?<=F0RSueuGo>6wSrk1GFMw$Cah?LYs4-1`47Hzg@l z>xO0>&&=SS8{WCOO;z`stJvXL%+oCLnxuDcW?bMoUCpqp>D8en5=9?;8+D&H-b%83 zTyf};5vyKeLCmF<`mHKHvC9rTld!V87A$^}ee2S1trab2Q~B&$PW~;J`>WXNUH@y# z+M=9ylV9IaYdyEI{nzxmwO3?UAAb4p2@0rL~4qQ%o3MBie=w-l6~899n0s_KTrAd;op>9 zPqd%j@s3fQKPmQ=*~$EO5nm-#_;&er?OHtl>xbF@`w#zT`LId;k4ypg4!495oro

{ck~y5=%=yt}k=BueZFF%AXp0cTVuWilU32McffG~v}3{hyCwVoG__#qtFI z1pbIrm|FW?I)~whQva@v85MsYpU-%6V{&(e+V9ojZy60>oe|KViyQsxQj zxt9)3JT$pQx>`YbeasG#%`N`5nkm9RG(Vk7o}T3Kw)v0ez7_gg*IX7an*QhMsm1fO zPj1hfygQDa{iJ(FpX`Q=jn5}t>NxDbBO%~+vi=TPgL^6-$5kFf8lc_%jB_-Pyz+Q? zj_p8t(2Il%sc)9NstD;ndh}z<(Ns{Q?w4n%Mfy5_F1wFU?szWWH)Ya>(wUdo6JOe` z@cV12^7DaFyS(h=-;a0YP2YU(Z;|a*|32TU4t}ZC-fc(4E7loL-gv6u+)mkl8ZXS2 zis=Pqy*zwO?Vi+OnZ5p1%^A!L!s5R!CFiuosqZUEXIAiSElF51%ZxMn(SzG+51&1m z!zKOr%*nZ*G=47F7ZUVoqLKfR&3g7P*89c#9&xvu-8J?1`pM3xDyMFUh^Z-jZe=XF zT1aeL=2PVYu?6gJtMxBhEm@_!%w)@|wOdX!%lG6LYi#)bDnO8L!;2S12}&ztc8Gki zu}eLqQ~bQc=K9n0;*aiyi`H0gzf(TTd+4tn)l7ROKW)@&e%M)dNJYhlBDO){60@LwlDp)LOZ_nxXZs+ed~GaWg$7s$6FPw9(*jZeA)2xV7zAOiM|Bh{d^ulZ8m$8ydPD3a@e(*@q?vBZBFeo6LGzw z6P>Z_b<=CEh;sirIH~#_dtBFf-ybS$zQ5e~N`LylJl^zlt3=d>j9Gh9SfA+@2rr1< zb6|$ygQ}y)+N@TJ?wNaR`<)fm(hQmxcdF@&>m4=d_n&ES`i`a2`O=>^WBvrr(Rh7M z_j~N}|5FO1HtZ2|=AJfB?|Btp%z-amXJ@{-aG`(mhvUcg@!d|mzm~V*zRIq%4tzeJ z<_JsIJ~{S&Qva?bNBf9ZGiEm~|5z++H@mA;rgZO4znRJ0)2=sV9DMY$=vr|?Q}G@R z{p`-8^JhAT!y4gBGmyQKhJgc))hZ4KgoVJSk`j2cD{)4$z4gx^)Y5I zr7N#IwO=aF9TqNLHAj2>jUR>27Da!0#gw>lqK!wc*oD3ufLwUfBMOsEpu*2gy#Lx`?*3}>`U{~zMYa4QugK#H?NF19(aBB z>nWDo5=6zs<<>8W-mpaR+BTUPFGLFVCT$kF%476F@8i~=FEoGFr<<&r9Psu68^fjC z**hjko@_i>`Q(^;eC$WZ%GJvA)M~DphKtPBdwpj0yWQt*fRdG#u3pfcD`^LnjP++S z3v)883(tvL!v15QbIcp=InKqGXWvfvAljADaQeQ@N$G|!C;j>(<{b1qzC5Goc;I&V zFX7=nBGJKiv%lPSd9(7_)u!Nxh>AICcbn3s!fwtJyllPCYtb5G_Vfn*k7u8>yBbY= zrIOFk#W{a&WOUAo6;JIXiXJCt#C{A6*D0~MGSU2#>n6_mrO&4(T}_SMxcp1K2r+LW4S&zwN6TM#F1@+)p?8#rytRW4&HvwchJfh^Jt6duyH=OS}%$UHwG2+bc4Js!t#Jb-rx$gVJh0pir z(~sAWDo&MWmsxL~&u%kMPu*5|S$K|LN;}B&C7tJ0aqBVj|NX}27Ps-4c}g#`onL=w)O-EO z`C;i@`J*>o@^b;Th$(9NGnvH==05(UWNmWppyUGXImSN?+Fn0c zf8adFlbeB0x0`R5yRb^fX0B=ay}8B=n`a;Tzi?&W$~A}C<=jhuuDmV2*X>nLe~p=_ z_V;-8_7Kam10SnCmmRnqoVND)0hx1C!*jwG&2of9Q%0c3YO#9Nx}z5#ns(n8`tT#Y zVV|;hfUo(MO6G=>rSm`El>D7<{CdVZtC|Oa!PDpOs$FQWQ+mw&gGF85rSiEOm-k$5 zdiu}loXK~wy2mHKUtzeeZRYf$^O&86M?nFRc8DW$`;V=TLhJ9nIU_au?UFCs zE13hPI?p<_an3!1eZmS`!xWEvyZW%%qU@^pvGDYqDgKjuf2}kA1}bo0_)ZGSnJQ-U zy5gjQ@Urq8A@ks9zH<*&AF!OvAMEkBtouCEelLZ7zixl&NmD1+@H#9BmtJl2ck(Vq zjr8QS%g1uMJ!6BTr^}y-o4YS#+pG^aL)M5C-~AW->_$^+?cy_YnYr!X-SY+|uRRA2 zS}?yCy3b?RlW6rr>!Wc~WtqhfGex%IS+nnE9GbJ`o98`-3s?A`d};g9&A_>_FLKT4 z@YuSFbF)5p{+s=!SLW5H`Iq`xPrvTH)Z}{kiE42I-}6)2X8M;B=0MT~D6Mhb=}};m z729uiBxTQp<9ELN$SK|yxy^OTvieEp3`cp^R40UPJQ&n%vq0xX^E<1W0;SU5&i8$P zV0nY-`%>?N%I%TGm~?|3OYU;CxZoP*_{beuGUZ=cs67lrd~?E6DIPFjS1 zoH6$p_qm;{*H^#Tx^BI-bVKOrr`C+uOifFF9&}#e7hiJ13{-4urcEk6IuGvb%ukan z4H^&pvA;a|h2Z+(6?GMd3Y2jL+P&YNkZ0*WlyDS^alP1RdJz{Iv1#GvUw^gn7x@7e!3*Csgd>=6#yU=r0d}kiUR33fiQ;{(PmXc)ui2jglw6T`? z6Q-#4SmY$L<+4YYs$YC#Z!;9uo)o$=BlZ50Tn3-cW8db@njOh1-4L4<&*8hK$gfh^ z&T!tcKS6r0zsv{K4A*B*W|mueIx_9hm#)(@-&`2un1%hEuB1HE(>?EYzf;VbS7PZY%`k_lHg03Cjj8eMcY)p8szSDTN>-nGwut3U zi@(anDe?0fc3CX>l6>$Ie}Y_|=k|oDZ(^m25*EcD_}X>0ReSr%1G|ryH}lImd2auq z{ZX5d#Vq2_t$@iNx}G@5OfFC~m{Jy3Tzq}rp9RgTN;fZFNN-M^WX4c6>&ugGSH84W zUk$T0oiLOX=dze``OX>Vy;o1CwHb6Anz+MnUX-qSA@c%t zSz#NGKg&wLSEcXn)XYBg+`{{wrkB-%bvJ^479RLmRa|u7^SN@qGY>yL5}mF8k!O#0 zjq#5aJeMD>KeArv%;L+BwsUD}F6WRtVyG$4!uv$!lNntENXYq=UK{FDrC-J z<9qZ-eoV3adz}})KK{aXnlIF9mD@pHNj^B~o`A+()y#uhH+P#nIpDG%l-Rh#^Cm;m zflW_S9;l{~kciy)W37|_G0i6C=hJ)m8{Iw>Ju}+w?{UG7F{xDm~!S| z%bM86$;tDiHu>q!p7TkqHdyZUg9(?~Sx^5wtC0RjtnbM!Z>DACId*(S1#JIW&&{j} zY0LZ=`5>J0$;Hf%na*CvG$*lt@;TPZE_*_I*6A;8PkY!lO_<@4n-ftDn%@lgbo^vo z<@ddhN|v1Yek0l|#5ydv&T=y(8GNd8-jMJy#PYSJ!9~jlRgeVTSl*e>CV$L8wr1)N z$%8i5GBvXWCKq-+IIvUovGan)J(E5w*v-E7fQ=!tFm1_XmDkr!v*spte0M9;NO76e zmaunu-u@g(Qk1AHJl;eHF;IMB;iNv%sEx(^u8L>Mn^qu`GU|(Z%T~chH<_rF7 zwqZXj*7fWDG3`5CTEFBG$ALq??@yO=UHw7o`Khl3NB*5SWW)2b|6bTh|0Vp73l2S> zBq_eb(faC4&l#uw7Ty)?ttfbDQId1)Z&7W|!zG1$G38P@MvrPd%x`WgdpE!2+T5_% z?T_@>PDC!UD_m+S&EWiO$&#Sx$a&xMPya4wHffNYE$CS<(JNf`!fxff3$CgnKQE^~ zU2wqfF8ej-u9n4#7iTxX6WuKH5y`n~4u_xRGTX!XumvCZ=z z7lW{G`&ox`Id4|ZQ7nI-;^i$x>jyN(={2s>1pwHWuoW^B$}!p1J#L%q@n17K=*; zx1OxAeLHy*;{uk;H36~nTjt%`@~>>`i4BY^l;6*Zl>JvC59ye>PF~lpbxk+okwkPd zpU)T09dR3PR=oNFv_DAm_Jqj%39Iw~CB7n1;*&X{%`JY;`#P`9 z+=?&HuAPhfB>HRV%)XY=suyw5(etP9HcWA_z1jS$ZL0a|+%hXCsR>(n_nJn&f)sg| zxhH;l*WkYFoDrxsc&_CjsLa#-c=m}q&sFp?@6og#ZpKACPo{!HmFc>M+~wE#a%l_` zzqTJ?xb3AQv%cK;p=$2@ExZh>bJZ8#*jDtjH*2~3r+*fEO==4Z92dWSGyz<@wq_j6 z3ikVG{cepab6uvM(GP=XM?jVdp4oi(;C4kh;bE1vxSfoy9Tk<~&R^^QeE`FIC zRV#eKA^*w5CFjmvS$Eqs4s216TBCZ^g>7$UNncf-?^;$jY4OiqpXAu-|G|-{@5CJz zFsV2}Nf1=dPOnkB2g=71&ZQs1AEdKHCX|(z7ZGK3f@kQL(Pd^@URQ`H0F*EA* z7yX}Holb`inuUF6U11+l9ys+wm)O6pJu^za{_^;>d9u65oUMCKF|UsPTB&ev@%B|L zc3P4ig&P@F>n^nCUOf6}JD0trdZ)9)K2^KWKWl4+^j|Odls&7$l84vaut4>GOq=yb z>6_ILmc4FMwy@?CGB{mR@%Pt~d5jBuK6XmHIKA%Xf@Rn5uh@1Y?f*r&-Zir)l*$Te z{*Bo1;pp=iorrT5cMRCo9x<;A&zUp1dmf~mnYu9Y&(t5GO_e24e{M~f^s(znqs`>P zg$tN1Ri8W7tXk5TtsKK+(|P($=>6ZiGZd09GYj$vCWik$rIN?+OcZcXYEW#63RPDKH;8=iYw zF*}@Gy7SRw$CL6~?$#V!fAtdcF;;Pn-e4{mYv3ocyr=!k2FW6ZYh z3xA{DuRFbtA(cgX6H`2o(H#o`cGZZ`RDaV>!6L5 zZr$n$lR$OfPek1pdg;JcK|Ln_bh$PQ7LV%S{Jg(kBIS3B@d!?}FVLw}>dX}mRx4$8 zIQeYy!LOEEKdp;jxwe(p;nhk-HO&Iuh;!`rMH>@XFP?3*eDX?kw*F5@o7%SDqkmO`^ z#-DkyS}AkG%0(%QpY$JOxm)qhHLG8JnXhJLkL%V45&SiG_p|z&m#<1c^ri1?=bH-} zpoV3^xhIQ_e31HVL6^5Z4r5@@Q}uLl3<2kkbR#{H5^(Mao+|Rg?9kx@7dyKJni=(0 zMLsgx{;98?7I9jb z?_S%*+wj;`XiABf-qquiO?GF7t=;!M#z;W5_tMggoXjhRE9_*B@f)q{USSe8ebL6` z#eJ@&#~->GA6VGBNuih7#=2vrIe53r9WZPX6AlwUR-LNeB@|i#E#B$g%RuLy1TOY#qbn{9AGQ;jM;E@<(a%F zyV_&F*Rw~bSjWY8$-m{`%3V<~_g0j8^mfJ%X9Vn9emvp%vU|NHcGmbWI1VLOy-^=mX3N}#f&pf?A>rfxcy4dcjwY)%a8E?+Mv5@ zg1(-t%;#8lIpyriVEc-Nvu58G zsM$~$a_MGIg=~RI+;pDv(N{OFc*nbhmtoFDCV#6L341)bK0YxL+F>H@e6O`t?(b7A z8?j3>*9+Od@Sf!VX{qMjb_w!glbUa}*!W*!J1`|7=em6J$*8igRa?uB zvR>PH!992`Z;9Q5j5T_a)3&cl4!kSvAs-IAFreuJV;1L)N3=G(%0Z2 zf9zqEPDna4*PjKpo^~hu^=97JGL=-nYk$qQ`-rNQd*dDzy?GCR%=ETd==(@;uCRTY za(3tG6_Z7rWv?+%q$*_#Oy-@QxY?mKd7>PLsg&6fP2F$G%^s~4uZ)DYnTR*U z-+o#BWZm)R(lD<-3-nLUo_th)aX`@IqOJ#yM^x;th^wgj-P+@^L#SV+Sk-c|S*P|F z&zKC4xj~NtPj!kkJMXJ~T=3`-_p9vnN4b{&KmTU!-s?}F*Y8@+BY7!y$;$0T%nyFV za;iqo-uCbIw+i78_U|qI&mM|pJXtlvd_A+@rv(oy{oVO|R2X+$a*D4?tQMBzn^4i7 z#Cv?|vm^=UOvb)1$ufFJTXGKvJz{_B`6=_G_dnmDN2!}kx6QWL@S`_5vi*pvmb+Tq zndM8=o-0~jyv-9M{cusS^fgsI)?jBI*4Zwi+S6U?dJLS_{Qd4DabV}!yJhzzFNFLH zi2V1Ua~+51*G|o~cNi*C`X`-J^}UfGT=2hF`pT-*^iQ3xu{tuXuNQ4hRzCi4*W-f4 zk_l7As&b6^KD>Dlv-2J2;@RTQ5+x45Sn6E&#c}1Umi69k@ee?5T={#k)#vD?UUQl% zCdTWnmf@~FxuYQGTzkpA{0pjjY?n>W9`T(l)W6`T=YdO|-N*L-|Kq%3^sxsGAZI*t2tKyaQi*Nh4EX&APd?v9vweU|sbmzpy#h1(&rew_GIK_E&=MvA^ z!Pn=N2}$;;Y*(qhBDq3gnIdNnEmqZyq!xxiy zH9j`mz3gq^EetN5A5pGz(!x{5ra~aLlm9F0NryO4G>3||91(p3%Nk4Pco?$Cuy2!? zv*U(C((l%YrAO~w_02!ptG?PdJN-c22ggknY7XC@aox7s?RlHw1?LrYr}=9f|F$2G zTWYp;x8lu5i>sIJI(Ke6A2?go6#9HS5<=I~EzPZzj9R4(O< z&=*0C=1WfTrzQ#pyn1ogFaFQb$qUo}C>GUp%{N|f@Jd_h74>CX%9tM%o@$xoKgo~lLi=W#%O%khqYz`{pLM*>_tgNq+cIySXO=_qHe zkiMkCo~_&Sj{Y>BUYl#Fa3RVl&iz>KoWvcQ+uXO6F$+u(w^RJpa`tOo#hc8j^@3;I zi)|Y`5;+p4iv4bKOld7vwH4a*MM?VDg=ejDmhR%GFZi zoDltZLG`Qjk|W9|V%wIj+;0D-9^%fGaMpDHw;@k?$&4E(n9MVlTN!f(tM0$?ETW@bPqv-^jE{^> zg~Eh$jj!TjN|HNg=P6$~X+FIva+g}C`j*1~OO_YEYIpg!Q%6A}N#lmfssg?x>P=6EY|q-?C`E7!O^Rqs^l>&X}Pqdz*E?QoB3DO z`#Jvq)z8TPTW7qdp?#gs7m4F93fyeNFa8af`*X3mie6;-46nM9mmSA;7ThiTal_|( zf9d%{e~a%5FU!#TSoGl7-{QR-^LD5eJl(f*-i^(|GT+aCJ(Qr>=2X9k>-+hyE+6s? zqSma9ez8?U!@syZ_M7aBMO&Ly+?scZh3@b3xM4SO=~ZclB25}K(ytzk zk6k9W>v8?ubgm0t-FrVLusbK6UV336q2{0+aH|KD9+hOzIOpzSR# z|H&7xzT$Oogwn1~9`LU!E4&R;lxOiwsu9XGH@|KDee?F!Q_KI)5c9F>P<423_GyiG z{(?shml}C~oTx7Ov2fnz7yC@=RqIyni1-t>bD~A!?DB~g86R&OOfG!brxLg4{(|&} zNgqtJ#CDh+N_JVX!lF{^tO-jmMahgL{A)^h(sJzbfbl@bLZJ^7~hXS?;) zuG#euT6{Bhl}P27X~~>vh`sI9KjllrhILb!>|c0)a+>^yYoDps;#Eg9JHl1?Ri^Zu z*02fy2c35e&$7%}s`D;{S@(Bk%-JFFXhj3>t4TW&qSv~1hu)fT_0;i4KBs1;c2sYl z#=XPyj;{2+@+&JD4v5$9%X`sn@9wZaLVs!(|9aKi%cOQ~VSHe@g!7WR;Ol1J1DWza zcFmd{X)EQTTw-a&5$wfo^kBN!Z-b2OfmJpU=}V9B|C+SNGV+fRm#Qgf7}dq+k#ntM z(4!@1yIZtBdKiUIGR~U3!)gAJ*0w8}s&b&($>Pavb3S#weGB$|b6S%d_h$1mpA)TH zLeAeQI3`~8`rY#P|1yOST<4QLSsoUZZ7(R@&^1?NZ_iiGLss)0=7dyzF=yO+f8H*q zyOl@ld+bVG{Q_S)u(2&|op;0Smr%R6WWqnMKMX9l7j++9&l~?JRa*I*`zHsVPVbOD zCQH@lifTUDCIz`I-EO_Bgv4LH_C~Lb`fY9pEU8g_s`litYF@+-{W~B2+S~Hy{QPy` zI^Vj*;yO=q17<&X-g$$e;@Nbyc9r=D{ypNa_#1ogj(Oa#+8>A8XWM-2=4P$PyzJD! z(L>+tzJ&L;DZa7Oc%HI#249eFcsKvmrs$2PlHz@SHanjDWs7~3WZ--G%umDEM}j8y zoDo)qiFbezgi+xD2^(=!tD^V=uzzYN|hoRgnd_3P02KioIIU2k5v zq?ci;hj1&m-L}uI^)?5y-`~Ho`_u3LHd{2$I=^&a zTXHEWUTW$F$F7cp(|->GJe=g2i zP#@tUwxw-BA1F&cJTJVN@xz_KhbkAH=ZCENuDkshWS|R7#{`=7`WrL3oE)`~6?D?&>HzRRvAz#dPJ`+g+{@7V>+TY$Wzpi`u z(XP_I!&cwVf3-+YT)eaXlD9{YjOyYaY@g1j+N@%45?H?FMzunk>C?(fUsd{AYmPj6 zWwX+6$KID;x3B+yetNCws~vI|*c!Z})F;TkiU>Hq=(OYO4>ya~YW1w$ZDc6T;GOiN zWx+XllZneZ=e?c#W10SnnZDoq-6H3(mKTS`q&Ji-C_1_8aLBvv*L@jtxUb8$_n+O7 zzph_*jnwz^rLPZYF`sMwqV+pb{=5IK!y7DwA01cuc`bF$;tdzA*jI^P0Ci#bZVQQj zT6_9P-kE|ni&DFYeD9N|&Q9pRaf8|7d)m5x>-W#DesJvTgW3AOR($@-R64g*=WbZ< z{1vIt|MqG=uJ__;X_D-}B zu#*&jq*Zw7S*y=ZP-jZ}oy&FJ7*)Mr7pz_h@f)fK$#imB6??wf&Y*teCRZHmq{m)m zc}{l6?j7C|GUvJ6o~KKAm&+7OZdkCj!A_>gQ}BZ?gV6CZ9ToPioVD{-@HQm(Wj@-m z>(!onC z9}iDf6IGw5Hk+?WGGq4K-{%77hhBdD-eB4M#S_od8+p0 zP_E~ibB#wNZ*Q6sm!Eby_5a6Bb1`1Kg6H@6JVZ$7Q}-(I@@)AVp=*Q)c!`Ro4j*RSEd&S6`$CffUGd+_TU%Xrj^ zm>&8j{h|9z|TKIXk!UU+lc$IDl=35dLo@Zif5{%12$n!)>AX44Or zNq)jMQ6Ct+ucxQ||GU#ZMEm`b|E+!6PeP~ntvDIyv8#TS^(P18PVQ~4qK^(PWlj*& zGuuB$`K5u|qon3j7xh1CoaO&`Ej7u>FGlFM&ViR7d0z{yKeU5QTWI^GKdql8e-i9E zdMx$nnLjS8FTZ{t_5bkoTBozVue$MDO?Fj<_vP2$4?${n(Q^X zXA)n-rF8}Gr1k%?Z%w?q_3uPI|CV!0Pg`v8{N?oMpJ(|K$21}NSKO11I8PTd0LPb= z`-<6is%g)aSYFK$R^(&U+vWL4nD-U)f}=N=?VNOI!l$WUEG~VT_~>(1*}0%aL0iwB zU3a_WVS3;Ey-(k;GX~va`0$mXbe`i})^DY&eBQ7fFyb}|jQP~L^yqw*To#XWU*7F3 zd;4bP`@a)r-K>Z|DDM8S>Y&Fum0HEZ`!UmFyVrXDT)=*=`SqgjNsEsx&6v33*iXZ~ zWpbj4mW7FTxPPuc!21%^XvlT#2#$J_{rK?%k5e-b8<-0#%I_4bHh0q9@@nP1Gw>@t1dNS>>-s{_ICHrr+58 z=yv(}*gsSG54$!>yXCLz+dS>f(e;~`?^5PB@;=7S*x9UiGO~3_MMCtoMW0)$lx=t% ztqKK`JU+Iq4=#fDw12%h-jnVVbk9aHrC3*d@%4E*Z|`V*%#HS&+pKsvaow-u+%Jkx zulsT8*Z;b!`U|ARE2`?BciX+(@*{YgpkQg-7pwQPBle0GzuPgP+jHKmRXmMWo{!qt zOQ-yZu&B{t>g+%2v*_M>{hGu4^US{9lGxCbRrXBy>C&VP0_l(EXuU{#uJ&YcQ(tg+**QNQBMHZKtCD6{e|R?e zT20~pdY1D$KKL7-{Cct7_Qi5vhFXUsHy21Ma{3;fRQOiQ>Qu<;Q;BNRQ*X>rQJQsJ zjp6Z8_FRTL=8XBapPzEe{XNvrcf7en~dG{af?+!t!E6IjeIVQ>|mmMbacsbgEBU_%sw8I4&=bxON<55Wo87 zi0Y~4!wHJl!af)UoImAzqP4Ltyg2M!oR5$cf3c`^bpG91@%2AXG1gy=t~I~+e7^pV znDtSAKJqY#&9a@;9QJKa<=v!tpH^=C>32xSY@)}ZLScuGj~?~!dassnanbjfZ_k6P z4-c|4BD`2jlfPX<@x6v{7zQxC@=#x^BUI+i#yA(op_L@u6OVSA9JgP^z#r$ zYin~wdC`(NyEYYjH(k8{Ch1{L?~Ob2!xoZ0X_=HIlH zd*^-YTaeIx&iT01an^l|fk8bxEUj2T3FpW&O0WX8sFDnM|sw+QT8~+}azx7MH+4Xqbm$sEl+4qaTnrgY`P0PW1 zM=LzSlvSSxzRkOk{ooddc;k9uerF!0n2^cB(>3_{np-2H51w|g1%(rv*15AcEv=0` zGc3*o2XFj(?OyfATlqH6or|^eBDe!R=l{uk2uemz{Kfwz24!6HoF)`{xhnM2?8OUL zT52Deq_vRa)eg=DI|3gyn=$TqvDi<#;a?Je=`9WsbH?LyYOh>b%x5pBASR%2W0~f$ z!{_IRDjb-946xmmi%Muf5mCZEySI zQUAnC%|aPAL0NIDJN(UVcK!678FFUIb2Wxy2YxHz1LjO6Vh!GPZV49;O|Sdc(8|95 z_x!7ej`FXbqxm>7)N<8K+3k(l+I%w}wuGkhR`D7}9IuqxqNMJ$X6=L26RBZ&PI^2h zduDAe`j#~5hQue+#EoCm-v7E9ey#59%=>LVA6)Nk`|urvP_P{(#@Cuahzp z<_c9V$;mmoXStt_+KEk^4+tDjUOyrCegUp;^SkMrk#NN@cc*S`4ws!JY^c-zaBV_KeAd^9+s zaKP2nvas`0f@Ds|=E6A9Et`vsA;ogoIX@myv1}!I{mida>GQwa`EzaFzkhM>Uk&qt z{oj|n&iDKITAIOT){BlyODz;FuW6kArSi$+?v1X;D(*#wfqb0LJ}&m-x8ZKE`mc3h z3+IBf2ORVwwq$&~eXdsaj=_sqhK&=f8TM3h$zGbZ-EBvP%!XHI4hyt1NM3z%M*Woc z(FEOd$9{$cEM1o)vo&VI{)m~q`8peKe4McU+_7Utm!qrCyT1PaoOk}Loj=#GFPN$S zXVN+Gx_v($UvypmPjGIZ*`ym`TDZjnz(l_!`#nyN$>+PHpCX>BWxc6l7 zjod)J9WHat7&QtL)jPTE?lTn3{jMAHXIXIkrU!=gKc;6rT=X{4r_@lU&t+9r!M`|l zxi*QS4aJWpA2v+n+GuvJa|fppsL*5LUBB$joV_xU*^822=?I-i9zd@B-p2ba?@A`zOra-nL4|{vWt(7C|{P|C$~dbyf)y~E`eiQ?c+T!y>sADbHn2Xje%*S+#ki ztNL+%hIdcvPagaH|6%uRy?>9^8cfoEv4zvXbJNk*dG;SX^1eRe{}Xdf$>elYR3Xpx zos0)^(r&PPFlPF-yl$VM!ruJ-A0*#L?0WH`e@}AO$xF`_*G@5h%QEdDZ+zFm&TbQf z(AnUs`pERDv!RWLqOzn32RVwap4?%yB~vE1EDMx=we-@V(iKMxOP#g*-tH3a_bj==^5twB=W?5cOW5@u zt+;%XA?8l48Png*j23AZKimIg=jN|^ZoO>V-M5kf-?d!MSas~@S#vCr?Oe>E2Y1~# z3%4~*Z>&Wr^Dk7)SnYRgnt`w9f;6)`#>KDo_i--&?H_I|UEp}!Ra(5H>Vs?CrIYi- z>Y~1QUYh7HlvynMy7kf{(-jAdOP7isuNFRe+@&gy>6dfCjBg8g89b-=GU)zO`7Pak zRR8ZIM(+7vZY{oAwp+I4+?S-eYfd@GxOcCP-g)HU?%r#Ua#_`xKfk%NB}O8n!aV)? z+p`))2Mqk@c555yZsnODw?F6Ex$b}2hx_l<{JOKs+PuL(>O|&4bxqx0SKN~WE;acJ zrB9FJR53JJm%KM1YTrMR9n02jc~pAg3QK~KvKga=jCkG|MY{~<3-M>#OQRm_d=fAC z;oHR>uIK+>k=LoZHGh9%R{LIl)~1YLy{YXbH*K~om1XysS*u+!HS=rqrlQj(?;|ax zKTX+N2@WCK%9k<+_J6%=QvJK~e*Ay?e4EYNA1eNNZnv-F@}YC8_ZdEvMSaVq3%%01Zq1?c2uKOxxdmckV%>BBD z!S{ANU-Z20#R}HlHt#&PCT#pG$7EozWy@m+jm`P2>y6gdd57gq&5vet;yW8@Y5n7T zlF^w^_2ko&Hdr}S7w^4#T7TBQe^cahEZ#=^@sy9>QW&`0mm&T^;PY<#?GGOZ9*>+Z zcj1oyweSlqYpg~5#cp<8_qi;8es6U(P zt!oZma{iZ*bvt%`TggMgm_=;t)v3&_)6*W$k+AhVd(8ht>l6DWy3)@Dj5LpJh$+?E zCh{|r`Pi9X)oJhlzI{1c@7JCFtelWoKeLt|5i#xf3(UvoRZ)qoX2Faen-XRDP~MtE?iD)P}y4CS@nP8hn4yFvM(Cn zt31+lSMER4)~9^G9d~csl3aB9OVq*DKCACfnkv0FR6JPr_R=@Jnj!Vv+Dd3ZLKy872j)mb2|9=ZwrEhyIKg%#(P4;+ze6PCY))zD1 z*IC4vRGesvmHX|p^{k%%%vn(l_5OE!1mnuqTI}Gtc>=XGgnE@ zT4BPgb?Gz9I@2JDleeNi?#jNrBq2@KoUu08On8d-lwZu^xjBoE&Q{TVw{Ft0i7IDS zvhKD`yzSaPx8On3-uWMWetcfoyi6>AFZ<(ZVOQhQJQkf*mA2RA*DRjUTkJJyU&Ms< ze#f59Zui{s{%qcxwL710y7{}V{N$I=`#V|kuJ7hKwBYDWv78#$34Ywx*F3j-N_kHL z1zm`Dx9zv^X`FHCT93P4<{W*!F;}>mllKnGm-a^mAqy5PVb{C0;`7njVs%-Itvqwg zU&?fESecu3u`&N{^}~Pq^^dOT^;bW-QdVu3n05NCJfq`7){eZRABvpVb9EzkN`4ZY z-MwZ`^2ye|c2ISHp~mOYj+wmQzg=6uqwd|o==C#q{{6Gs?C+<|*ZJ+AKGtTG-{CQN z32XGEUyJ(9f~0#@ecrLR^_Vd%S$w3a?3&TT>>ks70nK51{BB!VPPuTPm*J`C(wC0i z`#fif)t!{94Y2;+p8NOLm9pLXaU~aae~aGm<-u{i8+Gg3SLc?+S#5pF=Y922?l%_U zFQFP1D?s75e7o@fGbxW>`>Vd?I1!$n>^*yB*`l*~RV%hefqL*Yl#)J0`s~46L$S*%wrGfyuYKe2t5I%gWc2>P@$vJ=ZO6_p-EFH>T>t zzF=>;eb29$S-)Mj?MB}6l}B&CT_u*k^)jf+ZvE@H_J6oTrF-X+&7#Y<^Vh$RwETU! zQ{M1Q@bgDq=Y4hyR_%>6-Tm?4y)$j1SygwrB3`_2zW>DjLiFaEpKtbt-?uCNn^}IK z{KslVjyZ|{4(!jdR*N=Pe+rZncR~dc(z?UlvOOJ{ql~ilTUCy1a zac0wTwFUX-(%Op7sJ{B+*lm`}u%W+X_Lba~em`1#OFfIuU9r!K-tatlduuj#S*KcDt6QUUOt&Un6jRvVW^W#~L@alwZp-$BtcPN^ z6+QO*=-zPBy+Gu6@1kwD|9W@zLx0uk^gOH2jxUxU6?^z{YD3WVO6lH(W>c;lQ+@SCL3&lV=O)#f zEvm9tCiUfpTsRkHwPRUCGM{0_(bqLXYTT2hH*&tHBYLpuu`;@+V z9CUr7AO8|pD=!_hlexc`Z%C|~tfI5(_o*8n_x*eJ_POx{D`vm$X$MzkuDN&a^`ySs zD|#=lEc1?$<4-bhB9I7FAi*>nr`U7TbMtHH$dz z^fqMqwz}sZI=_GX*5vp8eCx5FUa4$RAJuF+g`e->d~ou5v2UqfptgH?9XffFc=IQhWPw6w-S&^Hvwl@d zzckbAU267DI6Ywf0RB}tN&)( zt~~D@p+e4!>n^QUdG9=zE6L;N6}_A1wx3N;C_e3Qb;} zp!-sfyJjlyaV4L7ZdFsC)UHT&)Cpes%D8vpt>A|qH$LZnmi%zG;rgOfM)Sm%Z};fE zyy5mX=GEJf@`=9=w9iio}XMx^-5z`B}`}K++PpkX#Y!2i4qo*fn2u}kg z62IJ-SGz)vo84x1o{&>v{c_R~Gp!?yucj6m$LVW*7P@q^%lyJR9}QoJXT1!&7FIg1 zd>s^}#fMp&F%aP*&y(Xl?Oe8c&TRmKmt9^hR$^VkcJFRmO* zox1LOVr-W4tRVTV#VcP&9CzB$JnL}r^lM!WrH2%q>(tg(G{3#H_R&{N(n{F7pR^etNzxM^t7%YuoN^wYAl2$-4fh zxuI6y0u^~y&0ey4Zswnw-!*J%w#@6e7o{xU4vuO6CCewtOn%n5VWr;94|a>~_M1rr zPhPTEG=E?0yp&l>J9-(MW<2xEe_rZYo_o3WQ(@KokmF`rzap~cPyZ}A<9vfH^Q9!O z#Y^n&9V?Y_E}gWe_w}~Ayw$HGmLDoyan|$PdQQL0F0-tovp+vGxLLEzD3|R*tKIz2 zuNUmNT;=n#m)FfUd3fvC+3)Am6NHQe_Gs`mua;W>{pXd{IbZFTC~Xbh%KtLF`)sCe zM-2Na;g>gVcbVTln|bNy9u*6QoX_fCm*;7>9MR@1>C9%jQQ7g6=gKU`%Sn>Xi?}Xd zS-$;s=@aFxp<8eN+HgP0?6|4I!QcB$*PAtm?Kzm&H~GA}+QY^NM)O0>7S`IxTv=UE za{K468n$P~59T%gzkg5mi3P`D28KWX*O#vjUCN;|Rwb}z0^P(eUEV&%mjdX2`ne_Lq z-|dYFYFFP%UGlkfO+aCTTEQFV?7%spnh6XmuK3^D9o{jUht)G&gNKo6D$`!M;FYd+LAoEu2gYjI1vIru}CP zVPjqc%S7J=K-|Fhl`U||*cH2pv8M-f(5v0pR(GmEjYiO>AcEWySmK`n{} zWZ1tM|3S3)$LarBze}*Oi9MM9pY^dg8>`69>Hk>|h_bQ>Bv1d(Rw&5A#4WdH>VJ+? ziabn=Y{I(RCjaL>YaznM$iT!Yrk=X(;g|0JLcd-guho{|Vq#!mWabc()6g?A=``gq zF*eXr5aD8GY-C_%V&xVP5$l%V5Em8XVPj%sU^v9UY~$?e+T_OL>f-F=U~g+}WnpHd z-^#!!?%d!e0upqzx3jUbG&eOi)YsM4R8!_{W{`ApadvdDv$eLgFf%bS(9_XUS5;P& zmz9zbZDNo%w6(Fa0IS#0(oj=TQjnFF6c-g1$&$s8RFqRe;y|2;Riar*!N-{1egYR zeWqCqjf@OTlNlNq8<-lH8CZH58W|gy7@3(HSeRK^+1T2_{03%57M2E9W;Ql<_6Ck7 zuozekBP(kI8#6mQ2S)=Z6Bid}69WSys$ynNPA;wnZYCZc?iL1S7FIU426ko+4o=Pn zt_JP~o(5h<9@bU{Hdb~Hh{6V*M&1TKMqaK%42Kw4wx79h>1y+prppbNn9iTx*UG@? zcDm_G)8(d1jTaj(FrLhAW?(#drRj3xrN)bm7aGnppF4Ng0(N$B*r5WMDdZ;X=cC#&hQy&I*9lpFDZu`0-;$ zj~qFCcwZxf(3x}RP_!I9dZghn>!Cvj4<6Xt$k1?F;?${=Cy#AgK5zQW1sf0UTRwB) z-UIvh@7ud~Pa}gg*peg5=Ipv~^U=+dD>~La{`Y44o;|yF@7lSuk%0|l$)Qz`I{tIs z*|cltjvd>#ZQa_)zzQ;Z*YAe^LLcv5zI6TJ$N&G|*Us6xWy|JG8#gvGu({Ma+sMGOXZNnXe_Q|aJy|$)(;ITnYHS|?-NUxZaO=4(ZWT~56qrBcTOXN z^qSSHR<2yJ9AwtwReKgKT(Ds7yt#9her}mHb4DYB^z!A)mM&egc+sMT3+B(CH+Sxw z*|TTOoH=99hH2BLHZn*rUJTMPf8M;gbLPyRHEZUK8Plgtn>uyMzR8m(H8Mzpv_K?g z&X^98nKEVaH zCiM69_V#plcXf4kv^O$H_ah`ATDrPAJ3Bhs+uPb28yN&zCL(D8Ni?)GwzW01GPSf+ zH8Sv~fNg2{` ze3<&5;cF8E!|Cb&8Ll=mFua@opW$O81H<>}{~3NXGBEs^{-5DbBLl;~8UGs@W|Dy! zeoz0;@VAkH;oJ284Bs0W7+y~Q&+w*^fnm$^{|twk7#N;U{m=N8qltl0>*!cVEdeKyQYvV0^QebC0fjs9xPSyYe%>MaGl7oj4j* z92#0UIGrVgCQ7CRNv4Q|1OzzF=a;kjudv|HPv$O*KL%RQ8zgGR86Z?B!_4`v?dKwI@ z3m8Nim;xBM92iGAqhT8IKf{k zE@z0;MA>oA|G{C#JMsYuf4CknH++1r7`EZ0NWtHPdnrK)JK+r)2RGK7_l_S9Ivn$L z(9{rE39?>9pg`loQl@S4TVk)Vn1jLsTJ7D^NT}N1#Ls$5qa#LRf~!>sOk z5N!#Sq8&ef?wleo_u~EB4~+*t-TM;}Sq}=Ke_Pz2s)jiHKWO?%_1GRm$)A@l+Clx^ z=%_95%ed-_yvU08t3MnX#%UHv(fU`+c zzm1=H(NmU#Y5@nn734Q9HJ{#*FXiiNw%Pq}qmhH`uBx)*$E=sEed)DZajoE9aJ%nU zNJ2sT`Mx7BvgRf~?wut5{`KM~(N-T0+`pcFRXRUHbmzxjC&6Ul+01{~CjPSQecFBW zb$NJ}-CX(47OWfW3x6^4vi=HMu=;RZ{OibNyJFw?>ZI$$-JL%rMr-|zW7RbqOT3w7 z9{m1&Z_80>YuBop;(#MJQl1^yr@5p`Pt`_<=dNzhoR@yyCsQA_pI^tYWqWorhe(7N zD_glmv{<6;Ymb$?r+7C_PVfm@^2o4o`=^J0>$G=HQ>#pP|F!z6X#O{mpC5T01(PSw zVE&mV@LOiv(d{SmCwrIs-mbYkcUsfoBeQRB*Li(nt@JB!sSwe4P)2I!!VbfuQMZb= zoP4i!T_tjMlv<6D{Jrn$6AMjLm@CiQbL{=V7J8GdMmgX}L{hQBeTJlYdjoPj;yn27 z@~-^+#ad@d{PC@GpRc;SP5+5AsH|Dw@Sp36)eNuKEsuhpEq$`-Z9xXFwB4UCj@8dgr+MHru z_0_KS?OTt`x~wjIYxaxP5#n!;i%s?T*0 zcNopS`ygh8>WYGbWA~b}_5EWOGp=4LZhJP2FY8>g&^S>l_o89hv z^TW;?h|hVey=B)--gj}4{L68nlX#E6c(nCs+q36SZ~l6;BXdfEkIg~5IlN6vrD~G=pEo(a z3flWpHl=*#>_g7;B0un*`ue3{du?CM&uu$S&OhvKox1Arr}cAww8Y;kJhPMEF6non z`kQ-2FW%j~{MNdEM&9kRBPpe?-+30knCBB-?!PS9>WF;co7?M}a$cWGsj4u%#Q3RW zk%GL+cG1tyDChEh{+arz`C)q53wBED z2F*@5I=M-G+TzChKODO3W-Q{Dyw>%7`cZbyqwJE>|MnjJv+U8~w(Kr`fpxmaveUEK z*X!9u?AZ3B;o+^Xd(C4vm;K#({oU_}-`DSbC4aB>>{R*6^skN0n{v#gmp*Sas|(J{ zlHZ#8=t*hIk*hJD`}*=tk4r9`8q@6a?q!dGk1pHIP=DWt58rwIU`eg6T9MnHbh#^L z=e8Lq*Z=-vdG%WDzDka?)bDf8$L+oQIj-)G;&!{IN3P1Y%LM*Ba}QrtGf%&}DeO4w?nUz4 z`LFDPKczm*id>Sq>*GZ!E_PG#%ih^JAEU)spUrv{F0w8%a(--NO~!}CkDQxNck}b= zMcY?AxO8*h-sx-aR@_}$t^ey8|Nfua{l6wU+612zm_KjvdEcOxCk5Th?o5z){^7-= zhjUVt&vBhxa>nn<@uS|>Cxh$f?|9s)uSi@Uy zqUQWN@~`E%?Ps&w{Wpt0y*d}WeQwUpsz)iMr#~J&_>ZMZwEed&>#}dzS03+9zVI4E{rFTQLHhj+(-jzGs&rDxsuH1j|Hi;$f7ge+Si7qD zs@cg)W_gb`{5;`5Judlh_P<+d*Ut#NI66}?UxE~tA12D3 zpO;?Oaoa|HTg+tpBg>zyFw3206`q^@X2R_`W_wR--!J;q_t<~e;a7_7_ZI%B{=8hI z{mOv0)IUCGVrmXoxNU9c+BwH`b=1^_CX-IQnXv2X?(b%&J@0;=@H6P! zwFg-ie|9T0NO%T+;AvFe)-F+_o%1n2NJL&BX3wU5Wr-i9S?rE-E+n18MBuJtu|Y_viNGA@a5u6zv<_;KfL?nRhQ?dke(CAZaS(&>n}Ky-X3>N zA}Yk*q~*~xBYysm7TZi8Gt2y{x$()T?(Xwhs|~L%>kWGD_Ir)}uiepdb;sp*zkapu z@H?BkyWW0zw4na?qw8P&bvJyfe~>4$onu!_5UbPupG)KF&h1KF+s9qzYA<&0O6{^I zrw?7-@ndrlzAU|E(3SaHy!H8XFX1HNGt-tIcX~GE@bpus?Ji5qN)G|sThE++bX0umC3w7F}*W$Cij~y{~}-7FMq%2xcL8vlDGS9|INEBYyIBz z?xv@5N7uiXw?A{&IXvLNT8C-nDN)>(*&`xJy+3!Z&#(BN zul07tm7LEWOLB8%lV?rt*PB{>`0^jANta!=etF$@wf<&5G_-CGlLt)WsnYMHcW z+kuTdwnx?|a%6jM+RimCK{>jID>A(N0mA&TcgR9|d&i|az zlLinX)KlFDA^S>(C zrhV91s_6agqLTeq-)}Cn_`T|5-20!~FPF>J&;H!?KkxmYlhbs+>+=2C-L~2K1q;^= z(HCFtPT9NWqwE4@Tdk0F8y~lpx!xDm=bSaGdPR-q?@dLK%+I2?r|z1ma!`(MVZVs& zk%E+iQC$&tuKf*T_T0Gn=F+44l|T4ro8SF#a`wJoNB!&4AInQT5!yEK*2Uyi=Tl!B z&boZGM%wuI^$RxE&B{%mTb<|hEaXY=?pfWbeU!b=Vw$SsW5&1j%EmTx6udW!InRu3r#~)P{^yqB_R3@R*7dL7Eta#oyX~*y(Z>1zPTR%=BwXMs`PFxF)2BJ6 z*;})Oy^ER3-M1WkU&X4c{@ib^qt`yaogH)Pn6_wKQo6cxt7b)#Wzxqj2O|0;YIw|6 zl)E#!pV;}{vDB7l(ygQMl0T09+P7EUuHtCF-JiMfRWF`@ul*mL{n^N8d4JYwnaw{# z{?EBqk-frZ&hmamODnaCzGAlxA#+vIERstum5VQ_;dt3pT{5S_;P>rKJp8FA_U4_s zSo>;DuAHaCw!M#MuK)WwxqsL5e*2uS6AsHo{VA`pk8}9A{`2>8?nRqi8~yI{MrLiY zPJg>9EVV#9^H^WT>1Vqh`JJ^+**9gcSclYyaDI;8$a(ZEoAK{f>j(k|*n|PgGTC{JuG@PyWP&>N`^w|Ek%h zdCpEs`?ucus@oTj-+BMA|8CKV#D3knt^e=2=G^LkwStRv7FWr)zU7gto}G-`zUFG- z!F4ZoKU#X$UbBDC^W3tdGV!=TKwta`nFjuO20y*)1z;-=X+@+q}oKihJCJx^u5v z>^#g}U;lkx`~NqGx65t&y<9zd+r01x+XN)UMP39qp1XI|LTu{hw8+(un_@4PAN7u& zJgfRdjb?Rr!Nlf$pUs(;Z2FlsF-vVmb#i6W$183+?mBkc+Hd@Ftni+6)b@VtcY)^K zi#p5l49d)QSN=WlkAHn^@zLG?UOzqmul=>%*MrQi=ULLbE(FGFJub07`!eXU^t@l; z@q6aoEo$5B?tM_{lC@pAOUX3(Q|#0KOl6M{o-l8hEq!y|Z+l*S#=!pMRo|~PYvCHJO>qYnLp9hQQ*f%Zh@_O^(jo{UA`2@Qw zUjnNOOg}P|?N^nxui5uIvj6t8Rr7PNM;v|kZMnSl#}4E7U%$NUbDn21(=Y$(-bE`I zSj|LUyqVkS{$Nh&X>d=W&S%fcYTu*NyV~5f$>WAnwS}hJr}h?mXzz?tFRx+Cyz4)o!EVQwn}-v!9v^&NrfpU8q2~KWx$S2| z?Qg$YaZ5$)toqUWFYi|^zyEKudye&^7wIDVAJzXq)V}|^|EmYDd>YT)tF^E?7r7ap z)Yp2RwFTu;(;ZTL$9wJhIThS4Ma+w^F%>;6*xmnDaoaxe_Z|f;J-^plC2ugCb@a;A zBdf8SgFpI`si=6t(XeDn299vZz`acfo1uK3=UW@ld}ojJDV=T-51B_c9i8O)pFxk`1iQz_oaNnCsKz->%VOi<&mIN*&Yn-0&jtK? zxs~50=jGG)FA_iB-ClLaEWQ4Ohh^$L+xuUSUgo!b`X$|e`}+!~hllF#PXD*=b{-8*-YB#2#|^opSM15UonqTd_g{5@CXltaHS=o!wu5S=Wv}f& z-ZTGy{eR6b(WAe1$n=^;Pj@`KSR(e#?HRc>ravv-brt%(7JNSG+9XRx*}0x`OxvZN zG@lRnefpNT+?JA}@*fj+zKaa@`MOcoXqDyC+WY-=&;MC}oAcxK=lYZLAHQ^Az8s|O z@Sg9*vX@U{o7{KKF+Ck6tG{ja*OH^&wUg_<@6&w0uDbL{t|wmPTbcd- z1Je>-KTk*#KJDoywlmR}jP80EvGk?BP)y@>jPRaxH1|&SUCCxuJ7Hx-No>De zWUQ@noTP!yYNok=mhcN`<4YFB$&gy6x_UXwFV9>LlN}Y7j>$Z6T~i-bI0pTBP%y1c zCogVasmX)1&CI|5*Zu##|LdyvHt){G>orVSw6CK(@y+#GljYr?OKzK}%g1Z=)dnh` z(+vEywxqIR-rM#2#ml|-|I7E^ zExWQ&e~wRhzWj2I3#XSke477^k?HB0$g8V*8rY(jmAKv&)z{TG{XXGm(ATu58`;j7 z2c0f4_H441agx`p>UemfX{*S_9czEDWix}M4Ys0Y@4H6J?}|m&2zow|)w?_Xt9|e?mVncX94^hj*0|^i*trMP zqL-9*}kyGCss48>vhfCwqrbc&0W6XNq2tb{J;18&Y!90_kLQGKKK9KMN$`6 z>t{7Q&)Mx}>Sh+ZZd&X{-jeS17VEbNczeEmv1d_;ME}Y51s_Z9BrdO5aI5?F!NX5> zseheem44ea$ftMu=j#3c?ceWvy(Bn3>d)i4@7e1a1d_uPUiv=~b9%BS8qzmPe&~BQ z-D{stjBfW9A9K4%SUJ~Ysv;G0tacluoI9R9;SqcLW|Ne{&!5&N`^5xi|Ic~vo4@m6 zuzbx|)%`zzcy}*bvFFz!yUM&xC*8%Len{PHd2aEnDQ+vO@5rVS^9eZu7~~WYd){8e}Brp z_UPBo$5!_IQZhe()2w$@f6lHL-Q7vjFT~;t%Q(eXHy3+Xd~8hpq?nnI`}H!P+@gZJ z!uBrfeh2igEZ*k3_?7bRs=MFB<7!@3w_alxer&nJ(Cde_%+$I;2^mB zro7>#Sf*@{^?lK;85<|gLh8UR@!z&w*UN17jOw-ng14P{?AW}8sy_CyxS!Y+FVk_5 z?d#drEr!e1iOiN3U(&x+vpYI?qoph_xCjrA{WghPzI=K4`q=8LRU3u!=DO8gWGbCq z`)bAQWtKl*JhGDBd}6)D{ua&|Ki&w1l`M#?@sP@>uDpGSS!7xHBlZ)e{HqKnpS3H! z@-}N<>G#0P#r7Yrs*C(TaQ}3e+GX3s)vnh9L_L08-h5Q4_?m8ZX~YKSS6klaP5Fyd z3W{75-JH6sDP{&N-GJ-IZr*PZh83D&U5l4~X`FiP%Of35vF+*VPj7j=KKiD8^|Ln* z8qdG`f3E)Dv+r{C*H}O6E-z`@u=f1dvMUxxe)AUReIm${BC}UHoo5*mHrU}vY6aC&K z-!@rgcX!#&s&@&f?up*cch2x#6La4u$IJt|&$4;>`(j@o;qQIDFF08Z962WX z@!S9BueW^^)?fcEf9*SqC(pU=U)ks6(zd{1)BGk~vB{g$)`sO?T9oLY<-R5L>bf1l zpZP$8oo;%IFV|h(;4VOv9Y-%eO0rD)V0h!fJzZCwyw`QB8zpiI?q?m`DH|N# zb+(uL((y}Ej^+kzdKZ-zbKzFn=GE8M?R&I+-}e{Rdvf3ITFsGEz4G>9OC7c8j{?7c zp5t!Y|97qXoYXgyRP9dR;OU9Y@-{-swf1a~?ao*)Q@mnUG z{A*u$GI^W)?&nvJuKz8c9w)h{R%61O<#QJNoU`?Gl&sjB30A)ZQf|+Jj?{u2zwA$2 zJVT}cUt_XlRY#<=z_m#!h34OGKI=H>y)j5;?Lz)FThav1O-L!Yxo!P3d2YX5{TE+b zS3H>i{onED^`u^V+7D z=;`FC_s!{`mLFz1QRcoDbmY;tciW|2FiQs;r_EndYJE7eLpQJVcF#5ub1~nguelGM zP5XTw(^a3cmL0_>*39j z*STKU-`us%{STyc`OCF?(Yvng-L@Wgvq9Z^mM2UdAD8(a6h1B3?O&*W?2AA%@2k6k z2Lz4YZGY8sknQVQvEVl|b_M0+#cZ$xRY0z`yLX=1k&``JeAU%x>xzT>^5Z_77Po)- zE?)D>a)JFB#y6f#tX(%TsYLKt$<05@VwUr#&u+EhJa5WuWyiezW<)Ss(Cc<^RKCs~fJiGM%i`+M1&WYOA!f zS})nQZ+3=exw38Pd03-6!z11bGA`t3d%^r8xM%M(|Hpz`(^R@=PZKFQ`e12}RS@(DT;7tE}@SuE6er{d2P)O~^NjHxd zmzLZV30{BTT8PKxV?WcJC%2@}UUowH^M}N&l-%;mdU6wZV}wnk&S=9dSM)7KUjeqO@>+afVY^I()X}%TH%OX&*7_&k9m*K}{?@UGGwd8i4T^n<) z;pfAQnR#l3Uz1(0Fgw3ccI7veiQF(vNvynfvd(6^4Th$fl0knG3Zs&5UD;IZyB(5n zvRi{EiEh^1b~yO3=zp^VzVmho%fk(KqgUNencV+ZZFcSC+y5SU^V$D=9{=Uk zqxc{7vo`e_uyU#Ve0gb8-nm(jQQiBZ`nlm*@4%yqCsIpp$#+eA8MY{5UPMjT?-lRm zl3ufe8!w=41dmzT{iIi38=H?r&f2u&>RRJlr+ZFsGF#e_B(=57vU$Vin_t=2?|QR8 z{)=$+zwm>u0=K)p3VU)dd)V#Dd7Ar=H{`+fvvubVvNLo`xAI4EpI6)VAwgxQY>Y}) zPwsUO!^f}hz5n~Yxa{t`zWiA};r{oIY|nYURQ)ICrA=AyW~J`s>n`)i{d@9$&?mPl zM2qXfgncDje9R~5aJ#>;`gNo_+geCQ@p0Yja}s+*w2ub94_YH~z0%h?nQi*M++#nD z9xutx-dpdbc+})oZn0N^Rob@t`|RufuD)*ne%1Z|@59AQHP-A~u_gDMq14Num7&$j zyFOlh7GAvPTbkYL2h0se-yUpV-b%#ZBG6Zr^17x{_Uf< zIYzcLdcJ@6Ikn|>|3ls9e3=seJNeJ|y05ifpDr)(dpY+h(oj0vQqWNPse3&!Zp;4~ zX3We}?E;Npf%_JUSH6D(b?YlKuNks=FA3Tsa^2lGbG@SlsCRVNolnPD@Aj={txLYD ze9t%(_50fTosa6{O8#xk*ZHLob-VlalS|tse$Kd}f9%D-u+L{Jo`KRybPF_{7<8E5 zFOy$cH`&+j+vZ%E_g~-D|J~^9Z~ge} zFum*pHJ?Grga^6$k^X+`Ne{UC`Ko`^t8nhMEhedjv$w5(7M(VyBzNt1f6XN`Oy|}L zbNV%9?%sCu-`@ATpXtYa-IIOq$EMd@I#YXox-&(xMZY$)f4t{$n)P>30?~yf5CNCj z`McXg>_I(>iEH;SdtUqNQ+lrTry1d58{aPCb7$-N*QXbgk9~IKb+FiJ;qK?hk}8rm z)L!R*cXv`o;pa_rl0iNBEfSh_6D*vA*`^osTh5T4Uah}rjlbri89Id*G!A+icz%tK z|9x)X|38l|*ZsIs{jd6<_uCzDF|%$zoA}q{($Zh%Hq!CAb*9HN^OtSrw_}L7!&UPm zs={nzYx{z)&u+hyzj}UKrpo+R&ntgw|978T{BPUle=nNXN8a7J=l`ktFXiv9MW_AO zR9f)K>D1TKJtsh8o2nOsiop}IplZG@dz;U8p`)LUJleTYVxGhsfmiHbL6Z`dk>?7H z6PIScl}Xn~D6srKvH5h*>22F87v_BJIy?E=qT1<6&4rt9`m*cqelq?4Yen^a+clQ| z6JrQmp`X{j($cMN*NyeJQw#pNo(=qa@LQVYf0V#xh|1mf_FmxMoY`)lBIB3;x6ilv z)^gnDaqeW@==WDwt!`9vuP+x{qn&;>YV9qT3p-dZ3FbzwMIP(PxMu>NNmdr~Ki&EC zg|K|c?MW$x+SWPdpmD0>SEeQ{-Er=EX2zKZoAMV4MIsVO*QvVTrpXCW>wPnA1NYv1 zbL{p12kiE>&!@}&dHDT0SJk4c_B;>FG>@g`DnGxpBEIM1--Dme7O)*+XXw7&$e#u( z3JX57=kI&D?_#Y@xcl8@m5)pN%WK~C9DZN(&AMy<`}(8;cV^F?e|$PI?$}ez<6tuu zzE_R=6pwuoYF17Bb%g!uHkHUbTb3-)W&~Q1trzYo51Tf2?P+uR1Hg??>eIy>GW(7msNA8TV?^4xaw3o}8~i#Ub?@_P%+p zP{Xichv*N7Z69)yxXtS>Je&Pa^6v5C(kr>MRB}8&IDKhxkc;8oU8^~T=CB+# zT^hmZ*R;^idk$Be^$&UT`d7{Vd;VOP|NOUd#-erMu7^ubtvGffOn>XDSNz+i|I}&W zXAs-YD1S<9o^Q^>W#9Amy{rqY-F3EDs&sbk(}VLLJ^w#nyFL|EkS}{uC4Fk5z~8$e z7gEm63SE0jz~oJ1iHB@yN8#4FNPW5Th0w{kBSl9ZWm;~OG5jHsQ}BM85?a6C%v{ey z-aA-qyW`1S*)t1oURx#-bY|Cuc{5qm4+cnE76xu*I=K1fucg2LKjyYCeR=s*y-dLW z)eJ`#?TcVayYAk1c}4u3)xVpcpRSSvrJm>p{#0=4Ic#lyzhwOiySvXUd;ctAN(pbT znjclc=~ z-OIh@cLgj~u>X1{cG;U}TFXn}_iNvJ6trYS-h-wgSjmG(LuGN@TpIT~tky4olXfm@ z@7vi46H8CLX=@g*eXVIWW;)4R`Yo<2T=$NDp8n&R9P$i0+ve}{ zeK1SAVfNiB?HTWcuO0^#JYTmyU+90M@_G25r}O=`zpq%bwTiv*#rvM7c}3TBvP(fN zu5}fer@wP1d=n8eve)CM1%>cyoW*PyV{6?EH2Q=N4OXX8lrVnC5R-_c2DcboR5F ztr?w)-Gb?hTE$Lhd~D2>yne09_jK82^5r{E%vMWw0_Ux zAJhN6zge}Ji81j0U#9FAnc#N1^Lw?rdx~3s^tR-OLZ?8bVtCvAD}T;*o*NkuwY+2B z{$ux?bN++pQ10GPo~+E~T?4K}&z`F`6*1W1bNl)ST~Hl5#i{G&g z3f<%$Ip01ped4mesk<(+*Zk10|NFlueE;K?$8vv+-_KpMZr-${?~C>wb~Tv*n?i}M zH*)oecMAS)0~*-}&%g0;D)1gsEYNZ0H_YZZ6g5fb-7&k{GLXK%DX8zyb4YR$kKXNX zSN|j*^!#pk`qvbtuE@(b%_lxkkyzQcv+(LIt;5S7DCsp!c@S{tm#_Jrm+t&KuX10{ z-!bj~Y=@>@aYxP}Od&Zaw0obCVI|H^-_{L;qf zwvU)6zkKD{^~W*oO8LeGT+fyuck8A?yZ;l9zc9J~{f(%DM3gjW-s+AIk3Y}0_rDzX zT2GQujGI;ZhFLmzvY66Qem-~Ji@R;t8s>U=^X*%5!|=hTFDpa>&m{cS3~ZX5uw-k6 z;iOqYK3A7B=rl|@?cF&0Zq4J{dext9p0}@fc%4sd$*+8d0M5Thy`O%v*)-qnZ&2}< z8RdPSCx$P&sQQ4JA@y`Yb9mB>cidNxZ?k%3cJ^oJ-^KOizc=^KFS}xC|L@+(k}9Xr zvq>(s+cy>bx&uxyy0MNv0-Y@O6{Z1j4c|F;K}$N%aLeLCTW zTg;ISFwn@E%Hi*b(av?cnX+c;3t%JSv^RTbr=dbgzYX)6v}9 zhfdjx%_))J3~uL4J*L>kqJGe$bjqVe)j6IQjP`Cb4a(8U+m`>neO=YR#dUf2pWAI) zpTQx|bfrx7tja-2O8(m zCs&`35c=`KY+9Z5+v3UhuPm!}{JL>%-!9+cs!;a&P3J3*KYzFDx8CzT`z`*+-+RjD zR_mU9Ga_;|bQV`=8Km_NDtP|0i8}Nw*=V!zhsgK9`?g1}@gItwq?7kJ?)5o|oHP4C zb8_t6#wKY6FQe1v=!1$KP}6Bnnddo7`9@eA;=Uck;W+*4z8v3y1%`r96Mf z`(pX!_gNNvWB;mnK+RtJqM7c|qwG7DM)N26|M&4T z{rdav%8Tm%ZCh8=aw~N0DGt}Rr=>2@V(+`GP2Yo7O@XIez6YExQ9dbPF>PV{4AY8@ zpi$Bt_jehC+csCK;oPJab6dW8fg3wFz?B$ zdY3f0jv-+edx-q)S1WFtEDwMC;eT@epBF3L@4s%8*W&ws+-rN-FW<pNbKq^VC(y}TP!a!B?aG;HFQuvsdqKTC zbPI+j*wuIrz5DXzJ&&87MD&VHGgw3umIHC;s}KjoEEjo@sP zl44%>Ch)=vhM;#BBMQ#_{j76Hbl%&&FXv9T{V{F7&F+W0w*J(8^jo0e<(G@sl%7wm z+WyyQTd}YmL&O^c`46D>S?(t3o7=vxnx6}5oS9tX`(Ivn^|t?w&ll8dDmLw^%Klr{ z^~-PZWY#mQtELJvWKFyzn0wPP{Lacs@SKeD^ouX|HL^@#dx)HLR&2bk1}SD%)PtsC zwk%t!*?oIUt?7O60KwM!D8byQ%ePEH*)=TtvedcA^=ni$G#WxyPf22L{%rDyGu-OM zv0rD+_dNa7KIa2d4aWlQ%XNMH3}UlBF3fv)^T@Rsb_^Z`!n41{eckB0IB#?Rv0D%S zUx}~(dU1Q*sn7NXcQ-vPd1-EaQa1u+D(2iy7FHI4$7|(J3wJMH2Ab*LXnW+!_ax26 zeZo;fx_MEPzP|!jQYzp|O7fd&`TXRICbRWEJKcQM`(oa-d)iB=zqWT`1E}*|4v>T{r=ij-_W{tq59ceuUBdRT33-73SP0f z$y|B*#mxQXQOlw`lPZ%w-ihGx=PBd(+Wc#~O5~kAI?pAVRg*O1x?V3{w&l9Q9B}RQ z^it;HwPv%`K095inpArtvO9I^wJ8t0dKfesrks}MK3BD#MMpuQb^9(euY%X%vELS* zman)Y&8=kj=d(x2Hu0-Zi;&!Z@u#LozoE)QW`@-1W+!=bZWUiWZq~c&texEI!~Yex zTjrj&yh%4S8_bzCYyDw?%C`MCC%|Z`Q0V{KndwY~if>gZYYr?y(6+*!LKI zxmDRe`@u8Qx7%MON6Vfx+q>$p{n7LPr@xNdz3cUcbPuzYfAW<7O%o2=sQqi>hh^`K zRpZ6hO>>P}7M*_xyxc+zvfN@>ox!yU83mEwZ;C+1+P~``<>yP!Jn`t+)9B-OEV5M6 z&*p4>*1GBH={3n`_IYlECLzPuwKqL&&mXdV7{q*ATyvXf-nLEuAC&+9{4xCRnYsU0 zzG&wEZzD7{D|q#j$3ojCe){o9X5MzG_PRb$$K>sjX4!Q+nY`;B&-xYxs-#k8$8A0Q z|F3=R&(GWCD$o4?a@XT&x#%yap1}J_Z>Cx;db{dwks`Qdyz1T>n`;d}=Vi{!Q`6kD z(Pm>smd-R~G5OohK7SR~D4!Hulxn&DY|GSjTZ88`-g!{;ZlM%to(9q*4DH;zjYa)n zfpSoeUreNTKmdbgsw8*cEYojUC7=58dl)rK57bPPc2CVVy?%ZDz5g@$ZC~7a{{PAL z=Zar1tiQ#xcw)Sj?DGlp^(XfypDR3hKJeVue%%x8dpCZ)>$xB7n_0EXCe~~V|H^n^ zr~Kb{i_7N~e3~yl^UTH{ZmR#p9^Jpkw^ID?@7ozuk(X+2UkdFVLKpoaFV&oFc;mr7 z-lxg0yfy~KJb!Isl2#xYlCx`?dheLa4L4I`&*XPhSjEgj@kZm!}+>-{_p=?^Pj)-_nKn+7>Dw*%Ih8b zxhrQ$p{_I6ixlg-QTnBme^oAYt>!WCVEpgtkJvknO;QU!UYeVnCu2H!bK3K*D;WNM znJ@loj~u7P{-SG(CRx4?-Ky0b{#KrK!lV+-f<9LZC%?d@7D{iKqp#lC|2{a}{-2)x z)^C6FWoK+Z#9l9_8CqL-+UKD1@5~T=({;c0ehWAs{DUE3V`+%djQl=CNF6mDUtI{q@ELpdZX;rAqI_ga;enTj*-R@|K*SNZ?0zRsx& z3*&8ntTtPCHQaFRt)Q8qvx{CB{WMeRTkl;puV_t0jiTL$-u0jPtl|zyU)!>ORX@0{ z>*Z(Yv-!P8Hhu5Q_x1)iH@(d{Y1XlCHjCIRc*E$4k=0x2J4ScCrZlO8S{L2jPdg4C zPiU^*4qYdawBcawYS!mvKCzl+=6VtGpmA`=qs!nU56f=w^@BzpxIrTiED4ND?ucsY zZJ&3pYMyJwp{0Dw^mi8CaW08vJb3HrbesRL+V8zu>&pMConak6!;Y@pCr>Y&uw12o zLhjK_uKkP~ZdloU0gWw39hx0_Kfd(bHmgZ%_y1sS$g+9=`TGBdug*Eof3Z9C$bHkA zBd&XpOI?HfB2eRQQ^ApSi~aX(-==&JG+Xr!GBo>L4|i#m|65HUgkj;+)V=!FtDi^g zQ4U#m|C?)9cVsfpwpZJYa4V(1!~JVGgM5$?dxj~l-Td8_BPZCM=iPK zd28yHPfK2?PFw6>Gwl{={Hk>Q6$hSa6-&TPy}94BG!hC{-cH*(U2=MAZj@kd*40>k zPyuyS7S__sbIprU|NQ`|d~&%iD!`#|C-3u4s}27@U$_76*l+b=Y5lEmm5+__@+(#L zcX)3<={|j>>EwLn+aF6k(zXAv9Y|XI;;jv+4k?;E>s!dzjlRnJJs7wByx?EFZTa#) z$NrbUSv&vJAOCee;fw!Yw7*y`@ajVG(r2=u)#af1iE3s%t-k+u8!pXqv~ZquF!k21 zwtO9nmv&|Q?AA7z<-W)*_9zhQ2|0deM^^6C#Nc)B@@K{|dv9z$SSj_fB|B<`ux6jd zuLEJG+Rm}Px5XT?S{D8QHLqU2`rKC$$aszapN+cKU)QZWTI_;)^!q;ARLGqA$psqi z>fx*0@r+C7B=4&CE3MLJyWLHTFMTopxleex?6#`={;}W8FXvjHo9!)X(y>37WyA7k za$51H_N@Uelvf5V0OiWp@z<7d)J2R#i8e~UFw{SuYL;=s7%PV2?TOkx5PjP@(PcFv30RPB3V z2SZTjRHof^AGgmhdz}zvIfmFRJExZnLGrK;G~aYhL>`)==wMPTAXk{d-^kk&gd! zq?=1$_MfvI!-8o$bmcljwr2WGKe=77utxTfBsZwoQm_-zvzdKE>gUn(Y)-i~EQ^~dl3`1fDFYaj37lL5cc#I3%7_v1^1Er>Pt)~KelO^SFp4> z@5!;kzb|$%F)_B>);%tu<-Vr zzvl{{r0YDtbxh(3^FxVh|9i#v&C{Q#2mgv&RlF_piTF!*Gx=|!yZ;D0XgO~Ge8c6q zFKzWvk+HU&lY(P^l~0PexA4=_H>Xdemh8GJ;?UCqYIx;owW+h+F8{mWo~&n|fc{yl zZ;ibxJ-H`B7lcKBpTHb+C&Favy7i)do?$-IEHb8`4{%(3Q8teBo!{IGJ%fVr}Tj(Av1_C(m`>|2j6s zq1`T~nANQ&dDgdypyf>_%f;(C7W7^I{rB|O{0Q487u3D-1^)3V9euq+@$=F*YY$#6 zcyY?)Ig`iaB_ED}rlD4%O+y*7c^?4}tomlIKWO2+=-|^k?tFU2(Ami)-&Y_FaRh>f zICcsn+FH+J7O!+X8~!y~GO8(At05%EFhZ&GVEBzwD{dJ{vh)A@oi1N^`25}9+^!S& z|NQds`PIGShPzqpvM#mzZrdJb&re@_!ak#PO;(Mfoj@O`%9nfTn|aIm+f27lFW28X zxWB{y{l|m(HjgGu_Ny-LIJ4+I1K%T%w?I37X1Hb}7Ok`CUz_-VL-KocIiw9%^`2RK ztz?U_ie${MZIaKE4|;wJ+_f!i>lUS3S61visd>=TVC}VKrn5H3fm_8Z!!(cbu|3Z` zBD}8TLhl`mb@H*{4hjtgyPrxl`!|VBxT28FuD|E!)AKg@|J(0XId4?BoX-?swO7MU z{QS%|_r9r~pY^kRzFNPXIB)BmY^mf4{2j?}Y%9+z@74Tj8}dBo@{6je`#;&ApE>W> zq3iE0A9|kudnU!mHb^w`%aYYBv*ym~e-T``>`~#jE1=C}zHg73Oj8$oeB7q`JwX>Vd4sF|bq)zX%gyWAS$NLWY*)6` zsygk(Gm}4aD2Rr}M`SHn6)PDU9p}ujvT$AOkFDzWKNv5s-%@ZXaelmuxBg#dhHv5v zjn+*I&+WRL`YG2%C*Hl{-ljDvd-Cig`pQ{3t>tg>X5O*}CBT*XkJ%Z%|N8NL{;t~d zo$Du`y7g;!!}0+53ei=jXe*v48$*WQ_KRpAEseW;VFsi&omqHk>(+brOD80mZ7H)< zvEW?x_12VS#n-g6Ik~tLo^mbS;rQ}pWQ+QmHzjw^^ge!dv6PjCiDSF=Kg+``o>|-; zECP8urFvyvzn=c~_vGnwcE3NnzdCf{3HG{Ll@%{t?`W;fdTlt1J+^kv&JWTI-D@8< zKRUFzbM3^tJ-_a)EZ&y6W$zV!hEw~Q3SM>J+wi{4k`^UYj^)x&5*zU-=4$s<0pK`XLupc@L^8W<8LLis~$+)teIIOW89}~T`YOs zAWdCfN9(?Cr(FTtZ< zUaeCDHQlaHNh*GHDhkvH)jSiWt<>Rx|u{<^;Z&kpJNMce&FGyVxQ9IE;7d}7V3?yiq>V9o2`+0X6D zADT0WeaerVv7ty?VUOU?fc4u>+tn_S`Sj6y{^xdv$;JQPN%zkXYyW@EU*9llU0@;S zEKvt3FI}WXJqwS;z3!9HDfIjpbSLPVNk<}dXxeYrwy^I#VJ@?!OwBD-EjX85y|u+n z^{dK^Rql)t44UDZM??2!MYZ}YHC=0wov>Ki|HiGNJQ;H#XnFT&ey-1iCEFTY7#>br zZP=#FU_EnQ)v@gDcm7}eZvVso{qD@TDSUsIZFasIoM>SBbY_m}_Nl(l7u=C&+LBe! zIl1!k^oq`h-lr>tx%mHYk*Ga?#qzevt+<*O>;FCZe`NXJUxM3f5B~o>bLz`i^9r_# z&HQsW;o-z+XabC_L2c1_Pda+m`%@oy3hnVxkB`lVBc(R&sQh`&(7aFTWTbKQTF`O{ zqt_Cf^M!JjCZ`H`-%xFsa%A!GO0fr=(MP8~>e#@a6S~=GjdwN+%LFNR9y`u352cpS z?Ea&|fdcJ{nPqoF^LIQ{@B8<*si~g3;s29(dCs#uyK=J|KWoaB^gekbx@DT7>c_@H zAKUV4uQ~FZF4t}Jmo1&m|MyAy?q3WK?B?(N_C1W>_RmShL)+>$$u3#B12k5%bLF&` zX_F2~gGMcn!A33lk3mN)A&Cz>!d=dPl|>UV4V$xIi`d(}BD00VuL+5WIGj43sAKW^ zAFGan!qO{F|0hYO$1c7%BQfsvRx?8t=@=%DqnE^|Nv+5Vce^_6x`2b!97CCd5$=l= zOA6k0&#(A!cK??K?yj_-&J13gYZ)92mj&iVY5zXC%zJ)*g>8KC-2F=bK3v`0^s)70 zI78Kq%`N5%@?R=NU(Ly>3!IZH_0zfGWbFN4GdFi1{(nBGsj72c!c>Qi*3Yvd7o_gm zG-=n&rgRROjkZS~ByZRv9k)mMpx~bZlgbF$neL7_`fIrzfx>pckj1xcwNP&(%W}~R^ux%NSUfizYGrfz` zimtucGcC+vw$;|~W}!JOlcVc1_h#izUAXG$Hr5G~3cgsJXR=9Ly&_0P@LS{BtgyDy z%-#lupvN5t)em!ZuuMpKt+wdFuRa&|71vg0Z~E8FJ-_<$;{4z1l-ldL9sct&%nP=x z6I7jk-M#DL(SN;>53b9kZ)mA!klwNC;j)M33`XyL56$+s{c>5WV%_=^UlJW&?!JA$ z?&-%%hxfmDdCgk;nVa0=%M4*LOdU;eGeCvmyCX-EKNaq?YJ0X);%*;w?&YO-&Kc+Jg!vfnQJ;|BIc4VlI4m!kfevHf{Dd7uBQIk{54`hWfZX{J}5o?rRxU2xnV z_xW>umTxc6Tx)l6-JS_ECZ2w=W%E`aa#ny(+nVXRB{MeXxKGpMgcYrZ4^GLk_Hrpa zUH9Zz=_Y=(!5*xsal1;?ozQy4wwC0ww^Q?XylgzaXU~K1dhUkYMNh>4n=x!XWVh|= z#GHLm+pm1J)Ojd>=#!MY^{0o0Tev-L{&2{*xh%KQUp5p}k|gi`b+!J}-QULHdvi{| zQ=WhL*VZ~O$qb3!7`Nq&Yj&^*u^w!Lzax;kCX_;i42oU?w;CyK`K8vDf7ysyaTm;A~veWbGFsLt^a@a@Atp`$Ln{m zI0+hxY>lh=@w}3A?(rLX%X*J{^akFk=KUh`>}_=q=MQa$$G1)GUKBrnH794@=DQO9 z|Nri{&Heg8dH&U3C!chEzSy;$&4fw5-}3IO+{kSQg}c=cMZk_7*wClqzG7qeuEqR0 zK4)jtPP+D1BwfLL$CupA=a$|ue6Z=Og?`BD@YxYh^_g{pw3Rs94g|&UgavIr!qLFw zvGOG(S!!;*u>Z+1)!o-wdbt&*#?&Ti?``4bNc6mRR%Mx-)V{W4=G;Q#(hoN*&!=q4 z{c6|$HlK)KY;~d1;YM5vv*}a zeer9V@Sj(mne{i8_od8^`?LI?NOE=6yXW~epG%%A@@H?pcx?IY7h5)iR{asTGvV5C zP(v|bi_JhtLVZBm=+LOKA7nik(n&>rz zOgfs7T^ru>&@FVg5zCDN59Q#1ZN~(AK#6m!)ILuxzEy%pl0BmSzY>?*{ax~T&8`Ix z?EgNu|9ais>2tUDs-9J63#FRZ>zz+(Dvl_)pX_}kpCRSeMi+Bg`CmJ;YuEkqmFMs| zS95y#`9j%$U)85`9^SV)e|iWcj|X zk5&Ed@pIQftB&ISS~@mOPFP~~>{w{_YM!uDw%dHxPxM5LB~89#u}&7+5P@{OCUGQQ zy|wwFY^%(|RsQoQPCXplb9i#_`I?ib&c*Ua@BHbOHUG|+_O_BA&x_gmTUYPWs(6^V zo9i6!p_@rnd6viX86{FZ-?%<{BP&?Jy(JhRxmhuOCSCF=8bW}Lq^S|V!x)}v3PFv_1TunwbyUC zcyIAxozS&XU&l1ynwXhFi)v)~)#{_q3}kw(ocIn^X|S>zvVE+WWb<&-$D7~xeJie( zum8o~-T5n;AxD^X?+!L?>~SEUA?3zW7jv1t zzRSJk&G$&hYc4xh8P{k3ZQgpDf<IqST{6E0oX85d$69i8gPSgLG1 zMY^n$vG!5QE%9$Fm2dt!{bTw6=zgoR)0Y1WPO7U#Z@YJKJGbV%OUTQx^6swNW5(taVxYV~#}>Osbu-Zf&XV(g{hsQu2>LyJmi{uGv+tr8f>fu<5NhG?j1H zMCs#S7r*A>U=hgME|dJhbAywR;+m*xvptI^D2IG~X}qbZqO0=IzNJ?loiY7=@O#{b z_lD~G_i}ui|L3!Z=BxStHv8I$tkyUY7-Iw4^YUhUU+kQdLVp|AY<+IX`azmO_I=o* z*}k@4f{)j{c>b<3PxgGx?euyt`#-P!)hBP21uxLbhb+)KxHnozH!p5lF=T<3GITzm z>|Jt?p5cu-d(&2%>Q7mF&*NR@rRF*Z&k{}0(i*4jn^zond%bweOuzfxM z{|{f*sa4Aq(q>(DHCg3r_xJYhd_Rd8Tdf1qHy2klD=UE#Z?@A~=`zrw3e0?-XQUolqowtf~0j{B*&28>+0Yy}4uYTq=9+O!d(H zQxne_SF%p%S_aQ!p|97yx^DAua@bedlYIdJ#v3d2gpLSL5SegDb#5}x`8Suk|4-UaHQ2jCU+=u~&li`TOUE6*e&zWlmwJuYFDh&l|FAi+m%G#opEbYLsFZg22TgES$NzEy58 zd3N^lp3^;(*RB0(yI3U1$2aqP2z1f3b^6{-(-tgX2wEG^CChW}a))}%%LURq3uEke zt!r>#cvx0lYajR(I?jQasVZ$c=NU}rmYQ5FTm0wqvh@E)ZeQR3f!|!5S72`yU*heM zX-TW@oAXD>PudmOV7^KE+r*804<@T!uG`=*donEkn*HDSyF0T_+x|O$_1ga5>+M!f zdfRn0_$<7d-Z;&r+d4!0_km+qdTy#`-t{YFD{9Vu`7LOZ8|SjGe;0`ao>BN~=?V5s zue6R^rfufgP4gD4U;x6}Tw8bj)*eCD2S z+ZlxZ9?VfZ`a}N@+kp+=18lzpFMqW#eyi`sPwN@xeB5vMUEtU5|I^ZKD!y*4&=P^H z1lU$5aBosdA^Y2S9y7PiGj;{NNhoYP#9R~+MsL{ zq?fN_@qF*2$QJc8x9><4Kc17FQxaZ&rE0D3tIBON8G-`8wk~BmbqkcAvhIfdouyuL zY1KaEn}S?fYGUVIn<{KP=NU}rlCplBw92UhS>hY4`uD{q1KcnYX}sf89F+ z!=S!b-_LfJ#MEjyNH=G%b2xRML7?VT$}MhCq4&!B@8$Y!;oWmSF*j7#X5K%p7QKD$ z#k9#+)wlEZ6(@f@B7FKHv`XH%=bRyUNXqcH&5c>0-EGh1iVDEvQTx)TICY&AV(%52 z!*aPQ*Xz6G>#18=SXn0&wFcc;@a2onA>pvHU3t%r6@G;dy1)JU*X3$?YDjJ+FXNJf zlBXd(vfeu1z6hIQw$BwpwuyS;Cd(eJ`gldnF;`-8+W)U}es8?_i$^?+n+gUFSGvS{b4&$0FJWhpeXw)QO{vu`8ogJSM`|o|6%?M zT$e}mMc8Z=Jv@;$TO+9;Qp9XGxHvzqjl2^(PsVi8=Co~5plQU^Yk|A+m$3gmFyTcI zXp*O8n)<840E_dmwHskw-iuZ**ufAqS%+;tkG6u4!=$yluf|zRm9}K<-K7?3X>-&j z@w$=JM!y|G6QeS}-T5^=yzI@d*HibJ2X$4wdmyiA^Xm21pO)vvpYJJJVjtl9Q_-Qf zM%e!YqXYZw`7iwcJ6kPoKk@5U%usV=)Fmwmu$_rzx2iw3;A%#@2Vet*Yq%Xbjm?jZD<|3QSepd zu}*`PX5WcPS41XoC|teu`_Q#7LMDn0A=zolZORhao?CY8-1@*!yMOr%b(uYCUT<2o z1v9f}=|=nC{*^wz_Curk{EripGM8;;)1CR}*U_aKZf5;ea?fnF8u%HiMD7R9lGi9z ziLMuHeW(3=d;Q(r`Sv&WeZKcc#478mQ|{;N2R~J&DYMBpFa6g1VVX+!ZI!^o;?2D8 zb_bdk>}3OuM&&deObuN8E)LeB#nRLAC~UrT89rmxSKYBrTS35KN9@Pqqli(@WQ(Xo zP-%U2`RR_M#^nP34nYoF)4%ks+>vFowR1abvJ+Dm>-)~-|C|heW_&c7Yq~<@r>bi7 z!w=C6t*1KmYZxX(T<9rT*1qwRY+XP51!wQ#$D*IF7%hC#nXc1Y`)Kc0S*FU3uatPp zct9sV?5NeOE3oi(7BknsZ}se0pfYSv$m(ay8d%g1KDibjwLU63bw-HsZ+KC?C#(8?<1w+s@`&x&G+gqKk?VY*d($=!R%Ul_kC*-av0x#SCYN0=6 zZQRD{OHo@s2CZRHKNw=mb%2Ru>giRU>R*|}%FXhK_TOkNvrj9mQLTm zsHk&t*Xn!PX6+9%uLze3CDiQT~pI`;7Lz${XPb} z^%YmoNqx3dJdy7p78lbT+VJn7Mapj9 zT$wXxb$`^X!d1x?c|Kut<}B~`>biL4b7h{-wK;QE_eFITGN-dT9GxIr^ipEp?+tU7 z_d6eYx%Z<@Wxr2M&r`b(5h9BMPAm-w`TgRsr@@iTL#goiCQ}do*Wt-`)pT*lvVLB~G`~(sT6zs9zc9%&JRu&N}N0 zU+XegJMoSBNwlkzuQc{g1or}F9#E}iqymqK3lTtD8m zLvY0c?&Rx<{j==8wjLMZvnzg~{B)IFsh?T=l*MtsVtP$;4$5yZvv?4palz{kYmVjG z8}+F{1;wv^tuEeFd9LiM{vYv;pZ5Qp{d_{~zw7n8{r3Ovv)=!>IDUptcz)oIHR86P z4a4XEcyO!DrFr#K9>~CJtLMk&Ba*X>c2vAPXK3Cx>ty8S&ru-_`;5&M>#C@!2UmaVXY%m0s+yC|IB!E}gk~SdZ_vts!@IV)IWVj&Jn~@iMnM+A3q^l# ze&}=R3&`z{nY>13Uede`*^<2x>M@-j!WTobw|$Ca7QK==<%4$pmsidGJD$Goa`~6f z@O9#)od3ECAB)8i^~b|GX)ja$dY_iEK!&HcOYp|% zpKBVqUYX4Kpxjsa=+wL9xcxkUOwttuMK8YNId!TLix|^T%A7uL;yLyLVC(>>PqZKzw z;G1GZZa&VR}(-{qmj^#ex%$8N~e2MANSJQ;Ueljb{0xO7(!$x+ ze{u}}C4XEs*S5=YYGQn%*}Z*1XRdbX`_0)Qq}{;JAjEx3QPw_Y*~UNH8T)MhU-Z{{ zH90nRo%%YjO%jk*bKcvz%R&27uj~}Dw~#SS`4Kj6_xX((vwWw6W-Y3AEH8dvxpJvP z0AtIvZ8GEDJht zDxEhZV7VYC|Kod=FPfM8*IqPyo&WdlY3_zPv4vtk?#lPRI{J2H;kT8Q8;rFU9**7m0fzgb9s*SW9In(e@?x6HE-LgV|K0J5&lnl z%52_Gz-tB0o~s6J!rD`9sg|qqdUArxtTWu6uRF8E6f*bD*|8#uX#<1Pr}XQaCeNC8 zwE7Ta<(%QID;t`Qu}<*XB$2cBeV5@KjcjgdfkRnmk3t6pqSkNo)R|Wa9TZqn>~qxF zH7jOo=VsPy14h^0+o#fbuRJ*C$;72x-@N^yM#A*iKew~{_kEo&BKEhrKKt{;|Ben$ zAM9C9DF6HsI^*iKmv4T}DOx-I%bshW)}*c7&%^kK&7mpQr^0!qJj;u@g=c;|JfOM0 z^7>CjP&0GJwMOyR9tAC1w4P;xTLT%ah#fcg9FAHecHBU>w}Qs8re+K41Td^LbI0CK zJ8cMUU;c{RzBmv($UkZ7;ovjEWx9(6UxONDO0%-ghS_B=XtL_{*fDkY!P^B93$?Y~ z-!8mw^6!85^p`qLK2M%+G>|s?`Qp)@-pJx}bv?404g3sNLS{|V%dq04k3Wd<&VEhd5e&4((*-f>Qsy0On=V^EAyEGsXE!qgnZIBM+IxQ&)P?u+{- zG;fgeI_TKrXfsd6f5*KY>DM^Jl`grMOl5-ksKTPW%PD%>Jfqsb$KP-Jx0?S?Qs9n4 zG0mC~*S{Cn+`6*bPF;ST9H`*?>AHM&{N9Rl%12K;6Mz0`kD=V>6U$}H?(TeDb8_?B zqZUFkitlb(9ZTp8>6-rN*9y(IrV{BMCOg(tuV8~s--f92ZBmWkY?~#?bnd#dPqH8vsTz*bdZ`TX+^-Jq{9YP8?9e*$=6a@?a z`?Y_q@K?s*Vy*wW^$%6~<7fJ8TkUxFn_Xcai@S$@@*K!0s@Mf~*pVK`{szy5u3)*g zb&6Bh%2RK)f~I!A-kNd_d9cdyq0Cter>Sge%I5F}_1&VLgX#ylJXj{&nw2SZ_#)S9 zkFpl2zq4dERy^Z*_EDwkP>fy%xPPED%ZpumzG;BtTsM_Fr|v$;wODiELBsS<7nJLY zp573S+g0>a^~?7^KXnfMu}PN#74IjON&MDupFf#D+@0$Ib3CY_9Qqy zYu-uwn`Pb67nc`4U25m~Cc6hTxbL{w`qzPDSC;%+`s3ik6^gs8w;bD|scZRS(xZ-; zuCtw|gS<5t&2aoxJc&j9;Fpd0mu5Zv#nLU}a4J^*gX=e5F`A7)$;G!mE@3+cgqX41I_>cOckS{au2bTgaQipw1>?ZxE*9zHvF zRlWK0^!={yzc#=ByfTUL%el#VcJl>vZ$A;Au4u6C9VkiO&Ai<?O)!MpmP?Hr3{ zv3f-1^FX(z{!Hm%eZD6g_n7Hg(2&*Dbv>(e*DE%dSiq{|#qpDs#m>(GXSNyMti5v! zRTcak0xyF~exza%lpH4qtWr_G|I*NvdA?rUR^yX3elw8^k?!?BvKe%b7%h3k%+Rc1 zyYq!&fPUSI6UWPvZJrgL|8-JnSL(;h@k;~liCnpR(D-X5KigU1r4gEar@%|{!DCm& zNADg+>lZBkBQ_}^9uO^X$N2L0+6 zh4~_bre1~=CGWPXX-sNZ^eWI)Y7cMwEZxnM1Aldt$^N@AHTeCnMN{+t-oCf!^0Avs zJ_s`ZoawohyIj|;c;6SBZ^=GuK=-Q%Y=(CB<;gJy zFW}3b3|+6!nwyyy^KS2nZTmn~v|Ew?WVtVA-4}U-h8hKS>AKqTaXpXRp&pZ!@LTDq zSK-N$+?x)kzqG|b=g)$ot99%u_JbxXqSmkT4CC`R^uMvS$8C);xR12T6xt3{did~; ztcaJJq{kJH**@j|abKQ4KU?=MuRfmR;B%2$l^I{&HU-DCJQh8`&hSyH?BoG{;j0-p zs^|S&l&p5U{NCP=3078FlUHBv;njY-y?D;ThJ#B_=fid-f|le5MRn&fX_~2?J05zh z*0aqzia|5-SkvZr@ducgf_S=~?T=rRZBiCqe(hSs>?@yhj2V|Kdd2O{8?seggBN|5~$XUAKI$)K_oaqm@;C<$e3v9!xzktAU?k z&7~CH7yRsJL*>tBKfc&s^^3WC&&rj-Ur!nxt+msP>snm5BtmoDXYi=i{jez?!P|?f z{!el0l3Zf1?pYw@^LlGx^HGhJ&|a*^PAAQEuePRSes_(!+_jm_?ANE3wP&9nD^$J+ zT~AeIr&W;Xa$QV_BQfjs$Gz8Y$OyY{UN+%mdUF2c?8gfA;Ivn^^+Lx|@EBI_q=S7f zCZV><^Djm^HubQG9JAuR*LIjA`>Btcq=U$WNAGK|Kje?H{IlZasnYP3|D_wM{1zIS zY@fRMXiirdP7F)3+_ZG-vMzufj75 z(BXT`%}0w%?l1Z(Ai$xpWzU-Lsp(&3y31QmeZ9TUqtGzB=U~|1u(sS(-~9|h%AL@* zEy`j7Jnf7Mi*okXNr7xatjjD-4cV5jc3;2ei>&>&PfhJLiE``DsUMw_tL4A#UfW6Y zIGrnRp->b^nPnh&iQ)jw(rNaE>GLv z1~SMqRIr>9xF*jvZ?*ExS2a&tp6~xvr#<`Q{7SDE>W`im6^5j`J7t!T z`7d9^$?LD}Fv^^~`hZj#cu>o0@wT%QyH+0yo_#}W_g_wpEY>wO*Bp4?%~4rk@X5SF znooJnRAb3hhCm0e)%W(E{M>YGSG%mIJj0*7kC)DCnxuDRy?&ZwI6MBhxckDBr+j|> zPcXk>*3T@@P_qAeiSTOi^OZ{^ZvJ^>+5cvJ@9n(O-Rz$xyLRU4Y4&A%p!e?K%c?Z) zZqKk~VPWFX)koU;c3E6gFRj<`#;W_L4A!1{BkYjn0xkY7o!=$fYvr^xE*5vM-sRBY zoz@ytdW;%06ppTJ)rb(u4J|*tEjYaHv47s?PqUuaY+n&>y7<<+0nqtvSdosi}<3)E9xfAViJN3a{1~z3Nv|ZeHQh0mU)d3c)X6)d{UEg1i!zb zzeR=b!M`jsXdl{>idgwDoF7OZ&&N5Eaf`1oTG0~N6?s&juS2uykYYQ^ozlk1+p-9CR! z-p-{_+Rr*CCKW%<*n4l*G?wn@sTVTzjrC67LRzjIQVnZC?39HK(LdWOVJl zj@qdLw;lr71X!1Bd3ATTjsA_yyUKZm_ZRi=*N7{LduYtP)y-^rSZ>$K>AGp3S4Z4% zV*S9_5MZI$lb7~aNq+woiQg4VByMW&KDX!k&Oa^}ZN5xOm=WFemM2|t+m1@fYlS)% zQ4LGNIiLOC^j*#2drElijoSO){{Q=3|1H*7xz}y+#SH0O1(v7@jvS2+Z3-J0k9yq{ zDHH9>6_H7rRFt%W>xQVzq(hpIEmD^|&6IE!Ic4};OEGNi;!+bSUE@h z1Pm2!pR`smF?f@)B*){!1WTblPGeQs$CtUM3#=6IwYq-Dp|xP~`Rj!{=JL)j|2IQI zwXx&Dr1=h9jE>udzJEA!eMR@W8=>*LtiKdD{1T1azS3vY+pm@kH&ug6nH2V?S#~^Y zy35SbyIA|ytuotdTdKw5e(}orrFZ;RGKh-tj>x`z(st{?qkfF$GmiN#IQZzGpRCa| zySBETn@5sZQXFP|QR`P$aVWUB`&MTAvBZLjGkAp9j$Fx#j#wUNC%DgW@vQi4--!#Z z=Utq3M6iI1$Nllop5{*~O{!cm;1LBALE@iTlB;$ zx7YW~iV9?Sj?HCSckzV4sRonXNf|NvzZECC9J+Jm;P>>57|&c89cK&XB(Jch(h_O6 zs^y($MGmxBKJv2Iv_bHB$H|LQw=|As#|iNt?0m4u*)3XAj^|N-O(M4Sp@(aO=9!uJyqO za^vMWxB70kX!EYFwvGBP7QVobL1g-d4hH_5y;(|o-{!9W*IEBDY3nV^rRNoRyS7^H zGxJ|>!M`*8#5CbI{;chs1zU;?FcKY~@4GCG3E#@t@;_MWTnH9C=KTmJ>vzubqZ94skoHzFt%3-uA7_@$9#EGr8l=)qZ^ND1d?Ub>Sx-#n_^m#(5j=m^JSB zSfF0GL59ct+Jzlz=59?q9LtWas^?tCB7Md%<3PsY=QAd378CuU-IO}PKtZipNN3WN z2fWuxde)@0GrlaCRy5%wR7YM5YJ)ii>upWqzH= zn7gYrZ}XO!Tl=?N-`37`#hSsW>(=M*{{uPYzI*v0OV0e?fu$_`#ItX`FIKal+k#6BrF8i=gRl8Q_!+j{M?+?(3ZOf2x3u~O5tZf^nS zM6Qc7s#tzDu`&0SaXoZ=$Csb3z@aLAM1#|XMSN4Jv2(J_^?g9HYsEF-7M*(lKRr8)^*?1wr(yy zrPejqb6foG`9~HqyX9GKGrPUzV6Gk?=gu37h0RBAu}JCM6MJR<#V$YVq=p7_(@Nh* z6@9OKROT6&n{xbpn6z_8#yrJ|vkTRiZJx;R>w`(h$D|hFgG!y9xmImfHxnIX&h7gk zd+*$Vi9H=JPiS78{NR9q%Dk4~Lvv0XG5vl>)kVuCS%~iwD=(YWTaiOA@7S^mEmWN( zaCedENh46arE#WMc&nBCVw%HXa9wAbl#Jm3TQ<%`BKf_*sYc z!xM+x<|wPVXJ;%HSzifGgx!3Sxl1byIu1Y0aZzRIWfI{lpP-*n@ZcgZBbR=C`*!08 zt*N|SfkGV|dXcv#pA#tfFvByjmCsqFq~ek4t1qm(Up20`;m!JL+Oyu(^w%#p?Zdfu z^?kM-(iB}G%rHgk>-)w2EImv7#dhDnQLew^hpM6GNn`Z~0up_#SvkeW3X2aPN=ejB zUp;%x-nR!178=~#8L4FX(L!SJM8-4+pSGAc83mk*oSRoV?>08^JFee%S|Pz<%bjJq z2gQ?TviQu1xaZ+=O`x!6hRoW9y+M1PseV?G5l)lsyYdYZF|P!ka7*!++|q1e-)X&P zZll7K9D&6u0)jCocAe}KDA6uF$t2l#+bd&han#@G_T`Iz9j|}8tvBoUtz&*H$G3XD zUA%qk{I`pbPs*(oNZ90ZY@r{+j3AzC7ul`Zj_kX4t#Ke?;!ZC7+Xe<39b` z%PY5foN|@L+ht?EMMvC_2W{@^?2JDQyipbPCl+GYl6x~?hTc6Hyh%t3WG2ouMOCyMjSM?#x@)`8-v3o;RD>?%VYv*S@Or*6rP^ino=pU7OOFD64y&I0(BnDoo} zag(K#>%+dqS8sA8=WsJ8J-B^n5rgn;ctKc@l4yI*q9uQhT(En3&H|D3J3VbUm$yW= zD{b9d$SJ@bU}4JfiItbnW|yMF!>6D+V9$m%j)GoFoELSy>#s;M@yQu$c^t4<+Hx+g zhhOWz`G#4qr+cuf#H~{Pa#dut!(4`r(DwAp?6uN!rQEBlUHj7BoXNibr{?}@sqdwU z=PdH_BHrk%d74u?v29O5fea7VELbz*cSpB$sI9Q4${AnTn)2}C0Tenrk%E1 zZ_?c&2|M@Q+j#ri*WPm?$7^fT7`1z%8m$-| z)`r;E{d)3Y<8AfsTf6^Ap1+>nao*D8*g*wx@$janN1h}^NSQaXb%$@@Z@Y40m1&C6gSHj+!P*KIb9c8pBu#NqLNx4j8fTu{?6qv_?|%n- zUp)(#S#|r~=MTpgtxt{WJFC*Tu4SLtrQ5f}kKazd6?Xd&*A>o&LriIhzB=}8D3jm* z_UgCDxAUxi*T{6}-r1bOwZqXQ%5hEJnkTZ-?8gtjH~`8uYGTR?%$KI5YFUW9zWPe` zN_EX$p_rHhY1tVvZK9ng6%rkM&TeZp{hGv;aLDJL+CF2a`wGYTEgl){<77LNqPVm| zw&Td;0zJydHulc{gDAot|ft#j7C+jZc`ei<3|$#Z8ftv^xW ztK;Utw&dglSR%VNuWYyTBsv2vf?qb#&sd&!1Yu61zeU5wh$1IjOvNu3LBs=A!HUDkc|!JDHN zj0y3_6*ldhm$~)CqQ54Kzs6f1dUYwB^%YA)PU_c2pVX~?H?H4ay8ou#XW#q6d;Z4H zH@wntD<9G@ol|kH?cBZlX*;Bt_}rR7%>+o?Xr2x!&@fwJni28-XG`VVCqJ!C_*6TN zq)aeSSeA7Akk!|ujsypvbGw2MIUaM9QC8D6yy;btARy#_NHfvzS(5b^NTqX$7t|V< z^@by$BH3ckxwh+bO*NdnRTOt^{Pdwo;lTsLy-qCb>C*)ko6V7unO7s{a_PFEL`eMY zEvyfA^ew3UQg(ZL9yh21!69zqw46Wh?V|0a(o*qnW6Qo4??^uas#hW#*Q{G7zw+q= z3keZpm310o%x4-*ez$i^@0xe9qEkia*)qO;_Rf#Dv_TVB>iqCo4k~8NEsPf@`9>d_ z*xGC1?&FreCb;YR9TmAI;e)R2KHGv~`1&_bobsSlU_n7ebB$v&bAKL3K*dk%J#!iL zb+QA%&C!#W=9S!Ik+I1OlDM2`)@kthy1_}SH}bn3=UQ!FEVt)<=7Q_jEpEKBb30n6 zvufLGF~d^9H3#|>!k2o5Gw`SEy>+jOCpzX$+1BD;Z#G{){BeJU+Scn9Nx8YnN$E?T zJx&ntK9(sceV{VqY}UsN+lAM}{e!)eCUgsXONpQI?3eDnVEFY)^DWH_S?0TWcUT?X zw*Q?qUnB3^+j-3I(ssOEzrELa!Q#KSayxE>^ibdBNiH)0)gJ zUX=9BWobOv5k2gNXExmQj9oo2MT?)Us=D0pm)$Yjc=2RFn+fT^1`)N4-~E|3+g1QJ$Je0oMN)er=5dm z2j@kJZwm1j5*A$aQ=D_|Zm@!26sRhWnyjPDB4d*_?SRkoNY%+RcfZ|t*6Pk5u0Ibx z1xs62*eMUJNm z7$`*L{d?W!xX$|MMo?RD@jhtHY%LWmEhHn+e8jmxX~&YFtT#b6bMLTpuxiYa0(C^# z-}?I6l=ehyAW% z6TN-idRvjq_1k6ghNUkTGLzA zCoeYLW~kw=6mdw#dvWsXR_~6Gj$=<`U`^Z0JF7WV+&mSOcDQ68G;+GI_DE`{YD3yo z9>x0;PKUfI_{4LMF(LkZf?L(?bLVzN8GKurlKI?lXWd)|iL~ik`K$K!=B~J}Vg2#a zb(8!5pU>fy;bA*_ESG`r+|7(2&VMHhOl4$vns)9G(os)qPGpdrux#1n{w}?eFC!YWhCKeI~|cL+Ppq{P2y$OYFi~A%eI$SI2#gQz3E=$&vAR%@sibH%g@E6TNj+4pfl%b zPHC>>Njp$|J3;e7kK1L>X&VYpl$3kyym9e?kdsi_a%!#fVkyv#blJ-d{}Gnko}FlPq1A2iF>5S;pVu5^6C zFMj%Hr))M4BTt9s?QI*D#rZJ$%<#B3>&Wtj#@8e-yx4Tz^sLar>v~J3f!lSSR$GGg zW1N;anOI%@@H;wjfzytQ&tF^IIoEc6wz(R(qWviJaUrOpt+iTmEN!ZfW8kz1_V{!9 zRbRKx=47aiUEG}&|NVvsC^yGH&eD!(v|?0 zM(1sfyuh*en~&MMy~IW`k=I?!?2(M&%!rMCnsLRGD>(dE#AS_cd3{U}Xg__k!;3?T zRYT^TLi~jX2Np{+iNyWm%TGVReOgKc+)v%KMSU))TQ_+TmrUAJpS8|mtVQ4cF1`NX z>*@Ise|||Fm&)2@v2Nzp{(E`9ujMWT#l=jgSIpB6EvqeEZCDk(J?r}+@A9kn{+ULm zH$KfNE#(P1eX!6#BaLf^o3gV8bJ90{acijAn21`>_#+gn;h$Oz#g$ z5p0~ykDl~MtI9;)=qNsN<>G5;jicFqM*fEk6R$n=$c041GCo*u0r$w_VL{=8|2@(t z2e`f4_B!aZ{@LGOTCeAw>TsX9Z`;P-8SC6{Ec0+SFJ)2)`q(p{p=ZO4X1UrgoD2Sb z?R+3>|Gn0}s5NTsx2?s?@6MTXr+7;9C;i!%i-sa`^Ry=`S#U!cmHjxU3c9>t1dp?b@lO9 z-8Bw#88mbh1pCUo%UBwff{^!HA>G9Vk%$K*@dC%H-#$HB;y?GP7M4C5?OK;bI zA$XV5wfGBXPOs$NWtWROa*Pz(a-$uUQy27YNR<+fXW9RuJ4U9Q=aQd=6DkDn1bQSeRmiF9&+ zKij4)HHF7}ET7-K+kIv0dE0>Ux*vf7tJdeg35#dG8Tnwwy=}i|Fu}U&7nf*Ey)$2;b7~YoE4l{XM>)w;$iSo|jv_BLDa6x)aysuJ0?$zFqtG znE1a3cLl#?#TnHoNNi5N@wZ{Owh0Saxrmp zM*Qxp+aj`m-~KDXmb-2JUH^w(8_MRKD_quOeWSVPmT zN$R6V0%wkPJr-)=EPhcSX=AUuBtjoNmVLAI5{uGCNfn-sX*su`mA{cy^4y?3&(y%f zJF$>?F=S7E}fQI3oWX(L?qTU>ryT;Np?Dy}qXFb2G3{=)xh&4AbW@g!fYsZ^* z_vYA%x2xPfFl)xL$4i9oCOF9K6WYTu&GS&p%sbv6JzO4jSm3DZdq27MwjH{y*--WK zjbr=mn;Z82s5SIb61>;S)-Rpy1TJvTcLkUI`@$fytZSO(~eLQSf+&r?<~GAsLAl zaAiJu=M6sSEI|nNgl z7SX=+$(z%kuS9-!RFg6NW#zv8Ei>owTAhU-&GzM`hkzy)MY>;hv9GJ$aJ$xbh`^M@%jU*$h;JJ>LLI;JOg=qEd71vV?Qk0sUKLIotma$yG@A*5$3E=LJ z&|22h;3+`WX$-SMjaq7)^}N>{4l2?+Tm1iq>e|C@@t;kuTTSELZa6DXH+aMB$I>d1 zs}}k(oOoAhBe9bE*R6kL@o!`QuJP7%xl=s3Iop6of%(!ByGj{F#-{G?1`<;3N-jx8 z9ufkq3)aocEWEAz2?JQd*G-zJt#W`~42M({ppxYZZsp4wGh=GA&p$Yag@4krlP2tN(u4mUsPe`|;+@ zY2R)x^bE=ccN5)CJt+ju5Zt?KWWwhP9Y#x|dM`1H*F!YoRGobBydMUiXU7+=$g4ho z_?q42>(;wmg})u2)2Ui7ch`#X!u`4}{BO!cw!FN$ZRWIC?v9TdyH>}&sjEJ-^{uQggGqYR`;rShjnf!2 zXFwL4d<-kikm(YDj6%T&@m)Td-Qta2A}lCn=*kg0nT6eGQiYHo=Voo2jaQ+KMF*rZ zOLGE;?!=ZCVrxC834$hryc3pvUNheUACO<+D}wN!9|3-PbL?eT@Ab zz0zSW!ws*S&5j>gGW{l9J$Enim8|x+O0kr05^cv8vV5Gud8p-P@YJstF6@|e%Oaw! zfbGbYwJfh+nDu<|6P~Tvz*&4`YC%dO^SQ=E_v9?+Cg$V`pl;ms5U<|YuH}J<)i z8D1=0!Rb|dAUXSc?hUWE@8)e~-ymUbG}ABB;qw+O3a5$?p)d_#-`OGUHjIreY^1mw2zeq; zcN)z}pB}K5aV3-Y&G*IUf{nH}JO6PIUSIg;wao7K)@v@T3%yZ0KVLQ()GDaxYV+?& z(UDpbt=0PW{ulo}AJ;$5xtZ7FFkjSAetvJav!0$=2e;I`!YdN zg~uaUS$&=4$=4l6(k2)v%sm2KNVIbCb@PC(>vNz(=snwlY$T36EHYap)a1s<)oy)4 z+{EI;i#CSV>HDG6PDerO9;WNO^#o5lEm`5zepB_xisRq{_xY^n0hMoMZhl?F7evp3gW+aAw-y1o8P9a}@~$NcYKJ3Er2R&INp`!+bb5!6>~R7wkY(H!ag zWn13tk8{1(*-S3p^8ClE12@3U?9IAsFF#M(X|eH_0gHjcvbeeq={rH)0=WcTQ|L)lN+*G_>YEQ)b1*>N~ zc*JBD?flqajfW2#Cv#HPHr+MB`fVI+N1m*)hSu?yj27o=#!a3KE{phFv#K8pDTpm7 z$O0`XKwBQBGzGNsZQ8#T#-JhbkO>WiWt@gtn~q57s6MxRZaMW%S($(3Ij`cg%w~6w zmuW>-2FY-1BYZcS*;eiZHmu7j|+ ztx~9ub2FcN7IYk=6h4lDbAXTM_)XO*k6gnQZ$~p8VBRjufV~otP=SjThN^ae3*)A#2 zz6QPwD9A<#(q+Cl^A%*x!t$WPH_%L6v$!U3@xl*fTnpmtsxLe&Gt1Ghi|?7_;ZpKg z{fZlCq0BZ@kNop`if)b5BAS;zv3YLue8%l_e!pkA#VfzuR@>CB#{6YR-t8T`<_0!e zF-{0vBNuyj@`DFEesVdS%x)BaEn8x&ykkeh*=rXpc(jEkJ05D7F)Nq*^_6bLCPqWc z*M6MrlG24eGqxN_(LUJd2rgqRXLi560I6X-&A|<$P09`rdoMy4{h`Hbz{0|?lOk7= zz_oVqx#GT^twmAy85^!!R_R(i)DBt2RLbPAYEtaHZ;kKbo~-{{o19fzFyX6c!v)Lh zEgcfd%ks>wow#5jy9=6WyZ_(R={u{EaLDK04NdT5FKD2DOJLXaJ<#$5WlHYFhbqgx z&9WIK4tUljf(8kBHuHI}Jt*{PUU6UXSzYz@SNnbjOs@PUe)z-lyXWVh7mSrD`odDm zlwh;_MaH3o_XnysvGCtrkT^Hykjxqe@%9#QXH(c`ZE}KxOrOvmiD`~U8ake??evgh z@@q`=_03bQI3WWX%$Xx>1zTn#h<7fcDQ&udVgBvhPSXglbKsEkeEMZ;zSYuufB)BA zwL1HieZj7)YIlyU01cvvt^t!^Zv%63lzg=oqQ1x&1J6E`}Nk1SDDi{|9xaeCxwp?cMj5Bz=WTZ(+4Q#FG?%W#tY1Z+hRu<`pg~VQ>3~|ERfdWzzeF8sy zA*+r5u`n%$79nTA4OYki0pI$~4@=W|yTFZsH8y(`I4mlB)(b2=7^xZ@Fj@6lqNe3} z)AN?kOsCE{7jxyGro*Xj|Gh7khjhLSR%e*e%6;IE_!q|K*9?-b|G0Y2@$|KvqVvUi ze%TKm@t!L&N#2#}z>~=-=IQl;cbeycmYI88w^-*)>}|MlprB<%_M`_6Vc@01mwXQy zD;>Rj(zhX^;m}D7JhlCE-vb99tF;=+rcLHBuIG);lASi;`<&uA$$7!&UjA4q{7W_U z^0XNJtt(!sEoUlaY6#w1XSn+F>bc2x1XS1a$E-OxlP}hm`O$>wu>O5qm%EaX`w>lY zy7(NkVx5lc$=wd_IiI&Yzw@ct@|qGo_V!SA0ry z+Ub8AAJ3k?;GJpz-&-NS!HdVYc%NDRK}r%&>SbOSg*Z z54O|b(sk*r%^w&yLfh`mbGQ{H4ysNKN}di~di(H-0-l(|)=r!E{LZJ@-gb9v`1n3* zGc0_);DW_t*Y!>-KuaF4czyhCQJm6&BZ?KTnjBcSwYhZjgTgpf1?Yi+(c@U8P83h>XY_v z+iz&enSS=PUGwpq@2lnC$}g*9Wmw<+>gfLlclWsr4@9l&80DW`Vc&87@Qrip!+zVb zznWp$@7vy`^Sgbb;5ostCi95Pg)0_I^LVtc2hHaf_RX-Ws%2hUan|#ZqJ>~g$%zc@ zqs@*odg;nqiWwpc3U+`>1zamtKr~^Rws8xGtmr@Y$CA+opPd z|9$n&>lJIJPkAK+s&+W8r*U+@XNg!jckUBshQK)>m+8%9EIi@;;b??P!oHJJjvQl} z0xdajx^L`-46a2;$wot_!qlE?#9ztK*fW=D#dLrEvI=YFTa)iYR?q%%aq<9ltrcyB z9)sG~8qoH&dwku#jc02Gm--YOjhho760~dR4q>9Ca zN#LlAKJ|Duv=n8++nY+WI&3kGKZgktMryb+{fp%if^I9hbi0j&h@tT2Ro^3R%c_ zFKAJo^mIsvStI_+iwhOzTo2>?WZrxzV`~c7m}kYwxc9bu(?J_#amNBcf8EYPlmcU1D~%(VKT`gZ|r0*|ThF!bTZr z2{6Yt;*{etcNx%-7ms)>phQ(OhLTVd>Lu z>ojmJH|zS2__$}A>NP6gypijxPS^2|oy+hdeSWq6JLQEv|0^qwFP-CU7QSx3h*+gh z&gG3aAJ?)iagI1NvGuD(b(_^M4Q5DHJEf$@A2N-o=Ksd!=OVZEW4i-6z85`8Xy0xu z&@zb^+#r^YtiA*uchOvRA+e0p@YP0eH)rQF%j8|CFNQ$hSZ0?)t?4 zei7!r@+|`>sW6K~YO#FZbNQq92exdhS*CZ56l5Mlr=*A5vrGtLwsl<_&87BobChCiYzb(Q;<_Un zazAL?+4-Yu@|DjMUx|C2ec-G9eId_%=@1FF^#yqQ2kIt$q8@BKB<+c!y9Pb5jM-_ zHon&K1p@D$9yy4%tz*(-&^{^98t2Vk%dRP`X7axAz4&}#-_NtE%V)V?I~`a$uZ;B- z%YlO5{UsaES8^=yJ6QR)$ZU)Io>T{!Lqav+B@>oW$#`}#L02ZDwoREb!cGc&;@zpU zkZNWm68Hd*_+`ynS7Jfy{Ny)U>6hYxCwZNYvH0^8ML5>F(dy zE|uc48GNi;za=`zd;(AZg8Dn|%Bjf#^ISHx%$(Hs@g;camD=3Z4hoE1i!Z+et?qmq zdQBX>;p3Fhri-81Dp%m#uJrM&0%k znG@C5Dzq0q+gHkz&|>|==CMGU!<;kTA39X$S2j8{Cb}zQX{^A;68H5Tew*`S&*$Ti zVdOt7K^&mEPBT{Z+fCIY8pj~xTXUYv6weO!3qGIP`K!Fl-}s)R){^6(72ES z`m0rY_XYR;hi`dgLY0%OioCw4SQxN?lfSxA;aOMi zko8!kYVhj`p^Z!5{I-1l^7L8rX{8A{7b{QQdb{bYD*u_xQ#*Ykch}lntt(`G#o|!N zd6VVak%qhcLSA#WtMqjQ9}&57*UY0pK^+{}+n2g;hYl$H1g&u+Zs_&w=4Y-}XSTmG zX|FZ;DsyZ}efsgr13#bLP>KDW^VMQr;Rh?mfPKYZ8Q0t{a!b&#%|H30Bl(ESsf{A* zo57>$OYr3;`+SE zmCc8p=c{~r9d^Lb;0?E^tn?IhL7l|DXBW+&11Ld#7_;@Kekp(-9~;+n)8C$>Di|GW%G_t`RX6}yJ7jQZO&IY8*<+>`qzBgDO}hy!$xqo z^U{j59@J?%SI;Xx#a}%0^xNOXxAi0S^^}X|eX4sAzPonWOKX;2y%viOCvj+&G9`3q zr5~|)Z@s5BS^8W@r^r@N6q7zu315nMMM_8U{m$nW$N$t={yg^Or}eY4RlDBK^0RDT zn*ILSdi_^#ZDW2jgEp!1MC1f%RIoYx-v8@erE}6N3s1tgrnoCVP7?>eNZB+&Ht z#15pXB!$D3Wt>-~CTMM#^4IRV&GQ-8?-b2)whKO=cN!rQde?>3#~x1x1!QrI%jsK?fyKIY{9pc9GbvFld8KKD(>+KvthwCsiP2M;Rb|g+ zCkce*|L32UX5l=SL1NvtGL_m7udi*Z{4KQJKBccE`OurI@=|ZW72mNXa%kgxC~ct= z1@mH^wz4hZ(n;Na-txTVGqdS)o=rG@rFg|J&wSRanR1{;VDjyL>)pSF);p^7wFDoU z6T0)>4)D_KC{VWqttP|QssYvQ66(JiCRo0iKkIMyss zEn6dd|Jbr+_Tl-r?w7wjT+zHUk9 zE9toMYYV^=rpHbl=5A_eKK_MEP-;%75vyq=xKjlkVaa^8(MbDb* zWv4N%6=wMR?&TlJwR86}y9+%$qP)Xm%0^yIz4qfbJ6!p1vuMbC!rO_#yrtY=6ym_pa@=y_cecz30I? z#D4`r>r6|-p?%Qd#mo;*|mm!1MB`Yp4<=X+3(%!IeodJ+qf^+prY~7 zmxFy4GRJSv@3z~^!n-;C*}TOGbrsqF9_}qTSkJ%aLX!OPMVn`b)x592Fl}$~8qV7_ z;{W}8{B3G@E$YPA%(wn@WIex4(as?L_|0)2-!Wc$)Oq~TO|^_ymOhdHMYj3}el|P5 zUMl)3XTwHW7VGMh^BJeuoadeXa*C)+$FUChwA;%&wxH$10)jD%wkAk|nhKka2sv){ z&X`+Xe6jDo;j#C^`C*sa>py&)U$glTYfbS({^WB>SC3UIHlLf;-+Wct_GYgffBk3K zj5$0Tu6>^UFZkE)i)**dw74+q`IV|y#@%14PI2cyw*U9@YZZrXo!33fW62wJXIr|x zZHg|d-tm(AwuShAw_tDXYfrDpz7~D`@d&Gz?UtE56;Hf01pO{;oi65n+otoa=JSB9 z{M8-48}I#`^)Xdd-t^7988ut17!CSjE569>+sypmX`T4V#rF$l_VpdgZq4xdfEd;~ zFITc-F7NHtYxKcO?Wd}yEC#J^c>AOFOZp^%xc`zwFnaJ0L&=7dDw z;Z^o?`KK9$@}I8zqI4r^b4}E=uW9~ei`5VGm+L)P^&sr+i=>CM+m}CdzML>iTz*a) zzgPCJT}KNe3WE}-bWc64@wL$P>l|^vDGyoycb-4E{CD}`w|_p!{(I3K@6(@Ze0;^+ z?Wx<_XYbpvwp0I1=IcA{>+R+o{`$AT??B2e=j)nZ5AYV8isg;F_eA>3j{iqqndUwH zn7l1(`uYP``b4jEKVKUDo$K6#T|FzAN|_RN>}_1m`c#+ueM+i6-?f_$0=WV#8bPy{ z&X4bEv{YLbZa_Od;|XZbilik^ZbFr#}A)8e%Zh7 z`tk=dJN~;x%->x(BSC$kAkUF3W2VYL&d};DHhU$OM-@VZBuC(XsMXD*olHU8BV{FisS87W%R5* zHtqk}Y4GQZ-IVZ*J9@FF)DO$m>^=Qp!_t}mT0T~6ykYZF)=u-=Rd#iTc?af4HNW?G z+;Twp#-T3Vx}aHGm%N(dYG#xUT4thnvm*RVr~hHyH|6W>Uw)sLyzz(2?DsP|_I(hl zv`*!CFzW|n^x=z}dFwwuIJ7_HRnzx%@7Z>|XMLT{R`P}4P~dcF#}8G*Ro^DPdYZgE z>ix=B=k7aqJ6+*yc>DIH z?T_OU|1GbH|J^b93^%W;JLi0n_Ehs*w|1ZYlsS9WTe-Kr%jA9*f2n@WeCxyI3&}eU zy}kIBRh^-rXu;2yrWLDp<$dgHiqu`1_?3b>GK5p@#gbKV;_fB!#f;!683CO2GAO!!#Id%U1^e*b3i zKT!vT4HQ3E{Q0L4_x~2`EC8!*zrNr2IFosDWYACk8619F=Kg%~>yUi@_xx!y>=>iJ z87c}~*2@%*pJBW_Z{wf-TF;fI>xJL({3u?!?@Q29xf(HpYQ{3R#yXwj3@IjuLw|4B zowVxfyjAZKzrS0v7*q_uy>~TB|EK>v_sw5+$~@tgvRP!~+*-i@xM~Gj_Jkd7bGYzP z=L6@%v+kci=Ku8}=R@`lkCy+M%l+45-n07q9sMg;wD@-&-Xxvtc3@fZ&n>=Z%lyk0 zFITUd%suh`3qyw&0vpYad|~X~FMt2fvYPB926?w1KP+bmG>G0_#$PV5L4Tglg+qQ? z_noTr{(R{6n)~;}udw>(V*h8vK|Q-JP&j_Z=7;J@@jK z=WUT>oZa{IvYF{^+nc@f=Kb*1bE#W=oMEB!ky`>;^7ebL*?TTGtk{0waeCrjhP<`= z3hq9NW!|f^@=g`!EcY(qBK7w%@jo7`pPj2Zt+_$>_Y8rKmBlu^`vW#^-aL=rYV%L2 zlX`z-?rWZ(s~msS^VHc-8a1v@3ulyUI=XE2K4sUl>5Bi(dfola zHN$%DC*>1CKW8=dZ7?={8+>`U z3o{vLHV896Sdj@+;~T`b+w&j4-Tb4JOPf9apJAYwSY^Texqqev#n3LwBbU^S%&RgXPlT{PD zZY^ISS$=9tiN9y|HAef|=b*)|c4zADUkdU%KV88tPo6g?YCKK8*=wepaCu|Rtz~Ju)puXK zEWH0@>xuj?5(*_95zM`JY|U^Qxu=j_jZMZ+@uc z4gWVQ=tnl=_kBWq@%f3DZym8ovg}}e*_itcZn-Mj;)@$>*uY~-)~k=+4azC$A$K&^NBk-)Fu|}{c4$K7QZikCI6v) zmH*YJRLS3&`Y~O;&Hs!1#u^S&`|oxu?u$S4YtE1QU$d3Tj(?Dy8~_rA|)y{Eg?XVu1-4_oZnH}L&vG}-vvwO$wWhQ?awqF$7VE)7Bc4b9- zwM?F6J*ci|6jf(;GgVA@+I(Mf|BLh2pBt)Q52-D-__{B`kzM~o{0E;M3i}*aiaT|S z{|?&zO!}oqk{jH0R zcSZZpNjkTXW7&$@u33fkexBR6T+5GqxRrO#&U0Ls*PS)nwof$lN0`LBkl-l8V>8|^ zx}TmlJAuD*Yxc738@K+hC|rMh!~M9u!VJIXaW1wg{^y76zXwh$ofr1kT~yrbCvq(7lTTqp z+2Xaa3a6Lnp6Z?0Y+kiZy2byW4QDeGX6k?3 z(!hDo<>hmK7i+tQ&xiImEdN#i>;-Sk>#tp%1ydh=TVS_6X89HE{IFM|<_B5-Z+`Im z$A{QIyOwBwP`JbUp?ZUS{onqnzy9uT+07hvUMR!Zrgp)V*!-4G%^3kFqmq8xcV}>) z3%+9KdUi+l@@3T=drO%TxYcVdo(SacefZ+?mMxHwn8L|WvAg^|(~bYl$Lpfs%Elbl z^_~BG!{N6%1y^@jfTuanibif?Wn}MqvlcOAA9AJ8~oUTEVh!`@a*SAA(!bXJ!1cpBRxFRI|yx?)d*VxgU=4{*8MraIsX@ zr)|$S*Vo;10rwf?`@9a)BQ4x78{{-;Uz@87*IbY=TP zZPB?)dtX}g)Ffp6TD~m&{lAqj?=8D$#kindD({_32lrzF8pDE#TCjMG0LYf~tG=iUG1 zA8hM?e32KIoxiHQchkRPU$*2_f0%#p^aH2=ruqS|N(&zT_qnutujuNs%~}QGd+Po_ zT7UT0{0E8+JN8HaW>#mk`~B?e$7!xMV$Z|uk|&B@4K#H>t(+v2-20lP;l#SBN`~*N zgIc&BWM22lPtN|HEX?pt{r`*h+h=$EXTQtYuGjA@_=Smwwii; zPoL^jSNNgq!Qtu$oi{hUvww0h_?2-(f8D~&|HiKa@BD0^{&e!GlbfV-1v13r?w&iO zK5NH3YnxZ|Thyn`Z_KSRvW(l4EPs4MJ<~BiNBNEI8)|v}IUcv`d)Tz^$K4l`p4zH<<>f-3!Za5U}mo8e8=&lHNG`o zq``XU8`k-pA6~wf`*5(KtRTz2Y)+u%wuk1XcY`l?|1Qy*^_t~?*|`G=KA-Q2e_7F1 z#(K;2^6eY9YAa6XgG%aeQgaw?{9e5LpVQkn9sjEz?6I?uUf`1;2;NxEVw4r=aAEC{ z+>-*gL8F18jaCm@?czSj*9rbAP!x~RFqJ;wzW>Aoz7wGI)}8qCLF<{L%O7k%@-XbJ zx8I@VD|Q_EcJxBrj+<`Q-##w-uM%@cKeLiYO{hTWfw#fLFR2mlTe;8aAN=@L^iBS@ z{XDnh8`3>$1jD{;fBkyx)X@KZwrS4K8|Iequx{vWo1rVTz1P%A>hLrF2I=~u4-Z#g z+n)W{nRVrPz60vNAMfn-|88HZe&oP$pIk9vdx6b`+8gc`%?-N$Rcq|U1}$ST*`xu^cG-_n0i*B{u)^*pJV=YZX@WbXGY2LF$Wx@xi<@7wA0>fVFk%QmKa zcRXIUZ0FkVywC@6!;sg-LFu{?<01n_Ws3h z=?{ZXov)F!V{PZ2_CUyb9+TN6Ly-e!R!L?h9XEAnUrba_zxnpzvizH~=1cF9c*oU{ z{Ka!dP8HWXuFQRU40b>E@Y(GDxW}%cN^ZCKF&k5pkGl6Fd{(_xvS`2eXKTU3|6jdq zpTFW;#n-chDZYtwNBt*mufMnCWjKE+`CPm6{m|mK_o_E0umAqw3`6kco~n;2^C!L2 z%shIyW7T#)hJ>wdn`eAKa8W~Q|Aex$U(B}c3-xDfQDb1z=7=2lW_+RU)x6UG zo)+t@y&p&@$~rUV2rH*Kx6in{Nm6!O!Rb7H^V)U12j$juzTY_W#!Rz6Gxxp!@AhNM z|D^@$6aU(9IY(G0uQ`yv&wXY6kKzJz1|JDq)_CJzSH7>04qUr2+0$f#LgZDQh%+2l zr@V?;wbhTog|FqI@7LU{AG6ZkOU_xQE6+Z~4LL_}k5o4sXqZo|v#%k2s*lR~DV-7R z$ps%<=6`!!{`+IugS3qso+TX+KmY0T%-b=wKP7ruY}pN#RvbR+W&2v_2a8bN)H<^* z*JHQryAgj&_vgXChKh%e8W=Xe=AM61v{(GUh2jU#9g|trS>D~)QdPt-KYfAtCBu}T z*>f_J%}Tn!DWc%?zZE=+b_N1{=OxB>K^fZ+nAHzsFuCi;91S$=eu6-=#>(G&-YWdyn4KF+fC49 z%}v$U;tA)hFHh`M2M_k0R0R!nX)fP)+GKUgu9p+tB}#9!M%Ve@*&FwZ^(igL?O_^z|#!hS)$5BV+Jf2GadZWX`c|Ec+Rb{gBCyFXqRG_ha% z*2J&3M^x8u{j=bGTpBN6lZhtcC3oi~HN@m`ZT&R5uEEoPp^ zona)E6w$<6zv}((IBxNO^{nsaH11A+W%QOSrgmn~|8MmHuipNTSh;@(uNuRHnY?HJ z&e^yn>9{A)cHi4qO#FTI-`!rBId9gz+>5Zb!^LNB; zoi_h^Uo-QMjNa>q)qkAd9kVieT}1t&df`8ZySBf3pV7YHMAiz?0__VvJUMDCdB4{L zRqg$sc>R3N(!S3#?ry5&4?Ugt=q2CvwhI1hN50=E@sK~aZEo}W3x9g^gI=*e6t17c zvf}g}tq)IsKfKBN-(h8Wt+LGm;ke@2s%3k6O#iN`oMCG`)vDh${V&%6gX5}(U6uYS zzrwe_+p}Sv;C;Lx+Yl(`SI;V1Ler@d)Yed>O(DMqx*R!sWE zxnqGP=lqg)c1cPl)?q%im&)cQ9QpM5R^bM9`8^AcM}Ld2SQ>P`T~z;9ep~2&mbd_a z(<@veVGQ%N7pODm{XVm+UfgGe>+~Cy2{-pVpPl;t$b(xGPBfc-v^5j9PO@ee|DFH; z*;n;{Uk}|6$(c6y{!inj``*@mD4suW{hc1YhbIiJt=4W^u=3@+u6r9_uMuYW7P;YT z-CwQ)*UB3O6aKjyDzEK3vC~&Yao1K6u^guZ2b0B4_&TLe^)b4=!MVTmMzg<;e=VQf z8}{v%>udO(Hit%9EmEKLH2v`0eGATqrcbRBw9))?^n-ASe#_UNA2{px-Y8!cYtFXn zfa!-$^>z1iY+3($^J{$FXPx+WO3?fJTYj8oJu76*uQU65&E_}K+ZMNFJF|gf$LB%= z@BXxA{%^k@nroImYx%ftu4MQFQ~ky#cD9FDn2*2Un7U4NVVup+WlO5PqBfoizF^JT z8*!Rduaqg_$K1Ss@*i9Ba+02NH+DRDG%?bE1=R9Yn9edc)@jL_*yW7b1#j$rY?054 zJ$C!AC;Q~3x@Di97VTu+ux(AnwH3FTs~htg{XfTZ&DYucW!Bd&`;Fn#qZ&7cG1Omr zSGs*o_}Y(t6*m<8I9_~ZF4*|R;!bO_*y|tP=jBhkn^4l8?YxIQ`%!g{RSL&<*$=^W z_3w2*Y@T7D88rQ8_=D9S&h*@G-hJYq{*K>I6)oOv-*%+$>e@~(7QRfrUiBAM=KZ15 z^*^q<8a~xZEdX?KPJoLi*R`E~41zH#mm`WDFRVQ>_56`1m&L!PRBYestoZI@^~1}B zKc45v*R5L_sS%|kUu^h5d)w3J#>J0ho5REZr2NlbAN)%6x>l)n&87NB3Mb-tw=zv$ zabW8QQPG(Fe^aw}_Scfq*Ki_Sf=~SJgU$rdg z|Jm<{cK+6R9BOU6is9WS|3l$N@9~#!-y?s|dqb`KmiaB#r)=7t>u2&y`55%Bd^vB@ zy;Y$f9M*=c1T8=cX+4&rzRyD7?h~WthUVi_g72r!3N^a><%F{Gio;wc4|M-kJlvmN zzkmLsv!4vbnfE=>wV%IJQu)Ul#|hC7C;tsU$a>^@EdTazhmYF(F$&>-|Y)JTErR{(Lvt*<%&>QT!Qo8w_68)cyw>yjsFTc_CKy1n7OrYYvbbQ?Xzdaohk5| zwR};jmeuF}4_yshGrpgU;w^%-0e^+<__$s2xY+er|L)|oyFRb`{NcTjPK$8=gG&LO ze;XT`kBbP)E6j>@YP3l{ti0yntCwG!|9&`R|IN7W;FdLWzHq+!y7kYVGMSzqcM3KJ zt#9m}A0E5^-;)0+e_QM$j%7vUvA+AGWE1&!vDe<;${U=z&x;v&Kl#%&x0?4}v+48Q z$DeiYWMa7Y?*HTb&{s?|SXP`i(f+`(C;gA4&C&n<`?$&%I&{BQPq-wZzJx8htw(k0 zl`AIUdxNU~b)>JDRrmUp8%NjW{BK<8d7FFJ=DU{e6K%78FW{Wov{8NkmGjGwZR56W zU!T6B{wk>W`h6-V?4&`rNvl-DG2w!Z1;6}ue5k)NSzVR=^zj&;iWMI0JC3%BR5bRB z|E{>$|JwAc`GMN0Ym>J!`LV9sE3(gw;q~`J%U?f#IOmte9mNlNGk7Ylw_h*ks@QLI z!Rot=(;Y}EliZWK`;pVqx=*=Ywahlp7wBDHb-?z++`slM&kz2wyA%5Y8mImO=WY{BAT6l^!=ade{k);53xS)olc(obWuG`Q`~Ol|E~u5 ze|^sfzM6XdpfSgXxVgKoa9!c*2zj9SSi_N=G!Kfm%Z)V-~8nDzaP+>Ym7H$lzgYuo#hnHb`>Ec>!+s!c^2xa2*| z^QwTy?%+Z0|FyrjJt#Xi#YR`YHfUSstlZP*v)dhOqW(+g1-)8-p!NUf1@Y6P8lxH$ zwF>S#7c4B7_Te~?a^U^JB?oLjyj-`r;#_?3zUmyd-5X=M%HKX%{%?J466w%|%zg;bl>DISvLbJHT4nRldq{<8dmW95gHekBW^i1TrtxV3L5AJv_y~ncOph3GX_JLUiABP{?pL4&j^NZ%xzsf%M z{lLz^@73*pF7%22)!)fhckWGP z!9)J}-{QBOyW}nF>n5_K7a72ea)@^5wElrL>^8|ZeqIM<$v`~{LPKqe()a> z$+BVX-Lbr=bl*xl7J<`d(^P-`{}kcU=i?3@EWE!;|Hs8;`o9W&zMnm6-&d*5@Id9X z?fHi6JEz|WB~7VLG>tg;cJ}fI@-{V_?7vOsUTQb3-%fDvo@w{HA5N~@^P>LpS+Cf_ zW3OY`vstrP-QpN){0_7~-1>xhe$XqvA6tGHf7tt>T`u&MXGQKo{~!A8yDQ=f_6DtQ zWB(Hyq5j=%r}@Xrb$ed?k59C}m-qin_PVIoUv0&Anf_myId9Uvl^Jup{A@f`wp`Eq4?@ zo_}}cmH*!&m&z^iVS6nUx&CKW#+Tfyci!vG@~T~ZuCBlN)Vx^GhSu0kb&SE4y&u93 zs^2qz#(F-bAoJ&=yzVDG+kZc9{jX?qK=ax2H-9w+7-^1^FA2$8hEqGY} z`YKzbHOP7pj$U!#?uWV$_v?dJ#y9x?mERtB*g7a_Ti<67wpGvmm9bna^O9HdeHbyL z>Da%%6{mPW&HTf%Yztpcc_`xHx=LT>OLyeTS^bUb#rx;)$^KjNU$k!iwoofjj!kJdC%u&)bGDv zWjo)cGvNIcJ-3Z3f>#xKWM|Ywv!A{3<;W`o)wLUKR{3sW`g%Y4V$r#tHTyDrUiSun z`k;N|`)~fk%m2xTzjFA$Mt*Adqx7FQ#Q*iBcv6+)?ux~ zT87n3KZ^d=-&=dd+HRRh-7ou{N2~T1ZfQRzyIeQ7Co+1sN@(_OrPSNOtI{KviRwZc zEJq>(u88-g#=Y@=SN_0?m%lhm?$h$h(%Dv?8gE>8d)zU*Cs#Qe>{eNYovTt>_x+5}>kGx_sz0p!&-y|0{J-XF2mO0JKW?tkvs!rN z`+k>|@(o-6mCO%)e`~Gi3egp!5{|5O|2BL5)z~9%!?FEef7Ze86IaIcygC&5zP2i3 zOD-rtXLt4lPF^n;x_rG>sm}t?f}sT+ixvwKno={?LH@DH&vX^ds9Vur|FHNbG!SsOZn`cT9(CU z=LeMv{`s)&pZOgY@qhZkud>(W9$h&blt4jv@rncPazU?d{|{Q(fB0@fvtG;hiH=_b zntWY9hm^dU_4~`OV_W{4-P-uF^J;=uRB~m=?Cqe1^3l^K@?D!;Xl49lQu_st@7Dj; z+_$W_aQ~d}T9=hk!gb5}uWkSN|AF_^UB7a)-R`adhv5oQ318L^)&J_h)_T=0{adH7 z(%|DfMMnjm!8{Uf{Sy?RC`&>X9Gh9SfEnju+SocimwL$9~$H$U8?*6}$ zZp&^PT7QIp|NZ}EJI?;MZ|DAR+&)jDbVb+#FibEJt$1$hRcjve$3Cr|)yFCJNv%^; z+>~UmD8rAMFXlG6)e88!z78pQwd>lp>!1c_-0A3(o}v+tx-YR5-)o&;xa+~<51;G4 zSAWwoo!@X@^n-C-{p;*0zp}S$l_uRk9N(VB3W08+jq!h#{`}F3`C~6v5$oUe^wFdv zwpKo%fP1uVR@b$aFXjaKR@;PXm+oOIWm1TnpEY&Ofhln|OFzx?JXdkC{$acA_CLvU zS6Ej4S!cWa%KbXknx-#KGa^>-f17OeO3NRT8rF;c$ldYQ{`aH%pXDyBJ|XmJ)z&3d ziElz)MU}RFPh6L(we`%|>_`7fnGzmZ7fksyy<*dOi|4{0T%K>v#{HSDRU z-_I1+`dYp}Zl$@s|H{3x@(cQ|a)FvFSGamMGRZg0udY2^%{>3l_PE!_SKPlC^4038 z!0j1cv8(+y#`^s;@X$+2)dHP=p`mf_(Zb-$hg0qadY`DC{P?Ez6syYc1r1lMBI?2q zGXJf666#gUU-Kwl{||HN+QXm(wv|bFErZ>Q_qYE!tz3V||DW$W`MTG8GnPD!Jw2<- zFZKvHPS&JfUD?0t*0-2OE5-}Ojp@$zQ^i$JHtDOT`_Hrfa9+0V{{GLx^}F`T^_W?{ zJ@($IVuyU(kN*$6r`%e<{g<`sDrtyK!7C5kwqJ5(ZhudV?$^JWI+;F>??p@={hQNu zZe_;YAlu_bcK$Bza~Wow=#%n!CglHZ=@Xwb#r*$v?*3r*qvhYl1A*>O4w^r5u2^vY zepPFbJq!Pj)&5`kuWaVK4h}7!1x)t;C71p?EbgW<nj$9?M2B)bU&uVd!4g=UddE< z{^uR_2MhR)a`r|)KiGPF>aUI0wZ87vZ<^12B%0w>kahqV8vNwi^V@D|9cLY{TZ!VH zmqt%L={ zB+&}_JF?%RZR7RgH@^z(ud9OYeGt$+ zFV^F2wQ|~|*B+mbaM#aa;LsDid;H)fyJm~T2~di{!X{layA@&_iLU|{3-4eEuVApey7)b zs(%)+a{dpurT4h_f3BAQ^}Xa@$SqL9i)x%0^1yzdx8@uci`v~m{fE}?zEl30qvc`s z`w+ba8)NqU7p+OYt@HNAmm^t*tZN~z{~Mp11af`S(in-0L2(Xg)70%g^nafFKRkB% zmGgDGgQm}qyHOZ-8B%vfWU$t~K5y1}`1b=<1IZ66e=ePFzRn-fbK!S>MvX(J--?Yd z3y*9yTehf_%j)>L!Z*L7+SBgJYy;J6H>&)NZwbY@Je#Ndq}~4O^xs?lH^(mhxB9xq zSM&J5`dj(4)bm4Q!O3t!eB<(mwvTP)S?1K`w|wim-?pAU+8qfY=&-E>fdeSd1 zziPhC_h|BE;nhb)w)Dk5zVY?pzxhqaZWQhkh@Q(3aiXv6Qp~B7me*~JKU-Agr{hFXlA4?PXuSp!AK@@pb&)zlxZ=O5U_>E~swv^Gq|_&>~!N&Qk2zHg^7k zT^|k?Tvw_odK??|XZgeB^Xk~ct4>WDX|~eqx4$!6Pqn=B>wn|POZscFrmTD~@=9a!%cO``EC*uBz6SZ7+xhIK zbDXvRfusL(KisX&*z2wR%=bg|`Tw7GPuca)X??jYtSu1X!8)(v(&UWSwvPqoX@Bmi z=PzffnH%)o{`TYjXBSSp=GK*;Gh52=n}q4lEF);P3AU1}J)R+ZdX>Xmh7(%XIp!?? zz@!wo%<{RVOP;{vrhd)Va)yfO)7s1rpSS*d+5Bqszr9;mfxBH>nYdRUSSh@=CHlSO ztzF#0XQuz}3tDcs^on@g(ksCqycwJI7-O5WJXmKpxy?Nci?x08n%ruAu5FtR3d^`t zS`NFWOfFtmnP<7)xct!Dnen_b?bEi!{`jY6_w;}J!`*W#%2Q%tc{Yo6U6b{pGf8{X zXBfUPc`qq_d!=;()6aKbiy5nSN-Hclc+I%0?yBZ?>16?@R|V$Phc9yk?N?^gHCMbL z66eE_SrMC+cW;vizubOtyWXAJ2eRHaPiFV}`==b#B4*lGx&v0OO%&bnP^#jB{Gaw8 z6%Vviz8&4KcR}w?VOu%#oPR8Lct7xZ*;WQc8%4ja)e^Rx^IOE^RhEzA>l>zhvGVU; zYi3+Io|3yguJOj_=jnQ-@dVDvH#Bgzot_B%C1Pg z=618cpT1x3u8-}%bq!oAUg44neITIL5ziLS`&oBicm3`6PnJ*J_3plADO-K5+O`+p z&zDIb&N+PTTKeAUdCqdsZ|!%Y*8l2VoC<swcovUlGVD$*ZGIvT^@Y<*oD5>`x03u zLA<3*2}`WgLN?W?TlAex3L}|L~(jJAcG0Kjdp@PrUT= zfAFhK_xu0otSy_Cv-Z2kb0%-2Hj(N6t3|ep^!qRVYTp(jVRrt;*Tf`nDgLH;G1F~O zDgL%gC$;*WdZqP#&G*;K^s1^SU$*;G-0J`Lz0Qm6k#!$bz5aeSKP=1iwdcC(%3PQu z7BSub&9*eIfxm0(J%1~KMQ`789~GEdw%P60chGf9e7)&+ z5+he@?Vp9} zzoOrp%4+rJ{%2ge?q}#yy`RYy{#C1*J@^%t=ld$RfBlg8N$9`<2wB zm){SU-R3lDYTR}#;@#~@uP+U-c`|G?@4uj7_o@&7BEEp(u2{YwL(+=`F& zZ}kty=EyU#9l4R+Uc$n>&2G0nQ>I(f+SBi(+jYxxe9P)jZ?bxro4f0N;jKpv*HX4e zPr1yQ`})$~zF^rKX{_J2N$xr37sB8_%TmAiO#Xs7AC~_+cbAX7UH1H||7XKBzJ9l{ ze`xaj@XBXl(2RH?o^>DdJGI+)TX&!Om%emfg_6MWD*0Cx6*<~Je%|u_&rqlOz}Tzy z-&HT$(i@Jv_75&v?%{AcvhlUdZabZiH%!B7TZ9+x0$++|5&Bx#_}k>UldI2m25;4P z_9gvcW8IJ2r>Zt){n@J@^h!N$J@3}Fq7iwl^BO)sa@=uX2Y;B2t6bB28GF9T={u6- zk6(Bey^rg$fBw1E!37sLzuy`EPG(Q@qs^v$jc-|gJSY-7Rv>M-eBu6Z`F$JpeEwQ@ zbJa-Si7b1`>h<@8zxLOuzoRvC&rQGfqRKeYx|01*%meYMyM9Ygt&-SRWN<_1vgwQt zmjxTMK@NWpa(L(D1+$iF2mCiZxjq9j{r;Ia>3&pZKLYH|2dveJ?r$1_ya|& ztuEDkdtm*4`W|^cv$g))C*0qDcg>ampJWRhUM@B=fBq_7+u#zH4VU=aa@%cj_McY- zeYaV6W%`5Q6V(g%ibvf!)?K-$V88q|_Jmpx{4MVU*Xr0T)?*Qk=MNtJb^o8{QoEYtZgaodUAgGJ<>BpXl|Mc| zjea<%PBX`2U;j~)5|;eT1W;o1f4^zGyhwy()+iDe0Xf3EBOC5yJT`A4&UhDp5h zdEK*j(~3%y?kA^TXH0q(=>hTdtKC1Yi~rj-_ZrKA82^o$Pgte&+unOW`u>0R(Mx}J zrE7j&zfan3<&niJ^|mqzuV$!=s<-yZyUSO;?GEE>^@aaEGwfMkr$0O-um7#NyHt*) z_E?%i#xZM7z1Gf#)epA4IK5!+Cy6Z^;(E1vVwqnX_pN_#CJ|i~dj6002a7qA|G&Af z@wI-B@V{by-)%?xicc^5Kk-s%^$)Hc(ht6R*-HNU%J}w1p62>>pe(~S_QOCEKw@`k=U zU;inN`8oavH&%boe)!tzx>Wb=jTSM7JGLDIwTuhG`(l%?x?4Yd#lo=GkGZlmuAIHg z`l-R⋐QYG0eEF&z8Hbj&j8*`&*A{D00qIsIVy#}_piFL zdqFM#7XAm@e^Q-aL%uSG97db07?heK;+V<+?dX|G>- z#r~INMc8rMMw2zg?*Bih*yzrdyj}9)V8hvPrUw;we+gaOS(>Yn@aEUD1%+=+=PcT{ zKWaXsLD%*6-i~vx-_JPG8{!Q~?Ys7JHf-GQ@Z{YC%cqlPp4O{j{}uG(i+ue*e|>F> zTmOzmPx*Ci_7{)bY}U5540aXow?Ejv=RbqqxBoA+U*G<<)_IGz+UFhbg?Ma?O!r2} zF`jMzuRurmrt!S+_GaI!!L`t=~0a#ta2^88UG#sAG@;t`|ARWTgMk)z5d_g z@BcTo>=H4qSHF4cw|r@t&>~Vb@t*ZU@t2oe1*b03@ST#zC=%e{@F!4k_ab?Pz1J1? zevfl<5>n_jnKa?o{`B&6V{7Z}+l$Me+nm2UbLZuImFdsk%`IMj3N61AH`e@{!-l^GOF0b85gBg&YGiX zK6{&XG^@jubKz=>qF2UfPFZ@t+Qqg*!ISe?*X(hdzyHmBwg_KqNf>uENQsn;%~pzCD_Nq%1&?9;Td}lEiIlQGC!C> zC0|){*@Z7Meui(ud`~^`*?DtI>`M)XNo6)Cw_fB*J-vaa=FR;F;Q@_Na?xv?N)Cq` z`d+V{IQh<|XeMd-mF41Q-*<^}t*B1;6j)t)@m9*;I7ywNy!X?OfvSN5xzXPjan~ip-jKRCC$gRh}~;;W&@U;TN+~*4u4fl{;i&PFqe} z{@;2=RrmU}UTlwAfA7mra(1YxEq)|%qKQ%N%l$US|6k`XTAO&`f9v}_|8xYFOiAne zYa)6i_2BE~Vg|O9H9R-iyc%;8^4exH+1|OhWTi>Jk$TZ_WtZpw=Vh3gF|O_Qw_erq z@pJoqr!5;js}H@2_b=ReRR7(lfTK5;JWfsnMf;?!_xJoP=4wd!I<+WA?vzF6v4)c~ zi#BKOUZlw&7uWVMu2c0ryVtZ3P7QBynTcjELPa*UEftQsvA_Qa_qP=~-0v>sxwBPF zI3NG(e_yZKd%edC;vMRF@8;d&(9SnG;muYt?SP-eink4`=SQ0f>{_`c=z#x+7|Y*Y zI?7d?OSxV#*ZrGyKWNKR|6>W8FJ5giTAC=@Ww1j}g<<-+#fQc3c+Fu_n6X&K`9s51 zPZKtub5myf-oAQ^i{T~z-VLSNTV(#;KXko5&OUOo@OCAua`C4{%aRo=na`h9`*m7n z(f^vJ(ycW|mXrwI3SYZrDyO!%0{fmn?I)yp`Xn1xFB5oi_vWd2yKgq}d|1}-f7j#} zm-Y+j9(cAb>|=JjT-{}J%^xcq_+zep60Hoj@@v?#YS*57Z;k` zFO`2R(%I>v@4%=Kn;P;JyPpkS@ z#s8_CTmLZVSY4Fb8Py}FmUF#ny2<$aLFDo44>V@)5xuuSwn2kOr%~yX`G2Kfk9j4w z6i0u}Ua$C9Ea`ryXLWKsgT^GG?)Z6~!v30!FC~^few;O-Z)4~OOI8Q3xps3?t~@ZE zd*zn0=w#!k+j#%|oEO8|@TJ}B#(JFKHhL#-#eT{Bx zKVIzXJ}!8-({#sF@waa8Yhv7_&#PZ%*=ezd^Tg*4sfm~Sez4z_VcuDreTu=Z>VoHM z!w)>)cK&?0G~#ss^U0xqZuK6`&op0ja<_18-{m5wPSxIkkDvHdWS1YFzQ)z#nLclh zALE2IwM%4Xv#;=5WSCI2>`uc5Pp zFxI^7iDY_L(r9AsxH0o%VdL|EZ7=?*^T^b_J#l#br&SH}H3MeVZ%b_X(zBq|()LuS zgq(45`}q`=S-WFF*)rp;%Hs=v=9CEaGEO#rns&MD>2ih%{{lJ>72iBPiJ{)z=WN_d zRui>1r_RM6$op+|@z~)-6P_R1X3fl>@bUz!yue?6u7)!zj?(9Of&&hv9*$w#!;9TjgUt!Rto>!@&s%VK)#i!wVg=TJ-ca|a%trg? zqh6Mu9S57k)vOqdm$fBu?U-C-RA6!KeSVAM?@V#w+J?VgYaU(XJA2Un_}kBFX6IU! zN-oWF>8_3nKK*^}AA4!Hw z@*0WSou?0;+2T}Lq;c3wKS?}Crr#ukwdSC0;|lX-d#wt2ei(kZXR~JE(Pb0OlMSYL z6lL7+{BTogI%jd@hG`P&=V#rLJJoP_0nZPvb&h#y4QsD=>^IN1OEdh-cYX^y&kDKR z$?=AN?iq@GRhqSfKTRy*n#Zz7jrx~u7OTAb;F`GFa!txVmE>f#yF3lgzJ)xPd&+q8 zfj_5bY=vZ2P=OoOcKyes?l0{D5>?z<&gC^b-~JC1eV|$qX<4+`AR%@}S!zT7=f`LN z>K)u_;5EBfD2!`o>fso%J*fvIg_Y&iPgJwY*ln@0UeG`Lv&K^M_G5*g|GGSn_cf9C zDqPQ4_f+-F`ra#lra4I-F=lki=X=q9N#A~dMdeS+nv*l9ol<=K$W32ze(zuBJBAHr zQC+*jEAzyrR(gImg@oa2Erum_HH%Di5>sFNHw!HH36Bxaj(Yz$tdze&<7i>x?PkWj zZT0hgO0Mm;_&zJX=dVkI^!MhdkJ`fbHYMnC`{gl6CcbT}fAn{Q&4U>aU3T*-y;}5d zC$sbt?f?_!_kHSCKgGYPGEU9)iob%Do(hpE+NBP< z;p;$9!Lq4rR#A@J98jbgACSFM_Vf6pr`d<)pB|j*oN1-IhVP%{>f-Xk=KnGp`l(_z zck8b|H<(a)*67Fft;Hvo>ImO6N}hUyEvM$w-kvAiIjgD;A9wj}<82~y`ILWk^NXc7 zB~zbG@}1gf>LzrzLbb11=JJf3D+le5KRa96-gETQ1oa07x1-PHPWtE~)UGcS>)WXM zSzS_ESW`AWICZzQBTvY@`Hqcq>Y16<(odaT_EzgU55v1BsndiWzc=N4{deQbi`$et z*Zt3$seLf2_6mIV^41YG#>Uy6EKYq?~49RhP~Wc9)k}2)fE0u=w}ry2rFTJ0%%D zzE*9Xk;mr1wq%-;=esA{R*O8yz9G3fvTf6Y?FsKK*K+-9x1PFEfG=B)$LEmA|GOWq z{!e+6peUJFRG(HcnpLM_M{la_s2bb->QLw?_;;p2= zwaW|)ruE3$acc_Zc|P+u+QuQWd%;JE0Yj->_tb$W=v)0A5!>0V{xz%iP$1c{*w)6b*pd>M5#@ooO`YjKqbc7}vedJpG z%}Pdi`Js4zg#$^4Uo;kTzPsNVY{FN&Z(VyQ zb?$$|gf{;8`lBV|O7GRhOtX!=KC?Z~-F@kdvS*Z8j@Z6QDHAo;rPRdTSn}a{tA1eX zjuWZr2Q(Q@#Wh>iZJzwPE_K7~AEo6pKeiu;`}wQ?Q(gUTfyUSg+Y%aP|JOery8lnT z)Rv3!(|TU~4cMMOGkwyQ(w>~@T4r-DeV8Rty4@tMH0P9@@MDoL+r96pN2Tjr^b6Sc zmt8tf@5rq}^&*KE_uF6iiwo7hzVPbSX)dF6<@z5#zHW+CSp3iXityJt5h1sY&mQ4i zKBb}4duOnhU7-^{!km2BVLWFdeM%m5U;X;;PpXml#;q^+eCi86VD#YYA&rUQ z($_4$PAZj=KG*Z(Ns9cz%|AQDS9!CXJ1DsJarYd(d8XS{z4r^>OYpa!_M)rUu;Tme z{faAU5A1);v?w%B^-(J0!q&^C>n}_!=Ez7&-mX&k#>jiZ2Hxen zrYqb$vq&rF)ES+{ES%ao%VsK^^jS3P#}wd85{P(QCcqmwFYa&DnAHN9VKqiJTWVRCoT`o8uCYd)}lsq1Dni=2WbNf^u@} zaS+$S*Jsym0SC8bR&saqShUZqOuqECm9a>&J=NiDg1p%t?&W9AR!>}Lv1Km9f$tF~ zlXh3!kKA|u*{9bBQ*S)pz2wl`{cD00zTFeufV)y*?(5rhHcIf-f{h9UrHk#A3tV=&f-rH0Bebc!e zH~7=?Y6>}vU}pg+O$g4udAe!x!Rd^vSs%0Q-DvoHm5V#yVZn77?S5UU4>m`-EdST^ zBGa^C`;|y$C;9&`XAAjGT{h+W!P^1r7Rm6%*F3x3xZBx!4QJC2`S|@6g`&G}Zizk9 z^Y+l&W%Yb7b&S#s7qP8RVwlR%0jaKjY&}r+@wLwVc)K6z)si9%sqd2xeOUiRXrIno zkCHdfGI;%NO>4YvDBM#1>%Yahs{c&4O!%)@GiSTU%)Qd;SnIB_xuRhGIzQ9u)D7pG zt5xM@TxH(+a((R4Wa6${wHm%^Ouw7 zD(+m7_u8kq?Dflb{kwA>Eq(Uk=;Pkxt=i>&i~{@5rU-2AI3C4z^n|G=q@8t>?SIyT z^=F=XF?fQy8!H!N=`;S*`*F$omF^;OKgCzAj$M<#r980R()@P*vD0d7=l4xYp8al1 zL&t4(`H5F0%j}jqZGRpAZngpY!!IAg`GfC^tMu;><*BQaIq>DU@QkSp-PJn#rybb0 zLjBIxZc*-}BS-YvW-u<{u`oVxgE#l-hJ`N6*LZC)G+S95B*T3DzU!CI|J(QRu%=A@ zadq#r0d@g(y|HhTZ|HP86NjBcbtpp&3Hd`l|I|g(2modh9CZ9 zM=UC|yZB}1D?Xq7+ZOzMdA_kS;8jh_{})R=r+kUJB_(AUcJhZx@?)uzABVOkFK6I5 z9_+X9OL~l7ezQDca=j-j2_ZwXUSagn9ebE1P=!kgyw$JxiCLU4#>yi0Ha0ibCYtkKo+(+)K zg=M=OQ`EDWPcQy-%e>!zSyJXP|Bib#@-jcR@}FJ5a@K?G2?A3Xeut*Bv2I$qR8(SH z2LoSx%{AHbk2{OG8h+eK71;dJa=N43+G$H5G1e8x;8E|vy0y#bF@NXW{TtpH$j$yQ zEAP_wIX{%G?t@uceUJD45}VZh(o?u%e;!&epZ(8Q{a;(Zt(1%5-O0Z7uF5~T!q*ly zf3$x*`c?R3Lg8zR5+|o)Yuz1{y2DmzGA|H_xWHeg!Cqm{6fg6Yg(c$8DIJD5)~1pk zv6|HjW9Kls9xx2}_9=)_{iopuhUzJEYB?|7?XP&U@@n|yVu#Pks`p!%FC1TZWo5^+ z=M#%IZkOHnbOV8gKZ0Ag<3A)^W^UE4<`|fGp7a^lFH?ISz-3gx$%)kCVdg-+3RT-u& zoQEDhfB*dW%!(h^3oCwve>nQ}^U3Qz+xr$j3jEzUd%YxoXLuTC!b*N^mVFH;PjhgI z3#UJ9uwn2xE-85b)QyHuB|5woc`E1ToX?8g$v*XM&FuM`!~e9tm{l*WlkxTX7nuux zLUiVRHBS7$D#`z@_MI&cbYv#;IT+cUyfMT1 z3>~*Fs(gxgW|Y#f_k6{oa6UDuM#sj<-;xqEZ(UaN7ueg=SRL|^u|9Qyy{vn`W9NbR zA3x(BbUUr(UCkcmywCBib?1KfJ63%B|GD<Ee((b(KX8v+UQa z#vR~d^wFNz-z~~AwZ7j=N%9ZN!&3^UPk4GApJBA`Uk3Ai*-%@z0*6UkpHA$|d(ZKI z@9YM&uj~Agd3(-?(F7YcW2`bqbWW9MrO}~jP{vquw-pm zdt9V!{mYr*5|ciq#@U;T6Su$SxV8H$h1js*72D12@4=h5-6$vKLTuNAKN z!t{N5WZL-o z!MnA0JKT1?{GWNXXyv7s-x)6YXf&2Q%=~jVJ%s(Qt%3Ct<@xclSIV4!t!|$(FFq>M ze91}~xgD=SrNqU@zY3oS6uy=a2}^D3Slwhcqwb@{f}{KU4n7L^-~DVmPvd?G23H1c z=7OX1WCQ#yn7iXGjZWwlO}g~4urW)bGLzxG;D=fb<|<29hbOE0gc7CZZC9V?{bkp$ zH$qqZbpGu*`20w1hu!gKeT_+-@)GLj8G=4~9$k99H>77$fhB9hy(F&f*Y7)Xxd+KH zK;lYkI+Met!%A7RH3Yw%O%t^JJ#__Z$;0T@M!oNkEHv}h?}(7xawx^;{qgB_^CW|& zFZd>NDc*L$tCyQpQ(|oW{CRwKl`w_*)V@9AzjfA%->2>-Nd5e9kG(j{o&VgijV(IG zVh^~@-zOeOYFU48&EH=?T|1;_^6#(t`^U!M>gVs>uODyU;T|gZ!O~3N>C5A56i)co z6g+J^sIUC;hsZYp3-(3(=Wb;C#wpQj*IxHrMVjr|cPv>MHY>P&swou+e$nCp8P!w`W>om=_%Pfv z^+;ZV-Fo$l{@XrlFZrCE%C@bRC4O$);qJf3C43&UZt?8-CUkwj^ge}euF`e^2vtfNl;~%aWS?AR5r(4JGeei6x_M>kHuCIN!W7oq|QO|Ub91uHRTHDt>l{u%5 zFK8z(BYe-`QW{<$zzIzv2(4s%S;Gy2oHB1h_nw3^OI^AZ^6W3Cile;L_olW%K&+S^w@`4rw ze=BT1?V0*fbkbDD8}<$CDhrS3pAX#34ar1ZGeRBAV^Io4@!dz#ro^6oaCCR*#roph{y@)yY+={gr@ia(Cr!;$&>>elJb z&CowSeRi-Jm(uy4)@(A&uEqy8Gaak-`tr=(CI3NHt<%*xf<=~%zluN9Dt@hgw&cNb zgMuJ#wlGn~;*H6c@8jm}{PFO-&F2Y{9>-ra_fKb%F`e_``D>xxg3T>XVHGB*)y+3O2IG;w(c*>yV=j_HL6I7^~1q$5WpW00GgBey#(>@gP zo=xe%6qc5gu&J7N@!$MBDkgwIb89%BLc3#Mo$e6dY&DzS~Y?(3V=7xQxY!`ocZVhREb^OC~U&~5Mhgi;p zAIm#U3!^4&EPM!Zv#$^+jCaglHnZXDUxl+gQ3kq@1hKV`$>EptxobCC65q9n8D;a7 zg&ybLA$+_cd4Z|KgU7u0k8f(6zJRCV-`-V84b%B`4)ZYif2=lJ`rvrIn{SfmbWw)Q z;cL(FBph{E5OIm4XL32iO9|sc+l$K2utl`Lm?4vxuf|-#b-mS5 z=?6#lE?{wx7gmh3aBX1b0F^zDe@*V`-zfXgkMTj)B&BQRESe8m9vMIeJS{~TCdsR8 zYYPb3J%x$tJ_R_Q-)bKV8lzUiiTCti-nYvRvHXfZG`t-d9d-n*S>} z>w&RCY@E=6YSs-#35oGXzHr~4P|(QtQiA)?@!w1_dlfH+{pDUWTkKSoUfTDX?>URo znYPT@6v{B#=QXZ9OAUQY7OX)XE=iutg#27kp0u~QA|_Y|uB_%7PM zaXG_znGAu;YpdJ71lN01h1?f+^WOD&qyNb>rmK&0nJo#Pa=2-uhQ_>~T!&A*eNga* zzu@Ndj*7H~$tgTF8z;Q@^0`B<>X66r#rL%T27FFdJ>dR3VcA&?qp<3g|IHBsg*Q5nsV--D{as{qKdIClw4434UwzXYun(@E6bXNP?H0?FJpGy?* zY!PPOGx5RV^}@EFxYmUmKA879xN3j;!e`6>^+*L>`Xl{rv+{xbi(Ln{hLxr<@Fx@r z+WYKe;5e})xTSVcr;&AoAKLW z!MQi;m8V5q>Y3^nHW8FOdtW;n?c1`!lGP#1RzGalwePJFnp^!O2Vx?&cG!nYF&(PVeW;VKk58xgQnq>`xiRIyISJY%YOzKsSeCNJD zqsCAVoCIza{gAr7CYZtGQ{aZvzwQMXsJ*;78{BHu-U-V5N5Yc%iiNdje>=7;A=>=L}coYI_9{l#7V79=n)iZFcFJ!}@JD)f@y zPG5`rK&{S}zxB6Ha8KC%UZQ}I2yB{N$O!sGp?!k;%Jae|j`q-TdUm zJ0;g}960wm>B#yyLJnL9w=2GS^Zkc^(Q?)!`6Acj+)I9%cDxT?E?3tbrXcly>YU$w z?9+bmERhH{GSgdjSbYDcnY)$m8a907^s!$iwP)G8+zGj@G-I`(1p zpO=+Ke%ENEu{?OO^NJ{=+|QS;npfhAYMeK!AISe8Uuqy?>9@$Z;IV8(SfOO!w;@KsStobuNeL|kLdM2c=4VrT< zy|*WOYtD|^4}34YOmd&^;Vk(H3bVJT4g}fs&#P&Eai3q%_Jhqb34OyEA1dQ2_v(cI zd!uyZaWHdQ@?y(-$_rk;UKVe~cExGVrH_W1l8JA6eVOzdKRvs>c(uN1>xcMDKJTk0 zyl}Ta?r`r-epRK-tK4&|T!g>7Z7n;sF0WK#;~Tjf$xEk(s+^QiO@93AgwXt8hLo$1 zl9xvRwC@+)T&oOSz!J~uFm0~+X)ArgE#*4|49FM>AeEzWd&&A3gp+#RmKHhvjeO)W}arRBIbABXrNgW*xRPm;F+Dsp?zM9(N5J~MziDf(% zY*7;%Kh6)E&i?1S;G28);;LUN*uwrju=%64=g5cX8`9p3%+zL0zq)Ki-Hat6%Tjv8 za&AA^^J{;O+m>asc?EW{-mR0rcvIY|@(`Ck_i|oN$$#?wj{92{>4h48@-Th7MQC!@ z#KMn<1B~`k#t%Z2~4 zcr~cn>@hsLJZ@Uz{vLjQwMW8CHb>R>rO&akg)|*jTm{WT&$HDx&^K4%T(W|f`GfQE zJt~(Il0x$oXP6%^2{->C9wf=vmVCf4A$0+>+n;0u-T(O!yK7FL@BDUX%~HO&e2zao zUnh0c?U8qgUsEkt$sYKgf5M8Yy4lOZ>niV?7iyN@v&i{rC??kGX};QSMKGrE@zOs$yT2Mc+|+_i{!_ zwO~X}<*OM}?uxDJsOIX=6l*-H?Jq37d+wB3jO+J*4-!As$bYcm)t=N>SIpL|l2PoM zlP$peS}<~L@!72odd8sgF;?QorHn=QYv#ZBce;b`wj{GaP3M~K`^M&t@ymbS`13|{ z(L;%dvbmw>*G6=IlUdJypv(2jjNP66wSQkNFf3ELKIf>*@%;{4z9+lL>w8QIiFUCQ zIR5+Zo1R-|r1Un%+h*3yy{PYYuc@EI;AqFqcP4vUleZ*J?pt4Q$%Nt3&&vy}vW?iZ zHvgHVda-OHWNhH5m)Py2>U%%cnoW<7e8Z^l@?ra-wn;{b-ws->vA($5THxa?Pe|3c zpoizf#m4Ii?Ej_Zl%g7Jnb$n}EW=}cBd~ti9-Rl9x2`_Tq?NuX+SupgGWl;Jn>*)D zNvSztwn4g&`_7aX3~ydOI5NMn{*FV*$EkLSTXu#0ZFK(JHdDTiwTihe`;51VPGzd3 zraY*{lRT;W!1HMgE?M^?+0T6roKzYa^XtyS-03N4IThU%2CYv|v|U$!r(d{iz4V{o z0#EjU+B+Y4cwY9Ko{3kl`eE*J{9SXp6k84Nqwi<?Z~oz_u(a?u6En4( z6XvT9fBW<8u(;`8m4|ybcph&z^8elR;(&TbU-i5f#b@j2Ms9BsDJt6QkJsb+!H)A&d)f(xh0VW(&F7X>1f%} z`HTl-XB8)H)(KKub0(9kf+jENkp1)V>ORLm^VZIq|BLx+_ibLT_IvMzb>Dez*^uw- z@jWQ-g5b%OSDlws*flP9R{V1PW5o52uDfXraRqBc-%NIxU6IS#dd(;2-S=0sH8zCt zhwU=?A1CklvQ5%5z9BmP;-epJ+NXj+LA+z%sjm0SKCfG~@VQXS-W^B$j1ms~T60oi zewY`uEz-;U=P7gDZ=QzgX?ugEHZ8GlDN!mua_aa$+nuHt*?tH;f`+#hv+#0(*gD&b zvi;723*uhy;aY3keRY1ibHLgC5ACcUn3sz#()__Bm1*V>?4)`B!{IqaVH+oDbKL*N zym~XEn?vE_B{LcAsy?6LzL5WJ?XT9i{N7hTHfSryIhNjzkvc7V@`l8^!|5xxaBN@n z>HAeaiw{$$Nr2Pp@6yeN$}MnTBA79c3HlFy3bN zxaAzQ@av%{g}Azfe?POi?0&qu9a1A)$m3aK-1Xv?@yDy*m%F^~GxJ(+JNswkO_f>o z6XMl%tR5)&)ARsgc>bEBBT3&nNHZcctZ^!Q3$#s}>Il1o%9c0Q`#t#`59ZCYbU z`$ce`OF7M;&${EO;3Dn9H#eWGJpK7mdg|mKw$GXWRA?Sp9-Z|4=R@C>ZMz>%uiGKA ziTA4053{4k8vftw%IJ-|85DNx%JXxoR=-?ir2jBp_Ch zw`tPG!cLie&#Fqj8D?2(e&FNxnY+b^`H#S+SfSG~Vsp;SZJQdOu|DoR?>|*D&GwUq z4Y&l%mBgytElmFk&6dUG*7s@Wp^BsT9kdoE7wK@8Z_pZ*~ zyOUHD_dT~)zV(K2(Q7pittmV@dl!iOG~VVRZFq*gf2r-4y8es{!FGj*s#Mq9-f;5> zm%601_=$(zp=2}ei`){WDD&7zoMhA_TJG4FY^}V8E08~{F^_qr}yP)f%`c=k@l}L7voHUK!M<02?|tyHc>a6afBXHLp7Q9QZmbIk{Abda@tWQ6sci85xjN|y zEYmjqVceWn;pPzAbc^Rt`(5Uz*SA#h>=ttWtas(q(~YsMO_z+eCqAwYI`VLGknqxD z4@DRzt@f`{zrItOJ4}C0jeXOH2mfb%?d&U#|EIj+S(6o;4D;J_2i&p+?v@x{{CPZa zL7uhN)%TGyht@Oi)8emTWLDzQtK59x&XI5TCq+L~G!p7~FRGDawp;#fVi3olT#=N! zTQ`)m`CWO@^!T3^bL#$0*MGSjZ@oI1Q7iY}`uRVWPHmlkpzL~pPy71Dz7u>e|G4S} z{B|keV#q9ATdtOQLqtw?@g{A1&1HvDXK6lo-E#4Nyx9SfW1&GFXH*}8yVAFM81KnH z_;9!5-OfobHpFh-%lM=6t*YSPs=6Rsy$#1j*0UtvGyfkv#X7BMrF(FNkMY-@B$bS$ zrrFb3YFL-E%=u?@G3i@*P-25W>y8I9UwHrBdZ5Y{ADbSQ&Q!sA{>#3ldCXJAXEGTH zmH*&zQnFh5S$v~~-VSTF3tJiO*-l-0m}~L()YJp(wL{Xb=em3;^|@U92<$Ey=8uvO zBpJkI`qN*rx@7;-4EZVfURAEnChwI^e};wG+}HoDWaJ+1nY7g}uy0md`XkK>1F_pv zoi24w-th3#!#v49b$`t+o=fgjJL^BE`n1Z2r?v$(k2vLyetb~uI!DQXqgp3LP4Kmu zu}mDNbxquvmfiYu_ZKWJSm+B;{7b=7I#*#fe=iu@#Z z<$zia#~q{%HoUy$V*Z~izOi5BkuS6Kk@u4CABO+Ti2D3`gNQd%+>z-QH`;kKS*)ov zZP2)pn6!H8+Jum^b2R4|HrjSQR;u(oa5(e)t&UE2r!D!lyzgb$B|Mm3%{OO#^L3%1 z`nuq&D~%p6o9t@S>S@0DgnHgAE4|eI*tch~Ip{fClfRX&kb;}@P@)ZRJUU8424 z$>$TdpDIpcT+Sd6ZOYj=Q#N*|u-fdZlGf8E!RIyVnrc5LRlOIRG0#GwPD*cC@&Rz6 z%VKPh#Bt8~zu~f$`Az!YYi$pG{@?1lhwZ;s#`N=rUJUyTz8}2#vbF1H{qj4lO{-GZ zZJ3ePcVn8ud-(+a2IY^cw`D~;8f(OJxGD@UO08xMVY(jaYn7;ZRLeqaviZ?9-I2>r z#qtMiaD8Zawkh%IW>8z-*5RO7>v0qAwx^q>pKJ(bII(7W#)>oN&gEq$9gbj{^Y`QN z-xtDMZhx8Vw&L((a1xE0-l(7NUUFU3<@fu9DHk8tD`$L&|M{waNrl4}A+~AF^BZO3 zy^O_g*T+Ab*>>VU+v(=p0xOrwvqb!}otJT&z4Mr3;pKOSjx+uHCiEu#;a9z+mAmC8 zU%V#IUc73Z>ckZWFP9w_pT{`YJe6PGdj15i=|-PVUVSPwiE%jthv$@zgjK>bmvI!B z3aFVqoz@bV7dALDTcJ)SQ|)f%VI@%iHZrp>M; zJ>lc#TS|%S|EsR-dmm!X@uo%d`O1!e_KR)@d)g!_S;?jP&q!HyQB>{jn$!=M(p_dJ zUpvM;f7z^LO=0P_zwLF^nt}cA*lM1gb!M~iKO)U6rdBog)we?ol9I1yl zbGta(iAfv#ythX;?TRjvDBxnSEDdyBR4#W}k5~J#rm|b>&Gz&AY<}FIlrh=Pu5r$E zXvC+SJJ5Hd=BwWsHj9eq&(=KR`4_5XYp_D5Qv4h1jCJo?46gof&ur_MRVg4mxhQ>J z;RzlQxyw8qc7M4S*~%;K`m(m6A@{-FgH;ISiY1~I zx7P$eteNe_{^zJ8<-GN=!I9&qaK$O9^ipGtWBTW&);v0-N=pP7-*tgLk{<@r5qZrqA z{yuh_chVXHpI<9h-G9*&skhqU;?)iE4eomm+)kUTRi1D}hFQaB*UaQ^jgc>ROtCcx zI>#uYclnHD+i5*(wmD1+)_JF=Z@PK0bo-V|FK(1nJI%@Zuz#lXAN7<=uH`%yY%WbNc8)1aQ~wf&yU~We_;5OD|6MaD`zJJ7IQ9p zeCh4Z6geef*~xkQf~MOQtn}{AlV+G67zk=a1fCI}yZ+wAse3bgw*3(`yS$~;}f1Q2ir2j|1`XquKsvW@fn^Bp?~{72+8kf)K6T`m@{kI z>1PdUcAxG2cAhP8-6<+}S%=}gv2n+?1N#`x*M~VgbK3N#A@HB8y=qkYS~rJn2lsOs zeqdd6@4fc)v{|LA?nF&+S_|rib9tS^y#9^Hzh{i^6%gc+%hQI#|z@vr7eBs5*S(k=Y=8F?YIf?zVN)#Q)b< zcyjE&cf%mpf^GWT4exA(FaEz@Qmr=gs7J{0CAX7Rrg~11TITt=W7}~~#{cGulViLl zW|Zf!Rfx{#38>EhDE((OQ|LG58O+m<>`I+rrI#B1Ky?P!K!UDb_LhzsdhSj2F-CIlTqa(taSJ!OMJ@P5AF$rbU>`Hw<}*B=*IBv>w7I`^%p;*;9X_2*8gr)b?|o!oQ2?d*g6e@Tm!=c)WUx%%H~ z$4$x`eoSd!<5KeT=#3}*#uByDj~Ik}IKDiNXTQ2j1mFCnEi3NpZ07fgwzAV}DCtq# z=Wr>u!A7!xtHI``pSJ$yV9oNVm&>R29a=g&bLre9EAb?*yMc#;d@iUy1!o-@=ADKY zIP;B;%Y#~Koo>8aQ%?VPjC=I(I%~XVBY~k_x+P!etWAzYgDPvuDt;PQO~T@ zQm^m%yXLgOzozS*d`BRV;C0=VM}vlnZWv zqqZSgfrt6^TDOwV>pQ>Q4dj0NeZJ&_>w>2l!gls&w0ds+((}Ln*Zu%Yn1{w$WZrxw}WLnuiArZB^hL=@MC*J$EV}V)EO2G+1PL~XCefVgr zzBKuOCc~1@nfG?8Bv0;{TzUE9%d+0fyw$?7-7EitW{nv^<36SmFFH#vPM_yhqS(jt z=Hk`mK7aNz(!d--H+5uO%~f^64Csj{S78K~_A{ra5os*H;tW1B_<=y#2wl=i z#ho>nr`kHVBu(Zz4H>jwld>^(Pt?Tsn|J=%ReaOBKwSTl+_bo!BS&^BT|2#Z2lK_O zZL&-Dek%Gd%gkzMAl*EnvL>!?&X^xQhkarp9kh(7XEU zm;+Bs*zt2OqrV>y47kgs)pGip;RIvm_kIdiqO+H5yr~d%KV!#vzO(*+cdovD+2Cr` zvFWptQmUN~PtJ8S3=;3^{eM6IPG81%MZ;4epETw_TK!Kk{%Ae3wqw&P_J77^M<#ad zt`M=(*yq0GPM-Ji<1QY@XQ=O6UmhXc^TA2>@1fh?N6#*Mo74gt)Vy(av&o$Lm9GEm zwM!j~Sn|Q6v3j>3#Pj}{8aan)fzMr4*ERd&<+I(~pWVoc3Clgrz<*?U;sQHa@!7@& z9~I`YzubJ|NNC}8pS$Op|Lo)t_pJHl>29;IOv0nY>|a~?;b)nCGR$kw9jNhnZ2zC% z;_1_aQJ%HG+W%Rt{CDH^pDT}Qx9MFJnIkcI*N=x@wwpURy^bAo-T2^j&-T@;%~Y)x z@=pI@`&s7Vc0=YgP5#Y$TngLT?Bu-JpY?p>(s;1%kQPIiKFdps?qknI81|i2&p*HH z|BgM3Qw;1O14<_Y7)0)VTpUtzETa4%!;61wS4|aVoyPrIB7o<^^dFv|H{KIz?mih& z{L65if8zWmZ{9DT^ez^8Dt<=YD8DJz{v_5zn5Fj2FM_Im!RKqOs!I{wwlTwk^-X z_p_gV6BxjhFzct${(X-H!~K^V>`uw?@#^})C)v1IY2k)U^;GrweFd-jJLGC^WF*S% zITyLrO85ZB+_{&T-OD78c|=;dz5F5al86I6{zJ2um z-5>uxz5Jikzlpu!Rfvbn7LG%epE4F{pYbhnnf&~~(z6WyC*}Jc|LiUN5j*O5_6dpVxrGzhFtz1>-Te-C1S02)&uZ@{Mk$j zD}p_ff(@>%TQRqAw*c=^y^DTP^Bd1^SoZJhO_%)ZY`<(C)VIIgu`eR3;3w->;kt~w zJ?oQyua7ZM*Q-A6;K#E;=!2He#D90cR-~`}>iUkISLlj+_P_c3twISr*P=h~ub3#* zvfU#`>wS~qy5`CC?{0NwT;bvhcs)CRpKr;RjX%yGeq$Q%cvt5r+s5~Gy%`s~_9^bQ zNUaR;&%z1iH7I{e3RV?`gvX$q%mK3`gF^R0f4R^|n$@Javo{8_6~$xLguqVxyNoi6He4XKWkvm@ER2(PcR zjEYH*T-9A2r;wlwF?ic|WX^C}D(7RB#xy1z$}b1FmKOLm9TS7sM}yxkL06Z50v#;yl*ANWTn zRsG56yYuVN<`_PEsjhXLQIWP5tMyr5ENz{d@b!Q;V-#z1Nln*^MFm!@4XYRh)$A|L zbxA$|DOo;=Fu0cf)390IQ|P?rZ*}Hz4ThK-dn9Kxp8Y=Wh{FHQmoEK}s`%o6Jb&C> zzi?8Kwa;E1&Bu@b8pa(CYN-3+^z4Y?1wS60gPWf%$~NSFR@NW%`>W|${Q%AdtzS>9 zym33Xr9b|L-pv^=zLa(?wON1Xeogm_70Cw4d4@$iE1vIM?4-kbf~$gI+nP-4h3#+?P85)Xvc@44-s-!A@1^h3T4N44RaF5XkO z-k$lSBC||%yKq|j+-jSPQp%lrKV;LSUY>H_|1bT=*FP;8H=4K3WSEpbM{>vIM}}KV ziVhr){KK%>&TbyR>jAZ^`W7o6iqE)UmA!b+a;J-5S2GkSEW2)@(G-9FK?sBKYnfL! z&lpVtwFrGA4cwIOvYu;ZT+VQ!`Kiq(jl;|f9D3f(`D`P#uwHIY9q70U`_>nYD{pMz zm;Sm^cE{i3WiO%=qt2yrIVynupa(VfR3nKi7gEod<{O5mYS?1;qCI`Mhy|sA%CZU8E z5gLrg6s*oO>I6wB*T4F9AWCIR)jiha-8}KfA{EbiGgV|dXrC5rPnvdjvP-|st3a={ zdSP`e(kXpMdKyipF=f20dJ^*{_vMcnbBz*0wnnI};VPaz^UwANDpJtxrC#Nn4w6<= z9eSd_9{%#_?V`{v+;e*v|IIot{q1AJ|2m!@^A9AXH~tINjr??QBkQ)qY!{k7@*eM* zdA&^a)#GVQCLxhQ$GIaO6}<>{dH?x<(UOwm59*~gn7=hRwTUuGf6e`?KUHz%Ns}8p zI$e(c@5wlHT<+$NulHx&pEJ=yslfe6cs{3`=hCv<{J~i>RXjW__U+y9|77oN=ZDuG z%|Ev6@%|qV4tFkdR=lqe^>>Aub#>?)=>i95jr#U!ZS@D5YL-3@-m*pMTz*M}@X^QH z9sWLwoqGe+JW|UM&of`?a_W#&vVKg6yuOS_Cj)eS<~*haI%gxS&PnZSoDpT6+W+U? zVXrImf?KVmgJ-_~JLN@L4dZTh=Km{yteUiQ$`anRbIx;kYIgj7rm-mdZcu~8nyAMg zuK$abKPYbcWunR^p?Rshodh>ni!kjz{3QA8oRq@{O5Qksn)|u%)`{D0zwG`Vt5Kc1 z*J{~}{OlwCufCkN&%Bj+MBi{bd6ZH9G-B!FlmaUxG2J~o!go%AhhXA zdk9C3zr*JJrfEzTp3@r(Kd)l`cl+bgp6g%qQ)KhRgckK}K4DfeYtqM~N6N(6^zt+v zUWh%AEcmA6^Ljsj{G|)wmqh*@zA0eLw68~h`tRghzm`?(TWP<<MT>w()saKm4E-tY~k8nsXSt~m%1kgnFTI+{5a_NfgOUsF4|fPuf6i<)Ykd&E??@+ z&5Ba0>ploIl<(_1zd2~ClHn_h*?bQtXGt1p{fJB~#hvKJcl42dK$!# za`ofoRTo%(^vU>r(a-tvSVfXKhP6iJzOTfG&(r^1-#E>_)HC4x%H)lzH`IP;c{7$3 zdo$+vDxBI|9H+eN!&wbOn?r0{b|*&c+W7v$Dx-um2}*YVu6P!)RajnDtv~c^hWXDW zPXo=TinILiz0ENF{{MdWn)x!Hzh)WNWPerL#qZT1cw@@u(A0xWI-XWt8FzMMab7*0 z<6N2j)vh*KCtdRLgUS1ytE5AEEar4|x?R>}kou`{BlYcj*5pa^pgZQCfHy1!9XoEF zZQoeSu&rb>gVJ}yI>tJg;2HU|V)m+?>7UbL>vXC#=e)|n*!KQ?mZx-CJuWn52&Nt3 z*}r(#$%q#vK^f(HWj&Gf6wB#d=$+c zd~@EhAcpNbXNITh>_6Z9Pu=jv{yL$Hyb?d^d)BjVR6TCh*BWTFuW92)=eOr_?*=tQ zyycph=YId@`@;SkmREDtLmqu&UTw_0Zxfe@(7T9`elE^^wZ|hCZLW*8_MY2ZeMRxR z^yPl`z#5|iF;^TPK5E=u5X03VP_u{ULEe>{$Nq|LxMuwSQ~9FP>kUq&KCHJ(6Wv>{ zGRt)T)n%&FYA$(MZ7n&~5GWdE6t&-eES_YH@)Op7Yzye^*dZgj8x z{NUx{SV8g4Mn%H>Iy;}rPnlRyQ@dN>u3=k7bdJD{u1zAFr|hd`y14oLRj=p4^78K+ zmg>wtns8A4ti;Mx;iWthp(jr_g&wb5W6kOiI-h0pCwo;!k4^(f0oHwgdyY6?`KmkV z#Xm*UgdO%eD{k@->?<_?Gx7eWR_plat#kVgF6_@!`sVSY<3*?jgHz`Rt7%3LK0OIC zsu#=IbMa2@49*2|74x1J$?@{Mv6=QFaZZP#+m>BVQvVgPT4?H$9aQ{-*Rx>Fv{ux}Ro@nh)GMKYqN}VE(>iviYZwJ5M59 z=Rf!|ubJ=Qn<X}kmm&=R=4z+M%gwNwc!r@| z=kuhN>qnN|Ib`_h=9k@ef`zf`mKZHuGS`Arcydv+(7wmXi|+5u|5&iSM)Jpp;`sM(Y(isaEt{sS z|5>s-{bBh$^{Ag=Jb7}8zaFz&$jeyYxBi%(aCqwilf6?iB$l~qa~l76zG3cx_aE3h ztd8eOr_I&c&J?s|<%bz*7k7O5#+lHASZ?n7_u2M0 zPs8myh7CSNI-MVn8}Cv#+j`iiq4(F3QyWVr{%HMwaAn2G{~LBS|7Y^~n>|57#_Y)X zTMs`RO}AiuSM^}!*E@PHuYcA4?d;#6n#_0LSfTMIxq#&X+pT`ae&FBAZua}vtrf4- zn%%Rgy_e52Ot{R}*uuUB zarjMi`)^5FI2j%~;8 zG5XDtoME+i6-x#G`H0m&u1M!|SQPRkm2NmTrTFr49wmoo9sR3c6|HHuugn!x^%p&| z<)sU|oR3NNw25mDzIXb=zo(cdPSr~C;im$rh)*Ys!sJp9oRrw<_`LC|CPR|x;x$Si zA6)U=ZFE5P-kv3eiI0Nci4=Yc|L}f~(-!GzEPKSuz0$fWE_r4BoAhedzq@kkQGe|g zao;=iK)$OXM(#@@_rh0~O%5MBZ#1XVvpjuf{*5iAHoI(d{>*q7cdYy2&GpB6?zCO3 zN6`y20=armZV!#pq>3<<-+Oaix znnKs-Pd~6;e9ETgtIx9I9)8-he!KbIdFpKY_mueTx~uPZs&39(%@v#D7wK=A#Us=3 z+&XQG35WQN3G05yOMF>VXq>w|ZvQUZw>6WNElxv>Ht1A` zw*eRR*L%)`oduBA9-il!8a~6v*uBTb^q)7s;N0J8%eE!%jgNe~bLNeOQe3?Y%Y|!2 z^)>kuy0rZN>c^bfHMPN0{pgY9zeRJ+H;SIQ`}F;znw%V|rz$fT?>XKHZ@HQ)9L9U! zdUIzT)6?@WZf`8-m^Zavw%zxz*Pk^xTG>s~wHtMwt>1s7u<&(O=Z~+!XV=@aP5OK9 z+M}nbS6^-WXQ;4#&*3M^GWTcd3(f8Se=BVA-fs^7@2w2eT03{vQ<*P3f#Np8LfvcU z)qe7w6F-S1Ct~uF>8>%-Zl(I&e`01WO>y|O#JF<_&k zfD5CviMwKg>SYxp>t#wm(d=@(IrleVx22_|N@W!3GC}uH+x&sZ5VodKdQ2 z@ynrg?<6eWpIY-Pr|YJ7q%Y8pez{XFF-57HQ16ud(M-hFtc%C&%X{vmDF z<%g1I9XNhD?tE=?220#M|C*UED(f1>Rd{~7Cj7G8Czboj;9}N+O0j)PPpy8KR|e;4 z+GyG=(`20A>A6!iA(@A(KQrrx-LW{KcKcT4vlczV{%m3Kf^k6>Mz4c++FoR@{=n0a zy}>2H*rxeM((gHD^F%K!w!ZlOy!x#oW&U?Ix188@T&2y#;zK5D6ol5!TE;%*PX6p2 zQ>@Ds7$vo0cD)pSy6AdGUBhG(i;C4J7C5@3|Cq}apq(?neAVfQS*O+(FTXvTNvy{C z__EvFZK-GDjxWExwvl_!%H+#$S)Ga^&5alAi!=Yd!#WPM$!h!C*Y@`}*ZvKU|2Ore zEpvl)f62r?L)DtsiCxbRI(PC#?5xUaSoOnZReSe==HKcYZ(eb}aOSgNTkyUU%FmBQJQcIr=#96NB{z`}z6)XqCg50o9>%+x0lIahQ; z z9`04=PuZH~ia$@;U9kJ5rUbj_^2^hd_U`stBLW@#31+yX^+m!VRQS^FaK9gHiJb=| zGEQticKX(|zZ=RKrZ8(iT58T4+2Q`+_k7{KO}=Gu$G%wKD|xHQ^T*iUtLNbJBk?-( zRFWs3i*5VyV`2H}Z5DcbrwrB4^4w`#YWds#T8;fx>!#nwj#b!w`qZ%4?UAJ97I~*t zOGM^JGz%%L0Ikhi+@bcC<vp`0a!~VMr^h;@ zUou|w(Qz_CK$Ud2ExgX;Kdp zi#L&B-3B!=AC)(#Rb3VBaQmhr#rOL`p3B~aA}>0B%I*=AXivOhEFRkVFmuyov9SG5 z{10DW^zp{R|I9IyKe*5Sxg{&{PpIU@I@QOMdwMl>805FVPcJ{3DZF=!Rmn9j<~!Tj z?@w~tDiW}M;wl3M`T1=HXI8nWCpK(h)9=m@Ua8HvA#u*~h#j+cak7O-R~$QW|8SFG zy?|noNW zIQF$r@5^Ls;k6Sk`AF=Yk-9ygdlpAJna-4}RCyzk?OKntlN>qX~uFC3Vj zaOvAa_k@Q3+v-_;?@!41r1vi|={MK<_g*_sHB4+2YrU+=kYxT}N9hx&_A@vz_ud|r zsdtZrU2#6uE!=*-d**}RX78@-eQ@Judq6~q@$Z}y&>(FY>rgKY|*I(nHw+e zPBy!7^|^3v!(St*7R#?fI;_&aIM^m+z1kYSL*;wu+*xUpOfL6jCk4OT^0{;NyhF(| z{!6wye*WJf_Hos-N#5#blKy<$8FB4_d6L6Vc87ykc~6T9cOFdsJJ&RDk*2#Iv)kSi zYH@eZ-@HAIasRtJ+m=k(_aH4jJWrD~xWec1L+;}ZCubM6ch9ZWXmvN=eBLyM&r0pC zoLcq?&Tg3&}ZjRDbeRk73t8VT_m7b{#o%?UREM0Yb z?*GDitQCkj@4{%xM|4p zlvmZNeV1*>6B*{0H>TJgf8(6Kbi>Uv7dm$|ygkwo%rIr=wp`h{?>zfp7(pF zAD*%1%F83$9zLoLaxvQ1a--t6_oCl1V z_zr|$R$rDnHF)F8bsc5}Z;#&4PF}*#w{G#Q4{tt-+Nnu>nY2sz(3Y!(9T_{>HYQ#< zHCJ0KI!*J@?v1Te7}V?Kf6q+#{Fu$~)!OgX8JnMdzJDy;S&2!;tjFyp%YvA7JSHEz z7}6ORKHgHXJNl^M0}+O!h4Q-TdxbTtw}@=wU2E_%ZJVW=ckJ<{Z!QL%Fxzry$?TiY zB$*j=4Hmb&-#Y2b@i@u)CZPnC^IV3m+S=PCRhi?CEy$Wwbk&EuzB8Rm zB2uNy>-Y@eeXs3RtbT3$be`o!t8ZNW59hU^8E->(du!V>O+UBxUF4S7<4bRMA4@$Q ze|-5HnZCD|Tpk+xW?IP3vtssR3|Q{earBMNDP5Mh!_KjZ$-!MOW|ZtcEPkfp-1I#D zzM1|UvXk@9tABqG14>mEY2Oq}Y1B zY07|>+%xP`UnV5m^YVy|_5-P!(3k_u-M4q}9P62ot#_p4Wn)z1jM=kZG}rID+W4LM zz!{D>p@9GV>sm#VUzDzXlXM_+k7kb4{mKJ>zFREHw~4D$J@9U~@Y@Zwz5e`2Ife6Dz%j|xMZS516uunQHzF*er-J{~; zhN_>{Ic{Ik-*8cyO*hACrQF0F)9II3{2iq^i;^Woz@hU50l`p<5tKll?~Sd!Jf zWx1ep=RXEj27T@e`(Mm#u77%bHY1<(ZHa49{E_$1te6+vtSfQf-cI4yHQ}e>Omk|@ z0{h>6lUltc{>nkG0EY4t!I|ni?n%$k;`U>URa?WWV(l&gS|!5cy;knnwUeq-Z$9jf zm+ssB<4&Q^$v>XQ!XCe~<+;aqD13dZ?grtqO>H5)wa2U!gEbxRntkn^;My&nbBbxv zd?!W&uC9jQjfD?f{z=6ZMHZKosx?UYRPz1{HT-${)dKM;+R2x%vHhH~Kz$;3CHv~2d# z#aV6(9$$WYR`Kp!v7`f<3{fkLn7bF1=iHT(FkH@HrFM5-@VCaBFJ_cfCmfMsdQnkQ z%@^5z%IWx$+s>}%6esj~ZhtEOGa`d*#>bq`Va^IK+ew)l}7B&6Frs9rWWo90!`*e*2+}E1E zWl!J~|1~Xc{Vv-QCQFtpg)hI!Y~q{S+UI@KRw@3s-bKmtl@-&Td^0@$;0s@|Jh$F< zwdVOsuUL-8>IBNXN?X%X)UhP_%3I46Sxau&`J3GRj<{y9vdv*yAewbir}@>DWtnZ- zr*a0UxV<5=ol9I${=Cl4cg~A=->F!M%x2rywDNfBl-lxxm)PcooqhUU_(%Ca znd~(mORom!$gnMaJu`w$F7C&v218e?x+cv};d^H$HCd`}{d~^lwnOF9>uHse4%02S z8pM5_XZ$YU=FJUlT{DUmr2RbqYNT7mlsyD3UHK3rDjig%UjF0Jc7FYLOKgtp{cu#j zaF-#tRg|rmUbDZd`^6#iOKbmaT6!%0wBAh(_A8dxbDsz;?dk95-jm35(Jg>Q=Ewdb zEv9|7EEgaC{%LS>&ebL7f4l5GelYQIAnT+Auj9vML_0pF==A@xezj@Mr^Ut#Cm2m% zpV9iVL)Cg=8e>Lb(bik9=Dqivyy-#6o|_-E?9;((l3YTX*$!RHRI%-mv0J-IDN43n zkkh!y`=Vpe!_=YhT3+NQt0tF(vzz$uOBbxGOHazBcWE=><(>*3Phpy!xu`$lk4yIq+1 z>C|}zOl5!MGY-aNi`U2~;L%KqR)=zuAO)G!8zU8jVsp6Z}NV8;b`)K z)xpQTb^k{2#n<@BmiO)c!K2chnO(hAWctDPvuFJJbzI25*4K^iV$|MFzw7LkRZV8^ ze#{fm6ts(z`mnyx<+Y<=0nfe}^#hd37nQ$gvnnqfcF{i{P<|?T-G%NKQ-XQ+MBTixTz*#RD1%wX1+|lhY zP4G&$^*(upH7pkYA{X7?`mv}%e!csaS6m9Go)|XlzO%utJbS*4*g=bQUBYz8wt&~WWD#6IQ)<1b|~|=hH$Zt+wzc=dt`uNjbdq-A|X(SG^xzJR8HvlCtb^(6&(dzQ#|3yakk5=9Y-z#k08RY(^^X%q-dqn##Jetec zEf%_bSEPxWZN2RDO|SnczU?*;_^G^a#%84lJ>nf{2^UmDuSKohCDSmS)r4bu{N%pw zjyAh4>0`CJ9#>aY7@u9%zp8-JKHR zCp$fFdQ;%>BW0dRNx^xV5~6aKr!<^DvgD4?21B;i<0h&Pj14!=cAXg-p0$6@o0Ae9 ze}BEbGD#=YX^-NA@7K==ZdzMsyy|wu(o>xGYkYR@6S+Joe0S@MN7p-V=mu6e9|+#R zR`K(S)$=0k@A=DWP8V*MT2&Dy?dNxLanDC1PsM4x>1`5~YzOx73!ROg!}LvN@(qsP zv)*i4?ceqwr{mVj@q7U*wY&5D-~HS9qM~GX{hB{Dr9QiC?OFa=zML`TuDzSuzBylC z>I?l9+3mW0aZHc+bKYOeVv0iNFPm9pwsEp?p=S9TmdCDhIwcv>7rtG~=gM%NC*q7n z%gK%H4>JziGH5Z}PRLnz)AiLQw$S~%G<(uLyKXN3xbzQ44$lsi1?QFqR(x7%cbsXF z&ffd#NvTskF5X_YshcH=d8xsyWhrO)W`mk84nCn*8fM5w?o@pkGNUAz$?n+UMUR8N zt@7WvpQ}4ltb3JVIjDZ=;GHg#(@8Kh%awke zFRL(Ylk_&>dwqU?1ZS#3Dp_?ae23_lA_N$thRr0xg9Pl|6J|#@z6oss} zjBa|dV@fQOUaMoGk?+&^C7DS{+f_C`oZJ#3m>S>k zQ)F2}ezEz*i2-h&mWB=etSPDt+RU#GrJA&)Gk!SMu(G4q*?Zo~CsS1>8a?LG_#Syf znxMeJz^HslNvYLk39=RCPqq?u$Bn`!nhH`!?sEsy*9U~{5RZvzYG%>vCcoRfS_SMesVl04#brp;TZe9}kFc{vivVeYFg=Iju8 z)*@-!$9Uu04c=;|Wog?d$Lun^c+Qz+>W#4DO%FmB+%Q;nfzPtDzP>}4IZxHE<4csHo@SZzB z%<|Q07wz9R$A9g4UaZs*uNeH~s{ZVdzd194&nh$@In`mwEEQ$xxtt;6>aD4FD)(;q zSj+jS)t|}iSi<4wJGjHG&E6e4dd6;w_%^e3x6RW8a|`t^PHtM3lzvxW*Ms<(-pw%__IWe46H)#U7a^)*FOvz8>df zziXHMW%ceHn`^eLkvSGW=c%0JRG!aK@WI(dcxm3Jj4Pho^IX(x@9)U8U{BsJ?tii~ z{QRHC6&7a-BZ>>TKn->-CA+OTOYIACegtXP9BRqA@nfFI#2$Ymvvu|-f2br2pSZi6 z`-7{Dds6Io#pY~&$(HHQXO|u5yBTYwvHr`qE%&zPR{WfoqN$vAvSu5D*>VOAZ&k1Nd%%ag zyagxVCB@HM``>#Dtcw=g+_$>C`~TGf-2>t`)+fb&?l<7w9qY#tA%C3dU$XR?r|WuN zC55#gOWZpzS#4^hiL~23byuAqaq~S**o=cKHXm5@jr|4J(+i@{g}=TIR`rtqqy4I? z&gsf?=BGkQQ9neQ)(Ex*%vqllc3d#|^hcRD9fEA~+&5It=yIPq=pVi|slIg^v;V%F z3eo%XCeCrUHhLh!Ae4RgTBGVi@cEJJoI&9^`CP2zN6j-iV!DdA?iscG6kTTe-gH{V zFL77qbL#*9wk5y%*{1ku)5qiARXR(03_tuWxB14tqxHp}>D`uFlU{he5Pp7Tii_OW zvzOOcC;h5;C)9lYj$u(->cN$Xd#jZ$N}d-x6!yetdz(-(_umrX#dE(^PhO!ttx8lc zHH*DVM>_54bD!f549tFv0uBN1?s-o?S+RAiZN!zmcRV+ytk^JPnQDgOcAuD2u^bZ0 z!L3I@XF20N+WB+wz5j+6pZ)mt>rBc1fVGdypH;c2uM5=fKQ}XPdRUC?>`mT>Rv5fY z^QqZmf8hKAh6L9GzQRdrlN4@kix#N;t?`~^SHjsJ4dHwK3jcl~^Xl6X&gF9&`h2%9 zpX2-JNlDJKSnoeYGQ2;omv5DBT6^DmCtKg?WUgtecuslGO#HNRw{Og(J63*o^*9%I zx*lKoCQahG-W0~=3>s7FqMx1q6n}TA)$+Vs3q%Y3k1x61eIV&{@bM+La}z)BTmJas z+seluPJzVt9(rCIe|*X9&&Lu^`yXF?J2$a=$MWP$Z#5Go&8KHruW8-O6W?#~Gi>^5 zGxb~LGY$m3DqVehsl!#nm*03kd<<%6J}&gONdDq%%leBpFC!ND<{G>1I5UCq#(@c< zjGeB}18xed&vInqnw^(6!FQ2LY0fTNr$xu@`*?$vyL1EuT;RQ6Rxb5;Ze_iO@va9m z=k0p2XH)F185L8bjq+MAny4n1-O%E(U~Smac3`fCx1n|BwV$q<-6=USeDKs{n5G#N za67t1-`&1KkooaOm*CVhvrnyYvr26IZof_SQ7t2vV6^OKTTLa7`_2*N=V!CbYfb)9 z@%)?365)GK^!{>|{d>Rs>9VW*`iv4io1Zv$E7;i@RwrIL^;U8_2fuJWmxS0O$%+Ha zPc0-H(iuO@V=#N!5NXo9Xp6tC;N?-eA&dhkcyX*ecyX;9?akU#>-j20?tg%a{pZ&_~(Cy2EnnZ*z zZrm6bZuQ!G$9KMdRya$o|I}RmCj~n- ze3nV-mHk`jGw0M?K_R=DN%b0xpMuPe>K=O)acs-+IJu1n1M78yU$$)e(e)_EyjGdx z!%Uf0(xXw~jd#WcidEWLz$+N0vEP4at za`n$#e<*oY+76{VATCq4u7B%s6Hxj}e*_yQFqzzc{MJ{;HAjzmr(8_ma$8|}X?}(O zqUr@K50aULyN|`!mIXg@3HCYA=6~1QaP|>TO`lzn-X%=SOyxfaq^*4LE5Yy4946r# zac~bX4kIgI=VEoN0G`dhY z^P9lQJB^VH@rQC6;vF21Uf#BO%H_V}XPCEUE}3|dYjQ`}fgVZ0q)#jEC>@Yg5HY)J z(j@YBPn}HK+&wWST>t;L_p05hj@RY+yz=CM=Z4L!o70bU-{YGSYn0J?G0p4P+YPCw z8iE;8yzl?l1}jU z`MxhzU1t8$|IO1E_U*Luon!dQ;d&!+FvPoksNqf5VptgSO z!(Of5Ny*`ckFKg6Vc5d3F>xD9@pc*JU$2{!4;z9u>pLH*NYLkxY48QN+g7PO{(R`z zchwGYJI)&t&4*a{9fUtBLkv<9fG#gn(;K?Vq z1G`wx?^Ql7)O$K{r{|qj5vig&ot6s>%Tn)m-CBFFQkHXt^M=AR-&MRN4ZWXj=G|z? z>L49f6+AJQf6_7s)_W7cZHY~r9%^rxX_^{q_D*8Gir|6!pJ(uHkW6Eq^HoT&zA@MI zro8^;`ok|7YP=j0l@`paJ)L(rydXZZ>(BbS*%^1EJN{YU6R*uV?`&|js(r1%-JolZ zKZ0_0%Uc;Y&M`~;ekkMNV$D23^F1Hjju_Q4UUcL?bx-6&^zlS7hv!)b&$x$we;E+a z+a2*j<6y3hd*}S}2Ei{h)-4Ayag2>hWvVi}I!)YV7me?tK7ML4f*( zvXk?sH~1eC%@h)Po-5I_zWpXcebx3~9sa8&n14S`>5;z? zEZy>#<5kk(lk-%cZHe2qNH^|ITF-0w_kyuMtB%c7@%T4;2J3}`GL2VmMeFCxy7~C> zgwESPrryZ=`e=&a=0ovmZ&vY~TVs$=X7BEOQ({A@n`i2TuJdi(?>&X2-8g@U_^a7* z-YDUj^l|15k>ytZl-}z0ywA&-baXT0zV7utm-lH*dQ$S)t}1lVe)mYegw>CYwm4@> zgqq&^5mKkG{oOIl!FJ5&cN{;&w}d&^+x$R=&HA$2vEGw^UOHmM?NGRCc9cwEnC$XAarP_B z6Z#@=+BWUF{S>s{>(grEcXl6LOYJWA%um{7=o@otZl2!9px}rS<2bLIM=lk<{FYPH zJ#AH=`%O#MZQcT{C)2!+sWVC^Z}_OTG|%|R@!2eKfB7y-)tE?6W8ZS>AA@_6<$==M z$+c_uZ3wH9eO-I-$g1C-8)r*QwN|a+ul3ntm&P3PkxlTu=!CX8wOZ#Q-iLd8dKW90 zof1*(a!xhU;9btq!!`NPirGmFW=xS=T3#6F=+89T|8bwl_3eHu6gOTel|R$=(n|WD z>Vuu7uZDVp7mM z@SP~2^<}E_EhL4-cQ5VWoqbq*UztpO*t)bwt6%Tb7hGE_eR1myqum@`jhjv{RPOx8 ztLpHy!@;xGMey}iv89P$53M{kapBLONsEF%el6R*yW`$d#{j37*V|vH?-4ohV8?Uy z8CkZfiH{N&SAWb*;F=xt>|suY@p+RpHnTORaq5pVZ0#fyIvwU+kLk`hZurfp{J`c4 zh5Rs0-#t6TPUH)h#@(3Bv`hN!0nm29)lXATfAG?B$>HbbypXeFiET};glfTYiJTit zKB!C1US$s+QYiVMbo~&^9+i6OYdjPEqL8OqbVxQ z^?=>s&Ug2DcONL{b$4A9z}DaCzPj_k50`BZr(8)FDdBx?!_%;j{pl6C?}D`~uAxGf zuSFK!(>7an;kWZ5y^QZ0T@FXq&pYm=(e7ckM(B0i@3$U z=hvvPcT2u-ACIqEd*fQWZBV-FfkKIr-hDG)IMuYy3cPfdX}hG$mlyL~l*2w~WL&vz z#;5vKG<4pk2Pu2Z)~u45RcXKP(WiS1_0|5nB`=;@&NQcRl33^GV>#0UHZwRqx)P*+ zE~;z|SA7>x(IoeN)mZ}JHzzBJ8L#{m$FPjuf&YsCYJCo&MQ+IRd z6n;wC{cB}CNj zhSUl9$WGtnePF49hR?2*f0oR!GP^6sEI?myqpF z@nw^eKZr+_+$*Vm!BWJt;&Jddna%uDryfc*c2*7GJ)+Jk^I7BKKYpQFsp91A%-_{+ zB_%I89+7qFyKM5RQl~juchC4r`>lL*T`&HG-#Zu zR6i})({$FMMYC6?O)xN&ou21EBPZ)3XfSXqkC57uhs>de3qxF;k_wu zS8XrIV%T@!UGKr`xfXW5kCsKnxys+#Y$cp<|KT(NtMXHMoMAt7ThE$sv!^i_eB5ZA zx-*yQ;&cP+r)~U;)$cH>yZrf4;`4j`TmFOWZY51g3%|2((0Frk@>#RCL#eZFK9jO9 z6<%I++~08P4FAN-$2ZUO)ZKYS=-2-@d%3ri-VD9IbDx*$SC633hcitySOl1o4BFf) zyp%o#uq$xnib$961Qu9q$qk&K*!9C9Co}r^2gWTW+e;RgBsbeMNlx%`n&jm%u_Z){ zQ)1O5FWaD%-yg4jU+e$==iSfy%jZ=-yO+Lx@Aatab6c;=J+3QW_x=6<`0Dx9=l`8c zejdv3MBLi$oq43=vJcbTZywK@X{@~c)T+Y9NVm25tBs#K>}E{J^R8-m!rE5k|9#Qb zgozt9jvPpu#Qn5U@#w4rO38)|%-o)OQ}}tbukpx9b~DOEcoZ$HNr>2(_TfYXPr?(Y zN&Tm|Wxj09S-*4tZ}}V7+dpX9->%(oEx%NM<=mh9-UJ!VyKejN_y1k~cmB!S?~b1M zJCZBmjn$mq=gG&Xzd8PMf_T*bhwpMV?^k7Wtgoy66CGmrHh6cq(4UzCFHYL`iI>Qm zWISt_-jQ~Ih2uwx$lW!f|EGU%`QUxmSH=6dczq_v{BJL11uHfAc3E!yKDFUP%oo#0 zmeoCKiJ}@OdpBL$8v3(v!CeN8-QguSW$X$HKUP$P{F9s0{`_aS+;*n)M?ZI5{8?S7 z_T*={>~^M#6d7}?di|5FMgOKAU(cW>cf9}H{mI3O=l5sb;d(I1FmGDTUdijVcW*P- zZP?BD;nBOdjO%N1IqYxlHJ=@~DEDVY*!Q0I?)w#5>OXhAtFQgJdH>P{Gv}+Dt4>Rj zj0%6e#ESWN{hr;wa~j@VW!Qh~?u;(Wf1kFue^}&iBU_mKJ?Qmn|4n|YKc&^qlloZd zzvtNQ>n9^xkKMVNyK8=ay)(ymsa=(x>wSKHt`Gcv{!KWO*B!b2spgkceVa2Mu$fO(e~*z?wa&I|Z! zf44g4zQm#bzZVL;$Yl=e-+!m}|2O?V69wk|f8*35_igr?f>WOJLqA^qzx8*+{&&S% zdNGpQmtT*+zgOzX?uh$-zjg2Wu6fcf?yq=9`n`bpttme|zE?8Te+!GwPyKbv{$A~i z`0odo-ul>Nee`)q#$2y!na@2>eto`f>Brz$>#)ZTyBRmkTKi5g>#yU2k6&}{bi8_Y zmt!*9E|dRkXC!Z?+;yHbal*%#?@wN*+esYSUh;qUw~zldTk`j8{e9)z{oeY{Zyx38 zrN4Lib3Np}YtB-0r*!kOo3e8*oW9#BJgs9QU+>o)N3ZQywtQJ%`v1ALQ^isJwh#M` zANTyRYyB%bnNP*r<4PVr+iA|=wyAHi_Jz~Z`jLwagYULH?&U98pHy|crEzAP&Fsh9pR{s+17rW%m-2EM%uVa?nWr#SvFS=e}!_wNg* zw)0ip{QCXh*LRy4c6qSxWqr{0?vG7Hf!#cLnH>)7=hQ#57P#qaMh42+9^BFQf5-1> zldrq(t4+Cc=5kf-vOC6FdpG%s=%ne}RZq-+ zd9Uu%-Mi62`yPfnSFEUB`TfGjop;-v>i%Az`|U=hXu}hipIdgX<*Bi`rF13JLceHl z`lqO>oL}3b`RA*j6n{7K!%y?l^$V&@vsLW39p}AkE^+6^-n&`f82c;d*k&H&v@k!< zt+Zw7AL|Qw3>EjB>mGi-)1`LqNb%{KX*W+eYqQ_?pJ%?Wkgwo;gVciCC?eY4}+I{*LH{US`YY7DaH-yfS( zQN8up3;S8y-2(kLn53YUjJ{~yHL;buYy=#B<~6j?6vFp zwO6W+3Xt8ndG>g^Zu z!Y}Lp-uoNDvA-sttlq!#w_5lA*FSO@&evJBc;Btu_QP@CrOLb;@mH1e_ss2x{}aIR|JONz zf2ZDui;AwTN&McmWc_bp*~{nO>i=$fw^sLieJY3h`NUklziD5NXI|cr?z#HJ>jORZ zil3S!=fzgF8M(e~ue%#$>-uZq?^#AccR!x@pZojhhc~b7H*4RvS!3@J`E2tUxAf@8 zv&+v$eqaCg5+xm)r>^)C5ck{_DhHUC-n`c>YWJgGZZYA0O#dN+Tv z^sYZA-(_>Y+{|&V+}^*;T+;56t>mA8?@!*<`j>pYd-{m44BMZcPY1czANtvPSNQM$ zAE(}})}FtA{f~{ucT2O@uloJ1>s{J~+IYc3kC*=E3at39$$PEhvD|~D$9uN_KPgc6 zpL^Q(pMUS(Ui|Ni`74?4b)_8rCFWaVU&p|?_TUsc;HiN%FNz1IW?y^MFX$?={8usJp1#8<1b?fBZEJL^N-4J%-r}W+D0ejZ`j=w7Zdy~MvuSa+9{@fJ3>w8nV{DE)p z>x^2S-<$uFtwB70r>l0tve`}b&q@{dtgU|JYc4q5Chn8v-S)`3K#uMEbLThRV@vqQ z)^PlD>iw+W_2;wBtj(Lk{Kfv_+lbA~Ulf-9jre%PNV+m*rhoEcD{c43-kXJI^=GE} z8F!c31+6p;n!EKdxBAa#tyj6z=P#f5{Dtt{)lUC@zw^9TzHeoQjZ;Ld;)x5PzKD!T0&Fc=y%$X)vWAjOO(?r|u ztbboiVwc>qlApQAFlg@7!&dS?pEL^oUb%76S+6S+f$6P+G7lyRzMZxx#l=$baew*z zzaLol3mmH69nSioqVD^?|M~xZy(?ze6+SISIgf9Fe?E({Qt6UApBTgB_I^zJ@FRY& zddu~iib~~uk3tpqtoUuyFgJO%`K!YWb*?k2Pm*2-R8$pZ8uPyO}NBSC#L@o`aZ4UzE$jp^L5_e8(r?kw_Pur&$GY0z-{LHQnL`n$Uw7}9qmkR za^J0vrP8WIg>XlpWhib z`}S1kw`>io-wJKmu^?6Cu9&u$o>sJ#&gaaWX@9b7GS8))J#J#WeCAOr`IT2BR-U`{ zuyu0HZ2;Mr2?dL#zJJgzt?D@Beg*+wAkt_b%_s*Sq;Gr>CYo$3J)fs8pX+EX zetF%5G_&5xuhz&)EeC~F*sAZ3R=WEA;F343-(LIf<-hQ+Q}41L_?u8}{DAB4`qiz@ zpBCjbuI*>+vHA9OYuNdjyZ@};uiCPEUX0kM^L6d}{+*S7ac^Cb;}*_;llODGntyin zZLiE=o$xwfR`k^(aH6ctuTHJIsI=XQM@~}uz6JY|e2sqTx%cc8<|Zu5$O*ImMr9Se`F?{eRoL*AKen=S+Tn)KN+7 z$sC*h8A%)0&6)n3>BY)-(aQV&UVGOj@HO(qk1gjd{&_j<{4?|2TW#~p+9GT}o=Oy_ zo;z1uyg<3Z!v2%s;i&1UG8yI!(>~rkwyLD@QX}`&(58dyXURdaGd3){ge@f}Q zR`plDuiJZ4>YeR*-$QZ@kN()$8>}(CU9{jX!-lQ$KQn%~cFhS}eCH6Onw)MyV`K40 znYZ5V=Z<_{x^shF`XkF*x-RFA7IWtuIWV&#ua#eB4zJ}c9oG#fZ%8b+R@m!O`KzbW zt;zeC&FZByLpLp&llIMKb3-7M8+7yZ#EF03m&=R%T<1Q`_>p$p&filTzC4*PksKto5pb1$P-%BuUTYcrBjuIC-|IV(vd*17FESKUb7Q zZ}BqH<65kv_cI`DmtGXBo}_qdkl6H^kZn~NYr-l`!&dJTntm+%YV?mAGakCk+|h7f zeE0f0zvbh^nU1RVWzQ2mw0e6yXNUU#BZbR8KbrPVn^D|S>_&Tzm8tGcv25XJkkuPD zaL;-8!lP~pXTI&(t=&^!t&!=?|L2z>cW%DvU7l+{Jyss`C=Khgv*Ygxvw0#jYyO_Q zPU{S#ZsorVOn#cT*_NuiT^Pfg?NubF0Z<VRw(1qm6uEMf6tTY;(onXFVz)`oejR1r}_Pe*S^d>A?ZIe&ZL$f zUwr?}!qa!78UFowJ-u4{!1g_}4(0?`c^}Z-zd7DM;&F|9*_OO8-Mage z@0gaX{3h$1Tbq38dN#kB*@?cbQO}jVdJX^j`Od#+6+gfItxeDE;@tVVl_#!dtN{n@ zqH|30=?v3*_ViDUFX6~O~O`fuJK5Fz30hN_p~|8^KSm$ zV_$IY&xfXb)*s9ATR$%UxRXEUKAXb#M_an*`(!!X>~D$;EbS-i$H)$e5Mrzty&dKmkAEU(QnTK>eT@>I;uV-23iVqW{s4Br%Z^VUK`vvZld zpB(iLx_&&X@cr+KW1!s$6>~W4nZ{(P8)VZCUb*(Tx9Yn3wo} zTYq?2PV#cyU%3oPU9MfX=IJm^N(l7jzPk1B5>TypGIu8D(%2T`D-EsfpeE0W>)@lDdJ+9rk9_0&K%dGpqsB2Zj5@$Iz46EE8QI``lm9s zOB~c#>>74bWoF>CzdF+oo=HxM`xVw8zsL6D66IyPe@+wlcOraq-;#~idFTG-G8{kc z^LzSx=JU(XZu_ILj`8QGkY0sDjb+RVht`~leJRvsU2yTFgt_;=dy}-|679@p-Bg~> z&aZ2jRh`qh{=LnXV;$NTo9EB7`TA(Nx_|q*&=(H!-GSEXIz>fl{bwG0KjSB5QnyOG zNsb#*+%fMfq^_MB9=JPqF z*Z(G3t?&6)_o%8>@D(?B>9XA}vFjFH{5wN8{M9Vm#MuW{fdc#J z+>KR?UV2m3R&dBkO2^M(zGSZzZDq3Wm_=^8O$BG_q^YlN?>jsS#cl>1jUAj4Y&fDXTduPdA zk(Ie)b>)%6ZpMJqe#@>kvNOvCuQyD$JJ(usu4d)&rq1J6vd_%z-~6%W-JX@liq+;V zpJjj5W)5%Vs-3~-n9byZ&&|)$J9qqZ$miv=+BYluo0h+-JfNQZsx;`Vy5-6@4?i4R z`?2cdtaI$W_YYSxx%J+k{6B|(T7`B)8S{fmd9H`Ex(zIhu5FNyDax(dv2EJs~3|1po!Ykc~1p3F|!`fTYjjDhMAqjUeAk-C%4t#s?|PFEw8-@zgg!l z&r-3h+V#*?+grJxf?rwh-!nJ4P9|P9b2no`?rHPc-is&xl2dT=pRhCe@$CE!;rwg= zPP$YxXTSB!^a~biD><)9Y2VUuJ(=0ryV=8UN~L_Zr9|bHV;Yqf+UHa4y;IM1-VwSl zz+I6lBbB_;w`g%rXCV*wj!GG0y-nwjzEk~C|M9D$%tb5KzS;Sl4^PJ*6?=7U@3)x( zd3)wxjr9LHPhtBxn`!)28ru#}0fo`Zw=WtWiVK{t-X*^NnU9S=-=)n8>5nS?zaL#? zDgEha!j#s7M;2eoy{L8W*k{*;Q;u3npP#y}JFL)braqUN*z}w|I=g0R6xlsdJ5Z%? zKqJ||T=?oF(Ny6ATY-cr8<+21nRT*fljaF#gM?=v4+s>Woiq12tKYm zkMR8+vE5(t`e(m$OVjxD_rXrZBPTUt_|L2R-(Y(NN~I^>ewgy}=TYaKOPx2F?)!1~ zqRo~ki%ac_?l3E#b`ovmBN%uucPSZ~q!Nmp7n`J1j@ zmS@heCf7dJM~pA#icwU8G8?!-$lvp1=CPe?&4f2>x0%(LtT3nl`I_#|DVr6|8J9UU z_`5BAy(n}N|5Mk6d^&t?lKec;TOv0t+M{u$@#w)5j~f-!W?34aKg%G;@bHX{y}_9n z<8=2tz9R7#C*Pf2Q~$Jgcj->AFOm%F|Gc_;Gr!`)kF^ZDw@P~5;FmMj*?eM3jPNH{ zhg*v*L5-E79j`L|Kn}a8urpxWA$Gokj~!;*6N?qq^-isoc`)fBm%N3F{HcuXA_tEx zR<%odm}9j4*sbH)6F2vZ%0;KjJ<2;%DRaP5F?rtAOXszA2Kwy}x+i&1H~C)Z=QH;* zfBf9-{Nwyx_D@qS_C4!=zkbq}P=+G^fP3-R;(526c;WA<+y`o@br_tk4d2nf`7;B9 z1B0iFV@PFT@Xbq!bNlyPlFQsv3oNo)3;4brm=+;&7G z@<4~iZQW@HPc3%!Gbr?%xA<<+lRY-u&*=vuE;^mQ96k+NK`|RaO1#PoL}RjyjgQ z(l2~^jK=(L5q8XzdrnW57531Zvi3tGbBxWRvq4X4Y`!1x*dxaOPWk-WjYVejq8~r8 znKSwMo_jlv!8F8|J5knJ#TL0W9HpGQSo8r_1`TS z>VKPsP1M}`?Uum4SFg*|_y6Kzc=XnK$+U(0YKtS*u8*7@dVX%turc~Q=y`5St*WE+hmYRj=oZ!*7-8`ACcmAtAva|T|r8>ed2UghM`yRpZ|A}nn+1<;k-9EeTD=Y7PUZ1f& zXJ1Of`ZLv67$#d>$YW61X!ua2RennKNn0C^%G5WewF}wK9&Zg`n|{?|<+(=-H=3QR zjSd%|e>3lV@sIu&wekxV=lfUuZu-ezZq9J;cSc;p>UegK z-#cwz=rUX{iTBL-bm5%!tMuQ|Np>iyTI6qr4kCUHI_o>6od*Y8559X|}&fEBN{S()lYHtliB~rJX;W0beV|2^b z#o+Uc#@WV2W%EAU#TA`9Uwrt_7qN!-b&o$DPSrazy*!_J$Ioe(Z=Ns7wtIi?@+T$9 z`||VjnI;zouIqg+IXx%XzZ_K4zl&Wpv1H~Px!Ky{e%zhLb&j8GJ{oOa_Bh67zG>#6 zgL68cb55UOEBgG=&o`aMJ_mkQ%u8H(GPp=@p8q_9&kpB0Y(7t#yqtZ0&t&y876C>< zGx?4@p0v0A_l~y{=LuD&u0i0A^*Q-N0#<~$z_QD zx9V=?{O=F%7Htbkt-kvDa#YDTsQ`E9-Ha3JKzQ70pN_W!XEe(~ku$6i{`PG9mY zdEV4#XIB*l&0WfDGwG_3a)gSq{^I_rCvK+XwN5PdaGO#o-)(7;y5$6y+Q}}XTe|KW zPG!uTx!E&sN~Ju%<&MfP2XrMZ?a!y$>!)6FV86cU?EdGviZ=7!@85N3^}c5nnSW+K zEoKmjjaa{GhuGZE+*=lgZ`lr5%zyLkQ$b-=`jsCm&Ru%gC|H-dCS$XRs`|#r+vNtC zYo_gC>3*{1g?fabs`0C}ZYR4pg~mN%THG^j=0UZYfo{9oInv~83yR&&oh!a~-22?m ziPeeMEfzMqzj9A~TJd3~z`p;vUe1eF>Hq8!$lLL;WRtX=6jQD0gC)(`kA5yW$;1EX zRz;q~&V^@-K{56`e&@wMO;0Kdljvi(JN@{-|>1)#Gaq?F3CZ+>D#k|2$Qb zZ~d{G6?GLUKjr4|S5|f%)^74Wc364(YsJXGxV{%3P9;3~_+iDa2{{o9*7yPt5zJ9^SqpM~1$L08M z@Hls)vgrHtng{1VC5zN@^=lD(cmDqVGxK7wf#=Wx>wAiL}-_m1^vyU&0c(&&B&q}-WbE?OSc#ZszlrEk9eRrJv zA;GirAMW^-%aC(#?s>)uvy2QkJUzX9)-kElY318yiQeXIu!)X5pSsMphRrr#o#Ik?Z%w9qv*)obtC!67ErKNLwe_l-b$8WDo$UTp z=WlJAFy$g&qJ3wI+s^uyyKmmE_5~mA za2cjg+F9zRT{FkI$|E(q{aA-p_L?KiW-i@5Qp-#4&6=@xo^YJ)v${t%&n9k;gRiN@-NiVs!h^gidD?qMhT{7L1fRw2I=mX-4gI-dj=`aL-*e$qs-BK6Fcm`|Ci z=BG}IpR!ThQF&%h%Cwi3_UAY2ge3&6YkbZ+ZQiCMi|=k{{Im95G-HvBbv*lx%8z?~ z7p<9;=(jK5=KO|`*+qLnV~E$j&C~l9!e0NtVP4idkz(&1a8t zZ2S$&Us+nnpATMdoNjmS=x58~XELWHCq9qKe|INgO5wXbmdCxrrWCK6nUq)XX-3k$ zJH-WY^Pb080ZlEBSBkk6mUjeKGU$rOHm*uaDF} zW~~vkZQWjbX3yQEbw6_^3j0Xuzq)X|h()`9TBWM=^JhEXr0+blvodey&i>xdpZBca z-(Iz@`MKPUb_r|U+3%k3j+a05bn(KzkGbB*rYUbHWqn$|oO^?jBH0Hf#{&_B4x=Gu)FQ ze(u=kMFPs=k85n?E%#KIpVRpK$UudGSlPAG5AaUgNt8m6rOS@4l48->a2Su>HCG@iBJi z9nUTm&ifj_j=%C6E3XgVTpOtaSsZ^s0rvOalbnU#DL)>F3x0Yim>PZXNOEM;;njs^ zpi*obd-~(b$Sx4~NxS>h_l#zerziJB2Nnh0{PeJQ`kpH@Y=7mP+iaRuw!=4h!foCLL%pf*j2|^_l9<%qeV19;%qQ7(_S6-IL358fCvQFB=_9o| zG~V`8(tXqU7t;*0_Dnm^{cd4;*^3J%3(k69F{!X@Uvk_uQ!%%;YR^0V`|Is;_xQW~ zEBU_v^ZoMZBMpMF`#*R)Rh%nbE~|c*!DG$mDaQ)7xt(p>uFM{_n{mS7tCq!bv6lAf zKb~xi(<|#O-t?k}+0<{<=CX`A*CaaKA8&cF+&t{f)@S;+*0}ZFd}YbVZ<@9xvVY#q zlhM8RfBjrES9liR+WB9teA|!zZ8*R6Wuu;puly~cWB)h*b~v!TPUUXP^;r2sr}sT5 z+4uZj{jB$?v)s-WAEf+c8NvuM}uFL!qANR64* zy2}@PiIo^-*Y$VT;#;) zCsTY9rUri795d}r$hWc#DVtXc_p>iuTF(Ae#8$rT`>SvLZ6Ds>pMLI+{?EgAV{T`^ ziWGO+vG4bRgRA%tS4VGsf9?pl!R>SOYthE+Ija`5YQuy3;N#ZN$6I!M|1dQv`B~nR z)3(2O%uUL+RCY+&U#+w@k-cXkuzuO$$8`noO?~&=Eq)hp`~FKi?gt;=ovi9=-pBVL z+5Tb4vV+?h=ahY(Xn7}E{@6ADn|TZscakd)MqgI=8IU*UvP?t0k>70H_ZlZVitdFj zKg(w(xBP5Kn#l7fl{2p{Uwg>1(k^$K(P9hr^QYI?<%^y>{kd}UH0iT5E93eU&U($6 z`#dvE-|u)C$YHP^4yWn_ZYd&3hbV6KU(44?CrMobJNsG z{nN#dyo#Om`Qx7QhDNq?op%_*^qC}5-^eB`aNM*ghvBUPQ$(tb#f1R&lYXiB?aK}> z=KHi)P1hNe`uCe<-PT^$`}F^>K7n^NQ$o*p?Ek?(pKsqUONQmH(Ko%mU7Pmu^^#0; z2Ay}-atv!WG`fT9HKRpme(TI__B^(9=dWwuPjSApi}k+V?BDIZnRo5`Uhyau^H*!# zPx_|%w;y}&%lvcg%MV-l6Rwt2-06?{>L7mf*0-+g$Cdr(PP;4q>5YFbyZm|lm!->- z*T1%7Zm{D{_~?9juSE!RL^tzWwga22b3b2SR}&C*O}V!8WXGm^)ia|EPVV42`(f3j ziPPKN^)8?KIYHmqC@<9DlSST>qP-T{=cg-M?J;^j<>$kTr@u|uqoMC@T37nvltmqz zw5_WBDYF-kG!C3gzQgmas#tf*^&*d0)6B=!A}c>{{oeASxcnpMvZwODKPuMzN|)=m zy=-`A#)s8x{6d+tvhUuvGrqQL`+0WfuW#8J7M|7Uy7avv<)hNoi0)aYMTRFWiy|)O zO%i;%NI=}Io0W?8tN!S>e^-Ardsg%N$;JGaZOa_LZH&8S5@G-Tx6N8l zZj);(I=5V1#r?Z&Mu7TWt_OcaeQa#^{SjTBoL}?7#DALVl{r0`ot-A~(;j4G^I2WU zW8k^9*+DthLX-cklh0l^tvLQQwLNh*zFWgrK7aYy^sCj%XO}B7^Hx7+Ecsrz_-@jd z6Fl)*0IH>&B+m@-aq|C8TCTh#PyJJW`r8 z_0%=~-kVn2-P7i<&%5c_T>fuit;6i)5vS`s&YQ+=>OWqzcGr)%45^jtE_^(^y}jW6 z<W{{JHFfpShiW)at){_Tr1p^G<#_g-8zKc)SNZodAaXS+mj`^3)>yt7$@P5{o3CnJMNtmB?{aM8G z`igpv?e$Z*JI>qx_x3v;Q!C1F?(yYUzl<}kCH;Lh`_NkEw`>htgCD*)^>cFknrk;Y z+^Y{Puy*9<&eR^82ziCAE1(1d8*X-Q<=SAJAKDVUu%34;;x9`0lzblsNP5J$+dTqO&+}^Cf9rb_z3DkXK_BwoG)%4nfFP}5q zG5CCyMR~f;_1^cEpNdv*pE?Ir$XVRpptGZ5!2`q7PR8m_Yi#CQ=3aU@r~A35xTlTe zbC-D)ol7n^1|D0|tuoJNQ_#&%jCLn;!Ck`_4{LRvOVwZAaHsF;2KhUC?QHLzGhD}6 zIp1u{b)oBvCcnQP_W6EQF^9NXo$do&dErCL>wbM)l9$i0rttmG$_t-VKxx}Er^Kjp zIyBNQrmxM$pYK?i|FAGVfAO7a zQQ4EY8Vx_8Wf{yoh<$@uuR{_jJN z_gydjZ1eiikHYRRG9MBJ=WWX{1=)TzM^$){Z9>G~)`c65G}D55H&@O|t2W8Md}dC* zSnthOKN-YrjIJNBTf&$dx9EAXN7b6liM2LUO>INM4+m~G+i4%PI%oY_ov({(9G=@( zRdevqwZ5=&`A`0`eC7j*k3tzPtZ{9q>Nd^%`0TI8y)x#6C4p(XD|ehQak~;}B9>!Q z^-v}4H2ZgvovCq2%Nf+Q)$VzcF#RI;{$rY3 z19rAKUk>dy+h<>Em3@WlZtbj#a+333{Cob7U9C=6p_Y%KPg>3?OhN720)~$dRkN;? zM3jo!f|gy}e(_Z4vW0Hdn!-irr1W>BY&pg$ck<-v7s-&3F;?N{E`4UN1@{<5J!hN$ z#7**ToYIcUFNe-qTH2qll+U-key}*-$|P#F*|F`gQ;pTY81(gQ8C(o^rGQC-NoyT)GV?vttHU(CB8+Y&Pay&XklN5SOw_IqF zHT7FP?~vHZo~qMW3OTKv!^+;?(exro^?}x|B7D6Zrwkvvi-&mwt4)$ zAFmuU{di|`o8g)m=}(4_ZN4}9Ny=tbm4Dy=bl$Y?4%f-*%^;GZ!#!v~ip#y3qZY z&1zlq)mPd-6}kKjZ*!CUygsI+b$@j<$MaqP&&pTF)H`#`|7m%AZ~g*lhI@QF=WFP% zWtOqgJA36?IH=_u5^>ZFB}*q^FQ z-tOrID&v=w&eUtHJU;dG-R-mGED9DX%DvbZVf>>ahUeLVLvsXwHY#?THv4yXJN8C^ zyAkc~X+K`hoNH3?e0?fp$aMGdn0e`PrWt2~#HVK4Tw65x{oG|cul;?xD^;)N$HUvs z6))zzxf1_x&Ux#+*?)Z*{(2wT%3&K`&wlLegniqOiBzte`*OvL<+9sAah3Dd{kx}H zxL%y=tKBb@^!L2^w5Q-uhh5y3=&l>tCv!RjlPB)c$gW*`r7_S=yT(~&lH}8chSzQ# zIJ4OFn6u5CxzF2=Mdm#JW3&B))wIsn4}RYG81}nR*Jk@E>#5z@kAGhIY18xAs`6c< zt*G*K-QtbMCf}`}|M&2HfvL={cNliO`?yZ{Z0xHERsnij>+V}Uc(8H(`k;RGUq)K7 z(Nh^g{d4Bo8`>Sj=U;8MH>h~TvOP4ule?#5#pfeAKj$>`f0*vRC9;2xW-1+juQ0_nL1BEkJhl+pWE!4GIIQ@~7Y4P6^rt%lejQ-6oZ~wqpx<)<-e+1tMXuy|EJskKj`mW`SJC3X@-yU)+W0&v3DrB zRX%)@W|H>K?Ox1htM^@*Y1enGJa_uxTzR|ei<-Y=L@l@+ePzpnbF;;I#iJ^&{Hk34 z_}7H$>m?oXR+Tm;%eIxRoBN!zB+iQKVfB5RyhWhpJKlBw3-7;{mo;CuUHp3Ep6$g8 z*$PfbY~1tBWxwsseuE1I*UOj>e0Y}PKAE3u&z#zioZJO=PlT6gTCvQr5o7I$=_&qX zQ#5PQUCZTXx|@6=d_FC*NnCZbtzqWzqX}wyXKq&774C9vFRYuV&t+O%xUTtA6yHkj zr%_)V*-K7#e3M#yrK_kns@=rVyx;k+@Rq;N@AE#~#(vEA%T0aTcjb4JAOBiy9^`rZ z68m@YN|njqQtXSk_WpK}tKAef`xIzyXzJu^&kwSmSR9&m?nH6^o+EibAKX*=ek}WL z@;h~$qic_!SXHe1`ZeVE)(_B<=KS%VueaJ?KiL^>8@yv@-c0|Q`Ojwf9yj$LLc(z4Hy8Vp|6h5lO;NrPbsfA`?&%)A%|dz>lBd_mZSP8P zvCNxRwD+KTvSm}IwrAXw?~nmY>u5TrlQsXI)FA_M2OvCGI8v7Bt*hCHLXui_WP# z*2>?Bo)`V>*&LhgXL!ucoi5%|-7!acCwtyGjy%aqdHtPN98%xA_s+`jH;FZUGu`IC z$=pr;xv9Rzz17xR@@wTRK0W-s>pYW%)q&rS?q9EEcu;zmw_&2Zj77@LCuV0~pE$Wi z{rAM+7k7m>ycFJkYbmJkn|80!`E|Cq{42iR*hR8AMtTR0(tJ;Prt-I&=k;FizFuON z@kj2QutCbCx!NT?>aoe+lPUY)-Y1*4TAAsO=bX5_ZbH781_#^tDnbmR#lwYo%HkOPP2K_)irl3UGLhXbMVt@$L&3*C;O^T zh+1)`Pkx7P3wL-#>!i3^X@~Dm=I1e~SemFEEX|O$+4%h9g&BcwId8bFy=*lTG=Z~W zo9je=A=eLE*?W|@{UccZc|PL|7L`@14AkQi+$kZE+A}9@;=4(bPhAt#^tjUG)cv;J zFgSPa^U;Phoijfto}Y2j6-ss-FcJJgdOhtcgno~ zb79d-huOx(y)5*OF83p)9h|MzEz{K%c6b=*F3S7T_z^9!8g{bYR)k!TTkf;mqDe-y}Kvcn|`oP z>ibY4n6+kwcb3M)0-kXm)J=Yty4gqH zG~nj%z{P5}gnh$#f2*E1_g(%bI6Crj%;S4}Z)ZPa{QCV(^Rks2=GA}f6OgNMGyf+X zCvoU=e%F5<2AiGJ1LIW}U2BM6oN2qUPi$*n-&-~Z-QRCMDor^f_sz*D_~xgDAEVOS z=Fhv?4jQ*ylPLe7)Hli_c)r}K?{!}?Kd@P0&G(ErK-mQg&Q8%Kq?JOTLObyL))xoyMa%eex4QT)eqLPkW?#mx<9%xv z&R-^98uzs^{@Bv59&%H*$Jm#-bCiFtxgcLF`e5_?Rar9e?#^6eQvU~)rYoLo%(n~dA+c| zR9nPSy(#U-Dsr0jA-Z*~jYsQ1Ct8U8Yb+gjTHhi9uzVy%LB3_&G z`-^6Z?ogXIJ#z0Itr+P~MXU8U3zeMO!E@GVwb$E_Wy~LUJb8WJ&ewa@g&9h=*XF&* z_W$-f<=>%L#XH{)_d!{+Ra@r|Ydx0_5Xwlwd8e12|EWT#vdqF2TzMlUpD2z5YHy`&< zdwa6(iAdJ>{hycJ&H5#EV0PZidu$hK1s1Gqu0CEIJb@?ebj7l6b^F-jGrUq}(cZ?O z!M7BX@{cQjHnTpJ<2(6g>h0$1M_ydb|FQaGwPpH(g>AJB)1tmTo*>u%T*5^0+P3fu zs*j^e`Y!7Jz7n&p@c!B?uOm~Ro~+})Eo~=rXnjq=ccumWOna97-gUsWPwt#+#4(*) zALrQ|d|qiDR=a7x<)*Ui)SgqTes7UxxVL@#d&lNiy7IMmcp}bL(Ekm4$|&9&2p(IpBGt#V{#>Ps@hQveKDOpFDt-34z58ileZF}8?Bu$0=ReD2Pn|J2`$1*r z*5dUCzkaa!zH908=eH{2W-WeF6{CLM+el}x*!8oYm+pMF=6vagnsakBj}?hM5&Znf zb8nAe@RxE{{{FvvtE2DzyeLrjY`gz#`;V@7|HmD#;Xd#(!1i&C&Gl;i_}!^@DmUE^ zyePMAu^p(DZe8s){ocoe@){F@PiOY$x+gQPv5|7VbNJz!6W^^Q*D~n$y9I{ooI6{* zb@N59b7zYe?`V#gGyi#WGmm)@uZ?++ja2XJhd*C%&MA3vtKuC?y^z}Vlb<~&Tgn~T zs$8yf{LShQ57zbw#+_FGd2*hCm)aEN8+@gItMfS@e){%*nf*KA{`hNk8E4|Gcck2T zov|e8^v=&N`&S>flUkS~F%#4bGLnvY`sI@&U+U?kgBpud(>8dfO}Ut7+Z68h`pzW( zPr)}IFMRo7RqLPizWp}KO=>swf8Vt1;%7_CGJBJ|$;Yo<^8b9`_r2^{)9&f_YFoyjRJL#`W|1@|1sm;^^*&Ci%Y$}aYDnRBjfS#UOc z%B(%FCfo@UKecK8ccYSzFJdn%)~%cRy#3hKYv;Bqe_tagl@b#*`N_hfCyMi*s8=7F z(V!c2>fk&3if9i1c#en9#9Io!%*ie9EpF;(7x%xKczU(%MgMK(D zagXsdf6grHBi{X4_jW8is$H)8XUXB;atZobmziQs-}0MW-4z}q|0(J_|F11O+|Fiy zIQVMcxhJQ79Vt+oT^5zP^0kHh8@u`c=HHh)bUjY|Q0wg7p*oxMZ*F=QE4KLdl53!% zWX)TTJh{{SIkmTb&-nf7_p``F_n03~(7*R{;o6rC!rPK`e_wi@_4b#?cPW#s-@C)^ zUh2M8vtflgWAHZh9?lz2G^eh$Iq>UzopFo!zj^Q29KM?|2(u@j-B!M{)rfcJ^sLXv zK_eeWs;8A7dFuUqvd)8#hd!U^Is56%J(B~B(Hq-}y{w`Zt6hp%y>9E9`BzS!&b}GF zF7laaRYGVm)4Cjg3E>SVgSEXYnVuU@clxnzx7DniXS^D3E2c-3HE68MY`R~_z2zQs zd7xGLxy9Na?>oJE`{?sA?eCjEdb^*RzV|(2`5HCd3!#hEE`_budn5fQs>DhEsA<-- zU)f&|yxOPs;MBJzhK#dqwr-lTx4^09`0U*C8{E#lIQxE1T!=yWZpH_h!nScWax)A4 zD$>+>@BPfa*?z0Uf&XX}cog;Qt!qmJqbg$#-z(Z16}OmO%v3e$)Tbkcg0su2RM!`u znw5Hg((KhfFHYvO?hlm(Rjn3p0#C_3)>~P)H>hao%+-aG(?s7d#9(C1<;Fl4SHfo!`^$z6t&(6?q(>OD6;rQNk&GgbN5$J_jweYIK^>AM*NF62!2uG}lKx9G9T$8+~f z4lvH%IPLT5^LKB3b^Hzu#C5UzuiE+^nEIA8naQj!D)p@FrnKAJ*SM8Wj{bT}EBxJG z1DpEYi~)JYFTT95_OaY+vMy#{1YhRvOD|s?ojz~xg7h+>_jBc?Bf9%$ePgK(UcGEq z>Bqg%ll|81UUpn$ownKfv+S#@gbKd?Z4}@A)cUV*!P_&_H$RwSdV1f}FOtR8pR9BG z8tyLQ1r>18zYDwypFV26?DXi&)#la_ubCHJQbJpgzcqcXQuP zJSS&RcIL|&Kc_vPlZ|KbStM#-+oWH+?%KNklJ$;@x9!iq%B$~T|F<+|GJn`sl}ADI z&m`C{KjxAXJYC-Q9Je}4Zsq1TlGjd1&i!foVzaTX<@T$u?!0AdxH?zz^wXb8pU?RH zemqzHd4#T2)~(66wmgV=ym8s*zSom}MwJxZ&AxKxtMc`l3$HHRuiA2AUPtDKlV`5f zdLA(={kfvhFLLvn=qZK5*4Ce@FC@ELsl5x?diWMELw0oa&gZ%e^Yo3*zp=2#8V>z? zw!OZ-YTnG4X8)88(}N%TY+HHSt^e~O&P3V#Yqf{1b}lmB&%Srw;?z4g3ilShy?W|d zt~tY++#gT7#bf`U-}L?Tb!+=`&zCX#-RRo-ru$je*;_mAZGG`%mS+6wce83Y>{`yb zgKhqa6SlpY>IvPEc}4O1a|CugJ-aPGLOs0X+4lwK&uw{f>(Z^~x#kR6_aDam+GFof z@%;F{Ym1t{Tv@X8*x$xwQQx~>JI6h?p-(B&%eFu6-Ky9eb2W8)b z>P9!tYZ@}%o|3xwc*Vn(4SnXf=Oy;exj6HFbDZ_%NyX8(?;Hl1e)!*%jJtbd^y7C- zsl9ktbhG~S8pij343>z=E?KUoYx)jWjwY3jNGbgi%^Q5^FHg=)Q6r;IlOX;ZPmjT!RUKys@t~~xund892^EBebJPUdZUBERuuKj{I5`pucsR^-0@&(km~)IBm} zSMhGffLkA(U(c;C`eDqlCtmB`&yDrI>~l7VXWx`Qdvn%S$M;euPTKw1SI^om*kdNI z^UCvx$&VDbcdu_0DQ(+$`s}Ocpi<+kQPGnG_d5QnHy+1N%)R+`*{j!aNq6~zK_Q>I zt=aF-!Q;)sJ>Jjz?U@&}c`wbhxEUtw$@}|Y?;79pQCrpqKEGvJ{CCRrinmc$O(tjG zk=H9~cAu8MsW&FI&Rl;^z^#vIcg@#K*0%aweIYwNYSH#BWwjUEen?)(W0-M!^}B^f zZnHk^4Zryy-PcP{kqR2(0hq(3Fv?pkH?R#(q{f(7Khf2L&z)s2e$lTUHpNSZeL>UBx&w~~tK zw|7UT^+~)r@!qjt_NBx|?ccFNFE0P_Hh627y?W+Thuw?@r}yzR&#!tB(-!%7`I?7W zYaN-()~V?(S!rf_WBIME&|o={y}NGhtC=U4{#ESLogr~1 zm3l*p92cL>|0SkZ`#*Kbxpn2_>p7d!Zf<|_tc%mO^6oP|M^56f_d*3`HBA7{o`^me%{Uvu-D-u9P$f8@U0nAmqR zdX~fE1?`g$erZfU)V6<@CF9WGw z25VNAoS2n*ev|ax*aH*qH``fXGR({tekuK>Kq%svgXQc^#%X064o#xmxF zEupPe_x_sM>rYD%{aG`p{D0A3FiYvQ z{A1&r1zM^7aTbX#$7iSRH>iIH%5v-HW_I4X<#LPdZ#R?Hg-Val&t3$nG|uszro24+ z?o!Yqgp!n-pFVQ#v$PUF7gKzAlSb0lD80Q=B?;A8pmB(;ua)O!U+DPz1QBMhemn13 zKQI4t!n}suf`1{saTW{9Pg_^l8^pf^*$B$yw_ZVQykZ&leX93k`};ZZPH(b)8*iCq z3(6_B-eRjQY!8~x_P(q8Dm9N`PLNKT%cj=Z(^A6H=C4?`SIQ_`*J>v_sPPaCX_qFP z`UZ-r%BWOr>y)$G@^AX234>Y<>F!oDeiy#<>23aZbmEkkw!!Z?pQII+OnR@rGVJF3 zomanrdh}nSjCVEq#q3%p=+6JY_iy`+qb@a_`EeOH~Y%Y zva>PvpKhHi1U1}Je<#~8O8YHebCFx!=fd=-J@yqbx!D;&nx$5=+~R`#cSf5bMumpr9NBX%3i+S&3DQAu-KaS*OqL4 zd9QTAvCp?xEn|tf`A@+Az_#k7RISQ~Eq`?Lx51h)wcwJ#Q@V5h%EAl#H5NF{O@B4l zZRI|u1i?v}f4=r+nKOKPuPK*wZ2gv-F*5gOeqHl2Xq6{-ZeVWJjm+?^(6++-Pg3h+ zLG^6v&tw}xaCc!Ys2tE?>-LoWY5QWMvTPFjF>%x0sMzy8&HujkL~gNiiq7(TdG*;P z$e_?O%)J|SYJ;8d5%cL^>IRd*;+iEVknwiQUjZOJ}iL-{R`0TScSo8U> zEjw%KUhy)loAEq&>6XH1P&>SP`JszbKNrhi5t|(P`svLQ-7>GUaXYT3Gujy1zyLElvPZ?1ASXs6sPsx@yo+`>E_N2Uabc8FTXgh9}Pt`Iy;-Uc1As?(?Ez^E>HlCq+T6@~y_Y z7o%r6++R?C(P1XL$_4AG8&>!~mtX$e)bi@HIn}FV*sybp zjM}-aMf)nVueju0UFAKGGyCGn()EGh4u)LB)hP|yx8-MW-gvTd>e4r@!jHD^x%rLv z^^-1Wsn9cEuVI@?R{Fcb&ngrPL|gZlXuf+Z@b7`+IfR5%;WkKP+Mnd z@z#1ZNL$DKe;Usgl?&!C?jN|+ZK`^~rv2`e_-K8z^EQX*r*{NT<9Cg>ykE65eVs4=_to&s{nT{c{V>zBPfq=6f9hifDo?5(wlK;< z>t5yk{J-9KoL=(QXTkdg?UN4}@p>&N=bNdyp0D!b16lvG7jGSdHW**dkZjkR>bs-H z@NRo5&svkVD@pUEOedb-`fAei3-F!~xC@w8bWwhqiR(0bgY-?HPVnA>Lmj&L(`*k* zSuQr-&koKH(UAPG;y?q-tmQ$oK4&$FyO;0(xaNX>`oz?Wdqsmm0})HgO77Jh7eDZn z`=dES)}E5AD=nWFr{!i};#h05E-`;+obGx^b2_s=A*=LO*!OFyNw4SHr#1&)yIDQu z(%~69K}mF@vaI3l&6mrU9drC&CT0{gV`cd|uHw3-ACikp%wj5DWi**KJYeNp7(ciW%kNI;kS-!cRl&JRSc!xn;CQS-8zB%&w$e0!)b=Z>Vh zpC{JJ>8K}2&#@0(EbjN>E{>v_i^pR@rPfl*_0v8)deK$$)BX($uhOe%od*uP87G`i zv07O8_Op!kxA`B$=hfZ%D}U$js|EM-*F;K}rSeKGoO*ogt7mcnao|4kgG2ffJ8L(e z=Dd+++%xxpX7;wd(ywn%shhXw-51`fH$L89%2Y3yzlb*pXk_FxIls{4`Sn9}b1EuD z{&F=;UZ{KWIoQVA8;#$`FFJ1{_Pc22#_Xls^|*CQ|x)i7t2mW%-_CwcA%^ zs)cW}*GVrr8LX9k6J*!vtZnO$w>$RR&NUDIZqj(nk$-v7Q>p0=?`2Gi<87fZkJ{d`~LUi?|EA~Lf!*~7fQ$JRI?!xA0r#GkNT8Lg-02*vsomb)T z>*d7dYVvEcJdd=-i`;PPijvK@pP`;)z2n>+zBr48#kiXj6W^`evg}XP4eob|Lh)t! z3>Ut{D4zd$sn+tB^0%+qU)e!}f_xHN96qbv`8lh|oFQv(OV(9Y{}WqZJlO>rKw7@% zeDl64%X>*Tm8zANsnoliwDmrsw)|{R8MuWuW3|t#6Ym}8%f1XKdsq<4RNMSdR!!r+ za^o}03t($sCY$B!&94qwXSyio%v`}E=XPz8X1HwD<9BA|buRmrm3}J6pKk7t;dBq5 z$8p`}^|Q>1q$x43CcE{nt?A7_6IB8o!}*;Tdf8{)%KZXQrmcQDGw0PDORc>HPQRy_ zzrL5aRtD6swzIx0w0AD&7v5juyi+P2nD!QPoUPotLH^F^NB3f^&fjNZ5OMBf$c){1 zmqBCq{gOl9W2<+IAHMiB)109!U30bG_bk)w=JMeKA(n z&qB{WnWOmK#QpWEY;%TbH~lLooi2J2$GG6Gq4lz*_bQ%5x7oj6^*irLZ2rod*B4Fx zy&E)l`3W}UYQI2e1E~C)yD9DV?mKOu<{N0xCpQxm%)U*hY&065t!$}{`+C(sRz2%Z zQ=P{-*V+jNn`-{8Jf3=W+ZxLiSHJS)Uo8g3aZB~=vublJCw~cAG=Bb=gUa4cVcB`#@a`M)ftmlrsauHWeCTqV`-e)78w&~={O;h(49BRPd zD4F#o)6srOzuMo26S~4@r^_vSZhU3YmN?lv;pfxyDw9BU+>tgnpLSun!txhSx%t1x zY3;UsJH4d!+s)(d?&uSPYl3M&{yT7kuIlN24a8hqpW)aBNC)3W&o1oX{yQ8G;)bg}*aW&sq zvUhH|zG(7%0Z@xsdHq@T?kXXJ)ZffnjNma+SWg)d=K0_jvv1oei-KkMEK{ECiMqgj z*1hX;kS>`j#Om(Q858msMJ0@~e}5wk3Dx%$u62 zy>!~v7f=47wHpGE+YPt&WtK{$se#In;Pj|P=Nh3sgA0}upRHV?wm0gAa7E@N=>vgh z9$kKR=wkl=Pr)@abNj9eOx0VfwVe4an}byOOO|EX(t+o!Li+dZ7C*RC{i&?+7j5bC zm8aIlR&6!SRL#G>Z2S9~RgmFUu(zY{znr?|9=EznK57Dow~|=dR4&-GURvYN{ZrA_ zN$4qgB@n-Jf`3wR_V!J>3O63*hO> z$8FEn>{|;ePmY#MdNk`GXE%qCR{kN|{U`OMwj6b}EWVQwzxVo*sby)oRlm<2yH&FR z)iP~6nSGq+%OOtR=zBT8+e(XEp@VE!rm0;rdl4@Zu<%@GiT^^=msgwW z3iy4i4l{~>%G{*?r8n(&dx+xc-^x+GMeOT5?UH8~^f50NKNwyAY2t>PF*3H2y;JNL zvs=H?FkSS+`m!A6ZS%U&}6IRo{%- z@NtJu;Qv>$k7w$tADuiu@5mGTU%$dnUp`dpHZOhY&COZYk9D3;m|pm8Rh!z3mAMz} zosIkhmc&i*w|e4hvj5Y%iiENk(?1^AaOLbQef8^!uZ}J|r*6Bb=$Z0PeewDKJXDNA zl-&68?;f|h5XWe6ZRL+Ti^`8PoKm06;H_P8=JVrk+T!vY*W7F_xH@6nuiBJ=oB(5!#;^Gu#6M*Q#?Py2$YYpL^yfgYm^f%! z=)`8ml0}baJ^p#)YM=fT@8|YH>vm_pk+}WWqG}V#gTD%UNGG%DkPHCG#a;DBzi+@z--pjh|jW6jz|{`}5Gj3Hnc_ zy2hKy*S=@okSe{?+UEIPzN_E2ezuINJJ49h{Gh>+`D_W3-_Cm(GWM0Jby52YzBPW> z!^pJScRAM@p=Hmb7N?y(3Q4ior?Bhio-ThSggPGst&S3EOMDg-UO1ew;0&|Si@9DI z=hQznEfD+CQk{8Dp09n+hHyQbn^nb6&&{7|&alF@*k^U~VcoQX1$P-vB)mGI`ShgT zX~j9!i{9@wR-S(1PVRh*&rNL0;uoi#{RXl{`5Z|GO8bglAXZuUq$ef#vbn6O_N5 zzZo?NG&HEPxu`(NYURt1yn=HJHz_arXJPkq;_q^8F|C&++y_Ns%GU1Md30-K0%%Zw zpZ$VguYQ{GKjXZ?_T2yGiwULQ{w?{UpQh&@SH6o4)G0}uz3!Xug8U2nGZrv03uVl6 z%DlF`_0I&kSzq0o#J-*G)xWfSp;7IGpD!KzvesplE?*oq?QG*W(}tUC=GqwQP4eCG zeeQRkd8w}sT)x_`f7LW*)~siyFQz^3c-H*p@yeXg^FDgNoE?A9+-oW&el^l&&Zc=a zN8^t7+iuBtFE{zw_c(QF(GQ`=R+r4;TebS-1rxVdlkWxIe6#SS?vCY`R=d`|`n+g? ze9ZnY$DUMPc`hkF$>6$;;mgx8XP>-2nr^qm=kR&Ad5g8zFP<~~;_{;`pds?EPUHQ0 zO5akR{;iZdlxtrYU;a*Bv*YvX4Ar;k|IU=9U-xa` z4#~5A;%{4NVg1--+gv_3E-Ce^k+$3R+!C&Rvpn?6>X>tXrd>bQcYK!E)yl)znFXK#`DXI;xg-eL@kPA=Gz-D_cf3C%vJg_?B;CG&#CJtf9Lw4 zq5N{!k1OrfPXgbU>AZ2M=62Y{yFj?=#rK0VzQxXJf4@saFTP44=Jy=`Te%$?Yrh&r zug$$m`4sxrTxzB6*rkw|+?iq>qjx5|E@PqSgu}}4#_m_V1_wQp|aJK1YR&Vwdo$s6Abz&<^ z&ZjM>!pcs~%6-2{a_`(5&^eq+Z}9LEQ!`?CsW?veMeDP*mh~ncXN}kTNn0;G*QzdD z@|L&rL&1s3XOrcBO_(t|ZQAC=e%HDe?mfElag}E>w|CX-lVV%1%{domv9J(6M+%*YILGpf?Qb{R zDI0~xdn;SgYNIX)zgrqvZ;_I?KBnT(-}rGE)#!y?P}bmxhrD7uC$w@YWg!F)SF4K(s6#? zlQTMuw|$xl5AQ8-Iy=q$_P)fqF`x27f5*`HfC$bYyvN1wqt z=7jp^eFx_6EL^hx<)0fdyNZ7IUk;yn`P7e@s~7e9zX0_iFPv#y`Ql0c-gSNYGmgLC zYhCjwo!{r}j!uzve_woFu>M|iyx2`)gQIZ=7H`*Ly!~S9v$7IUygd6=nXv~n<5;%j z@r7wC-h#Rr%k_2@q%xf?7MTHRr|g*iY|q1jDf$nlR{Ae-4?eBDSJi$+wpqO1{QnQ0 z-B}#o!sBJa_-A|!%g-qcEeV4cDNnQWe8Q=V+?ssQVq1&$+Gcqc6>E{3b z@;7mI&{n=U`CB_DXC-of2DNGCv-Zw$yzE`t%6C?KRrHq&HjxY`mY82^KNPp~gG-gk z(ltM=3SzzDGfvLAe(~9(oA=*NTpIYvYF>7*OxAsA7u&~Gqz7QR9E_? zbm^4M^;3#_{?+f@{#)$;_h$p{UNzHO{tKU;)d`->4qj{NaX__RQ|))_jE1!xd*dt; zk4-Co-dPvkUh87M`Qps`pyKHtsLkc4azVY;*>cv>D-6EH3%5S(?P;BMKi=&#Q|a%$ zo3DBJ2b|lLapuVf*KWhlF5g=DZQT44_wRnDdG)Kz9qxJGOU{SazAN0tsPJ;5oXCQ? zuL9fcbkoWf>}6Hhd{BAWanF7a=YqhTL&kT#GxX-~x3>9xYCxrOmLzY2IPewS2j{YM|QPBj?4Dmj#!CUFxi^w!T|x;(eFl z#&XN2QNdxb#TeX$YS9}{ALUl(x%nxpdimAF88bms0seC{JMGwokVkrFeeT?&u!7b0 zVce|G?S~ch-%RE9e{gn=#KYC${$}6zH{aX0M)T?`6Z4h#Z|uAEBdi=+xlcS>vguKH zPubl?bC=0h7hPV>U?(u|`^SkI6Yt(m4SVj~d$rd0z|z=+iRpXq*)q)?QU}{C%-LPGFf`^W0&U>i~h8H zxY2GeVE1rym4|vr@={Lc)lxyT`Nh7fBphm;^yiNEfoXGA<~xCA%GRA<9`Y4FS7r_# zOI>KhH)mxz-%QW-Vqco8GcQT=dHiIG+xY?NpsV|0c79lRR``2dSk4r^k48lKW6`yW{5KW9hS<2etKlUDtEX|-)1|C8d6?0w4npO!X$I{7Rk%1>&p z`Yf|6t{%ecu3rX26-F32E#omiR*WW+sL<-+*tL~ zsz9ztzv5lM&x$9X{Vx@Zy%afiSl8vs_J|veWy}laJZ$$XyXW`w<@wkDe*S%U>gn;S zK>zAbfqU<+&RKDhdG)NcqL1-SM)Pa)&ZW%W`|k$lo&u-y)55Da_3JHLY`p(zspHeh zhi6U`ez&o6S^k?Fx%OxG%knEfKYh=(@tI~%t)1?>sn6K2irW49quFD)=MGa`<~|;0 ztDN2sp`V#c`KF$CyEo_Wi|VPK4>U}_#-6SHda7h?);i|5x(vm#GIIXv#7incd>rdhI3O&#>&kV5VjJCf9#UQ%#tC)}V|D6s37<@`Hav zbKA1Kt9S0FH~#}?w}-Z-pl0lcShJ_x?2{`K&)@l>RNJNN{%e<1yi(1Rc`~+N>V9%D z*a?@_!8PsN|wO!ymdA|1Io?w@F7n4Uz+?G_G@~=N<_w8Om zZ8>v7E_?YBwzr@KQBu{6F8L3A*1h=pjOW7gr;6Zna*j6?o8oPulL=(Z}hZuL-}}TloEB)K%lj z*+-h|=PS3rPTwROrx3`mKWD=3r)PJSM`*i)W^T`)+v1X&u9VyS57Zo)a2?R-XsGm$xZ)ve`!|z_4GtNn{|J#&k?h-osoY{u0;x`$()HOzqk6n?#oC0 zGRNvaEoZ(eY5Sw};OEsl&TVmtUh}ehPD}N%&nGfZm0mXyx3E7cZMDPwM1Qo{k8(wQ zlcgV=+}6HVDz$K5l0GwWiM&R7+_pboE`|Tl^;i(^b}@IV>r2j4lh5ql zj+Arc)^y}N&((!h<|kIR`F;A^{V4qZ%e@a@e0n@FTj#ngSA~kyx+=?EncBs=HuKG* zcLmO2tvvFkV#D>MBPPFN4=O#bJO4CWMfud}$!~=l)^^_#uD#{{nf-FXrPwE>zV?i-+O>97R8`X_72zj#Ij3hYm#^_Rm(PECIoMVZeP2{6p;41aM7c}nWs)THrRE9`2YNPermV-!#|VXbD7tj2@h&s*(^Mp zX*NePr~^=W$hX8@-fXh(d=uxj;(i`DyP?QK&Kc*V`P_dx#m$5i)(_um{h9G7(Oj+5 zT(Fw)%vt9573!aImqh;Xu@R4r-UvFH_dvt#FZU)Ir>Dicm265Dns@nB$T9v?9U=Rx zZGKKH*Q;Vqn4dBIeDq1sq8^Kvlk&Wkwk`3wl@e!haNpCjn_#OBKxr4Y>OfRtg2QJS zNK<+bxG63E>Es^$59xU_FW+bVneiaqDBtbfQG-X%4lRwY@33Q-kan2Atw(dQe!qhA zlU&{T4?$}o4%?Vb@jJ8ey5cXTB&j)fK%w>WeC__P>pmPh@A$uFqVSXGrEkuNnW`p8 zRbO(QJ-0!(>g-D9IiT^=m3Doy&!MYccAHxN6#^|MNOxpzb(ytX!|?g#rnroMGe5gK z={=YZX~9jrx9-?<4*SVfLObOb8|vHry?0jm|Jy|`{8yh8t(^HhDMR~N$%0xo2fy;i z&yTe_2>yJjv;OZw>qBY9FSjT;woR?@F?gF4Tp()`&y%s+Al*^!pbP&$(2&dD*n@|Y z>)$_(vXDPNU0Euw@^r-2-(Nf@Urhe+>%nvGqQzEfiH^ek6NNMX16DGY#%&*aq<}NjXAY5 z;{KfvUnIj`nWN$Hf&M(?kGYT?@w&Y)s4+1FKFKlX6PnwME!Rb7ADrB?PdZ_hpC zey?0H#^(3Eg1evX_+{N(XR(?rX0v#4Bz9BF>;~=I`UhBYT-SU%#A&<@b#ilsu4*o) z+;Mi$iisa#A`#Iw;|6gZ$VU zb{f<~SFQc<{P(nmUjON)wmp^ z`hzp|^E{smOZYm!6qxQ?k@j+`r)}pQ{<#|7Z=Zd#{{LNbJwt=ik(7cjmU(YqlrPxJ zy5RooE4n3WkJ_KTvo@}@{iWRYE|ejEKUbTS{LC(Vqw-0!?emz)XOv5L ze~BCVPh1zIe#%wse!WavdF!<6(;L}sUfFKGc8FVYv!0Z-<#&$CH!^~Mmx^n+`#fB% zy=ThCb~(EfH!jzjUcJPxqU~`&|Z&%}Z<5we@)9Iyq7=EZoDn{&)KJ^7+gKth{=USI!Dv8nXS%#0Kx`5A*+U zH~gLm3S-^x;01fu{$F-my;0sZv-jMew)IAFU$4)cwxU>RqS;I7Q-M0F*4ewb*ZA+d zz*t{llNb3Q{w((u(PIzmKI}1Y`(O0IwfpblwCx4@6VA`O@`y!n-ywEM-BVg8RsK3y z&T_oXy{fn@=Um;FwLFol7OAa}%1RE7@%<@r^V%t6*^GQfi-d$D;f$9$z4{rG`xfr| z)3RLV>Ep`(x7Yf&bEm(5bC2!AB|~oAd+F2b3g@h5;GA(RuVl*umYj>(ezFfHnBLy! z`_&+AjxuQOc!_dab=fcQ{J}XVH!kC^=K?Q24~_pjXRBLp>;>-Ld_#GY8T)n}nz!@A zlJl!){PKtgRqyR5Z94CCa~wIkt0=!uZqMUwd@UiL}TzQyhGFTJb6UZ3cyJ7uNupQ(nI zi;9=Gt~ZLC8=mD*`EF6zF=zh%i8+_drzkJiygoPEH7=vH;&Af9rC(DQ#CQMd$k}>F zcwTz6L0QsSha?u`DWtt ztG-{X&97fJ`R;SJ7{?Z84dqi+Q=-p20CnLHUTM^PsdAjZ^s)NhX^ZvqxgUz}`+oP~ zi&K}GUoXjgv|8EU`16;@1B%H=uJ^pllr2cG%qQ3Vc;<)2DQDD>;ftmI)6@AoboSq zY5ZT?$y+k!1;m!NfBAZ#a>dV}x#|;}O#Id6YTt@mpf~BH*Y}irB~51j_w2tu{hxBY z(YX5j#=yU~%^BYO+!lWE9@B<&&uv^*nLm^HPl=@Z352+_-|~Mf{5_WIx!nKW4|n=& zuNF?9`9Ept%*!hBc9Xkj=l1Ga`rmIcwtX|(Ec)-X@Y~jF^`wtq=>&~ctpu%MnTE86 zrTxN`aPDfwT9c=}EsH-f)y@3w@;TEhwq^V3k1Cgrr|ffiF(r8;{^|1%rk$? z#_--X?@*vzV84}J+w%9BVZGdQQ>!C1{F8A2h|H8Gk@qe4oesWmA;*#`fw9 z#;JW(DY92G5Pv!A%Iuk3X6f=(!8|4_(hz_4s}CPozKS~Yz~MJf z1JAO)8I$HeusI&E>M;LRMR%Tu+vNXe?D+6yZnf@mTZ8LHf-*L46D}~%`6g`WS|5I{ zWzYWaMY;)-3oREtoVtC^r`liB>LPi$CfF^uvB;R|_V(6|kCJa}^qObYg|72_Cb&9N z4%Dd(edV%KpjC7Ig4piXKMzjN_|(>{c)e!PuAcU1oL583T`F!r_nf-VC8uP*zF@FS z`Pi#e}aNF?ElAhQCBjry^1Kb5Iw=UkpS^nqF`j3o} zpD%}6I$oLdr;)ev3QO%=;SFDX=kAG1_TA^Ph|~JoKL7j6{}vZoe3HK2(i2{Ltt22; z*PW^MlKGUgQBxc~hva@}JHE15RdV|R@k#Tm4;A0c-&iz1JY@dI2XP;49#1;$v-an0 z=R>s*DnX@Kv3`Z!Nrs*BlhrmFcl>U=!xt-a^4Xo_?XtB$*0%5a$8W8nF8{g1bXor# z^DX%dH#WPh%`j&OiB1dsHg`k&tCe&A3$PqJ@$2!n_+S6-^G-i^*SB>EdpvLD5vGcO z$%aW>d$l7{u2kzsYfA>kP4kMcJ-zI2za8&_T9f(%@shkvr(ZKY6%JY1cxtQ6tZkgX z9!U15>3S`xTxIu8@YBj-RcUowPqV^1E+3kY?~pY5KF!W|M_3Z)PH~(5xyNhj&)#ON z-zk3LZ1x!*4*8ThTXLS%`9v*#pzxCO6szDS{jHThw#Q%BUG!FFZEw}Q&sM9JGnb0o z4g@dETXNI*okp+a%B^;P7F{S(dVi1Y!^7)+Q#Rc9ogJ!tQ@(O58-Iq;x03$V*KRyY z)3_Y{xaY$L9+l|S)4M;X?9X0iTT*E8IXX_-8Z@|DTBmYp+0X5d6GcKA&&_(rbo$%R zEi1xjiLcOpz!|^jy!^fNk23c@%#if@tonJ<)8)_WKJ96D`J8g`^@{e*C0n0)n=pTm ze|B;5O^F3RH+6kZ-Mq8ptlxa(K$h_mcY*_ku6_D=Vko)c>K7Y`^5P*x6{;t}l(#r@mXg>QUSW zn_Ddts|9V}H!<&!KOuf3GB5Mi?c)A@KTom8{Z5&lxV)3y($%WsO}6#B${+D(N_V8c zHarDd2tCEu)B5COiBy+;5?3F#znVDzSp3i5TVCdHdp7OMl+I-d$k3U#+4})cbPcSDE>blIQR9=)Gh9B)Fif=jG*? zgu;r$%DUc9kM^5O!) zz0B-2KR2EF>~{P5+tRWx6Rqo(-cG8!`t|Fx+Jdl*(oMN5_4?`^0V~5PZlelF4@@Ra(lH${rCxz4$!0|3YZRrNy-?tUC2;t0(@nk-ucR-S_j-Q?Fl42&}EvK6Y^Z z21~2*kNfM+uf3g?YhwEF%!Ic!VfT)`R)21MZ=G$W?|SCjybVUy?c9y)+l1vy_w-Nu z{O?5nrt0orm|b4Z2p_-hezZ}_E`IW3Ve4f_D@mKv+aA-0`~2a zJ-6k7NLSaaV;!6iruPU2PkCz<{5~e)rSMd7YZLtyd5zAWQv>stuzzr^Qv0o{H~YKl z)VP=0f5M){_o{b&Texb;z7u~XqHZ|Oe%8zUrle!XyeIn>&0D*q(zR6mxH13UhcEu! zK41ED-_44@CpY9ai3(oSJG~;`a58AANXtgf_c|Yi=N3)bDpP7B^fmM6_5W9yL1PcE zc4w69-Qn1)9_t_eX!Sgk*brSF8k~)R-O4NJ5hhh^jYSc&M!(mtIq@;Bmq@R8Ta^ptb#Y1=4(&#}-Gz&mZBfxdxwT(6#cR8R)~veBn7UKj z{-EY@e%)@fD{rUE*WA}vd-zye!5?w7v+wq&Q~bYtRG5=9H%8cVe&D&S_s)b3Xg zZkl_1vfFdc>nfi)GVho_5j=dlY^qhDo(p4riq4il|BNo2e_Xd-$@G%&lx`inG{JX* z=a2Wyy}>Sb!lKY>_u(D$ZQd(Rt6Ojf)aClnc--^RPq_~@mr_piKdSpsQ@QC7OO1Y| zp1}_HDgJhSdiG@x#rOR_d$(d=RJ`Bm1-#xtlI=Nc}c?)~SKiqzZLp~*B*Sb|+zZyTO2rGR{zVxS+{UEm-xAKjMyd(RH`YYyn9k?j` z{m-Fioz;3}pFO3bm`aVNr{3ew6-k%nj9+Toefac)GUf$${4R3p^T)7k>b<_W*ZrPf zao(Z3`IT0G{=ePJxueuQ^m*;O4^B=@EF3M4O9E%lENhr{aa&`UgAXej#?@x$wr@3k4U>R6Nsc%x5{XVwz-2Qpb@0ea$wJLP~Dy!#L_PsCooBIAb^O?TIIR|aevhu&VVEJs8dg86q zTW@slo56fORg3)|)4GRG*=Jr^{_)zrla=pxsJ;9gUHs+fYO9kzue5aJFVD*F&(@Ok ztQBxz-h82WnoY!Y!{%FJ`d%vz|2-_TMP`b#cyn|P@46$6UC$2wyL;>DpG?EdGpYr) zUW#+4_-anRR=Mk1$lT2fBXaBCndYwzx)ym!C#k0D+6H!o26l#t7liE+gN|2z`|9#r z)46toPxYsz-}mI|85Py-ZJB-ZyHU|*$8Vo(3vRBj%KEeLu1@!}wOo&LYd4%#%RieM z7P%woY;Ub#@aIq6FP2Xam^XjgUY@-805;p}vzTu(i)PF7o^mVR5K($YyIO5lV6gS1 zwa=Umr)>?NRg`hluQ>CJN|9~Uvb&YV-QLM&bJK5MWMIrb<)afPoBH%^*`~s~>D$g# zeRB<+pk4hb_~EbE?EmW5-&cP#U6*{)^j4aEiZ@dQ!v&#)N6+?L^n4}G`*ijEo_jxj zobTJ#S8H16cXsz>;6w4XXkHkR(~<~XV%OGul05%tc&tHeyKQN zcehL1i^Y=LqHO-bUF{gffI=_GKsn+xZlP)Fi_4^c(BJ*3JTCIVd;V#p1Up?;IIxGA5nT{9A z{&s#+XCGeI%9ru~=&4Qrbq=|S?3CN_CVXvi)#k5$Zf6qn*ej*K#h;WHe}vA?UGn#hFeN{yqdMU`Tftk zzg+Kmx@L>tWd(WB$nCFhe&2Yu@KW17VMZH<7o1y?CG0dp&bGIf-felkx9HQp|Nr_f zrtDcLt-d*SvAVQEp?meuDDl5W_e!+o#6BOH5mfs8Z-RD)TyI6hXXSX8kKp8Uf#q}V zT{JzDAR)Qq2FhMi;*;^i@^9#IDc$`N7X@y`17&vrCVzCKjD>Jk8fGv+T9U zI_~p}4{Bwo<+zuN?i9QDm;XXTq=%)0)M38Nwc0;jCf01xJ0#|BTljY8?EhbUetkb0 zGiAyAXX|s*7IpYN-odvi9h5bV3z9ADG(wh^%AWgL_w!zQU2e&n564R%N50?nH6}r= zZ?6r1%(vB7Ui5D7SY)|*Zsw<7%x@Xe&&8hdd45qt*HZtQvh}A=-EUTZE||A?+FbrU z)(uBr9jJS)*?-eu7W3`R4gW;Ced`yq_Z-R5k-V_Sv*T#Wg};|lgcNgimOUw+vh?Aj z8T+65ojMZ5pMAlp#`C6#QM&QjhSIGOGi!Ali=RL0|DZ2wYB|gH_m*=hJLWA3jj7WX z+tOiS#?#tH1|e)~VHxqhZkb-T}ugiGtbeX=gNxW48O+nka$dREE%qRI@z zn(St-o_2ZNSD71r26`2GUEO`4%;B`23hf(n#%N%soAf11Bm z?B-0d*Uq`eZq9N)R-D;#V^*?@dt9C1-!EcWXSW|W-CFV0tlV}&w`;$Rg=+WdH!?*5 ze3z20CB_{s$ULnuVRg6rwCbh0lTUopGn;t#P5o)En8`2xv1cS~lvL|2Y^~UG3Rkm8L+KokPk1lg9ziV=J&5d_yTW-#Oaw*43DsM;L%*E5(+-4n3cz*mu zuE+GFOAV#>@}-E!OxmP5qq&mT^jY#pqeBmZSX8!OtoXfK`h5-4-|LUAWh%}8_f+}& zvE{wDH^zJSU9P)fD{z3hK~BM3riq`;`<km%XTxyN0mH+3ezvnvn>77_(5k3EDYs9S>s9>yF{$`T{om#Ke~MC< z_}$%bHg=P5koeon+xq6;oLDbaeU0x_MhiQ`-?vPA7v4jS%JkK#%|8mk^!}Av6X45l{a6WtfRD5m#Kd;c4oxan=)|>s^ znq_UkJ#+Wb)H1%*2LZdfMSoiB+${DqE$?2x`2EtvM>F=Ho;#&Gj$dla&sc zs^+@i_3OgxQ*sSCyM=!S9O8`N*}L}m<7DagwYOfcl86(WzhvE-s+a0>xsNX5@nPU+ zh|+O*r0)OA;X~pgo=E+|XX-mQ&eL7wQk-XH|7>yU<$sg5T=tn%B6Ytr&8aNRwODEQ<0QkA zecoJbV$uBZ-QHa$UhfVkUCLO$%C1hfQCZjg>|6a?=j*-e zb~Vg!e>(bRzoC*%#?9`YpeJ zar1?uhLASdOHt9v%4a)srWi2I-88$$-0XbSwbiS9)=XXV`6G))Uzh0q=*_<;KfbX% z_uKiCNA|bOeO-T1wu0fpd#=~LXU)7%wUzvwWOr%j35jcG)k`ODw|%+w>U<`Pq6drO zw>~fzcxMoOa`R=Q%PpYtu;i=EjdLY>7c)QBZ0UL7fm9xDG?1TW%V%ppz8*jRs zz0{ZqDqp5?PyWFq53{q zq_gFoL{FKNQ8!EW=FMr~B+`9#!5$qsU-j#o<{n*^I{oGB?6{Zi78e$Ss+=N)-7Rg; zPHi(ha>>B(*}G!Z$A{kNzVudjyelQgXkKz|R^w~Vu&pX{8THDZyx)2u|G)i@H{l`4 z@9ryplV|zh_u*WQ-0;$&Yx48Qgriq{Jq~Lu`|EV^SIG)P5Sd2Z->NU&eDPeOD7)Ja zR{BTosgk&7+j3O7h<}GQ|N4zP3^sp=v+9#+2o;P8O4xqG>Q}6kTHnvzcTVnbS<|XL z{mvh;*>{TGsLr3Yb*sh3_0#`w$+tvi&V0M&nDue9``>@-um1FS?!xy%x1L#OW>%#v zPVr;lXAsf}@b_Qz!{KCe+RI-J=iZ!L{qM81+imITsxvm-ZJpXHYq=wQzv5bjs(m@%Cp4zHn2Ao?9d_Qn@?X@qIc&Vo9~nDneVZ^#@OD{= z(0WkxPf7`MQ$G{rtz42hL!$Wm&PhcVUptf?RMni_WO-&?aaHZnIXYpBq*k>z9PO)d z71^kMEIj_ht+)FBADf2W+g#mz$@R;dN&2-Wshd`M*#Ewvulh11<;*&Edu!DOc80l+ zO3T)nTiw=Ksrd5KQM+lI&MlR~W~iV~&>PY2)#>t4F+ocL ztK>a*?0}SNn|Dmef7z9tE6UM5ovZPsLV(WhU3(4hS?&4Q-(O#9nyVdjPjyYzr@)D& zyXXC#FSGf5qnQSy4TFTp{^Eky3pV(BU5eGOOi2Ir;6 z`}T1?zP7o#`9t8`Z^h^D_}zZ;T&eV%>*;y_u9TL*O`?99&WneMONZocq2$$C+`{{D`- zD(=SX1?FV$P>oa?eg` z%YR*Xabxy5%L~p9hn!m?^3QFy(P7$riZwv!%=y#$<}RQ*BY0!P#QY6OA0;$qzPXXX zC$_rpyWck-lf}!*Al)frP2p@?rJ|F%CYrPFsEN<&-@2^tyZ%}25{@IOzrw#bi5)caT?QK_2y82hH(ZO!qz#Wh=(*LVbhXr#lN1Me!nlRQV@ zpLsG{Ec{wb{HBt#y?+Fcp4MM9|DMy@%I_u>Woy_{7EVk*?xvoxF=>9EZ$@;CP}zL< z@H2tl?q%Kwj~JHEx0V#&%a`+;?fi~&kDT@`)!x$=Bqg8|=Oz)u#@HPzSnd0cbFK7e znLArIS6=E@Q#f z&GS?4ddnrO^gs6h`NIDOR)u#ftK_D=txYaVO(+dnbbeO+6PrDMlzzWby)(=BXO%|e zrcD)J4mj~oRF$5qa&y*n(a9IWd8ThGz7}JfUX(e*#mM)RYLczeWf_$_NyZ*Z&U{&G zR~DYr347waQawOt_kq2E{tNbVbbmc(ZujN-)%w5XTTV5l9r?~QKkw`uHOD%wU3J%Y z$DcP#Q3Lf!C$|Zhh)i&dwC;nI6%P_k6NM?xG>;-JCzg z)_F_|Dn~A|CjQwPr*SqVhimSCo!q_iQlyVQN^LoqDxfh*_C51n`<|aqA8oRj>_7eF z$M-dVeypzhba(3fwBz3yr(HU}d3x!a%SCw-PZv}~Zqa@H>_~Ct=o3Elx_UKa@BQ}U5jg^ zB4VZ$?SEmK8m%i@p{XF4cJWPx{e~r#ljmh_j9_1Cb<=WR;kC{Gwsbw6Iq69?qxZ|n zg+a?7o>->z_f7JD69)TFpk~<5wVmfY3Q!$#MR)><0TH zuL$F`-I;yX(`%o(M$fN#s2WNUC9 z=1lQjDf1-CEB5U1q@_*?RvaHHFZ0Mg{JG<4-GwTfPY87q!9*Sh@(+Bu_nN-u*!y{>er zS&i~Z=U0c*uNAXZ*`5q@{WNhGSMy6ng`E@qTA!|)`tW?i-iguIW)o*8k7f zVs+{3x#2cx_kU~8<(QQFQ)kz$a8uiW6>-z7qK`SfpU5D`@P)%VVa2ZIMXy(Sf7&?z ztJO=Z7mrWQ-2cIR@!Q_h%tdeYkIeEt^5WX;T>bnVf|ha|Tc3IF>+9~m{9uiaob2We zyUIUqOk)4|QSRl;@NY3ex^67t-JYvVyxtvuSnw zTar+iwWZx<{^=#Veuy62ke2^sTc6%F=O>o?UUjd(^J95>OhE73U;q3|O6R)HsWsuf z7CEV(>!zpIqxfZNCo==B4l+0Jg&Tc5HkG}Lf42W6$7hFq3fELWeG>g#W@gQ|(*KLQ zravzA@GN;dtCwSC@LKabyUd!es?W%ueaCdQS?$)m)4R_mUE1~e2cL=brp?;3L{(47 zSbJPcnxr~?Tk-Xnn`K|J3kzHHdT)a&K~UOJn>oezpv<#%e0%mK`H5)<@?LdrI6ph> zMdl=T(f7>W&n7;M5u0UrySS0rQf;>TzM?l*?Y~~is(AnX|Ehb7*43JDf19Ys{WEpt z=2V?8^Ee+cI-Ebi+_u`!~X@SNdw`d3yfwzM^8O8>C*r zaN%Q?+Pwpx5+d6trX~OUc_3K!b==O+pXUF&eev1F_2$P8&wQ1mWUcd#H~jo`OP6!I zJu9ZIVSAz|nRe1m?Zj`F&yx&gUw{Tz($7wUTB=EVLtM~^NO6yGb?Yjtw@#G`8S z-&CDwIUjsrSJawmUZsb{PTrhxCaZ4cM7oyWjSB2m?&>rx#7;% zN&mLYNU7a7>)gGh*AG|iG?6Wvcq>ya$Nl`ptzz@OcE~M$&IZoQ5@i2#uI>2!`(KUi@hI(; zwJF6Dt$r&QgZfi5^?KBG?Gmmj@_hVwaNX3$-|asiy14!P-}~%Eg}ns|C-P62M_&7@ z%eKbX;J(>SV|m@%UvBPNdvrM1-Goe`T8%`6Xb|%xjzH&$uT)#o(ur&Me*AlFMeP zE&ced+<(vK&hv7;+h6Rid;9&bR$Ex#<1eSYZlCgBUo|)PYvF+^e6V za-@nsQb1m7mhkWLZ1x`~dA7W<6zx9!AV-JIws_Nyh)mJN0?o@W7n}4@|pSyMR zqfLL9Mb4%f=&jqyf8cb|Bw2Cs z^%DEL*DmJo?p7|zydyT*ty;B6*Nb6Jk1yxs(x(|~R||53TGP|JV;2`oSfp(-$gZED zfB8|;+{|5jmzw@N$GYD7-?91s3rrQ(%GDm9e*g2$w3CMGuBO{RJ#Xb1ezEjc+1A-V zrT<+jxhCf&!Dz$4@%W0>s)ucSwiY7c-ya=5H|bGi`N_;PPny2RTK~LqdVVDD#@xLR zx3ygkW!F=R?OpzBYXt8f4 zx=n4{uhT2Vd~i3*2Zja5=UymC{>?XG&0}Xx)w6!LqLwqCZ@;I$ywqC1>cMNZ>+yAA z{U@HaUouXpw%a7^UncKoQ?F}1bMOAkZ*D}q%<@YqkI+%${@Hr$(W}Jl!j}b-T`z8d zMrK{sxpEdv+NhbhX`js6t)d?vs3e#KbU#gh%YFWLKC{Wm*&?T{EIVCf{nQ@6{e1t& zo3;M?zie9N9##A6-n-v%>yu-4pV&J2#`@GnoC{~K163>6TXw&k&oA>`FZa^Tv{>)D z-~{{If7%wR9=*7qeS>k`Q|0-_w`_iy%Iz>dIWzO-%?5VsbFU728c+Cka7*>ZO-YYu zZA?)q4X^R87xalbS9mLC)0AC{-@~S*T-GtZzP6zC$D~b~Dd*B=?U@$!j#XG)Yu5F3 z;`YuQ8D(comb`sn*jH;<5$DDv_Iy!)ZXC_W##LE%Sf>{C2mL>hAP= zza(I`V8EW$KVF?N-}~pq+4Ag|#^xE6q4L-3(#HM5*V!*GkoN=6;ET_1yfjn(TGG*d zKVPKCb$f3*SNyWWGVA4u^GQZ8EQ_Ap+Lz^ z8~&EB-#O{6<{3vX{~tjio?=1yCY5{Tu6UlEWg@kFx!a`nE7ekV{fS>@c}1sa{Pc)z zaVQm-uxH6Tj`PQLzc*d^e6m1K_+Lm!|Afc8^ku8B`rG82+AC5zoa6p1J22_i3-ie<^Zz`H|NrF4 zqs{-P%VlKkb~9?eZ2gp7==DqY&KDOS30|~G)%ZNYDE0r^-k-i?&wRpDRxd}6GBB~vKo4)jPKhgf$6CAhhN}1XI;zzOmRlk0$(wAMWmRA?P{?C@vKdf!N_j2ES zX4j$odx^?^y%7EGZK<+fdN>|1I=FQUPUw1{aMJ41>$pE|3aZ;5nlnZ&ubn(s{O^s~ z?(OC$WKCO%R8TDDg$XRYMMxdj}nwNEycYOl+X z-+bkgq2{v%OOVo?{H$J5zlr*kbxV(0 z#lC-`DcN{)->jV6+E1ASuaW`En9vVY1Hqnn#HtX)I87#)!Mp4yyw{`rYq%MN{;)Jrl7iYy4g$P``^0del%VDc=-9J2eBvD*v*M? z**$B|^7wABJH z@8?$g{Hyc3xMuSdyS0;JzprviGh7n9&}`kK)x}#I>lK(P7z_k{h#mgLCvkmZN-W>e zI^CaVn^dlQ%KzS)Z?o&&rL%Lx?LNI+d{%kw|8$1y?7~0UwSAmVHBQ?2gJ()tb;L=} zSMS8uX6dLkzndPm`J>4+ou%(GHkri8eBOS?bLI)tgu7B(1mc6tTF>0{nS4FSTQuim zkfH%ElbHFZ)c6ehfR#7JcRN=8(V12%_v6=Tr?)F_y6*pU+H?x%+n9ed_uGG))xLN6 zr@+@g-#@L}FI9Mr{pZSvuW#nFz4`l~;$`3BJpwbAX7zkU>* zxBHpqWS3d2^LyFX$=&u33>X_s+Y1UqiOs`TFkP6RVfa^9&hn7*13a+N_LZ_x-)Zch}cN z=1ecQ=X^V9-fMaPhw=J-HGdA;SHH^GQ`_?S8NcG+hey6Pds-%6WA|_?PONSSx#Mgk zuX|TF>be2DZglyaX!co}H~SVvPUtQAV6HMLP}%HSRmHU>7bR@XCfP*1FZ@x{cIkCi z%CVX)CQc87SWJvFS6|rUvsZt~-0)?ab5x>No@ZL{#5p0~UiL?C-P7#Nd6SdFYrnkk ze)n1CtNy?9wesr~BJ6e^j(l#hEmFvR_hRZ*V{hQf4}or!~MUvFP?hk8M-^sd-3)qc|p&P zzF79%W$(8$t2xv(FSr%OO6dvaOg8F_>F+RM=kz_5HbGKF$|NE7;40bIi+-}c=`Sm} zv{i3bu@%qH?@PXgOn+^5^T)fN?(s$Y)%(`Z``i7$r1JjCI2Gs8zNKfj`q}+m6%#yP z_2hBai3!`|`3j$B72f~kzwAKNt``e=d=wrkPG}E!{VTzH_C1azx}|lKIVM@ZuX#B->ij?*xi`j#rk^@0 zv!sXZK@|7#Dwpr}4$LQ=UokH+dNX0&R?$dLyC8AJfNTzryfxQNB=_CgYHnor{Y==Y zhmK0kmP|?cXX{qSvwq!}H+k)1aoPIQ$@7-!{r@66d()%$&w|qBk9WLD&t1~L?6ld- zm=o@;PuG=xSib&U!jcU__o`ji2PAV`xaWFP+2BcA&c~2bQO@5YC)IpXt^e&`_w#oB z%Ip8W#czxKJ+<7nTemTs&Ac_x#gQybI%DdxX}{3>}{5U-_2rASIegNmkc^n zX7_j>iE>$H5m8}e)_hjs;sM5N?y$3w;-~cz;!T!c@;#jtS>CLCKkn$gQ;BEQZXe%Y z`zUw+r|9VC`(Li&l8SxtH2?2b-PcRj$#Z;YW}Ie{{dbXRlKjgMmbtO*hs{@Snd0<5 z>RL$Gx2GHSZ)UW3vP^}8Q=aKWY3f{+{mTxA+W+|EUw7^2rSo=`AD>&joNRUV{F|@; zztz{LJ!O~s{5{vvcO}_;bX% z?(_C-cHdW>*7Ex#q_6*7FZP)C+_ZDz_0yhA){hcXTcUck@S)YV<|h-%*NS~#vtZ{` zktvVo$@ko!Fnf~P-K6BG*BZ4;HlN+4`m@QubWOJ9?g#IWdPKjvT=shZ&x!8q?>uDO zAKrWJarjx6%rD;*Z>fj8WfA6^uxK@7h3LVhy0<;nc^_QDcsV6T>H1>FReQ}mk1f5v z##%xLoZ!DF{bYU9Tb6QZo8GkID4x_W%f5wiW}C147rwUl`~QQ&=Jp@W@2^of&295? zpZESXlizkQ-CnZ!td*x$&SpK;moXOe-YP_Xu+`3}Q)Qi6z*qIy^2@O$on>DH8m>or zUHaOs_x8zS@BLS9F4zBgX`0pX_3P{(KJJhFIq&x$zpMFTt!h(C7j6&r+H~=D_UDGx!ndvG!7dXYKA}}xClz%@^xryS#NlyDt@)?Ra)FKWyw7V%y{l_Zy6O6+|L;w{ z)uN}XB69xr>wOEmm~D1%*S8~)=YPCC+yCe1b?uIt%;`b#pSJpLe4?zhN%po%?fO-} z4wwgYT|N5gE*Y5ekjZE$ESC@9{hf_vrpyXrAalvLU*RwU0SJe$?yJ_L*JF#t;4#1PtDJA zy{3C+rl+HQ`&rM=85&GS>XRm#_9{r_*CpSHfaCVQp+pIgf+zO7yJ|J(7p z%%|VJFSX}%s8!QFY3(yB_Ug>9Vza7vuEu}!3E9_s)?=IZVO60FBfW{Q1!tzce|U1o zmwAuxByv?b!&+zTgm z1aI6vt?=v%`9HTS?!W(k?wO_jpRlc7C5hM9PvG94w^;vQj&N?>#bp<)ey->UHGI3$ z_=&sT_tj$Mt0!cNiEi$BerBh`&YS?R4Nuj!UYlAwO=W)F#ies=g3jrEs;J#eKYAYpNHi2rI8mu*qN z|6{e?T99+oKfdn&+x~w;(R6pa)w7-``Yn28eE-sm-1R?8x)LtcRQ=Xf-l@ksz1C@K zl#$xR?7-O(Y>X#wq!>&O(_~qr8?jZ%=I?@>>xUiIGJiYfFmvYNr1`TVK9#K6+q!jj z{IZkRF6Pgv_`Tk~^7S9{xX7!YT4TLye=e^&eSCU#p1<}1yGv`spU(TcY<_r;>ea%H zH8IbpTHak7b#L{a&pK;`o(Hap@S8p5a@NMkwOgm!UGvPETl?vezg^~ez0cKko4&Tj z-)6tH#{SpU@9}>R{{OV+;;CDnp|>A;Kig>CNeNQLHzo<$T+?PF2<0PAlqNRe62U+%K#zcivqcb!TPMv*;j! zbE_iO-Z9f!daY=4)NAe9HItuQFS%hmTmMhU@m+h4Y@T1U?)1LX_HWbQKCCb7-}>A3 zr@mWud!85b_b93TOHEHtO3-!XeBx!JQIfgCMW@b4tub40;;jb@Pu}3Mn=Ho3vQ9g~ zG(E;-_kq6`=lI>4=DOLhTj~G3BliyNGL2t%^5SZ{x-V1te?9&<^|}1&s)^#|-qXcv zSI7OzXgx7)Qpw*{G0&FHe^j!u#wzVx+yU#WcVxWF9{lOLdb)6PP?fA5%Y(1eCzV|9 z*8d-JzH06lJB9^y*W^A-v0n4{$^3l@B`==b4lVn2>BZXBl~O#LEBRZu^gP*R5~DOt zUvlz^tsNeP8!n{eu+4T{)X02YY|pKadXwTG+{G2!`W5om6hc$75N!5w(hWfnX~!aB(=q*p8^&4>rL}NKBKI! zeATq?n#J>$S{1H4dg|$pNXxy`W?zd+2Q@mbb?g0pGJVrKMuw}`?N}oAo>tD=_wU7Z zyZVw#zVE}19-n?JKk%dTNiiP(Ut)g!DZ52{q;!ge^d@FsR5*KYw#vgx)z>=Ndm_R= zWS!fWQ6^Zu#ByPYZg<*TK4(eWw{LaVL_R-ldUNNWVtxBxkE;LAzgRI_|8=R+vrqoo zo_{A^vGVQvtFm&#m0w$eu5Q-%cvdw(t8zNmtZGe1i}y)Oi|%fil62ZPd+p{g8}(FQ zUh|Isr>S<*xnXMbp97w+`~P3q9F|vfoBiUPy{`LmE155cTvD07$fY1wN^K(de3UXx z;oySCY%WNPs36}&ee%B4jcYD1KC$0@r@jEDvoR)`Xm!J?+w)kBSWM zxhMTP%Fl4(ym3d+TpVvO6@SA-ha#TjE&#EiCxoeR=s`GW>4k0`+q-n zez$vCT&;b0`Zuea&p!EEJM8B;cJJJb$sxyElW+7*vb?`E>fYi-7Ek1QzO!v~vdoY2 z+x+y|)@#wfBGgxwew+BDonhJ*y?>XUS92VwUBB-CC+oVbuYUah7hgQ}inrq3N>zV@ z(*2QN#ebUZ14Vg&klq%tD}hgDnRsm9uI9Pp%e35fX4Z9@6g=4D@`Ih_|GvrR%`JcSG_-9?Qt9-%b>*@DO65~F_m_GLDSQe}T=_L~ z>8kYj31|MwUH!x-dSt;Ag+1vVQ%}`C4qC-&wtnlgOUJD|*KY3D|Ch4)-1M4n8{ba4 z*4)6Hd%f;cWqEA%f%pG!X8dj2zG$bp?vYugMmei~nYT-F zismGE_<<6DqQTo4NjF*F@m60uT+y9s%d;-gUGz8iYqK{&Eq!)7-%Z-wx9^qWdD-~C zQy+&)@49hW>l5pJb!WZ*ccxES621PE?d~tZw&E*)gGyTOqV`Wl8Y_j~D<^IBy0K?U z-f@1$3V)B4rJH^}(l6cjW^@1BWkso9&-L#(`s@7uS34I^&j06}w9;qlWD{-ilbL%{ ztDkK*iLv1+2@O)4_%M81?jwy zjoUZm9oBU|J@L5p^trz;E!N-pUi*suH}}=Izdh2IS1G7hSu5__{CCadB~Ep*I`jJs z->UAipZQt;V&`}9jaf@`61;Xkb!ND}YxDg{m)x!PR#kEsSp7_E=lgqX|DR{4*1r4a zUH$mnzYM2T{k+Z^?Psh}F$!nXrnPuKi8498<$jpwjxV!|eqB_$Cc07~T-*i(O3KD~R=^1qPwhk43jYp3v@(cFIL#I;-A@~?v?>E-@p zX!w)!Isebi<7L8@uao~?Twi(Mm96~Wo~c)z%@f(Um6h*RRWgdDz3Wt)1j_R&Ui&ZS zP1^L*3{ZBd8?2INp>ot+al*%egCs&^Aoci_mh*}`RTs*4U8$`KlXcK z#KK8thD+xrC`Z56uLZRYw*0(wzHZykP5yP)l9%S~-t_D6{+iie=l@%6A8Gk=%WmQ3 zM_x~E>on`-&68D|GsW{sRf)w~m00!E$tsH*tvDmXH)QQIbKT5+L;CE=CHaviufJG) zdK>swdrkB{@2ie!lRr*J>09=;mzq-(J!<*#RXW#_$@LQVwjYt2x?`s1UnV)G3wD>qt4=RZUZVSW z`LAE+_r9^qw*TQ>AM;nAad~&@n|R)u-%FMR<}jVS!LqJ(uIs#eDLJ3!#8rfWI=c@o zN>eVrVfxlK@BM_bi)-3h%#YltuIA1*WBIe^_#BztujUB9uevlpZ|?tN+N*prmtTqf zVR@|l<8!ONsX?z(E_ZibyJ^1m&g%5Js@qeoy{1*9dlkfYB~2+dxOe%;t0_BXTK;93 zed`wYrQ^G%EcqQ*(zv`z^Jmccx^1;V$2aZWRCQe5KKJj%^?#eE&c5@`@ysG)$)91K zo{MBuCiHkdiIO>^HC7*)RegWoqsZ^PIVV0|*>~s` z?@o!C{kD?%Z)#pI*0=iA#lF|`kM{p9&0n6*&7D8xtwmpLP}ba>s=$j@zn4v|{<>!K zlWjTfCxhO5bH4KmoKwVita?tw+#qukf5n5xwtZ^`*P8pL@A(rf6aQuDIXm50!%P0Z zPAxpX@A2}m_g^mDmtVVX{vjKw(U**XwDAo2E=Xobq@Vx0&6aJI{0G{r$5(eCFlWxn)zP z{1Q69&A&)~ll(VN&s{a4&(5U9daa%8+xjab#%rIp>JD|&XVapc_x$e^)vOHuY!a21 zcfD>x-L<7EbK|FQ#s9kLKB>0mWV-zAU2(sb>fM&TaJ}xu#_e(SKjQy=d@<$ndsk1E zsU6!LrFc^3IRxnmzBZiiSvPM<&ZpUNwQhp1cYay(D$`22D@}Z(`y7U@_H~weFN%@A?z@%XZ~cSg({bcFf+eeAbAUmYuY%<4FnRN` zJm;#(g_1==xySipf;VKb@5-oatX?9!&}41*vpH;zl6x=A1GPw_Beok&Tl+%i<@;ap zpH5Dftv-7=&fc<6_y700EzD1u8P@*R`xQ3#o&T*R(fWtH>a?P~?wcgMXFu*4zoGAU zpuwsnrjK%3)3O51EPOK`v@={5(ct~~$lLn&jc47qKXvEU>ZHp2Typl8k6hK4nfBYN zzR$0Ib?O#xe&o?b8cZx&k(pmVPSWX4kyTBdth0KaH5bUK`}ABlbKj9a`*KNcq{-_o z8lT?zzR_M2dCz<6ikqSJXZ~N7PPcu0-rWA{_xtOfY3TplV!gI|PtU`uX`6cc9$QU{ zN}oTaWlj!~OQ-D9_`aB>e6dEJCHv#Op=-`9$|;x^)YSX#mi(pjyQV~`&yKIjRG(d{ zxi#JyD4p{z_|}r$aV>LSt;o=G>YL z(W-mP$;v2Bv)$SK9`@i={qs?`)z66OlS)o+tGUy@Ci%Y4I@=GKwip{D((75 zxshj+fahf2u&DYRmD4Jo?w&VQPG&6dV*-s|toOh8hUvR|vDM2cv9p%4ZADeLZbwIK zFPfH()Qh)qlICc_ToEN&UY?>e~S2y{oW8U*Y)-bo2@L;_qO^knO~~8)o)wf$E9=s zteJeJYR%f;j|;>3{~nV5clTCo{j-yczfL}v;HK&|E8w-0JpYxz*ZrN>W~#hZ;GDfg z^6Q<*2UU8u%cq?V(%FCD??oa1OV5sO^7C3a;oP@x;@8$p_!{-eMBRP;pC`v|p8r4l zZ2!NbuA*GG_SSe#xB7V_|D~S%cg5S2`v0!^og!-2yIev~@9wJf_$e_*tOJ{V2Z$V= z)BN$DPFT92xwXIk!DZ!dMPH`ho%H1M-Y2Z{A1!%%xpeN9QhS?!uTGua|9;6U#{>H7 z?tN>Q5B|HhVe-u2zDbk(!k)OhZSre>t)V&l;j)W$PiB>}E-&loeipvj{MJOz`@1r( zy)1lkckzwri0yl(bKN{EJR?VTcgpXk@_iqE%&vQQI8-R!5O z-rG~P4-V=7jd7pEb@gS^&yt?&aaVo^H0_=+J=$|>#d)#STUSWWTRtP<@$PTkUpD7? ze!9B1M!X`@eb=^?`Sa%=e^#cQUH<##s-$Zn;-Me>a*VK(UCoVZBq<^0E zs{iNyPd8@QeUw*s*Smk`_T8F^%jcfkweLak+;7ol$D@LNc}&;$y0ht~|0M3CP**?M z9ne%gVS23R)Czs^)mu-@p0|8v!sp%JdcI`O&7JgT(Ub^v%iUAn|Gc?v$(M=ia^Ly? zx~Z=EGPrv0ukVc4w%pjL{b#qIQ>bM3+@W$ltAP*H$DXy` z7n+VUqs7iz>3038zI{77V)LKrT#{}=68Z9Xcm63}Z~yOGeC^>Mr}Sl3M_tZaE*}45 z={dXmPwiCPzO5|X^mTR7*_t)po>rn+%e$XmHjJyj_}-E8okLumYUm@|xHZ=n<=4#1 zYGQtH%luOQ%O{V;mmc0Vt)@`j{`Ise`vmU3>OVejTm1jd=XXp0-s`Xb^I}T$zi6)w zxeL!to_a0+?MWlgOMyXVo<>qDCWF$(x7R^BhiC1*IM3&nT-Vb%V$T2euB>e>Jzalt zLLxWQ?kxX*ZuP4AhyQ1-QnzCKq^kev$@ZL=+!s^rqoyZ&&s94KsoC_d ztP727vkqwb?XP{z()8HxeG$E>H~yI1bzwiSwS3F`Tu{FI`pDb%>c%|Jm&Gsl*`?ey z>38O@K4^Qr?t|fe8>_E9zu!C!<1An3cGBzh_KztuRbFan&Q_7+z2f;`S5x@rubR`O z-*S7|71Wz7p1dt|F-~UHm30S2L19}{%F#sJSmO30_lfc!G-@jA8+Nj_`^nE^$s2O zhGlbJC?43N-8dn1@A@0tRDL?eeM<8GI8FA|=3CzPb>@F%xBu<;`uo4$c*%?Lyb&|| zEPbb`--_B+cRO#c<0d|iTbHJHd}Uc*wtHzroglP+dpalW*V8YHzKLF2J7=l$vQAE) zGQXbv!Lfh-|Gb&r)onjlVBem}db!_zFIh8r*LrzdzS}yPk3iK%l=^J$t@)t^-!og+ z-#GT8N5Ff#PkY0%yC0n!UJ5Yjzc=-s$4m13p)=aKjBZ8zUf4x9Te zaQ~ajR{bkg4<^dLR#`b=e)pA|?w6iUH;j}0E~h`Qb={HYZ4viUtvO7-o{?kn30}0t zMt|RxV4l}@FIR8=HDTXQn``gB?zp|y{=v%snP0zH+a_(=_o%uYvlYBySNHSW(&zhr z9@#zb%elGQcI8{7ruy~Qob0yzd6RFVqM?o0@l9_hv$VgCRQGKC6SL%;-6XyJJs)4~ z_+0T(r$*H-_=u4HZ$xWM0!KtpxJ@$QRjk&d^-6Nc*_h_ljx@|Z8FGQ$&9#t*R{{H%A+R3*!`lju8 z@1h*NgYCx}LGN8_*qa2t{1Hg7dLmbKuQ_N^-px1aphU3oZrHD1&o+L0`pYxh{Kw7d zck;io*L@1qUVi7*z3R%hzPkR7C-rMNfBaxsUbcHlL>*)GV%eEr)^?}Pm2Q*bwVrbDAjkl&;B*1cYN7+ZqlvI za$2dNG*M8fm`+7^>%_onqXFPRVE^qavWB;!EuVm%FY?vy2|JT0I ztH18WSPPmMc)2Qkcr3VQ*86F&5$vrxpo!_!FDjrM-=pe0tyN&fzrg(;AFi)Wc>TwG zPx|BL^Z$ybn$F#JVfvm4(N@1Bg7&Y;)_lF?-RX9RV%yh2ze-j;cB*w)*|IOcVbD{kI z#q4YE{bH9lvikY#yFl^HcG-m&8NB0}?70rEy6dM29SY8Utz@~}HNY)DDL?V-sR*N# zNQK6e71c#gy8LtMU%%ncsd>PEUM~Lg*WN6#l3z~oHI>VMSj~MMdCF{>|8s?8j&1AG z=lciAie_btPQTw(`m137P1ngE@*bzeda>FaKjQVUfkR^ItPcxze4F`g^V`WG>aTB3 zo238Y&E#!M+kdV3cjNhFma^2h^Y&L9`&C>2{NU>JJAV}yOW*tA_oPJhRnANA2gl_i zOz&$R-NbzdGKQh^`isV=_knNp*F^t2-OA&wZXoI37x#DO+|%~I5BBogKc8Q&_iy^^ zRgxDqpG-cn%llNf#Ziyle(P6X|GTqD!CrLT_Ai+S;(C^D?pOVOvP`*i_gTAbE#GJT z_2a(!;ij4xU%ShJ8^OYIV)x@Fmx9tuRC@f}EqXt%EIX(Fy40qBW%3RGNnKl(@B8}O z=418sx)&Sm_f`FxE5D=YlJEPV)`B;A-KoDMKMHQ&GvQW#2YCAP+mu`119YB$3)WxH z4jONJsw;1#H{(Fc9!txrr#r2~=Y79;cJuuI58tk@eK2e9%?m4Yes%3V(|)8_&uCih z6r+imNXdb`+{`-6NUwf+U5}sa(zPtL@W+w9`4XwJ2 z^0_SROC=k@GhJyRyD~#fUgu4Ca{KkYdy7n!MYE^B4^rIBs=8rw<=Y>-^6PV+Px7xT zdAugQwy5UEp~uz6OO;RR7j2AFU+cZ|%h6XR^KydC?XCttv{<`YSM_Dcj<@T!{=fY6 zem}>Rg5@*Wr+%svnel6c(5$ z2Y}~cdVGF`xo-CBSAH*d^xmOePxpqL$UDgCqh>u>_0GIw)bzWj*YIQP zF}WoI`gZb1ogNA)JXleEBBRM zcb~hjZhidz@2}RrD_lQS`u?-H#b2fGHEC_qGL?@sapY3$ywu~c@lDn@H)E;0TeYSY zmwSAA8~H|eP4vFgEoY{6JCq*WUr}^-`}w;&zXU(et9zqwzq$BkdS4jJk1dm)h&LwQ zT{XQlYP;UcTjJTDC3ej{H~I06^OOF>M5M3$o8!GQIW=}l-|imi@JH1>)eD%iKJ3&K z<7{_3P_Uwtzd!%~ORLPydQ1J6@7guJwDY=MZt(nR>+^J0&+FKHf93lBFNE{r|4wbJ z4*6ep;O^@GNgwX_Ca4 z6E=!=Vw!yNTgv0z;(qJ)KiM-^`(A?L>whz^+3Mz|fcleM?+ojvbiOzEchG44(dR286l7!=4=*k&XsG!ea4pj6 zw~nV>-Nl}Wa?k6j_dZ42y}KTM+)!nu$L&vrJl>MVQF{+F=WnW8fBf#^U-@jS*_pQQ zynO1U`R>aZZ`qay7OW2XJn@L<7OCV;Y4Nk`LHk zeqy_L>D(=m+n0Qqcus$o?CWV?Vjs-D7WsI?`BUz{bYg$skXw8At^M7izj^l6&!=8~ z|7(4CUeRsqwR1{teedU+Tf@dGqwy>GmBZ70j-HE5)B{ZRAF#bN$8Xm(*J8hR#sBj% z{4XZGeXF}B`k!|j&-5OKzjyzxO`h)8SHFDMoA{!K=S1i4O?dq|J#NG2v;7z9&%3wU zOV$Kko0xY~PyV=fX6!5HSFdlKw2OFdnKk?Gv?+F%Rt8kB-ti|aXDxsE^eC6j4SetP zHt+Ke{%}(}jHlh>07rzm1!${#-8F+rm5tLM4+V;=LD zZa%N>zB>KS?BHwfK7PKxyK1)l&d0AZx9>mv!fpGXaBcOwPxuypotz(=xai}u)MXo( zjb=Dpd^4#|mecK;#fFS)z3H(D&Rf@S$YWin7!()7^u_(h%SH8%X65_z#g=~j@!`6@ zRQ$J>-RAbcyYl_k?Jo)Tnd867KdSV}b~^J6am+PiO`=j|=qU0r|vRA%{(v!_<3*PK7)X}&x6Yd-g# zw5I`I3lc8=_jXz&7@2XgOV@LMRf+$?jB9rvpUh?fRS}iCyqhAEm>$1XzN-4a>*BGm zS6%;qP<^aCJwEF1#=qX>`~G%%Z{Pprn)a&trS;Jl1eaHob*9F5Ofig7zy0*_F11Z3 zQ|BLFxN`HkNwqpB&;OcdHM{-%`HewE@t3Yg9G|Ny7t8*A>JJs8%*OMX8wD(UnB11! zy14MuTmM+~+-tQ#*FcHT@^x;?UFW7qYO>r2cI)U;poHQe-bi@6^jPOe|eA-^j#W#gLJemky|f!bYOu`W;M+A{v){d?}(*To;7O}uz6 z?CUKHqnr0Ef?{9whfM$VYWsKh{*e89?So?9t)DNm``3vdx4PG@t*frDcs|KrPOw;b zdFiXKH#eQTbo2NmE0wvq-k_dJ+0Pw)OJ%xiHJ84NzqRJ~k~PY6xt>1PF8#W1TXE@* z5$yK6QP&c`Kn8e<+WG8Ru8ZBy}j|Y`g65?o5Fgx?y{e@zHsuc zCGpC$R0OW4_4&sXyL|U_0M(iE9~g!?Gflp@W0#Kmv{#F2H=IpLPd1V3-v8QeX2||f zdkN!vH`n}I^{4L4l3gF(&an^({`>mJ^?tR-A2VM6xOlOmx_VRXpC1{&kEE4Oyf2d* zS6{Pf^G@IC-(NM^%f)|RtGsw^^6kg(>puTDx81I6Z!*^-7rBlNe@g8l}O5g zs>Mz=N#2vqHYO{`u{bb*&RKIrGIXlhTUF(#i#ZK8*9{j7qd#Uf8TIQtJJH=}X#SRo6VCiAWYG*&YJ%6p$ z%jCJLXQzP16s%reHq6;PCHKbirTWKKUAD`N-gW+XsmjWLypRa9i_2wK*wxtCvK{x* z{5DJC9o&Dc_=0v8ye3R^{?PGO&TFK8P^Gi;b z{j}KUyLamDcm2sanzd2eb3UCslljVOQ)G6Ut7v^wN&QjpGW&{rb)iKUU+HU<(+mer)C7i9*^91+PzNe$l`S^ zM}GXuxP9-s`71~`i8VW{@{aMaUpFIQf8XS?xp`MXYb)#`{dcAAuF?Fn<@cJxo9`!Y z@&mdUIrd|xkiUHO`Mbc4RzsfhXOUOVMpk5pX%qY<_TA{(dZ1C*z$(bvrlzzy^7`+bb=(t; zjxB$^Yn$0xfv*dHC)P`6Zk=j(Y2}9-yTkV8Zhg3|v{doyCjGUqV@hpv1Q-}WD5H8M zcjo)>C@S%%Ac4R1vI8R zs83&c#A4Qyi0j8f^M7vjzZJAR(|dO5v`zDB4KH;~wVQu$OJDJ{x3zYw7B70d)cXt>_?}UC-fawPbgXQt$^e8w{4;NwWU_q z!463-jgriIoOS%GPO8lBB~y0wO)a&Hz2165#JTnO9pp&7VYt)erF8li%A^`8S_EBcESh*~j&LfA-n`YgW(C7kqK> zuChQ#(+0VBa-5sqEa$FSDLSW+gSBVgl|KID6aTg)Em`mP{Fg-LQLp(|GF4CHJ$`Ig zb7|FNJ9xUf1$I(liU-f}wi8$Ww)S*NfMSrLF^{vPu#x-iW%1{$F8`B=J{D#5J3^@P zTCLGGzhk>gJT1zY*v{Wy2gYQLTJ zf$6c1((Hi;UPQkA5zzLgSljLQlCxIcO2?{%UuGv?jofEu8IikGKjeC0O7O#)^0jy8 zPwRhOTPovhWa78&VpW%2$@~qD;Nt0%@&WOqAv0UQJnt^NnpxkYo2+~H`Qu#@FT1zC z(ve@={>6Llb+6wyrsZx0H9LRqJhAWQbe~82Ci0|)xXa!*T~s7#B@th9l5mjv?) zTbVNx{^lLcm=9{4_$vl~anwHj*TeS8aqGif+g~Ns?yFdrtXZ58zsBdH`>jwucc-YH2~wO^>KDGZAR zrIp=&+h5&0K1pK3z3E$yO#wyjiDid&zK{BLeuBjA)CJ<@Jq`h~ZC?xazcBc{CHC>@ z^$$7^YbK;D_*M|${C&UZ@>;vuuOozFz0>DUGm5*Od0RaD>eZhqwl6~}eAY&n_4FsL zJn^sG_Orcn(zEEd)wj0Yf6plea!G?jCreQ5FQ?yyN00s}U9)AW-)qHO@BXiaHr|$O zzhf?mXJ7T4f6X~ZyRBwd!M+b8e)PL|xn~xCv;N^GS-#Z`6KCFfypY#cI4q{a|Jacir5kf!XC95MeX&c; zZ0ka$<2Sy(`B(BYIXT7VwPJ0tjtbcK2a1FV5 zxVE+UYWuI!m>%8a_Dh+zPi{5c95GBkBAWektNyWR8-tdIPA=;yXY?#kbVJF6_HUliuQZci|5{X~ zRrM$K{X75oxjo9ZYGK=ZHx=f095SsaIA7j&@cCbmO{T z68rnEnyqd6wsq@TyW|=XZ`bD=UvI5HcI1|=OGROPN5j;>jPvEKJ!y9Hx%U0xQnR?g z>M920VH&)b9!Ob>HpWsf-!Ay9hY@VzHFSGRt=YQC~~YvIq#@E@<7UO6Xg_)XhY zn3|(i+hG{|w66|Swi&A!BsTZeE2meQZmX0hJ2NnF zrF*(KhKS#=Tc`Ve-Yz?fzSJC>?VnHT{rb||ZUsrCM-?s{UAozGzGCjHq?)h3uQR6B=2nWg z94S~c#rO6}JE@mD_)QK?t6kjqo+cw?~Y?z_)5FWpxGT*jdralvtJj*8`epJ-X~)~f5|`~v%uM>ktkkBNyG=H`b4_*ki_4~B ze?aYA2By>A3s!e$O|DD6)pD%u*hRjM&aGuWx4(tW545ZK-hU{xq(JTd@68Dv`e&0Q zKd31r=uDh-Q`)J^Sn{@ej?LRXwcLvEt(m85TTa;>=Q_(-2r=}h@QdF?x6<~gDy;HYOLl+Ca*?4=io_RxFd)pDFKqJ9723P5P_i90MtBeJgRJP<*3=y9h$!%iN0Ip|8Doh zBjvx{ZisCPJa+$W_48i+b4-@^R9JXc7&Ec%Ni3=D+x@QoSe5_FY8zWSSPRp`cftG9 zh1VaK-mTaE_rvc#*L^25y$8Q*^6z|fjb3nUc54IURh57XvyTU)SFb2M`?X0Jl(h*W_NamS<#cIKU)0L0)g>{)s#6*6iN5VD~ZJ zyR5O##b>cU0wrYz76%2@#%=TaHH$a?I%R9G{e0q|xHPr{oJr4Re#PT3$@)rVUEMc`5Qm&4*#)5kdsM4f%5@l!xBbW7Ac_% z@*b?V0vC+=eij*gab}up4D)J48I$7t`>sZp?r-dx!!n7j5xU2@F+{Ar;m-!GABhdw zj!FAd9yB&~t3Z>ILV|F|-!)sSHLqyzcNeu{UBb(B6LiLC&UCg;T`tDIirX6aSzb+B zwOZe>Vncwt+*e3qi4}VB>hs#ub2h(;t`9$DQI&2|odb#x)!d7#+e+H>Nl! z%xieTPFul@PnLIrvn1G992Ph*RWJlRSfrRL zaAK~*D}C*X1rvUEDceJASDNtaGk*xgd}yKrH-AUjqaiRF0;3@?8Uo~n0GrZ>|I9i? zp38lV-v=--Ffe$!`njxgN@&VVHZ){lU_0Fz;OEZECB? z48>JdUlk44ofy`glX=O&z~GV^;hE;^%b>-;z`()4*q+J20#d@jz#s)OpMiM+ zBLg#7gpq+^0TWzSVF5FO4N|$LE$K4@1Dh_W5gfs}G%PbGBvjIBkrO5_1$2 zWPT(hD6Z4npm;2!hgaw~^F;^J@9e~4^0|?Rlk;}*f3KkCG=k2c6OY6!kkT996}^2sydug+oxGpC*WW@Y!c`I&XQ&+Lt% zx06H-_C@%r%v9YpLt|o$ir$vlx)ZeYsyF01uFAaSw(R_opZ+RZ24$BfrR-z*w_VGn zjX!>ZgXDyypW$~VIh4{;WXBx1=8Hf_){4{X9;U=>Kb81; ze%t-%589vKtZ$HESh{tiLv_z{v%0p=HqDhapWa0030x?*JT2iSoxIBGrM-8x>I9k7 zHoJBNJ_zWKRrB#XZ}mX+b6hK9yXeHT6YLvadM4bnNO%>pU>ldjv76pXb5*Vuas0@X z52)w8V8Okkil<-$cf~Hr8%xx(TMh{B^*FHAQ88}TdiLvfYril&f0KNGOKtB{FG+T} z&-rij?_Xv-la(BPgS9;A^ub(No3v<#t(K=s^5i${6kNfh9HDvp_e;;P6MZQ&R`iMb zN%}0h(uB?UAM6Pi8cjwCcJDKnZb<*FNpdSTzho;(8Y`o-%dI>FZpEq=Gd$E zl_kLkR>nOrpOm5AsN(p=YWFs&2s6P7mumk7PxA{lb=>1T6X(~YcILaw`qeHERyQy- ztAF~i<@~e8ONKj7SQJP^{5Jhy#W`1PLxWUSV|iW@pHS3Zu?jQZC9j%Pl#({DoO58B z5~J*$Z?_v)-w3Kmy2Te%)25wKjF=_$^$e1s{GRS-L~}9)-4_fe2&Jy)RCQ) zvvxA`n$35*QmY#a=QFzR_%65IX`^+;_xDTpx?R_=Sl7SN_dbJh{xjW&-lt-{PoG@s z_Hq(ui1Lap^Yv!8{nYR`xF{x6ujtuptybA(~dbZ)B0Z>kQF%n zNl&8q5lhN9C#F=+L)&g14$S<;I`89){HI|W?B`YOT|8Yj%D63P*q6iqr{ZJls+L(& z|J{tjPTtkHo;v0H&Ce?tIZ}27Ixxp0r?UC53S+5D_{8}V67TjGl=Oz%zS4Vj zlPNL=ux8(%%+qIfsQr7Y3Spb7+DmF1=7GcYjPB^Bgk z7MBzaKB)^?9|HQ zD8FDms6k;W$vKI|#ft=m8kicG7m0{Aur#nXu!ZC$=BCCAh$R*mrJ7)M&_PAfx*#<83ol%t?ivXeG?{4->`Mh-hBs-Uby)TRAqx|V@6Pj NF)%QwKxr8D2>`(rdD8#@ literal 103023 zcmc~y&MRhMoRlBp@2tSUz+jP?Y-qs1$ZnaLY+%8_(9oHgV{F90!2C9|7(_D`fS#H}ezdQHXW7eEIL52y*k{f#03MMp9WXN4wtEsCRy7Jl`H@Pb^@cjx`0clL($e7|k~Duk!GXy4ta{eQphD7zgtA^ap)P5S?9Tt6;Ybj#Oh z{=PNo%Z&7U_OXtkzyBwFlv`^mw>q+M{v)R6((&AeDYqA|KY4s{+5Vh(>$LdU+mFj_ z|GLEXe2?wTi#iSk=dNv=lJ#xIqcvh#+>r$rOm{EP{jIg@-L4C7_DeNf1GlRhu6@23 z?QQj=V!KuBbf?-AT~B$#F63`$vRSLXM$|gb_h#w06M@?AcIVzryM1d@>9!xH_s;QZ z8m+i-J~DSrF6YLq{qsFt%UxE@~qqaIlY6ko`bM@&I zCzIdH88;YR`_TxBE#0@bviH8bH+9#I?-7aiTJblMTwj-2Zok>}ucW$Lbc^z}thZa1 zWiJ=qARG4N*X2L!EQO>U9SgXN76yK?EBmfbA7Gd_IHA9m7AtR!av4@t4g4l zJuq|Q@3tnbrE#TG+Lta8{dsF?MtAq~$ikh5(*64L&;8TCFHx;C-(-nHo?G1Ipqfj0 z_9^w-+ePpGE&68{`gKaz*T=VZmiJY%HC$~38OLy1S@chA*oX6BY9SwXPvNRN+P&sv z<-SW1e@n{t8?KZKTfOFZ!!wb?TNd%1_`O^7@!m=M-51vNdu?5Q)!KNa{~wXV>DrsQERZBIdE@UklhgkublqAg5x@FHT(xyC~@+pYK-L3%&2>gqQKUFlhIJ9K)cWSommP(eJ9M zT;eO`?rBW#s(Ty2#UwTTE^}OrS&o8_Zd~pI`88ku>%QIjYh&7bu?gzX)^;uh7uD4Lxf-WoscWjYF)STSIcTo4_Q_9vu~2v ztGHIP-Lcv$<4RZk)^okT+R0Y7{c^=kMcv-nrL5~0FlyTDj$T`QPwaMG*WKLYo=&tg*pSk(Z*Yl>zxze2#CeiIq0c!(7H_C;sxn^=bG}yoT!l9B- z(w3k=jFxvPp-_))w%io!}(jwzkGe*{q6mqlYcbM3vKG!_ixWz zJDciiAJ_f)F^4plotzUA_$Bb1-19#hw*>Y|&d)6jt^Q;9TQe)nLT3B@P|N7wTdoym zznD5ztx4-wWay)mZ!t%!eC@(aF2`Pewymp;gRem}#q~e$U9BBwxju63u2yxm4-;Ty zxZuLV!0_qF%f;KpO5Z#z%YL)XwCh(;JJ(glt9wLWeto!RNB_;6-yK(X<-X0yb=|#L zb#1c8^evm}Uw4=7PPxt9yU0f5?Z=~O{~OjS9@7yyQN=TdLq==c-D~HrC3@ZS)!rQw z5_MhuZF%{bJo(exEXzX{=6%nN-e|Toz@yRW=(cc^ik!x5Z|3DMlH)V32VWNc_HXx{ zzQp_a`6o}mtu3E+clnFsUeM4#aBJeZTid5wKdG_``TBO1?w3>IZf~>~hn1|0j_E%k zy7oeU=I?+q`>4m}a~JY&jJ-MYN6EH%rz6(x3CLz)345dcx;7v%;HKTmz7>KzGTZjw zz8vWwa5%C0jN|P(kA->LO&15{I&KY`If0>~?aht|iLkZbq+I_uZ+lw()^^+7Yqptx z{5O~L?{r~cFcD<0V_1EB>-DO)cV~8eIhUh3<=2`pne9w}#6=VIhTAA&pynVkbq5dLk>x4EL8{MDGy%QY#Z*OBR z`q&VZe0i(2^ge?Rnm z75|b64*PP}Pt~lJwar{FAN^&@-nMy@ihsW?{2j{gzjCp~>TQSi$i13>{cQNPS$jVp z(Da-c8eE#m&;L&keJUt*(0fNaD{i$^UCEJim20f~|Ka=d-mAv(7(L=6I-Cx&QvP-%r2p z*n3Vce9Kaa`P-7R+&*8mtbO)s(_Xpc&E>KceaCM8`+2VT$>IMA>z{AGxs3ab>%HS2 zg><_>9=DTVm=n43_CM#_Yb)Nri_`hCc0>8>wL5Ozia4&jEoVzv)^^d<*suwuw{mx_ zSXAk>=2murpWzwZxQ`DCcmHjP`6&4N*5Xf9AzC&ot4h6|o{PNuqpz}wam|kG#j?@% z){C+#<}SLIs=G`3$j!Pnd{D1O*vaqRx@6|>su10;QH)zJ_8Ht>lep_J*9zS*i`>o5 z=OVX#iD0~X_GZl*E5$b9gATi@8m}jBtBW{i+QfLYR_o_+)92||>@8Q@|GmI;kYU>0 zcha{)zRVVVWxrxU`Hj~fgi?iP71@?s2rt(TAQyRhu=@hVZPb`kC9wF0*i zTQ8LT?h^g8jZf+v*WZ$``JT%+OtZC?ut<8}?4Em5{b>7>Lv~m1Dz6gdTNN??+JlXj z>jD~rAFTQCKJ4JzP1kQ*zy12v>~`5Ysl$sKuC{@~k%@spU*Gz1$lGj@--)Y3ZJyr_ z)BdrRQR=Z-^mpyuOQz)Ke_O}2R{4s^ojJ8v&YegPSFN~ltv_Win}}S{$+wrA`m$CO zhs{rrV2tx9`8Cm>Uwcbz+V=ao$8Vdb3okHwnCbnI_5T}ftz#x(DJ2dv$8c9z-m=)=!)T;Fb5lv=&`#`nERb2JOO4mJJFcRT2R`}fPh-G4jQ z$_H?4)3ehEw_Fe~W6^epzNL=~q7(OuJ(~Jy>uQm|Pd^pT$or>${O0=8mHDi@*3O-N z`dV-9%j|t20UOuO$kpC9{Ym%A%~88z&+MCK+x|Cv!|&Fkzt8`cdwIWX%BJTrLfNIE z;&D&bN-v#NyEbmM{p&i9?{CXWKbCO`WIcV=X`pz^>RN8+!FRW|`qTDo@iS*}mV-iFLr&SWq8y*0>i_xy9$%&)Z`Z8(ss z{(f^n!bhEdK>-`SoSi1OJ!W3?p5;w;qQ7pwUAlhhA^Wv&>r(d#axHOK5Vtn9(Q#Mo z>MJ30*Qb2nT)K0kU%%%<$8A^M{1jtu5p#mX(gf{`ncwH-Z53q;;f@yF;;k2#pgWg) zljpA*nSc*>dv3BvIc9C#y=kv`dT#BOi_r@A^5ZKmoSOf8ZR!5=dGbN8d=IE{g>T

5YPp_|N{O~?|&zs@2?v*#TcG;~@t~`3mDZj!0M|JMs1zlf%Zw^=x zHe=CphwdLQp6@o^}E`tuGn6Q zSZ@5Mb=#z_uot_X?9M$hkL_8tJRxDDyF==>H9t@8)REA*UG?t9nrHpzS6OYpQG7tI zc$PC42SbCJ5(7h+srC>1U)Sf(TFbXm>|7|v`f1reTRTyym}|`v{+dnESI=FK`1o1*+xDN1*{!)zuaCbd zDYN%oG=0~Hp#^`A5Fi7?K`n=(@ClC z%yS;He^}IX>B4(9B6Tlo8lP|G zw+~x%drN0!E3`6YZaORuF2mgu7F=Cg_^15+tEub#HGXujUHEU;niu?e?X{&HhJP6R zf?XXmUmOr@{m`)X{pRGecf*$6UAt;tz{a{5>+k1Y?s~mr!_SkuUj6bD{j)TC*N5%X zQVe}BUB8=mv~GXZarP_e-n(L7Wt~=g{`k$mThq_|yDq-oYeE~(85x^(nbB!{eyeP3 z=f|#mAQ^6_0LmB2Mi;s+^;|go**R*(T;=z1`R}h>zq$PN>Kxm=__q(EE-;*%bEV(> z-0i|NFGU;G_wT1Q>HdqeX1l9?y)IzurzziJVl%(Z+qOn{^6%8xzx5I4@~=o~{n_mO zvUFRj@Yk=tJS*={yI1=6X5{~pZ}XevPX;L%RHsA*`^#N^670U&VS!PwUBLPvmK}?%+x3+>W6{x{EJ+soEJ_mAC+%^+_dfKZ z{UWZtEJm3f)3jq0#P6*)HQO1#OC)~Ro4EHC`+u4DMO?IBvF_kJ9gYt^*V?BGChrZ4 zUEw>m|BS3%#eL!Ja(myO%wAsiel5RQ_5KDMP?IwCJ1=YL8UBoY$-7M##IJsFZ-s!~ z#_dmc)Vz4AW8W}MEM(h%|0wTAn$bZD8?Kw(Q@vg`|JBvQRwiakXRlvlT5TSFWUIMo z>Gg-jp;z*Dr+ZtZUlsqiGP^!nbGJzR|29S59GP?HzLkF|O}m}x_-JYCtVMmdUq3mi zarfn-+u5&ghhAX5s#l)zW}5Bg>UH~e-Fvf_9&Rf0fw_G** zKE>C!4fWpDZOHy!(E z`6;pD>U_mRpO@TRJ9lf-C4n2qZoLz~Bs=}?x5(ps(b37fZiJobJ9I9}W9hk|Z!_Ll z=ET0yuw5VhwmY|e>7^6zN;H?3>|FNTOW5S<{EfD;{JXYI@Vj>`=h3pPo3jeGo%^@C z{n*omm;RcZ-h7wy>xA0ooZByB<)yOSW_>)p{Ir1Fh0$Ha%opsc&FRgR{bx9*UE9YESLWqGi$-u-)~ueCssSht;2p-Y>cL_p(*Hwkq$cy?oiK?(ei)*(nn2u9n{{Q{k-GuzSwhj z?`>*4@J_laq$5A5L_YAs_mjI1roF#((n~RA*2?|$k2kb!Uw8W0*X4$PMgCS4zFe_7 z`C7-$^S8|I7o7Va9J}jqd&P(M`bEXx=H>Q&S8oXKxu#WM6?9SF+C5Zbx$)oot6%I_ zpZ(|L%K4su!s5cFh;v0Mo111_mRz@O-M3?x?yd`pD&ICYV)@P0x7WPz@2^kOa4@_t zvr^qbOhV@?PlV17?a$n+&W7jYo_^z`EVCi^Wm)RFjY}LB3JP4|sDotkZwU?D|6c=&Ub(0O7wdefq z^|#a?UEeD3{afiSkIX z`_kR{b9U;dO%7g~xBBhgx!tXGkLz~DdQD%x>9}s`{`1Gq71zGHn!hpKQR~a}u74&^ z7Fg|G(0a2-S;FJ>%ukR07A12yiSe0C6PIFZ4Er+2L19P!ZTa`NZ^|&$1|R>jTwZVf z#{Al&zOKCTHx~x^O#Z$1{Is>(*31fix^jEa^??4iZGD+3w|7)s=Us6l@>JjA1D|ac zzvw?#d$ezY`Sz=&`R`ZXy=Z&RFxq}Y+XqdCJxUi}{+%xuu(n`b%*V6W6#m*(e~-zC zm$;;rC9sam?`GtmkSEL8a3<2t^3KDP5Ybft$ks?rD9FIsPXUR$q8JJ!PoyieEV4Hj>)3Fed~hfS%_pu zcPz|X|6W<|MOjy!f_;WAv;Mi4%=6y_t=-|eu%h+u@4DMxqOu$MPOiT4W^VM`O_CqI zTZJdTNM+q;8nSumer@ULv+~k~-!5gU|G37UU3bp9W1>8VI-BfyAY~pAD~a^8-2LBYlPc=+1pBf75W?L)q6?jc;9_(X!>Hb=$P$OWY%kT5? z+?jJiD~t4`<1XwdN$O2l5X!Q2rh59D6~zvA_cH4z=X?GWn|fz&)C$>)>Gx*0aqsyM z|B8A3o3N#?ON&0Lzv;Y}b>8sGtH-U=j(z*?%ai$L4kvGpTxfcHxS0=E#XNyi*Iw1@ zSloTn^!xU#%lmso?_BPA$^L2iQu{j%Qz!5G@&9bYtIy&Z$F@hEexZpRHnNDevam6}t7q3cg<7m(R4byBpuPmg)R5 z{4G(j{qDUBuZnjrd7Q%)(7wGd`^lWIH=q8#RG`tfykgy(O|_R4wSVQ8Ui_P@^Gbf# zsl5BW(^r+QTgRAi^kZRT4XB^7;?73TjRi~hO5e*m`v3LXAM#tbvt3r+-(#{eZsFR( zm3z)Lu3K~AeN>DU`|izbnPO~HxYpJw@mlDLrs8+UA};0TTiuu4ea@24j)8+=f^%lm^4t1SA=Q7A zSohwQYRccX_S%o&^v&gKLsQeg1#i56bK2aK@8w>e<@$Gp!T0XZ&4s_NS)?w~e6TyH zzcHtyLHFe;me0r2_wSaOeX@#Y$$^GM7T<}JW>~sjS9~8;?kAqTbgI?utMhmLoWI-A zIr`Y9d!arRUC%icqe|<~RNl>6|5`dWHh!JoPWQZhm*(!&PGyLg`h&%>PG|00{(ryU z+}pox)3>eH9?5MzCLj9RcuC>Xl{5TZYZu>me_Cz&E6JDV-z|T;QriBpPh;?8z1SIF z*;a&@+FM@dVCg%TX3O^MO<8JM+*Z~q?kAB}e9N`x@#M)}z40?WGvRQ67|VsM!=GED zI;xCL-47}FxLNO&^z`^Ae8t=34|G3V%#s~b@@wJ#H{s!XJhr~Fe)5;UWAoqhlXiU) zzwMQ^`B>VkxLc{-$#++8Tleiv_De&Cb90s^vTXJ8y}Fb2tnBQIe>O%&`=`G)nX_aeda_c<_AQ8piIse{PG%>5AT;8hh;g@w4AP<>h~yw|2)-<3B53*Ueh6 z{&?44Vb=O`tsmWy;=v5rr!TcMZ(Vv?SZ?mcHxpMLEl_A>dYTi*SjDxat)z5{$^KKj zKA*qzVyE!UlvO@&+Qo|&eJFo-dDTvR9=kPvtJjt7naDWD$S!w7)!TiFb9c#YP5RH} z`akdYj6dO(Z=TJUnsl^p+nNXdN9&}FXI;y^+iU#CM60o;s!YRR`OU+ZXIUHVwdhF* zo4S+r>f7whAg47wA{Uk=fBA9FSL)t2J?Z!74W;xoS~hLH^uFid-%jp#Zd~;Yr(6AH z*Vtv&{BKj9E%Jzeh1|MH*HyP|jX&kCtyRkJ%UUnB`Tv=w{fpOYzkYRIvW`Jtjhj{L z>Kb#0Yt|1=lx&-4Yce&qbwSv=v|_G;uZ>T?t~peHyy9_C-I=XT;tB8fdQExvnf3e1 zDBtah4<>0H2*Yvk!CzQ1>y0>nE=s)YVGVij!<;~6Xe*EL|jK5cw z?$7@_LAUvp%$t*HpObm)8!k^gtNEd4HGj%p7C!$}XO2q+O;?%~VizjJu4GVOo^bqm zoON9AkH=40T6g_@Z&+RV=li5P^X1p={=L6+Nf^ z@~4+uU;FjrU&*xnS8h)8y>s2%aEfl`wtpf_OAHto&Mm3hrLs`;U*@|89i9!U+-y0C zFAkiJo^>bx?zzn-W$)a!eh>Wd*tJFAY3Y%?yAs*&`rEX2eKnr``)AsFv4*YP{>od{ zK?f%^cCCK$==Pi7BJZp))9UT#I*y+F9n^S#cV56>>9(~mTS^j}(U*ZuXU{@y*i{@M~# zj!%Epm#v#pd$akwi^A7qpT7uVPH_G3vL$R|$dCO8v;JnU$^1EO ztHt7atI7ATU43!ue*Lu$HZz{p>1*s?zdIjM$FTb5C6?x?JG-9s`I<8|E>|}#&Ip=1 zvnW}w(bOzQq4c%C@z4IbyB!~k=LB6Zh`+|oP!XtjCZhYf_qm_{SN}-a^VB>4Gxynh zstiA!7#h;5%O1)<=09d)!gub8vfe(>i#xb5hodWE?!w=XSTq5k^Q zd6xi&Pg>Gu0qe5rioUr>7}S2K5EHm^YU(w9mNy?_Uu9graIJJ!#nov!`^41Jj-K9l ztNxnkm!(bx|4aWfznivuec9Bs_reW-76~0Z6+P>Y|1LMfJ(uHJA7?N8aQ@tv^6jhZ z|4v{t?@dkrZOy)G^D)KrUyKhd7j05x+}heDw(Obd-!Fw{W#*i@wpM~;Npj_@gQkTS z!+7)L&NeYb1y*>zTvC5!^2Oc%!`8m+-&eKL`aono!`Wl*;$i35|L<`AJXbv0_|@?@ zQ@^j@%BJ?cn6>_q&;JLJi=}Q{d2#Q&N*zPNr%etAxc;}kyvE5Av}1PP$H(G%7jIY! zmz{b4;78wd(WDi>SL7dk@o)Riu6~CaQz_IW}N?>H}~8BxtUw`FRI?YXIqA- z_`jDqbyEB98{b-g@NDwUORnGR7$VBf^Rg`CmpR|YGiS$_gtuo{nO;WRx4g0VW9)2` zx_^g|4>Qr~ahn*gi%#1&ggHNL zdRqQ=Yg~2ty6}Y`{Ib{8-mv41Pi?KQ-dz4VM8xap8zFz@*>0wLQs-7(=U=sUckI2( z5-bgAUZJ5Yu5Dh;b4GUNwGb}m98Y2Hu(Z=RMLCjecHUY&L+!_HqiMaL<7YkSZxf2^ z{Nh!t_-1?4fAiRa`d?4I@1|`2&dCtRF+V%P&+q;ILWi$Ew`;WYM@+5Rnfp5Po8R0o z{DB{`-oFdD-=@f$FB|^jcGu))Ue z7kjMLz5i7^ANfaVzhTdnJo77XomhA5pWW`iO;URIUpcxzdxyF7b$*73+N6$~e;A*x z+?n&PVde6^w1o~*dI8ZZ(&GJNfA4nxZCZCQt#|Hj#n->~&$8Qffhp+Y`;zJ0|E{Yo z-T(92(sj4q#4uN!?Eb^zwJX0WUi}(Z?U_5_`l^@m^Uu91|5BP+a5*FF z$9G?z)Xl$&Z`v_LL{|8@WtKZhx z$P~x#{OJ{*{Y{VY!0CsV`Ic)~?R~%gn)bDOizVuv0(Y-@6EC~`^xWW;iE^#B-&q(K)`#$9vYce@ zdMEBCUl_mW2m6Lu0Y4v1^}hS}z2z=%F8RQo-A^CSn0j^XU#U%dy&wOmc4yzTs6ONM zj$LfKXI|iEV3;#W;_&0JKmQ+1x$|7&Gk?O?%(sttb(KoL|L4~J<{f@>dEBfg`QcXc z@4eYurJ1RdUR}PN&8#;g<#-F5S)a+dZ`&*47#SF%A~=pexwHQ2@;mbPYE(D>Wsay_ z(e~kz-H+q4Q7?AI9Q@y3^iVhK$9J>p>2Y3Go9~<6m>hd7^U0geoUs2%w_nYe#lXO@ zWu3sGrq93bI_>}8tDj#!`RqM;1`AOZhKj`Naj(B#ICpl{FMh2ye$8K-qsq$uFU|Xx z%q(S_-rTlrU9fw7x!F!(28IJKyTbljFW3L|qW;_I>AQ~4+H22Hu!@7>LrvzS{Z4=E zT)*3E?l6zIdH>>@*eb=$Py2$(ce9<7x_ZNMW;HXz@-8pV`%};Tx?g>f@8~Um?N@)-TAhrSIzB(`v;3`1ev6;yhP?lgaE*Dv z(=rhThBZ}=iKp1V%d0)LJGi8tAzI~14c+lPRo*gtqS`l-w_Qf*qJH91<**A!7 z30c@K`t95K@|CMUr5*jHf8zJ)T<_@3CKUUFCVFkImXYxu%;(q z^Z&nb8z1~Td_Vq8`s}^t3>#!tEGyEq+WUQfeu&PWC3Aik{%)9^v2^3Vn?3(tulZpA ze$AQ>`S0JRB-t}CY}n*fVZicT*?j-K`?uc2GB!MQ3Y}`cJ3nJG_jJ$J_@FDZqchw7 zhy3`yR{qki*x4pqDrJp-F*7tQ>)-;Mh zeAoWbe{-*F*q`l39Db#X{)@i0a_#Eoa5V;ojCm4#J6_!T-@pE=xoLGcLxN>s+S7wu zFTS4ly8P77`t15o^4oO(p1rqp$%U|x|3?g3?HL#{3?J%ybH7vn_pYdZ%gt&ghSQxz z*=u)$<~6>CUHy9c(>tNxlf`H6_4c0pd+qI=p32s08h;oW9A0-Ud^6|w5Bq(`{^}Y3 zXO76$*nMryi;}bH$3s{D-SOnI>OZwvwUzrzEcegbSl1iBA@cC;YsNd}85lAw7Y0>p zwVmRxecF3>yGeCCL&DC$+O@8`^EGb#*AF{b8&kSBHtz1(JF@W~UP-+>eeOs9JmZTy z=E#Fx>*y|TUGZe%?C<;PUv0ntr~K?aafXPzki_h>x9#sQo!7cu`_=R*P7EtAtcfkW zmwNQyjmq>?@9P2i+jtom7Kk1d*!n)Z`gQ-^qW|@sd)w=s=l@ul1*#0D317VtRdn_1 zVyz$ZLpto$*MIeW{VD(cw!OQZm94L3|2d@lN>27f6=*ZXmQ7JR7ghgzHrwjcgM;h6 z9%jAW`O5)f2IGOKg11}azQ-2qbNV}7^l$Z(*vq^Ah+E$>*;48AI(}`e}&aQP74Kzmvh`?=CmT z|Lc3Tb(iVdlKz;#S$99|+YRcrZHQTMC2Z-7FZ=dKtq=HFx$}ph_Mi6f8u2$%FW~3|@=JAo)-}W&c zC{kdE$h}nYzxv$%fPEkAZ!f=W{l@>s)=Rr59Q(>Y&vaF1_x9EGk2|=QDy>&xVA!zg zXw(H~^ZN_c_x*iPZf^Dc{Hhm!f4vFqH>>{7kYE|GZLOO8-{whu{PBw7b$9=jOwVl9 z|2Tcu?{fa{>B4_{=WTY(y(@e6A7~++PIuMTW$gR@$jaXM-4kV>5!U*ld)4m$(benL znODm*J}41nSR*F?BW3%lx9xT-?!FVOSffzxzjsqN5Se{Zof7gFfcGA ztX-iSQu`x%)8$8 zPqu$M+Vo4kZRuGCuCv;m?&AbZ==2(3x29p}^eV-Wr9yR@LR&CGt zpd{ep)>S4q@9%v+S9@xmui`%MIBl~BcD}F7cVzlV>)%|suk+y=aRvs415w|M7#&=> z_OI;Q_~U`PaN;nHher!Uv$&Vzn3Hbn_S+nU2sjFf#J#Z$=hw0wCC+}UKm!t zvi&(zqZ6Y6_?;*NZ6{#kg-kv@0$%`S^wS6{hf1H z+UoLsy}3`{N82y)U2hxCJp0&;hw=;z2^Zfy)V%xi=K9RUs&`A}XS6X@e9z{3xIgp! z)v4j%-Y{IKVPQC1a`o%tPyZelJzTDOzk1pJ*o}*QU!Sx0mX6!&JeS#4+wc@9wO(Cu zZtB+WpX0AT`KP@8$wPjvYxQo=?|<&!1zNvc%ia*)#I+%E-LAT3u7Ba8Ul=P(=by}< zs`vi7>7D7lU*#>Uo4ejFP5b|afq_9+z4veZi~qZ0{qOzzpj}zACG490idXev^Y^}L zOnYz5ut$i6;p~L2`uFRDub77YDW7vPf9kFu%TNE#t-8DORpfNN_s8eUFfcqgy5y04 zD}%nV;Dbq5{{H6=wg0#J*BO7g+;97s51d{o6_cqQ@n?H!dB&e6-B~*-tcCwFGBE66 zy6i7|HFp00U0TMU*MFJsqjl~7WUJ@(;q|{B7H$46&k)DOc)%-a;UoLGPv6VEJ+Jml z`qs9%)}W0y?JXG?4y+288-KyJ{b&oZzOeoUym&lc~$yt{k-3% z>HaDH7s`^Fx1XQ0VA0?G6YiE~nul;@J_*XWv+c3!d~b$Xdc4d#-gj?*@nRpd`fvZY zGo=4VY5iNYuKv99*?*P{4|Zl`%=LW#`%6pHf8L{qW@`WAj$=;m&H9{bebw5|WqN(W zRBpp7Z%@R04Ghh8xz;55SWoob%7*^JW2>HJuD-ea?OHqWrnJ~8xxqKRzG^ z=a+xzyf?MxB7env(eIi{1)4e=O2d=q&k_A2)p4#`-f4F2)jaF<3*>g+eLRQjVCIFT z2@dL@X~V&PdxH(5xNk3KP^_>PYAdO|Jf%)ZiNT__jG^|^w)QU{!r#{{4QKwb zPGEIe&hIU+K8Amp`Tbq~w|*vu^DfFSeSTg%&zHUM)9SE=^;h1_o%ruZ>$XM5&fQ+p zJAK~bbB*)T{vTn8^VzWJ-pZt-S*k9&5tUIJoA%{Q{Vr(DCBNNWW^>d38EgA*B~}_~ z_$)R45O(YP(c#%-=w+AO>*>+62+{k~kmu{XK!q}21b->UU~Ua>y-J7{x#9K+hocQ3ZQ+xPMH zENh$6Pya1e=)AXEI_Y=+ug&sxyKdTZGw3KXSO~A%Rp-I_|8&`x|B@%a&+E*ecR$Ko@H~ zm+Jj6jbC~1Z?na$=-u&xZPE1wrWe?2FHE>A*LP_{aoq_`o}2eKImf-t~rS=%Ws~0yY%O_d*9Zr zON!omc6;T|zM$&g6N;> z#ntCp$5%hSd7SU8{g17;cRc$nwY~WHxu&w-ZKeEWTf}2FIY!xs~Nycy{_+_;UySddmkTEZQ&kp1P@0wpsBv#YMmG6p&v#{q^tDM{kAv%_!X$b=SW9`@G%$MPeFHPF-I7Zqxj`aav{H zOIx-DE#FnMyt_3}^lnRk-l4eo$66VOSaUi2gzsgZh%294v~IECorVI2jL^ycGS~LT z|5+xs%zvx6!zKx)EkFM^TQV}32=n$m-SE4uX;1ZTr$4&U`SI_T>z8fGd=z@yr0^r( z*3$VCyEz%M!>m@y?|oKtp`^s>#Ui;i?zWF&Yc#GrKCE|5K6b_RWp{+1?)(-0{j4#Y zeEK2P=G%YH+%_xcDJ?5m74bqxjQjAx-@N-CsLd&tPQJkQ+r>^>D=(yk*>3lqMOHJb z88Y@=;eIf2{oSR@-&MT0@{B2B(leG1?=G*pzW(tm28LO!3=c|TtJhxtyIU{3V1M$` zW3HJ~{uSBPR{JkEi>q39tUNbtVQ-njhe<(O-%B0cCzbr=eP9oNMD^Q;5uE%hBC0R> zhArc_`SL~P?zf9t^CbC1YBs8ui5%nlG~4N7{+8<>)x@`Yp1W<;bMtU@Qpont^KQmB zikj4ZnDOrSCG*YN%yXu_dByOHd*!$JrGJ0RZ9A{|tetVgA`S*W?~19!kAFa9G zap}gru8Lf8@*i9EmYx(KV;8piY<_ia=HFij*IkHvr6t;ZSZj&Gf!xxf*>97RioevI4l+pa-Y#>H zp+N0O)rH5~?=3(6?`d4?ugrdq)i;dm9KZg^zE%1?F1B2Dejq~_595KC74PHcsEXE~ z=6m#hTYPHa&Ut2MzudRBTcJBWe!;)q#XjHIRTN*BTk5ZWY^^<| zx?IeRbv|;{e;)9pf1Ai|ZC6uRXwy>~y36~ndK2SL*>Cf1yjisE_UzQ|MVCZ*s@~L1 z{~WWB!6NqQ$;i9kw{OoV`v350#jaho>uRq?)$Y&QzJHxO z_5ZGzzsptb?~C!Do%T!qhDqAd|9W40cy+#aFeQAA(E2gAkM*UZcu9NlyKMpM->&rw zpFd;fOv}3O_jaF-iR1sV?n-h(O2v-lH=SXoH2(1I{xBUl*%{dWuHK3N?ibn6=i1Bv*Bty;yvy0{Pg|e-kEVTJ^2KKTRc4C#y+Y6b zD5y*P?&ti?hyI7ZiThtkj*s@_jS=y__X1reoon70G@d9bL<-w>0gK zTYEP$=;_Cu)#~c|zdo&BRLC-C&B5G%rSETDiY%7B`?faru->)pznv1Rc?#RVTd98) z+pufd{V0~b_jKbI@UC(F>J`dg|I|)P^R|1=j;o({t9tjWzrjq}hq(UjDxbCG z+4>`q@Po`ub}U9 zVSCfLa!ru{nX+?Vjn*@K$l2W9_xj)dy`je2;>;A~CUe)X$$Gi}Rq^|q=btn%oD*Sc zm@G8+-tU>_H-3G8b8hvt)%A6=?$-ZZy)ED4Rm?{<uLIck4cE%=o^s?^W+rof?-Z>)5`EOz>L~!}2so^XSiK7CRg~&KSEN%6wKH zt7Xb{(5ZQf^BoTv_j$K_f62D*kz|^5>>BHYs^vd>@3!sP=U(uhz3R`sFr`y^J`8ho zqraTztv#&sckfOW)u8R^znAM-%TE?N*Cgz9ONGg0-{#ogt(RnP39`3#KVR_GxX^vy z627fwd6qjiPf!2ZX%ykQGr}-Eap9bh041h_C;bcx7+cmE*uVODVTSsGvzn%t&7{>@1&m+^#@Dx|JVmEdo6$d{;H|>mMhK+TX#!FbffISUC)-Coo%MRv0p`S z>1@mVofZLRxlS8{#k7Qt45BU0F)4m+4SLPxVaUt%?M5WS$;w>K?imyI>|J)zo9RZ1 z!>9Q8ue0u-Ssd^w-thmfxe@x4Zd`5XC=%sAlAm_hs?(NxedC4l8PU&GAFJkm$k+bc zZ(qMF{O5d);LN2t$xF`ay#3hpZ^y66eXixE?%A{X@BKA8t|#<#Raa5rzen8MUe2vc z4^Daz;-F`+vA$J%gU5|1rUMbGfhvlX0!w<*cK`r^aya%q{k3jOY5#>iy%o+#vbw`OydSjqaT^{A;md!91~bRa&=XYj=un z_2v21`J(qs#q&=Oju<}ndb(p#(ZZ`t?j2mJ8$7bkw7cwN@>*hP^lR@tm*=N?j}(0Q zX&YzDAnNZLDQ$g!!J5Wv_gxo!NZ;{4Hn%R{STI#jjp5vrWxL&#WB&MVzW=wQ^KX0X z#~BChQ_a>_{TJN)q35UXA2Xr8y#g7ztJ1&MDM@v8b#X1vxVUAKLu6c~gVpnF_ZW>O zn>nI%8;-cJ_9Qtq7`blQ&EG!nUf(q5t@m^oH7_OVeOFwuueEg@ONAifz_5 zOzGZoKE?Mi& z?&{CQ`lX+8>;;z^M>{V_c=;u8;iNsC1#?>aM7$G)nWR3SIh?GJ+Iau9$4*b})?>A% z7Qf!;tv7S%DxLlQ4_n8N@`8i+nj`kl3uYC%C~3%8z@@t(?QrO`F3STe(EoGdS9Lu0&C9KB4 z7QHu-Ysnu)lY6Ff*8OJ`{^K88W~Zh*hgbc`H@2nxmj%jl&FhzbU|;+7@WXv4j6Y4a z^}RjM=8Q3$%M@Fw)2>JD!=8vwncBnojQu%lO9Z3hG_Bs&pckDodJf75dw1Tu(y&$k zjjPU_M}K}f#48Js{UdTo+S)>8+v@*ESf3}}I>nXG!7%atl&)P)@&Zvdt75)S zpR0ar)oOFQxt|z2U0hz~ym~ct;mX$J;~jwqZyG5~=YANoXiJoesoJb|?;F+)lQL5# zGqhcrEAUCKXXcvYOJ1kO;lX5zGUP5Xcx;fZ2y8@-}Op%HW8{{@-pIYpx6uLDoDh@Az^1&(W(ZiqYIfz*1dVd;QKo} zU~?+}Az54Hk9|^Ja&3$AnziK)95cOJSI_41Wc?kxg1xWLIf+bPYi@nS-!aKU^f%Y> z9;1W*lcxAdK38S#aGS*WM_H(7`XxQ)dZk4nt2D&5pXumK2|nJ#&vGSc>CvZ7FTA%3 zZ2q-e^2wb2C1G1uU#MCl=RSYETfX=5@ZI?=CNod-KU^iBaQT+netTx6PyT%FYqov3 zuYWJCY}d9A_qQzE;}loOcy4!+;IVV_9`Q0ONE!Y;`gh4OHrd{A(|1;7Esgeq7f)<- zW>uTkCoQhS5$2((Z@jka^qITjMPZCq(zjUt&fR*}Vppa4u2<1}Zfh>Tz^wU>J!yO5 z;jitHG7~h+pXOcpHLv}c()qoI-|&VrKbPCf{>f>^zD-QR`g2%c@~q5LxM(Rosk`6KeLes7%YSORvzjwc z>orU^Uow%|<++4z&HSzUN-R@RDy6bDb{qE;89a99=looAHf6caI@$=qu^0VvZ zoIVLL7ETq2Sfr}vb)shf_5Mr#OIC|-z5Q)r=6%B>%E|%TuZyvZRB1n0bNI!y`;XW4 zZ;CJoR~v18%)D@qoM52ZD}S~gE$taf zTywmaiiKx&il!~M^X2-+v)~91<6C$C1!=eAzL;#AS$3d9=9Bc9r}htB-XHpFzU}8< zNrAvuPve*pzP52$Jd)e|()-+3|Igmtdtd%@^Phj9>;Dv^dlvO;SGP_pZ$JF7eOvCD zb?&zl`z|Ugoe~p$n)EVSOq8|R^|IoeP^XU7mOc$O+w>f~)wAMnbWaO^wIJ!8$DZu= zop*Qz|CrnSm{+x1tgfENWs22K(W7But!M1sdQbQyR{VO7)|V>R|9Y_vo!sY)k7tSf zT`VFY@togAr2km`tzEBQ#D#rRS2|U+UQ$hA$&OQZcKc-cJjr3&seMb>?eMz87KwUg zl`J<3+4&EK#vgBb#T>DJp1NGerjR^UhHEwziY+wlxdUJxV{o(y?(`m8=$zfVJ z^ZE3bO?!R@v4wFiy|-@341JMf9GW*p4c%`n*uQ%tuW9tR1$&>lyjsp>!Yj=2RY_%E zQ{dbEk9infZmNUqviTivu#2Vm-Y%BK%clI^%R0q($|bKwky?Ka^&YFgv*-7Vyt41= zN{cSf{5-9j*>&@>p40lAx|8~9q!q$F*FKxo?xm3WZp+i68FRHZynD)=ai{poY(s^u zY-a@?Bng|XmF>*r?8s<&a?CNgBmKX>fw~()cmCR6wQG0%?$7D|CBOE1 zxwuS`T(&Mwa+bxinjiy#JuHqN&5Ey!J~NtolzDT!jg<4{d&w(q*D*Zodv|5}tKb#Q z7yhT+d!CmQbNS)-Z^D5^Pu!RiIMV;Oib&YktEI*5yWq_tz&rcXv(GEd_wTA+{P2eV zm4~tGbE+p@{oC1*!69|}=+F5(H!N6FaK-0|5;Rkq()nf=uTXm+e!xx>bK%souq9ib+}2!KL2r&!<0$U$CUOSL~OR zhhe-b!Ui-VaC@-z=aL7ElBC_vs46FMdXAPZ;2Q1DhO|ZQaA*0KlRq*F%El2s6ioMK1 z?nf7XFlqT`w477rRLsq}3_CuGPZlVDZ#=v5>&<_iYrok)&pmDNRGzm#XzeqBJqLS_ z?t3qHtF$5cZ)e8|edb^;E%o||JSWS!UTk;nzB%F38o$1Ps>@yr7jNS{zWtqJxU+ZG zYo;5SOiS;j-MSXKk9% z^Y(75{r5F)?Z><4Jia?$wXbXnE$-~lu+6!%Hazb~!8{rBx?Nl>>&$ZJmU}!9QVq~k zl-(cR-*(W%rYhRH@K5W%T?`*X=FJJ0lKQQ%k?-r?{s%AlTmRmxQL?JODg87o?B*f! za)x(b56l)nFtP8*64zqG+@m!o7JsgYeZJ3?`KN5`e(*}@FXJYTp9QXi~6Bv_vs)vn!gDB>E|37?M{JZFFR zE&R6hZ%4_uCBNRzTJZI42h00I>+juu_kEl2#o4FNu{flLp2)dr#qsz5Bb{f5ctxHh zUR!lk!n~Sm_rJ?KFM7>9P~RW$%WV7lzv0pE{?(r9-{Rup^85+U!T*|Jv8wvNmZv6j zxjol6KKS3-mEn3uuVl~(oBigE=X%RTZ}pijNP8{!#cbTJDp0+|HU|?q5jXGnKOP)>weJE1oE$d@Nf622ZEz^-p{#P zm%_dKkFa21l+|sP0}A4Q|0J`rPCkA{tgm?OgbMSP%>fyvr?#x!wE69f)|?CXFW+dJ zrF%8Q{@x2!)*!cq>_Xp}KISJK{(9V(d$z4&=cN#_cSrUd?B+{$@x%#MP^Nht&?QOgGKfWk8|DX6-uT<5?N*J1@3zT(B37wp+t`f7{Ff63g}|K{g@|Fi2XI7L-C zALjVyAGp&&r|Q0`D(h0$Zh?Y-Qc?SvgU(Ew@Ut#oX)otz-i}t~j2o3Fb|3krw6a>i zbw*~pJ!9wk2Y+I3Z>+Oj?x^Nvd~-TO#NNbKONCI!4$1s)S1zr5Z1_C)^u+KpP1{Sv zd_LsAG4#IwA|tDEOV#7cwRP)-1O+cjs%kSDbm&U0IM!!>zL4p?iSEh$f&$`>rvmHp zwdT&W{e8b?0o&Hw-<0N@deq>heOc`PIF1g^xe)lXipbt3o|opVnzhmcRgU_dqay;4iL4NK`%Qn}RWB;9w=ijaQ ze{OGv^_h1$E-q941xfswzo@7&qVDk4#d9|udg^sze<{nobu7zHZJyEDS(DK8@7=#g z4YJ!T7I=kjcFW9oW1RmZwPaoe&;EZQT*u`EF5Wz~j^)6u-td`oZ#AnOnqRPN`O~Q) zN#|})PrmY`X#e#Ym*!ksbzEl8yYPuG_UBcW74vrg6%-6SCb5#`fP!eKyuOa6ZnVOu z=J%~-_m{TLIGo9HIe5oj?&I+{nx`G!8n7|s>!s^bUNWtV_x0`h`2BHuc>CXbd5dDE z+d}HJDWHKK)i+7<{zq@QV9&4C-b3n<`Xh?J^JA z#dqkZ*`ag)A58pS@^kN9mz_G*LJU(wg&8ARSFX3Xe3|Q%TjD!Y?SK%wTklPmZCN&J z>gxZoCS~`xR$dmCty|A4D0tEGqu~$vHA%6l3w~_68Jwa~p}S;-tNMOj#

8{sHLS~a#eJ>+ zsJi+0FRgO{1vft%4ztsDJm6aBqnVfd;zowRWM|b%C zWS@U6kG69x44++nkFEEk56h49V$5$=(ab7h821lAB#2quD`Km+qL&^ z)lQk-+_-t~!+nJX&fn*+{Pq9j=KtQ6-{$){-}cNdl!&TZynb1ta&x_s(y54-a~Lc# z8za7)&i3MR6JKw_yIJ}y*Z!+p9;sy1=f^pr)b=+X3^DsZ3hk)i5So1dh337R|Mx$*S#QOgx_sqDcF`xgyzc$~-d{Yv zy=YyOlG3Rd$%zaS6FgX+h>OSfH0+7X`0Mw!MnVa^BzN#(`0?O+xV*6}MRaU*-AN*`d*#8uFoj)o1yC zE`gqjFNM@!+&SRV@IS}VAzETX;d{aL0SR6jM|?~^wPYTzXMO(uR^Qjx!B?I(bg-q= zF+KQSxr62IM){e#mG`A>Thsr)>{a3VcT(S6#`2TGc~JFm?DPYc0}N_Rm)hq_eK@l2 z@QV9|3>)`(WZgT`cW6q5R8%eF=j(Zgs}8C#1ahU;F+FJe{Y**j*VLPZXYAjyd3B!b zK7ahm)6a^P-{!M@Y^o1m|9*AqL3<^oQ$mpw7$gq3I8+rR7n;1aZ@VS_UFp`<*|W?& zRT#H9oYr?-ZJ+db)|6grg;S+7=QBj?eYm&ai2vDTJ$82w|6F=>#&7ZI3s&qo^WJo6 z$)eEBU9Y1Lm-_xc{9t}Z$0jE+*8k1Cek={04DlJ^3*TnQX3e|byYJgO5ntgIXS%zl zpLr?XTib_gevt&5`#b33rP4N7gFe-e)p>6`L#cv_se{%E(Q5Z>$woaUoG*DrS;$YHaQd? z)XMnjs931l@??v@vcj#q-H&g7TkzDOH(bNOHEZG5>kA9z&DK5K;JZlW#2uCf+5h$% zf6i|BW%J=zPX5Uw8}D7IU$}^A|Me+<(vs^N*J{11d(>)g|5<3&?4r#RU0hslYKAxe zKd2?%@zi|pW|_*L*RA??oZM0n?r=hBf4KJTqra6_+}}^@@cVR-5-UD!((F{o&m8+$mFL>{@eZ_CNm(>JjIRAO2UA4WA#@zWsmN z?aA$y+jRs5Q^nO7;Xu! ztyvcQJYaYw?{;%WdHkw-%S5C8GgLOde>m@T)Sr84i+rZ;baxBB^SD}2dzDqUzQyLbnHpn9o0_pO!|Q9FA@M(4 zJ@($qIiwl5PxqgB_SK+#HilD)QJUgEw(_|D|M+vhUDV_6uLJ}Im$C>mq%U3c>T#>< z;^Q$&&7b}YGF^8nJk}7h;WAU%l{p_KG1%(L-s`D5d0d6zVnNEYzV(|{NeGqCxLW@| zTV6}bp6zqa$NiI>_Ftd$XG!SRvb+7cKQ9}f-}pjaP%u?jjp5uurj36VX1iN2Rm~5+ zATKC1eN#XJ*Ng@GH}AVSTW!Pcg-7rBBnm00uBM9|f7> zwR0LcA23fisBq^;#`~S?*&a1Bznj20&HZ-Ctee&>3k`4WzMppG&8DzUwn<_?3yx@L zO!eUKNSwD?c)hhl#nEYgypN`esR`8o{k#0bu9UVjjkcA))mQqSc0TfkYtO^tDIK%7 z*Zp-l#-+Bve(6)8R)M!>m#5tDlQo|2zB{t$_x9bFb=0&JZniXCi~Z)AmMwJp(3Y+( zFAUdTaoXNr{jJ*Vm+rC#A`j#*0+;Io;{3TyL$V-_}raQLJx%jl7bQ8bjMr zF)p1wIqz&*nCjE{EV9os=FYNA_`nk+^mS|b!ynUPGpwWD%YK^VrQ}Zg8yL_;aiH_w(J7R;B{-A_d-`?K3{tOq}_xm>o* z`WHLp`;M?qhWN!_Q<5CHZvQ@@w)xkY{n5*RMi=MiabL`ycbRW(^}U32YwC(#Np?3ZFg|K6q2A!LDg&8~xFP^s#6PRO?S9xHfxpr^4ho)t3h>+{9 zsy#Ouqxh~=v@%WZ^JG|5JgKtx&nd0rEPC6WPU@>RP5s9^Q7CxYx#Le%#b=ZiKFby3 zo!^w@;!|JrT3i3WkiVSY^n~M%aTXa(nIOb_``rM)BeS@lKM3eOh5&tG2{R9D@0UU=A~&+5$QTMRd!sq%*GIV*inf$Qvj z>t~mwTvhBZzHaEaB;EX9#rq1oL*~h?K`;6>d!GiKs@Z>CE83;{SHSmAb|&v_ANfko zDDhzun7j2%_mum83plxw%4aTp&3<22=gjdt*pRc-*5};* zk+SO9JkJg3FHcK1cYJ;3*vGZ-0?XsViRn!%FRE!sXJ1=(ro}(`%=**w95qZEcfXa& zZ>rjUg(Z3Ey~p3y?A`X5xAX){X5-}3K^tBxF70})%9pe0!0XZlIsDBXKhJHQ{XR~5 z&(Eo@+*`8ROJ<$zUv;vkJo?P{&8&=9n|8c%H4$+<(7RxR`k`BFE_TUG3Z~a$Rj0>n zDsnT>|6x}wQ@>v*X`6|)>;7GF4|b)!2$1y0bjC_-)U}ci|i2_gz>m&h}->$`BbZw=?AyuXr6VY~xro zT_xj_-l5Dd>!#+J_0Mm}&SU>Q>umlq@s9}-NAD(H@##*mNq?Z=#mV+x)BN!}{6hi@;imuln!ZZDb_>aqknG%;1u*^|>r%YUs94|CN_r zwEX$RZN}e^PmYQwoZ7@y_W!)A*VgQ{_SgR|-}^lzJbZuQ_0;^DzyAc>M4vCzx0m;` zk!P$fi}P&|GTWhVet#KfXZCiPs2*eXYT+M;%TAjgwD~lV__;6E^;q33eMemmGy?3EuNwQGGiykBWj>zEBy_qrhSWir9 z+#T`Pe!3=e=tht8_Iqo-uaCYMD&r8hgds?D#(Pgjrz)N))|^TPCuNG%X1(`SIuM?< zi1XcB@ntvmv{}wLZS$UIAItGe!m6!v3mw~pc@1UT+@@PTy5h_c&9#fq>xNt8+MTi7 zYo#BsRS6WlHR;)AdP0iDCH)Y~ffKLf#RN|9-^<9mtI{&#mK!1Zlbb#?U(=b6m{tvs$MZ#Y;t|7U2K<8I!x?R95l zruNNdi`H%V%q6hibpOjVmZZHMtW_66WDoyf<*CuwZusN-*(<#A=VnKk6}A@4>G#z9 zFSP9(Kkv-BVjCbGgw_Igu2bfQoDL;XGp90C{6F6bw<|nUzIVZ!xt-%W8R-Xt{f7OIxUR%&Qq4=8I@0kdS)A+eZO_F;I-?wI+^!Z z--{{#u~*B*L@B4x=_2>S+za=U-dV8qHb46ocsav{hb7+7Khv!LX0WG>m&46Y&W0@; zzC7Ds_T|3L9)$_wKdN;%hH3SrPduP##)@5tHwPsy;Z}A|tzf+_A=0g@U%>}OEi#{x{ zVd*_Q;nxJqGqO#q`;;Z#J89fH`;uF8vEdJY>*=F@J0=vfSY0}~gdtT#jp5SeRjZ$< z#>ZHOvVYDCa=Nd=nzq5?fxwLXa({2@KKuQ`b4z_s+8>-eW9zf@f~(;hK+_zvy`N0y z@n#6Ay<_s=-{I9a`i^|551yub;7RxS=WB8-kIegPzpvEX@6DF<|2M^y7Hv-T*X%UN z31Y~oiVb3@I2vR1t6iYr2g6c%HHJ&KE?MWFn|}FNe3#8n&C5Eqt25V&{oLy(dA#QE zVcFOfH#c#=b$=Z^f#pNngueon=W=&E-zB!+eEJFgnZl;`YtjW|lmA`S`TO}mY~vq+ zwD`SDOE0Vc+FNGQ^ycROW`DbWj`RP7FK*!V<9Z>ytZ;|C(|beSBeemGZp~g~Fzb3} z-zB@A{G<=A{}MmUm(&vPm@5Bcb!VRAy{}Fkvwgj*`Kp=cSX*m5yxo?yMRwg+zdtI| zUo}m$PZDY<3Vo)+koW6pMoV(}?9jUN2Vz^3z4m_mzwnXM{_A~i9dnJI{ovkxaYM5G z`G3NJSvMXs3+>&omvKS%nR99SEz@~!Fskw?%H=t4Sit>8)j_$Fv!Tc6d9^v4w|1J| z^g}G22@7VcF#k=Hgq~4?ZX?F)3fLKljd5y=)1^DhBRAG49b;gq+B(K7L$)3YHmDXn+;y59{eZ(Q47}XJ3^U(v z-OG639>a4bxz0uZp4MjEDVE4HxjA=jNjGQbzTSlUvOB&r+t%f42d+wWV_LB3RO1y; zyUg*>?MSgHQxoo4>$%5qPF}Hd(buU_dp;e{Eja7g(4n#S=A))v=S@D`-qXTxq)cP$ z+1-8Cr7yH!ICz$C@=pykOZqTBbk9A8;&i=or*r8(+JBwuZ)jar@m?Z@zC6S{jt5!f+4KSbC=g&gM~k>LOpN-)69^*wMZC{GOI& zf8F5)-j=DVmHV_$arrQ$%s<7N^wIra zR+I9lye0wpiBiUjscBnI)~2;H+*ru)_4fCrN}K`NN{iPo+WW%p&#$>}Ho8V?8<&}F zV^Cn~pRu%CI9t~s^Wx7LyJ{LE&-C~%c=$5=^`S=fd0(HksVbeS=$y&6>rB1>4C&nr zJI~&!WAsarPg*Eu@{TY04-;G65f%rr*}EPdt`zoC-+PqvM17dl>LpWt)~yd#^C%R0 zAhG3#j@x#drrma@4y~Iq)kwK&-I}WI$g94~3QZ2)D`{dpQ*m0TXRh_#_oj;lFKu~l z&}X~-?rTm5mnpR&GG5!9UoE~+wxZz2Ft9> zGy8u--e~`C&$y-8R?1IR8Tl3`9=AL4Yf|N=xNMC=hC_du{N7aZ_^*E+pnJ+{=Emlg zcYX*8|EWK(BYI=@!bMDHc78Jw>DB&ReKv#TMv{KnoBG=iAJ?t-$`f3)-#sbGTv5jI zg<|3@^`Z-MM{KTFe%(23?!3#K7VE2hXCDw=zxV%?N*Wdqbr%U?M{dEmOy3eY_TkgGzo%6u& zh)6a26CpK*q9bd6ExP~WkPUl%V%@*_#^pNZ>BVzw@kY1$^QU+N6^K32%NmDV3$^HQB%scF$CqceNI6|r#N4Av5_xck5U zGmp~TyLIcmqNHV}sIU9YTv1*BKl$5|CSfksb-$TE9%S6k`-yqsgOks#E4Tff_@jEa z&M$5;@6R^t|GCvq$a~NK#s2$~UmhQSDO%lob;8_sXJJ;6BB#kc6M^mh)dzpSe0P2M zy=|=;Up2S0PvVx!GpXCOysPZ)N1 z@WVeKBD=5E=JHpyH(M^OW$$13tu;lRanCMYeWzFc$@ku+Z>+Q3{Bw%wC40t#zkh`n zFo&jvu9w-7{btU~8I?zc-t#D@?tk{zz3|I<{YuARy$y~(946QZY*Ak)?6|E&M!2V4 z!S_R6^9L7$y!`L+-`SrtGwvyu<*3*%t{BI=j-CC{`g`hrY(J;ObUN5gRN3&BOMk-l z?zn>W@wGA9M{=DUzs7%87o3t^ZRm3L{eu6u?&Zss=NcW1x&3ZJ9MeMki4%AD#jt%3 zSm2Xx?D4|X{#sT3D#w>L$^RO+&tT_Uw0cLcF?Wg}I2Ek_T^{#C!tHtcm#od~|F@JB zFfQk|**ry+QD|$_zZAYB^Ifmrn(m|Bx!>~?*UR|~5xYNf-I$|ca4|Yjc!5t`RO88R zeUB{hL@)ns-rqK!wceAYKl8>KIvZvzobLSUJa^}Q1NL7|`>&hKy%|>$C!}!mFyoZ4wD?~vQ+}D4t-X0( zg(0>13!h}(KI4u)!~aQjwa=9HUjAz)F{|=uP|r+TaAQ#5HSgmG`SV@NlULtgUBo5b zae8v&UY|Kr%^9l|?9ab;%4h!OP-h@`q}?el;Jxj=|1)f>?JX1&rn5IyEef%iX;2XF zE4AX^J=QoQ1sT^f-cl}mSDo6nV$yUS4);B`*JZ|JKCP;^pJ1|JOY;ATx6bb0c6Nqc zdRf5v8H=BFbCj7YOgdk=)|j*Tzf93<>HpE|nHDKpZj>cf0Wfk*bFH0=E1Ds=kWF8w!m(}mf-@$}?2s7_*8GxLdl{+}%MJ-Zmq zBp1wUp1qwl@XEr+OYOu2eTsb;o^(W?e|7)oqWP~61?;R|n;Bi>$f+}R+eXLbQ#YwJ zyv=2;)pz-$UGbr|v@T!$V!@L9k|5C3?Ci6b-Yyd?-gJBN+CTQ+Z=Dv<(fLr#o5^A# zZ_$-}e$Nz*8Piyp5AGFTGduhCTf2w}^Euvd`xxX;+xz;@zi!)N`4XYVzY8}1bFnW^Tx63tG6q6#z%iV$3 zHZmTZXutQx*^gEci?ZwL8{~N^E<3XMHppw~e3-U3;ePZv<9>F3%h%`ie!9F&OnBvd z+hen_#EnF|i|^vrFHF;)xK2(#Fri&aMTogDKZ8;A^2*aw{taQ9fB&(XvQK#SHMOs;oo-H5Zq8Ff z#ho9?ZLSjM+jo23+PQ^4lX_;GAAWDTL@8@=ji(|O{p;+5z{|rLT*jj#7z;EVjjE_;Vnxdo}R>B16;pp?5%oxvt_!fCI?pB0(r8|##e#&)QUW3#WiH?%*N|$c-dQ9K@?&BnuZ*{j9H#l>)E#BX-pe&wo z&VA=q%OA4D9huRjW>TWQT!DM8T=Rb!!!r-+Cv?kSf4oPL(eM8RhIyQob4An``5br5 zKip~C|M2D4JLW;hJl4-Wva3|+x7Ipi`xWvtWN-YqZZ{`Bs;RQRlJ%39g{YRGpy~}d zhP*R;svVWioSx0(xXL_fHr`Psg+Y;#ENw0{ZH>e&TvHwS)>x>z*4YyHA$4VO22GFUI!qPNnMVg2(fdKn)z&)olMa&7%{ zyNO0lRjLeO`4;khKRP3Ky(wwl>b>0Wz?#+iAD1O4D=Aeu-_v33RAl;CaAmcoz{?j- z^LM&f?GoI2m}7>Bg}YT=-`TUzs&?zpf7oZr9(i>7tBdB5vr#MiJvG&T z?A`kE*t`4E-(}nm_w9`tMKzr{&%fUi5)2fR^x(SjlH;&!EXVfp%Imecb34Aa3VSy0c>O(V+2*`r z9{ZHOEA=g9^|LkPBr?pte|EMO2PIt*HHKfIAqzG3`~2tKvd@+4410u4<^~s`2Le)M zZ@iO)7z`~c1UhO3`S-0q_dZv}YI2DO1IL=m4@$xh|KHHjt6!{sQ>nl>T=(z`$;p4? z;+2$6rIr0?&^5_m`k&#ye!9ShlMVZ>@vUFhFn3|gUKYQ@tHl@GI4lF{CPg%iaNuZrR7Qsmc8(vJK>*r@n@~e=brtz>FB4%xb6MtZ!bNQy1DOg zhS$o@zP9bx-d>mdBmY?ryyAUY@TC0grLWIEwYhpbxwg)ze*08IBKXyJDPh6DzK>kI zZjbMMX|84FY~04zvNw)NaQ$?KY|c4KS#}eugiCDFXG!(XUi{mbqi?Nqe(;(1qTb%1 zP?^a2&p(R2@S~Bf^@QdBBRTIVD7ydr%eh3@T+I1!-`|Wor3Y4vPZseicj~$=@aDJN zyT1ALTt+a~7Ust+?y`JvmyY8?=M>0BIRvjO7-Wj71P z3;8dVCAyjZ>@B#eu4vd9%)0N?yuaJ`GR*oW;}s|5@Y;>zuWE_Oo$mO0t;nlvos*93 zmpx#myYc*`F};- z7WQPc&S~ImWL)>NURc3=_UZpKlmE*H3R$&nTQc?WIUk;X#Vz&+|2K5kt>bon{88`i zi|CePPV0AwRp!Vxw7sp~tH|iN`un0Uf}bVp*`jQ_db1<=TQ7C_b28{|c($-x;Yw^; z< zWBPuFthZbsZzg}}{emO^5Ao)>@BGr|1x_aPRCz7OV%32Upk{L0twbFuiPt;V!t zRw-j#YWIO_dAD1yIh)2M-gvlq@BAZW9)CU0-2SU`ZTleLz{eC_V%YSC6 z)rD<^|C#3`Fc{z4B$AxAH`AR_NomoRC%*O>!c4NUFE*ZJD7Lh`-0-$)R<|qb+b@v< zzG=6&AH3Lq@aX%qdygx)Tv}DM)K-n5sO3K=gMWQ2gZdKt{96yrIW)W5|1Y|EknjGg z>O%7;!f2}^dPtSHA^OVnSc8md$p*))V66!?fv!*<}`Nwm` ziUZRB<1Na*bgb7C6b!s{Q;MnV)xmuo;XW7Cn5$+*?S0blwr|!P;{eI!=W7gpFT5%o z@aQ_n@$v=PMP=8y5h``Uw15M?$2CkpLpx> zP*Ga+Cb^yYh83gW&mo1%w!Q#V=p@|0oMfacfGU!*71kmoJWeTx)$HFnIo)g;89I!oTmd zIy?!xQ=dHh{%sGFBKt3;uT{S3#IP=WZ?OHG{d9ZT@_&^xwtY%EabR|zn1YhhsfulN z4mL85@zu+x^SsE+`C7&GB;kESp2pVeTV&mK zS}hqI+`o^@;y2IY0+nTY`%lQce*WX*PXR%}pQp_1a`hWB!uzjVFIc{j)z&w+8R{k{Qd_+`<3)JNV*!&x>#mW%$*IY9WR;xuwThl*Biot<^$iPtmCuoE_%rDji^HN9_n$BLVCf+;_w{`7 z*$3*cMTZytu@@A)n0-Sjv@F6QzM8$tZ_9$;F4~83Wjk7xJ+%_1Udy?7z&XwNKYx^6 z)1e1?GL<{6mD|`2ewP4@K`Yy2uNdb;Gu5?AqrM@K&^x}3YNs;C5NKLj*- z@Jw8nw?5tBduQ7E=?!mnC)_P%E|KxN;{0m)!&mJ_Nfivj43JiUO-SVP;FBwv(mDSufFnpc*VA*s+2jW@!%VijEaVU z{VgT)TrzTat7c!yU!x0hfUz*cwK?x!URYuI&QwWY$5odD-Fr6|S)Ng2jN+4XzT3Tf z&yrUkR&s19R!?VBuwSCVxPbLqPDDbPn7zU2@HyTW_lIBiS@5SRGLF$9?7zB_l9ZKb zxALvauT`0Ly_#L5D0v}UN~qem_=(|xTArwPjpiu|yaqqc3(l1O!ymDg&+q!vs+re* zWe4o=@{;^gJ@-#ab&%aYmQ zlef>j_x_6M{>RH9D*kAXc6fy;Lq|u4hGmhKzw3E|{;)aO_7r?@-7>W_p=NUZ zK}nErKMOO=^Ez?V-1S+f!-v&Tk8Oia&CxrR`hC87nf!syxxa-sZ{Ug76|w6+7R&$e z<=4Xf+xv^0KM6CK-!tag_+Yxi5p~8$izQPhF+CPPbM(nk?uu{oJ32I6{buvLczJr? zEJiPFkBb>m67?q1-wo#MS#Fq>HCexu2~;>mPGZ<_%~5B^j(o4Ux_i&J9`W62=iFfX zJHMLo#yy6^_rt3`bH8f{``_`idfwwR3?@R8W;1MX{m){@vT%Q9)BlamwKESHE;cN_ z$|W-8>6d@49UU1*ZlpLY*)4vT*Z0M$e3$%U>qWJ-7xK)uy6>$NvR?2sY`veunM$F( zt;Yi{*&3zallb$zLx<}hd*r_fa*xFxJdS!%KgsD?iFoYo>{VsA^|r{ZlKj`Bed>?@ zgK}`q!TbB~J+o7FC%qXeT>n3dXMR|7|IRGqE7K<)WLTyX`=a;1_|DjpDIFar#N!wb zu9MRjOsHo2vTaM{W!|*wSDIE`H`%>f@uNY>1H+aoKBYPOSy56%~}rKKe|`mN9hX|dq&^m~>|Oiz#j5NtRqQTSyB{9gv@~yO*X%MM zU4{DOS?>IfJEJd}>@&_}WuD1!Lhz>SAN~~)?Fs)j{kY0;YW?il-mZOq!Wqf`<{cBe zl2gaISNE-Fg<~jx>-mK%cXhckYKFGSr-g@!I(O;MV1Az79`)t?rr7_v7x#bqxw*J@ zRUoKkk=D+1!*GLb@7fnDat*GZ?fBZVd2z)8*?#W3DYwl09lL$glIJ@{Mswdf)n@*$ zk+VT&qBJMN>Dg)@g!cM4*L!=%Xet(OF4}(WUfqWupKtG7@?wMLMroygg=g-6P8VZc z5+V`DlyEng@l9^ke#?-5vn>Poc1mc$XWY7`2CfsPdSK>!>D8o)Gl^-kYp{6I~fKMcXDad^q+uKC$ja z`7GwgtcN2zn+%uEDEw(8(x?6T_h(S`wD84x@e9{)y;Eh{qsSy1d(+Ux;icc^M*Uge z&bb|Vy8dExM75tWJE#dm-*A#|LSw?aP*q_{=3%CgWno91v8uF+<)vV zYOzQBwLaGim;D{=c{$&zZ)@!4v1Kf{yDXApmAq4Dwu0dkyWih>{$CO8Hb}c>Qt-fD zP%!YBH;*7kwKKC-pZS8{E}P4(AEyfjyfFNKGd0R~e?zx>fXP3Ns@X~Tzsh|Wo^;6g zGJJ{tvSMCO!@nkx9}60EK33QMd2lSrVq>zr)N1~!y^Gu2OJ_cK5&h!ie|<>fp?A~q z3rg?4-wki8`0!dS;eW?Y(Og%kw`af0(aaWc@>a!=LR{J<`|b8wwsf?(1!@ zzWduP#el81%NBiou<@a~?bLO~4{xQP+4oHR#tt>^t~CKx7T-Y?l$rJ0zX3 z&#``2e`Sm3jD1ChO|GnU^?WWaE>oPgsWs$E+&h>jXxdB(rR`FG z)Baz(dZA_3S$)Mj_e{@R4-))5U*6&L`ozbx`1YIk8r{D6UqE|x*V)b2XWsv&&S?2$ z=dU>l48mgb`ag<(R$$&~8LJ^EC^+|2*oD3?*SR*dGXK7H>!I7dJ^SKj746-)JIJ2T z{2#-jS|64aQ#FQrE3&Ixr}90W`l38@?S4(ubLY3JG`#(HzwU`eU;f?3i2VBn@$0T0 zNs4b-UEkK5-DY`~;pwK$zXij>ET2j5krMjPs(76L=h-DkW<*{#Ougx}{+GR=py0)X z_1CyE9Nm5Amb2+Lrwd3-;cyU5S}6W;_3zz25l0#fR~s-EEZg|f`~4M1Ti^J#TmFS} z>YUrE(qL};;9q#a|02^niT?Z@f7RrETj<^RDspZ8`4e-Me!hQG*Kj>QhC#KCX<-=8 z&hz_zZhqAHH16X5J(uRpk!D*y_a7(HncM5n%{cpzxFA&c$Dd^V;9~p z_)^=^YGy1rL096B`kb8>v8hwb_x%A=lefb5Z|^obKU0`t+w1)Y zdY^fJi!IJR@$?rn>(99D|2KVJHv4{+-`8J?r|iD1P!+hWW!Sxa!iMG&|7DxcDxRG; zullRV+;6kk3=Lmcs>=($2w-|>UZp+pMUjbVxHgCI#n(3v>|ei>_wBZfgk0w~G2Rp< zg=z!F0>9wPYcCg_^s3#+{a5yKLWJtm3;ud(i#*b&hl^ZLGj2CGZg}@4Yjf$f`;GDS zT93Y$1*TaRoBZ4UUEe|BNATt?Nh|Udni+fc7s#pUSj>0*-{CgPsMn`+#ivI_N0xkB zHmP%_^tvy{md$dAbMn-^9kVb=$Y{}&R}(I6^ShYa=X>{C>Y3tdpC#{gXaDv&u+I9- z!+ZO-+18Y1srrR&GyGoey>d5u-fZ(A$KF1PBbw|Ql1BBfl*Br^jJMr++*ik+RoFTRWQsN8N|`RwQP3)e5%-I-p+8uf?y+511buNg1wta!}gu;|r) z^RxNC9y`DN^J}4zgRG1flc3$ncrq`PJeue<)hhz@6YCmZMb~!%dCPu zXXp7&XIlHLL2B#vv+E7A>e{wt<%DD=_L*2^$(gTB`7(2H>3V7B>5peb7YcW<=dd~K z-sNy4VV7O3^$LrQeR_uOrJuAxRb+zh~sdfLY1p zXU{xjESs1ABI=yfgv=QX7SA8lH(YzP==j$=4U7L@4gK+Yju+F7nT&l`AN`p2w&N>L zdKyFZI=4TZ>-I^`zV_~O^=6IYJ&sHc+-q)r(98Il>|vOgv0f*@Xr;{MFg?e6E0Xqa zpRBR>%lw(!8+VDXIUI8)cjd*@yzMh>t7dcFx&2mTQ=Ec+i>>zk#O4acEqm7=o~l;C zKjV1p5htO%>70+aWgfCcmu}g~^6Ei+*NUIJ&*aYu$xJWo{MTW5?k=BZ_n$afC9in( zc6OPyuHkn%U3?!~9Zuu-I3uNSCAr}0d4ZR=I*-3Pbhtj!%Z}|o=i!X>3|+lCpYwu! z`>t*&Und;&?Dt+%<)eJjS@-HIei$=nR2O;t=lA*|9?9Qu?%GSx&Hx|7{uvMC-!rtC zW$aJ*qTyqDu>NC9VY>BohQMdiGB=n7GxeU`i&MRzG-ap9mW;-<8=F5$oqe|9W|myG zu-OClsIzf4N-{349xkOJ$E#wGY*w2f-?p^>#mjYz--$ZK9sJ8FICr8S4?jnF$)d%} zS$*WD%K^d7`+uv(6xz?){r$m9VDXW}9)Z`o!&YUdh*t7c8r4gR8CvGx}ux*@73*5BnLz2cSrZSDmg^(?dYGIYFnb93|mZ5|2fZ#he3R=ehV&%XZR zoQxKq?)TZcE1j;aJyiExU{!hg6Pu2k?VJq{+5fMP`m$n{($cu~rFp81Z$2!&wf6Sj zIPa>8!_y-88_wN&z4-H0X{`qx)n}Z&+deh<88mQmKVMw)Pe$zTVxA>A=@&aVKmFeG z>I;*sP)37W^Mnio$G@C!7df(BNSKw%+b5R0(MFcfOHlLQ|C`pr2X?Hg`d@#3ri$

?C*a_);R>(0NMz8$Q%Xu7{%HF@UHIwV=8%d{z4^V*$Ef)H`~TMFx&dz{%{=qu-prr1CMq-2)SmmjvwZ&j_q_X) z+TMK?UtoRJ|Mlaej)4qK3LFy?UbC?5z8DwWKCO0Y#^dve|LhuHvD{e1b~_eoo~Sy)+@FAe%vAQ*$LHrIctl7C4 zraw>pFt=RVf0z8na!JAcGp35@``?^pujUGr^1gK3@Vi3vjJ>npJ6q>P3@nZvjAl#=Ht*ZG-OnM^ zH(%OuvcbO?@e?PXpYK-`sghgGc9rS2aN38H%^VCH%l`2jJXbYV6j&C0!+ED+>aPDc zn*6VB&8v2}eN*Mv^}=pf`%`7_`ZolTZ50$&fAFJ! zj+*O#miUC8jogXi)<5RX%3-vfvN<^ZSb6PCrO;!qb7xNOE4tdeEWm1)+m;2d&&G&O z5w7{K1Pak3T+zY`H}1R&dz`1czKHjI-P4DBFCJVx<#*VA!B^!MFDpb>UpHgExv892 zLW$vsH^YWGKYJvl8sl>H759+PxP&1NRGF2uU3Z07kniMg zCI@@}|Lpy8FT?)GTP3c!eqCjWP)g3J5OdAj%jem9T-TgY`$vE2nPLiM6@gy+ep1>|P#$E0c;2Sf+l*uQ8g zTWi3%-V@P3viAJC zE(&crlEY<~X!x=+{bKlye?MdwxL4cCI0{VaH;{h#_G)Q{mZrOVuI-_1{@dSkv%PyS z;ZPy8@I%p*t<$^~9;i@YI^Zx*t3H6mW2y&(bZf}JXK7omn|)cXkzoG2bib>?WA%vQ z!r9latNiGWV|;Mh-~Y&h55ap1V+1Zv-g@lCWd9>e=G^2+;rsL}s>P+*hhJLjt=r<> zxqr3xNq+wz8_Be^>*s5s--!)j!Vb@OuV1ald0U)s!sfPPmW-bj?%T(=T@&J%aA?Be z(@gi7glg4}Ft^M8=ZiKd$e$@KnNVE(`{t@_1&aWU4}vY1<{#Hu?#RV@jH~cpwd9Qr zpQZ>i-dWU8x{l+*`b7vb5e(>IKNf+~hJg&tiw!WriJg&Rvyx^{F z@|gRLskTw3N+QbtLzP97`Hh;BZFg1QOkutIXmj)No;9*2St$XZza6Q*Vqhk+RJK<@ zI7iDN+0GN)~7&l-qYPHEnaaY`)Q?eDM`#0lozVUl-4OA@$8$YafJ`c>UNX!0%UoZjSu5FXCn_YSp%4i4Qii1s-kNelZ}V=)uC8 zC9L|#CdX^Dd!*(&|GMBLb=}C(SokymGgn+sDLJeQ3qinHlxpFRv2za_VVmeE8;R zT0w!v-E-y7%eP*88Q1SF5wYfQ=*<11rPgKg6$_^QofESrX3M{V^E3Z*E#2B~xJBLN z@Xg2bPqYP!txt~3@tJpu`?}_=0;ct)hkwqKS~c}f@S%x?(Hz^h?LM|sl=+TWQ{Vi} zH%@Hhtl{Rf?O6BWbj7|6M_&u7@+mP?y!|7uaMh(@-LbSOdv{9C{o4Dta%PZ5G4nFf zJw2-4E`PiWMfBq9xEIuO^)8mSn)H3Xk%W<=SxfHK3s(Pji+_49%d#~z^G#6ZiWhld zYgwl+cAisvF#BA^$unHvF9ct(dL*{Y=~3|Br3e1LXx(+wZm;O+qI&6x3wO;Z`R2oO zu{k5dO-juoV7bO3ow~g%_xwx!$bFMz^29x?eA9O^9a^}-slk^$LvyW5v8QB{?%Kbv zAIsjqDAbenKyy=D`EUD0%U;W7N>`X1`T72+z1e(irX`QnSbrs6Drb45c{?bswQKu5 zNB{KnDf&s58?UU+(Z1WTbo$$Gzb3KdZxm$ccVb=l@-%-sk93!?U6ECryn5w-&vwIY zhdj75V~^bz(O7zqHF0;^bNiH#$1@gYMDKU-WDPu6{=~-P<-*4=Z|`xww{T&5g{@p- z!pi$Q*+pk>t5Nt9W!v`U;r&Cx;$>f6w{~8+Svf^grY|watk>`Ij7I`#8#c~7df)%C z?1gLM5-WMyHae>27O;p*FS>pCUgNe?QsEpgax%(Zv;7chuWhouV3XeTaQTHjn`169 z@wIa>)D`{XpD@{7dG5kz_CHR)SE(*%m|YgKKbwEm{kspZ?eCl<7q{e{yFv2CEo?ry zB1PeUrvCr^aq-^;e*T9y7H=}Fs}c)w`1DVB9>2w(t}|l$M7M2l{OuQ!y#DgKSx-yi zJyg=x8L6`vy%6;M!7@dp!drD#*Xe+NX?AliRQp{Evv}qmv2%mPxBa~#*Q`!SNQNDD zW|W$oW^nZ4iAPI|b}9PQ`-@EQU~D{b_HORl70;@-TzT*0AkP28*OS{qNQvP`Aj5_| z*OdfL-dDP?O?7K5qty2|-TR((Y+(~gU~OpC-v0T}{Msk;gCuN!R`^(D%Uv>hxifVE8eY&i=L7f2qjy40yi#YxZ$A9hR9EzFFx%^Zx3y2_ zubaG8es)Ez_^RW&2Y<23&CUDL#dP?_$LIOSK3mmr^=sV@%xY_!d9dI2(b001obQa8 zOD7B6xYAG%ZhmW3R+Tc-E2&y7mK#4Gze)Q1;XKEz)C#iz&K&>3Xh#+Xd+Yz~779!s z9P&dvb(kW4@7ude>}h_UTX}T#7X9RCW;@oapKWzwL*9QiHU|R4b@(& zd=o$V`@88e0c-o*KjEtyu1P1n@Llq7?S^CfX0Bb8>bmYzwyTn32jh}wYnK-DyfD1? zXY(GpUIT+0hq9~xzc<~^d%IfTU)zLzOsnjwhpr31%-8ucUzv-+?92a_;`2u)Y&>~4R{5dAZq3EbBHundzkcIn zeQ4%XdoAIsuf~$Hn5E;{r~PMG5@%hMNap6z@+|b!;^ScCbya{}|?eGYiZ4ev=`& z*W&+Pm3a&a8tj zEer?#{p;`)E<9vu>2Z3BMwEZz>uKWa+15_v57Pf^^k@4#y{*d?#AQ2oX>dF3v9#=W zLCfqlWx|Mom2gAjZdn{?v ziz4^9pLw|2p08zM)XS3f$2DC})+sJnx`)fR+FKwetF^F3wDkQ4+il!lwk>9xWnKqN z-{Z>U%J4$9F!$```DVg%d46%;-yH9IZHq&6!j_FIcFh0Eu%aja#q1f8ABvn@&vFJ9 zdoU{0o=A|XFXMCbvAXv9<5InpCY$Bmq95v)T(#0>*z-B^_9FL_M?_le4ASRX`dWUG zux{MESFT$iKIg}NTSiNZ_FFBCe}zN(cc0#!$H2@m@l;&n!e(Q`V;5(f;y+W&bGFuB zz(7J(kg2oX^i^&}es-kltZ&nlZd{V8otIye(Qc@}+m)%&e8Z*%w_h_Jl@nwTy7|-o zz@6u3ROSVG|A>p7vPQ|_|7*q@SCYPlTYT|d6BF^~>sOAC&*NDbq~GNq{--|AjN8gL zr;YLGj-7wc{`r1`Cn$UCA#dfjRY{y5#am8nTzL86;}>k(;_GIev20+v5P832Qh2=k zir3EGOAXg6KB!?my>88ysvhQJ?JSJWC2EB^9b>Il+fDnZkpMaH`?yO zo|09!Zrwdz(>U8c$LmH>jl|t^!Y8j91z3#%)HN ze7Y_S9%9e`Gla1yT#)68IFcRrX{*`dzh4>dy>Yi?aGuI>!FNX3hOi*UNwb?-7_ymV zjI*uOKD6IpW^ORN`{$nc=lF+}MpdQT7wYcT3wwKV+Y7Fybb*zZ=Pm!-yU@KN(E8}> zha4XdzI^HU(%yUr>lMCZyxBDZ%CqE@lr665cFBI8-izZmq*n(TUGuVBA?M(4@|EF^?dMX964@}lJ5NDL<*@?efo*?h z*WA1LE?u!sV)eAo=T->0l&nRDvK zoa3j?MhEUM{=Wa;Vn@aQ2U2s+T(HywrNDNtf^6lgAwSq$gN%{VKVXX5{&o z;r^qRLoe2>bv`^#XiNBY*UUG^8JiVM)~2&RGVhe;RXA6#e^Q;{hI6Ck>K7qX-O5#0 zb0l1ET2;Pnx06H2SB9M1{;l^LKP0a?k^B8uRm+bL^B5GC|1UfyVI-x?bz_BxEwB4t zlPr-_*YyKVM$hpQsA-!0fB6f>dl&XGoM4*XbLFj$)759?{D~hVqUXHXA7J~?+%uNP zKy8B6@6uCmGLA*ax@`-zP-d{2%=7Gnz1(53!vbakOY}GNbCiEyuy)fe({H&c4fav& zYE>o;91NZ>|Hvoo=Wt;BCAo%ULW|OJU&akz8E$32Ueqn16nuK$!|euZA4qz#didQF zW?<`;X`Fm+`sM#O9!D)M^?JEq+S$K-YgGJ)$}3)`^^Ot_6^G~lwuyD%vt6^r?&j-< z92<{YIsX2)^WlZu33rkjn)fxOiZAywJP_fqro8DU>dU|6V(p*1$3r*Gt@$)7 zp__49{*5^-ko89Z4%l42MgSg&|KPMgz}{QO)Km&$dS4_wJU5>ijODl`{dz09}L zH`=~Gt?bX_>OfJJ`IA6ZyHMDD(@9(trj%^oy7XYwn z=vDqKzx2#CPm^OW50%sjpAVaL?#cIS+oWyWyh|FM?~rAVx_u#sn|0b0#VZ$IHaj)` zUd(7>+q0nZ%Ky1cM}EFnWxaOt=#up37i{KPmVZ8EYJc<4{M?5Ze#N@3xEaMD+@)mX z5yUu2DxASXepcnB&gZo(&i#__zg7szCpW$MA^vIJ?>&uCQ#rTV{_pnc^5<;gFIdgs zt>qAuaO)yy!^jbSvbAfpm_dj^tOfT7JMkMzj&bR?bnEDyRDY; z++l3Ia`Uw2=3JFyD+SWD7j6D2Yj<2DWwWU*pU0tT(VPvJg`KKPb)|A@8+KK_f6XlM zZ@!VL&3`!u>v>14uKd)Na+vc!E-0sVi_(FYC1SVPziU3=dGVwxh0Dxz@t?Id;UYaU zo~#~WQ+5@lemrvd**ufHsA<=eJuNEqi+=?7nnmPKiJB{TEPJ`dsxsGgMSJ9CD{!={ zS@#<;&HSRv8g;1eWWoC5%18Q^?fo6F@#EXW7FOH#1|~@M?BvugiryoaZDjmk)GIsx z@QMiwgFPO{xR&UNJo^}*u&8Yb7mvxpb9!5*h3=4Lt_hM~Fjuy_^o8Mmw^{dkL~s8M z*eRgIAfs@Uh2c$pzg3H!TjH+S`)zesx-fiuINSSl;Lc3$LkBfZ6?kYl1TDI>Z{N0x zQ$L^2GpTr!vHtiZ0|6g#$u}E+{^eMa&d$Ce^>BLV>?hy3ostal=Ssf+a$)^~!ljb} zo-SFqdLyUm>-cindCp0PB^~cO+&i>&WyX^#rirH_8wJl9%o5?dEy8HkE^m9=Vg8D# zl6osGn46>J7cAxVt@ggKXT8kAb?g4NSI>KRV8&b<{`Zd$+VoznUTit9$54r3$){Zv z4lD+IcMpI2dnZLmYpq7y=3Mqy8@J{-VX- z3Nrs~Q;-Z(H2ypL$7xmGxPJ4m3R5?;H9NZ;|6sm+;-ccpWZV8&K50#Zs8?)9jFC^#2n{&TU9JTjk^)S1#@&D$%6@SjWR9B6>+bxllBUi6k|HoHyt6OTqVe9#! zyqAvo3kXT?zWDyklGcvrVU?sXKXB;Iwz%~+xNKS z6vxLNiOUwhsEIabXo>veE~&1|_PASj*3F=>#$$_;N=!|wXNx(go$0&gX7Nn!3r`hi z_PxGk`H}X5j0#uh{$~aaFg#3t!M#WAug*=EhHta1LiS93Uv{=r!jsiQ>&g`S5D|X+ zcRMEUk?Z(xkh|e(riblu??>D(qux%+`qwleCS||V;Y(3x`zxJ)^KF@CutMd*iBblg zHiuuTOJ1*keA0XM9=Y`wy4Olyxa7KcZk|uL)N{!Tmbacg((;+0)KqwA8S4h+gy%lN zo|*ZtdeSo)|8#e*x~Wq;<@#gxjZC7<(Fy@941x^zj*BuLyF6Xfq1^eU@E$q;H5;7b z53jRbac`IHt!oXY7tZm{*!S5|@Pe>(>8tptZuWkex=GiWKeFx>s?eR?{{IT&R<#Sg zUzLxo>iWt(#h>d6N0UHy(X|VmcMbSAZT^^f(%r8H)ZUS8nDO`F=MCgM7-T#ZxSccyx_iytiDN403ltH1jj}+foMXSYLuVEvu;fL}&y?g>3-YE)wA_*|c%w%=){a&)Gk z<}PPP|1VWG8xJk}J7xdIlYeC_m(6~=EPnCkr+jPnIw~y|7BS844PLX*|5KF$GjD!Q z*~aYT<@MZ-Yh9({ByROBG8ccfu5SMh1rE+u-tVt1+twvYzex9bX&Be<-XT}LC~$kO zde%144_5Uov#%+%Fx>6l^5AX7BQ5@-zSfSL_X8DdSb}|K*sU_Dol<+n_(#0j$33!( zCaDEqw|+C{WnQi`sBJf8ilWGtOvbq0VvAi^YxFC-NpC zoNMzAd^$Z(Tv_d)LeS-TOA{F%v@kr3`SZec=DowI8b1oY4JRb;oInz{)q_ zh9bH)^^N_T^gnandvCvp^SG1eEQk6Ht&Fq3PhFJh&slZr*5VVAeXM2kRuyUdk$YPq z@;dCw$1K^!jU5aM=j!jj5M{jbec{>fH|!+deXU4xEYG&qx_9eJ``%9zN#G)AcNS(j z*uFv8@U^8?wB#?_dUN%exBf2?y5_l2UAmNYcVFDqI}>!Rz7<>iung0iBC^4y{rQJT z{RTWe+NWpI&)m>+wGWUoS8L@s@O$yv>A^cc=C^xBqQuwy?TDJ z_ta(8B3}wY3BPaKsjMk`Hy+f@DGRCkEV;jRCTsT6t${*?3(_2{mhDJtSjd{9%)Df4 zLWqT}ZHDgp66dyN-+7{(TgqbW4*jrv^)hwM{d@gNDM}1ql=`Aob|^VC{F}Z1kJ@dH z=Dl+M^&54IUvGQw^7q_b1HYEMNxC;yW{O^7{@hP;~ zZH8lpa<6Pn%cE_dq zFRHu;9z8SO*EiuG+q|7Q%daPkKVq0TYqym0M7Q9Z_x{ef^u@5wq@71CW9{WVa&d<9L-wuHrKl-{8iMc-lVo`3WFfS5xc&=%VD!0A6hVf!}^UH zlDj6hSXl*bOf5T`(&2kotpLQonJ_6Rc}2R)-~^9=av7n(q%I5o{E1HazS5fk+_xd zhQ%*7uk!8s#n~jFoo18n$1Cw`Et8$9E2D6K->s_c(he(D_ov45Y;}65E^(*OUT$|- z*3l&lpy8hH22#mRGjbm+<2ZA@WoC_h&m_xwk&X+OFLoYVv^PUf@9V162fsBL*T(8U ztpEPSaAG72L*c*Q=g*{{(R@?(r^!Sw$zE$AKi3Jv75BGFZ@pc%gDJk{gUyoT6K4La zwfXimZT)&z3#%+pRhG16=VgJsZ?zJ04DasIoG#saU1X(rPf-4;%>4=+g~|1S4*zQQ z8_hWWuR(;>MVFqD*+ohlJ3agNuyTE>f;Io!tzYF_m~RNkhjJeOBjrtyH`%2`MIb_QCBSnshj@0XTD#(bW`~+`Euvkd%KD%IP00b z{J&Q@$R9g!WA=*1=_}8At(@-5P`_Ajt9#LJR!0erH=Gaq7-|DGfALx~s#n>{DH^?b zney~@v_tK?7(ce-7aWc#9-TOfCzLtQm%*AoYU zS8rS{-xD%h+VHkF!L_r>Lg3Uw#?q8*yM? zh?6_t&0Ut;OcTnZtDpFrz0zG$8sEIMd&#uE^M$MpZ){F+q+HmZz#VmfpLPA6OPkKN z1)O01v-;Yr{Fh#PXV(i#Eu12e+@!#xaZOUR`$v8`m$K`y|g@WD{QaRbjpRbMrSZ z_xCcbxF7mr*@FrJUV*lS<_1Qw8cB1@@?A&y_UX(Vkbxvv2uUxmRB+TJ|OO&YY!t z`_6|acB0HR|7RwC`#bOP+LvK#Vj`Y=E#ZnFkg2Vh2Rbq1&@8}b8h=3|2jd5NG8IkDvj@{M*BPVhdnNS(nU>o zSKQemsrz*5#U)H34Ri99@*i>+&Hp*QIq%$?bl+)eza;A`FFJ&5F*z2IxzaKF&9n3Q zlY(BCO1!t|Tcvv>Kc`u;g<7 zhnxjGH~b#`k#~^UykmlU<4nmfhH>)mo|XUD;v&Xq^;$aMeD@)SWjO!n2w`Zroeh%eyA$`TeM5lWm#qxh_(1{OtiJ;>|lQ>vJ^S zKY4DkaB17lc8>TUFTcM+jKW+Ci!R^J(9`UFbduxKyss+x@!dyf2=X1RKFZ8#$?{9( zzCO2!!BKh5srQnV8Kl08EWYW+?4ot(tMn_jng1W_zdJH-TFsMs<42#Koou)GU#Qy8 zwE6N&ra10*Pv37^C=|@H;bL*`#brzrUOp-PP$p5TANHgx|G6_?Ww2j#ZdBh@xqD)F2ZzF!i6_?wJi8EPCC6vCN~D&nrFiPGB`Gh2@5%S{vaMKG zc)O?cn(2;nM-TihisreH^Kk2LJ(hNx{;lG?Teuz?yD)T^e~w?cr7f+damr82{kNB^ zt>O^iD_gAfE2JSdVBzYGZ%*-kSmd~(z=f~gdDBGe-<3T|&czx%pG7nDtUpKo(NC_t zyG=Tht$uw)&?oG`p*UQCbuoh{mZ2KYPAAK zr?1e{UrV{RsU{q4tJyNm{pJ2>L5Iu1f4s^QeujVR6x5ZO`1dOl8)IbKhr+rCliePc z{F}Z}%Id+_4>nc)7cO6HJa)JGV$7!VrFv{%rr!>0TyTG(^5?`gdsiHMz5TFt%3CRp zoRok9o7g2Lf0-^Uudtn$(P<~jz?VPA|5N?`?y20;d-w4@O!$?u<(64Qbz`DhbDI_4 zF^iUo90@&5TmmN^+UF^=hPYR$&2r{zI&4yEmAcBi>pN%Dge@O-S)>b`d<_zEpN1)j~+Xl=jAZv%Le9;GPg~)C;kjC>sHkL!l^X(v&^v)!LxzKdCBk z?N^oc$Ax+Sda-UOwJ^EMvv}U2t~-r+oJul{Q*KwVI0_^k{d086HG};68S@XWT$yo3 zUFh49jY)^quK(GzQ(!1M`m^BIkN@aTMz#H^MSMB zoR4Pr8G&8Vw*%sLNUu$OT2RIIWzUNCyZ`ootlr0BnrxQ%msRu0j1C5a3pchbNIbiR z!^J)@O8)uRibV_KS2DDiFF15P;iqV8TzvZnyOmq+ax^I%k&%9O-L`Gt8NY{jFZ^Oz ze_UBcayC=IM#KBQoG;kh~xLU7{WLN&BsB@r-Xx%#250&HprWFf=J}`~~+>b3}BN7O6(5rp<_7 z_2A2w1x3kqTU>kZ9T%_`IKlq%c7XA>&^7T2UvpbtMEF?!mXTUoZ7^GA*93Xbl_HFB z<`=JCc(IK;XZ@;9n=?D)_s{$vf3Wz6TnXPl<9YvUHeY}5S|iAKz&oe$>lTB&AjVy$ zg02j+xh`y|=FeK}&8pFSDc=3w()y{tFUYI>J*LFbWFR2J@mW~#!2d0wp}SWyJY4rr z?w4fKMeBtdC9b|bpZIsHWy=LSKI^ zzv};TFMn;Xcoby$P$21eqaKsuti_Jvo1T8t{AV%s{r1E-eqF!o-S57YnTUw(oNJwP z>m0+w12eWe?2z?Zd%WxPraxl~-{W4C=nYBn>;?VxgrR`O=^E?!e?~t{5wN3nh zh2Zr4mF!FQx9#!XURf)$SA9wnfSN*j+!WP;6=h&R(XIU1%^b^>}w$ym9oWIHq z5!q;;?R!^Q9ZH{NaQ^Y{iH5)IKOSinY!l$v=)%I_D9~b&pv>6B7n_*Pq_L9of%l=< z*cCPt&P!-l-DdgMyZ!q71y#4%*2F6<>~ngf7zFA}_9!gVZuOVC@chQn)6eT4(ik4%%5p_2|7v)#EU&;|`QsAh2+}z6O%JM;dubYpZw4tHRi`Th^ z+os-~zWajV56d-wlP1kk;;Kver#qj7}xf7k?1#J<|DPV^Yl9Z?btU zekq6M^lm!XZ8Lk_ad30QeU%bZg93+>%toaH6V!GE-Tt?~Mfirs^wR6@5r>!NJ=ZgN zb3@eE?(xL9n^Kmc7hcu9aO6*XDgJuzzA(j`FLh-k-i0jR)LX0AXm>dKTukqi4z3L= zt#U=Du6X`aYRgt@HZ|1++btF}TQA70P7-4mVLb3YMc+J9WWjvr$BSHq7^|$T?(|vB z-C8=)_F@40`Q`sz0zWgK*ss``m8-(XxnGf^N#TdAd49Rjz6T9;uf*O92_6W)A#iNf zpY0dJL^HD&+g&{8cf*V2%6Y@mY{h9ho(}9z9wyK9mu;D4X=2A~al2vP0e;;F*1vza ztQU2#v2XVEU7>xWweQs{iSDxYqyHw=EA-qBw0|cbQGc-Esp1#;!hga{N~X1vb5~t@ zxvoWsvBGX!SjeY;J0%|`ESYGzg_kYTzUc=1zH#to;!NImvo-b&7RR| zHe)i6deKRj^jc;u^Bkx0=xCX^yDgQwYh{6wVWb)D?X$-&0{z+CFl&)vOipWP0;yN~bndd~@#I!q3S9G0Zn z_GSh=i~F~@cGC0Z->N)n54t_OvS)Yi^T%@G3%Z}o{L^CpVb3qYuqWH9Yh_ou9n$;P zq`=X6>}jQl#)U728NW28AEv9GVw=wuaro#n@n~l?yWHb98XNQ;#+S&~|Fj6x%lYza zR_m2R*SJ=!K3urx-<;!h52sH#^s^?|FW>^>`r~4}YH!~7bKbCY&}953zQV}jS^5jf zFD%z;PCobRw)oF^Jn7Qq=ND{PcSY~sY9n;mZNuA=)Aw(^aC`33vQSE+*!Gjyx~acQ z69gF@1XvOk6fYUiUns-8YjXGlR!-qp)0t)joY2j>lHqUkNHi*kyE}7DOVIa(TiawO z2`TVcxMaP{>M7}X_UX85)XftNDU6+=t$V%)*?4dogz&F@=X`v@{p7cZTaA_b$<_SzX`e z5TD{)BUdf0EUfE#(wFnbUiRMV?uR@s(;1q>zODbyH1%Kc|1u5%Muo&g>BMg`R@!S` z*yR?uDV=ebwhZ6;Q+CUgX|CJKy&N6?%~%7 zEpbg}&#qHUe$8|wkY&TeBUAqzJ^X^xt|v5ptw3|^2d>%kwwO8y=R`HA?V54-=FcUC zK1xg3Z^S&gwux)IcSH1P<$Ic-Vd^z*bF~5 z1Q>ToN!<-;nAeg0@`72wgViT?mvmphK0)ipzce8hM~}2k(`Oq_X_Gd6aXa8w#QNjP z2TEnEUcCz3`ZL#jyWzQ#gA4yRo0T_znH@1vx}S-q>4JGj$Te;go4vxHMJ`VFd~7_+ zpmlD)V;uk5{KM+uJ67x8XzaUXHKB8}f1bdj|9hAY)i2IFl=i;_6jqui79YszWlfy% z`^Mk-@4g?JTeiks0k#c26SqI?m$ZS9N9{^GUz%&(VPfjjw=Hi6M08xMO%;5m;@+sp+*>nYA8)l^ zRR5nj9yaqW6qy`0C3KgYnOt&hdy)QU?fbXPv)#gXYRbP2y$UMJRJZ(Mn->3V(VhJt zk6$;RsKDX0D&aOuS>Mr`rDy6lzpq>uW_9+p;Zmz_CX2VOIrElB;GI;5N$q8}7p4Vg zY9%iJF_W8A<8iQh4Rg?Khsifi{%uj(b%h~4yZK@rzvni~le((EF9htEJ$KSMi~nZP zXMEm2aeaJz#p{^Yxw9P#=S||xmS=IlytHpoe8yV;4^=kqhpqmHv2^6ze`5J$#a0jQ z`2N)JYZbM;C;Qfm=Q|3tOi40)DY-d=&E&2doA_rp`y;Ovms)L;cJR*B%-Sx>Gl7GF z{n(q9AbtgbQ-?3P3h^rZV2+!=X;WrSRogEO%V$QuKP*ht4jeCKTGMeoFt~YFlPrgs znd^<^HjnOKyR9~1j`ak?D$RL6O7?`dA68&;Ff#fndP?S+L-!B4eaumy*#`GRZU1kZ zG#tC@D!A<71YNlTZk~TFqC4$8mwWoTFbJ?Xeh^)<%-;97)(Yv0$9n>^YkRIMdzIP< zFn-(4z2zdqxqMYAhY#XQ&PBN&wzis>EE4O)HvcKR`sb*p=U1rS*4nU>^{aK+4)w{* z7qm9aQvYCUkSuqo%m3KkjuZQpm>f1u+T7Mw^7TS*jsN{)zYj;OKVGboqj;c;SNiUu z2Ej@E$75Qja&zz5*OuZ2YEH1oC%tBBX@B6|_9ASpp|xTaqq^Z;xj z7JT!l_1ESX*G_MEHOb2G9jkrew<6;mvB}GrceU`I>dxU6)~FZb*|L^Nn!Ec#Ow5~Q z>_64ZkO)=KVboyL1iz$#Yw-rd1p`xc~FI67Jiq|K7^Ev`njAx}q-Kd&%du z?dEr?6R!9#an1W904humEV!qXQ;&&rlt@ZXH-32d>!~)i=;cci z!xR5>SKpc?w?xiet=?mZrk0xc{F=e*N0R*245cfJ2S-+#Iu`8zbCSL!cYAr>|7fkeX`&zS7KNqb+fWWi8W_0XN~92Eo|+gcXE#S)*kFT z@l0}I=lnmiDdIM&N#$?ARidKfjyb)r*0!a+DEU=>FIfL-RR5A;+65q%wag@?_uAb7f+U-!$XPn#-AcgbyvBx@i56wXF-@M&65v z=y>)>$YP;|pCWTz;b*Q1h0_18l|NEu>R^~qB(QSk>I|#*_TLYdJq`G`Ml|JiL0I0I za_b_OipF|(kNDPfz1z>fnyN_ei)dhV6lmFJT&>$%wo7xm`TzXS+b{pU)24m%WnQ-P z-ED6(R!$wKzB zJNvPFAJ=+c!#6M6O66vKpL*!XXOWKu60ZvUy+R&*=UBG4%T#=O<==T6hZGfqE{9)~ zu$b|li!p7#z=MsKla5+zKf3zP3cm39Dtz-`;FKcGs1oygG2neSw~Jt;e$N-IQ;0et)X7^Feft z21~^9Bj0q^Yv1TQx9gXM+m{b9t@jR{{@(v{`kofi>Bk*RMHm&XZe+E1J?lg2;~DXp zOF?CQyV8w2Jzc!g7w!rLzLa7=Rmst}Z|e6gjJf+KpXp#w;AoogV8>gg^rUHl&)j%p zPVx7Ceaz{wDftjz)alcAf{*;zE@7?n&1GYUyl1h&q2r^YHrH18_~yc$9VW47`%^q89$-ASO(Hwf z_3*j58SB^dly`4joG3gizVTYUi~FtYAbE!mrt(5e4-#D(&PL|l+s@znQIF4K*_`#C z%l^Gu`ND-kkfEjdWL(}c3E%D7t*$W}ijBQ}P@r&WqHTH^<=Ihv4={4Gyd)cFN9mo_FY0 zx6+K+kN$ACr+vHp?1#Zc{h!nJ`e@F5_O-&UgZKaTyTv(H4laR3DfgT#{+QZq&e(qa z`h*u9hM)*L;uD?Qw!3m`+rEQrUs(TK@K}F*idTg5@~wMhc&*F7USs{Br+OgC-`C4A zf^+gW@f8>JG(|LiNGX|q)$H+=cA0P1wl0Y4IZw%P;q4X)wYIOeiSL;Ic-pn(fRoq1 zd2ivXW6`hM)<4loiGicN@%gzkp(b|=UzFSA>oIKkR^=goM2u<8oec+dc_bKZ4W8+3 z3BBJcp8qW<)V~7UMDQrPA#mc<;=-4VHElex-dyRKFBWcM=HdA>Z}IAdj9;zG7j52V z)_3*j?=H^Gn>TWM={h^;yFa~=v?g94&{fS*B0y~Nyi%*)a;G0#)Uzda-@Ln4cO6GU z@$|>$?JFDWuj^m1dc*H7&UoafcpuaG*_oSPwWXu?h73=_#>)Ze%e9|uoi@$w)fN|r zcvn!WvYX)E_=cf&p3E+BulY~D7T9$N^DHuY)YPy|SK(ia;>+z11XpGX>w>G|B~sTE z7}PAg?9`nO97y8s-WnFNVB-dZdzMFQ+kMonWq!W#uw|94le=6VmT*#N{b3Q7haWyj znN59h#H7{RW2H9FnVh)8Mr@D5Z&%5MoyfkmS$&=?(=P?44hDrUy=$t^F4*$8U@FsJ z{`H?9@0B~xp1Hnnl|lmV6iA=1Qa~2s2rYRLrjB(N%v=IqK8)knzPZuz$iZW7CU0)F z_RW%7znf)GzazUzZUXbiz!hJn8|D_zb%cSlyBHogGZhYcEtV^VxQ8 z@eyQVxu3jy-VBDbiv)C&PJatpo2z~0$2NP_N{0*|d_D>6dKZw&>H^?E*QOFMm(YiFU}{$G-TV&dThG%E#s^a5P=$*4<*-du%qt zxpI@(WBq5YA7I%Z%I~N4=H-4}o{YteyQHLR0~9_qHw!B|caFe?pgl+ z1->=6=imC7^?beU!8e<(o?-W45ny!a=*wLFLPgZ<`zP5itQz%i-hO*>f7z8Qxwpk4 zb9qzao_kh^PK)1o{B^d62{_XT@U?lIjqROy*S19M_RQ%Y{61>lo9}-6YyC8rUkP*A+t(ROahrU3vE#4N zZM6+6PnO16y?*uRirR-}r325S9)CZ_>B;~8{pI-!FIU9=-)m%XS$|^P!gUI(KAZ0} zW&G9ml5M5+-JOcMxypyc>q{I3SPsqyE#i@NJmZjm@PNKlt7MRYf!&SC{ohV`nTWnE zb5^Vs<$b^>Ap2+j+27r)`#N4FpI%zK;6e0_i!*~hL&ru)ZV|J01*f6nkWbn1#*dv3nv6JTV` znH|$Ay7OmTzx_mT^V-ou%aT8+>NkharOYpd$1hBudT3^s!99J&7Ek7hw`CVpo|oGa zHs!az)B)MWFI$3c-+XbZ*(^JONww&g(vNA(Yne^=`E;#oJE*hv@#Oz+wsGDGY}mGG zlZEJa6J7;XrG^XncXml0`RsVnpV9W*>yHs@IO2Z4+nu4O*{3k~Sj*4!{|uMxAJwk7 z`#Rf01QKh%_@pmiets$AX@ZZL(#(iRgzqXe&6V0EZu4{b#LqXtV2$98Ac^JG~zo%&WK}Tv9!d(J-mr#DUvdXl?3Jj^Bn-2a*oN@lE}7|DUVIR<46v zYHX?tyCssEo+;JDLvZ}@!WCtJh|=5+C`b>%&TBI-oc@8q;0ai zx$q_S%lehOcRC&ZZDk+!X4~gwb;tR(Uv|5{A(xR^`+(?s^LgMU&yi3)q zUD=`Cu%>BYN1l_cAYgyg8z< zbmjHMf-Q%gmZa$}<$P%JRdvG7djijnY_e+*eI0fBRKWgXb|+cck2@H&nRE_5_*j1= znOkYq95s&j8)tm!kt~_F_+_2%jF&qL&PRJ>S6XJ>tF%7EAyvg%uKhy8eN&eblUV3y=)%qO;&D#UoID=24UKc3ef=OL`Z}P*)MSV4Wb0R1kEbNd zF!OjVILv)RK>K5rMpJ=_-ucA`cDqETyk^#jIr#m(=f+k13C^=}OF!>=d;4zLd_(bf zJX#CS_D{5Y=qbq9k}-4tj7wRYUj_x0@Gt29TxG-eK6mT;J-yR5ZSvq^Dsy@%zcA|# z^QDE)PC$~`5pkutbKMso@=Dcq7T37IR99kF-_z+XxGv;C8GFWR4fo6UlD=%&`fI(% z0uBZzCeSi`t`Y@z%Mx3YeGG?gM9gWs_48(Ac=xW{+k!cneePfUSp9b$J@KYSs6SR) zsX;*W_w9dm?eCY$Ggh@+fBbUIdiSfxc=NtQ-(PsP;6--C&J71%fBY>e$iM;`_B}jr z%UiAsH|7~Ulk$}hX8SCfXeE6sSwO&0LFmMU+tquPF1f)wy~lrE;gk*r1r?noYU>Z3 zaJ2oB>083Q`&GL3+V(I1Q%{y=yxNvuoLzauPN?Bc;7eVJyL-6!?>@MELE+$gpZa4x zt~1`5@a@K$uH7?BB?gYpb4izspI=;3 zz%RC`xK>yC%;jIQ8;|(aZ`dih_4c+!oA>D*Q)1XZBXGB%f&Gz=XIqt+I4(}wdnZNm z!uy2Vf2v|cF1YOo&Aatt8+%WK(l+&d;3m)08-IJiQ$kJ8Z^+#h-D(n*>BDbf!QXW* zvAAqrki>a5k7d^%d$Y`Wr*KP4`(jK`&%0@2`Inho7z8G@%<-LaZ=-l|!kN-H>*5!2 z2>-fmcA<;mE9>oxfziT`D^IOfyQrs8Ys~XkRJ*A5mXXT`(`{|%y{z0Vzf|v={;a}A z%tTy#aoO$N6FYA6Rqv=jG~rA1hmMjH79!v(pW|PX$N4%g<-?LCLY5Zo`|a7KEDg39 zOq3LSJ@2k3tF-sF3lZKg?Y2yt{`Hw()kR$g76!$WC(bQS>|4mnRU*9mjr?UV{i(@@Gi^*`d~zjzvO=%B(X z^ZZ9UgJe%$UiENB_C}-cs`I$(a%Vo4Omg9DQsDU4>XEwsK)@xFi!Fxj@*8ql&!@~c z^VaTZoAj-z{g4G;(^=m<`J&eeHx@NATZ3ABDo5t^=q>H^dZ^8^t51IBvPC}J8{|4g z8KufZ7OdTL=xlkPY+D82zQ%@ql9#vTiU~S&v|0AgUbv8_=DOmq#%onG!XIxaK3aBZ z#l1Z@drMwRuM_yjQ}V(Mv=R5}jlW&sxN|x*VXpf&jf*o3CM@mnd*0vwLC?Nlm*w`h zj2$JS781ABEvd$8yu^d%=@yt@~@$~Y}HOkw!~CzBLi^T(za^?#gRuk|!GS8n(8t9iBJy1%`C$z65Jc=W$U z+IXA3sNkCfNG&HMTrKrohqri_fg|(gDPhYS&q)5!H?Am`K0d#_GWNg;{g&O$8SB?L zWxupDH&WQPytf?`Ypf@JbxST}`q6Uj%l{iUE!wBgK6r7D-yIi*0Es2@nz{b4PmAAl z{PlNl51(ba=9hV1e82U8Nk8~Q&i9^GzS06&`TY+fzi>T>Ia?h#GyL&4Wk~ArY|J&> zF*ie{zA{H*2CMVuDaT@Nm^CYL>{zb0P0bc~(_8c5*IOYWfqlo9pIgM5@`91q z_Uh`y8-G_NUiUNkmJ@uFxCPby&&1QR;KK$ps`!BEV_}d0aEnWo<0tRf4c?_D(56sNDkdobd^UwL?nru71pk0t(b0D@7;f8LnCEb8O>zSVgOit&R<&hs8Ap86!r48?YFsOnglaYoug5O;hY)O5AbH z>hSA@$ApUxahRDd-n!??TZx2dy|2+60*nqGiQkqh`xbZXJ81mUt89jv%Oq=AdqIX? zo9*u#7P4v%qox#&0$6oE91Y7i6=FIYj&N)4o z_t3V|ge^`D91Kkf*C!|X&9HkHrgYt+Uv}A@oM3$lR5pwnyTg$gEd-w&rubYs0?nJ4_She#=iV{MBCZ=n$X&u{Y|F?9_7j;IVTb zE2qrNe9bD+6D&13H_*|y#7J{a7SFPb1fJa|ohzMX-=wxaiAX%8xcyd9c4X!kuyZb) z{-@NK*uE~TYu!V4zgMqMX5MjOXmy&m#QbpJ|8CKpg?XGxDze?0xvxrgO%b`fcwztN zB#yHAt7^-;wIjao)m@<3e(8F`&!_d9?^hb;?Vs?WtxJKUNr6Xa$)?W}@^)odq^@}A zbveZ-i%WCzQjW>Jhfe-+o_u4E#4^#gPtP4YBf=NNgWXXe5c&Gd0te-Du2QwPC2G8~ zZP)0Z@9yVF=y;xC$8_%h;Z53R8>}Z>IyXVUvRKaCdH3b3^#U{h2So9IOyY^{<=vah zX#J~d!TIld7cIR|bKidJij&=jzgt_3Jy;wCSPo7H4eLs*Ic#F`A|XdXR(-=n+g1m4 zjaK1A|9>2le|$DLY@e>ocB6o+!uHMLLI(~|qr=_T_kI^^7lQ)Ff3AtMHce4ma(fp; z*S>?V51M>QF&wXl$RTKqPxsjd3ph6an`yf@-(O^i~LB#&{J1*=K2t1BcdW_eMu&B0Hl zxie=<&viEEUMIELs?C3|Et-(i+wkmOQsdk(ju)?NYJNKiGO#?{0NUrXcJT|7+!wc( zd~kK>x42cz*TJB>QIye%!{YRV7ttG)w%>aF-POayWA3h=XBvyzf6O-C+fnj5Gu!p+ zvfe%BU%xus7w}l$%op398h(xEOU2(NaL#Xfz`1uNOQS$r8&B#cZCj?ytVI`11X~{8 zSTXBFzwGD#w|5I`>|X!N@5BE8YcD;zd#r-_Hd8d)_Qn)HpUFJxGg~~(U#9sv=j5DZ zo8us4z<7!A&^3c2Gx9h*7xXr7)YY$G*KM13dGbSpIhWH9{qWh)YaTgm&-+blmWG6` z(z^QZ-Q4e7)`dA&l~#&{{9Nt1n#^1=Wp%XH}d;T?(_S*96!bzT<`zn zMduWI*`2%gt;!@#g? z$ydAkpJFzDzCZ2%nxEl6BSSsieZO4)d8UQoW5JV8=hD(&%-p$8?u`BZjcW2&ralht z)rj{AwMyC6Z*OH_uua(^d+jXE)t_<=@02&{W2I)kO=PrLRKI9*>I+eHyy6D?D_mOsG=dDlZwqm6hEUp(gLAYw=~;?bDc= zk$*2fWY+!Q&((by-V?=qznXZROkT`TX8!-jtL$$nZM$|aGBijIv%Yi#cLqOWMkE<*l?il?-yI`&@MR zY`uo2 zxcAZJdGnUfKXKmv;@6s(uh%B-tdlgj?^9~xpv`jQ=Y?fAzJ8hf-{x;xJO{%JKK*s< z0ngHG8~*jlZv6T#zDGB}+V${R^K<5l(r;gXtX^+ta{IaUbQT5%h60AlLKBCpV)Jvp zT{th5zr5kvwmH`FcO-0Q&%gU!z=7d_$xrduj7Q$AW54k0@B15D6nD+9sQDwC6&I*! zFQvIxKWu*W^_ZCTJCzt17#f%_yflBZxVSnyuJmWb=EZft=D9I%5p%r#^TM$gmEUfr z)u+ijF)%V*&d|HgEOG0q?D_kp&u@Hd2%hY|c#3xN$H4fG+4cF~-^8!osR%ai%FNZL z7R@_+YW>s@JJH@B_k+CJ_wDh?zVW$_{hj>nsgFf(7x}p{9N40DHPig~dbjA9;HiJI zH}8~lcwN4KtC`#L!~E~g{(dl1qnA7BZRPf@vt~^8HaiXWwSx9itEbC~e10$b;qc_s zMvsrbI;O-$E!nD@p3U*)-P-f-V>uKU5_YZC&CS<%y4P~LchHjSXPzx=FaLh@+U|Ef z2iKij8J5XAd*{ZV`+kM2iQbrfZT(dl0R{$!12!A}T-vilCi?IB+==#=|9mW0zI182 zo&BBL(zng;i2t?T=3i@C!pLC!AUy9(JI|Ks=fhR)gf(SNvf15WY3~@_A2wJPtX^sV|#md*iOGwb{D< z#<{Y=+>9&?XC_>}_T>6Bx1Bn!dwxGv4okcA;z2^r-tX&P+}~H)Wm?qf_I0tviob_; zynHjaxMXKqF9QPu!?T&j|En!`Y&X9b>Gdzi^W*y9C9e8*<`;Gr=cqVj2X66nW?*D6 zUOMH~m#t6DKY8rjb@PAyBPF?>@rhZmXluh(;*%vniqu>8L zdP7e#c#^mOXWK8G7PXgk3qKyM-Z}T!A8@j(T(>ng;rqj<@#fY4=J&h(xqaMqc(_Ss~Kl^ieaoDc~OD{^?mQ21rx!--}t3@+H zzh0Ke{S$a+*QcF3_rw`{g2IE_QS<7j*{8EtZ~HXy&mpEp)#+K+FZ;VaKRkPpq0OID zR!j_Ohh0_Y{%ZS_zdC5$nxLw?IkIIdc583DSDViB{j1+rulSIkn=h_d*H@}7Ra~?- zZ3f6xu?g42a{lIC-R(8iesa;AnZ;7DPQT1lxiN(tQH*H{Oh}`t&c%|o6(f@|i zKTX$M>YV;~#@axG*nT^ax&1aKW%XV~`_|s{{pYYI`s10Hxb-u^*|{|>H`7{oy1Dz} z8olt3^Neh&JhDX`vP~SaGrrghG8lAETYvI+NN$ALc-P(*RVZ-k1 zEYYGjecS%bY_)N|E z_w^UmAOE&8OfqAi{XUu7eLGF+zV&G?WBc3;Hgi|drA+gw+n;w1CobfrLKTjokMB@9_uK)MVNs3hgWR6tkTcHcn-S6#v{c`!f3x97MZZ~Ty|G$o* zA@cj7YYh`mPt6qD#-?*N`v11)$+v6EU6V61x~7WV(_mm^U|_g%CO zqu=i|cKiK%d01j&FSy8JFfjL8>G#{QGCFfg_Uym^&CmXLDAjx8=Y?Z8z8+b8*7ReS54X9H>GdZ%g4NLU-jjFzax2guWj(^4Gj>dFw6*6zaP{W zb>~F=TxGi{L0R)pCQqHT`1Qs1V|l92PipHd2xMRanfUC^%KPW@yJFU@_1dGmYUW+3 zf|T<7oV~x#N!+?>x|NGN1#0om?c27@wTd~na?zhy7ppQg{;RY8-~W6?_~OS4Z5oS% ze+ASltoqZM5pus5l;>(!ewzw1y@C0VWcKNWhns&slKI#<<HrHM_)aUH}eoo@X zO~b8RmiMo{ajI9iwzeW|-TKS>gg}}K4n)+|+L?+?UAkK3SHzNB{FNS+)B4Ye@7lu=jO)S>;y#{H}URG;rzUv`+!O3m4v~yRV=0{oC5$ z)duI?!4bq@u|Q|{I-T77etnmz_VN>_oqMve%>I8&&i?=JP8>cwSv;?ospHQ|i{#5& z3qKwWzTx!X04R?$JZLCB#ryQhs#D=^UH7{^GMDvDc5h4m{cHE}riPWFC+u^}mi{-m zwsyv&4UNq0ATKm9`)gj+G@n{NMI(Iq6u+4}AG>_XueaN_et&k3*MTKPFFQl*1efRU zO5F#I{{n}oe~S=S~>r=AD zwY}fkAhukS-akLyc-HCEz(=;mmZA&lk8iuN@!vWLS(zDLAJ08|dwAosIsdP{3G-Jq zv`_#gQ3i{Gt;?A11l^09`e|>+mo`c3GcPhqY%1!%*nEB>;>P$y$nszGlph6mc5NzN zr++bo6J(FYg1H;F>B!0H$>*D#3J>;bKX;{&&DuKY_TKViFC6|qY4yG*ckvth#&2`x zAG_hj#BK-5QVi^Sg7eNCchkDR)@zP!a4_SyDiMbzvlrEVIR9uGch$3BzkFIjhBq+Z z?+#`x`WY8uY$Ceg=2H1Lw^j!-%$^;8Pd@wn@A~JzK0(!0Cgx}zNcdTyeEv>I!=;QP z=iJTQ&QI=ln_1)D;I=uu)>Y=-&!0P99nw@`EA|GNd|=PTSzG~&{=}Xt^jmVpO!&CO zt*fH9-|ba)EBo#nXL0=TMX~2cUlqTf^*Y;F671y9?wVI$=V|4yUKBH1X>X<*-$dz) zKR+D1VY)Psq0*%2*X^{m>yPXbJzQK{sRm9M32~Oip^;Z=19lp?|E%gNx#1&|To4|f zGyj!Fg9iVR7cVM59{!#?=XJKRAjE=mH`Xx(?z_FmT6s4pRhRhIiW~@VxjjAk^~LE& z&fhb%x_&*)29h!7iTwBLrXuO+==j~mMhIki~up_fR&!6?$+gJ`_Tu^p+L*v0u zA5T18eU;}8*M{kf8GbDencr8x_2a7@KOWg!zn77;@ELx$VC~ z*#7+6G4a!F=iQ3|*Aj0wUkhn?efsw7@_pCe{P+JI(y%d*q2H%a#G!AUM=y8s*;CQ8 z@4h|R#&gCBV)LyVAq|b6I<=;+ck^oZDgT|knBm>*QyL91iYY%6w|t`?gm8c35Niz5dKsQ<#=` z&8sWTr`$gox^r1q$*B@^`x`d}Z(qMJxtRH{u=ts?^`SeJ`riDCi78F|efY$k6Yq_x$KC(em?OO)E9QZsR`o zY4xYhUe%|sw2r@b^}2lP`Q7e72IaH*@%d#t_shKw;{mCi2ue{6t&2@XAME;c&P^+P zxz=2hxxUY@X*953cYnXxe=DC!ZIr#8bo}rBj$;=dEOA|YYJRU(zHQg?#690Ru|^~FYfzM(X}OG z*R8Y4hc_l4zI$>1+np!9%&hZ3=P-p3!>eE9)PhW>FIlOG?#h^vcXR0sy{P6c;6SbGu zpa0?CxZ`ha;pyu6^H*ns8Ws!-#Qb&|%1iHziBme)<&kN1OXlVKZrSg51)X>AQqzm@ zD*s%TxF&jI-nwlpA|N*f@GlKHy{`Yh-^BI39?O0FC#zP?tFhQ6cUwgDIj7gTztbAP z2_q}{XaDC(dvxu>i+(08*-~P4OXl6%&bP1g`zP+3*U5eEBTU`X((6xBFNWU1zQ6SY)`tbSTAW`dHq7p{yeZpzZM00p7zswuema2 zqLQq+tS{gDS3PgP-xXZUyjxv+m*S$gb0UhrDR2I}i52ALE9WG$PcPj4`_uJV<@RBr zD{Jd-YxiD!QS;*8i@SfG+<3Rc|tbqCc^4~f8;vml2vTe)Wed}vh1cu)C5p;i( zUtC#YQD#@*|K{GV%1x83l`pX;pWRt+KU+T>s&f{q5fV>wA9pd1UVYb!ze7+KtJ7 zWeu-fHuXID>A&mZH9gVccIMLS13}g>h)><}=E{i@Q>v@JG-pWvxxC|P)4Z8=wP4Rz9NhH!)PIrQn&c&4rv1%aZu)=!>xsXQUt`W# z%Wcq@9v8v$p>JkgE>tZjFUWSEY7L#TzssZjoqu$*^>+8;ZPv%j*d)UHCVG7QYO&~Z zcHz}lW#gZ>z}3hHq0@TW$B!SZ4BcG(PySoF;{h8h8Eg3+*1xv!9kW@}B)UOmO{*8F8<_WyHA@^-0zdch+9?)i((Z9g*B*rk8< z(PPs91ysXy%fwL2io)tYspozMYc4(d`<7q!kN*Ms=D#q!tdU5T8#l|}& z7JxJ`e0xxO{fYUrRd*s>t8UwwUwU))pGRjKdB^)$C%RY}Kx%|CwP-Mx?8XAdPo@}8IAAol^xh-+D{0_5Zh9 zzE+`XUS-ZBUB>hZLr7WDvpQt`|G1xL?`T{%|NVdYn{4goSnEZP|5>Zu7AkOq*~&64 zHhh|!a=qd7AAk1gaae3qeXy*0QT^*@oL;@UY!%)-Tk3WG{eJ)5Z|6r%aO?Mgir*e9 z{ruIZcmtPif1fR#9L;2B@p4*&ziady>DA}=X77pz_rVy{HgDUqcirwi`?pNZcVDvj z+tNy}>2%0g*X{rFEh4p?cZ(Vk1MV_bVi1=5qeHqP+3- z$7|CXD*rTD-WSX5{hajm_covBKe<8Sn&9PCdMWg&x%ZUUm+ka8EG})=wu*{o`u4py zUSs;Y6`$mf-unEn|D{beIAi++W;-6RnY2G5>Ao0?%x$3$6L~N0{`rw}8_SusM;X?4 zDO=gghR5EpkA1EOGQ45$g(!gyH>>w6zJ1)(&}_Zk^*D36o1C1~{(wIBMY&JjMEu>? zd%5%;IHBH<&i20Txt5hN_-EOzc2>sECko!&`Oz(LfpLYHTm)2$+%zdcs_wf1gMNH}s&pX0{%pC?~bJ=v$xd+bN6*Pr-}OWyK7Ubea1@31;eia3`M=Yq{5T!4J*lGpJhQ2-hA=v1>5Ar z1M{{%V_zbz{M`S@F45ZG#q%J6D8DpBJvR8C@8{oJ1D8(zwk#`o!~f~sjNeN7;x(op zpB;a`vsC-t?fI7>nWfGuG1Ssx>7V(*o&P05v*u^*y_VEq>u)Er_iXg*fAgL$Jn_>0 zs3d=k6e!eheLD@#>F)`+vghfXgiaWJp zWoy0dMC<>*`?qr2ZzYHeHb0&IOtqQ)_;WAKc&~}me3qWOk<`HNzeysYk6pQUpZT>p z{~z3&HyLbl+5yk-XTjcD=3x`>*V4mfxW)b-4MlsAS)q{UYf(zt$IiJX)!hyA9m2Okk5OjjX_t0GGW+zS*x0A~UQ_g!d$9Y4 z)os~tUY7TxvgeIl{@ndGQWN)yxtG-GuG>|RqV*iyI%$Y3`1JJY6t`2?!$W_qJ$Y){ zosQW4+>U+E<>c!P55(NP_GgpQwY4{_rap$00%mJ;bJxG@<6bo<`ZklCW#q?$eQPiN zd@wgTo9RtpUth*)@guLM+Rr@o5Zq=m@b24hB7eCqV5gE);kT6AOxwyBU)-rUeq$X& z^_1EFgZ8NueLWhnJ;_21G+@fmaP!llZ4Eo8WC#0f(oN93`1_3V#m`TUX;j|1`|n+k zgsu9uIsf0Jv_lFTovOs>1N+xW6(%mZVitJw;k|Vmk1|L%|9w2=#NEJC^N-y6TxW5! z5aNu}e!GnJZ*|#ex$4WY&Qnt_PJB`IW8RDVX7||t?7ZpoD^KRi_nSK&IyVb%RRtxs zhRAET#5OEnTw}NV(^8SllP;;hx7*3a_TQ0SYG@TV@%N&M=li0=?JNVWAt`}bJ#N}` zcP(>wul;s`J1;iwyYchD`Q#<}*XMCRdC@t^UTFKenA?9=_FV4+na=R+(5*|~Zk_w_ z_{7iI6E7t`7R}aWxbgW&+l$+OZrnK3uzt#H{;=yu-YuQqv%mg(MK>!X?X1(;y+-DK z#`){hWd7GJ%4KA?-tKyRnYD61Pj7fi@RC>GAG1HVv5I2^XRR|+gH~N%rHPkM?_?i~zU%1sXFfWC(LezOwc|lRXfShtoy+;ZLEau^4}F@ww@=wekSK~$cWPehJr^^f9md> z@;-dxJ)5|hchB2P?v~rF@3nYid%F5OHb_EcJ^*TqtzG=|vgOq7pe4=ULeiG(H@7nX zXX94>z32Lw9Z*{f8Z3T(Dms<%M0%Ch-)HmY>F+c&V@miwP5pRw(w$7mh@M3NsG;*t zM_woJU$%=?jlV0~w*0<#?(gKHg&#~kHXml?iH+gUAK!92y*0G2+|_ISi|yuY4v!nE>{aP_d!;twxVf}3WOzRyri*FYH z&j?xhcj@`5L5tqMWS_mg{n#>=HwV{cJhAVL4!`&75i>aLS~$!tNv(T*BI9SB*UK%_ z?ajBWR^DZP*Un7p!PKJ8N&BSPzt)=N{kRYTNmnuprp3>i{w6MDUqn%j;?gZYmY(1G z?0>m!Njgtyp7i=(b1%-jC%t`7dGTv@a5|JZ(6?V{{zR{xno56f?XOwZ^OohpEy092 znGACSrR00IKL0y^Eok1AfuTTQ_lhn1zwP+cIqCFurKQdBzpfPIrU2cRw%u-F$x5o=tImxf9*acbh){4=G2V zH74($+n*gBvul=Ut+d!;_00+t$0ByALU$YXZDV|A;<) z^K5RY=B11Jc6Vm6ZFqfgcXGn-XSUZ*|9qc(QL!G9f-4^#$$uK&tEYQ^ZPA*Vml_TK z*801hPyXI(%)7uwI`m&H*sW)zms&lvemZyJsjq@Be~8P=zJ1@huJ^yhV&>ZFRVD(x zf5gENH^aSepPKwNyO4cTz5WD-tX%swBD3e%I`{XTjc?Dt*%{Pn3Q?Bsx5MUt*tw_A zLY7XBugN)-$q;C(0}8)}%4aR1PaoJ!+COd84;PoLd|R`JCJi$FkYYXhgg z4-d6k`}H$COWT9Gf;aDm?VF*zZ^EiAJHFn4+A)t?PB@_kGG^vTk1e?Aj=xjpJKLzP_hO%w1W1%nPlw)gFiw@G$8xdap_3}PMK zURM8ReEQc>6q#wlcmL}NaEj8O4;~LXaH#N1>eC-0KYx|J?`~#bV0-K7;uxZ}>i+Bd zpIpA!RsPq97HJ8LJ69}u92XnrqB*_)-8;KgzYorLPtJgpw%lj4_f784bJ@9yhkyRo z*Bf`QUU=>~IJ<9nFeOO#|JT7#QE8w6wvD=o8Lo;Zl~G{-fu_%X z_*JI=?>lS$#jfr?c*=x9Y{lYzfqfm9{?5JU{{EjYI34OlEVX(zd-wgDpT8{YhPbXl z_G|As<+k#?-`o%-8B49c*xP<}gYZhkW2b{DK5YL-J@`4mNo*j6> zb=v~AQEdzjqd~&Jz%ZIh7#J8vGY)8`c(hPp7)*siuW{^1{QX9ka-OJ$@w`&;EIF+R5vIkr=+GqI`a&SV6{x(wmUNeGnmKFAe2>Ll>FcS ze;|Vq$N-R55C*Y97{mr)5SsyH4I?8v4E+yc;9&r{fR%-Xf$@I~gRp~xherT1`agjI z?7 zZRzoZGxyiYD_7>f&iuCVLfyTOqV_j}S9zTMoAc5|qVmVI^zX($4`kR;^^sL zZtw3`2?(5dxbNcSU7vowUlzf^Z?7P-uyMb_J)6_%`}1nAoKp*TS(IYs+Wg3^<$DNk z&~@3)a6``xnw83P^0qeLpa1!l)KlO4RUCprk7X~K-*RLMj!|DV#ggUW!=}@vS3m6+ zTm4@D(d!eB7jY@q%W!sPoIW+P&*=E$v)^X>?~Z?3(3|o2#&h>5(QWznt0X{XTxP9( z-G5p5(6Ys$nf>q0eSgWiEpOR3q1WJeh3%FygYWepK9t1mEa>~RZTsvq+Ya=v5UKaj zId6C-w|DM?^-qNlzqFN46tO#Gpyws~Gkfdm4|8}$Hvi8Jo}t5ej4}P)>P{1dr8gMs z<#K!iljR_`u*3lCwwH+{s??Ydiyq6RA6eBqhGCriF0r0p~{GpcU4o0pWm~o_UYwM22m>od-PYlD9 z*N-kGPJel0rTKZ~&8rsoPp>Z2)<`Il%YIckA+)FE+vH@UfIA!-SwCboFEAv$aLSrr zYunUY+QqfhFzfcI2JLxQE;h8r+i6ypZ`rV7_i4r14l~0JUs|Sh@4=e~@$Xh&JR#kE z^uw?3u3u)po1y%2$J=L54#m5l-*c??S@9>+ctNf|uO@Y8HQhNrVcNfv=TZR`hjv6I zRL6vg?LFWUm!RZyM^ zx%qDyIG)<-yed}I^>~uG6Wg`h&-GO;c9*d(oe^A6e}2!gKfTMJWJO)qwhcV~DOSWU z;H%C`af`gvG4qf1mDR!rKgs+?K^rZIv{M>m9E#{?4qZJy^{Z&45lRg+nnC?Al>-$mHCHX z`L|z=Z@;l4y>`05oZCMW?@3(!w(Zn+-L?ze_WlPO^-VrD3#|P4di|~!drvfGpD|2I zZWB=MeNg`AMqggjmsvk2-dkvu%7xF0u3dsHxgV!?FY;+8Mp*W1dPyxns0 zOQXczt$D#IA-i`xzU=kmM#jX7rsP=*cY??`MdXh`DNPK62*VooV&^ zM4w7|^ThnS{L?sISm5J^r?Z^y9oS*0Aken=LFoDQtV|_bZ}Y;OA0CFA0{ zPrr5qG&StvIPR5KyrAxu>f9L4o&Bd%D$DOmxqXcfsvpcevy_|nq`}dK#C;K%!7Q6UvGPt`lEMD)& zp|<_+)AQ!Onp{(KaKpX0)IH0zRQKiWSl_gBT5jjz+p|mlcFFPyD737b7}FoEIk9aYEm1WS%_v zu_k_U!ObgdEMI%Gb@SJr-QJ`Zo1(IEMegghiI0x>vc(f?OtEtyE zmE1Ghe}3<`IuV~gD+1b<2eH@iys6U*4{7IY{2Ds%QDbk9+Zy-kEAtz5WqhNkl z{cjic+d9na*LN>_|Ncm^ho7X|u6?EH9DV(nN!NUoKkH7K;BT$nzisW^kV$IpCyp3a z=loi>hao-d?%MbFZ(THZTpVCO^ZOo^=08p6x&%Hq9@S|4DEI!&dH0~t0o5w6Zq;x# z%&DKI-+oR!RXjQG;EfF)0%vq1O_X-uyAu2`=!=Qn0mdn-g#WniYrMs_>QY$c3FXAL zTdpmocay)b{x%^mddcKXGk01StL`*Ol>06B&aNcj7h8>=M974*KP&C;H6P5$aQk{` zMx^b&OUoL5yj^;DSAb*siF-NLg%ACEPd}5K@V|ccvSO7gi&^PB4Nt_cFsJA6)e?q1itNazATK+}Gf=fT= zHYWTRUl#S+_EEu(`TXw-JwH5Vykuuunz8S1e|plXX&R~Gr#D5rUrW279kuuRWb=Ew zO+|JwzkMEfO)S=GzE9g050O^S=S!Jq1nNw^EWYc0?}qn6?Ju^Rf8Ejfj_=K3Be$Tx z*;7_H|6UWIKTYu_>m*y_m%QusJTmxBYMQCc%F=Fmpm$Hc;-tcksiI2 z4WbuLo#DD`oSYx0^LX~I_qpE{)-U*2ed)4|X4Uu46MpXySg9Ap9&P6NC*bD&>DTXW zxwHP73j2|7tM9K4FS>9*Uw%u?lda*Ct$13(CbDsT3<F0ibkC(MQ zbD%2hafQtJ4IVR3ottJ+(aXQb`_sO;+`*FGy?S?cJMW!6|M08zkKgP|_*M4eNI-}) zYl)X_|K0RsiF3?To_X$&wrkI-{HTjw@~uf{GLzQ_vRL{I#=`j5isob zPpbZ$^tSUwO8gd?7b)Ey5B!Rv_a3=CY1hR|6&D(I&5i7p%|8|Pqx%roiF^O8UIon9 zuwdHxO*|D`n*@(WNu1=}`C!7qSADEC%Tr#k?M&I;nQ*Hq<_3$i1GjW^!Dqz>GkGVh zj$T+;_20#4Tfu*i13qrX?D?S!)eq|JoyhONd3;OOhpRjG{JE-P)PMcw+tTgF=DZVK zteU$~Em3K0KbO$fMnRUY$EBk4y&deBqt>>|awL6X+$wo^#{|W*SDlmB&z$&JvQg=| zUd67%SF&01l7AQ)u6vjhd$wwch@blICzIa#yV>Lw$KEV?a4&KHGY*|Vt#3EEo>p@G zos-ETQdK{RSK9w!)XKNa|BZY$b{fdk9BsOqq;*HhoR?wA8p)Y=cb!YI-?0DCBrC}% zy}POHXF1lN&3T~jQxRj>cV_(ppMX1+O^J$CZPx3aZ0Tn<`^dCc`Of^k7Kci%n*4tM zuZd&jMA^@&i;nr;&bWB)ZnN+7-!=A!)Y)Rg7+xjju3>z)-l(&rV~*IKcbVzuI?ig9 zYs}?&Vz%E|f30@V(#DvJUyr2AH(dN>v?aoR+tjJK2kSqWJAI$0*C=pSDyt*-h2O^$ zPETL=>u)-`R4PN_!Xh!B1#_Aeyu7~pH~wI}{K#yc&ZeVgyE-P>9e2N!Snpsg`*ODm z$Mwb@OY_b3tHa%I8ri7_)Sut)`TYLs!tbvv?grGh1^JjbANrYj-Fb^O$FxI1**_Nr zPKf-uU2y)lL=(mDoS$YnteQ57<)DF7!LB>cCM2mD3gnjdruM!UH&VHtDR$W?N;4v# zxx3{-iH5T4wi}Vx>rZV?*ncu9{OVPq?iLll4x7x_Z+hxqF9obKIDgTd`%A0b%IZ@8 zZ}F4wJ&l-Zkj31rc+W@5oqdy!!aSE=Dbd8Ex{`-GZOyM<*ZW- z9)00xm}uH{C#PGZ&^q>X#UBCtOLw-Heemi!;wz`gcjtUljJ4mw?wb$4`LHZwna1<` z!^}S%naQi~&+f~eX3)4wcSGOQR_{|G)7|H4b~*VyHmS4j^lA=X({^&%!5*$NMFz_L zLb}^Fnp`ruIiqWb?-xehkN#$J99uWeazDf+u*IR^nRKRUyM~fn)oiB4l_gnM4z*o5 z%j;v8B{(l!%SE`OB;#6V&HfcuhyB;|yLGQL<~{jQ_2mNIZEH4MEt$a|@2oVbLP=Cl zQZyh$pySc*6Q|}dE-EPdTDmaV_a?(>gBJ<=_q9FeuhkXu>0JXY8zC;d&_Gqqny)p@yP4IynWt_tw! zx_h}_={Ggl>YMyCCsnd7`>?^p?tf>Wi?L02e#ZWo$1XMUrsj`r|9EaaI99<_BIkC? z{K%T^iluXyi>^QQ<=tD9y*_+v!rT|9q+gr9NNQ(dEIu0(_t3}T#WlkyjmDFcj(?7d zjcHX6e3`YR@X%dx2kE{!T%j473AIxmAI#ogrT>N{`96d6jIzMgl=EpTGk;v-l~`tT z`P6asvV|ghKjwP(t5kj8YqlYQ-!`~7zs*$Uzt2srPrCKCTP-RIS89d2Hb?$ZIN2Q?h{V?Hhld>q$+y zv~OG8`R0v1cZH7sn-di1J&|R{I{iv!sU1957F6XYTJ6)nI=Lp(sc_r#mk;%Fi`On| zwg|YbwCDYFR`Z(fDfd*i@dqtQP|e7x+57igqx$3hpJi76&DvzLZC$_5sb!fnmsm^j zn|JFUzqKwyF+e|k+e4doJA5axtgn}^2#RX2Q%e0{@lCT@jfuzQ`Vr-~FI=~A6>n6n zwOk}C$+@PWV3Az<=6~-Ne*WfJy!>$U^qDpn1v#g#jN4HC(Aa)nq2h%e4W}b>xi|f3 zJLz=C`2Msd=MTrGKV7}xVU?WN32EIc9@o`8pH}m1W#^baS%AgTGvkm-%1+~*LTf7{ z^KNn1J-i#py})s^E`RE+#*^0b4JKtT*}~6rVB$JiW%me$35J!@0ULB5etc;2^x#8I z&x~u^4k`2aB-S(hy1(W$7kk3@Sw)-7U(TMwu4sH9sQ1;iO^dvCc%4o8$jLP;$9~tz zS<1`8-?@o(FElw?{g36Tu6>>4)V8#YX zo$}4Au1h~V{eawosRefuswUs8{{F8;?K3-k ze$9cOrPDl&HS(P!^s@eB9h|pd*3JeMmXo0lu~URQr84%~9oV}tZcWhyy9t%sG>`65 zcu<;o_rFE$URjg1T{pOOZ`@HAm}$L{<=FrFQ!`|bY<(s0vsH1`d>_?I=l>aau&+4( z?}WKQ`T8T8RfYE_*sn@5m>Y9KNA2>7&+WzK>eHqF2zW-AzPe+$sf{CA)KTzU?HBRY zKe%hMxqjqcDP6i>gY!zGRLbgmi9(HAh2lH&%;xU0z8Svw!S+A;SL^R=PG!3hb;`Op zKI_d-#peB!d2e<~t_w2WXQe8hbGTvkRsGQE;m@`yU%g|v{=47lV>$|D@-3EH&R^b6 z);*>;>%u*m*=z}drxoV?d8=7ms=IlrZMpI@IU)TpqcVNjlNX-_$x@+?l~Vb}Ux82|Q#-Y|TzqJ8_KC>ytyz^^m;3U}`? zb5PqEU-ovEbgA$>bCvn`PW*6PzPNG4&v#3+&GN%lzPG$6GQ0csYWiY1>w~u%7w&vD zfA+Pn>egPzW2f^S<|+BERJ2c%?aw1iAuqMwmMoL?i^9|7)Q?K0uQx4;Smwsndu-$L z1zJ})1paH;G9S`^)U{5iZ103S+X|VF%L-@QxA-tS)zfOzhu~b^l)N7tv((ytU*WK2 zkSuXaoYph*LDrUT^=)Q#{lBtAMQ5Al_uOs!`dVql(hw#?hm5-_HL^|8p|8B88}AfO zydF7!y0P2jk1oah&*rE*PR!&K6z6#_`8(tO>P3%zTAvop5>zXS|LJYwy`DMw;i9Nx zl@nD~KbH?ZoSmuVTphdMpU&D}N549pnw9&mHhsm5Zx83Go$=i3@^;ygG85BZXI($C zDlCk1ny9Dynaf~e_0gkYDJCD!INwkSTUoitx@>ps%zt;5YfZkR<2*x9dr|xP%v`O? zpSA}g=KPGi@R-Xk`_DSdg~8jyXE-Ze5`4F{FM6k_QeXAlhfOPjWWTX!dg^YR#+91L zmGCKRneE+GhjRYAx!HcnxWdA*=gH}=0>f^-P4C`owYtYzF3mc+E^!m}Y~H=BJ8^YI ztNRu>3z@a_w%u@kTBuPxznn$$-1NgXN|8cSV@yt0sh<|F*K_@?k@jdKPsb~P`%Chj zcR#qjRYPyT`AiqqJb~l~7RAYP+AlYi6-7TyeRZkvzsHRf2~pWQD+H#nv;Cg+ZK7|0 z_We~~-9?lqv8__758Kb@byi@OS+KyWELj7sf9t>1)U`)@Te8du-^I?P^21z#CG5YF zP1yQyn}nICZbfI-G;P>%NK9>p)$?V4JTAL#Gq`mxsAyrkN9Cu8!&2uZs-?0DZhfwP zo+iBA>*JcmERPcEB9B@cUMNpa?)Up@`mJAxW1i*7NuFEtHix?XRMD0!Pq_b|&G@#Y z)Jx`h7uvET=66|C_dn&5@)E85;?NLa?9IU#`=Vqr<5}5_XZG3p{H|FWz4GRXvoGJW z&y{={@y~1b#hF(o?iEmd`|afByPx;%Ir^~E%cPQf!%l^gBb@oGm!x@$6g?7XYQ6hn zhNH5;2lmTZQO7th7k>Fyps@7TziW?9SxOYAS?eENRD5B|%l_O2@_qAP-51^~y*gAq z{{^@Fx`Npyn^c)+)*pU#C!^M``@yg6PhQQk%Gk8x`Wm&ugcasf%9SVQEXeJ0eGzx) z;hcB77P}uXnqiw!bK*Q#z0)kC?au3}Gx{gLcbT#4dRZsSA3x!re*PZ?&seMai#@u& z;3fa}xd&2`KfPYGvZM5QnfsKa{tYYjb#AMEWJ;BOcTkJ5*Zj)1km-CJd;yY^84l

wjagNwY})Oo*b?EZBy~}w>O#n&YK6G%bC77JZ*kztZ=|OB2qsq?Lo#z&iO5CC7#S)&s8uf zaF)Rf>EABrtX}us&yMzf{Zi?Wct-NZn;mxfVKPf4?nWLwY#0n& z@vKt&YCJt<_8UhoZ{D^a6ZU7nY3@%`@49$nSGYh&@>T7Jot-7=jx8Z?%-k;BUQxeZ zp)!Td!I@3ZsyC-MP->gISH*62RfgGYg;lpQUr8wQCp8~7xoxkrjHzwb??V#bWiRp2ndK_xSI8cOL4=Z922Y0ixz3lf2PsvFok3KBtA*)qiUWPW{bRb zt$H04y`J~4@Wdl)@5D#l)(c z?)pv2Nnhpa!ce#|Y(~r1hP*Y=TFhc>(#_M8el9SvYOs9DZ?q*#*5rD$)zSGqHCAkX zU$rI+=j^+@e?@1(xtT28wy~Z!&qwu$3B5A)niXw-{o}PSpRa!X7W7L>(6*tnJyP~n zWkUZor-#TB>ryvR}E_nCUxes7Dq zCeCu&bcp{=B>OdnxgY8)A0GL8MbYF$@WT*CCjPikdH;|fZhQ3gnZLKN6tuK1Tzcm8 zKL#f!x1f1%g9VQ|y}Y7*G3hnq?3+*HPPAVL`h6$&eWGc=?pH3qZn^89&x4YvT%I9S89Hr z*W})!GZRy;o!OpZgyrBFW9a@m>%2)0|Kz8F5~Z zhVwz{huJyi9Ghk9cIUtx^BV8|v&zRc=LD27U)G)TY0vWDx!l^fKXh%blo88`^VfgI z{X@={_fu)FxnB7V^7IDLGs80!`Q!O|JB(4UG@rmyyo-q z+w)Bil{_&{REzyAC_DAVa^~0-r%EFOPpZbv^JtDe?B>#LvD(Y=je)hDQ?eST^L@5$ zcfB06bKBMjh{_9CNj!Qx_5Ia~Lw!G9_S;Tzna^zhKX|cn-psDeDo$%3Te~<RWb~oMD;9GTgAOF%a$0eriXV+}wD)#@}oa17A=g5~{ znSO8WuEHJLq&Y4ng-$B@Yr?E4S+qg#XZaf4-V>HrR;}B*TiNWTzxS@5DM>penWgJ9 zFPT)i{aEU>`K9`fXgdLe!&!zGWEY+IymZGJgUgL`cRXvTjC?jpb4I6ILYURW4fm5z z@93Q__SQI0A-2U^EaLHzDYKl#IX-7-o)?zz;Z*r^S6b!ml+BGgxl_LNvG<=pAf**J z^TzHuMHLUH9{M@iVb+H58;(^GKF8zYdRJw6N!!nzd5AACNP021o4fj#U0+wO&=4uQ zW_xhe%^-)C9v_um%WLFcWh(D8xEEYFpJD0RZz(VK$d>azpJTsYE!*S@|H-oZ$_(q; z7u$-6{WWvBthh(EE!N=8t9H$|$LGz=bZeQSthXsP^ZH&T=e9p4sp>yi&ecvm^JmMS zU{3e;Eot#j9@ZbfeLd#)@6`Uon-;uUl95lN-^bDGtU{srlL3iiMQO!TqlI^>}R;Ky(l|?17ta>S@XWn^f zo1ESmT%yt>uIHu|9`1P6t;2uTkzmdG#Qxb0OU3r2v2fR(^=NmpQDOL5l6+C=L}G#W zZRPzgj>om+e3s9PVSL$>68kgr_gk%LjDgGaMYTEvA_QW}1P(9#TAXS!!D-pG(D`MI z5;<2EK9Wp$9{Nd(FQo6L`3#F4YAZG{X>GM%v{uQntiZWmC}+>}ox&SzE==2W@|mjJ zm4}xa`xgG3<0P|iZfVmVi!VO1QOEA>3xB72D(KJJf|vCzM^fTEH6Js~U9oIg^gK?3 zeZSW7IPbQy_~&`zRb2jJVcqIWmPeoEF7>e8TK(nDN{_V`&XPyAo~mtg`>mJrYx3Fr zSDL%rUH-m(wN5%udcu1}Kbduv5g&g4vOi$jug)k^E-hR=CFT|PBwy}{^7lnOCcoXc z=3Ax5^S#QyTT>-Ct+{SLem(6g1D8O!&V9DkX3ndv-}j#TZg9!Qac0X!+x*G<7N0gq zStPjsRr93zU)Fv4tQ+=>bwVe{QikQTq<1dhWl+_;H}h&>)Ry3@Jy&Hf>?*%)pC$5} z@nCXFb+nwQgIB?9{$;mJ_?~X76mj2HWUPCTq0;^N%?$0go8q=wv0i^)th&r?;%*Jc zWnv$DkNYm3>X=n=!uyNmyW+>P6aJn$n{n4Z$jIUKB9^t^jg~njJY-?2tQOI`C3d^U ze!t9Wd)-Uv0ypQfgr8Hs>Le1j@4cQ**WoL4Z$4T1z94+2(Q00KmiaTP(hgjYyYH9b z@w@utp5#Mp7xHWWYuX=`6iHYwEp@wisenG?v!ihe+vY2+=+nP=qe*sd($~YwZ|6U2 zua#RYc4Y4I!fC@&Ip1#? zs0pvj&fmXbrUm1%sl4mWOXf{7Sgg^`^Wj}v$Wo_C^*7}IY`Xq&Zo<;<-=A-rR=TjH z@a2O`*83uR_BgO+bGP=UTl2E6Q0Zt^e&u7sp_22b>X?Ds>6}l8+TSVN5_~dG{$bUN z4Z5r2N*~v6ZTMYwM&x}=(B$BjCA|j@#2!!3&AiuNFPi2uZydJe?Ub3*ntKm9^V_VMY}rzNPGVP)+7@4?Q}bn= zj%;FzWvxu@`n;d9jK%G{ zEx#T-iq@}8TB!ME{qdgx8BUftt+LOL&zbPcPVB(DxBJ&L@7uB3&->+-6}RPz^nd15 z1a-^(QMxUtoKkh8KEnNEuW$c(V5ya2+{taKiR-q{u3g1fZMEi>z^rn;-Byhs&5t~=`E-cg zllPVabC`kXk3x?bx-TtCB2IPcl?r|0w>bD=>(c10iN|KWve|t)@ww~!N$F?K@Jw&+ zPu*yGpYz4O*aP_of28hsEWA+maDBJSlpv4)MNFdC0^bQlUOuw+rTC)abwPp06|Stg zcTwuW`^}ji3{#w}|2SPpdsdylu=8c9;PPKf13x=VP1rHFY4H|NM8H$>$R*^ma6LF(O2X?p7rmDG0}K? z)Ai}vcZIVwy*Jc2KW0vtpQfMPRJ)S7%5i%_{H7JB-MAN5`&DqPVSmn5ReP?oBWCiW zCn}xSc5Iw<-NJWC^zXD^dC4!E77M=E$|3YLi#3F|X0bRAi<8Ac$X%&#DX?YW+f+N<-lNVtcg=yFI>ocD zah_sVoq}wCzWFxjL^(t^)l02f zWXCtL!*s%4Ie|D+hmwZf$7cv0ZF%yz%AG^y+|@_AS$4Ocx7#KC4|F+`G#pv@;(asT&ed!Yo~U0n`NrK9x)ZlnGT7blQkzil zyccA8JtYacwmi)n3YVXs zdi2<|L_*$8B!PTBs`8W_Tzlg!*wd;sImUs+pBLSTw$4Iki90r z;ez~xoiAS5?&UvJ;m`c@!=g2oTD*52cSq}LKJG2|%K8>jwPO*};d=if&q_n%o6D2M zFW=Q!XOLgf>67PE8OX9?W%ps;$4BLTCKqe3e^I@!tX*@}ql0b{K?loj9;HmR`MWZN(QQ*XYyh`%v;A@}i$ywLUsbWQ{QIUk zM;9=ZJH@||juf3JyZT6R{p_E8lIQ2GU%oEF^55+_vu4XKJk&05YX5_V6|YXSK6!ie zQBKSKcV&E6&P8}U`RLs*n5uC7zun=a6}3#!#n{io_~U+v`-=OjPTSr+uV6U- zGz*q3De_sWzL>0x_9Jf&^_O8cP>gO`v0DhUDbKu`AX^Yd*hb<77wvqGQ0Ya zg6_KeZU+jlNFNW_TyGZ{5H7e$`smaaag}3JSKnJ~XpySMwVHA2rA;>sHfV`+s&C>l zE_fBn!}Zsd_tnxfeph`gjW66kar^JJ+{!ltR4HpM2M=QNd?cxdManU+vK2d-e*#;S{6(=MrVOS?W+`L#0Ok#B6B%=~%H zJJZihjoA^b*UGSl@7m=Uzr?$jC3HSaXlT7<8~S+t3gh&+gV#TPxus{gW>QN)poa4M z;HQ?!HyGqHr^YW2bayFPR5;=Ny9tI|u~7>bTwfQm^?K>A^GSUBS`5 zmCrUDa$c{py{GkDb41)euH&smza?A5cBU6=C0wgiI3(lvcJ)`*B@b@QOn&ipR?nHB z0*R)#nLCa>?tOG`C)-rF4~n+D%4}5z3GX&H>%N{S__0=8;bYz6yN)4klg#=*ab4W{w(s;`X(^Z6ES*a~yD@#>o;K+buda4U zOvX%sFk|lgT^A4PzFnQ~+vA;<&0Q9_xQ#1O?SJX}AJ)&71|7S1;j?3?^2@6?C(7Sg zbMyAWn-zzT^LH|y{qlVu=hSfAz=hB{%JoIKTb!U;lpgrLS=Z zYt@diJ)6jO)#KB*Wgb28{i_V#$NI2v9^LF0cK4C%yq|&rg4*XdgwtvbuZo!Ou^YZ(SBIwej@hgHIQ4l2zQ$5&d6_>xTQEoR=3;|ELw! zrdWJ>xPvuWcX_1E6A7=WZ`-t^|Jl0LOb(v@?8;=Tg1N>)6;fZvQdJu1w&ZQLVIg;rclo96G0BH%R>QDqrHnz53)tRi&pBgWMJzosqUtdXqYz z*CZSF*G;SpmOGEe9(Pz6{#W-!Z*26_fP0Gn9!R~6+tU>-W_V}z_3Kaa?JVNf-><*! zp#As7+mkgFl6l5oR2Nn(_!xXf!d>7-*e{+krHK|9lan5M3rVT=Zk(}&!Cvgr-gFT* zmjBVtX8%6Q)(Y3yJf3qX^%MJvB*A0Lt?J7zP1E|56mGJ8V!l$otNW5N@6T_&cS}l4Te9`Sr5y%~ zey8tFRZiv4cRt;tY7jfWIqA~nWtab)%~v#I);ul$`N-2I)dUe1o%SZl8~0exu8Y%o zdaH7iz{4ib^Gt^$OOI_cs4R?@TWRuh$%eU4F1==V;B{4bZC|c9_t~4&d6%y3S-t<` zzhfMGRmBh7ikR^rzec_1S0wx4qvnyCoAos|ELjz_@y(-Ik=e71m5VRV4%eH*IBEX+ zHwW)aE>TEXzc}>Ih8L%AR3E%^hI41(nUg`bMl(8Jq^?h%oc5Tt`u@(-J=N@qopd2wn=B>qif=&UNKHQ@5K8}Oi0!yHr@7o$7aj6OV@R5=XrB4 z@a=!ICws=EbnhLu=iixUrf<0Z?y-LLl1C25HvbT*bD8#%_3=iZlS}8_*YF6++ox_7 zzUF!6!!DNf&-!2Vy}T;Z`YN*W^Msj-!LIAIj^25E_G|G(pN-oe0b6*c*xT=PoEPZ1kgIHm@`0DPIv&kfx8RDY zy7wO@{cV2N&+Bs-ZjP9#-V^g(`+(!oJ$8$XpZ&ZbAEj~2z46q^h=8m4!QZ|JAFk9m z9k*tCo%_S>t}|YFrd#j2G3#$_@KM(#iXQ*7A5M*|oayg!+r#VG6^2)fuZk`!?mPJ7 zlGf4E_aUjt2Eof$_};&_xVT~_$6k-hUEXb$ym@Zt*ZrL)aKQ8S=G(KDsO{^{Hv9gg z>)yx3JnxjgO)IxbEXbbc`*zz#$0z+i($YT9d(Cd&F?YFo&5UV(-xXY$eNavyqT$8k zsf=x|PF(5Uerjg6PS#h`-i7=ryctj-Vxrvo)7eCTdG@^^oywDMX5SDv@o~}|v$TTb zbi)lgcevNy?=0O_^grV2(ieyH&K*PrbEZE*Oy->7vrPt2px1x^Mh*Z<|4 zU=rKxRBAW5*lu}tz2|59d8%om$4+=`myU4|OTR41>5!MRP)6y}UFO?YHeFQ^4)Tb6 z6~DYjK(=99NO0!<+RFCA@B3!lkuWv7vf#h|?O9}(@9Cs8=W8`eop)cQsoeUuY?hYjnz;8t9DAC-YB{XxxHw5XBh&Pe zkLL-OpW;hq><({9EtxUf!X@W(-ZL#1+q<0IGW)td-C|j_?dh~Qn;MZlZkJn?=AG(X zeP2*EaGOZTf8EWFdbbOI2Be1?R&83eVeZPA<*a`f=S@{=(>WVl`RT!<v#!6fw~>k{QpzNBB-t+qk3;>EWu9m&p1Hzj8u_P9TlTT}h?mgCdrUi*-;`;AGt z|M^SaVvkj~u?-+b5i|aK5_B{Hw{9Nvuf|}QPSI;gx#h~92^*C(O ze>U(B-$T@ATe{iICcjvsgy`iSp-xDby;f-mMX8fvFfCUU*OV$hUpSlGELY{ zo|ieW@=)=WM?VW+?ejbNmaAKKvuBY4+wzR_j@m~LFZ1l}2{2-LZZ^O2-I@aoI(NHH zEnRUSp;@r*cw9<+Ox=nJZ%W<eWk=w7t;^0uK<+L#VVBUA1jkaP9 zPp2se?3%r2tBBiPhOT4#k4Q%eO5NNr<8i>u>ufu>PH7d=*t>2~UARE%hyA;gJNL-P z1a@7B+hHmuGpplQE=$+Ft@a1Buio(W?mgd;vwYH*$MOzA-FpwlIR1FFrR3SNnzOp6 z`~yn%H@my{ZF%}=i}r&V|83K6zF{?5s&$e>C}M4L_j|1$C&N_LHkL43U->Gmwc~h> z$26y@zb+Su_Lt`x7{3=h`Xs%#$jVZTZEA{CV@y87d1evTM;?3boHY2hu)Cl|L;U=y zBh0K>mPe`%bzj_O`+dno##hU?a{v1EnmJ=)ea4Ho6CM|&sIAVadhlLZyu);HWy;*E ztre}lp?_!G(OFr(D@9I__ts_W!{0hm3O^UfCwA4Xlihq$<%o8K!1M;kCo#LD10Dsh z-zR6fO?0kkzs=2lgIvWXck!x|5^Lnwt^c7=zs=;rSgbjQDn;RX<{F)S7!sBqrX9OY>OY zQ+;<~{{8DKmPI{rKgN1=*=j=}$sK!ge7< z{}x^d7q_i_vV4)^o^3754oX#&sJVvrUh>%~=O&?fw@qe-a%cuy*}6xUdlsrOgy?4f z-99ZdgymLC!Lq-4dO^8TkL}vawjJqexw_l+-=CV8Tl18vmmG}#zWHUz@+{7i`p;_T z?Z2LRO+4$ARQ~d1SNRIK=jlet9(K68zpGQZKta7z&gaOng%Y&^4-=E&AMrik^aDo@+L$*H+9TdcO-xa^*$tCHDjf7@M$ zuf|SJ*#G-NZ{&tu`Z167{Vy$YI(qfzJV*D6g&S*DE?xXd`25tZi$DHMmeqHhrB|Zd zePr_8_RlKc_P==7pr=};q~-ofso|yLd*2NUOn)xX{Q6OS%d;s5xf&#$yS5%xx%sn- zV^-cz899I3oiZB*jD9lpUMPJLH09au5Z41<5#i@5r>stKuhV5;cKhYYN2T%H)@Ss* zCeH0CS2=89gORj2z_?KypnN&lSPAH6$AUv8Wcxk2UA zq2ky21{-$!ENh&-b8nI5iQAJ)mj1caq0KGbTJ6&s^rwcC+j(oc^G;q(+od{Bva?>_ zyc8hjUlJZ)*d(y@6oUcN!e8(HtNAb4by}NAF}lp_?X|bRFHhO9WqMDC$)`0n<$)Vn zG%|K56*I+|{Cd0kQ_!359GX3sS8luUPW`U#2F^n1)Orn*Me(*uN=M@_+|Hjpb>)Zm z8`@sBd}T2bXqGG2fAjFy7VfXH)6cG6KYOV}ynX!su-X6S+SmM*Klp2l_t*IO%l+%- z^)vh^%YHf`E%{0Lw@4ie!`?;zQZKAFow~E>`ee4b_8T1@WiL+K*Riob^0@J&%QHT4 z+TOmp;K{`t)}n5Po;!KV0=nYA*)bZ<{o&rcLiz9S8c80h^5D*ue+svpJaGKj<((B5 z{zb~qme-y4Fr=pX!fLBu`^`Vk6}u;!5f(m+Wvax)I;YaQwycS7er*t|td)E9qwMi7 zkE^z~os(YYoLoGyIp9vGl}4@Xi|cdDSxz6;F}u1YRO-*~T3weuzu#A#9c-BIY6v%=*Xe1ygg-oNX#kH72vy7P;PeG3ATn z-)zg+3jsTro(DJLIV`14 z==Mp=r!#lV$&SCg@M)Q__^B-uHZ3>f@=(}YaPr}v2JzSDi=NMQO$k#ebNR>fyz?vF6h55_Z@8YIEwX0K^-p$lEyUJHYCia(swcjof{k}^vcbIna)#|r z30L1{8o8UuuPV_0EA-0z@Zyc;JiGP1Y;=*B<-5HyzstY($*r6*n=zAL`1Bv0hb2Fz zc6<(O^WfwDe!r4;#oosAGPfhY_ePpYPRLD|Id!A+-K#hCZ!K@}yug}oad}V5zDwnz zJ+jstg-;vyOU@=dwOz*DX-LF0U&NlDe6nI$l zNl8P0bxD>~QDN9e>j$=OVQGc_VSfCzmKrbEZ-0<{8J@B9)^5w_^jVL*x@I|RUv89b zaViV{UE`y%RfY9N$IC$T(;`z?Mctb7-&lL-%GBJ~T*YpiReX5PD#^Kg=8DT0_HVJf z+oWju_RbrppbNdt$-+AOqjqjypk~UuFZS4SVa?xZ{NEL0<3vAJPW2Dv+n~I)PvmIm zzQ<}GC8PBDDu2JX&ud^y7MRL-J6WeeU)~@wE8^d2Im@dLYF5Y^ZCX-XuWdYK<$m97 z7uvO#$4iARUzuW*e6s%b=B?s7dup|spPpbf-}cYwt;lQd;@y3&v#hnQyj!9^=kn*8 zrFC3FMxl2%@=zUYq1a6YT9)Equqm;Gn?#bNgnv#>Q>;?)2Q1_r&Ct=;O#rnanrPucFp8Dd?SDw8bGTAR8?@4;!)T_{QD7g_3x_9EYXJ=*l|1;b1 z`el4gJa|hlCy4W#Kw>k~>^UX&7dvleUe&*UNiw+I!b&&YcHdk7)3PepTa13|y_0zI zLSgO`<(nDyP8YM6X6dnJ`0AN7nR1F>-5(xvJAu(Ackc1*bv66~-@aD%xpm*zQ2tzc zr72^A?zOjPqoTGxS!I#O{LN?WHvYQKvXYzMw7B(LmcE{J=R%Pxk3yVQC(CEmcf5xg zax|WGp5Wf5R{m7yf0}`L=KdV%=PcFj^CK3k*G8PPwLJGRR$X7G_y+rGU#D$Ze&@3y z9Z%k$*Ol}3Myb{34PF)7p0m0ZEsC-Fupztk~DG{<)e4xo008dwwZ-gG-%BW**Ve$3StX;YtcbY_hX0}a#z3M@JMRmJo&Qj%_ zoGt|%0u{f5BMx_DPgGg7_0}_^z4tu7?)7PVF01TT+i#(I=8=V;%&$m5wbK&e|hRlL7CRsDY{Qw%x6xJyM6QUeCu_x zLL5vv;Z6baC#=G6XeZWXrq&fi|8Ge8y3f8a$s(or(`}3JMy9PP`r8&iydx>MRy|i? z#^w*zpWhx`I9sWBs@cC;S+gd%Z+y2_rQ+B9f9t{=XR<~_JX&7DZ+uDZ5YxrP=NlN6 zJdWMhu5so(Q>N-2a_7MN77^*&HkEap_hebCKd>0zF!kQ6qW#Wo9izs~xH(zJu7oi# zin_lM+_Olp&Ubm3-YxgIGatAIlmW}s#{JNRnq#aUQdS9aOIoQ7EhICX$eMV z5#_lo0_?m0r#SWthpOt$78ibP_`$nJ`1o&jx6+f5?`};Dd-`T){!8u?`H!r4{FN_$ zGA>YI2uXLD(ibheb79gxv*%1KlJcJnj;uYGZr*fj?UHqAC;d+D;b%|f+*&v}?_Pt@ z|B4qEqCRilk&ibn%_Wl_g?k1T@EM-o75C-e?dR%+8;ffCy_2V_{oQbT z`FhT|hBqH=nJ4yNEKWlF47(Q}gT>*0qT4t9y>LlFuz~l@vBwz(kC&HksFv@OS+U}% z;J((jJf~F~cFbhFYn!8)!4+~xD7Ry-NPSCCS*`JpvM}e;`rqpkB5$R`!x`4fH!d@2Wyr^``_=K_)~Yi8yRBUhuWM~tXXv%tVNzX_Pq`)x?j78lW&#q^z~Qg?OPK0LN!YAO|QvT zI~^VGSvLZhuigK)=B?ckhLBbEof*j&{QgZ_uOfNqtD0$(wEUt7*&Vtv>!+muD&BMU z+Pe__;@Jr+@*-Cqt^3B=WXXB{ip+c6L!TMB7)pxbU7rVCyCkC|8R%wWomzeRdibwJ zylKbX=W?p5y#Kf8T~Vm0hPd zdm6Q${l4N=W6sjYCl{`t@H+Iyrf*&|hG7QuJedFMFoMk2U36PS5v$q_9m$=tXkSJm2soV)+NY)?L!C zx|F->KNrKyXWOmby35*6R^4*L<^Fq-hO=j*#kWRRo#Ph2^1?6VPxt9(+k-WpigC>r zcG~(s?ZeN1fz`&9$J+lMIp0(JCfYJwr}D+m;%lMbKTbA185F}S62InV)nW`1FL6PMy8p8FHeFAXqz>n*j9_xi2ki@XAR!=+y3mLzSO z;}f&y&8ARUcaJTmtTO}|ay`luWvp&a<&BhgU^e`fzFI7m@p8|nhndbh{U(Na_0(TV zwUxRM$E(w!$dZ@A5ToDO<&$31pn5ptUr<{{g(g! zw!wEl_k)}+Pc6+)m!b~;P{H*WJ&wK)78@^ko^cmH_}l)a z)PX7M^V@&zk9m4eQr;=C@OI_x8}1X>EdAo%?B$uorl-a=??+35VuHEm>h28@H|D3Y z{WkY=zoC0y(m}Jsrb;FI<7Nl{^7BHfpK5GOmhMdaU@2So*KX^J+n*HkwnuX;v9IAe z`^x4(oy=>=$qK$QC)|DoPh(D*;%xG9-nPTtKdy!p#+uI#kQF*}p{D-hF}9QHzr-|8 zs4Vn0)_wbM$L>y6*PDAe9*Ky*?EaR2Q19Gr$3^7D4vmiFse zGbc-AcsAXbad!F9w@+^e-w)UzkYlpIf1+GaXJw>!`T7f5q8vNt-YH?XyffE3x!Qh$ z59?;1%N)AtUOCfu7fsAr>-=%vYKxzNOnFwP|L)U$_)5%Xn)1?r)55J&s}}o-wCR4! zx-2Wf@_E9td=AZ?&u_Z-C&pFhg?xTr)cI0$Hk0|q2gmoG2~QS0{v^^%=~>j&=Vd#u zPYIe7xBQ=P(wj+}cCAm_)t9+pYUqO9R@~)3VjrhVOk=O<^T{y@$xwcgEI7jU(>IN{?tk)--wE*V%J_&eFRW z_QHDc?P=T2pKfqE8R33)rl?wQlCE0w3Nb zxowv(o@U(qn&FSM+w$-1zolojs>oYq{FgA3G50-bDR%3Psm`KjdkVXwe$N%?crKMP zMPGy2sV+-ad|N=Z`GrKjhhMg{eq8#IL8q`?|Alag?3zyvDe)H%B*x|+_pQs1-Y5N! zH^F7=o>-wB^S;iBydm`cOwN4~8{x#S{`HBMWDc8ee_3&4Swug34dYC%lGO|6t`Ta< z;Cqw&^FxB?y19*yy_8h$ExP5ywb4j2v|`GUgU*KMb|p+?S}j$1Yx=dl-C4I|$O9D7{mi_XGReIO5dKTB>wrk!t8!DvkFvM5#C9eKaboo^A zjtQ#SN2Ie8UTqdzD6Mw(kcNr(f`3J@&3b2^;5r{8#$K=-!lo2`ZXX&umT^h_OeCF{<77%DPLaR(2ZaAq3PVj8*-nngsk}`F=O_Lp0n@6ll4EGo@;4seAfBK zzVh(aq#0G5kMHa+%u@ebyk*YANhP2D2dKE8|F*yMr1_bDZy#w)y(pFFQuJTR^Y)u( zJgV2L|CYU0NZz5rd^WM~#*wqZ5pmsXn^+j#r_{&jeU}z`zcXJj@ZLn;U8nCSKG+`q z*ES+8;ZBQ}K(tSxFuzJNW9Wxx=j{6)&6HZI+bDG)`ksq+Ng|8&46(&VXO6biG^Awl zG!!)MoImex;g(;zucMYUuU%!&9Fo>{?jG06w76X#9dajot$+RU9q%mW`HK6zcZM>} z$yT2r@hB>@_lrME$ho7^XC@bga-2x?QQEHe>g~5@^3$^V8}F*j4gBvRvE;*+Hwmxo z1GZhbna?B}+68rV;jnjoNL#x z)70vVIo@o@a-4_p_6EbGv-g)U&syWp=XmYM&eeK5cSRP>`mg*``&iS97>=zW`|>;H z=3K51Xq)*l~i7L@xKByXQqJF}!dLyz}d(M{vz7k<;&1N)v8 z_wVfS&A4=QqvHXigq1HR{1V}$VJ937zrmcQek zulXdZnOjoIAX!t}_{Sj9;_%M6`)6!!P7YvG3QOAljq`^7>Zj`&Q#}Q9dOi2rNR>@m zFSh@w+kGEV^M7AErv@&Xt`U$SzgRx*)hUYrmZ@qpKTk3{pfPjlZHCIbzAUROFHa8I z5HGT~#A1q>d4I{tg8B#7oW(aatu}FNX7_Eb|5Ntd*3WN`ZZ(%kn#aTsPo+4RURfot zwQ}N0W0CNfBHP83KHXzg>63!V(y>N!8(i0)6t8}{faBVV*(cN=tzXb^{pRVyf~5I( zQaRZTW`BzH68)iV(4r>rTBg)_wp#5Q+cCx_YbYCC*-Z~yDvK@F)R+CEP=>|eAtnk~6|c{O|5 zkC(HHPcg0Z+Pyn8VgL1=6N(l&my`y1{SDYQ`Qn;#(QPiv7qR#q{3e<`i?>1A{F;4# zx%T6FV}hsd>5N*@{JqjXia14|O%3>rBq&cvavfR$ylNC;0HyA4+aX!hF7eW9OY#esiU} zXKm_4J;7gd-kO)J5nr+)G@N&%XLUn$4^z1KzRp>%{p;mC_`Ifzc3!HVfAakQgc|pG zlefx=O-NofGnVPtn-vSM;9+Va44tBR%D=C^xA-7`3(cg+7jMIrA_^6HX0)%ul2 znUb4%Z=5NT++ajm<-i|kX->_l(wpS<2x_H&DpXmD~ zB*5D0c877%thxWPa_slSnB;^yPF47=DXJVSc47agR<~`w5@t*}((NxSJHNfYeWol@ zd2d-OYwTKe0|up<=k1bAo0Gj}xcyJg+PU@SWx0Dt&G^cH-g>aEqkVm`+LwzHTRKZt ziE1S}`2O5-U-|0cCsOH)6<^94U#=A>O5AsOrNf)=foEpN@jdYD&FZZF`S#6y(eE

zfkqRTTsCt*<*R!0yZ;9pgCBgm^W4r}+Zn9q?VhkvWNqH`><@ABjd>nS@74uY+xjc7 zd6pOQ_reCX1nrFN)h@j$lNK2Z2<$(;DaYfK-{t$UXLO~GzS5Um$+_uZ>X(9wO;-i7 z@{Sk2n-f$c%Xp(@WRhSQUG%U2Do0nN!?4Oq$CXueCgw zyX!>BLC%evCn-)_n6p4pHg?IX?T@B3xXpEO_!?fRQhRjC%r}`FIZ@BUZ_7sBT78=9 zvbeBBZ2GJD-d9&j?M=y9c$dF@>wK-grSEn8+c{4b<^}6*u!~#b()D;LXX4jFexs?3 zC;GiMO1*O4BN(>S8qW0PRM)j-MMF( z@B7^zDyn}{wZa)y1=4p*@k@4nj{fttj^U0&bIm`!9nrDV!l!M!C@qx3!LrMKqU}9( z`$tNz_s-)!y})Aij^EmW@j*))Hr)$q)q1+YI9v6M?%AVXLeE>8+D526Gb>m`R{MY&JFXtP}{m2ZrDYTk*eYw-rKNfdrf3#0oY}1B^ z1>cH-zBbR*KBsP%-*D~PDw%iZuc`3A`lNP0KS}BRcZo9XSLKT*{VG5BeB;}WlWfs)Kb&lBU1ssM>USp` zBAY(`dUWeTTH23C#VZ%;d^?-oYj(MjpV2?}c}V@Ukb9n+`kce{#6K^(*HhGJ=Juek zX5ta~|HWn;r!EU0nY{0?*_JQ+&E}Y&5zE{VbFo20GV242(J#%s)D>4)Ir449R9=Ps ziQcr~$&{1bu`I_r`S(n0mtHBXCS@(*c&tVvf99++c5}AfxL+4@uHmS>za4`Z7|L$q&o=82!l7pL6sy?uM1`~+Pl)@Y}u$96^A{w`c~tzf^? zxhGL?%_^p~G3@TCY}^>7yGzGK_V(@#fs8ignkx-8I1ik@axzmi;oat|QNPylK3XWn zIlbup!+lC2Cw*HV=8D85N5}o1?Pr)f`SvQY)2S0BA8nd-_g=E(`s?f`r}2GLU;b+I zx41<+I%e4U<#TPg)@|Ybf-7O)Es2~zoa?^KyWYI5K;T}*mM^ChR0^jZ77{3Py&ZdG zjj-y=)pltt-sdge%IEYuSv>rBuR+4AI%xBrIKSH^~aIdtHsTUWLIl+zsE_kY~g zJMdZQ`2i*st2JKfnTG^@!&}ez%eJanm050i@?q;~mRK`xGac^jIT}i9c5AKLc6?U# z7FOT;^1oE32zNc7C_QiAnnPi>8!M0Qy>jK+c1^AX8I$jf=ebommR{K(cRrCl;n)3V z{{{WnE}lMnZp(?h%DXX*Y7*%lSKhQ&*RsvDVfpmobyDnkANvyfznhJ$E-5V+``dKT zYksN6`%~K(nOTm#H4_sk70Oe2{cn@^2c=uD_Ow~J?mo?SPV(36Jx8_`1fDK=b^37G z)blpKM1<^@{c>!`nLpXvk%{Vl0Q%Ey7r+aq4z7pGlyGG z_x{eUN;vMiKxS$7golkgRA=vh{Nuq(kKZd2Z$BxHs$Dhlc2KgP`AjK0g~qMdcH8B$ z6xD3I@~@ZS>yB!c({XaXQO1|8em>pw#r?hHnyXor7vGnh)>)T3D=|<+)TvYINAQ2i zJu>?PkAK+ujirG%i|tpi#(p}NF*il`*x@yos@8q~zWCEgKgM_#(KioHg`X|c z(M*}=X16HwSd!y&s4Fyb<6(wn&^CDM2p8AX9Mrf(ix24uAPCTnVQd7I)o5PwZJ32c> zPaM8(XgE`}veZ5DiqRF;od2cVdU?eRQu=1a9W!Bu}+J{rms%}^vwAcSvWyc1d^qZc4ByGN5%-Lo2J)msw z%{@zlZS>t7&zwBwnsKt3IqKlnw;f+~6qzm_Ob+`r@yOle(wS%Py18svlQ;jif9Z_F zYG)SPRC04mc<<%>zEs?9!;`!NQ;UAR<~V-rs?tTH#QNqkMTWTvzH+LulKuV375>0Mf6_vU%)%~`J^mReLtcyhH}sWm+k5xsxM?$)07 z&p+Is|L}tT`(6L-7ryx?>s(;=6(6oV zd)zu@Q~f`#hbQi4Ei#o}ZT8T))pqnaBEN5Tzuf3 z>Z`>^gxIcZ$oZMNvY2Q7ryWznt>*W~7e9GZ^X1$7%3$>kbs5)HFW0SK#u#!oP~gq7 zJr)8dTs z{_#>@EGbzNtd+1=+FZN4^=7QqpZZ&@carZJ+j0i~JlyE7%BJ*@ zIC3q{T&pQ9Fze3;rmGW7?zeUEPb}bA{_?hbdNu3&8TSHuc<&#LY!?an&-gdy%$$<8 z8@{u?tbXJmeYkMpo@;A==)azm-M8VjmYvL*fDEQA@5tl2(!!e}uA~b5^V{JX@Y{E3 z$k7Q=8hfI;xY{Oei+Qv8M#tI~eXA`&GFYP_e ziyAVEj|MzfZ7$wk`O{RDL+{lNCF8|$9}=(3s@KdvXu|l$xaYAUkM>%HyL;b@EbG2D zjYa?Sn`23x9#7ks-9B^ne&(gDWAl$Yo}Sj$r!&P^=-$FU!P`|eyWAH(T<>Cfw}tbS zp?G$C)bD`Bf9~AMQINd6=6L1B=M^=zX;JB`RI|==FTJZX@9uF0w$q+b5zTH}O9sgg3>A~XvRUh*2)iA|6hVReX)z9g}m1blf%v~tO^xtWz*d#}dUke{_GCnG4 z$-JYvgC*P{W2bTRVO4Es$u{lB``>ky+znaTTby~5$yby0jc}BBbj-1|AHlm?mcQ6- zQS?e6Qfap1UcR7dhOU3=USwE4V%)9Hd98L$`s29YHUh6A=Nt^yTgo4{^wJ|w)`!3N zd}7wFb8%Sm?})$i@6#;5&d!nQQtvxuA7xV{w&qfZM23%6$j`6G^v`lk?U0Ipr!@b_ ztJv9l5=!H?rTq$Zn`2qO^IlJh+TD+L=8N=Z*#6gE5caHZ-NJZ34OO?|ZF3fR&G>RW z;dDK_&yq9uKCuQz`OTaq^5gc$(p@|KJP(CW^ggvm{+!c}H}5~LN<6=E>l^+vacw=% z_8y!x^@7=)8wM_(>>G+S`l|PIDf>siy%k=o{p0f-&i&cft&>)ey^S9XnN_BI{URPJ#4EUd(?4DEb^8AoxAMX z^+lfSp54EC{`4i4-|1stcKPpFWfs8}QJ2mSyw;+}jkC0;9x5z!n8*G|&;Ig%{y#P` zHZT5#Ou4mDJ6`oDsG=X)VNOf|Wx;A1lYceT3v#c|l=Xjf zwA1;p$Bik=E>F<#o{=-zS@d{lcX96SH~Sp5|CH+Nkk`L+_P%MjAj@>F1hd1=UCSMr zCe&T9vHz%T_#|4giS2xl#>Rm7+_>HM*LR=n5$t=q|IciNhUAyFHx68==->N5eu01b z5t}JnxKq>Lm?uf-Da(s;ezLs9tGmqYQtA7i3W<%hc|yq{iZL*wdno) zKNGks<}5uMl*CcnE?NQVW_Tif^hR2|`dvDUocg5}5QPxV{$rDi4R z$Tz1wy1Uy|AyG5$S@fQRHu^=Kwdz}nPbsh`TCD%B@!j(+N61|b&if%hRe}TFPmB%A zeegC)L0M|=k9d!-hO16ZoVHsr`i#==YW)?#Y^NU_I(~sIwT&Tov(9v_3@NAh$Rxds z2RZ+6ygiyQE#?Sg#82C$BFV9Za}GUy?Nj_{o@n3QPjXk%yHd~cr*C7P)OAu~>1Bfl zjk5%fFJ9l?cVgKRZxzcY))Wjzv7PK{NIx0v-a|=Q0}8@lQ07a#urRsPY(HJ!v(ED&KhcVAJ7OIfmf&o9~HM~5!5e#w#4 zI%1cs+~F(P{&P;JRKR)BM~DCXI(PU@(Z*K{4_G5a9jssb+q~d36^xsrv3u8=-V0qp zn?kq$SQ{aH_U(;Zdqa%(uGP>w$G*VemM?eZ60X-8%htTvtzF#t!bovK-PbLvy#kXv z=bQSqCcP8u&+}iEF||@n%(GR*_rhuMIF=GMUPjMMB~b=XjyY0)>dv*SwLksp?R;&U z2jXn6K6u`Hf49N@*`|!8uUhuqsDsN@>IC^X`b`$#-5cDMVkva&x@}V(Ggk0BG7kc*MGf9@0t!rD)Q^3 zaa?mcRvTuhoLPIy`o3#>)8REIeR4OhS?RZQrb@%}%=(aJ9fEVC+q0JbSN|n$XgtyQ z=mM#e)9+sX>|(joUBOt4rOux-slQWgnp@|dUj|m`vwT&mJ{PUza=RY*%skXK5NIyp4D$z9@{?7^>5Vh{8eonJ)vP;OWloZSG9S|t`uxk zXL1tRZD_r^>dk}tuB^ve0zS9Q&!F=Mv~Kg zUT>^?+-oE$5-a&;3PWy+Vs-fZANJl~geC?^e?M?wVdFL)jSo*lT(xsb4Ta_8E32>8 zsZWuf`^MAlbVAO0*Taj0FIn~FZ7(s~zhU3)7uRmF^6PBe9P{z$kLRN2_Fm@Q>{WHE zb)T9~;W3}-+v8L$OZv7foBnrOaYvWS+T_DWrUr7~nV<7Q*(-DTSFw3k_J8-CdieYJ zd11xm6PKoCsz*)ucip$UJd8Wmq~KJyrCQ7rF}no$*Zezbp0lQEJiB^qn{Py=w7!7f zy_Lep=CM~S7C14Jb-%D!gKb zV~Iv}-?~44L^726w>{Hyt7n?|?5AnquLb%=HOmZ2e@yrMcHF&1M(yb0$-6!nomk7h z|M@|i2U&(Z6PBhP;5aq^qtsrXH=<0IjK%>{7ultL@Apdn*=xVY&vVz*UoW~-XK=0! zT6CasU+>i*2|m6%8{=P_UTK>tl0WI$|76i=JJU*f?L$Sq^pB-1W_c#U?_yHjnKHlK znDf!``h(kjCS;3T$`Y`+!}aBkv+a-SZLtOGxbJ@2GehojL)9{$=Z-5Gr7L53?z$a3 z6SHHLyKC0h3}dSb$3t%-Y7dyIEmmo1V=uql!M=U+i<%7XrR!&ZJ#k_hx9K^(WZi(f zypvY6+j95%TJ-T-HtnDEMJj#e`=2lGiCy~hev6#nk+<2q*k4p!uXw*S+Un@WVAhWK z(!WcY`rE&{nD(*PE#|PjbHLv!r7t`~QgnmjTYIqxA?I@^H*+2N$LG6SNdI}k_KVt1 z#eS}l&pP)iH*aBHVX>bn{y-+n6hDV^62BO)ztr?SuDK@gRlxkn*&D7ulerZVru5V8L}J1uH? zj(4!u{5=`@T=KupmkWDbbl#~Rj{YHZjjj4nohaw-Al8e~p1mTqIe(AT3)HiR@V{9x zeOpdVyksh;g|+&Xon2j-tFIlssru^SB?tG`(}rLFoxY~L^Y_Dy%>f$SGph~zp0)py zNpV@c@ITKd$(~KkX;LD6sgAp&+r9MEXME31G0jLn7I82B!?c|Y+&sOhj};D&e}dh2xEhS*HetkfLQM7z8_tRyKGmglVqKedrqzVn-4YG|&S%#gcMv%L<+P)1!=G}-5>Af9S#}1O zbYxFE+k6e~cz9TEQQm(M$u5N!W;P+etm?ihjm@*F3_~7i8(f}oYk)3AdcA{X_nD&n=$HfxFWW%dGG`X}&MX zWNF^wz2^+(YTo+5S)+YxY2})g?bDld^ZvVBHhy*T{I|(#-*E)+6mb0XnErLjx;0ns zZnK@J_C@=rfTUrk^Mf--m}gGgTHD@c5wt8W%4-q#t59C{O^knv)p-+rQZ3}7JFVNY zJ{BAizv~e?D@ij^^AzK%b0r#!uB0D+yV|&IPtHt-o=icH6UTOT7|&fVZms^`DX;L@ z=N6eDx zeW!5geZT83zI)!C@8YDf$9rdc3ct+jT9-Lb)=bY{Ekb7 zCCth_nC7bfI{151;k~FQjvX_0Jb1?Yb;jPFCC3*=9deA%K7PCDoxt@^I_dXxj%i=< zo08;WZ76vnz2)2P@U4s1oZ%_Ui~fD;uKVL1pHgM-e`Yym(JOT8O}GSK)5Dncf|kO& zxwbsCUdwvyph?7P4qmB!wbAK*!nd0ppRj4}+ul>jD0fYiM>6E)Zj0o@-)1Q%Oz!!# z^zRQhUI{auC4#?F5|6+9d2V7yE2C40vX5%<(+O%WU#4Y$U%V!|B}ybcGjijVH)kpy zC9IyIKkIkkzK^QsSG5KT2%lRq@usGPs0zPJhrR6C(_E3$QW`}}7TnnMS--*ewH4Rr zKPE@MH!;o6D9Sw)qN#Me!`Zj%QF@NG@?O(-Ggi60)hgRDw@5wQ|9`zE$AlMCuW9UG z)-e6b^FwTZj~m}z^iWZ-rmoC3Qf3}s+Qf||tvlvF-Mc%Zbsgip$g0#p=}%4K9{YCP z+dpgHYOcb+L1`ZsZdtZ4IQitF^UIrW?h{<=aHT)(AY-(-?309R0c!GFR~|h5#_Npk zv4vr8)Qz1Tv*JtH12%s@7jc6h1%5Y3opcQ@Z&Y!$a{bh{?P(=hvs7+p=vvn=`yVdWZZYlJp1@2ZXzlsGOLIr+jv zgH)F_9v6asEpEEatl_zChEeeqtBh?r=Wi)b4lK?sIZ|PNxAgv(hPfwIzFc^GMq$;w z;J7*i*R5am4#egQPh7t^AY@r{>0=QEKCUu%_wetsHuWFV!aKKJ2wvZF|ErwUzqH~e zC)?7KQ@UQH8cWIkHq=(JSzJ2hmF$}`?)hv=*LS?_+Scr0@Li9~qejwxiR?1dRd2HS zFFyVDGWXl7rQdGEA5Jd(ZC3s5_5L>-?DO_L{9W??+bjJyYwhzkH+(sI=D_V!eJv-xm088- zYYf-UuokpkbCBcqCg1Zm3=zrPU%lV0i>i&;@kzj>>2bq$_iEAY|1BqW)ij6tJH%XG zEcH6{znm8Hs}Hixx1;jRKh0cnb=gVYi7Xp-T|B5(+{Uwf_1TsgQEOTouLymJ)3JWB z|DMxnr~E%9?j=)Ce12H?`-lFMyo=SoMK21!|6aK2_GJ@?1NKdOau&WZ_557?@zN=` zec|#x|8OS0{^^pHhktg2=Vq$z@rd|lHBsWmfoVIw^dBzL3Y;Jw zSNV;j^&I=M3A0o*^bAe1^{#$MJie=4Cqnkg#5kcl(OT8sMzJanWI7pcHAv}B;bY(N ztli_8j(Cif%l8e8zcPI`91Jy&SYQ3-`RnaC$lO*R=^{ z*PhN^IJGRnkM~56n(<_xP2XQI&-#3zQejIAyY1fvAw1vNHIqfBmxZsJy8FA01e;|0 z?B^L39j6x-_I$nNk{SHFMCG~dkvcYu49$wJQyEXVzyDjOyuHdV`8c1*~QHm0!%izS6?%^?kLOCW`jcPn2nBH=8vvSwDCkA9qdcOm**J z?aAAV)t6QrV&e5+pLAK(=&jU}QzsRsOnSFMr;2-bmeFM4FM1E3@r9i)U1W9i^|Jjd zr-Z+qJY&=Hy?30`J2)4;S){W1-i5QmmfF+$w#m6@KT`Pga_;I|d53?6``r>dr=+&k zb^je{hVql;f1gXL_;u!P^$)gQacGr&*N&fClWPJNM4zygxE<1X|5Fg7LS*K4OV)1J zock;H8{W#xU+vMkeub??kYtr)K!?tpcs^l2?e#0g1-FTIG*W# zeO?kguddJA{Ojgh|3&5JUw_cNk!9mj_mwXU{Ql~yDFrQfnK$MuIu z|Gxil3X5NH$nN}AOAfwxq_^hQ((+W1tM4DqV#!I?`#8D4HB7~eP4@hk=|bfug_#8p z=X%ZN{^|7e^tC6hdqM)8)_e_rY5IApfbZWgtN5(XWM<#CTeO^a`t_UlW(l2`*`zej z=i1I?pH|xLDh&=kqp)M?s)lWIEf?!u;asC9eIP*lyA`wNiVY>kUXwKJCOH50WSDnJ zWXrmwMkWzc&h=k9g3tOgx396#tk}&|xVu2W3bC>*kCV>n`F+aV zr+aB|+|Dy~p=m`2H(b%?+Ep_z{+q#ryKKhGdjd8F&+RZyQec~2_x0t6z3j77a~8Os zbL-V@>*4v=`F7v)qQiUpm$J+b5D9vkWXhnq{%whcgW>XK%kq}Y+piyAJ-*~&%?oX= z#LObj$yIOc!~?G|NIAqCU3i&McIS!I#`O_fjVDyfE?%X+Cq6Gk>mX7n5G(R-%UsqisRr}qq@5Jlq8JY3P_A0KS@0RSG z@!(Nw*58@4E~jk%&2V~B-0NmHvDqpMzD#&8QKsL*?|$OU&aTRQ)k# z+m#QpeZJ*}Yu7wb|JWfvsd&Gf$|}vWxA_x&GUvK(GSZ3?*}?OYebt)sp2U4K->QFI zZJ(O>?(YFMjnChAL>KM|l8a+nklhrNXR9ae=^Z`w$jQccTN-xE+qFYa{B|d2c(hM6 zn?^-R@=UXi_gCqcp9*5eFYd=py%}1*=S{7OTKxX#wHE0|59Ws^?D)1P(d}VJh&``&&DYZKB$Z<) z8zQyxYt~$P7X1C^_Ofk%+RbubURqObpBC3IU}By9Q}unE(}8FI-JhC1o7r+N=;ANU z0G{s#;uF@nD<6%`ynJ}^+Vss?YS&k}CeBDN|19>dFJbFl4_(0usV`#l7Tnr@W6QIv z9Qs!e8>_WyS}0uDP@JyatM{xxGI@rN$B(KDLeYvV^3G?ieP5~9@wR-wH*4n43F&1E zjlNuywOVC#{FqV21o0?+kGE@d`Qo!TWw6}bcV^N5ivF&teu`Ue+x=syJmH$@&-3)O z=YN~_Cr(YqA?FTFo5@#NdECYFznSh$Kec`4A)mX~ExfQP@v)_iU%%6WWRou(bGDzI zdn;>cY>A9(OXbv^Q|xXn5EGM5c0BpAQIX?F*!07fgMX?|wP^BXby4HFa$m(}Qoi|_ zr2ociqqvsXT1-j&wTr>%^x0SMv+`Tz-7fV_x4(2p^YtH&oV$q`n+~4yF*_9V@k!37 z(|z#~^_vf#Z3uFFeLFd0!;h@JbG}X6$GbNyswQG~+@}(g6^)G-C0^ZgKKVg0+AI8#@*j?JKjVEUq>-n3pQ-J2<~?hRcb=P5l5f8{cxqzHvza@J-sN5jKD5PL z@9t%rbB^^#4xDA(SORUO@wpbB;NBfAvp<^Ene(cUU zCt&;0_GS6Zg+C`wJNz#qT+wi*XMFyidvR~`0@K+nm)FSgZuBqY^kH%iymzMW%63kp zcN1ezpUq9tv~p$NGHdCkpCywnbvPXtn3+vbXNwnaO_D@n4(I?|!~hCytYUWA)mnqOUw;cYR*9#LoE0-*;bR zo(i7WmGv_?qu2UMVfN?rIP;}RWjbHjcoSM?MY@LVohrSE^TPvw(WN@w5_KOPPu!JZ zmz(~_;%WI}<_UcE6C*9!JeEsKIczlVDe|6IAOFYI zjX!7Z^Ep~`*u*7+*0s<3#(G-r`E~72b2vL>3_ra8^;CA5nXS|2oRu6d-Oa2C=PeK2 z-+PADwRLlfUZ>|hsaN&WKi_!!^3ydtiz5rVB;P0X|Hxl8#WLjg49)zrfkl&7?M+*- z=Zov7rzc++z3SHO*!f<8v+-is8jXv;k7>Md5O!QFl4>n={#eqSY2W8|_*UBFZ9Bb{ z;i{j-%(>d1)MN9nowzF(Q||1pXehq2`+n+%-FvrZS=`R&dop{@*YoUp;#2=6Yvoj! zuui$SC40T?=e5TaPA9gNZ=G8AqExBm8Lw`ylLo(yJ3HUJfIz?IBO=*MFLyCG*jc1H zKIp4oA=-D?e&e}Iw^!wyKm79Ent9u=B&K|@Dyfh3Y_PUee|G4mbm|q&?ENM??#*0o zd0y?9Ys+%GBh&3)UeDOJqK1XN`}CBVOP@!_x4fUqFw66S^O?THv+-*gKb583|{JhaTMHZpr1r6~S{75gI`+ghCe;!xk zH)gw*Z#|VD@o3wf8Wic!JZBp^mes0m>Bgc3&fA`0!%wSR0uzV<0^S2@Ti?CpLpZ;QI z^{b41dzuVO@>4AKZs$|mY{YZKIeSX*{Sua<4HKBx^nE?|x3hZN63uzxJC`N>jmZNtn6*_scC= zd67PP6NDPPZ*x0+=lk{d&b*?dr)K;9;NAO?@#Nd9BBks0l-2iEl$pO!?_GDY>_^Mr zl}vgp3EWCbMy~}0HH-6VzD7S;CeiM2cv(%{sepIRbNhch?^7~VnIN`ecUS3s)!#W! zSv2-1SE+6ie%&B_|8j>Q&nKtWZvlIsb*pdqZ+SHB?^_mc_15$1b02PeX6F1vExqo4 za?=jW>ruZf)z+Gxsc?mAl=R6lN&1%{}6>`@c)e{hnM|QS;)j z8|K^WT)%h*-;32#S4`&Hv$dys_h!>pqh(^V1e_yp7%MiG?EWEbZ4|?mCMf%3nq|q< zN4~H3y8D>$-tKp_5 z?(-b$)f3IES3j+mZkP8u{{LoXjJR6*YBq)D$K8 zn3@?_v`ox38Jidw*$f&@m<^3gjG9cC4CJ_)8JG+Wm6{k>l?`oq2 z8v|=-Sa|x>eJz(bPOh7@d!hgZahH8C)TO=;LKwqWYiC977=pW0p!86FxI5*k{+YtNF%@J0s4_|1*Gn0IX1 zwY6y%>(&Vwp`j5Cp)6Z>Ob-odU|^lIb<>t@`x_V-HZ*MIpV6^(^VTIr;o*_>^&2*J zhBq)U&Rx^WAiQ?t#$}OVA)7X=pPL*W&cLv4ZFYDU1M8aAYo^DBH860kU6LE-$H1_1 zL3n5v1IwyqOWU%W7?`GJgfuWPEocav%D`Bd)xf~KYIb7iEC#08&0(_{7$-*0W?)=Z zG>3s97aqtf8&)x_>|$V8*|wT#<*JnptC?1=T-CwAu(Dw_+lD>I&z{<|qj5FsmMf3n zK0DFIz`APn>TOp)w*2S#`RvO5fB*l#|KHBQylVZOf4%=153FosU|O~LL&JaWKYxG! zdbjGzuiyXv{%!crbZ_;lRtCnkZyWwIe%jl(nqf`TD)vu*{`~)cf9>jK2F8^~8~!uC zSktQsyhw;#h%^0`|{npr*|(MT)TSps+Fr&UHS9p<=T~v z42+w8HvVV+^ZWm=rvFSoZ|`nc-LQ(~&+mt;S2i%PKL7vw-@pG23=F>;{_{V*_V>^K zkB3&RT3TQK>-V+Q4GfHLf3-3Q|Nj5~>)O>T|NsBDd~1M9y(|6grb z-N3;0@B5+E8~!u=`Mh>j7X!=xe}C^CY+_(~vwLL&1JlndtEMtA9^2o*!2JK)wpFtj znEpLnGn;|&(}vj$jQ`KhVPH4~3ggUTP-bT=IKaTEVQyt%qGse^rqam3DCgMV#Oi40 z;N&FN$iOUWW3Al8z-()6Ez-asr($MiYG7idCCR{GYAnjYprfbFpsla3s;w=~pr_5* z%)qIpBFD|3BEg`h(8<7}#K0iS+rz*h(8IvMzm{P=15;F3ctaRVXh?Wicq0RMc=)27 zd-rXfv-R}usSONF{u9qMoMStC{PekV6T=%Am}`$8ncfhp&cJZu=%I!X28MZi_wLxb zbIZ!M5Qe=w>%tkC8-qB^{w_W`%Vyu*?i)m{Hcl zz);`Az)%6Qo^j2phSjXARc*=dZ!R}5Ft5M#?|;Kz)?dH> z|G%=jfr0tN|39}IR;e>E{QLd;Wr{CofN z$JJH;e(Y&x;QIgj-64jb_g4LXzqW&c<=rZVuNQh481D5jFx*_rkYkaX&A`CI!7vPg zR$5w`ABw-U8n>MP|Nq08z3qMyu~+~9|9x}^lDz$v|7hUf%}sE5=E-Q1|NsAgE&-Qj zn1w0*|91#n-WV+XeO7=eKQo)DZ|#o1V1Wvlf(0P%g^G--j0|fDW@ct)(d?rjp~(;h zoL@j382-F9m7kfJ+41K8|Nq;;3Z}rM!1V8r|37w%GBdMP{rmqv3Z&pSSp4JFGoQhX zKmUK+|Cr6p%pCsb|92Gz28O@?pHSsx>yE7=OiXsa{~lvtV3=zM zG6jTN{{R1fWreg{#pRo4k1H@Ty8ZqHwgDsu#^G=OKfgPTfq}u}__bZUj0}lM2&o(iKya|Jsuy7sMToI&MX<55 zVzG)2Bf(;DIlxFpIiQr)JacAis!CLG6(~G>);#+7?a%KQFaExAV_;wqc=-SS^+mJK ze*gdfhBE^LL&^VtamL0H3=G~+|K7J}V0iui|F5tA|9#z}&XD^1mMp`=Das78fBz@! wdEU#c_H`x5L Date: Sun, 30 Jun 2024 01:13:45 -0400 Subject: [PATCH 149/296] Add Messages for Challenges Starting or ending a challenge now displays a popup naming and describing the challenge along with the active icon. --- Source/Core/Core/AchievementManager.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c85f6f0f59..9f5709b1c6 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -821,6 +821,9 @@ void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( const auto [iter, inserted] = instance.m_active_challenges.insert(client_event->achievement->id); if (inserted) instance.m_challenges_updated = true; + OSD::AddMessage(fmt::format("Challenge Started: {}", client_event->achievement->title), + OSD::Duration::VERY_LONG, OSD::Color::GREEN, + &instance.GetAchievementBadge(client_event->achievement->id, false)); } void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( @@ -830,6 +833,9 @@ void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( const auto removed = instance.m_active_challenges.erase(client_event->achievement->id); if (removed > 0) instance.m_challenges_updated = true; + OSD::AddMessage(fmt::format("Challenge Ended: {}", client_event->achievement->title), + OSD::Duration::VERY_LONG, OSD::Color::GREEN, + &instance.GetAchievementBadge(client_event->achievement->id, false)); } void AchievementManager::HandleAchievementProgressIndicatorShowEvent( From 3f71928860433453ebc53dc70aa3f75231ae80ac Mon Sep 17 00:00:00 2001 From: MayImilae Date: Wed, 26 Jun 2024 22:44:34 +0200 Subject: [PATCH 150/296] Logo refresh for android, windows, and linux --- Data/Sys/Resources/dolphin_logo.png | Bin 3736 -> 13236 bytes Data/Sys/Resources/dolphin_logo@2x.png | Bin 7404 -> 37326 bytes Data/dolphin-emu.png | Bin 10033 -> 18387 bytes Data/dolphin-emu.svg | 10 +-- Installer/Dolphin.ico | Bin 37344 -> 229793 bytes .../src/main/res/drawable-xhdpi/banner_tv.png | Bin 5653 -> 6399 bytes .../main/res/drawable-xxxhdpi/banner_tv.png | Bin 12188 -> 15026 bytes .../app/src/main/res/drawable/ic_dolphin.xml | 52 ++++++++------- .../main/res/drawable/ic_dolphin_launcher.xml | 59 +++++++++++++----- .../res/drawable/ic_dolphin_silhouette.xml | 20 +++--- .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 2037 -> 2282 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 2378 -> 1387 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 2692 -> 3095 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 4122 -> 5024 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 13720 -> 7143 bytes 15 files changed, 84 insertions(+), 57 deletions(-) diff --git a/Data/Sys/Resources/dolphin_logo.png b/Data/Sys/Resources/dolphin_logo.png index 8ef18c616de43b79ce19d1e2e772b6b8935c0bb3..1f4ef6941d26145858c88df26a2dec4c3f4bf26b 100644 GIT binary patch literal 13236 zcmeAS@N?(olHy`uVBq!ia0y~yU^oH79Bd2>3~M9S&0}C-kSuYHC<)F_D=AMbN@Z|N z$xljE@XSq2PYp^xS@;uunK>&^7jfvS!?EZ$)o#Mag)NPi2M!_m5I zLX$MRk^cMZcQ3CE^!j{i8^eQYE=L9d76uUEFsVg>ft`b?pn)FLe!sufn{_;=g#>v{ zx>~VM_v!PJHT&1EFFa>j#i%+jdH;rLUE5{TRi}r%%eMM%@_eVg_Bp%w)hg9<))t;Q zZ)}yU@;!<uyxe)tVUJYTdH>n=dRoyO+3S5a6O_$l z?VrzEV!18uo=sj-XpWM2xJrUr#`?|buAc8$tLwaG9_o3W-VjpUr|f7J_+2{I`{0ge zQ`2RZ=JM~H?(?DI{>Et`@{1#m*vX{tTwEyc-xG8{uea{F zbY<0!&dqnjLyqm`)jE6jnp|?wE}jQIhoYWU_pR0~T;2SP<6T|b6pfY{v7cvzPYlRT zfAM}!@*K{I)!Sxy?1)k3elhD#`KRN%(x;!Py`uE8UG3hkXF(>vYVDIsuX+`Ww*Jk! z?VDfaeNOJZ<-59`%#~~tJ(Lxlr}=%UV#|*-|323-*6QWo{ZH4lm6w11Ca=}qY9nv| zwy?hHj?%ktKVrj|eyhADa&PDRPxl&6c{AFx#>`XO#`OJv?U(8w$`QibWq9c!(PR_f#=0zw=B14^)nxV3@45whMhO%1+=MDquk4$?Q z?|K}N{=k0y-hq_2eumQd4uUb9aSgLI3Kd-@KakH*aN%t!JoDX)kNND+s$b1IE|Ywm zgJYkUe1FOOJ~}jZ>+R=#OYT=+{8m(*9eTq|Fvb4tZ~5*2uQM!Vul+LfkO-T?wa4jy zbeb!jE!AAJ-t9cwXn%e2MBmH7xjxashMvzS1pe6WKjHT}Q|{ZxUr+1Yuw*vB^a-o; zMjL+c&Z!nsH)Y>c!jSi?!{XMina3q67o0hFt@iW6XO6#ipS5#*cXwLokrR3uQ9Aq8 zXWZ^~o3>iss!5pr2G4AmvVgev@?L;%5mS{BT*GjHl4?39_vq9Y;nrOPRA^usmNu` zLpCK5>xXGa<$rM3pHf->(EOuz-Tuq|`}N9S3udMLWn1~R@Lq!6^p29RdzK&77S-3* z@4Ecx!3qbhW~GO7cvkLE*|+9X<)iN7_cqC<=ld6;2YI)%NoDRo1)wk+&J|6_4^%0+_fbSuS#6W zJ@?_0#~ko|T5`N7H==Tf5fJt3JHdZIYZvYpdPYxmoG)BKC931=fqbSBqN}QG4%A?DLh(R}y6| zIZa|M^D(;Zz2sz0|Nf7R_o{#7nuiN7Qa^WS&({BPcMRJ&8zG|l*Ux_WZsxDB+Sj$K>zkM! zT2GnFWF1)NGQ)dw!_~kw3LT4i8Nv#Rk6PQW$oVjH>m8E=ysh1fV%&Bztf~2Io-AVE znAlkITY_~1`_lyn7Om|Gi_Y?KwB$a@W3ns2$MGVom4a^hYcsk1Eg!XB6ie8zd&Bpl z_5veELlO6l;CIg_EfZCWU-M?~+_pPR=flJWUr2U+<@~Oo?Ont6ChUgl2kuijOHB49 zEPKT5`0-atlY;Rxf$M)~ZmB7Lz?bh<@I&OiV1b-PchRrad+&rWY@Kyz?&CiUGOo?# z>AR(jFGMvI&12xP;@i5h@m2b(7OhttU-Vw+KB!_iJxgQ%%erZs_cmAROTTHzJ>k1K zKXWd_=Jr>~zV-k8Tavy`f1&uN>(lN7{#?Go4-7x}9Q%IdZ4uL~sZ(<^%9{AEWrT(~ zU0k!4QAt5nP=dARxZ&%*_KW>(7yGY0c>DU)y#p^wYyWV$F-!lsSbh1}J)Tg86G8=U zPHD>`zem(B_|qBGur};c>o=t>Vw_W%dH!~$3NJI zg&5!J_->Pv@Y-@|m}lwDsuP{l&-!fqb=ssM_CVZ}yGmOE1Nz%6l0T)gTg7ISbMD)^ zbdzUBm|E-p+AMKiw)^56@4P+o_4+YpiG3^HRK5*Q{J_%Y@8~{LPGOzp=ETZSi3OJY zZ}S)aF`AzE_xlFNm;3g!1~Ey=IahWSH}C&pDJl`V;n3qj+{NDSyUAQ3U znOf~rm3WOe!m0A7%8s(Jtl{orXge8~dfC9xd4pT_Vx`TwJf8m*+OOYAeyy6RbocdE zwzHF^4EPfRX7U+@=!zdbl0EzOg1@#Rn>{c5JfFXEO1ST%+E2Ajp}RHTZL*q`ev83z zQgziWcfJE$DGgc&4o&>^BrWgK@6$Q%KjeS38&2*x{5ts>-(u7Gc8inT3oK_|nN~O3RgSWL3HVqGLCH5NpoowBvAAI2+V=wFCdC{p+ zXLt6#<_r74Y-k*)- zpRA-9I%(!^X3L{(o8R4vahl=tc}Del+xK;EO0Pv#zyHlvd{d$Aif(S5sLdXB_U#WI z_WrZH+up`hS1T5l?<`~Nx|21iDl~w0>&K|n$8-`TE6uhpZ*@MX#K-ka}RU1UC5nbvSPB8 zoB8QEtqWO{SIShdJ=W9}>8o9KPOtrX;;y^4XO4-=c zu$dP0L)7B(ri}Q&Q$|_Jw(rb!@0!f`G{@EN#=ZrrKdZxEtZJ|fxq4Wa>p)A`)8ut# z3NtmHhZ3pcUi8oPgVY8`1r4P6t^hlOTPF1{+d+O5p`N=U) z_ga3_{@Z>}d+uw-50VF$HZaHLe2T1OGy8s;<(tfgS-bNeexLiZYf8BLIfau_?=QXl zwsm9G?u~7ecW>D1o!-sT%(jD*E9S$^sW%%=viM3qxe~cj;$X~7U+E_&<7Q-EsC+(C z*B< z&pwiSR*SxQbMV}2S&5}8TJnAVhku=)wePRD^|G$p7v3setoiMH#EC7ltcGoC#afp2 zKbFji{?na$qw+!>&mR+}{oh!)<31F9I+Yv!!#Z2xx3z%S$fhYkk#t4&z{u2|;B zPSbncC-iSuvBueOul~w3bMcnbDJx1-WcPHQs}z@E&pg%sK2BlsrwS2~RnG-~1}=|U z{cp*xU2Dz=7)_V!?)l66W5N0C-8tC>0UKN$bP`*ZsYm_ibnsE=IugZq+}gm*|7&4~{RYwC_}~pUm6-)*Zl31XXnAbogxz9K=9o_CX%TYReg4Dk z%lj+BzDYW*|Lgzf@b>a^A35LcU3>C&*b}&>?_lIqLONpr2;%BuM@e}CM@oC zy~ggq)><>>I`(^v4SLJ{=Cy58WYk{os%N}csKqi|kyole!m|0=vPBA9_1j%DR4-kN zY8K5s*z0&o*;=p=4TgWt*&wZ-Cg^Xv2q!!{qM=^@@FQ` z4czT{Df5%}+`=C51HNmPH*3W=94=jfgLF^ZaBH z-tTzr%gG*2kLyy;dgcUs9J6{KaF#dgKx{*&q{Y4~!U9|ZYg47=OsaM#gdI4&=<%e} z<-L36vaQyOX#L}o#HG9H@_~r*V>+jr^k&EkKK*#HVB@1BdS~((DknZakhS_$T#w+C z!~c#uIPM8&$$Xl)=9*8qwA;RZE1q48H^)9NYf@*JoH`?#>6ij%W+QW#k-^vHY)cl2 z1eR{n-f6SITr}tC&5seULmJ*(c8LC)ws9KMg&n0T-+W{vBHBORuRU~PzJ&H#t@8;X zdnUY3mj3(ihqb)MR8!syh92QkZRJ*sFKjZNzE(>&uw!udTAuJsWxOu=ND%OZOrMKaFJtyuE^THDW#u(oSM0Od%`!_I>CtJ zJ1$41*>iR5FbOg{+N^R+ZQYSe?1eG^G9+JceqC|O;jORGvFryynS#sCr&%97)m6^@ z$@|@oRa=5mefF0u)xN*>>Fv9TYkiK_ik!&U_nJ8|?84`(o>L=}3OovZZe4uz`bPAO zUnU|k+l23Ag;g3eotxljvTN?P^;bUJX@C0PFg7P*jigu9l<#}baUENHaf{QLsPMXAU5I?aydiPx!E7$o0kcrmxrbi=V0$;k&4 znetRlqc3vy0^8EeDl0FidGXrFzCYH_6X2A(%OsZ`Hx#Hz{nv^Ao?>_LRo3 zubJFaec*4}Rn=QgPp9!s67SmF-Ky;V`g8ishK4N+iYx+0HX7Z!F1CEt z)o}I#tt(o5TQ#nwuibaeuJ-)8(6wu2*R0P{?+#nNtt%*7c3#(mh7}zVjxGu+0&cHc zm`~_%?*IF5$Ns6i^UBY^{F%Exb?ur7)#nSA+tz=-SND~RvHU{zBlp0nh8(6nwv+8R z-d?SJarw1zgLbdx_2=(51~cV(%X(f9a&&e-wCa|b;4`LT*0>{v@h#t5INnS`*Qpy~r==0)-Rri+PR}cKX8u7TIk-6?^rllgo1G~K*N=eK& zi{GDLVBTl?HF?GQ93S!C0}_=%#(!U~O7i;fQD_f`4||?ah0sFp-Tuy3kJh>sDqMTu zI`>zwtE{6!oN$3ffl7hOA&mn!@2n6zY*Di=&DP|6+bZ8xJeSN`K8MdazxU#u_)~?# z(L8@!90dHm%?|X&sdUKKEllJ(&?fn3!SR4~uQt}3d~p=+?|blS<2?Sm47UF{9_BSl zH-t_7Et@FwI@#{za{rF>*yZ2MB+uv`;5^XDahzdm7H`j`BR4}99P-PU#r{>BA#mx; zJeMEuMdO#BKK0kM@kX-p;W}2KjEGlmd$c;%XR%c6_cdOjcjd#gy!MOjUi*KGUlhm- zsJ#9v!eUT$CfLcp<?2}a+AO$o-5XiUQd`ZbJHq2r_lCSVudx{ zE&Ut~vR5r@)&=_}RMl-+nEidvjmElaWgoV4%(HSYrdMy-eS!1r`NQv4hvpypdf?<~ z_0N-T*;`4;71|Wk9$v0} z@mTF|Ikz%7D_!Jh7WlMGy%+_0;#GREZ@AYl>fvp{V zW#;x>%xy|NY;D#z+$YH?R&#E#Sjbe89=W_HSJdZL9G6lVgLcfPYRf}^N*~`$=vQg) zW53e%qyL}91EUuGrh|LE&Q#Ry`{tWb$);s@>W0eP15du4yd$b~=EGmNTbi>R{+Km3 zNPp?lu)W3pxM1~+Xqi)rn&#mLcO<-&>Ma%*e0MQ4Nz7_90S$}?-gvX6KDKpp5((_KfQDP_Tx5-~9C^6d* zTNSvtp=6$xw4d`SM?pV^E6*HK*t6`Lb8f?N_d}nBRSHh)tf&qC8oqPU zUz@sR>+d>D5zOZKy|$|SX3wEIZk4ldxK-|j=qCL?7r3SK^6$re7;Y-E+EHtA@=>n|m-0R8)Mu+b=bp=;xn}nT*4A@R zj+d&fa(o)L;>Nr`A$k6NmA@-lR;}kgQ-0|0fh}8wBe)X+40+`JKio)fkXM#zH@@Me znB?kyfA({S^HaMv#@wxwv+wABGJC$Wmg5P7!*6!KHjbZAFXzADRq48$mL2aOmULy@ z*es%8^TpD|lg~AvYRysWC32fAJHj?92THFpbNs5d;?|5mZZ>QS{_S9SSjoO!`A_Cq zma-XF3~J9lEKYR(!STTAfkMoh^pj$5^Qt7P^aFjKzA|%F*(mt=$7`9o;%9eP6t25o zb8&(7UHREvUu`a5ovvRIR8;ywXA$?xSI<`E3fJ~034i}4;umceotXaU_xq1>Un=Z> z?$@5wI;G>@AhB!+C7(3pRP4pYE#Y9lBGhvFq%ftD*k?OBQxqn)gy_;gtZ{lO+nS z2P7AtKKJe5Y?oc1*XUb`1#Fhfy5BUbd_hur*_?N|C-hp{8(&}dNmzGvsbua4A(bt0 z2TTvNa!gGWJ$d6 zsXBGn`BILC<-b@~m7YDQe==O@Md41t>1Iz2;4%%qiE5+?+W3zG3GT^pu{Fob`ylYl|!0xFm z7tc)%S@dOw`pu%5i|!|XbyItr^MFs`PX0n2@!5%UtnwpntIT@*{N~Qcq!-uMd)9Hq z-m7#?kUEsQTKz-VoUW9bw#1}c><`Uk+@lsKKHM9uq$#p{<`J{!7F9Q|SDajs^-J}{ z+NdgpmjdBm7fs;3_p-wEtDD@dn+G(r9OiY|5xEohqDT- z85!O--C_E}@v!Zx@QW`u?LM+37u@9HJMPMH-SzMrRUuJ@&JfudQ&pr3WwyPMiSkvg z=Mdm%;A45rReV&N*Q>dGL-*7mM^_m^iBD~dJ5Kx)_#$Jy<**;e(^XELA}@DJRh3O} zGA;=z-zcmXVLGp}@Xl?u(5CFej0g4}$oLZT`!`e7R_D{+l3({SKfI6{|2X!^-kg8epqwyUEG9#%oA-+>T8c`u^oB6{#dsfpK6x-p<7G)?>?T&ue0a^C$H?u{@bh> z`QG9MvWKp&K6ZJg^OxJ7&SZJLd*CfFM^dlJ?piwMmul7Gf2{28+vgqjJ2Iy`%bz?T$;rAC>CY}wf_dEOUaZCCUL!-F$ z;qPp}o^N`5{=RJX`P#l9NrQ?rM>;O)IvtkEh?#anD?{Pw{Kn5=^A1hhlw)~P_vu!y z9gI6}C{I28?Atny=J}pYYZ?4*aLU}PGOOSEbh$QD;C^8yPw|)BXPDfQ>K)2F8)JDl zS6_CzW0IEBA+TnW)<4zoyyj)sy-Zhbv9Dj*tY13E$9={D-t)F`wX;}!7_)q)3cHH8 zNc>_6$$zu&`c*!@m@2c`3=3@7Odj)w9&1b&WL_}HJ9%sDZ?u(D#EkJjsi2Z9Mx;{Wzc*D1|EJYl)<`I4g7k$2?& z)|ocG*tMtOu_WX1wH(i*SAD*@c+*FI)kn*=GrU*MVcW(qyRnyJc43a=4ZaXY=f;f= zy>k=3{HVAPe`J={O0`Lj6JNdDdwXFx`wktB5COf{7M;=x>`5CebIROzuv?tew|$)K zUVBTZ?EwqRHl>6j z2W~I@pRYVGfS=_VL#bsAkEN3ZPY9LZ zKCP~gVHKkQcj2+WcgrPB)`hLyAHG)NxT)on@Ee6ChYAlcTVx4V&+p&2_QD@6hACV6 z&+FMvUiV?Ey3i3vFPT^0Cl|4PxGbY6cym#L0ds}GL&Jo{`(D<&Zn?et+06s7se-Gf z$iA@_{o(x}O1fbq$8v_p4f7t>zRikw?DgXIvUBlUl4OEEb(_z;)XeW(A@U;i8dukb z=WmXDb2@PFsrR`D&mX?_Q|VB?aAdOj5yt&2dVzDUr#Xl=Mq0dcsSvoa?Ac%MMRzam z`(@9#eC5|q&9hAy-@D$c<~7}VU};14+nA-G^N-`)1yi40>+yQ2bGb zNmb}Afqxu6t`X^v?Y^-{R!Y4vdGX7(vGagRi?hvVpL1Qi zzFzpmr8)6{nP6X>Vc+x(%k7UJpZ{Ui``^s|$~;@d&b-(v#&+)YHf6aeqlq6Emby*h zIAR$TGuz?Rm}>F1CC z?8r;mT!-mxW-`IJ@Fn>dxXf^89| zeTwIu|4Ogy-TZ`S-iNcYmZl1}DvAR4dHI>#n3)BCF_<1mOR&ArcY&=Yqp|(T`qxp% zR#oql_)&V~Ptn8;j~m;4STB4jUhQNdd3?K|-T%VVB3JkEGe2`)c;oEFct?wzpAls) zMuygoEywv7(@L%Tm+TR6zFKzUyWxr#Oq!S2dSZ&$Vi`J=1oR6TES7mcNP4_ui>$xM zynMd6Tc0<-cbM_SvtpCb^R*n}E!PbioLbK_PG?%K6ylh}G&5{Fo6Z@Pq`PEB z?*W&<8Cxv;B%Wo-Ph0X)Z1s{WzgOJp&Sw&5;{EsY->-FF^BqrTFH!y9YJBUs(b)xl zQcCX}f1J5@Ag9Ig`>(w#o;}xKSFO%! z-g%DB2j4Dm+hl)evqN!<+QN_%doM9O>KF5Wa%%s4<4}_Cel3x$h+h`*VerEEbX#SJZmXu8QOSVEcfn<&?ymYjX9ivwRyi$VyzS zlUe=AQCa%7`I7AUJs%kQxa{Y6#0T$BUHU*HM?CTUQQ=B%hJ-7&ELGE*A1f-}%gsE0 zWV3yOcE+U&+p76@y#ppD@BJydg3rm@cg9*n%4PLB&kg%G=dHS4lyP0}sJ^ODrx8X5kpn9&*kp=T+ zdbK`t+`x8DH6ZIkz4nC%^3q=?r86cs&Ry2kQ}bq4{L};61@`e@`K=OkpYO%)Rnik} z_Po8ZC1Cc!%E|G8g)7`DgpLdDGpl-JQc^qrWx(d8PcB-`)n;__VSauzvGK8fP}qq|Nh@m>6-gM)>$x*xzF$U?2scXRbO=6xYX0@x;*gP$*&yg3%<82@x(D~m1ii( zyj}Q5>Clbuhk_qj)RnleQF~tD+TyriS4F0SIZnUVwv7k9{nCG*$h^7JDxjji z!(q)FyRcN_Jt@We%GX(b;hVwoM`mGp(U~ua{*3!N722YXO-x=aabU-!TSgJ3OYSl{ zKX+OoNezhkks#gB8Fl6M$Bn)~$9@1vRj1HVOZw(|X9EIFOWa-zp~$%zG(3|p9# zWkp=Kyk&GSR1_%P_-qkN*}1g)x9zU2+xO!44dES97Qzd;Z21qJFVFH+DqZ<^?a^;< zO1td+C+^nRkj|!PEnjx~fK|)h+kHz{uQ~MS-?ZDiV(0(JKPvih?w+#;Q&b&GqOG}@ zexLF9^hIzVi_MxX{GRL28v6FkP-7PVpYl8B3H!{Ax5IP~xE{FP_{?bXOgYyX9m%Vs z?!P*)!Fa7z%j?2F>4Lz@ zN4gAtO!tf!nBQK^d;V3gx778YN?%pXql;Ou5{_+3mUvw`KT_|_%G+x=obUQq#m!Mt zGTp!B&vKbPIvaK?pV8rp-EjYl%I6E5|J61aEWVVwK<)bp^>to13&Si;9-Le&*?)7{ zN}W^|Io2LVJ{Gn|&*zvk-#74xvo>r!{$>4}Cll9c*+t)At={ht{*>>RzIEGo$Jc-L z=Fa{jtH?NalYWxw&Pz|uF}=I?x#V8u{-qbT@HA+0h%a?KwC3-d8Co}bop*1Pt+V`C zFtOso{DZs2821~ReSE{q<0jFwc-fLmIZW4>xEo`$c#Bi+UfAqfAG5AX`}(^zPd~Mp z7wWF9Nxdn)bAE}WeIUmz^944pHyJq>u6Xt@tF}L7epkUVXW@>NJ;k0uqON8Zi42GM zF1){8xcx~E$L!GST~C---+s;qdBloxB< z=6(71r#thWeduWTd}r}Ag}`q;?{b;fGdXVx{#q>Y!^mU}Ym2eKvc`92Pj`6tNUXHk z>saZw`*We(jkmKp6cQ`)YF;&NzUieoo$q}4ufG@4b$O@C7k;q*Z76&|^WD6>ssGr0 zUA!KpJX>~ruGx#PYqgzhges&~IN0>-Dpq`}5t2FMVj)-3T7F!9=@}kd=7}yvQPr-3 z+3nii=33PSXXZKQNjxrI=_I9D_R9H-$Mg!$>3k=J7OQ=0kP@?2^SN=Iar*1$bLLwA zh+Gltzj4W@eGgmS7(e0{I_b&FGO2n?^jXvD<&U&Cwx54l%UjS@v@UW{j!JFjOH29o z>-{PTDcOGWq+T=Dg#5VmW#2EU%he8^8}ioiKYH;np^@Y8M~hc6E7zZDsBHK!pJRX7 z&8>xZGy`8v+#3;jPE>!+)}tG)E>87-%lo}z`!{3Gm%qKvcJBIC5*P7ae17f1zTcJJ zGfo_0vy(h@t*l$k;TS`)pw_0}sUOpR+c1gBf8;4B`Tpl!>3f0Zg;|DjYl|O!{r-oy zc=0b6zqK2W{ulI4>zV%e)z7F&uRs1u<`JIe9$U)v=(oYgH%q5$zFmB*dQZYBzFlI+ z|Nl^##r#XRB~JUs)0Tfs?=2NeH41i1#1+L|%zJ%Y^0xWms=Z~;n`0kk==n(LT+RzT zSus=OdhacNhCT9yyWCsaJ$I&mP3WD~y5UOrJ^jCp*=`HIy;1ys|K7|!uR@n3{`r3F zh|8P2vkJB?OPtqTD7m~tRP@e{f`?9pPaBvyn)JTt3plboS7dwKz$K;LqR=6%*k!Sx zgW1K^G5Fm~TAe=z@E?7scI?MLGsW-L%l8#`RlSmZ9aqu)q@IOkmPy24 z(LdGZ4C1au@kVET3-a~;-`|n2^R~@1j=X*P_V>zcUudZ|`S!kw5p2|3=V{WC%X8IL zv{RwG=zuQQ%;;M4{D*J0PBt}~-5L=QddgEppVj5}-N`@9-#1>3|HM*IWl}n!y6ETZ zKgW!trafJ+cHZ){k(B?B1E#^+#~Sq9L>uj96(45Px@@@RVunLckLIEm5dzYSSG01@ z?EW@)(POq>H`3e>sWvR@X1=zUU;5i8U$xiFb#u-&-kUyt)E>jl5Kv=7`J3I zS4G-v3(VWIZn53IZ<;HQdMbQq`WCiOHh%rpZ^bWCXIUjp=ykqWvhk(_Q&5bH;JrYW z_Y-qia+~A7>gH5(dHAu#&D!_*-JH?~_a49h+?)4o^V5oHGv?Y}F6LrXd7*Tz`t||- zAhEsm^DjIP*}hVAv7TG(lUJ)cq?KP@$vjwfJ@S0s0TcGU7VgJY8D`i`zVg9jdDhVk zDY^43Wxm_DhGk#Qi}&K&M@zc&2bizl+{BhQH6uRCM+Q)Gi*)gtz?v_0NCUf*t- zt0(f_t8raL>BX37r28iQX?y0WSn|5qtf`g1_Wr5q zB;jS%@6YVKDRX$wgFE-_uU|F(x66NV*2UG^H?Lfv_NUhF^OO}58+MnzKAyezfWDP- zO<=2_4q-1ixtTqjwJnaELqc^`gQpZNLmAD%VJKdpqCtcxnER?WD4 zz+ByKrug>^u2Q9?y$5yPF@~T0eQVhvn>+LLBsB#W2xb|JHwfEkBeDr0q*1jz!2Py@3 z7<1(<+~KPEecQV!-G%|*GpfRiPh=cXJzd8on(cW-tM%iFr?L!N)zpp&P26@~%E8O+ z?6%|U+3u-Ym}MkyPQKT$zxG7vfvFo*Cj2yQP0TjFZxk_o(fmn0CTY>f!yocI|3CZm zoTC>$S~qQN+BnlJ-*(Z?ZJs7SxGERqe#rc_!6$3Ff$5A1Obfa+Yi7l~+;>=#vwyOQ z%umigk6q{WKbhjgk$3*)%Ud7Mr-|HO5~Ra@%ch;*;p$SSG@DH~L!Z7_ZnOR5hJ>c8 zh2bfCN}ZWYgUc869zPVJu{Pgg;*WCw=?l4&GX>8d=yJ4XoK^VErHE_G@xtwI9$D8t zd*M;XwQafG&p)#c{jqZ6Np1Y2ShrDRS*_ENtg;thewN+6`DK<5$IYkJ+^${uVG(uW zrn)b>qKx)*v);R;de3NOs#uLI>lWSgnzR4pE2JYhh5z4TcCR^BsPdlW_R>Qpi^U$Y zm<41WTNe1Yoaf6oi`A3Y?NB+tx-S37kD3*%pBXjg9(HZYzjj&H-Zbsv&(HhzY(HnT ze{P-7*5pl=XRraV$$6>i(j&ODm(3W=uTgsc;V^I;P$Jsx5b~C_}gvB z@JU!VD_s0g`NnT9s}3%C9~h)0==056EY0MrNNID4^Om~|b;4X8|IgeLV(W^^%YXW8 zv)m7Xh|@yuHC+E|`rb~A5z9GU`EIJ7%KOi%!g>!b+w6{#e|#>5@7=y%G5eBk|Iwbd zuK4W=4lC=m$Jo1KEwnUxJ!j3=W`4h7WrFbM8C?50elTqKprJGGXzBs8X&v(uPABi# z^+?>0XWP<^0-u!Zw!YLpx^F+5{)q$2vqMYN*f>h(*L=NxoYAg#Rg!`ak7Dx7*c&^J zE#^MguX-)ZelxjQ+2#Q*9-oC@Y0Ic>bZ$(+qvEGo2A54)gLc@@wKkli0O5! z*tRmmztsjCJ{YKMcrSB~rEKGow(Ad9@ZXTRGwIhP&KcK|4{k~Nq849UUlV6z{qO&a z?~l3zOV)7jQ$JfiQ!QnN@lCzhPL9Y&^H}mf`fypBsx=*m&M2PIwc+OJ=4tm?CT(~h z!&Jd)!T4Z(_lNJ{7N$EaW9K}mz4YeC3M2b%YY)k{eN_4|)2QC&%5qO@&A|IS=~l7r z^L8q0$SbdM<(++UGUujZS-W1VqviEJ+w4sCzS>u8$yp)!;KTZa%fc~og~3vWJ#v$; z{FAfd_KaG0xBS)l+T*V-1o~~{dBiWhdgZ#*hCcmkiy~u^d=Euhy+36T_Es*RkL5xy z*VS|K;Uc}Pl`C?;N80osZ!}g)Jbn00hp4%lk8txYCbRkLBeezlPJX)~mOk0i=z0RP z{a>H;pTi837tGwaSu0e)%i!HMml#pOXn#RgtMvGdROABanMdMv$C z@ll(KkD`If2`S^xQu`l>FBD|C>0h|&!-dufMq7SdT=(?g^Uu|Woji}5pDkpFUo-h+ z)>rOAnWV4-k8kdpT=q^#O#gx0gGI@4j~_=A)(Sm)a-)SasaCt`n_a62L#^4VH+i2d zKh>dNa_Rk^GuCwcwwWME)m N@O1TaS?83{1OUiB9;pBT literal 3736 zcmeAS@N?(olHy`uVBq!ia0y~yU^oH79Bd2>3~M9S&0}ETi}!SK45?szbC8jdfq{iV zLBF@;67LEo27;jB?50_JcXt#e@4n1%FLCqfp1ZMWJ+b{4%Xrsql?$06+-kYfz&&l- z=`-8T$nE~S%xb}eG&kD?zALJPD{kFU%-!HTnti+`KAo(bJ}GBY zO;F0Di;N35cnU5$e%;^2ljF-VRp%q-tyvsFT|E-h{bwFiy?lkMW6k{Fl%LHL5?nVq z$1ncu+mz#Eylnq#yJz)D0)OwzADY#y`a|-1eS7-5skXiUW&eM__rG6AP=K?g{_mZi zF{dWFriC1=_Sxi{;+mdD)|tF`NY`F@Z5 zlQ=g)w}*Sr{d&B=rOV&kJ@CeT z!Dim|z2&h=Z@Qf~?eF-#B=z2L_Kp8;=zqN9+-fiF6kheItTJWU!!Xt14fzi?08FdSBEBCWADCb1qUmt~2Kacufn6JXDcZ zxN~DC^S;Roe_U3oInv!M`u^63-oxC-R@E-;STB4y(1nBFR#iqaC^>J_|95It`;DL6 zWe{pP5~L#iLBQ_!lb-E)_ey4MKI;Ed?}xsJiK4MP$L3={4*r;2@0KobQ*Nchcd2s` z2X9oYy4<7~_Ewj*B1+X;t9*-X+rI5ApXXmlJaYP{)}F(nD;?%FX*bSUL-tPS-r|`+0J>-ytB5n*WEhK_VLbRuCl*O zi?~0WU1zuLrQFJIhc52leWlmD)4Q+VdxqAunw<~+Z(AbseOpn_Yu%OS{_|Pa_xU{x z=+ikhA@cI2sM-JRd(X@gi8Qq=@({GT`0e#QyCp{_oS1i*`}pK?5&LfqONve`5_xHB zC>DQziAdxW<>?bjxa}tA^K{Dm?JJ(ry=&%s`2)uNS~or#t9VY-c{Rf^CEEAY1YbQx z&$u6sSNDsrlz!^m{Yl`$*Y?M)2er!nhOF@?Zn*BQ>t_bjG#!VKvxr8I}cGc21_b2~Y zy8O$^tE>L*KjLlgCQ~Fc4qjm#@=){ktz+KK$dOeu1SjtOXO7R>+oa@(^s=_U*=u+2w0* zGfz@}@w-m4)MCwrUn+^7lbty(eUr}GQtLVKOJ3c(M)SRY?c#nYE)qHD=HGSw<`Nl2 zjoT8F0>7zt^{l%)XT7b_8TFMNZ7s@u3tsH`W~Rt-o+o6vhew6f!JEwI|1$)38p;Ii z`Db;rMM39R(!$fuhc2(4dSCb9Pe&KU$vuAFg*rS%9B-q(v^t5~X@7ic-*a2k#=K+0 zQ?-otmy;Dwt9$z~Y)bi=QnNnO=jeih7@s1}w=eGhKCQ>YncpKB<8Jp{A;jN)P13L3 z^2^+J-V{}AoFldRn9APO&5sT!xn^8_b@*_sm=NE;uJ=66hS|S4Czvk3H0C+(w^(MOX!LpweU-V@yN;TE z?fK64VCHd-t8dOM_^(tc-ur)M`qAy)3i>Y6=cm0slsozSAb&RuCV^^YCgW| z+QfoeGdo36PrleNK_Z05K&8sP#$u!SZ*Lph2C)wHccB{}`s|dO6_zfxI@s^{jr86e zr_E;ZpW0Pk$`?Fon4py3@HCB|FQ4VT@AB3IPc*J7I-V4mwe{PL_fo&#sC+$`Fwvpn zm7q(DZ03r#fC)u zdAcy|P?CD(&!cvdPlRSId@t|!!dOVo`j`KtZTD9`I@vB@7*Ts=cBERh*Ru&TFHFdI z<3I5N&%QvFH+^O{YKV z(fexKl?0~ME^bkmcThQVZMEnRkE$DQmRyObC&#ZX`=pj+~WA(@S%%e}MCx6q}y76dAuFZ0(^s^yXHn(4I;LYhM?C zXMgtsQO)c-u8aEQZ>qHmsO7)4_xc!>kuvG%|JXheMV{Guz7itS&#?5g`_5SN^1WQg zxAS@hnNMTSG_bh^PV1T1B6d4Xz$qkNf41)yb>X0dJsanKJ$SHlT5QzvmX^PnclukZ z*X#ayBp}bRC{{1EL)_};(XyzP30Lwxb|2j)IYqHuV2bJS(~ntQ1GSzRZseT2Q2tMB ziTnQ7e%d*^d&4YmzbkpR{zc;L?iK@`pHVCADypJ$pGfm9{b8IN)Kd2Kot)fz%P!xj zp5!E9wdVXc|H`5h&A5DnQYPnrur^X)({#EJCa>ME6VH@a+_mY6P}J6^QCI7mO^Z%? zRCw&M+w*bl_rvj7dw+@oV&gB7>lRhTWZQ1rE*rqAcxD(RFY zndy&IZp;5$8TM8wnWrnqsCw6y8{2ghGr0E~h};bK_*u2G?9iqstCzauKDepY+jVxk zZA(D@Ue4Yetw~Dlo2I;)sTBI!zG=(D8r5ms`z zzrioCblbB46_(6<%ee|$mee)BoRVlAb0|f3#n~EOk)@A0PNp1defaPH=C}{4TUFV6 zyIL0H?1?%0`ros(H}U@xqj@%Y3aVY&{=WQQ+3!fh-fnM+^N-d~QTq9=gXJk(j#I#w z!%vUMEZ<}+we+NF&tdNGTgp`*zvtUz%eJ!f*6+4kE5&vuZgY1kl8tl#ImG84$_SGWKgn^@bO}fD&4P=! zzq{^~nR4rhqvG@n>q7Tj+_BC7je5>ax4Ah^i@%Dy-JPysq?DID%V3&n{Qp!P=`zk! zp-WDxZpr@lyiMpYufw*$F zhog`EjjNm(#Q9>i^M~2LJDuJrO6K!aTDMy2 zJbFug<4>EGe6aW`B#0PWIl82K8-_{@+%cP-+m9jx=vGSt!?nv zZjVqKt%|N0TZ-~66*qTGVR>q^X|vs*VD)3yw{!L` z+n;YBxw&J?m0O<;l4^2$W18aMJF0H(2oDmvP;9{2`>bXS!%WvDOCqw*9a8%7RetRW zok!Z5oSqXOm`A5gjPmq!ICmhTmhHo9Yo*O6JUl%OMZ^x~e{<*lR1)j8DsHv^VviNC ztz#yh&+zoTntfGs2Fw0PdCebnqLZggX;JZB@!B?G;`?q7&#T_s7f$qEG5h1eJvHSZ zoxePnaFlxQkNzhA)63KI>--ky71fV#vp+cz?zJlJulj0@GN)mh( z_xrl}-`S;_nk)A`F5qn0IbZXq`RkydpxWaJLL8^Rhf0BYdyhX5;JAE${&)Mx>60eC zvgMlV5b#3Ftnt<)uHR3EnsI_VUU)nz)3sd;e;; zzmqQo1qn@ZF5t|sxXrL9e*PVoz5; Jmvv4FO#rvs6(0Zq diff --git a/Data/Sys/Resources/dolphin_logo@2x.png b/Data/Sys/Resources/dolphin_logo@2x.png index f63521d49346187a67930315dd3939b8130ca5d6..317c6e0fc9e5bc97077f9a5a6d146fdbb6452da5 100644 GIT binary patch literal 37326 zcmeAS@N?(olHy`uVBq!ia0y~yV4MKL9Bd2>3=R9u&M+`ANS3%plmzFem6RtIr7}3C z&=|#NvhjJBzF`~Yp?cKP-uSL#=?Sv6W?zV5fBs%bZ~J|>10w;Qqp&06ciL> zb#ZZ-x+N?{&_~#^4ZtQ|jh;uPMV( zf81`ZO7WZfho;GWp8ffEb^Yc|-`~U>zPJ9b-I>Dm?9m^$$U9Ge5cT8Ep*?1s|1u{u zTTHj>kN^F%ZXUnvKKANXv)hl0v+lg!miU2NZu_Qxze+#8ooQt6v_I3VwfNEACmT$Y z0-`S;5EZa5;CuGr_}2S}_a4}n&$s{B&6w%Wck4H_J}=~3_uKpSo8vp{jx80Ly=H!$ zq(zi{_}veOADmFw-`a9aC&}QmOwDyI!}@>UWh#E`xR*Oa>Wt;Nw%su@@1GfDR-3nH z$h4Pd9k6Z6EIeoVEwS}r+Ns}~aa)egny_y@i{JUZ3(tNqW(k#x*w>uB`2878o6Ewh zWcG31kM{hx^=%JBt+>&=xtuGS_OfnQukbyg2IMXNJey zy9DB!t@^X0dp_TGoZGZVd)d8je{Qe6ly>QoarO_>duL}{JihFF@Q!!6i_O?3-F|hr zTJFB!{q*@MMn8V=TsPb+eE94CFM<>1T{KgCVS6FgY;*qoOvm}JPOPb9KfL_#L037+ zNK+f*1LtCznfWz&x*5WG=YDeZR(+Qn_5cH9hlMCGRSPt)63jgUM-rjnCef1tnXqG~fGmFyQF!iUs!l zg)2@xW$O9DP=228#gyQA@$vhb7djYAAG+tDA-v_ouFvALr+oadIVdsVVW>@&!YfIg zXI#JU@~dvvWAg~puC0~H@88(k%J^qP;#sBa>aMj@^@?~_{XN&Twl9=*9lIWz4@Yrj zdgS-uulMVYWwG87?tULWZ;g?q{JHI0{>`X(=d!j-@^A8f{*Mc9Jh*%)DMu&LUCc|@OCBAfX{`#CNBe!IdVzKUyKkt4=UGHV+$P)Kq__n-L;P3ak|IG0% z5w_~`fBTjhe^r`qxa7vGtoR$EA0KsJ^~n5au>$F`=03X{&4z4*BE=C&VkqW8Y8 zbhst!R^Flh(V?{I%+lCXg%(z92{9{Ho&NXzUvaZY0L|7BwlOyLF)`}Qs`Tn&WM!EY||GqoRJMhZ;^%>I_yn5UC{+;mmRqJkNvv<^0 za#pGJR34VIeSO4wp4J`T)qU$9eQ6H8di~LV3O&cYcs* zNxr53J*x3UycpYO`?otL|NHnb^69<8tqIXlp--Ken-gN5nTIm``tH^Cm(h`D%Fco{ z@3*a9)_v$!)5h=n&M_`1S~>O7t3zgu8A-At3O|^hyD**$urT5}vHqi-TikSorGxOumPYj1WR)%+BG`^w$gCtBB*rs}YFOKj-)nW86j=CKf; z!>>N!m+c$+*I$bJz&QV!ypJ>f9-fMGwk!1N*6r;3Awb%4q@WG86X1gWxU%8>Q z+|i_Frkb+1LhptnCtc=et@^w=XNm2Ui9h#w#vWAqb;;wt#X9{PcaJ;m>a0FE_sO;b z?_G_r4?3kK-(US&WcBk)o-O?|?{U9Z+Iv)cPu$Hi7B1^-gQoo^|1YoM-KD>?*KpFO z^_zA|%;tN2-`(_ecgsyywy(RHvL5f=w2;%`pQHJXh@zY4g2S5>C7V=vE;TsLIA3BJ zF(JWof@hBjccPjq%ki0fN*;A=?U!^c4=JYIxL=cSzdlAaXtC5)(@p9tIE<6x#Cvy{ ztln05d!l*Se2zO)w@q66z|L$bYwOJ|)2}F9VCJ7YcZ!#N-$%D9OIj~!GD;wi7!+YHE*5}W7X5SD9Tgtm8 zQB*o&YM4R7ftUjkVSW=+kD1phOU?c$b@IrBv>X24n$BO6+sCp0hV^!d-LJHI{$Ja9 zuH@FtHZhIsT8l0z8E%vi&Ch6ZVK!tGp4=Ag117e?oH|}<7X+KQrG^!d7(-7vwzt)%ddqKn11Ntm2t z-^UcgRl}KHdQxIz%#|5yjFie-PE^Hz(&*;$`7P1^;7)46^DDk@4tgI9Zr=K!fxT4K z>-ClSAK9;@&M0^6=GLB4bY!dCG2cG%3))ZZ6=t!_)$#lyoTK(XulH^F<)e|^9~mFm z)Fkq|f0sWJIXCiT@}tJE>o5G>cz+jeZQ$IqH|W3748!O42R24Z@0u;$70=wXVs6nZ&!#rEil-O9ZhG@aHtpQWT}{Yb7`FI%Ib8v zE1YX=PR#8T?CzhH8~gb|7^D89Hw6{R(V7wv+X#c`!y=iqwKne z(Cfy?g>&WhR||_Xm|NtSJfD+rZ>d~#)`I1A;ho#VZ>D?4sn?b_wH4etR%ZS|y8ZUF z`$wc1Dk4~BUQavn{&Xep<<1Gg$*nFy4idHT1^>U6ru57{Jw^6xqt4kk{tX-7`fq9Y z`Yh+b50(vb>9!lx)=F$@TCMvcdv0x_UnR%WNkMX{a<+UPJ6Gqk4Vr`ta=@M_- zr4T-rJEqH~9+h}=?}(;_xm1n3h4kFBNp`b@4I=wFJk7GVyEDINDqVPym1hkvgUP{J zhd(c14|yPJz;0)KXGx!PQQAu7x5gIceZHSBoY3YuS-Ya*pmOxYMWLOmw&?s?m%{2D z6tn8U^z{KxFI6r)P;&Cr6I&TBiN|d7OMdLJoPT)7k+~-qTyJ3cpCC53=$s3mxX_!f z&3pHB`rVjq_fmhNrE>H|qv*HCPF8z9*?Z~oKZ(x=CbLC1xZk~5^sm$=o54YKE(hxh zr98WE7FNrSyR#!Y3%f1t3ufq;`d+>#`sm86a>h4K*+R2|FGMi*b{Pyzo` zOC4$3EcI)99vE%*IXUUa$~zUD4)->1{42MMZ$7J@@eihRNApTlIF7$sR?~7Y{D8_! zu9cj5OIJP8%HY{Ifs5sJve2 z@^DoBXZSf)n{Ekn{`_Ja*Bb6Uxrg`J zXuc8Cn0i5Fqde1n{;P2x#24OT4|%xvk9t9A@vPX5@>eq^#j6Kj*9=|O`C|^>X>Rt< z?}OUo7!OJ;*%Zpzz^J2oF;yo0LIisZU(B;(OD#@wNQo-eZeJYLRK(B3%Ew!imk=1A z`nG-nm+H&+bJaIEOZn|icy`&yn`wTOenbDYqZcRn<T8@HNY zIR9tG9ryA{cQ<$DTm8AyQ{2hIUs~P0WnnGbmh&MMCU9991Jid}Me>9Z@w z-H>}9_bS;3){T)1&C8jm8=t+r*elBRw6TEdrO!1Hd{UF<%RIaBWXF|Ls@u0~23J)5 zoxW#7-~Sum(yb0GWs7HDS6~q?rRS;}oE>PjIQ#Qf;S?E<&!QfSHVb5Fazv>>|Kd@lq z1QFH^#~#?eXpaBdw!T(QOP=lND)y^3A+;->iG8b`F~51$_6_r!|LJ_;cQ)-73#zna zd=toigk{d!8Gris*@w#7KK>B?AZ`x(`F~=YXYv%Ef4hb$FV!Kk)F+c|Df`uMZix#) zcln*4J71W=lYXMoPi=9&isJ020;g8Z-&7x=cyJH@kK;@W7}(A~%$c!&rumnh95Gp* z8Ea3>vWr|hW$E229;RcdRTFq-xJ;7Y@w4k=g%+d9_}?=X?;rTQNpp5NeLp- zAGiDreA=v%_5Vd#N}@H-XZP>7t{^c=2bt1qv( z_JF~!SW$5w-w%-wrp3o>SvJmjw59Mx9mlQb&e>b%BuVVB-6bw2E%vO@mc4sVgKvDW zb6Zw*>%8 z_x_38^Jzkc;er*%?AYdhZg7)36SGqN#Gko7Z;XOA#;iMZNpjcK6YeL<-PUatHIZw3 zCT#Ix=FLnw?Wgu7-_}2vw0gdf!qhtfyqz04Mdz))XR}D{^Yhb@MUQKji(D;g?tNFo z{=+3ruibTX@XEs{7?nFF%}u>9H-@46sezg44fET_>n}c=5?v`2zUSGka^Vev3wT;1 zX7YM2+gAAE{DC_M85f+{%l6lN!FQ_=(G_3954wd~_ zE4E9%`PxgTqbpXee#1Pq*~#+6a|WRcR+|0uHJ7hB^VNL2(`&_d7Di{k%Kd40*s`1@ z?Py;9Puy1ML~Y|uV4IDlzIY3`%q z)3U6Kgk>FMHazB%;(g%tAg$S3)~C^7^^UEQK4#We=U;ktXj7;`Ay<#TZ1#o;=Sq~# z|CmRniSG=NG~60KFEPludi_54#XBarU1{w5r#Ry-d-3o7Jmvtyl`NATL_{*#?CqEp z4=}05|Mqzi$I}~pP=mQGI!|()&dNP}MY2p1Rq|5~hbQ!^?7Nx2;_^1JjCW5?{@fa~ zWWFn-<9_w?SWq* z6P4#|t5M65Vqs{$bL7aXhu3CWted{-&Sk4blXV{XZI;Z5P@Mh!gxp6)l?)k?=RQSw z7VKLhHphQm@L%i9+vb1T%mFL=rtr!!E?vtLdY03C-T(d^p<{NuYd5z)kCx21AgTI) zB7?h>u2FvLj(2IQ zvnK`23Vk1Z^Oby7&3{kL$7dZ>+50#j+6m*c`Ug z{bKCEBOWQ6Cs?X-8!WB0*ID}Hl%*6?*Tro6 z$=*|67%W+3b)cNL?omNhPU6Clz7wU*N-sOFG9QR2)avn-Jucen-k`uYr)U%7*@<6o zUORkw!4mls>F$N=l;Y1mc|Ps+tIaBV*d$C>cE4QsQ}V_8NQNoX7tUfWUdTLomawis z&YH$|&lhfF`WyRnR^O(hl^XNcJ-ok!pGEH0rxv7V3 z@<~@6qYoTYCVwyLH-5E-<3-g5mFLa(G%mK>o-C29?#%aOF0;GvW2pzrEwZ0_xo+~R zT(OlodNHTAU;D|+iAQIJNQTD$6q)gfwdn92E~OXD3XA!!E^x z^j5^RWbtvlIPlE!!cK_@N!BdRhEJBPkIvlo+V9O=wNGfviBn7V%wlZLGW=U1vE%YX zehdDDFHh|PnD;o%%yrm&bm|XFQFR45hLUO4pEh~t?YuZ6raq7w>v+X1K!F%@wMPFIT+^jSZBk@mVEsa zi$g7!{$%ye+_!7zlnM6XUaLNs^UN!IZuWrhfkK1vqV3a;f4|?%9&}J|M(^>TuB@>k zmsUTI3=&ggn0jfSvf2sBqh~(XUJJ3M2)q%83EpAUV+l#d0MOs^H_`@9cw+>x+6f~Nb7?r zosLI~VkN|H&0Jx9+d;Fb+fynxIcaO1N!S!6J*ULJ?#MqgD=p5?oIW#Q_PtP}|JC<@ z-&;mipj278{8rmPquScd@d0k`QvI|nTvCLMr&ouTgBsiXV#{< z&b%aP#9p}V@v&Byhgy>#=*k4uzh!dNxH8@CsLjv2_uX6Ve`(xZ&*W2(_&~aJmT-m3 z@u=v?=}+=khg8jD4BHhN*RksMA@i#DyWPB={a*L0E!*zs(|_ZIioBA}2dk`GPU9xQB@c`2fPd{#@ff#Iu;u6^>$51g|760A9SZS$uq z&+R(-%x>lKu1MEcOb#uMWZcJI)BEIX=foUEF@F=yB8#fCdM94btebcCg`(kAtz$Rc<|Yc%I$U*#7F+R$eK=Z}LVL#J3wicPrL2oW;FK z_C?pGyEj*#3Upu2x8YK)MZ`G?!_R&Hr#|6qdhX-AL~dSi*^+tNm&(q*(=Yt}W`fi9 zEgMStt$%;yF0G$EN7t`rclhJjxD>4i(KBmQn*t6$m>ID9eam6>u$9|4o_(+=tVVrx zFQdirKkEc@-UnF4nEFgAS)sbpcayeU^fzgP?`PZ}aP>2=?2R}R`@G<5#N!W(!kfRl z1h88tK%f2&StcmbjdUyYld7Hv*Y?N0`dRpd@dg)r{&kPS`Y5CBZm#(h8meef2 z&7bS_-zzPvI=}I{>E5vJn`h1TJL8?tx3{PAUR$RwN-aH=HZ{z~`qG1+uWJ5uvDHob z!15t%W7bui?Y0ZHOkLgi ziD4gKO>*yJvqxJP(w>Kh%LG?9EYM%>^L-NUgQ=f3)c$A9eUr@n=4Fh{(eOlxkRMCi zQaAOlIdkp5*f9;M!|A3Rdl}AtzsPn;!fy2nGq>1z{hg0&1rKhXf2iZ4&$@%xvkpC( zS@J83gV!cK%vN8`MyTNO^w{?@oq5_0B2!X}_pB+f33PkEpDV9A%AnQwo$}sC|8H7y z+plBedH+GiL+lpcgLcM#@h=vJ>x_>-IPv>o-`>gWs;ge;1<4<<<7Q9HsLd*o%9YxsQ!&m(?~Nk@LOq|5tL=vYvO_ zf684>e*CI1UtDb3xr^$H)y_SZ*uXMpnnwJ*ds?jJ@9b`Dt@l`bfxFsA~d@Q94|rJh`!ja?{(oP{amu22QD9>CvPD1Sc8PW*mwsj2 z@L!r)AY^yW=QG-+N&ofPAAPo}5@h{XSJ^rFfIjm*Z>L$@^Jldwe?R;tmf6X6xs30D zj`vku%j|CGRC!;1yx;cdbjNS~hEeY#MDOq1(_m_FujBiV{Z93I$2VVOSa@~j7adE} zHCFex29B64~9v>yr^SkCNBJ-zL1!2=c<8_wHh z9IpOm%o`;h$E=8Deg4g}++Kd}F|VU(hWdXTF5UUQ%1pw}q_nMS+VocfG0Ux$KNua0 z;BB^SR}NlsaYxFwM{fUfd|Gm4Hft-a{CXEWa_klCB zYOilxTPEMMczHtB_hT9xzsy+Pb--uwZxc4>ZRaw?l3WW_9xZVTxmD`tR#@`>gD$J_ z?tL<@+#%eY6^j>JDun+^j2 z=|(#q`%bd>!V*61hsFk$H>@02BHqksa{hk!-*=vuk|mcrPEU_}_s}(e&2io^eVx_M zl#*W_-zIb-t;d_6Iq{or31^y2@|-B$X8HB`A8)BIo%=ygdR4`2neBgdt4^&y_$PW* zzT;uDr8cKTe@&eK`P#YtpC9h8X?&U$Dlb%WqP3&J*lmGsJj15@mn_;6f2@=b?w2$@ zanJDQ&fOo6G|u?PwXbi_J{F;iQZhGIsMl{lBH0u_@l1e-{T*xeV*W#YnI13ZhGz70 zaj`EGoM5rfO6y8?@Z$GTC#=l)4mkXOIqB(ShZFCM-bx#9IksbVb@PRqvldAVzYo<} zdQ1pte|fv@+rh5O&M&5=ndWVA`}D6TThnG@lb^wjCyr%**!ygG56Cwfuh;$HR>l}3 zxS`{&=00&p*`C8DAveu7+U!%3C=anMxoX+DF=gL=ePQ-X(^>Uga;MqL+VL~g{(o~{ zzmTg!ZpKxPWYg<~KkR1M#z`cssqlIJq(AU*qKnhZA`J#MrcZ9sy!scv%)eIYFn^Ei za>H=n)r;O5KG59SR-b=N)?4d!mrwt8-(4yHjefkC@A&@9iNJ3Q&K(Zd_^{>Nv>*0ZYf)4EPZdr zPotAUccarn;y)idpecFD(f8om@gJ_Oi*~! zhGuEgRrfCB)wv2>c-;EfvdykP@tEoD8(v4Or&&~M9#wqd{o=_l=g`=rk%FiCDxWfK zW;~x>#8qo?=HBL6?>pWuYna<;l;Zc;mVeI#EuMW+ZtowQ<6k12DLLclii^30HutZr zTz)Ezed3L6tC>H{)E3S+k^eXQQ&-{pEl+l?_S)6-(nsmGnED%O&aYKd!+7%)EEaBl z6~q5m>RSx!H8Ypr`X8RG=B~MK$y$0R+L=?f+~Sit_v#+^U$fii{dtud!vAP{#g`(k zu!eZW*;#(1ri+2)VJnKR-(qURfe7T-9mUi;dkX8qeG>6cUP zU)p-!{RR8&!wIZYl%Codv|XHke!Ysp(rxTsNj);N*~~n`C*78KAlIk0?d#v=sitct z1U%R(Q)l|<`O2~b>~ePJ7ZqES2!7kUMj%H;#YXzz&ezX(82+4nF_cGof3$b$*MJay z`JXM@CFB3Sn|tX;>F>&;>Uv8h4(semcyDp>^G?;}>&ku{*8h>G5+C<}p`Y*JJM9V2 zbEXVCht;-GIz&Xh-jK6B=I zx^*w!kYj%`@}}38s@`pDyw=B=uXWpeJ*GlxPjYGHswV-xbePE8Q~Irwa!)T(8RmA_xy z{piZ9Gye5^&Rv(x6<%^;&XyaCyI%b13iXV)2*|cLjLk;HdKUVQ1=+!@7zv*rdHIqf!W^Fx} ztX?2kA)%K1elItlU5b)f&0`7OhimFzKh&H3zk9fRU)377)pd95GT)tl z9WJsfe`<~S$$-+je=+}VzT9VL5x~6Sea~yfg?^TsUoLGlWA%QV^5TmrTiztj+j-rl zJhD@-b>H*wzu&NXzG(Ea=<8?Ok-|SCE2K#Ba--dn+rKKanl0mz(>2 z74yr5t>2X2YM0OYxwon@pE6br4~gMsH8EpOcCof9a)Ep+v~hL1+7 zXqQY!?Aeu@zxx=4eh@R=)2Uu4?n9Z<6Wne%sjC7oD@KeqX--cWn0hZ-4dnx9nz6kW}cq z+GY{XHtC4?w|_5Nb{I`M@R{q3f8U(t%N9moPGG!H<7WG(e*L_Yw;OLRx+3C`@IpkQ zlp)OGcU|#+$(}SR07N-t1e*R$jgUogH-1j%*pQyAa_osTtAwkurhZO?hX%ldv|X8OUi5v$Y+gSIiAXQ~gY2z#i{^jh>9 z<7+{)6`#01NPW;^xUhIbq*V5mx*pHAQS(fE{7MC`go!=3r`U{f9m!~ z`<+%grHQMRk|J-`iBw2Mu;>IO8lEZ=4db$DzqCFsww?RzBMr;*Q(t346nOJ>5g}lRa1&LagE4!kM&)w{iQD=M9_Th162w`>tE|9B}m z@I`*qafSaTp)n6`_lqnzRjhQUzi9uVWG;V3>D3E$WD52$JjzqquvSiZuCV)oW#Rr} zH`s6ZC)U5J|1NrC>7;kpkMH@^$kcoKe0lpZ)|!wFDUIKfrunXAKW4*oSiE`5Epx6L z8=o`R@BSk+E#$nihQY~&_kS(Fw8dz3*Qaa4Z9f5ZZR*_yvD>Mq`GpG z%nsQZix15YxW=&{PHpnWT{7W4i?=9qoM^h+yhFXJJ$IAqh1fNVB-q~Y?}>bP_JHGo z*#T@?bp}x}3;ZYV%l4S(;;4MB<*)R53o(XAwTv?vzAt#5ct_^Ntt&s)N@SlFvCd=B zi>u=_ca8D?H;ZMBq<`cC?%MjEDUbB!tq-2_zh@QhtJe3hHRF}Sar?j1Bd-L^WBSL| zII-Q~`;IU@gY#z}P5SubP2IWzL#{&)KbPsKc5AY}V*9oF=W^Cxva7DY;!%72sya5o z>;t=K+9I9uXAeWtti3L9If}^ppNc9yru$@XcHJlTt2a}x^^)o+(yV@{TDdgwi;GD>{!!5O4EbR^f|7traC{jaxB^W^Yfp}`e&Z#JP>DS{@!x1dUo)VlWm_g1A9dikA?m> z|Hz|lAFSbLoV`ZTxSadGT%uu)T)DP^@D9Nrwi}K<)c=_1zJPHeV*=OvRoSgI^MvH9 z?r7~&n-%Y@l%f$Y`u&sT-RNVB*%;dy^V#{>`P?P%nrwS%Cdk73=breI$^&-yr^|Qyh*7@hy{&>qLnyeo= zN|nBfuC+WX8eu-!FM)A`|MLuqk6|@`mb_Z9eg5b5S2K40Xu5GtU*h_-jXpN1QM~f& z8+nX{Rq{G7E;+FGz<$R4fvL?G4h4Ohw|#o#^Al?Bf|iEL`%m3kw{vH?dhGS{b%!={ z{r!Gpk(>t89>xm(umAg)+K&FYRoT&1!<7{har1dVZsQF@t8IsN{7!hW>R5WxDZVp} zX}YIgp4NL>XY9Xd!z<3!iVvH*ii=e??HBs(ckj;>wiefp`dc1TziuxwJN5Mvqw+GR z+zIWMMGk}&J@DyaD%!E?>X-Z&y+(yC!Iu4#A9-ibE9miFv*};z;sfVJ_HpZc`mwz8 zqkr_$x8Yg81@zWEeX@Lg*ktRSA)S0e0mh!z%wspW{@mT<{WH+PLH)yuO}WB0Dvu(?Za#l` z-kYz=>tpw886O#EwyRZguhSKkY}!6OJDA__F80smt*q;co3CHJHZfGnPHc+ugs4d6 zI-6tLovyU^u2gf*3ail${ZSQLx#1?;wcgz)4$ZJQWx?{B$z!VYs;NN>v?ia~`R4D9 zeXDi(3ReAOez_>l>>9@diw7Lnr`Qe6A-^Vu| z&RY0rKWog+H%V0!Cxyjru)UblR`cexJO2rdL&xGP9|wCq4v|*yGxGh@^=f*0p^m}o zWEGxT>1o{unG}DiJBPoFe0aI4AVnSe0#lP(IJmLW}ziBwc-VT z>~zw%6W{Ht+NY7|op$BU^uveaZr0CmyK%NC`_A&uHM4$g-YUNDfXYdR>pyNc7Fe9> zJfL}?&SQp_XrS$Bd6>qgdi<*7F`^ecz~Yx$z~(@0&lLtm=8Z{Kkj6-@B_PefwQhd1kfo#VZfJ3ocYY{&RWT-)ye?0uQA^&AK<3pF zwsD1^S!e)n+^dzY9<`-n@zea)NtuYIG&DP98CS0<*tF+d*}AEJF7HcKn6WMFhSWik zqpvn4Cr_Eiz0pqiVKY~@%j!zM4-4X^WSLK7S6>(RYtzn}?uDYO=SGUJF46U=ZCbC$ z%6aiy@UMplDi6#&ka64HEL!`6wI}DfnuPGgGsyYbFEx)^?XHaK|ZDd$g{&cOH(!Q@YM_)}yf2Ftf*0p8pbZ6y1 z{`*TnK@qIu`!@R? z<`)OJ{5Jmm)fgzQceGs4GV^5wBPZX+N!3xuJoy-;@7%3RILzMoa+M8t!tZ0}t}a|# zdM7I{Omttu_UZD^H-=4)^p`gHe)f;U)RIF-lWr{!b_!lM`QriB1F9O;$*o2EB77Il z;#PT~v^eI>!ffF;CF(p8{1GfHF21}Mdk?gF>p%SZ&0&SQ12=PS&{pLcW{R(azSRY7 zJap*KIZM;up=YA=pYH0b-MJw-Jh(bxf{W+^R`zWxkC=tEFz;Kj@%#3Nr*otk12#W@=WJQ|QZp^eAzSF>TmTtT-)l*_=@d)^PkIC zeJZaVTJ@yOK=ffPS3Q5t{T}_R2Fi75;R{xr&wT#zT=U!0HFFE*yEHHOnf2(%$#a?0 zf6P_SC}YxNw&U>W+04WCaX!b6$Cnx!|9w{$JNSd$@s}f`VW+w8=NbGm+rJ3STkW@+ zS3A!B+_H~*Uq+V;mPgugI(%EBEfD@;Rmg6w953B3cTa`f?6urlD^p-M-|l+Ms|$x_ z`4}*jvNK7XR$Jz=@>$pR3w>J9|K>|{8s=1A4ksw23`Ia)2-+7|Kj%9#htajkzqx#{;8~2 zUMU~@7F}hV;(x~KY&2Kh{7sL&g3Ici7}>RC*QhSI-9G(FJ$w9W->1nuOd=wyP2LpP zz1hA#L+hn|?X&H#8n*R6kvgen^m%JA%Q@$r`zHMjbTsI?sUqt0$98e!UXgE3H@v6B ziZ0{u37ny0aAS${uGx3q*nggL^h*4U)$BjIHO_0SVS4pnQ(JJFO|e#X(M|22XI6(K z+~R%5eoS+^VTniqYk^Tf_m1zMvM2FRQ#L&D^;~%3C0T<4*>BZ7w<~Q64qfW5ym6;I z;^6a(6`Rj5t66h$+vHgJ@IMmnOupX?!wNNauVQLAyMc4TD>lFTuRi(zu91Fq;o_{) zPmh#erFGuqDwkINVez5VXaCh3{=#+s<{RukxIJ)~(k#FyGK1r+m+zUHv*~W{W=8ZM zUaXj~R)Ih0NKwLmE*-bXRR-Y?JX_W0TlQ|fnY3kxtB}ASk>~TjiMqseyl?*G*-{+1 z>+LKRk;qkDyY^fSdfmuboN&WS{$nshf^osGN!>fnHZIg$D=}Al{e;hY&hCvql`$I` z->zC!aGG21te)zVuy5CxBUVj5J7b^x-N&a2ShgIte;cj1O+UVHm!5Y2#tVUS!X)pq z$+R!xO}#9|ReMN&29pe@45LirC$ryL^Aj1NWw`#lL=U+YT=%l!?0(+qak%lGBX+TSjHHR+&__4!#J zHcgay5)pkeS8RRNxv48RiXGT+^nAX9rL>e&{UO~F?mg}gSsIfAzvXRIJiFPvP^owl ze@1r}rxdux$A7QlamF(MDd@ zBT+^_4&9CNT&p9!c#2PaUCgn%?UFlUANDiV$JqAT->$oL)P64Ck!PEiKALtT;z9C( z`^?TkQ_r;|aTGojFMoOAuhE+t_Oo|hGp*QIAo^6;Tkp~9%JL+==CwBaJ?3S*so5-h zwtb!c{Y^J!uKpZX_S&*(>aAA!KU=>)6pr3{;!)EErOvGh@3~iT4vlpyz6PrQe98K9?f?4YX0PhEU-Pe=yT0*@x-(TdMlRB-&OQt ziQb>rP5ahq?2@YADkhv#DEFr2f2>2*>#ik_OJ7uoT5S*b|337^EuO7%kB^zOPJc8n zZtWq5=;hYl&K=qx1PYi79>2=mBfub0(&F02W_Hl$d4%4x`x_sKc{-<^1(xcBcvh2M3VCtYJ?%Y!RVUCtEWR&aamnVk7X-wd}Zl%4ZD zw`)R9t;g}GXJ6hP3Aw`A!Tus~?w#7>RU4T)PIdiCyWXR9?&)!FgXHQIw|Sw{ZCkg^ zmow$Nn0tJ6ZtFVV($q^^H~x$Nt{w1tWm$A$48NOaL#i6f?uS(kkq6E<-d{WK*tI0f zf0I7MF5i4&&bE(RZZ$WqXL_&sDDQB)$@kl=zshv%U#@1q=B{(RFEhD2KCVb{{yFXk zCyF~{OcrHNIc+w@us`dtd|vDPey7_>O`o{*zx5~NaG#jOQ#U!jGFSW#yAMlvCD+vt z@@c#N-D(JLTo+R8;h|W;bn-yh6lIQ2$Jaz_++BY~^i;$21=Y-9D>=R$iI~b6_Sb12 z(;uE6|6W~=oU!xzE3?qNjR#iR99@_G>%+4mnN$B6_%ztFib0qx}2XmxqJe#IPvhS%E?xNeIdAIFa=d>{F^}^-*C(pXSja4&Plyj1;U`YSM zvqn<<8W$?hzhP(VxY(E95^-?)@weK}K9dWgf6lhnZ`qo+lBZ(lxnA3Z+SrpF+bZ~T ze7M&HY?u~bEMF|LPyfT~(91WZ&c=Nd-EcYF;<0*Ujzqa_DdTkJ`HXIAF~N;*=C4?- z(=;n4T;Z|Y(#rZ9{{(*gdBpwm`4!ttJzEQT?~~f{l0Q3k{l4$Nb*p~t@$NmF%VoYl z2zat9PqjGci;n5)02hbZ_W94m5ANFjXX}=?tAiVvXCJ)!=jN6DYi29Y-5&q1rDw0z z_AAT_nXg^_U$&2LmF_gl32r(w3a>A$5r1gC+GmZ*2bt6J{XU;>Ygr(4Y*CHe4xSf0 z99O-}J?}+zCj0kBG_DmDd^0b|ZtD-FeM#^21=_VzR^BXR=3wHCF_HY(vB-~c?oS^1 z&h5#z|8H5h`AbxM_7ZRsmp>gP%J?u(?Sa!$3mMTZt8~7{vG^A*DcbTmjPoHw-o0Gc z-#?e{Hb1mrYpKEBcf1O>9zD%U+!#?leP!-Vu0PTrdP7UUhc$_;NO@rF9iM&6W$HD@ z1Lc8y{lBjozms}jTikT@+&`&ZY-)FzFTKAa#krs+ppGvYgSl%WY{itnCsQK={r}KtGxfTYWLEai$t$+j|EwkI^B=>w(R`Qyz7tVb< zn?J4VX(^qYx<0reWNA_5zsv>O)~@qtvkBksx8(YEn>C*bvQiuZ(-`9;ORb78l?okU zUHMks^YrX~^(zhCjq4ebg|_OqHeWfoCG1so+NHZ^4b3;6cWmSqi$8Jxf=6O%qMKuG z^nrWNUF5%Qu=@U%Bm1_1=!=S}=~e8;J72cs-T1lcuJgZzdK2!tn0ik1l3>@IpY4D0 z(4quY<3^E?<-I>`q6>Ydg`N$+vGv}rRHGl~OP2<{HWvNt7Wrd`r?323wtYLYq{><5 zMQ@s9@j&gA9M7YTlQv$Ndg5q9&i9x5?RlCfZNGA4WmG)(o*@?$ZwJSvGtGI z#D`M?mwaT7-g8U#$T7*36Nk+@`1t+>Z+6&LBeOT>s^6}UOjoWRZMh*`vU!z`NTYCs zdCBy1-jeQ5dNleR>esaj`~LTSDDhM_OaaJzZ4{Bwd+=q z%6;`y>EZLv-OX4Ov|GbD_T{#PULRL#Txa^t_KW-N)|ywF?jK(up73ezg^g3&YBuh_ z-&XYL5%*3}F1CMv_kFth=E)?pln;lyd>57;5INeaGoQm|eVSpB7G~z( z>ngf>>T;!$>Yt@mF&>=vcLa6YpKd&`ywRU2c0yxY|MC^Lwez;}-eH)W-`cnK*@BA_ zem56=cz0C%LqN>Sr@F`XTvyg>PPyRR7I3P$bh|`g@B5Ws3u5ZUjko?{)4jfHW8Rq? zyy7#~>bU33^^!5Wz5i7BHLphpz5cMCS?`>*Z)JtUl4VMdxmF+dY+Kvpc;0#K`KVRb zm@?m8Kd@TUT&bq)X{OHldHGkkd}TC*erp{p{pZ$_9e6KDZrxpZ>wMO0x>rwbcYOXj z&t9KPX5$N{Y3%pT`tWGoKexZ$zQgW=Vy@-}PLbo97k19fu4@0_$r7@%?weGE_11zX z`waLs`b!#&CyEAMk)Lbs`*~W}z2o!GKRCJkMA;s;!(oRngkJbLYv+A211;UcJ=++s zGtG~zl#+hL_<0Y*mcNn<1w8h6>e`zw4<+l@!uM?-=UXVQdwE89) zi=vOeBfEFr;$9LdmvC9$pUq}P=*M=q{c>O09FC_w`@);}s!Wq<#j_h6vr<2DyK#aTMQ0SyAEDsoX=dh zqeyD6_y@ne#i2ay(1qu-R!yDDBYS&q1CxFD(`0S`$48q=wtWmXZ51qf%yE=`VN8EP zgYor4o^q9T{f@5_PUR}>)$2OwFSd6+_vzG-)Rg#>ArIS_3^R7=1x`wO9(sI#)u#QE znRWkEe^}zYjZgVxpo7`zoh!Ael=Gl#?DT7A|&x^ z&Gl`XrFVsj4^}-8UiGKqsfo#)dvnEIer^e3@MM3%&KS>Z$J24SJSgJWrkgdXk^Zdr zpXyDBlhP3To7S^hZ0>ne%Nzd>I2wyOcP>ovcw4viuSQv2oPzW^p&y&t)TbFPXFB*X z9nAkHRwkDHDY(2~-A}wcSPidZK?o_iWZKrscX-_WSQ{oDrt^;d0E! z4R7~*Hg0JUSt!KuF(X0D>#X3EK7|up2Sd&*vMHAGTwvb0&*0>Pz0U;8PETfg8Y@w0 zF>{5}+Gv%<;)fn=?R|fwm_K^YTHOPo2e!|*>#Z|xcM-5iy!$+O`D2y9$ANV`a{{#SFF4##-O$+T z_oC9gQ^ik5>U7?T&;IHxwGls_Z?^l?_^qW{?Vz9d?(-Qk$G(|v4(ygCeW z{I$t*s#*2o3bnMk(qBKh?rXg6+J$Pp15*!#H>~@1-SY|m2Ic7o{rGoy@|@?A+4rGl zo-Y62c^T6;sI>mRqG(dYUZ-4OekkL9{IoACCtIsNVZN=ZJKZDAciSfG_wUby?@<#; zEfiXq;pTnszul9ayOdtuO4_&nNjbY2W4KMNmc8EF?QKF_3I{a>4;xi$pXxpEu26L% zug&q_lE(7K>>tWi$g%asl-S*FdiUp#&1chKGqyvuQU@EeLZ%#=dmtjcLB+qdKCAz~ zS>Yl7bnc_f2P+re%zJV!=$dcX4b`|k8ZK-f?^M5B{n@)GitEz$z3uI4*-!7g{y5MT zd~?HH#{{n(uZ!O2B~CjuQNx~P+3|b-8>*VPjho%p0k87w^z0KgjCPd;U&|b&p#It*U1pS&uqzG%_Tppd!K*yuKu}v z^~Y_muAR7$zWw{X*;7s!Gd*8p(P~+CXOh8RMzj4oNscxCT&L_6{%Btay&K=O;f!M2 zr)yg;hTE>NdlM;j{zBQuhpo>)?zM4?3VZq7hT$yNlBxsB4bcq~C%Crt=mlxc&)xZG zMU8^dE2&cnk*PH=3R~y3i+Dy%(DVxRfB8hyfqgGW@^h!_Y1Y#+vbEBt#5JB*s3|?F zsj=if?`^&J_j-2!d-VQT$OE^8=i5@hW;RWo%vO3}UHO3prF>QTd#WE+{?SwtKNWr7 z@=8HsU*7xf4|xx^AGokdzy6NViOFZuUn@18(wKisB3x(6(S4^1?W>)3ZOPxBu(x{~ z`(lq@uNkjT^mhCeZDV)T&zo@v>(js5e#y2{qO)2>87^wQNV2*6SfH-+(>jL_mYnh; z>B4Kj9?09Aa6p?Oq3}`!x6GywG5=&D-n;Z{uGxPmr}fqA+5^4^9In6V{C)oL_4xVq zRvQlniFq*9sYcF~QrA2+=N(h6+7#Eyf0@r)UW+L8&5myOSQuIO<4M@5tb|)#!4-Gp zq!w}6ZuHa4Hm?`vL=ZaN}b|$C=YOa(j1nw|9|#p|L4r-o?cda{P(E;il>GZal^0)cj3Y zk~coKzyC^AkKjwqGuIou!{!{)pYz*8^z2c=3C5nP)^FBXa_K~Y5z0x>==|=Ox>EiQ_FF&oOHO1yc<zY)yJMlrI!Dy$pZC3g5iwU*^*o$jx{vMg{597nNKDe&zv-7W$NY#w zu3AR9ei47ypDjIGw$=y~7;lJnn5h1+oXOOSOF8V|xq2oBo$LFQ=4|*7leTb*dhz8$ zUoLZ9YfY7&$MeVf!rU7sombAR(VQ!gwNm5~gIcf43dhfB8I{xa+stQ}5i-fjP(BonQ9yIOUiukZg_o@N7o2%*Wr} zEM3M-TK-8Pu?4FpHe@*^s!nnJeM#}OsBhU`uE+B2jncC|K7S)%^27btO!b0CpMoPM zSO44j_55+W;9NF^KMYU*PB?Nxd11($ed_1i9-cR`6VH`;XBXNRRiRhQS+VfY7M?om zhjGb`GHiEPdA?a|Oks63W0>|oc3!(hebqVf&|9l(p84*c%ptVL;MwLJwyUQhQAJ(s@Sv|@+44cpxHmK^)f{;w0AvF}ex+N_U@KDr7O zZYufY9OW>N?T<`qhiJpb>c02<|2JIU%lT~vtE}yUtRG)~i}b}*@bN#0;S9LAB=vGs zBahq6=7NGPVM_CrX8Yggook}fGe6!=xXYs|YuXe|ff~Je{c#&UOgdzsv4#2H9-IFq zYuVLoIGeBEs-FC;E`YUB?!l&~>Ys)G&-GAnn6CKh)9t6-eEf|6^bIUGef#)bY2W;| zf0E1YFn?+8Soym$YD%-%oYQKT%YzuFKg$q*7sk+#&lH}bwfVGmcZzlAq2uYRw*)i3 zFFjzDAbd*ufcAm31mO*xzxJCi%5l2Uvx&1p@&?D3!2H|HUzkl3${*MsxX-wISx~#` zgG(0~!kwFRPWt!z?NGg(c_;1NQITsMp}h)gG|mcqEaPGQm-+K#&DHqdFQT4aPC0$u zdFNYo#{JF~N5uDdYTM2Gc6P^4gF3wxN%~LKxz9g5bR*Gf+qz2eQs+h)&O6OP&L=+m zJOA$fs&P(tUis-8*~}kwHn3I5{V@K(bm}vQKGW-fYszb!U;2OOsc_2HIMv@^?DZ(^ zXV+4d|0M$RxqjrIwvYW8d$)Yw<;5m3QBgDF{ylxF{xS3Y%x9w6_hfH8JMdrNLDd71 z<*{|=Gw)2gmCDCc&BhY&dY(=3LCZg@R`HuSzMQi~t#!9Z3wz^Xrj=Q&CmVw#9p9?Y z`}F*q)uEyU%Trtlq8p@AMGs|7>CN=uRegUxe3#%mH_Jm@y!-e6kWy=2e=xe52hLm&M6dtLNIwP4St9acNnf(?2JU=i!IDYOJ*NnY_3uiqP=e&MB#5gSLSnQ;OuG+jygZYp7Rd6l2 z-jlg}MT~mE$xV|3{_k|-=f2sqdBLVrpKr%>d~#l3yy07JDu>Ko7BxFIhNSx9cTJmj z+65*FXq5GxOn>MX%l1Yzz9;3I+dNJE`d5q%rW%_Ye>bol#O`m_;)<(9mYG&M$!)@FQ*6IcpoAdX4jT-J309h{~A=W0KZ zx_Bt&-amAK!E4=3M@uYBOhn8tW~O30LLzDj;V!aCth|BVxT zd)e->&S99-Vsy^^V(+2v)s1J(7K?m2eB-FWtISp0Pp0(iSx?NLQTEbydfU;HhgAd* zxy@#|!zaVAa>~P+tyTtkay|3gp9Z&YJ@AkF+_Tj5H*>lple%Jd#NKDVBRJb(WvBXr z3%S2{a+oukFFtd8=ckYzs@%(zL_fMt{V3A%Q{%8ulk!=6+4C=q=Ic6CCM!$ptvQl? z;Gu@P@*JKw&;O`({+yDql!xoG;OfLXP7~_dB?ALnzw291od3Jn|B&d@$@UJn`*xbK z&0v+8b$H8ZZMnc3fBULtZCe%DB(G!9&9644!clJNE+)nuVmmD44)A7b-?po7su$YP z`K#XBi&^8DxHbRZ3F;e*e(&XY>V9#}tZ$$F+pm2RK5*S>f?8eaAG-sZ2TUFqIGhr( zbz}9E^GkUVHRA`%1^!EmdO2!W`9y!St9u@;!t zJ3Ko`Z@s<0u9WBv#iO64A8c8{eJnG+>~mOut;MNki*Tj&^;`v31#ZqWr#uw&KV!b7 zpM5XOWVzNTd0y2t`L|+$_qKm=c~|&tx$*o*1>ZkLOhgs?cf``l-6Eh6AT(t;c{lZ+% zXz%vJ^whPY4|h1{mrkp{b-Y<#1GsH2|EP7I_u%xuyahL<-=1%SRNJ^XcZqM%c*17UoSGqVFS{)--o=QA@?|658>aUkJN1guteb2Cuxke$7 zd&)Pvl6`E|XIswYF1W=KxS2Ka|4-ux;Tzl2{;X+t*l~56+fCtzuMey&JT%kf<4LUt z%MX+unAOs6{A8WR`Q`K4<2T$_S2U=J{}bNW@2KHuO{M`m0ktu8T=|uW!5iL2*jCzHOtfHCyzQ)fwMKvnDMwpSMQoz<(yY zM;BC8DkrWwDB!-X=_Eg+m+_g-qQ`$WTWTK{lb$&B+j;}<=-p`#-fGNe>|@L_+-zU6 zD9-!t`ybv97)5&b8VEj=ioDTLIX%hlbZ{5b1h38S+;)mT%(Z4wcRa}u_hRS!_Dw1$ zSLeQ0u3II?JBK}nO(x;D_IV!3_nY$?ed=~d?(xsqXCIm;V3GckGb5wtTXM=%?tIm* z&~(1=y#G%-KTEA!lX%{I*5!sb_0RuEo;kVunC#NGYocQtL%6rxZT#FA9KgrK66ER- z9q`V52m21`r;06hzc-1wzdLi>!Nb99%9_a&wtevTXOm+-<~}d`_s`{b>-<^kUVo9b zkYPFY{k9*g9`ipjiIitzx@J=s_0*NBehP@~G-)#w(3l@lWfR}ba3dum^BLcw%2iJS zmc5*Qfla6G&f`fd@2`sPtv=rp)j#w9zT?&HFrkK=CzCrw!@FU5L+(meHKu*fIUm-{b^85txp9}tooBKf zku?}j~h%|@9g9v4#@12vv2{*gUp_hVYrhf_-@mgTM0p7`#pNu84K zyNPxWmMm2_*eo+MBIrrnsUu{=u_@M(>(YJ!_bLzS2)a;*s6Hp7nS5 zdt5DVI!oL0dkcg!*fXCyef{f{0HJrbxva;SrMaKJ_?`QyD^>o%`@nns26t|{v)-4z zKiBkW#s>$U*%^=IJXUjlvmrJzLBX-@o(&+q0K8&pZ7O-8g#ojv|*W6Z;wK$xrv4UX{Sx z8?@cwP0DRgxv5wCepa zv#1Z2KRns*a-=V;5wS2Z%**2Exe;;x+^ZLvJ({;n{_OPbe_mzsaFy4O+r|gh{F|XU z{kwW&_9>;HaP~vldpBIyd2ui2*q^U|B>&_-`gi!G%^_W>6R-99bEhsp>YKa3Vux~r z+ms{q)&E{HH(DO(*pVtFVeh_q^#R8Ncbwi$+;dbiU;TjLfl!V2Ejtc%+@D<9|K<~i zNBrmSixzC~d@w=v_+}keMZczd3XZXN-QImz-Kg)t)UQ?LeiFi! zcl4`v8J~S$JVEW-EUp?Z3%gzZZ~r7sdp)7_tIzx>`)w;f%{cJTyKk|&VDO2;gU??Z zLfE`^OI*JQsJ z^8Yt}V>10&8W+Q&n#7YIYxD}c@{{kF91Nba*hcJu^?`P#FPB%oQEzzXyWzXe1iJ~( z>ip)IH%A}hGM=}g`9n4D2mk3uYc$_)-u6B5xMxqS$%?spBB%Q$`)lX&|6!TH6R;qD z@#LT>``P}L9iL>&6j^e!x<7osJjWm7Q<)q>Pww?`M>by6PIzOKv(@U$s-h#89#^VN zyfrs`M_rG``QO6ot6wqHam{(G-R0ABVV}0}^Fupam(5piaDH~y;qo8div6p#CtP^) z`H;~;`?p^%*S$Jjv-{fzfA&WC&)+{QKCsq!^d)@4XO%yP_A}3z++C~ktzLyguKe*H z$saZalRoQ-cJKF%U{Stq@_j8AQ+I>&G@0YsmIvpQa0lPoI#p~_EQdLx`r--g$*ZQ- zZ;iY0yub8<>&0b1{pXuE&u02Axi5dUgGoJ8-)^&8=4I37UE1b-A#0gP{z22}N?*3h zGwfscXeu*d=ojkh)pfCyNX*`2p(}jZlcDR_>%MzUpHv^rxHIqL{JCEaKRKT8p(-HL zsfqRJZ129u@(1Tu&o;8zTzI@=5&!u@g97n_8S5`7RiBryf0A|MsiX1y)&q^7(=Np4 zzI|806YyiMnta@$E&K`v)7b5OB0ZkIwDC+YnwtMyd{P|GAAyBptAq3^rAiCBAH1@d z8M2!-_T!9efg16d3<=?|dT#5l2h-2koSR>+W`BNC!_PS{_J_Jhq<>6arQ82s{>Spo1(F{(Zthw! zW0IBl55Ws_nG4UP?U}jXR>S>j{G%yO=c98ZT<1J5*l0VS?GN{c_z1zEw?gmgw#Kc! zcQN}~>dpg=-ThC$x-e!c+%=UB_E}S0Gyk1y?f>4xF`V89PR_gi*w1*nDAVt=wv+F% z{N0kBcuka}L5M%*>Cfe7zs66jw~|-()W|sb!QY+fsP!3}N}f~e8y8xxUSo0SgVckB zgjzSwBe7hp*`^$Zze}0KndY;XX?d-2jdk#?lL<&Z6TkUK#JW@INn16)z389WZ~W_f zg+zh)sRZL`QPcBt{X0qCNqqTd| zr*}&lF6HjFeBYz}kn4qW;J*fgg*i6rz3Z%mEjV9vCyPyGeeq@eqK*3(9x%bX zXW!Ci{x-i{t@cN_F_UAmPrBqQE)|CLGPWySV?rboZ{~fuYU8^yH+tGM^D}p2(R2-WcA-SX zY&F)T{U?QmpT11_oO^ny!tqSQ=A->Wr`~;x7dzP?#b#;y=8xNgI~+3NA2uJ`eD9Ir z`qKgb{1f!mMPlVH-T5|CE1^dEgYT5XEB36K>a$k7EcZi)g2|)A?*6C0A`+8NHdIHo zJ)OVy|C@c>H79o7Z`kzt;?(bZS+n-~Mize-z4t|4GBRu08L@6Ih85ccG<(Z9%(HLA z*nxL4iT4yhNV0wc;lTg^XfO*BSH`!$P?@X;Y#_2le z$+Yu_zg=nIZqQ%&Mr7luw-KdJH@2n zzdrpDpY`CEM%NOVN3|B5KMW1jnhQfV+^V$wV3x3RuD|8NNzdn(T~p6@?Q_{F^{{Bl zxikCZKBnKuoVT<0yq?`O{bxaog+0!{T_<^R_w!?n{S3Rsrp8|CX}@}r`S(9Yt67%u z^6r);|7L15m>u2tXye0U`Spu?`6n-kFS~Gt)8>{L=RA+L*)|iJq)wgQKL7dZXy)vx z;;(iq#Pk=XEP8*V>Sz0urw0TNbl<$SsOZmSNkvJq6TB^{4|i(>Pn6ZKo4aGdI*%n6 z%Y;we>+XN5&-v^K%PSYBbu9OmUirn%zVHvH#GAYA467LP=bF`<)d~8{NVjnAn_aKA zeO1$i7cPtk@84!x5i!l};q_VP8a6RM`~2jzcw?&8`p=JVzZc?Cew%0bIal2*LcPHB z)N%nU=g-@`4xBTOTl-Jo(8UAG4rtnKZ~ye}T*aIfQg$&7p9A-?^)y$!S$d6qw=Kur z^=7sI4j(=Kfl=k5*z_O~!A{dNM#{gw7poO8E2#ZG={;A}!I32-^Uu+k(vHc|QYwi| z8h0%J^W3|AsA1D%>vwB@?cik%@`zwzNetNieC^^%u1$@VPq^hihrXHgL}=x@;Ej)O z{@ly@gR_94aLTP8bN-s{Vu5{JF+3h$;@EPU?#eN}WDg8@ z!Fq4Y4+$~0drNcv==W)>t#l5aBXM@yU#(Ne@2szW+=4}MKrE>)*>i zsrvaRhW?)wtqiwp%Gf`!PkB6HSxMx7)38~~FTJ?z6Ihjaf98d+QInT`>i(Ht&=<*< zt;-nJxZ=W(H47b>R<1hAT>G;jYu;Sl)geZ&FTG=FEny4!sj#<*;ZXUj0%g{RT8|8F zU1yxmSnIdHGdTUl2f^(Dr!V{SGuX9$@OLOz(XBtV*kr?u1@aaN9}RVGZd~=-r>geY zq!YH$fyXz5{kAj^s$jX{EthdEDm`co`bjerCv2 zy!b6q%4Nx#N7G7D*$Q|KR5!>i^A+0q zW4VSnb8TT_u#)3qg|7@pe|+L+S;u;BS8b`|*Wh>W_?_0WGc>#wmp{By(#*^HInOMI zkiesN7BOjjo9CjiRgUYVDf+WHFw!}f4?rfUtj!B^3US>_)zPY3<*fqI%YjZ)+Bv(eA3*I6K#v<003B$r{SS+0#6)?~$vpzc9Ug zzFN@zP7%3XOlP-s&tG93_>b`ilL5!74_fWm@DZS6zxtze&8G|HK6RZCf05jv-Pq4?*ys1R!>xa; z3-mVVu3xhFy?dXwy}rTS%J=MlSS)x}@ptXE;d8#u$nfE>>+uf@S*pqy=2}nKm$zwl zj?RHyMQ;K)R!BMK87y<}E-_{2T8O~HKyI~WvZ!a6ucjkPvJQc<(I*uM@z4086#ZAs8T5fpX^zuuvuYE7a zw~v{zjY~Gg7yY>`*c!CqpR)dkM;GK%4EGwfMsOP2X>tgQJrj7q^nfcN--J0{Q0RpJ zA{qWQYef#IY}l*RZpQSc_uP(`3EMuXJy@=h|LK?1=2=x?Vhx`@x*q@Vwc!x|h26Wt zTp!=>TeI<H%@t~cuncxxeABbcWOQt3Z=&}E|n5g+vdCK$EEdG8!LJ}<+$P-zB9=) z__6Iebl#4SbsyVPmzGLTi@sx_Gvcmq>tA|NeL~{y#`A&OJ**CH6JN`Ig*}I9#rzU+ zS?B$dhv$|X_H0SpK4r_fX-v!-fYHa zQ&WF8-DXVXe%xr>@VR08viFC@56x~cZk)MHwsPB{J=PYp7f$W#m*M*(y@5UHx9pyU z^KNN#9SH31dlo0ptW&^Xkh%PsrG#pN!5ooz@!y|6IqPM;Rt-@8u(y0s-<{Wq#%4OY zDc1bmccT;5&kT6Y&gv4_x<9gjjhoeB?(uxP0uhhA!>SeYyPZo#&Rb}mPg;Jou;SB} z{cqW4_89-UdHy@YGREaW&sp9#JUS9z%OTHJH)Fv;-ZhR|^CsDI9NqY)jrqQtCI801 zZ*9ce*0Vlv@9ujh^k=nUPh|4)WfxecuKn%CsxnV9^KO6~i`7JJ0sh9eOWaEy&NdBZ znDK|BCxX>vUB2#|b5HB8)xJ(wytCj4^ZkQY9EHBJXkl0x)1lhKUU^l7+d?Oe|@v5p6)l1R~15kb+ii(FL&d7r+O%P70>aF zEIqEO4Z#;IUWnd!yiINCCeId6?q!>ACMAYyf7r!zanT`t{`xhlm*h^LyK2w-eBu7j z3i&g0<~)$`JmdKT;Cs0Pba>)%rIxii;O(Oqgh$6)mNOdVmiw=oi7vBe z-td}5X@MJKSpUw`wFWu4!5bf`axeR=e1*R>X{*p7eUrc$)1Ql-+ue04cxEh@ zJ-1xnb6a!imfQV*MGPNby)yGn?*{f$dI$UtXe0<2Fs)!@kPb9sJS`~3SiWeFjKHf% zktUmbo+J0I73aTOUDEZbvUT+eMU9eghvdFHrt|-=et0n^F(B6WZL57a=f1;D{Q61( zd$%$d9o^OI^DXFwtk4cYi{PVLGNHn&4NqNLv--e^H7iWRtn?nARkwAkv?x6(Gv(B- z38&Wgo9A^rSbK5H(OH~(R$n`QwpO-Bpw&=2@lKIke2q!_j7*a$orRBG`1H)$9&yw? zFTC;X+w*;<7i;vd7S0npv~!_~8>h|E4c+1m;+b=G7{0}Q-yzGk@6MIuv&H5ejG6rC z&E4ieg`)xCn{V1Q=FDw)&@1kF?2h?QmqwLMT1yk(y`4JWeOk4hC#yr#g4Hh))uMan zZBTW(n_{%zLTZBg>hVzR#aTv-YhHjeM?^j4cNQt5g z%g!C~K3M#t_PBAFP~*i@(-j}8aTRB&ymKtJ;jHxg!NHpLuwnOW`nb`A(%I*C)p(oV`L#cEKOqIoGvqS{F3mWkpC^{I-5Er}K^zO~u@` z6|?X9^Heu}zgG40-jY_C4KMb7X$W<=^{C~ZM#twDj!YXl+xcTe1>Wpf=yO!;^On|n zyZDY7TEFrd+Z&n#9HjpKXy0<}`NWUKiDxFMEiFE^=;fbvPqP!}<;FHnX;0Y|E&uj^ zJ7;=r+iRQC=buNv5wJEtzHagjzdKEQ&^e zO4EBA?RfJ`;X(`9p z&AChOrq|m2iz;K!|M~s9Xz1=;3DUMkx0yFjDV1BH{Cv}5vDNd~dsQ~Mmp`!cSDgOh zvfCrh%JVCa{VF=8via=eEm>l778+>^J7;mT)<_mH@*7s@UhQ4-;&J`q|Bcr5bC{dg z|Go0M;(3Z~Kz~np@3AwzZzqJ=_gs{Jn#uF%oXDZgv-Eb@v+vU{*rC7Y`t-o-=k2QV zmwmT+VfpQ_|L^ll>ZbW`ol(SoM>j>bn)WfH(_31uX>z4bo$tfyXzQl z^E+N#p6~P9SnE#pZ|=PP&llQmKXR<*o2^|khuTBo$;$;y)D=``OHX9H{yBj!eJ@Y> z?xj_)w=iBhe`#*n%IPeV9^|j`_>t&;^;hq@)xWc6@?DUWE4}mY6CYcD(4CaJ=toOM zs}9_@W77Y#-hk^tkc79>l!jAt_iVoCvBS2#N?C8u+pTZP|NMHKHz!>A`37_5rFS{5 zhrf>PKQ3B!dh+i#_w(i7&1zNcxoq7q^;Wj=O1{m0d9J)&-)EEMoE@Ab1v-0bfbsapluIuHo7w6V~xV-N{+DHyU16;$xF7J6#eo1{PzemHG^NDZs&!#IJu`)OwqUb z;CI30a#od3<|CVs)Pva{e_VRc82@YigIV$W{%q&=k9pAk~U@=$rFN`SF+CE*{#~_&!`QSHoa->&o{FbHDs7nP(lItL&L7ESods;;XMeEB+Wf z*P4FohpcCRheY7SFEfH}J%6ybF^g}e(ZfZ7@8ZnYxmS7m%v)i~b-lt%sYiop@}p3O z?Zui?z8*Tf(Wm(Flk&RH>JOIo$JU+Yx2bFVy}H4$I)@kEK@s`w}@#EniCiS6ny$ zX%nUwiwk4bf^Y2pKKuKMUEOmmduOIJ-&Wc6KIfCN@b>ySaV%da^_CY~`7ii>;JM=$ z=A$>(nwP!~lU`{4xMo`Z#Mw)(Oe|Y@hP6ZeVSUiP`e$2sdZtC({++fi@aqPyiW!gk zc^341cxv!-`fYn2^FQ%*-S)qZu*!WizPP{q&5=i6ZGS)AUe~y1hqBs^|NCk^-^S+W z*l&N>zcI1q_PyzbLcYwgLTWRoEAUNDxVo#{c>bX~_JS%QicWWH%O;&Gnpf4UYF#S4 z&aiE_TB4!nyxD(RT8=-tbvFOrw?z`l>&%11%aqURvE7)?m~C;fwZ7+!_2u*C%EgRq z@q9IV9#kG<-(WdIeC~nM{~kZ>y*hh-jcomHu467!e~ER zyUss9e_vVQb9-INEs-C|k0pxMuI25#?#$Hoa`M;iYi$+xC$ubf6bsmFynVAp6_18t z-)1L9(J-CY6KA#F{OYns^}1;AqAaH=mmX|4xu<&a^Uw1uRZ2{Fj|Q%ID1LTbSjD^O zhI~_Lq0?9QbCv%+eR}pv_xXDcgct14yC|hC_vNlv&oQRm7x!#cU$o=q&ohzLdg+EK zE6?xq3puV`Ww!M4+1sjtubrj;3gz}jzRsPcYVq_#?@!%J))((CnDZ`TzTY0>kKg(( zmi1-)xBe=+O)c#i@3AKp#=ZKS#-3BB9juU;^k%#2zN*)?FF%wX@aL`Y-8gUeqMh0m zPY+K&RmFX*AskfX&Xr!n?q02aFWmg@Ir}%^Mxl!@<|>qIon!O&=jGp1-D)`}{f#;P z?~LGDt4TsZbJZJP8Lxdmw`I*T=B5<)XVqrEi>+o=y2u+DO_G}%$aUrubJZH>uQ!$? z?}`2O+Lh70(5mOUZt~SjDW*Go*PoN-|9@LIPrt;J+>RK&f@MWe&KvYBF zWzIXlPCPCCv1|FeXTP6K{lot&DcwK(VVVB^qHoP*JsUHm_tdRBu=(S@wmTX1iyv%0 zckjXsnTDEmv+Z@clV9KYx-s0jr9%F9t>;o(>3ae*i;}obsnnXY8O%I-SEAPN%%tg= zIUIj4rIg*;^}(xnf#p2Md&xaJR~`uZDXRQAZ%_E&bKUP5|7o?`8=3Sot=L}t_4&il z_szRF4)D*rbN23Mn^X3etasR_=7ry?*{`2c|M6aJZnF7%369@C=l7o1FYbMtrMrJY z_N0oqrNL?cw*2$B5`FPsZz-dMg#XfO#!|;-$o@`Hx!N()XoUHR1^J-r)iMNNWj5SjD`y?-(D^@Z$ca2@MEn6S&`P}eXcju%ZZoYM5 z`wf-lY6;R+Zb7+ijuKm6H3PrBCfevk`hvoTC- z&(dLF+yDP$^^b~|vwS}GIoALCGSlR{X6dxz8@Idv*G2T~l{xsYBD|b0S~NL|EqjUT zlJ$q42wQz#UVARdH(tmsEr#2z>_|w5>7?^ZxnD-z2`Kw0B(+)5UHF%Xa`vuYdrLZJ zx+fm4WxKDOEVtsNg4X@Ri{>5LW$&@aJKgrW>N8e(nGfoW6E56XqMsJC>R8p+--$6T zP5Xadxm&aQoV&fmgkw{-jm*{mmKm-N!Uta@AXy;31r=daos?-uFDS-s&46-9$zre2q@ zOnsbtGXMB3p{W5AV|N>h-8(F#QopIL&eVQ!+}ZoA|N89W<4!$q?LT~0o}F#K$HzyL zcmF)J@_Z=sCHd6VU&`;)TK-sjv@ZTm{{Dr9&C?Eka!cH#u+ug6qkYNUUT>p{UDl63 zRQ=rDx&HP1bo;Ekyj_hB*=iTJ~!)j1Hh>&SF1aRbTD+dJAX$wcoh&lK;*xMHK@XaAVr+y%$kf9U?Z zaMIRh(c#ti?93kh`n%)jKA)d;5~ugy(+~KYeeb;N*QdwRlX54$m}{~pQjzUnhzzK-+cHzS!cRa&8+Q_mBP+dJX=+56Udf4y-p_=Bm*j-ScX zog!K7zg)46xlr)t_VFVHIWOdMPcJOr+mN2UC^0|h_P#H*#wCwp3%8_fv#yUy`no*g z`d0rV_pBy=z1C{*p#5((|A8|Xrma7zd#>vI^`A4=v4(Ky<{g7+cPWga~m~ZD&3pcJLyL=!@Bykee3S<)d*D_+&KH! z^Zzn;zCC96^XBBi*NgXR) zTcRy$(==@(lV0EZYh9(jXRVHh6iZH+mE$6nb!A&+i0${(%w2ALY7aL#Ih~&S`=c+< zJ(Z-zlYhPmk8QE8mst0UiJ{!KmVbU5^U?1!6mEQ4c-!CWeKp7HF_d4t<%%_h#BDtyhvW@6O}AI`hf0gC0#cs^3k`{M&bPip%Mrrycw5 zmafjYpK(V%GGOmPTM3rP1y3#548QDC_uw)*5^!>()lZN4)`5#lcKKWj-+eWuZ+_d{ zDBel4*stEX__^Wuu?JU=s`#9ExoX{Qxwhy3c>?Zy|6;r6_mm{2`?fEhtL=KYE>?H- zUzeKw3<;}!ZXCbqxR=x3*&+G&B$n4%_AeI&^?sOqbE%}WGTX+>h3}mC-)-CNw*A=8 z*#~|1$q46{eBGf``-rzS-sVf>#UtDHE8N`apK|te$sCzJuK)M*rf0h{{Cc8t?>(ROR_v{Vvaxv75}O{I-S+wQ z=Y4*v@gBZ7!~Sit-0PRkO{awuc26}eH#Lw72>P|=Ui5y;iz_dkOWz#4H>l`yXoub` zA3>Xn+2ux<(x3ll#gwxaii5WaAvb1O0vu#@Tlch!XZrd}M{y1`S?;kmffIrO} zZKs@gA6GW{#M`5_@oTTg_fP+8X0IWI zmlkMyO!&w7RjBul{oLm}XKk`jz1Jq9TTpR-Iy zyZQC1QeE>S?fJiI^G};PuCq0t zzuCl#r8lGL>!V!GeVSo2zpQWY-uJ$L{S<%i>Fn>tBF~I-!k=#Y(pfiU;;yn<-t6^@?CWnGpI^H&(ezK!*I6-7+dpcQ ze7t&h?wsW-10)?z{yw9(ed6@Ywj-}koNZsvX*lCt(r?*h=?{O>e?*+KI?}cvu1$;~ z!^2DXd@XCjcC~KDDFUnPe)|+9z1kVPp}#GCVGXPFtj!;`6`b`wAbeo$Y4Ldn&f0VG z?ECrh`sZbr*;;y!?c}{0`#(D_`qkEpo1H(^+T3Xk`||$Yv2|jO;$Z^)ivl^H*~~Nw zRh3nZGWFQE`tOOLSBE6rlPk^~+CH`UbK)#h)lWCwcHOH!vg<^Lq1nm6kAAVPGomf_ zu3Gc1?rqyC>CSB--77CmdLMLZ^7fDOUT(4SlTP|t_wwtz&tDHTKiK(Aa>w7l412!6 zye>aWu=~AKb&=HXq^^0_)-d0Wd~?;;I@IW@{DcG8M zTs}{Y>oO^odjG!)O2W79%(u@~2?_9DcZ++u&bMW^?|4V8dG0%-I+bTn%zTMM&$c)U z>Ti(>ea7^4Pumj%DbZhQdu+WIh(}c{@LhfHLh-j4UK^%Ab|3EiR4zEX{=a~g5?uz^$zAr9H1WlDs+*>)L^{v#| zvb?0^t4p$D@8vkh)$tnSuUvL~dDFyIg6x+XtWHP&Df@i9p`LkO^gr1Vjl^d*gcAuGXV63oNOQ8sTzpbmzfA>tQWmCPQa@A{@_PzIuO^#og zF!5r|G%4c+QcEwI?aVzi}#rHm3rv5P1 zp7TKX+&zu_vOFDyowZ^`;cRznE7J_Gw%nh^V3eW zm|uRfOv>)C&bi6Sp6%-s9zFdR8FB34-YMJe`MdpGS7lIiL+wkX$xP4f3)~KO8_B)R z{pq#XX|IgW&vg<$%C?VP7>@3?*mW@6`gHpAYuB$_W+_{{Ws}dMIBCuGA$95>=Ep|9 zFP-0dyIw@%&)Ui6pBNlI&P`rkSa5&Ry3?Mudd=Vdyu8W&>u6}c@LxOL`dlfwk9yy3 zo!-pdZ+`2T^~YL~B0sb339KoxiH$PrKi{o*yn3G7VxO{YJ4EAN9hsiF?(xS*m7N@m zTl~v~ZXNq~iaWaanQQK?$_TdL9D@tV$yH`Y9BwF_5wlKe@fL zmYA@0;*0XxubI~G|JE&Kf90rS`5zwjrx)YTTy)vRpDo$H^zz3w?B=Kc(gU#qq+UZJ@8*z)xULzmsY(Wb-t*FM{&I<)JmP}`igqkLzctu{$3kl+tJ z)hzwf$C&YgCQF+VgiRG-jHxHlamlm|RuX^u`PR};cAVZb5YZ4Ep1+9)3uv#?v!POvZ zt(^{MC-t~V1o6KT{=RSGsq%fs&o*0}3c0AGytS9hP=D^Cr^_=eu10svb6;_2e)h_k zRU5Z_`7F9RF)T`iX_me8T4FhU`~B>QSV#S20%wH*;+@<$oHsImq8!bJ_hvG22_Jr_GzVN$k~@=3QTA zu9%7bPDtn`q(pyLVQn&e<1# zxaH~^#jNL+*XD=&@jY#L_e=WKylX#x6s|ukcRjp3(M2kHb*D-At}RUmzc7UwF1+~X z#*C;8-kvE7{91)-|96Y9NrBx~*sS-Rf;XRPJxD(A zp7m+p_k&yaA26SL=Xmt0dsaSsw^d$y)AVHd#h^4 z?(z6Iuf<$QPW;lRpR9MkdTJb)9@Zqj{I-7W6}{xYaa)>}8CsR^Efnlk|7vu)LYOt; zqRadfanmo!r5jw6{b76Uv*xqJld~$C?y0H%DRKM5`CwtD^Fz-2^+ope8(*z$HuN#= z*JLzxJEXSJ@bcaonV%J!Ec(|Kj?c*~sN5^Rb6MC4rx~%YH5RW_?Owbx?(vOt@AH;U z%G~uS(Mmt@{j&`3;CY{Cs2z))apsVL`1-heRw~aX7OW{*>-~RXu$#sK4Q31X+xC}x z1FlRkxO*pA`o;Wpe?HyNp32WyFXQ+5(D4V)`afNq{QKwOqtWa=okm&7r)IBH+01^T zebE)&_tSW1FVmEY3R}f&y0qX&az@0_?7)kLQ)JXn#+TG@NfX}}diPQ3(o<9O!jl(> z2gtsxym@nWmf2gUxcntcB6Ig?Mn4aeV(xjP=KH?=dqmG92ieFt`R2lVKbQ}=H#RX} z|DRuR)Y+!E$lg4(_V|R@==x*rt9w3X&*;BB+x4LDhQ;=Bq6r!98{Q{;vBRz=P4&&zj5rD(}7bS~xbeyi|vkK57M#o>p`<(qw$37a|n&FBC5Bg~(7Wt&cqo9-;h&sno_^Sor69_<;s8~mBh zH#3*-V_)}Ib>F8+jFH?dub5JoUp$%Tl|29O&ex~g&mWKC*T46I~9;@uJA9+$VMJvW=J zrg?m7wQ1&|(ly@K)h}}~hAgaH=05e*^5+Kmtos=G?tDwE`1k(-Zzw+xuXX0~4b#|e z>Fx+u`kI`~8+J2v&*YUoTOaLC^F9~tY%wc;3VKq&a8gGx1e)+9Z%dBjr%cQ4=iANeP^buT(QHWTWbIG4O8OfUWcxGYMZ8#!zdH{ zbm^wcSt>ma^LEN{zV-OG#JDq{Z2GK__dce^clU@~m~r#L^_*bG(Bsp6o1ZQCbz<*q z@3L^?^l*c)TXAon?f&_uC-8tv<@J(H-Ors<><%^NGwu`BD|~#p;Pw8eyI1ea4e&82 z7L>^NRO$ZMEhf#jEWX%NJ4s~zi8tH_fBp*Jn;y{naZX*}ybRNYD=rqc+V$?d<#m6v z&VQRJnMNiO=L;SsR$ficGMema#_%?FR~=jGlS-}wFA}Goj|`i1EAedaf#3tW4A=kK z-1%tt&o%aI?yR4mF1_liIC?D<)iOseO_*Q=fQjV zzmexej6J&^tFydXx9$4Rw^Jvi%dHOi5%KuJ+c}>_dfg+JJt8}Heuc?h9_>_ ze{!ljS)=LThwF{o8Lx;xSXcge;;vusdp$X__U3+eJEZbo>NDRH5tW-27HXzD*%p6( zQvWC2sJ`lEMWByp>hFcUr4~hVgAd4T*4_M8yX@Ne*=w&{`gwWQo%rgqW4aUfT(W9^ zY|h5ayRz%KVw+3P%4bGN8izKY``mE6(VFpH1^@hYtM41B=ojoNxtvgKzh|N3jHCOe z)vCm?&r@bsx*4P&Z|dy4EZW)iSoBQ^mX|6|u1^-YzUtAxTPcZigO*JR4G45tZm+b3mQ$D@|5ZSykIwVHkC+Y^^Qn?Kt=O>Zb?+ViKm=9@Wh$98UJlWEy4 z>}xlzQ|rv$Fl{#5sa5-bxl}(q&-v@~^4g|5r#HWtl_w>#ci}YiA8m(9{pLSTTeM<& zipZ3&22HOTPj>(P^Kw(%Tc}ky(vPjk({otl4r7%?b!4q>%m_AT9#L{w)0%J zsrl2i;1i$S9)lO=3YDBc+un4&`*q!G)24*8UaHs6POy@@^2KVwk2wwdrv=_~c%{Q; z+GVA1W-(iU$lTm@Zme>(!Kx0rvP{iC*J)h8nQLHed9k0!P0b6TD~zGYUx+?lV`7Ft=FhiARw zo&L3G&&D^Mwpq>#^iE|NsO-_w&){^e+qh6XSxdd}m+eQrL&e?qYaa*ydA;k`+2p0Y zDn7!i>Kb~*_ssUnGEa+~UGE3=R9u&M+{@Z1!|<45?szbC8jdfq{iV zLBF@;67LEohCu|xPGo(1r*x`R+n@QzhnC03|ICvQwe34Rr|j{q--^7SduH#9K08C> zOy{8wCldWcmc7ahbUbUlV(~|11f6xD1yKC~4^(F6@ zb5C0xz-%tIrPIM}i9*KXM()xT|Mtg-cOOkM)bI*m6_*ldeA1D{J;NgAgL!(8j#&56 z11lQY6+0FxeOSmh^`nUxNTrF^11FB8l^j`-riR@|Q+v*3J@^(7E2e$=!UqK=O^)&} zZOI!gDyA%yDo(azi8|)LXs(&xR;}yXg?GMtr?BuKL*m8?uVd{8HZ>|YG1L?+JSKT| z)AuH3#uGt20%F~c4;!)*JwBwI%h=4zFVf-0BOrEo5#PTPr+s+D*jG)vr_4KHkLB0% z^CwQ7UtOxn#?fuMOx;6$>f95es9m;a|-Q>~Ct&|zzv-<_(_wP51!fP=Qi=YBsm|My^{uw&uno|qpY z!Ru;@9qm4HpA`NRTX^73iBil5b7O~yZ}PpV2@=v;r7NPuWeO8={=A#==6J)J!;c>C z7f^n=|L>f|pErGdm1+6;eOyYzhBcPe@y{ns31#}QfGt(H*_nSsmE@~Q)2GPQtS$MO z{a;wt>d$*Vc17WC>HBW=iQfDM+8azZgzVXJQT)$;Ypbv4=e>NK|3KU1(QgeOE0c8< z$p^1p2zb!U%uyzGdd-CopQ~Dgn!j~2{K%4FSg`!JxXsNgemq+C(|sQ7ul@A?#{UC% zPVVQgU%j$%@dCq~1xGetQ&{=huJU=#?XO$?IP^Z;4cFNxl{BR^$M#0vpL16h75w<{ zTQ{4H`)}lz^h@)7>)rlFh98k$(ZJkTyRB}s2ZV7l}U^_;!(N*{W7 zc*V5ez3J6S6SdAe((~xVo|uonnrhypJ29`=cm2}AMeJcWe?88;J8$Qlg+0F<8h;iXlJEs>Hf<~)=K7lh~4bBpTytE&VDc5fAHX=)$6U#7=3wAeDU+CNqv65 zqWta{u4XT>Ouf=u#pce?tRK2DV%xr8j??mUQbkU*-^+a&*_HFN@VB;!Tf1cc+3ypW zlFg4t#;ocR;_v`Q`C&~YWUF226ca{0IJxbbRyD-!LlmPt=2xY4_`XLU(Ni_?{h zp}CDkZqpquo=&WOKYR0D+gECQvO4otWi|A8l^59x#C&_zRHGuYsPSdBJA3QB+ZWii zx4bn!^J2lqpT*h+?~bz|+8e z`%}+7(r0W_Xx6BG7P`{pgLbXGppumG7jtXBxQ#nfmhS(vym|32VZ}v;muq?d_IXF_ z)NX6He(~L+?5^2qKi?@zcb`A9n=yO)n@v0JUu1ZB{gwWH)$lzxC%u{?5ZHC<`dN=V z{C{nD(8x)kSn!+5^l!0pZ&Q1}-hO)N^ttG?o0gXakJuC}bTLz`#O$Wd!;`sbZ82k;+M%w?AWl$K6mN$;Eyhc{bsJ&kUQ;xgJ@6u;%kiTp#=w6 z<(WDhG;AlAA78#vLMc-8u(SQqIp3E|T77To!$1Z(i+~rG4Ss!g=8gHF$guF^fjU*^ z7SnClC$}h^wv;u$pSphQ4MFzB3mCutJKWT|P0Lv{Cc}ZlNXn{Y%gyY}U4}ni>WHmA zuFo;=@5}I~K`qCpzW2(%(qLs^Af&e?Q}opXXAUEYTVMXZj8hb1dVe>iEB|Wj_g>AN zpJXHDTpJj556izzT(M&Z8*hihH23NIZe3cT_u`kbV^==Bg*nGJC(Z3IT%uAW{T6iY%KibE^d?dZX zz#@YAte+H*;Ddb}{;|5>t0tXF_R_2O?mEHF#=biJq20Bave0bL$1W=Nh+y;<;DvAN%=DI{oP<^Q9h2B~wz&k4N%MHb2VF znzXAsKJR2ydDraM-Cc}Aja#CB9^Kw0Cil)__Kc&4Y}0&aJa||%K_KzI)}=Sj>q{Sb zF4j0G$Z$RTvJRUkrwoUKPiWRpY|PF_eKOwqTR!iW zl$_#?P0vmxO_*|km330M_`VyL_?J$r3vYQC$kuss)_Q+Kn+ToHO-C9zRMs18yCJ6( zv(M`NO4dK?cHU@vcu>o0hQ*Hi$`fpEeR?bzy}#gue9s}_rl}7ZdHBN?a(%DKYfibI zTYRnN;e@MY2l-@!i%w=IO%{-lTXRV4T|K+f1e=@R3u>HB_X#|l&VK&alhr)@V%?6D zq--`Ax$y7{h`ZeG%zUc4zDrj`$8y!_q>UH!UoCL>^x%%V_!q&^%Htnu9$5C_ zLe`!gI@dNS1~HlII~G0stShTj^R=^)agoEdnp`ivy3m}5sTDH2cJZ*^X|W85WxKC& z=2hei?bHvBo5~oSQjUt>OX`^M<8Obn`_vej4&Fn8@y~;DA8*TaxS+;l=)>VC&3`9? zcU9C!D|PO_%eWLhu6-~#EnukPkfpHyulo5LLUK_{-3@ja$~VmjaOY~8!7Z>|`Sdk~ zmCZ>VUt;e##Q&e0seLH<(0u;K=btz-D4vK2WaxF>EHUk+Vi1$Oiudhx^Gy|9b~M@* ze%}-Gr%U2()AOiLuRj(#oN8TR8?i$@`NgJd+Cq&fsmFDTc_!}p|Lv#i`i_rge>2*e zw@EU6IAEw867eEl&m&Ai$@1S{{+h}QKR#Iek33^ncmBdncFl~2(@)pOw0p1~(s5>~ zoufEud;Ws_Uk`cejz{!t`+6&q??@TvCrJ&RFXrMZ-0Xa->ztNMOe!v5u6@t!`g4s?WqWST{#7Smt@qQF zTJinP{haia=(*p0vM;9JsQY~9UhD5wT!J36zS*A=IQfTt z$%ijlH4O;|URz7tN@v>rZqD`Q75fBx^P5eW*nj(|r`u$l-Xj;qaqw|a_$$SrCO1Fl zBM(KTE`N;W;W)-$^wD>dhQgQ0Tjjp+nTkoUBrm%ynRv&p`{d>C0TOC2**x$56G*JM z;<)AH?^#6$yOXvQ&(C}M;k}aVyE9tD@3=9T%YjHk4utLnrY=4w&Myis>qX8+oG2^Ap@ zjazP49^W(Pf0KaZ(oZ4Y_jhl4r5#*VmUM1Si(=5Buh|Vt7WN2uKC@P;NlfC{Bx0q+ zu3~iWUi;KFf1iD^Fn=QYpTKDp=#y4TN~ z%B;8CX29tde=q4_l%+!Efy1ufvv2)P5sRO8gVXBP2l3X9M4{e4Urq_EY+{l$w=pQ6 zpIA0Ow&?O6S)rNCJff!uYcV?U-I~;Y1UutIGvYF3hQ{_a$iGz^N!4QFZoK& z3F}(Ew^Y*v3@_~2l3OKbMTu#PXYTCa7>DcE_a&t5`kqSp5WUZxp7|eYqb|oj$UKplyWHlQ>pshxJfts*8i5R zlKCxn-fMnG#{Y?|k)L}r|8AL8G-1Pqe|9GS zxtdZd9+U|-2K;+*kc~e{lZ{jRoxYKu_WnCxE7nKGXI0>EC1SB~6%dMg821x{gIrEy3Zd9xwaZpT65%?(o5QDK5(w27(+< zZ~r^Yy~)Uq>r8NTTKkEG$9K&;6BM9zXZzX0V)4C`SF3Jr*9!S@#MRTP<6!#V?`e~` zg!E@0>{2xP>2Q5=WaC*zq0(C>*UihGN@_N7FclnRe7tB;dUUkwYrK?8`_`q(Y!94xPqDtyVC;B#t-jpt{`6IE zi>EGR(_;~6ypbVpcIPqgtw5GL@}8zHyJ9zUc!mAjw{zPk@8D%++c=~G*q7LNZ*O*G zTok&i=9*B*!Pd6ig_~aMv7Ef$E2C1AnCzukwBh0c)|pO9X*>UDdW355sD9Jap>*sSMJ_UM_- zbIp^+taeux^s8%5%To_fSa#`qYE6F|=N5NKnGXsk+kD;lC$S|&c8lKUH{z47H_85f z@!qzjt8L0>FvzqWyCA!SFKHF?@#wd*>uuT^)^26@YHV`(cy{As{)wCIKTkXAUi~;Y zoV{=BlR4_D{vtmn9B4S`WX-0qEGyc-?D!o&Rd7$A^OX7d*QyzLoBGS%%1&64nDe$Q z_ti1>6T9A@d9u>j<$=?t&AerOMj8UlTkTWbHMd7|%6w2{I=NZ*`q`Hop5~~eD{lIH zZrM`%)^7fd@|=|~JWob(ocm#?!TmOx-B3`j=$7@|$%)co3-}m4NJ^koe*aOF3{#HB_j5Gu$zp=k{>aU^4pShtQ6qrtS z&n-83dS!n_;f={rs%;*d7WU0tXzLxh`+aEUy)%j_`+bfI6gu#1E)nP{x_4~qp4OAc zr=NFCS70$b`mQ=;`SQnIiErcDtXvc#Z#Jf` zz5i=*WB=ba*SiV+yVk$4z7)0Yujmw?tQia{j*JB}Pt7^#(>P<1^Kx$9y#HJkk*%F_ zN5blJt7fRKm6G2viSuLX_jx>766y#{BhvIhBc2~YpF$iY+d=3&E)u@*N+^SRd{#TEM+&D zcj=XFoSTB@jk@Z~eUbC{*a{XhGFCir;@x3$RN!RX_sEWC5mmXT0@?*q=6rj!vf}E4 zYUQs@U#D_uOi)>{SN8|2vzYS|MMjT(rE^;|=6!7rceV*oc)aQFwr30OOMhG#vP8i1 zmDHQu=u<{NCvbE#1~mz&oL7^Ncwsw3^l{bI1&l^~5;xfX-t&l9A&{veuEde^IlWxx zT3riAi$dkLZ_&mwXT;(+Te&EBM*shN)A75j7V9g0(Ex?TQD3iSe%>#ADCw=eo+^jq zr#DmV>nAqfWM3aES~EfA?VjkD-{e$W<}_{H*^_mCvF=Y_ozzIf#c3NS$#+bWzf$+N zT>i1z`%nCgr5z5Fq#k(5exHBiU4}e+N=S5m#JAYU8d;HU#YtOy!_R+wyXmj3qPbB< z@!9kao@ZzL_a5af?e0=6@{yUa=g=*~{o60xFV$)0=SmT=ejik|GnMDz*?pUS?_;&y z{LE)os{dPSwa@^C%8*}w9K5yVrf}8hdOvVtF9fq zTl%_7F{tgrB!SKa$FjA~t#I75>Az$G$JC}RtND$%WTG|{cuqK~V5ueNA(#8-;~j(j zd&1Kuc<{az@44{Kds=LT5#QTK%{*uG6dDYV1E$n;RcH8gHcI|?GRKV(O@GNcFy^KZX3ElxtI zP@dDVt?}EN8u`z5sgYMawFDZToIK+Ew)v(5)4bjCx*q4=)!U!a^ytu-(5Sm#N4n5? zZffXTTaewKRN~kq+V*GEw_G=4d3k+S{uu+8fWqIQ4vjpIx9opeajW$5JAQrWZ3d)_=rCDRFsIs2VIM&v7Y`>$p6kb9xJ*4SRM{`7Q5qgPwkHcMIT zkyQHHl77kN+UZTZzsXGF`mw-a)3%?tDs30^N~ws(g=;o)UpoEmwy3kpx*hr_7O2U+ z*|YFm^+u1QjK>=VRJ>pGEI#M9g+Xi2x}bOI0e33TJJqacR5Z$wzwu$QrQGY(jgKNb z*#$kqw%xlj<^G?;`|iKIQmZ`q`WCLl{s-^OU9wm!W&|lTN8PHkxpq2fhK-h-i$dn? ziUq2x?@I2qnc&m#p~@;F{Oa1h{y&ZXP4lj~e|o`(3zvUJ%*B-INMGr2g!Z;cel2F_2t@?KVntI zvbQ*{;(B*P`H?fjq!tSg35CV+i=}QEGi8>Cy%)&5aYrws`If+UmHjam?~*pE$xRaq zImjq3CE&nf)bZ7R#^lTYeuc7~cyawObLM6Ljw`zP;`}KBANTGMNmtYfV`IE5XEcl5 zk$uzCwq{t^Y%U5_jB*R|NEa8DJDq0)R?HKJE6+U(4+Is96ej1yJr~MQl&Eg zKdjmNXH%k`%K4T=KOd-~6^ z$B8TjpW@E=#AsggR*^rnzurn!YuV#&t1EpCXq|v`IBEWiD~KKgCyZ-(0=} z8?7fUciHcAW?PN*UXcc&$anEdOM^Y$on+LQa4e10sBUXEmu67b%>w2JFV-7Q7W%vC z^JZ0X?%fO;6QWK0y|B|&qdApK-=cbrWmSiZI;xSKX?#*BSnyeK;dT;%RS+mro`di)QtxLC0+sfP!A~AU` zt5Ma`*YjTnM{+VuIgym!`DR93kvdDmzhlo9O%!@-S+ViPA3qL;p4jf&niuEkE;qa5 zGyj|y!vcpaP1owiEBm7E{;^hMFffy@^jh=$Lci|%jjI?FO3bbWCE4D#s|(58%E`c$ zvTCoxw&+M)I(4>9_c%Uxf?F6HgWGyHW7TV$|6W#Izfp@hKq)}jYa4^6{N z8D#cJeVr0ir!FOhW7PGe7u$%=`+@T%Q`8Y;lgr|^5`e=GBjp4zCr8B%b z@5Zmw5@296F4CO#z5afX0s~Ks!r3V|e!XjAVoZ1-6j}38YPA-F#81^(zt4&5hbk~= zOgvg&p3K3;%RzB{6Yu zE<2ErV6vpe(SVt40vD&%tbjlVb`!^6(wrjep6cFq`sKQ0bNJ``wb#E{fBPJ{?fq}n zP5~!>EhdhI`hpG|y`2nB89pomPRU9Q0#d?^Ef;2RD6|}NVNf(tW8zq7IQW(9s?}rQ z5(r>on5pT&%Iaa!^k`MIvo!0q6>-}+Ll`S|n@(qU|90#B^t;;~*2atdzM>!d{cUne z?YE6A^50kgD_!4K{psViMe`q*A5)rV*df%BDYNdi_PLkEy302G3S-N^eLUB+ZkHYV zeE$lW$8)~b-D60yU-vbhRXRTXdOUC8w5gxpC%~Sehs6(>%Trc={jyVFUWwHD zc7-EHM3$)9hPw-J#F()%l(LK56Fld+Y}3gykCOQvF}V?U&eTTNbgF4Z%BV3eW7$3F z--W)f$z6^+Y-|~iSHxtspD!(}kY}0WnvneZank2p2eI=%{?069z4Kz#>Xk8#-+$+6 z=8AW;HO>0fdiscP*^~y)M@eU-bCV*^Hr`&(GUKZr_sz3Mm+U?juM_TNE;vKhcBY!- z!d{tEzcxx_?3WYHT(V5RVCUgNNhRsD8}S z2lUn-cTJU5T? z$hO5lpK~NQzMT}Y(|=4f})6*l+XZho0+vzIt=6`IQCOxgO&I%t=@mn zjXSK~vegv*(CU}|DKLAPQTW2kE?>SK&yJ6cv0>fky;*j~)~DKc9Qz)}>!&Mi`Vli{ z_S_Xmb7s#BowU1S%^62AJH6-IZg@CV#J?(FVYu@qZ~Et-H-yh_w|p916IpF%XTE7i z|H=2y?smK=s9UOIx$V-$KliLo%H-efe)Y;-H@szU&ejOV@buH4KeyF3Jw9)naB*Ah zyFd4S&g@a|n0Be`<2u&VKQ9#c^P|hXZTyB(_c%zDS4n{CjsrEF<~)axq+{>gt=+IF8$7Ga2G z5xB?D`Kvi9tLl)wDm#dMxKNvbH=)7F}-(@ex_mvdZsQ@Vou|W3)o;B1ylhX;{%=PP32&-lcsJu$@Qwz)rVB5l zE_ZJEu#Gi@Mc|#J?!683CmeTK{d$`EzpCB;KV|26+c3{#^cU!FJTCM;mmfAYTPveW#*^HKAI;RnG-j1B)~w%1#{`d@v}`v~^~ z)(^5D{<6m}+I>AWtB`H_+E@E}_p6lq)&2Q8m*K->hTp$FJr~oHdMbHf@2A7tMLsNf z(0Qc&fNnwbqm>U54=Nx0&C1`{-r=q#H-(|X`@_9QC*Q>%knh-kb9?=DtJfNRkJlIH zPhQ2E$sFtLE12|Jp`}BE&$Z-5K!J$jT$#%U&tA26DBx!;6y5Sme8-g?YF(09YwV+P z7ql(0P&ra9W3}RYK?T=bFXKBei}d-=f1Y#xdCj@XdeeX04zmW^E}COr|*o~X6_QgH7Q z`-0eCBIbVUPW+mF^=kITi{+xhn|XXT@o=nOR(kHN5y!xiwH@dzgZxYQ(z13Cl`Oofmnk&jaKU(p2 z&AEe7g&CWy^440lYfoJFz^7Z``tNJak+SiVc&`VB*UtXIF@H`(A;T2Se-{?4m;ZFN z!{p5?$G>~6vIEv@HhEU&{pUIm=*{2I`}$mBV3p=!?n~VVi!WI;vCI%i=t?@%^^(h{ z{yu9!)x3ROZu%0QK_{&rl;?Q7KGgPQ?w7xZHvRoCHa+0tg9Xn{+UW%+DWiA%US4H^!HJx@0|{UY+1dPlm1t*cD^2SevG zOl}er+f`&H{C>hX+4hsZ+U_TOl^!9EYPEge)7I?@m)U#rnnaxZwXe@V7_1kZRyX%X z!<^0v1qT0~*X!$3{dRSjFS%Z*$g!&_H#TX;kL;+hHrbW-MYobqPTc#OSGa}u^!$HE zwjYXGw!S(4*>qWvzCiCH2MDJhGyT~w3=BnE!~!PL<(Jae?)qD z2)FYDYoBd1@2J(QmQQ5Jdw411C_huf8*7D4d1gXw#=GZOC0yrn<+pcaov-jAVsb-g z#fwGpJtdZhqa(UZ*iJmsi=FqUeRg%^+9h3w82*G_-Kn}v|D{W-OS6WbloU&P-x2c{ zjUCLY%IZ$(E6!iwU#KrAnB(|jp|EP8qhtEoyK##>XJ39E6upG4Eh@*%m+g|R#;R9y zR^18}ss8)=|MmS`O7D9n@6S27Bw_p6<;zpO3yw+0Z<={Y`0S^%I_f)m{R^_wubZpp zJ~+p2rk%GeMO-v>{jY@HgJy@*C36D%52#Jk+&+Pm)Nj(366OQwI(eQ7->NOk|C zttE#OZNeo_7N1!kpyl#KVS&@^4yM$!KL&B)405Y4-8;B1s{P&d!q`p0jFk_UH@sMy zvmj5RM`DeEjPVQuiD3SWwkyuF@&fr+NG({ktM<{;+pH^Hm2@M|?Y=+F_?G2q*0()J zHBW1PuD`xqXIaMMC2LO2o%pjyIZ(08XxHQ&p&t$N^55>_=CrSUA$d}I()W!kANa2i zm$W_q!*y0K(=KPXiQ;!k9AEGpZ#SAVFK_da>sRJK-X|}lulrqQzO1wS$IkBojtjUY zxu$OX&-8J|8gs=oF1h1I4-W2IT@n3Bt;}h%Z(`8&UBBH{`&^T-yO`U*YwJU;vmKwO z->$OzqSO9Hv94z2v|zFCGv^yvrxjkxJ>MVsr#Iw;iI5SK^n}o>_0we@3Ylqq-^jmx zX3XN7PO5hL0>Lj=wZBWhll zsg>_^L^n0Eu!iIuEnj%b`d{08%XxcWC7t^>`}r4-PsiQ0COrQ#;mPsftc0o-<^u=! z`R-{hU!9_@qrvd{^VNMrX0X zzv}#R9ajIOj|Uoa`(`C3)Qjongs*Ek5OqT-O4DVxnB$I4g@W*l%VJk^ZC=5Vwy4*m z<>eyR#gT1OCIlvMG&xVYY^!Tm(DwVomjc-j=UWpW>^6S?yYBnm^Ool;&sn}_Hx`-x z{AGohs$=k?&=ntr<~lg*&kg>5(DbC2(# zuELDH(ua1}-E3xXX4b#fB3IB`IF)VN0-JWDu+Y<~HCM&f9k8!Iu+{$It@j76`h-UD zyUDjsY+n%d;aT6#7k^hIz5l|PuTau=OtdS%A^E_@ruPk&Grf5yir-SNE}ow7j_J%_w!iyJ;;SYbY~rrUes=v*z=4c6 zuN&`j{W|6?<@Uffm$6{ygULL<3-L}bCVeS zd=0}sXdTryal4$k{sL!d_WMTD*@-EV4^>}fZkaa2x1ix<;oRF9zyJS=o}I&Bx$vg> zDvpXz(>I6YzN=g3^k387oA-ZwI3g?dQ%mke0}nSC&^_#YjS4xYP^}I`6O$* zS&nFQMx9~yyYt4f$tlUqe)1KoADAYDwFJ*J7WtuZqv%EAcjtR0^B0zD+{@;ekXLIw zp{d^gV718PwJ$H;DbchJ%WvykyP-ssE5SuEeD%$qNivsGe!56pZoRrh)%1I%_xef; zk4w+zTy1#rJHYMYnZMGDm5XPU9#4|Uulc+8hrqLU4Y35oibzvp52g!B*1 zVfs>!74*L=^xdAyc*e)@)`Nh9ryZP=tE;@N^7rROhsR~Vw4PLS^3lBh^P)aek9|M3 zL_Q;OjhOPjD?$U~}nIWZ`<=f=$r^o$U zx9<1nltpKLZi%avn)Gg|U~%i(Uj>V%zED0mne|q_?!+z3_xIfSzcN#9-6QUV?kgSN zt@`aZ&Rusb?vzsM|>ftlP0JmeIUMJ&SEq-^}A@*%CfJ-PqCS{CcuiuigG* zg8H|_p!l^5>;wL-`g!ro1vc^eQ_~M`>wEQ;)oFg0*-nom4OfpGF)B0SN$3enP%g~z znRPXdv5BkCJVkfP%`nZlce{9``#&6PWwz0OyZ&9=(_QsHa(NkdaHQ4RGs{`W)rDrT zZTkG8eevU2Xa5z>THe^-7|5{7+T`&&_k^1kR(`9N2qmyB;9k&EzNNV0e1L9)_<=d6 zqBJ~iJ&59YJi&C9WwgkhLqC|@(s#7!SL;4@xMDr~!)b=%r8v}( z{-~qaJxp~LNM&HXbwtP^e^&I9TmF}A;tHlDS@KG4sIkqt#kn_dVe7ra z!bgqc>vg$yeqVJ@S)yxpU)!`F*O+we4GtZhZP@ZLY0Vzk8hkKejsl9(ycR1 z7p(udKJkqXL%^Q<501uvH`cbeQnIO%^#i|bcXjgwUiY|u_PtCi-pUy;Fr}qml@|Ck zH+}iddk-u&?CbJ-SkG|n&j0_bGLG8p-I=!PvyYy+O}d}M1kEiKCGO^jt$1Y5>3AL% znQLwnXmL19vm) z9?1i;nbmTuZA*7)2p>QG%Hq%C>Gl668FmSaST8vJG{1sp+S2L9Nx#B&+&1`T;uBzOD^5|Bcd2N(XwLSCy$Fk=a=Y?LKd%*tr-m3M_Ca!9lG_y(Ic1K2b!wNxG$&?KeDboz3Ob=>0 z`c6~JY|mKz((g*2Vs4ab;6cR&j>j4}G!%?OU3srCuqKH%Utw_V&HoR?xb9=wv+5P?ByS@9X<>yD#E%d#xg6CCpt)u0m`wCCCzC7$wb^FhW zy7x_6Em>YK%h%g~ZhN6vkL39|*Nsh9Zs5+Iw_iX10tc61j*EM9hfl_dR;>vVj3;*f zXDVT5aQ|fW|IRP5ZI$nGT<3oLxoK0$k3SAGMOEF{r%e#ga7cQ(^&Ia$R%hXx zZ@){*ESEmyJoB5UW2H-Z@18sPQ>I@jTlS{tRYqh6_mSB-F^&z4PZ<m|&n32i9@$_C6p(7g38$5q-|2h1r+hwV1e*cqf+jU7b z53MdoKVvU(Ugc5}_0ne7u1{9Gmv7LRbkce9j9QLnXAjngjvC^-T|9p*$acTJ=tF9+ zuu=By&L*#^S&~(n#SAQg9`Z`(Ii~!J>sdGb?nIHLKiul{cUgS46b^7&k`wqTUv_`u zwOpUdEw@*xuIn%O_o;hrUgH&4R;F9b^*{e^U(R%S_H*}d47+b6cx^CBUY@_Evi)7_8_Xm7kG;CzbL$zmb8L4lN-xmg=Hf29 zQ`T$aj_uVAMRWI@Sidzo;$YqneZjca=H}*))e?L^w=VTbd@k&E)H`CsoT*|ve;aRT zow+~d)1-5`=RMwu`^A<`oEpM%O)6vO)2w|>N?B)=mN?7vRknvJ+0S$+vH1}n|32s; z_hi15Lv<%kYE*Ksbh2JS5cbwPH_7Q6FIpDqXqk6NvM_toxr5wgnj7N*C zHcCHydVHFvlc$|oqRR8*{OtSNoeL%YIo!}+uvluHl$`eOZ(ob2>E3HmpIIxNY}WU$ z+No#4r02?es&5{xb2?i3efCxH-aAbVpVaq0eAw{mo%Y>-b4{<$)>$JlFZ0e|cj3oL_Ei#{`ci#H1ax_Hy_Ba%odh!;1&E z#iJ9SJMGf>!L?6x&0^tg*S}Zyzk96QKDTn;zAc9X7Hn=)2;Xr^|7DC!bLFJNt%gi1 znNG2Xu>55B;(pL4?%0}mgAG$fT=pIQ9BT3XV)vc^^*6n))?bU60_B(ZtgqF0B4Eya zt8|;&zq4Q4HYPpFeq(2|Jis(8Fmqb3zRBw|Iu#2&R&b@Zv`*UJTcEm4{4pozL5?T3 zTt!O)Ho8s;xaXwh%r5)$i%Y<^h%T-~tG?qlGR>ST_}{SxbzfaAzG~suH{XJf+1{>v z!}M@&e_TpymH6_m4x8B)nJHNirraj zOUt{g%RJI~A1-sYTh=5LnQxNT{JNC+X>r@8Y^I5h&yA`LoDV&G{Uc*TSeoYMsvm#e zw=Rf@+_1S&a%p7PzFEE65o_G`TZyt(t|{2_b@#n<2gFWT zFwZW$cd0vuk!jY8y-)9(D)F3pdSHEx!KO{O6t+JpQmpyNR^5N|>Zym#OPc~pILh5m zaZNmXIW}{;)4rdsD=kyYFT9=UaqeL6qSc@McJ|l!{d}uY!6kIJ%dy-tw>mQGDfeQ= zBI9Ta?@z~n-2Jul)TuRhnAh8UzrgnF&Y2tcd)zWOogPf~*8g&ISt)BrS;qYTdmmLS zVV3XVSdsQeeH>O69<Sb`;KXSfB@lp*O$ezj^J6vfyA(h<_vgrm@jv zmdfPQt_)36il2O*on$+0=?0xisfUbo{LaLip66CrdH!&7*YsuAj`wKI`y;Z){YOK} zc`N&EOAXy5v;1o&S#CGlpejH8(0POWldadpSoSG;UwD)><+}3Q&kiX8yKg9QeJq}C zab zDYli56Wt9a82u0K`S;x;N%Gy{xrbsa60Uk~+gehdd;Xv~t5AD^mEKXut1tC0q~Eh^ zyT0jnFHi0Xrsk&hAd9S%tn-%TY~7rEs_|e=UzsYq!rRJvjs}+=h4=sGnJo(AfLvp8|uX@SbyK;V&zt-Iqzv=d4Y9K6ldY z1rsLuq(15snVamk+o-YN(7Nl9@^j|SP(Sl7;>g9%eTgYNY#oM+>&|Z}yVWHqbV-bD zyU~VH6Zr!jK9_=5+mv7jgHzWGr z6>*KHuXoM8o0ohlx#QxN>@_0ywmo6$-}>Rt=|BI}k^=H9%6987xMMBPD6!}MzG(h! zha6nB^JFue6t7MbNPTCs>pZvPz3K@IOU?W%4&B(&+A>kmjqNK-%?|Y^x7(}t9~V$g zuKK^srCRs;YW|#;noW&odv4y?Y}71W{a^00P;#6~uBzgv9ggN}xRnxHrU)e1t`poh zeaE+r!8vO?=WXA7cUHnLiI@g|uIfEGt8yJ4|4q1NdnTeGCSu-!=;<*Dm7BYn0*jPa zU9*sHHu=5p#fOW#J588Z|M|LY@1NdxVrLgwm!>Y6b5AH%cj+l#rQ&7rd9}MLKl84g zaf{pL)A;F<{g}R&|J>`=3h$|eU0_|xT>!1 z_*h|Yr|1*>xwA=V#hLBrXPjSC{kc-u|G|f&&!YqVpJblhc4hJWEvNTR{C?NO-95F?XYCa3V&*AV)Ah_RaU6av@jK@I{=)MU zwoNRGWAYGCaOZkBZ%T~V!>;50ACkp>P z-LjvARKi|rHcoB*skKR{Hhh`F*&XIajGP@d{CbScuh-tQySXm5WsXd4$>n@SuG>be zDW9LuX>chIzgfh!^nat;g$Z4&HYgl^E%Dvt@%*$mo0m+?OPQdsiQ!3p%jpkSkNbTL zX+3c5DwhUFcC5)^fZF4VZcQyZuYfvj3Xf(hFxCZ#CDoyFdBn4z})i@c^BE z&&%&ReNK2q+b&>oQN-Uc7tXZv83a4L9SIlWpe}-ZWMX;9xt|x-;gs z-7nWZFON8Xv6UNqS}Rv2X07tcWUORMvVJ`8UF0gx{m06LEHyRnPff3Wbc$ns?HiH) zEAA_^rzR91y=_t>_5OInibTO}>wo?*eN$-MJbN>*r`(}vvH9t;uU6|Ydr5XpmzVGn zu9u8#SaY`<%SQ6P)hTx$F0S5?L*!{Qv33w~d?3z5lsdEU=X2Xei3tzkONty(15n z<@mn$lG*seMmqa^=)`SnpWCZk`mvi?_FAOgo#c7n*GDh6W>;9mbg6tP_tpcCzb)&0 z`q|7R|ApPU9vzWq9nf^VT-6BSN#X-pLxs z%|FQAda&<|+wSa1=WhlxnH%j;4PIf-=NI?KeOqwlKZmA&;gZV=%iYylE;9a4%xG@k z?)U9ggNDYH7kBcsewzq-FLKSiV*jN~B(R}q!9v}Tqow>giJu<(#9rGRb93`)&C}q(&a$aR1re9op>B3w^E+^@Zgo4fWckHhH{^V!Ey82#3`n|fC?qfL~<(Zzc z-?($Hq>HH89^9hJvv@3B4y%%qfsq)^DoOxgT)16AG!c!+2 zT<-FP>G}!m{t5l_C%OqVY~ZWk@FJ!^<#V`G#jQ*2ntyGq_&FHvY5WN>3Q?W1^1k(& zZ5+|_gR7)6W+p5*e);OMheG}g%T(3N)8268um;)Hx%^Q2S9R3W%>2r(?GxipeVowZ z-J+lH#_x8AGDFqt?Z0Iu12bk8oKSxL%lGTwtM6Mc+!Z#sE4WBn=wNh#?J?8vn2YbE zo9wj3E?lTtSL#6-YuWQH;~j4_Y4#f@D>C0MV!iO2ZTjQd)6Z{4+&{ej;m&KCeJ%S% z{zrD7qZ}} z*HW_$y?gW1{unnf=s(=xe(qyH^zz5QHlEDAdGYw;c8PTjF1>ZN)yhY{{mHnUv~9Va zG>7fl>(aRe<)0?M+0<}Qcdp*?sE22sevXOPpRu)Nxmw+EyB%EY;Wqbo&FVk$K<(S! zX%BlBAJg~Tllaim%p_(0s-3*nA`S|b?Jo}gvwFD3zkkc&YqQL*U2Tduf4YC$qMlE+ z*LDT-9^4u=ogvxmYt5aH=Sw))Z+}ofegEZr?UwCZ8&=p^oOSu5?WZO3a>~W2d8x)_ zy1(yjINU1qpv(PSSz4=7j+&0DJ-5OhsqzFaUZ)j}_W%E1w#vS-Y$f9@^B=iKcmDF% zS@nF4fBdm8N0*%Vt-&QUU({~ro4JeXb+>5OYwvbp{vl&`%QpY_Z}U{q>N^udQ|Imf zpmTpsz$0IyNq3}FHW%#Q;I8{7=X<$y+@V8vdM8wBnnCqCWryjpYpL-Ef-c>@1<#r3Q&PV4%--TmO}&7994Zfdf=<5D{BuYj@mBnCk< z4tD#ZK2g!GJ+FQ~;Zpd+p?>Xh_~{MHZP(vF!*oZ>rgypO>W^DKn1sEqweRP>(NG%E z&wJy}$D%i#`j1K&F6Og^|MtFre%X|-Tszov(``>YS#A}xs6hCcuJy%Zzg}l)obP)T z@@{saX<9&Hj@Fca_qH3o)Kp-)Gqd9Jq0PDZ6PJGa`&Hz?#6!Mor|pb2HtVhD^WNZ6 z5wc0BpSwTNbdk@3m0F8DtNwI6zV)zpb-?%eUvHQ*`5WX~8jC;g^>q9p*%w{bBpw}H z^>g|9J^lBOe!XEWe?Q}Z!H&+I*NsiAG=7|HP5RJ95|hBY z!wb33Z&~XdIX!rrs@#FI8|5Z5E|`1!-jTKS4m()4KT5xGVbU|r?ALC-=e`$a3CC`o z>#>D%I>-O6vl5g3%qtM-J0xwm?ZC?WFIl~rZ{K*kZ{F6^JRv_SAFXij-@dWu*{`{_ zt7er;On?04&#hbc_wUV5yd=e<@aO2E%{BY7eX4mL*gwwNvpH$eDUmS2zI^e#!&i4m zt>y|?_ssEH^rT-ge{)VcC8}Lmv@(9%qa70Q*K6&CKZMQEnA2dXdt&)fe!qije)>eZ zo_hXcE)=cbQB>-45@eVfale&rtV z=GwoUA+9q%Dd;|v^Hc7dI(HgYtJ;grTkXJoR^)7zcX-a3%2@@f7j|T4+kUF@o1uJD zDd&gzLN3O*qJ%604VkS|)RdzpJ4ls&w!VlQy*+x8{f*Vw!= zVw~FOqj!Aw>W9VEdmgAgT+z06S6ut$LaA>rFTdNG>Uii%=$W{NnzjF*FFyX$<6zNt zp&hp>)eap0xbu`@!@FC(ci*S|;!^TBaFhGom$`1K)3*1PCr=QFYnJCKW^6dNM}74N z-I~}4SKi+3vd^|I*RRhmPcxD`QdfHM>9c(;_Yc2hlJcsbtg?sm`HQpWTV*+?h#r3u zzxlSa#L2GCd;7o0?h6xsdVc@!t3FFD?*CT#@9m*5;npiFw(SK6w%T@Wb%^L?7N3(@ z>v}Zn<4<*S7EZ=x54(3bNMvxB?a_$o&G*VX=%H=Cw^n@0+!xmz8V(m^ACt-ETsEzC zmvn(ouygO9?;kA!iv;@wf?ocL+T<~LUXq_bXG04|w9s)q+jF|Nu6x++doMdz|46FD zl8slaCse7d+MCB5)UZFgpw0gLF*5_}YA%KUk5_+qZXr6^;pQc~X6ZuSbqBd+yDx-Y zm=qP2{r<@@5zap=KTNgixOs&wi}hJr{p8D6oRi@tlZ!DS?Up^X)U|6k$Xh&hK98onG)#_ zoGWq*=bZZ2GGj+uxQ&ApqeH}*|G`Yswz?_8 zHrD0VZU2riO?vG#Q{(c4+iS#bEGvAw^GBIB?_>pN{EVmP_y7 zEx^zhSI{PX`hAII+te88TCQ(bqtE@>E*25CFH$P|OX$LO+ZOBU`>k6u^^Nzjx_5Z7 z-t1fVP25hyQeN0`3-_}t>NiRquN8loq z;dzb??ZWHl*6*4a6*4)Uab54e_W{B2F_#(cbMOB;|8MwF<$BdRwV9!f9jA8Qo6|3F z$T8xAOas%^y00cNP5hk3U1IBG*o|scH&2_;#IeD$@WrHL+X&SyQL_)5C|=lHV9B=n zp7PJaOVS12c22HLh+v@#M)0%^wVQI%gK>dK(mL?q0*da){~V>*+Gd#m%#CqzSyb{(bKu zd!^LJTDuL;RyNG^Zg|is!Z)M7?X2$1o+qos_G)hwv((H^OZ7)WH7vV7eEKc-rp|uyyn`GK`ns0KmX>C0Eqpxjo5+jf zt>-;+|FW=cD}1oEr;<~^&f-5$d|t(Scg+U7$USx9vrJfOv|cXqJrr4%U**;C@KDvZ z9fsez+da00uBmQSS`%`~N9>=7{85uvkxQ9x-~23hY%Occ+ezDXEN`8Uww5#PUBCYL zfA>A>H|!3Xc*Eqa;kP}~2c#0;{kgnXW8uE}%bpw$%)WVR_f|ER<_1%TU0M4ozL=^N z^3-*3@_KD8;hldZUFwqa-}jm`d=AHROi!q>^REnFwDXz4$1f4IK=S3`n7ETARtHyY~6~hpcz6>#8zoaxkdacV$^zS(o~o z`=~VQ%73?RUw`26Q0mS7@)qVb2VZ|wN$t2_xBe>6-s_L*AAFE%wW>5-Uon9t=UBFw ze6DA`M-uP5)L8q5$V2)Y_J8@bK70P{>N%VTmVWmCuKJ|OKI_ekw||5utzN8SvB0Q7 z=&WeX+m(C2z1{tadCnUZ<(i@H6LH*WB}4rX1nntR1w?@y|U`cuyL z-}IjGPl9tt<;RPCIR*}`&!Y<0tP1=7`>~u)_0F>{$JRb>kT!7g3giB5TeE9=&$|OU z3CHu56dOcT!dW>TZB4iDeY93LH}osh_xk3}Z+ku}*y+~rF#qb`Ro64Q^)1)@w)D$f z2h|_ye@vIqJ3H6y#&5Y}>y#A_aeDWa^*XFtP`ubq^}4yaK;JQcgB3MvS~wUI)?3fq z*5$x8{fzzH@XZgDl%7nNQ&IUZ$9rw}!TNXk+aG=_Nyui%fG@OwxRL=?=TcJ{_6hqL*!PN%yTKZ?tXTVAr)fWw!E=!qmQn|6d-gIkWT! zlLObH)%Eo!><&v?JgB8ol{U*C$+v{RXnVG7%`;Jc=0nxu@^3d)O}W0yxa9L^ z{~vtk1l;1ClCI>-zJK!WyFs!l(;U5XWw#nXK=_LnST4vgSMKAvsUk3co!-LUAK%koUgfGt@U{G{m7ary1Z=a zyYDm2S}j~w$r9JV**Tw`-Fa0?H{bpfjMt3>9yI=Z|7q8f-$q3yADS;?@jpJHal9%On+Fe@P5|iV%DnI z;yvjfFa9f!-nP7n^|qlMtB@c=rGQ@R#VX@Bb9eCXF4=zS{DlJ=A_jjA8Qk?OuAZHe zugiM!yVK5+&5kRiTXwF0o}aH0m@jzicKG=zH8B3ol%DtEf-h zuC;$cF}s@G@wo4TI^GWtxVlTe+%;{JWA?(m&x=(!lqT+KDinAiyMv80h=H+FWS5;a zS1VJ@<_96_OQtODby+v1Mqf&&+Bt2(`rJ9%9U`pW_uu_4SL|OFTVEz_r?4|(#=Sky z8SC46t(|iVoxQz`f{TnO0`#vqcZ*^li6Jv?5=*0 zxlF-L_Q~f%$3H#tf8i$6Xj^~sN+^f2MZv?}I>A4dDC{(fs(DlPf<0mRwKLnNn`|$i zm75=ZjOAg@$@v`XGhLj+AJpXBvg9>=RklJfAmo7XN7p^!9zsnAbftS)4(FU-y5)XvuSi0(HM5o4>j( zP&~b8r{eLAnMbxO&*U@s%UKqk!tz_EYPb3;iK?CPvagtnI^PvIrtI&Pn=X*RZ=-N# zipP|ni~?_JtNYb@wjP?-Kj#%IC&QBzg>aYSXHB2KD7SlS_Vwn`hATqi89V~lf@d{; z(2{9X{?LBNB%tkM!Rim!_ASd`EH&(Y74j&L`F2fx%7xhu8}85TsXe%~yYJIdzV6x4 zS7g=&_eZI+sJJ}id*Z<$@U!&5#vhzPYJ03iJd++tecQ+DvFH87;J?A|D&JVBtK9E( z;{O$8pEO@EXpu%;s*J+?(k&!H>zhQ_8b;@=(^^3P!0Qi zeeNt}E*&t~)) zPs==Ok=FHdX~(1m{*EDRwHh2HR}8hdeu-UV(-m-WT>bWUlH^S%S2xedEjLbOIHmqP z_hirIMNJ_~LM|kolhye7p`dinz1hF*Uz{mkr*FLHfBN3}zvuj(^IGToTpLZk!mqK% zH~sB-z2ox_Ym1M^KL41`v3BS3V=n{q-9@MG+c$6V2faguyz96t-jpZ?dNjS=-#qua zBZJAj9c7HyjUA^X6u3&?GTI$qadyeX(0BiGFt>z%a#>6OTNx{q5Jjjh0l{FRXu<0Ejm~J{s|uMbjK5gM#~s$ zq${KtW~4uwclH09)$eqLs=nR&S))5ixY>XE;p;D&Cvx82zp2_U@lP$^|B5vQzgI_m z?0T2YP~#K(`1#HQolF9bQy)(`cH((B!wE~bg)KXHrPYoduAQCom#K_#Khrk<-p}6+?``5zGd^8i zyGeE>=fuNPzPcS>XBuK~`Bjf@tUmo${DZX)JWj`_ETi?)CTVtJZ2-hUZm_emL{;uWR7B zf3}~c3*OvUlsbQN`)uw1`xpHUiGH}RlsRWdFAGne;NA5qzgV+t@_&5f+VetU`Wf+a zK9_!)mRySDPCpmnU9q}TX+zVUi!s3>t(N}t!bO_b?F;TG^0VSnd6IGB1cTI@uKzok zB5Uh?>Z?yk%_(ALsj2$UY9k+Vl4X9*0WI_YGMcQif=3!>ePL95<1Hs8lF+c>{nO(S z$*;1GZToWZlZ)7=9lOMiq%7OpxmWtAoUpb37d=0<`SuQ{D^*R@uZzAu@rjoqQ}luD zI)*2{b_q(%=XY@}`Y0~7{N4Stu?G9|3nE{O%!sQmQ#oQWE74+>`-T7a?v==USQ#;; zi}d+y@~JR*XmGE865Y}^% zkDU78D$DtdGxH~3cy9NWz2H!;z=tXK-#nA5-G5qY3nNob$BfSrfBg!=Nz*p`c z3q+rW=>~1S>wl!}*DbY9w%(oGCW~{0o_XBiPuKf|8Yy(|K-=a3CGG^ z#Cj%`HMUfyNW?yy9cR7Mui}%hP+`#L_<8ZHhb9#9<{wJt+4`k2?YZ^5gXRo@rw{3K ztO~D4J#c%uJr{ey`)gV0v7C2~^0MnaDYPn+&u=b#`Z2BR@!gE}Rqw+7+ZbLmNd7fj z{=0$O?DgdvR`<{U@FaJm(@DEtj+_EP4&xN3Zzs22b-GwxQpBdXljCQ^$*s#aUUO1f zt<$$~qxpjv2BnpDJU2cj->BlgVDWbu_s-ORpO4>C_?>f3HfkZehpD#&Z;Pe-eD{Z~ zs~7IuRF@OKu4|p2ug{enRr5QI4#6q5lFQP*ec@C3J8912u=PNix=$N6>dpH12+^ef}F;FPPgzisSNnb-IG;{Q93 zueHS(YgYw+vsQJSTA|DtxRl9lQkC}iuobEcSMIB1^xn4VxmdSTzk6`<)h*LrOS09; zX|XEAUtH^SAz$J}Nw(}B$Hzy+*09cD+qve=55YMF+S@PQsC=;K<@5*2yb_*MBn@8w z{n=yu=&tVkJMcPCI^wN4Mtwh_)!zXXuaI-yyxcx_*bE#0$s! zcOR@Vp8D*xGO4t1#PF`p= zoL61J^ucb8_F2>KcNFR;&A#1u{`K}#7e0D; z+S}+fFMqs{)1xZ)wCRjZiK~4+t#NuVry-sx+GE4(tQ$qv)7Qrz;Z9n{VAWEyAo>m0 zcW#;WOTT}t(Km6t6mjSpvjn5y?ub=8<{UNtJ4I#R3oqTs%47Y$u}rEuf4^>3QxI|r zGI$;k;P^eXnoBis>hg~hGJLJBo2o{~8teOic$Tq8s^NlE-{g8m^}8n;o5erBU~_4H z(7bkfX8hj!X9^yjuMlxkPdwKmU9O>DandQb&SG(MyrJ6aJMRBXk2;@QzkI%gvXZCx zwpKPd`3yF>Jbc)_eRnL~y3O>^%vN?G&8 zoylc5$UZCnucYepU%CwbCf_C$Jz73XV!Nq$?XlUJrnzcc__yX7C@y>YZ;Su;ua=*) zepwmuC~PX$F`uZtQ7@=sSDKWd=liRIvwCAruFSid9IA5lP}ZrtZ#Z`_mBcJQC>h^& zw!G-yucI}UK@2@*A0$&>-OW#~%Y7{r=D5#tv3SVY%IiJ4^Nn8J%#K|fW86LG#kI~G zlYb-^eapSMHo~ilC*{z?=&EMP*FKtUnzeim`&N7Y-m2*2`R!BY4S@ru2PQjy{2+hm zTJ(;Rze#bN0(v*Gp?k*ZpqA>YP4^iE{BoR%n5dN>9h8fOwUPb zyYf+b(|H;7`wqv{+nem;ge}BKK;r*2V_#?}M^aZn5 z=H2I4k3avN@7=?dlbIGMmzsqIwp`9VwAySw{~eVdcXN-n8cgoLxby1d@8{p1T5tJP zYld2ksKB!M4*PGexts5k%vEZ=#y)pSzd(_a&SZv}y1Q$f{Vr>rIq;F)#c7_O$^#BN z#ytULLi=RPYMZSa+Sk2b$of88_NejRL)rh=KYzk0!jx&5s>2#S(`@czR--pNUoFl$ zK3gSb>X)hJTsm9zK5e_*8Ia`@D?07Va`EfO&I=|-rkD!2d|KBh?Rm^qB;$d$+SlDr zxxDU&zTa47!?c6*2G{53cAvdByu3eWZyo3BgVoY?6|d_aGxOCp0f} zD&Ld4*`IxtLr+ZIVI;=8;QgypVUr&xl^T|Yo?13L-y!8;;FH;Exd&_5<{9eDdAi_o ziPg;=nwuu5usS?TPb%Y#M-y%?&#-4gOX_T88D{I=EKnl5Z~-)EP;e*U~U%G%FU*wnXA+Mm64_by+B zlO{hSURJMA75ACYrs~czk3GijGFN@e-20DSzdrvo@?iCqvU7=2VJges_MBO?Jj$n@ z-&~V-ckYQ<>)Zs^p0r+d@}+QI(RGKg6745!KlQfP&G;mc$Z%Gu;ho%P@#}_0nujxg z1WyfEcjtMfaA69U&6$myJLD?>v-DU$=fGD_}Hn!5D^-o^bh1Q{_Q*B#~EY&x?y^||$-XIw{@<~>W? z@>2f3vHkrco3>A$urlTIgo626G0HNpy4AJIKHd9K?sooi{|$!HpM9@F_liGfvS(&W zxLs$Fs$bnyzO5wHZMLk|&uct}Pdbd|hs|Ez_-pUO8dj+%$1RS<#mwV*bm+&P$}2VD zLKh-=WS=g1$kn$=hH>)uyqGQX`s{gA|CdT{T6}Mg{6WzJat)9FaV)Q$eBCAH)`dge zcY2y1 zkG_`foAG|K;jc!ne;4zY$>-T{-C)nT`6b`tb#cuLIo1o4ns^ldPwJnedTGYC^FL#z z%jcZmK5cSfR_zWJSwX4k0+Vf~Kh{4~%o8`k#ZYzM=9QriQ@8NV>6zWR`SeCh>G?ZY z*UDbx`NJ&uo-K~+!-@4D?sk-KNlBe@?R3!`j<`0Juh&YtzWUUvte&HI!b-|zMbM1- z+@AJTKX-T9TOVZHuT=HuyvciqSEnc2u(sQ5-sE}pev-!yb}m0wJ_dEWN7XVtzWLK_ z8d{!wTs`;NmftGkbC;w|t5oto|2<{GuT^@hwfAnn|0bCAqS>VrpEXYC&e`*tpNaGF zt$&P`ll?!*Mo%o_7umyD@%QBQ!s?u==-~P**=c7x&9tZYa?YL-;k@o?%I<8zx5*bO zuZv%HU#A`1x93Hh0k4Pes|}gkUe3R`O!T$F%2Y-j^(WsPj&HL#@_zgJj}LDA*_PH- z{YGuVzNKOAk2yqT6tDkUb@IxS@(VvqWoNrSP!>*nbX&{+?@7JJmhUbR*1kV#X0Kap zKk?ZM=f|Szcg{#Be~zA=y4f`DPNZY&&34~~!Z!_Wt-QMS`$=uK!*9di&yIiA>m_t{ z=|mCTwP&TvpS_nqxiz?T?fvr!chixtU^=;beYN1ob(--KAUW~e#*Lo-@ zkZVCegn<{M2p6}TW`k4WK@HXb4IPQ43|y_Oi$xq3Zb+EIq#+{K6U5MZsA*Jj!XNQK XFNUx7DT~)y<1sxHD@r&u zsHDuCSu?NSUCzMxq|W`H^S*zd^V#-(v4iH)DM4O?gjlJUP$Ily!>0%Ls}tP$U6$~B z7$wb-@Z|aD&19yh^XlB6eF2>ltB!;ucp4^&Ce9S{O8!*&o^L)|L(oDk)5k?JXPAn0 z4^<@SOt|BBUhjbC1eu*K$Zts!V`?!QHf9mRSDe_zgbjQya;V!@Kb zc2C{*Ybh^7X<`39sowqW_Dsvf)dbonTI5{j?qGjpc*Jb~Zco`Zts@}}aYt4i3*bA} z9U6UN5$o~;9xUR&P9K=rG=V8bw&-_CRhQ_=+wsf`QrTIZvz`ge>2Z)~oS|*Nb0kfn z?cV_gg^kT|d*m!wC-u*;;aM)=*I?OlgS{cg$hI|ctEGIMEnoZ_=7>)ghpsCAjWcD~ z6>D0eV6iM=wx+~Rp)(Q>xD>2f?w3lQaO^qhmLlIaH=<8gXU}^NkGFfc#rlsw)11)W zI4^OdeFlTehW7aW#d^=Aa?%o0)RLAZypVRBzd`6mry}?5HwPx^Fimn@wtQ7Fcipk+ z95dc0@7TK5KhaV*X|hm#q67 z_S*kgf89TK>GWHhr1m^Dz44Wiw;?b1LG8wPrk#??n-BOf&bh1ejp=}$L9{`RYC`@( ztvdJL^M!<)(@)w;{IoMzytQ8Tx^-imbJb)ElbLbN)xwh{`VD0_@4gmRwNgi8vC;mX zu026opHF|7c0Gf^rG>Toc*5;+g*3i4=?0D5=W`b8MR+F&Ps?dJaD0ibMIER6AIlqm zM9y59_OH|Umh1dL=9k7r44uxC3y+uPcCX&HNA3NGU$yej>gr!HOEEl5yLaiN$AM-= zQHh(0(&r`a6b9~iytuQAKg@e>pq`AL`Z*1CzwO-Zw;P|9Fg(bLa%E-u%J}9NL+RGK zH@_IlVjFhdvSRwm_$sUBht}R7*?)d$?M+{`dF~U54~9wClGl7)a)0;lMXZVUCS@yp z;5IPd@`N?UFz;87l*fL-x{-l2ngU4Bk-orL6 z68tAte5;Bo&k@-oe?T1IYs~0U> z@^Ja2S(je*@p3#A5z7_`OMDeRKh(J*;bcM1?{topx;K{#wW}Fd+!FmFYrA4KcdhM* zeS-hkbgJt&t$ddky8i=T!_L!5oojs=<=E3=PdzuBrf8Z{mUn-Hd)lw9#C$yeKb%H&32{p1f< z9v)Hs{^FHy=@E|o>x)13mp=BbE6@Agn$B>>Te{U^-q8;Nxi)j3l%AJ|OF``c>bw%Zsi*u=^r+asHCT+RoRP7YDC?zi`>M zMQS%5&kgr-jpG!pT>AD_OGj6K;*B#GdFIqu@=ag7y8Kh_u@CE4tIalzdU9Bg;oKa* zUxEdx+5e1ox$B%%X1nma>z@kW>*m8xujK#vlUuXOTT9bE&gEvO(kVZY$GW+H3mC(D zW+z_nNjnj$?6lA=wC$nwb^k|K#d|k?_2yg6AaMB4nVlV#f-^47a=KssMd4SUq|f=r zy`^g&t9}T*&c^((LU8GEu9aF^{Bc^Bb9hf5yzo+4vg~ZeoWOMf6~D7}A1(|HKI{2c z?XWIG)AGr6%+F?tZGFBt=8Lp>%Rk|^%!ThA{=JIwD)I}Q73|=7PP1leT#w-wY4a%$ z&HL1Mx#z6dbM^nm(?8Dbn(e!{F8iSf!%E5K4Qu3^Z0atW?Q4u{o-Aqcv*=fk+?}Uy z&%9f)YX{TD)*p5Yjn~9Ku)pSKsQ+TSupi@uSq~39ica_^yW>IPk%vVW>i-z9#hW(m zxM%xCI;2zT^uz7M}sc#&s!nhEoInZBnNzU{TL-)-k`aNi%3yFw2I80M*(C*0CYOb;GjfBZpIm+je{&odesh1-q)9P6}L924~}^mbWN`C(VLPuh7= z)~%)HuNf9h;AptgGw(-a-@{$Y_;)7V>6uq6x_AAB#rt-dY)n7aJcIL#?k~v?v3Ip} zFBfh$)QOnUb9fD7vERe@mKHNJkc>wC>N{n54g^A7(PDG<^)5|FmQt)-|j%lkw3!fOrNKgxF< z%*}bUp`hc!;Ra`(&J!=?os}kZEYx?hUvPWAy6ui%#-BEwJM$>CS9klQmp@&)E7I8y zEMD&xEWMxU;jzuDr2N23JT>{8ISEW`I} z7%D!xcH2G{Pu{Wpf4n zYD?}ogw*(0!&zb55b1D1unECU3_Pl3{F-$ZSt>zCvuFFynxj_+7kHS4Z?ij?=cF* zT(jhUakU`a>A#BF9c%9Nkccy@qWN@04j=kzeB**-?)QR^Pkk?)=ihwfSyl25$r&CU z{yU3mPTLiky~%pFaP5sE`VIeAZTq;iuWldH*jm>=0Qg>1lC>vE`n?oZ0!4o_ilrQEPd%{BGKVqhGJjD&O*D z+y0r-swX+hnZHZ#m?{v_ZdiW1uE^|NPTi7~4^ux)p8xWkbGyDS!!zAF&L^`ErW^Il zuGa0G&dYK1{LE~g`_cB3U8|0~moYZ;vR_PA=opY|ss$P4zvinciTlKm!%wy73 zi&r)}H5)>h7nHjHUl^e_`||W}d~*%^6vO+ux1N8_UiWs@`hbv`;(P z4jjF+dyDzI1BD959+ntY9@KUD&NI_7)vRs)boEb_F0?~Zw~D{pU1^M@4@&y-8f z-Fd{MzU|%98_TO_&CXgSv+9m=?((BCqcfOX$;W^L1ZvA+IdBv}YV|NTU?_Bz*D(Q{rne#K2n>KLIoW4_B zLU{6(=98cE4n~A&)J(JGJACKs_1TA`wj7$$QTq1y9lZ}SA5yI<4g{7aO8&lgw`2dR zWiz9eR8HG6<$gB9oZuhR{n`$cHEb+SznGozKj4RqbfMAr$=SZ0(-w7P%Jpn-eJ&`+ zW|iYIbN{kwf8XaVS+!ti?D0QSzWn|#@A7WuVl$atZ+|lg{ZhS{?eYJ?&#UYHMn3L; z8m9Y4@Vd>7zbC&wD-1ra(Go83M|R`?9m$I%>(BS9#NNBp;8xjK>HY77Z}wa%hIFUE zeJlnAw{Ga^|2C@;O8q=_!hV(Tt$VY+rxt&iEPXbZk6oEHPVB?>?{z72_}tFT^t@j< z-CUgMzsvqZOKpB-xtv>hVVBy0JE9Zew&1b3~Nz&S|Yw!H}4_^vn>JCpSKE6dFPjy=vYx(}E0-m=wm*&oH*m=)_ zXRkZo>q}Rwcx?7R^-e2a{ZGSGnUmw6h36qNPKi$LGJ}~e2YP*F1o{p21h}J$@@`#W ziknc?a_aKgC7T{hNDgl871v-4ZgTD_oFUYe>{aoeZ@$>`ZMSQhPcr50ty+60^}+Nl zkN2?F9*=D_wwmRfZFiK9MasU!)^K0B$Jrf|ef(W|baL+&-kJQ<@4RB|dzs?vysvLO6FJ1Nife*q<{-&9%vWPs}C(X+&^e9 zx9UY6V?oi4HQMZ7<{KyO7j&fTS*cPNc-=Dbhu1R3~sB^~D0 z7A3vPJ)%;2c1xk_@BX5SyJB}QALQR8zD8$5xl-TSio3Iw*EX*@>-eGZj{XOs3wqO+ z{nA=}^ZU8uKeW!R{F;AsTJ#}HmMA%fc}I)qZhW_Wxt+=O?7p2$k&@agbgy^+I=5Kv zFkg;YLPY=J{kwL@J>n{O8ujw&wx6mWDt4>nZJl2GzQ!fDGWD|17f!wRYyZ4meRZNN z!)K$q874I+`rYpo`A*++@zfusZ~ON8byuEdbtr52$>ALqB({H>b(xJ{yl!#N!_Wtl z+SgpG%)a^koO^}$Y_q?qlB~7wxQ}?wO#u-kx-ecIv1!*7p7i1AJ5KK=4QQC(rx&4*>N zA4=c+Vo18(kt_UxegFS9zr_vv`EK(GtoRxn|9bho=gaTO|1l4Ez5HId_@496U-xVk z)D{d&ifFsPagO;r?RR>L2Dz;~8|LicI+NEgaAW_TnF0oXrf!*X{LtFV+fo?~^m9cl zzV+>V?WUdRFki27@ousG^=XT(WAyHPG~Dqxso?0b2YvlVMTPIa*q0Gw_|Uk(o5^h7 zE2%$IO@FLf<^MmrdA-q(|GT8#@4OrnU-dSD`IwHfLjI(eC;NVg2pC?z{z2zMv0mZQ zCA*^J*{9XJ_yV2n{rbB|wCyO;8q6Rmx6*}Qs&?Xf`|KmNRl|EG9wb2d}cM0JnPe=Pqn zKWJ1vyy0yw$KJ{7Bo2L;ou09h`(@O+faoyKP)9-0oy%98v39LpyMJx9o1s~z#Bq7g z{rT=HW}M5`KB_+UL4HeV(wxhtjkTw*nc7+hv_CYv6m-2cpTXu=mdU*z{f(;`*nH=E z{P$eEbxP~?xW4U6n!4`Poa%cT7#nbB+dh`VW-a$GZB7YX!s{^W*SGE40<8b>pun`KQM}YueXM z`XtPHqjYVa-W--n*4g$GUY_iq^492S?aot8+jq7!I^UaA^lks{zJ~W}YVI^&HaDKq z&SNgm@LAlx_r!atykp3^x6+QEBzN6XBv)m&W`J3b}9`E^WO;NSSGn(=He*|8OwgHl0lBQ##Uk=29=>Q>>+3bk#%X~&~OT((5<|Nztmbxz8 zdamP*uEF6aE-UT1GEIQv%GJVzpHW$-&slMP;J*|s&$X7}L(0C^pGiWkipI+)*<@8% z)YzLI5NuSI=u>*al73C`_%@4Krnl#0try>wxz=TR^~t@*VqU$oNkzua+fzpSHh5#Y{6EiBF-S#SiB4H;LEOKIFU<{9i;0R66Ncl$qA- zxTmb2eq!ror?=J`EZ-P@AKk!zBRS#!H%pnfXP)j`AEW1={9~@zf48&EyQ;eQWR?}2 zcYKu<6>|AL`ycL?E8n+SNJp2?2Jpy)c6w%L*>owb_aFq8lU`9wOzoaK`W*hYBMZY@D#wT@yFK2t}d1l6K?{^&+X*uL)kh^*Z6YCq6T{#{p_nz;5 zVVQG*yRfs9`G^5)qEVY({G320Gu8IKqO9}(o~513JQscA)7*kxLWQS_A{9Pt-`3)A z@t^aY8-IS@bj&#YW!*b|gEObkFt$bNsV{!Nt93<--`(k}cyqS3^70*ao1XainYE9H z{}zjvu`{zd^UJTkeqOh0?xDZ!`zq7!?h-#b%cOZ?A4BjF1J)T{1`<`}o&p^KbzfLm zcYk}VtGPRaSMrDaoqO|JPWM;^Pdj~>Y5mrvmIYrHpPlkdCcozTd=LNHMXQ+?@D=dw zOVirxUgov?zsAAD>8DRW{$cPuEm%75>OIf*C$yNimmJNWe{1jjJ-OER)s(-^;|`0Q ze$vD648uCMG=^Xc+a0Snhdg;Ud4IC`y+@b2-wV6VQ#-raMrYsur=NBR{&Uc_W_!D< ziccrLcm1a`j`0G;;*y&0%TgIU4jriD`G4uFtmXB1(G39)-ba>i+Gl+Gt!(0}Xd|Tu z3f-5zmy|ENq>m&zzYzLO&ZwY);tNv+Hx%qUvui z8cH5c;ML!`s51BVTD3LH{qvr2{I+e3FZuSm%KMbXhj&>9pHwpE*>Cw;sTZw%(N=5c zwF9{lX~Hth`Bp}pUi~u4^~dG@go>|uJDvIbKe~Kg zYWkGcCChDYs4`yoyjwc;2Cwn$-<9?vKi<#1T`^m{*Oz5i=2{EyRX2Ei-d-`=mb+Q| zt?!X--wn#XyTsLOjNSJB$J0yq6N{w}R(?)%KK@0~L&4$Uz2-T$w({@Z_s^+vBh$p= zC%-&tt0?}!&S9VX_P%WN{+XLL|7NyXvOKM~%kT z@)8bN8(rIU^UzDikh!YA|8Bh^BGx>k`lLtYX5~X`w=}&z`a$%8oL=FtHP5bGy*BCp zPdzVw`KNn~7fE$(JZpZ!<0Qw^zX^|wes&7}i_iY277%{?;P-0}{x7m$z_B`ysax*F z72~+Hn6$MPi}f=5_C7wKedY7>l-J~rlXmA%;)uvvjS+9svyTYHZ0 z1KpppA4;%Uc69DQ1|U6-XtFRy=>YIIZRnerKCz5P$p97}n3M%ynp z`o2eywdW3i}Nfo_9Uht+y8Qv+n+8a>u4~<^HxU ztjBk65HmR}CMMC%E})nBv18MmTJwZ?esY^bs&?~mt3;^IyEko_-^+)}Pipr) zuBl}f?TEZERr%#P>6X(f*TRoiOXOu-bl=)~c(wh3=%8P&2Sio;-@o|EX3Ajoh~vYu zGiHZ^^b%LSoW}9vk4#N@>Sb@=?gO)=vnH4J)dwF-{2ZG6k>k>?R;yaksWSgljJGa5 zJ5Q5CK*r)r(2BS0%J-(qU9=0^Zt|z*sc6djn7>Cun-7(r@c28G%|Sxy`?8q)oO>@{ zJahPY@$sA+TXw#@yY)cvlI8n^x~?V{7WJq8*yVA0{qhM7zK+-Yy7=X6&TnA+Y@PFa zXTa?22dB)Jgv-`67%X-5ZH(Qmd1vqThiRtUdXz60`!FlWWHaTTxXSUKQPyhfrIWhR znznN;-*L{YxEufcZMBwj(QlopCl6fa;7^D$o3ZNC6VD>^e9O&D#lr6&mY(O{dfwX3 z`PbtV+k&G>$jml-&&3!IoB_~?OeLXG?0wvMwK`>zGZUbthS zQ>iL-)RpVa(#C~hhnou_p9^FlU<8B!n1Uq0-6sK4dWm4NJ3CI0ry_C>6I^(vd_e~kE`Pn{gcQPW^JW!gR#9m{! zDSTay&HYE0mn{Fcp3Px~^yjviv{yf6+pMi$7$6uqF`ZsRCDUSql>28Rg|CQ z{nR_@b3W7a*xBohzN@I4*LTTUJnxA#op$H6()m>rxVEbn=^skcGg=)G>BmYRKHuwif`3ob>0gl+J_ih|I%A%5 ze0ZNUi@)jCrJ%n28y>Z9Ew6K5RXXPEc52fEu121pdTsyrcuXt)a=7%0h^XnEf3}h< z?_Xi)5RrT&kzFD1aJPiomhYE;uU>WH?v~D5o4C)Nea`y1e#hGQ58Hn`{mVMHQL;$A zE&hT}dg9#eZNk!KCUW8R&lDf5Ub1{yYe=p^@V}%78@d1bCbupXivDH z5peQ%j`UMY%jefvdX`LhR%sn#cX&nXq&EedJoOCR6drsptT^h$RJz=nMR(_1*Lk8+ z3=`kDZamhPI?aKrK>qCprHMD3UOvp}`u6VNy4@#g<3-*xFtFVMtp$)#dbu)jbAC^( z67!OI@l5=4ZZ2o#DtouU>pRfyc8h z&buq}{&sbq?s0?JTdwpwFMBp!jX&wf@76=VU(5>qq2=!{obaUZl1=?Jh8JyW|D1(t z{nDgn&y0xaE->9vSE>;2%6hcAJb32x>O8)dLM6bOAhop;ge&mZkH4Cr>f<$2|teIGkN1x)L|s zD4MzPjKZulkpa2m}qc%BYR!u0=r%4-q`ZpcEIp@~Szi$K#a+Gzy zu9{G}U(%?9VLoH+?CL%1R&~wczn8xwWd~QZTbx%zCPPVbv$2ZWE&u#>S0TQt>(_rR zdY!e(ElkGR?dJJq|IC8yp8w!^`F{1+{aHKj6nja}VphC!M{=s#c4Zy=_@6dYx6a*k zm^XXXEc*%bJ}qHu2og7ZwEo|E$>hB;ML!x=SG<2WA@5yJl*WJ7n%z5(Gu6qvhpo@B zm@Ir?+Q;0vtfwyBbt)CV*}vm|(nE>41{p6l#)bEAz5J>f>sOa>I85xR|ZD%{fS_9SjkcRgfY0`sPI`^vB`JZXWUC~F8t=hACYJH~D96cZpCDnj^K~qyMED#=*)GIX~yIH3SK21e`Z-5cYlF@At+xXTEXv z+B4~Kw?w5Fyj*9@Iqoy_#-HNitqn&mK9+9#YI)%29FUe5AC#ZTwuH~VCx6v=;*EX0 z-h3yndz^i-m~lY}%O)9{_JTDpBO8|l3R}eTb{w6N4sw9QP5zl&8!P^ly#4RPwnL~& z==T2--2)%aFG)L+!Jr}9*k_XymiW2qa+JgR)8}K9C-iI-1BoyEBX*zd+^mC^tHOmY zdY)XK&G@MYIyPPeHK|}OhkD&4&UrX7q4{bPOTpZ+uM4IUCke@b)@*f?gjIfDXw>fbdVBR}Lk{{5)EXNCDR z))N9frQK`|K@;zaRLJk!k#wPG=Ul^DfAjyne_KE*H6F>zs=p4!=G#5_TA zp7=sPmPc$cWxwJoIl!U)u+J{>n^26BZ29?nJ04Xr@EqR!C5o3}=`Ls81@q(+y$zW* z{%vP{Z}JIbb+|D)@t9rQW#KSeT${nUn~^RF>Xd8H=f zcl~!Wp?z7WYsRog!`bZWd5k+sGZo<8|TgV#5trG zyh_#8=NtZhmA&ekyE;G1VFr-J(eVx;XOb`0wq0qM#}=~cwq}LhFN0$rS3WJtX3)4Q zdo!v2?A_Jzt$CbFcddM}+ - - - - - - - - + \ No newline at end of file diff --git a/Installer/Dolphin.ico b/Installer/Dolphin.ico index 6b5462a1b2c2455109ce33921076cdcbf65b79f1..7c8d734d8d84258962bd5369fc7670f4f5899f9f 100644 GIT binary patch literal 229793 zcmZQzU}WH900Bk@1%}^d3=Gd07#JEFK;jAv8XSxa56u}E5)vT%6;l`(I2{-n0s@;FA;7?}(3hD(P7cD~z{kMg8OO{ZApzlca56Cb%wc8_ z5rOb`urV++mN7F32tfE5EDQ{mwag5i0e&9ie@JM~BtUq2m03*-XXaaYUvoNE~)+ zxq3h=VJF9G!!<^SydKoHlsBrf-4m_2e_)d9ev{nU%h;^iJ}&PzJoHY2&;5ta2K9j1 z0(rt*dsWZe@H$}G-(sf}dj8~VG3IiGKfFJ#OV{7EnbN4$AY<~^=@)}M=YKV&9N&bd zJl-Dnj17m?tE7Kl&)adtHn1WoHh+HC)3jI_PA5YnZDuFN3igPEmY+=AJURl2jfQ8U zOZG*Eg}Rn7J@%jOdBD8)gKvV3$ZM@*tC%&e&0g;({E+oXAm7AG9x;z2gxJy;_cO1H z`w)Klj-l$?c`KL-GJY-fVJdT+Kp{t4RwD7Tr6qa@Xk|bDV1h>*3WL#sX=2yDsFM3HN@R{6{jW!MXQ? zawGGE1sKF@1w166mza| zE%+F2bmu@Fhy3vk>WAJP2vEpPtJ>guW=FbVMYXS zQ9#3z8?UzteX04+G*9edX2P{a@#S+gZT^)Q9+)Wc?>2|^POsB?&S5(jC0#LbIGeCS zmSLIwl`pK9)qgCO^GTU}m8JfYl-gyUO@d1#xmG(|b4pY_@kzlaCjO+&9k!b4gQ9nj z7roLj(`LO;v5&{yg26%{u|7fl@ij+IMrQB6n!O$V6FklCX!K38oiulz`rIieyOX)5 zzxwO(>|*%7A2B}!D%cKRR^wYf5^A&6)IIcnQT5^VudtY>EZ=t zB3Jm^XC*c^><-O%InhPc_4%VY>g$Xfg*0>;4_PbZH?KM3m!eqkqDlMA>#I}t@4oa} z)Zy{ZO}hp8#1A_jnCG^l_fJl-mEpQA${V6)TEFvY+1O%VqJYrl0L^mfafBSpu6qW`Zwwb&}>=FEK5nMG@|E4~>TJ-dt<`*m0 z3l)u5TK4{)cwi#Og3hwL?bJtk$E~dG$oJG#4K;Gc*+WRw)PW=8u{?s&%<4S)-BqX0Jc3rky|B|0K z+IfEN!ZMec_wJsp)7VjVKA+oO;JjqTVe5}#i_W;!v1!qIn z=XL#gD`zitJo@1+Gl$nv8IjCqS1&B}Ex5BuD(d>gDH`g=8yB6Jkx;z8Fzu?nO9Uei zquUa$SId~M^tbM_c77}7dfcUQvGeI3!PRn)?%j&ZPifv?~5nC$UP(Yx81ISsek z7pB>XpWANfFj`1G{8AvaUL)jD<_4AYOK)e(wyuBA{I|{VzT<^* zjxUlNwQQ_=Ypz->%RF^gC?WXS9leeSKFLoqGSN)BYc~|Knyhb`_Vi%QSK^E=7Lt^Nv4E(L5J$&}y4{ zz~id&b?fV=T;)D*()^OOg6G0J|HrIGLKcw^s@-lV?V716d^vMR=QrJeXzsu5?Dc=! z9QQ8_xWB!&vN%;EtD*Cw>B;2ZR^cm-o+?+8y?$4$s8DLHuFKW{d!-+n*XQ46ID2}* z&*n$-w}`#g@=^|5y70s8ewVkKmOpdlx#Hhqx0~JghY(l1PEXj(WYvW0?Zx_gOVczL z->{eYqyFk>#Mh)tA5|`Od=fmmk$LZ-Kkag9j3$0lWd;4rKk#mx*5Y={IJXjI%qJ2`0+I;cd(>KhiQSP(I-*%v?s`UQX&g4R=HM$?dB!#<{yHo{MTsPX- zx+Yb0%N}`+=4q+{5pyqIj?TRObnD&hHs|^M&Tlic?fV|={QB%#vqfLz!?*Wr7i!3! zK4_#CWLy7YyCaXWONC&C=Y!A(Q&o4*p87?os)Z?Ij@E9b{SH5D0_Umf8mx3RW?A;< zfuTWx36BKdvSpvX+?BiWZlTb#rFY-n=)Em`O*(%{dGrlW?yVDi?wgAgh<1lt$e8E< zxwbVod%;iJj7T2c_YBfTLR$??FMKdu@n7SlWSRd?;ZwaSvP(`W`_*haQ2k18s&Bkh zn<6QT>JI6a~H<>^0cI`HSbo z{CUg&ie28krS}M@di~vxnPGc0?XAz9xF{HKeU0zTEs{U=f1G-#!8gC*M~iwOKWoNc zfhcju*S7;AX6@5AUA(Z)euZSz8E>bVH=k}{u}b|GooXuN^TT!Ksh|mYwM*KRImb0;EzF~XOd+S}| zoq6|!r!Q|lZ@2A|uSTzsm{XX(+Ob!H%J$Xg8bg}>IlA*tOt2`Q+G6`=Lsj}shE{%u zYeH*|NQ?bhT9v6?-@4|csLSV=G?h`U5vM9MQ_61|Ge^V60dEVdFic)!{ZRk zNeM@9>^O1u`e$c@Wcv~w9%=a*zwBz7BrA99U6+06cUsHais0vRn~jd8uZs3MaDDR6 zOGVYETcShaCZFm58)JR-bI_sQ6#h9=r)Q|$oiI1=$s6G>8nNX@=hr!hUwB-U*81_O zsYQfFfmxgM^tX9A%$b{)+}3DVw$do-LH~h`3?217`Ueh7G)Qtvcy>Iw%Ddq%tNh0L zDKm~=DXTtXG3W8Tj3@6b?td#jv|MDu@w?@7Hi+feZ?~D$qaWNEVY^DdC*Nb@Ql1Tm zc0b!49ymepT*av;Pj)6mT6LD({p0;?!UBdraS!%9on6@f{*tbU!{v~ldk%r^1SC>bUTX}nv-9_Pu=!V0ekMQig9Py^DO|&)t&O4UR=AU%B8y6YuT)*Vkl*aYp zJ@ZoCuUF6aPk$16XV0#*>Xk(|9xAMKs68y^|F72g&(k#=g@>mE?NdD^^z&w^r@=Y< zvZM2!F-~ELUBw`^+^f0qGix1(#O_oV$<-^lt9}bcv!BjxbZP!LZ*rc1UCrLqq($7` zGi=`7tFSqxl9)d2m22%!&8gwPuZJ2)7N%(`RIkjLc2iz^iN^VT7H>EGZn+mI6?gQd z$c3}T(++JB-8c0e`+@ZEx0!Kno)=TO78I`PVf)v(VZOD8dBe))!05vt);5`b5zJdJ zBVXlHJO9D)-n)B`nTIIU=5S9xZ!hS6ZN{t~xwBr%^KKMR=|5kx?et_#pS)k+SY}Us z&hvR^$y8yLMCc!4%>HI{enG{{NmCnq#ZRROzGFGI zQ|rVP7TbR(au1n)%TwNdXxHw&N9@CzKXdJDbXpYcZKk1ZRewIY^4Gjvb*Z(J{ZcdC=P!eUjY9-NsS`onwENl{Qro{-So>R33NPx@g);Ds&09}fAxn3KVxnbPKW${m6H|0wpk+iVf|^`b980Ctb`p5O>w>c#IDQpu5RDzb#TH3 zgLMYKeEzxId*sxfH}BKbDwT}mbA$ZkTxWV+4r?i6^5cJ_wW)&b-X~!lRz<%#k;ZU0mCRdM$5WAol7PS$KVw(^r|qjbZrjJEq%Sk8ZN z&y)B0=E|#6Rmt4NyO!bP)AbMLzigjk$?;N7tIK-cpCYNrcQ30~1$Zv!J*wF1&w2FW z+%3WTw|%HMcEm1qf>yuqfjHCYE7;>_-bp^aKOsIl{`p1=q3`F*>(`vQ)pa6PV#FC0Bsfc{$e^+kI9R zNOIjOms$JYd|$Rr*IBV|XXNg0oW$T}$JYETaeA%Xp+fF;M*d5aZ|-?%!g`@%A&*Oi zRH8b^yr=y)Wq@n(*K2~F>_s*$(67whP_6#>8#Q0Zwm6L)J>2@P`rpjG>zAh&tKZ(!BysG0ZPlY|bFFm_d_26$ z+&uo=*JvktG_wnwezkG}4a&bBzW%8s=*F^S)Lq>t`8m$zr-y%W36T~9D> zy>@E*?dH_j>6!;F?p$j#XUm-*Z$D^0ELo?h>>K{!?vLc7kFHctDOlmb#pNdf4qu1v6l{xXty@x?@ zllNtEDlWL8v8k$jezaG|q2l|C57VDDzGU8k6)z1c)=gaz zY{vY(yWr5D{i55A@85Y*0BTO;i9KBLi_st}f5l7ZpcQjxt8R<-SjqOLFMZ*c>gN&1 zJK4mKz7Dq7=CI>qg;e#jq|Kk_eaU9N$9hjFqGv-)0_%nt9_@x}22E3ieEC~WDTwT0 zYh-+QSGvt0AYlRrvtf@w;uOOkp@p3VM^oqQP*knpbX2bF59%(Mlh~sDHu75cT9Z3+ zcgzny?>%z;>u#@uh0_0Qc&asJr(bH`nll}*^dC(M+`URb@FN74VtWDv-{`@cRou***`i0J* z=AdNDh6RZ#%I$9?cignyRceQ zV%Tjq=Jem&zkN<+kQA#OYYp4O%Ll?buL*O;l)PCyXF>YWiQzXkUn-m8{?<+6tG~n# zw*t9Z2e+={On>YXPTkr6{oQgF*+mSq^d|f_;r&x}qV8b%t=z<~Tx&`XKe{LTd{>b1 zwQcc|PX&&rYjT+DTCaasa5ymLGs{1gn7+TuG49(URLM(+|cD_(Zm;DNyd4yL6S z>>tkGZhk&UVV}WN4Yv50hn0V|GHOJA>7C`VW`5XRoNvHgwCu{_jQvbAw2oileSD0u zdKs(U`?&Ib_il=P6KZ;S_p92}w&mOVANf7i&)mC*e-3ZV)}r(G@}HG+TwW?)AaH2n z0dWH!ea#O6e_a-=HhA-TQyc5NEk4pcHGFO7KE%kIv@B)on^U~F(rB@Y?XB& zr~6;!IkoLg%*m5c2Ekr|OV%)4dd^wytvRK~IK-eYRg0sZwQf_E{^moITPC$1U&?WggEDw=KY;wcC>eC#pXvFr?}q{JM#G>x3z4vWJ;vS(aHQrK72K;p2hz8 zO5>!-$5TuWg&Wqe|KJFi`}3U^!~Ho;t2s{bTCaKh>*|Fs9AADKScZ$36)>KgTRiz^ z>bW`P)wfnNoXfh=&YjhkGUN6)m-(f0wZG&^-2b2#cWn0303Ft(>K)JaI#jX7e0(1H z;KbJIndL@pJnjbRpoP^4_4stwB?|?;qN7U`GAH2S0yErzXhGGkX4P zp1u4PJ=P6JMU6I>8Cf?)+cPFr-eBr@oBzK{wEt@G?Zia|D_w2mg5|tV7@IH9&}wKm z_;dW%-c_?d%KkRaG`PUh!|2v!aOr?Y%R&}w#jA=uUGrQ7b=dPv54|$rUfuYVZJM%< zU_?&B$J_f2Pp>-Z-=8q6hxMF;g``A`Ud5?1<<z@kUhQtIa{Vma+{B zXL32>=N5aPkF$)}%9OFk!R@+F+D6G(lmEeo-o9)VZhEf4mOSbGQRbP#4f}p)XwM09 zW-R~Mb-?(*a`QL2*QRQJzp*)WPvcy{GRAGJ+nBbA-4I&gS+gj{=5WwzqaM+7x$R*$ zLJ!y|pAkN6(^7drhk51|C6|(T6X^O?)1QyrrU%# zG9wt1<$0d5E9toY-z3O4t9Er{kdpY_X|Hq}qMu~m?AjY^EVrrp?TZC>mPvHRyKDc} z+2^x#;zTyj|MA=2WS?V{sP4PMRda`8GF{74`qkcB>j5|x#m?&div#?=F*88 z4xesplejZaFT^3cLA^2az+tzFmuKz29hjQK->Dc8{((DT`Xna4r`5IdnKYM&%-NA; ze&B}tg7?2&&0qgJ&tzx(``SG7@{p}e5`Q9xEdCdFR zn0fPw)iO2yVjS1FP5jyqa%)DVxIX>Nc4&F}|HC?GX3oxY4CP8Vle#JNbc&cu?c()w zf5n~M>ic=p?Xa6oxyKd%ZOPg5((3xH&kSF+Z{GNy`)kIt0K+TJ3(Z76v^ku(EyYy6 zlK&j{#mhPOBesP2Kh|iQ^~^!=N)At)-^#lTTVFRl-t{$LyIFu-;go5nfnJtJPDeFQ zk5>90df+aHx#W)Whpx+x2G`!5%)W&0hggB$p=l03pE4&ogc9we<~cp$T_n-PeA}@m4i7SKN4;{Xj2M z_`b@Cl?!Y1c5#09wto=vK&ENA_Ro)BUc{xoE&l$4zh2bMc6#6S1Gf(>PrG}~cp6{$ zQiis>%9n4s6*q+6_;6+JlKlaXWtNrC;Jh1?e!uq1*KZg7y)36xi-dU1*!(A0^3;L! zykCzrE;INtN`*PiPdylapZ~xXE8$6HKYISmbg;C`=9%7AaCo-(_X&GHzn?tu!1@N^ z##vu_x2@Q=Zn1%?&Mw8zO<$Ro^*-8`*0`yb`^S|vx6ew8PF>Bt!i$lo(nV}LZxT-h z%cabgl~z2h7v}vDI{&rI|Cw-Ewa{6)+shvv6y%tHb6$H;@0oAsrPISItS>)(wDpcu znA3gL3;CR1B42G3@CkBsnKm(0R$eKFD`v}w^Uvl!}j{# zd9OCshhLfRw{7efTJvhdA;}8ihr*lR8FYUVS-KkJlt0V2h`d@U?6Jq~rD)k}tN8}i ze8Sh4-Z3^QioCq{ii^M7yi;wTHCg6Q%Jg49UwzGFH{a|PJoj1|-?KiSxM<6BzDLJ< zPL|AW+^;-m{|6!Cl>3hH#vTv z-*verz;4>Qg-NUi3A=jqzdSsazE@in@;HKKND|W^q|eqq#BP`TzF@v(>xS9LsutMtav)$sK_$@p^l% z?3ot0>)qkIMpF`m`-3~%Sk3bO{ysMK?TXKJ?+;JwXDK%OsOmUldZYijU7M@l$p>y^ zlBk$pvpQ8`y85=G-@cytw$kFcU41p5qtUxo{~MpbZ4kVA=HIVFPiJUoNtVyMcW=4H zrdJDMVp#lT*!D0p-)q`;TF1WM;K<>YgkR63T0Y;~ab{1b+R}B;{cg%1e#&t>t?i`t zlcnoEYkb*vI^mA1_80r+HcL6g<`GKB2GO=QU;8_bN_b zAao7GFI$cETX>SvcTY^wx^lvP&4L~Cv~qVWHQ6@1F>9*ZQrn{HwH))6G|G9ONbgEn z`t)SEuQ5-R@r;Y>?k2=0-L;#oal}>z57c(`v$$6P}`s_P{we{`0|AP$Mwap zaa}H#?5WpSar=X(_mn^LD!;l-Nx?xT;=+n-={?R_~RJ%ZGN!+*-oLQ zFRJpU?_<&CJb%R8Tp-Xf_UX$BzjS%qnRSnTNSv@aZvX9=h(JlJiCrQNcTINgSj&HZ z>)l0jLyFHIdOp`c+tt1Gbg`{u;S?da?H^N?UY++VWBsI)TC-V%+nm$c$ivQ@%sC>zm{wN6gec=K^NiZk83^R;vIgN7TjynK6C7oVY%S;E=EIP zFMS3Ev4xR;i+p#{F0GZz*6KF;8ho4QaN3~< z+ntNA39I>h6IGTm|L^s=Xr{>SX|q$qdCZgT^>oVjd+(gO^0T0E;+C)1TrJ$caU6Oc zw|oEVc|2F9e5rM^>;AxS!94NP&nkg~@r;jTrtiA;S6jUQ!Ofx_J~P&sZ2Gh4_2(&z z1Jru->*DWJtSerxZ?S)0&5pufpPpKOf3kEf#6)v+9wFb&} zY|=DuH66Fr=2yG1IpN7^g9o)jtIg+@bH_RTxb$cB?w_wWnxA;y@VY^8WAx5y{+}X^ zrM|w}J{2s#Y7=6GYuxJYUzfY_Hn>F zPmgWbw_j&}&_~Xfg){Yi+D^Wboj+ZB{`vELyRY1F2oc-u^YoO=-<_35E%n2X+kI#H zw=s9;Pu}laleXKjg!Q+&&TsjuY@68pdEtTB$$gV2zdToSRLA89%c0zr)q)Rq``hgo z`o3Z<IjwZ>+j-#vG5cTnJQHi`FI~fNcnx!#z?=X1MNhZSiJ$gqDw`L*tw^nXVU3w^syU9L=`;brqXWP*O zlRnfG{@6Xo;X*jGHmBM7n6rwK-I4F679Lp7S+@G@x$v-kpCbhKea@Qq_BrSDY=;QVVE~=EL21ROZgXXU}Yt z1l}EL@%FMlRHOGiPAg_-TlmX@g|fD@UYnKJ^~`b2O1^aAf8m4ApVz&9RxKE(EUy^B zW3Kox?ySHW=eKM#O6;$wtFxY;`?KSx>r~5gy@|8#v_0&&qgJKbd#rSI$u*O=Y6oN< zSUzBV5c)vWF8!W={Ed@$bd?)tCe*qwxTP4dGOE8JuRXOrXj;Sa zHGii&JnlZ4ujq37L~GVh&j+82*Bh_)T5{`ajIQs2zaBr1F3NgdWpwCEJd?2e!XFpK zGu&=uKihJy)+A$wns$R?s&x3Y*{|b0A8X|A+s<@e*@n%A&F1LAyBXO_cR$g1@T?_z z>0!nd{|r-i`I$3#3(h*Rdxh%h{Znp6X`So&9kZWr*1YDns|R=H@^aYZwlqJFyWjh6 zZU5>NgM-P3{FndP^e%f^(f2!_C$2yIV!BYV>UrkhXXae1oL_BhqqMrgk@Nbu8GV&$ z3-6Xp`lqktqb%^_xaE%7`_rnH-{FxFoj*Oe>YkcyU*;sqx4n6uB$+x zKwyLX#cut5dqP&ptlG0|nW)r!{;J(qrcC_c&&+;y@4ngRIb$?=S+r%EEf?5?6|#OZ zN|fTMk^g<~PtLQ&&zks7>=ZwIxXAj$(K7;-$CfNTw)m-o4~q+@^EMaAe(2q4Uh=q7S_k)t<4n!s2Y09o)gEd#mN%XMdc&S*mP{L!|LqB3)dh#l-$&frd+h#a(FS#a zbw>-h*~>ros%k$q+sXFB?bKeW&o{;Os`oum>@#D3+GBW@_md%0@i&Qtq}^@Il~(+x zZ%KX<>zSAMQ~dDXx_7+K+*6A#+5TAlXG+4w0EeY>SL|M=Tq6COhbOw>Z_?H4X*Oy9 z?m6!CQ<49$;0@QEE`ybCLZ41?{PainLDqxyGM5gY`R(CMn<2-1hJAc8-3BVgIi_iOZ4NwD{8I61|Eh{IzA??QdhYi5xlQEz zqJK*FkAB$Cag;Ub>GNG)+Zu1B-S`%_;v83V_$d3px1fV&vzSTkFMRMfAC3a(bEWbpJi!h*B)S&$>z(;za|``{_Od4&L93wH{UjPo=N-uO`d_DshqjIctzyp ziIQ&(?`Yk3{}Fsh_q5BoWY!(eU$Sj((4YM&EP88<_T+|qW_5+0b6d-rdG@cF=ifB* z{j%vD@qS#3Se;b$^_cnSS&{!b9LFl3LgW3nB4Xf41U~%?-gw-M#7yf@F`+_{tIQ!ePfNYnt-? zZq@wV@7G_6Yd%=`XXQ5ELxs-*_hs(u*kH@5=M?e!iF)q8U6sd$!xBn`_w1i6%-3i3 zVQ-(Vi+WMlPSJaK&lN&{a6Ygr{xPE*+_xp6diLqN5tR_pRusd&kY)C5 z`BpQj8|mNHK3mFnwmQ9NW6jirs|)IrF4%teOqN)8UhBrQ#)JxyTaM~`ex>~W&Ktmb z;bx3}HS^_$e-7VVX1so`oXsP<%8iceUp}o1AdC+-*=)_U7w0!ELo)=f7ReEz4A57H@c7 zz-ON6a-Z_~C+8e5>HEXQ`8|23+qX9-)`XwoOcPa~5g(ACbm+X`w92#p)+F`?+k01Xh^&0R!w0?VbUKGRZuGdev zS*&%Oe}7zYQvT>9$R#z|uDCvkkAZ~b1IdG*<8S`EHuub;hqppN77p4)S# z-}+^9e~zQ>p|dfXCwb#`Gv7CRU$DtiFp-n(U0$6O-}fE#3DofLA|+eoArdt zXV?!Yij>d(HrdpNqh9>IQ;a^_xjU)yFT;JyLKsU#@0*-%bQU=0?lgIakm`eC|8EQA zop;PTt@@W|*Y1L@oimxNTT3s@S$Sd2!gK7m4;)k6_`UIVeIVcMC6(_u{LDXd%;VWw zIi>v9oPu>1R?X&ZPJBA;V|Q>bhkDp#(ORwxvOB!&x(j$ONbH{aO7>HW=C8jqC!bjv z`aCzdaAQvQ!+s9->Cy6m`{lM(Y5g%+`N3+#={457PfqUl`qBJHVuyiMul=G&l}3-E zS?+F-+P2reuKbZM^W?b7Wt*x3xEEL#?5X5PRBtjrsiJ!0Y6SC<{r8{hf4V<+#_zs| zA;#0+&vI^9EO_tioYxZ`bRKvld${;8UqI~p>rXlMJMK6r`(FC=Bg1#Lx^dp04?I}u zV4-d#_wa?+<^^I7<&U{61s(=%FiR`UuPeR1ZSJ{~&-&k3->J1{ubWSt^2hkV|ALi&c6{c(;8=6thRui1_i0n~vTaor`O7z4 zH~Ev&e%R_6?@r%yGoSgkJbrU@P~V+GaeP(+28CNCdhT*+j^Vn`Ql6Gtu!<@Z(=n`SIp@wFben+ z6LPI(;p^#dY|p#=u&#gScsjE_VIE7F;}7F+E-MfGzRh-x!8Y?e1OKuEmTEsjqKZE0 z%SavJI%ur9qh$Aivn)n)cgtO2da*J_%UZF9^{}DGj_v!`-_|f}WU*nDIkz$`^Lg5~ z=AVmYlDJ~j+cH9J4&Q4#c3qP}IDY@}J$GAoW{aDOpPF`{n?u>K??QD){_+DY>W9{I zv3BiNf6-g=L3r~Cj^mO7-vt+BiyryRw6JtT&h8ueD^Bk8 zo)X2dx3~MKK+Ws~^Mv#SB?GyIoX+tH1_#CBR&(sz@~3=XdeuB3h9Au{Zi$`Kykg|a zW6EsbP^fSC_iOc8_1#w4ZVMIJF@? z!XQO4=VQ*Ec?tc~<4w*__i}G%@akXwR{hz`ZEV}#?CwgppW`8Gux|C|D{)cvS!NOs zvpJ-DMdttZ&iJ&u*!p5Y!c~im*V4b`}UP())D0Ezy0gLtBr{)2lZTL zu3!q7lIQpNX4*u-b3LrG{U4Gw*_pMsE6rlJ$oaJHCilJ&Mh&m?54axeJ912+p|gxt zC|g8fLte>;T?Pgmil3vKRxyYyW#91extoBWnGhfAhIw2qiH|rBeaL_6qU2hb61E4V zpnbzfnavy)##ZJctT!fXVH1e3ZS=5~F{@1ff2{zdfPLdbnc|&-ay|RGo>$Axad;Q~ z`{1pM3J23~**)y`7j0Pd#b#gkhI1YY2R4c-yyQG&D*PyW&+O%^m;$EA9s5;$mg#}b zZ(qmc|3WsvwYk|*yfx7abZ_w=h!e}%Z?vaM=Az6&$2=R5!`e4}`#(#Z=g&pC@52Aw@{~60 z6I{Y}B+5@_A(um7m4TZDe+7Hjw<(6+o?Z?H%zi<8nSt+jYp;lod z_as}HjJNF4&AK6>j2d3~$!9Cm_&!uWw&C5N&VJpTX%WbN^+Woqa|C*>F}vh*NHv!F zGUOOnR(G*EXuzbi0= zGIU*99btNuqrmE8y6fZ|j(dDP_KNF3=1Z<#HbcB|bxobLTXW;xvfFwQ0!u*R>h|nG z_u1}Ph;V)7alIi0N+au2u8M4y*rD(=G2yRVC&f+4N7Tor&npF z*%qvOy|0i(pvEE$6ahu+SmQRyn(?vwd#7K7_e8w>92#1F?FGQ3&A5 zqUML?!+DHnoey$64rSChm3C;AW}0FFr^7iAJA-X|oL8XQ;SpLW=%{0yr z)eX}cd4gFNXv~)1Z^|0B=KH zD4K`B{{}vm{~6-vX>QS|1%omK{x|R?|4);6F(@53>L{9q!2bq5j{o(1PydI?jmAGs zLwax;{=b2*fs0Q~ck+_X8aNsS^MHs~DQo!k$qx2WJTUZ{S-Gj(bqu z@2mLtzltH};B@JztEe3U{~P!m;c*X&e+$i9)V5>Pyuld){~P$2|2ObmhQ~js?$6>MCl7!2brmtpAOC|Nl4g{{P>=`~QEU)c^k)hVj(4XVkpG7Xtqqc_sfh^1cVh zJt+P`*i#u4|H^~UwWBVgb_o1$;#vN`k>@`G^Zx&Dr2ClK_Kcc0_(I@+6Sv3zCZ7NQ zo4BEv=l}m~(f|Lo4dx6!*N(b~nj!GNnTzv(GuNH}&0PQgH-RuT4frYk|F5GTPEET; z%^G|m@V|w#<9{>fe+cIK4^9US-2eX@>;C+&W57T7Ts-O`YK6f677nZbEgXOTw{ZOb z-^}qJOoP~IV*mf^>F=PHJ)`Cfz7Y7|%Fg}2mHqbrR`&n@TR<2T|4`aZ_5Xi;{j|a7 z>f!IA{~6-YL-=Xy*Z*y7)Bd-y{r}$z!|V`t1@Hg=2Kqn$>+1{C)&--cBZt8MP8PoZ zbzJBFC&(;97N-UKe>;o&|2CF?|JzvqBQV>4aC!)p`TyTge>E-a9n5C_pU%Mbe;R|w z|7i?u|EDo*{y&Z3;{Rz3&;Czkc=vxQ!>#{Q7+h%O{{J1UHvcN5_!#&_;_e_&bkM~N$^SOmp!m;)sUME?|G5l)|K~E?{y&G|KMJ1B z@c%zDhNO!MYKOu9sSGUtCo`1&pUn8{|73>$|EDng|KGv>|G&Tb_y0bc($uyOX5Rl^ zM%(|rjKBW(F#d;NrvLxDp=kj`r-}amZ>IbHzo{M%OwVwl|IcR-_&=Xv<^OpM|1mHq zEzHG85B=2k|Nm(W=KrTKUic5HQ>HTf{|~~G82|r|QT+ekPlM|A!QB79k3r^tKf|m4 z{S5#A_kl3u|Np%p%mAT5Wq`fb|Nmxs-7r1FiT=Nk!QlS_hTH!aF#Lz(`3(R6!!UZ9 zn9H#7|6B%UYK6i784M!-XE4nDKb_$(xLpB?e^C1ZMCXeC{~w_7{=dHlP5N8^CopjR zpTKbD|3rrW|0h5(C>``OLem1n|NrTt|NmR){rGRLD?=?m4;FL&FJ=h*znJ0c|3wV{ zQSd^B|NlW4mL_0nVFAPG|MMBRsNw$qGZ{Gl&tfS1Ka1f#xNQMxPaxWuHT?ho2de-7 zAE2H=4g1i|_&Gr>nzXn7PiB|~ZexJr9vy?y07xuB>i>T$-5>ughgaVJzl6>%l~-{vH#~X-1v{)o&dEmKp515^P+JongT{SrbU^Vx1)CW|RqX#t2A}^c z7=Hd=$?*UG3Wopxmm|@z^ngr5(#41WOBi^`@$>%$44nTLFr@vT&u|N+O#!M?U~LOf zdH~_6EdT$ndtKWw==N(-^L*Oe;b4P|7{Ek|F=Du(}X3`z$u z3`!3$3`!Ru3`q+lkGuX~#31p15kvF;g$%F3Z3|Ex0&7no)1Y(!!ZVov|4)|x|36F( zRQ4|<#y_O0`9GZ@>;DXfe<~F!2kbtI{*LM>Jr_@{lAle@&8VSp#R$$ zcm3bN@ag{!hW~K9o#FTYZ4BrBZ)a%wzm36^RCiND{r|NLeE-)n-2A_W;XfR&X88Xf zgptz&jE$NmvWaoS|D_Df|Ccg&{a?bc?*9^oU*L8Hs0{(bptb}IgVF;G&tm@nKSlok z|8O->{Ga$Asz#MICbFCV&txe1Ka=4fcnlM{tqEg;(g6tfv;6<>rU{Dwd;e{9IFQZ2 z#s0sWf%pGT#%=$1G5m+)oecl~BV*+Bu!G^w|LqL5|F<*9;WCrj;{Vq(%=^Ed;s5`2 zP`sAm|9=n$r3VlV!XP#%J-{$5Ev#a|yUz9hat8hX%NaWUFK2iPZcjkU4AeFSs2+i} zD`4pXM9*gV|36j!|NjV8Q2amsAFf9Ae%All3=Qz{t69)7O%M$m(*&gf5F13t$^8HC zp#A^9y-qN(aqxdH!>0dx82+Q+-3D>e=oy-tQeLqKxqLPBc}@x8&XzW`@e%>>i-=Kq5pR|7b82-aCEIoi|5JpcM$ms%<7C;!324FOZ4ND6!HY81e+7;jb?__xN ze<#C<|2r5q|KGu|^#2Zqng6#l^#9+^(D8peL*@VN4CVi~F>L?8jp6_QtwHr~O%M%gYa;hMKx|N20O4$j|NmXJK=Hrjzq2+Ysdj?Y|3AnO z{r?a&{tq(z{|~~T^Z<%`To^q~fcUU<0ZIqR7?cJ;d=L#w7cd%;E!(I7SmBc}%t80ir<|lqO&_hz&{)b2$G0 z&yxH9KVBJv<5W)nk5!@SoZkPX3~F z|NmXJpZ<5z5&^{}x%mGfhIDYegVF&EgVF&EgVF;GgVF?u4WeNf6#p;`O9wC-6!#!D zh=yTMT0qCJGy$Sv=>n7vkTEPhfM`$}fYG2d0OEsa7zU*U7zU*S5C)|IWDH9SAR3eo zkntME|Nq;B{{K%>gw*$t_+S1%PKB!brvEQv2>HL9;WO6$2P_?+)4g2(|9fft|L?B# z=fAs_Bf0U8tndGRrkwwW8UFo0%lfG{XMz-Ul90P*K? z{{NpZ`~QEk(*OU7%K!f-D*gMPpj`bwL7A*F7CD?@?EkA6SpKhM=>ETg;U9QB6V%oO zwJ%{9*7tzXpnfO_PiOo8KS1sOe-AAXu7jCJ4f_8c=1g$h!_ojcjhq%hY~*wRV}sHG zGDc1ZAT}rsAY)KkK*peSfR1750hSJ6G$=iQ*dQ8)L2-`_gVF^IgVF*FgVF*FuVnrI zzfS!B{}d%i+=JpjN$KJLBxNURgfGmD|En2f{;y`(4<5?|wJ%`(4p18t8H3UU2*c9E zT-N{p!&LtN_tg6T-&1qde@{)SrAN5icCb(Tf0Xh6|05vG@c;i2XnBAwEr7&8=>Q!g zrv+p-zI1_{Hn61!kQj2hfTal#4N3zb3`zqq8pMW`4=@@%UBJ@ATF|;l;s5{B75@KE zRf6CYrGNjEmFE9XR-)>Dng8n;{Qs|Icmp590<|+iX#g36(gO&?(gKLRgz5kP7^VOJ zeKbJpNzecH(xm!WBPb30KhDDR{~+tH|HqmC|3Ak3|Nl{@|KRk1o+d!)0)|2902yOT z4KO#h#z#DW|il(PSCV(|RGk>L@>I2NqE3F>ozFeoj+Xjpn!!Sw%s zl00ZF87Tfg{P)$M>R2N-zy06JzvKT&&i`P10z`BC|9^rVidp~vKLJe>;B>)^NEgSD z(ge7?fYu+Rqzh1*0Hp;OhQ&XO2BiTI8$`n}EDgYDSUP~wyBPofU(WIWf1l9*|HU$p zcn8IOmcsx4S&E=E@brI%V&4CBMRsiAL9W>UEew+Xw=gV58N&j#FJTzg-UQLGw17-6 z2hA-ifYy@z|L?Ey^}nBnExB$XMc@AoLN)(S@%{gQiueEjQ#}9wpW^=i{}k8%|0h8h znjTJa{QrLvJxxH<1*qNtW2XQAkHN|cP}%@tXqteP4ajK&6!#!;5DmkybbyTpr2`m- zr3DZTN(UR*{{NrD`~QEZC?wAF-~Y8-|Nn1b|Nnn0+yDQ&SpNUt$MpaIVMa(F6qFV~7?u{0X;6CD&HVrWCbs|o zS91RUKacnS|4D-X|F?+$|6eNe|9_#}|NjMY|NrNMu>Al3c~G1y|L}jVeE0usc>_wq z2%FyjI~W+Db0F7I#;!o^PFPzLM8oKGjmazT*AE)&He~>z8E!o%qf$FZ< z?4zaF|NUY={+|{7|No5W|Nm!2{{KHC{Qv(Mq5uES2tu*I|Np1?|NjT438Zr3BvP6H zml2?H0x4Y_2c-un-pyh6zeYOte~t8p|JBkT|5r)>2jfcV|Nm>G|NpO*`v1RC0u|Ru zLe!MX{{LSB#l^D!{};*q|6eTk|9_DzB<^AHUm*AAf4?+>hz%Nhh*pNIB??me`aejW zD&spKH|NqZ`u-Jcax&Wn#vq)*;G^m_FN)zC8 z0V*Rv7?dVJ7_I&|!M^wZ2{vYsyZ%>8v;41?HvV5No%O#;dglL1>7)Ovq@VwOgK(M5|NkJ2o(78L-v2L_J^jB(Zu$R0xzhiIa*qECWcfhm(*pnB!@&H14@1QN zJq%~SbLgP)( z6NW);P8f#uJ76>@9l$Us9U$Y)%>Vxv%KZNyp$1w@0*d>K|HIU%I=@72IQ;LIn)d&s z+W-F-)c^m#0HRg@|39zt|NjLQXqo_}3kB44aSpkx0Hp~~9Rf=eu=)d(CO}vi(xx~q z^#A{9f#3g6^H2JJnxCXK4CMNa7=8Z_GO+wV$l(0{5X0pE2N@oN=g2_qP7nt5J76@3 z4NC{eG%P*9X!P^|8iz=Mt|Nl1CED>nT$N_^6)}EBR`b78LizuExj+9e>iqwIQS1Nz z3m~ld|NjLIM4C7cN)sTg{Qv(2<^TWBBb5{9<^TUbFZcgHI8A`k1*rajrU_740c%%) z+L>SsP7^=>pAlN{|BR63|1*L#*+YTsM|Af8!wfS2k1)jjKg_WB|6ztV;Q0_xzXQD= z0*ZTV7?c)}F?xCc@%J$P|KBMBT}J|1N2CI(_j~?FsDj%<=x!QF{{K#iS^qbw{r`W_ z;Q#-NdjJ1l(EI=YqVE6y7eHx38!1h|(gmoT0AXl30ZJ3#Is}?7KxqQhrU0i2SluBF zZD*p_AEHnHpAnh%|BSHr|Fgp4)DDOL$5}-GA7^&{e~hX4|52u8|Bo>}{0|OkcL2*c6@wEh5>6`;BU zR8D~E4p^E1)ghpA0)#>31T0;E>JF4N@%aB)u?_#viuV3LBU1eTjBxD#GeRE!PYW9V zKO^_gVF+MyaJRSK$yVz6(|j0!=N-URRA)d42pXYj#0Vr zKUzhDT5&}ybN+WpB>eA@{QrNS{{R1%%>MtsXbQoXK(q-YO zL(>GPT>)xSoJUR*ija0DN?8F)7qI#RsZR>)f57Vxa2*02y8?|>!1|=HF)UCY1lA|z zLL1j)hmL8&(gf1{2W+exG_DDn6N8Owg31Ksxl#}xR5rk95F3;p`h_6thal@n{{4?r zne;zSg{XDCabvG9Ml=5(*$Uo8+l9`x&t)#0i8cz$qiaV1SN)TRK{ z9Uu%UCy>$vxV;H#XM!-OJpsb7Gy$tWkjn{BngC%?djd30f!zOql@*{m1e7K~|Nl-7(0ZaCd|^9O zB%Kp2!RK;;AogVKfd|Nob)|Np-X zN*5pusyjd!RDYO3+ZHDO|AXrfPvnrvXq|FiGzJ|1F@na{mASiu3>fmqFO+ z|NkqXGy%e(bOFMkG-3b$|0P(ufYlwKbOA~apmG9)p=sh0sH^~`3uu}Er3-L76J!@C zJ%BL2J}Ia@0m7g(0V*dz7?vhLbqHFT0FQHn+7+NO0)(OU2Y8$UlrErU1-R}2l@lNg zsy{&O31~S1P7~1j1GP;FkEs;(s?6i>92|KBOW{J&G8=6|Qeum7Fm|NnPL{Qo}@ zlny}UIVc^t{{Mf)_5c6NF3|J<5`(4*aJm4c2M~s)32+?(Dkp5AZ3<91ft)U&X#!k_ zfYJo4?*VF882$ebP8YDU0@|hk)gPdKDX341(yoA}32<4V`v3n05QdFkDgFO{4%FTR z)g7QZ1lA`7r3Vm(j$gsc3Q(GWwll%)3Rs$er3+Ad0*X)Z9{zudhoZImw2V`7%>Lgg zVe-FI;ySo20HuKr$^ZX*r2qe4q4WR$F}wf&ued?*Wu)|Q1)3&6WyKXxnsEC6|1t=} z$_k`30V^xu?M!HzxC|;MKp2`XklUKzaSBiw0m5i$0#tv1+L<5>N)zC5O=z0}Wt=0pQ8Bx|2l*J|4-OM(g7?zz-Vx~0Hp^|`T)_O zx&wqk=>dd6WdsaE(*-C^fchVxGy!gBg31a|{Q<(TGyzK&pmG9)LFELfYyx3WngC%~ z{Q+vjfG|><;*`e!|C?0*|DUGx|9_9d|Nje>{{KG%>yLu!4p2K2RDXalw44CfAFwtB zw44Bqb0en-(0U3m7CHa_j8M-1GeR^uBWxhj%KuIY;r|^Ht^YeD-h$HsEDf|t{Quu3 z`TzeU`Tzfy>-_(}+v5NKbD;VFS~kGa0*D5u2T)poVo?17E+>%F1gx9@r3+A+0JSGT z7*=1qEpfmx(pmA=Da^lbb zv!bW|pB3%-e?}zo|5;(p|7V1#y8e{jX#p};Aer&MUE;=na2k;O{~weFKx|MtfZ@rC z|Nk%6`u~5U(f|MZt#PLbP&)#YHo!C}U4YU8DE)wFP#FQjj{pB(0i_2J2BirQhNcNn zSph01Kz$F;xYap}|Nr+G{r|s4=l}oN>i_?@D*gWtT1x_oa~KB2J!mZvXsjN@2B!ge z$a=CarT_nTX+p-jvCWBr+Y_+1CUQ9eoj-^5Kh8tb1bFNU)F%aD@&Es~Nq(YtoYBI* z|D6(y|2rhD|F=s_|KBe85}XD==>UXVCI9~i;TFmN|63&f|8EA-Qvd&V%l-d9Rr&w_ zc^d!!FVp@1e}mEg|2xe8|36^;|Nl|D|Nl=qK+*}Q{I~$BFI@lsKkM}W|7nN+|4-Qc z|9`~h|Nlc)|Nrl^`2T;K>Hq(04gUXMqWk~Ve+k?ev0g>p^*3+2lG7s##nUm*7jyq*xWmM~ZD|Nl1S|Nqx&{{Mdl zH17ezu=)cuu8H2JKpMY-l@p+{0<@+AG@c1c6KCcA|6eZu|9^qfd|JfEK$`i#U4r?4 zyM)dEHi?G+ZIXxnw@Uu}-ztHW20-yI2}uW_v;fAS^?x8N`Tu{TGXMWqg0S@e{}mt%T}OtpmQ3dF|5BOD z|4U>i|1XjC|6eSJF;4ftKu+s_f!q#w8pxCT{~weN3KahTZ&&&Mf1$?z|J!u_|33+u zBL!ikGy!gBYW@EYp8tT>AE3F9)2jdfZ&msKf4UMV-a+HUoBt;&(PVGWK*m41-T&Jp zxc;|EI{j~zEc@Rox%7Xl?SC~lDa|GyrDq48e_ zihC%#1{D7wEdBpKDE>hhIsQRwODkml{4bZe@xMZ5)&DY?>i^~7b!0@ZAN!v#Xa7H6 ze&hdq`9I)w#kunT|AR1WeK}}td4b~p|24}0|2M1r|KG0q|9`jI|Nj%z{{Qb%{r|rM zR1T^9|6c^!Yo-X>Z}|Ryl2Xq9Bqf@xPel*^!N~vLD#`Z0MbhAZvt-c!X366J&5{%U zH%qSk-z0hHf0N|(|BX^l|2Il~#wZIwWdH=f`(G>l>VJ*Y-TyVx*Z$W?ANXG_we)|L z^o0LaG6nyuWc>bD%IN&BkjA;*kd$!wpD!=*KVL5Uf1do7|GDxX;b{OA|Jm}8ePy6M zCZIh=nV>yJijX~qpuJ`woTm8af2!iX|EY@E|5JwUyZ|X-MoqQ<8zcq(H%JNoua_F| zbu<6-|c|Cx&Y|1%T{ z{--Ot{!dpFpk{cCnl%~%qaiRF0;3@?8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71* zAut*OqaiRF0;3@?8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71*Aut*OqaiRF0;3@? z8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71*Aut*OqaiRF0;3@?8UmvsF!V#<|0ozv zA@C2)Gk*y1f1t^u^FN@;qw^o2$)ocRqRBTB;4`AhGo$kVq4EC^;QwGp)&BvRfB*k~ z6u$ib{}1?~>KW?)|C9g!{{WQ#gQ5Qa5BdN98=(9LjQ{_Cu>b$RK^~(10Q3L<2kig< zXMpk<*#G};sQ>?u!5%FCkAeOFKZg4Mf1vz74E+CpF#P`yG8UxZ2ZQ|o2T1%64EFyU zKvpn-WdHwvz+nH6ff+>q|4{$`|NjFF^*=yX9AJdFsDYvW0Epkf_@4n3f(;Dy3=I7L z|1&WEX8>8rz)--zApidl1N(ml2Il|&z{QsRe~=jr3=I5#!2J6E9~k)mgPC9gWF7zi z1~8j}0c7q02KoO7V0`BP{~H+W|3857K|W*vnE@35SqBO=D3<|b9oUOd0g&;G|Nlem zh8oX|;Ise#&j9igOdf0;KSKWh{|_K9LHz;=9FSK*ep7&YnxXzbSY93!Z6JgGL-^oG zd;qo+WD7_$3Juctg8^(k$dizuWB^+S;X}Ouj$C+vFo3jyd&J|wMvfJuWQ z=sze8zy!d~f(HoHdawr|Dj@n%Vg!^t5Doyl2NW(4^-u?ZJPr{6C5``JpQ7*~QTPEG z9*`gcCkm*AAQKru+8_=D*$GPK4eu2op|Eh+T!^UGnz$5<~cy<0a@cjmd zf0XRM|LTT3L%`X?#)@x1uo1PXud|Nm3P|NqxE@Eg&ALPyX4Z{nKqznSa*|0XE*R{rx} z+W_MZVmdl$#8~yenZx#fGsnOGEu8K-@>u_ ze=pO&{}GCdC@~AB_kS0Y#Q!el=l?sI|ATP{^Z)-K?5Ftuzp-90Ox<9n|IcDz`ag>y z?*B}Ni~nab{0HM14FCVb@N|X;|EE(L_Kar#dzhd9pUCk4e~#Gy|2~>Vl!nRw9!BQ> z-HdzwcQgL~-_7*@e-{+jaQ**pruXo_u^tPhcFv|N9tQ{`WHc z|KH1qz&(ur|A)wd!oP%EH`7Dk|M?88|K~CE{-4kA@Bci8|NrNrVMu&@_&j!>|AI7@T1KC58S!lR@kM z42BIz<=6lJ(;5E%Pm})tKR})0a{vD%2IK#e7{30W#PA390QeQFbruM z|Noya{Qtk5&cpvUx?K3o{lAgf_x~oQ^Z&Oq{QSR-;Xf3A{lArA@Bgg~g`haWr=MK8 z|7#dp|F2>A|9>^Z|NpD7U|5`h;%5be2QGX5FJ%z=zl0&@{}P6?808nJ41-}%8P?AG z|9^z)|Nr5tJO78OG2=3mkof;u408WxG28^Vi$P@>2*cXOAi9U`|9@xA|NrfEqVSpZ ze-}f^|D6o~;dlqb|NkJoo#Fp~7~aP4=l?c_UH`W+#Qon&oxJgXJ%i)_bqs(1uVeTR z#%me=gX01eA25s@FDn_sk^S+11%u%K6%6tJmou#YzntL*xaAB3^R%MOO$|F<*j{=c1}^#3*n)BoETSV?g^NbUcP3_SlgGTi&W zf#E+KuV?uGAB2(P1H=Z!3ka`axc+|)L;U~M47LAPGwlDris2VZo`K~R7!ArZp!fh` zP@FUf{r?}W`u~5F>h=GTs$w8_kc0ovXVCvYpWzv}JqBwZ!`jNAdIf}wMgISH*8cwA zQAd@K9sl<-?D)Tr;s5`=P`roX|9==pju%jTz%VFYKzRg0fB(OO;q?C<472}lXQ=qU zjUnv+HU`W8+ZYu7Z)3nH_x^8TVEVs>VZr~+4FCUcg5r%xG>8qtptu3W2Qmi52MB}W z1BPLF1wh1s0s#1i)1eg5(MGT(*7czVTw~0aZ z38*{+)h8e}hz8*<&j0`2H2?p1(JsSf4zl?F0}RUl_c4A0$H9Jv|6m#v7szn};=|$u zM8o0*79SuQ6c@-C6hDyi>-+!h46pxhW4QZ&8^ihk+ZdjJ>zAzz|Nq1A7KZ=-K^PP# zAPkEa7!8UK7zV`)2*ct96dy1QixUtHijTSM|Nm#p{r?}Q{QrNf%DMkBDrAp4{$Ik7 z{(lL>ZAmhu1pF2Vo* zla&7dPf-5f3ta=d`zVgdXA|AjLD|0gMf@bCW#%2odpl=0Sq$mIbt`~NBi zx&Nyej>Fr=pz;hKB7R*dZju&ik0?IS1SpWZT75)D|L*f7bG{yh_)0DpbPgSb_pQ6M`OgN*f`M;il z=0*V(92E_vmgW>^(VR3;>gW>{)LGgneA0Rd?PCzs$ zPIfT<|38oW|NnaN|Nk=;AYq@O@cVzd;)4I_ijcz|$?*LD%?y_RH!)oQPpEzY#R&-4 zivIuaukruCpT@@jz8XZ=xA>g)e;vQr|Ksfc|DRy{|Nl4$v;O~ooaH}CoPgp594AQe z0*ePw9KqP2cmT0MGz`Py1VrPD6Hxqs;sg{QAiS0N|NjNt|Npm({{LSf`~QEo!vFu- z^8f#5DSZ8(r7-J%rXtz%VE?x=i2UEmF#G=&hQHu;7^pl0)hjRziVqkD)iI#D9u)Qg z>Y(sH@ZV1Zqn(W}j0ws8Kgjpv|0(YO|4(uK|9_J6|NoO5|NozW#tDo*4vm*%ERei% zj0uuoK=A^?pm+e`9W4L;Z({rZe>>~{|9hDK|KHE}AESN&#RUk1`TzfO6;A%oQ7HJItw8oz)&Cs~9RIg76#d`M z@E+XP2h}Se460XPG>8qtpf~~HO^pBlS4e=yP5=K7R6q1TK!dDy6}~w5ze(ic|1*OB z|DP84|Nk`K|Np0XA@~%}e|Wr{LXH<`+`!@llwUyQ7YJ`-cllo6ibj zWd8rJmj3_0PV)c%TB-m4>m(rITQ2kef2qv>|0S~j|Cd1NBDw$n3!%6`?&be{xefpG z0$t&V>KOwpQyBXO2?_x;#zl-4!o_;=R+ZYrd8=3z9FOdHKKSb^S|6ujK|AW-2 zn(krl{=Z1F{Qp_;|Nqa5{r`Vf^#A`eBLDxN5&r-GjL`r8r;+1@@BjZ(y#N2h;^ib# zegWl~li+x{^#3?3JdOUZl9vBpCGGaVN;>ajp6Q2u`p!&8ENd{8}uT<5Q5{r^8h z4mNJO_J4>P(PQDHy7_;n1pohCGJpP`lllMuob>+|C5{)&+n1y50Lu*2N)RtA7HTizn@{z|NRW#{=@1O zSlt4nL3IoWgX()^465@%b$z_@|NjwcpmEbl|HH^1HwC$g82o>R^xFStmH+=gulWD} zd4>P~&&mJ)e@^cI|8uhcQR3wsEM7qQ1r#TsyaK|YyaK|Y`~r@bzyDA3&HsOjN1Yh^ zDN*zP5Cil7Lk#x+4>I)sKgjR^+@A#1FCYx7^FcHyE?^iG56Bo47rPn%|L+urjN3)3 z{{A1ST0n`rNYVShQ$qd!N`=4wFKGP#e?k5K{|jpW|DRX=|NlHFPC!`k|NnCe|Nozd z#S1jAfb$C|P9*;SKP&P7{~3%j?C<~6g4_O|7Kr(OnxE`3U}V4iKg!7Q|0sj`|04_~ z|Bo1MAT|ht;sb<1@d2VYvi|>HDEt3^j0!0HU;U3% zaYVM09_;^J5>x+gSNs3}g6{wS7j*vrzo`BH{{^l8|1W6%hr|mgPC!`Y|NrwKtOUs~ zu)J~}DX*N9`u`uCS3vOsEx*o+{QZAc|0!+|*8P8q%lQ8(PKW;|IfMV7;K==dg1zhi3AQ!=kF#F;f1KqvxQz^Ji-Ft6 zp!OJ2`xw*~gT)0p4T=jG2F1l}KG4_&Xv_{2{zw1EsF1zZg_3ys-z6dNzgzOb|D9U@ z|6erz|No*P6zl*0e^KxM|BJf+|6kPk|NjCsUM_<2ipKx{=hY#3<$}up{}(`c1sX5# zyaFo6K>0-mscr$q3#bf(=9jb3G7MDbgXj0Y;iJG;Q#*wCD54N@BeWsb^l{k26VmD|4s?h|6LM4|8La#|NoN3|NocF{{O#Z z`v3n$lmGuOf#Spn8Yc$-|6hd03n;%J#|v^9b^%m|f$|D0UXbb*^!x&@^O52O)DAlf zt@A#C{{R2;pu7St$3X2cP&o#U7o@xbiWgY>7?fAQ{TBZJ|4)JX zE+7obD?E_A0`9kf;sw+;X8#ZG>x1$OsQfCDJNZ9RY0#||`QIrK^1oB^+y6f4|Npn> z|Nno<4vKC6|G#YW|NmuBoPe;^|NoaQ{{O!SiW3kv`~UwUG{0b!VX*uHixXJg0;=yp zSoQyZP=3K$hJoS)gpu3F$azKd|9|8%43uAB@dEBsLgNIKUy%Fxd%0&}OM`lRR*52{-(g7OLogW?2~S3nq)S3qSLD4!s=kwI|+ zs#~Q0|A*z3bFg>;wU0pU|LgSr|33o?d*}cEFN3ht|Nobr{{O!Mjh9RI|Nn#VWl+4>K;i{nh9Skv zMQC0D$BD`R|KNB5)%l=!f#nrgTMU#}Kp0f#!{P&92>tqhMxf^ZX@0WCu(5?3wZ;B-N;v%QkU00hL-POscFF%>dY1D4|C^2f|3B^c z|Nj+ND0cb(|BCbf|5u=Kf;F!|;{{ZXf#T&ddVWEw^TA~pD6c@{K9OcIcoI({}$c< z{}-tL|KF?h|9_eM|NkiCcJh!hyalTN|DOTn6%dBz7f^o^)J8rJs`Hf~{YhBg1w8fw zE5{`N|34%7>HiUlv;Q|rZT#OSOK@EYrD02|{{I~kdjH!cI{&vz-v8ew35^HI|NmPh z|Nn21`2W9M`v3na%K!f_)cXH_mHz+#n@#@z-(&gz|6$wz|4%sl|9{f{|NnE2|Nmcf zg5a|b|Noz|{r~^C&Hw+0E&u=DW%mF72E+gVm+JoiKU?$v|9+MK|7+zSW2R-Gu~X2v zsqFv%#j>FA|Ng&7ZvX#6*}4A<<+l9Km-`DIzb;ew|9_6!|Nn=yA^jF?{Yg-L5AI8X z>K0JEK=TWz?{Z4^|Nj{Z-~Oj536mN=^iu!7LxS;tyM*cgHi^prZ4x{Gw@H2h$3d&a z|NqUB2;3z3|9>M0Oa1@fAoc%$Jrvi0#-yeH|F4DO8Y#$lHE7JbO8P%|{JK*5|Njb^ z|NqOS|NjSteVOd{|E01g{+G&3{$C>N|G!ukWnB1wft=z00=eDbH~`Hb3@^thyUnt0E-8B97sXp0TBmZ{#Q$1 z|6e7&?SG}rr2iE%N&m}b^#7O35Y!j@e*GU=wuanmPUn8yfzeb9i96PY-`JXS(^gmBd_kW&z`2Spm`u{l!Oa5oe zZ~vbqf8c+X!jbs^e+=>;82B|Nmj&{}0m0z`*$b1A{!2&Hn!ZoGt&qfx-Si z$RY-Y`hN@z^$<2Qi24sA3>fVHKVV=4vq63Ux#<5NkXt~q{Qp60hW{X!$b&ouv6#Ug ziCzEyKg`jL-~fTB0S7qL(cr**fFuraGy?-j{U3-p1IYG&P&Tq=FdL+Sxq$&}5Xd(B z2Mpkt0EO-UA0YRDj2fv}gMonobO7c81_lO32FTGB2hyQoIZBO&z-S1JhQMeDjE2By z2#kinXb6mkz-S1JhQMeDjE2By2#kinXb6mkz-S1JhQMeDjD`RWL*T!UBK-VL8d@`K zjsBk?Idj;0j>aDQ-@qsTKTq@~jjb8B#{aM9Tk=0z=FYJ7APqhCzk$#2e*@pY|2~S) z*-#o~&Ay)o3b87x?=KAr! ziR=IWI-dXk_4PVQ&_1G-{%>Jt{NKuP;C~Cp|NkwV|Np0m{r|6{Z#SX?g#^$4Z)MB< z-^%v?e=9o#yQ#eYuWLY+dud2;#(*gOpCQgmiN*ihS=9cwvwZ#E&iWsWtGNIFH`E`r z{kH$p7`XpWW3c)^l_B8&R0f~_Qy9pqe`41%;m#C2>M+z5i!2NdBM6Q2T!-!|DIi8GeKBVu##WeE9z~20l{l`#*tE=6^fe zt^f7h|NnbyT9c|Drv867WBdPZ#{Uq^^#6Y=>;L~2y4PUx15N**!yx{D4)_lBpZ{kw z{0C#u9qJIg<^N0ulFo_!KZSwue?N2P|A|b${!d`~|36ZRY`^~RX9)P;$N2AmALIZ3 zy-=Je@&CW6Ug|)H8_53u^BE%k&u4fGz5^X}Pb~<8?yUvgQ#*&@(Em9MY#?>S;{Veb zwEjbdm6+4|2Yz%JFvWo)sGDRPh?R0KY`)H|A`F$!FU40|NmXg|Nq-+zxr>g zM^c<3n@bJ$|3wVU{}(Y#_`itZKlmQ=g-A5yzS-OV=QD^BYuEo-48s3sF--kGgW)gy z&g^==|NjFt_7Q6avbz718ASh2X1M%+62t%hlNtVlX%IU_0+e@&y89N{JZiH4FJoZ- zzm#Fwf8={g7c=}vx;ysI|3wVO#Mt?NE(6#9xeSH>=P39CT}F(5h*9%@CBv-$pgTrE z7<9)d3@>B&4-L~Lgv|NBkU`-8LWc7H3mIO4?@I>VjSRz6SpWZzQvUxxSS^i^Iq35L zXE3n+pTV#boc|$p*Z=>Zasb4RlKcPPS~m|}4~+kRJA=^wZ49aZw=qlrac7zW)F3c{d!LP6mP!9lp}`M;Dw_x}=x$^VxyeEAQ$TNjpY zVdcO~*8l$#6hQZI&B0{`F7f}f8QA{MW?1(hQg8hS(=!?VgUf?D-v9sYbguum)xmn7 z`u`maf&aHN{{9cT6AXkwcYng}W8Kd16da!07|j1~V<79UTacUouV*m%znx zcQADS-_GFqe>(%wZTkP4894uMV7UGtbU!2rgYJj~Vc4C}p!+&ucrC-W|7#ii|F2kU{YO0)_)9 zXf??QQX`t{##*nc6`+q0H&Hpc7by5kY~-c1l2`R+|v*n+|p z7QV1>1<{~;YGG*=M1#_6rvT_aAJAP&7yn1A5M5`3!sGuE28I7i7_PwUE>L*@Dhogu z)F!AA{QuuY>*arEZM<>v{{Vx`|GkVKz;~R3?$`o_Ba8;IK^Q$uL1Bv-rvKq(04U9Z z$^j6Dl?9-C8etf8Zzc$X!W4u-VF{x_Y(n9>iV1SpX1ogM4*7lmW0gsohyA~t!Sw%f zhUYl%E}y{p|G$UkzyGdUIP)zi4q*8I0Y=sT`^TlvY6) z6rRW!Ib1>Eiz{3~VG6>?VLFTZ|Nl(6|Nj$}L3hAU`X8^1wOoh!4W0hKiXrL$Du%D% zyT@VW0Eh;a1t2_^_5c4sRZ#eKqwB@T|G$ex`~N%__rD=y zSh#}16T}A5AdD+qv4t%xd_iFf!l3Yk(Xem@(JNU0|F4mN+#{Z>^!k6263)6Bn?L`r zW8nF}j$z4vP&oj@uyO!Y7J%>~W=Q+TQ*+mU4^5KCr~Yr?%>EC$vkG)y73dBz5C(-K zItGO&2!p~DhOvb!C`>^Z6s9l?3R_S(qGMQj01Ho0dIg2!YPSFXTR``KgU@aM_diu> z;r|pRacp6POYHwf2IK!58Ls~am8&oeDrZ3$RJMZfa;E?PljQ&Z_tCul-&>O(ms$A4 z|8L{wM!8!WbO#vh{$gUo6cnx?3=3BfjV)|p;R&KaVG6^baNWuH|NngM|Nra6LH9`i z|DUM{x_@l<|8zx??jHNUg@Nb)R)z`xw=n$v4=Mvd7*@7|Xi%L6!l3drMFDhQ_v8P* z8Z!98h>+a>1H9i5cSCdh{|~wA_Wys_9mL=;1>K_#x`z;iLHDSm-Ft_eZb4xQ!=SJP zu|YI)nC@fz|9?H(|NnD%|Nn0j`~SZHdKYxI{ICDn^2`5cDUf_O!~Y!&{{Oc#JjS^H z8B}k*`)lYB3Lir9|F;QWf#3af3UvPy=)PLeom_bC6a?Mt z48owWUBY|d|1`mO|7QsP|391m|Npss|Nk%K{r`V4&;S2Rx&Qy4&kGTsDhRnlyHNsi zw=?KYP0*dr`SRcY=gIHL%yFGeE%FMy>fu( zrT*7QYyGd5O8Z|WJ>`Fu^p5`((wF|1%RKvEF7xhxnasQYr80N_m&jiDUo5--f3e(@ z|3z}?{|jZU{};+}lImuV`v3bFT>kH4*zq4$4uEJ-SpdSYvK2&w!W4uTae~@D|Nn=o zJ@_B24%#jaGKOOOze7Us|3SIGsCW9p?pa2i<*R z+!Q;8fC2vxG6?-Y$WZYAAj4&F`xRCuV5_r0;R(W^@SG^{|9_Oq|Nr4?7ygH;NfNMz zWa-OCHVvj^$E9{63!p!>!^7!3_rp5@xsbf7!4|4VHi0~w=w_!UnKzvyGYed|07h1?uU{Ri2pk!H2<$t z`S%}mk1Ob|J@9=n-$e-y*LVNViY@$q zRwU&ASz(gm`u|CGf&VAiZ2li-&G>(uW#0c|EVuuI%2;@t090>5@6ttYV}baf@Py$- z+>kqKVpRVAk5;MwAEiq6cnC3J`M*n||NnN-eMPXlSV4E?fv_Ir-eT}QtRQ)$a0TD{ z1-f4fgh6Q*6t19qq(S%N$^QR;7MxyR{XZ*t_WxP&t^d!8&HsN^bmsrF!ZZJ$5nlfP zjNq#OX9RZtKf{0J|7pJW|H0)eTHSSmt{!Ll{~s2vpf>DLP}oB8Btb|& zIZoy2|5#-gV*F33n*UuAod3I|F8tr5jdY(X=)OD9U4)=J2w~w0z3&cuk1FiGJJ9`u zAPh>cpnIS}_jMxQ3keNZ@ExkK^a?5mV0YY!{r?XxUvbo3u={M$@92buE3B;ry32MG z7o@Kjue|Diyb4|K2m9Y8A@jde;?e)bYXASA1KsZkyL%JF2Hja_0S#Nwy_?8)p(5QQ z2)a8MbZ;=I9Dv`s2?|%xU3H*x02Z#G^a{EY4U}F%cRE7D6?A_fxGVtO8wkH&`~QFV zy|e=V|HJRuL~3in?mpcBy7O8om(uh^uKxdB5{myjC9eOUAcNyxQ#;6=rm#C2LH9IX z0^OYn!k};krCHPe|3Pgk2t6t0AZwX1(gLywf_I# zqW1s)Nl=)AFf?4j_alPRD=1t+X%^Zh0N+_D{rUen$=d&CCBz0O_`ufw@08&A-yu=; zzfgyzCrW<|IdK##|7O7ii|* z{Q7@h?%4k`aufgWmCg9SKu#9yF*+0fJ0;lucSuD1?~vH^zg^lo z{{KHy_5c6ny8r)gH2(j8x8?u;hiw1-zIVCf2-v0|1HROa!UP&-wD|uiF7BY^#A{L(*OS>?t%RO zA9NRIrOf~T@Vhu=e*Z6*IrqO*cIy99naKYovhaD1|An%g{|n?Q|L4oS2H*P#x_`4p z_5c5wTL1sA)cgN`yTSkedkz2pKWzB_{{j8~|99*D|G!TA|Noil|NmF2eE*-M6o=1W z110yrO@jS@tEAEY7Rk8(Es_oYTO=3!Z<5^hze)1+|0b#P{~M(4{%??a{J&o6+5bAJ zyZ>vYuKll(I`O|odei@E=~@4)q^ti|$wdCIkT&>VAwzIJ@_&IG_y2skxc_Bzb>C;hj%!~n7o6jlukpqtm5CV?V+p_i4SaI{>-m2C4^%jeMS8>w{cqq~ z48F(0R-<{u2L@UI{BPtn{olywyI|LF{F|EDp;|DVc`@P8^9=k8bYdj2mIx=fDS{&zCV{qJCY|G$IzKNuJB|Nn2K zUqg;r)Y9{RHUsznSqv%vXEGf7KNIPE^63mK|4#?4k|55e|C1S5{N^V*B6Cbo75W)BpcnP#mE6`@e}EN#_Y6Or(tUe;xzl|G5k?|K~D12cIHHRAN|1V?^{lAD|5BO|+(0TYE3_D+Z9>d1}^N0(Z|1%f_{!e9`^nV)TU+{ex zptee&`ZQAA_ZF~+JB7jg|73=*;CljK zcLmgO{r_*JyNOc2lB)mz3I>(`D;S>shn*1)qG4x*L+%T3!e{3H1q`hJ=QAY!pT}_T zKPbJy&aj@&{QrNP;{X4_>i+ojqs#rD&Y=5$8p9j#8TO$20AScp`QLvV9V2x0ApZXy z49x$xGnoC~&Jg;48-vsTtqc+%aZ2(3H4Oa!S2NrKp9Ky&0~~}wXa0gP=*-{c47YLF z@qY<}*#9LA75^7AJO$rb0Xv@>bVl_YrvLxbi=?vU*I%{n%4gRpUeFJf4Us# zO#0pb!&Hec&*v~0{h!0|8eA`c>H|>z1ks>8>ZbYizr7CD^IHDzW%vX>dlGa$A`FAh zn*?Fdd6PRC{`}v`u>b!~hNAyF7z{ya4cSk)*#9>(ME-}JH4CHB&+uK#@ZtYDhT#8e z7}EZ)VOaTp4Z|mJS_7Sl48pMV21;unJeT$V|1^dF|D#mT{*P28`mEpo3mEMFFJSlp z&Y!S63a&dD|NoCv`2XKYyAY>8_A(vHj_^<^Ow`zJkx(gq;rwJ7*I_!_L}- z(V*}GVNjUCFmkw|haI+X1BDp~gTf4ik;4oYZu2?*|Ie5G|369T@Bc)lrvLHEM9sJS zU(F!!e>KDU|DgN{!l3#9gh6#D2v1`NohkkAzlT;Ba+u;{|KG-;`hP$3@Bgs#wn5

wu<%t|9WxAxt%FWm;NU! znc;IgvfTf53?~2AG28>+Spv$RAPmc+pnN)y?f?G}RnYxtt;qU_VgKLEz574tyk`)G zpGOKhM;m$;Df0Q**uo4JUf9wZDEyGa3>0243<@t0UdHkNf3w*C|C!)3g+BjJQ>^)) zsz~shB9PzyZ)V{5zlovg|3-$N;5$h`0c*bA*Z%(p=YHvL|H0>m zO8ozS7J6{`e{gy`$@%~PNsfg7HB##TtEDskS4q$QUnPC` zf2GWe|K&1Y|Ch`B|6dBivj6{=$b9-=EPMHXk?e~9g>qH@3*@~17swM;C&AsgmqF|Q zUWU2<_b~kakDf=->(N;}|Nlp-{Qn=KzVd&t8d>QEW-o~Tze;x7|MN=!|DOY$xe7XO z6?%Rp_`Fq6n1Rk)75)GJ4D1YBP z4E+BOFvS1g&#>$N0fv9zHU}t=g32@y2Gs!|3=1z%ICTmC{~xXjIuE?}f0!Ckbss1U z@Zta6lB)j?fX<}^ov#QwOA&MqFzl>aP?*X8{|`F<7j$OzIqHcdUTQGZ+SyWgs?)24PT`ZDINUzg!B`&i?s7 zQZ)mgf60;iKSgHC|C69I5Pk~Iql-{6c(4Lcg z_W!KJjQ?lF!v3ETRsDZf1m}G=|4(wU{6EPl^Zx{g-TxD8Y5$M2PW^wJ<^2C+%zq(g zPs8d^EcF3;J-UGB|Nm44P&@nS|7aDO+~@kgQ$peYO!+VW&w|cIHvj)0e%>t78Iu=4 zXLo|mmjsec^q5_kWf6}$WYtmxhU zXG9+VKO^++{~6F737|a6_y0evJ~#=xcLH=b0;nEkL%YiZdWQ$7-UMM#IDzh#h*$pq zKVD_a|5(!QwIVeg{qK?p{XbRi-~Z#FvyN^4{|BFg3_DvIBnCRK8x($^^SWW@a_avF zpDhnN108hUDfp~YSRRF)AqxsKq_hUA4?ySgo&n`iSh)rYGgv(estcfXDD3=b@R{65 z;dYD#beGHb|B1?(|KpW0%0N>6PmKEiT@so9d!+yU-)!*z|7Fnm#-Q_f?f?J33_33s zb|yE{`No%^XGUK%`Trk$W;86^KzS8(#yN6Y1C?>GbGSj_21;w7FaxKx|NqhJgR{_Z z1GhgwX^kIo7spAi|KPi0ri;>jPVaxGM9BY6$uIw>D*XSy3*>*$nY%9k|6hikw+jk0 zP}tf3|9=S@ZlJVw87-}W&e;Zq+eJ_wg_djJv*AH`6jZK(@+kDoV$d1e@H`4jYtV25 zodbOqRF5K`1uyjfKln^-{)_)l@lsSz5|eJw)%@?2Q2yU3aR7Xd_9VIg|JNHp&eH{* z|9k~{p6+F6n1RpL2Axw34YSLj^aeXm8+7h7?969S9tGu35Jtfyy;#S_9VypfHp9{~sJ?ptG|}gRQme=b5axjpOuLGzh8o` zXN>>vl(7HbE;0XqyX3q7ZIb`NxI_B?|0zoU|1Z}5|9`#F|NlG8{{KH{^Z)+|hyVXU z=Qdveg%c>upl3Iqw*UYCs0}2~ZZQ7;f2rR8|5HKXp#V9vxdhbKmWA{|3gzzpFOa(i zKC`)58FH5J8BkpSE!RM4?E);1BA08*|Noy>{QrNJ!ee@*A9OqZw@a}7ZNy>ChKj`5EbrH=k@ zlDZ8&clq7_da2+4Yo&htua$oHzef80|7z(I|Er`|{I8Pk_+KHN_P;{L;D5Oc3(QP( z`hTGu{;S2oCS#_650Sd!W5jUm?6iRg4yhlBTT{Pmhyv- zFl7LrTWSwJ!W43DY5f7vai(B4BjgBEFq<86gee2a|Mou^_(A83eqdmq|Nj7kJcP~o z{~zS|P|&%h@(rLQ!T>(E6m+U4=x9*rxuwitHYh$A7{Et~f{s#UV1OJ+3O%b7q6T_a zDd<>K2GB92;PXsDVGGji06s32;s5^!49p+EN0@@b3KYCx^C1jSh=Cje<$?49MMBWDj#;r{x|R?{!f*-KI}Y3gopk&@NxgI z=X>!#SpGN>%7>kj{|$T%;B)@$)H{Zq=LmS{e*>TN{|3IV|0@K4{Z}!xCZK%SN&j!; zS^d9}_y7Mm>EHj=3~}zQ8g?EBjaN5ud;M?X{trHj&sF8raP%WCKmBjv;QQag@eq8@ zUKQ`Z|GN6QxYQ1I@&6fO9HhGOe=FNO_&Iv9Qh)#J=#zau45@Y_tN%ZhLFoTf2Jin< z81nv4VJP}Ph4^#f{XZ)f=r#-MZZY&GfH?)g89f${%L zhT#7*7!LfO!2mgb3v|BEG={GK(;0|bNB_Tr&GUa3%a{LIVlV%DY7(Uf6z>1Km=ykZ zF}($!^VZ4y|9_Uy|Nn-1M4w*)GJ_KQe;$MG|G5mOz~}eOVfgt<3YNiwGp8tJ}9RGV6&;IXa{13*U^X^>KpZzz|$GH!JShI;y z_kR&X%>RW9KfvenfX5TvXC(8f*AD~YBc_mXAy1{7%bPgK`_cQ(f z@2c_Qzl9#wvh)8|29Ez*7q=>?Wn<}m*MpDF$Sf3O-+`2}qMbcQN$nwiG%AAa6ix;W?@x>S%n zGXB4X$>jeg<~#qlGyDagL$RIVkfu!>rK<55m$DsXxHN%hp$Y;ZV z&e8#4&{;Yw84N+{VEF$s2L1m_8T$S&Wq1isE3ou3pYi|yTq)3bYU}=os1sG@{h!59 z13pJ>CiEON5Z%V{|G$IIrT;cM80S6x-^KXhKj;h?5C)x{0K=g3ICe06`@e%><^Syr z(f_wINWt8Ui~hfnf$jf##w-6p=fA+tegU1I2Ew58azJ@<1cqU0Wg*l5|2Z=M|3|9s{~xYK@NAL)^BEZb&tvHN4?6z~gh6F32v2AF|KDHr z?|%nvtb6+Z?_xUqANd>!vyV5cq!^ zgUkP|;IqGG{zpFJ1$NF0@_ApNZ~@}2W=wGI6KH7`hPdm8}M0ZuyZ0nXGMT8u5bZ` z2?&GI3haz3NP7AIAN>p$&^az33=0>~nKvK|3KI|pr4zl`A!{46if8D1a^%0pE`|NpycUHb2=jkCN3h0Fgv%+mjNGk*e~ z7X&*a2>I*`P`H3FEKES*0>b#x3MgzqVFC&t5Dmhhb8SEv6doW93KJM!$npPwk<9=9 ziOS#pCn)EE+(iigU&Ubie-*A4!e}n;oLFYbzFf2SkG$>3!7!(#D37y+M8> z7XRPN`T0M}nNm#u{~v>%9Rdm$Po6eb`H3KJLxg$D?O!Uhx`FboQlZA}0F z&*l05zfJ;j=2nK{mH%mqA^+2q2$u2xH#1oL-^_3kd`MeACGowIfY=JQBj1b2E|93M(@II#h;B#m|;e#A5yO{p} z-^BX=|5C31|ECK4|KA|~|9_r5=uEBe|Fh-S{m)Wx|DUNq*x%b3B>!(`m=3O|L3s#- zk@FC!tewIA|9`03zyJOkMCBitzhU(M)e=4b&xrp24?fcZbiNVVIUu03Q%-@;g!=#g zB=iiBt(-ystEJNZS4%JbUnza@f0gu)|Fu&8|5t*}g^~fC3kBJ$UL^PSf1%v5{{?ar z|L4mE{?C=?gV~FZ{=bJo=KmgsN&j~nv$A+z{y)Wqva;@frL^Gx3K_ZoWim?tOJ&9W zm&oERf3dmg{{aT;|N9x{|KHE>6I?%o@(~Dw@(&Dy%9Wjr|Nl3Nf&BjMf2ev8HnT_( z`@cl~#DCCvI~S18r2w6|13J$GbS?$xY$wV8|Idp5{|`Dh<}CR9lYjru2(J2nn%|rh zyO7oXKf=KI|1g8&|3eJD{|_mAAN>zkGeI_wT=xGi z3H$%+RR90K2s*zBbdG|~|Nrna6hP-tfWifI?iJ{~4p5jNrxkFx-2Z=8bmspvBB}q+ z2-*KXBdGQNG{40E(|m&ePw~kAKgq51{}h+`{}UYk|4*;G}q6aSB~`~;ub z1S)TjLd#rGS%QpV3U;;x=o}N|w1S+6KxdeM&QAm7AHq(iU}xWe z&cA`4;Q~4@=o0J<7f_gh&KUx!g`RtJ0Td?4c?c9H>i_?vpA!T=Hx8OsK;d!@lvdEr zq=KJM$n*dI0p7>|PjM184nnT~LHho8ONjmNl-TpXL*oDcsfz#qZ#DV<|AO=X|5rd~ zwtz6`EG49Kl)&dtfzHGMr4>-PSU~a+=$tdqIZBt%&QOA%&jJb;P#%JnD|qq{IIW2M z|9@I&%l|V1G{3Lmf0qQ)|4xa_|D6)A!Qs#){r~?0b;vn3XPo~32cMM$J--GNE|)>! z14=7M;Q~JQhd>_MulxW1QuY7;yOjR_Z&UpLe={gNK;feL|NjN#Z~>LKpn3>=KGK)} zXC>zUKO+|N|Ews%b~7kW$;JP>B>4Y#N|gWakaz?+2MKz<&jk7Z|L1A^|G&oI|Nm`f z|Nrl|{{R1k{r~@Go&Ntn=k)*oCD;G|FF5`Gf7apu{}VR<{~xsY|9`vb|NpD?|Noz> z_5XjD%K!i6&@+9CWdHv!l>G}i(?|Z_|8|xC|F>xW|9>8uhc1H7@&SbjG!I<>mA9aJ zNa6qgqjG=#_b618>px=k{qGcK`riRM=SXtW|2Bzh|Jx+~|8JH2k8*xbqtyTZjgruF zd!+vV$2hk~2GTwRo!JAzWip@sm&k7UUo4yRzer97?v0K|G!%e z5?(8`|Nmd7^Z)-kt^fa5Y5xB|SN;G0W|e>cGnA+QPf*4f-vOCLOZ>lGQv83LgxCL8 z$?E?tk_-PgOCA89%hM?N?tg>S*Z=iW|NqxX|ACy#BlYxujnt|CRWhspS4#K%uar*u zUoNBnzf1Hg1?um7Jbzwv*z{H_043h(}BD!l)nuJH7Ky5iygsY+e{QBmvCM?+vV1V%$(Gz3ONU^E0qLtr!nMnhmU1V%$(Gz5lz2*A%RpfBSe)Ve=t^baT> zMt^|vVe~^N{~(zD{U1bssDJ#w`Tzg_4fTirGynhppYcEYKj#1c|1tkz|HJi0m!~YNL4DuiN8RQ=@FxVdeA9=x04?W`IKZ8B!yaeWd4E3P1EZBcA zfRByf|G)^Q?GG@6XvY5x?EfDySlItz;Q#*td_9N!f6!SL3=HRZ{YL)pDBKo-u4cJeg7NySpV1a-T5CTcVZyyr?;K|8~F0U=KwgXcGKH#dfWHE zkw^G{BhTCal>$HiYZwgs5uX1|-1ESD-4mpK|JO1Y*8BYbw{Y73Z|3|5-rMe>GOY9N z|28(B|E=tI{d$`zJ*uwt#^>(;(;3YEPiL6$e;UKZ|I--0{-4Tl>;F{Z_Ur#|;7a`8%=z_yfEv+d z&HpYYpZ{G<|G<0ILHqS>H8Hm~Md61L(YhR-XU=L)4bw)PN-Me<}mp|0xW6!RcW#!+-D|^i=TP zYj-4NRA>HQ!O#xgZ@!G-KYTAJh`oei12)V4FJxf)zmOsD|9r-i;IshRD+@{seH{P) zN2omfAEG9VO&_w@{}~L-|7S3)0H+7g83ofA{{Qb_|Nq}ndq1)|5c~f|W}W}*SkC_6 z%J|{`R)**Qw=x|5zm=i%{}u*0kUS~)|5}E)|En1wdxk;#g<%-9|8pfnKC)T=modoy zU&>JXe<{N~a9V)vjRmENNgV(G$0~pOAFf7lFU9{k46Og>Ff0S72~ha}!l1q7;R?V1 z+v|X)(U7fW_`iek9elqUY|kfXpBiYN{dR@}|F<&~{olr*|9>k3-u)~8H!{foU(fjM zKWJ|wXumXwM&9qahGFaf)eO%6S20xoU&V0h|0;%mD0|95dtpI%BG>=_aZ11cN2>av zI1~%#{{jZi{|gv4fYSviO@J_HPkEUzXfJg;7A*|_cQPIQ58C4i+nWZWLHpA{7`9&z z6b?HXKL6jraP-@g5`{DjCWf1+pnBmxe(0*wU2Biy7Inl%Q|G$Uk z-T%(oSofd*Kgb~Pe;4y>@V;@-el!pU?MVZL0Stq}0EA&-015{X289D??=Ogkq>2Ck zLHjvD7__GohGBc7L3=wvVF1FgZ~*OlUCR3Zf0@+({|U;k{>Q7>VT%`JvHvR=bpEek zxbq*B9zYmWJ}hPU|9>va|NlX%zy7;v;oU>`e;2dF|6RIe|Nqk!|Nl=?-upjE32$8m^7H?-3<>|& zFnoodD*#IyOPT)vk5>Tg4JWGI_Fn@AdDOi zu&@Ay0Stq}VGGm$|5N$?|1XsJ|36Lf_5W1GwEroJ_{)b)3?lzGGAsd~IRQ!&APmYE zAiSFK|Njix|Nnh7r-H(SSp5G8+duH$yW^m}&L9lkcZa?Q99uYm{0|BX5Dg0h5Df|g z5Z=c8|Nlbn|NlEh{)6{+WXZqypQ%v$KSKfU*(?9IF);q$#t{F18^i1Wpfmx>8=!mv z!k~Pymg)chY#C6SWa)oD4V?Qau!X_@-2$)wpW^xdAGE(2wg(ZmzZrc$JZNv`Dz3Z# z7xMo4zl8h$|K;5O|F7cw|9>Ut|NqOm{{LUh^Z)-${{R1bh5!Grm-zp`K<@wl0{PGX z^W@h4&y^4RpCeEBOov?z*8g`g9QqGR6QFzn!mzvnqSrD1|DP%M|9_DBs{er+B=>Fq zuM=PM|14;K9cV8mXrH&h|NpT4b?E!wPlEQqv$g!Mk>dDYE$#HbN;>aOW6VZrzR|7qT}|4;EiFHV7(L^}Qd5QEnLLkxBQ4i<@5h&m0*1SAXe^wr-ao1rOIFaUo?d5-M*;z|NjNhK4tCy|1Tiz z$A#}}2ko&0g#{=aKzj+n``X|9KP!Ie|5>p;|Idi*_My;(e_}Y?Kg&{iA%6F z0S$*spuOp!ykY$R{~_pp<9_A;|7WTE|9={kFF+WSH(>krp=sir{Qv*wWuN^&C*AV@ ztfa&Lvl86I`h!$;|2rjw{&z@}{%@DK0NH0O_5c4ArT_mIYyJPf!RY`0-4_4ka?^U#Ro{f1m3A|5ftPGgxH5 z{x6a{{=ZP}(f z|NpPm{r`WN_W%DgHUIx_Qv38jRVj&7w^Kv?{}u_h|1FY=|63$&|2Ij7{BM+s|KA{) z_P<^Vgj4?4N`?Nfk@EasBd!0xN*Z*HA6{$!7sxUG&zCp;pC_O9KUaSG|7-=&c|*JZ zXDY1ypRPFhf0|Pq1k^he*o<(<^RC`0krK? z{s8|6(0%Xq3}Bk^AA>xI&;NnJ{=)+X`~L?R>OXv7VE@6u`2PdMp#L90_r^1@|Nj8q zPs;!Q1L)dv5Fd2kI0M7~50L$&^&dbRPZdD?{|)Rv82{5coZ;q!Ccq6C7#I?e_K`NI zA|-%P=4c3vhQMeDjE2By2#kinXb6xI0{;W$>9+Qn4CfKl@;_Aq=RG6@H4m_Y{|$VK z|MNu84X`uFw*G%T-`fAtGDC82#Qz39>;DbB|NgtG_LCg|1EleP6F1BMCY}rbtNDNY z*U_i>93r*7`M;U76uhq{QS#e=Z3CLl^Aqd#|8cm_3r05Me=D2T|5mo|;Cmn4Ro5WP zQH%Y51_RIk=?o$Nr!lnupUN=l{}kMJyMgTdU&CYczewmPh>Z{b?_g&8-^qLid}m{! zz`y^7`u6zLlPdRrE(6d1ISg(8XES{G4_eDTi{b14Sqz@I%=tfsf$4u6N5}tO=0E?V z6uNM!gNgs|VVw5Ahw1& z>yANd@j-Yo!y;^M|39BW@Bd7uZQ#2jXEXf&Un%tef1r9GHnlLZ|5F*<{!d}}3Ep=x ziQ)f$f8_`NE%e}PX#a0!7W%)5x%U4KhEC|(a}}6gLiGPN3`+mkFuVfqJpipU2kkci z-P^XD0lvrS|565y|4SHx{x4$O3%-vGw4NMv7g>`4Xbs~8e0Kbw$>8~a2E*6?GZ_AZ zUp zuM>u?od>NE2CbW4!;toWHG|*(RSfg~uVnZH-#-9bBi<a9n}zotwb+|G%fkCUpP)-^qLmzGfb@<`INJYd=A2qCt2!!^i)-7>@nl$*}1E z4u$<@&82(|G@bPwDuo#=VG|x`~Obb80*acA7E*7(oj`u{&i?%)4-<+lH^%JB3H zb2EtkzmkFd|4N3b@O?j^JO#qpQh)!uY2n;&^nWM2@c;d+KmUW)GQ-wrBCq8}_7lio zApd|c$Uh(qiYE|8_ZP@NOE~`juM_|OKSk;0|0E@xdlLSyXHfsYj^PaW{xZ31{t|Ro%u%#E+(2tiK^WvG7zV`=2!s3t!W&ut z|DVbC|9_R_|Nj{ZcmAgts_|93I4{NKqC^M5D9EpQqH#T6*+ zf$(O=|Nko_KxONk{{ckavpG*%<^L(rx>3-2N#r%7p!K4lb>#y8|DWRf|Nk`4y8kCR z`TkeQNdB*sw)m2_Xl1h4O$lr_0u`f`cKeZG@{S{ zpAoM3f0~Fj(MK4V{~uw{`G15V>;GYfE&mTQe8<=?14?@!yqN3%|1^c)|07f}?qvnJ zj}ZRfDPj13llI^LpmmKGLF+pWA!}SOK-YDi2d&`)t!)L}5d!iPcwOtg|K}t&|351> z_x~B;N&n9XPXB+JfA;^=yqo@?;y(ZXBb<*dvoCHm_ciILF-j@{{O!SQU_bJtMvarWL@U} z|K~vKQ($p{KWkKe}>}L|MALH8Bh4%Dbe|VvOHwn zOL(f0upN=G31|DBSl|2rf;|DP!T|Nk2O|Nl=qK<@Ur3|ems@)Kx{E$r?mSUkbj zS|j-hwB{bPhV+E`|Nk45|Nq~u{Qv(sP@V$$3AUyhoTvW%KO;2n|7ihzkp0xa|2ril z|943A|8JN0^uJZ&|9{ZkJd2>~X7^bB|9{Nx|Npbj|Nox{t(ykX4*&n3wfq17h$UoQ z^%}kZ|7U9a|KFzc|9>%P-;Uhx{{`~z{!dZ;|Nj7N?L6pSB2b=Egrq;vK8oYg-~LaP zZJ~xAKxX{!kl^~?E*bW}O>+MKR>`~IyLFl*A$RJ4?$&|aDFeAz2YLM~_%0pU2mecD zm;Nu7i~e6IC-}cWj^}^Ae9Qk_`49iAl>YzkQTzXYhQ|N@b2a||pQiTzf0ye2|3%7& z{wFF6fb6CP{@*Go@V`aE;(xPb=>I0E?Eei?<^SuYYW~+rm;bMo%Kcw09s0jY#_WHk zj1VsS|L4oG|Id~8{-3Q-{Xa{7=KoBEng7!jtNy1d(sa)}F87RzkA}c#2#kinXb6mk zz-R~%9|Dl|Rp68G|Ns9_CHf!K92orv%7@WEp!^T0^!|q+{)c+|gCP3AAN#`~y77m7 zGl*t>P|wW3!2XY!;U8$nb`1l=AIOdy#vc%x`GGtGLjwZ?{{edjh64-?@(lH0x&}hC ze_;5}!0>?KKLazEW?*3d&%gj$&&B_rfdRChOa4Ct186-LNF21DixCta4Gaum`Uk@w zkT|u&3$#uPgaeS)X*oy{AAh4NM?+vV1V%$(Gz11N1pfOekTlLoZ^F|hrw z=G*c=M&1&az5ja|mHziKe)`|V{P(|;dM_?@#ESo)%Mkp3HsfpPTrg;Tg&{V*|NB^- z{`awd_@5_s2b(-d?EfSNuK$x5&V$d6%oF_m-$YLwBu)+np9#5;u^W8W8)#mBA;Z7_ z3m81m&H6u=LH_>~mfc|YH}L=aAE<7It_H;aKaGL;|1^fR|EDti|38W8-+wRFg&=Vd z{=b=l<^LuI^Z%O|oc?bl^32p_OzmiM?*~CH>2|J4jN|5q~J0?$Lk)jqMzx{|gz|{x4)$ z@gKA<0w~Oy0L`I4`VTonanb*641NE% zF?9Uj#P}Y5ZXjr07KB0bvLFnan+0L;dI!e;|67Fr|BqK${69toBhUO_!NB`}Il~_K z8JhE%|NjqFx$xgv8|6Hk{|6Yj{%>P>24Bknn$H8xC4=TCVHoCin7cved4VwU+&^gk z6}F~f5y$`k#nQk2Cn=TvPf*4<|LOla2A%(F8Lorp%-1md|G$#)|Nk`EkN@4Zu%6ZQ ze?6xP`0P5^+&*aj8#H$ZqCxZeAUDG>vfDxK24PURgWSG^^Z)-wanRiO_Wx;$n&1dR zBK~h-VE(^_A^-nohOhr&=drD4{Qo~s`saUNO(!I!7|j3sIe-2?!3sG)2{wNZn{NcU zdjtE||7$q@|6kAk|NmyT|NqyqL(W>8%lrR-kMRHhWiqe+=gH0dpCgaGjM>HD_e8_`gN;)c-R`b8nz?;=pGfasG$Qld?_x z-zuT@zgjx@f0cCR{|cG%|K&2-|4U^<{uj$?{4bQlXsi7{$iVUc07LNq{S1fygTfya z_8<&OHyc_0|Ie2D{69?14V!z=#s1HhviW}$c^)1#$0qUrKm1%XklO_={Xfm0{{IvY z#(EZzdH;_yv;05GWbpqOW6J*{jEnytX7~V4H=sBGr5O-j!1Moqs^b0skt!Hz0Avm> z{C}?OlK&?_^PHghPS8A>I^^7?3!wQr zL<{}zkzoGcEm8S@hQg2k+l>DIKM$H;24TDZ|1ZPNeL`~kCFB49FM-^y4><=7G$#u> z2kngd|NkdI^OvBo2e}=zEp+3f(3Q~!5LF#qq6F#X>y zk^R3-a^e3L$s_-pCGY%il6v>QLF(QAdZ{=6>!fb|uaQ3Zze;-E{|cGB|K&1P|4U_= z{};jY< zQ2P5vus!U@AA;zA{QaQL-~S(S{GbjV{|^iB!cN8y40539C%eB_{|=UL@SegbX_EKk{h!Yu z@_!c7N$|MvY=$@gXECTC+wp%gqtyR)j?@3^cz^u&)sR4z1F`@2GwS~DW&HfVo#p3$ zTTS?$y8oN7kKKdx!0`WN45I%RGQ9xbVFS6RBoZz+k3sVPRF;|lXEFZy-^c#{f0R-= zOb$l>pTZ#fe+t86@V>ZssYm}UbiwiSe*?=^@Hp@`#y9`BF--fvg~93nX4E~L|JO4x z{$Iv?1$>tVXpasEuVC=_zk(t5|01US|CccQ1&^su=J@|VUTO9JP}Dsn|7SC3{GY|} z;Qvg9|Nk3#{{OerhVKjdzlHTIcwYx>yb&_y`1}73hHL+~Gi?38ongiQtqj}2cRs+z z7D0QxKo~rp%kUq(AFqe+|NjJ~rT?Q;Q1-w4U(8_fe-XnQ@Ob$&*8l(gRTsd*1VsPe z&CLFP8|y2SJsPkvIna0<%w3>yP!NWVA;QLO7qkEWUm^MVf1(n~eIozYGBEyM&5-kd z6~hnknEoPW(7hwq{<~{In{6Q5A^87#z6t+9`z=7@Sjc0aps}}oO#lDyWBd;vXWqf| z|Nm#}f`)GBO$D#W= zz+-`+u{6-$2f;o6PxB@IKgDhG|0IX#|Kn_e|Bo|^{XfR2|Nkgs#Q(z#6aOD(xDSs* z(D*he4ncdm5|!5d4_764UibeVNv;2DHGclT0NSHr^#A__(6||B+zE6xy6XS`=N13| z2c3rwzAr)i|Nk?>|Nn!|fjV*(wM1jQkE&kW=L|7$q^{*PBCXvaJ6Lqs@pRP1|5*c#fj|C>2}{kPV{do~L;Gycy6pC1(be;Py1|7n}z-!D3gueYZ(*x(B|C?FQ|KG*<>;F#1YyWpL zRQ}(=poM<+%m0-unJDMItYJv}znUTV|5BzM|CclV0pA1K#S1#yr4eKo4F8|c!2EwM z!yNE9$0U}&|Gm|U;BwnoPyGk=uR!aEKp3=cWe>yW|GODa|KG*1;r~vCRsXj${`wDE zX9Mda!}{%@wODHz|Nn0i{{KH#1!bM#|K$wa|Ccdr1fL7Ekn#WjIQet`9kt zMuX7S{j&x3d2Kzk&V#|Ha(@ z|Mv<1|6d~e_J5{g&;K+<_&Cu2oeYA|bBBI|&$0pCYg#J#@xQNzF33IT`2Pw8^Z#d5 z|Np zFm(Mt!0-t?#sUhP&CHy;tTpau#sfsdA zfz9gwUE<3B7pZ^!e+IO+1$5p3bZyH;(4B6eezC#-{}(}hVAz=npfxPA(EA)gXO9T| z{}1kybN~N8RdnZbd~@A7ij(ezg+MC|KQ|3cM=|Lc?qj(LFm48#9BC3ya~OZxtAldSvS zDmn9iv*fD(4N|NA*GtX$Un5=nze*;F7?-~T!Cwf{2}YyPJzhW<}c z!g^*7OwTAi8Un*51fYFVSl<+x{_+3+e-H+pjSs>P{(ty<;QzzpE&mU*voJUC@h~vR z@Gvk~$TTn{*fcOU)Er=7_;Y}P@y`PWhCd$|7;64796&Y?g$?Sjf+`fyS^Kd5Y69nQ z3Dr@542BT+A0>meJwh$F{m&7bMJ=@9GcWu$iphD>n3C0up|Nc{hL z);<5XFkk$?ouTgkHU{ngTanzijK$^uYQ}%yd9{@cEB`NJu=ziaWy${qOh5n6VEz9; zRcf}Dogw-EG={(b%lW_jx77u=@&0dNI|rVRf%Oq~F@E{KgYoA7ZH!0%Z(;n3 zGM@+An=zH^|Nl(+Y5${CA#;<98JPYrWN7#gI^VRP{onrpwM4j`D}~tpALRV`AGBux zxjz8v3n2FcK<)npT>t;qi{JU5q6lB_|9>5W;{P=ad;Wvk{c~9V|BqFi1~VH*|KA~V z`9JuMaA=znbm#Lro(2D>2yOh|C%o@}v-qa}rLv9xbLB1nXDLA3yqiJs|4xSf|63V; zfcK-!=lK6WNnr}iOl121LS^s&CqegA>p<4SpHqOW!#*pr`u}PEl>aBWJpUhO^8w$l zeT1R!|6vAD-|HWIE^rF}pZ^I;>BwfHv;R+1nEQV>=+0o<|Nk$6?!g7EX$RQ}YRiMp z!S@$00JV=n`xAu!|3Aw2<^N{>RsVa%Q0CFm?EvxrcS?x; zZAO}qmY4(0kq<>nSp_s zouPq+pP_+4p5Xw4J;MP8eufVW{Ghv`FfgbcCc?nL0HR^-un9O%m>vG%JrsQSKTKAU zn(q9cAx5?JQ~z7oE&peTY$W8q|C1R+|4(9Y|349_zAh57_#Y_`S_TZ({=bKb>wi1T z-Tyuc`CtJY#Q)ih<^N|h{Q5tOAsVFQ|4ass{~er*{#OW|0r5fj|5OIX|C1S3{x9dd z|KCWD?f+u7mH$^TFZ{oT!TJAc2KZW*|H~Llz~hNa8J_%K%AosyHtY2N^O?T?Z{h#^ zKTK5?Y}R}R#{cseCjFny`0Ia=QVm#aEgPr}@*g}Nww2+}|4odq|8HQr{eL6FU-t#S~fh{cm z{%>LV|9?H}|Nl!l|NoyT`0js^Y|H-?C9eNF7#RO=XK??&neoB@%?$tkSBby>@1=#Z zF75wTzI*>qa{LFc(E+tL4zeu!zmV7Cf0>NY{}Nfr|A!bD{~uyd|9_An_y2yzo8bC+ zJM;hl6;e;JjkEoqD&_cpo5DZvnv(N!|Nox_onI;m+OzlV|0&_m|4$44`F|SiJm40| z!~bJcaE>Sa?-q~vKV9+b|BX8T{~t8^|Njj1uKRO_|NkG=`Tu{5#{d6wRsR3q4;rUZ z{{R1|;@ki0|AX)WhX0Zc4F8lF7#zUm;-D=R#42a_-@%MnN7u$`@IPA!>-^pS*$gcIr!n>XpU$`#G*|Y2DucrRc8*j3 z^F_dCz5k!c!2iF8>Hhx^nZ*B#*{1$q$&~SbH3PUm26D{*#mt+*^D9dj?EcSYS@VA$ z)35*e634-Ea~Zh)&tN+8zl;4fn7@wgEPM^$7N$@CH!?j3_h&$JIiPu*xt#z1=gM6C zAF0a!e+`4o|7A=U!Sh=!{K;Vb%Xm$}XXJy%|3Py!t2l4`pU?a8|5Slb{~IJu|IboL z{lA1$xlHB%5?Rat z6SOM+PuH38zeU3lre`?NkhA$f=io6g{0E(@2f}X{7=CatFh~f3H}x5rLjnWDT#$hc zTp$vP8KE=-1H=AeF@}9bk_`KbWf}IB$ujIMQ)JjzroynVN{?ZGts%pKVljq;C87*R z%0(ECRf;j3trKTBSSi79uu7icXuUkcxq2yvi}m6RN2`??4%X;19H=*CIMyh`aH2_) z;be;}!?{jbhVwmg3|Bj)7%ue6G2ELZ$MAHDJi~=%MTSegN(>jf)EI7bt212d(_^?Y zS&8B56eWh+)07$RO;%yJJyVt8&U_7qyL0sz4z<`Y9P6-UINfQ>aH_|a;od|8h8vTu z7@kg3VR$l2nc?YdRffm&)EVB-R%LiKPle&-94&^2Q_UHk&b4N^zfhCm`2ux@7Yo%H z-YrmNc(_=L;q5X_hG(nw7~ZeYVtBP$kKy}bRfaE1)fqmn)MEI&R+r)HI$efeD>WGY zt=3}rw^p0s_j(;pAe(W$|__xc1;rBjshJSm_82)Xt zX85<&lHuPrTZYg3EE)dowqp3T&w}CKE<1*QduaA7#v)cfgh5 z_bCU4f2SN7{+)GX_;<#Y;oku-hJUBM82+8{VEB8|hvDy8Uxxn|oEiQd2xs_tB!uDb z$smTm=Ykmi9f@N2cQ}UO-_clxPbXs-{+)?p_3vwz~c=63okPKpLmDi|Hh{b|1W-E`2YVu zI1}kG=redT1TbVW6fm?iOkh~buz}$S!+C~>3?CRi2>xgIWcZ)qOW=QoZ-xIEzEAwm z@N?sThTj+e!}Uuu=riat1Tfe$6fguaOkhZ6*uYT6aGs%q;RC}=!T$`)4F5B13H;A+ zsPI3-`HBA-?ri+e@ES=!2ZKHXA433xC_@2*G{Xc2MTQLwY7FNYbQnG`*a`k;h%o%m zP#E~1p{MXa!?KD08TN1d&u|M#KiCta#Apc6JOpNwXhR2S>bpo&&R{{B`k<*KsqfLp zrF=)Xr7m2qb|Qp%*mMSjfktjl^mG;~g$Zs~>V+~xK-D{xjYK7Td3nh1hYIWr7MuiS zCK^H*TObsSO!D*dGly`FuMCwFhAm9cg=gtsdyCMqhbd3|eil&_hP2t<&9fuSu*9mcM4j{$?| z)Qr}7(O_mwOq8oEk0?w91H~XY#l^+R#L8Ya86nHSus0*Yx&leyU~Fz~Ztf~15ftX?+yoP3 zXT4DoZ7Rju&^**0T#h=m%fT!;n=iogPJHK>eAei?_9qJ=9!VB!3%Fe^zuiGcYlR;<{Bst&=MR>H<7E~TQX zDkILv!coV-z@ROr8J?9rcf%osA`I4)zRA-Of(`7fEG(=@DFY!j${Gy;GD6@#7%+g^ zV&LW+nERi~{J&81VDxV&A4Y$M@}Gm~ANA*tgXjbQ<KPas7#QS#)H5&~U|^{K@E=4o|33(#>;M06{?EYh!2bUqb`Z_~ z{{#Pj28IvJ{~6@}Gcf#MU|_KS4>E>+iXU|18$$gn<^nPEd53&Z9lHioT!8pF#u$_)3HXfZqk^&6LHGCW?b&+ux64#T@u zIt*VIsW5z9ror%kjV8n2^*Z4G;InlG3~x6WFudPw!SG?bDZ|gr1`NNq8ZrC__5F4j zGyLCW!tigOIm5@jmJI(7TQU4RY0vQQge}AW(+&*(&N(vtyXegD|B?$s;s47F6aU{~ z*!ce`!^QuIeg=a+9|J>x1Or2X5(C2o9R`LCW(*AH9T*rscrgh6k7h9ZU&s*nzn!7* z|6GQN|2Hvg{C|?+;{W@gv<(hWCVd75mH-9@wgLtQjtLA5TpJh|xX&{%@O@xlQ1~yz zVEf;YA^LwHL*@TMh8h1SGHm_7k>Se!i*WrS`V0(80SpWV1q=+f6BrnLHZU+mo@Zc4 z|G>ad@n4Xk>%Sqxod1Cg>;4xq9QZ$x;nM$&3{Q~stLZZ^I0P^-L=`YFluTe?=-a@+ zu<|?u!=Voh3>W_kGTiuY$Z+p}Aj9MTg$ytMPh@!ienno3=9E|3=9R)3=9)W z7#KG6F)*B8$-wa8FayK?OM(plZx}NCzZ=N#|4AXk|5p7tUe$KXDVo z|BWXY{$E7IpFV>ELjZ#rLji*i!vuyTh7AlA4Cfj87(Os8VfZh&nc=_TzR`XvIHivg zs3E|H%EjOjkQWm|(;>X?H7RE4H7h$97c1Xwk*l!b+bg(aM@u(aR>OTY+54hdr`2r$(Ym$S68 zGUkWLL1;!s7A`(P0WMBPMn*<<;5=il%DAAfwdfBf({|6%6i%nkhg4Gi}D4UGTf5B&dOf54uh{s9By{|^id|NnrR zK#d>j@fi;qPZt1<+atA89N=jKEC`Q-3uXKar|U!+PBw@!+;0$IxYj1YaHT_v;a;Z% z!}l3-43{S>GhCUdz;JuI62r|o>I~23sWH5trNHoEmIA}QMOqBMmZ&m(SgphGV~sY$ z&$T)Xe>dteyxMBQ@MgOi!`q$a4DWVZF#OnR#PDaA3B&)rW(*(pSuy-QYR&NLxE;g) z<2DR`PdhODI_m@;S7m6Mz`(F{0|Ue1^9&3RKQIWs|Ic9f@jpZ0=l=|aU;i^q{QjR| zeEewYL_b~+iKQY=) z8EvPGwo_<3o{roTVqjq4fR;Fd{0t0&>OciKQ1!~dz#u2b3@V|xltDmVQCS%}8^|aiAuB7+Bc>$D36cjDWsKlz4NO3V zh^9bOA}IJDq=5Z%mVv=il7WGtn1P}HI0HiiKLf)7b_RwI;65*?p9{gA0e~)oy%SmbM))B`!nxeT@^J+_q6XjSG^k| z!8|iAIB_my*^uMq#N?@=*xJH!V)`QsRv{rFk46V4cIlhP1Qb}9>b)4so2w_@S$psI zHS5oFcWNhl?pX2O>${Ep`t4cY@9iwUXZhSmI6>mr#*PemhQkIIn^_wYWq7z54qHfw zF|-vL=rHg+PKaQTICgLYgF#PoB4dIC`(dU727GO!3K79GW8cXd-H-RGg=Rh#>g*Nj z?VPyl&HBze$CqcSm}XA7mf6!4zQQj&!YKTrwbiY5IqwY&1{=N4C5bZ?c79;HtQg~b zqRidll5gb925nKNvxK7}UxP*yP{)IiHYX=d`z(4w9)$+5QV@T8>?R{cj7*H`oCFxVda z^HV5#IcHWV%cjpP-+rr3YWF(AuEO-O{nVY;*H@uqTZF3QrtdA zh5zpQbo0)i73^D?+k&|3lx}|AnUcSGfx)zUk{-HSmrw6Mw&;GI%0|tlk0W_o>U-{F z^SkWss1g!u=u6=Fy|>usjwJtD;Riv?3m%^k4SllcR7q8?LTEy(r>aSIf9oo;W6I%YSf-htn*v<&EpSZ1+aGufIM)+FN(Z?ye}+UFzc3RI?ZE z?fo$2_k}4UhbGBfecp0t%Hv~_k{@17etA>%%BlIz&&{SqJ!;Y0^5$;$CDDRT?vGCA z)GyjinWtjLW&KQndGC+&g&yY@NL-%nsQ0qK=+4EI^v5TBWn6PV8))r3XyCT)jfF{L zjJx^X=kFF(-;$cdHY3dQ(2-@1zt*~0@d>dPMQ=4Q%wg<2YiG5t_QJc`fQLaUM?()s zU+XxY$9H^=LCy10{ZrDLSN_pkTD+qt?{Y%-lAgU)Czu|H^lbdE&X;ML8BoM>bhhw` zygp^=c|1#3gfi`1UY4B~r5=7}OThd^Cr+fED2r{>5?Ul=WYCqqvDr_TzbWbVgyj-> ztJ~r}C!UO1J)J+`!LRGV0(o;>Q*HbEJ~M6l{?OoFK>L1Ahe=@^(_3=($=2w+u)XNy z-t#GQ>4}{e0>m^kZ)}>cU6r?g-PenYtHm1Xx(|fU|1# z^YH93Iq}JBgW3%aIm9)etdq`X{KYW$d0Ew-nJ$U!Qw+|ZHZ1iP7Sjo^Enr}Zk2Di- zd~G9iN&3ajHy$^)t&izVtllG65&UT4gjp>uCA*fY9-J-1@9!jY=cAlaP55RGm!9|= zw`xAT?p-+fqjWOAcEmF=9>piiXX|%3?3MqwOYOJVitmayBsSa+o+c{DCe~2b^3wR; zCW~IV)Zo9$$>QmkMD6D7Db4CE*(5vNn(6YJnLIlT?m1aT9?#n}OIL+U`b5)-&yeY>#gpp%f9yS`6#v6&&U5*gWyXKSvvtwNoE0i z1;)Jf$IZUvmG4_&A;RfwA)&_j;c)onj`)3K65=Z6j&hJ)M>MgZ-GH=`3BO#o< z)>%>7yN_<_xxGqBcY4>MJ5+BU)S<)xda-{L(ha<Di(6JD030=U-C(GM*{n*TmR|iXx}av)mDPTygWuD~sJz-!Jmc z@45A~FfjYcwrCaqMdF2=CCbyU%zmS~{YrLt%;m0~kM0!gJZW2c+Bqqq?q0`{^tbj& zPjq|kFRBP_)oEdFkGU2Q%+SbY-{kx6L~;Cyy8An}e!IUiFN9-q&6JEq?y4zgewJLw zez{F*+AY3%C&9SgXRd1<{Bc$Nv7nDl@2S6KRb`4wwhHb?ro^9`5R&2}(bkx3Jki9U z_0%=l)>|ul-YtpXTr)XnkFIE#8P~@28)a8?XKGhjhYN}RYGlZ0oTJKoVv=8j_bk1o z+$Xor=U6Fho&4okfN!cv;WBg8gMHTg$L4<&={^?NothM^%y#K*mRZ)t&#IZ#T!I@n zc*va5eWM(>;KtSX+a1eZx&2rr^sl2q-i%di+?DVC z*{Z_xWtV721y8KfBgHF|Z@gRXr1Ej9a(~FXW4}F@h~1N@P5V~xd!y|6??!6>{ipwC znEB(i$S0j;w|{LI}t2zVm+4X0;|pYJA%#S1NJYuIN(OdDA&;p7*(v+|02_$0t2@*>Ig-#qFi_*1xCo)f6M@ zwT^y`SN*!LAx`qvyleYX%PdW`nKL7sC%EYDHMcyNcQ<)m^#17`9Zmv`yE>K!#0T}Z zZHlrM&a389T)p%1f@Fz&&6!6^Z+uK%aa2B$J3Hjmj5~@&9j9I{j~7V%c)p zq4!-d$G@@XUP-&@L=FkZ75Xb3ohx-;t~)QrQY+$UkUGyH)u!fH2G2~ZQ+?kTUwq{5 z=hiy)K)X|C_2Wq&_nWJobePg*`m8fHd&iGb{UB-orS97=i0+k0D>`v;mQeDSE0?4f z%UjfGTyp2#wtLE*!o9Zhm;6uI!}6HdBy?hXKveIoLta8HR$QtzW&W*qO+CYp%%0-l zW-oMjCpy%}66SNOkvd3VzcX+GKHBl8$;#8xI5g|3S}W4x-(x$oMe z*)#4*{95qwutCP10PA;KdhNcQTXR0yrlsMdfYzIXMk};eEt+OGk*8iKsBM|M>dx!G z7(#hNr{4ed_~VC9nw#uyJ-sU4p=-SJ(@dWV;dSjx^IJXN$!505$!>jF>@Pd9QE~F- z32tlmzU=SMI{ny0L&hMn(e}d0yKf(_vg&EdY7*N2k^STHsp%f^Tl$x;7myY!{v5^s zs%$Q+?z=_Z6=o`r_^UUR#TO}U{pOr|*k5jv-`c&_x7^RWNKSsaeAUMu@6*=z>>{tY z{jT^WbWyy)a%b~HvF!(hwmZH`Z14W;tDUUY!ZXiC$az_c>!UMv7tGIp;gibR&e6I0 z-dxq+Uw8bSr%=U|p!VWTM3vCbJp1MV@j#RJf6pA8D0XDI>corvTZ~V0W}cjLG(BqZ zlxs}&tK0t^+%?%%<5v6S>m7ZjH=8T(gin0|>qRKBU&Oi9>R(9`94WoiP1}Sq* z4`0hLDe96;ZyIQVG?);tq9E6sgPh?ZeRbtFovxeL0_5FqGewbH0 zuD1EIeeRbv3=)s;8-A6E_+fnW@0Dq>HEHMedVcD)F};26ov}~4!QrXf|5l4?m5I$v zJdhf)Iq%>U-}MDf8*0DI0cotev$G`dpI6!ZyO(}Eo+NDWX^N+WRW8rbUw=#1?Atp} z+=sLMrQH%m=R-N6OCN?aF@7p_`V!YMFS^8d^OZv)8k$`Rt<%anQYIZxeOc zd;a%JzvEWjl-u?FLb3T>_d9Cr<&#BfHwo{)cfX+E@Pe)%u(SLfrXe^EtlTF2&8%3M0m^HRLIa!ceM{tv;vs~2xx*%ImIy`aTw!Gx}b zH{RH*i>%tpZFJ{`N>KcgVAZAg#U^;hUoMeLo+)RZseFk%ax**gd$NyQ z!s*lU2g8%M{WsQ92%DI3udUTmI)bIo?|ewlPW=fNcgro`WdAhbbpE5iTLNcFR9`Dm z;rHwQR$0zx{DS2}Aa|^q;`fOk-%rrn7^(e6NmL_1OzTDP*T#y6@!z$!zTtK`zk6Yt z#2I~sv^ciuk@E~9Rtv}GNfe$~P~PUNd6KyKFnzwPvSzOVZzq%l)_R{+%@M1k()O zCr;0UU;k9B)O$a!^_78ueNA@%d*+XQ`uXm)iXDw|6hOCQ{L&`Yutsk=4|V^ za%Sr-WnJ3?s|}jw`KcP(&un?emeRYDt= zC#<~x(W3EM$^F(jzaQyvY@HxCbM4%>c7GRMKAwDK&B|{d?#)oyv>33(3jV{$k z{@?kkQ8eqKeD9p2x3=a_@$0%Sv2crpA4jRx*43LsQVg$^+=K(*bCj!kcW zN9lL26HxMhpu6ior`YqHf?rt&*k8&q8a)2}c#XOTgPt*Stxuk2@u`fSxwf`u(RG`5 z>~r9>tvY<^QROPG>}ltpiKg6Y7HrwOxOA3vPvMe}%L7)_noWKBF(pDd@%<#3+V=`K zUTk(?RjqJBX-r`qlLc6kzNbBcu? zO?tHZ&)2(LTYre$p6(?c=jLJabkh;GthawJ+O64l=H~lX74 zq*_4o1fjEWY@2ty+$TCaa9{HO^zV)rPOTB$(QxE-B^Rg6-l~A>tPgH26+XFPn(UkR z{*qP#!ul4hoG&#m+HJq4aV2ZvKiw@gEm7;Y=KQ$J-`RLuem(n69UoO~>;9(z^6%Pua;W=be~E*bQ*nB(vN z7c)=iEH(Z3dAWkAw(+g!r5tOUN*0D^>dGxj|DPJZfBJ=}b2a?Tj~|^dzVM5QYjcl+ z&qAr|t5@%uaU{XDj*)N8&8+-|*M9lFRrh~dSz)vPz~^vrm)$28IbPR0vejGt@TRzh z+*TKJ+AM$dyexa9FILrSaZW|5Eeu>GLz)o)$h*mzuH1@gRq7hu8lUp=R&g z^9&N+eva!^I?g;;@N1ISo9KO#Uyn}B{bnAJnDNuf=9Qj}y*|I~4*p`DOO@WH-c`Br zRs6QUR3)cne>gHxqWoN^q2adpo8qGK9-4Kc9pdtzf&w=-zfAM_khnxhM9CpOu}Y-n z(1Lp&a=)^r3lhGXg}k%5V5Psn#P*{6LFIk@t(Nk~zZ_VXx9oFk-PuDAFU$*naq-NL zEh#DSHr$?)7v&$Vp0Y|@$baY5AAi}?KOYk?4iUf5qUiE#z*1B z`}Fn;t(x&~x4EjQ|Gv_uoHxJBjrKNr%CRjtKH+73V@sl3C968e2{~!wyiZK2*54K; zoHg5h`h!5)lLa?;r~eV$#J;bK_3!@K8;ZqdZ?@nI`ZHJV?hGTH!+C#gI|JW+x}3Fq z+M{&=O%=Vd|LnM0r!J3QVf<#V;*?)qLKfaxOTM`To#f$MaWlTDR@>}gcnr&evu|LJx`G<@4#-ko#i{b%BAo`2x-^KZBH z9{X_}n52DTV$=*H9b?1ak1j7ZJE>l@GsNy_@BOHsX7^s&3zyDl4yc$Q!;qG_GH()> zcxGeC#a^d`R}=Oxo9B`sT*-1Yx1B%S`Ne&ubN|h4%ANP~Xj;cjnE2*@tadtU#?^ofnFBzo`Vi4PC6 zhvhrE{;PWtrpz8{tMH#={&U7XpO)5{w=H?>nz8Ip6|=r7kC$!zC)Lf1&GyGTn|i3e z<9ybA{My|^hWmppzLs+FKI&z7kw4MApsnT2wkMNqi#|Mlt8sUiwAK}+|I161BTvN( ze)uEyf7hmEpZ5z?m&7nUd*Zhs?E8M_K56^1FEiC$QZMvhJGChOZ@SGB{`>afGP!-* zH$2|8)BB7;i1?nBa#zeNA8=MZ2>Q6;&0fw&C#pLZpFeug`MX!eLf0pynL9l*W4_$U z{a?HK;hJSrCy42s&Y39P=5k}7y9I~t-wh!R`>wAE$rk&jq;GbQUHgT5Pz*;{5=Y}L zfo0EHHXhhwe<$>&;TDU(zP1sShV3!mqF-wHFWs;pTFfZ$ph1`U)5R6F^KO=|cpANI z_k+M4LUo<3)4$DLcvyD(z3e!f{xc7rc8brNH_5CjB7|=i%Y$S=zSzyLeZ zKBYI{Ntly|(c5n4b6e^_6RVp-gvu?ahc7ap zzxr5G>l5)IwJJ5EoJV8RZqDs*9UtymyDhxn1@DiQayD$`kMw_abCm4a@a*ZmX%+^5 z^>0o;Q#SKzZMC#0*UCw{yZ@CYJe^jWk`r0Nro4hFNBg##o#!qrhkR#f(6NKiD7>QD>RZn z&A5HME-x)4?CVsstqTpUp8)S~C^`?aoD_1yjLSjjwL444|e zspnn!!Kb%8)_sVIxE99M&1LX$SJd*--do($c#f5DZGNY=|GZAX<)u1XJ6~jd7f-(5 z#mjMJ>nlzZ%SQH-(Yv?nuQ$D6$hafxWyW=e^YxqcXW4367ALg-+hU!evEJ#Q^l8CQ zUk~lzxv2C+eEz?3i7yB1Gd?PK-FWCSp|9}}`n7W@cQP7RZ&^l zi_UkSm)Vi?>1g`0s!3Ir|CVP(?@46mx}K9~Joj@!y6T%s&SmX~S~SyAlQz38EZCj6 zOxOGOv$iiT?_$q>e^#8v`MLS~xBIv6tG>-x{5FQYSmu~-&z)KF!EaXRoc2?>Y5v(l zq|J5vwDZyX^8d9xx_+%WU>EBzCsk&FRa5%PjOQNs{lvJYV}m;X@%$C<-amBeyS6U& z{j15b)Bagr{c`>?>)StHl9icSpWfL1XYw|s0Pp*I8B9I-ANP9yx-+lktvJKxAIC3r z#V_lXsrvro{CvG$!LMq^BFgq|7BcUlW1araVPj`qB>%j-96eSa=yVc#2`vJd+^BDRQeYD<`T`nEJHT3<}Dk^X(}&Y!xL zTE=QsY2jZkE{jexIc6=+dSSEOx%>a(8J{m{8mB6wOTKQ?ze6_lm6?LRrA~RAFu1obe#I^=t5&P-xF4)RqLN$^_`z{ za#_vojx!GyTYPdjBakxP{M@~aD|uUc9k~U+Ms~&?6yu!y-I&SonEW^PoJ5W*rZ+y{ zJiAwNtC&*Z1`nGzuKL!Cxxc-$T-C>wV}1ADvh3etcN%?X%m}|NZ_B*7EHT(4-p|Nt ze%5i3izg=>h>KaWqQ@n{Hnu-(UW4bEI_cnbbxZX-Gk|o<-12z! zQ@-kNWPgmKHDVvu2!L`+l2A-Xy28ysuGO!IxEYi+xu(=B?*9<@yvEq7w4n{S;Vt{N>3NKdy-Q?D?TnFy`^AEBSPwtW>}pYUq8m8IgEe37XC zGtO-cc8==Z5cXd8NaIv#fvhY&vB$ogf2QBt)9O-OzvcYr2$@)hXS%alM61|>=43U! z-g5D<;kP-LFWlyISe8A5Wzk9H837CT?U3PJDq8j@t4i&H-TMP8+&F75T3?aSaoSVO zI`3alZhT>Je@o>2fbdt|nj3ccXZgJH31299dsXc3zztQ4=dRDJo5~et!ySHT?nb+m zA1Bmn-fBy3nDviKx7dT>&6@u!jQtKR;0%oW)BI9s+0{)N{N>Cmx7c5_XxM9urKY~ItRx`s6mubk_VGwHnXDR+0kmycoA z?3a0VvOL<}v3|e2|9y$g++8wp49}jZO}O}f3d=t~ErIH-{a4m3lqmkTvYVkU$PW8Pn&v05jsrPo^F3a_)GeTLH?z_HcON7s}06T4liLrI-7dusU-19ZpKN@(( z{#o&IrAiOCE&bD9D)vZ7h+k9T&;BO5XyKAW=Onk>ihjRg#fH5TmI<8J2&!nbIhI>n zD!X@P{>wnEHSa{3EU$bh-Lcd-DQZievDT+=GFs-Xu@iO(?zB`}DOId^Ih{4Z@7>Ch z1LtR+wL24R?38!phdE$}<^gs11@b+TQ2$Cg@KL z{~&WzZ1%@v-+$dXu|raSl~4GjdH&O?7P}lz7oFu8!yZ=GH0!VH*`K1n_wy&bT%Y)I zkL^Xf{oA%|dtte=S@G-SCC{e2l>HPvF~fxKaJt`i_sd_i&xAd^v@dE_Nc3&*&J1fM z8x!&PnXXQAmNp&xpd9DO_=?M0&?xTUMWOaGv6#TO<$t+PRk87EO8>egaP#H*mnGW+ z?5_!J=RUz#Udj6E)yDUSw`S<9{2A3 zjhE~B&CVm=G%fi_rk`=DxDQy`&abcaa=V2&c;KFxWeK*l{OrE*OjZ+ z@8-ULsu(6GIAydvUEM%Bs$u1ynp z_H_9znRIIJ6rMc-dVwzD3p);N2(mgX_10}|z#_$SP4+Wb_V1QE7`1&{5I@IOy}A3e zj&F%N{^HW5s5w9KYd5#mO>j{-_RaRa?VFg!^ZD)US9gD(Tpl3$($7ZdRGjtN30nV? zTAogRl9<*9B1R1X~^`%RCG;L{fcS>A*EX0oyGS$r|Mnl zV1Uf%zF+SBHFmSgw3#8sMb|t%WKC^;b-&EWI%nFnZ0oYcx{JfPR=y~kd~_D8;kO-I z^tQz;3W+RX^ZbxHP5DZ2HS-L?l*Fa+Q=I0>?fsOo&OC6xo|+BEqJ?XiuI~P}aN!b} zhX(?sD<&)7;C)!tr1bRp$3v#9wTYXrN#?Iokv#T&%g28)MGoy<9X3lgt*z9!yW#A- z+k%mITB&WnLLYE&u~k9`t}u<#oVJM(z9$Fudds>EnUFwRu!*T`w8hEEK&b>8P99i zCPuEEx&FnG4c_(9+8_U~XbHCdv|X(|Xh&JI?xcx#I&D2(7;3fePEJ&u*ufApxmq=L z!gJ4w!k66B6<===ej8b4%eVENme6Ez4{@`L57($V-%s*<)24dr5!b~H@5CNIJMQOQ zc*@9B$fBZewy6k0>>1%nps&g;PdCy5qd((GZK-X}Z&4L`pTAQD@C!ewE zbV^)cu;@a!r}yPkKee(oOm4K_YI=0ykgmIz#4YdK?*Esz)=qeJ@KnTk{u@dO%S4OP=zMOJe^U4i{mWui3>ZXdF_{{j!T3_&BgwZ!;!@u`maXY56NV0>+i-jeL>XX_Hnq#g@hFqJx;u7!jO>!4zI_k+D z-LY@qtf;K7-!6R=n<((3?*en4engPZ^go(Ao+d|BeEk=(@1ODYNgPvNyuW<%&fSZ1 z9Go*P`D(Ttdl#2$_cd4GRg})YG-s3Zno10oJMT}IyUu*r-_nz3mcg>$kG+3STE+Hj z>(?)L*9T>PEelYrKQ6jxq5hG^+?i8X3;pT*^}Xc5_OE4gQYPi?zW;B-F|J?h7M=S1 zF3{db@$}922cyGRvrppaS#}|dZEuB^=_zB6lH(IJmV8~JaKkAe)_dVWxhwDVoo>{( zTyR)zaJ6}B$j7>VxA)Q&Z$Hh5jXQmgv!y`2lF434Fr)l^L*f6`pS~}6@wj)Que;LZ zwrL6nYqjU~#Yucw$-r|$>eqo2H#fIfud|M=-~6XH^1Ix74$Zg%&5sv%m9FU8cKfod z&;R~YVu^ca>}inP`*ZiPxp)3vW7oQH;RC}NpKW|;SJLfP*lU6S6Z=P4gKf6& z)(0-D`jkCSO{!Mv7vSVw6*zOhbZP5Rce#)yC8nGQxjESXx1?Tw+Y_39;Ec)_lU2J< z)bHG^yi;Mawjoo1r_%)+j}@J79?R{rm03GaFq+|x`JPXI1((bGcX%};@b0BA!71{~ zP88eEeYF3sK)1?~w$ka{GeW=m8OEQMH2(T^$(wpn*&fc_O_5GH@2gLr4Y;eD5;?uJ zv}9&v@cqs1{L4<+%P+Bdh%X3g5e*D60hs@nCJ zZ(5aZ*mC*Vg-rVv{FAgiecz3JS8H#>`~MlHvrf%s=bX9lkX}r)c+oYt$2K|5=YRZE zzkhy?)l0_mq@?LA4SS^IP35Ckh*kz_{q-`?D9f9xon*E1vgk6sYbW*A|6-o{$oz!x zi>a2Ej!o5x+RZri_Gjk_zvO)8{Z80k8KRQ4eBQFje;s?4Pk3ljRD6CZm*Hf+9I?<( zdAFIYWHyWU@R8*kmC;HmaK{=R$Tcf`nwGhFt~FWbl%mQi%y zN$lRz8~cuE?*2OOhrX$z%9r9NT=T9)?~mM@ZqF6A&UCKEYyqyg-qh>Q%m1&>DEzkj z!?f!!b@&auJ!=M{3W#Ep2WrS>N8}8&2P+nzl$VY(k-~L)O**A8zOx zZs&ZnB)r6JPr&y;kFTMcx3(XNNcmMD=VhLoE9aZp&Sbyn_Ts&=TsPS4-yVG+d+BY} z0_BhLTfZqhJn6PM=^U%w-6FKswX zw{NdzRbu*}U#cm4fV<>_`+e7=JsYQQ>XXY^u;ZU<*2nt+b#LCC&#S98=-hfBptieV z-}b}KZq|*St3=mCIOlD-spuK%v?Jg3+p*NWTMdpo8a7C$2dwz+D#6bvaqphkhXM)y z1y$$cLY}^L+pzItf&9mb0y;}4JP3~{DLtdgv3&o!O(hQYF84l&ZkqcrAvjf(uV%}s zZ!Jp2>PI$zxLU)$zGm@0+xq*mH<%LcNc0Dtzc9JmC0bv>$a~#Hu6py@U$v@7v%@4_ zZ;RJl^(#p{&OdQi`xbxw1?~4=o{9O?7qqurzAJ3~X7i0(eoxu@&uZGa*qgW85_h@0 z-Xq~X^;xk>L;RAgnyyJFGS&-jInu(qZ&lWm{JVX>9$h-D%K4IYFWa<#oV73NE9xE3 z_^dKK^JBVH_M}54jCx{kKP*#@ZQdQQr!M$O%vlD-h5K9Y%xT@58a@BmpUcx$YEJl7 z{pC>RlT#`e9!ek8Rd^h)-x8t6YPL+Z`_lLGqK2U_Hnz<4&hz~1zH8mvGFEHv8_y5# z`>(s5S8bE(3`y6OdB-1BW-q>Mb&Gl8q!w@gMs9Jgwfh&aEc0x=(%0u^;yo?&{k`r} zd**VOZhdQGq}X`R|Nc+u9ktva@9_4@{(Lu2?RVt$Pr|Ra*A_*vD=%tJ%q=JbbFT&(wA zzjRJze4)7P*(%OkYyW%j?^kd=-^%>e)pZ+pCTmpb;;9#=?v>a3|9InOCSMho3r_yU zJHI>)IlJG3Yl3gyC&S$$zLz%dTQK3!zua$G*0}~^p9L#dmMd0&o;4$K;f*hRx>uK9 z{`qe%OTw>>c6o>99lDzRqH0zgV|C7f)dlJ`YnM+KO=o=JsIf$9>77?`MT}NkPoz{E z=(_#f_IAaMeTz%QXYFO;6=Pg?U+Md)yM|Lu*SymNZF;Qz5RUDhI8zH=9zU)Wqf!)D%_e zSe0zPkJ4Av_KFr~e-6~P%;RLMcwEr6;mX!8r(8><%eFk3`SknZB=>o;LMtw$J2n0N zGS}WYwlMFEj>oF4b3QHF7m@MT+-j|%``Q|vC4K%L zhfTU>uD{9^uf!?Qto+3P%&y<1zrWvBJeXd^Ic42~&wos%9{&^6-po~e;_*$LFISm< zIa+O7oadZ&Zh65`EtAk$JDJoJSNwB$c;L@GFOE$NUxd=nUw^mh@t2n=)%L2dt=+#l zcqF(@pPGNuYudec}7AWH< z%Y)FY(0^RHwKA)WjCQZ8buz&9(ffq7` z@^h1Ox12w2@GDk!e#FxH1-gHQ75i;^BiavZ{7kXU`u5h?Q||KS&rGq~XICe28j3Y& z6nxu#D>iPKe^AhUH}MBStClqHD!wkd_JpgRjtgrg^TD>mS0#Rf}r% z+Bny*W}N3%E6EU?YgSEyEkLn zl$V-8lfJW5D}H~dyI1}3+mL5Z7tY!t9pHVz0=B{8!_Lpu+soh*s9+Y}!>-3dU0aL}hgY$XQwyX;JrSkUD_KCeQ*NoBd4C54atpIGVywUrEVC(aU@_RG`gKyd$)zmn&d6VEsf_NsUYog09tiI`@R3_Sazd9z-$@a%u`cx%~tha6sxIG`*MU@7lv#M?wb~w_tp1Q)BatzzOhMpd*3RN z{AS3Qag0apQ&sNvUw&45&wFYqgHl}PRv;!+;(|#Y`GBpa<1o> z8j-u{0j*wF12{_-+P2T0nkJO4W*@M-ynn8I2Z!T*k%nhZg2D5TOqdXUpJQddVt?k8 z^{c$5*cPDwyx~+Gy9h z>j@v{lw1F@&P`-|kw3xOri$m0O{Y~Wi{jj@ZvsZY1DA*@PYsB?vWI7Rm%WGQl8d!m zR~aVTbO%p+${7~2GyD7dLesF2oIuA?&+>B1uWHL~Z&=_lUn%xiURJDr)~Xd<`o>BZ zE(u@AvW{7&y)on5w+#99JM(Vd{1qhhp?*SPdfhi>sjJqX12>j#zUh9n=Wztr{O7M@ zWnZ3PdY~efeZ3{+t()qe!nlbN-(IswwyT_WQi|zNe|{<3^w*>8^7o&@MMLW@T;}fm z#x{BSO2=vP@ye@zu3NvSCgtWbUZoosa*U&{PUe`kSM*;0w?Zi&@$?gy?1e7a+ukwB zyxbeTrAqZr=(l-HTc5nC>D|*%zmWU2!UhI|zjBXxMZ^=uTAl2(H8d@^Cw;E!x9!w8 z#&RHmd)oOmiUl)j8qDrC{SMsrFWI_evG~1~rR!gxy1^#KaLh18Kjg5kcm3?17qh3{ zHcOBAw`_(m!{H^Zr*dBHn((GR>h|{#jgCpB*%ubw5b`QHoIuX!?Y-mI+KqHVUTgeOnFve)bJw{6-!(%eq5gWktu>f;`pSh^T)p2+O*4H-VE8lfsO5nXNt47NQ-be%)9u_ zw!T!=>)N`WGw)wCi63A(V6d@ElJ!^5zosd_JUgz%Hm4N?Jl*EI;^yYdHRsru<{h52 z^L)t_?gYk!84|}zc-fj>EsuIEcQI{B`i6aMs@Y)*S5n@qf6z)OR;SO+aQKU$kA}k3y0EM{*Na3IAG1zbXB_9Sw=Jyu!jvCp zzv*?JV>)0^%cgtGcIElS0S_X%Snck{JD689n(p2D zDf;2(mGdW_y;l?bu_as~B))x8sl4Ky3o8^prY{M*dv#uDGst!Qh7TjBigLYn4LWg? zJ>K{+)2h#A3(Ma7Z9W=dH^r=2rcCDbZjie53%5#q?%5Zk@t37VrsBg>hg?%H`#8SS z*CpBt?)KjC z%eK5v1iA3k3-zxln|`S}op{W*@7a1C=bOK#1~fLz)T&`FDxN0$)*5WBQT%B`<*(Pb zUg76*`6gv@x+6R%s(0BYrOoRT^k!w{AIjb?v(bA3$X|AX5lKr6Awe!37_*KsIYuy)Y%nop|1?;P{WHOy9w&kDbvYely zVlsA;CqTh0V{EoyrJp4C|AhwD?wP&2YOMq3?w@$&K$Le{-OY*9DnLfn9az!+)#7QG z_tGiqvz{+JRyC#mli;CV-Zb?k%4*D!3=+%i4dPF)(fJ#?@@u?8YEVkT1vV3z8=248 zZQ6G+-ajHeo#oa)Nl?TKpWyb`Zu3fWWuas%)1mm#wl3dg-Ud6wFO_l@t-p2cTRtc# zx!>UQyx-qn{%$?;R^Zar zfF07N*4Lb)AO2T3YQ6sLwih5J=OzB~n;yMXCAsz2;6ud_&?-uX@veV zg9kqKshnEo>lYa)d{Jatr~mNjYAyb{K2VG(M|H0`{>3Kuwgf&25VUwzBDc40?&fhLkq|b!$|%WEK?W!Uvzlk>{Z*=3O24gL%G-1PJ`x|YeNO&l72`O{bim;6oRyzTW4;D_eO*xdc5dkG zaF5g1KQP*Oh9^8+dR2#k=P^T@-J)f$0)9NbC7Z4O>ok|v1EJ}UTIYm< zmt6eCc|W)AwimqcD*D9S-x8oLd@Tq0SAJZz@!Qf_Z{_9ES()y;znjwz+RUeU=DJa_ z!-L;je`ePUuh82$o3$ZP=GX@IuPc5vojonZ^?Cl$MXNyy11E?Z9N7Q&+p!jiz<^Krp|$iTr+u$BKCGYjnGs|WpYDXsN19cOn?Vj5-7W~)B>DM2V^QhS_SDBd zMWAh^p00i_>zoprKs)R~N7_M7tOcD3#K6!1IVl39Y!r`%z-S1JhQMeDjE2By2n?+hSXCTaY-6_m_GMBSqAnc~pPEfje)gj_}GLK^lrDhF;{{J&2 zMV>Ybt=yZ+8aoj7Q)1`;dIqLH)1_0dR`4HPAI|`3SW{vko%Q~kE2s6gSN!~;OwRWG z_6#g^ww@U47;!23w?Uov?;QD=w;P1+Zi#0##-)xL;-EbC|33p`eLVx{+#iBQ{@>5Q za;%WkY*zvs)?U{CRSeAk7bzvYn5 zuSF`EucyfLpDX9<-;~B7hs!9CzW+_jC73@i8JG?ra!3te1C>;K+P_g*ENa_0J zTEPdKq8Uul)sV{v+5c~$hVcIt>Y;y^sV@1uLjC%mWoqwVPLlq4B$xZk#%RW^t6~{2 z+z-~bL7n&C3RSPylV!FX&f&hlI)W)P+9PAotD|(RqE^iuGIYWcctdPf2%b9Kj@YEyCa$9>gouFjAaoF;vl!ej0A_} zIt}4}>oooUu25g`e3I;S4S|UVoMYMmg$K9U!%F;`x2F3r%HJ*tchemNngKL zYdZhiplkPUrGY5OJurI+(O`FM)VBV+M*IBVHQN9Fuhaey!tdrO{oRw!v3qS8gVCx` z2Jj(QAou^Hz^M|b1T)!JA8uGf3_ccbq9f17pl|83A!|F=yAbZ9cpascGF|66pG z{%+Jh_;iz$}MgRZbE&4zIZq~o?cay=)f7=Y=|8Fz4`L|O~@&A5fk^lR(c>bR; zW(C>xZ>0t2->n8+e>ds<2I+(0znk^{znG2+qAT$1LGyMO3o$mjqGnM|Is1o|MC7I>M+DL}B z<>3sPu(XBl_J6xgh5v3h?*6;Y=*!QIdjHQiioIJO!<2wa{mK{y#iOMH`@d~4`1gOe z$$u2Q%jEyx9mfCv?KJ-XZG5mkNMdIIu7Kwj1`egs#o2u~t z!F0v{k7g{F-#{{hcooA z4rlOO70Mt1N_W`o2Z{Y(rN#Dtzq!NTy=J@r?lt@Md#B0&Yu(a6Hpa8gSQpD63{ry+ z@6FDprLtM63#BFjyPNAXZPHee!=*DD%G)W{Up~S=9aA zZ~pM_ev5xUcbfda+AZ~Sa{}|6MS%=r_}mSXTN%Q@d8S2d^^e_V|NkGcLcxCzTiyS2 zz#{C#L?OQU@eCaMv0zZSeI|{8mFTv@DlN8u$L&=A9ktH?f5h_4-$PbE{~xyc|82X; z|Fg|v-#5lF&jQ66%zcDtP#W5r${KZdrqbuXN3H+=KW>A9{~ot_^6#Ww_5b7M3ZO6} zWFERa$b3*5`FFxz=HD?JkH5$5`v0D=zV`RH^$(a`AGa9&KUO31VO=z1H!*1j-40OM zx+9Zw`GW--fBqh~{r~@zJqrGN!tUq)Q+8+mowBR@f5zVC-)URP|7U!-z-8+HdT<*J zk_YWs{_nTv_;J7&gxz0c^FQx2`+vAh z;MuxJrkpu`45-HpqdOE2e_c3(=Js@sJvXN*|M_{?=KufG4*&n3LB)U1IQ;&5%Hj3j z(+=nUo^f3B_l(2j|7Yww{+)5C`+L@*>F;UB34hNxEc$!eanIjV4%hyka(MOkl>N`Y zryTyFn+4+kJLT~I##E&jYh#$AvDLwNoQoj^isvq8aSXLaX5&8adox%U#C++|L zKj%a<{O6RzzXyx8ri1bohJ(ly0M(1DA{dG{C9+>T*(CA%$x7Y-Uk_RT|8vIi|Njfl zMB~5boc{khY5)J@9*h4^SLywKz1jHxZ%~{fneq3$^S{66o%Z~@;HvZge<--UM5eP* zw1N6&ptx8S#!$IFj_KIW9Pan0nkE0-nyvQ#`8tFD?{{1L|9sH;|JTDd|Gyu#1=C*+ zTK|8)%l!ZIb%y_M&r|<@wp-@!!E(VLTQk_7t&d?kxjBXX#>rO6UoSQo{r_>o{{LT) zKQ6lb|9jE-&)*9!7yn&wDS3au((ueoC5(fzQ5;7C2UKr^%JP*F3{I=U7;4r;F|Jx4 z$8=$HGVA?qS)4C-WpjPpRlxIkM-JBq5FaGIA(rXV>PW_QtHT+3R);b~g4$@HI9(Uc zptdH0p=MJ8+qnZ}{9n#?%l*4OSL6TvCE8$odyd-AlPwZYw`X!@kl;k3m4fmID4nj2 zW{_MH#h|n{jKOqe1cS%Q2nO%f;S6pdK1h671cTHj9|kUL^#Q0(TN}+FvoeAqa8(3D z)2eXBHLD{Tx33NZYt@#Q#%&{2+)v zV9(wRq8V(!^gjjzes%^1{yz*2a_kHYjDHvyY@n^vACNn47(YO0_5+}s+!z?-8z48i z{bTqKy3vjQ2P24P|KGq2y2*_}fdMqQ_<(_dfgf~}8v_IU1~(A@4+8@ONFC@dVle#x ze90T=)~`TECz-K(A6lTsdF?0MnhmU1Q-|?PUUh9 z*gQFC-0y4=_tt@mh))wGsy9S4E*c2?|IJobdDtv`WK9@D04?o5R>&u`KZ^l&3mn)g z(0uW?+45(%C9-Y@^|Qf(BoH9||CXtF{9UTraIa1D`u$`A(7 z-8XP0KNl!XxzZr~dQ})h7F>`>#=kY1;eS@Ezx}^P^Z%>qvd=ffGT&Vt#xM<8`@gkX z9^aR!9zT@Jd2MwV!>(1K2><_CsS){kfy%eF;f!}-W14U0D$o73M%ND63~cP*YqeTH zbAcfIb(zNhwULZhR);aHSQ)|~{eP2|-2V+a6@S)iUw$`N<>uC8wzI3k8IG?CMa(b% z+o*ec7C!R)#Y~!R&ZGNBQsntp@*pZ_<7CZ;O8QzikHgpgBF5Jc$0i!N3Ki z28N%`Q2c+bLvs4xtp+WBHtSymiGN(8@!?Pr&sWeq$m%eLEue94kX{h}zfI5P_eR~{ z*E*&Ct`2871`>neP4R5Me{ME_%wd7%v7q?R4#SVXw-{ahzsuyzudPO(!E;NZox$~EbtuFA)u9X@SB5iW!psKIf3_Qi{oY~t=izjv|Eoh8zOM{nKv~-b z8kf2=MdAPd{pN7|Y=Qd!yHgdx_~jDK|L<1mfbrA$YGAQT?UMfw7V!OE8_D!>bvOga z+>fin7`jmWyegFW&tB7tKYPsofy`JN$@m{R+(B*wVbC1S(JH|&pm`D)ez8pJ|C$KK z|6sF0=3~d7!QmXvkc^zhKxY0sWMTh%zr{_Ed9POJ{NEVQ@_%(0Lpw+g8(tg9xZv#u zga7|e*uwFr?Z)T#74Vd;3TH?I&tF04w3Q(Ymgsp3WahtP7DE4y+hqPZVs!*&&i%P+ z|JOz_g6u}QOC6*h8H2__Hz%?E|FGQ@GPeL4i$3k}|IbO=?|)C*&-{1F(eM9RN8|rj z?7?LTXs!pu|99HK``>AY>c1y!xBoq9{}((j0o8kNo;o=EKyF923m1D;IK!;0S1QuApC)Wq5co( z*4F>HZ*2vQQ-FpgKqC~4&}FXX>&(|5U z1sBSAXM))1`2QL;jo(XEPQ9BccjHhdw;o9T=Mt5cdmR$XK>9)Q?`J7I1I=IlT%+^w z??$~T|F&r>gVg<7uPys$lm6d-oAm#`U!A^5=;4zuVK5<5q<-7(+3!-gDS^quR zAaWm67lX_L;r0Fu0+%MrJ^Tln>p$o8|L-}c>wnKVE&6-barUp{c4vQ|cK8lk&v0d; z+>O=Y49*~Z$ar-)gU_mPhBfyVX*_zn)BNLyy;k4e@3Z*xYOBfb8*|iNyxMB?;>T%+ zzi)P%y}CSA#SK|6j18Ix2KAj*hch&<4r7=J!mGjKRFoxpQ;S5zU rJ;Q;cNMK91nC_{pCN`Gv*BV$b7ZmtN~y;&ZfNX$+eVt8s$n3`XyRJP}-J2Z9Wkr!`4#5INJZG-0qy z=|5O;=?&wT>NDRaoJ&2hJokU<>WAsh#Rn?p*9$k?W!@$GEB0C1i_#hMQEe zOVg#SfAc-%;5zq=Udl=ATzI^srWln!UybPCUlZsl0Z z^uICV;<;GXpo@#v&Ta~GeX5l6aM9T>id?8JIA&9~h*-2Ncr$|87{L;n<; zz1KpsiK!`!TbrU>YM;f-sJ`CWwsN&z!+*vHPkHCnK6+WbOnd^@0wM-R79t`^n0y>B@)2J-KbOU-%ci znw#!_X+QAp!0pajA?+5Xl_iT_h1oVc%$)h^71PCjoBfW-%%xXZ+oc|ubKA^#c=V51 z9aryahW_ct!kE_na5l-=n%2U)K#|eJ+i!)*+pGKdoI}OCUQY?X5wmcM&qwW|SnF*Y zGgvdWy|uU(XY*FVLey)9qC%;=zg3v_ou+KfSF5_6IX5(^%kTI+?aZW~OGU(db6aj@ zay{m6DiG>U3$@x4S$?6R(Lrl-N>5<$+MBC$0^$~J@zC^76ebpaebj_HJye>cQ;lZE=uJPH z_Wap1uGT~E7eD$~p(FPC<;%k8=<@RKH*Vaxmw)B@_3fo|ORV00|9v;DT>7QmF%e5E zt5@6hG_!mt>ASst=E>I!Qw4Jtt2%99J{|3>?wCGFDf#cfBrMO>*9+K zA3oGNrk6E)#*7=Ed(X6I78DdDBpe7W6Q5Y!Cn+iExio0qDQgLa{~Cp#Rr~KNGJG&C zQt`{?Io*E1Lj9Oob{pFvDQ^*mON=uPPgeCik)0FCI3r=}WAW=J?Jqohnx{V9`OWgW zt>t4GMTBf^5 zchQ>fPcOzE5f#)AIJhX`Lz|T7P7bB7O%6?p0t$)~T#R;}d$S~cUQM;l8P0Ttmoh)@ zsrR2h`Q-n3OTOoG-~V1OJpI5q{%HXL0UL5|8fDDx6jqNbI;kqFx51$7&5gpx$2>Ls zI2xZC=N;>jRG)Pq`kP^@<y{UX!md)@cD;Stj~SGMl`-tS_%QAYxczg`XZmUt7;c=Vy? zWHr@E2M+m~-xcu;@{?)2f8!wU>6N)Es&n@&TvG1*DK0qhh~CeGQ9Od8FWJSy-zJ9T zn0#$sadP2`8$vm2pT0etIbpxr!CMdKOmor^3VY!3ukyHTc}jYE^3pYH-mKgG?vUz4 ztx40$w;Xun*~F=%`%u{B!P5E0xvYxvvFsO@%D4G9t(u|6KFvcT)n(O-_@|{Vf!Y0A zj-&|QUL#>EdNCod_iAFaP~TSTUH+Q!aeeoXPxMS^OlDn|KEHO`h7AJKd!$TXJ-7c~ z$9G&m@eY3|Y0b|#YYAx+kp4}!<7j@e9>U(|J z_C4Iwuyae0pi0$ghmaFN4I5NBp09g$N+&Je+f9qFWW#}en@=9uvp+mI*c`nrr}F94 zaHZN4eX5IF^Y{P#7ID}0=g*%@moDAtXIlL&r}O#o;Dnw2pZUVqL@3G|Zc~_(z~n9P zZQFtPFoS=RJvO`ej(-rIB+zx&p-&`4)oGUKM!u7`xP+(mGiP&Oi#lU7A?jlCn!xZl zM?a?-d-zZOnR9RFnO)Q5=lLCf@XvC>ksCWz_aq)}tNi@z=G(b;wYz32&gMEh%hX$D z+qRb5jtMKD8n7wf&E!6S-H9x+Z>HcrM&t5N#ngp)J#T>Q@IlO&y(geHZ6P7k= zMV8bVDPMYVzcbIXgm=rI?cMP{*-f+3R?V`!;u5J`Eqx>OeE3(9>z75EHXJR>alDbY z=I`|-&R-&YKQT5e+*?_p#ayMN(sRJo)%E+`^7x+iIIX-pJ1*|zd|tDvPjJV&b$Pe8 zWPbBWJU7R(Q?npj_;5ATdz&LO>?fK{+VK9i;H7)bsq%Y7m#TI@o1$_o_4DF$HRf~Y zFcb>#d~}_l+kP|T^zKky_On7Ax$C3^w*8f2Q~tF`P$^yc=4``5OG+R8(~S9J>m%fl zAkI8>`<Usy;4fW+~H~wt;E3T||OraYM~v3FvPME3gpkf_e>M=~DGn|!c#uch|fGF2Ywtcb9Ki)yD_c|6DU zc7H8zN&WmDSqAZWCzUUIcn3CyCV1P=pUzU3z|8;qzy{yH>?yJHz63@t_i;)6CVA$? z(X+N6E*7>t==FLwedC^{Ujj|JjzuDt3f0_|uN9AMVEpqv_et8y16l=JrWT&J{qAz? zu#NJE@As0zx8mZ@Eh*A@ll$P~-7|NOHoEEDxaw**=hCScAI<(*Rh1{-ll}63 zC6oN-1LqbeU7D9)ZFBRU{53^TPH8)EQ0>>c#XBdTsb@L4bm>KIqgTnnzh=eAy*_+9 z{$rqFcGt~q^9#DyiA7IXo2$|wkY@{1y)DO|uXE}c7Vms|{CW^mJaePMKZV9wV)aa=*LYVaMA!+R zd$wuw%bC71SIjmZWHRIk;A=bTk_(W^WIPTX)3wWrd0ee`|1PhSf-s+$;`}j@bv6Fv$)6b zwx%J=G|qWO&sjXb+A4gQ;M6sl<8+j}+u_8zz5E|pCV z(u;oh^>p&92(`Jw=PS;)Y32Rle$97tUB>>Z4!PD6O*QMu>HiKau+!SW{IOI0cBD$r zfuOW!XJ%fk6`Y_TGjr3d7fk8<+zmKY&U9_md*&VCW%V~}z4rR^N*o? z*eTT{t3Qm9w_o0#e3XCE%ymri`i-gE%96NvW;ot3W-@P){AK5A$I+eHSGTKo%e5z# zDc|oKK6O(nu9Cbte`3vyf*C6I`{mBBKeqeairI($6l#C3aV$Pjr+fP8r~8V<;?L)v z6fS@KedPf?ma>hjECbsnF6ohM*{fI(+wu9@#*G&bMzp)F=RQ1FM>UNr*S=G5QL*67 z=#QpOGmL+KzVP+S%eLsS>7V_xZ%UW!5{?)Cx!P0z@%;KjZ-YY~2-gH#Z|?bNSonNy zd02S3`mO_874?41=zlHKQ)*~@aVPJaIqQ?Qd|hN3!~W{UugvZ!wv=U`4t(vAY>X~r z-fTH(o=?(pEq64%#ra={@P#v@Z8y!!-i4M5-)wf_+9s$ z#EC`jo?Imj2QJ;%-0!Kj??9TaKldG}7U7Twhn!U7(un8$A3n~OgTJb z-JGj8?{1eobMxTZ`6n&sZhkR^A^5kTfrib2UtY7Ew!M@$Oe%Vow=4IU_@hS?ZH#p1 zS;XwDFZawBe`ZutP|f)!X}8SHNtY7u>)f>RW-W_!`zI%-ak`6l zEqp66FU+r>_s6W67F{>Z6C`$|o_74Vuc7v!a(^RhmSn_%5A*hXV5zIO=G1w3y-?l# z>n=e^f|?@U3zv;*s-Q0u5SVNbz0wQmY-6rT6_HZfh(PVZigN@cuh-BZ^4ph zCz|8tdcO=lvH$*oC#(A=AK3KSIpppMw!Tee>c>7^k=VI0=eJGWpC2bIQ^T)Un8i(b zw_D9PV|Cc3PnMfD z|Jx?L+qSI- z-_?`TzpDuD*t$7@RgLHRn#7CO{mwpMsIhEpoGHWmT5HE|;jlM{?m15ja(!Pqr;1De z?80E7!hlb_;(N|qH+7dXxb61dSEsV;AoK0mgy;HqC#}=@et-2MrrlD40ga4OPBEVq zyS?We>r(sra4ENCm05^EvGDq7HP+kG-z>kbw#?_rv(=sbZ$tllP(9Ur|K9?`Lp(7@ zTQ*lb;D4*W;mEy{lhwQTHuXrHpKEP?smShBX^r{4ie!~Zs}Jy{Cb1@pTI^bre=6!( zetW^0t9+l&Ki+k4$D_GMdC{k>Uhg?EC#fnY{bVhVtV7M3yT@lNy}L-wdTGTZ2tHD)8vCT zCerC|?h8GU$!F)4nlgR*^x3nmYkm}@m%hELn|*D~%}uG^TcWvNZt9xz>WuOEDXKg8 zzCTN|+;?Tu|EsKo1ONYey?&#ZT_r1<-Hr46 zMK&$|b)xs7-bs;EPjS z{nRx&B2QIBZ#uzlFO>NM8C|;mahg**{(?&YOR7@IxpL*DYo(P! zl}8!BPcOD>j=A`Cw%U#S!#gMEe}8w^($eyh{)0z(y8k1z3}nyO?>l*9A4oG2zcbl$@s+g`Q@dxl?uW#+>yQ3X{#>PB!e1 zI~ut;ZRXt*MXulTXMN_2{x(yBTU@W_PTB0)zb*8*C&&FgaU*WYF0MD8->wvVn=G?N zczN-*;@bSQb8i$HQ=`K!`ir@$>^QKg$%}2yEzbnbJ^Xe*7WCLeUQgaBbR#a7^_vQ} z{nP2|FL^DPxA|V`*V!yg?mu5aQmG?o=j{P^L-)%kV5UY@v``=8s7Y4&z0&jO{ZXC-By zE$`=g6S^+q%&A-nhL*!$B2Ita|9Fmk$%F&T^4Icj31=}=7oB~*>f=#yWwD!&W^}u? z?C$5uOmd0exHtJ6lRNkJd(A)jRvd_1x@Fep`448dtvLL$`lqkm_IvOAoXp>O#v0eS zDjm4DxB9GyP^FBm;s(v;mzSDYxs@6N&s{#pbh`D3r#RDWan`QxZe`8>pRZ5a37>v# z^Gk4lt*|l=o13wC?IG>cw_+2DEiXPhJ6rkHtj?JK|NbibM?B)bv+MlgoibXtB&L0< zInJT;dV36K&U~M$yQSA%U#&VIw@mX$>*t#>Y;0^L(Z|{UAJ(+JrQbSj*Up_gCoaFg zW!;h`Pa;_Qx~{xqI$hP^5zEjqXZh7*NBkEmi|gv^_owi#eLwY^Q}w+5?;jTbyy$uT zW%UgEzK_CpxO5)RTqk$GsfkJ9Qu$joMUif$zYfA`J`D4!-&q=~Z*g}@Z&cp>P2i|+ z`Xt^!?YPFod>>5wb?0m_&`R|u7mH>clj-R+S&8^<5uoB zb*@uNvgMZ^(0d>M>G?Ij6opyVC(2k0x$gWs?D6T_EY5B|<+&CiSBkDBhg@guxpV6F z`K`MT7-jU>B(8gOC%HL&Pdi?)y zxs&TnrCj{!x2z17^Ea0&o;>q}Ti&T>Kf_$A@jj;fc%SUV z9Qz{vpu1m>_*c4GZ}bz8a{lw7aNjD0rE|*j5?&aHxUzl|TD|S#<>wz-E3zzv*SiFU zB=i^FWa26>s%@~`?+oH@EaXpq_VF)QTs@C#VB_B7TfKigu{B$Hpo{B`YZrgfQ|Fo* z^R7iq)sv#18M|-44$>l&qhKoO8rUfM)WwZ8OoV?ilXh2oV58{K!z&JSJxUBoaQ$eY twP8_(glI&dO%K-^4Y`q{?Ad>Y7A47}l0PK$7#J8BJYD@<);T3K0RZ-AE{gyF literal 5653 zcmeAS@N?(olHy`uVBq!ia0y~yV02($VA#UJ#K6Fi)t2POz#w|Z)5S5Qg7M8|Rz?N` z9)<KKo&L-Y-9vOh!jXNLlP{{(kA?7E^CSO$xUtf zGbW3trKP2vd%Am%G>DO=c36#X#>|$@oF-tsT@a~G|XY+YCXrZuYMUf~->Z8zb*2;=|4r5~pLS6=PkcTiK%b7w&J zghtLoRthgW!Vb*2{Ec^d#{ak5%ddv64y}6eIru$uF&B%&gvR}nb}nfO%Qcm`h@XdAhU2? z;LKNi^S@{QI&1&>z#{Eee?Q8}{=4mKp7ZESWnove)a{eY%>) zHvjm2wxr*kW{1spq_xDe^F$iHsC_OLyjCxxZsLb!o)NQ6e_h%ya=PTUY}uP?{eq5P z%Q@3lUY02mV`&I^DDS(;NB*l_*@f;8dDHhqz2Cn2^Y7|Bi5WaT3DO;khGv_6`UCS! z@21?Unce!R&doXLyXa=GWp*cx zT<-FUdG)TwliMfv-#n4DO6<0-wM_ZJYncx=Z#bAWUoC2h|E5zbF0mEwVfit6Mc}Q% zAJIQvS4^B{z4n#f#fi4}+>Dbq^e$v%bt}%8oi4d8v*CT^-SQP_PgG9#{H!~$>)8huVV_`jTmJV|jqUO5 zk!S9t%;a;s#auo!^vD0T-*58P%bH$~)+kS{<74Vo@p#1S$QBlRsi&H zOQfqofqAvw%*q-cLDTq!zn8L0t-12PXr6hLdEz?%k2diEvJ2<`w&%($Kf-yKQPX+r z?%ZQiYT6M;o@Sg7V**)kz}qbAF=yt7)c%c4`Js`IeS?1A<3Gf(@Lf{wnaPP;MfW^l zvN!N&Z{k^V>4C=U>5Rpjb)PZMub=Z&amH)rIhW_~AMJ`y*{5%j&gjS%_LApwy`FXW zhP>U2&n5Q;ec=6f?yHI%htY;tNe`z-B<4APemgDs%jD-Z43~1|X@qmINJh9?t`-g{ z6AC?iwXHeM?aW6uwEvcpvx}S#UVN4PIs`vFIyhf#dW?vVh_8w zOkPnK#eKypB|%AXv4hd>4F|QF19zR=ToGU#CCkBn_~EN`10T())nYBrrfOMi|I%MF z>4<%eq0lwU7wNFv3Mg|k-gj%HZTRy%w&3dhRTV*WVc{z*^Q)(<_PVnU1}VY-$DGAvK>rh|YPYGUp-Nnip@}J#?6^x`*(*lPpkW`uBM0g};6q zwX-%l|B;Z?-S_rf4#T3769={^&5sN;Ij2&+OIu@ItfRm*?wBLS!s}cQ*xNqc^D)zJ zQQvYKRk>q#zZLlKP2rN9Q51e=$3=y$FEZCHSn#a6!PBTfw$AXzvV;2)EajcvS1+8T z%Tn++EWt-igR_aJM^e1z{D!+To-uJ{P1SdKdU(5wl>C*XhxYTX)`=Y6BJ_Iwh3QMS z7IbF@u(3!=l!vU_9#X!i@?S`LfXnj3M|iKBbKaXCX|(3^+I!5B*>f(JOx~IDUw2lX zCtKL5ePKWHN_W4pzsf0cacTbt+YgGu+kS*U-srPQbj!W>8lJw7zfC`Cs%yS3`{ z7qzI*%PpGj>=NO-FS;*s!%_ch?Z!9#uKe54uCn&%vkyX!Z1>i_yZuolzl-_A+Fm;a zt+w|9*GnSKO#Z4_y7z_pM+3c$Y)w38u6=mF!CZ5)tb?6yN#m16Meg~F3Ie$J<##8G z=~?#i^oRZYw8zM&cJUIq)He4y5Az=ea#qOt{C{8?TI>)S!gK564}p}bu)XhEJZ*X= z-)m4{*0yW7k~R6JO7(>3?$YGxcfUHEHmrW95xwIA)9FK;LOWLKzT42wz1)HIgwTPN z0yE{p|EFIp{dXbl9cw-#htYQcNzicjwJqf<<%~%w%?qAX0wCJ^3D=tO}Z=02I z=K)(k-@2(!zy5Txkd66TEd9YI?9;=;eQW|L2|L{z++U>lZ(#g+rDXEacz5}i3psDg zl)WyvwEB1Ngt+f^Un>PHzxY~ZZ3%3w5tm;#_h`(*?|(V=Buw{atoSHq{Z?wd`P7SN zc9;l7r#-8q-p=Jwo8%Xv|-o@s@q5Z43#?^=0``wM-(eh>(o z^*GS>#DN>JM>015;rGc6i3JX>V~rCf0*3Nh&y?3(T%W zBV9zdzO7rFlC$!)n)1w5E)yEpOSVp1QWKZnv$-KZf;mp5%;xd!gr!r8zZ(`DWi+^R zjA2Sot()%VyROwB^pN3CrA7{|Mg?YTw&hda>?yobyoR+#{ndY)g=Z7L@9JJE z^Q3>W&y>B)eieK=8&tgk=&oW^Wb&B>Y+v%LBOV2< z68=|U=CI~6qro|u`UPbs0m^I7Ci0(b;p!~NT0YI&M5BEP(~pB6SBFaFDrN1vJFWBW zQkHKlk`l+YW?bL$y?MsPWd|13mAAdMu@GkHKjdgFH78g>gWKq5fTjAM59Qgx%3r#6 z#c{6Oe`rBd??(Nu&$}Ermxw>y{41-r?X{R$jB;PUf!C@X`%N6#j^!Rd8hvcu4})7Q zA{Y6;ZMe<-uC1xkrX{`kj?43dEXF%mH-3BkKO@rME|bWfxf9zCy)(BrJg2$3KCUF_ zSeS(+Q^dnhS5NW$GT!`7C{{<-eNTe|^K{!Rf#UGq>$Cd}1p18HvNC%(*OWKACq9^W z>eH!%(TWwdmZo274=!7Nk3nE2x7)@7LxyQqr|Y*)bUSMM-p%x0M&Q9?JM_A~9uu&Q z@eJK4<#Ta|1UHA#hLpQZWk1=n()vu8Bu#Hglzlv)DaqBkK;;vQ!F{gNlY(ux&#v9M z@4UIJiSmO5=6_Cy&CC9_L-=aJ*1|~s?eXa!&grs6u>Ka`Z&kCEFSoxcap&3a7t`cE zIZSB0J^zbrCda0XX_j|58>cv}VAOfE(Z%v=%H*k~4na@tHu|PaJ5Dd)jBvaBAxz&NGi1 z^qXcq*u*~xq1U(PpFD}LC$ca6CGslcGEP{dcx`!=)Sqn}(H=2V731e=?iDbxJ1GAxRQ$@@XV0s=zpBU`yL`S- zSA2s@h~62asd0IqWmVPrnH>*%NXcJ3Y~T~V=6}?|w+bBRSgsyaYg`%k^~$dW>YKlW zPmDa0v2gdn4Hx!oYGT`~m$CEs(l;SlV#|FJ-x%L@@mk0n|I|3P@JG^VSo<7X7EvkWwZO$;Ms@oP5QghAe=oXVLn5)>{4-a2j%rI(`IkFyzRy* zzu!v^O4w?uZoBdH%$!n=mRHg7{?&NI?XBONLc6$|~ zQ}`h|@b=@n2$|RNeA`nrkMdqPalB`XO04^eU5%X2Rc53xG~YkHsxE6MZ`jmx`wrB; zjo`5e=6cXIf6A|t{lfa3%L^~Hw#F-MXiSyixx6kS>^OH~#Hkg`(@b>E@G=W`{@iez zmu>&#(7&c!Qfu|+a&*phD-*V_WV*o9{!{HK*W2aO+FQLYMeT^^-*E7CfBc;Xw;vso z*0D6(KZ(c3LjBNv-^2^iGff^$UGUQ{y|aBLqeR-Cc2}Q857kc>wVK_ItE!QVHnz?C z6~1S8T)*+ZZ@;ViQa7JCz!I;L_e*T%fdl47D-ZwtVD+^8UPQ^giC;yxRn1Ra^)J3P zOLV){fypB6#}6_{=ajFj$oA1ZBgEH~%%&D2oVZ$;M^Jhh*Vnpfmvd%UaJjHbKmO!U z*8EDk&frt5=fbyste&TmRIBs_4(W?MeYg5OccEGL;o{9F4!C$RX1E`4W0z=r`1tz({EO-}W`&4qqL37c6sWCmOWxHfrZ9~27j{^#HSES-^#3FyOPus-Zo~jvZTPAOi5Q|Q@9lh$F4@qNemvqGi2 zr=NSXaOIRr*_4E)f-XIoYTX$}73HV1NHn~=suB44?z=5so}FxJ9X(7F8~wR99B0*k zu{ds#T>nvLuN{oKbB`U8WEM7Ap4uq)B~Ux?_2R}edjyRP91EELhrC$Mwl}`(>SxXU z?}BP$xR1`9XCOI4A+N&uy?DGz8LRA^6Rn~G$~)!st|~AKvrK1tDVcBB zBDVVJL53K+gG*JtKtAym*d4xxy|wh;g_~>Nd9$f;=xsbKw#!~{_0K$go1d)Tcc_Al zJE76?Fzdo!!!NsLcduNt+)NN;v(WnHg}0SAO66`iYJBJ90hWV?|5mG;6&x?Vc!Q(; zNb2N9&L;02>JHc2FMMqjNDnL0pX$n{)}b4g#BYB8_3g}N#pBD|CO2{_DT-GmiqzW9 zp1gU}i32Q!_e6KyX>XH$bIs<-#70Xt$0wf>KL{tjo*YYJr+g=-xV_K_fGWZnw?Yp{7K@Wl!T@YzjfY}*aDser8T2k1u^(uOoPYe%ouCa5 zT4Ed+$~X_GBrttoXH@&PZ9;Z(!fNRTW`pV~mruVKKD&yAEo9!1Ud2@4&t$+YrxW!n zYjb$KeXmGEuDY1!ovOS4-2BWkH{3H6Jz&Xyrs1qt&hi#X8Ha3D)rzQs6skvi{z<7_j0`%KJo->lh{ zCa+tjmef19_A~RFXw57Eqm>_bm9*{?pY?Iu`wL~ z-u#EwMY2mgEWX2kV7Y3fV1oTw_x_t)zn?c=T=MQwp>`G5o`mI7f1h-hQeu#oNSHOv zIYp1zWVdqNu2s8gOybHHY*-QY_GnMd_Qy}-UhsV8Yjj`lbn%klAtoMg;f$M| zPcPpR+Za0c@YMIOLkn*25uWh-UhKauEaktaqG=hL%{|I z1{TA6`(G@7$`kNLMXl)FUVerT>y;B2eh3*bq;N_wv^6j)cpqReVBukiWMXSjOkg-6 zWWd0~$m}q!fiZzYf?*R24}2Ly(u*0^u4QkSk}=sNVFi!*m+ zbJ-Pc5v@laAO6mFsbSFPkP?~fyhzPb$>Juz!i#6W*|PV!**hp6V7M@ifq971pY_^G z<-#iOrB$3sn|;&dcf9f4)92sc{4d79^27PY8>8E&)4yyvc{9{czo>5Z=gM{OiY(99 zOnj^Nc!tVkmE?OpGkrd#PP4Z!`k>vuzxa>7`v2lD=9kY`$~!dJcio*aJ9XXk_15x5 zdrzF5usd{Ge`Q4a#&aL0{0@z~VYqwhibV!I_V>4?^&40Bny9=kFI)OL$A4ZFC7yn%J_mGbAdl>r3<0$Mb&vNz50QSMKQI*fp=YzkKfp-3a&d zY20g6{&)+ht2a1weC81G6MEk9$>sIJ*+Cwr%Y*{EU+NaAJ&NIf$jR6GR5Z@#Q%%#v zOtt48Q4eCexwZ&09$olSB!_>|7m=NpAG`}?TYqux;m02<`k3PmRJ$jB6A$k8(J|V4 zeT7}Em5*XN3$$=-L@piuTHqmt@u6vW5I;ap*C{;&odsg?%|%Ld#v8T?D&oH zduNTe9=IPWlHxrl%%kb^1g$2)wOWi@9Isqu%3AXDUAU`Jb!snn%In(Y86i8bxGz37 zweD5wxAVW(+ekjUsd4tmiK}};HXb~+HTe9il$@#;LUMPWU9_$8uCS3iA9$3zf?aHy z(%wK-fFEp`$ZL9liSI@xZa)tM9&0(4)tEyYr9d_xPP>!46!k{Nrb7wQ( zSy8-mzEfZ9$7jO*?GpbOzGX8k{d~V@!t&Q9jxGVWW&}BW^5|&Eely26CnQwlczyXk ztG8b!D_uI~l;N#;p;gh;O+?B}Xm&t&9!Ko7bv>LLv&D89Cnm=zsMV=VDp5RG;%K0D zD{GP3))gzKg>-+Fz@=a?3*F!m){N3ciY+`*@09 z@NmV+KG-^)Q$!A7dL}GlQzh5;8hPEBf@#)Ywo0y;u(8F*;^Kz$516fAyk54O zRbc7nJ?7`E=TF|Jet4ssxazjv8(~Uo1-ABS))ijcb$Z{Sw51;mdakqX;JLr}nPg?_ z!#XBbE|C?7L>OlH+-rZQZvXph-nq>i7EE!RuKM=JE%(edZ5h0w-e!&}ekOiPx;(b_ zM@Q>vzfHRSY?{mx2RmoQx3_C<-7nJoRDR;_r|2n6x^Kh{lv~W^ZT@j<+rjq2Z046T zCtdgboO;w+Ve9TCU3RWl`IK@6;*KqGN|fng-M!-KBaTkiOHQfm_fGG=BD1mZ+`e<` z*0OMkXauOf+{pI9Km5lBreyJ*Q@6&2uvM?S%GP`+J!{Xr3fa(q&wfv|(DroDxOQyA zwp)RlTK54Teqb8k4M_48qM6f zb7yO7>&%%mZ*R{(f9_nb=F^zLhbtaxv_g zRK$Aj+=qW6;*%O;U!AmC9s0Y?>4>yvj>0_$U*U}`OPBiEFj*etS70%HG0EZhL>rE! zF^jaHERdS3zS|?O@l9w^_{rr0zmhga2LG|uf85?t7WmcV$^wzNi^2w)O9I_`FND-= zEIK>aPOW=6qt*J4SG#RqSrtD!^Yim_!L@RSy(?~SN({Tx`(!73Z_NAdac=qM&BZSrUGf4X56jES z`YsJxx}V>@Uv4V%TE}yr-k*N;>CMf}=?MuAMt9B!U+EN9_v#mvkdk`!_HAk^D?{Cc zU6Y?amai@FUsE}}fdicl9R8v#ajb^iE%#e_l_FfvadfCN= z&h6jc-`~GXJoo;-TK7Jg$`kJ<+O)3u6<(K;;&fPLGA-v>qV>ra0*aXTcvnx#i|#eJW`C`?Tj-nOy;uQOpe8d~!B7?%#iZW!6)_WAp54 zqgLJfWKr_t!^2BUeSX@1;eTrzwdlly2Mf;ltv~$X^ogDG7^Yd7GJH_h^f$IT8y#;v zf6}LOPqRvGdDmXqF0j71{8nFqYfalK2P?_WVH)l@r-IRML z=d!P~r_XoBj1|FSdlNv+v&JZ4Ghl{_AG8chWI|1K#|ev9Ymy2NM5W z=w$wIYxDenPWP`K^?wz+QZ+lsBmc1T+7)*-xR-gzs#(}JDlM~LY1%s{O)Y|N`clsl zk6IsA9@#@n<>wkaGj#7%+1OS0eByrQ|8{%aesC_#(~Y<)d_w%a>xp=-lE|uWU({ss zBSZGeB_%Fp-4OFsyKCR9gCAK66ooEazC77SO}4@Lr)BA@E8pJUmTkD+b9ZNd`TEC; zrB58bAow~oF_?SSt%;`&h(BmOb7fOh*JINzmH#uMrk>*e;wez1(7Hxs{e(9mO3|vp zsZEv|A6B<(wC5NGb>7=kp!a@a-Ijg&eAR3C{^nL_wMIl1u60~$9C2ZL3QwPU1EbLm zMvI)j`-~O2H~Nh&{_*~sk^b`Xq^l|uUpnlP?c}|)gUg0N;nY;q`3#aW-=?}u+r#o) zAjDwlo}a6Zbuo)B*KIx0v}saD*M)%X$zcapUGYAZl(yihiO0KS-HP3!riK&u9^1OC zN%G96i$Rjz$&Wc7EWK&P(EjV-`T6$q{g%r%Xy5wx+3*LmUfuo*hM!^0Day0T6Oy?n zG%Wv~DHLOpJSj(Q^H+gh)v62k5*YSy?sD1G_d2L}wK{X%Cz}_MehLClN>~rrm#jm(HqI^qNd~2 ziz~Edo6OtF5q32qNmx7CbgSU@u9Y^D3a1n=UwU8qVCmV8wNtYTmtU}{{bl0n%*rzV z>u1Lt#ywN6moOaLlv_|>Fw@71A$-x_Dq;71N5154d>Z`LE$3!yNLW{R-6x*P}`{;TssnXpx}__V(rR3fIZqf%dst6YxVwoKsOu0u29y;9#i&Jbh% zc+YRs8U{XnsT+z>MalK)a~NZ0Y-To?mfOxR|L)D35{7ja(({j=j!&?2FABN7s8U=i zx;vm!t4)T(rY|&u$79W^SL({&)|8%pqT2t|!B4+ocUzmb zX?^?`f$i55YWSsuIyO(0J#c1DXy2c!N*3D~;(oEpG)$MjVp;w!#%N{-T1`RQ`?TeQ~>YM)XZaAHkTWH~Qf>4jp{*MCEGn44(p!AGa|V z+;A6Te-LV(b>Dfu_&vFZJIA$li+|0$`u4FVXLin&jUpP2>q1(tT~o+Dw(#AZr_o|3 zl2z|4HMsgQv2-Tqu4@x^Y@B`ba?$+FlhiBq?_4cnoEvUeUT#te?#Q@_kK zPT!Vy_Z5STR`ElI7{PC!@4xsZ^0_>4!!a|H_f6XwkM=HN5&d%Pv|2*Pk+qt}S-d*G zH*AqBWKx-_wNU8Ik`Juy*%Nb<_dHs3gV8ENO!&hh>4@}+rJURUz1n4e(WXgV{wVwL z3pW~WL_IO>o^8y}%j+u6dn^5m-?bRM@|TxX*DiS*x!06Ep)Pibo!&ntz5|K>=gT&P z-(2>*Ac151zt;DPfvs;IuQ;#8lOgG~C$sW+#)b}w?mD?X)vh&j)MlI&|6pS~c{kGy zmu0NGZmIj93T$K9Hf{f@=H=(JCv;C+az+0{&q3x}+a5exUGYfp$mKv3 zI69r-nZAIU`vV4_tmuKt1~WG$9eYmgc}K(9G4U`Zm)i<_*dYDTITHU z)6Q-1npvRqYKeTZ{1nrYGmrFrA2G}c-l4rE`iB4WeUr}3diqIf)}94g?c2^zhNo{Ouf0!3ak6M_?Z|n%FGkH`23j32PrJCD z`-7_+`Hz1*XZpk8uUX1BCeCH*ocuFSTsiXec8f*Vb@mfsyMh$+s%K7JHdpeei)oYh zCRblm-Sgc(FLQa5BRP26`b1;4rkjOs{ygLG&t$Rw*?9`Kiu-n3HO>?NaP0GnRZc!R zuHwP_Z0($G^;~rp*Nf?}+x|gY;p66i3~QW4zAb2CHaPVCx+TN(+iLlbX7(56Gk)b) z-ps!5g|d)p;Itii^Mqy|*x=g9d{8H7+rR&B=5kI6xw`Xx{qj}MC(fHOE3l12N<=_Z z)V1;$qfAGaTd#A^PB&$@N{(>lEQQXt_HfP&mAJ#*#RijNOt`d~&nOt3u(|Bu%bHs z{>w>6Zz_m?*SYGoVR!VNGt+m;AGb?8{l%&4O!}78)6-sFUY^a+&Uip5emSE|;LL*K z?KXZ!56t509b(p`AN zp!y6NG;S@TY2ZSOp|ykp@u!xZ2%GvtS z_tD;%83%TL{L=k-|F@o{wI*yk!h1dAcr8O^R(#w4ZhcZUtF@LzSoX|mr>;=G6?3-qe>-isih<`zR^QGp&+pp{&#w`yHlDgN=Xv%?F8>F=&Mlm-no-SA zW)=1N*EtjOhNl;OnJt{O)+ODDmRYU*)~H8f!_ns)0UO1aZWlFBsFqR<+!H%_3qH@Jr}bXwx2ogy3zE@ znJH2SCSIst`=I}{$KEL~LKK%Sn$f>Qo;`JQ$hqlXA1kN|ZIE6fXd^;#?%7#rdo*u2UVV}6*x})_b&#QT%pY%3`JzB|jfT!e)$Fr;Pg_+X6 zQ7=Eudpd8f)B&jjxts@<@8LFWIK1vsR@-)(#=Syd-FQhEtiZv z1UA%4-pETle8Hve+C1sog4Z{B^ZiJ0*5vm8R4RC1BsgyQhWM-9yAMkDDnxILxD>dw zZM=;-DZ3x|cfq`%Fv-i)QXLr67SNWPOaQlkL zsZ(m9SM9C)dleRLXRA&6xn7RPd)eE}RKv}me`w5~TzY}9%m-z zv862gG`;i7d&k=o*fxNmG{fq}k4+j5FP(obH8Z{EhC>;5_KJ09_gY5e)+DaFWa%B) za)8C)LAdP9DR(bjue$p?w>IWLw0lHU%gTcNN+$O+CuYt0;+s;#z3hyu`jOAebwU)gg^pF+!PfuGwQq|Lz3Qs|w&y}wb3~L*YI*Y)_DOs8 zT%A1ol125FojB$~j$~ef~#`mHx3{Miv8^r-`SOd-io*)8l=x znd<=WN{Mq$FkrJGhY7Hs)=sQyIu1TOm|rS70THFbK- z!j@}a)yQZ*%P>5C+9J>`QS<23kZS><&F7aa5mL|;Ti>3c&v|jlk;yY%s+eAOrl?K6 z+oz$g>t(7|{HgM*Kz4Vti;QALn9+|f34MA?FNYtIo$Sljvv;z4{^C$?<{xXA3YHW( zcIyXKRaq?vtG!b3H*l*hgL%rbD-3y6cega;Z$5G<*Cy^n&XxxYmNpke{c2d1(v%?4 zEb(KNy|{W}c%-TI=bL3Mx$ZZE9sC5_{R4ufPZ%X`6lcZ)$+}W#pl`?6^<+9AF$GBliBv>;)YUZqmUmHYy7J9-kfS!7jtX& zKH1E;T)n4D|JF=#*JYTIde)iy7}siJEx&Z2Ljxg!N2MguS|cW;<>@t99 zsl9*NY*SkOl@$sc}aM{H~OSicyYh}t5>!ti-w0Q)tG1z%C#LQ>^JvBT|Q%{f0 zY5yvz1MhkttPEbB#bCZv?*Fv!EK9@I-0~K>nSIf_{`Q>W4OyR=f_~oCm=SRB&wGm) zmu4UReHo|wC7=HPcr-!k$07zF{$=51X;&V8Oq^Ab_2F8=l?N-2MfWc6T4D5G`f$6< ze$CXrmKTj~l9!VWHdrraGs+Tp8=N7QtN+-1_fHl6;HUXd4XPp<=56k8vT^H6(DtBp~~J#t5^A)TF7`OMQTrrZKp!w?xyJ7 z%2T&QY|6SZBiD6(BFF5trlM;O|N8U5aH0(x>b))6ec8;p>bupTyOXv8^$zqsaHpejem`B8PBjcrP z1(P+iEkg}^+vRRgLE`Db>tQB*wmav@gdwo)ZztZ}hl{R~u?>;RGdSx@EMJ7=u)@?fL5s{NV z2OiY@d20D6n!nk!;Wkf$tFMUtVn&%$77MSOm9Z{+Q~7-Ea>kx&*_F%AyS1!mN>E(Q zaKmBF>@_b~TO!(cI@Wx>^>g_eZ3WpYA2@CrMu_Zb_Vh6q^$OW>CG*?8=bM z&~DVHy1jGLayEl^rq=E5{ao>eq6>GK&El#$YG>yAQ&hxkUDfJ}sP=$Thl>Y2C1Y3H zm>zj9SbydJpI}SBqEu*=bVW3D+I(jF$E0vwl1Xs^WX)HnSCUJhnKc z&z8Zk`_fVE8xI6edCgf@yEm+6hT##NZO(d6Qo2?!u2d`RXj`+nG{AIfua!{Wggx_j zIC*PKNj#NRSY)$*$24~L2?E|nLgJ1WThG|nA2nZU-Kpgh4pdv-d~;MqR;c{r?se&x z^fMn`Vz|bzZFgZNgSBk>tu2{fudQV(xG{C>6yd-d%e#Fmg}tIw-LW@7p3G+Vquz7R461ieUVK#fZfW!(N z1NQ7`UeZy%dE&)aHif-9UT{io&(jl~vmWW+-7h`)U5bai(lRgk^ZDtw@?QB^*0L*l zma$#Gm@3%We)K~9zv*{Mm36~FRw;CLM=uL6JI(%KrOAA$1Bq8YSI?M}?!Vw+itO|S ze8HC-ciq%AINB$p6nrc8h>oUI^P58-CYDSnv+mGRH;C?Dy6(}8(=!XIUH)#KCjaNz1sM53*N8bo#1oUU~8{L(Sq)rpxfz+QG2bvbHyuY&aCC|I5nb z;0qfg_r3AlZNcS}cX9jcwmnfiXkf@&XEVjKe6o!HkuQFH{p*%*x%Tg*6|;fby{uj5 z)wgME*jilu@1NGol@=hc7FaOoxV@TNe(&ancdHrS4(q&_+x|@W|Iao~zi$cS8b+OFldTV{ANQJ@iJZR7 zkT~uJio!jaAPZZcI+eQCsKW zX3TNqv&|3XdHd$B@L0HdPoMj>kLMVVYd`&Fx6!raf7c2wp94?!MbCWkCTO^)n~mF^EP`<#-Dr> z-t1b{ST*Mfb4t$9Xx?j2Zivr2+!KG%u(u=gS>C)T|E>H1%jE<0HagcR+KM^IvL$@F zboovRuOG;Nf8^iIZ5I|6-d+0o+EQ=vlSQmj2YjviBo0a)*m3<^(Ykv_E@nCOs!r$B zesWKD4-cEu%a;dU-eP7=(C}$^(QTt? zqAQ;N@z4L8o~u+Ge1PNK{r2ziyr#h=*?VSYF*NgBGO}0ZeXv2+N5Ob0+lQIi`KsZ$ z4+5sjE?OA5amT{Ni)JqlkT2hzz+w7GoDjbPEppx5+?LqKNP1A<+F6!AkOKfkS zmc6RQp}KUl^6P7YZL+!_Z{42zbc)zcFWIG8fm|+6@ow8 zb!~PtUd}8My4kgS+PuaCDm=~C>rYRe&X6^CuX%7`T4Chg<56?}wTj0nu=L8={`&QL z{dI=C*!wf5F(#b!S;<(V_UmMr-I?$SSJi^griD-2XnS+Xbp`FVZ-yzZljVFTO@E^C zKif;>?VtTZk3a7JF7-w;{hMOgT!$x{nDiRDS2=2Rt#*)$eq!F5d`jnW%&qz6b-qD1 zf|u_!|0!WjHTC=RV2x~&*B_p5VTm)AEdA7Po;jZ}3lstl=Uneba;_|4OfWBQ{(h(U z{M7Kcm5gf`-(<-Awwb`T!ML_=jX=B2)Feg5ITu!pBYQdD(MAot1j zA+z_an)&L<;gVP(gQxn^C)P|ie^@VO5yY7L)XuipXp=VESJ>Mm=C+d6Yf+Y*G8g z^9}u9Vwb#UIbyx5okBeC}yW zJ-Ys@6qZ_rFEzB7I`3nPzjt5ZS1+Hbp{tfXe(A5S*kvUjYF9c{{c9`NzwjpWNqv{< zl;=tDFttuQ|MppWK^2!^aGmPneQCK1AC-itXUzEWV^&K|LrcZ8b4t5~4_=*>x2&&8 zA-?LRYUj*C^DEiw_o_+GZMrWozv2<6`|)L<7)qO?zwbxVyE{9j4lG=?rEkj78Cp`7 zr-f48W7o6PO=+CJ`{kB?#iU?rF|AWMHBe`FfTg&;wx+5)fsBj z`5x)l^H>Sq-Icd&;p`c6t;_5F{d^vn_20>v~XN>8A3l>kp4M6#P*{|gn82CbGdrN-P zbu~TZ8FI7bR+99sK112Rcisy6Z_f5qR1OPBXKQ>Xsk&Td(y>{BE4J?M+1dW{g+ex$ z;nbbdSNGpK{kuHQy+%>Mpw*ox?O1Syt&2~o8o%Dtxpy7)rtg}-oU&diSANElt&ih3 zdwL&TcCFBOZT+SHZ#JK2nRZUR;qLB@U*6vSzVW!+$&y+e%A3Q z3(ow?&n_hJD2egLQ`cZ^JG*_s%l)JdsY0q0T?ev=1GxkmAJ?q?mZz^ej?`bO%;r~_Y zjKq1<=FSauzh%#_502TmAmm(}^Q|}o%lGVi{-@i>>0}i%gsr)*WyIAQpS0Pl@z;r1 zlbs8*8MYfT%=bFAkg-PX)65*L#J8T`!UH0F3v~e%FYOw`mrJQS%aS3ERpTj$5s z2D$yFtAZKwO>6)8hOo}q^TA|$@1aFz>=EvRHDlKEY{gl$8ZL;a0& z#`oD5u0Oo$fOLL>!|r9AZ+_m6i@SZQZ<6uqoErw>vKepYo;|KFDDT~3TFl+Af0)Pc z;q=A|m-Q@@dra(pHymNn$#P~`ryf(=#~ryi*U@dmjQyaLnz$-p5#t)xghT$}pYPQf zICWkKy;&^$>+_{nU(5R+ekR7{sm5sjU@h7hw@7xo2^T-a-K5f-SUO`)!;g(3l)o)9!rahh-9yd|rUcow_Y>-Vd?y{Zh7}tmfRLWl0 zN%?BH-L&uD{e)v*m1S-P9ht)Wr*=Q<;jI1=f8N+|;qWHTj~oA-H`!IH^5_$D#VISx z69HPOrFT58l^N{(o2F*#>yXQOKrH*w=AO2m{IRNI&%Bs(tEHVh zcj)%>+5ecbLd!<(S*^qM9EK?S2I)h^togcq2c6S)*K7L zC10E}md=0o^5pJtfv~q0C+pXxzH6K?ttHv}PuYg;Vm`<2A9vm^xBLCH()(h^6Be!qRmc|lJ3wP<*EYSVFx{?`7Wr>x z`V$7b9g}uf3FWOl_55V$np4()1=U0+?B!E1n^n2~(puq(;iaUVUj_HGVA>Vmy2I{N>d*VtamNY%ZI$kDpm@f5Y~9%OguR&C<3@ z`)nw%GUw5fnkqdeiAvr23c-w8hIRUB1_cisJioqi;+lV{^7FG!@9xi$A7|(7dKqG| ziLKx^!-ke$78)!<>k6;9ZJ3=LjB2ywk(&h>`A-$ZgPxSdlOgVx~?N^w$monaIBwRU+b`aoyL_l zlXo#~zPGnJJvB8oEv@Y3CD&Is+Pxoz?W+9ztn~G@pPzlL8t*(f*sK~~lA=HBmyz9v z1I(YUEb2)J{J*n$=ei(O$#5m3WjCg4hp*Go&`{X1tNguP&5wegUk;n~{rYIAuD*QD z8lKskHf?I-lU+4$>P3dU(@_&n@AcMP5mIcPF>g(_)yJQuM=CmcK55U`G3(}S!{!Fv zRkP$ycdlCG%oe}LFGlC=qNnaVo(Zpdt+QZjn#|HR8&+H?beFmKsks4+y+I!+p!HjQt0b|IR3soH*tDlV06F z&%L~|Hri`1dB6NGpU~q7gYGXOv%LLvp7~32#ApdmJ|H^zxuo#n`%XE6wc-sY|9<~) zC1T5#En65aFxX{pSv})_#JNSvVvpJ){OT_$#L4)yl&+ZKKHcCw!?)zu&(2RcdU*Ti zC$%QiSH1pW|3Bg7Lxu)JrX#sqoQk)LE|F6*ocQy=#& z+@~#KYdt~Jxnqyrt)s%HPiQl{Toj$NdD4=MeRbVeo;{9?vuwWi&_nXolUZy><}Ud@ zJ>k=p$9L-WK|WrXc{r$^LjVzhZAjW@ct4!~CVIJ{p$W z8*kh2WyLO!eXR%WUmlKc7k;h!Y1Zc1?qWrIymHRwWxve)@b&iDGn?n#GdN4 zoAJ@Py9q4%2MlKZ61v{!;O*`0&HN+hdRy|Ddk2qKTgLRYTo5P;`qkxkX79W+7E0^) z6up~&{!cS+f%3AR;xL29k!~?w#;4MY4j-@C8b4=)kFi7i;VnLX<;_SAU9n_p_z`*`%G*&)1zh%A8T=8*^sM z)!tvzPM6fZa@-U?anh0LpEE!GzxMI*@n|D0ZEx`&X>&cE-&0xkpYnS4>fF1{T3*YX z*=uFI=B5Rm)7v!5EO(a3_JZ&|H#3`3ON-8~3|?+l$@Ot-_VrUIm45Gf(8T>JyM4*h zrH(28j;36fwJwt}N;z>pI@%+WBOC$hBLsH;yc}DVBa~UVJkkZvIU(Mjg?FrYZTC8TtxRTYsI7n_sar zmm$J2zI1Q(@WNGCf?M=>6^G+GXdLSNMvZQ8(Vq%M@`S zO}i&5KE{zbLZp*3Xyw-HW(+xVT_$?-%Gg$!6#VK?wW|D-ax-7TZ;$GAr7H~AtX`)a z;(fpQ1w#^JHpvY+-@I7rK;nco4(&5pf(~!o zutC73QP};INBXJDs$buy%HEoL`s$HR;f-~zuk4RBJQi(Af9n3`-)cRxyxLGbh7~JT zL~O~J_{P>mIf6ODdv#~&h8d3efiaxhrY0~Oc$`@NI*E<<(cA5Zxf5734sVO!eO2|z zWd^?KDNTwW7((JZ!x9!KILZ1C`LHgs_Bk$4zi=pOZM@ArGx_!4#= z>PTJRvgMC*%YT!n+{+l(EWJ9%=;1T|A6fDpC8-IELeGk+Jo;u zd^$b;+}X2N8TwBA+1w&`@}yEX(^{zmT>4eFliZ&$>hwEG9f*oLyJpU0p1R4KvV5FB z1)H5<$YUxm|j)XmI{7{cz$ z-+dpRX8re|0ZZP*N3*#O|C_#db7ig)$KfA~56%`7)n4TB^~uVLOg*Wi4HZFqJPvaF zWw(iBSvb9F#ZoyQj=G?w4_tMR2AQx=yruD0aoHCYp$SK{9xYUF{t_3gEUO(q9=8DiUIBkDDV&aj= zO3@8Zl#lf?Ff%h>ytyOfK$p_#+p0_6B`#%SY0Qv2-*6=V&3vbL`Ct0GL=1Mb?cDji z#_s*<6I<*UL=6Nzcp|s!W%g=p;fi=8_;`0(e*XHS%FCF-L=xH33v$I2QqF73+-dsg zsVUgC?m(B`bj$e%3+CLnT-D$?dE1k|zP?3vvW5;m$w$Kv9E{lil{Lru>uRPjk<7Yv zN|n;x@r+mIhrd|3xM}X^3d3gExogy)?GTqYbaXK zo$LHaX-#J*=RfXmoA+xaxE3Dx{N3X720g`8fr$?@6g#gXTc=Ff)9Z^W7q^rf+jINOG+^IUl)-^zxa>uy_=Yy6mUQsHQD;HFuDi$7K!x70hPt*^r;+O1=nR%USe zY>Lsrz8gQdW_(Ofe(1ksm1dg-*NvZzf4*IPqHrVcSS;%rjl9aRLpzT<*v`!__@|*4 zGs%+gTFXr?&&N;Qtfm%MoVnQ?<2fjH5GirAw``I3N?RvoZ#4~@3kFv@A zvmVPyaOAV5?fjGaTff`k{^f%W`;%2R9r>}6#m-cj6NzPvoh%}*fuJ<+TF>|WIpc)AmOlSdpXWuc=3%zz`QI$|k@euB zlM6aDeuSBDuRGDCvo7+;5(SC21i_;l4mRCx;_hlb%h*8*icjw}m^*Lp{Le)y>V6=R!o%k;&-9-pYj0#a;ow3B4g-^Sx988P zop5$-PW0)y%sY#88JKulm+hAczh3mcj)6tu)`wzK_2ZZCp7{B`@}mI*6OZmr+sPZt zEw|11?$4xf;KHP-UuERa&TFmt_z0xhR|A9d>Sxo7 zz9cZPNHF{hXX0UCWn^o};xu3oVUb{1rFwuNKp=r(1!x1FV*}%YC~7PCw>A8@2?GNI zPxGJM_iVX&XE1=aLKZ-`LMlVHLdrn4LOy_Qg>;8(g|vWfg%pHrh3tduq8#B`uQ7b< XKl0ex?I{lf0|SGntDnm{r-UW|F|XWS literal 12188 zcmeAS@N?(olHy`uVBq!ia0y~yU}|7sV9elPVqjqK2)N6}z@VS(>Eakt!T9FtMg|53 z2Br;vmY!aeJvoAl;SQ$+0}BrW6B|yFkr^b5jcjOOWME{*N;({1XlP)>N-88UI2>TW zN(vYpxM9uxLSy~gxA&#|VmDYF)paPG{`>0n@SROpH$-*q7VYxh=#=TL`OZb%Y0i${ zE*zd6(uLRm-Y;IRJy&J&$ulWW=FWV+eV(fBggM3c%I7|}O@F_+f11bn^&EaW0b?1B1xqDZynYty^nLzWJTscUtD( z$NADyf&WGOjLYsMw%e(6?SD1<)UlY@X#ZtA4UEhT4EjO-R(F4&7yN%OzWatw>06o>9W1ei{E#Wr033D_ej;qY&9>BgaLzs>iRj` zO`?x!M(%mO(qU8mXaD|`f1JHuC$vnH?*DzFzCUk% z*)D(Drt)*PVg^~wr@imr%DgHx@5iC8`qR<7_x>=?+pCv0zl`I&(S_Do*(H4WM%tfZ zB@7r05*UtT9-YH=gz-@M_bPAZ$xfFqnEJ`T`5swj7BlPJ?9d3$rX?%(v>8uhU%Tt> z9&UpKkc}HWKRl_vW7sG@YtN%6Uu5R>@%q_LyH)he;5q+iBU_!F6TbMScwM}{+Mv&x-Q1bwAN*JAnAKB$i{kIC@_%l;OgzBA#?uh?V5$7~pbDEF;X7xUa=)M1FS(fy?n5W-veS9%7EYjFH>%XLH)kU5CT`RXmHuJR}YA|JP zU}SD7wG=s}8S;zkMVWE=qZ><@Y;C?zD>ySldF!6cJ(rc*rf(?y%DaT?&3&2bu(Rdi zyZ3*Lz9VwK>t^5*_r0>d(vx3$>A6mwoW{Vw#`9pe?6b_%_bM(=db{~}Kch_8o8R7N z4itAD&R^DFs+F+vt;S|0=^yjWU-|yF`L}URc%R$H{K~Ag?MF5|k9={gr}D*)EamxC zk4_Y3rs{6xlMj1ln>*EPX6u99^N(C=Ecv9jtg9+ZpW#3QW6kvD-8DMyoA=#LT=>>l z+9uvg@=F5CTgnT3Ml{+q}Cm8Tz? zBJnaBlbIgpEsjy*`#{TOa^e0G1U2C84$eh^zUP~qxpD$=@?un^OTRh!lwTE<7)k4$o4Uc%+Y{NFjD7wt7zx4I??Z5wbSljM!+wZ(Z zX=0vuM#f%l1|Eq8lRji_SFuaG{I7Y*o&&NacA0P9HrGpvy}nDL(73s`>v=}- zg^KBm6sN!2U!l;mcmx06@ZFJ_a}rFWrmVjIZ=bmDaU+ezvrHI3Ip@bJ=B=l#3zjaq zSMA&u>plBXw59eWpO|Es&+LCH*I!?!a8K!4%F|a<^A@}8ta^WU+V3e#1z)o=u<L%68;m5YD2DEEG=Tlc3pYrSVI+HwWolI1?ke8}sRapOdY=Y*(LV@zUpl$o^NEja!*A&ph8a<+|T@kf$3;3)&`y-!G5Kx&A#w z#=22cTJejc$kOnMzZe*p*%WN|H?8*2ni*^Q$Bk`IJL^vINnr5@9e-o@buIUO{dT8z z#-41>7 z{a#}EBFRJ+N8cyGo}g47AiD2;?d7X4wrNFF?tdA;uzaF+#(|kG`}ikLVF!8NCjZml zOX(E;ev3+e`jdn8WZ2|As~%`*alYDX9`fs7O~r-j zPnZ~ZBpOurw{8*p__kV0E{K+oN0U!qUk2=a_xnxS{geB)UT!)mVxr$Q?TE*gr*g7; z{!i~)HYsBT36zjG|0|jj^S$=1 z%bJff5B`3bBB%cG^kqpQd0wq$KZ;i6E93@*ssDVqP<2v#iKh1_@9lrjFL~}Va~dQ6 z&RL4T;|fE!wyX&P8C0;pY0iT8Hr)rOUs}dGabb3tf$s15cW*rlO3@U(HmTsju_Mzw zrOK2-H$96}dB!Had>NaW&Avmv-&h|{KKN)$64QYcUWo?jf0;%3A7oXv4DP(Fi&J^) zHz`L@eahs66QexkSWEPpx7}UL8hGsS!NqU6q?Hc_eLSdg{|7ruL#C90!`ju;uA1%G z^~BFib5`juuMzSI+YNO2gG`|Iaqfe4q2?mU$~N z_?&8B)X-Z0a`%~qH(PF;y;FH;?y8lIDH^}ZE#`Vof1^8_U$FXek| zyNV@y?|=I#IYld0&AYa|m4=2z=1ShTB;!N7=_?ZKpS zugNA?^mFf*=*)fO&vfNK_oB})Ljv6$f~&7wH+uP7Vxi4_#`IvhS=HX_*o!?ZR&SWZ zU?9cJwqVPqZQrjiI+oeDeE-AkpI9>X8Z*BLFcQ5kbRkG*Ydfzb9YVqT6^$oAX7(qo_^imu@XIF?GoAukIseBlrs{&~Q?G7xR{r_=`Hp(! z_3t+%FGWRND?HA^#K4wwp<(UyqnkRzg>AB1llSJcPAZmrDLWz3wSL*f{mx%M@O}BM zJX3qZ>8%e<#g#c3BsM&3+7<3!^D&%}#je%z&$VXHeJTQLyB6Nb5)x5ZGowuP!W)LU z`#2BlezMlvH2L+xnn=_5NMAN~27`nHzbkr+Bj+;*GHtx~vaZCqn}vJDkNelYJo31^ zS137l^}L9eir1TWmPz-iOUf~@@wBZg{PlX-;-!4TdtbFa*eA~x9KtEd(vbZ5_M^=G64VODA6se!WNi*MxgpgK}<6T^kU4+HCf-*37@Qk_CEi zC;ptKYdhoorpFx{7#R`{Gz5q5Sk_qb%xJUTtQWq&uI`dpm8p=x@qk^~lbpISX z<$L;3j}w2P9;YNj!hr+YX8u;`wwo`8zkj#e@*2loakD)pPTlX%WVCq(OT26`eG~SNCI8amx(;<26~nMUTp6A%+wRRV)Vq3j`p%QOmkTew zl;ad;NH~yi$*lZj>ThjZwTg*yTcdcsn{rCWiL9IYJ$+8~-OI0QpDat|{K)1Ea`buM zvKi_-3zprN*Q_eJ-`~7q%QPRB2h-gD^IiHAZE|n(!`8P4i)?3f&zZacROwg*wk}_O z+-|$%^Emr^lfNv|j1!6WQe%DK@&9SbthcLwUSIjWF=MCPo=-I_oa_t<2Odn&h%0)3 zsDI(FqWEjQJVE_S=4^U!q^Y6hPkgM9^wI3Os{30{Wc?A_9w;3n^7`)HdwfahPY&bm9E4#L}YWjz*j#!1yJjM0~=38|8(`m`}QyI`K)j^`^(#`mrO^G94!_8DK-D=^u-nLt+wyrTAv!A z_}4lhdHu|pEA~8gvRt}ppS7^tFD3>Fg9p9w^E%xuLtY+jh_?}8{yw#OI>Y+&75lAh z_aBln}u4b)UDDm2F*L8{QY<;$e^F+I|ONyu6 z$=trAWlfNg?UAEj7S4COXa4O$m!J33C+}V^_Y(tUEy+FSb9payGxG15v6z|pvE}yH z<$7noJjq)Be0%$eQ1jyJY4tPfn+nd%@ZV(Rnl}4Z>woJc)6b`Rx2&G>+eE)|xd4Mf z!UFG2T-uh3FP<(gKfY_?yQ|6RJG{PKekz^5?XY@SrQLsLj@L_-KdztWQS_)hn*d-Z~}V?9J#HucIRG=AU1?==~wn z4<&B5!ap95InA6rXMzXAfre7%Y5Old-nLjK>)4J-@4miyc3|Fa<@leL6ZdBA2$lRV zzxX=G?5=;$H^p1YoUff;)xdW2>OPC5=U(ue{+)H@ANxVMn6r=X7sWF!-@?cv@uG>J z|Cg88+-}(~86FoVyl!1Tch~*oaF+bF-u=YFWZJXN7FV~4Nn{ri`1^zW{Hf6Y(5E^j06{Nkrw zGg5j|LN4rS_|~^=W^L*7^>b(SM&D26yVbP@lsg`6NxGLi+0VR|@7TVVP7@eRZ>^m7 zeRcKQ-go=%ES|f(>!(@Fm2^Rb>_{hJ!NXlLMA_=0^c(m-aT{m&SJUEC#NzCT;2LLMdydz0?oX)QkNXV zx#S`fmL6r21(g!tW+&a$eD;#}-v{HvR|{sJn%=K&xAE3&{ky@+PG`2O6|31uvT`o{ zGB12L+vfi}=d?eMH1SR^2DKy-4lMZF;bi>t#)>y0#vg+IWvCmKI4aA&`Ze!dMb_T= ztNhNqKV0AUqx$Hxi4Q+7m}SSEaoymP#HV=yo6k@A7RCVT6Z|M}O@1^rY|Z1!V#w(WgK-t`M#?F4S;MC`aWV^%V# z@tm{wp30ZgzjOYcdwOW8kK^C-&uw>`y39&kvLw!Q`}04GyIxrtMerTlmVKe3c*V^b z1$*X%fcixbIN~>7$e-{0QCXJLNVa#w>gt~nLC@FE4Lx<~R#f3;@2VddkTdoP>?)!$#*lu&hg?*D!TlOJhEi*GB- z%}Za|!~1#aCAJU^twj@<|G(-vSrAw|J%8368Jp7G>`ezhF&ZQs$Xwm)-fvZtY5pYa zDu?x@jrWQsTdb>PQ=L9BVduO@5sP*O+%#?A{umEq|hA85r10+e9DeR_j_2lC zZ#?XedQ9JQtSy_NDk-Yd9OnB z=X*?Fx5%V!hPpz3-;oRKc~Lokq@Q!`o>i^!A>pNKU5%hAr^N0Osl?S;_h+*=@3)in z3If#$voD-EXujIi=)B%1)$ck+tf#VnT01Xivw0D=2_Aff16^S=ebDen@3=%$6JKPJ%&gxgQyl_v$ zOH+BW(y9ixTSebXm-~6oUDEwv!xN|6`nVk_m!1X8dbi@C9?!-#^@-DeJlrY9mGk57 z-g{1d6ZTD8Q?&kftj5H*pS->0s?0g&8 zYyNh^I*zl?*K6}y8%hUF&%Y~DVGuoK!sn^y?gsBXZTtQHQ8$wY#^z@&b`N5WuA1DM zwyo83T7#NjEwk>IXN(so#{K^Lev)R*b%B>+_hU{v&reyu@!gj@((4u6XLX0m2pydq z@Ke=q>p8xSITL!DKAX8YIN32KJYwUi_-l2xu`NP#Y5AO&PD-MolSK|Ve_SZt-=k-8 zV^d@DieI|xLhd`1Z_0G$=oQRd;Qm){TIt_^e%W$5XMgEwtygs1WbgI#+^M>P53-^w z1bGt#Iq$Sh>gIj_ttvqi3rEB*zUArC38QQDZ{( zzjsqFBpUjb2JFwS?OWpE?SAsAy8Ta1gUTJt=I#3&ys-bTUigV`6NC40f=0sLx=itE z*4?s>F?{vxog(6)Vj*tl=jxo?Rj_2M)!x_jOT7*T&CvGzc)g9m_J_B==&u{k3%YWa zulu!32sDCq>*UPcyFNUa_xt@;oy3O%^IV-4ZE0Jle!0o|Rmq3e*o|vL*FTZgv^lbq z=}gL;*9)E4Q|*l`rmb&uF=k+9V~Fuw;<$awn%TT_r&*a7tJ&RDIg;KmwWd2Tj?1cruMDc+kc{=DOFHtNCOculTh3MQwU&_4h;bjpfBf&5s$m{)`WsT-rS3EC2wr!i|?w465rMb48Q_mDx33v+UPJQ*vTfJEB@0qYX z|KmADqPM!{&;Ok=G3amA*Y8X>^Siz8X@Xkb48C`>KJ@bQ?pf$+yIt9Bow27sC-9++s$J7OHov|7>gCtA^lh#u-zrCk$GCBFa{iZDDp&Pi zd+Vm1X|MI&L1Q8eCc9OB-I&Q1bA4Kz&Ag+Qkz9J>LjS&{#WF{#T)xeh`(?}X#wYF1 z?quC`x8u>>Vxx9jM5<=-+w|+tGum?AI2>MG33A4UgL8I!=SO9oZjQH{s{j2?U(T$4 z$0fHm<<}NO2l~fbP1N3=a7{Qqf>ZbRo02&}=hxjXntv?rjIEdhs4aBi*jvxt&Y2qe zJ?k>#^5?97mGy4rf#%5h^LZwTO%}4~%lxv=d9`ir+x|;@+_F*M`nV_UaC<&s!VQrd z-`l+1EGUBv=&_U#`5|y1eP96vM;!k}><- zh1WhU-~7JymEQfTEpK9#9bWSyMzwtx0)EVVa(vN=H`C_iecK)M|Hv(cow1uae8jIb&&$1jO!;;B zPCv7zf=e&uK<##i+ZIdz=1(jMom}-e>20v|VbSUhC3{b(E^XN_b#C<%T}P7_v*ygR z+w7}zz1el)OcjYqUKwB3n#o0;XV&a}`+nmUG51NJG@Zt2b#_P8#;^yuzJU&r{ftk%Af2(H9 z<;=bIy_+BChVj1W?JnKp7E<7`^5Y62Nsf6lO>S?iG_U-5!|2mlIh_?P%Zv+iZPrZp z7d89VBz)?NumUKrJ2>#k@+_A$liKj``nf6P@ek8w*mTb3{IZx9 zrB7xFrc5}-H ziP+8U=9QgpVZJS9);Zk_P$UQhJD8m;F=@K?<5D}H$<7N;M)E&_$YgE~&vrs{KMYn@4Gj}e!>0JSJj=r{`_&+wr_FBL`~O2nXlaY?wkv|di2if zjW?Iyo#gQVWFo^6(Mvh6f9(^uRM(zfys0Jgz$F!<&DlrZPFXGP|F2f1^L_M`ck@A= zRtAn*%{|&4j}GqTOaFXRB~i*idDr>4+pFZ_Wv|@$Hqc3lB(|7>aX>sr=G=^FMGf9)1y1P81KvcKhCz} zp6+?wAE(*A|0w7$mY)4fA=LTPoI@au_fqWNdUvo#k^ue|qTNtNctn3_Aj}`Nd|K?|3}L^qBoY zv3fpUCLV?v#aC<&C|)#==wWSTWMk;jpL~L6@=KfA=8rW?4nGy-Ze(C)SatxBiXVxtDf0u1+U|?p@G0$DnVFD4#_0Hx}BhuW{1)>)SPUxgDG z8lu+gV0UrX+y>!{_^J1VL`%^6R$=6cKnZfhB$Q!OvgVDjZ;75IyDR8Buhgq_%px z+=G`htzAK?5B!+az`*`D?(UoRz4PLq7j$ze9AIeRHZ7`dYf<~X{IJS>=fB40 z^8{T%QMA!o#pI;@-+g-*u>Y93KCIhH;Q+&d>k<9pe|8?cXQn(Yi!sl(;Mz*SF*ucn;x8BA$xJg(l-C@f&&1*Tj2iE`FIVBvo*+4!1}5N1X;hLm>`7wkBe zdAUUK$IA2J;N;e(?b)AZD%Z4oUwOmviJ)|4ce>v@V9l4`E8F51avCrk2s?H$`~o}S6;r)#eVidt!zy?Ty@ z_sSlJf3#9$WMjCI_2A8~JbAgxOg0)-lR<(0rf{2=Q(gI%nqo6XwF3+c(Y$jaFV{Va zV)ALoWo594R}Q>CN96#>!tI5{>-c-_>440&j$QlJ?}V)uh&@|&chG-JiufpsxEvI5Q55M>g|N3@ulBzG{_K+P^X`|rgO(|=F)*?*utgTU z#NSC^)Km0q;QzmD>$dw-8KghEHL(8pRm4%S*3`S9oaM(sfdodoy7$Xji}Q9eO!T~v z%u{;Ou|Y6FZvIRO@7c><{^GpIB=bJvr(3pftdU>>%Z%gcYEm_SJvK13-}`-h;mp*? zV-l|>H83b2urW6l?D;e~_clvJ>?ffF77IqkzH8Iwf4RpR5qk;3|M%5t&u1I%4ZD`8 z9pETnV)}D> zCwXJImTmc_wMnf1>vFkQ%Prc~=HI`6U)$Al{@*)7SJ!`>9XVY}bJFeHgTJ=Ne7PsT z;LyE)*C&TBSL8dr$m81FwmmCeU0$Dsg?yji){NLh_-v2gU=F3`{)A}>?qfJBT*G+H2 z#ePNWi`F?dMe}MLl@V3Z-N(s%!dCyQlR^P&crZi47L9$O-#GaFzHK`B_|a;n9Sq;@ z&dWY_jOXpjf|?MHk7`FZr0n|bHcNt^NAk{v90@kIenyKG+*=v>Id{c9W1J%@bBSdN z!#QbVHz$dctPhS# zSwuExf@l7{$633xUVez*pLD>GKf&1MSCrG=O**H;YefCCm%F(8-+vu-avhW3wX>@x ztk?A1$Sc1&O7sA$f&beNNz2bN&N*-YiR15|H?<7XuPyl#BvT(9~&|) zH;6x(VmqygPkP$X<_k{i~w094=)3m_;uUYphhIK^@$3-H;D&C)(X!$|- zILm>8%u|;#^EL{{e(NYZ;&LKm{bdWiwn76zh8Y_**TzoU>du*Jc<;R@gZ=*8d-XSt z^H4Bz6lFIu|QJz-Ego%r>L zu05xj%k+y2ZwLRsUfo>GuvuZt1E23Q44V%c*xWbcvSxeWaAcl-xBqqKINfP`zQoQx ze7ue~lp$Q5aYl6Jmm@tF{-&6)ZTKm1cs)zCz_aw0r3~N1?(9D>V^%zW%f+CimCfg? zBW?&Yo>?aG{OlIq&2jIJPvnYc5I=CWlHnWoYFzp`mhOG8JRsCNrTo0IbSaBZsa(q(mzb5vhAB-9dKOdW5Utz4wFpZ6I z&GjD}8T1 z?2FfTEO=B|%oqa-M>Fp|b!jiz@3Iy!#xOiTcqc25F-G*j{s$^L`&ZxmUMaMfL9c=P zfjA>iVssK?3`2N(%rSu)QD+8k)&j;FjfR_hp7P!k|Mph#**=yJstnqkI~IJ}dl_Vy zEW-oW%S<~M^cqYhp4M@!7r*y>J!3&A!*{y}VA1f^e0f*&8$dauO#OLfp6CJA0>(9Y zMT^(7t^8#6`lsocPk!PD0zw(Y53o&p&K$AZ`R8G0s`7)xe!# zJBPi1|B*(6J0p+&#P)cQ>qF~WjP#>UFrGO-fe+*qhRVxSX z&FqB=7vqivFg#~SlRxhz_thVS)fl9;Es zmPPcyW{?~E`YOxyc_*-c_*2?qr1vlHC({mwbCc(>8rVFPy7L>;*qeKmP=Ue8QqF;-BWPWZJ>Nrg?MYSvOtVjXGZf&NIrqduk_tfOUhI$c;I5 zq76@H9eQQNa&TuTL;orUy@s>f5^cX!JWiU#FSG9GGiA=G6`vVn7>d=e9FW?OZeK3@ zoZ*{cvGS61GoyHjhO45fVH~=)-)-l+UD#|;&T1^t%QvCl@)yVr8)Ftp{l5`=f$IU| znR$;gPc3AKZ@M|NLsyXX!wRkkOc8r)Ex*`k+J=cXCn_GhtJyH|g{~PdpTVStg*GAw zSPf*%GOFJ*&)7Y`h~army5EadBg;rnkps+H4crgx#UB>S`qcZLKi;(Q$M%JKw^Py< z88*!HpXzkY#i`5Sf;#gK2D57JBaa&=Z@A#g#E>47{-o~68lP3-Gvq$nfz!@6BWaV2 ze`{>66f>|NO88&EAby~x_W=K_)pb{844F5?uNOQc^56euR>NHD}2&L6`{$i_Wze^t4SI6*$u=y zxgXqVHQ-8k%*&Uew)o(}wT|K(Rw7zV`if_rA$Es(Jf7Y4{NN0yrwq$XA5L5S+DYm~ zG=uu0?oy!xGnnF@?}+1C8Fugyi|6W0%~kE%`W{!-UYT`q$u|B>}UD`t9COhH{f_j|+2{I1O5Va&k914SGL u3>*dw3I{-_fq@y+{-lN6Yfb}(0>+X_TVHRQEV~o5!rs%>&t;ucLK6T3d1lf8 diff --git a/Source/Android/app/src/main/res/drawable/ic_dolphin.xml b/Source/Android/app/src/main/res/drawable/ic_dolphin.xml index c2defe5980..54a3af22ce 100644 --- a/Source/Android/app/src/main/res/drawable/ic_dolphin.xml +++ b/Source/Android/app/src/main/res/drawable/ic_dolphin.xml @@ -1,27 +1,33 @@ - - - + + - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Android/app/src/main/res/drawable/ic_dolphin_launcher.xml b/Source/Android/app/src/main/res/drawable/ic_dolphin_launcher.xml index c43d170346..39ebd6c496 100644 --- a/Source/Android/app/src/main/res/drawable/ic_dolphin_launcher.xml +++ b/Source/Android/app/src/main/res/drawable/ic_dolphin_launcher.xml @@ -1,19 +1,48 @@ - - - + + - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Android/app/src/main/res/drawable/ic_dolphin_silhouette.xml b/Source/Android/app/src/main/res/drawable/ic_dolphin_silhouette.xml index 40cd346b4f..699772d871 100644 --- a/Source/Android/app/src/main/res/drawable/ic_dolphin_silhouette.xml +++ b/Source/Android/app/src/main/res/drawable/ic_dolphin_silhouette.xml @@ -1,11 +1,11 @@ - - - + + diff --git a/Source/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/Source/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png index e50a86dac11e7aa333882860ded133bc4bcfe012..49923a0a4522181acb4b90a70d7db231651c8985 100644 GIT binary patch delta 2271 zcmey$|4MLzay^4&iEBhjaDG}zd16s2gJVj5QmTSyZen_BP-ZnfrKhlPu`D{&<rH_y#Yy4|yK zc1_PPne382XZC5IWgU5oTm)vMXghK4xH?60+fspeCuZH;(0ZK*(oDMBrhJ?C{I%!o zqH|vl*)lf%I{sJfe$D4OpKbi#eXguKUp%Q>#mjD|t(Vp^p#=~)c?FAxo2rAM7GqZ+ zXF!ivLsAHn$YP-d5>pwDB1>IZ?xfbadF7kGDn3`765LxIrPw*{yYMfPesQZ>{{m(do6lV*^(4gDqlY_&)2oS5is8RNpR-N>WAVBE zpRTQ7KJ~BBO4#0^#@|4`{ki0nP^ZcVAyx&JD)mgW8>cfc{$n`d_)df88=GXs2K5vC z2N`4(ZVA5jDS5o(>Zz5w^BGriAIv%+d04E&;BVXp*^+AAE2VZ$_g65S`Zw{W#XB{I zWVw~6vR15WJk>ej90RArf&#{ctmi(7Kb7#S7ht>Be(-zK9qygX2@Y9h5A+-2*_7nF z@)a7HpIly6@AxmBJ=1&J<}I(y_~uJHD9$i>#Q5OamxxJM#hui+J2%w`2xLlI9LT&O zvBSoqHMdvChFx!icK4T13%A5-?Sk6}D|6(xdRsLZ^G3`+XYky3vw|&Wzzzk*zCR)l zxJ6=nTopvVaVPdRY{;;ddCg)JV84Dv&*>`t#DpvRk{IVm*2gtX&q@oNJ(J5XkfZYL zA6J)t{~v2MFp02AycNIOVzBtJn%TyMMdtTk#kARLH85F(t~6PH?M!l2k&cC^UX+;b z--7bmz>4cNd**Ykc4?Tx-^yXbU@0)+E=%&akNPt9uPSEMK9{-h(>ucMpSRAZV=n!! z|Mos~FSo8SpOkB~&9eTY*2iteeI8$|0~IwUuP9S`ouFlK`k;(UtFSYqYp<*inundUDEKg zW3>Rcp`LpMhk?Vw#S7HlG`xD7U{`Nc`21b^$+@Kt!Sj-9li0Wyhbjkh)Vo&xY&nwu zOK)MjvBGU9-2&l9>IZxnL^d+=F=*Xu&rx1dm3iQK+qV6etHT(5?>X&{cilOqUef(` zSHq!=Thf&KXa3MiT6fU3L(^iFPl`ahpnHQ}@fM{xx15`w)1x{jnkF46?XYgpR%B^D zqOiBHgVV*kGp9ODqPRxBK^+55+^TUtDmOWMYEx)3wIb7iS zmVc9((`5pd&8z;M{d4W21eTs93=1CQafJTxX^p(boBYlB>TKuT?+bDaj@z!+e`?xw zqF%~Fv95IoyNCFhw+qU&d)_BV_pL6s_5Uu(8gkL$^Tv;7^cfNwk{IT=&1ybXJK<%+ zr^6h_jfBff{!QiAP+FaC^(gbfseWdsfba1V*BzA~-I^=?;XKEJPi*hxPJGz?qg8yR z7<<5y_=%Rs-ZgjXPI&P+wpqT+=A>HJiEEQs#FXFFGugzXD9id}Hm%Z=yR&nmwY}kj zC){@)P5+!xxAjPhjDh2y-G9Cm1?=TMwztn&$E>jacae+W&8&5OkH$6o{QFoNqPW%tAk%%wNh1+m>+2$_}Z~c_^a<%r`XQ{c6pDU z-93LS-Th8sZeDzDjjn*OY&1@t=ANkrnQ1E|%^& zrFr7tK^0+ZR#SD$sQAmgdpHtSe`q)@*xev4IP=AfBZe0F(jg_q`M0yggq43w3ttde za(a<;+;-Vjwn@$+TfIXZ}a320&lENPd_ELEp4l{-<6+XhbNS9cv&s{ z#c_AvO@<3zf8ZVgD zpDvGBbJxF-)ob$yw&2#i0k=+`-&HHK-61n?&pET_;p$V5OKf-Wj=197K6$SC&xHTo zx{eB}bKZ+D(ptSfAfi4wUtqx_xhS*PvP109+j5T%*1ZL z+np0{ehPc_=E$4%>A!g_T3J6OG}=Tc@Qa;j#>ZS>dNAK0+sH%j;>&&p1_lOCS3j3^ HP6q+5*`vPa0p@J#`0mTpJm)2@(+^?vPFSDDQCKcOY+^Wwn5KY-fIkhAY3AP@00cifw+dt=js#o zsxfaBKep)5j>QHqRBJQueE#nn?VMWg{QR-Ubze4?!&RYHQZl={udTeW&Sc3J-@`}5 zHu}dzZ2Xj)lF3zN@-qJ2(o_AGPWrPs?@y4IonrWH!A_>+S@jK~q08MDJUqEPL#X$SD6^<+@T_AAwVy3| zGNju3bRR#wJLlQkZ5s`;XL4|7)w=ImcVCI`uEyCD%QpU)c}ZL2zNk=kZjU`uR;o?hal?emSo-)utMhLeUlczx?L4G#$?nqEH?P+2 zwqd<;xZZzqP2|K&!4CrJ-dt4YopS!9!i$i{1vXhSjXPrx2ktu{euhV4^2fI)I?nbg z6?jMg(NIW z-r9Vr_Ly(5Zw0@03B%r7-ILB=w`Y7YMd-g-zuqrZv4%M1devP)JSX2Dd$Q@j6wmKd zp*{L?p(hS|=e^$ZUFwx=d)QC;;LF$SGI@O;1g|_=w{YFw+0Rxd>s--lgxdpVxOcqTxi}*;c#L%4hozZ}?Zp^VPoZb^ftuYP)zJGb(1C)!VZ{ z!}iUE?fcrVez4|RTXdtap7qP53y-^ZCIqA%N&IzUfy>g9f-8({r9#t>6kM7UK2NBT z>+#en&p3L1vpe^zS3Ukb;|14DjfIan&a&UOaacCvmwfZ1vp?>re%DwRVB~4AL%`1K zz=BUtP6+R7XN>(c!M0`g54#!>t#?-8pX`3foco=BxazLtm6!=lo0R(}T~wM-AE@;z z_IO0Or~NhUH97B`+8X~Sp80Ca^!0RAOlx`K75gWek2|e5GPUYQMWjcn?KvEfQZ(JR z?dhw_D=Z9SE^D7$lPz-m)17Zx_nlw3R(;tNvwZLNgbVI<-Crl|*u6G#d z%RPKb%d6h3JrJqSI_X8lrQZsNUd%XPd%C+m<|uz)b*9?ZI)fGNw#y!FpZIafG@bT< zzi&0B{nkId`DO`c72_hFYw`2`=XM0XKVY%E_WJ`#rre;3m-aYqZ0$>~ak_ZTo+r%i zqe0U92lXtWw$6pkr~h6@le?-%hi-3v1K_l@JA#eRV&S=R3*dmhHr#jdi^E&F=< z>Irj^xH&IF!aLjrx;(Rq|Kgh&#k(ZGEMQymNp7!(yDzt^#fc~Sk#z-A zSFPWDl5xAkin~t(s#qRb>)NUu7gnEI+@bA1d(~Ory@xA|>NkH6TN)6eFnL$-U#IU5 zHWf4Px&Gm~`g~czVOLkTze|3$DN3K1lfR-Teaif*H_8&sFofV*Ac2!y4P4%6vUz zO8VMviSM%fHmh#&b+Jthf}`Z2c3zRnEU=Dl3Og zq*y_*=2HI0uU1>B^UmtGmN#1WJJI>zw?d1C`EU6Zj^v%+JZ05pV?C*F{BsW!H9oE@ zS-17eeB&(#ZI1tNyt?VlNuetn?)Purw!3~_(ds0r+0}O@)ba(KUlUZA^(anE;cNO$ z2i{AE>g4BLjre0OG2iZ5jUK~=&2xU|YffX%`Ia>Ete>b4oBTiL&%fh1^B)Vh7@1j5 zj7&Z$c|q&MOb*Yz*ebinySIFo3W9`QaPu*R^a<_Vg zQL^ySH7s|h$j!dd@b|i$3^%Bj=J~XJ-r;v#AZ7x$?IL^Q#hJooAfBhIpUXO@geCyO CDdfWd diff --git a/Source/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/Source/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png index 032b6ff75ef84d6849515dd4f02f3ca610281b81..9a23163e6fa1c4b8f4628328e296b18570c06ce5 100644 GIT binary patch delta 1368 zcmX>l^qOmeO1)%>YeY$Kep*R+Vo@rCV@iHfs)A>3VtQ&&YGO)d;mK4R1_oAMPZ!6K zid%1IM&^Ws%Czq{_O_loG0IC*H~TV+(1b2d??ny#T@5QFgdAFrsGB%lVNdetk?xY# zSg=WXs;>j1vf#~wiw-oea1jvDSS_Ns^oEnB?wK<`E0yQQ)X(&ho+dOmrS9bPo!{q7 zHva#9PI3G@SD}+V?JE9W3mz_E31ae`IK|;ode^v8s(-< zEj=sTu1K8rY=6Azjc#@S=?BaHM(mP2t)LUzbHX$*OMty6_2os&H+yxNe#$3p_~OWO z^wRmq3yZ5b9`iTY%k~u3e`q+AAbUvsp_i#k7Dx4w^$})@b!O87Gc9?%^cnK?1Q=eo zX6U+{IylYn>j&?i+@Quk{1rkUqgGhPzB|*LAeLew!OsvO!}3Tgu#t6}ZDOCG-T#*F8jX3G|V`Up#gLwm~# zxDENd3V8Xh--{NUEE{>Vd8zL&o+tilA{-mHmYP@nn7y-gSN*$xZb?E+-hcN#3bVWx z*8l4E-sb`LyyUEd&dgF1)rdLqX^v9c!*03t$cAMrHuB}v1+OXre!zyvE zVw=b2ZA+$Jyqo+|Wn!+&g$TWbpNBj4Mr@lu!%4N!P<0D~o8mF0BEj%v#R9RY`s1GW z>si_4Vh;YBEtU~@=x2tpkuuXxArA%amWj*7l=&m%87dC(O+Q#J$Rx`5)Mbv-HmQ#@ zJ2ySL;iL56SdKzR1!IM*pi2X5JnxpfM{XXltor}Ybg8+{gq>Y)cExC|IT+E%(Bkd< zo#ET9e_!@1eCB95Ws#$_r=mpfbw~HlHl`yvM;Pi^81{KzsAEpQr2TSdy=m%o-Gs6U z&(<$9ky&JG5?AnOk#K+Uvn5CKIHqkr5OGXqp1%0%_pO-t4p;jTWu(YGOL-;_Xj(Fp=4nd9pWg#(v6uIU(fB!t<{9N!d>70=G z<`(yjHJmJh^(i3^2h*Oti9cO@UG+ii`OMeq{EoKm0`Uyl0=rEna1?%Am$LZl$ACL} zYn;wF*d*yFr<~~ZWLc$9ul~EH^o#8lorBJH^Q$-3aHlAr&|^*i^S9djhT9?!CAQa7 z4@dc?_o`Wb>Dp?}rakp(vRz5D+d*{KN%b`b1LO*tjRCs?|x3B7%8OIKT_?v0-%mQ=_&p!;7Ey$RevF5!p z?+4$&(9eZj<#KEOusxr%s{UVEmr~lMD``v4-MJe)@3zW=Lo#2@Hg9Q&v^wIGo7i?q zsPA_~;{)la>EG9MNzXoS9Jszh-RoeusNSoU3p-i<1sA!m_D=qr`To@F56-`=gW45u ziQfOezxMT?d?U3L1{RK{mgiqzvW=ZOwSga*kij9?P=@w=rw<(FGoGNc63Y;2n>L7c!)G}Jbr~2K7(8A5T-G@yGywo}J8gCV delta 2367 zcmaFObxLT0NIAw zL(zbDa)pIkg@s2!!jumI8~o=<|KK>O=;rLJF#ptvO?et?)`o39{dr@$rC`?q6CYhO zxy)&eAJx(=?3g|O&t+sc`nG1-2cLV3EceY>rL^gfok;B5ZHonapZC>&eyqql;|v&X>$7+9~_wjL-iqY*|;QWm|i{&erM{JL|gDXW8sy zUyimed#rcrVC)p*o9BJbzO=aUZ_dlD^Ga&feUIOR!a|V5RmZ5aZNVO}m1tu~|&hrVl(mC*vY5lv5GpO7`ezRdz9U+VMCpK(#XTs6<;=bzKmn^`^)g_&Z}9B@u8j8 zmWFaX=HIu?i?_XCD$>cv7UOZbPe3c7f#dP?gR>G3hd*AvV;j@@ z!;T*95iBuQqKgf;c{cYp2=TjGZ2w-M5b-YRbpQLm5BwHQF8`>>Hl?>ZFy!&OTfV%< zMQuxqqW*t7ul?{qhwH_V`B@iBT|))C9A*h!HZVx~IAf;4I^`#-ODx!~9Tu=}n4qk| zw4}5Ab8|(#Uh7G14W-Lmi#ZJz-_RUsIGPcer%+v2wDzNxYX$+48%}M6T-(x9cCyC)PH5 zZTy1Gr(JeFQ@ujYeV?o`mzccd!Pk2fedUZFbLzdZzhZA^Q@?MHEPw2rnT_iAZiej2 zxj29CQ`O)umSYWyEQu<02P{*UP3ig0Yf!PTd12q`@F$m=rcXRIyXJ!M!B~$rbC0LY zr734N3d=dYXo_z=R&lQ5sOA3ef3KYo{`@-N$^-RNdT0NZFz*xZi~XvLJv9q=88*L z)UQ0;BYpnyxA#gHTU|E>fBd|4ht_vvql;KKsw( zQ_=f_qdsMcr_AE?xty^7s?*|C0lFo1Pd033wqWDAf9C6sg(l76Ypu?vG3BwvSMAczDo%Nq8QuC?en427|8f`;<9(OA?bAOu zg+5KaJJa#uqo4Ox1>;U%k_l4k6k%SqZhcV5DHf9#TGb7=ubuULHtpb~qbi?l)|jh` z`xZaCt8X&*%%rC4yP|Hr_J4Ovd3UtmHl-i+tx7AlMn$ZMTDx9EFIq@rZT!cMtOz@% zpP~)lc0ah)JKON`;m=N=*vmaT3!Ycj9}n8zoSK(+G=!~TvBUF_MavhsztA!Ey=TVj zbGc!U>-UP7nXei%48EK?aFctU@$T;eZ{%IBTe8~B4(#|p@#s%`o%qeS5 zW~BuR;#I#AJat8$Ii3#OafiKAVnv~r&?H``4N-Ief}b57^PBiGI;yU*hajgZRYQRwE@o>*n(#*}`he#y%JcW!=aG+n3l>W}S& zUt+)N^D}O-?okN|%bN9};@OnvKVOI4nI9VE7M3ZQ9KQbUJozgjZTV5`n$AR`gY^nm8@x-fo&0N){-ECN{8_bWzXbERf`2-?c^++CsB`;#!-=zP`cHT?!nju~X}OSD{ABt* zT|1kPXQ$lRqA`c>u&d4ib*C4>9`VGymMD zrKRyMnH|aeGVPkfu9>D2@<81G3{O1%Jv}C+c7cI`fx*+&&t;ucLetjJ(9q>Sx2&>g zTy$vFGIN`72lbM}Y?s=?ozMKKeUNad&ssW={ZOar3Fmvte+=9%?wTR)ZgNC4)^GXc z_=t!f?l)R;FXx=}cC=a>z5U(fno9n9dvlxHmo8mu$Vh0tWN~O)`j+$)@g|~=F0jr` z+q^UJ{k^@r6S&RN=a>a^N_!@z7BJ;A$=MV?JEOSz>aD(j<_RJd3x#G23Ha8l#x7XB zV8MgZYkviD4v6LWr5W-sT6fT6rT*Huy;YYxh1KJ-v$9r6$jHbXxv=HTTqkSiS96LAHy8giNkAG_3I6Sje z{&&tEMoY$+?_a*$dGuwqv;3E%5^~+<+!qSfOXMsH6#lh$w+hYrF`v_-x%`{LrnZj> zSy`{9ojG$R*ShS@54ncyJI=FjvDX^9Rjz7Ux8j*aTi~y(&Fa-^*?&J iVjjy~D}M5wtLNYiPT$Rw|1;j4_SBAR=JOfIF#!O;)pSGv diff --git a/Source/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/Source/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png index f20aa29c6ab0d5091fa39138ff35888b9abbcdb8..a8f6a4167a3ed86ed9500d4f9b0b248c383adb0a 100644 GIT binary patch literal 3095 zcmeAS@N?(olHy`uVBq!ia0y~yU`POA4mJh`hDS5XEf^RWBuiW)N`mv#O3D+9QW+dm z@{>{(JaZG%Q-e|yQz{EjrrIztaPRbVaSW-r_2yP)Ph6<%@sH;#(_Z>mU%pfpWwm(e z1vf_*$1WXCrbV240wP5i6*Ei}j|p%F#!19=WTdF)2u@Y#4iae6S?X|OX-< zCWnNe2}{T&0RyEBjulH36I?C`1b8|h=vbh*U{YIyprf;cDlemQQ(J?V6q6eZFXL1b zmL3i%CM`^j6O;}WJQiO5QXq=u(5~?M#I?F7zNx)%so`ut#A51S$Dy6p2e+yo0tn5Hmtrd%gOQMQPv|nXjc%)Q^ZMlmZVC<8F7~{V$%ww4nYVmtZA zqtr`}{i14SeQw{|FmH2-%MV3A4<%8|R@E7Y;t<;Uz&E6Qi!jxH{L1SNzX2gkrIr`z1TTXTO+%Ni6v?X}9-#Xr1 z&to0MpDVV{ZtgbzzIWg5UmNbXn77%BhI6o+^)Je<>3<2(z)nFSN6^c zOJwXM1N7HTWzw&k_UTje2RFaIy5eQK86}?iJKjyd?Y?8_&d}>iBzxw!NlkGtwk&vR zAh=M+Q83AJkK^ggUtyn5#Dx8h?Z z-zEq?ow&lLs{544cdh)ctBdO{a4g?rlB%FA;&eno(=p+VaZmk~Ng{O{UKD+2G?>F8 z^03^@bhdfsvX_gG@pHxQeC4>nhFR;7?)eTU7bPRt`4!)5UE>3}5;fLwvz&eZ;pFU$ zIPHSCmSC~i%)c8%E)=ipR(toZWt!g8m4Dx*E{VurDJJkFC91?xgHC(u!LA;T zmXDU6hn8>z7a5rzDm(aG`Hj#QmnrU+uG$jz-+HpaL7EihOXJY%^?)k}-3 zlJ@xvvP$#0-1i%to_pBsKw0>&J)I|V1Cp5^|ubswo|zjv-^?3 z!-z8rR2Bt!+%DSnere@atGZ8zO!aQOV%l{+B>U#!TPBXL|1RsFkuQa2SeU6$P+A(EoBJ;gTYyI|Y`;wEr$N$n_p?yj+{f94xhy}beUn@P~!apg^ zIoj4gf4)9?O}JpHbCS5Zqnif1>=b!b=A&wrF4txDYSu*F@V{ZX(Ya-rhy#}h>%>Ds z4<)6!i&Odclr)yMdF(n~GNRdGeW5Hq^WGl&m)Fk6 zxAWIZW|8ac%f4A>&NbZGddJ6ve~Zurqm}b-v1Pr^jCB6IEGyPiSJ;s&yY+TUq~@8p zqK$UW3U@Qv=V-}vOL46F*3;>K`76tz(oM-?_g4H@7B_h3xA$xAn+cl#*QzyeI9&{v zX;xfwcxm0L%fH0lo|gD4rJFywiQ~UljMDCmld54-OfSo-A37zTKU=%4P~YgOW6+Py zZ)UKXudZLhbnE^0ZTFVx3JADp{F);FwX4pN$Fb$r@2K#LAN{SS1-*8Tn0cu3kmcU} zo3B-?++Ecs+!D{7taaa9;=~B$)tlD|!bdTlf?O0^b!nn}qUqVvUwF_VQ-S+$OoN3F~+jYpe&0*KM zg*#$yEPG|EZtr@%=Do_d8TGqcqhlPZ4lKEnUuQD&&%JBkbT|G9kqPHoRd>H|Z;5U9 zE>lgJpN~TGj9D(}SSR{D&A&2pW&P66qMuW$?W?DMjsEt(=~bP)>10+TqgTzpzB)ed zj#8Sv_FYY>`l-H2Z`bE7%W2!Saueq(zjYOR7s^hrzqcxL&nEr9Z>#VRZ zd0~!xX}xyseygVN@5|O7&O0O-UB`Ckb?!pp8*jeM*T2*E`(uGj%F^#1v);PN?7I0> z{Xl7j#|`#)(Oq7~!d+pP*>?T+`^{B*C{X{*Cvj(m*oCs23pAddzw%A&^7|>lclUjM z|MA2$;ezeLE!-2eoZ>ZNdb1xVbno%Mh#4UtR?3^&&k=I{_pm=zpY`B#|vfZ z|IfQ@GdnM@b6H%@1&_IJ&)-~B)HcPj-h*A~*aV&K0JT`2PQmVuom-#X-*9%@%Ixf{ zjLL^cJ9cTVSSQr9VUrYVrEp7#*2$>Z&wqZ&e!k}FBggZO=Wl-eWB1|Foxc?i4uAh$ zeeUdM!^hX(3VpL%!1ZyC%{!Jf<8`ElB(&BC-05^NHWB&-edo`Ku!2 zY0UI~)y+#S<&XT1$o@axwt8N%OX#)RJXv>y@_iS^N8QoTt&WM0{>f>dyuRmZdgr_y z?`GWLTUoPJFJ#T7KRtg^X1=;9x_`^YCcS&p&loxh$mBlre(kwPXX~zyl1JxTJ%7$6 zG1J}B?ze}*t+o$0-KHqkBuq-!!k{-LDCJ1Eq$T5Ii)CTn!hOeNXC7J*C1kbUUsdK> z;pyiST12fBrshqG-xkNO^0kLuWSO^ojUaTu4O$mov)gCEHU8gwfFxc z<(Uirep>6xIlnSs>pf{J+xswUs+lX4F<4dNXy;{%>8g6o$oZdgEeTrKQ_X$qO2wkP9r?Bg7^Zt`m?WjT?PpD$WtqF{{wLkDwUMj3RvcZsK;(3O zXuad=DfxFluGm+gt#S0@1J(zN)PEGqiJGRi+~xAxxYPPdM&`dV*VWTkUGsH#b(y=y zJgmh$?1Yv%G#;@PuPe z<}JVJdw}Pu+5@Rac9CVm$3+Ds!X3hnP)bdB_J>vG?GmOtftH{y0E4HipUXO@geCwB CMZ7-% delta 2684 zcmbO((IPrQxt`10)5S5Qg7MA4Mg|53hK2=ySBkG>0x>~&Mr<}iU&+fwveuEx+vaZl zY5)6Z#P6Hia@$`A8g1O%v3Xmr^yHIs{+CUP^ih>g-u5hH?yLUo`SWl8+sAkGjcHX* z)gNr?}ImNt{WB}Uw<^oa=WJvp0ERXumb!5g2XCE^Mg|2;}B_?LZ~^RxKp z=f+!IT28cbAD(R~=v7qsyDosMJ%0Ov>XVK<=WLn-SFca{BW0>EiyCukBiv|16!%YFXfaqq}gbQQqfy zbM^>^tK~c0VU9NVr|d9&rR*UW=T6P9u^c6fR9<|Joj^7DCk4ou%iDfjLHJNk$QFg=n#JP(ytECqz{QLgGFT!xEOU5SQs}_o!>mRh5 z*YBL*a=-oJQgcs+5-ImJJGlCf{4MxbEq*L4#Qgi-ETMX?U~h(~D|enx{vp2e!`}Ov zZV9g>SIrHO4r2J1kk$D@M)+0Uw1S7e@h6)1KM^^$w(-`*htJpEH{N>K#4%oIzl(MZ z&+hv9+mcEo&njpwoc88(-bqz4ozmd-J8Nca@XGHJxp&$>!G|@+ZkPA-MXY4xj!p zQ>`B|dMvM#dYDVxr#}$xA^@%7}?Ff9)ez$DH|lf`v);T5N)WZSB_wF_LX- zT_(%y6Pn(>_L#~wUdO42y8m>`ZsXc??9cX}iPrMM9Zf%O#a_{Kcd4rPU%lS^WZOE1 zSx>yK1Srl+<8910ovbUS_xAjuCDZ0?J^n{(|MgCZyOA9s z1M|+Cym<7^-RNNU%}5?im&qmmR{NS;yX};Z3%~w;_xkmG)_8?eof$2ke%1bD{u+HH z^N9V5*VR*9JLJ+5HOdL8ai-_*Kil4# zxrrPsDNw9a)(ScOcv?l1nds!5@tm>7Y5~jk-dm|5IfdQiXakQVTg^tvviQWxf1HsLo3*D}&UvCjE)otWIGnZHEMK-hD?Un^GC6<3LrxtYDGs>kr{`u2} z<5a?ljv%YLDXiPqPP;VYfzXup+*OsD`;Yxl6+g+t2zLr>%7f5d6jRbU}cr{qFmG3%;$6YpJk#U2x$|3s-T< zgYeq|6I!h^)%Dq*I->i13EwJhbs!C6foO{*glu3S~8kfGtmk+tIp_)eoT2kXBF@Equ~kPiZ*VFjyk?*NuKT+9kmqo_kOdP>-XI_ z7wuTszJ|XhXhVb1NtK8D7r*F#b;8$_>)UphJKeVTS3NSd*k;-KH0h%C!jQI-MQ^6f zO*!!D_unlKCKp9N&uIP4lg+r|Xyk;wre4)?Lab~3xhe&ot^D~v`ogzq3g^6;Ox&g~ zIelSW^hCY%i8G(+a;)S1D7$I@_ibynO-j$Q*TSTYbV_m`Y)@$v(Mhq8&PK8z#{cj(P?M9Kt{*5{qtMiP1*9x{-MkN zkM;J^zZM>=_ij0E(;9L9?brWF;`diSVp7|x!Ey4#^6&Zr54UZRs=93a^b}*{-i0Eb z4eWPW1q9a%7OKw`T6gHnQlY0!uZ_6HYwvei?$cvUoV8n^UANxi%;-!_iEb5;vPeI)=lbs1$)(Ccav6cz z0*B9~a{BGmVe^UCd+gYeB2~XdZkqgB!@R-|(-e+W3MTx%u4)&2`v$9gzDYq8%f`!2 z2mX9Dt4A0#j?O&+eRDY2oI2R`24S1#w7_Njq$!pX$~ z^IR`5F|yX^ZV@{;P1R&q$ds%=aV>?isaKP6!?)w|d-}U?dzO^lPbJ6gQ z+_p7j%9I@Ir4Fh~9aKv-S+yh?r!Y;O!Zh{DVv!XoECF00L0ln0{Xq*R2|8#7cxncC z+Ils5xiLUAeAS@7h6^64+b8?ZsM~b+fBEkFU;O{B^O^n6Q@BSV$VK9$kDdD=m6Bx! zmNz^l=1a&YmT;Y&RMxmb%=XZ(BWXDzW-bx)D)>%Mo15%>*wxZExaDxGxhkL7H^F7< zZp{oVnjIgC9u+V&&(hNhPm-mgmyo6kWtvXT~z+#VNv~2 z_1W#JesL3=cx9mT#qvOuu^|dz~6c{`lC2nvrAD37m%%PAQnV-p3TsYsL z{N;3;Wes=j9&g}Cf8bH+DeU`rrQd>EeyKVuJ2TWw7dvg6`9k@&!y47-tMOl69i3@W z{&DG{1%Em@O@7*3{*WglEHm%WjD!Wr!kQB%t1GIm(lyx{l({Hq;jJ9+CLQIf7q1m> z``l04l&8=XqA*`!+mx)xf?}@XmYe5eUM!8ZPmX#N^RU^8YsrF3ey{Vk_$=MUJ&Th? zslg*fz(uKvfn`%%lHpC8OGWYTe)V1EJ+(SsVeWJ3xfSwuGJ7J`9G#w6t-p2VMPZMW zd$zT1u1WvGN|CE#TUi(lE@(1wN-F$%ao6R%Th+D8d*l9>@$P*sv7+O|R^CHuI@4#) zo0OH}@L9xde_ximP^5w&^P~ozgAFzv3KBc=9!O;>POX;N_9Oe9Imh~_MyvDYob$cr zh$JR$dU|2eC4KMTF2_o~cwaVhi&fhH|F>*vg1l2*%k57wDn|~~UGsh)Www4%wd&o~ zFQdJinrv3BoE*p=Jkx_gDW0iQr>L|peo>7JS8bKf=5wb`1)q!fRk)e=*lOPe=eSEA z75|uVVNw%=Nq^Fvb3JoiqS>#iZGB?J;PUsJ_}01X6IcZ}J67C3Sb34DR{!GOrhB4a z)+ofe1xUJnK4|iG>(kQ6cfbBvIe@GWVeKdD)c3iXT=9uK4UdtL1V*+l6^d zogu01Cw*pI((es1H&-iKUwp{n#QW>^@>jYhe){SDZdc4+M$H%1jceMkG^#oIy_mD1 zv7^aM!6{yB-GS+0=M3%}EOS`U=04Z9Q1u>zW`?Zy@pV2kyq0qATp`qWlk?1vTW#x)ysjGE6wRSAJ2#iW91vcfJS?pV#=yu}wq3wYQ-3_N4y{bUHpv z+uF`^-t};J$bxg+DksH1tar-FO}~_#F?)r@N?xWQJ%2`4+1c-BxVSj}o5+VD3ZUVjH9Fz4YG<6pyExjdQST@7&l={-HVi7JY z)`?tg{fSr9>a(=ktv6ND@d-=TjSXLU9}2I1 zTO#M;Z7q34ZM8<-jh`zPXl&H&@QZ9}O7zT&Wt%9x%)^d{BYev9D_3-Bxb=m?m12Cd*+_;Tkp#Hv#&YEy^YDS%kCd0c`vNLE*cy65$-L%2uhsX7&b%`t!lon0=B-1p%|9Kw_V6czZ7dFOXQR^u&=uKSY&6+XQ^;~i2hlkkO0?Yx`YBK<=dhTT>n%CZQd;60^uCKuS9se`d?(p*$vO9X}97J~~M77*)uH9JQ!faqGfAh*S z^Q}cH4hkaPE!VETsWI2h_V7rIZQ-qB&SK1p*{ryHorp=rypPSD`G(g8+gqu0(bk)lKPJV-bg)ALY zEQQl`_jujNa_exI{QvOHx9z`bmhSx#&JtNy7BXS?3H9S!xmzMXEPil0JFVhCnabao z_7CQhl0WkGh-G#DTGa69*R5$^-4`$OZ@LUJzO2e^inVQqu`v5*zE!u z+EUlLj(SPT@^3n9!_s-5%iXrJ_qb-73x~AOn)9mbYYQLZrGJ*3$5ZCI~=Np(}ox-{L6D}Hyb4mH{3Z85r z{J%po>+_ItZFOl2e_Ux{IT=qI9w-$%V?>1>lr-wMK_^am|u&2uAgja5Z zd-S~03oY@LdkaMF^+{@OVGDY)uZzn=a?-8Y%DI)Fw^n%Uh~2@^h^x>GJ%p3?k1hf7V*=>^c`}UbQlJ zeomo5YR9aB(lBlkHPI3FMrK?Rk zOx%U+IzC^toKoY#aCQ33D(%H#iY4mzJ|F47%fN6rZox$ZPp+;Yuh+bnflGQUz*Pnd6#y2y6fsdCHiINmO5>8-deZ2m))C%bXh z`*6>_yMC`)rJ(Mvp}->-_+;6h=Cz;Ne!1*>cR}d-l#APXIJq;U+?yEg9%}6@7O%g} z#;b650q63^JX^XRrBCY*S~-1X`Pc2C5vqHhcFvD9Si>r1dV7Cqf4Q2AW4ejiDxRgE zx4)cs^ik@TwJ*e1rt&Iy==6SgsXBc}T(ie@Ylj_d)uQg_qB^zq`s|)-_`la@dcli7 zvu*5kShIE=w%(Lx?jDrr@rkE4)Xd*t3cGjW--Y+pC3a7deI8snQ>4K_yD;ne(rcLv zFRdOIaNbkqv75uFb@xq~@!D*GcLIHL?4#dr5L#h$-P*u#1^=6fSM`6WiAl*2r>VK}DHat=ZYv2d+OmUv_GP zpvK+Db2UG2cB)i3aKSn_@i?#TuA>1(^K#c;-!yNoT;dgOj+V2BG-Ef%tZ`hDEu&K- zU!C*zb7th}cbh%$F8R=S{P~Wm-P}{2Rn0Egyd=_L@uvw3>+d!yx-ZE+-AmkP6c zFDsiTTKPIovOq$`+rJm!wLd(@o<*B$d8NHllH>KN}AkvqtE=-`SV zl^YKNS0*!BmneGN(UsZzK}*`S<4df(;J(&p2bBW1&bCdvyvMQM;PFQ5Gu2Q3pG#f~ccJ12k@cD-y zTc{r`usIBPVINteoOW1PQz7c4F}sd9i5>XBk5jwN`7X^-sHl&W@nfE za5__xc93UW5D+o{PMyT&^;clC@v1}nvDzMYh}@MrcEuU5`GQqiUAC0TvX=XH17k$a!tZOhud z)@AwZUeRTVTQ2l2f1L3;*ZtDgsKWk&6Je_R1QPuAoVVs}ELr-ua8`kh8?V^YV{6h* zIWMuRJrr;M)7d;*;pJ^Up}fg&7Fd{@KC3L-&pWgG+1an1iNCjhyxm>WyYdI?KcAeh zJ{#CCKW3gLU1hY}*iXpM)jjcf;vFtETPLp7&CK)nTr=WTiG3n)N2^DF&V?8KZL-{7 z+1StRKA!xveiggJp6f<4x1U}!Nm1J7q3EnsyWPDf-<+~I7I>ubl<9jOV(SnU0)dW<#UpZ4QpWh~|eoH{zD*Q(9Gijr{Ow31D+1}hBd}!xyx$G`B z;rT_)1zkLW=8vip`OW%We>B-o>8Q9WwmGROvT$#tpx%3Zz2EwlgTdnz{FZENE9 z{TgwP7wtIfD!5s{V_{P#ce`J1@a>mFPD`#0BeE`LrY=gw13BIe=GcdV>< z_~I06lvtTyW#GMtB+oAji`i4ortZpl8l3G{zBAe}py`#@t`+qTFBUZ|Sa)hmiudHt zuMQu}x4w|b-!A)T`Frs_KVs@EKRo(u`=@RWv+sF>n62mQn)XdF?Eingjd{X-n`dec zqE+d63q<0sn2K&SuJO*;a>mRnJ*)jfLXltRGlp-kymo}T+D>1>Z+$qa_ltL&((>oC z=ZD2zWhiZnUz)C_YOLv1Z|1ewTXiAxJqP0e=QWos^;&%@wjFWwvK3V;uKJfbO-)_0 z&+}F7dgsr4dLeI(>kn=E!2Z?IW703fCx_b174~=5ADSvUukbs|lvSIzWKYmPoYZm7 z!Af05qF7_i%+H_wH|mzpS#9X)cVJcQg+C(wOsm=ieWH&P8TYD{uQ}46;LHBRyyy($ z*`T=#J(*>A>*xIG3rhNbV~>R1tk0YMF9qB_y>!ME*`{UcKSctz_C&<>MtH1!Ik)6y z-HH4M{Wa3wG6Ait=5PHqXZm5ruf>Lc%>Km9FSM-L6ZQPs*A4d9kH0-;8xz01S7t$$ z|<{5_UE=ZHHxvPEHC+&_)A=- zZN`*y?d492{@dp>&(!o>;jv{==&-jv+= zL!er$+}USZkN0OWx2V~X546wtcq{QfU6St=zol=@1*Z#a@rh|s|Ex4xzNub%d#55m zDzm5aR&DD|$>{rMU;g^8sP;8>g8qlr^#;bp0n?Y&__`b1dHc;!hR|lNn_u6gn)E;X9GSz@8#AL9?CNNb&%qBzwxKhYdb#1rEm;XBJUG*+2V# atnZgh&##%q|A~Qtfx*+&&t;ucLK6V`zbcgg literal 4122 zcmeAS@N?(olHy`uVBq!ia0y~yV3+{H9Bd2>4A0#j?O_o%1K} zuvNXYHGJn@&6Bm^Pwa~LzrR;8|NPk|@BWkjYFy?2`HuvjWB?BDOy^mj(ynkUvbmo~Yd#uHmF8)?_PjFS*4}&^KRKOtx)Z1>OR)R^v6tJ_uz~m1=+M^3;ypCmXN8DO%|3< z3|b~P`TOA+r}hKYXZ*uE>-*(!V0tV`=5f&pjVMevSL${=D*~ zgh+v?@b_m)m+Yp@nEYKay+|!-`J2PjgZUF)yv|&q9`am6G-sFp=5@`uJ1u3=)$1EGK6owAY_if+R{1TPzGwf%*$ZFn z{v@G%Quy=lt^DB{^L9@DcGyjXLG*m9`ND_x3l8>+1n4aK*>3&vOl`rpoj&aL4`q9b zp0?Ol_4J%c;<8--W${z-iz|NbiJ#b%^`nYI`L1S<|7pYhZ+-5}-Xb3FXT_-<$PlvQ z%?6=$cK4svYpr~`(Dk%_@`e1jo;_Wa9_))g89MhT3YK5UKkK<=_Ovxi0-RU9`ujVu z$NQ}2)t~C`9FI)-`$CDUfop*nw~xQnpPYY>Hr>ATS7M)bH=ongM?Xw#*;wx_cpxA7 zsK)NG-{OTDEU%O;vSpGVn$&6Y{JlQ!*o`GJJ^t>#&v(|pZQQECpk=eQeqn{4)KyL& z#^nZPmg0{uEtn)DR+zt5gCpzIrG4j}ey;qa^7Li%y6$g@C4YpkaRp=^@hdhu$36YT zG9`YkCmQS8(^e|JGO09YVrI^JG*d*xVXAD}(q?|K%dCzo9xcqcHbFu3aZgwEsVS{R zPmNEWP}1-5Js9|JuBUtIgz6K2@6^w^efo~wq~l>Gzt>o)=1%qf7wH=<6JgBr&+~AP zr_;=d$M!q6^?DxLv(dAnvW9D(D(Q_rLQVxf?s$ zuGr4{wI@61X~w3r$GRm%`MV2BZ2bBjK+f1%o8~OEr zGrrvGDiUohHnH&NoIMZLdGl>daC<4)uXAr=yw;(WP7{ouCO_^q<% zt%Vn9g`ttyQl(yr!%@pmNxwON{9=L&Q%r^J zKM~h5&$kJiUm88X!NfE11()TrS$cmi`KBUaT?d&mD+13N7|HEz zJD&9JghY&fr|%r*cZH|a?@YL~X~&_D_pg3DnVtK*mEF)rDy`VXq^RxqgV4aUAHSQJ zJlnd@sZhq?s+qIWro_LIYaCrHW6pfb+A3wT=Izt!!hjpeJpD~KmpIysm~s^TNQ^Lv zTkhaDGim<9-9>=|IVcULEox>`2_Vn{&?#9yz5(orp*ou>ap%vro8CG z)eRbV^sa^N{`$fqe}Cc{kMk@0J&X}|50KF?sgm+;oianFiOeJ#dgZi|m^xckBIXxdyc z8K&Ii4!8L3RXw}T|I(F^m~&Qud-IL5sx}jsqZ3~$_{T(jGIrar@sR4mi7OO%I@?}v zh}{t|=k6|DYrS|DgD?MU149$PdY)OQXw6t`VWA{0vsLfH#-jS>>rNM*%$=L@FVJL- zegAW(?+>&1smCV2*6n7pJ{xPnZntd5mroMig#i_MGJoY3{9h*h;^%M6WsQfuZu{Q5 z%gW~{BDqjwh0DWbKO=VhF4H%^%v8$u{y=)l#BXo6{bBjNqC+EkCG%^!|k61bkG2>xB( z;V1R$_k>z$y;UqRTf1*2-n(f2k|D(UR`&bFuQyHh(pnQ+(6Y znwxx^5AdJWSFwC4dGuk&{%KPuuq|D9??Azyu#EpsUxJ>rd2CttsaJ5X_@##OXfEp$ zi@xhv_iRek`10gzqoT!;{g2t&lrkJ7wtdk1o$O#S?PAC0pOtDm!{p)xOZd*E8rBJ( zweOsI?o@omaSrjj^OrE6PHL2X`>{CjZ_$_2(@f_$y6A_WQkBlFyTkolV9LCMJ08h& z-QDvcUUP!K#G?PEDop48?Cv$0qQO=+hwp*qx6{R;D!=n~v`&j({=`53QsYCP?|!L@ zO3MRuwAR?0MZaJ8j+?QkL#FQo$D8<>EF$-x?DeoDKZfo=s{E)6;7Wwy#KIJ z^qK$X#Oz~D3wqPVul0Z1%rDs{FV=agq3?75{8Ap4E@kWbD~bZ|`ED_;E|T2I>r%gM zw(FuLZ}vP9nc{g;$v{ttH*&IX3C|&&;|xnC?OZlz_y23`8~!O-#`iAa-S#ATThF6& zj6aqx_$K?O_~Mtp8aJN>r`}t?DDm~*A8VTJ12~FhnFP-D{r9g7UNq<7lm7BldoPb` z`sGuv)~ykZntdnC;MbQ4Y6Wj!7r9dQd};cpHp!ZO zYaGEr>B?l@9_KY{m5RjE{yDhW{?I-7w{J=W!k$F_Sv)aTAxxMlUl&3aY|B8;`qqEv)l8Z&^Wq_dv^Xj_WAM5OSCuMrn*7F8P{LZOr5{pkgQF{EC)2^c(CdV%s zzxliUvFWzTi78UHn#wJ%u17xa%PZNtXIsvdT0@Rg`4%e;_|0x7_#dymTW-BbbCtUa zSJL(Pyag9;PdpYZRPG{~(7={^WxLec4 zA-c5LSs>~{VQ}V+_a5)-Zf}@>sOmgtfnvHPvW)pBj4TlyBO zJ3KVk{CpL%@_2_y#*yrs-cFm&Kby1X^~JW8{a;g!_g}kFC!M3Q#8YI7_)o|EXLsI@ zte=-Qu_NHlo#_3#Gw#>@o2kC_&Qy;QF99)+R6ddOvRopQWW{4AJa7Btw5;nDyH!oV z?VIYxnv04LIV~u-^DC!y-+3{IO()q;aUH8Y^Rxl^ zNwIY&tJj!+4YvGo4@4LQ@PzOD+3lT`d_u>)keAHo+bZ&>Mfq&x3AJVXa<+4 z){H~{Tp3?huVJ25H$~@os~NYbmRHle?2WTrjz2Ab5))(g{6rO3@Ioioe%*}gxw?6! z(aa`w`f+Xx-?ws!syc4J`eTO6?aJ^J5i2c|70MvX_c~u_U^?|;S5SY|dKZU^tmRxF zBiF4q*m&CONmPBci`zn8r`E1XO-#4$B>r^1^6AQ5VZFpxo5Dp^ov)j|xcRd@#k9)Y zQ7@y~bwxm6P=JH|wppc~cD-*!v_htc%ne_dx;*~t^jCWXKDor2uRWww@`v@k=}(p5 zeU`u11thXvx%jeeZCbqjnVlO07CNHv%0ln5gZKdje=JY4em|=z4B~mZ`njxgN@xNA9Buji diff --git a/Source/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/Source/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png index 9578251b57c131b58476e7f130ef90a65253be95..bb04cfc59ed9533202ee289f0b20b31b94ed96f4 100644 GIT binary patch literal 7143 zcmeAS@N?(olHy`uVBq!ia0y~yU^oE69Bd2>3_*8t*cliYBuiW)N`mv#O3D+9QW+dm z@{>{(JaZG%Q-e|yQz{EjrrIztNOyX=IEGZ*dUJVy9$$h)+sD^|JSJBs{J89KYlB3m zvO(wKhay&2EDdhYZ9AHx(DCucwJdH;>?x{6~~DdWl+ zj4Ngh8g$F`i+}X)HRlUD88$dZFnj#4JghHvpx{sDbk_7M=ZfH2 zVD*s8;6VN%{s*5AC~|*m2gqH71 zo7MY&oa8yK%YNY7_L7b2mxB-Pd-CwXy&S2+TjISsygGuxy&v!UPDx$6^Pt8h&X?Q| zKl>a%C-d#}e}jLMFU_uKQakW8a*=oX%y&j}Rljt~JyVmaE%NCr=*?<=rF1oQm3^mS zr-!sf!KaS$vl(}U7}m&qQkcg%@7xys9kEOayDXyv?@W4n#JOD&9{-axgcXWYuOT$aO0}lXJTqMXD@koN5%So z2EXHx6yB{Lk2?!lE|c=R_L%W%!$r|!;gY!qdz?zw%B)pc$a+h}K{@v5@=NSLB%(hw zoyv~5(zLN${qOIW@0F%ChGflUn3=kkDP^~MfmFQE{_5nnD?*LMj9CwyTD7}r`lRVg z+ZR;+b$cwC_4dn*__V~CKRsXR`)#^heD}mPrQ2T@teGCgD;byePKGeP z+q!%E{!SEAn3~LHVEF5jSl;bJkJ5h4?kL#1QaRZ}N_U>?x~RHt zt#M3x!L*00Auij_EnsyQYPiQI_U*#WJ2$MC_ge&PeZ4|hl@wTS(ZTKLF{hgmt;;Xf>v-U*lpZA`k9Js9UL+P^Q zliLq{^jUt+uIlqY_D|-OY3HR}MOq&|*SVSF(=&U4XH0LGfTN(uosNG@-rQ?h9P3*m zZgjTF|6~=@>YCabzqeH^szYAk#){Yw7goW?;g4jv%~N*d`{|h}=lL0*nQOdx`rPk( zzgwpNvu56M&X94A+4BX>OIuYO?t5jdYfj_-6*kdb{PH^A#D+({I=7CvwyIy}^*DY? zTXh9TXol9A_XfYko-Ip!$NR%)x!p~sudxoYT>%$1M%o&6OZ^ltIR3Ef@Y?d-Kb)q! zY-Kyaz5o1!7VF~;qAM4@=9Rd|;QaW4xkgieScPagXS&VNISyCmeb~4BdP{HdR>y!G zHrEwX*O#;H5#zA4^xqL*oOJoTSb^O0H^0p;mn4SdH$?oYZtOl_c4}|&@57&0n;%>y z7STInZ|t!v3YqH`vaXw2yv4hTb@lSqnKqwq%P!91tMX4|PRAg!Ef^f!f1LelV8ytX zxqC7D&c!0r3cdM{F4*I7`o_T~hm8j`GWI#&^GJ#^^xAU!i2Rl#3Y%u%W&Kt=?}_?p zg?}>{qk?-L-C_H7q4S`j#BH{{f3<2Bt-Uj;@TkDih9@?H5eiZ_Lz5cSeBy<6ZgJwC znLp|AgJ}=H9ob=YU*P!>llymW7;Tuy|QVE7!&e%4<&A2LFubeR^TWvyaQ0w?w)rvaN9VqkN!t z4rjx{-VJHmSE`)SuHD<+VYbs;eZw7hxr1Dqa!=!$etI6%Qaf{%=~moX>A2$)e!lwo zqO|K6JKx?t2TZ4VhGaEd6Y-t1`@p#<{+_oDjaxfAQoE-oi$%_HV7MiBRjwjKO4E(i zk*RRi17o*~8*2)^6RJcmUwOipw&A0Yfp_Au$a24ZyH4=$ve7bj$mTk{lk?5`@6Org zU%s3^eQD~YB?~6ogxooGRI7sPWzPv?k$j)s2CdCAxvm@ERqoF2+fh4nPPVSf4drJB zV#oJ?%)an@=FcV1-^tXLcD9!khNL$X%P=pinr(2cEy_7=*`6CYy8~MJ{+QZli));J zoYmoSCQbF8c+Ba?5*g#^vrII2VzzN?a&;8o(7nA=>xF*C zV<(PVTPE&PShPT)OW{n=p;lMHCn`r>0w!uMbxHiZ#b8HoemdXg9Z%0}o>_d}a{A3Z z=YN}?w|4lld}HOWTi@=yV=d8Dt2g`ZoA^q7w)(4`G=PJGZ^xP~$Mr0czkl4^N} zw8Z(ba<|?&I-m17=F8x|dGV7K1{R*4()C<3)_7jNeTP|(OJs#y;7pBW2_{E4#Lpx) z$BCU`(r2;kG;iWRU}K;k!6wEM^>wbPP;Zg;;b%=I7n(9ocZbQ$b!boER{B&`e_qZ= z@U+0`EN3oz-ABdWg=Z~S_*)~|cw|rW%1~E$Ytj)}na3R`ZESu{@m$BTrrKxg0`3=LZyZYg$Ca;2h`av$@7ozm<=YrO z-ufK(*E&PCJ!7JTQ%B;1kZ(?@OI-YdCLO!q@VKn7?x(Z?Coc-tpBz zKFPj7;01%ioJ%YZ6#ES_X2mKxy{dLJIb~^RP~4e$O2RKF=$L${>8G;0akoNRuO6~+ z*f(dN%f#t6m)KX|n={Q~?}fv;rv%<9@=avqV`T1l`!VsvWA;Vv3(Pw9IlY#+vS0s4 z^io&moS~jw2iw>gN5vD)~#5!N33h>w~$m z3<~w#7xl}Ummhd|G;ULf#vO_Mw|0NeSbNH<@$vlUF%KD(6f~N;t}na7GrMHXoXjnI zcCRUvx;|rCc4SuH+L-e z=XKa@{T^$v2s}J=Wc#vvdou4zEp=g78uz!_tnSPs6OUw(7>!T&76yK8eab3rQ&KnW z@nVajn|5Nak6hSn;<-({%!fyeZPEM-O}ZCm2skEf+z=HZaK?8}ul?hzH|;k%m`^x% z%h5tsoonxcDyCQg*Nb-)GGY&G>`and^5a#lK~6K7URAH|P8V^E&(8B&KC_`MtX_O-S&-Edc=z1_Sd} z%|pdMl;<7XVjsK2>FrX(Uynr|N>9pV5y^jZ)$0G8V^ecJbL@>{cc@TlUA*j0*2Z_| z-8d6wUzA&$^ZdQChMlXVqpAn%az&L8CXOXrSMLjnzfg4M+V>s4KiFl|WLj(|uy6(z zc)KtzVPIOhD&WPJ`;i^)E$km2%-8$YCFRYZExNC5bIZXgGxSOTC%ppuj5X@qT|IH&aQ`I&X!Q|L$nqI1#+_>V-!fUHi_>(ujI~Ia$v3 zev~weN~rm@*m;L~ccfff?-QW>GH&;SB$>Dm65eM;tM;DTmYf;k+GJq(1m33tCYo;#n?vnYI_kbL}o;lm&Zg+>m z!e5M4I<4=|%REdpo%F7-<%97_J*JX<<{EWz9JihsJXu((R1swH;pxR`TB*W33(nW7 zt$CAf;ldykXuE8B0B6wE)(5QXPjLn+HMM96@_FfKO}+KoM1RruoT~k9hmBUL-%~lp z_5949E041j?ygner#`1|*`wo;fA(zKyH%}eYc}gUFB#j)EmOU2JYjladCYqC?JxE3 zTf)BXsK48<{rgl@Qs@3Jatj`0i`Sif^jzF`+URQ!zOE3f_B&)`lx?jGax6JdqL`&e^b>yFAD5pU=e8L)_HpT z;p^JAB|_5r8j`BJjQa8-J?_8!Qq?TN!7|~{sRxfl&ef+bQ8n9C(k}KeriQ(@wO{p~ zec!y#H{Ll)g$p@8T6D79%6X%&e#0~NJNtJ{Z?>x5bgepc(x=HA9JGv8G!64LtTXvE z>>G39eD<$=t*5ipL153kAKSy-b~*Ddx&M1hf$cVShQPYN3*P!}tM3SLYzS7rpW31{ zJBYzIdCuL7ul@)fp1euAV5`Q?Gwc6cs{hHmGs8b%&xtF$8W{C2Br~qEuiIJhOM7~B zin90i*Xlh-F0!6?d>FUod`?@RGy5dIhZ9bgS9?4+o68_2|M9KYW_eLw=T-kdpFR>; zG-qxAqX_$wnueuqB}d~o|N8jyuhn1m%R72RmM|#onPpLTOw@Fi%KcX&F+JDT>CDNs zoO{rp;gC(@{FC2jxjx@j%fQ?JbNvIRqlf!GNl%&NxP-U<%QA}&q4~jPSxc^dnSV;m z*rQRwF{0NvJ?3SS=>)f%;@i2L19e6C{S6Vg^ zc&*WxcGDxM^JCe?)w}dsgZ^Dz|2i-$H~m5J7Ck2ghKJ8Y_F4UXCFL_A-%P;#u{`6H z`LiWIS=6R09yl@mU9r&BU8M|}bBbH!Js1LtCP~Ih{F)*)ZHkPSrlgFQzsS`2!Aln0 z5BcTmeDv16!!9y*f3xy$oVesW>x1{hDf`VnwO!5mFOd70;o*+y@5=Xnf3=QrNui&> zx+M=}CNad$zv48dW5w#j!m3IyUkPZQTJQL!rrl9EBdV)~Yew(k^q9x4rW5iCW)&Dp zY5uP<(@#ELof*X@#(6lt>VVJFD|QVg*S=Lq=CUR~*VA#Bdh5h9uFW5pJ<)xbn>cTY zYXKm)Cz~H=VGqyrY2o zSAf|oQ$_yjh7iXJrH%i)`Cl=VTxO6f)a`S=e*6?y5@W(t15SOfxI;XNYH^*-y6+BY zGN?Z|)%1S*p9>s93a5DHdf6>^{Ga({wi_3Ncgx}B@#%AiXKQaez(knUOpR>k1BRkvL5oBEN3WGa(b}? zzg67PeA5?!RX^w7Jal!372nscJf*+)wjL@hDa>Gcc=yMmdm`TEuN$3PlM7X%xSuJr zwo6=hxlpXgv`4Qd>6P!jAm*1vdsP;f<{Hr{hHk7chou;I$X zKN%lfw}|=NdB(N4kXf$RIrNIt&(Cpc2@x+_H@`X&zA*hyH=pVf>968_M>~H+taRST zxIwKccmBd$JI04Ak1z)3ZwujFa{9{wjfWjZ;t$MAHoUeq(Pvav?=215&dZ>1ce%M; z^WK)m7u{25G)o@ZJn3X%#`pb+LA%ZtJS^N&xn5&$+(vhq$4m8OlJ2-$@E%{V^i5++ z8(*7^^ZB0~1#hp+u8r(nazATgOmp(7Ie%~e_HFBBmDPOn_t4_F7uOhb@-Ar{e=H>s zYjyjx{p0w*A>vE3dByxD&uLj3ARAXAcksgUmm38d3tn9bbZfZfazP`eKlzl*J=tF> z(fhcL`BYtLv}};_-u^?rW_f~Mu*eCKH*&{UT_}B-m21Iw|Ck@sN`*F;$6nb=5k4)V zKb~9(R9i8zWM$eNrJA^@=kj-aUAQ|lf^nZg=A8S_8L~9)swA@b)!pxm`53u4zU%Rw z4UPQfW)CeM?!M9b=w#~UqHXm>XK#xv<2tm0&XwH8T-qi=rFTeB5 z{z|~Ft!6z3_r0!ubbsCVi=N&!55jXUwjN$I{rL3SQf0Za96`Th zJ71p@T=jL<@eApKPB-dLz5nCLyVRTKNX1FLuKDJ*_fpym>u+Yi{dcHB){O181@Na!V@rP^f6Fuhay?#IQOm)MpRdz46dk!7v?mrMR zTf4@{&%~K`iMOoMAE!;)peEx{Ydgo!LEJ5|adNr)q`d9FhxV{6_%-bdXXD%Bm%p0^ zSv>oxes|J$2Kfm;x*~7*TSOoI*ksPKVkzntwaOcO&XW^VJI8{e8iTEXp3Sm_K9K#G7;>bKk#js%}3TO#h$Y++n0R zfq}{6;JNP?HeIO|R<|%=pO9M?Rre(9;fqzjHQ5akw3_2KNZt0UId^A|z_i@3prb1_ z&v*-P1WlOG^exfl(vnA?D^)FSzgc5(`gUh<@Pr8$HhlYT6%}E`QlrQ|A$Que`KcjX z+m|V@Dm1iwOMKAqQ2wepNL*-nBBRQZh~L>S6|ADRvbDc#Qj5IitNVAIWv+e6vVzE< z*yEEH=2+f!++p~hansqLRXdbgH!=yRbeJ--%s=hCAZPQ}ca}5So9A zF=h7NZ=d&c2r_J_5jb?uvSCeJjr@CtH8&>ph5dfQuxZzYx_RXvY8g78GS}q1k2QV5 zu&K(BDVQNFXKDL}Vm^h{+;5*p_HJgF#?Mecnfb&kx8Id{$15T>ir%ngpKx`y@xn`I zy6W1VGi=&*sczoK9kOBHJ};DU2v!rhL`3EDx3M zE@p^~&9Xl~KT2$e;(ZD2)1TxNP8TsmPGdf?NycH?Q-)1C>=RNg8+1-HrbO~7tS+}~ vShMaa!=_!+m`}Wl;!{|iJs1UU{bw}xZF4?2+2s`j0|SGntDnm{r-UW|!bN%p literal 13720 zcmeAS@N?(olHy`uVBq!ia0y~yU^oE69Bd2>3_*8t*cliYI14-?iy0WWg+Z8+Vb&Z8 z1_p&NPZ!6KiaBrRR@TIXPkp}s`_)B3nekq;x8C?9b~^fzMW?KKpip|VgV;3&W|Ona zGwqDe8aTgbJOAYX%Zp{wv)=jnU)H&N*_ipRz_bZ1It~Xs3p^B3vaS1Mtv9Ade^fiU zY3nqv(DnCb+UHFTnG_l{HAMAf-S^)=ZC1Vt-TOT+^zQxL&*xRY+v(+EAaSQ_>jhQ= z2{9pMhUV3VOa?ooh8ZJ&8~cjg@6Nkh^88%P5Wyb96T_>+JdL5W^ZKQ$jEsj4NIozr z5VBy|!}5mx8;87uCKr= zMee|Ki!esPV@Cy8a~5=e-2FuQ0OOarp9+%dC3I)~Tp;;_;e%sB=%PO}6+7*{Qmb5e zfBm*zzjFes0K>FJv;S*1Zau(Oa@jt*DcEM+yk~#+W;n{Qd}GjGe6)~DVy?4g(8dep zzjrs@mK1;E@`&%qqX%0*u+>!5#_h4=*9v_2cd6r)>q@u8-DK8=TW1Mxe|%%3g`W!B zG^YNg=Dkl|80$!gPhzk+u|EP25wK$sG9I)Z@L-hzPR?N@ImDR(X@2``#d#u zmwq1aw60*bJLQx*MUOXd=bElXrE9z7L0d>wXkIV|{ox%i}e{kWiZqv*l3Bm3e?j(^I0 z@I522#Bl4&B@L?^_NT4tde1TK_@X^KXB|7cwk7P^L;ha^2Q~_e#_s1;Z#MI&tohMo zS94IQD{Iw?`!`ye_C*}|=X?HjtpDxK_m69y)`&W2f5>}~+_KUI?@Va7|&I#{MR-{bFOH+po44_J#)z%--8m^4-`*LQSr(>HOp@|K*RI zXBS8}_Aj=+e|}+f@3JfAQHAZNu0>7T8t-!S(yfi>pFUZ3`z^zMrhO~7>=ZkBGE!Xd zc{9VS279j@-{5`DLTBr0RiCacy|QMNVnk%qdXL#gemQ$K9sgW&Sm@%Tq8x_qrb|Lx zUfwHW!up>wcRH6?IHeS{yu0pqv3|+ygY)X#+TD-49No$5&#=R+v|VUn*;k=y`SISK zxso3~!iM8kxPZ{nXfTv2gx5NZlI_`m*bB&2F=UQ75wVe z`(@>4c*)*p!JZjk-`{hJbPn~>o*XR4de8M;%$DwXM^zevN{;?l2{79h&XRw?KQ-7i zR6A>BOq_dS<;NMa^7j2&e@lGc<%vuY2@HsGIXg?urRCy6!9A>YI{o=;R8Jb(hjsNY zxD)&{@gv8Bxd*O$$}Z`$7HK_|u`9{+>+4w`e%L0L@3Fb_Q%rr*pEX?di3K_FazA)K z*a<$G$8(BhCeq4fO?uT1Bq)jo4v z9dvBE9&fbsbp5#fVqmcF;Q{Z{kSG&f{R%Zdz6U%RuFr=2(+9DZ@p$G%~c z>?^&z)T6x8AAi&=`*hy;)TaeHSDj-1$^7{I@?Q0em$k|LtD~H+;OtAfs!EWFg+w1aoy*V7ii&aAG}Db=?+R8sg?sWN3B%Lm2>*$fs=XJ5JL zRo#B7ae8w=b2#6wr1#FpU%Yp8PcB=a{X@e_A=gZ!M5mwMcEWZR*+Un(*09`a5Y1S~ za(PbjJppzpGo8mjxY;)(fBSmCp0WPW8~gv2M{76|xIgGl`IK-x^Uj`GPp{|8NS~OM z9>-GG!KYI#*zrX1oa=?nM;9G1sCxBe9q0P2tOo6dwJ+Xhh(_sr?%S{7aC+NTnW`f3 zh*!y-n`%XD7r$*%yU(QIc6;j48->&IqEBzizLs=8pXF`cgX0IBHOf{WHSXUoUE%Uz z;*rk^hrCKyUX&#mZ)jWT^thO>;o>}i->#KNOI?A%# zT4DDZfq3S3->Pia?5Q+f*gfmn;nTv*bhKi}7V&hSfk41=ViLcQ9B z?H$(jcgmiJPBDM3yFiO)kF%!Sbyn{w`ad^ozo^NRXFgu_!g^c5v+UE?wsHP1PGEZZ z*XXBjGXGwV>kF89@|~Ys%o07-`#)w0qcS%>bd1HzLA$>iUO8CH7HmcRKg@vohbkJc=e0; z1H1pkcyujXW9V{oQnBxHOD=_<`+N_~UzlEf_Ed99r7Yju8%I~#wg*Kw=^H!$xlprN zqNw>^n9QmLdv==1GsntmtYf#jUsET)m%U%m&UnJ-?lbDO`F?M@ric@3eE+{1-RN5yzL$;8Oxku7q!z+V5+rtkQt1`wt&0@58`^Pw6#vNX zKL76Z!Y|vO-}v78VvXR@7Yru$0gYuJr>Wn2ocN0+ic7*}IfK92K3SLL+A>b;2fwPx zou7TS+GMHzCP6e^IS2#9|RwC z_bhLnFSc>vo|S#mR+|-7JU_iFS*M1x_VbS*Jub8OCt(a_f4WYE@*Z(NIdgi%BeV7P zpU&|9*lYgmS-NQtmXYEQ(9*m z_oAjuezCIPRJGOwuSL<4`m-6P9r{!yz?d3Yu}5y%=L*dO+uj;J^vco6Jbxr*d+>7K zfEVvK>26f*T;RNhpKMZw~KC~ZD zcReoS>n}5F-5rmUleGBke;RGf5GnD##8bm{H%c$7=q1})-Bnuld;aY;7kQ@D+-zaC zd;f2ZjWc?^QVPGZGXH31+|$bV$CdGq>d_zFTpRbq{W;2LW5+*_X?@-P<{=A zWtdGhZOhoTCU;Hfj8m~%FXc|(c+4bd$6hmy$Lge4qpW1&{pS5@Mh0_arqnR*m{%F+ zmih1)qszXi&1FaD>+StDY0gf2+1ty$A4ufVI`u)E{UbZ~Mw@FlVk_UI=`8s={W**2 z$7A!?Xec$=N~M-0%(&R7*tYw;LCK=o7aJ4bMEImH`&PBgd#c_GR+BoG8veURPtH`< zeEgliXoJ$y%X4-zOggkv@<)Bjh7}z_0^L0yZvFKakd*VRd)9s-a?kVJBNYo-Ht@R7 zi?~&n>6lTPo%cF%m(JPl2`OPOB2?T;GA2BHSNF@R&-l{q<1Zd;_$To)T8VKU<3G^~ zfwz^jjD4qXzgTheh(V7IO9O}Zh0mJX&XwpcRgml5@cy{J0B65Sc|Ei2dQ*L!7KW^g zviqlPv)(4WX4Q#THR496m`=0%`E>B{Uc7$u@PUiMJSAU+`rVdiOIBT+`fm3NQ>JHU zZdu>fT
HM!nMh~dRat9tf7AA7`u1Z1U>{yX~%_V(;#`Y&zOp!fdFb_TA7;|*{B z9b$O>u1foqkvISH!yssPGcp>qp`l9jiXH(|y&++Wo zcKdd^GK0XB7kzKzC+5j+V)1fZl0V@u{~xYs{SX27^Xe5jdQZ={{1iKIyw!%fPGoqqp-(q!(z25~M-m`O=_+_>KGG^Ih1@~jt->rz0?w!3ga!M=1 zr1yJ;Z9lF^*_Exq-L|W$;_q_*hc9L)*>8}u&6{NYESN!_WgoXwrfJF zk$ds_#ggRX#V2nptasDTo@)Ngn?d_R-nycCg#)*~-|2X&X%YWxRku{X_@lBp|IX>{ z`o8aAKsf)S6CrRO*wWxiPL>v%{*h-xd|(sUzGNKo>Y`-$5O!lK|yItOtEFCcGRcb@81_W z=k*)gO{x;IXxyfL__>VXWL330-Eket%Qd?9)QDFd+#Be(XG8nt^|DSn=R@Xy)ZDWD z>CT&R>3^&97Hx>>mrl`O5O}9H^GlA@6w&8b<^RmdP+>a6{NiKdocid`iVgQQC+hY_ z>n*H0+ZFToL1Kw|zIfHe7mp9T*6?FYpXz5Y)m8EG{wW&ymQ}v@zTOl!{cBnsZ+#;+ zB>3A;htw64vR)Tj;$E-mk~tEq>AhRxx3&L;@+T~Z?=Jt!@nuKllLg0x{;}?uzcP>S z@&kRXC6%w;w4$Xq3o-)VMC!d$E zk1V|1+uoIZoaxFQj;k-y{wICO>VG}c``(2kCrVNhI@aA?fAM;uNctiHhwXjuQ^g*0 zEag=UyMK!>MTen5mBYHBdztq4na%DmYQD9mME>uYl5%pV!u!m?KdP=l^`6ovH_X&A zkA4u?IGa^Z=r5~HC*Q17)%r<6Todjx)mwL;H+cGt;|CXajmVGp7C(OYwe32VR(bQq z9xHz4c#$1(3tSh(K3L6E?J7U-=U12Y%y0DdmOXuSddG{o+XL=hF{nJaMeTujMt*D< z&zu(zTkH4DKR7wk*VtBXL+pbCB~RBy?VNJzskiX_8TyRVQ=<39Oe*ER@a4Pg#8shd zStI4H@&9pnnZxuu=>3JPH|Il^&iU3I&xO_%M;by0ha>S zA5pw~`>JP)zv3FFLYl6K>N27{7S?alk=6#h!% znY;hX>;r2#&T_nW*}?y?WZCt;ey0tqx_F zXKqt1klE{-5&2NzP+5y`=IQR~&t9)Pa_Q)9iCj({j>zo{(sGG2W?rt6cRarF&tfmO z(xuB(V;aO9=6re0q3*MBeMpRap3)7pWRr*$wox{rST;0AcIL3UVYR7G# zxBssFzSb$HKBI_l`KATc-?Qi3+RCnz&0?!toNtyot7}hrlex{A#V_QOjg(&mp2}yo z4zS|0*?LKT3B#Ncd$DBu7yB9NXS`ji7IUpBcz4{=>hEzMD(X7TGS$xX%}{8W$!ZXG z^TOtf_n2#%c=m>OS*XX~I{fl_oPXaDwMw}P`CEb$4OPD?hV5Ny8_cM1XzGFU9a zfR=cJ!d1!Fjx1J|srZm?aqG{I`v>Y%x{j)Ky>`;s`9_E-m2-dfr`9h_9`8OdXS4oe zc)9ETehFybzcg=N0SO@-unVW$@p6uVdiqYWJU|f#WKN|KiV|&U2+6JSkpY zT=la0$~mHJi=^MywXm@}=;d%aw9UOn#4(VNY( zD-GSuK3Hz~Ila(TVca2>Y9SQ!hPUsm>tqilwga-JG*r8lYnvTyAQaWxgeFcikfA zEH=g^`>rW`sC%HiG5Gxjb7$Hwl9t3S{A z{5oP}xCFJoJ^LU&$kDr;PNesA-%2%oO1ID)?oFD%mQDAQ+qNFy`1Ehj&+bdh+_+Y2OIX&bS-KV{FRD2| zDbZ{4W?6Sl4c(*hK~_)CDpXGQpHZ}U(e<9)5_9k5@Ca(GTB&yDuCtEJI(JR`s&md^ zcRsIsbIin7UZK@7i-a9EN;l?5Xq-LuX^IX#qN{i7R5bKD+#*Wld*H# z+ysrsEU|GVE-!AYzX^SCW3kMim&qsJXDVA+7$y72E7%{oD7&Nk;@q3dPbSI69&fue zO>ElUr)gcQoNu{Z5?RE)G|t^W&-3*qnOCnCex4cWZq+Z!`u5u%rn?tym=yY44^KO- znYqG$)iSP%IXaI@`u(9*LfuHCQfc^6(RSh`jFs-F9h!Oae(=$*Fs@Ul9IScIN!p)K zbz|6^&TmzG%c>=pBi`|b`Pz03!RC-%Tc$qEuh(|nYC8GtNd@DUnI&&;nn&wj4B=VW zx?S+0`>9WtH~qEZTD@x0vJj59va|Fye`5jp>F{0Kmr3i7nb-bnKJZ)c(aQUikLYHZ z=Q2&S`f{TDo&nPg>%s@yndXb$P}vap;4+iF$P0mvxrTbU zomUk}#~60!SSo#pYur6``+>}z-=vzZhMtVN)nYb#nQWoo(&FcShn5?Qy?o46Z~4=j zt1XKoB!uaYrexaMdA!Sn=NvMb``}35l)u7!b1r=Msa-EF%f2~o%k^~8TT3!rW=p7^ zQquUiWBdC8_P^}>U9z1yYR%`;17ms5Ue7tbO?b|?;w3&cne6)%g|e-;eKv2Y_E&e` zQqHh_!b6rnuS|18VyA5U`b51yd(egQ7Yebv|H)4IrB!7*OVUvJU?yLL0;5lj zRpET6?gc_Cg19=}mAC$N@3U)_Yo9Uk7VqlMiVQ9qY8-UzgktCetH$)S|nY2;Hc_n6fxU!cUSoB4&uiTev5w;8Sa zQ<=u`gXdIr@Z-?ieIg>~^%~uFELVSg(79w$Grz~Fru);*`#+s!)^VHh0k`Gv5={w4 ziA%~hi9fmY^7s6DCI7R=j(?l4S@e$G+PAg;&6;9)=#j(GQ&TILTNgYxf3DZ**i^Gt zB!5T2i;rS#_oM5tZk3m^tJ8TcoiHCYq(Q*xuOT++xP)HG8^Y$s>!0^VaQdct826OxsHXwF!xa zMMAP_f@}hTS8{IkES_~oY$N@ZIurc1?zMcEf1QqZJpao9%1?UuRB5Rbky|Md-reU zvJ1-v&M7_6*HjLWWSaZK{I$)hl@g2+pPE0Nxyo!(X{~0p+e|57+aINl+h2X=h0RoT zV`$qmVa*E5T-KI+g*RgCOjk{Rbe(3fJ0%md2qdTQWC^oPWp~#HPQjeQkVC3c`=@0t zn|Q88ut8D($-+$GOWHo?=cby?ocIosL8z+>sIvR&_jrg??r!+72G^Bq!U zUvL^nmbdkSrJn0uSZV%a4+rx>)wK_fY-ikhbJ|sqC7X|aI4~jl+2JoUckp(ejc1XLa(MD7r#qV^ z;e=*c&Aey^M)x0m>z8~I^>BF%LiyoR_{HU=0kfrhe zj>FCWE}b&pWP6U|zyxENjS&W{4L?q0?VI}6G4eT^sf3=2kNklLSv?Fq>yB{@KgK`% z688l*H`iW}VPIfj@O1TaS?83{B$_4o=#ptwp}F;etlnESm2Gb4J}vW3_1Qel+=b2K z|GW)%cbChjy}QT9XKiIQtwP90>fW09+(*{uK7RbTUQEctvVp1cc%})@XQtDeR$i^P z+j8!>osrWeM!ncwF6-8RX zauMM?8?KttY4d(vyRPRqCym{Kq2}qEo12epd@WNDUa;fH$)Mi zEb`2&XIxvkKT1m3zFT(jt@oxCe|P^r@%)JD>hB?pUwRD|E?oH2IQ^Uq`#U~aD-ol8 zM~WFPm9Pt3EIxfbzJ9Mg`=RBb3TqOMY`ZMQ`)BKfs5(K%|B;nzGG3>LI-Fxj7M!zw zef}H!|3A-HAGmwTugUXr@WQ!PrA}%qSQjT36@Bs(<$Me^n@pts9ChUC z_T5_LpX&Ikej^K0cEhfQ-Lh6C4s0uqXa;0fX-&E4QFAfk_lXlHEVcLo43wX2a&xZN zUh++z{o?s~%h&#kkDTz!-pp*;wRN$(dFF`TaW&f<0@A3Kail|#@6WBW)6;bI4Zd@S z$Sg>3scUre?#sOL^EOLW%DVW_wB{$71+DRQKcCKi@aDtA!w(sjo@4O5Z0xAikzrf+ z=SSnsn>V%i0yZ!`W1AN--&c0|&)4jKX8n(sY%n-D@dZ1dOh@gTjmO`yrk|e0IB6OC zp$h@q?^V6d{Zst>$BzneLwSbHS}jg*kN*1Lw5#@;=HCa8PVu#+GW4u>Eh;YloUpEp zF}?Mlekp^FFMo?<@6E|kAG6u}*4ZC1P)?c9#Vpb_VZzFb7T0;I9!1-Gt@*Q;sfbbL z?~lj*C;pd9m}Cf;9ZF!^afNY%i6n=)j75Qhk>lHfOM3jq)2HwR88E+Y{5J2T^74NE zNLiLJ&I{N7%h=UeR6aV=nS9`C-QQn|WmA9c_u*r>{J7!T+UR6E2Dzsvj54-+wQJpQ z3X4;;{d?Jyt9!K#`-GS0mn>1awX1Zse(@IV9a@W1$Q(Otgx z+^JKWR_FHyZjgWSL8D-AvchS}UvJjWpC5newEq4-Di*gkr~9kqPWZ3C`JeeLIrc3% zH-%mX)I7c?d-3AM=qG1$MLZlA1}SW|=j7y!`1>;SxKjNs3k!=WnXDOwYN-K}_tpO1 z_VoJgyLa#2ce=1JXc1Q^Pwgjd9i5(MXJ>zx+;P%tsq79di|WIB?bm3?-dY)~9?RA% zV_77?E~{QxtlBKHifPmLEJ8O5?0=DoeR*qyy@ z@8c5_mAQ{NSX;XqCfKtU78X8v^JWiw42$|f--3{Wtue9;%lx|x^9oB!Toydsk#cg< z^h=j7>n2Y;x`u1@f`EGt@A=g^czCYZ{d_Xn{J>GY*j-!L%~{>ScFhvWzP3iP>7ifG zyNMGg{yw6yAgxVQOQz_VxV!wWUAx!}*sGhmlMbfs^r;g~cg=2=*k1Pjp6qcy>$Q=a z)42MXv{Y9GXinH$9}pmLcAo8T=YkE<+w)%Z^d8J_wP0AIA(7U9nCs%Xo_RK0Ka>pD)rf!nU@dRs;jHZ)V0pM&&6GLR;~HrvO}K(8sZcc6{|NY zyIe#dN_F=Bf7{e-aeUjMrufaGXL*dHO5WTM{I&Y_ot?$; z&lYO>i%6t>72x7ZW!+*wNw==9uJZl<|Nle^);YKH1t@sbPWyf4{ns@bs$BdzcXn)4 z{(tB4{rmszd9WK1J)>`U}YtxZuf@e`T@&}zomocPkqKX~?Fek}3U_jL&U|>N)#Ckf_vh#4ZhRvd=~1x$Q1JYtGY!Qu>Tc(5 zPmEiT-7TieR*=}Ami8)s&Vp$k8dD^TPBzc@!j*k*kLA8EyRuJD(_LsW;pfVdxA`WP zTqoX(?DOqok`d^)FMk)aZ-!!9r0txhL-QTIp|&F| zv-1DznKG;f!q+byJjnQ&sk~@{k%fkahRA6Z6I1gA0bD2M{BPwJSEyCGy*0bs+~Vjb zDfW9wvQluJUre2P%;s8^HZA`)$29xe599Q6PZDOfoZ`})!V>f=B|Uxe_U+~GuB;4> zXP-VJxV$O4Dfz*y*f0Msr9_3uEx)%fbamL>pIgnVKRBJa$H^WLso473ak^c^n{5>z zAH^R~JgBNu&bD2v2SuF*z!=haG<~K{^3-W7dE(y?C@+I-A!|Q8n4+lMGd>~MK zQgDvYomHO>Y_~9GJ7VFqH23wjwWXS0jtKkPRQ&nzu{bj`bC>W8`4~sXN%HXp&)>bP z`?s)Nu1e;Ppv<8#_kvS-O!pu0%*&kOB*R_);^6wd`+q*0ttludc=JM;mRx{=)2q5O zvTyJ2w|~C4->yo2j^Lex-=Y_P+1PzxyT#^7PCb6x@0LlIz5NoqyX>vG#JwZ;7-xj0 zYFyFt_>_E3LqVb8+4=eV8Da$I9Bi3>*IRzGh zrJ)g!-mUe*JMG6;F7K46Z8R>V=>GKRG!$;_1u7cO*FaW~l91m9p`6@2o(s#7j)+Tgx-9u9_;x zU-J4|u0-};UR)z5~O!iX|Qzb;XASm2c%*>MLp)ex9Fe-9Gc4@nW~$DxNtR_xIU~G+p@{y6e*BJ!fS2 zUqox%-kRP1HmCM@pX~4Q`uhJ7OZMGh=Q=ZWNx)}?rntWW+I{Sg=T|jagNGi=KB}7j`BnY-+1Zbqo{Q)9m#FVhP~W{O_d>Pp=Bbj0n3h|+=wJB1^ZC5ryQfbN zSJBe4w~u!|dUJ(OYZlYO?-$#o_8ls@yv%p`{Hj-)8UOy>dG`0>wXcp_v4ZPlQ zeX`bV`Wq}REOc(KzPK&-))q&1^^^VE*x9pqe=a@wWyMX-uB0Y5UMZfq-DPjzA3S)l zC3MNGqNXh73G&Bh{P_9v;v`k?e-6=$d|lbuZzikN_j;61yOv|wC?{-TVd0@Ju_NQ+ zqMeM4j5pgjjYY+8C|-D-t#rfHEdTwzy_Ut#&is_i?bs%gt7TfhR(-$8X5kYDB$n5G z&AYK-;X4-j`ad6M&zm>Tu!GyeBCN1+?!gt`Kek@Y%gfsseDgwChVvHHTOnI?Z$(VJ zpYZHJ#4?ZFCRtZjuxB4*jG4&%Zuk3r?lCbjd^1!gO7X4|I2I?L{gauQIrHnQtNWDQ z`)Xuzuk9+$wqTgHFJY4RGON^W?i24Pq^VDsocfDXSgGLE`KeYf+|A-ye2fyrE=GN@hxbV9EiBqSP);umRE8}}^HnU@!qjcxC zLzB|B$leM#_d)AZ{P88iC$>6Ah_o6jd|jWMq|IcFYPBNezXhvBDUsl&f3S3+#J z@2~s&YeA>5x}T%8$KL*Jg1IWjwi(u27AnZ z$9(#g>Lq!nwsB1=iv4(fcycZYU?c3Yi(|4A+sD*QK!1fi%S4>~YlR7MzP5wXJAHG^egr}6SNZz=bHlwpYg=rF3U0ogP{=eUDFI*YCe4lz} z|1MYA#p_(>o{o!OW-;~2%7n>%4G*tcNS(N`K>NGT-UZ&R$_XJ7Ozsie^X8g+FP_uU z!7W*%mIC%VLBW6IA1jm(z&|NVN+==eu5=-mRp!0juN1Fx?rPF}x0 zXwKA>ZEnmj{BoAKePi6*H^Fu9#F-9{JKbb#GA}LR)DB;F=g`5TBo7acMCoNd^SRtF z>~Fv3Gh-HmXO*vvtCFnz%*`7%7=YUGmp(l`z1=TG*mmEUcMk6oG?}09y%H|g9?{$$-U(TgXDa#ZNysQmxuf~0Ia}u8N%i?PRSyrfdYk9ptNHZd;bAGJG(#;3 z)k*JouHID4nGknAebILJoFnJsUc7oG_3`ib`}*}S7Pikb6O=zKvEZ}e?CxDIa~I{M zwjG~yFXYL3CgVP~w8$3TYese#WEl@zF!QdlW_o=S)LysCy}ByY8q~DySKhg>-c@R= z#`oA*nL}(3zb@sf5IACgBd_bHkd1bKi*dSJKQq&Kzm#Rs6A9;hdx6qM zE62MXR!*@CP2oW3IX%Gy&OZmgV{I`O99la2+)IeO$|G`_bVGi5oWaP-0N_xtP5 z@N5&+4$HZ{Db;(*{{8i0+rB1V6c1aZOYS<)}P2fUS{jw z(C4bq{%5Q3V(TUwwI;p(Gv^+>cwr$G{O^9<@3%^FvNjH@nA!Q3BuAQUQoFID`3K|e z|LY=BCcl$TnJDKfTrGe`qj6*yu9B@^7+}>+ba&W zaIP+6*!+cJH3lMI-) zG5PqurcH&C?Qk;_CpMGrfV!iuP_0`|fDwJImyyZFA!`tJMo|DoIjL&sXo8vQze7_;|Gx+d@9Ur7O%Z`Z^qTYBkLck$sV-OQdpl`#`a~>1P%_Kg_C7p$CPr^wlt(9 zeG&durSSbsdFi`5KlKDQSAKrh?8_IV^4k$DM3Ecvz+?C|4y2 z2uuI|&BcE36Hl#YW5b)B-Jjk!)XZ0~s49L@7Q=o0$ksysJKW!o>tFe>Rdl$T9|u>`THT;!u% Date: Tue, 2 Jul 2024 08:02:48 +0200 Subject: [PATCH 151/296] Translation resources sync with Transifex --- Languages/po/ar.po | 1276 ++++++++++++------------- Languages/po/ca.po | 1276 ++++++++++++------------- Languages/po/cs.po | 1276 ++++++++++++------------- Languages/po/da.po | 1276 ++++++++++++------------- Languages/po/de.po | 1276 ++++++++++++------------- Languages/po/dolphin-emu.pot | 1276 ++++++++++++------------- Languages/po/el.po | 1276 ++++++++++++------------- Languages/po/en.po | 1276 ++++++++++++------------- Languages/po/es.po | 1493 ++++++++++++++++------------- Languages/po/fa.po | 1276 ++++++++++++------------- Languages/po/fi.po | 1276 ++++++++++++------------- Languages/po/fr.po | 1276 ++++++++++++------------- Languages/po/hr.po | 1276 ++++++++++++------------- Languages/po/hu.po | 1276 ++++++++++++------------- Languages/po/it.po | 1483 ++++++++++++++++------------- Languages/po/ja.po | 1276 ++++++++++++------------- Languages/po/ko.po | 1276 ++++++++++++------------- Languages/po/ms.po | 1276 ++++++++++++------------- Languages/po/nb.po | 1276 ++++++++++++------------- Languages/po/nl.po | 1276 ++++++++++++------------- Languages/po/pl.po | 1276 ++++++++++++------------- Languages/po/pt.po | 1276 ++++++++++++------------- Languages/po/pt_BR.po | 1491 ++++++++++++++++------------- Languages/po/ro.po | 1276 ++++++++++++------------- Languages/po/ru.po | 1276 ++++++++++++------------- Languages/po/sr.po | 1276 ++++++++++++------------- Languages/po/sv.po | 1732 ++++++++++++++++++---------------- Languages/po/tr.po | 1281 ++++++++++++------------- Languages/po/zh_CN.po | 1290 ++++++++++++------------- Languages/po/zh_TW.po | 1276 ++++++++++++------------- 30 files changed, 20021 insertions(+), 19373 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index f3fd0031b0..52440ac6fc 100644 --- a/Languages/po/ar.po +++ b/Languages/po/ar.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: mansoor , 2013,2015-2024\n" "Language-Team: Arabic (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -91,7 +91,7 @@ msgstr "" "%1\n" "يريد الانضمام إلى المجموعة." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -145,7 +145,7 @@ msgstr "%1 (بطيء)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -180,7 +180,7 @@ msgstr "%1 لا يدعم هذه الميزة علي النظام الخاص بك msgid "%1 doesn't support this feature." msgstr "%1 لا يدعم هذه الميزة." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -190,11 +190,11 @@ msgstr "" "%2 موضوع(s)\n" "%3 الإطار الحالي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 قد انضم" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 لقد غادر" @@ -202,11 +202,11 @@ msgstr "%1 لقد غادر" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 القرص غير صالح" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 is now golfing" @@ -218,8 +218,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "نطاقات الذاكرة %1" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -236,7 +236,7 @@ msgstr "%1 وجدت جلسة" msgid "%1 sessions found" msgstr "%1 الجلسات التي تم العثور عليها" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -344,11 +344,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&حول" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&إضافة نقطة توقف الذاكرة" @@ -365,11 +365,11 @@ msgstr "&إضافة وظيفة" msgid "&Add..." msgstr "&إضافة" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&إعدادات الصوت" @@ -385,11 +385,11 @@ msgstr "&نافذة بلا حدود" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&نقاط التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&تتبع اخطاء المحاكي" @@ -397,15 +397,15 @@ msgstr "&تتبع اخطاء المحاكي" msgid "&Cancel" msgstr "&إلغاء" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&تحقق من وجود تحديثات" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&مسح الرموز" @@ -413,7 +413,7 @@ msgstr "&مسح الرموز" msgid "&Clone..." msgstr "&استنساخ" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&رمز" @@ -421,7 +421,7 @@ msgstr "&رمز" msgid "&Connected" msgstr "&متصل" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&إعدادات ذراع التحكم" @@ -444,13 +444,13 @@ msgstr "&حذف" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&حذف المشاهدة" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -464,11 +464,11 @@ msgstr "&تحرير الرمز" msgid "&Edit..." msgstr "&تحرير" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&إخراج القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&محاكاة" @@ -489,40 +489,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&الخط" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&الإطار المسبق" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&إعدادات المظهر الحر" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&إنشاء رموز من" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub مستودع " -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&إعدادات الرسومات" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&مساعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&إعدادات مفاتيح الاختصار" @@ -542,7 +542,7 @@ msgstr "&استيراد الحالة" msgid "&Import..." msgstr "&استيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity قاعدة" @@ -554,7 +554,7 @@ msgstr "&blr إدراج" msgid "&Interframe Blending" msgstr "&مزج الإطارات" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -566,11 +566,11 @@ msgstr "&اللغة" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&تحميل الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Load Symbol Map" @@ -580,11 +580,11 @@ msgstr "&تحميل الملف إلى العنوان الحالي" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&تأمين المصغرات في القائمة" @@ -592,11 +592,11 @@ msgstr "&تأمين المصغرات في القائمة" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&فيلم" @@ -604,7 +604,7 @@ msgstr "&فيلم" msgid "&Mute" msgstr "&صامت" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&شبكة الاتصال" @@ -613,23 +613,23 @@ msgid "&No" msgstr "&لا" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&فتح" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&خيارات" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&HLE وظائف تصحيح" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&إيقاف مؤقت" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&تشغيل" @@ -637,7 +637,7 @@ msgstr "&تشغيل" msgid "&Properties" msgstr "&خصائص" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&وضع للقراءة فقط" @@ -645,7 +645,7 @@ msgstr "&وضع للقراءة فقط" msgid "&Refresh List" msgstr "&تحديث القائمة" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&تسجل" @@ -663,11 +663,11 @@ msgid "&Rename symbol" msgstr "&إعادة تسمية الرمز" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&إعادة" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&أدارة حزمة الموارد" @@ -675,7 +675,7 @@ msgstr "&أدارة حزمة الموارد" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" @@ -683,7 +683,7 @@ msgstr "&Save Symbol Map" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Skylanders منفذ" @@ -691,7 +691,7 @@ msgstr "&Skylanders منفذ" msgid "&Speed Limit:" msgstr "&حد السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&إيقاف " @@ -699,7 +699,7 @@ msgstr "&إيقاف " msgid "&Theme:" msgstr "&المظهر" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&المواضيع" @@ -707,7 +707,7 @@ msgstr "&المواضيع" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&أدوات" @@ -717,21 +717,21 @@ msgstr "&إلغاء تحميل القرص" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&مشاهدة" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&الموقع" @@ -743,11 +743,11 @@ msgstr "&معلومات عن اللعبة" msgid "&Yes" msgstr "&نعم" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' لم يتم العثور على أي أسماء رموز تم إنشاؤها" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' لم يتم العثور على المسح بحثًا عن الوظائف الشائعة بدلاً من ذلك" @@ -795,7 +795,7 @@ msgstr "- طرح" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--غير معروف--" @@ -861,7 +861,7 @@ msgstr "16-bit عدد صحيح موقع" msgid "16-bit Unsigned Integer" msgstr "16-bit عدد صحيح غير موقع" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -945,7 +945,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1046,7 +1046,7 @@ msgstr "<لغة النظام>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "إذا لم تكن متأكدا فاترك هذا دون تحديد" @@ -1178,7 +1178,7 @@ msgstr "" "دعم ريموت وي في اللعب عبر الشبكة تجريبي وقد لا يعمل بشكل الصحيح.\n" "استخدام على مسؤوليتك الخاصة.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR رموز" @@ -1220,8 +1220,8 @@ msgstr "ضبط" msgid "Achievement Settings" msgstr "إعدادات الإنجاز" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "الإنجازات" @@ -1301,7 +1301,7 @@ msgstr "تفعيل المحادثة في اللعب عبر الشبكة" msgid "Active" msgstr "نشط" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "النشطة Infinity شخصيات" @@ -1313,7 +1313,7 @@ msgstr "قائمة انتظار مؤشر الترابط النشط" msgid "Active threads" msgstr "المواضيع النشطة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "محول" @@ -1321,7 +1321,7 @@ msgstr "محول" msgid "Adapter Detected" msgstr "كشف عن محول" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "محول" @@ -1378,7 +1378,7 @@ msgstr "إضافة للمشاهدة" #: 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:329 msgid "Add..." msgstr "أضف" @@ -1392,7 +1392,7 @@ msgstr "أضف" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "عنوان" @@ -1599,7 +1599,7 @@ msgstr "السماح بإعدادات المنطقة الغير متطابقة" msgid "Allow Usage Statistics Reporting" msgstr "السماح بالإبلاغ عن إحصائيات الاستخدام" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD Card السماح للكتابة على" @@ -1639,7 +1639,7 @@ msgstr "كان من المتوقع وجود قرص مدرج ولكن لم يتم msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "تحليل" @@ -1665,15 +1665,15 @@ msgstr "التنعيم" msgid "Any Region" msgstr "أي منطقة" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "إلحاق التوقيع ل" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "إلحاق ب & ملف التوقيع الموجود" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "تطبيق ملف التوقيع" @@ -1691,7 +1691,7 @@ msgstr "تاريخ الإصدار" msgid "Apply" msgstr "تطبيق" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "تطبيق ملف التوقيع" @@ -1723,16 +1723,16 @@ msgstr "هل أنت واثق؟" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "نسبة الابعاد" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "نسبة العرض إلى الارتفاع تصحيح الدقة الداخلي" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "نسبة الابعاد" @@ -1773,11 +1773,11 @@ msgstr "أرفق موشن بلس" msgid "Audio" msgstr "الصوت" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "الخلفية الصوتية" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "إعدادات امتداد الصوت" @@ -1793,7 +1793,7 @@ msgstr "الكاتب" msgid "Authors" msgstr "المؤلفون" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "تلقائي" @@ -1818,7 +1818,7 @@ msgstr "" "\n" "يرجى تحديد دقة داخلية محددة." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "ضبط تلقائي لحجم النافذة" @@ -1826,15 +1826,15 @@ msgstr "ضبط تلقائي لحجم النافذة" msgid "Auto-Hide" msgstr "إخفاء تلقائي" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "RSO الكشف التلقائي عن وحدات" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "تزامن تلقائيا مع المجلد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1882,19 +1882,19 @@ msgstr "BP تسجل" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "الخلفية" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "تعدد المسارات الخلفية" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "إعدادات الخلفية" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "الخلفية" @@ -1937,7 +1937,7 @@ msgstr "قيمة غير صالحة المقدمة" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "الشعار" @@ -1961,7 +1961,7 @@ msgstr "" msgid "Base priority" msgstr "الأولوية الأساسية" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "الأساسية" @@ -2013,11 +2013,11 @@ msgstr "Binary SSL (read)" msgid "Binary SSL (write)" msgstr "Binary SSL (write)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "(kbps) معدل البت" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2027,7 +2027,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "حجم الكتلة" @@ -2065,7 +2065,7 @@ msgstr "" "libusb تم تمكين وضع عبور البلوتوث ولكن تم تصميم دولفين بدون\n" "لا يمكن استخدام وضع العبور" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "التمهيد لإيقاف مؤقت" @@ -2077,11 +2077,11 @@ msgstr "BootMii NAND backup file (*.bin);;All Files (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "ملء الشاشة بلا حدود" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "اسفل" @@ -2258,20 +2258,20 @@ msgstr "خطأ محول النطاق العريض" msgid "Broadband Adapter MAC Address" msgstr "عنوان ماك لمحول النطاق العريض" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "مستعرض جلسات اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "حجم المخزن المؤقت" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "تم تغيير حجم المخزن المؤقت إلى %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "المخزن المؤقت" @@ -2320,7 +2320,7 @@ msgstr "" msgid "C Stick" msgstr "C عصا" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "إنشاء ملف التوقيع" @@ -2344,7 +2344,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (أبطأ)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2424,11 +2424,11 @@ msgstr "لا يمكن بدء جلسة اللعب عبر الشبكة بينما #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "إلغاء" @@ -2515,7 +2515,7 @@ msgstr "المركز و المعايرة" msgid "Change &Disc" msgstr "تغيير &القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "تغيير &القرص" @@ -2537,7 +2537,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2558,7 +2558,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "سيحدث تغيير الاسرار فقط عند إعادة تشغيل اللعبة." @@ -2566,7 +2566,7 @@ msgstr "سيحدث تغيير الاسرار فقط عند إعادة تشغيل msgid "Channel Partition (%1)" msgstr "(%1) قسم القناة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "الحرف الذي تم إدخاله غير صالح" @@ -2578,7 +2578,7 @@ msgstr "محادثه" msgid "Cheat Code Editor" msgstr "محرر رمز الأسرار" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "بحث عن اسرار" @@ -2586,7 +2586,7 @@ msgstr "بحث عن اسرار" msgid "Cheats Manager" msgstr "مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "NAND تحقق من" @@ -2626,11 +2626,11 @@ msgstr "اختيار ملف لفتح" msgid "Choose a file to open or create" msgstr "اختر ملفًا لفتحه أو إنشائه" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "اختيار ملف الإدخال ذي الأولوية" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "اختر ملف الإدخال الثانوي" @@ -2661,7 +2661,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "مسح" @@ -2669,7 +2669,7 @@ msgstr "مسح" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "مسح ذاكرة التخزين المؤقت" @@ -2690,7 +2690,7 @@ msgstr "استنساخ و &تحرير الرمز" msgid "Close" msgstr "إغلاق" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "الإعدادات العامة" @@ -2734,7 +2734,7 @@ msgstr "مساحة اللون" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "دمج اثنين من ملفات التوقيع" @@ -2767,7 +2767,7 @@ msgstr "" "من الممكن أن يكون هذا تفريغًا جيدًا مقارنة بإصدار متجر وي يو للعبة. لا تستطيع " "دولفين التحقق من ذلك." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "تجميع التظليل قبل البدء" @@ -2777,7 +2777,7 @@ msgstr "تجميع التظليل" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "نوع الضغط" @@ -2892,7 +2892,7 @@ msgstr "إعدادات" msgid "Configure Controller" msgstr "إعدادات ذراع التحكم" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "إعدادات دولفين" @@ -2916,7 +2916,7 @@ msgstr "إعداد الإخراج" msgid "Confirm" msgstr "تأكيد " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "تأكيد تغيير الخلفية" @@ -2924,7 +2924,7 @@ msgstr "تأكيد تغيير الخلفية" msgid "Confirm on Stop" msgstr "تأكيد على التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2935,15 +2935,15 @@ msgstr "التأكيد" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "ربط لوح الميزان" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "ربط لوحة مفاتيح يو إس بي" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "%1 ربط ريموت وي" @@ -2963,7 +2963,7 @@ msgstr "ربط ريموت وي 3" msgid "Connect Wii Remote 4" msgstr "ربط ريموت وي 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "ربط ريموت وي " @@ -3102,8 +3102,8 @@ msgstr "التقارب" msgid "Convergence:" msgstr "التقارب" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "فشل تحويل." @@ -3111,9 +3111,9 @@ msgstr "فشل تحويل." msgid "Convert" msgstr "تحويل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "تحويل ملف إلى مجلد الآن" @@ -3121,9 +3121,9 @@ msgstr "تحويل ملف إلى مجلد الآن" msgid "Convert File..." msgstr "تحويل الملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "تحويل المجلد إلى ملف الآن" @@ -3147,8 +3147,8 @@ msgstr "" "هل تريد المتابعة على أي حال؟" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "جارٍ التحويل ..." @@ -3355,7 +3355,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "تعذر البحث عن الخادم المركزي" @@ -3371,13 +3371,13 @@ msgstr "لا يمكن قراءة الملف" msgid "Country:" msgstr "الدولة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "انشاء" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Infinity قم بإنشاء ملف" @@ -3408,11 +3408,11 @@ msgstr "المنشئ" msgid "Critical" msgstr "حرج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "اقتصاص" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3424,18 +3424,18 @@ msgstr "" msgid "Crossfade" msgstr "الإبهات المتداخل" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "المنطقة الحالية" @@ -3455,11 +3455,11 @@ msgstr "لعبة الحالية" msgid "Current thread" msgstr "الموضوع الحالي" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "مخصص" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "(Stretch) مخصص" @@ -3467,15 +3467,15 @@ msgstr "(Stretch) مخصص" msgid "Custom Address Space" msgstr "مساحة العنوان المخصصة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "تخصيص نسبة ارتفاع الابعاد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "تخصيص نسبة عرض الابعاد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "تخصيص نسبة الابعاد" @@ -3518,7 +3518,7 @@ msgstr "DJ Turntable" msgid "DK Bongos" msgstr "الطبول" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP Emulation Engine" @@ -3526,15 +3526,15 @@ msgstr "DSP Emulation Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (سريع)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (مستحسن)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (بطيء جدا)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (بطيء)" @@ -3611,7 +3611,7 @@ msgstr "المنطقة الميتة" msgid "Debug" msgstr "التصحيح" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "التصحيح" @@ -3621,7 +3621,7 @@ msgstr "التصحيح" msgid "Decimal" msgstr "عشري" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "جودة فك التشفير:" @@ -3668,7 +3668,7 @@ msgstr "افتراضي" msgid "Default Config (Read Only)" msgstr "(Read Only) الأعداد الافتراضي" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "الجهاز الافتراضي" @@ -3684,7 +3684,7 @@ msgstr "صورة القرص الافتراضية" msgid "Default thread" msgstr "الموضوع الافتراضي" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Defer EFB Cache Invalidation" @@ -3692,7 +3692,7 @@ msgstr "Defer EFB Cache Invalidation" msgid "Defer EFB Copies to RAM" msgstr "إلى ذاكرة الوصول العشوائي EFB تأجيل نسخ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3738,7 +3738,7 @@ msgstr "العمق" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "الوصف" @@ -3787,7 +3787,7 @@ msgstr "منفصل" msgid "Detect" msgstr "كشف" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3817,7 +3817,7 @@ msgstr "إعدادات الجهاز" msgid "Device VID (e.g., 057e)" msgstr "Device VID (e.g., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "جهاز" @@ -3825,7 +3825,7 @@ msgstr "جهاز" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "تقوم بتعتيم الشاشة بعد خمس دقائق من الخمول ." @@ -3849,7 +3849,7 @@ msgstr "تعطيل المربع المحيط" msgid "Disable Copy Filter" msgstr "Disable Copy Filter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" @@ -3857,11 +3857,11 @@ msgstr "Disable EFB VRAM Copies" msgid "Disable Emulation Speed Limit" msgstr "تعطيل محاكاة الحد الأقصى للسرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Fastmem تعطيل" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3869,11 +3869,11 @@ msgstr "" msgid "Disable Fog" msgstr "تعطيل الضباب" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3888,7 +3888,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4254,11 +4254,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "الهولندية" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "خروج" @@ -4286,7 +4286,7 @@ msgstr "" "مناسب للألعاب التنافسية حيث يكون الإنصاف والحد الأدنى من وقت الإستجابة أكثر " "أهمية" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "بداية تحديث الذاكرة" @@ -4360,7 +4360,7 @@ msgstr "(EFB) مخزن مؤقت للإطار المضمن" msgid "Empty" msgstr "فارغة" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "المحاكي قيد التشغيل بالفعل" @@ -4368,7 +4368,7 @@ msgstr "المحاكي قيد التشغيل بالفعل" msgid "Emulate Disc Speed" msgstr "محاكاة سرعة القرص" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Infinity محاكاة قاعدة" @@ -4386,7 +4386,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "تمت محاكاة أجهزة يو إس بي" @@ -4411,16 +4411,16 @@ msgstr "سرعة المحاكاة " #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "تمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "تمكين طبقات التحقق من واجهة برمجة التطبيقات" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "تمكين تمديد الصوت " @@ -4468,7 +4468,7 @@ msgstr "تمكين ظهور الإنجازات " msgid "Enable FPRF" msgstr "FPRF تمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "تمكين تعديلات الرسومات" @@ -4494,7 +4494,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4507,7 +4507,7 @@ msgstr "MMU تمكين" msgid "Enable Progress Notifications" msgstr "تمكين إشعارات التقدم" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "تمكين المسح التدريجي" @@ -4516,11 +4516,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.org تمكين التكامل" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "تمكين الهزاز" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "تمكين شاشة التوقف" @@ -4540,11 +4540,11 @@ msgstr "تمكين الإنجازات غير الرسمية" msgid "Enable Usage Statistics Reporting" msgstr "تمكين تقارير إحصائيات الاستخدام " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink عبر WiiConnect24 قم بتمكين" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "تمكين الإطار الشبكي" @@ -4600,7 +4600,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4633,7 +4633,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4641,7 +4641,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4658,7 +4658,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "لتمكين تمديد الصوت لتتناسب مع سرعة المحاكاة." @@ -4685,7 +4685,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4693,7 +4693,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4701,7 +4701,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4734,7 +4734,7 @@ msgstr "لم يتم تهيئة الشبكة" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "الإنجليزية" @@ -4751,7 +4751,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "أدخل معرف جهاز يو إس بي " -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "أدخل عنوانًا لمشاهدته" @@ -4775,7 +4775,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Enter the RSO module address:" @@ -4814,9 +4814,9 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4829,24 +4829,24 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4876,7 +4876,7 @@ msgstr "%1 : خطأ في فتح المحول" msgid "Error collecting save data!" msgstr "خطأ في جمع البيانات المحفوظة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4985,12 +4985,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "أوروبا" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Exclusive Ubershaders" @@ -5034,11 +5034,11 @@ msgstr "بداية التعبير المتوقعة" msgid "Expected variable name." msgstr "اسم المتغير المتوقع" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "تجريبي" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "تصدير جميع حفظ وي" @@ -5053,7 +5053,7 @@ msgstr "فشل التصدير" msgid "Export Recording" msgstr "تصدير تسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "تصدير تسجيل" @@ -5081,7 +5081,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5109,7 +5109,7 @@ msgstr "خارجي" msgid "External Frame Buffer (XFB)" msgstr "(XFB) مخزن مؤقت للإطار الخارجي" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "NAND استخراج الشهادات من" @@ -5147,7 +5147,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO Player" @@ -5167,7 +5167,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "فشل في إضافة هذه الجلسة إلى فهرس اللعب عبر الشبكة: 1%" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5187,7 +5187,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org فشل الاتصال بـ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "%1 فشل الاتصال بالخادم" @@ -5208,7 +5208,7 @@ msgstr "D3D12 فشل إنشاء موارد عمومية" msgid "Failed to create DXGI factory" msgstr "Failed to create DXGI factory" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Infinity فشل إنشاء ملف" @@ -5263,7 +5263,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "فشل تصدير ملفات الحفظ التالية:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "NAND فشل استخراج شهادات من" @@ -5293,20 +5293,20 @@ msgstr "D3D فشل في العثور على واحد أو أكثر من رموز msgid "Failed to import \"%1\"." msgstr "\"%1\" فشل الاستيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "فشل استيراد ملف الحفظ. الرجاء تشغيل اللعبة مرة واحدة ، ثم المحاولة مرة أخرى" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5333,7 +5333,7 @@ msgid "Failed to install pack: %1" msgstr "%1 :فشل تثبيت الحزمة" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "NAND فشل تثبيت هذا العنوان على" @@ -5345,8 +5345,8 @@ msgstr "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Failed to load RSO module at %1" @@ -5358,7 +5358,7 @@ msgstr "d3d11.dll فشل تحميل" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll فشل تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Failed to load map file '%1'" @@ -5386,11 +5386,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "فشل في تعديل Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5440,11 +5440,11 @@ msgstr "فشل فتح ملف" msgid "Failed to open server" msgstr "فشل في فتح الخادم" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Infinity فشل في فتح ملف" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5505,11 +5505,11 @@ msgstr "\"{0}\" فشلت القراءة من ملف الإدخال" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "فشل في قراءة ملف Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5575,27 +5575,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Failed to save FIFO log." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Failed to save to signature file '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5648,7 +5648,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "فشل" @@ -5684,7 +5684,7 @@ msgstr "" msgid "Field of View" msgstr "مجال الرؤية" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "رقم الشكل:" @@ -5698,7 +5698,7 @@ msgstr "تفاصيل الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "تنسيق الملف" @@ -5706,24 +5706,24 @@ msgstr "تنسيق الملف" msgid "File Format:" msgstr "تنسيق الملف" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "معلومات الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "اسم الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "مسار الملف" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "حجم الملف" @@ -5844,7 +5844,7 @@ msgid "" "\">refer to this page
." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "16:9" @@ -5852,7 +5852,7 @@ msgstr "16:9" msgid "Force 24-Bit Color" msgstr "24-Bit اللون" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "4:3" @@ -5884,11 +5884,11 @@ msgstr "فرض الاستماع منفذ" msgid "Force Nearest" msgstr "Force Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5962,11 +5962,11 @@ msgstr "زيادة سرعة الإطار المسبق" msgid "Frame Advance Reset Speed" msgstr " إعادة تعيين سرعة الإطار المسبق" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "تفريغ الإطار" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "مجموعة الإطار " @@ -5974,7 +5974,7 @@ msgstr "مجموعة الإطار " msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "إطارات للتسجيل" @@ -6029,7 +6029,7 @@ msgstr "نظرة حرة" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "الفرنسية" @@ -6048,8 +6048,8 @@ msgid "From" msgstr "من" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "من" @@ -6105,11 +6105,11 @@ msgstr "صوت جيم بوي أدفانس" msgid "GBA Window Size" msgstr "حجم النافذة جيم بوي أدفانس" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6253,7 +6253,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "معرف اللعبة" @@ -6266,7 +6266,7 @@ msgstr "معرف اللعبة" msgid "Game Status" msgstr "حالة اللعبة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "تغيرت اللعبة إلى \"%1\"" @@ -6378,7 +6378,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko رموز" @@ -6410,13 +6410,13 @@ msgstr "إنشاء هوية جديد للحصائيات " msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "أسماء الرموز التي تم إنشاؤها من '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "الألمانية" @@ -6492,7 +6492,7 @@ msgstr "اليسار أخضر" msgid "Green Right" msgstr "اليمين أخضر" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "شبكة" @@ -6574,7 +6574,7 @@ msgstr "إخفاء" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "إخفاء الكل" @@ -6598,11 +6598,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "عالية" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "الأعلى" @@ -6645,11 +6645,11 @@ msgstr "" "مناسب للألعاب غير الرسمية مع أكثر من 3 لاعبين ، وربما على اتصالات غير مستقرة " "أو عالية وقت الإستجابة." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "تم تعطيل سلطة إدخال المضيف" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "تمكين سلطة إدخال المضيف" @@ -6675,7 +6675,7 @@ msgstr "مفاتيح الاختصار" msgid "Hotkeys Require Window Focus" msgstr "تتطلب مفاتيح الاختصار التركيز على النافذة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybrid Ubershaders" @@ -6733,7 +6733,7 @@ msgid "IR" msgstr "الأشعة تحت الحمراء" #. 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:363 msgid "IR Sensitivity:" msgstr "حساسية الأشعة تحت الحمراء" @@ -6822,14 +6822,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6873,7 +6873,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB على الفور" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6882,7 +6882,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "النسخة الاحتياطية BootMii NAND استيراد" @@ -6897,7 +6897,7 @@ msgstr "فشل الاستيراد" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "استيراد حفظ وي" @@ -7000,16 +7000,16 @@ msgstr "تناوب تزايدي" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Infinity مدير" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7029,8 +7029,8 @@ msgstr "معلومات" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "معلومات" @@ -7043,11 +7043,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "إدخال" @@ -7073,7 +7073,7 @@ msgstr "" msgid "Insert &nop" msgstr "Insert &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD Card ادرج" @@ -7090,7 +7090,7 @@ msgstr "(%1) تثبيت القسم" msgid "Install Update" msgstr "تثبيت التحديث" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WAD تثبيت" @@ -7113,7 +7113,7 @@ msgstr "تعليمات" msgid "Instruction Breakpoint" msgstr "نقطة توقف التعليمات" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "التعليمات" @@ -7199,7 +7199,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (بطيء)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7224,7 +7224,7 @@ msgstr "حزمة غير صالحة 1% مقدمة :2%" msgid "Invalid Player ID" msgstr "معرف لاعب غير صالح" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" @@ -7249,7 +7249,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "إدخال غير صالح للحقل \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "إدخال غير صالح المقدمة" @@ -7285,13 +7285,13 @@ msgstr "سلسلة البحث غير صالحة ( فقط حتى أطوال سل msgid "Invalid title ID." msgstr "معرف عنوان غير صالح." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "%1 عنوان الساعة غير صالح" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "الإيطالية" @@ -7304,11 +7304,11 @@ msgstr "إيطاليا" msgid "Item" msgstr "عنصر" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7316,47 +7316,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7368,11 +7368,11 @@ msgstr "JIT Recompiler for ARM64 (موصى به)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (موصى به)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" @@ -7383,16 +7383,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "اليابان" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "اليابانية" @@ -7452,12 +7452,12 @@ msgstr "كيلوبايت" msgid "Kick Player" msgstr "طرد لاعب" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "كوريا" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "الكورية" @@ -7504,23 +7504,23 @@ msgstr "آخر موضع" msgid "Last reset:" msgstr "آخر إعادة تعيين" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "~10ms :وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "~20ms :وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "~40ms :وقت الإستجابة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "~80ms :وقت الإستجابة" @@ -7528,7 +7528,7 @@ msgstr "~80ms :وقت الإستجابة" msgid "Launching these titles may also fix the issues." msgstr "قد يؤدي تشغيل هذه العناوين أيضا إلى حل المشكلات" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "المتصدرين" @@ -7624,11 +7624,11 @@ msgstr "ضوء" msgid "Limit Chunked Upload Speed:" msgstr "الحد من سرعة الرفع المقسم:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "قائمة الأعمدة" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "قائمة" @@ -7640,15 +7640,15 @@ msgstr "الاستماع" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." @@ -7660,7 +7660,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "تحميل النسيج المخصص" @@ -7668,7 +7668,7 @@ msgstr "تحميل النسيج المخصص" msgid "Load File" msgstr "تحميل الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "تحميل قائمة جيم كيوب الرئيسية " @@ -7778,19 +7778,19 @@ msgstr "تحميل الحالة فتحة 8" msgid "Load State Slot 9" msgstr "تحميل الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "تحميل الحالة من الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "تحميل الحالة من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "تحميل الحالة من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" @@ -7802,35 +7802,35 @@ msgstr "تحميل وكتابة بيانات حفظ المضيف" msgid "Load from Selected Slot" msgstr "تحميل من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "%1 - %2 تحميل من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Load map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "الرموز المحملة من '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7844,7 +7844,7 @@ msgstr "محلي" msgid "Lock Mouse Cursor" msgstr "قفل مؤشر الماوس" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "مقفل" @@ -7870,7 +7870,7 @@ msgstr "إعداد السجل" msgid "Log In" msgstr "تسجيل الدخول" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -7878,7 +7878,7 @@ msgstr "Log JIT Instruction Coverage" msgid "Log Out" msgstr "تسجيل الخروج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "تسجيل وقت التقديم للملف" @@ -7894,27 +7894,27 @@ msgstr "مسجل المخرجات" msgid "Login Failed" msgstr "فشل تسجيل الدخول" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "التكرار الحلقي" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "فقد الاتصال بالخادم" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "منخفضة" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr " الحد الأدنى" @@ -7974,7 +7974,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "الناشر" @@ -7991,12 +7991,12 @@ msgid "" "unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "NAND إدارة" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "أخذ عينات النسيج يدويا" @@ -8012,11 +8012,11 @@ msgstr "Mask ROM" msgid "Match Found" msgstr "وجد تطابق" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "المخزن المؤقت الأقصى" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "%1 تم تغيير حجم المخزن المؤقت الأقصى إلى" @@ -8025,7 +8025,7 @@ msgstr "%1 تم تغيير حجم المخزن المؤقت الأقصى إلى msgid "Maximum tilt angle." msgstr "أقصى زاوية الميل." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "قد يسبب تباطؤ في قائمة وي وبعض الألعاب." @@ -8046,7 +8046,7 @@ msgstr "نقطة توقف الذاكرة" msgid "Memory Card" msgstr "بطاقة الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "مدير بطاقة الذاكرة" @@ -8101,11 +8101,11 @@ msgstr "ميكروفون" msgid "Mini" msgstr "مصغره " -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "متنوعة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "إعدادات متنوعة" @@ -8123,7 +8123,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "عدم تطابق بين هياكل البيانات الداخلية." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8143,7 +8143,7 @@ msgstr "" msgid "Modifier" msgstr "معدل" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8159,8 +8159,8 @@ msgstr "تعديل الفتحة" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "%1 تم العثور على وحدات" @@ -8168,7 +8168,7 @@ msgstr "%1 تم العثور على وحدات" msgid "Money:" msgstr "نقود" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "احادي" @@ -8226,10 +8226,10 @@ msgstr "مضاعف" msgid "N&o to All" msgstr "لا للكل" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND تحقق" @@ -8238,7 +8238,7 @@ msgstr "NAND تحقق" msgid "NKit Warning" msgstr "NKit تحذير" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8265,7 +8265,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8475,7 +8475,7 @@ msgstr "لا اخطاء" msgid "No extension selected." msgstr "لم يتم تحديد ملحق" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "لا يوجد ملف تحميل / مسجل." @@ -8483,7 +8483,7 @@ msgstr "لا يوجد ملف تحميل / مسجل." msgid "No game is running." msgstr "لا توجد لعبة قيد التشغيل" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "لا توجد لعبة قيد التشغيل" @@ -8496,7 +8496,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "لم يتم اكتشاف أية مشكلات." @@ -8543,8 +8543,8 @@ msgstr "No undo.dtm found, aborting undo load state to prevent movie desyncs" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8693,7 +8693,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "نطاق الكائن" @@ -8718,7 +8718,7 @@ msgstr "تمكين" msgid "On Movement" msgstr "عند الحركة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8740,7 +8740,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "وثائق على الانترنت" @@ -8748,7 +8748,7 @@ msgstr "وثائق على الانترنت" msgid "Only Show Collection" msgstr "عرض المجموعة فقط" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8756,7 +8756,7 @@ msgstr "" "إلحاق رموز فقط بالبادية:\n" "(فارغ لكل الرموز)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8775,7 +8775,7 @@ msgstr "فتح" msgid "Open &Containing Folder" msgstr "فتح موقع الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "فتح مجلد المستخدم" @@ -8784,7 +8784,7 @@ msgstr "فتح مجلد المستخدم" msgid "Open Directory..." msgstr "فتح" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "FIFO فتح سجل" @@ -8874,7 +8874,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8916,11 +8916,11 @@ msgstr "إعادة تشكيل الإخراج" msgid "Overwritten" msgstr "الكتابة فوق" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "تشغيل تسجيل الإدخال" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8934,11 +8934,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG مستوى ضغط" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG مستوى ضغط" @@ -9026,7 +9026,7 @@ msgstr "إيقاف مؤقت" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "وقفة في نهاية الفيلم" @@ -9071,7 +9071,7 @@ msgstr "سرعة الذروة لحركات التأرجح الخارجية." msgid "Per-Pixel Lighting" msgstr "لكل بكسل إضاءة" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "تحديث النظام عبر الإنترنت" @@ -9079,15 +9079,15 @@ msgstr "تحديث النظام عبر الإنترنت" msgid "Perform System Update" msgstr "تحديث النظام" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "(ms) نافذة نموذج الأداء" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "(ms) نافذة نموذج الأداء" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "إحصائيات الأداء" @@ -9105,7 +9105,7 @@ msgstr "مساحة العنوان الفعلي" msgid "PiB" msgstr "بيتابايت" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "debug اختر خط" @@ -9122,7 +9122,7 @@ msgid "Pitch Up" msgstr "Pitch Up" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "المنصة" @@ -9130,7 +9130,7 @@ msgstr "المنصة" msgid "Play" msgstr "تشغيل" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "لعب / سجل" @@ -9138,11 +9138,11 @@ msgstr "لعب / سجل" msgid "Play Recording" msgstr "تشغيل التسجيل" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "خيارات التشغيل" @@ -9150,27 +9150,27 @@ msgstr "خيارات التشغيل" msgid "Player" msgstr "لاعب" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "اللاعب الأول" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "اللاعب واحد القدرة الأولى" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "اللاعب واحد القدرة الثانية" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "اللاعب الثاني" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "اللاعب اثنين القدرة الأولى" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "اللاعب الثاني القدرة الثانية" @@ -9192,7 +9192,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "يرجى بدء لعبة قبل بدء البحث باستخدام مناطق الذاكرة القياسية" @@ -9225,7 +9225,7 @@ msgstr "منفذ" msgid "Portal Slots" msgstr "فتحات البوابة" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "تم اكتشاف مزامنة محتملة: %1 قد تمت مزامنتها في الإطار %2" @@ -9241,20 +9241,20 @@ msgstr "تأثير ما بعد المعالجة" msgid "Post-Processing Shader Configuration" msgstr "إعداد تظليل ما بعد المعالجة" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "جلب النسيج المخصص المسبق " @@ -9291,7 +9291,7 @@ msgstr "اضغط على زر المزامنة" msgid "Pressure" msgstr "الضغط" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9366,11 +9366,11 @@ msgstr "الملف الشخصي" msgid "Program Counter" msgstr "عداد البرنامج" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "التقدم" @@ -9384,7 +9384,7 @@ msgstr "" msgid "Public" msgstr "عامة" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "أزالة ذاكره التخزين المؤقت لقائمة الألعاب" @@ -9408,7 +9408,7 @@ msgstr "(QoS) تعذر تمكين جوده الخدمة ." msgid "Quality of Service (QoS) was successfully enabled." msgstr "تم تمكين جودة الخدمة (QoS) بنجاح." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "DPLII جودة وحدة فك الترميز\n" @@ -9442,11 +9442,11 @@ msgstr "R-قوة ضغطة" msgid "READY" msgstr "جاهز" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO الكشف التلقائي" @@ -9471,7 +9471,7 @@ msgstr "نهاية النطاق:" msgid "Range Start: " msgstr "بداية النطاق:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9479,7 +9479,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "الدقة الداخلية الخام" @@ -9538,7 +9538,7 @@ msgstr "" msgid "Recenter" msgstr "إعادة المركز" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "تسجيل" @@ -9550,11 +9550,11 @@ msgstr "سجل المدخلات" msgid "Recording" msgstr "تسجيل" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "تسجيل الخيارات" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "تسجيل" @@ -9618,7 +9618,7 @@ msgid "Refreshing..." msgstr "تحديث..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "المنطقة" @@ -9651,7 +9651,7 @@ msgstr "ذكرني لاحقا" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "إزالة" @@ -9691,11 +9691,11 @@ msgstr "إعادة تسمية الرمز" msgid "Render Window" msgstr "نافذة العرض" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "عرض إلى النافذة الرئيسية" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9728,7 +9728,7 @@ msgstr "إعادة تعيين" msgid "Reset All" msgstr "إعادة تعيين الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "إعادة تعيين تجاهل معالج الذعر" @@ -9760,7 +9760,7 @@ msgstr "إعادة تعيين طريقة العرض" msgid "Reset all saved Wii Remote pairings" msgstr "إعادة تعيين كافة اقتران ريموت وي المحفوظة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "نوع الدقة" @@ -9939,19 +9939,19 @@ msgstr "روسيا" msgid "SD Card" msgstr "SD Card" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD Card حجم ملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD Card Image (*.raw);;All Files (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD Card مسار" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD Card إعدادات" @@ -9959,7 +9959,7 @@ msgstr "SD Card إعدادات" msgid "SD Root:" msgstr "SD Root:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD مجلد مزامنة" @@ -9994,11 +9994,11 @@ msgstr "SSL سياق" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "حفظ الرموز" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "حفظ الحالة" @@ -10030,11 +10030,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "حفظ التصدير" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "FIFO حفظ سجل" @@ -10052,11 +10052,11 @@ msgstr "حفظ اللعبة" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "حفظ الاستيراد" @@ -10068,7 +10068,7 @@ msgstr "حفظ الحالة الأقدم" msgid "Save Preset" msgstr "حفظ الإعداد المسبق" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "حفظ ملف التسجيل باسم" @@ -10118,23 +10118,23 @@ msgstr "حفظ الحالة فتحة 8" msgid "Save State Slot 9" msgstr "حفظ الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "حفظ الحالة في ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "حفظ الحالة في أقدم فتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "حفظ الحالة في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "حفظ الحالة في الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10154,11 +10154,11 @@ msgstr "حفظ كإعداد مسبق" msgid "Save as..." msgstr "حفظ بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "حفظ ملف الإخراج المجمع بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10172,11 +10172,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Save in Same Directory as the ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Save map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "احفظ ملف التوقيع" @@ -10184,11 +10184,11 @@ msgstr "احفظ ملف التوقيع" msgid "Save to Selected Slot" msgstr "حفظ في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "%1 - %2 حفظ في الفتحة" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "حفظ" @@ -10218,7 +10218,7 @@ msgstr "لقطة للشاشة" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "بحث" @@ -10247,7 +10247,7 @@ msgstr "" "البحث غير ممكن حاليا في مساحة العنوان الافتراضية. يرجى تشغيل اللعبة قليلا " "والمحاولة مرة أخرى." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "ابحث عن تعليمات" @@ -10255,7 +10255,7 @@ msgstr "ابحث عن تعليمات" msgid "Search games..." msgstr "بحث عن الالعاب" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "تعليمات البحث" @@ -10300,11 +10300,11 @@ msgid "Select Dump Path" msgstr "تحديد مسار التفريغ" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "حدد ملف تصدير " -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "حدد ملف الشكل" @@ -10344,7 +10344,7 @@ msgstr "Skylander حدد مجموعة" msgid "Select Skylander File" msgstr "حدد ملف Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "%1 - %2 حدد الفتحة" @@ -10352,7 +10352,7 @@ msgstr "%1 - %2 حدد الفتحة" msgid "Select State" msgstr "اختر الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "حدد فتحة الحالة" @@ -10419,7 +10419,7 @@ msgstr "اختر الملف" msgid "Select a File" msgstr "حدد ملف" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" @@ -10427,7 +10427,7 @@ msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" msgid "Select a Game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SD Card حدد صورة" @@ -10439,7 +10439,7 @@ msgstr "حدد ملف" msgid "Select a game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "NAND حدد عنوانًا لتثبيته إلى" @@ -10447,7 +10447,7 @@ msgstr "NAND حدد عنوانًا لتثبيته إلى" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "RSO حدد عنوان وحدة" @@ -10464,7 +10464,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "(OTP/SEEPROM dump) حدد ملف المفاتيح" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "حدد حفظ الملف" @@ -10488,7 +10488,7 @@ msgstr "اختيار الملف التحكم الشخصي غير موجود " #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "اللعبة المختارة غير موجودة في قائمة الألعاب!" @@ -10512,7 +10512,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10542,7 +10542,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10564,7 +10564,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10578,7 +10578,7 @@ msgstr "" msgid "Send" msgstr "إرسال" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "موضع الاستشعار" @@ -10643,7 +10643,7 @@ msgstr "تعيين عنوان نهاية الرمز" msgid "Set symbol size (%1):" msgstr "تعيين حجم الرمز (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10653,7 +10653,7 @@ msgstr "" "games.\n" "قد لا تعمل لجميع الألعاب." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "تحدد لغة نظام وي " @@ -10665,7 +10665,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10686,7 +10686,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10700,7 +10700,7 @@ msgstr "SetupWiiMemory: Can't create setting.txt file" msgid "Severity" msgstr "درجة الخطورة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "تجميع التظليل" @@ -10722,16 +10722,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "عرض السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "السجل" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "شريط الأدوات" @@ -10739,11 +10739,11 @@ msgstr "شريط الأدوات" msgid "Show Active Title in Window Title" msgstr "عرض العنوان النشط في عنوان النافذة" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "عرض الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "أستراليا" @@ -10756,7 +10756,7 @@ msgstr "عرض اللعبة الحالية على ديسكورد" msgid "Show Disabled Codes First" msgstr "عرض الرموز المعطلة أولاً" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -10765,27 +10765,27 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "عرض الرموز الممكّنة أولاً" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS عرض" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "عرض عداد الإطار" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "عرض أوقات الإطار" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "فرنسا" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "جيم كيوب" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "ألمانيا" @@ -10797,23 +10797,23 @@ msgstr "Show Golf Mode Overlay" msgid "Show Infinity Base" msgstr "Infinity عرض قاعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "عرض مدخلات العرض" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "ايطاليا" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "اليابان" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "كوريا" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "عرض عداد التأخر" @@ -10821,19 +10821,19 @@ msgstr "عرض عداد التأخر" msgid "Show Language:" msgstr "عرض اللغة" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "إعداد السجل" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "عرض رسائل اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "في اللعب عبر الشبكة Ping عرض الـ" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "هولندا" @@ -10841,7 +10841,7 @@ msgstr "هولندا" msgid "Show On-Screen Display Messages" msgstr "عرض الرسائل المعروضة على الشاشة" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "أوروبا" @@ -10850,27 +10850,27 @@ msgstr "أوروبا" msgid "Show PC" msgstr "عرض الكمبيوتر" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "عرض الرسوم البيانية للأداء" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "عرض المنصات" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "عرض إحصائيات الإسقاط" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "عرض المناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "عرض عداد إعادة التسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "روسيا" @@ -10878,51 +10878,51 @@ msgstr "روسيا" msgid "Show Skylanders Portal" msgstr "Skylanders عرض بوابة" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "اسبانيا" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "عرض ألوان السرعة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "عرض الإحصاءات" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "عرض ساعة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "تايوان" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "امريكا" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "غير معروف" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "VBlank عرض أوقات" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS عرض " -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "وي" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "العالم" @@ -10935,7 +10935,7 @@ msgid "Show in Code" msgstr "عرض في التعليمات البرمجية" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "عرض في الذاكرة" @@ -10963,13 +10963,13 @@ msgid "" "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11008,47 +11008,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11070,7 +11070,7 @@ msgstr "جانبية" msgid "Sideways Wii Remote" msgstr "انحراف ريموت وي" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "قاعدة بيانات التوقيع" @@ -11094,7 +11094,7 @@ msgid "Signed Integer" msgstr "عدد صحيح موقّع" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "الصينية المبسطة" @@ -11111,7 +11111,7 @@ msgstr "Six Axis" msgid "Size" msgstr "الحجم" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11123,7 +11123,7 @@ msgstr "" msgid "Skip" msgstr "تخطى" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Skip Drawing" @@ -11244,7 +11244,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "رتب ترتيب أبجدي" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "الصوت" @@ -11258,7 +11258,7 @@ msgstr "اسبانيا" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "الأسبانية" @@ -11266,11 +11266,11 @@ msgstr "الأسبانية" msgid "Speaker Pan" msgstr "مكبر الصوت" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "مستوى الصوت" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specialized (Default)" @@ -11278,7 +11278,7 @@ msgstr "Specialized (Default)" msgid "Specific" msgstr "محدد" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11320,7 +11320,7 @@ msgstr "ذراع تحكم القياسية" msgid "Start" msgstr "تشغيل" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "بدء &اللعب عبر الشبكة" @@ -11329,11 +11329,11 @@ msgstr "بدء &اللعب عبر الشبكة" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "بدء بحث أسرار جديدة" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "بدء التسجيل" @@ -11341,7 +11341,7 @@ msgstr "بدء التسجيل" msgid "Start Recording" msgstr "بدء التسجيل" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "بدء بملء الشاشة" @@ -11353,7 +11353,7 @@ msgstr "Riivolution بدء مع تصحيحات" msgid "Start with Riivolution Patches..." msgstr "Riivolution بدء مع تصحيحات" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "بدأت اللعبة" @@ -11413,7 +11413,7 @@ msgstr "خطوة ناجحة!" msgid "Stepping" msgstr "التنقل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "استريو" @@ -11442,12 +11442,12 @@ msgid "Stick" msgstr "عصا" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "إيقاف" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "إيقاف تشغيل / تسجيل الإدخال" @@ -11483,7 +11483,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "تمتد إلى النافذة" @@ -11522,8 +11522,8 @@ msgstr "مرقم" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "ناجح" @@ -11550,7 +11550,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "تم تصدير ملفات الحفظ بنجاح" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "تم استخراج الشهادات بنجاح من NAND" @@ -11562,12 +11562,12 @@ msgstr "تم استخراج الملف بنجاح." msgid "Successfully extracted system data." msgstr "استخرجت بنجاح بيانات النظام." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "تم استيراد ملف الحفظ بنجاح" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "تم بنجاح تثبيت هذا العنوان على NAND." @@ -11590,12 +11590,12 @@ msgstr "الدعم" msgid "Supported file formats" msgstr "تنسيقات الملفات المدعومة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Supports SD and SDHC. Default size is 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "محيطي" @@ -11653,7 +11653,7 @@ msgstr "اسم الرمز" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "رموز" @@ -11681,7 +11681,7 @@ msgstr "" "Synchronizes the GPU and CPU threads to help prevent random freezes in Dual " "core mode. (ON = Compatible, OFF = Fast)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11700,11 +11700,11 @@ msgid "Synchronizing save data..." msgstr "جارٍ مزامنة حفظ البيانات" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "لغة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "الإدخال" @@ -11717,7 +11717,7 @@ msgstr "TAS أدوات" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "العلامات" @@ -11735,7 +11735,7 @@ msgstr "" msgid "Taiwan" msgstr "تايوان" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "لقطة للشاشة" @@ -11774,7 +11774,7 @@ msgstr "النسيج من ذاكره التخزين المؤقت" msgid "Texture Cache Accuracy" msgstr "دقة ذاكرة التخزين المؤقت للنسيج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "تفريغ النسيج" @@ -11786,7 +11786,7 @@ msgstr "تصفية النسيج" msgid "Texture Filtering:" msgstr "تصفية النسيج" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "طلاء تنسيق النسيج" @@ -11823,7 +11823,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "أقسام نادرة مفقودة." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11831,7 +11831,7 @@ msgstr "" "NAND لا يمكن إصلاح\n" "يوصى بعمل نسخة احتياطية من بياناتك الحالية والبدء من جديد" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND تم اصلاح" @@ -11846,7 +11846,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12161,7 +12161,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12220,7 +12220,7 @@ msgstr "قسم التحديث مفقود" msgid "The update partition is not at its normal position." msgstr "قسم التحديث ليس في وضعه الطبيعي" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12584,7 +12584,7 @@ msgstr "انتهت مهله" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "العنوان" @@ -12593,12 +12593,12 @@ msgid "To" msgstr "إلى" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "إلى" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "ملء الشاشة" @@ -12687,7 +12687,7 @@ msgstr "" msgid "Toolbar" msgstr "شريط الأدوات" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "اعلى" @@ -12738,7 +12738,7 @@ msgid "Toy code:" msgstr "رمز اللعبة" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "الصينية التقليدية" @@ -12758,8 +12758,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "خطأ الاجتياز" @@ -12842,14 +12842,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB خطأ في القائمة البيضاء لـ " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12857,7 +12857,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12866,7 +12866,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "RSO تعذر الكشف التلقائي عن وحدة" @@ -12937,11 +12937,11 @@ msgstr "غير مضغوطة GC/Wii صورة (*.iso *.gcm)" msgid "Undead" msgstr "ميت حي" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "تراجع عن تحميل الحالة" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "تراجع عن حفظ الحالة" @@ -12962,7 +12962,7 @@ msgstr "" "NAND إلى إزالة الإصدار المثبت حاليًا من هذا العنوان من\n" "دون حذف بيانات الحفظ الخاصة به. استمر؟" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "امريكا" @@ -13054,7 +13054,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -13070,7 +13070,7 @@ msgstr "إلغاء تحميل القرص" msgid "Unlock Cursor" msgstr "فتح المؤشر" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13113,7 +13113,7 @@ msgid "Up" msgstr "فوق" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "التحديث" @@ -13186,7 +13186,7 @@ msgstr "استخدام جميع بيانات حفظ وي" msgid "Use Built-In Database of Game Names" msgstr "استخدم قاعدة بيانات مدمجة لأسماء الألعاب" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Use Lossless Codec (FFV1)" @@ -13194,7 +13194,7 @@ msgstr "Use Lossless Codec (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "استخدام التأشير الذي يتم التحكم فيه بالماوس" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "(EuRGB60) PAL60 استخدام وضع " @@ -13208,7 +13208,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13280,14 +13280,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13563,7 +13563,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "تحذير" @@ -13654,7 +13654,7 @@ msgstr "Western (Windows-1252)" msgid "Whammy" msgstr "الضربة" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13662,7 +13662,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13670,7 +13670,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "الاجهزة المسموح لها المرور خلال منفذ يو إس بي " @@ -13720,7 +13720,7 @@ msgstr "أزرار ريموت وي" msgid "Wii Remote Gyroscope" msgstr "جيروسكوب ريموت وي" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "إعدادات ريموت وي" @@ -13748,7 +13748,7 @@ msgstr "وي و ريموت وي" msgid "Wii data is not public yet" msgstr "بيانات وي ليست عامة بعد" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "ملفات حفظ وي (*.bin);;كل الملفات (*)" @@ -13756,7 +13756,7 @@ msgstr "ملفات حفظ وي (*.bin);;كل الملفات (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools Signature MEGA File" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "دقة النافذة" @@ -13787,7 +13787,7 @@ msgstr "عالم" msgid "Write" msgstr "كتابة" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13836,11 +13836,11 @@ msgstr "منطقة خاطئة" msgid "Wrong revision" msgstr "مراجعة خاطئة" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13891,14 +13891,14 @@ msgstr "نعم" msgid "Yes to &All" msgstr "نعم للكل" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14002,7 +14002,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ca.po b/Languages/po/ca.po index 56e6f54306..8cc4efd499 100644 --- a/Languages/po/ca.po +++ b/Languages/po/ca.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Puniasterus , 2013-2016,2021-2023\n" "Language-Team: Catalan (http://app.transifex.com/delroth/dolphin-emu/" @@ -97,7 +97,7 @@ msgstr "" "%1\n" "Aquest usuari vol unir-se al teu grup." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -151,7 +151,7 @@ msgstr "%1 (lent)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -186,7 +186,7 @@ msgstr "%1 no admet aquesta funció al teu sistema." msgid "%1 doesn't support this feature." msgstr "%1 no admet aquesta funció." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -196,11 +196,11 @@ msgstr "" "%2 objecte(s)\n" "Fotograma actual: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 s'ha unit" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 s'ha marxat" @@ -208,11 +208,11 @@ msgstr "%1 s'ha marxat" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 no és una ROM vàlida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 ara està jugant al golf" @@ -224,8 +224,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "%1 rangs de memòria" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -242,7 +242,7 @@ msgstr "S'ha trobat %1 sessió" msgid "%1 sessions found" msgstr "S'han trobat %1 sessions" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -350,11 +350,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Sobre" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -371,11 +371,11 @@ msgstr "" msgid "&Add..." msgstr "&Afegir..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Paràmetres d'àudio" @@ -391,11 +391,11 @@ msgstr "&Finestra sense marges" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Punts d'interrupció" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -405,15 +405,15 @@ msgstr "" " \n" "&Cancel·lar" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Gestor de trucs" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -421,7 +421,7 @@ msgstr "" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Codi" @@ -429,7 +429,7 @@ msgstr "&Codi" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Configuració del controlador" @@ -452,13 +452,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -472,11 +472,11 @@ msgstr "&Edita codi..." msgid "&Edit..." msgstr "&Edita..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Expulsa el disc" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulació" @@ -497,40 +497,40 @@ msgid "&Export as .gci..." msgstr "&Exportar com a .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "Avança un &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&Repositori GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Configuració de &gràfics" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Configuració de &tecles d'accés" @@ -550,7 +550,7 @@ msgstr "&Importa una captura d'estat..." msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -562,7 +562,7 @@ msgstr "&Insertar blr" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -574,11 +574,11 @@ msgstr "&Idioma:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Carrega una captura d'estat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -588,11 +588,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -600,11 +600,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Enregistrament" @@ -612,7 +612,7 @@ msgstr "&Enregistrament" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -621,23 +621,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Obre..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opcions" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Executar" @@ -645,7 +645,7 @@ msgstr "&Executar" msgid "&Properties" msgstr "&Propietats" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Mode de només lectura" @@ -653,7 +653,7 @@ msgstr "&Mode de només lectura" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registres" @@ -671,11 +671,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reinicia" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -699,7 +699,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Aturar" @@ -707,7 +707,7 @@ msgstr "&Aturar" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -715,7 +715,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Eines" @@ -725,21 +725,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Vista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Veure" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Pàgina web" @@ -751,11 +751,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -803,7 +803,7 @@ msgstr "" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -869,7 +869,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -953,7 +953,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1054,7 +1054,7 @@ msgstr " " msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1158,7 +1158,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Codi AR" @@ -1200,8 +1200,8 @@ msgstr "Precisió:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1281,7 +1281,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1293,7 +1293,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adaptador" @@ -1301,7 +1301,7 @@ msgstr "Adaptador" msgid "Adapter Detected" msgstr "Adaptador detectat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptador:" @@ -1358,7 +1358,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Afegir..." @@ -1372,7 +1372,7 @@ msgstr "Afegir..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adreça" @@ -1566,7 +1566,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1606,7 +1606,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analitzar" @@ -1632,15 +1632,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1658,7 +1658,7 @@ msgstr "Data Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1690,16 +1690,16 @@ msgstr "Estàs segur?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Relació d'aspecte" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Relació d'aspecte:" @@ -1740,11 +1740,11 @@ msgstr "" msgid "Audio" msgstr "Àudio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Motor d'àudio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1760,7 +1760,7 @@ msgstr "Autor" msgid "Authors" msgstr "Autors" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1781,7 +1781,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1789,15 +1789,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1845,19 +1845,19 @@ msgstr "Registre BP" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Configuració del motor" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motor:" @@ -1900,7 +1900,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Pancarta" @@ -1924,7 +1924,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Bàsic" @@ -1976,11 +1976,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1990,7 +1990,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2026,7 +2026,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2038,11 +2038,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Abaix" @@ -2219,20 +2219,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2281,7 +2281,7 @@ msgstr "" msgid "C Stick" msgstr "Palanca C" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2305,7 +2305,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2385,11 +2385,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2474,7 +2474,7 @@ msgstr "" msgid "Change &Disc" msgstr "Canviar &Disc" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Canvia el &disc..." @@ -2496,7 +2496,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2514,7 +2514,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2522,7 +2522,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2534,7 +2534,7 @@ msgstr "Xat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cerca trucs" @@ -2542,7 +2542,7 @@ msgstr "Cerca trucs" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2580,11 +2580,11 @@ msgstr "Trieu un arxiu per obrir" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2615,7 +2615,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Esborrar" @@ -2623,7 +2623,7 @@ msgstr "Esborrar" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2644,7 +2644,7 @@ msgstr "" msgid "Close" msgstr "Tancar" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2688,7 +2688,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2715,7 +2715,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2725,7 +2725,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "Configuració" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2864,7 +2864,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2872,7 +2872,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmar a l'aturar" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2883,15 +2883,15 @@ msgstr "" msgid "Connect" msgstr "Connectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Connectar la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Connectar el teclat USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3039,8 +3039,8 @@ msgstr "" msgid "Convergence:" msgstr "Convergència:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3048,9 +3048,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3058,9 +3058,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3080,8 +3080,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3271,7 +3271,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3287,13 +3287,13 @@ msgstr "" msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3324,11 +3324,11 @@ msgstr "" msgid "Critical" msgstr "Crític" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Retallar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3340,18 +3340,18 @@ msgstr "" msgid "Crossfade" msgstr "Atenuar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3371,11 +3371,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3383,15 +3383,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3434,7 +3434,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3442,15 +3442,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3521,7 +3521,7 @@ msgstr "Zona morta" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuració" @@ -3531,7 +3531,7 @@ msgstr "Depuració" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3578,7 +3578,7 @@ msgstr "Per defecte" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3594,7 +3594,7 @@ msgstr "ISO per defecte:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3602,7 +3602,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3648,7 +3648,7 @@ msgstr "Profunditat:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripció" @@ -3697,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Configuració del dispositiu" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3735,7 +3735,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3759,7 +3759,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3767,11 +3767,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3779,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deshabilitar boira" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3798,7 +3798,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4160,11 +4160,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandès" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Surt" @@ -4188,7 +4188,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Actualitzacions recents de memòria" @@ -4262,7 +4262,7 @@ msgstr "" msgid "Empty" msgstr "Buida" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "El fil de l'emulador ja s'està executant" @@ -4270,7 +4270,7 @@ msgstr "El fil de l'emulador ja s'està executant" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4288,7 +4288,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4310,16 +4310,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4367,7 +4367,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4393,7 +4393,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "Habilitar MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Habilitar Exploració &Progressiva" @@ -4415,11 +4415,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Habilitar l'Estalvi de Pantalla" @@ -4439,11 +4439,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Habilitar Wireframe" @@ -4499,7 +4499,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4530,7 +4530,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4538,7 +4538,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4555,7 +4555,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4583,7 +4583,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4591,7 +4591,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4599,7 +4599,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4628,7 +4628,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Anglès" @@ -4645,7 +4645,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4669,7 +4669,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4708,9 +4708,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4723,24 +4723,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4770,7 +4770,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4877,12 +4877,12 @@ msgstr "" msgid "Euphoria" msgstr "Eufòria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4926,11 +4926,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportar totes les partides guardades de Wii" @@ -4945,7 +4945,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportar gravació" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exporta l'enregistrament..." @@ -4973,7 +4973,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5001,7 +5001,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5039,7 +5039,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Jugador FIFO" @@ -5057,7 +5057,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5077,7 +5077,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5098,7 +5098,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5152,7 +5152,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5179,18 +5179,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5217,7 +5217,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5227,8 +5227,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5240,7 +5240,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5268,11 +5268,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5320,11 +5320,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5383,11 +5383,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5448,27 +5448,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5519,7 +5519,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5555,7 +5555,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5569,7 +5569,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5577,24 +5577,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "informació del fitxer" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nom de l'arxiu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Mida del fitxer" @@ -5712,7 +5712,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forçar 16:9" @@ -5720,7 +5720,7 @@ msgstr "Forçar 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forçar 4:3" @@ -5752,11 +5752,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5830,11 +5830,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Rang de Fotogrames" @@ -5842,7 +5842,7 @@ msgstr "Rang de Fotogrames" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5893,7 +5893,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francès" @@ -5912,8 +5912,8 @@ msgid "From" msgstr "de" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5969,11 +5969,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6117,7 +6117,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID del joc" @@ -6130,7 +6130,7 @@ msgstr "ID del joc:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6238,7 +6238,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codis Gecko" @@ -6270,13 +6270,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemany" @@ -6352,7 +6352,7 @@ msgstr "Verd Esquerra" msgid "Green Right" msgstr "Verd Dret" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6434,7 +6434,7 @@ msgstr "Oculta" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6458,11 +6458,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6501,11 +6501,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6531,7 +6531,7 @@ msgstr "Tecles d'accés ràpid" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6589,7 +6589,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Sensibilitat d'IR:" @@ -6653,14 +6653,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6704,7 +6704,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6713,7 +6713,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6728,7 +6728,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6829,16 +6829,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6858,8 +6858,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informació" @@ -6872,11 +6872,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Entrada" @@ -6902,7 +6902,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir la targeta SD" @@ -6919,7 +6919,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6942,7 +6942,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7028,7 +7028,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7078,7 +7078,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7115,13 +7115,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italià" @@ -7134,11 +7134,11 @@ msgstr "Itàlia" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7146,47 +7146,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7198,11 +7198,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7213,16 +7213,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japó" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonès" @@ -7282,12 +7282,12 @@ msgstr "" msgid "Kick Player" msgstr "Expulsar jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreà" @@ -7334,23 +7334,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7358,7 +7358,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7448,11 +7448,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7464,15 +7464,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7484,7 +7484,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carrega textures personalitzades" @@ -7492,7 +7492,7 @@ msgstr "Carrega textures personalitzades" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7602,19 +7602,19 @@ msgstr "Carregar ranura d'estat 8" msgid "Load State Slot 9" msgstr "Carregar estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Carrega des d'un fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Carrega des de la ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Carrega des d'una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7626,35 +7626,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7668,7 +7668,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7694,7 +7694,7 @@ msgstr "Configuració del registre" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7702,7 +7702,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7718,27 +7718,27 @@ msgstr "Sortides del registrador" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7798,7 +7798,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Fabricant" @@ -7815,12 +7815,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7836,11 +7836,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7849,7 +7849,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7870,7 +7870,7 @@ msgstr "" msgid "Memory Card" msgstr "Targeta de memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7921,11 +7921,11 @@ msgstr "Micròfon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Miscel·làni" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configuracions Miscel·lànies" @@ -7941,7 +7941,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7961,7 +7961,7 @@ msgstr "" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7977,8 +7977,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7986,7 +7986,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8044,10 +8044,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8056,7 +8056,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8083,7 +8083,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8293,7 +8293,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8301,7 +8301,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8314,7 +8314,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8358,8 +8358,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8508,7 +8508,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Rang d'objecte" @@ -8533,7 +8533,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8555,7 +8555,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Documentació en línia" @@ -8563,13 +8563,13 @@ msgstr "&Documentació en línia" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8586,7 +8586,7 @@ msgstr "Obre" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Obre la carpeta de l'&usuari" @@ -8595,7 +8595,7 @@ msgstr "Obre la carpeta de l'&usuari" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8685,7 +8685,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8727,11 +8727,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Reprodueix l'enregistrament d'entrades" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8745,11 +8745,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8837,7 +8837,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pausa al final de l'enregistrament" @@ -8882,7 +8882,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Il·luminació per píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8890,15 +8890,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8916,7 +8916,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8933,7 +8933,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plataforma" @@ -8941,7 +8941,7 @@ msgstr "Plataforma" msgid "Play" msgstr "Juga" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8949,11 +8949,11 @@ msgstr "" msgid "Play Recording" msgstr "Reproduir enregistrament" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opcions de reproducció" @@ -8961,27 +8961,27 @@ msgstr "Opcions de reproducció" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9003,7 +9003,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9036,7 +9036,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9052,20 +9052,20 @@ msgstr "Efecte de post-processament:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9100,7 +9100,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9169,11 +9169,11 @@ msgstr "Perfil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9187,7 +9187,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9211,7 +9211,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9243,11 +9243,11 @@ msgstr "R-Analògic" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9272,7 +9272,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9280,7 +9280,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9339,7 +9339,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Enregistrar" @@ -9351,11 +9351,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opcions d'Enregistrament" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9419,7 +9419,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regió" @@ -9452,7 +9452,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Eliminar" @@ -9489,11 +9489,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderitzar a la finestra principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9526,7 +9526,7 @@ msgstr "Reiniciar" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9558,7 +9558,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9737,19 +9737,19 @@ msgstr "Rússia" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9757,7 +9757,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9792,11 +9792,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "&Desa l'Estat" @@ -9828,11 +9828,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9850,11 +9850,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9866,7 +9866,7 @@ msgstr "Desar l'Estat Més Antic" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9916,23 +9916,23 @@ msgstr "Desar Ranura d'Estat 8" msgid "Save State Slot 9" msgstr "Desar Ranura d'Estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9952,11 +9952,11 @@ msgstr "" msgid "Save as..." msgstr "Desar com..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9967,11 +9967,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9979,11 +9979,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -10013,7 +10013,7 @@ msgstr "Captura" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Buscar" @@ -10040,7 +10040,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10048,7 +10048,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10093,11 +10093,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10137,7 +10137,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10145,7 +10145,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Tria ranura de captura" @@ -10212,7 +10212,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10220,7 +10220,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10232,7 +10232,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10240,7 +10240,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10257,7 +10257,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Seleccioni el fitxer de partida guardada" @@ -10281,7 +10281,7 @@ msgstr "El perfil del controlador seleccionat no existeix" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10305,7 +10305,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10335,7 +10335,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10357,7 +10357,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10371,7 +10371,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posició Barra de Sensors" @@ -10436,14 +10436,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10455,7 +10455,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10474,7 +10474,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10488,7 +10488,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10510,16 +10510,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Mostrar &Registre" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Mostrar Barra d'&Eines" @@ -10527,11 +10527,11 @@ msgstr "Mostrar Barra d'&Eines" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Mostrar Austràlia" @@ -10544,7 +10544,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10553,27 +10553,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Comptador de fotogrames" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Mostrar Alemanya" @@ -10585,23 +10585,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Visualitza les entrades" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Mostrar Itàlia" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Mostrar Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Comptador de lag" @@ -10609,19 +10609,19 @@ msgstr "Comptador de lag" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Mostrar la &Configuració del Registre" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10629,7 +10629,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Mostrar PAL" @@ -10638,27 +10638,27 @@ msgstr "Mostrar PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Mostrar Plataformes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Mostrar Regions" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Comptador de reenregistraments" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10666,51 +10666,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostrar Estadístiques" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Rellotge del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10723,7 +10723,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10751,13 +10751,13 @@ msgid "" "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10796,47 +10796,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10858,7 +10858,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10882,7 +10882,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Xinès Simplificat" @@ -10899,7 +10899,7 @@ msgstr "" msgid "Size" msgstr "Mida" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10909,7 +10909,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11026,7 +11026,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11040,7 +11040,7 @@ msgstr "Espanya" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanyol" @@ -11048,11 +11048,11 @@ msgstr "Espanyol" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volum de l'altaveu:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11060,7 +11060,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11102,7 +11102,7 @@ msgstr "Controlador Estàndard" msgid "Start" msgstr "Començar" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11111,11 +11111,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Comença l'enregistrament d'entrades" @@ -11123,7 +11123,7 @@ msgstr "&Comença l'enregistrament d'entrades" msgid "Start Recording" msgstr "Iniciar Gravació" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11135,7 +11135,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11195,7 +11195,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11224,12 +11224,12 @@ msgid "Stick" msgstr "Palanca" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Atura" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Atura la reproducció/enregistrament d'entrades" @@ -11265,7 +11265,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Ajustar a la Finestra" @@ -11304,8 +11304,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11332,7 +11332,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11344,12 +11344,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11372,12 +11372,12 @@ msgstr "Suport" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11435,7 +11435,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11461,7 +11461,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11480,11 +11480,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Entrada TAS" @@ -11497,7 +11497,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11515,7 +11515,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Captura de pantalla" @@ -11554,7 +11554,7 @@ msgstr "Cache de textures" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11566,7 +11566,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Superposició del format de textura" @@ -11603,13 +11603,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11624,7 +11624,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11918,7 +11918,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11976,7 +11976,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12298,7 +12298,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Títol" @@ -12307,12 +12307,12 @@ msgid "To" msgstr "A" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Pantalla completa" @@ -12401,7 +12401,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Superior" @@ -12452,7 +12452,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Xinès Tradicional" @@ -12472,8 +12472,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12554,14 +12554,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12569,7 +12569,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12578,7 +12578,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12641,11 +12641,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Desfés la càrrega de captura" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Desfer Estat Guardat" @@ -12663,7 +12663,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12755,7 +12755,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12771,7 +12771,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12814,7 +12814,7 @@ msgid "Up" msgstr "Amunt" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Actualitzar" @@ -12885,7 +12885,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12893,7 +12893,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12907,7 +12907,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12975,14 +12975,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13245,7 +13245,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advertència" @@ -13334,7 +13334,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13342,7 +13342,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13350,7 +13350,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13400,7 +13400,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13428,7 +13428,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13436,7 +13436,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13467,7 +13467,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13516,11 +13516,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13571,14 +13571,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13675,7 +13675,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/cs.po b/Languages/po/cs.po index 112bec3fbb..d1fc73c584 100644 --- a/Languages/po/cs.po +++ b/Languages/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zbyněk Schwarz , 2011-2016\n" "Language-Team: Czech (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -165,18 +165,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -184,11 +184,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -200,8 +200,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -326,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Nastavení &zvuku" @@ -367,11 +367,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Body přerušení" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -379,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Nastavení ovladače" @@ -426,13 +426,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -446,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulace" @@ -471,40 +471,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Soubor" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Postup snímkem" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Ú&ložiště Github" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafická nastavení" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Nápověda" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Nastavení &klávesových zkratek" @@ -524,7 +524,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -536,7 +536,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -548,11 +548,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Nahrát Stav" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -562,11 +562,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -574,11 +574,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "Pa&měť" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Video" @@ -586,7 +586,7 @@ msgstr "&Video" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -595,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Otevřít..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "V&olby" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Přehrát" @@ -619,7 +619,7 @@ msgstr "&Přehrát" msgid "&Properties" msgstr "&Vlastnosti" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Režim pouze pro čtení" @@ -627,7 +627,7 @@ msgstr "&Režim pouze pro čtení" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registry" @@ -645,11 +645,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Resetovat" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "Za&stavit" @@ -681,7 +681,7 @@ msgstr "Za&stavit" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -689,7 +689,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "Nás&troje" @@ -699,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Zobrazit" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Sledování" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Internetová stránka" @@ -725,11 +725,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -843,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1028,7 +1028,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1132,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1174,8 +1174,8 @@ msgstr "Přesnost:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1255,7 +1255,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Zjištěn adaptér" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptér:" @@ -1332,7 +1332,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Přidat..." @@ -1346,7 +1346,7 @@ msgstr "Přidat..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adresa" @@ -1540,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1580,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "Anaglyf" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analyzovat" @@ -1606,15 +1606,15 @@ msgstr "Vyhlazení okrajů" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1632,7 +1632,7 @@ msgstr "Datum zavaděče aplikace:" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1664,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Poměr Stran:" @@ -1714,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Zvuk" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Podpůrná vrstva zvuku:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1734,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "Autoři" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1755,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1763,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1819,19 +1819,19 @@ msgstr "Registr BP" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Nastavení podpůrné vrstvy" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Podpůrná vrstva:" @@ -1874,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Plakát" @@ -1898,7 +1898,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Základní" @@ -1950,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1964,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2000,7 +2000,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2012,11 +2012,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Celá obrazovka bez okrajů" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Dole" @@ -2193,20 +2193,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Vyrovnávací paměť:" @@ -2255,7 +2255,7 @@ msgstr "" msgid "C Stick" msgstr "Kruhová páčka" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Převaděč s mezipamětí (pomalejší)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2359,11 +2359,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "Vyměnit &disk" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Vyměnit &Disk..." @@ -2470,7 +2470,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2488,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2496,7 +2496,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2508,7 +2508,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Hledání Cheatů" @@ -2516,7 +2516,7 @@ msgstr "Hledání Cheatů" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2554,11 +2554,11 @@ msgstr "Zvolte soubor k otevření" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2589,7 +2589,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Vyčistit" @@ -2597,7 +2597,7 @@ msgstr "Vyčistit" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2618,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Zavřít" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2662,7 +2662,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2689,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2699,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "Nastavit" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Při zastavení Potvrdit" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "Připojit" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Připojit Rola-Bola" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Připojit USB Klávesnici" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2885,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3013,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "Sblížení:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3022,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3032,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3054,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3245,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3261,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Země:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3298,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "Kritické" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Oříznout" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3314,18 +3314,18 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3345,11 +3345,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3357,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3408,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3416,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3495,7 +3495,7 @@ msgstr "Mrtvá Zóna" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Ladění" @@ -3505,7 +3505,7 @@ msgstr "Ladění" msgid "Decimal" msgstr "Desetinné" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3552,7 +3552,7 @@ msgstr "Výchozí" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "Výchozí ISO:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3576,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3622,7 +3622,7 @@ msgstr "Hloubka:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Popis" @@ -3671,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Zjistit" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3701,7 +3701,7 @@ msgstr "Nastavení Zařízení" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3709,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Ztmaví obrazovku po pěti minutách nečinnosti." @@ -3733,7 +3733,7 @@ msgstr "Zakázat ohraničující rámeček" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3741,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Zakázat limit rychlosti emulace" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Zakázat Mlhu" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4134,11 +4134,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nizozemština" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "O&dejít" @@ -4162,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Předčasné Aktualizace Paměti" @@ -4236,7 +4236,7 @@ msgstr "Vestavěná vyrovnávací paměť snímků (EFB)" msgid "Empty" msgstr "Prázdné" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Vlákno Emulace již běží" @@ -4244,7 +4244,7 @@ msgstr "Vlákno Emulace již běží" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4262,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4284,16 +4284,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4341,7 +4341,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Povolit FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4367,7 +4367,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4380,7 +4380,7 @@ msgstr "Zapnout MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Povolit Progresivní Skenování" @@ -4389,11 +4389,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Povolit Spořič Obrazovky" @@ -4413,11 +4413,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "Povolit hlášení statistik o užívání" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Povolit Drátěný Model" @@ -4473,7 +4473,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4506,7 +4506,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4514,7 +4514,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4531,7 +4531,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4559,7 +4559,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4567,7 +4567,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4575,7 +4575,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4604,7 +4604,7 @@ msgstr "Enet nebyl uaveden" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Angličtina" @@ -4621,7 +4621,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4645,7 +4645,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4684,9 +4684,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4699,24 +4699,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4746,7 +4746,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4852,12 +4852,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Evropa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4901,11 +4901,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportovat všechny uložené hry Wii" @@ -4920,7 +4920,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportovat Nahrávku" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exportovat Nahrávku..." @@ -4948,7 +4948,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4976,7 +4976,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Externí vyrovnávací paměť snímků (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5014,7 +5014,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Přehrávač FIFO" @@ -5032,7 +5032,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5052,7 +5052,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5127,7 +5127,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5154,18 +5154,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5192,7 +5192,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5202,8 +5202,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5215,7 +5215,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5243,11 +5243,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5295,11 +5295,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5358,11 +5358,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5423,27 +5423,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5494,7 +5494,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5530,7 +5530,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5544,7 +5544,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5552,24 +5552,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Informace o souboru" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Název souboru" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Velikost souboru" @@ -5687,7 +5687,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Vynutit 16:9" @@ -5695,7 +5695,7 @@ msgstr "Vynutit 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Vynutit 4:3" @@ -5727,11 +5727,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5805,11 +5805,11 @@ msgstr "Zvýšit rychlost postupu snímkem" msgid "Frame Advance Reset Speed" msgstr "Resetovat rychlost postupu snímkem" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Rozsah Snímku" @@ -5817,7 +5817,7 @@ msgstr "Rozsah Snímku" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francouzština" @@ -5887,8 +5887,8 @@ msgid "From" msgstr "Z" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5944,11 +5944,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6092,7 +6092,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID hry" @@ -6105,7 +6105,7 @@ msgstr "ID Hry:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6213,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kódy Gecko" @@ -6245,13 +6245,13 @@ msgstr "Vytvořit novou identitu pro statistiky" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Němčina" @@ -6327,7 +6327,7 @@ msgstr "Zelená vlevo" msgid "Green Right" msgstr "Zelená vpravo" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6409,7 +6409,7 @@ msgstr "Skrýt" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6433,11 +6433,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6476,11 +6476,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6506,7 +6506,7 @@ msgstr "Klávesové zkratky" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6564,7 +6564,7 @@ msgid "IR" msgstr "Infrč." #. 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:363 msgid "IR Sensitivity:" msgstr "Citlivost Infračer.:" @@ -6628,14 +6628,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6679,7 +6679,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6688,7 +6688,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6703,7 +6703,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6804,16 +6804,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6833,8 +6833,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informace" @@ -6847,11 +6847,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Vstup" @@ -6877,7 +6877,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Vložit SD Kartu" @@ -6894,7 +6894,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6917,7 +6917,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7003,7 +7003,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Převaděč (nejpomalejší)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7028,7 +7028,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7053,7 +7053,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7089,13 +7089,13 @@ msgstr "Neplatný řetězec hledání (jsou podporovány pouze sudé délky řet msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italština" @@ -7108,11 +7108,11 @@ msgstr "Itálie" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7120,47 +7120,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7172,11 +7172,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7187,16 +7187,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japonsko" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonština" @@ -7256,12 +7256,12 @@ msgstr "" msgid "Kick Player" msgstr "Vykopnout hráče" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korejština" @@ -7308,23 +7308,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7332,7 +7332,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7422,11 +7422,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7438,15 +7438,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Nahrát" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7458,7 +7458,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Nahrát Vlastní Textury" @@ -7466,7 +7466,7 @@ msgstr "Nahrát Vlastní Textury" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7576,19 +7576,19 @@ msgstr "Nahrát stav v pozici 8" msgid "Load State Slot 9" msgstr "Načíst stav v pozici 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7600,35 +7600,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7642,7 +7642,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7668,7 +7668,7 @@ msgstr "Nastavení Záznamu" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7676,7 +7676,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Zaznamenat dobu vykreslování do souboru" @@ -7692,27 +7692,27 @@ msgstr "Výstup Zapisovače" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7772,7 +7772,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Tvůrce" @@ -7789,12 +7789,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7810,11 +7810,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7823,7 +7823,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Může způsobit zpomalování v nabídce Wii a u některých her." @@ -7844,7 +7844,7 @@ msgstr "" msgid "Memory Card" msgstr "Paměťová karta" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7895,11 +7895,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Ostatní" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Ostatní Nastavení" @@ -7915,7 +7915,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7935,7 +7935,7 @@ msgstr "" msgid "Modifier" msgstr "Modifikátor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7951,8 +7951,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7960,7 +7960,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8018,10 +8018,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8030,7 +8030,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8057,7 +8057,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8267,7 +8267,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8275,7 +8275,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8288,7 +8288,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8333,8 +8333,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8483,7 +8483,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Rozsah Objektu" @@ -8508,7 +8508,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8530,7 +8530,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online &dokumentace" @@ -8538,13 +8538,13 @@ msgstr "Online &dokumentace" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8561,7 +8561,7 @@ msgstr "Otevřít" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8570,7 +8570,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8660,7 +8660,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8702,11 +8702,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Spustit vstupní nahrávku..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8720,11 +8720,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8812,7 +8812,7 @@ msgstr "Pozastavit" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pozastavit na konci videa" @@ -8857,7 +8857,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvětlení Podle Pixelu" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8865,15 +8865,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8891,7 +8891,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8908,7 +8908,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platforma" @@ -8916,7 +8916,7 @@ msgstr "Platforma" msgid "Play" msgstr "Spustit" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8924,11 +8924,11 @@ msgstr "" msgid "Play Recording" msgstr "Přehrát nahrávku" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Možnosti Přehrávání" @@ -8936,27 +8936,27 @@ msgstr "Možnosti Přehrávání" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8978,7 +8978,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9011,7 +9011,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9027,20 +9027,20 @@ msgstr "Efekt Následného Zpracování:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Předzískat vlastní textury" @@ -9075,7 +9075,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9144,11 +9144,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9162,7 +9162,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9186,7 +9186,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9218,11 +9218,11 @@ msgstr "Pravý Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9247,7 +9247,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9255,7 +9255,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9314,7 +9314,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Nahrávat" @@ -9326,11 +9326,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Možnosti Nahrávání" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9394,7 +9394,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Oblast" @@ -9427,7 +9427,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Odstranit" @@ -9464,11 +9464,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Vykreslit do Hlavního okna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9501,7 +9501,7 @@ msgstr "Resetovat" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9533,7 +9533,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9712,19 +9712,19 @@ msgstr "Rusko" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9732,7 +9732,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9767,11 +9767,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Uložit Sta&v" @@ -9803,11 +9803,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9825,11 +9825,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9841,7 +9841,7 @@ msgstr "Načíst nejstarší stav" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9891,23 +9891,23 @@ msgstr "Uložit stav do pozice 8" msgid "Save State Slot 9" msgstr "Uložit stav do pozice 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9927,11 +9927,11 @@ msgstr "" msgid "Save as..." msgstr "Uložit jako" -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9942,11 +9942,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9954,11 +9954,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9988,7 +9988,7 @@ msgstr "SnímkObrz" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Hledat" @@ -10015,7 +10015,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10023,7 +10023,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10068,11 +10068,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10112,7 +10112,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10120,7 +10120,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Vybrat pozici stavu" @@ -10187,7 +10187,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10195,7 +10195,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10207,7 +10207,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10215,7 +10215,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10232,7 +10232,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Vyberte soubor s uloženou hrou" @@ -10256,7 +10256,7 @@ msgstr "Vybraný profil ovladače neexistuje" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10280,7 +10280,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10310,7 +10310,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10332,7 +10332,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10346,7 +10346,7 @@ msgstr "" msgid "Send" msgstr "Poslat" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Umístění Senzorové Tyče:" @@ -10411,7 +10411,7 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10420,7 +10420,7 @@ msgstr "" "Nastaví režim zobrazení Wii na 60Hz (480i) místo 50Hz (576i) pro hry PAL.\n" "Nemusí fungovat ve všech hrách." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Nastaví jazyk systému Wii" @@ -10432,7 +10432,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10451,7 +10451,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10465,7 +10465,7 @@ msgstr "Nastavení paměti Wii: Nelze vytvořit soubor settings.txt" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10487,16 +10487,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Zobrazit Záznam" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Zobrazit Panel Nás&trojů" @@ -10504,11 +10504,11 @@ msgstr "Zobrazit Panel Nás&trojů" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Zobrazit Autrálii" @@ -10521,7 +10521,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Zobrazit ELF/DOL" @@ -10530,27 +10530,27 @@ msgstr "Zobrazit ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Zobrazit Snímky za Sekundu" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Zobrazit počítadlo snímků" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Zobrazit Francii" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Zobrazit GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Zobrazit Německo" @@ -10562,23 +10562,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Zobrazit Obrazovku Vstupu" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Zobrazit Itálii" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Zobrazit Koreu" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Zobrazit počítadlo zpoždění" @@ -10586,19 +10586,19 @@ msgstr "Zobrazit počítadlo zpoždění" msgid "Show Language:" msgstr "Jazyk Zobrazení:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Zobrazit Nastavení &Záznamu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Zobrazit Nizozemí" @@ -10606,7 +10606,7 @@ msgstr "Zobrazit Nizozemí" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Zobrazit PAL" @@ -10615,27 +10615,27 @@ msgstr "Zobrazit PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Zobrazit Platformy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Zobrazit Regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Zobrazit Rusko" @@ -10643,51 +10643,51 @@ msgstr "Zobrazit Rusko" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Zobrazit Španělsko" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Zobrazit Statistiky" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Zobrazit Tchaj-wan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Zobrazit USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Zobrazit neznámé" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Zobrazit WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Zobrazit Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Zobrazit svět" @@ -10700,7 +10700,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10728,13 +10728,13 @@ msgid "" "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10773,47 +10773,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10835,7 +10835,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10859,7 +10859,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Zjednodušená čínština" @@ -10876,7 +10876,7 @@ msgstr "" msgid "Size" msgstr "Velikost" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10886,7 +10886,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11003,7 +11003,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11017,7 +11017,7 @@ msgstr "Španělsko" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Španělština" @@ -11025,11 +11025,11 @@ msgstr "Španělština" msgid "Speaker Pan" msgstr "Posun reproduktoru" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Hlasitost Reproduktoru:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11037,7 +11037,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11079,7 +11079,7 @@ msgstr "Standardní Ovladač" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11088,11 +11088,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Začít nahrávat vstup" @@ -11100,7 +11100,7 @@ msgstr "&Začít nahrávat vstup" msgid "Start Recording" msgstr "Začít Nahrávat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11112,7 +11112,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11172,7 +11172,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11201,12 +11201,12 @@ msgid "Stick" msgstr "Páčka" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zastavit" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11242,7 +11242,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Roztáhnout do Okna" @@ -11281,8 +11281,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11309,7 +11309,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11321,12 +11321,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11349,12 +11349,12 @@ msgstr "Podpora" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11412,7 +11412,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11438,7 +11438,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11457,11 +11457,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Jazyk Systému:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS Vstup" @@ -11474,7 +11474,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11492,7 +11492,7 @@ msgstr "" msgid "Taiwan" msgstr "Tchaj-wan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Vytvořit Snímek Obrazovky" @@ -11531,7 +11531,7 @@ msgstr "Vyrovnávací Paměť Textur" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11543,7 +11543,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Překryv Formátu Textury" @@ -11580,13 +11580,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11601,7 +11601,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11895,7 +11895,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11953,7 +11953,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12276,7 +12276,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Název" @@ -12285,12 +12285,12 @@ msgid "To" msgstr "Do" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12379,7 +12379,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Nahoře" @@ -12430,7 +12430,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Tradiční Čínština" @@ -12450,8 +12450,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12532,14 +12532,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12547,7 +12547,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12556,7 +12556,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12619,11 +12619,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Vrátit zpět Nahrání Stavu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Vrátit zpět Uložení Stavu" @@ -12641,7 +12641,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12733,7 +12733,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12749,7 +12749,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12792,7 +12792,7 @@ msgid "Up" msgstr "Nahoru" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Aktualizovat" @@ -12863,7 +12863,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12871,7 +12871,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Použít režim PAL60 (EuRGB60)" @@ -12885,7 +12885,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12953,14 +12953,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13223,7 +13223,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varování" @@ -13312,7 +13312,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13320,7 +13320,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13328,7 +13328,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13378,7 +13378,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13406,7 +13406,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13414,7 +13414,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13445,7 +13445,7 @@ msgstr "Světové" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13494,11 +13494,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13549,14 +13549,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13653,7 +13653,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/da.po b/Languages/po/da.po index 4edd020430..4d4efdfb22 100644 --- a/Languages/po/da.po +++ b/Languages/po/da.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Lars Lyngby , 2020-2022\n" "Language-Team: Danish (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -95,7 +95,7 @@ msgstr "" "%1\n" "ønsker at slutte sig til din gruppe." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -149,7 +149,7 @@ msgstr "%1 (langsom)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -184,18 +184,18 @@ msgstr "%1 understøtter ikke funktionen på dit system." msgid "%1 doesn't support this feature." msgstr "%1 understøtter ikke funktionen." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 ha tilsluttet sig" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 har forladt gruppen" @@ -203,11 +203,11 @@ msgstr "%1 har forladt gruppen" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 er ikke en gyldig ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 spiller golf nu" @@ -219,8 +219,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "%1 hukommelsesområder" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms." @@ -237,7 +237,7 @@ msgstr "%1 session fundet" msgid "%1 sessions found" msgstr "%1 sessioner fundet" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -345,11 +345,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Om" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Tilføj Hukommelsesbreakpoint" @@ -366,11 +366,11 @@ msgstr "&Tilføj funktion" msgid "&Add..." msgstr "&Tilføj..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Lydindstillinger" @@ -386,11 +386,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Breakpoints" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -398,15 +398,15 @@ msgstr "" msgid "&Cancel" msgstr "&Annuller" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Tjek for opdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Ryd symboler" @@ -414,7 +414,7 @@ msgstr "&Ryd symboler" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Kode" @@ -422,7 +422,7 @@ msgstr "&Kode" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Kontrollerindstillinger" @@ -445,13 +445,13 @@ msgstr "&Slet" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -465,11 +465,11 @@ msgstr "&Rediger kode..." msgid "&Edit..." msgstr "&Rediger..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Skub disk ud" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulation" @@ -490,40 +490,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Skrifttype..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Billedfremskydning" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub-repertoire" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafikindstillinger" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Hjælp" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Genvejstastindstillinger" @@ -543,7 +543,7 @@ msgstr "" msgid "&Import..." msgstr "&Importér..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -567,11 +567,11 @@ msgstr "&Sprog:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Indlæs Tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -581,11 +581,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -593,11 +593,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Hukommelse" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Film" @@ -605,7 +605,7 @@ msgstr "&Film" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -614,23 +614,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Åbn..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Afspil" @@ -638,7 +638,7 @@ msgstr "&Afspil" msgid "&Properties" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Read-Only Tilstand" @@ -646,7 +646,7 @@ msgstr "&Read-Only Tilstand" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registre" @@ -664,11 +664,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Nulstil" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -676,7 +676,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -684,7 +684,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -692,7 +692,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "&Hastighedsgrænse:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Stop" @@ -700,7 +700,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -708,7 +708,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Værktøjer" @@ -718,21 +718,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Vis" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Betragt" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Website" @@ -744,11 +744,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -796,7 +796,7 @@ msgstr "" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -862,7 +862,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -946,7 +946,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1047,7 +1047,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1165,7 +1165,7 @@ msgstr "" "ikke korrekt.\n" "Anvend på egen risiko.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kode" @@ -1207,8 +1207,8 @@ msgstr "Nøjagtighed:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1288,7 +1288,7 @@ msgstr "" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1300,7 +1300,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1308,7 +1308,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter Opfanget" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1365,7 +1365,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Tilføj..." @@ -1379,7 +1379,7 @@ msgstr "Tilføj..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adresse" @@ -1573,7 +1573,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1613,7 +1613,7 @@ msgstr "En indsat disk var forventet men ikke fundet" msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analyser" @@ -1639,15 +1639,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1665,7 +1665,7 @@ msgstr "Apploader Dato:" msgid "Apply" msgstr "Anvend" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1697,16 +1697,16 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Formatforhold:" @@ -1747,11 +1747,11 @@ msgstr "Vedhæft Motionplus" msgid "Audio" msgstr "Lyd" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Lyd Backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1767,7 +1767,7 @@ msgstr "Forfatter" msgid "Authors" msgstr "Skabere" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1788,7 +1788,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1796,15 +1796,15 @@ msgstr "" msgid "Auto-Hide" msgstr "Auto-skjul" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1852,19 +1852,19 @@ msgstr "BP register" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Backend Indstillinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1907,7 +1907,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -1931,7 +1931,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Basis" @@ -1983,11 +1983,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1997,7 +1997,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blokstørrelse" @@ -2035,7 +2035,7 @@ msgstr "" "Bluetooth gennemgangstilstand er aktiveret, men Dolphin blev bygget uden " "libusb. Gennemgangstilstand kan ikke bruges." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2047,11 +2047,11 @@ msgstr "BootMii NAND backup-fil (*.bin);;Alle filer (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Kantløs Fuldskærm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Bund" @@ -2228,20 +2228,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Bufferstørrelse:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Bufferstørrelse ændret til %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2290,7 +2290,7 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2314,7 +2314,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Oversætter (langsommere)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2394,11 +2394,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annuller" @@ -2483,7 +2483,7 @@ msgstr "" msgid "Change &Disc" msgstr "Skift &Disk" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Skift &Disk..." @@ -2505,7 +2505,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2523,7 +2523,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Ændrede snydekoder får først effekt efter genstart af spillet." @@ -2531,7 +2531,7 @@ msgstr "Ændrede snydekoder får først effekt efter genstart af spillet." msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2543,7 +2543,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Snydesøgning" @@ -2551,7 +2551,7 @@ msgstr "Snydesøgning" msgid "Cheats Manager" msgstr "Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Tjek NAND..." @@ -2589,11 +2589,11 @@ msgstr "Angiv en fil at åbne" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2624,7 +2624,7 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Ryd" @@ -2632,7 +2632,7 @@ msgstr "Ryd" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Ryd cache" @@ -2653,7 +2653,7 @@ msgstr "Klon og &Rediger kode..." msgid "Close" msgstr "Luk" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "&Konfiguration" @@ -2697,7 +2697,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2724,7 +2724,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2734,7 +2734,7 @@ msgstr "Kompilerer shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2849,7 +2849,7 @@ msgstr "Konfigurér" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfigurer Dolphin" @@ -2873,7 +2873,7 @@ msgstr "Konfigurer output" msgid "Confirm" msgstr "Bekræft" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2881,7 +2881,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Bekræft ved Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2892,15 +2892,15 @@ msgstr "Bekræftelse" msgid "Connect" msgstr "Tilslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Forbind Balanceboard" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Forbind USB Tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Tilslut Wii Remote %1" @@ -2920,7 +2920,7 @@ msgstr "Tilslut Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Tilslut Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Tilslut Wii Remotes" @@ -3050,8 +3050,8 @@ msgstr "" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3059,9 +3059,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3069,9 +3069,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3091,8 +3091,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3284,7 +3284,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Kan ikke slå den centrale server op" @@ -3300,13 +3300,13 @@ msgstr "" msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3337,11 +3337,11 @@ msgstr "Skaber:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Beskær" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3353,18 +3353,18 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3384,11 +3384,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3396,15 +3396,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3447,7 +3447,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK bongotrommer" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3455,15 +3455,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3534,7 +3534,7 @@ msgstr "Dødszone" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3544,7 +3544,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3591,7 +3591,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Standard enhed" @@ -3607,7 +3607,7 @@ msgstr "Standard ISO:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3615,7 +3615,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3661,7 +3661,7 @@ msgstr "Dybde:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" @@ -3710,7 +3710,7 @@ msgstr "" msgid "Detect" msgstr "Opfang" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3740,7 +3740,7 @@ msgstr "Enhedsindstillinger" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Enhed:" @@ -3748,7 +3748,7 @@ msgstr "Enhed:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Nedtoner lysstyrken efter 5 minutters inaktivitet." @@ -3772,7 +3772,7 @@ msgstr "Deaktivér Afgrænsningsramme" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Deaktiver EFB VRAM kopier" @@ -3780,11 +3780,11 @@ msgstr "Deaktiver EFB VRAM kopier" msgid "Disable Emulation Speed Limit" msgstr "Deaktiver begrænsning af emulationshastighed" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3792,11 +3792,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deaktivér tåge" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Deaktiver JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3811,7 +3811,7 @@ msgid "" "unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4173,11 +4173,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Hollandsk" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "F&orlad" @@ -4201,7 +4201,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Tidlige hukommelsesopdateringer" @@ -4275,7 +4275,7 @@ msgstr "Indlejret framebuffer (EFB)" msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emulatortråd kører i forvejen" @@ -4283,7 +4283,7 @@ msgstr "Emulatortråd kører i forvejen" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4301,7 +4301,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4323,16 +4323,16 @@ msgstr "Emulationshastighed" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Aktivér API Valideringslag" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Aktivér lydtrækning" @@ -4380,7 +4380,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Aktivér PFRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4406,7 +4406,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4419,7 +4419,7 @@ msgstr "Aktivér MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Aktivér Progressiv Skanning" @@ -4428,11 +4428,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Aktivér vibration" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Aktivér Pauseskærm" @@ -4452,11 +4452,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "Aktivér rapportering af brugsstatistik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Aktivér Wireframe" @@ -4512,7 +4512,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4547,7 +4547,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4555,7 +4555,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4572,7 +4572,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Aktivér strækning af lyden, så lyden afstemmes med emulationshastigheden." @@ -4601,7 +4601,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4609,7 +4609,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4617,7 +4617,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4646,7 +4646,7 @@ msgstr "Enet blev ikke initialiseret" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engelsk" @@ -4663,7 +4663,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Indtast USB enhets-ID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4687,7 +4687,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4726,9 +4726,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4741,24 +4741,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4788,7 +4788,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4895,12 +4895,12 @@ 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:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4944,11 +4944,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Eksperimentel" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-saves" @@ -4963,7 +4963,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksporter optagelse" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Eksporter optagelse..." @@ -4991,7 +4991,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5019,7 +5019,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Ekstern framebuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5057,7 +5057,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO-afspiller" @@ -5075,7 +5075,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5095,7 +5095,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5116,7 +5116,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5197,18 +5197,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5235,7 +5235,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5245,8 +5245,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5258,7 +5258,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5286,11 +5286,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5338,11 +5338,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5401,11 +5401,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5466,27 +5466,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5537,7 +5537,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5573,7 +5573,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5587,7 +5587,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5595,24 +5595,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Filinfo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Filnavn" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Filstørrelse" @@ -5730,7 +5730,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Tving 16:9" @@ -5738,7 +5738,7 @@ msgstr "Tving 16:9" msgid "Force 24-Bit Color" msgstr "Tvunget 24-bit farve " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Tving 4:3" @@ -5770,11 +5770,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5848,11 +5848,11 @@ msgstr "Billedfremskydning Forøg Hastighed" msgid "Frame Advance Reset Speed" msgstr "Billedfremskydning Nulstil Hastighed" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Billedvidde" @@ -5860,7 +5860,7 @@ msgstr "Billedvidde" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5911,7 +5911,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Fransk" @@ -5930,8 +5930,8 @@ msgid "From" msgstr "Fra" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Fra:" @@ -5987,11 +5987,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6135,7 +6135,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Spil-id" @@ -6148,7 +6148,7 @@ msgstr "Spil-id:" msgid "Game Status" msgstr "Spilstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6256,7 +6256,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koder" @@ -6288,13 +6288,13 @@ msgstr "Generer en ny identitet til statistik" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tysk" @@ -6370,7 +6370,7 @@ msgstr "Grøn venstre" msgid "Green Right" msgstr "Grøn højre" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "Skjul" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6476,11 +6476,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Høj " -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6519,11 +6519,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Vært inputautoritet aktiveret" @@ -6549,7 +6549,7 @@ msgstr "Genvejstaster" msgid "Hotkeys Require Window Focus" msgstr "Genvejstaster forudsætter vinduefokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6607,7 +6607,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR-sensitivitet:" @@ -6679,14 +6679,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6730,7 +6730,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6739,7 +6739,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6754,7 +6754,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importer Wii-save..." @@ -6855,16 +6855,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6884,8 +6884,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Information" @@ -6898,11 +6898,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Input" @@ -6928,7 +6928,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Indsæt SD-kort" @@ -6945,7 +6945,7 @@ msgstr "" msgid "Install Update" msgstr "Installer opdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Installere WAD..." @@ -6968,7 +6968,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instruktion:" @@ -7054,7 +7054,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (langsomst)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7079,7 +7079,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7104,7 +7104,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7140,13 +7140,13 @@ msgstr "Forkert søgetekst (kun lige længder er understøttet)" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiensk" @@ -7159,11 +7159,11 @@ msgstr "Italien" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT blok sammenkædning slået fra" @@ -7171,47 +7171,47 @@ msgstr "JIT blok sammenkædning slået fra" msgid "JIT Blocks" msgstr "JIT blokke" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7223,11 +7223,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7238,16 +7238,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japansk" @@ -7307,12 +7307,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Smid spiller ud" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreansk" @@ -7359,23 +7359,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7383,7 +7383,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7473,11 +7473,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7489,15 +7489,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Indlæs" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7509,7 +7509,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Indlæs tilpassede teksturer" @@ -7517,7 +7517,7 @@ msgstr "Indlæs tilpassede teksturer" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7627,19 +7627,19 @@ msgstr "Indlæs tilstand plads 8" msgid "Load State Slot 9" msgstr "Indlæs tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Indlæs tilstand fra valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Indlæs tilstand fra plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7651,35 +7651,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Indlæs fra plads %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Indlæs..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7693,7 +7693,7 @@ msgstr "Lokal" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7719,7 +7719,7 @@ msgstr "Konfiguration af log" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7727,7 +7727,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Log renderingstider til fil" @@ -7743,27 +7743,27 @@ msgstr "Logger-outputs" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Lav" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7823,7 +7823,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Udgiver" @@ -7840,12 +7840,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7861,11 +7861,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7874,7 +7874,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan sænke hastigheden i Wii-menuen og nogle spil." @@ -7895,7 +7895,7 @@ msgstr "Hukommelsesbreakpoint" msgid "Memory Card" msgstr "Hukommelseskort" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7946,11 +7946,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Diverse indstillinger" @@ -7968,7 +7968,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7988,7 +7988,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8004,8 +8004,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -8013,7 +8013,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8071,10 +8071,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND tjek" @@ -8083,7 +8083,7 @@ msgstr "NAND tjek" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8110,7 +8110,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8320,7 +8320,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8328,7 +8328,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8341,7 +8341,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8387,8 +8387,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8537,7 +8537,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Objektområde" @@ -8562,7 +8562,7 @@ msgstr "På" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8584,7 +8584,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online&dokumentation" @@ -8592,13 +8592,13 @@ msgstr "Online&dokumentation" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8615,7 +8615,7 @@ msgstr "Åbn" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8624,7 +8624,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8714,7 +8714,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8756,11 +8756,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Spi&l inputoptagelse..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8774,11 +8774,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8866,7 +8866,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pause ved slutning på film" @@ -8911,7 +8911,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Per-pixel belysning" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8919,15 +8919,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8945,7 +8945,7 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8962,7 +8962,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platform" @@ -8970,7 +8970,7 @@ msgstr "Platform" msgid "Play" msgstr "Afspil" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Spil/optagelse" @@ -8978,11 +8978,11 @@ msgstr "Spil/optagelse" msgid "Play Recording" msgstr "Afspil optagelse" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Playback-indstillinger" @@ -8990,27 +8990,27 @@ msgstr "Playback-indstillinger" msgid "Player" msgstr "Spiller" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9032,7 +9032,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9065,7 +9065,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9081,20 +9081,20 @@ msgstr "Postprocessing-effekt" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Indlæs først tilpassede teksturer" @@ -9129,7 +9129,7 @@ msgstr "Tryk på Sync-knap" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9198,11 +9198,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9216,7 +9216,7 @@ msgstr "" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9240,7 +9240,7 @@ msgstr "Servicekvalitet (QoS) kunne ikke aktiveres." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Servicekvalitet (QoS) aktiveret." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9272,11 +9272,11 @@ msgstr "R-analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9301,7 +9301,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9309,7 +9309,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9368,7 +9368,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Optag" @@ -9380,11 +9380,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Indstillinger for optagelse" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Optagelse..." @@ -9448,7 +9448,7 @@ msgid "Refreshing..." msgstr "Genindlæser..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9481,7 +9481,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Fjern" @@ -9518,11 +9518,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Render til hovedvindue" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9555,7 +9555,7 @@ msgstr "Nulstil" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9587,7 +9587,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9766,19 +9766,19 @@ msgstr "Rusland" msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kort sti:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9786,7 +9786,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9821,11 +9821,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Ge&m tilstand" @@ -9857,11 +9857,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9879,11 +9879,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9895,7 +9895,7 @@ msgstr "Gem ældste tilstand" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9945,23 +9945,23 @@ msgstr "Gem tilstand plads 8" msgid "Save State Slot 9" msgstr "Gem tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Gem tilstand til ældste plads" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Gem tilstand til valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Gem tilstand til plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9981,11 +9981,11 @@ msgstr "" msgid "Save as..." msgstr "Gem som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9996,11 +9996,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -10008,11 +10008,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Gem til plads %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Gem..." @@ -10042,7 +10042,7 @@ msgstr "Skærmdump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Søg" @@ -10069,7 +10069,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10077,7 +10077,7 @@ msgstr "" msgid "Search games..." msgstr "Søg spil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Søg instruktion" @@ -10122,11 +10122,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10166,7 +10166,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Vælg plads %1 - %2" @@ -10174,7 +10174,7 @@ msgstr "Vælg plads %1 - %2" msgid "Select State" msgstr "Vælg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Vælg tilstand plads" @@ -10241,7 +10241,7 @@ msgstr "Vælg en mappe" msgid "Select a File" msgstr "Vælg en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10249,7 +10249,7 @@ msgstr "" msgid "Select a Game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10261,7 +10261,7 @@ msgstr "" msgid "Select a game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10269,7 +10269,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10286,7 +10286,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Vælg savefilen" @@ -10310,7 +10310,7 @@ msgstr "Valgte kontrollerprofil eksisterer ikke" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10334,7 +10334,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10364,7 +10364,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10386,7 +10386,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10400,7 +10400,7 @@ msgstr "" msgid "Send" msgstr "Send" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensorbarens position:" @@ -10465,7 +10465,7 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10475,7 +10475,7 @@ msgstr "" "(576i) for PAL-spil.\n" "Virker måske ikke med alle spil." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Indstiller Wii-systemets sprog." @@ -10487,7 +10487,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10506,7 +10506,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10520,7 +10520,7 @@ msgstr "SetupWiiMemory: Kan ikke oprette settings.txt-filen" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10542,16 +10542,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Vis &log" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Vis &værktøjslinje" @@ -10559,11 +10559,11 @@ msgstr "Vis &værktøjslinje" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Vis Australien" @@ -10576,7 +10576,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" @@ -10585,27 +10585,27 @@ msgstr "Vis ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Vis FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Vis billedtæller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Vis Frankrig" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Vis Tyskland" @@ -10617,23 +10617,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Vis input" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Vis Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Vis lag-tæller" @@ -10641,19 +10641,19 @@ msgstr "Vis lag-tæller" msgid "Show Language:" msgstr "Vis sprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Vis log&konfiguration" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Vis NetPlay meddelelser" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Vis NetPlay ping" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Vis Holland" @@ -10661,7 +10661,7 @@ msgstr "Vis Holland" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Vis PAL" @@ -10670,27 +10670,27 @@ msgstr "Vis PAL" msgid "Show PC" msgstr "Vis PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Vis platforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Vis Rusland" @@ -10698,51 +10698,51 @@ msgstr "Vis Rusland" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Vis Spanien" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Vis systemur" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Vis ukendte" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Vis verden" @@ -10755,7 +10755,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10783,13 +10783,13 @@ msgid "" "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10828,47 +10828,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10890,7 +10890,7 @@ msgstr "Sidelæns skift" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10914,7 +10914,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Simpel kinesisk" @@ -10931,7 +10931,7 @@ msgstr "" msgid "Size" msgstr "Størrelse" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10941,7 +10941,7 @@ msgstr "" msgid "Skip" msgstr "Spring over" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11058,7 +11058,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11072,7 +11072,7 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spansk" @@ -11080,11 +11080,11 @@ msgstr "Spansk" msgid "Speaker Pan" msgstr "Højttalerpanorering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Lydstyrke for højtaler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11092,7 +11092,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11134,7 +11134,7 @@ msgstr "Standardkontroller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Start &NetPlay..." @@ -11143,11 +11143,11 @@ msgstr "Start &NetPlay..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Start med at &optage input" @@ -11155,7 +11155,7 @@ msgstr "Start med at &optage input" msgid "Start Recording" msgstr "Start optagelse" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11167,7 +11167,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11227,7 +11227,7 @@ msgstr "Hop succes!" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11256,12 +11256,12 @@ msgid "Stick" msgstr "Stik" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11297,7 +11297,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Stræk til vindue" @@ -11336,8 +11336,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Succes" @@ -11364,7 +11364,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11376,12 +11376,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11404,12 +11404,12 @@ msgstr "Support" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11467,7 +11467,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symboler" @@ -11493,7 +11493,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11512,11 +11512,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemsprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS-input" @@ -11529,7 +11529,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11547,7 +11547,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Tag skærmbillede" @@ -11586,7 +11586,7 @@ msgstr "Tekstur-cache" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11598,7 +11598,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Teksturformatteringslag" @@ -11635,13 +11635,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11656,7 +11656,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11950,7 +11950,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12008,7 +12008,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12334,7 +12334,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titel" @@ -12343,12 +12343,12 @@ msgid "To" msgstr "Til" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Aktiver &fuldskærm" @@ -12437,7 +12437,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Top" @@ -12488,7 +12488,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Traditionel kinesisk" @@ -12508,8 +12508,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12590,14 +12590,14 @@ msgstr "USB-Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12605,7 +12605,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12614,7 +12614,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12686,11 +12686,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Fortryd indlæsning af tilstand" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Fortræd lagring af tilstand" @@ -12708,7 +12708,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12800,7 +12800,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12816,7 +12816,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12859,7 +12859,7 @@ msgid "Up" msgstr "Op" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Opdater" @@ -12930,7 +12930,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12938,7 +12938,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Brug PAL60-tilstand (EURGB60)" @@ -12952,7 +12952,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13020,14 +13020,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13290,7 +13290,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advarsel" @@ -13381,7 +13381,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13389,7 +13389,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13397,7 +13397,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13447,7 +13447,7 @@ msgstr "Wii Remote-knapper" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote-indstillinger" @@ -13475,7 +13475,7 @@ msgstr "Wii og Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13483,7 +13483,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13514,7 +13514,7 @@ msgstr "Verden" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13563,11 +13563,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13618,14 +13618,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13723,7 +13723,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/de.po b/Languages/po/de.po index a06acb8e7e..39243ee6e9 100644 --- a/Languages/po/de.po +++ b/Languages/po/de.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Ettore Atalan , 2015-2020,2024\n" "Language-Team: German (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -115,7 +115,7 @@ msgstr "" "%1\n" "will deiner Gruppe beitreten." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -169,7 +169,7 @@ msgstr "%1 (langsam)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -204,7 +204,7 @@ msgstr "%1 unterstützt diese Funktion auf Ihrem System nicht." msgid "%1 doesn't support this feature." msgstr "%1 unterstützt diese Funktion nicht." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -214,11 +214,11 @@ msgstr "" "%2 Objekt(e)\n" "Derzeitiger Frame: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 ist beigetreten" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 ist gegangen" @@ -226,11 +226,11 @@ msgstr "%1 ist gegangen" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 ist kein gültiges ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 golft jetzt" @@ -242,8 +242,8 @@ msgstr "%1 spielt %2" msgid "%1 memory ranges" msgstr "%1 Speicherbereiche" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -260,7 +260,7 @@ msgstr "%1 Sitzung gefunden" msgid "%1 sessions found" msgstr "%1 Sitzungen gefunden" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -368,11 +368,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Über" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Speicherhaltepunkt hinzufügen" @@ -389,11 +389,11 @@ msgstr "Funktion &hinzufügen" msgid "&Add..." msgstr "&Hinzufügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Audioeinstellungen" @@ -409,11 +409,11 @@ msgstr "&Randloses Fenster" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Haltepunkte" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -421,15 +421,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Abbrechen" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Cheats-Manager" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Auf Updates prüfen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "Symbole lös&chen" @@ -437,7 +437,7 @@ msgstr "Symbole lös&chen" msgid "&Clone..." msgstr "&Klonen..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Code" @@ -445,7 +445,7 @@ msgstr "&Code" msgid "&Connected" msgstr "&Verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Controller-Einstellungen" @@ -468,13 +468,13 @@ msgstr "&Löschen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Überwachung löschen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -488,11 +488,11 @@ msgstr "Code b&earbeiten..." msgid "&Edit..." msgstr "B&earbeiten..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Disc auswerfen" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulation" @@ -513,40 +513,40 @@ msgid "&Export as .gci..." msgstr "&Als GCI exportieren..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Datei" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "Schri&ftart..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Einzelbildwiedergabe" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Freies Umsehen-Einstellungen" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "Symbole erzeu&gen aus" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub-Repositorium" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafikeinstellungen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Hilfe" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Tastenkürzel-Einstellungen" @@ -566,7 +566,7 @@ msgstr "&Spielstand importieren..." msgid "&Import..." msgstr "&Importieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -578,7 +578,7 @@ msgstr "blr &einfügen" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -590,11 +590,11 @@ msgstr "&Sprache:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "Spielstand &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "Symbolkarte &laden" @@ -604,11 +604,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "Widgets an Ort und Stelle &sperren" @@ -616,11 +616,11 @@ msgstr "Widgets an Ort und Stelle &sperren" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Arbeitsspeicher" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "Fil&m" @@ -628,7 +628,7 @@ msgstr "Fil&m" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Netzwerk" @@ -637,23 +637,23 @@ msgid "&No" msgstr "&Nein" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "Ö&ffnen..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Optionen" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&HLE-Funktionen patchen" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "Pau&se" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Start" @@ -661,7 +661,7 @@ msgstr "&Start" msgid "&Properties" msgstr "&Eigenschaften" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "Nu&r-Lese-Modus" @@ -669,7 +669,7 @@ msgstr "Nu&r-Lese-Modus" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Register" @@ -687,11 +687,11 @@ msgid "&Rename symbol" msgstr "Symbol &umbenennen" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Ressourcenpaketverwaltung" @@ -699,7 +699,7 @@ msgstr "&Ressourcenpaketverwaltung" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "Symbolkarte &speichern" @@ -707,7 +707,7 @@ msgstr "Symbolkarte &speichern" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -715,7 +715,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "&Geschwindigkeitsbegrenzung:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "Sto&pp" @@ -723,7 +723,7 @@ msgstr "Sto&pp" msgid "&Theme:" msgstr "&Design:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Threads" @@ -731,7 +731,7 @@ msgstr "&Threads" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "E&xtras" @@ -741,21 +741,21 @@ msgstr "ROM &entladen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Ansicht" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Überwachungsfenster" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Webseite" @@ -767,11 +767,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "Konnte '%1' nicht finden, es wurden keine Symbolnamen generiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" "'%1' konnte nicht gefunden werden, es wird stattdessen nach gemeinsamen " @@ -821,7 +821,7 @@ msgstr "- Subtrahieren" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Unbekannt--" @@ -887,7 +887,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -971,7 +971,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 Blöcke)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1072,7 +1072,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1205,7 +1205,7 @@ msgstr "" "eventuell nicht richtig.\n" "Benutzung auf eigene Gefahr.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-Code" @@ -1247,8 +1247,8 @@ msgstr "Genauigkeit:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Errungenschaften" @@ -1344,7 +1344,7 @@ msgstr "NetPlay Chat aktivieren" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1356,7 +1356,7 @@ msgstr "Aktive Thread-Warteschlange" msgid "Active threads" msgstr "Aktive Threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Grafikkarte" @@ -1364,7 +1364,7 @@ msgstr "Grafikkarte" msgid "Adapter Detected" msgstr "Adapter erkannt" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Grafikkarte:" @@ -1421,7 +1421,7 @@ msgstr "Zur Überwachung hinzufügen" #: 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:329 msgid "Add..." msgstr "Hinzufügen..." @@ -1435,7 +1435,7 @@ msgstr "Hinzufügen..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adresse" @@ -1650,7 +1650,7 @@ msgstr "Nicht übereinstimmende Regionseinstellungen zulassen" msgid "Allow Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten erlauben" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Schreiben auf SD-Karte zulassen" @@ -1693,7 +1693,7 @@ msgstr "" msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analysiere" @@ -1719,15 +1719,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Beliebige Region" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Signatur anfügen an" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "An &vorhandene Signaturdatei anfügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "Signaturdatei an&wenden..." @@ -1747,7 +1747,7 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Übernehmen" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Signaturdatei anwenden" @@ -1779,16 +1779,16 @@ msgstr "Bist du dir sicher?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Seitenverhältnis" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Seitenverhältnis:" @@ -1829,11 +1829,11 @@ msgstr "MotionPlus anfügen" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Audio-Backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Audiodehnungseinstellungen" @@ -1849,7 +1849,7 @@ msgstr "Autor" msgid "Authors" msgstr "Autoren" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatisch" @@ -1874,7 +1874,7 @@ msgstr "" "\n" "Bitte wähle eine spezifische interne Auflösung." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Fenstergröße automatisch anpassen" @@ -1882,15 +1882,15 @@ msgstr "Fenstergröße automatisch anpassen" msgid "Auto-Hide" msgstr "Automatisch verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "RSO-Module automatisch erkennen?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1943,19 +1943,19 @@ msgstr "BP-Register" msgid "Back Chain" msgstr "Rückwärtskette" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Backend Multithreading" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Backend-Einstellungen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1998,7 +1998,7 @@ msgstr "Unzulässigen Wert angegeben." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -2022,7 +2022,7 @@ msgstr "Basisadresse" msgid "Base priority" msgstr "Basispriorität" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Standard" @@ -2076,11 +2076,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbit/s):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2090,7 +2090,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blockgröße" @@ -2128,7 +2128,7 @@ msgstr "" "Bluetooth-Durchleitungsmodus ist aktiviert, aber Dolphin wurde ohne libusb " "gebaut. Durchleitungsmodus kann nicht verwendet werden." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Pausieren nach Boot" @@ -2140,11 +2140,11 @@ msgstr "BootMii-NAND-Sicherungsdatei (*.bin);;Alle Dateien (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii Schlüsseldatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Randloses Vollbild" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Unten" @@ -2321,20 +2321,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "&NetPlay-Sitzungen durchsuchen...." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Puffergröße:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Puffergröße auf %1 geändert" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Puffer:" @@ -2386,7 +2386,7 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "Signatu&rdatei erstellen..." @@ -2410,7 +2410,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (langsamer)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2498,11 +2498,11 @@ msgstr "Du kannst keine NetPlay-Session starten, während ein Spiel noch läuft! #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Abbrechen" @@ -2591,7 +2591,7 @@ msgstr "Zentrieren und Kalibrieren" msgid "Change &Disc" msgstr "Disc &wechseln" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Disc &wechseln..." @@ -2613,7 +2613,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2640,7 +2640,7 @@ msgstr "" "Originalkamera. Hat keine seitliche Bewegung, nur Drehung und du kannst bis " "zum Ursprungspunkt der Kamera zoomen." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Das Wechseln der Cheats wird erst wirksam, nachdem das Spiel neu gestartet " @@ -2650,7 +2650,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2662,7 +2662,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Cheatcode-Editor" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cheatsuche" @@ -2670,7 +2670,7 @@ msgstr "Cheatsuche" msgid "Cheats Manager" msgstr "Cheat-Verwaltung" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "NAND prüfen..." @@ -2710,11 +2710,11 @@ msgstr "Datei zum Öffnen auswählen" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Vorrangige Eingabedatei auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Sekundäre Eingabedatei auswählen" @@ -2745,7 +2745,7 @@ msgstr "Klassischer Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Leeren" @@ -2753,7 +2753,7 @@ msgstr "Leeren" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Cache leeren" @@ -2774,7 +2774,7 @@ msgstr "Code b&earbeiten und klonen..." msgid "Close" msgstr "Schließen" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ko&nfiguration" @@ -2818,7 +2818,7 @@ msgstr "Farbraum" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "&Zwei Signaturdateien kombinieren..." @@ -2845,7 +2845,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Shader vor dem Start kompilieren" @@ -2855,7 +2855,7 @@ msgstr "Kompiliere Shader" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Komprimierung" @@ -2970,7 +2970,7 @@ msgstr "Einstellungen" msgid "Configure Controller" msgstr "Controller konfigurieren" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin konfigurieren" @@ -2994,7 +2994,7 @@ msgstr "Ausgabe konfigurieren" msgid "Confirm" msgstr "Bestätigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Ändern des Backends bestätigen" @@ -3002,7 +3002,7 @@ msgstr "Ändern des Backends bestätigen" msgid "Confirm on Stop" msgstr "Beim Beenden bestätigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3013,15 +3013,15 @@ msgstr "Bestätigung" msgid "Connect" msgstr "Verbinden" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Balance Bord anschließen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB-Tastatur verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Wiimote %1 verbinden" @@ -3041,7 +3041,7 @@ msgstr "Wiimote 3 verbinden" msgid "Connect Wii Remote 4" msgstr "Wiimote 4 verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Wiimotes verbinden" @@ -3188,8 +3188,8 @@ msgstr "Konvergenz" msgid "Convergence:" msgstr "Konvergenz:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Konvertierung fehlgeschlagen" @@ -3197,9 +3197,9 @@ msgstr "Konvertierung fehlgeschlagen" msgid "Convert" msgstr "Konvertieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3207,9 +3207,9 @@ msgstr "" msgid "Convert File..." msgstr "Datei konvertieren..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3232,8 +3232,8 @@ msgstr "" "Möchtest du trotzdem fortfahren?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konvertiere..." @@ -3456,7 +3456,7 @@ msgstr "" "Wenn ja, dann musst du möglicherweise deinen Speicherort für die " "Speicherkarte in den Optionen neu angeben." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Konnte den zentralen Server nicht ermitteln" @@ -3472,13 +3472,13 @@ msgstr "Konnte Datei nicht lesen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Erstellen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3509,11 +3509,11 @@ msgstr "Ersteller:" msgid "Critical" msgstr "Kritisch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Zuschneiden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3525,18 +3525,18 @@ msgstr "" msgid "Crossfade" msgstr "Überblendung" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Aktuelle Region" @@ -3556,11 +3556,11 @@ msgstr "Aktuelles Spiel" msgid "Current thread" msgstr "Aktueller Thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3568,15 +3568,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3619,7 +3619,7 @@ msgstr "DJ-Plattenspieler" msgid "DK Bongos" msgstr "DK-Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP-Emulations-Engine" @@ -3627,15 +3627,15 @@ msgstr "DSP-Emulations-Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (schnell)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (empfohlen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (sehr langsam)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (langsam)" @@ -3710,7 +3710,7 @@ msgstr "Tote Zone" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debug" @@ -3720,7 +3720,7 @@ msgstr "Debug" msgid "Decimal" msgstr "Dezimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Decodierungsqualität:" @@ -3767,7 +3767,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "Standard-Einstellungen (nur lesen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Standardgerät" @@ -3783,7 +3783,7 @@ msgstr "Standard-ISO:" msgid "Default thread" msgstr "Standard-Thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB-Cache-Invalidierung zurückstellen" @@ -3791,7 +3791,7 @@ msgstr "EFB-Cache-Invalidierung zurückstellen" msgid "Defer EFB Copies to RAM" msgstr "EFB-Kopien auf RAM verschieben" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3843,7 +3843,7 @@ msgstr "Tiefe:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschreibung" @@ -3892,7 +3892,7 @@ msgstr "Gelöst" msgid "Detect" msgstr "Erkenne" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3922,7 +3922,7 @@ msgstr "Geräteeinstellungen" msgid "Device VID (e.g., 057e)" msgstr "Geräte VID (z.b., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Gerät:" @@ -3930,7 +3930,7 @@ msgstr "Gerät:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Verdunkelt den Bildschirm nach fünf Minuten Inaktivität." @@ -3954,7 +3954,7 @@ msgstr "Bounding Box deaktivieren" msgid "Disable Copy Filter" msgstr "Kopierfilter deaktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM-Kopien deaktivieren" @@ -3962,11 +3962,11 @@ msgstr "EFB VRAM-Kopien deaktivieren" msgid "Disable Emulation Speed Limit" msgstr "Geschwindigkeitsbegrenzung ausschalten" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Fastmem deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3974,11 +3974,11 @@ msgstr "" msgid "Disable Fog" msgstr "Nebel deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "JIT-Zwischenspeicher deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3997,7 +3997,7 @@ msgstr "" "funktionieren.

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4382,11 +4382,11 @@ msgstr "Freigabedauer der Turbo-Taste (Frames):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holländisch" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Beenden" @@ -4417,7 +4417,7 @@ msgstr "" "Geeignet für kompetetive Spiele, bei denen Fairness und minimale Latenz am " "wichtigsten sind." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Frühe Speicher-Updates" @@ -4491,7 +4491,7 @@ msgstr "Eingebetteter Bildspeicher (EFB)" msgid "Empty" msgstr "Leer" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emu-Thread läuft bereits." @@ -4499,7 +4499,7 @@ msgstr "Emu-Thread läuft bereits." msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4517,7 +4517,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Emulierte USB-Geräte" @@ -4542,16 +4542,16 @@ msgstr "Emulationsgeschwindigkeit" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Aktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API-Validierungsschichten aktivieren" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Audiodehnung aktivieren" @@ -4599,7 +4599,7 @@ msgstr "" msgid "Enable FPRF" msgstr "FPRF aktivieren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4625,7 +4625,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4638,7 +4638,7 @@ msgstr "MMU aktivieren" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Progressiven Scan aktivieren" @@ -4647,11 +4647,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Rumble aktivieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Bildschirmschoner aktivieren" @@ -4671,11 +4671,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten aktivieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Drahtgittermodell aktivieren" @@ -4731,7 +4731,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4766,7 +4766,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4774,7 +4774,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4794,7 +4794,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Ermöglicht die Dehnung des Audiosignals, um die Emulationsgeschwindigkeit " @@ -4824,7 +4824,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4832,7 +4832,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4840,7 +4840,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4871,7 +4871,7 @@ msgstr "Enet konnte nicht initialisiert werden" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Englisch" @@ -4888,7 +4888,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "USB-Geräte ID eingeben" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4912,7 +4912,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Geben Sie die RSO-Moduladresse ein:" @@ -4951,9 +4951,9 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4966,24 +4966,24 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5013,7 +5013,7 @@ msgstr "Fehler beim Öffnen des Adapters: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5129,12 +5129,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -5178,11 +5178,11 @@ msgstr "Erwarteter Beginn des Ausdrucks." msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Alle Wii-Spielstände exportieren" @@ -5197,7 +5197,7 @@ msgstr "Exportieren fehlgeschlagen" msgid "Export Recording" msgstr "Aufnahme exportieren" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Aufnahme exportieren..." @@ -5225,7 +5225,7 @@ msgstr "Als .&gcs exportieren..." msgid "Export as .&sav..." msgstr "Als .&sav exportieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5253,7 +5253,7 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externer Bildspeicher (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Zertifikate aus NAND extrahieren" @@ -5291,7 +5291,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO-Player" @@ -5311,7 +5311,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' anfügen." @@ -5331,7 +5331,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Konnte nicht mit Redump.org verbinden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Konnte nicht mit Server %1 verbinden" @@ -5352,7 +5352,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5408,7 +5408,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Konnte folgende Spielstände nicht exportieren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Konnte Zertifikate aus NAND nicht extrahieren" @@ -5438,14 +5438,14 @@ msgstr "Ein oder mehrere D3D-Symbole konnten nicht gefunden werden" msgid "Failed to import \"%1\"." msgstr "Konnte \"%1\" nicht importieren." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5453,7 +5453,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5484,7 +5484,7 @@ msgid "Failed to install pack: %1" msgstr "Konnte Paket: %1 nicht installieren" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Konnte diesen Titel nicht in den NAND installieren." @@ -5496,8 +5496,8 @@ msgstr "" "Fehler beim Lauschen auf Port %1. Wird eine andere Instanz des NetPlay-" "Servers ausgeführt?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Konnte RSO-Modul an %1 nicht laden" @@ -5509,7 +5509,7 @@ 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:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Konnte Kartendatei '%1' nicht laden" @@ -5539,11 +5539,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5595,11 +5595,11 @@ msgstr "" msgid "Failed to open server" msgstr "Konnte Server nicht öffnen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5661,11 +5661,11 @@ msgstr "Konnte nicht aus der Eingabedatei \"{0}\" lesen." msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5733,27 +5733,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Konnte FIFO-Log nicht speichern." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Konnte Codekarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Konnte Signaturdatei '%1' nicht speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Konnte Symbolkarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' speichern." -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5806,7 +5806,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Fehler" @@ -5844,7 +5844,7 @@ msgstr "" msgid "Field of View" msgstr "Sichtfeld" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5858,7 +5858,7 @@ msgstr "Dateidetails" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Dateiformat" @@ -5866,24 +5866,24 @@ msgstr "Dateiformat" msgid "File Format:" msgstr "Dateiformat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Datei-Informationen" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Dateiname" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Dateipfad" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Dateigröße" @@ -6009,7 +6009,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "16:9 erzwingen" @@ -6017,7 +6017,7 @@ msgstr "16:9 erzwingen" msgid "Force 24-Bit Color" msgstr "24-Bit Farbtiefe erzwingen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "4:3 erzwingen" @@ -6049,11 +6049,11 @@ msgstr "Lauschport erzwingen:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -6131,11 +6131,11 @@ msgstr "Verringere Einzelbildwiedergabegeschwindigkeit" msgid "Frame Advance Reset Speed" msgstr "Einzelbildwiedergabegeschwindigkeit zurücksetzen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Frame-Dump" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Bildbereich" @@ -6143,7 +6143,7 @@ msgstr "Bildbereich" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Frame-Dump Bild(er) '{0}' existiert bereits. Überschreiben?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Bilder zum Aufzeichnen:" @@ -6198,7 +6198,7 @@ msgstr "Freies Umsehen umschalten" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Französisch" @@ -6217,8 +6217,8 @@ msgid "From" msgstr "Von" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Von:" @@ -6274,11 +6274,11 @@ msgstr "GBA-Lautstärke" msgid "GBA Window Size" msgstr "GBA-Fenstergröße" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6441,7 +6441,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Spielkennung" @@ -6454,7 +6454,7 @@ msgstr "Spielkennung:" msgid "Game Status" msgstr "Spielstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Spiel auf \"%1\" geändert" @@ -6564,7 +6564,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-Codes" @@ -6596,13 +6596,13 @@ msgstr "Neue Statistikidentität erzeugen" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Generierte Symbolnamen von '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Deutsch" @@ -6683,7 +6683,7 @@ msgstr "Grün links" msgid "Green Right" msgstr "Grün rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Tabellenansicht" @@ -6765,7 +6765,7 @@ msgstr "Verbergen" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Alles verbergen" @@ -6789,11 +6789,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Hoch" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Höchste" @@ -6837,11 +6837,11 @@ msgstr "" "Geeignet für Gelegenheitsspiele mit 3+ Spielern, möglicherweise bei " "instabilen Verbindungen oder Verbindungen mit hoher Latenz." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Host-Eingabeautorität deaktiviert" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Host-Eingabeautorität aktiviert" @@ -6867,7 +6867,7 @@ msgstr "Tastenkürzel" msgid "Hotkeys Require Window Focus" msgstr "Tastaturkürzel benötigen Fensterfokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6931,7 +6931,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR-Empfindlichkeit:" @@ -7025,14 +7025,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7084,7 +7084,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Sofort dargestellter XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7099,7 +7099,7 @@ msgstr "" "Performance etwas.

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-Sicherung importieren..." @@ -7114,7 +7114,7 @@ msgstr "Importieren fehlgeschlagen" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Wii-Spielstand importieren..." @@ -7222,16 +7222,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7251,8 +7251,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Information" @@ -7265,11 +7265,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Eingabe" @@ -7295,7 +7295,7 @@ msgstr "" msgid "Insert &nop" msgstr "&nop einfügen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD-Karte einfügen" @@ -7312,7 +7312,7 @@ msgstr "" msgid "Install Update" msgstr "Update installieren" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WAD installieren..." @@ -7335,7 +7335,7 @@ msgstr "Anweisung" msgid "Instruction Breakpoint" msgstr "Anweisungshaltepunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Anweisung:" @@ -7421,7 +7421,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (am langsamsten)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreterkern" @@ -7446,7 +7446,7 @@ msgstr "Ungültiges Paket %1 angegeben: &2" msgid "Invalid Player ID" msgstr "Ungültige Spieler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Ungültige RSO-Moduladresse: %1" @@ -7471,7 +7471,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ungültige Eingabe für das Feld \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Ungültige Eingabe eingegeben" @@ -7507,13 +7507,13 @@ msgstr "Ungültiger Suchbegriff (nur gerade Zeichenlängen werden unterstützt)" msgid "Invalid title ID." msgstr "Ungültige Titelkennung" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italienisch" @@ -7526,11 +7526,11 @@ msgstr "Italien" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT-Blockverbindung Aus" @@ -7538,47 +7538,47 @@ msgstr "JIT-Blockverbindung Aus" msgid "JIT Blocks" msgstr "JIT-Blöcke" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Zweig Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FließKomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Ganzahl Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LadenSpeichern Fließkomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LadenSpeichern Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LadenSpeichern Gekoppelt Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LadenSpeichern lXz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LadenSpeichern lbzx Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LadenSpeichern lwz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Aus (JIT-Kern)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Gekoppelt Aus" @@ -7590,11 +7590,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT-Register-Cache Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT-SystemRegister Aus" @@ -7608,16 +7608,16 @@ msgstr "" "niemals passieren. Melde bitte diesen Vorfall im Bug-Tracker. Dolphin wird " "jetzt beendet." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanisch" @@ -7677,12 +7677,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Spieler hinauswerfen" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreanisch" @@ -7729,23 +7729,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Latenz:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Latenz: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Latenz: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Latenz: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Latenz: ~80 ms" @@ -7753,7 +7753,7 @@ msgstr "Latenz: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7849,11 +7849,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Uploadblock-Geschwindigkeit begrenzen:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Listen-Spalten" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Listenansicht" @@ -7865,15 +7865,15 @@ msgstr "Lauscht" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "&Ungültige Kartendatei laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "&Andere Kartendatei laden..." @@ -7885,7 +7885,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Lade benutzerdefinierte Texturen" @@ -7893,7 +7893,7 @@ msgstr "Lade benutzerdefinierte Texturen" msgid "Load File" msgstr "Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "GameCube-Hauptmenü laden" @@ -8003,19 +8003,19 @@ msgstr "Spielstand in Slot 8 laden" msgid "Load State Slot 9" msgstr "Spielstand in Slot 9 laden" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Spielstand von Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Spielstand von Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Wii-Systemmenü laden %1" @@ -8027,28 +8027,28 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Lade von Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Kartendatei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Geladene Symbole von '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8058,7 +8058,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/.

Im " "Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8072,7 +8072,7 @@ msgstr "Lokal" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -8098,7 +8098,7 @@ msgstr "Protokollkonfiguration" msgid "Log In" msgstr "Anmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "JIT-Anweisungsabdeckung protokollieren" @@ -8106,7 +8106,7 @@ msgstr "JIT-Anweisungsabdeckung protokollieren" msgid "Log Out" msgstr "Abmelden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Protokolliert Renderzeit in Datei" @@ -8122,27 +8122,27 @@ msgstr "Logger-Ausgabe" msgid "Login Failed" msgstr "Anmeldung fehlgeschlagen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Die Verbindung zum NetPlay-Server wurde getrennt..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Niedrig" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Niedrigste" @@ -8202,7 +8202,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Hersteller" @@ -8223,12 +8223,12 @@ msgstr "" "machen, die die korrekte Nebelemulation benötigen." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "NAND verwalten" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -8244,11 +8244,11 @@ msgstr "" msgid "Match Found" msgstr "Übereinstimmung gefunden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Maximaler Puffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Maximale Puffergröße auf %1 geändert" @@ -8257,7 +8257,7 @@ msgstr "Maximale Puffergröße auf %1 geändert" msgid "Maximum tilt angle." msgstr "Maximaler Neigungswinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Kann zu Verlangsamung im Wii-Menü und einigen Spielen führen." @@ -8278,7 +8278,7 @@ msgstr "Speicherhaltepunkt" msgid "Memory Card" msgstr "Speicherkarte" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Speicherkartenverwaltung" @@ -8335,11 +8335,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Sonstiges" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Sonstige Einstellungen" @@ -8357,7 +8357,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Nichtübereinstimmung zwischen internen Datenstrukturen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8377,7 +8377,7 @@ msgstr "" msgid "Modifier" msgstr "Modifikator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8396,8 +8396,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Module gefunden: %1" @@ -8405,7 +8405,7 @@ msgstr "Module gefunden: %1" msgid "Money:" msgstr "Geld:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8463,10 +8463,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ein zu allen" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-Prüfung" @@ -8475,7 +8475,7 @@ msgstr "NAND-Prüfung" msgid "NKit Warning" msgstr "NKit-Warnung" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8502,7 +8502,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8712,7 +8712,7 @@ msgstr "Keine Fehler." msgid "No extension selected." msgstr "Keine Erweiterung ausgewählt." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Keine Datei geladen / aufgezeichnet." @@ -8720,7 +8720,7 @@ msgstr "Keine Datei geladen / aufgezeichnet." msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Es läuft kein Spiel." @@ -8733,7 +8733,7 @@ msgstr "" msgid "No input" msgstr "Keine Eingabe" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Es wurden keine Probleme festgestellt." @@ -8783,8 +8783,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8933,7 +8933,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Objektreichweite" @@ -8958,7 +8958,7 @@ msgstr "Ein" msgid "On Movement" msgstr "Bei Bewegung" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8980,7 +8980,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online-&Dokumentation" @@ -8988,7 +8988,7 @@ msgstr "Online-&Dokumentation" msgid "Only Show Collection" msgstr "Nur Sammlung anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8996,7 +8996,7 @@ msgstr "" "Nur Symbole anhängen mit dem Präfix:\n" "(Leer für alle Symbole)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9015,7 +9015,7 @@ msgstr "Öffnen" msgid "Open &Containing Folder" msgstr "Über&geordneten Ordner öffnen" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "&Benutzerordner öffnen" @@ -9024,7 +9024,7 @@ msgstr "&Benutzerordner öffnen" msgid "Open Directory..." msgstr "Verzeichnis öffnen..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "FIFO-Log öffnen" @@ -9114,7 +9114,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9156,11 +9156,11 @@ msgstr "" msgid "Overwritten" msgstr "Überschrieben" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Eingabeau&fzeichnung wiedergeben..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9174,11 +9174,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG-Komprimierungsstufe" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG-Komprimierungsstufe:" @@ -9266,7 +9266,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pause am Filmende" @@ -9311,7 +9311,7 @@ msgstr "Spitzengeschwindigkeit von nach außen gerichteten Schwenkbewegungen." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Lighting" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Online-Systemaktualisierung durchführen" @@ -9319,15 +9319,15 @@ msgstr "Online-Systemaktualisierung durchführen" msgid "Perform System Update" msgstr "Systemaktualisierung durchführen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -9345,7 +9345,7 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Wähle eine Debug-Schriftart" @@ -9362,7 +9362,7 @@ msgid "Pitch Up" msgstr "Nicken aufwärts" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plattform" @@ -9370,7 +9370,7 @@ msgstr "Plattform" msgid "Play" msgstr "Start" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Abspielen / Aufnahme" @@ -9378,11 +9378,11 @@ msgstr "Abspielen / Aufnahme" msgid "Play Recording" msgstr "Aufnahme abspielen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Wiedergabeoptionen" @@ -9390,27 +9390,27 @@ msgstr "Wiedergabeoptionen" msgid "Player" msgstr "Spieler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Spieler Eins" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Spieler Zwei" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9432,7 +9432,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9465,7 +9465,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mögliche Desynchronisation erkannt: %1 wurde wahrscheinlich auf Frame %2 " @@ -9483,20 +9483,20 @@ msgstr "Nachbearbeitungseffekt:" msgid "Post-Processing Shader Configuration" msgstr "Shader-Konfiguration nach der Verarbeitung" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Benutzerdefinierte Texturen vorladen" @@ -9533,7 +9533,7 @@ msgstr "Sync-Taste drücken" msgid "Pressure" msgstr "Druck" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9613,11 +9613,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "Programmzähler" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Fortschritt" @@ -9631,7 +9631,7 @@ msgstr "" msgid "Public" msgstr "Öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Spielelisten Cache leeren" @@ -9655,7 +9655,7 @@ msgstr "Quality of Service (QoS) konnte nicht aktiviert werden." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) wurde erfolgreich aktiviert." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "Qualität des DPLII-Decoders. Audiolatenz steigt mit Qualität." @@ -9687,11 +9687,11 @@ msgstr "R-Analog" msgid "READY" msgstr "BEREIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO-Module" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "Automatische RSO-Erkennung" @@ -9716,7 +9716,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Rang %1" @@ -9724,7 +9724,7 @@ msgstr "Rang %1" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9783,7 +9783,7 @@ msgstr "" msgid "Recenter" msgstr "Nachzentrieren" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Aufnahme" @@ -9795,11 +9795,11 @@ msgstr "Eingaben aufzeichnen" msgid "Recording" msgstr "Aufzeichnung" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Aufnahmeoptionen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Aufzeichnung..." @@ -9869,7 +9869,7 @@ msgid "Refreshing..." msgstr "Aktualisiere..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9902,7 +9902,7 @@ msgstr "Erinnere mich später" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Entfernen" @@ -9942,11 +9942,11 @@ msgstr "Symbol umbenennen" msgid "Render Window" msgstr "Renderfenster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Im Hauptfenster rendern" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9981,7 +9981,7 @@ msgstr "Zurücksetzen" msgid "Reset All" msgstr "Alles zurücksetzen" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -10013,7 +10013,7 @@ msgstr "Sichtfeld zurücksetzen" msgid "Reset all saved Wii Remote pairings" msgstr "Alle gespeicherten Wiimote-Kopplungen zurücksetzen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -10192,19 +10192,19 @@ msgstr "Russland" msgid "SD Card" msgstr "SD-Karte" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD-Karten-Dateigröße" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-Kartenabbild (*.raw);;Alle Dateien (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-Karten-Pfad:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-Karten-Einstellungen" @@ -10212,7 +10212,7 @@ msgstr "SD-Karten-Einstellungen" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -10247,11 +10247,11 @@ msgstr "SSL-Kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Code speich&ern" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "S&pielstand speichern" @@ -10283,11 +10283,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Export speichern" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "FIFO-Log speichern" @@ -10305,11 +10305,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Import speichern" @@ -10321,7 +10321,7 @@ msgstr "Ältesten Spielstand überschreiben" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -10371,23 +10371,23 @@ msgstr "In Slot 8 speichern" msgid "Save State Slot 9" msgstr "In Slot 9 speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Spielstand in Datei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Spielstand in ältesten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Spielstand in Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Symbolkarte speichern &als..." @@ -10407,11 +10407,11 @@ msgstr "" msgid "Save as..." msgstr "Speichern unter..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Kombinierte Ausgabedatei speichern als" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10425,11 +10425,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Kartendatei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Signaturdatei speichern" @@ -10437,11 +10437,11 @@ msgstr "Signaturdatei speichern" msgid "Save to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Spielstand in Slot %1 - %2 speichern" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Speichern..." @@ -10473,7 +10473,7 @@ msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Suche" @@ -10500,7 +10500,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Suche nach einer Anweisung" @@ -10508,7 +10508,7 @@ msgstr "Suche nach einer Anweisung" msgid "Search games..." msgstr "Suche Spiele..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Suchanweisung" @@ -10554,11 +10554,11 @@ msgid "Select Dump Path" msgstr "Dump-Pfad auswählen" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Export-Verzeichnis auswählen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10598,7 +10598,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2 auswählen" @@ -10606,7 +10606,7 @@ msgstr "Slot %1 - %2 auswählen" msgid "Select State" msgstr "Spielstand auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Spielstand-Slot auswählen" @@ -10673,7 +10673,7 @@ msgstr "Verzeichnis auswählen" msgid "Select a File" msgstr "Datei auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10681,7 +10681,7 @@ msgstr "" msgid "Select a Game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SD-Kartenabbild auswählen" @@ -10693,7 +10693,7 @@ msgstr "" msgid "Select a game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Wähle einen Titel zum Installieren in den NAND aus." @@ -10701,7 +10701,7 @@ msgstr "Wähle einen Titel zum Installieren in den NAND aus." msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Wählen Sie die RSO-Moduladresse aus:" @@ -10718,7 +10718,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Wähle die Schlüsseldateien (OTP/SEEPROM Dump)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Wii-Spielstand auswählen" @@ -10742,7 +10742,7 @@ msgstr "Ausgewähltes Controller-Profil existiert nicht" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Das gewählte Spiel existiert nicht in der Spieleliste!" @@ -10768,7 +10768,7 @@ msgstr "" "Wählt ein Anzeigegerät aus.

Im Zweifel, wähle das " "Erste." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10806,7 +10806,7 @@ msgstr "" "
Passiv ist eine andere Art von 3D, die von einigen Fernsehern verwendet " "wird.

Im Zweifel Aus auswählen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10828,7 +10828,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10842,7 +10842,7 @@ msgstr "" msgid "Send" msgstr "Senden" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Position der Sensorleiste:" @@ -10909,7 +10909,7 @@ msgstr "Symbol-Endadresse festlegen" msgid "Set symbol size (%1):" msgstr "Symbolgröße festlegen (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10919,7 +10919,7 @@ msgstr "" "Spiele.\n" "Funktioniert nicht bei allen Spielen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Stellt die Wii Systemsprache ein." @@ -10931,7 +10931,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10950,7 +10950,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10964,7 +10964,7 @@ msgstr "SetupWiiMem: setting.txt kann nicht erstellt werden" msgid "Severity" msgstr "Schweregrad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Shader-Kompilierung" @@ -10986,16 +10986,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen-Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "&Log anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "&Werkzeugleiste anzeigen" @@ -11003,11 +11003,11 @@ msgstr "&Werkzeugleiste anzeigen" msgid "Show Active Title in Window Title" msgstr "Aktiven Titel in Fenstertitel anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Alles anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Australien anzeigen" @@ -11020,7 +11020,7 @@ msgstr "Zeige momentanes Spiel auf Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL anzeigen" @@ -11029,27 +11029,27 @@ msgstr "ELF/DOL anzeigen" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Bildzähler anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Frankreich anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "GameCube anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Deutschland anzeigen" @@ -11061,23 +11061,23 @@ msgstr "Golf-Modus-Überlagerung anzeigen" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Eingabebildschirm anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Italien anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "JPN anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Korea anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Lag-Zähler anzeigen" @@ -11085,19 +11085,19 @@ msgstr "Lag-Zähler anzeigen" msgid "Show Language:" msgstr "Anzeigesprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Protokoll&konfiguration anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "NetPlay-Nachrichten anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay-Ping anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Niederlande anzeigen" @@ -11105,7 +11105,7 @@ msgstr "Niederlande anzeigen" msgid "Show On-Screen Display Messages" msgstr "Bildschirmnachrichten zeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL anzeigen" @@ -11114,27 +11114,27 @@ msgstr "PAL anzeigen" msgid "Show PC" msgstr "PC anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Plattformen anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Regionen anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Russland anzeigen" @@ -11142,51 +11142,51 @@ msgstr "Russland anzeigen" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Spanien anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Statistiken anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Systemuhr anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Taiwan anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "USA anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Unbekannte anzeigen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Welt anzeigen" @@ -11199,7 +11199,7 @@ msgid "Show in Code" msgstr "Im Code anzeigen" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Im Speicher anzeigen" @@ -11227,7 +11227,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11236,7 +11236,7 @@ msgstr "" "Desynchronisierungswarnungen an.

Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11275,28 +11275,28 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11314,13 +11314,13 @@ msgstr "" "Zeigt beim Spielen mit NetPlay den maximalen Ping eines Spielers an." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11344,7 +11344,7 @@ msgstr "Seitwärts umschalten" msgid "Sideways Wii Remote" msgstr "Wiimote seitwärts" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Signaturendatenbank" @@ -11368,7 +11368,7 @@ msgid "Signed Integer" msgstr "Signiertes Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinesisch (Vereinfacht)" @@ -11385,7 +11385,7 @@ msgstr "Sechs Achsen" msgid "Size" msgstr "Größe" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11397,7 +11397,7 @@ msgstr "" msgid "Skip" msgstr "Überspringen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11523,7 +11523,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Alphabetisch sortieren" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Klang:" @@ -11537,7 +11537,7 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanisch" @@ -11545,11 +11545,11 @@ msgstr "Spanisch" msgid "Speaker Pan" msgstr "Lautsprecherregler" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Lautsprecher-Lautstärke" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11557,7 +11557,7 @@ msgstr "" msgid "Specific" msgstr "Spezifisch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11599,7 +11599,7 @@ msgstr "Standard-Controller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "&NetPlay starten..." @@ -11608,11 +11608,11 @@ msgstr "&NetPlay starten..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Aufzeichnung der Eingabe starten" @@ -11620,7 +11620,7 @@ msgstr "&Aufzeichnung der Eingabe starten" msgid "Start Recording" msgstr "Aufnahme starten" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Im Vollbildmodus starten" @@ -11632,7 +11632,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Spiel gestartet" @@ -11692,7 +11692,7 @@ msgstr "Schritt erfolgreich!" msgid "Stepping" msgstr "Schrittweite" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11721,12 +11721,12 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Wiedergabe/Aufzeichnung der Eingabe stoppen" @@ -11772,7 +11772,7 @@ msgstr "" "Texturen) ablegen

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "An Fenstergröße anpassen" @@ -11811,8 +11811,8 @@ msgstr "Eingabestift" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Erfolg" @@ -11839,7 +11839,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Spielstände wurden erfolgreich exportiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Zertifikate aus NAND erfolgreich extrahiert" @@ -11851,12 +11851,12 @@ msgstr "Datei erfolgreich extrahiert." msgid "Successfully extracted system data." msgstr "Systemdaten erfolgreich extrahiert." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Spielstand wurde erfolgreich importiert." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Der Titel wurde erfolgreich in den NAND installiert." @@ -11879,12 +11879,12 @@ msgstr "Unterstützung" msgid "Supported file formats" msgstr "Unterstützte Dateiformate" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Unterstützt SD und SDHC. Standardgröße ist 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -11945,7 +11945,7 @@ msgstr "Symbolname:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symbole" @@ -11973,7 +11973,7 @@ msgstr "" "Synchronisiert die GPU- und CPU-Threads, um zufällige Abstürze im Doppelkern-" "Modus zu vermeiden. (EIN = Kompatibel, AUS = Schnell)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11992,11 +11992,11 @@ msgid "Synchronizing save data..." msgstr "Synchronisiere Spielstände..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemsprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS-Eingabe" @@ -12009,7 +12009,7 @@ msgstr "TAS-Werkzeuge" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Tags" @@ -12027,7 +12027,7 @@ msgstr "Schweif" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Screenshot erstellen" @@ -12066,7 +12066,7 @@ msgstr "Texturen-Cache" msgid "Texture Cache Accuracy" msgstr "Texturen-Cache-Genauigkeit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texturdump" @@ -12078,7 +12078,7 @@ msgstr "Texturfilterung" msgid "Texture Filtering:" msgstr "Texturfilterung:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Texturenformat-Überlagerung" @@ -12117,7 +12117,7 @@ msgstr "Die IPL-Datei ist kein bekannter guter Dump. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Die Partitionen der Meisterstücke fehlen." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12125,7 +12125,7 @@ msgstr "" "Das NAND konnte nicht repariert werden. Es wird empfohlen, deine aktuellen " "Daten zu sichern und mit einem frischen NAND neu anzufangen." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "Das NAND wurde repariert." @@ -12140,7 +12140,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12476,7 +12476,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Die ausgewählte Datei \"{0}\" existiert nicht" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12537,7 +12537,7 @@ msgstr "Die Updatepartition fehlt." msgid "The update partition is not at its normal position." msgstr "Die Update-Partition ist nicht in der normalen Position." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12918,7 +12918,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titel" @@ -12927,12 +12927,12 @@ msgid "To" msgstr "Zu" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Zu:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Vollbildmodus umschalten" @@ -13021,7 +13021,7 @@ msgstr "" msgid "Toolbar" msgstr "Werkzeugleiste" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Oben" @@ -13072,7 +13072,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinesisch (Traditionell)" @@ -13092,8 +13092,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Übergangsfehler" @@ -13176,7 +13176,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB-Whitelist-Fehler" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13187,7 +13187,7 @@ msgstr "" "Low-End-Hardware.

Im Zweifel diesen Modus wählen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13199,7 +13199,7 @@ msgstr "" "

Nur benutzen, falls Hybrid Ubershader ruckeln und " "du eine sehr leistungsfähige GPU hast." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13213,7 +13213,7 @@ msgstr "" "Kompilierung beseitigt, während die Leistung nur minimal beeinflusst wird. " "Die Ergebnisse hängen jedoch vom Verhalten des Grafiktreibers ab." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Konnte RSO-Module nicht automatisch erkennen" @@ -13283,11 +13283,11 @@ msgstr "Unkomprimierte GC/Wii-Abbilder (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Spielstand Laden rückgängig machen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Spielstand Speichern rückgängig machen" @@ -13308,7 +13308,7 @@ msgstr "" "Titels aus dem NAND entfernt, ohne die gespeicherten Daten zu löschen. " "Fortsetzen?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Vereinigte Staaten" @@ -13406,7 +13406,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Unbekannt(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Unbekannt(%1).bin" @@ -13422,7 +13422,7 @@ msgstr "ROM entladen" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13465,7 +13465,7 @@ msgid "Up" msgstr "Hoch" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Update" @@ -13538,7 +13538,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Eingebaute Datenbank von Spielnamen verwenden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Benutze verlustfreien Codec (FFV1)" @@ -13546,7 +13546,7 @@ msgstr "Benutze verlustfreien Codec (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60-Modus (EuRGB60) verwenden" @@ -13560,7 +13560,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13634,7 +13634,7 @@ msgstr "" "GPU einen ordentlichen Geschwindigkeitsvorteil bringen." "

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13644,7 +13644,7 @@ msgstr "" "stattdessen ein Renderfenster erstellt.

Im Zweifel " "deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13944,7 +13944,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Warnungen" @@ -14065,7 +14065,7 @@ msgstr "Westeuropäisch (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14077,7 +14077,7 @@ msgstr "" "\"Willkürliche Mipmaps erkennen\" in \"Verbesserungen\" aktiviert ist." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14089,7 +14089,7 @@ msgstr "" "\"Willkürliche Mipmaps erkennen\" in \"Verbesserungen\" aktiviert ist." "

Im Zweifel aktiviert lassen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Freigegebene USB-Durchleitungsgeräte" @@ -14139,7 +14139,7 @@ msgstr "Wiimote-Tasten" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wiimote-Einstellungen" @@ -14167,7 +14167,7 @@ msgstr "Wii und Wiimote" msgid "Wii data is not public yet" msgstr "Wii-Daten sind noch nicht öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-Spielstände (*.bin);;Alle Dateien (*)" @@ -14175,7 +14175,7 @@ msgstr "Wii-Spielstände (*.bin);;Alle Dateien (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools MEGA-Signaturdatei" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -14206,7 +14206,7 @@ msgstr "Weltweit" msgid "Write" msgstr "Schreiben" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -14255,11 +14255,11 @@ msgstr "Falsche Region" msgid "Wrong revision" msgstr "Falsche Revision" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -14310,14 +14310,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja zu &allen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14434,7 +14434,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index 9e19a45dab..0af7e40a01 100644 --- a/Languages/po/dolphin-emu.pot +++ b/Languages/po/dolphin-emu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -76,7 +76,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -130,7 +130,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -162,18 +162,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -181,11 +181,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -197,8 +197,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -215,7 +215,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -323,11 +323,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -344,11 +344,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -364,11 +364,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -376,15 +376,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -392,7 +392,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -400,7 +400,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -423,13 +423,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -443,11 +443,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "" @@ -468,40 +468,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "" @@ -521,7 +521,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -533,7 +533,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "" @@ -545,11 +545,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -559,11 +559,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -571,11 +571,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -583,7 +583,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -592,23 +592,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "" @@ -616,7 +616,7 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -624,7 +624,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "" @@ -642,11 +642,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -654,7 +654,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -662,7 +662,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -670,7 +670,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "" @@ -678,7 +678,7 @@ msgstr "" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -686,7 +686,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "" @@ -696,21 +696,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -722,11 +722,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -774,7 +774,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -840,7 +840,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -924,7 +924,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1025,7 +1025,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1129,7 +1129,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1171,8 +1171,8 @@ msgstr "" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1252,7 +1252,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1272,7 +1272,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "" @@ -1329,7 +1329,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "" @@ -1343,7 +1343,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1537,7 +1537,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1577,7 +1577,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "" @@ -1603,15 +1603,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1629,7 +1629,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1661,16 +1661,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "" @@ -1711,11 +1711,11 @@ msgstr "" msgid "Audio" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1731,7 +1731,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "" @@ -1752,7 +1752,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1760,15 +1760,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1816,19 +1816,19 @@ msgstr "" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1871,7 +1871,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "" @@ -1895,7 +1895,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "" @@ -1947,11 +1947,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1961,7 +1961,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -1997,7 +1997,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2009,11 +2009,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "" @@ -2190,20 +2190,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "" @@ -2252,7 +2252,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2276,7 +2276,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2356,11 +2356,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2445,7 +2445,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "" @@ -2467,7 +2467,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2485,7 +2485,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2493,7 +2493,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2505,7 +2505,7 @@ msgstr "" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "" @@ -2513,7 +2513,7 @@ msgstr "" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2551,11 +2551,11 @@ msgstr "" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2586,7 +2586,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "" @@ -2594,7 +2594,7 @@ msgstr "" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2615,7 +2615,7 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2659,7 +2659,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2686,7 +2686,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2696,7 +2696,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2835,7 +2835,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2843,7 +2843,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2854,15 +2854,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2882,7 +2882,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3010,8 +3010,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3019,9 +3019,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3029,9 +3029,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3051,8 +3051,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3242,7 +3242,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3258,13 +3258,13 @@ msgstr "" msgid "Country:" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3295,11 +3295,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3311,18 +3311,18 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3342,11 +3342,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3354,15 +3354,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3405,7 +3405,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3413,15 +3413,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3492,7 +3492,7 @@ msgstr "" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3502,7 +3502,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3549,7 +3549,7 @@ msgstr "" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3565,7 +3565,7 @@ msgstr "" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3573,7 +3573,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3619,7 +3619,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3668,7 +3668,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3698,7 +3698,7 @@ msgstr "" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3706,7 +3706,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3730,7 +3730,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3738,11 +3738,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3750,11 +3750,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3769,7 +3769,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4131,11 +4131,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "" @@ -4159,7 +4159,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "" @@ -4233,7 +4233,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "" @@ -4241,7 +4241,7 @@ msgstr "" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4259,7 +4259,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4281,16 +4281,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4338,7 +4338,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4364,7 +4364,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4377,7 +4377,7 @@ msgstr "" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "" @@ -4386,11 +4386,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4410,11 +4410,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "" @@ -4470,7 +4470,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4501,7 +4501,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4509,7 +4509,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4526,7 +4526,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4552,7 +4552,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4560,7 +4560,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4568,7 +4568,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4597,7 +4597,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "" @@ -4614,7 +4614,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4638,7 +4638,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4677,9 +4677,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4692,24 +4692,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4739,7 +4739,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4844,12 +4844,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4893,11 +4893,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "" @@ -4912,7 +4912,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "" @@ -4940,7 +4940,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4968,7 +4968,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5006,7 +5006,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "" @@ -5024,7 +5024,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5044,7 +5044,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5065,7 +5065,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5119,7 +5119,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5146,18 +5146,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5184,7 +5184,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5194,8 +5194,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5207,7 +5207,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5235,11 +5235,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5287,11 +5287,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5350,11 +5350,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5415,27 +5415,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5486,7 +5486,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5522,7 +5522,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5536,7 +5536,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5544,24 +5544,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5679,7 +5679,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "" @@ -5687,7 +5687,7 @@ msgstr "" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "" @@ -5719,11 +5719,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5797,11 +5797,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "" @@ -5809,7 +5809,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5860,7 +5860,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "" @@ -5879,8 +5879,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5936,11 +5936,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6084,7 +6084,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6097,7 +6097,7 @@ msgstr "" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6205,7 +6205,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6237,13 +6237,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "" @@ -6319,7 +6319,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6401,7 +6401,7 @@ msgstr "" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6425,11 +6425,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6468,11 +6468,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6498,7 +6498,7 @@ msgstr "" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6556,7 +6556,7 @@ msgid "IR" msgstr "" #. 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:363 msgid "IR Sensitivity:" msgstr "" @@ -6620,14 +6620,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6671,7 +6671,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6680,7 +6680,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6695,7 +6695,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6796,16 +6796,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6825,8 +6825,8 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "" @@ -6839,11 +6839,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "" @@ -6869,7 +6869,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "" @@ -6886,7 +6886,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6909,7 +6909,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -6995,7 +6995,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7020,7 +7020,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7045,7 +7045,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7081,13 +7081,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "" @@ -7100,11 +7100,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7112,47 +7112,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7164,11 +7164,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7179,16 +7179,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "" @@ -7248,12 +7248,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "" @@ -7300,23 +7300,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7324,7 +7324,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7411,11 +7411,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7427,15 +7427,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7447,7 +7447,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" @@ -7455,7 +7455,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7565,19 +7565,19 @@ msgstr "" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7589,35 +7589,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7631,7 +7631,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7657,7 +7657,7 @@ msgstr "" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7665,7 +7665,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7681,27 +7681,27 @@ msgstr "" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7761,7 +7761,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7778,12 +7778,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7799,11 +7799,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7812,7 +7812,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7833,7 +7833,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7884,11 +7884,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "" @@ -7904,7 +7904,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7924,7 +7924,7 @@ msgstr "" msgid "Modifier" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7940,8 +7940,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7949,7 +7949,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8007,10 +8007,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8019,7 +8019,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8046,7 +8046,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8256,7 +8256,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8264,7 +8264,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8277,7 +8277,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8321,8 +8321,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8471,7 +8471,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "" @@ -8496,7 +8496,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8518,7 +8518,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "" @@ -8526,13 +8526,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8549,7 +8549,7 @@ msgstr "" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8558,7 +8558,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8648,7 +8648,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8690,11 +8690,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8708,11 +8708,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8800,7 +8800,7 @@ msgstr "" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8845,7 +8845,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8853,15 +8853,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8879,7 +8879,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8896,7 +8896,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8904,7 +8904,7 @@ msgstr "" msgid "Play" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8912,11 +8912,11 @@ msgstr "" msgid "Play Recording" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "" @@ -8924,27 +8924,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8966,7 +8966,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8999,7 +8999,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9015,20 +9015,20 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9063,7 +9063,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9132,11 +9132,11 @@ msgstr "" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9150,7 +9150,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9174,7 +9174,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9206,11 +9206,11 @@ msgstr "" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9235,7 +9235,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9243,7 +9243,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9302,7 +9302,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "" @@ -9314,11 +9314,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9382,7 +9382,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9415,7 +9415,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "" @@ -9452,11 +9452,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9489,7 +9489,7 @@ msgstr "" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9521,7 +9521,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9700,19 +9700,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9720,7 +9720,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9755,11 +9755,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "" @@ -9791,11 +9791,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9813,11 +9813,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9829,7 +9829,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9879,23 +9879,23 @@ msgstr "" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9915,11 +9915,11 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9930,11 +9930,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9942,11 +9942,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9976,7 +9976,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "" @@ -10003,7 +10003,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10011,7 +10011,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10056,11 +10056,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10100,7 +10100,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10108,7 +10108,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10175,7 +10175,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10183,7 +10183,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10195,7 +10195,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10203,7 +10203,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10220,7 +10220,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "" @@ -10244,7 +10244,7 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10268,7 +10268,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10298,7 +10298,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10320,7 +10320,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10334,7 +10334,7 @@ msgstr "" msgid "Send" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "" @@ -10399,14 +10399,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10418,7 +10418,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10437,7 +10437,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10451,7 +10451,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10473,16 +10473,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "" @@ -10490,11 +10490,11 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10507,7 +10507,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10516,27 +10516,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10548,23 +10548,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10572,19 +10572,19 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10592,7 +10592,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "" @@ -10601,27 +10601,27 @@ msgstr "" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10629,51 +10629,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10686,7 +10686,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10714,13 +10714,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10759,47 +10759,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10821,7 +10821,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10845,7 +10845,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "" @@ -10862,7 +10862,7 @@ msgstr "" msgid "Size" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10872,7 +10872,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10989,7 +10989,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11003,7 +11003,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "" @@ -11011,11 +11011,11 @@ msgstr "" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11023,7 +11023,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11065,7 +11065,7 @@ msgstr "" msgid "Start" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11074,11 +11074,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11086,7 +11086,7 @@ msgstr "" msgid "Start Recording" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11098,7 +11098,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11158,7 +11158,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11187,12 +11187,12 @@ msgid "Stick" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11228,7 +11228,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "" @@ -11267,8 +11267,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11295,7 +11295,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11307,12 +11307,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11335,12 +11335,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11398,7 +11398,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11424,7 +11424,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11443,11 +11443,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "" @@ -11460,7 +11460,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11478,7 +11478,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "" @@ -11517,7 +11517,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11529,7 +11529,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11566,13 +11566,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11587,7 +11587,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11881,7 +11881,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11939,7 +11939,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12257,7 +12257,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "" @@ -12266,12 +12266,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12360,7 +12360,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "" @@ -12411,7 +12411,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "" @@ -12431,8 +12431,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12513,14 +12513,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12528,7 +12528,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12537,7 +12537,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12600,11 +12600,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "" @@ -12622,7 +12622,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12714,7 +12714,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12730,7 +12730,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12773,7 +12773,7 @@ msgid "Up" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "" @@ -12844,7 +12844,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12852,7 +12852,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12866,7 +12866,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12934,14 +12934,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13204,7 +13204,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "" @@ -13293,7 +13293,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13301,7 +13301,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13309,7 +13309,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13359,7 +13359,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13387,7 +13387,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13395,7 +13395,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13426,7 +13426,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13475,11 +13475,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13530,14 +13530,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13634,7 +13634,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/el.po b/Languages/po/el.po index 15bc1b1d39..cc46a97438 100644 --- a/Languages/po/el.po +++ b/Languages/po/el.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: MRCYO Dev, 2023\n" "Language-Team: Greek (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -87,7 +87,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -141,7 +141,7 @@ msgstr "%1 (αργή)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -173,18 +173,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 έχει φύγει" @@ -192,11 +192,11 @@ msgstr "%1 έχει φύγει" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -208,8 +208,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -226,7 +226,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -334,11 +334,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Περί" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -355,11 +355,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Ρυθμίσεις Ήχου" @@ -375,11 +375,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Σημεία Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Ιχνηλάτης Σφαλμάτων" @@ -387,15 +387,15 @@ msgstr "&Ιχνηλάτης Σφαλμάτων" msgid "&Cancel" msgstr "&Ακύρωση" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Έλεγχος για Ενημερώσεις..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -411,7 +411,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Ρυθμίσεις Χειριστηρίων" @@ -434,13 +434,13 @@ msgstr "&Διαγραφή" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -454,11 +454,11 @@ msgstr "" msgid "&Edit..." msgstr "&Επεξεργασία..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Εξαγωγή Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Εξομοίωση" @@ -479,40 +479,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Αρχείο" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Γραμματοσειρά..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Προώθηση ανά Καρέ" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Ρυθμίσεις Γραφικών" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Βοήθεια" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Ρυθμίσεις Πλήκτρων Συντόμευσης" @@ -532,7 +532,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -544,7 +544,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -556,11 +556,11 @@ msgstr "&Γλώσσα:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Φόρτωση Σημείου Αποθήκευσης" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -570,11 +570,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -582,11 +582,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Μνήμη" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Ταινία" @@ -594,7 +594,7 @@ msgstr "&Ταινία" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Δίκτυο" @@ -603,23 +603,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Άνοιγμα..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Ρυθμίσεις" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Παύση" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Αναπαραγωγή" @@ -627,7 +627,7 @@ msgstr "&Αναπαραγωγή" msgid "&Properties" msgstr "&Ιδιότητες" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Μόνο Για Ανάγνωση" @@ -635,7 +635,7 @@ msgstr "&Μόνο Για Ανάγνωση" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Καταχωρητές" @@ -653,11 +653,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Επανεκκίνηση" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -681,7 +681,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "&Όριο Ταχύτητας:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Διακοπή" @@ -689,7 +689,7 @@ msgstr "&Διακοπή" msgid "&Theme:" msgstr "&Θέμα:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -697,7 +697,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Εργαλεία" @@ -707,21 +707,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Ιστοσελίδα" @@ -733,11 +733,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ναι" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -785,7 +785,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -851,7 +851,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -935,7 +935,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocks)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1036,7 +1036,7 @@ msgstr "<Γλώσσα Συστήματος>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1143,7 +1143,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Κωδικός AR" @@ -1185,8 +1185,8 @@ msgstr "Ακρίβεια:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1266,7 +1266,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1278,7 +1278,7 @@ msgstr "" msgid "Active threads" msgstr "Ενεργά νήματα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Προσαρμογέας Εντοπίστηκε" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Προσαρμογέας:" @@ -1343,7 +1343,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Προσθήκη..." @@ -1357,7 +1357,7 @@ msgstr "Προσθήκη..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Διεύθυνση" @@ -1551,7 +1551,7 @@ msgstr "Να Επιτρέπονται Ασύμφωνες Ρυθμίσεις Πε msgid "Allow Usage Statistics Reporting" msgstr "Άδεια Μετάδοσης Στατιστικών Χρήσης " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1591,7 +1591,7 @@ msgstr "" msgid "Anaglyph" msgstr "Ανάγλυφο" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Ανάλυση" @@ -1617,15 +1617,15 @@ msgstr "Εξομάλυνση Ορίων:" msgid "Any Region" msgstr "Οποιαδήποτε Περιοχή" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1643,7 +1643,7 @@ msgstr "Apploader Ημερομηνία:" msgid "Apply" msgstr "Εφαρμογή" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1675,16 +1675,16 @@ msgstr "Είστε σίγουροι;" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Αναλογία Οθόνης" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Αναλογία Οθόνης:" @@ -1725,11 +1725,11 @@ msgstr "Σύνδεση MotionPlus" msgid "Audio" msgstr "Ήχος" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Backend Ήχου:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Ρυθμίσεις Ελαστικότητας Ήχου" @@ -1745,7 +1745,7 @@ msgstr "Συγγραφέας" msgid "Authors" msgstr "Συγγραφείς" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Αυτόματα" @@ -1766,7 +1766,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρου" @@ -1774,15 +1774,15 @@ msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρο msgid "Auto-Hide" msgstr "Αυτόματη Απόκρυψη" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1830,19 +1830,19 @@ msgstr "BP Καταχωρητές" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Backend Ρυθμίσεις" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1885,7 +1885,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Εικονίδιο" @@ -1909,7 +1909,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Βασικές" @@ -1961,11 +1961,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1975,7 +1975,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2011,7 +2011,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2023,11 +2023,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Πλήρης Οθόνη Χωρίς Περιθώρια " -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Βάση" @@ -2204,20 +2204,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Μέγεθος Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2266,7 +2266,7 @@ msgstr "" msgid "C Stick" msgstr "Stick Κάμερας " -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2290,7 +2290,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (πιο αργή)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2370,11 +2370,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Άκυρο" @@ -2459,7 +2459,7 @@ msgstr "" msgid "Change &Disc" msgstr "Αλλαγή &Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Αλλαγή &Δίσκου..." @@ -2481,7 +2481,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2499,7 +2499,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Η αλλαγή cheats θα τεθεί σε ισχύ μόνο όταν επανεκκινηθεί το παιχνίδι." @@ -2507,7 +2507,7 @@ msgstr "Η αλλαγή cheats θα τεθεί σε ισχύ μόνο όταν msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2519,7 +2519,7 @@ msgstr "Συνομιλία" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Αναζήτηση Cheat" @@ -2527,7 +2527,7 @@ msgstr "Αναζήτηση Cheat" msgid "Cheats Manager" msgstr "Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Έλεγχος NAND..." @@ -2565,11 +2565,11 @@ msgstr "Επιλέξτε ένα αρχείο για άνοιγμα" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2600,7 +2600,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Καθάρισ." @@ -2608,7 +2608,7 @@ msgstr "Καθάρισ." msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2629,7 +2629,7 @@ msgstr "" msgid "Close" msgstr "Κλείσιμο" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ρυ&θμίσεις" @@ -2673,7 +2673,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2700,7 +2700,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2710,7 +2710,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Συμπίεση" @@ -2825,7 +2825,7 @@ msgstr "Ρυθμίσεις" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Ρύθμιση Dolphin" @@ -2849,7 +2849,7 @@ msgstr "" msgid "Confirm" msgstr "Επιβεβαίωση" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Επιβεβαίωση αλλαγής backend " @@ -2857,7 +2857,7 @@ msgstr "Επιβεβαίωση αλλαγής backend " msgid "Confirm on Stop" msgstr "Επιβεβαίωση Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2868,15 +2868,15 @@ msgstr "Επιβεβαίωση" msgid "Connect" msgstr "Σύνδεση" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Σύνδεση Σανίδας Ισορροπίας" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Σύνδεση Πληκτρολογίου USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Σύνδεση Wii Remote %1" @@ -2896,7 +2896,7 @@ msgstr "Σύνδεση Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Σύνδεση Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Σύνδεση Wii Remotes" @@ -3024,8 +3024,8 @@ msgstr "" msgid "Convergence:" msgstr "Σύγκλιση:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3033,9 +3033,9 @@ msgstr "" msgid "Convert" msgstr "Μετατροπή" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3043,9 +3043,9 @@ msgstr "" msgid "Convert File..." msgstr "Μετατροπή Αρχείου..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3065,8 +3065,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Μετατροπή..." @@ -3258,7 +3258,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3274,13 +3274,13 @@ msgstr "Αδυναμία ανάγνωσης αρχείου." msgid "Country:" msgstr "Χώρα:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3311,11 +3311,11 @@ msgstr "Δημιουργός:" msgid "Critical" msgstr "Κρίσιμο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Κόψιμο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3327,18 +3327,18 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Τρέχουσα Περιοχή" @@ -3358,11 +3358,11 @@ msgstr "Τρέχων παιχνίδι" msgid "Current thread" msgstr "Τρέχων νήμα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3370,15 +3370,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Μηχανή Εξομοίωσης DSP" @@ -3429,15 +3429,15 @@ msgstr "Μηχανή Εξομοίωσης DSP" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3508,7 +3508,7 @@ msgstr "Νεκρή Ζώνη" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3518,7 +3518,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Δεκαδικός" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Ποιότητα Αποκωδικοποίησης:" @@ -3565,7 +3565,7 @@ msgstr "Προεπιλ." msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Προεπιλεγμένη Συσκευή" @@ -3581,7 +3581,7 @@ msgstr "Προεπιλεγμένο ISO:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3589,7 +3589,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3635,7 +3635,7 @@ msgstr "Βάθος:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Περιγραφή" @@ -3684,7 +3684,7 @@ msgstr "" msgid "Detect" msgstr "Ανίχνευση" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3714,7 +3714,7 @@ msgstr "Ρυθμίσεις Συσκευής" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Συσκευή:" @@ -3722,7 +3722,7 @@ msgstr "Συσκευή:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" "Σκοτεινιάζει την οθόνη μετά από έλλειψη δραστηριότητας για πέντε λεπτά." @@ -3747,7 +3747,7 @@ msgstr "Απενεργοποίηση Bounding Box" msgid "Disable Copy Filter" msgstr "Απενεργοποίηση Φίλτρου Αντιγραφής " -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" @@ -3755,11 +3755,11 @@ msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" msgid "Disable Emulation Speed Limit" msgstr "Απενεργοποίηση Ορίου Ταχύτητας Εξομοίωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3767,11 +3767,11 @@ msgstr "" msgid "Disable Fog" msgstr "Απενεργοποίηση Ομίχλης" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Απενεργοποίηση JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3786,7 +3786,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4153,11 +4153,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Ολλανδικά" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "Έ&ξοδος" @@ -4181,7 +4181,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Ενημερώσεις Μνήμης Νωρίς" @@ -4255,7 +4255,7 @@ msgstr "" msgid "Empty" msgstr "Κενή" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Το νήμα εξομοίωσης εκτελείται ήδη" @@ -4263,7 +4263,7 @@ msgstr "Το νήμα εξομοίωσης εκτελείται ήδη" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4281,7 +4281,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4303,16 +4303,16 @@ msgstr "Ταχύτητα Εξομοίωσης" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Ενεργοποίηση" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Ενεργοποίηση Ελαστικότητας Ήχου" @@ -4360,7 +4360,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Ενεργοποίηση FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4386,7 +4386,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4399,7 +4399,7 @@ msgstr "Ενεργοποίηση MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Ενεργοποίηση Προοδευτικής Σάρωσης" @@ -4408,11 +4408,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Ενεργοποίηση Δόνησης" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ενεργοποίηση Προφύλαξης Οθόνης" @@ -4432,11 +4432,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ενεργοποίηση Wireframe" @@ -4492,7 +4492,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4525,7 +4525,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4533,7 +4533,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4550,7 +4550,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4578,7 +4578,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4586,7 +4586,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4594,7 +4594,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4623,7 +4623,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Αγγλικά" @@ -4640,7 +4640,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4664,7 +4664,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4703,9 +4703,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4718,24 +4718,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4765,7 +4765,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4872,12 +4872,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Ευρώπη" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4921,11 +4921,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Πειραματικός" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Εξαγωγή Όλων Των Αποθηκεύσεων Wii" @@ -4940,7 +4940,7 @@ msgstr "Η Εξαγωγή Απέτυχε" msgid "Export Recording" msgstr "Εξαγωγή Εγγραφής" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Εξαγωγή Εγγραφής..." @@ -4968,7 +4968,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4996,7 +4996,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5034,7 +5034,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Αναπαραγωγή FIFO" @@ -5052,7 +5052,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5072,7 +5072,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5093,7 +5093,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5147,7 +5147,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5174,18 +5174,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5212,7 +5212,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5222,8 +5222,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5235,7 +5235,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5263,11 +5263,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5315,11 +5315,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5378,11 +5378,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5443,27 +5443,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5514,7 +5514,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Αποτυχία" @@ -5550,7 +5550,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5564,7 +5564,7 @@ msgstr "Πληροφορίες Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5572,24 +5572,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Πληροφορίες Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Όνομα Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Διαδρομή Αρχείου" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Μέγεθος Αρχείου" @@ -5707,7 +5707,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Επιβολή 16:9" @@ -5715,7 +5715,7 @@ msgstr "Επιβολή 16:9" msgid "Force 24-Bit Color" msgstr "Επιβολή Χρώματος 24-Bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Επιβολή 4:3" @@ -5747,11 +5747,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5825,11 +5825,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Εύρος Καρέ" @@ -5837,7 +5837,7 @@ msgstr "Εύρος Καρέ" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Καρέ για Εγγραφή:" @@ -5888,7 +5888,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Γαλλικά" @@ -5907,8 +5907,8 @@ msgid "From" msgstr "Από" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Από:" @@ -5964,11 +5964,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6112,7 +6112,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID Παιχνιδιού" @@ -6125,7 +6125,7 @@ msgstr "ID Παιχνιδιού:" msgid "Game Status" msgstr "Κατάσταση Παιχνιδιού" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6233,7 +6233,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Κωδικοί Gecko" @@ -6265,13 +6265,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Γερμανικά" @@ -6347,7 +6347,7 @@ msgstr "Αριστερό Πράσινο" msgid "Green Right" msgstr "Δεξί Πράσινο" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Προβολή Πλέγματος" @@ -6429,7 +6429,7 @@ msgstr "Απόκρυψη" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6453,11 +6453,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Μέγιστη" @@ -6496,11 +6496,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6526,7 +6526,7 @@ msgstr "Πλήκτρα Συντόμευσης" msgid "Hotkeys Require Window Focus" msgstr "Τα Πλήκτρα Συντόμευσης Απαιτούν Εστίαση Παραθύρου" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6584,7 +6584,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Ευαισθησία IR:" @@ -6648,14 +6648,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6699,7 +6699,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6708,7 +6708,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6723,7 +6723,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6824,16 +6824,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6853,8 +6853,8 @@ msgstr "Πληροφορίες" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Πληροφορίες" @@ -6867,11 +6867,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Είσοδος" @@ -6897,7 +6897,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Εισαγωγή Κάρτας SD" @@ -6914,7 +6914,7 @@ msgstr "" msgid "Install Update" msgstr "Εγκατάσταση Ενημέρωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Εγκατάσταση WAD..." @@ -6937,7 +6937,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7023,7 +7023,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (πιο αργή απ' όλες)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7048,7 +7048,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7073,7 +7073,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7109,13 +7109,13 @@ msgstr "Μη έγκυρο string αναζήτησης (μόνο ζυγά μήκ msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Ιταλικά" @@ -7128,11 +7128,11 @@ msgstr "Ιταλία" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7140,47 +7140,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7192,11 +7192,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7207,16 +7207,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Ιαπωνία" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Ιαπωνικά" @@ -7276,12 +7276,12 @@ msgstr "" msgid "Kick Player" msgstr "Διώξιμο Παίκτη" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Κορέα" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Κορεάτικα" @@ -7328,23 +7328,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Αδράνεια:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7352,7 +7352,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7442,11 +7442,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Λίστα Στηλών" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Προβολή Λίστας" @@ -7458,15 +7458,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Φόρτωσ." -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7478,7 +7478,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Φόρτωση Τροποποιημένων Υφών" @@ -7486,7 +7486,7 @@ msgstr "Φόρτωση Τροποποιημένων Υφών" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Φόρτωση Κυρίως Μενού GameCube" @@ -7596,19 +7596,19 @@ msgstr "Φόρτωση Σημείου Αποθήκευσης 8" msgid "Load State Slot 9" msgstr "Φόρτωση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7620,35 +7620,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Φόρτωση..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7662,7 +7662,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7688,7 +7688,7 @@ msgstr "Ρυθμίσεις Καταγραφής" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7696,7 +7696,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Καταγραφή σε Αρχείο Χρόνου Απόδοσης" @@ -7712,27 +7712,27 @@ msgstr "Έξοδοι Καταγραφής" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Ελάχιστη" @@ -7792,7 +7792,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Δημιουργός" @@ -7809,12 +7809,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Διαχείριση NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7830,11 +7830,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7843,7 +7843,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" "Μπορεί να προκαλέσει καθυστερήσεις στο Μενού του Wii και σε ορισμένα " @@ -7866,7 +7866,7 @@ msgstr "" msgid "Memory Card" msgstr "Κάρτα Μνήμης" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Διαχειριστής Καρτών Μνήμης" @@ -7917,11 +7917,11 @@ msgstr "Μικρόφωνο" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Διάφορα" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Διάφορες Ρυθμίσεις" @@ -7937,7 +7937,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7957,7 +7957,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7973,8 +7973,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7982,7 +7982,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8040,10 +8040,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Έλεγχος NAND " @@ -8052,7 +8052,7 @@ msgstr "Έλεγχος NAND " msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8079,7 +8079,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8289,7 +8289,7 @@ msgstr "Κανένα σφάλμα." msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8297,7 +8297,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8310,7 +8310,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Δεν εντοπίστηκαν προβλήματα." @@ -8354,8 +8354,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8504,7 +8504,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Εύρος Αντικειμένου" @@ -8529,7 +8529,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8551,7 +8551,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online &Εγχειρίδια " @@ -8559,13 +8559,13 @@ msgstr "Online &Εγχειρίδια " msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8582,7 +8582,7 @@ msgstr "Άνοιγμα" msgid "Open &Containing Folder" msgstr "Άνοιγμα &Περιεχόμενου Φακέλου" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8591,7 +8591,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8681,7 +8681,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8723,11 +8723,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Α&ναπαραγωγή Εγγραφής Χειρισμών..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8741,11 +8741,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8833,7 +8833,7 @@ msgstr "Παύση" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Παύση στο Τέλος της Ταινίας" @@ -8878,7 +8878,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Φωτισμός ανά Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστήματος" @@ -8886,15 +8886,15 @@ msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστή msgid "Perform System Update" msgstr "Εκτέλεση Ενημέρωσης Συστήματος" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8912,7 +8912,7 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8929,7 +8929,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Πλατφόρμα" @@ -8937,7 +8937,7 @@ msgstr "Πλατφόρμα" msgid "Play" msgstr "Αναπαραγωγή" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8945,11 +8945,11 @@ msgstr "" msgid "Play Recording" msgstr "Αναπαραγωγή Εγγραφής" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Ρυθμίσεις Αναπαραγωγής" @@ -8957,27 +8957,27 @@ msgstr "Ρυθμίσεις Αναπαραγωγής" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8999,7 +8999,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9032,7 +9032,7 @@ msgstr "Θύρα:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9048,20 +9048,20 @@ msgstr "Post-Processing Εφέ:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Προφόρτωση Τροποποιημένων Υφών" @@ -9096,7 +9096,7 @@ msgstr "" msgid "Pressure" msgstr "Πίεση" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9165,11 +9165,11 @@ msgstr "Προφίλ" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9183,7 +9183,7 @@ msgstr "" msgid "Public" msgstr "Δημόσιος" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Εκκαθάριση Μνήμης Cache Λίστας Παιχνιδιών " @@ -9207,7 +9207,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9239,11 +9239,11 @@ msgstr "R-Αναλογική" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9268,7 +9268,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9276,7 +9276,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9335,7 +9335,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Εγγραφή" @@ -9347,11 +9347,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Ρυθμίσεις Εγγραφής" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Εγγραφή..." @@ -9415,7 +9415,7 @@ msgid "Refreshing..." msgstr "Ανανέωση..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Περιοχή" @@ -9448,7 +9448,7 @@ msgstr "Υπενθύμιση Αργότερα" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Αφαίρεση" @@ -9485,11 +9485,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Αναπαραγωγή στο Κεντρικό Παράθυρο" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9522,7 +9522,7 @@ msgstr "Επανεκκίνηση" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9554,7 +9554,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9733,19 +9733,19 @@ msgstr "Ρωσία" msgid "SD Card" msgstr "SD Κάρτα" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9753,7 +9753,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9788,11 +9788,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Απ&οθήκευση Σημείου Αποθήκευσης" @@ -9824,11 +9824,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9846,11 +9846,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9862,7 +9862,7 @@ msgstr "Αποθήκευση Παλαιότερου Σημείου" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9912,23 +9912,23 @@ msgstr "Αποθήκευση Σημείου Αποθήκευσης 8" msgid "Save State Slot 9" msgstr "Αποθήκευση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9948,11 +9948,11 @@ msgstr "" msgid "Save as..." msgstr "Αποθήκευση ως..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9963,11 +9963,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9975,11 +9975,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Αποθήκευση..." @@ -10009,7 +10009,7 @@ msgstr "Στιγμιότυπο" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Αναζήτηση" @@ -10036,7 +10036,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10044,7 +10044,7 @@ msgstr "" msgid "Search games..." msgstr "Αναζήτηση παιχνιδιών..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10089,11 +10089,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10133,7 +10133,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Επιλογή Θέσης %1 - %2" @@ -10141,7 +10141,7 @@ msgstr "Επιλογή Θέσης %1 - %2" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Επιλογή Θέσης Αποθήκευσης" @@ -10208,7 +10208,7 @@ msgstr "Επιλέξτε ένα Φάκελο" msgid "Select a File" msgstr "Επιλέξτε ένα Αρχείο" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10216,7 +10216,7 @@ msgstr "" msgid "Select a Game" msgstr "Επιλέξτε ένα Παιχνίδι" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10228,7 +10228,7 @@ msgstr "" msgid "Select a game" msgstr "Επιλέξτε ένα παιχνίδι" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Επιλέξτε ένα αρχείο για εγκατάσταση στην NAND" @@ -10236,7 +10236,7 @@ msgstr "Επιλέξτε ένα αρχείο για εγκατάσταση στ msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10253,7 +10253,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Επιλέξτε αρχείο αποθήκευσης" @@ -10277,7 +10277,7 @@ msgstr "Το επιλεγμένο προφίλ χειρισμού δεν υπά #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10301,7 +10301,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10331,7 +10331,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10353,7 +10353,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10367,7 +10367,7 @@ msgstr "" msgid "Send" msgstr "Αποστολή" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Θέση Sensor Bar:" @@ -10432,7 +10432,7 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10442,7 +10442,7 @@ msgstr "" "(576i) για τα PAL παιχνίδια.\n" "Μπορεί να μην λειτουργεί για όλα τα παιχνίδια." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Ορίζει την γλώσσα συστήματος του Wii." @@ -10454,7 +10454,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10473,7 +10473,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10487,7 +10487,7 @@ msgstr "SetupWiiMemory: Αδυναμία δημιουργίας αρχείου s msgid "Severity" msgstr "Σοβαρότητα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10509,16 +10509,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Εμφάνιση Παραθύρου Κατα&γραφής " -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Εμφάνιση Γραμμής &Εργαλείων" @@ -10526,11 +10526,11 @@ msgstr "Εμφάνιση Γραμμής &Εργαλείων" msgid "Show Active Title in Window Title" msgstr "Εμφάνιση Ενεργού Τίτλου στον Τίτλο Παραθύρου" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Εμφάνιση Αυστραλίας" @@ -10543,7 +10543,7 @@ msgstr "Εμφάνιση Τρέχοντος Παιχνιδιού σε Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Εμφάνιση ELF/DOL" @@ -10552,27 +10552,27 @@ msgstr "Εμφάνιση ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Εμφάνιση FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Εμφάνιση Μετρητή Καρέ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Εμφάνιση Γαλλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Εμφάνιση GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Εμφάνιση Γερμανίας" @@ -10584,23 +10584,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Εμφάνιση Προβολής Χειρισμών" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Εμφάνιση Ιταλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Εμφάνιση Κορέας" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Εμφάνιση Μετρητή Καθυστέρησης " @@ -10608,19 +10608,19 @@ msgstr "Εμφάνιση Μετρητή Καθυστέρησης " msgid "Show Language:" msgstr "Εμφάνιση Γλώσσας:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Εμφάνιση Ρυθμίσεων &Καταγραφέα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Εμφάνιση Μηνυμάτων NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Εμφάνιση NetPlay Ping" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Εμφάνιση Ολλανδίας" @@ -10628,7 +10628,7 @@ msgstr "Εμφάνιση Ολλανδίας" msgid "Show On-Screen Display Messages" msgstr "Εμφάνιση Μηνυμάτων στην Οθόνη " -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Εμφάνιση PAL" @@ -10637,27 +10637,27 @@ msgstr "Εμφάνιση PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Εμφάνιση Πλατφόρμας" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Εμφάνιση Περιοχών" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Εμφάνιση Ρωσίας" @@ -10665,51 +10665,51 @@ msgstr "Εμφάνιση Ρωσίας" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Εμφάνιση Ισπανίας" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Εμφάνιση Στατιστικών" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Εμφάνιση Ώρας Συστήματος" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Εμφάνιση Ταϊβάν" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Εμφάνιση USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Εμφάνιση Αγνώστων" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Εμφάνιση WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Εμφάνιση Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Εμφάνιση Κόσμου" @@ -10722,7 +10722,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10750,13 +10750,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10795,47 +10795,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10857,7 +10857,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "Πλαγιαστό Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10881,7 +10881,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Κινέζικα Απλοποιημένα" @@ -10898,7 +10898,7 @@ msgstr "" msgid "Size" msgstr "Μέγεθος" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10908,7 +10908,7 @@ msgstr "" msgid "Skip" msgstr "Παράλειψη" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11025,7 +11025,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11039,7 +11039,7 @@ msgstr "Ισπανία" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Ισπανικά" @@ -11047,11 +11047,11 @@ msgstr "Ισπανικά" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Ένταση Ηχείου:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11059,7 +11059,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11101,7 +11101,7 @@ msgstr "Τυπικός Controller" msgid "Start" msgstr "Εκκίνηση" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Έναρξη &NetPlay..." @@ -11110,11 +11110,11 @@ msgstr "Έναρξη &NetPlay..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Εκκίνηση Ε&γγραφής Χειρισμών" @@ -11122,7 +11122,7 @@ msgstr "Εκκίνηση Ε&γγραφής Χειρισμών" msgid "Start Recording" msgstr "Εκκίνηση Εγγραφής" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11134,7 +11134,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Εκκίνηση παιχνιδιού" @@ -11194,7 +11194,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11223,12 +11223,12 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Διακοπή" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11264,7 +11264,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Προσαρμογή στο Παράθυρο" @@ -11303,8 +11303,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Επιτυχία" @@ -11331,7 +11331,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11343,12 +11343,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11371,12 +11371,12 @@ msgstr "Υποστήριξη" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11434,7 +11434,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11460,7 +11460,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11479,11 +11479,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Γλώσσα Συστήματος:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS Είσοδος" @@ -11496,7 +11496,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Ετικέτες" @@ -11514,7 +11514,7 @@ msgstr "" msgid "Taiwan" msgstr "Ταϊβάν" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Δημιουργία Στιγμιότυπου" @@ -11553,7 +11553,7 @@ msgstr "Cache Υφών" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11565,7 +11565,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Επικάλυψη Του Format Υφών" @@ -11602,13 +11602,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11623,7 +11623,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11918,7 +11918,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11976,7 +11976,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12301,7 +12301,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Τίτλος" @@ -12310,12 +12310,12 @@ msgid "To" msgstr "Εώς" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Εναλλαγή &Πλήρους Οθόνης" @@ -12404,7 +12404,7 @@ msgstr "" msgid "Toolbar" msgstr "Γραμμή εργαλείων" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Κορυφή" @@ -12455,7 +12455,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Κινέζικα Παραδοσιακά " @@ -12475,8 +12475,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12557,14 +12557,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12572,7 +12572,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12581,7 +12581,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12644,11 +12644,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Αναίρεση Φόρτωσης Σημείου Αποθ. " -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Αναίρεση Αποθήκευσης Σημείου Αποθ. " @@ -12666,7 +12666,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Ηνωμένες Πολιτείες" @@ -12758,7 +12758,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12774,7 +12774,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12817,7 +12817,7 @@ msgid "Up" msgstr "Πάνω" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Ενημέρωση" @@ -12890,7 +12890,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Χρήση Ενσωματωμένης Βάσης Δεδομένων για Ονόματα Παιχνιδιών" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12898,7 +12898,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Χρήση Λειτουργίας PAL60 (EuRGB60)" @@ -12912,7 +12912,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12980,14 +12980,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13250,7 +13250,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Προειδοποίηση" @@ -13339,7 +13339,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13347,7 +13347,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13355,7 +13355,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13405,7 +13405,7 @@ msgstr "Wii Remote Κουμπιά" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote Ρυθμίσεις" @@ -13433,7 +13433,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13441,7 +13441,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13472,7 +13472,7 @@ msgstr "Κόσμος" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13521,11 +13521,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13576,14 +13576,14 @@ msgstr "Ναι" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13681,7 +13681,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/en.po b/Languages/po/en.po index 5cb74e055d..9f5ace4a1a 100644 --- a/Languages/po/en.po +++ b/Languages/po/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -75,7 +75,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -129,7 +129,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -161,18 +161,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -180,11 +180,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -196,8 +196,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -214,7 +214,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -322,11 +322,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -343,11 +343,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -363,11 +363,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -375,15 +375,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -391,7 +391,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -399,7 +399,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -422,13 +422,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -442,11 +442,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "" @@ -467,40 +467,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "" @@ -520,7 +520,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -532,7 +532,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "" @@ -544,11 +544,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -558,11 +558,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -570,11 +570,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -582,7 +582,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -591,23 +591,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "" @@ -615,7 +615,7 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -623,7 +623,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "" @@ -641,11 +641,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -653,7 +653,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -661,7 +661,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -669,7 +669,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "" @@ -677,7 +677,7 @@ msgstr "" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -685,7 +685,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "" @@ -695,21 +695,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -721,11 +721,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -773,7 +773,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -839,7 +839,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1024,7 +1024,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1128,7 +1128,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1170,8 +1170,8 @@ msgstr "" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1251,7 +1251,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1263,7 +1263,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1271,7 +1271,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "" @@ -1328,7 +1328,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "" @@ -1342,7 +1342,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1536,7 +1536,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1576,7 +1576,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "" @@ -1602,15 +1602,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1628,7 +1628,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1660,16 +1660,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "" @@ -1710,11 +1710,11 @@ msgstr "" msgid "Audio" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1730,7 +1730,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "" @@ -1751,7 +1751,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1759,15 +1759,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1815,19 +1815,19 @@ msgstr "" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1870,7 +1870,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "" @@ -1894,7 +1894,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1960,7 +1960,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -1996,7 +1996,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2008,11 +2008,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "" @@ -2189,20 +2189,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "" @@ -2251,7 +2251,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2275,7 +2275,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2355,11 +2355,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2444,7 +2444,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "" @@ -2466,7 +2466,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2484,7 +2484,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2492,7 +2492,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2504,7 +2504,7 @@ msgstr "" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "" @@ -2512,7 +2512,7 @@ msgstr "" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2550,11 +2550,11 @@ msgstr "" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2585,7 +2585,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "" @@ -2593,7 +2593,7 @@ msgstr "" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2614,7 +2614,7 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2658,7 +2658,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2685,7 +2685,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2834,7 +2834,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2842,7 +2842,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2853,15 +2853,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2881,7 +2881,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3009,8 +3009,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3018,9 +3018,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3028,9 +3028,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3050,8 +3050,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3241,7 +3241,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3257,13 +3257,13 @@ msgstr "" msgid "Country:" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3294,11 +3294,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3310,18 +3310,18 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3341,11 +3341,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3353,15 +3353,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3404,7 +3404,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3412,15 +3412,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3491,7 +3491,7 @@ msgstr "" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3501,7 +3501,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3564,7 +3564,7 @@ msgstr "" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3572,7 +3572,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3618,7 +3618,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3667,7 +3667,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3697,7 +3697,7 @@ msgstr "" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3705,7 +3705,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3737,11 +3737,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3749,11 +3749,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3768,7 +3768,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4130,11 +4130,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "" @@ -4158,7 +4158,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "" @@ -4232,7 +4232,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "" @@ -4240,7 +4240,7 @@ msgstr "" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4258,7 +4258,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4280,16 +4280,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4337,7 +4337,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4363,7 +4363,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4376,7 +4376,7 @@ msgstr "" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "" @@ -4385,11 +4385,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4409,11 +4409,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "" @@ -4469,7 +4469,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4500,7 +4500,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4508,7 +4508,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4525,7 +4525,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4551,7 +4551,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4559,7 +4559,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4567,7 +4567,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4596,7 +4596,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "" @@ -4613,7 +4613,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4637,7 +4637,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4676,9 +4676,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4691,24 +4691,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4738,7 +4738,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4843,12 +4843,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4892,11 +4892,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "" @@ -4911,7 +4911,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "" @@ -4939,7 +4939,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4967,7 +4967,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5005,7 +5005,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "" @@ -5023,7 +5023,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5043,7 +5043,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5064,7 +5064,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5118,7 +5118,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5145,18 +5145,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5183,7 +5183,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5193,8 +5193,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5206,7 +5206,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5234,11 +5234,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5286,11 +5286,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5349,11 +5349,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5414,27 +5414,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5485,7 +5485,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5521,7 +5521,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5535,7 +5535,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5543,24 +5543,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5678,7 +5678,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "" @@ -5686,7 +5686,7 @@ msgstr "" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "" @@ -5718,11 +5718,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5796,11 +5796,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "" @@ -5808,7 +5808,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5859,7 +5859,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "" @@ -5878,8 +5878,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5935,11 +5935,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6083,7 +6083,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6096,7 +6096,7 @@ msgstr "" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6204,7 +6204,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6236,13 +6236,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "" @@ -6318,7 +6318,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6400,7 +6400,7 @@ msgstr "" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6424,11 +6424,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6467,11 +6467,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6497,7 +6497,7 @@ msgstr "" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6555,7 +6555,7 @@ msgid "IR" msgstr "" #. 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:363 msgid "IR Sensitivity:" msgstr "" @@ -6619,14 +6619,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6670,7 +6670,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6679,7 +6679,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6694,7 +6694,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6795,16 +6795,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6824,8 +6824,8 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "" @@ -6838,11 +6838,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "" @@ -6868,7 +6868,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6908,7 +6908,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -6994,7 +6994,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7019,7 +7019,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7044,7 +7044,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7080,13 +7080,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "" @@ -7099,11 +7099,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7111,47 +7111,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7163,11 +7163,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7178,16 +7178,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "" @@ -7247,12 +7247,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "" @@ -7299,23 +7299,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7323,7 +7323,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7410,11 +7410,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7426,15 +7426,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7446,7 +7446,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" @@ -7454,7 +7454,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7564,19 +7564,19 @@ msgstr "" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7588,35 +7588,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7630,7 +7630,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7656,7 +7656,7 @@ msgstr "" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7664,7 +7664,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7680,27 +7680,27 @@ msgstr "" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7760,7 +7760,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7777,12 +7777,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7798,11 +7798,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7811,7 +7811,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7832,7 +7832,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7883,11 +7883,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "" @@ -7903,7 +7903,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7923,7 +7923,7 @@ msgstr "" msgid "Modifier" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7939,8 +7939,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7948,7 +7948,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8006,10 +8006,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8018,7 +8018,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8045,7 +8045,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8255,7 +8255,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8263,7 +8263,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8276,7 +8276,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8320,8 +8320,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8470,7 +8470,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "" @@ -8495,7 +8495,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8517,7 +8517,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "" @@ -8525,13 +8525,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8548,7 +8548,7 @@ msgstr "" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8557,7 +8557,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8647,7 +8647,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8689,11 +8689,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8707,11 +8707,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8799,7 +8799,7 @@ msgstr "" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8844,7 +8844,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8852,15 +8852,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8878,7 +8878,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8895,7 +8895,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8903,7 +8903,7 @@ msgstr "" msgid "Play" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8911,11 +8911,11 @@ msgstr "" msgid "Play Recording" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "" @@ -8923,27 +8923,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8965,7 +8965,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -8998,7 +8998,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9014,20 +9014,20 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9062,7 +9062,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9131,11 +9131,11 @@ msgstr "" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9149,7 +9149,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9173,7 +9173,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9205,11 +9205,11 @@ msgstr "" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9234,7 +9234,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9242,7 +9242,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9301,7 +9301,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "" @@ -9313,11 +9313,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9381,7 +9381,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9414,7 +9414,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "" @@ -9451,11 +9451,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9488,7 +9488,7 @@ msgstr "" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9520,7 +9520,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9699,19 +9699,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9719,7 +9719,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9754,11 +9754,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "" @@ -9790,11 +9790,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9812,11 +9812,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9828,7 +9828,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9878,23 +9878,23 @@ msgstr "" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9914,11 +9914,11 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9929,11 +9929,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9941,11 +9941,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9975,7 +9975,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "" @@ -10002,7 +10002,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10010,7 +10010,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10055,11 +10055,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10099,7 +10099,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10107,7 +10107,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10174,7 +10174,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10182,7 +10182,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10194,7 +10194,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10202,7 +10202,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10219,7 +10219,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "" @@ -10243,7 +10243,7 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10267,7 +10267,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10297,7 +10297,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10319,7 +10319,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10333,7 +10333,7 @@ msgstr "" msgid "Send" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "" @@ -10398,14 +10398,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10417,7 +10417,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10436,7 +10436,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10450,7 +10450,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10472,16 +10472,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "" @@ -10489,11 +10489,11 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10506,7 +10506,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10515,27 +10515,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10547,23 +10547,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10571,19 +10571,19 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10591,7 +10591,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "" @@ -10600,27 +10600,27 @@ msgstr "" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10628,51 +10628,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10685,7 +10685,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10713,13 +10713,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10758,47 +10758,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10820,7 +10820,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10844,7 +10844,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "" @@ -10861,7 +10861,7 @@ msgstr "" msgid "Size" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10871,7 +10871,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10988,7 +10988,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11002,7 +11002,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "" @@ -11010,11 +11010,11 @@ msgstr "" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11022,7 +11022,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11064,7 +11064,7 @@ msgstr "" msgid "Start" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11073,11 +11073,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11085,7 +11085,7 @@ msgstr "" msgid "Start Recording" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11097,7 +11097,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11157,7 +11157,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11186,12 +11186,12 @@ msgid "Stick" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11227,7 +11227,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "" @@ -11266,8 +11266,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11294,7 +11294,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11306,12 +11306,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11334,12 +11334,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11397,7 +11397,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11423,7 +11423,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11442,11 +11442,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "" @@ -11459,7 +11459,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11477,7 +11477,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "" @@ -11516,7 +11516,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11528,7 +11528,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11565,13 +11565,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11586,7 +11586,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11880,7 +11880,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11938,7 +11938,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12256,7 +12256,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "" @@ -12265,12 +12265,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12359,7 +12359,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "" @@ -12410,7 +12410,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "" @@ -12430,8 +12430,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12512,14 +12512,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12527,7 +12527,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12536,7 +12536,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12599,11 +12599,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "" @@ -12621,7 +12621,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12713,7 +12713,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12729,7 +12729,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12772,7 +12772,7 @@ msgid "Up" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "" @@ -12843,7 +12843,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12851,7 +12851,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12865,7 +12865,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12933,14 +12933,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13203,7 +13203,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "" @@ -13292,7 +13292,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13300,7 +13300,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13308,7 +13308,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13358,7 +13358,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13386,7 +13386,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13394,7 +13394,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13425,7 +13425,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13474,11 +13474,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13529,14 +13529,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13633,7 +13633,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/es.po b/Languages/po/es.po index 5a322af109..6abd3af4b7 100644 --- a/Languages/po/es.po +++ b/Languages/po/es.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Petiso_Carambanal , 2013-2017,2020-2024\n" +"Last-Translator: Víctor González, 2021-2024\n" "Language-Team: Spanish (http://app.transifex.com/delroth/dolphin-emu/" "language/es/)\n" "Language: es\n" @@ -114,7 +114,7 @@ msgstr "" "%1\n" "quiere unirse a tu partida." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -168,7 +168,7 @@ msgstr "%1 (lenta)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -203,7 +203,7 @@ msgstr "%1 no soporta esta característica en tu sistema." msgid "%1 doesn't support this feature." msgstr "%1 no es compatible con esta característica." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -213,11 +213,11 @@ msgstr "" "%2 objetos\n" "Fotograma actual: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 se ha unido" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 se ha salido" @@ -225,11 +225,11 @@ msgstr "%1 se ha salido" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha desbloqueado %2/%3 logros, con un total de %4/%5 puntos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 no es una ROM válida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 ahora está jugando al golf" @@ -241,8 +241,8 @@ msgstr "%1 está jugando a %2" msgid "%1 memory ranges" msgstr "%1 rango(s) de memoria" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -259,7 +259,7 @@ msgstr "%1 sesión encontrada" msgid "%1 sessions found" msgstr "%1 sesiones encontradas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -296,7 +296,7 @@ msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -367,11 +367,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Acerca de" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Añadir punto de interrupción en memoria" @@ -388,11 +388,11 @@ msgstr "&Añadir función" msgid "&Add..." msgstr "&Añadir..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Ensamblador" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Ajustes de &audio" @@ -406,13 +406,13 @@ msgstr "Ventana sin &bordes" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 msgid "&Break On Hit" -msgstr "" +msgstr "&Pausar al encontrar una coincidencia" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Puntos de interrupción" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Rastreador de errores" @@ -420,15 +420,15 @@ msgstr "&Rastreador de errores" msgid "&Cancel" msgstr "&Cancelar" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "Administrador de &trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Buscar actualizaciones..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Borrar símbolos" @@ -436,7 +436,7 @@ msgstr "&Borrar símbolos" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Código" @@ -444,7 +444,7 @@ msgstr "&Código" msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Ajustes de &mandos" @@ -467,13 +467,13 @@ msgstr "&Borrar" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "Borrar variables &vigiladas" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "Borrar variables &vigiladas" @@ -487,11 +487,11 @@ msgstr "&Editar código..." msgid "&Edit..." msgstr "&Editar..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Expulsar disco" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulación" @@ -512,40 +512,40 @@ msgid "&Export as .gci..." msgstr "&Exportar como .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Tipo de letra..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "Avanzar &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "Ajustes de &cámara libre" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Generar el mapa de símbolos a partir de..." -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&Repositorio en GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Ajustes de &gráficos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "A&yuda" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Ajustes de a&tajos" @@ -565,7 +565,7 @@ msgstr "&Importar estado" msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "Base de &Infinity" @@ -577,7 +577,7 @@ msgstr "&Insertar blr" msgid "&Interframe Blending" msgstr "&Fusión de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -589,11 +589,11 @@ msgstr "&Idioma:" msgid "&Load Branch Watch" msgstr "Car&gar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Cargar estado" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "Cargar mapa de símbo&los" @@ -603,23 +603,23 @@ msgstr "&Cargar archivo en dirección actual" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Bloquear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "B&loquear posición de ventanas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 msgid "&Log On Hit" -msgstr "" +msgstr "&Registrar al encontrar una coincidencia" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Grabación" @@ -627,7 +627,7 @@ msgstr "&Grabación" msgid "&Mute" msgstr "&Silenciar" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Red" @@ -636,23 +636,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opciones" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Parchear funciones HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Jugar" @@ -660,7 +660,7 @@ msgstr "&Jugar" msgid "&Properties" msgstr "&Propiedades" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Modo de solo lectura" @@ -668,7 +668,7 @@ msgstr "&Modo de solo lectura" msgid "&Refresh List" msgstr "&Actualizar lista" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registros" @@ -686,11 +686,11 @@ msgid "&Rename symbol" msgstr "&Renombrar símbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reiniciar" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Administrador de paquetes de recursos" @@ -698,7 +698,7 @@ msgstr "&Administrador de paquetes de recursos" msgid "&Save Branch Watch" msgstr "&Guardar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Guardar mapa de símbolos" @@ -706,7 +706,7 @@ msgstr "&Guardar mapa de símbolos" msgid "&Scan e-Reader Card(s)..." msgstr "E%scanear tarjeta(s) de e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "Portal de &Skylanders" @@ -714,7 +714,7 @@ msgstr "Portal de &Skylanders" msgid "&Speed Limit:" msgstr "&Límite de velocidad:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Detener" @@ -722,7 +722,7 @@ msgstr "&Detener" msgid "&Theme:" msgstr "&Tema visual:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Hilos" @@ -730,7 +730,7 @@ msgstr "&Hilos" msgid "&Tool" msgstr "&Herramientas" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Herramientas" @@ -740,21 +740,21 @@ msgstr "&Quitar ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "Desblo&quear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Vista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Vigilar" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Página web" @@ -766,11 +766,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "No se encontró «%1», no se han generado nombres de símbolos" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "No se encontró «%1», probando con la búsqueda de funciones comunes" @@ -818,7 +818,7 @@ msgstr "- Restar" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Desconocido--" @@ -884,7 +884,7 @@ msgstr "Entero con signo de 16 bits" msgid "16-bit Unsigned Integer" msgstr "Entero sin signo de 16 bits" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -968,7 +968,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 bloques)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1071,7 +1071,7 @@ msgstr "" "Característica desactivada en el modo «hardcore»." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Si tienes dudas, deja esta opción desactivada.
If unsure, leave this unchecked." @@ -1993,19 +1993,19 @@ msgstr "Registro BP" msgid "Back Chain" msgstr "Secuencia regresiva" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Motor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Motor multihilo" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Ajustes del motor" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motor:" @@ -2048,7 +2048,7 @@ msgstr "El valor elegido no es correcto." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Imagen" @@ -2072,7 +2072,7 @@ msgstr "Dirección base" msgid "Base priority" msgstr "Prioridad base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Básico" @@ -2124,11 +2124,11 @@ msgstr "SSL binario (leer)" msgid "Binary SSL (write)" msgstr "SSL binario (escribir)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2142,7 +2142,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Tamaño del bloque" @@ -2180,7 +2180,7 @@ msgstr "" "Se ha activado el modo de acceso directo a Bluetooth, pero no se puede " "utilizar porque Dolphin se ha compilado sin la biblioteca libusb." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Arrancar pausado" @@ -2194,11 +2194,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Archivo de claves BootMii (*.bin);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Pantalla completa sin bordes" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Inferior" @@ -2352,7 +2352,7 @@ msgstr "Pausa" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 msgid "Break &And Log On Hit" -msgstr "" +msgstr "Pausar &y registrar al encontrar una coincidencia" #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 @@ -2398,20 +2398,20 @@ msgstr "Error del adaptador para banda ancha" msgid "Broadband Adapter MAC Address" msgstr "Dirección MAC del adaptador para banda ancha" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Buscar sesiones de juego en red..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Tamaño de búfer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Tamaño del búfer cambiado a %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Búfer:" @@ -2462,7 +2462,7 @@ msgstr "Por: %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "C&rear archivo de firma..." @@ -2486,7 +2486,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Intérprete con caché (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2579,11 +2579,11 @@ msgstr "No puedes empezar el juego en red con un juego en ejecución." #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Cancelar" @@ -2669,7 +2669,7 @@ msgstr "Centrar y calibrar" msgid "Change &Disc" msgstr "Cambiar &disco" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Cambiar &disco..." @@ -2690,8 +2690,11 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"Cambia la apariencia y los colores de los botones de Dolphin." +"

Si tienes dudas, selecciona Clean." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2722,7 +2725,7 @@ msgstr "" "tiene movimiento lateral, solo rotación, y puedes acercarte al punto de " "origen de la cámara." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Los trucos surtirán efecto la próxima vez que se reinicie el juego." @@ -2730,7 +2733,7 @@ msgstr "Los trucos surtirán efecto la próxima vez que se reinicie el juego." msgid "Channel Partition (%1)" msgstr "Partición del canal (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "¡El personaje introducido no es válido!" @@ -2742,7 +2745,7 @@ msgstr "Conversación" msgid "Cheat Code Editor" msgstr "Editor de trucos" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Buscar trucos" @@ -2750,7 +2753,7 @@ msgstr "Buscar trucos" msgid "Cheats Manager" msgstr "Administrador de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Comprobar NAND..." @@ -2790,11 +2793,11 @@ msgstr "Selecciona un archivo para abrir" msgid "Choose a file to open or create" msgstr "Selecciona un archivo a abrir o crear" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Selecciona un archivo de entrada principal" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Selecciona un archivo de entrada secundario" @@ -2825,7 +2828,7 @@ msgstr "Mando clásico" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Borrar" @@ -2833,7 +2836,7 @@ msgstr "Borrar" msgid "Clear Branch Watch" msgstr "Borrar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Borrar caché" @@ -2854,7 +2857,7 @@ msgstr "Clonar y &editar código..." msgid "Close" msgstr "Cerrar" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Co&nfiguración" @@ -2898,7 +2901,7 @@ msgstr "Espacio de color" msgid "Column &Visibility" msgstr "&Visibilidad de columnas" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Combinar dos archivos de firmas..." @@ -2932,7 +2935,7 @@ msgstr "" "pesar de todo, es posible que este volcado sea correcto al compararlo con la " "versión de la eShop de Wii U. Dolphin no puede verificar esta circunstancia." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compilar sombreadores antes de jugar" @@ -2942,7 +2945,7 @@ msgstr "Compilación de sombreadores" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Compresión" @@ -3041,6 +3044,60 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" +"Condiciones:\n" +"Establece una expresión que se evaluará al llegar a un punto de " +"interrupción. Si dicha expresión tiene un valor de falsa o 0, se ignorará el " +"punto de interrupción hasta que se vuelva a alcanzar. Las instrucciones " +"deben separarse con comas. Solo se utilizará la última instrucción para " +"determinar las acciones a llevar a cabo.\n" +"\n" +"Registros referenciables:\n" +"GPRs : r0..r31\n" +"FPRs : f0..f31\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Otros : pc, msr\n" +"\n" +"Funciones:\n" +"Establecer un registro: r1 = 8\n" +"Conversiones: s8(0xff). Disponible: s8, u8, s16, u16, s32, u32\n" +"Pila de llamadas: callstack(0x80123456), callstack(\"anim\")\n" +"Comparar cadenas: streq(r3, \"abc\"). Ambos parámetros pueden ser " +"direcciones o cadenas literales.\n" +"Leer memoria: read_u32(0x80000000). Disponible: u8, s8, u16, s16, u32, s32, " +"f32, f64\n" +"Escribir memoria: write_u32(r3, 0x80000000). Disponible: u8, u16, u32, f32, " +"f64\n" +"* Actualmente las escrituras siempre se mantendrán activas\n" +"\n" +"Operaciones:\n" +"Unarias: -u, !u, ~u\n" +"Matemáticas: * / + -, potencias: **, restantes: %, desplazamiento: <<, >>\n" +"Comparaciones: <, <=, >, >=, ==, !=, &&, ||\n" +"Bit a bit: &, |, ^\n" +"\n" +"Ejemplos:\n" +"r4 == 1\n" +"f0 == 1.0 && f2 < 10.0\n" +"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" +"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" +"Escribir y parar: r4 = 8, 1\n" +"Escribir y continuar: f3 = f1 + f2, 0\n" +"La condición siempre debe escribirse en último lugar\n" +"\n" +"Solo se deben utilizar cadenas en funciones callstack() o streq() y siempre " +"deben ir \"entrecomilladas\". No asignes cadenas a una variable.\n" +"Todas las variables se mostrarán en el registro de la interfaz de memoria en " +"caso de haber coincidencias o resultados NaN. Si quieres buscar incidencias, " +"asigna una variable a tu ecuación para que se muestre.\n" +"\n" +"Nota: todos los valores se convierten internamente a «doublewords» para " +"hacer los cálculos. Es posible que se salgan del rango o se conviertan en " +"NaN. Se mostrará una advertencia si el resultado es un NaN y se registrará " +"la variable que se ha convertido en NaN." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3057,7 +3114,7 @@ msgstr "Configurar" msgid "Configure Controller" msgstr "Configurar mando" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Configurar Dolphin" @@ -3081,7 +3138,7 @@ msgstr "Configurar salida" msgid "Confirm" msgstr "Confirmar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Confirmar cambio de motor" @@ -3089,7 +3146,7 @@ msgstr "Confirmar cambio de motor" msgid "Confirm on Stop" msgstr "Confirmar detención" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3100,15 +3157,15 @@ msgstr "Confirmar" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Conectar la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectar teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Conectar mando de Wii %1" @@ -3128,7 +3185,7 @@ msgstr "Conectar mando de Wii 3" msgid "Connect Wii Remote 4" msgstr "Conectar mando de Wii 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Conectar mandos de Wii" @@ -3281,8 +3338,8 @@ msgstr "Convergencia" msgid "Convergence:" msgstr "Convergencia:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Fallo en la conversión." @@ -3290,9 +3347,9 @@ msgstr "Fallo en la conversión." msgid "Convert" msgstr "Convertir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Convertir archivo a carpeta" @@ -3300,9 +3357,9 @@ msgstr "Convertir archivo a carpeta" msgid "Convert File..." msgstr "Convertir archivo..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Convertir carpeta a archivo" @@ -3325,8 +3382,8 @@ msgstr "" "queriendo continuar?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Convirtiendo..." @@ -3562,7 +3619,7 @@ msgstr "" "Si es así, entonces es posible que tengas que volver a especificar la " "ubicación de la tarjeta de memoria en las opciones." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "No se pudo encontrar el servidor central" @@ -3578,13 +3635,13 @@ msgstr "No se pudo leer el archivo." msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Crear" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Crear archivo de Infinity" @@ -3615,11 +3672,11 @@ msgstr "Creador:" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Recortar imagen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3635,11 +3692,11 @@ msgstr "" msgid "Crossfade" msgstr "Deslizador del mezclador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Descartar vértices en la CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3650,7 +3707,7 @@ msgstr "" "dibujado.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Región actual" @@ -3670,11 +3727,11 @@ msgstr "Juego actual" msgid "Current thread" msgstr "Hilo actual" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Personalizada (estirada)" @@ -3682,15 +3739,15 @@ msgstr "Personalizada (estirada)" msgid "Custom Address Space" msgstr "Espacio de dirección personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Alto de la relación de aspecto personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Ancho de la relación de aspecto personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Relación de aspecto personalizada:" @@ -3735,7 +3792,7 @@ msgstr "Mesa de mezclas DJ" msgid "DK Bongos" msgstr "DK Bongós" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Motor de emulación del DSP" @@ -3743,15 +3800,15 @@ msgstr "Motor de emulación del DSP" msgid "DSP HLE (fast)" msgstr "DSP HLE (rápido)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (recomendado)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "Intérprete DSP LLE (muy lento)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "Recompilador DSP LLE (lento)" @@ -3826,7 +3883,7 @@ msgstr "Zona muerta" msgid "Debug" msgstr "Depurar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuración" @@ -3836,7 +3893,7 @@ msgstr "Depuración" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Calidad de decodificación:" @@ -3883,7 +3940,7 @@ msgstr "Valor predeterminado" msgid "Default Config (Read Only)" msgstr "Configuración predeterminada (solo lectura)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Dispositivo predeterminado" @@ -3899,7 +3956,7 @@ msgstr "ISO predeterminada:" msgid "Default thread" msgstr "Hilo predeterminado" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Retrasar invalidación de caché del EFB" @@ -3907,7 +3964,7 @@ msgstr "Retrasar invalidación de caché del EFB" msgid "Defer EFB Copies to RAM" msgstr "Retrasar copias del EFB a la RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3959,7 +4016,7 @@ msgstr "Profundidad:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripción" @@ -4008,7 +4065,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Detección de módulos RSO" @@ -4038,7 +4095,7 @@ msgstr "Ajustes de dispositivos" msgid "Device VID (e.g., 057e)" msgstr "VID del dispositivo (por ejemplo: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Dispositivo:" @@ -4046,7 +4103,7 @@ 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/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Oscurece la pantalla después de cinco minutos de inactividad." @@ -4070,7 +4127,7 @@ msgstr "Desactivar delimitado rectangular" msgid "Disable Copy Filter" msgstr "Desactivar filtrado de copia" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Desactivar copias del EFB a la VRAM" @@ -4078,11 +4135,11 @@ 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:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Desactivar FastMem" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Desactivar Fastmem Arena" @@ -4090,11 +4147,11 @@ msgstr "Desactivar Fastmem Arena" msgid "Disable Fog" msgstr "Desactivar niebla" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Desactivar caché JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Desactivar mapas grandes de puntos de entrada" @@ -4113,7 +4170,7 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If " "unsure, leave this checked." msgstr "" +"Desactiva el salvapantallas mientras estés ejecutando un juego." +"

Si tienes dudas, deja esta opción activada." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4154,7 +4214,7 @@ msgstr "Descartar" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 msgid "Display Settings" -msgstr "" +msgstr "Ajustes de visualización" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4196,7 +4256,7 @@ msgstr "" 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:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 msgid "Do you want to clear the list of symbol names?" msgstr "¿Seguro que quieres borrar la lista de nombres simbólicos?" @@ -4214,12 +4274,12 @@ msgstr "¿Quieres detener la emulación?" msgid "Do you want to try to repair the NAND?" msgstr "¿Quieres intentar reparar la NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 msgid "Dolby Pro Logic II Decoder" msgstr "Decodificador Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:218 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:229 msgid "Dolphin FIFO Log (*.dff)" msgstr "Registro FIFO de Dolphin (*.dff)" @@ -4227,9 +4287,9 @@ msgstr "Registro FIFO de Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Preajuste de modificación de juego para Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1603 -#: Source/Core/DolphinQt/MenuBar.cpp:1620 -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +#: Source/Core/DolphinQt/MenuBar.cpp:1629 msgid "Dolphin Map File (*.map)" msgstr "Archivo de mapa de Dolphin (*.map)" @@ -4242,7 +4302,7 @@ msgid "Dolphin Signature File" msgstr "Archivo de firma de Dolphin" #: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Grabación TAS de Dolphin (*.dtm)" @@ -4286,7 +4346,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:1001 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:999 msgid "Dolphin is too old for traversal server" msgstr "" "La versión de Dolphin es demasiado antigua para utilizar el servidor de paso" @@ -4311,7 +4371,7 @@ msgstr "" "Dolphin usará este ajuste con aquellos títulos para los que no pueda " "determinar la región automáticamente." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "El sistema de trucos de Dolphin está desactivado." @@ -4384,6 +4444,13 @@ msgid "" "file banners.

If unsure, leave this checked." msgstr "" +"Descarga las carátulas de los juegos de GameTDB.com para mostrarlas en la " +"vista en cuadrícula de la lista de juegos. Si esta opción está desactivada, " +"la lista de juegos mostrará una imagen obtenida de los datos guardados del " +"juego, y si este no tiene datos guardados, se mostrará una imagen genérica " +"en su lugar.

La vista en lista siempre utilizará las imágenes de los " +"datos guardados.

Si tienes dudas, deja esta opción " +"activada." #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 @@ -4424,19 +4491,19 @@ msgstr "Volcar &FakeVMEM" msgid "Dump &MRAM" msgstr "Volcar &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:845 msgid "Dump Audio" msgstr "Volcar audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Base Textures" msgstr "Volcar texturas base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump EFB Target" msgstr "Volcar superficie del EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:842 +#: Source/Core/DolphinQt/MenuBar.cpp:839 msgid "Dump Frames" msgstr "Volcar fotogramas" @@ -4444,7 +4511,7 @@ msgstr "Volcar fotogramas" msgid "Dump GameCube BBA traffic" msgstr "Volcar tráfico del adaptador de banda ancha de GameCube" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 msgid "Dump Mip Maps" msgstr "Volcar mipmaps" @@ -4452,7 +4519,7 @@ msgstr "Volcar mipmaps" msgid "Dump Path:" msgstr "Ruta de volcados:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 msgid "Dump XFB Target" msgstr "Volcar objetivo XFB" @@ -4477,7 +4544,7 @@ msgstr "Volcado de certificados de par" msgid "Dump root CA certificates" msgstr "Volcar certificados CA raíz" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4497,7 +4564,7 @@ msgstr "" ">Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4516,11 +4583,11 @@ msgstr "Duración de liberación del botón turbo (fotogramas)" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandés" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Salir" @@ -4552,7 +4619,7 @@ msgstr "" "Ideal para juegos competitivos donde la equidad y la latencia mínima son más " "importantes." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Refresco temprano de memoria" @@ -4573,11 +4640,11 @@ msgstr "Editar punto de interrupción" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit Conditional" -msgstr "" +msgstr "Editar condicional" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit conditional expression" -msgstr "" +msgstr "Editar expresión condicional" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 @@ -4626,7 +4693,7 @@ msgstr "Búfer de imagen integrado (EFB)" msgid "Empty" msgstr "Vacía" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "El hilo de emulación ya está ejecutándose" @@ -4634,7 +4701,7 @@ 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:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Emular base de Infinity" @@ -4655,7 +4722,7 @@ msgstr "" "esta opción puede provocar problemas de estabilidad. Valor predeterminado: " "activado." -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Dispositivos USB emulados" @@ -4680,16 +4747,16 @@ msgstr "Velocidad de emulación" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Habilitar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Activar capas de validación de la API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Activar expansión de audio" @@ -4711,7 +4778,7 @@ msgstr "Activar opciones de depuración" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "Activar presencia en Discord" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" @@ -4737,7 +4804,7 @@ msgstr "Activar repetición de logros («Encore»)" msgid "Enable FPRF" msgstr "Activar FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Activar modificaciones de gráficos" @@ -4780,7 +4847,7 @@ msgstr "" "cuenta que si desactivas el modo «hardcore» en mitad de una partida, no " "podrás volver a activarlo hasta que cierres el juego." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "Activar perfiles de bloques JIT" @@ -4793,7 +4860,7 @@ msgstr "Activar MMU" msgid "Enable Progress Notifications" msgstr "Activar notificaciones de progresos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activar escaneo progresivo" @@ -4802,11 +4869,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Activar integración con RetroAchievements.org" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Activar vibración" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activar salvapantallas" @@ -4816,7 +4883,7 @@ msgstr "Activar envío de datos al altavoz" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "Activar modo espectador" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" @@ -4826,11 +4893,11 @@ msgstr "Activar logros no oficiales" msgid "Enable Usage Statistics Reporting" msgstr "Informar de estadísticas de uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activar WiiConnect24 a través de WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ver mallas de polígonos" @@ -4878,6 +4945,12 @@ msgid "" "speedrun criteria or simply for fun.

Setting takes effect on next " "game load." msgstr "" +"Permite desbloquear logros en el modo «encore».

El modo «encore» " +"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 carreras de tiempo " +"(«speedruns») personalizadas o por puro placer.

Los cambios harán " +"efecto tras ejecutar el próximo juego." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 msgid "" @@ -4888,6 +4961,13 @@ msgid "" "RetroAchievements session will not be created.

If this is off at game " "launch, it can be toggled freely while the game is running." msgstr "" +"Permite desbloquear logros en el modo espectador.

Dentro del modo " +"espectador se procesarán y mostrarán en pantalla los logros y las tablas de " +"puntuación, pero no se enviarán al servidor.

Si la opción se " +"encuentra activada al ejecutar un juego, no se desactivará hasta que lo " +"cierres, ya que no se habrá creado aún una sesión en RetroAchievements." +"

Si la opción se encuentra desactivada al ejecutar un juego, se podrá " +"activar y desactivar libremente durante su ejecución." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" @@ -4896,8 +4976,12 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" +"Permite desbloquear tanto logros no oficiales como oficiales.

Los " +"logros no oficiales pueden ser logros opcionales o inacabados que " +"RetroAchievements no considere oficiales, útiles para hacer pruebas o por " +"puro placer.

Los cambios harán efecto tras ejecutar el próximo juego." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4948,7 +5032,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4961,7 +5045,7 @@ msgstr "" "

Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4989,7 +5073,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "«Estira» el audio para que vaya sincronizado a la velocidad de emulación." @@ -5029,7 +5113,7 @@ msgstr "" "Desactivado: el ajuste más rápido).

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5041,7 +5125,7 @@ msgstr "" "descontinuados, tales como los Canales Tiempo y Nintendo.\n" "Puedes leer las condiciones del servicio aquí: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5054,7 +5138,7 @@ msgstr "" "los sombreadores compilados.

Si tienes dudas, deja " "esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5083,7 +5167,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "End Addr" -msgstr "" +msgstr "Dir. final" #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -5091,7 +5175,7 @@ msgstr "Enet no se inició" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglés" @@ -5110,7 +5194,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Introduce un ID de dispositivo USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Introduce una dirección a supervisar:" @@ -5136,7 +5220,7 @@ msgstr "" "Introduce la dirección IP y el puerto de la instancia de tapserver a la que " "deseas conectarte." -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Introduce la dirección del módulo RSO:" @@ -5175,9 +5259,9 @@ msgstr "Introduce la dirección del módulo RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5190,24 +5274,24 @@ msgstr "Introduce la dirección del módulo RSO:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5237,7 +5321,7 @@ msgstr "Error al abrir el adaptador: %1" msgid "Error collecting save data!" msgstr "¡Error al recopilar los datos guardados!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5350,12 +5434,12 @@ 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:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershaders exclusivos" @@ -5399,11 +5483,11 @@ msgstr "Inicio esperado de la expresión." msgid "Expected variable name." msgstr "Nombre de variable previsto." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportar todas las partidas guardadas de Wii" @@ -5418,7 +5502,7 @@ msgstr "Fallo al exportar" msgid "Export Recording" msgstr "Exportar grabación" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exportar grabación..." @@ -5446,7 +5530,7 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5474,7 +5558,7 @@ msgstr "Externo" msgid "External Frame Buffer (XFB)" msgstr "Búfer de imagen externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Extraer certificados de la NAND" @@ -5512,7 +5596,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Reproductor FIFO" @@ -5532,7 +5616,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "No se ha podido añadir al archivo de firma «%1»" @@ -5552,7 +5636,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:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "No se ha podido conectar al servidor: %1" @@ -5573,7 +5657,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "No se ha podido crear el archivo de Infinity" @@ -5638,7 +5722,7 @@ msgstr "No se ha(n) podido exportar %n de %1 archivo(s) de guardado." msgid "Failed to export the following save files:" msgstr "No se ha podido exportar los siguientes archivos de guardado:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "No se han podido extraer los certificados de la NAND." @@ -5668,14 +5752,14 @@ msgstr "No se ha podido encontrar uno o más símbolos D3D" msgid "Failed to import \"%1\"." msgstr "No se ha podido importar «%1»." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5683,7 +5767,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5717,7 +5801,7 @@ msgid "Failed to install pack: %1" msgstr "No se ha podido instalar el paquete: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "No se ha podido instalar el título en la NAND." @@ -5729,8 +5813,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:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "No se ha podido cargar el módulo RSO en %1" @@ -5742,7 +5826,7 @@ 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:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "No se ha podido cargar el archivo de mapa «%1»" @@ -5774,11 +5858,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "¡No se ha podido modificar el Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "No se ha podido abrir el archivo «%1» para su escritura." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "No se ha podido abrir el archivo «{0}» para su escritura." @@ -5829,11 +5913,11 @@ msgstr "No se ha podido abrir el archivo." msgid "Failed to open server" msgstr "No se ha podido contactar con el servidor" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "¡No se ha podido abrir el archivo de Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5905,17 +5989,21 @@ 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:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "¡No se ha podido leer el archivo de Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"No se ha podido leer el archivo de Infinity:\n" +"%1\n" +"\n" +"El archivo era demasiado pequeño." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5985,27 +6073,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "No se ha podido guardar la instantánea del inspector de ramas «%1»" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "No se ha podido guardar el registro FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 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:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "No se ha podido guardar el archivo de firma «%1»" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 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:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "No se ha podido guardar en el archivo de firma «%1»" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -6062,7 +6150,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Fallido" @@ -6100,7 +6188,7 @@ msgstr "" msgid "Field of View" msgstr "Campo visual" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "N.º de figura:" @@ -6114,7 +6202,7 @@ msgstr "Detalles del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Formato del archivo" @@ -6122,24 +6210,24 @@ msgstr "Formato del archivo" msgid "File Format:" msgstr "Formato del archivo:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Información del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nombre del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Ruta del archivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Tamaño del archivo" @@ -6271,7 +6359,7 @@ msgstr "" "Si necesitas ayuda, consulta esta página." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forzar 16:9" @@ -6279,7 +6367,7 @@ msgstr "Forzar 16:9" msgid "Force 24-Bit Color" msgstr "Forzar color de 24 bits" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forzar 4:3" @@ -6311,13 +6399,13 @@ msgstr "Forzar escucha en puerto:" msgid "Force Nearest" msgstr "Forzar vecino más cercano" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" "Desconexión forzada porque %1 no es compatible con la expansión de VS " "(sombreadores de vértices)." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Conexión forzada porque %1 no es compatible con shaders de geometría." @@ -6356,6 +6444,9 @@ msgid "" "Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked." msgstr "" +"Fuerza a la ventana de renderización a mostrarse por encima del resto de " +"ventanas y aplicaciones.

Si tienes dudas, deja esta " +"opción desactivada." #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" @@ -6403,11 +6494,11 @@ msgstr "Avanzar fotogramas más rápido" msgid "Frame Advance Reset Speed" msgstr "Avanzar fotogramas a la veloc. original" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Volcado de fotogramas" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Información de la grabación" @@ -6416,7 +6507,7 @@ msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" "Ya existe un volcado de imagen(es) llamado «{0}». ¿Quieres sustituirlo?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Fotogramas a grabar:" @@ -6471,7 +6562,7 @@ msgstr "Alternar cámara libre" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francés" @@ -6490,8 +6581,8 @@ msgid "From" msgstr "Desde" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Desde:" @@ -6505,7 +6596,7 @@ msgstr "Función" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 msgid "Function Settings" -msgstr "" +msgstr "Ajustes de funcionalidad" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6547,11 +6638,11 @@ msgstr "Volumen de GBA" msgid "GBA Window Size" msgstr "Tamaño de la ventana de GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "ROM GBA%1 cambiada a «%2»" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "ROM GBA%1 desactivada" @@ -6723,7 +6814,7 @@ msgid "Game Gamma:" msgstr "Gamma del juego:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID de juego" @@ -6736,7 +6827,7 @@ msgstr "ID de juego:" msgid "Game Status" msgstr "Estado del juego" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Juego cambiado a «%1»" @@ -6849,7 +6940,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6881,13 +6972,13 @@ msgstr "Generar un nuevo identificador para estadísticas" msgid "Generated AR code(s)." msgstr "Se han generado códigos AR." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Nombres de símbolos generados desde «%1»" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemán" @@ -6968,7 +7059,7 @@ msgstr "Verde izquierdo" msgid "Green Right" msgstr "Verde derecho" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Vista en cuadrícula" @@ -7050,7 +7141,7 @@ msgstr "Esconder" msgid "Hide &Controls" msgstr "Ocultar &controles" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Ocultar todo" @@ -7072,13 +7163,17 @@ msgid "" "render window is focused.

If unsure, select "" "On Movement"." msgstr "" +"Oculta el cursor del ratón cuando se encuentre dentro de la ventana de " +"renderización, siempre y cuando se muestre en primer plano." +"

Si tienes dudas, selecciona Al moverlo." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Alto" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Más alto" @@ -7122,11 +7217,11 @@ msgstr "" "Ideal para juegos casuales para 3 o más jugadores, posiblemente en " "conexiones inestables o de alta latencia." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Autoridad de entrada para el anfitrión deshabilitada" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Autoridad de entrada para el anfitrión activada" @@ -7153,7 +7248,7 @@ msgid "Hotkeys Require Window Focus" msgstr "" "Reconocer los atajos de teclado solo cuando la ventana esté en primer plano" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershaders híbridos" @@ -7217,7 +7312,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Sensibilidad IR:" @@ -7317,7 +7412,7 @@ msgstr "" "Si está desactivada, el estado de conexión del mando emulado se vinculará al " "estado de conexión del dispositivo real (en caso de que haya uno)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7329,7 +7424,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7386,7 +7481,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Mostrar directamente el contenido del XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7401,7 +7496,7 @@ msgstr "" "disminuye ligeramente el rendimiento.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Importar copia de respaldo de la NAND en formato BootMii..." @@ -7416,7 +7511,7 @@ msgstr "Fallo al importar" msgid "Import Save File(s)" msgstr "Importar archivo(s) de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importar partidas guardadas de Wii..." @@ -7441,6 +7536,11 @@ msgid "" "notified.

If unsure, leave this checked." msgstr "" +"Si se llega a producir un error, Dolphin se detendrá para informarte del " +"mismo y presentarte una serie de opciones. Al desactivar esta opción, " +"Dolphin «ignorará» todos los errores. La emulación no se detendrá y no verás " +"notificación alguna.

Si tienes dudas, deja esta " +"opción activada." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" @@ -7524,16 +7624,16 @@ msgstr "Rotación incremental (IR)" msgid "Incremental Rotation (rad/sec)" msgstr "Rotación incremental (rad/seg) (IR)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Creador de figuras de Infinity" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Administrador de Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Objeto de Infinity (*.bin);;" @@ -7557,8 +7657,8 @@ msgstr "Información" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Información" @@ -7571,11 +7671,11 @@ msgid "Inject" msgstr "Inyectar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Entrada" @@ -7601,7 +7701,7 @@ msgstr "Insertar &NOP" msgid "Insert &nop" msgstr "Insertar &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Insertar tarjeta SD" @@ -7618,7 +7718,7 @@ msgstr "Partición de instalación (%1)" msgid "Install Update" msgstr "Instalar actualización" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7641,7 +7741,7 @@ msgstr "Instrucción" msgid "Instruction Breakpoint" msgstr "Punto de interrupción de instrucción" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instrucción:" @@ -7740,7 +7840,7 @@ msgstr "Error interno al generar el código AR." msgid "Interpreter (slowest)" msgstr "Intérprete (muy lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Intérprete de núcleo" @@ -7767,7 +7867,7 @@ msgstr "Paquete %1 no válido proporcionado: %2" msgid "Invalid Player ID" msgstr "ID de jugador incorrecto" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Dirección de módulo RSO incorrecta: %1" @@ -7792,7 +7892,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Los datos introducidos en «%1» no son válidos" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Los datos introducidos no son válidos" @@ -7829,13 +7929,13 @@ msgstr "" msgid "Invalid title ID." msgstr "ID de título incorrecto." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Dirección inválida: 1%" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7848,11 +7948,11 @@ msgstr "Italia" msgid "Item" msgstr "Objeto" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "Sin enlazado de bloques JIT" @@ -7860,47 +7960,47 @@ msgstr "Sin enlazado de bloques JIT" msgid "JIT Blocks" msgstr "Bloques JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "Sin rama JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "Sin coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "Sin números enteros JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "Sin LoadStore de coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "Sin LoadStore JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "Sin LoadStore con parejas JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "Sin LoadStore lXz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "Sin LoadStore lbzx JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "Sin LoadStore lwz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "Sin JIT (núcleo JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "Sin emparejamiento JIT" @@ -7912,11 +8012,11 @@ msgstr "Recompilador JIT para ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT para x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "Sin registro de caché de JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "Sin SystemRegisters JIT" @@ -7930,16 +8030,16 @@ msgstr "" "memoria caché. Esto no debería haber pasado. Te rogamos que informes del " "fallo en el gestor de incidencias. Dolphin se cerrará." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "El modo JIT no está activo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japón" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonés" @@ -8001,12 +8101,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Echar al jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -8037,7 +8137,7 @@ msgstr "Etiqueta" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Idioma" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -8053,23 +8153,23 @@ msgstr "Último uso:" msgid "Last reset:" msgstr "Último reinicio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Latencia:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Latencia: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Latencia: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Latencia: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Latencia: ~80 ms" @@ -8077,7 +8177,7 @@ msgstr "Latencia: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Ejecutar estos títulos también podría ayudar a arreglarlos." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Tablas de clasificación" @@ -8173,11 +8273,11 @@ msgstr "Luces" msgid "Limit Chunked Upload Speed:" msgstr "Limite la velocidad de subida de datos:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Columnas en la lista" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Vista en lista" @@ -8189,15 +8289,15 @@ msgstr "Escuchando" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Cargar" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Cargar archiv&o de mapa incorrecto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Cargar archiv&o de mapa adicional..." @@ -8209,7 +8309,7 @@ msgstr "Cargar instantánea del inspector de ramas &desde..." msgid "Load Branch Watch snapshot" msgstr "Cargar instantánea del inspector de ramas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Cargar texturas personalizadas" @@ -8217,7 +8317,7 @@ msgstr "Cargar texturas personalizadas" msgid "Load File" msgstr "Cargar archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Cargar menú principal de GameCube" @@ -8327,19 +8427,19 @@ msgstr "Cargar estado 8" msgid "Load State Slot 9" msgstr "Cargar estado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Cargar estado desde un archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Cargar estado desde la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Cargar estado desde una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Cargar menú del sistema Wii %1" @@ -8351,28 +8451,28 @@ msgstr "Cargar y escribir los datos guardados del anfitrión" msgid "Load from Selected Slot" msgstr "Cargar la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Cargar desde la ranura %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Cargar archivo de mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Cargar menú del sistema vWii %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Cargar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Símbolos cargados desde «%1»" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8383,7 +8483,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8400,7 +8500,7 @@ msgstr "Local" msgid "Lock Mouse Cursor" msgstr "Bloquear cursor del ratón" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Bloqueada" @@ -8411,6 +8511,10 @@ msgid "" "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" +"Contiene el cursor del ratón dentro de los límites del widget de renderizado " +"siempre y cuando se encuentre en primer plano. Puedes asignar un atajo de " +"teclado para desbloquearlo.

Si tienes dudas, deja " +"esta opción desactivada." #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 @@ -8426,7 +8530,7 @@ msgstr "Configuración de registro" msgid "Log In" msgstr "Iniciar sesión" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Registros de cobertura de instrucciones JIT" @@ -8434,7 +8538,7 @@ msgstr "Registros de cobertura de instrucciones JIT" msgid "Log Out" msgstr "Cerrar sesión" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Guardar tiempos de dibujado en archivo" @@ -8450,7 +8554,7 @@ msgstr "Salida de registro" msgid "Login Failed" msgstr "Fallo al iniciar sesión" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8461,20 +8565,20 @@ msgstr "" "rendimiento de Dolphin.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Bucle" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Se ha perdido la conexión con el servidor de juego en red..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Bajo" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Más bajo" @@ -8534,7 +8638,7 @@ msgstr "¡Asegúrate de que haya un Skylander en el espacio %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Creador" @@ -8556,12 +8660,12 @@ msgstr "" "del efecto.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Administrar NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Muestreo manual de texturas" @@ -8577,11 +8681,11 @@ msgstr "Enmascarar ROM" msgid "Match Found" msgstr "Se han encontrado coincidencias" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Búfer máximo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "El tamaño máximo del búfer ha cambiado a %1" @@ -8590,7 +8694,7 @@ msgstr "El tamaño máximo del búfer ha cambiado a %1" msgid "Maximum tilt angle." msgstr "Ángulo de inclinación máximo." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Puede empeorar el rendimiento del menú de Wii y de algunos juegos." @@ -8611,7 +8715,7 @@ msgstr "Punto de interrupción en memoria" msgid "Memory Card" msgstr "Tarjeta de memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Administrador de tarjetas de memoria" @@ -8665,11 +8769,11 @@ msgstr "Micrófono" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Varios" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Otros ajustes" @@ -8687,7 +8791,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "No coinciden las estructuras de datos internas." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8714,7 +8818,7 @@ msgstr "Adaptador de módem (tapserver)" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8734,8 +8838,8 @@ msgstr "Modificar espacio" msgid "Modifying Skylander: %1" msgstr "Modificando Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Módulos encontrados: %1" @@ -8743,7 +8847,7 @@ msgstr "Módulos encontrados: %1" msgid "Money:" msgstr "Dinero:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8803,10 +8907,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "N&o a todo" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Comprobación de NAND" @@ -8815,7 +8919,7 @@ msgstr "Comprobación de NAND" msgid "NKit Warning" msgstr "Advertencia NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8848,7 +8952,7 @@ msgstr "" "elegir un valor de gamma, debes igualarlo aquí.

Si " "tienes dudas, deja esta opción en 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -9066,7 +9170,7 @@ msgstr "Sin errores" msgid "No extension selected." msgstr "No has elegido ninguna extensión." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "No se ha cargado o grabado ningún archivo." @@ -9074,7 +9178,7 @@ msgstr "No se ha cargado o grabado ningún archivo." msgid "No game is running." msgstr "No hay ningún juego en ejecución." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "No hay ningún juego en ejecución." @@ -9087,7 +9191,7 @@ msgstr "No has elegido un mod de gráficos." msgid "No input" msgstr "No hay entrada" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "No se ha detectado ningún problema." @@ -9137,8 +9241,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9293,7 +9397,7 @@ msgstr "X de objeto 4" msgid "Object 4 Y" msgstr "Y de objeto 4" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Rango de objeto" @@ -9318,7 +9422,7 @@ msgstr "Encendido" msgid "On Movement" msgstr "Al moverlo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9355,7 +9459,7 @@ msgstr "" "tal vez encuentres llamadas a funciones y rutas de código condicional que " "solo se ejecuten cuando ocurra una acción concreta en el software emulado." -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Documentación en línea" @@ -9363,7 +9467,7 @@ msgstr "&Documentación en línea" msgid "Only Show Collection" msgstr "Mostrar solo tu colección" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9371,7 +9475,7 @@ msgstr "" "Solo añadir símbolos con prefijo:\n" "(Dejar en blanco para añadir todos los símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9390,7 +9494,7 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "Abrir &carpeta contenedora" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Abrir carpeta de &usuario" @@ -9399,7 +9503,7 @@ msgstr "Abrir carpeta de &usuario" msgid "Open Directory..." msgstr "Abrir directorio..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Abrir registro FIFO" @@ -9489,7 +9593,7 @@ msgid "Origin and Destination" msgstr "Origen y destino" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9531,11 +9635,11 @@ msgstr "Remuestreo de salida:" msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Reproducir pu&lsaciones grabadas..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9549,11 +9653,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Nivel de compresión de PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Nivel de compresión de PNG:" @@ -9641,7 +9745,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "Pausar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pausar al terminar la grabación" @@ -9670,6 +9774,9 @@ msgid "" "Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked." msgstr "" +"Pausa el juego cuando la ventana de renderizado no se encuentre en primer " +"plano.

Si tienes dudas, deja esta opción " +"desactivada." #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9690,7 +9797,7 @@ msgstr "Velocidad máxima de los movimientos de balanceo hacia afuera." msgid "Per-Pixel Lighting" msgstr "Iluminación por píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Actualizar la consola a través de Internet" @@ -9698,15 +9805,15 @@ msgstr "Actualizar la consola a través de Internet" msgid "Perform System Update" msgstr "Actualizar la consola" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Período de muestreo de rendimiento (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Período de muestreo de rendimiento (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Estadísticas de rendimiento" @@ -9724,7 +9831,7 @@ msgstr "Espacio de la dirección física" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Elige una tipografía de depuración" @@ -9741,7 +9848,7 @@ msgid "Pitch Up" msgstr "Cabeceo hacia abajo" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plataforma" @@ -9749,7 +9856,7 @@ msgstr "Plataforma" msgid "Play" msgstr "Jugar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Reproducir/grabar" @@ -9757,11 +9864,11 @@ msgstr "Reproducir/grabar" msgid "Play Recording" msgstr "Reproducir grabación" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Set de juego/Disco de poder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opciones de reproducción" @@ -9769,27 +9876,27 @@ msgstr "Opciones de reproducción" msgid "Player" msgstr "Jugador" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Habilidad uno del jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Habilidad dos del jugador uno" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Jugador dos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Habilidad uno del jugador dos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Habilidad dos del jugador dos" @@ -9813,7 +9920,7 @@ msgstr "" "¡Por favor, cambia el valor de «SyncOnSkipIdle» a «True»! El valor está " "desactivado, lo que hace que este problema pase fácilmente." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9848,7 +9955,7 @@ msgstr "Puerto:" msgid "Portal Slots" msgstr "Espacios del portal" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Posible desincronización: podemos haber perdido a %1 en el fotograma %2" @@ -9865,20 +9972,20 @@ msgstr "Efecto de posprocesado:" msgid "Post-Processing Shader Configuration" msgstr "Configuración del sombreador de posprocesado" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" -msgstr "" +msgstr "Power Disc tres" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" -msgstr "" +msgstr "Power Disc dos" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Preferir VS para expandir puntos y líneas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Precargar texturas personalizadas" @@ -9915,7 +10022,7 @@ msgstr "Pulsar el botón de sincronización" msgid "Pressure" msgstr "Presión" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9995,11 +10102,11 @@ msgstr "Perfil" msgid "Program Counter" msgstr "Contador del programa (PC)" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Progreso" @@ -10008,12 +10115,15 @@ msgid "" "Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked." msgstr "" +"Muestra una ventana para confirmar que deseas detener la emulación cuando " +"pulses el botón de Detener.

Si tienes dudas, deja " +"esta opción activada." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Vaciar la caché de la lista de juegos" @@ -10037,7 +10147,7 @@ msgstr "No se pudo activar el sistema de calidad de servicio (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "El sistema de calidad de servicio (QoS) se ha activado correctamente." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Calidad del decodificador DPLII. La latencia de audio aumenta con la calidad." @@ -10070,11 +10180,11 @@ msgstr "R analógico" msgid "READY" msgstr "Listo" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "Módulos RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "Autodetección RSO" @@ -10099,7 +10209,7 @@ msgstr "Fin del rango:" msgid "Range Start: " msgstr "Inicio del rango:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Rango %1" @@ -10107,7 +10217,7 @@ msgstr "Rango %1" msgid "Raw" msgstr "Datos en bruto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Resolución interna en bruto" @@ -10168,7 +10278,7 @@ msgstr "Coincidencias recientes" msgid "Recenter" msgstr "Centrar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Grabar" @@ -10180,11 +10290,11 @@ msgstr "Grabar entradas" msgid "Recording" msgstr "Grabando" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opciones de grabación" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Grabando..." @@ -10257,7 +10367,7 @@ msgid "Refreshing..." msgstr "Actualizando..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Región" @@ -10280,7 +10390,7 @@ msgstr "Parar entrada relativa" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Releases (every few months)" -msgstr "" +msgstr "Versiones oficiales (cada varios meses)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -10290,7 +10400,7 @@ msgstr "Recordar más tarde" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Eliminar" @@ -10330,11 +10440,11 @@ msgstr "Renombrar símbolo" msgid "Render Window" msgstr "Ventana de renderización" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Mostrar en la ventana principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10357,6 +10467,9 @@ msgid "" "Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked." msgstr "" +"Ignora los atajos de teclado si la ventana de renderización no está en " +"primer plano.

Si tienes dudas, deja esta opción " +"activada." #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 @@ -10371,7 +10484,7 @@ msgstr "Reiniciar" msgid "Reset All" msgstr "Reiniciar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Reiniciar el ignorado de errores y advertencias" @@ -10403,7 +10516,7 @@ msgstr "Restablecer vista" msgid "Reset all saved Wii Remote pairings" msgstr "Revierte todas las vinculaciones de mandos de Wii existentes." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Tipo de resolución:" @@ -10552,6 +10665,35 @@ msgid "" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" +"Dentro de las filas de la tabla, puedes hacer clic con el botón izquierdo en " +"las columnas de origen, destino y símbolos para ver las direcciones " +"relacionadas en el visualizador de código. Si haces clic con el botón " +"derecho en las filas seleccionadas, aparecerá un menú contextual.\n" +"\n" +"Si haces clic con el botón derecho en las columnas de origen, destino o " +"símbolo, aparecerá una acción para copiar las direcciones relevantes al " +"portapapeles y otra para marcar puntos de interrupción en dichas " +"direcciones. Ten en cuenta que, en el caso de las columnas de símbolos de " +"origen y destino, estas acciones solo se activarán si todas las filas de la " +"selección tienen un símbolo.\n" +"\n" +"Si haces clic con el botón derecho en la columna de origen de una selección " +"de filas, aparecerá una acción para reemplazar la instrucción de la rama del " +"origen por una instrucción NOP (No Operation, «sin operación»).\n" +"\n" +"Si haces clic con el botón derecho en la columna de destino de una selección " +"de filas, aparecerá una acción para reemplazar la instrucción de los " +"destinos por una instrucción BLR (Branch to Link Register, «bifurcar a " +"registro de vínculos»), pero solo si la instrucción de rama de todos los " +"orígenes almacena el registro de vínculos.\n" +"\n" +"Si haces clic con el botón derecho en la columna de símbolos de origen/" +"destino de una selección de filas, aparecerá una acción para reemplazar las " +"instrucciones al principio del símbolo por una instrucción BLR, pero solo se " +"activará si todas las filas de la selección tienen un símbolo.\n" +"\n" +"Todos los menús contextuales mostrarán la acción de eliminar las filas " +"seleccionadas de entre la lista de candidatas." #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10588,19 +10730,19 @@ msgstr "Rusia" msgid "SD Card" msgstr "Tarjeta SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Tamaño del archivo de tarjeta SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Imagen de tarjeta SD (*.raw);;Todos los archivos (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Ruta de la tarjeta SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Ajustes de la tarjeta SD" @@ -10608,7 +10750,7 @@ msgstr "Ajustes de la tarjeta SD" msgid "SD Root:" msgstr "Raíz de la SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Carpeta de sincronización de la SD:" @@ -10643,11 +10785,11 @@ msgstr "Entorno SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Gua&rdar código" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Gua&rdar estado" @@ -10679,11 +10821,11 @@ msgstr "Guardar instantánea del inspector de ramas" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Exportar guardado" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Guardar registro FIFO" @@ -10701,11 +10843,11 @@ msgstr "Guardado de juego" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Archivos de guardado de juegos (*.sav);; Todos los archivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Importar guardado" @@ -10717,7 +10859,7 @@ msgstr "Guardar el estado más antiguo" msgid "Save Preset" msgstr "Guardar preajuste" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Guardar archivo de grabación como" @@ -10767,23 +10909,23 @@ msgstr "Ranura de guardado 8" msgid "Save State Slot 9" msgstr "Ranura de guardado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Guardar estado en archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Guardar estado en la ranura más antigua" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Guardar estado en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Guardar estado en ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Guardar map&a de símbolos como..." @@ -10803,11 +10945,11 @@ msgstr "Guardar como preajuste..." msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Guardar archivo de salida combinado como" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10821,11 +10963,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Guardar en el mismo directorio que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Guardar archivo de mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Guardar archivo de firmas" @@ -10833,11 +10975,11 @@ msgstr "Guardar archivo de firmas" msgid "Save to Selected Slot" msgstr "Guardar en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Guardar en la ranura %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Guardar..." @@ -10869,7 +11011,7 @@ msgstr "Pantallazo" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Buscar" @@ -10898,7 +11040,7 @@ msgstr "" "Actualmente no se puede buscar en el espacio de la memoria virtual. Ejecuta " "el juego durante unos minutos y vuelve a intentarlo." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Buscar una instrucción" @@ -10906,7 +11048,7 @@ msgstr "Buscar una instrucción" msgid "Search games..." msgstr "Buscar juegos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Búsqueda de instrucciones" @@ -10955,11 +11097,11 @@ msgid "Select Dump Path" msgstr "Seleccionar ruta de volcado" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Seleccionar directorio de exportación" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Seleccionar archivo de figura" @@ -10999,7 +11141,7 @@ msgstr "Seleccionar colección de Skylanders" msgid "Select Skylander File" msgstr "Seleccionar archivo de Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Ranura de guardado %1 - %2" @@ -11007,7 +11149,7 @@ msgstr "Ranura de guardado %1 - %2" msgid "Select State" msgstr "Cargar ranura de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Seleccionar ranura de guardado" @@ -11074,7 +11216,7 @@ msgstr "Seleccionar directorio" msgid "Select a File" msgstr "Seleccionar archivo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Seleccionar carpeta a sincronizar con la imagen de la tarjeta SD" @@ -11082,7 +11224,7 @@ msgstr "Seleccionar carpeta a sincronizar con la imagen de la tarjeta SD" msgid "Select a Game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Seleccionar imagen de tarjeta SD" @@ -11094,7 +11236,7 @@ msgstr "Seleccionar archivo" msgid "Select a game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Seleccionar título a instalar en la NAND" @@ -11102,7 +11244,7 @@ msgstr "Seleccionar título a instalar en la NAND" msgid "Select e-Reader Cards" msgstr "Seleccionar tarjetas e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Elige la dirección del módulo RSO:" @@ -11119,7 +11261,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Seleccionar archivo de claves (volcado OTP/SEEPROM)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Selecciona el archivo de guardado" @@ -11143,7 +11285,7 @@ msgstr "El perfil del mando seleccionado no existe" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "¡El juego seleccionado no existe en la lista de juegos!" @@ -11173,7 +11315,7 @@ msgstr "" "

Si tienes dudas, selecciona la primera opción." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11230,7 +11372,7 @@ msgstr "" "usado por ciertos televisores.

Si tienes dudas, " "selecciona «No»." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11273,7 +11415,7 @@ msgstr "" "circunstancias normales.

Si tienes dudas, " "selecciona Automática." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11295,7 +11437,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posición de la barra sensora:" @@ -11329,7 +11471,7 @@ msgstr "Establecer &valor" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 msgid "Set Brea&kpoint" -msgstr "" +msgstr "Establecer &punto de interrupción" #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 @@ -11364,7 +11506,7 @@ msgstr "Escribe la dirección final del símbolo" msgid "Set symbol size (%1):" msgstr "Ajustar tamaño del símbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11374,7 +11516,7 @@ msgstr "" "los juegos PAL.\n" "Podría no funcionar con todos los juegos." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Establece el idioma del sistema de Wii." @@ -11385,8 +11527,12 @@ msgid "" "

If unsure, select <System Language>." msgstr "" +"Establece el idioma con el que se mostrará la interfaz de usuario de Dolphin." +"

Los cambios solo se aplicarán cuando se reinicie Dolphin." +"

Si tienes dudas, selecciona <Idioma del " +"sistema>." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11400,6 +11546,10 @@ msgid "" "have loaded will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" +"Establece el estilo de la interfaz de usuario de Dolphin. Aquí se " +"presentarán todos los estilos de usuario personalizados que hayas cargado " +"para que puedas elegirlos.

Si tienes dudas, " +"selecciona (Del sistema)." #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" @@ -11410,7 +11560,7 @@ msgstr "" "dirección virtual de la MEM1 y (en el caso de la Wii) la MEM2. Compatible " "con la gran mayoría de los juegos." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11424,7 +11574,7 @@ msgstr "SetupWiiMemory: No puedo crear archivo setting.txt" msgid "Severity" msgstr "Gravedad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilación de sombreadores" @@ -11446,16 +11596,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Mando Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Mostrar velocidad porcentual" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Mostrar ®istro" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Mostrar barra de herramien&tas" @@ -11463,11 +11613,11 @@ msgstr "Mostrar barra de herramien&tas" msgid "Show Active Title in Window Title" msgstr "Mostrar nombre del juego actual en el título de la ventana" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Mostrar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Australia" @@ -11480,7 +11630,7 @@ msgstr "Mostrar el juego actual en Discord" msgid "Show Disabled Codes First" msgstr "Mostrar primero los códigos desactivados" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Mostrar ELF/DOL" @@ -11489,27 +11639,27 @@ msgstr "Mostrar ELF/DOL" msgid "Show Enabled Codes First" msgstr "Mostrar primero los códigos activados" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Mostrar fotogramas por segundo (FPS)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Mostrar duraciones de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Alemania" @@ -11521,23 +11671,23 @@ msgstr "Mostrar superposición de modo de golf" msgid "Show Infinity Base" msgstr "Mostrar base de Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Mostrar registro de teclas" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Japón" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Mostrar indicador de retardo" @@ -11545,19 +11695,19 @@ msgstr "Mostrar indicador de retardo" msgid "Show Language:" msgstr "Mostrar idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Mostrar configuración de ®istro" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Mostrar mensajes de juego en red" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Mostrar latencia de juego en red" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Holanda" @@ -11565,7 +11715,7 @@ msgstr "Holanda" msgid "Show On-Screen Display Messages" msgstr "Mostrar mensajes en pantalla" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Región PAL" @@ -11574,27 +11724,27 @@ msgstr "Región PAL" msgid "Show PC" msgstr "Mostrar PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Mostrar gráficas de rendimiento" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Mostrar plataformas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "Mostrar estadísticas de proyección" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Mostrar regiones" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Mostrar contador de regrabaciones" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Rusia" @@ -11602,51 +11752,51 @@ msgstr "Rusia" msgid "Show Skylanders Portal" msgstr "Mostrar portal de Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "España" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Mostrar colores según velocidad" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostrar estadísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Mostrar reloj del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Taiwán" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Otros" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Mostrar duraciones de VBlanks" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Mostrar WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Mostrar juegos internacionales" @@ -11659,7 +11809,7 @@ msgid "Show in Code" msgstr "Mostrar en código" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Mostrar en memoria" @@ -11686,8 +11836,13 @@ msgid "" "requests, and more.

If unsure, leave this unchecked." "" msgstr "" +"Muestra la interfaz de usuario de depuración de Dolphin. Te permitirá ver y " +"modificar el código y los contenidos en memoria de un juego, establecer " +"puntos de interrupción, examinar peticiones de red y mucho más." +"

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11696,7 +11851,7 @@ msgstr "" "durante una partida de juego en red.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
If unsure, leave " "this checked." msgstr "" +"Muestra mensajes en pantalla sobre la ventana de renderización. Estos " +"mensajes desaparecerán al cabo de unos segundos.

Si " +"tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11729,20 +11887,28 @@ msgid "" "Shows the Mouse Cursor at all times.

If unsure, " "select "On Movement"." msgstr "" +"Muestra el cursor del ratón en todo momento.

Si " +"tienes dudas, selecciona Al moverlo." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 msgid "" "Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." "

If unsure, select this mode." msgstr "" +"Muestra el cursor del ratón durante un breve tiempo cuando se haya movido " +"para luego ocultarlo.

Si tienes dudas, selecciona " +"este modo." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." "

If unsure, leave this checked." msgstr "" +"Muestra el título del juego activo en la barra de título de la ventana de " +"renderización.

Si tienes dudas, deja esta opción " +"activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11753,7 +11919,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11763,7 +11929,7 @@ msgstr "" "fotograma renderizado y la variación estándar.

Si " "tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11773,7 +11939,7 @@ msgstr "" "de fluidez visual.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11792,7 +11958,7 @@ msgstr "" "juego en red.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11800,7 +11966,7 @@ msgstr "" "Muestra varias estadísticas sobre la proyección.

Si " "tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11825,7 +11991,7 @@ msgstr "Cambiar de/a horizontal" msgid "Sideways Wii Remote" msgstr "Mando de Wii en horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Base de datos de firmas" @@ -11849,7 +12015,7 @@ msgid "Signed Integer" msgstr "Entero con signo" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chino simplificado" @@ -11866,7 +12032,7 @@ msgstr "Seis ejes" msgid "Size" msgstr "Tamaño" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11878,7 +12044,7 @@ msgstr "" msgid "Skip" msgstr "Omitir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Omitir dibujado" @@ -11936,7 +12102,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;Todos los archivos (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -12013,7 +12179,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Ordenar alfabéticamente" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Sonido:" @@ -12027,7 +12193,7 @@ msgstr "España" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Español" @@ -12035,11 +12201,11 @@ msgstr "Español" msgid "Speaker Pan" msgstr "Altavoz estéreo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volumen del altavoz:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Especializados (predeterminado)" @@ -12047,7 +12213,7 @@ msgstr "Especializados (predeterminado)" msgid "Specific" msgstr "Específico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12100,7 +12266,7 @@ msgstr "Mando de juego estándar" msgid "Start" msgstr "Comenzar" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Comenzar &juego en red..." @@ -12109,11 +12275,11 @@ msgstr "Comenzar &juego en red..." msgid "Start Branch Watch" msgstr "Iniciar inspección de ramas" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Iniciar una nueva búsqueda de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Grabar pulsaciones" @@ -12121,7 +12287,7 @@ msgstr "&Grabar pulsaciones" msgid "Start Recording" msgstr "Comenzar grabación" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Empezar en pantalla completa" @@ -12133,7 +12299,7 @@ msgstr "Comenzar con parches de Riivolution" msgid "Start with Riivolution Patches..." msgstr "Comenzar con parches de Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Juego en ejecución" @@ -12193,7 +12359,7 @@ msgstr "Se han saltado las instrucciones." msgid "Stepping" msgstr "Avanzar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Estéreo" @@ -12222,12 +12388,12 @@ msgid "Stick" msgstr "Palanca" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Detener" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Detener la reproducción o grabación de pulsaciones" @@ -12274,7 +12440,7 @@ msgstr "" "XFB a la RAM (y textura)

Si tienes dudas, deja esta " "opción activada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Estirar a la ventana" @@ -12294,7 +12460,7 @@ msgstr "Barra de toque" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Estilo" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -12313,8 +12479,8 @@ msgstr "Stylus" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Todo correcto" @@ -12341,7 +12507,7 @@ msgstr "Exportados satisfactoriamente %n de %1 archivo(s) de guardado." msgid "Successfully exported save files" msgstr "Las partidas guardadas se han exportado correctamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Se han extraído correctamente los certificados de la NAND." @@ -12353,12 +12519,12 @@ msgstr "El archivo se ha extraído correctamente." msgid "Successfully extracted system data." msgstr "Los datos del sistema se han extraído correctamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Archivo de guardado importado correctamente." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "El título ha sido instalado correctamente en la NAND." @@ -12381,12 +12547,12 @@ msgstr "Ayuda" msgid "Supported file formats" msgstr "Formatos de archivo soportados" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Compatible con tarjetas SD y SDHC. El tamaño por defecto es de 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Envolvente" @@ -12447,7 +12613,7 @@ msgstr "Nombre de símbolo:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Símbolos" @@ -12476,7 +12642,7 @@ msgstr "" "puntuales al utilizar dos o más núcleos (Activado: el ajuste más compatible; " "Desactivado: el ajuste más rápido)." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12497,11 +12663,11 @@ msgid "Synchronizing save data..." msgstr "Sincronizando datos guardados..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Entrada TAS" @@ -12514,7 +12680,7 @@ msgstr "Herramientas TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Etiquetas" @@ -12532,7 +12698,7 @@ msgstr "Cola" msgid "Taiwan" msgstr "Taiwán" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Capturar pantalla" @@ -12573,7 +12739,7 @@ msgstr "Caché de texturas" msgid "Texture Cache Accuracy" msgstr "Precisión de la caché de texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Volcado de texturas" @@ -12585,7 +12751,7 @@ msgstr "Filtrado de texturas" msgid "Texture Filtering:" msgstr "Filtrado de texturas:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Superponer formato de textura" @@ -12629,7 +12795,7 @@ msgstr "El archivo IPL no es un volcado correcto conocido. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Faltan las particiones de los Clásicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12637,7 +12803,7 @@ msgstr "" "No se pudo reparar la NAND. Recomendamos que vuelvas a volcar los datos de " "la consola original y pruebes otra vez desde cero." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "La NAND ha sido reparada." @@ -12657,7 +12823,7 @@ msgstr "" "La cantidad de dinero que tiene este Skylander. Debe ser un valor de entre 0 " "y 65000." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -13030,7 +13196,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "El archivo especificado «{0}» no existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -13098,7 +13264,7 @@ msgstr "Falta la partición de actualización." msgid "The update partition is not at its normal position." msgstr "La partición de actualización no está en su posición normal." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13124,7 +13290,7 @@ msgstr "La partición {0} no está alineada correctamente." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Tema" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -13497,7 +13663,7 @@ msgstr "Tiempo de espera agotado" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Título" @@ -13506,12 +13672,12 @@ msgid "To" msgstr "A" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Alternar &pantalla completa" @@ -13600,7 +13766,7 @@ msgstr "Controles de herramienta" msgid "Toolbar" msgstr "Barra de herramientas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Superior" @@ -13651,7 +13817,7 @@ msgid "Toy code:" msgstr "Código de juguete:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chino tradicional" @@ -13671,8 +13837,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Error del servidor de paso" @@ -13757,7 +13923,7 @@ msgstr "USB de Gecko" msgid "USB Whitelist Error" msgstr "Error en la lista de dispositivos USB permitidos" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13768,7 +13934,7 @@ msgstr "" "equipos de gama baja.

Si tienes dudas, selecciona " "este modo." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13781,7 +13947,7 @@ msgstr "" "imagen con los ubershaders híbridos y tengas una tarjeta gráfica muy potente." "
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13795,7 +13961,7 @@ msgstr "" "afectando mínimamente al rendimiento, pero los resultados dependerán del " "controlador de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "No se puede detectar el módulo RSO" @@ -13866,11 +14032,11 @@ msgstr "Archivos ISO de GC/Wii sin comprimir (*.iso *.gcm)" msgid "Undead" msgstr "Muertos" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Deshacer carga del estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Deshacer guardado del estado" @@ -13890,7 +14056,7 @@ msgstr "" "Si desinstalas el archivo WAD, eliminarás la versión actual del título que " "se encuentra en la NAND sin borrar sus datos guardados. ¿Quieres continuar?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Estados Unidos" @@ -13987,7 +14153,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Desconocido(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Desconocido(%1).bin" @@ -14003,9 +14169,9 @@ msgstr "Extraer ROM" msgid "Unlock Cursor" msgstr "Desbloquear cursor" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" -msgstr "" +msgstr "Desbloqueado: %1" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -14046,7 +14212,7 @@ msgid "Up" msgstr "Arriba" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Actualizar" @@ -14121,7 +14287,7 @@ msgstr "Utilizar todos los datos guardados de Wii" msgid "Use Built-In Database of Game Names" msgstr "Utilizar base de datos interna de nombres de juegos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Usar códec sin pérdida (FFV1)" @@ -14129,7 +14295,7 @@ msgstr "Usar códec sin pérdida (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Utilizar apuntado con ratón" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usar modo PAL60 (EuRGB60)" @@ -14142,8 +14308,11 @@ msgid "" "Use RetroAchievements rich presence in your Discord status.

Show " "Current Game on Discord must be enabled." msgstr "" +"Incluye la presencia enriquecida de RetroAchievements en la información " +"mostrada en Discord.

Es necesario activar la opción Mostrar el juego " +"actual en Discord." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14221,6 +14390,9 @@ msgid "" "column.

If unsure, leave this checked." msgstr "" +"Utiliza la base de datos de nombres con formato correcto de Dolphin en la " +"columna de títulos de la lista de juegos.

Si tienes " +"dudas, deja esta opción activada." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -14235,7 +14407,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14246,7 +14418,7 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Si no es así y tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14553,7 +14725,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advertencia" @@ -14678,7 +14850,7 @@ msgstr "Occidental (Windows-1252)" msgid "Whammy" msgstr "Barra de trémolo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14691,7 +14863,7 @@ msgstr "" "
Si tienes dudas, deja esta opción activada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14704,7 +14876,7 @@ msgstr "" "arbitrarios.
Si tienes dudas, deja esta opción activada." "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivos USB permitidos para acceso directo a Bluetooth" @@ -14754,7 +14926,7 @@ msgstr "Botones del mando de Wii" msgid "Wii Remote Gyroscope" msgstr "Giroscopio del mando de Wii" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Ajustes del mando de Wii" @@ -14782,7 +14954,7 @@ msgstr "Wii y su mando" msgid "Wii data is not public yet" msgstr "Los datos de Wii todavía no son públicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Archivos de guardado de Wii (*.bin);;Todos los archivos (*)" @@ -14790,7 +14962,7 @@ msgstr "Archivos de guardado de Wii (*.bin);;Todos los archivos (*)" msgid "WiiTools Signature MEGA File" msgstr "Archivo de firmas MEGA de WiiTools" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Resolución de ventana" @@ -14821,7 +14993,7 @@ msgstr "Mundo" msgid "Write" msgstr "Escribir" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "Escribir volcado del registro de bloque JIT" @@ -14870,11 +15042,11 @@ msgstr "Región incorrecta" msgid "Wrong revision" msgstr "Revisión incorrecta" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "Escrito a «%1»." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "Escrito a «{0}»." @@ -14925,7 +15097,7 @@ msgstr "Sí" msgid "Yes to &All" msgstr "Sí a &todo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14934,7 +15106,7 @@ msgstr "" "Vas a convertir los contenidos del archivo %2 a la carpeta %1. Se eliminarán " "todos los contenidos de la carpeta. ¿Seguro que quieres continuar?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -15078,7 +15250,7 @@ msgstr "" "¿Quieres parar para resolver el problema?\n" "Si seleccionas «No», el audio se oirá con ruidos." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -15303,6 +15475,9 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ El equipo de Dolphin. «GameCube» y «Wii» son marcas comerciales " +"de Nintendo. Dolphin no está afiliado a Nintendo y es completamente " +"independiente." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/fa.po b/Languages/po/fa.po index f63eb42fab..db424e6eca 100644 --- a/Languages/po/fa.po +++ b/Languages/po/fa.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: H.Khakbiz , 2011\n" "Language-Team: Persian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -165,18 +165,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -184,11 +184,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -200,8 +200,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -326,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -367,11 +367,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&نقاط انفصال" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -379,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -426,13 +426,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -446,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&برابرسازی" @@ -471,40 +471,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&فایل" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&پيشروى فریم" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "تنظیمات &گرافیک" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&کمک" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "تنظیم &شرت کاتها" @@ -524,7 +524,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -536,7 +536,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&جیت" @@ -548,11 +548,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&بارگذاری وضعیت" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -562,11 +562,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -574,11 +574,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -586,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -595,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&باز کردن..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&گزینه ها" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "مکث" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&شروع بازی" @@ -619,7 +619,7 @@ msgstr "&شروع بازی" msgid "&Properties" msgstr "خواص" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "ثبت کردن" @@ -645,11 +645,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "شروع &دوباره" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&توقف" @@ -681,7 +681,7 @@ msgstr "&توقف" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -689,7 +689,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&ابزارها" @@ -699,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -725,11 +725,11 @@ msgstr "&ویکی" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -843,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1028,7 +1028,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1132,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1174,8 +1174,8 @@ msgstr "دقت:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1255,7 +1255,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "آداپتور:" @@ -1332,7 +1332,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "اضافه کردن..." @@ -1346,7 +1346,7 @@ msgstr "اضافه کردن..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1540,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1580,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "تحلیل کردن" @@ -1606,15 +1606,15 @@ msgstr "آنتی آلیاسینگ:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1632,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1664,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "نسبت طول به عرض تصویر:" @@ -1714,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "صدا" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "پشتوانه صدا:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1734,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "اتوماتیک" @@ -1755,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1763,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1819,19 +1819,19 @@ msgstr "ثبت اشاره گر پایه" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "تنظیمات پشتوانه" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "پشتوانه:" @@ -1874,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "نشان" @@ -1898,7 +1898,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "بنیانی" @@ -1950,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1964,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2000,7 +2000,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2012,11 +2012,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "پائین" @@ -2193,20 +2193,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "حافظه موقت:" @@ -2255,7 +2255,7 @@ msgstr "" msgid "C Stick" msgstr "استیک سی" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2359,11 +2359,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "تعویض &دیسک..." @@ -2470,7 +2470,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2488,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2496,7 +2496,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2508,7 +2508,7 @@ msgstr "گپ زدن" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "جستجوی کد تقلب" @@ -2516,7 +2516,7 @@ msgstr "جستجوی کد تقلب" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2554,11 +2554,11 @@ msgstr "انتخاب فایل برای باز کردن" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2589,7 +2589,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "پاک کردن" @@ -2597,7 +2597,7 @@ msgstr "پاک کردن" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2618,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "بستن" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2662,7 +2662,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2689,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2699,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "پیکربندی" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "تائید برای توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "اتصال کیبورد USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2885,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3013,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3022,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3032,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3054,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3245,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3261,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "کشور:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3298,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "بحرانی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "حذف قسمتی از تصوير" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3314,18 +3314,18 @@ msgstr "" msgid "Crossfade" msgstr "ضرب دری" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3345,11 +3345,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3357,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3408,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3416,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3495,7 +3495,7 @@ msgstr "منطقه مرده" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "اشکال زدائی کردن" @@ -3505,7 +3505,7 @@ msgstr "اشکال زدائی کردن" msgid "Decimal" msgstr "دسیمال" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3552,7 +3552,7 @@ msgstr "پیش فرز" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "آیزو پیش فرز:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3576,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3622,7 +3622,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "شرح" @@ -3671,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "شناسایی" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3701,7 +3701,7 @@ msgstr "تنظیمات دستگاه" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3709,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3733,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3741,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "از کارانداختن مه" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4134,11 +4134,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "هلندی" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "خ&روج" @@ -4162,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "به روز شدن های اولیه حافظه" @@ -4236,7 +4236,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "ریسمان شبیه ساز قبلا اجرا شده است" @@ -4244,7 +4244,7 @@ msgstr "ریسمان شبیه ساز قبلا اجرا شده است" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4262,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4284,16 +4284,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4341,7 +4341,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4367,7 +4367,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4380,7 +4380,7 @@ msgstr "فعال کردن واحد مدیریت حافظه" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "فعال کردن پويش تصاعدی (Progressive Scan)" @@ -4389,11 +4389,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "فعال کردن اسکیرین سیور" @@ -4413,11 +4413,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "فعال کردن خطوط فریم" @@ -4473,7 +4473,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4504,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4512,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4529,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4557,7 +4557,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4565,7 +4565,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4573,7 +4573,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4602,7 +4602,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "انگلیسی" @@ -4619,7 +4619,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4643,7 +4643,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4682,9 +4682,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4697,24 +4697,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4744,7 +4744,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4850,12 +4850,12 @@ msgstr "" msgid "Euphoria" msgstr "خوشی" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4899,11 +4899,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "" @@ -4918,7 +4918,7 @@ msgstr "" msgid "Export Recording" msgstr "صادر کردن ضبط" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "صادر کردن ضبط..." @@ -4946,7 +4946,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4974,7 +4974,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5012,7 +5012,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "پخش کننده فیفو" @@ -5030,7 +5030,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5050,7 +5050,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5071,7 +5071,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5125,7 +5125,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5152,18 +5152,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5190,7 +5190,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5200,8 +5200,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5213,7 +5213,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5241,11 +5241,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5293,11 +5293,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5356,11 +5356,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5421,27 +5421,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5492,7 +5492,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5528,7 +5528,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5542,7 +5542,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5550,24 +5550,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "مشخصات فایل" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5685,7 +5685,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "۱۶:۹ اجباری" @@ -5693,7 +5693,7 @@ msgstr "۱۶:۹ اجباری" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "۴:۳ اجباری" @@ -5725,11 +5725,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5803,11 +5803,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "محدوده فریم" @@ -5815,7 +5815,7 @@ msgstr "محدوده فریم" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5866,7 +5866,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "فرانسوی" @@ -5885,8 +5885,8 @@ msgid "From" msgstr "از" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5942,11 +5942,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6090,7 +6090,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6103,7 +6103,7 @@ msgstr "آی دی بازی:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6211,7 +6211,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "کدهای گیکو" @@ -6243,13 +6243,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "آلمانی" @@ -6325,7 +6325,7 @@ msgstr "سبز چپ" msgid "Green Right" msgstr "سبز راست" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6407,7 +6407,7 @@ msgstr "مخفی" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6431,11 +6431,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6474,11 +6474,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6504,7 +6504,7 @@ msgstr "شرت کاتها" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6562,7 +6562,7 @@ msgid "IR" msgstr "فروسرخ" #. 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:363 msgid "IR Sensitivity:" msgstr "میزان حساسیت فروسرخ" @@ -6626,14 +6626,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6677,7 +6677,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6686,7 +6686,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6701,7 +6701,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6802,16 +6802,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6831,8 +6831,8 @@ msgstr "مشخصات" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "مشخصات" @@ -6845,11 +6845,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "ورودی" @@ -6875,7 +6875,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "درج کارت اس دی" @@ -6892,7 +6892,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6915,7 +6915,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7001,7 +7001,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7026,7 +7026,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7051,7 +7051,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7087,13 +7087,13 @@ msgstr "رشته جستجوی نامعتبر (فقط رشته های با طول msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "ایتالیایی" @@ -7106,11 +7106,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7118,47 +7118,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7170,11 +7170,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7185,16 +7185,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "ژاپنی" @@ -7254,12 +7254,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "کره ای" @@ -7306,23 +7306,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7330,7 +7330,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7420,11 +7420,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7436,15 +7436,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "بارگذاری" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7456,7 +7456,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "بارگذاری بافت اشیاء دلخواه" @@ -7464,7 +7464,7 @@ msgstr "بارگذاری بافت اشیاء دلخواه" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7574,19 +7574,19 @@ msgstr "بارگذاری وضعیت - شکاف ۸" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7598,35 +7598,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7640,7 +7640,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7666,7 +7666,7 @@ msgstr "پیکر بندی ثبت وقایع" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7674,7 +7674,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7690,27 +7690,27 @@ msgstr "خروجی های واقعه نگار" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7770,7 +7770,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7787,12 +7787,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7808,11 +7808,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7821,7 +7821,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7842,7 +7842,7 @@ msgstr "" msgid "Memory Card" msgstr "کارت حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7893,11 +7893,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "متفرقه" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "تنظیمات متفرقه" @@ -7913,7 +7913,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7933,7 +7933,7 @@ msgstr "" msgid "Modifier" msgstr "پیراینده" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7949,8 +7949,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7958,7 +7958,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8016,10 +8016,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8028,7 +8028,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8055,7 +8055,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8265,7 +8265,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8273,7 +8273,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8286,7 +8286,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8330,8 +8330,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8480,7 +8480,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "محدوده شیی" @@ -8505,7 +8505,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8527,7 +8527,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "" @@ -8535,13 +8535,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8558,7 +8558,7 @@ msgstr "گشودن" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8567,7 +8567,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8657,7 +8657,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8699,11 +8699,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8717,11 +8717,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8809,7 +8809,7 @@ msgstr "مکث" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8854,7 +8854,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "نورپردازی به ازای هر پیکسل" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8862,15 +8862,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8888,7 +8888,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8905,7 +8905,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8913,7 +8913,7 @@ msgstr "" msgid "Play" msgstr "شروع بازی" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8921,11 +8921,11 @@ msgstr "" msgid "Play Recording" msgstr "شروع ضبط" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "گزینه های بازنواخت" @@ -8933,27 +8933,27 @@ msgstr "گزینه های بازنواخت" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8975,7 +8975,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9008,7 +9008,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9024,20 +9024,20 @@ msgstr "افکت ها:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9072,7 +9072,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9141,11 +9141,11 @@ msgstr "پروفایل" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9159,7 +9159,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9183,7 +9183,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9215,11 +9215,11 @@ msgstr "آر آنالوگ" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9244,7 +9244,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9252,7 +9252,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9311,7 +9311,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "ضبط" @@ -9323,11 +9323,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "گزینه های ضبط" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9391,7 +9391,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9424,7 +9424,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "پاک کردن" @@ -9461,11 +9461,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "نمایش در پنجره اصلی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9498,7 +9498,7 @@ msgstr "شروع دوباره" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9530,7 +9530,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9709,19 +9709,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9729,7 +9729,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9764,11 +9764,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "ذخ&یره وضعیت" @@ -9800,11 +9800,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9822,11 +9822,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9838,7 +9838,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9888,23 +9888,23 @@ msgstr "ذخیره وضعیت - شکاف ۸" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9924,11 +9924,11 @@ msgstr "" msgid "Save as..." msgstr "ذخیره بعنوان..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9939,11 +9939,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9951,11 +9951,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9985,7 +9985,7 @@ msgstr "عکس فوری" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "جستجو" @@ -10012,7 +10012,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10020,7 +10020,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10065,11 +10065,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10109,7 +10109,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10117,7 +10117,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10184,7 +10184,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10192,7 +10192,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10204,7 +10204,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10212,7 +10212,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10229,7 +10229,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "انتخاب فایل ذخیره" @@ -10253,7 +10253,7 @@ msgstr "پروفایل انتخاب شده وجود ندارد" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10277,7 +10277,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10307,7 +10307,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10329,7 +10329,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10343,7 +10343,7 @@ msgstr "" msgid "Send" msgstr "فرستادن" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "موقعیت سنسور بار:" @@ -10408,14 +10408,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10427,7 +10427,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10446,7 +10446,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10460,7 +10460,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10482,16 +10482,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "نمایش &ثبت وقایع" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "نمایش نوار &ابزار" @@ -10499,11 +10499,11 @@ msgstr "نمایش نوار &ابزار" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10516,7 +10516,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10525,27 +10525,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "نمایش فریم بر ثانیه" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "نمایش فرانسه" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "نمایش گیم کیوب" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10557,23 +10557,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "نمایش ورودی تصویر" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "نمایش ایتالیا" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "نمایش کره" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10581,19 +10581,19 @@ msgstr "" msgid "Show Language:" msgstr "نمایش زبان:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "نمایش &پیکربندی ثبت وقایع" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10601,7 +10601,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "نمایش پال" @@ -10610,27 +10610,27 @@ msgstr "نمایش پال" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "نمایش پایگاه ها" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "نمایش مناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10638,51 +10638,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "نمایش آمار" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "نمایش تایوان" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "نمایش ایالات متحده آمریکا" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "نمایش وی" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10695,7 +10695,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10723,13 +10723,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10768,47 +10768,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10830,7 +10830,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10854,7 +10854,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "چینی ساده شده" @@ -10871,7 +10871,7 @@ msgstr "" msgid "Size" msgstr "سایز" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10881,7 +10881,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10998,7 +10998,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11012,7 +11012,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "اسپانیایی" @@ -11020,11 +11020,11 @@ msgstr "اسپانیایی" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "حجم صدای اسپیکر:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11032,7 +11032,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11074,7 +11074,7 @@ msgstr "کنترولر استاندارد" msgid "Start" msgstr "شروع" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11083,11 +11083,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11095,7 +11095,7 @@ msgstr "" msgid "Start Recording" msgstr "شروع ضبط" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11107,7 +11107,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11167,7 +11167,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11196,12 +11196,12 @@ msgid "Stick" msgstr "استیک" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11237,7 +11237,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "کشیدن تصویر به سایز فعلی پنجره" @@ -11276,8 +11276,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11304,7 +11304,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11316,12 +11316,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11344,12 +11344,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11407,7 +11407,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11433,7 +11433,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11452,11 +11452,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "زبان سیستم:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "ورودی تاس" @@ -11469,7 +11469,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11487,7 +11487,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "گرفتن عکس فوری" @@ -11526,7 +11526,7 @@ msgstr "حافظه ميانى بافت اشیاء" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11538,7 +11538,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "قالب بندی بافت اشیاء" @@ -11575,13 +11575,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11596,7 +11596,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11890,7 +11890,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11948,7 +11948,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12270,7 +12270,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "عنوان" @@ -12279,12 +12279,12 @@ msgid "To" msgstr "به" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12373,7 +12373,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "بالا" @@ -12424,7 +12424,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "چینی سنتی" @@ -12444,8 +12444,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12526,14 +12526,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12541,7 +12541,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12550,7 +12550,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12613,11 +12613,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "خنثی کردن وضعیت بارگذاری" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "" @@ -12635,7 +12635,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12727,7 +12727,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12743,7 +12743,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12786,7 +12786,7 @@ msgid "Up" msgstr "بالا" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "به روز کردن" @@ -12857,7 +12857,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12865,7 +12865,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12879,7 +12879,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12947,14 +12947,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13217,7 +13217,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "اخطار" @@ -13306,7 +13306,7 @@ msgstr "" msgid "Whammy" msgstr "بد شانسی" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13314,7 +13314,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13322,7 +13322,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13372,7 +13372,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13400,7 +13400,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13408,7 +13408,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13439,7 +13439,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13488,11 +13488,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13543,14 +13543,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13647,7 +13647,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/fi.po b/Languages/po/fi.po index 5b46a4b94b..32d01c7f15 100644 --- a/Languages/po/fi.po +++ b/Languages/po/fi.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Aleksi, 2023-2024\n" "Language-Team: Finnish (http://app.transifex.com/delroth/dolphin-emu/" @@ -93,7 +93,7 @@ msgstr "" "%1\n" "haluaa liittyä ryhmääsi." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -147,7 +147,7 @@ msgstr "%1 (hidas)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -182,7 +182,7 @@ msgstr "%1 ei tue tätä ominaisuutta järjestelmässäsi." msgid "%1 doesn't support this feature." msgstr "%1 ei tue tätä ominaisuutta." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -192,11 +192,11 @@ msgstr "" "%2 kohde(tta)\n" "Nykyinen kehys: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 liittyi" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 lähti" @@ -204,11 +204,11 @@ msgstr "%1 lähti" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 on avannut %2/%3 saavutusta, saavuttaen %4/%5 pistettä" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 ei ole kelvollinen ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 golffaa nyt" @@ -220,8 +220,8 @@ msgstr "%1 on pelissä %2" msgid "%1 memory ranges" msgstr "%1 muistialuetta" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -238,7 +238,7 @@ msgstr "%1 istunto löytyi" msgid "%1 sessions found" msgstr "%1 istuntoa löytyi" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -346,11 +346,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Tietoa" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Lisää muistin keskeytyskohta" @@ -367,11 +367,11 @@ msgstr "&Lisää funktio" msgid "&Add..." msgstr "&Lisää..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Konekielen kääntäjä" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Ääniasetukset" @@ -387,11 +387,11 @@ msgstr "&Reunaton ikkuna" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Keskeytyskohdat" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Vianhallintajärjestelmä" @@ -399,15 +399,15 @@ msgstr "&Vianhallintajärjestelmä" msgid "&Cancel" msgstr "&Peruuta" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Huijauskoodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Tarkista päivitykset..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Tyhjennä symbolit" @@ -415,7 +415,7 @@ msgstr "&Tyhjennä symbolit" msgid "&Clone..." msgstr "&Kloonaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Koodi" @@ -423,7 +423,7 @@ msgstr "&Koodi" msgid "&Connected" msgstr "&Yhdistetty" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Ohjainasetukset" @@ -446,13 +446,13 @@ msgstr "&Poista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Poista vahti" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Poista vahdit" @@ -466,11 +466,11 @@ msgstr "&Muokkaa koodia..." msgid "&Edit..." msgstr "&Muokkaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Poista levy" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulaatio" @@ -491,40 +491,40 @@ msgid "&Export as .gci..." msgstr "Vie .gci-muodossa..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Fontti..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Kehys kerrallaan" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Vapaan katselun asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Luo symbolit lähteestä" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub-repositorio" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Grafiikka-asetukset" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Ohjeet" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Pikanäppäinasetukset" @@ -544,7 +544,7 @@ msgstr "&Tuo tila..." msgid "&Import..." msgstr "&Tuo..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity-alusta" @@ -556,7 +556,7 @@ msgstr "&Lisää blr" msgid "&Interframe Blending" msgstr "&Kehysten välinen sekoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -568,11 +568,11 @@ msgstr "&Kieli:" msgid "&Load Branch Watch" msgstr "&Lataa haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Lataa tila" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Lataa symbolikartta" @@ -582,11 +582,11 @@ msgstr "&Lataa tiedosto nykyiseen osoitteeseen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Lukitse vahdit" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Lukitse käyttöliittymäelementit paikoilleen" @@ -594,11 +594,11 @@ msgstr "&Lukitse käyttöliittymäelementit paikoilleen" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Muisti" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Nauhoitus" @@ -606,7 +606,7 @@ msgstr "&Nauhoitus" msgid "&Mute" msgstr "&Mykistä" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Verkko" @@ -615,23 +615,23 @@ msgid "&No" msgstr "&Ei" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Avaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Muuta HLE-funktiot" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Keskeytä" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Käynnistä" @@ -639,7 +639,7 @@ msgstr "&Käynnistä" msgid "&Properties" msgstr "&Ominaisuudet" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Vain luku -tila" @@ -647,7 +647,7 @@ msgstr "&Vain luku -tila" msgid "&Refresh List" msgstr "&Päivitä lista" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Rekisterit" @@ -665,11 +665,11 @@ msgid "&Rename symbol" msgstr "&Nimeä symboli uudelleen" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Nollaa" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Resurssipakettien hallinta" @@ -677,7 +677,7 @@ msgstr "&Resurssipakettien hallinta" msgid "&Save Branch Watch" msgstr "&Tallenna haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Tallenna symbolikartta" @@ -685,7 +685,7 @@ msgstr "&Tallenna symbolikartta" msgid "&Scan e-Reader Card(s)..." msgstr "&Skannaa e-Reader kortteja..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Skylanders-portaali" @@ -693,7 +693,7 @@ msgstr "&Skylanders-portaali" msgid "&Speed Limit:" msgstr "&Nopeusrajoitus:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Lopeta" @@ -701,7 +701,7 @@ msgstr "&Lopeta" msgid "&Theme:" msgstr "&Teema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Säikeet" @@ -709,7 +709,7 @@ msgstr "&Säikeet" msgid "&Tool" msgstr "T&yökalu" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Työkalut" @@ -719,21 +719,21 @@ msgstr "&Poista ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "&Poista vahtien lukitus" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Näytä" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Vahti" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Kotisivu" @@ -745,11 +745,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "K&yllä" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "Kohdetta '%1' ei löydy, symbolinimiä ei luotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "Kohdetta '%1' ei löydy, etsitään sen sijaan yleisiä funktioita" @@ -797,7 +797,7 @@ msgstr "- Vähennyslasku" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Tuntematon--" @@ -863,7 +863,7 @@ msgstr "16-bittinen etumerkillinen kokonaisluku" msgid "16-bit Unsigned Integer" msgstr "16-bittinen etumerkitön kokonaisluku" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -947,7 +947,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 lohkoa)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1048,7 +1048,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "Poissa käytöstä Hardcore-tilassa." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "Ellet ole varma, jätä tämä pois." @@ -1185,7 +1185,7 @@ msgstr "" "toimi oikein.\n" "Käytä omalla vastuulla.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Action Replay -koodi" @@ -1227,8 +1227,8 @@ msgstr "Tarkkuus:" msgid "Achievement Settings" msgstr "Saavutusasetukset" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Saavutukset" @@ -1328,7 +1328,7 @@ msgstr "Aktivoi nettipelin keskustelu" msgid "Active" msgstr "Aktiivinen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "Aktiiviset Infinity-hahmot:" @@ -1340,7 +1340,7 @@ msgstr "Aktiivisten säikeiden jono" msgid "Active threads" msgstr "Aktiiviset säikeet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Sovitin" @@ -1348,7 +1348,7 @@ msgstr "Sovitin" msgid "Adapter Detected" msgstr "Sovitin havaittu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Sovitin:" @@ -1405,7 +1405,7 @@ msgstr "Lisää vahtiin" #: 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:329 msgid "Add..." msgstr "Lisää..." @@ -1419,7 +1419,7 @@ msgstr "Lisää..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Osoite" @@ -1664,7 +1664,7 @@ msgstr "Salli sopimattomat alueasetukset" msgid "Allow Usage Statistics Reporting" msgstr "Salli käyttötilastojen raportointi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Salli SD-kortille kirjoittaminen" @@ -1706,7 +1706,7 @@ msgstr "Sisälle laitettua levyä ei löytynyt, vaikka sitä odotettiin." msgid "Anaglyph" msgstr "Anaglyfi" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analysoi" @@ -1732,15 +1732,15 @@ msgstr "Reunanpehmennys:" msgid "Any Region" msgstr "Mikä vain alue" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Lisää allekirjoitus kohteeseen" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "Lisää allekirjoitus &olemassaolevaan allekirjoitustiedostoon..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "Käyt&ä allekirjoitustiedostoa..." @@ -1760,7 +1760,7 @@ msgstr "Apploaderin päiväys:" msgid "Apply" msgstr "Käytä" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Käytä allekirjoitustiedostoa" @@ -1792,16 +1792,16 @@ msgstr "Oletko varma?" msgid "Area Sampling" msgstr "Alueotanta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Kuvasuhde" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Kuvasuhdekorjattu sisäinen kuvatarkkuus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Kuvasuhde:" @@ -1844,11 +1844,11 @@ msgstr "Liitä MotionPlus" msgid "Audio" msgstr "Ääni" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Äänen sisäinen järjestelmä:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Äänen venytyksen asetukset" @@ -1864,7 +1864,7 @@ msgstr "Tekijä" msgid "Authors" msgstr "Tekijät" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automaattinen" @@ -1889,7 +1889,7 @@ msgstr "" "\n" "Valitse tietty sisäinen kuvatarkkuus. " -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Säädä ikkunan kokoa automaattisesti" @@ -1897,15 +1897,15 @@ msgstr "Säädä ikkunan kokoa automaattisesti" msgid "Auto-Hide" msgstr "Automaattinen piilotus" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "Havaitaanko RSO-moduulit automaattisesti?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Automaattinen synkronointi kansion kanssa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1959,19 +1959,19 @@ msgstr "BP-rekisteri " msgid "Back Chain" msgstr "Ketju kutsujan suuntaan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Sisäinen järjestelmä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Sisäisen järjestelmän monisäikeisyys" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Sisäisen järjestelmän asetukset" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Sisäinen järjestelmä:" @@ -2014,7 +2014,7 @@ msgstr "Virheellinen arvo annettu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banneri" @@ -2038,7 +2038,7 @@ msgstr "Pohjaosoite" msgid "Base priority" msgstr "Perusprioriteetti" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Perustiedot" @@ -2090,11 +2090,11 @@ msgstr "Binäärinen SSL (luku)" msgid "Binary SSL (write)" msgstr "Binäärinen SSL (kirjoitus)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bittivirta (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2108,7 +2108,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Lohkokoko" @@ -2146,7 +2146,7 @@ msgstr "" "Bluetooth-läpipäästötila on käytössä, mutta Dolphin on käännetty ilman " "libusb-kirjastoa. Läpipäästötilaa ei voi käyttää." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Käynnistä keskeytettynä" @@ -2158,11 +2158,11 @@ msgstr "BootMiin NAND-varmuuskopiotiedosto (*.bin);;Kaikki tiedostot (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMiin avaintiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Reunaton koko näytön tila" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Alareuna" @@ -2360,20 +2360,20 @@ msgstr "Broadband-sovittimen virhe" msgid "Broadband Adapter MAC Address" msgstr "Broadband-sovittimen MAC-osoit" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Selaa &nettipeli-istuntoja..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Puskurin koko:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Puskurin koko muuttui arvoon %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Puskuri:" @@ -2425,7 +2425,7 @@ msgstr "Tekijä(t): %1" msgid "C Stick" msgstr "C-sauva" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "L&uo allekirjoitustiedosto..." @@ -2449,7 +2449,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Välimuistillinen tulkki (hitaampi)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2539,11 +2539,11 @@ msgstr "Nettipeli-istuntoa ei voi käynnistää, kun peli on vielä käynnissä! #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Peruuta" @@ -2631,7 +2631,7 @@ msgstr "Keskitä ja kalibr" msgid "Change &Disc" msgstr "Vaihda &levy" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Vaihda &levy..." @@ -2653,7 +2653,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2684,7 +2684,7 @@ msgstr "" "liike ei ole mahdollista, ja kamera voi vain kiertää ja zoomata " "alkuperäiseen pisteeseen asti." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Huijauskoodien vaihtamisella on vaikutusta vasta pelin " @@ -2694,7 +2694,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Kanavaosio (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Asetettu hahmo on virheellinen!" @@ -2706,7 +2706,7 @@ msgstr "Keskustelu" msgid "Cheat Code Editor" msgstr "Huijauskoodien muokkaus" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Koodihaku" @@ -2714,7 +2714,7 @@ msgstr "Koodihaku" msgid "Cheats Manager" msgstr "Koodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Tarkista NAND..." @@ -2754,11 +2754,11 @@ msgstr "Valitse avattava tiedosto" msgid "Choose a file to open or create" msgstr "Valitse luotava tai avattava tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Valitse ensisijainen syötetiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Valitse toissijainen syötetiedosto" @@ -2789,7 +2789,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Tyhjennä" @@ -2797,7 +2797,7 @@ msgstr "Tyhjennä" msgid "Clear Branch Watch" msgstr "Tyhjennä haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Tyhjennä välimuisti" @@ -2818,7 +2818,7 @@ msgstr "Kloonaa ja &muokkaa koodia..." msgid "Close" msgstr "Sulje" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "As&etukset" @@ -2862,7 +2862,7 @@ msgstr "Väriavaruus" msgid "Column &Visibility" msgstr "Sarakkeen &näkyvyys" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Yhdistä &kaksi allekirjoitustiedostoa..." @@ -2895,7 +2895,7 @@ msgstr "" "huolimatta on mahdollista, että kyseessä on hyvä vedos verrattuna pelin Wii " "U eShop -julkaisuun. Dolphin ei voi varmentaa tätä." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Käännä varjostimet ennen käynnistystä" @@ -2905,7 +2905,7 @@ msgstr "Käännetään varjostimia" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Pakkausmenetelmä" @@ -3020,7 +3020,7 @@ msgstr "Määritä asetukset" msgid "Configure Controller" msgstr "Ohjaimen asetukset" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphinin asetukset" @@ -3044,7 +3044,7 @@ msgstr "Ulostuloasetukset" msgid "Confirm" msgstr "Vahvista" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Vahvista sisäisen järjestelmän muutos" @@ -3052,7 +3052,7 @@ msgstr "Vahvista sisäisen järjestelmän muutos" msgid "Confirm on Stop" msgstr "Vahvista pysäytyksessä" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3063,15 +3063,15 @@ msgstr "Vahvistus" msgid "Connect" msgstr "Yhdistä" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Yhdistä tasapainolauta" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Yhdistä USB-näppäimistö" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Yhdistä Wii Remote %1" @@ -3091,7 +3091,7 @@ msgstr "Yhdistä Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Yhdistä Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Yhdistä Wii Remoteja" @@ -3244,8 +3244,8 @@ msgstr "Yhtenevyys" msgid "Convergence:" msgstr "Yhtenevyys:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Muunto epäonnistui." @@ -3253,9 +3253,9 @@ msgstr "Muunto epäonnistui." msgid "Convert" msgstr "Muunna" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Muunna tiedosto kansioksi nyt" @@ -3263,9 +3263,9 @@ msgstr "Muunna tiedosto kansioksi nyt" msgid "Convert File..." msgstr "Muunna tiedosto..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Muunna kansio tiedostoksi nyt" @@ -3287,8 +3287,8 @@ msgstr "" "säästä merkittävästi tilaa verrattuna ISO-muotoon. Jatketaanko kuitenkin?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Muunnetaan..." @@ -3521,7 +3521,7 @@ msgstr "" "jälkeen? Siinä tapauksessa muistikortin paikka on ehkä määritettävä " "uudelleen asetuksista." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Keskuspalvelimen haku epäonnistui" @@ -3537,13 +3537,13 @@ msgstr "Tiedoston luku epäonnistui." msgid "Country:" msgstr "Maa:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Luo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Luo Infinity-tiedosto" @@ -3574,11 +3574,11 @@ msgstr "Tekijä:" msgid "Critical" msgstr "Kriittinen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Rajaa" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3594,11 +3594,11 @@ msgstr "" msgid "Crossfade" msgstr "Ristihäivytys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Karsi kulmapisteitä suorittimella" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3609,7 +3609,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Nykyinen alue" @@ -3629,11 +3629,11 @@ msgstr "Nykyinen peli" msgid "Current thread" msgstr "Nykyinen säie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Oma" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Oma (venytä)" @@ -3641,15 +3641,15 @@ msgstr "Oma (venytä)" msgid "Custom Address Space" msgstr "Nykyinen osoiteavaruus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Muokatun kuvasuhteen korkeus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Muokatun kuvasuhteen leveys" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Muokattu kuvasuhde:" @@ -3694,7 +3694,7 @@ msgstr "DJ-levysoitin" msgid "DK Bongos" msgstr "DK-bongot" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP:n emulointimoottori" @@ -3702,15 +3702,15 @@ msgstr "DSP:n emulointimoottori" msgid "DSP HLE (fast)" msgstr "DSP-HLE (nopea)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP-HLE (suositus)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP-LLE-tulkki (hyvin hidas)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP-LLE-uudelleenkääntäjä (hidas)" @@ -3786,7 +3786,7 @@ msgstr "Katvealue" msgid "Debug" msgstr "Virheenjäljitys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Virheenjäljitys" @@ -3796,7 +3796,7 @@ msgstr "Virheenjäljitys" msgid "Decimal" msgstr "Desimaali" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Purkulaatu:" @@ -3843,7 +3843,7 @@ msgstr "Oletus" msgid "Default Config (Read Only)" msgstr "Oletusasetukset (vain luku)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Oletuslaite" @@ -3859,7 +3859,7 @@ msgstr "Oletus-ISO:" msgid "Default thread" msgstr "Oletussäie" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Lykkää EFB-välimuistin mitätöintiä" @@ -3867,7 +3867,7 @@ msgstr "Lykkää EFB-välimuistin mitätöintiä" msgid "Defer EFB Copies to RAM" msgstr "Lykkää EFB:n kopiointia RAM-muistiin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3920,7 +3920,7 @@ msgstr "Syvyys:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Kuvaus" @@ -3969,7 +3969,7 @@ msgstr "Irrallinen" msgid "Detect" msgstr "Havaitse" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Havaitaan RSO-moduuleja" @@ -3999,7 +3999,7 @@ msgstr "Laiteasetukset" msgid "Device VID (e.g., 057e)" msgstr "Laitteen VID (esim. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Laite:" @@ -4007,7 +4007,7 @@ msgstr "Laite:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "Tiedosto %1 ei ole kelvollinen Riivolution XML -tiedosto." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Tummentaa ruudun viiden minuutin epäaktiivisuuden jälkeen." @@ -4031,7 +4031,7 @@ msgstr "Poista rajoituslaatikko" msgid "Disable Copy Filter" msgstr "Poista kopiointisuodatin käytöstä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Poista EFB-VRAM-kopiointi käytöstä" @@ -4039,11 +4039,11 @@ msgstr "Poista EFB-VRAM-kopiointi käytöstä" msgid "Disable Emulation Speed Limit" msgstr "Poista emulaation nopeusrajoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Poista nopea muistihaku (Fastmem) käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Poista nopean muistikäytön kenttä käytöstä" @@ -4051,11 +4051,11 @@ msgstr "Poista nopean muistikäytön kenttä käytöstä" msgid "Disable Fog" msgstr "Poista sumu käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Poista JIT-välimuisti käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Poista laaja koodin tulokohtien hakurakenne käytöstä" @@ -4074,7 +4074,7 @@ msgstr "" "rikkoutuvat.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4455,7 +4455,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4474,11 +4474,11 @@ msgstr "Turbo-painikkeen irrottamisen pituus (kehyksiä):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Hollanti" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "P&oistu" @@ -4510,7 +4510,7 @@ msgstr "" "Tämä sopii kilpailuhenkisiin peleihin, joissa reiluus ja vähäinen viive ovat " "etenkin tärkeitä." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Aikaiset muistipäivitykset" @@ -4584,7 +4584,7 @@ msgstr "Sulautettu kehyspuskuri (EFB)" msgid "Empty" msgstr "Tyhjä" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emulaattorisäie on jo käynnissä" @@ -4592,7 +4592,7 @@ msgstr "Emulaattorisäie on jo käynnissä" msgid "Emulate Disc Speed" msgstr "Emuloi levyn nopeutta" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Emuloi Infinity-alustaa" @@ -4612,7 +4612,7 @@ msgstr "" "Emuloi oikean laitteiston optisen levyn nopeutta. Käytöstä poistaminen " "saattaa aiheutaa epävakautta. Oletuksena True" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Emuloidut USB-laitteet" @@ -4637,16 +4637,16 @@ msgstr "Emulaation nopeus" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Ota käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Käytä ohjelmointirajapinnan tarkistuskerroksia" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Käytä äänen venytystä" @@ -4694,7 +4694,7 @@ msgstr "Ota Encore-saavutukset käyttöön" msgid "Enable FPRF" msgstr "Ota FPRF käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Käytä grafiikkamodeja" @@ -4738,7 +4738,7 @@ msgstr "" "käytöstä samalla, kun peli on käynnissä, vaatii pelin sulkemista, ennen kuin " "hardcore-tilan voi ottaa uudelleen käyttöön." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "Käytä JIT-lohkojen seurantaa" @@ -4751,7 +4751,7 @@ msgstr "Ota MMU käyttöön" msgid "Enable Progress Notifications" msgstr "Ota edistymisilmoitukset käyttöön" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Ota progressiivinen kuva käyttöön" @@ -4760,11 +4760,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Ota RetroAchievements.org-yhteys käyttöön" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Ota tärinä käyttöön" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ota näytönsäästäjä käyttöön" @@ -4784,11 +4784,11 @@ msgstr "Ota epäviralliset saavutukset käyttöön" msgid "Enable Usage Statistics Reporting" msgstr "Ota käyttötilastojen raportointi käyttöön" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Käytä WiiLink-palvelua WiiConnect24:n apuna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ota rautalankatila käyttöön" @@ -4856,7 +4856,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4905,7 +4905,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4919,7 +4919,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4947,7 +4947,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Venyttää ääntä vastaamaan emuloinnin nopeutta." @@ -4984,7 +4984,7 @@ msgstr "" "POIS = Nopea)

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4996,7 +4996,7 @@ msgstr "" "esimerkiksi Forecast- ja Nintendo-kanavien yhteydessä\n" "Voit lukea palveluehdot osoitteesta https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5009,7 +5009,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5044,7 +5044,7 @@ msgstr "Enetin alustus epäonnistui" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Englanti" @@ -5061,7 +5061,7 @@ msgstr "Syötä XLink Kai -asiakasohjelmistoa suorittavan laitteen IP-osoite:" msgid "Enter USB device ID" msgstr "Syötä USB-laitteen tunniste" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Syötä vahdittava osoite:" @@ -5086,7 +5086,7 @@ msgid "" msgstr "" "Syötä IP-osoite ja portti sille tap-palvelimelle, johon haluat yhdistää." -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Syötä RSO-moduulin osoite:" @@ -5125,9 +5125,9 @@ msgstr "Syötä RSO-moduulin osoite:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5140,24 +5140,24 @@ msgstr "Syötä RSO-moduulin osoite:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5187,7 +5187,7 @@ msgstr "Virhe sovittimen avauksessa: %1" msgid "Error collecting save data!" msgstr "Virhe tallennustiedoston keräämisessä!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5299,12 +5299,12 @@ 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:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eurooppa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Poissulkevat Uber-varjostimet" @@ -5348,11 +5348,11 @@ msgstr "Odotettiin lausekkeen alkua." msgid "Expected variable name." msgstr "Odotettiin muuttujanimeä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Kokeellinen" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Vie kaikki Wii-tallennustiedostot" @@ -5367,7 +5367,7 @@ msgstr "Vieminen epäonnistui" msgid "Export Recording" msgstr "Vie nauhoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Vie nauhoitus..." @@ -5395,7 +5395,7 @@ msgstr "Vie .&gcs-muodossa..." msgid "Export as .&sav..." msgstr "Vie .&sav-muodossa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5423,7 +5423,7 @@ msgstr "Ulkoinen" msgid "External Frame Buffer (XFB)" msgstr "Ulkoinen kehyspuskuri (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Vie varmenteet NAND-muistista" @@ -5461,7 +5461,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO-toistaja" @@ -5481,7 +5481,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui" @@ -5501,7 +5501,7 @@ msgstr "Skylanderin poistaminen paikasta %1 epäonnistui!" msgid "Failed to connect to Redump.org" msgstr "Redump.orgiin yhdistäminen epäonnistui" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Palvelinyhteys epäonnistui: %1" @@ -5522,7 +5522,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Infinity-tiedoston luonti epäonnistui" @@ -5584,7 +5584,7 @@ msgstr "Tallennustiedostoista %n:n %1:sta vienti epäonnistui." msgid "Failed to export the following save files:" msgstr "Seuraavien tallennustiedostojen vienti epäonnistui:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista epäonnistui" @@ -5614,14 +5614,14 @@ msgstr "Yhden tai useamman D3D-symbolin haku epäonnistui" msgid "Failed to import \"%1\"." msgstr "Kohteen \"%1\" tuonti epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5629,7 +5629,7 @@ msgstr "" "Tallennustiedoston tuonti epäonnistui. Annettu tiedosto on vioittunut tai ei " "ole kelvollinen Wii-tallennustiedosto." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5663,7 +5663,7 @@ msgid "Failed to install pack: %1" msgstr "Paketin asennus epäonnistui: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Tämän julkaisun asennus NAND-muistiin epäonnistui." @@ -5674,8 +5674,8 @@ msgid "" msgstr "" "Portissa %1 kuuntelu epäonnistui. Onko toinen nettipeli-istunto käynnissä?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "RSO-moduulin lataaminen epäonnistui kohdassa %1" @@ -5687,7 +5687,7 @@ 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:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Karttatiedoston '%1' lataus epäonnistui" @@ -5719,11 +5719,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Skylanderin muokkaus epäonnistui!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "Tiedoston \"%1\" avaaminen kirjoittamista varten epäonnistui." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "Tiedoston \"{0}\" avaaminen kirjoittamista varten epäonnistui." @@ -5773,11 +5773,11 @@ msgstr "Tiedoston avaaminen epäonnistui." msgid "Failed to open server" msgstr "Palvelimen avaaminen epäonnistui" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Infinity-tiedoston avaaminen epäonnistui!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5847,11 +5847,11 @@ msgstr "Syötetiedostosta \"{0}\" lukeminen epäonnistui." msgid "Failed to read selected savefile(s) from memory card." msgstr "Tallennustiedosto(je)n lukeminen muistikortilta epäonnistui." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Infinity-tiedoston lukeminen epäonnistui!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5925,27 +5925,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "Haaravahtitiedoston \"%1\" tallennus epäonnistui" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "FIFO-lokin tallennus epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Koodikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Allekirjoitustiedoston tallentaminen tiedostoon '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Symbolikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' tallentaminen epäonnistui" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -6002,7 +6002,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Virhe" @@ -6040,7 +6040,7 @@ msgstr "" msgid "Field of View" msgstr "Näkökenttä" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Hahmon numero:" @@ -6054,7 +6054,7 @@ msgstr "Tiedoston tiedot" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Tiedostomuoto" @@ -6062,24 +6062,24 @@ msgstr "Tiedostomuoto" msgid "File Format:" msgstr "Tiedostomuoto:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Tiedoston tiedot" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Tiedostonimi" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Tiedostopolku" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Tiedostokoko" @@ -6207,7 +6207,7 @@ msgstr "" "Asennusohjeita löytyy tältä sivulta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Pakota 16:9-kuvasuhde" @@ -6215,7 +6215,7 @@ msgstr "Pakota 16:9-kuvasuhde" msgid "Force 24-Bit Color" msgstr "Pakote 24-bittinen värisyvyys" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Pakota 4:3-kuvasuhde" @@ -6247,11 +6247,11 @@ msgstr "Pakota kuunteluportti:" msgid "Force Nearest" msgstr "Pakota lähin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Pakollisesti pois päältä, koska %1 ei tue VS-laajentamista." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Pakollisesti päällä, koska %1 ei tue geometriavarjostimia." @@ -6336,11 +6336,11 @@ msgstr "Kehys kerrallaan: lisää nopeutta" msgid "Frame Advance Reset Speed" msgstr "Kehys kerrallaan: palauta nopeus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Kehysvedostus" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Kehysväli" @@ -6348,7 +6348,7 @@ msgstr "Kehysväli" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Kehysvedoskuva(t) '{0}' on/ovat jo olemassa. Ylikirjoitetaanko?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Nauhoitettavien kehysten määrä:" @@ -6403,7 +6403,7 @@ msgstr "Vapaa katselu päälle/pois" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Ranska" @@ -6422,8 +6422,8 @@ msgid "From" msgstr "Mistä" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Mistä:" @@ -6479,11 +6479,11 @@ msgstr "GBA-äänenvoimakkuus" msgid "GBA Window Size" msgstr "GBA-ikkunan koko" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1:n ROM:ksi vaihtui \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1:n ROM pois käytöstä" @@ -6655,7 +6655,7 @@ msgid "Game Gamma:" msgstr "Pelin gamma:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Pelin tunniste" @@ -6668,7 +6668,7 @@ msgstr "Pelin tunniste:" msgid "Game Status" msgstr "Pelin tila" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Peliksi valittu \"%1\"" @@ -6780,7 +6780,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koodit" @@ -6812,13 +6812,13 @@ msgstr "Luo uusi tilastoidentiteetti" msgid "Generated AR code(s)." msgstr "AR-koodi(t) luotu." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Luotu symbolinimet lähteestä '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Saksa" @@ -6900,7 +6900,7 @@ msgstr "Vihreä vasen" msgid "Green Right" msgstr "Vihreä oikea" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Ruudukkonäkymä" @@ -6982,7 +6982,7 @@ msgstr "Piilota" msgid "Hide &Controls" msgstr "Piilota &komennot" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Piilota kaikki" @@ -7006,11 +7006,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Korkea" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Korkein" @@ -7054,11 +7054,11 @@ msgstr "" "Sopii rennoille peleille vähintään 3 pelaajan kesken, mahdollisesti " "epävakaiden tai suuriviiveisten yhteyksien tapauksessa." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Isäntäkoneen syötevastuu on pois päältä" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Isäntäkoneen syötevastuu on päällä" @@ -7084,7 +7084,7 @@ msgstr "Pikanäppäimet" msgid "Hotkeys Require Window Focus" msgstr "Pikanäppäimet vaativat kohdistetun ikkunan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybridi-Uber-varjostimet" @@ -7148,7 +7148,7 @@ msgid "IR" msgstr "Infrapuna" #. 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:363 msgid "IR Sensitivity:" msgstr "Infrapunatarkkuus:" @@ -7247,7 +7247,7 @@ msgstr "" "Jos tämä ei ole käytössä, emuloidun ohjaimen yhteys riippuu siihen " "linkitetyn varsinaisen ohjaimen (jos sellainen on) yhteydestä." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7259,7 +7259,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7316,7 +7316,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Esitä XFB välittömästi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7331,7 +7331,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Tuo BootMii-NAND-varmuuskopio..." @@ -7346,7 +7346,7 @@ msgstr "Tuonti epäonnistui" msgid "Import Save File(s)" msgstr "Tuo tallennustiedosto(ja)" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Tuo Wii-tallennustiedosto..." @@ -7454,16 +7454,16 @@ msgstr "Vähittäinen kääntö" msgid "Incremental Rotation (rad/sec)" msgstr "Vähittäinen kääntö (rad/s)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Infinity-hahmon luonti." #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Infinity-hallinta" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Infinity-hahmo (*.bin);;" @@ -7486,8 +7486,8 @@ msgstr "Tiedot" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Tiedot" @@ -7500,11 +7500,11 @@ msgid "Inject" msgstr "Lisää koodia" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Syöte" @@ -7530,7 +7530,7 @@ msgstr "Lisää tyhjä käsky" msgid "Insert &nop" msgstr "Lisää &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Lisää SD-kortti" @@ -7547,7 +7547,7 @@ msgstr "Asennusosio (%1)" msgid "Install Update" msgstr "Asenna päivitys" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Asenna WAD..." @@ -7570,7 +7570,7 @@ msgstr "Käsky" msgid "Instruction Breakpoint" msgstr "Käskyn keskeytyskohta" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Käsky:" @@ -7666,7 +7666,7 @@ msgstr "Sisäinen virhe AR-koodia luonnissa." msgid "Interpreter (slowest)" msgstr "Tulkki (hitain)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Tulkkiydin" @@ -7691,7 +7691,7 @@ msgstr "Virheellinen paketti %1 annettu: %2" msgid "Invalid Player ID" msgstr "Virheellinen pelaajatunniste" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Virheellinen RSO-moduulin osoite: %1" @@ -7716,7 +7716,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Virheellinen syöte kentässä \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Virheellinen syöte" @@ -7752,13 +7752,13 @@ msgstr "Virheellinen hakumerkkijono (vain parillisia pituuksia tuetaan)" msgid "Invalid title ID." msgstr "Virheellinen julkaisutunniste." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Virheellinen vahtiosoite: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italia" @@ -7771,11 +7771,11 @@ msgstr "Italia" msgid "Item" msgstr "Esin" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT:n lohkolinkitys pois" @@ -7783,47 +7783,47 @@ msgstr "JIT:n lohkolinkitys pois" msgid "JIT Blocks" msgstr "JIT-lohkot" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT-haara pois" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT-liukuluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT-kokonaisluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT-liukuluku-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT-paritettu-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT-IXz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT-Ibzx-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT-Iwz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT pois (JIT-ydin)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT-paritettu pois" @@ -7835,11 +7835,11 @@ msgstr "JIT-kääntäjä ARM64-alustalle (suositus)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-kääntäjä x86-64-alustalle (suositus)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT-rekisterivälimuisti pois" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT-järjestelmärekisterit pois" @@ -7853,16 +7853,16 @@ msgstr "" "Näin ei pitäisi koskaan tapahtua. Ilmoitathan tästä ongelmasta " "vianhallintajärjestelmään. Dolphin sulkeutuu nyt." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "JIT ei ole aktiivinen" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japani" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japani" @@ -7924,12 +7924,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Poista pelaaja" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korea" @@ -7976,23 +7976,23 @@ msgstr "Viimeksi sijoitettu:" msgid "Last reset:" msgstr "Viimeksi nollattu:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Viive:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Viive: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Viiv: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Viiv: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Viive: ~80 ms" @@ -8000,7 +8000,7 @@ msgstr "Viive: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Näiden julkaisuiden käynnistäminen voi myös korjata ongelmat." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Tulostauluko" @@ -8096,11 +8096,11 @@ msgstr "Valo" msgid "Limit Chunked Upload Speed:" msgstr "Rajoita lohkotun lähetyksen nopeutta:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Listan sarakkeet" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Listanäkymä" @@ -8112,15 +8112,15 @@ msgstr "Kuunnellaan" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Lataa" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Lataa &huono karttatiedosto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Lataa &muu karttatiedosto..." @@ -8132,7 +8132,7 @@ msgstr "Lataa haaravahti &tiedostosta..." msgid "Load Branch Watch snapshot" msgstr "Lataa haaravahtitiedosto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Lataa muokatut tekstuurit" @@ -8140,7 +8140,7 @@ msgstr "Lataa muokatut tekstuurit" msgid "Load File" msgstr "Avaa tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Lataa GameCube-päävalikko" @@ -8250,19 +8250,19 @@ msgstr "Palauta tila 8" msgid "Load State Slot 9" msgstr "Palauta tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Palauta tila tiedostosta" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Palauta tila paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Käynnistä Wii-järjestelmävalikko %1" @@ -8274,28 +8274,28 @@ msgstr "Lataa ja kirjoita isäntäkoneen tallennustiedosto" msgid "Load from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Palauta tila paikasta %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Lataa karttatiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Käynnistä vWii-järjestelmävalikko %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Lataa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Symbolit lähteestä '%1' ladattu" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8306,7 +8306,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8323,7 +8323,7 @@ msgstr "Paikallinen" msgid "Lock Mouse Cursor" msgstr "Lukitse hiiren osoitin paikoilleen" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Lukittu" @@ -8349,7 +8349,7 @@ msgstr "Lokiasetukset" msgid "Log In" msgstr "Kirjaudu sisään" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Kirjoita JIT:n käskykattavuus lokiin" @@ -8357,7 +8357,7 @@ msgstr "Kirjoita JIT:n käskykattavuus lokiin" msgid "Log Out" msgstr "Kirjaudu ulo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Kirjoita hahmonnusaika lokitiedostoon" @@ -8373,7 +8373,7 @@ msgstr "Lokin ulostulot" msgid "Login Failed" msgstr "Sisäänkirjautuminen epäonnistui" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8384,20 +8384,20 @@ msgstr "" "mittaamiseen.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Silmukka" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Yhteys nettipelipalvelimeen menetettiin..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Matala" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Matalin" @@ -8457,7 +8457,7 @@ msgstr "Varmista, että paikassa %1 on Skylander-hahmo!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Tekijä" @@ -8479,12 +8479,12 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Hallitse NAND-muistia" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Manuaalinen tekstuuriotanta" @@ -8500,11 +8500,11 @@ msgstr "Peite-ROM" msgid "Match Found" msgstr "Tulos löytyi" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Korkein puskurin arvo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Puskurin korkein arvo vaihtui arvoon %1" @@ -8513,7 +8513,7 @@ msgstr "Puskurin korkein arvo vaihtui arvoon %1" msgid "Maximum tilt angle." msgstr "Suurin kallistuskulma." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" "Saattaa aiheuttaa hidastumisongelmia Wii-valikossa ja joissain peleissä." @@ -8535,7 +8535,7 @@ msgstr "Muistin keskeytyskohta" msgid "Memory Card" msgstr "Muistikortti" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Muistikorttien hallinta" @@ -8593,11 +8593,11 @@ msgstr "Mikrofoni" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Sekalaiset" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Sekalaiset asetukset" @@ -8615,7 +8615,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Ristiriita sisäisissä tietorakenteissa." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8642,7 +8642,7 @@ msgstr "Modeemisovitin (tap-palvelin)" msgid "Modifier" msgstr "Muunnin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8662,8 +8662,8 @@ msgstr "Muokkaa paikkaa" msgid "Modifying Skylander: %1" msgstr "Muokataan Skylanderia: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Löydetyt moduulit: %1" @@ -8671,7 +8671,7 @@ msgstr "Löydetyt moduulit: %1" msgid "Money:" msgstr "Raha:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8731,10 +8731,10 @@ msgstr "Kerroin" msgid "N&o to All" msgstr "E&i kaikkiin" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-tarkistus" @@ -8743,7 +8743,7 @@ msgstr "NAND-tarkistus" msgid "NKit Warning" msgstr "NKit-varoitus" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8776,7 +8776,7 @@ msgstr "" "

Ellet ole varma, jätä asetus arvoon 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8994,7 +8994,7 @@ msgstr "Ei virheitä." msgid "No extension selected." msgstr "Ei valittua lisäosaa." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Ei ladattua/nauhoitettua tiedostoa." @@ -9002,7 +9002,7 @@ msgstr "Ei ladattua/nauhoitettua tiedostoa." msgid "No game is running." msgstr "Peli ei ole käynnissä." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Peli ei ole käynnissä." @@ -9015,7 +9015,7 @@ msgstr "Grafiikkamodia ei ole valittu" msgid "No input" msgstr "Ei syötettä" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Ongelmia ei löytynyt." @@ -9064,8 +9064,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9220,7 +9220,7 @@ msgstr "Kohteen 4 X" msgid "Object 4 Y" msgstr "Kohteen 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Olioväli" @@ -9245,7 +9245,7 @@ msgstr "Päällä" msgid "On Movement" msgstr "Liikkeen yhteydessä" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9281,7 +9281,7 @@ msgstr "" "funktiokutsuja ja ehdollisia koodireittejä, jotka suoritetaan vain silloin, " "kun tietty toiminto tapahtuu emuloidussa ohjelmistossa." -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Verkko-&ohje" @@ -9289,7 +9289,7 @@ msgstr "Verkko-&ohje" msgid "Only Show Collection" msgstr "Näytä vain kokoelma" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9297,7 +9297,7 @@ msgstr "" "Lisää vain symbolit, jotka alkavat näin:\n" "(Jätä tyhjäksi saadaksesi kaikki symbolit)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9316,7 +9316,7 @@ msgstr "Avaa" msgid "Open &Containing Folder" msgstr "Avaa &kansio" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Avaa &käyttäjäkansio" @@ -9325,7 +9325,7 @@ msgstr "Avaa &käyttäjäkansio" msgid "Open Directory..." msgstr "Avaa hakemisto..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Avaa FIFO-loki" @@ -9415,7 +9415,7 @@ msgid "Origin and Destination" msgstr "Alku ja loppu" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9457,11 +9457,11 @@ msgstr "Kuvan uudelleenotanta:" msgid "Overwritten" msgstr "Ylikirjoitettu" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Toista nauhoitus..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9475,11 +9475,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG:n pakkaustaso" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG:n pakkaustaso:" @@ -9567,7 +9567,7 @@ msgstr "Keskeytä" msgid "Pause Branch Watch" msgstr "Keskeytä haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Keskeytä nauhoituksen loputtua" @@ -9617,7 +9617,7 @@ msgstr "Korkein nopeus ulospäin suuntautuville heilahduksille." msgid "Per-Pixel Lighting" msgstr "Kuvapistekohtainen valaistus" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Tee verkossa järjestelmäpäivitys" @@ -9625,15 +9625,15 @@ msgstr "Tee verkossa järjestelmäpäivitys" msgid "Perform System Update" msgstr "Tee järjestelmäpäivitys" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Suorituskyvyn otosikkuna (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Suorituskyvyn otosikkuna (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Suorituskykytilastot" @@ -9651,7 +9651,7 @@ msgstr "Fyysinen osoiteavaruus" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Valitse virheenjäljitysfontti" @@ -9668,7 +9668,7 @@ msgid "Pitch Up" msgstr "Nyökkäyskulma ylös" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Alusta" @@ -9676,7 +9676,7 @@ msgstr "Alusta" msgid "Play" msgstr "Pelaa" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Toista / nauhoita" @@ -9684,11 +9684,11 @@ msgstr "Toista / nauhoita" msgid "Play Recording" msgstr "Toista nauhoitus" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Lelusarja/Voimakiekko" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Toiston asetukset" @@ -9696,27 +9696,27 @@ msgstr "Toiston asetukset" msgid "Player" msgstr "Pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Ensimmäinen pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Ensimmäisen pelaajan ensimmäinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Ensimmäisen pelaajan toinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Toinen pelaaja" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Toisen pelaajan ensimmäinen kyky" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Toisen pelaajan toinen kyky" @@ -9740,7 +9740,7 @@ msgstr "" "Valitse SyncOnSkipIdle-asetus arvoon True! Asetus ei ole tällä hetkellä " "käytössä, mikä altistaa kyseiselle ongelmalle." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "Aloita peli, ennen kuin teet haun standardimuistialueilla." @@ -9773,7 +9773,7 @@ msgstr "Portti:" msgid "Portal Slots" msgstr "Portaalipaikat" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mahdollinen desynkronoituminen havaittu: %1 on voinut desynkronoitua " @@ -9791,20 +9791,20 @@ msgstr "Jälkikäsittelyefekti:" msgid "Post-Processing Shader Configuration" msgstr "Jälkikäsittelyvarjostimen asetukset" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Käytä kulmapistevarjostinta pisteiden ja viivojen laajentamiseen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Esihae muokatut tekstuurit" @@ -9843,7 +9843,7 @@ msgstr "Paina synkronointipainiketta" msgid "Pressure" msgstr "Paine" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9920,11 +9920,11 @@ msgstr "Profiili" msgid "Program Counter" msgstr "Ohjelmalaskuri" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Edistyminen" @@ -9938,7 +9938,7 @@ msgstr "" msgid "Public" msgstr "Julkinen" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Tyhjennä peliluettelon välimuisti" @@ -9962,7 +9962,7 @@ msgstr "QoS-tekniikan käynnistäminen ei onnistunut." msgid "Quality of Service (QoS) was successfully enabled." msgstr "QoS-tekniikan käynnistys onnistui." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "DPLII-purkamisen laatu. Ääniviive kasvaa laadun myötä." @@ -9994,11 +9994,11 @@ msgstr "R-analogi" msgid "READY" msgstr "VALMIS" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO-moduulit" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO:n automaattinen havainta" @@ -10023,7 +10023,7 @@ msgstr "Alueen loppu:" msgid "Range Start: " msgstr "Alueen alku:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Taso %1" @@ -10031,7 +10031,7 @@ msgstr "Taso %1" msgid "Raw" msgstr "Raaka" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Raaka sisäinen kuvatarkkuus" @@ -10090,7 +10090,7 @@ msgstr "Viimeaikaiset osumat" msgid "Recenter" msgstr "Keskitä" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Nauhoita" @@ -10102,11 +10102,11 @@ msgstr "Nauhoita syötteitä" msgid "Recording" msgstr "Nauhoitus" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Nauhoituksen asetukset" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Nauhoitus käynnissä..." @@ -10178,7 +10178,7 @@ msgid "Refreshing..." msgstr "Päivittyy..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Alue" @@ -10211,7 +10211,7 @@ msgstr "Muistuta myöhemmin" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Poista" @@ -10251,11 +10251,11 @@ msgstr "Uudelleennimeä symboli" msgid "Render Window" msgstr "Hahmonnusikkuna" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Hahmonna pääikkunaan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10290,7 +10290,7 @@ msgstr "Nollaa" msgid "Reset All" msgstr "Nollaa kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Nollaa ohittaen paniikkikäsittelijä" @@ -10322,7 +10322,7 @@ msgstr "Palauta näkymä" msgid "Reset all saved Wii Remote pairings" msgstr "Poista kaikki tallennetut Wii Remote -laiteparit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Kuvatarkkuuden tyyppi:" @@ -10507,19 +10507,19 @@ msgstr "Venäjä" msgid "SD Card" msgstr "SD-kortti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD-kortin tiedostokoko:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-korttikuva (*.raw);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kortin polku:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-korttiasetukset" @@ -10527,7 +10527,7 @@ msgstr "SD-korttiasetukset" msgid "SD Root:" msgstr "SD-juuri:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD-synkronointikansio:" @@ -10562,11 +10562,11 @@ msgstr "SSL-konteksti" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Ta&llenna koodi" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Tal&lenna tila" @@ -10598,11 +10598,11 @@ msgstr "Tallenna haaravahtitiedosto" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Tallennustiedostojen vienti" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Tallenna FIFO-loki" @@ -10620,11 +10620,11 @@ msgstr "Pelin tallennustiedosto" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Pelien tallennustiedostot (*.sav);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Tallennustiedostojen tuonti" @@ -10636,7 +10636,7 @@ msgstr "Tallenna tila vanhimpaan" msgid "Save Preset" msgstr "Tallenna esiasetukset" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Tallenna nauhoitustiedosto nimellä" @@ -10686,23 +10686,23 @@ msgstr "Tallenna tila 8" msgid "Save State Slot 9" msgstr "Tallenna tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Tallenna tila tiedostoon" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Tallenna tilan vanhimpaan paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Tallenna tila paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Tallenna symbolikartta &nimellä..." @@ -10722,11 +10722,11 @@ msgstr "Tallenna esiasetuksena..." msgid "Save as..." msgstr "Tallenna nimellä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Tallenna yhdistetty ulostulotiedosto nimellä" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10740,11 +10740,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Tallenna ROMin kanssa samaan hakemistoon" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Tallenna karttatiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Tallenna allekirjoitustiedosto" @@ -10752,11 +10752,11 @@ msgstr "Tallenna allekirjoitustiedosto" msgid "Save to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Tallenna tila paikkaan %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Tallenna..." @@ -10788,7 +10788,7 @@ msgstr "Kuvakaappaus" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Haku" @@ -10817,7 +10817,7 @@ msgstr "" "Haku ei ole tällä hetkellä mahdollinen näennäisosoiteavaruudessa. Pelaa " "peliä hetken aikaa ja yritä uudelleen." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Etsi käskyä" @@ -10825,7 +10825,7 @@ msgstr "Etsi käskyä" msgid "Search games..." msgstr "Etsi pelejä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Etsi käsky" @@ -10874,11 +10874,11 @@ msgid "Select Dump Path" msgstr "Valitse vedostiedostojen polku" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Valitse vientihakemisto" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Valitse hahmotiedosto" @@ -10918,7 +10918,7 @@ msgstr "Valitse Skylander-kokoelma" msgid "Select Skylander File" msgstr "Valitse Skylander-tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Valitse paikka %1 - %2" @@ -10926,7 +10926,7 @@ msgstr "Valitse paikka %1 - %2" msgid "Select State" msgstr "Valitse tilatallennus" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Valitse tilatallennuksen paikka" @@ -10993,7 +10993,7 @@ msgstr "Valitse hakemisto" msgid "Select a File" msgstr "Valitse tiedosto" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Valitse kansio, johon synkronoidaan SD-kortin kuva" @@ -11001,7 +11001,7 @@ msgstr "Valitse kansio, johon synkronoidaan SD-kortin kuva" msgid "Select a Game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Valitse SD-kortin levykuva" @@ -11013,7 +11013,7 @@ msgstr "Valitse tiedosto" msgid "Select a game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Valitse NAND-muistiin asennettava julkaisu" @@ -11021,7 +11021,7 @@ msgstr "Valitse NAND-muistiin asennettava julkaisu" msgid "Select e-Reader Cards" msgstr "Valitse e-Reader-kortti" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Valitse RSO-moduulin osoite" @@ -11038,7 +11038,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Valitse avaintiedosto (OTP-/SEEPROM-vedos)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Valitse tallennustiedosto" @@ -11062,7 +11062,7 @@ msgstr "Valittua ohjainprofiilia ei ole olemassa" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Valittua peliä ei ole pelilistassa!" @@ -11090,7 +11090,7 @@ msgstr "" "Valitsee käytettävän laitteistosovittimen.

Ellet " "ole varma, valitse ensimmäinen vaihtoehto." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11145,7 +11145,7 @@ msgstr "" "3D-tila, jota jotkin TV:t käyttävät.

Ellet ole " "varma, valitse Pois." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11185,7 +11185,7 @@ msgstr "" "

Ellet ole varma, valitse Automaattinen." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11206,7 +11206,7 @@ msgstr "" msgid "Send" msgstr "Lähetä" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Liikkeentunnistimen paikka:" @@ -11275,7 +11275,7 @@ msgstr "Aseta symbolin loppuosoite" msgid "Set symbol size (%1):" msgstr "Aseta symbolin koko (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11285,7 +11285,7 @@ msgstr "" "peleille.\n" "Asetus ei välttämättä toimi kaikille peleille.." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Asettaa Wiin järjestelmäkielen." @@ -11297,7 +11297,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11320,7 +11320,7 @@ msgstr "" "Järjestää haun käyttäen tavallisia MEM1- ja (Wii-konsolilla) MEM2-alueita " "näennäisosoiteavaruudessa. Tämä toimii suurimmalle osalle peleistä." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11334,7 +11334,7 @@ msgstr "SetupWiiMemory: settings.txt-tiedoston luonti epäonnistui" msgid "Severity" msgstr "Vakavuus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Varjostinten kääntäminen" @@ -11356,16 +11356,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen-ohjain" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Näytä prosentuaalinen nopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Näytä &loki" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Näytä &työkalupalkki" @@ -11373,11 +11373,11 @@ msgstr "Näytä &työkalupalkki" msgid "Show Active Title in Window Title" msgstr "Näytä aktiivinen julkaisu ikkunan otsikossa" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Näytä kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Näytä Australia" @@ -11390,7 +11390,7 @@ msgstr "Näytä peli Discordissa" msgid "Show Disabled Codes First" msgstr "Näytä käytöstä poistetut koodit ensin" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Näytä ELF/DOL" @@ -11399,27 +11399,27 @@ msgstr "Näytä ELF/DOL" msgid "Show Enabled Codes First" msgstr "Näytä käytössä olevat koodit ensin" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Näytä kehysnopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Näytä kehyslaskuri" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Näytä kehysajat" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Näytä Ranska" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Näytä GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Näytä Saksa" @@ -11431,23 +11431,23 @@ msgstr "Näytä golf-tilan kerros" msgid "Show Infinity Base" msgstr "Näytä Infinity-alusta" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Näytä syötteet" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Näytä Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Näytä Japani" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Näytä Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Näytä viivelaskuri" @@ -11455,19 +11455,19 @@ msgstr "Näytä viivelaskuri" msgid "Show Language:" msgstr "Kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Näytä lokin &asetukset" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Näytä nettipelin viestit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Näytä nettipelin vasteaika" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Näytä Alankomaat" @@ -11475,7 +11475,7 @@ msgstr "Näytä Alankomaat" msgid "Show On-Screen Display Messages" msgstr "Näytä ruudulle tulevat näyttöviestit" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Näytä PAL" @@ -11484,27 +11484,27 @@ msgstr "Näytä PAL" msgid "Show PC" msgstr "Näytä ohjelmalaskuri" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Näytä suorituskykykaaviot" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Näytä alustat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "Näytä projektiotilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Näytä alueet" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Näytä uudelleennauhoituslasksuri" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Näytä Venäjä" @@ -11512,51 +11512,51 @@ msgstr "Näytä Venäjä" msgid "Show Skylanders Portal" msgstr "Näytä Skylanders-portaali" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Näytä Espanja" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Näytä nopeusvärit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Näytä tilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Näytä järjestelmän kellonaika" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Näytä Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Näytä USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Näytä tuntematon" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Näytä VBlank-ajat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Näytä VPS-laskuri" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Näytä WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Näytä Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Näytä maailma" @@ -11569,7 +11569,7 @@ msgid "Show in Code" msgstr "Näytä koodissa" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Näytä muistissa" @@ -11597,7 +11597,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11606,7 +11606,7 @@ msgstr "" "varoitukset nettipelin aikana.

Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11651,7 +11651,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11661,7 +11661,7 @@ msgstr "" "millisekunteina, ja keskihajonnan.

Ellet ole varma, " "jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11671,7 +11671,7 @@ msgstr "" "ja keskihajonnan.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11681,7 +11681,7 @@ msgstr "" "sulavuuden mittana.

Ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Ellet ole varma, jätä " "tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11700,7 +11700,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11708,7 +11708,7 @@ msgstr "" "Näyttää erinäisiä projektiotilastoa.

Ellet ole " "varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11732,7 +11732,7 @@ msgstr "Vaakasuuntaisuus päälle/pois" msgid "Sideways Wii Remote" msgstr "Vaakasuuntainen Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Allekirjoitustietokanta" @@ -11756,7 +11756,7 @@ msgid "Signed Integer" msgstr "Etumerkillinen kokonaisluku" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Yksinkertaistettu kiina" @@ -11773,7 +11773,7 @@ msgstr "Kuusiakselinen" msgid "Size" msgstr "Koko" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11785,7 +11785,7 @@ msgstr "" msgid "Skip" msgstr "Ohita" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Ohita piirto" @@ -11917,7 +11917,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Järjestä aakkosjärjestykseen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Ääni:" @@ -11931,7 +11931,7 @@ msgstr "Espanja" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanja" @@ -11939,11 +11939,11 @@ msgstr "Espanja" msgid "Speaker Pan" msgstr "Kaiuttimien tasapaino" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Kaiuttimen äänenvoimakkuus:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Erikoistunut (oletus)" @@ -11951,7 +11951,7 @@ msgstr "Erikoistunut (oletus)" msgid "Specific" msgstr "Erityinen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12001,7 +12001,7 @@ msgstr "Vakio-ohjain" msgid "Start" msgstr "Aloita" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Aloita &nettipeli..." @@ -12010,11 +12010,11 @@ msgstr "Aloita &nettipeli..." msgid "Start Branch Watch" msgstr "Aloita haaravahti" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Aloita uusi huijauskoodihaku" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Aloita syötteen nauhoitus" @@ -12022,7 +12022,7 @@ msgstr "Aloita syötteen nauhoitus" msgid "Start Recording" msgstr "Aloita nauhoittaminen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Aloita koko ruudun tilassa" @@ -12034,7 +12034,7 @@ msgstr "Aloita Riivolution-muutoksin" msgid "Start with Riivolution Patches..." msgstr "Aloita Riivolution-muutoksin..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Peli alkoi" @@ -12094,7 +12094,7 @@ msgstr "Suoritus onnistui!" msgid "Stepping" msgstr "Askellus" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -12123,12 +12123,12 @@ msgid "Stick" msgstr "Ohjaussauva" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Lopeta" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Lopeta syötteen toisto/nauhoitus" @@ -12174,7 +12174,7 @@ msgstr "" "(ja tekstuuriin)

Ellet ole varma, jätä tämä " "valituksi." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Venytä ikkunaan" @@ -12213,8 +12213,8 @@ msgstr "Osoitinkynä" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Onnistui" @@ -12241,7 +12241,7 @@ msgstr "Tallennustiedostoista %n:n %1:stä vienti onnistui." msgid "Successfully exported save files" msgstr "Tallennustiedostojen vienti onnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista onnistui" @@ -12253,12 +12253,12 @@ msgstr "Tiedoston purku onnistui." msgid "Successfully extracted system data." msgstr "Järjestelmädatan vienti onnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Tallennustiedoston tuonti onnistui." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Julkaisun asentaminen NAND-muistiin onnistui." @@ -12281,12 +12281,12 @@ msgstr "Tuki" msgid "Supported file formats" msgstr "Yhteensopivat tiedostomuodot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Tukee SD- ja SDHC-muotoja. Oletuskoko on 128 Mt." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround-ääni" @@ -12347,7 +12347,7 @@ msgstr "Symbolin nimi:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symbolit" @@ -12376,7 +12376,7 @@ msgstr "" "estämään satunnaisia jumiutumisia kaksiydin-tilassa. (PÄÄLLÄ = Yhteensopiva, " "POIS = Nopea)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12397,11 +12397,11 @@ msgid "Synchronizing save data..." msgstr "Tallennustiedostojen synkronointi käynnissä..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Järjestelmän kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS-syöte" @@ -12414,7 +12414,7 @@ msgstr "TAS-työkalut" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Tunnisteet" @@ -12432,7 +12432,7 @@ msgstr "Häntä" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Ota kuvakaappaus" @@ -12473,7 +12473,7 @@ msgstr "Tekstuurivälimuisti" msgid "Texture Cache Accuracy" msgstr "Tekstuurivälimuistin tarkkuus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Tekstuurien vedostaminen" @@ -12485,7 +12485,7 @@ msgstr "Tekstuurien suodattaminen" msgid "Texture Filtering:" msgstr "Tekstuurien suodattaminen:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Tekstuurimuodon kerros" @@ -12529,7 +12529,7 @@ msgstr "IPL-tiedosto ei ole tunnettu hyvä vedos. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Masterpiece-osiot puuttuvat." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12537,7 +12537,7 @@ msgstr "" "NAND-muistin korjaus epäonnistui. On suositeltavaa, että teet varmuuskopion " "nykyisestä datasta ja aloitat uudelleen tyhjällä NAND-muistilla." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND-muistin korjaus onnistui." @@ -12555,7 +12555,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "Tämän Skylanderin omistaman rahan määrä, välillä 0–65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12914,7 +12914,7 @@ msgstr "Annettu yhteisavaimen indeksi on {0}, kun sen tulisi olla {1}." msgid "The specified file \"{0}\" does not exist" msgstr "Annettua tiedostoa \"{0}\" ei ole olemassa" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12977,7 +12977,7 @@ msgstr "Päivitysosio puuttuu." msgid "The update partition is not at its normal position." msgstr "Päivitysosio ei ole tavallisella paikallaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13364,7 +13364,7 @@ msgstr "Aikakatkaisu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Julkaisu" @@ -13373,12 +13373,12 @@ msgid "To" msgstr "Minne" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Minne:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Koko ruudun tila päälle/pois" @@ -13467,7 +13467,7 @@ msgstr "Työkalun toiminnot" msgid "Toolbar" msgstr "Työkalupalkki" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Yläreuna" @@ -13518,7 +13518,7 @@ msgid "Toy code:" msgstr "Lelukoodi:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Perinteinen kiina" @@ -13538,8 +13538,8 @@ msgstr "Ansamestari" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Läpikulkuvirhe" @@ -13622,7 +13622,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB-hyväksyntävirhe" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13634,7 +13634,7 @@ msgstr "" "

Ellet ole varma, valitse tämä tila." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13647,7 +13647,7 @@ msgstr "" "hybridi-Uber-varjostimilla ja ellei sinulla ole erittäin suorituskykyinen " "grafiikkasuoritin." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13661,7 +13661,7 @@ msgstr "" "kokonaan pätkinnän ja aiheuttaa häviävän pieniä suorituskykyvaikutuksia, " "mutta tämä riippuu grafiikka-ajurien toiminnasta." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "RSO-moduulin tunnistus epäonnistui" @@ -13733,11 +13733,11 @@ msgstr "Pakkaamattomat GC-/Wii-levykuvat (*.iso *.gcm)" msgid "Undead" msgstr "Epäkuolema" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Kumoa tilan palauttaminen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Kumoa tilan tallentaminen" @@ -13758,7 +13758,7 @@ msgstr "" "version NAND-muistista poistamatta kuitenkaan sen tallennustiedostoa. " "Jatketaanko?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Yhdysvallat" @@ -13856,7 +13856,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Tuntematon(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Tuntematon(%1).bin" @@ -13872,7 +13872,7 @@ msgstr "Poista ROMin lataus" msgid "Unlock Cursor" msgstr "Poista hiiren osoittimen lukitus" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13915,7 +13915,7 @@ msgid "Up" msgstr "Ylös" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Päivitä" @@ -13990,7 +13990,7 @@ msgstr "Käytä kaikkia Wiin tallennustiedostoja" msgid "Use Built-In Database of Game Names" msgstr "Käytä sisäänrakennettua pelien nimien tietokantaa" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Käytä häviötöntä koodekkia (FFV1)" @@ -13998,7 +13998,7 @@ msgstr "Käytä häviötöntä koodekkia (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Käytä hiirellä ohjattua osoitusta" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Käytä PAL60-tilaa (EuRGB60)" @@ -14012,7 +14012,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14102,7 +14102,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valituksi." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14112,7 +14112,7 @@ msgstr "" "erillinen hahmonnusikkuna luodaan sen sijaan.

Ellet " "ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Muussa tapauksessa, ellet ole varma, jätä tämä " "valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14409,7 +14409,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varoitus" @@ -14531,7 +14531,7 @@ msgstr "Länsimainen (Windows-1252)" msgid "Whammy" msgstr "Vibrakampi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14544,7 +14544,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valituksi." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14557,7 +14557,7 @@ msgstr "" "Parannuksissa.

Ellet ole varma, jätä tämä valituksi." "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Hyväksyttyjen laitteiden lista USB-läpipäästöön" @@ -14607,7 +14607,7 @@ msgstr "Wii Remoten painikkeet" msgid "Wii Remote Gyroscope" msgstr "Wii Remoten gyroskooppi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote -asetukset" @@ -14635,7 +14635,7 @@ msgstr "Wii ja Wii Remote" msgid "Wii data is not public yet" msgstr "Wii-data ei ole vielä julkista" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-tallennustiedostot (*.bin);;Kaikki tiedostot (*)" @@ -14643,7 +14643,7 @@ msgstr "Wii-tallennustiedostot (*.bin);;Kaikki tiedostot (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools-allekirjoituksen MEGA-tiedosto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Ikkunan kuvatarkkuus" @@ -14674,7 +14674,7 @@ msgstr "Maailma" msgid "Write" msgstr "Kirjoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "Kirjoita JIT-lohkojen lokivedos" @@ -14723,11 +14723,11 @@ msgstr "Väärä alue" msgid "Wrong revision" msgstr "Väärä revisio" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "Kirjoitettu kohteeseen \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "Kirjoitettu kohteeseen \"{0}\"." @@ -14778,7 +14778,7 @@ msgstr "Kyllä" msgid "Yes to &All" msgstr "Kyllä k&aikkiin" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14787,7 +14787,7 @@ msgstr "" "Olet muuntamassa tiedoston %2 sisällön kansioon %1. Kaikki kansion nykyinen " "sisältö poistetaan. Oletko varma, että haluat jatkaa?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14926,7 +14926,7 @@ msgstr "" "Haluatko lopettaa nyt korjataksesi ongelman?\n" "Jos valitset \"Ei\", ääni voi olla pätkivää." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/fr.po b/Languages/po/fr.po index 385d199cc2..e77c292fcc 100644 --- a/Languages/po/fr.po +++ b/Languages/po/fr.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Pascal , 2013-2024\n" "Language-Team: French (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -99,7 +99,7 @@ msgstr "" "%1\n" "souhaite rejoindre la partie." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -153,7 +153,7 @@ msgstr "%1 (lent)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -188,7 +188,7 @@ msgstr "%1 ne prend pas en charge cette fonctionnalité sur votre système." msgid "%1 doesn't support this feature." msgstr "%1 ne prend pas en charge cette fonctionnalité." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -198,11 +198,11 @@ msgstr "" "%2 objet(s)\n" "Image actuelle : %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 s'est connecté" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 s'est déconnecté" @@ -210,11 +210,11 @@ msgstr "%1 s'est déconnecté" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 a débloqué %2/%3 succès, ce qui vaut %4/%5 points" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 n'est pas une ROM valide" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 est en mode golf" @@ -226,8 +226,8 @@ msgstr "%1 joue à %2" msgid "%1 memory ranges" msgstr "%1 zones de mémoire" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -244,7 +244,7 @@ msgstr "%1 session trouvée" msgid "%1 sessions found" msgstr "%1 sessions trouvées" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -352,11 +352,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&À propos" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&&Ajouter un point d'arrêt mémoire" @@ -373,11 +373,11 @@ msgstr "&Ajouter une fonction" msgid "&Add..." msgstr "&Ajouter..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Assembleur" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Paramètres &audio" @@ -393,11 +393,11 @@ msgstr "Fenêtre sans &bordures" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Points d'arrêt" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "Suivi des &bugs" @@ -405,15 +405,15 @@ msgstr "Suivi des &bugs" msgid "&Cancel" msgstr "&Annuler" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "Gestionnaire de &cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "Rechercher des &mises à jour..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Effacer les symboles" @@ -421,7 +421,7 @@ msgstr "&Effacer les symboles" msgid "&Clone..." msgstr "&Cloner..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Code" @@ -429,7 +429,7 @@ msgstr "&Code" msgid "&Connected" msgstr "&Connecté" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Paramètres des &manettes" @@ -452,13 +452,13 @@ msgstr "&Supprimer..." #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Effacer la surveillance" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Supprimer les observations" @@ -472,11 +472,11 @@ msgstr "&Modifier le code" msgid "&Edit..." msgstr "&Éditer..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Éjecter le disque" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Émulation" @@ -497,40 +497,40 @@ msgid "&Export as .gci..." msgstr "&Exporter comme .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Police..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Avancement d'image" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "Réglages de la &Vue libre" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Générer les symboles depuis" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Dépôt &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Paramètres &graphiques" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Aide" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Paramètres des &Raccouris clavier" @@ -550,7 +550,7 @@ msgstr "&Importer l'état..." msgid "&Import..." msgstr "&Importer..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity Base" @@ -562,7 +562,7 @@ msgstr "&Insérer blr" msgid "&Interframe Blending" msgstr "Fusion &inter-images" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -574,11 +574,11 @@ msgstr "&Langue :" msgid "&Load Branch Watch" msgstr "&Charger la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Charger l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Charger une Carte de Symboles" @@ -588,11 +588,11 @@ msgstr "&Charger le fichier à l'adresse actuelle" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Verrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "Verrouiller l'emplacement des &Widgets" @@ -600,11 +600,11 @@ msgstr "Verrouiller l'emplacement des &Widgets" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "Fil&m" @@ -612,7 +612,7 @@ msgstr "Fil&m" msgid "&Mute" msgstr "&Couper le son" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Réseau" @@ -621,23 +621,23 @@ msgid "&No" msgstr "&Non" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Ouvrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Options" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Patcher les fonctions HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Démarrer" @@ -645,7 +645,7 @@ msgstr "&Démarrer" msgid "&Properties" msgstr "&Propriétés" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "Mode &Lecture seule" @@ -653,7 +653,7 @@ msgstr "Mode &Lecture seule" msgid "&Refresh List" msgstr "&Actualiser la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registres" @@ -671,11 +671,11 @@ msgid "&Rename symbol" msgstr "&Renommer symbole" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "Gestionnaire de Packs de &Ressources" @@ -683,7 +683,7 @@ msgstr "Gestionnaire de Packs de &Ressources" msgid "&Save Branch Watch" msgstr "&Sauvegarder la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Sauvegarder la carte des symboles" @@ -691,7 +691,7 @@ msgstr "&Sauvegarder la carte des symboles" msgid "&Scan e-Reader Card(s)..." msgstr "&Lire la ou les carte(s) e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Portail Skylanders" @@ -699,7 +699,7 @@ msgstr "&Portail Skylanders" msgid "&Speed Limit:" msgstr "&Limite de vitesse :" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Stop" @@ -707,7 +707,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Thème :" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Threads" @@ -715,7 +715,7 @@ msgstr "&Threads" msgid "&Tool" msgstr "&Outil" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Outils" @@ -725,21 +725,21 @@ msgstr "&Décharger la ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "&Déverrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Affichage" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Regarder" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "Site &web" @@ -751,11 +751,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Oui" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' introuvable, aucun nom de symbole généré" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' introuvable, recherche de fonctions communes à la place" @@ -803,7 +803,7 @@ msgstr "- Soustraire" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Inconnu--" @@ -869,7 +869,7 @@ msgstr "Entier 16 bits signé" msgid "16-bit Unsigned Integer" msgstr "Entier 16 bits non signé" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16/9" @@ -953,7 +953,7 @@ msgstr "4 Gio (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocs)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4/3" @@ -1054,7 +1054,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "Désactivé en mode Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Dans le doute, décochez cette case." @@ -1201,7 +1201,7 @@ msgstr "" "considérée comme fonctionnelle.\n" "Utilisez-les à vos risques.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Code AR" @@ -1243,8 +1243,8 @@ msgstr "Précision :" msgid "Achievement Settings" msgstr "Paramètres des succès" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Succès" @@ -1342,7 +1342,7 @@ msgstr "Activer le Chat NetPlay" msgid "Active" msgstr "Actif" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "Figurines Infinity actives :" @@ -1354,7 +1354,7 @@ msgstr "File d'attente de threads actifs" msgid "Active threads" msgstr "Threads actifs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adaptateur" @@ -1362,7 +1362,7 @@ msgstr "Adaptateur" msgid "Adapter Detected" msgstr "Adaptateur détecté" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Carte :" @@ -1419,7 +1419,7 @@ msgstr "Ajouter pour observation" #: 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:329 msgid "Add..." msgstr "Ajouter..." @@ -1433,7 +1433,7 @@ msgstr "Ajouter..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adresse" @@ -1677,7 +1677,7 @@ msgstr "Autoriser des réglages pour région différente" msgid "Allow Usage Statistics Reporting" msgstr "Autoriser l'envoi des statistiques d'utilisation" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Autoriser les écritures sur la carte SD" @@ -1719,7 +1719,7 @@ msgstr "Un disque devrait déjà être inséré mais n'a pas été trouvé." msgid "Anaglyph" msgstr "Anaglyphe" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analyser" @@ -1745,15 +1745,15 @@ msgstr "Anti-Aliasing :" msgid "Any Region" msgstr "Toutes régions" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Ajouter la signature à" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "Ajouter à un fichier de signature &existant..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "A&ppliquer un fichier de signature" @@ -1774,7 +1774,7 @@ msgstr "Date de l'Apploader :" msgid "Apply" msgstr "Appliquer" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Appliquer un fichier de signature" @@ -1806,16 +1806,16 @@ msgstr "Êtes-vous sûr ?" msgid "Area Sampling" msgstr "Échantillonnage de zone" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Format d'écran" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Résolution interne corrigée du ratio hauteur/largeur" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Format d'écran :" @@ -1858,11 +1858,11 @@ msgstr "Attacher le MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Moteur audio :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Paramètres d'étirement audio" @@ -1878,7 +1878,7 @@ msgstr "Auteur" msgid "Authors" msgstr "Auteurs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1903,7 +1903,7 @@ msgstr "" "\n" "Veuillez choisir une résolution interne spécifique." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Ajuster auto. la taille de la fenêtre" @@ -1911,15 +1911,15 @@ msgstr "Ajuster auto. la taille de la fenêtre" msgid "Auto-Hide" msgstr "Cacher automatiquement" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "Détecter automatiquement les modules RSO ?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Synchroniser automatiquement avec le dossier" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1973,19 +1973,19 @@ msgstr "Registres BP" msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Moteur" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Multithreading du moteur" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Paramètres de l'interface audio" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Moteur :" @@ -2028,7 +2028,7 @@ msgstr "Mauvaise valeur fournie." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Bannière" @@ -2052,7 +2052,7 @@ msgstr "Adresse de base" msgid "Base priority" msgstr "Priorité de base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Paramètres généraux" @@ -2104,11 +2104,11 @@ msgstr "Binaire SSL (lecture)" msgid "Binary SSL (write)" msgstr "Binaire SSL (écriture)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps) :" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2122,7 +2122,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Taille des blocs" @@ -2160,7 +2160,7 @@ msgstr "" "Le mode pour passer outre le Bluetooth est activé, mais Dolphin a été " "compilé sans libusb. Ce mode ne peut donc pas être utilisé." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Démarrer sur Pause" @@ -2173,11 +2173,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fichier de clés BootMii (*.bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Plein écran sans bords" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Bas" @@ -2377,20 +2377,20 @@ msgstr "Erreur d'adaptateur réseau" msgid "Broadband Adapter MAC Address" msgstr "Adresse MAC de l'adaptateur réseau" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Parcourir les sessions &NetPlay..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Taille du tampon :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Taille de buffer changée à %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer :" @@ -2442,7 +2442,7 @@ msgstr "Par : %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "&Créer un Fichier Signature..." @@ -2466,7 +2466,7 @@ msgstr "CRC32 :" msgid "Cached Interpreter (slower)" msgstr "Interpréteur avec cache (lent)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2561,11 +2561,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annuler" @@ -2655,7 +2655,7 @@ msgstr "Centrer et étalonner" msgid "Change &Disc" msgstr "&Changer de disque" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "&Changer de disque..." @@ -2677,7 +2677,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2708,7 +2708,7 @@ msgstr "" "seulement et pas de mouvement latéral, et vous pouvez zoomer jusqu'à " "l'emplacement d'origine de la caméra." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Le changement des cheats ne fonctionnera qu'après le redémarrage du jeu." @@ -2717,7 +2717,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Partition de Chaîne (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Le personnage entré est invalide !" @@ -2729,7 +2729,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editeur de cheat codes" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Rechercher un cheat" @@ -2737,7 +2737,7 @@ msgstr "Rechercher un cheat" msgid "Cheats Manager" msgstr "Gestionnaire de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Vérifier la NAND..." @@ -2777,11 +2777,11 @@ msgstr "Choisir un fichier à ouvrir" msgid "Choose a file to open or create" msgstr "Choisissez un fichier à ouvrir ou créer" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Choisir le fichier d'entrée prioritaire." -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Choisir le fichier d'entrée secondaire." @@ -2812,7 +2812,7 @@ msgstr "Manette classique" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Effacer" @@ -2820,7 +2820,7 @@ msgstr "Effacer" msgid "Clear Branch Watch" msgstr "Effacer la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Effacer le cache" @@ -2841,7 +2841,7 @@ msgstr "&Cloner et modifier le Code..." msgid "Close" msgstr "Fermer" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Co&nfiguration" @@ -2885,7 +2885,7 @@ msgstr "Espace de couleur" msgid "Column &Visibility" msgstr "&Visibilité de la colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Combiner &deux fichiers de signature..." @@ -2918,7 +2918,7 @@ msgstr "" "cela, il est possible que ce soit un bon dump comparé à la version eShop de " "Wii U du jeu. Dolphin ne peut pas le vérifier." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compiler les Shaders avant le démarrage" @@ -2928,7 +2928,7 @@ msgstr "Compilation des Shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Compression" @@ -3043,7 +3043,7 @@ msgstr "Configurer" msgid "Configure Controller" msgstr "Configurer la manette" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Configurer Dolphin" @@ -3067,7 +3067,7 @@ msgstr "Configurer la sortie" msgid "Confirm" msgstr "Confirmer" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Confirmez le changement de moteur" @@ -3075,7 +3075,7 @@ msgstr "Confirmez le changement de moteur" msgid "Confirm on Stop" msgstr "Confirmer l'arrêt de l'émulation" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3086,15 +3086,15 @@ msgstr "Confirmation" msgid "Connect" msgstr "Connecter" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Connecter la Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Connecter le clavier USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Connecter la Wiimote %1" @@ -3114,7 +3114,7 @@ msgstr "Connecter la Wiimote 3" msgid "Connect Wii Remote 4" msgstr "Connecter la Wiimote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Connecter les Wiimotes" @@ -3267,8 +3267,8 @@ msgstr "Convergence" msgid "Convergence:" msgstr "Convergence :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Échec de la conversion." @@ -3276,9 +3276,9 @@ msgstr "Échec de la conversion." msgid "Convert" msgstr "Convertir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Convertir le fichier en dossier maintenant" @@ -3286,9 +3286,9 @@ msgstr "Convertir le fichier en dossier maintenant" msgid "Convert File..." msgstr "Convertir le fichier..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Convertir le dossier en fichier maintenant" @@ -3311,8 +3311,8 @@ msgstr "" "conversion vers un ISO. Voulez-vous tout de même continuer ?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Conversion..." @@ -3547,7 +3547,7 @@ msgstr "" "Dans ce cas, vous devez à nouveau spécifier l'emplacement du fichier de " "sauvegarde dans les options." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Impossible de trouver le serveur central" @@ -3563,13 +3563,13 @@ msgstr "Impossible de lire le fichier." msgid "Country:" msgstr "Pays :" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Créer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Créer un fichier Infinity" @@ -3600,11 +3600,11 @@ msgstr "Créateur :" msgid "Critical" msgstr "Critique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Recadrer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3620,11 +3620,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Affecter le calcul de sommet au CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3635,7 +3635,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Région actuelle" @@ -3655,11 +3655,11 @@ msgstr "Jeu en cours" msgid "Current thread" msgstr "Thread actuel" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personnalisé" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Personnalisé (étirer)" @@ -3667,15 +3667,15 @@ msgstr "Personnalisé (étirer)" msgid "Custom Address Space" msgstr "Espace d'adresse personnalisé" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Hauteur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Largeur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Format d'affichage personnalisé :" @@ -3720,7 +3720,7 @@ msgstr "Tourne-disque DJ" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Moteur d'émulation du DSP (Audio)" @@ -3728,15 +3728,15 @@ msgstr "Moteur d'émulation du DSP (Audio)" msgid "DSP HLE (fast)" msgstr "DSP en HLE (rapide)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (recommandé)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "Interpréteur du DSP en LLE (très lent)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "Recompilateur du DSP en LLE (lent)" @@ -3812,7 +3812,7 @@ msgstr "Zone morte" msgid "Debug" msgstr "Débug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Débogage" @@ -3822,7 +3822,7 @@ msgstr "Débogage" msgid "Decimal" msgstr "Décimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Qualité de décodage :" @@ -3869,7 +3869,7 @@ msgstr "Par défaut" msgid "Default Config (Read Only)" msgstr "Configuration par défaut (lecture seule)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Appareil par défaut" @@ -3885,7 +3885,7 @@ msgstr "ISO par défaut :" msgid "Default thread" msgstr "Thread par défaut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Différer l'invalidation du cache EFB" @@ -3893,7 +3893,7 @@ msgstr "Différer l'invalidation du cache EFB" msgid "Defer EFB Copies to RAM" msgstr "Reporter les copies EFB vers la RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3945,7 +3945,7 @@ msgstr "Profondeur :" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Description" @@ -3994,7 +3994,7 @@ msgstr "Détaché" msgid "Detect" msgstr "Détecter" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Détection des modules RSO" @@ -4024,7 +4024,7 @@ msgstr "Paramètres de la console émulée" msgid "Device VID (e.g., 057e)" msgstr "VID de l'appareil (ex : 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Appareil" @@ -4032,7 +4032,7 @@ 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/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Assombrit l'écran après 5 minutes d'inactivité." @@ -4056,7 +4056,7 @@ msgstr "Désactiver Bounding Box" msgid "Disable Copy Filter" msgstr "Désactiver le filtre de copie" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Désactiver les copies EFB dans la VRAM" @@ -4064,11 +4064,11 @@ 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:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Désactiver Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Désactiver Fastmem Arena" @@ -4076,11 +4076,11 @@ msgstr "Désactiver Fastmem Arena" msgid "Disable Fog" msgstr "Désactiver le brouillard" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Désactiver le cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Désactiver la carte des grands points d'entrée" @@ -4099,7 +4099,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
Dans le doute, " "décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4482,7 +4482,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4501,11 +4501,11 @@ msgstr "Durée de relâchement du bouton Turbo (en images) :" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Néerlandais" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Quitter" @@ -4537,7 +4537,7 @@ msgstr "" "Convient pour les jeux de compétition où l'égalité et une latence minimale " "sont les plus importantes." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Premières mises à jour de mémoire" @@ -4611,7 +4611,7 @@ msgstr "Buffer d'image embarqué (Embedded Frame Buffer - EFB)" msgid "Empty" msgstr "Vide" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread d'émulation déjà en cours d'exécution" @@ -4619,7 +4619,7 @@ 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:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Émuler la Infinity Base" @@ -4639,7 +4639,7 @@ 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:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Appareils USB émulés" @@ -4664,16 +4664,16 @@ msgstr "Vitesse de l'émulation" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Activer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Activer les couches de validation d'API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Activer l'étirement du son" @@ -4721,7 +4721,7 @@ msgstr "Activer les succès Encore" msgid "Enable FPRF" msgstr "Activer le FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Activer les mods graphiques" @@ -4763,7 +4763,7 @@ msgstr "" "
Notez que si vous désactivez le mode Hardcore pendant qu'un jeu est en " "cours, vous devrez quitter le jeu pour réactiver ce mode." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "Activer le profilage de bloc de JIT" @@ -4776,7 +4776,7 @@ msgstr "Activer le MMU" msgid "Enable Progress Notifications" msgstr "Activer les notifications de progression" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activer le balayage progressif" @@ -4785,11 +4785,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Activer l'intégration de RetroAchievements.org" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Activer le vibreur" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activer l'économiseur d'écran" @@ -4809,11 +4809,11 @@ msgstr "Activer les succès non officiels" msgid "Enable Usage Statistics Reporting" msgstr "Activer l'envoi des statistiques d'utilisation" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activer WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activer le rendu en fil de fer" @@ -4880,7 +4880,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4929,7 +4929,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4943,7 +4943,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4972,7 +4972,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Active l'étirement du son pour qu'il corresponde à la vitesse de l'émulation." @@ -5010,7 +5010,7 @@ msgstr "" "Rapide)

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5022,7 +5022,7 @@ msgstr "" "désormais disparues telles que la Météo ou les Chaînes Nintendo.\n" "Lisez les Termes de service sur : https://www.wiilink24.com/fr/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5035,7 +5035,7 @@ msgstr "" "compilés.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5072,7 +5072,7 @@ msgstr "Enet ne s'est pas initialisé" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Anglais" @@ -5089,7 +5089,7 @@ msgstr "Entrez l'adresse IP de l'appareil exécutant le client XLink Kai :" msgid "Enter USB device ID" msgstr "Entrez l'identifiant du périphérique USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Entrez l'adresse à surveiller :" @@ -5115,7 +5115,7 @@ msgstr "" "Entrez l'adresse IP et le port de l'instance tapserver à laquelle vous " "voulez vous connecter." -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Entrer l'adresse du module RSO :" @@ -5154,9 +5154,9 @@ msgstr "Entrer l'adresse du module RSO :" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5169,24 +5169,24 @@ msgstr "Entrer l'adresse du module RSO :" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5216,7 +5216,7 @@ msgstr "Erreur lors de l'ouverture de l'adaptateur : %1" msgid "Error collecting save data!" msgstr "Erreur lors de la récupération des données de sauvegarde !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5333,12 +5333,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphorie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europe" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershaders exclusifs" @@ -5382,11 +5382,11 @@ msgstr "Début d'expression attendu" msgid "Expected variable name." msgstr "Nom de variable attendu." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Expérimental" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exporter toutes les sauvegardes Wii" @@ -5401,7 +5401,7 @@ msgstr "L'exportation a échoué" msgid "Export Recording" msgstr "Exporter l'enregistrement..." -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exporter l'enregistrement..." @@ -5429,7 +5429,7 @@ msgstr "Exporter comme .&gcs..." msgid "Export as .&sav..." msgstr "Exporter comme .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5457,7 +5457,7 @@ msgstr "Externe" msgid "External Frame Buffer (XFB)" msgstr "Buffer externe d'image (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Extraire les certificats de la NAND" @@ -5495,7 +5495,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Lecteur FIFO" @@ -5515,7 +5515,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Impossible d'ajouter cela au fichier de signature '%1'" @@ -5535,7 +5535,7 @@ msgstr "Impossible d'effacer le Skylander du slot %1 !" msgid "Failed to connect to Redump.org" msgstr "Impossible de se connecter à Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Impossible de se connecter au serveur : %1" @@ -5556,7 +5556,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Impossible de créer le fichier Infinity" @@ -5618,7 +5618,7 @@ msgstr "Échec de l'exportation de %n sur %1 fichier(s) de sauvegarde." msgid "Failed to export the following save files:" msgstr "Échec de l'exportation des fichiers de sauvegarde suivants :" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Impossible d'extraire les certificats depuis la NAND" @@ -5648,14 +5648,14 @@ msgstr "Impossible de trouver un ou plusieurs symboles D3D" msgid "Failed to import \"%1\"." msgstr "Impossible d'importer \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5663,7 +5663,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5697,7 +5697,7 @@ msgid "Failed to install pack: %1" msgstr "Impossible d'installer le pack %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Impossible d'installer ce titre dans la NAND." @@ -5709,8 +5709,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:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Impossible de charger le module RSO à %1" @@ -5722,7 +5722,7 @@ msgstr "Impossible de charger d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Impossible de charger dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Impossible d'ouvrir le fichier de carte '%1'" @@ -5754,11 +5754,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Impossible de modifier Skylander !" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "Impossible d'ouvrir \"%1\" en écriture." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "Impossible d'ouvrir \"{0}\" en écriture." @@ -5809,11 +5809,11 @@ msgstr "Impossible d'ouvrir le fichier." msgid "Failed to open server" msgstr "Impossible d'accéder au serveur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Impossible d'ouvrir le fichier Infinity !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5885,11 +5885,11 @@ msgstr "" "Impossible de lire le(s) fichier(s) de sauvegarde sélectionné(s) depuis la " "carte mémoire." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Impossible de lire le fichier Infinity !" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5967,27 +5967,27 @@ msgstr "" "Échec de la sauvegarde de l'instantané de la surveillance de la branche " "\"%1\"" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Echec de l'enregistrement du journal FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 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:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Impossible de sauvegarder le fichier de signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 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:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Impossible de sauvegarder vers le fichier de signature '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -6044,7 +6044,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Échec" @@ -6082,7 +6082,7 @@ msgstr "" msgid "Field of View" msgstr "Champ de vision" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Numéro de figurine :" @@ -6096,7 +6096,7 @@ msgstr "Détails du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Format du fichier" @@ -6104,24 +6104,24 @@ msgstr "Format du fichier" msgid "File Format:" msgstr "Format du fichier :" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Infos du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nom du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Chemin du fichier" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Taille du fichier" @@ -6252,7 +6252,7 @@ msgstr "" "Pour des instructions d'installation, consultez cette page." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forcer 16/9è" @@ -6260,7 +6260,7 @@ msgstr "Forcer 16/9è" msgid "Force 24-Bit Color" msgstr "Forcer les couleurs en 24 bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forcer 4/3" @@ -6292,11 +6292,11 @@ msgstr "Forcer l'écoute du port :" msgid "Force Nearest" msgstr "Forcer au plus proche" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Désactivé car %1 ne prend pas en charge les extensions VS." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Activé car %1 ne prend pas en charge les shaders géométriques." @@ -6381,11 +6381,11 @@ msgstr "Accélérer la vitesse d'avancement de l'image" msgid "Frame Advance Reset Speed" msgstr "Réinitialiser la vitesse d'avancement de l'image" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Capture d'image" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Plage d'images :" @@ -6393,7 +6393,7 @@ msgstr "Plage d'images :" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "La/Les capture(s) d'image '{0}' existe déjà. Remplacer ?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Images à enregistrer :" @@ -6448,7 +6448,7 @@ msgstr "Activer la vue libre" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Français" @@ -6467,8 +6467,8 @@ msgid "From" msgstr "De" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "De :" @@ -6524,11 +6524,11 @@ msgstr "Volume GBA" msgid "GBA Window Size" msgstr "Taille de la fenêtre GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM changée en \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM désactivée" @@ -6702,7 +6702,7 @@ msgid "Game Gamma:" msgstr "Gamma du jeu :" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID du jeu" @@ -6715,7 +6715,7 @@ msgstr "Identifiant du jeu :" msgid "Game Status" msgstr "Etat du jeu" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Jeu changé en \"%1\"" @@ -6828,7 +6828,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codes Gecko" @@ -6860,13 +6860,13 @@ msgstr "Générer une nouvelle identité pour les statistiques" msgid "Generated AR code(s)." msgstr "Code(s) AR généré(s)." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Nom des symboles générés à partir de '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Allemand" @@ -6947,7 +6947,7 @@ msgstr "Vert Gauche" msgid "Green Right" msgstr "Vert Droite" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Grille" @@ -7029,7 +7029,7 @@ msgstr "Cacher" msgid "Hide &Controls" msgstr "Cacher les &contrôles" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Tout masquer" @@ -7053,11 +7053,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Haute" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "La meilleure" @@ -7101,11 +7101,11 @@ msgstr "" "Convient pour des jeux casual de 3 joueurs et plus, peut-être sur des " "connexions instables ou avec une forte latence." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Autorité de l'hôte sur les entrées désactivée" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Autorité de l'hôte sur les entrées activée" @@ -7131,7 +7131,7 @@ msgstr "Raccourcis clavier" msgid "Hotkeys Require Window Focus" msgstr "Les touches de raccourci requièrent que la fenêtre soit sélectionnée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershaders hybrides" @@ -7195,7 +7195,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Sensibilité de l'IR :" @@ -7297,7 +7297,7 @@ msgstr "" "Si décochée, l'état de la connexion de la manette émulée est lié\n" "à l'état de la connexion du périphérique physique par défaut (s'il existe)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7308,7 +7308,7 @@ msgstr "" "de fifologs, mais peut être utile pour tester.

Dans " "le doute, décochez cette case." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7366,7 +7366,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Présenter immédiatement l'XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7381,7 +7381,7 @@ msgstr "" "abaissant légèrement les performances.

Dans le " "doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Importer une sauvegarde BootMii de la NAND..." @@ -7396,7 +7396,7 @@ msgstr "L'importation a échoué" msgid "Import Save File(s)" msgstr "Importer le(s) fichier(s) de sauvegarde" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importer une sauvegarde Wii..." @@ -7505,16 +7505,16 @@ msgstr "Rotation incrémentale" msgid "Incremental Rotation (rad/sec)" msgstr "Rotation incrémentale (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Créateur de figurine Infinity" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Gestionnaire Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Objet Infinity (*.bin);;" @@ -7537,8 +7537,8 @@ msgstr "Information" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Information" @@ -7551,11 +7551,11 @@ msgid "Inject" msgstr "Injecter" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Entrée" @@ -7581,7 +7581,7 @@ msgstr "Insérer &NOP" msgid "Insert &nop" msgstr "Insérer &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Insérer une carte SD" @@ -7598,7 +7598,7 @@ msgstr "Partition d'installation (%1)" msgid "Install Update" msgstr "Installer la mise à jour" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Installer un WAD..." @@ -7621,7 +7621,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Point d'arrêt instruction" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instruction :" @@ -7718,7 +7718,7 @@ msgstr "Erreur interne lors de la génération du code AR." msgid "Interpreter (slowest)" msgstr "Interpréteur (TRÈS lent)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7743,7 +7743,7 @@ msgstr "Pack %1 non valide indiqué : %2" msgid "Invalid Player ID" msgstr "ID joueur non valide" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Adresse du module RSO non valide : %1" @@ -7768,7 +7768,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Entrée non valide pour le champ \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Entrée indiquée non valide" @@ -7806,13 +7806,13 @@ msgstr "" msgid "Invalid title ID." msgstr "ID du titre non valide." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Adresse à surveiller non valide : %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italien" @@ -7825,11 +7825,11 @@ msgstr "Italie" msgid "Item" msgstr "Objet" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7837,47 +7837,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "Blocs JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7889,11 +7889,11 @@ msgstr "Recompilateur JIT pour ARM64 (recommandé)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilateur JIT pour x86-64 (recommandé)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "Cache de registre JIT désactivé" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" @@ -7907,16 +7907,16 @@ msgstr "" "ne devrait jamais arriver. Veuillez transmettre cet incident au suivi de " "bugs. Dolphin va maintenant quitter." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "JIT n'est pas actif" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japon" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonais" @@ -7978,12 +7978,12 @@ msgstr "Kio" msgid "Kick Player" msgstr "Sortir le joueur" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Corée" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coréen" @@ -8030,23 +8030,23 @@ msgstr "Dernier emplacement :" msgid "Last reset:" msgstr "Dernière réinitialisation :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Latence :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Latence : ~10ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Latence : ~20ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Latence : ~40ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Latence : ~80ms" @@ -8054,7 +8054,7 @@ msgstr "Latence : ~80ms" msgid "Launching these titles may also fix the issues." msgstr "Ce souci peut être corrigé en démarrant ces titres." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Tableaux de classements" @@ -8150,11 +8150,11 @@ msgstr "Lumière" msgid "Limit Chunked Upload Speed:" msgstr "Limite de vitesse d'envoi de parcelles de données :" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Colonnes de la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Liste" @@ -8166,15 +8166,15 @@ msgstr "Écoute" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Charger" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Charger un fichier de carte de &défauts..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Charger un &Autre fichier de carte..." @@ -8186,7 +8186,7 @@ msgstr "Charger la surveillance de Branche &depuis..." msgid "Load Branch Watch snapshot" msgstr "Charger l'instantané de surveillance de Branche" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Charger textures personnalisées" @@ -8194,7 +8194,7 @@ msgstr "Charger textures personnalisées" msgid "Load File" msgstr "Charger le fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Charger le Menu Principal de la GameCube" @@ -8304,19 +8304,19 @@ msgstr "Charger l'état du Slot 8" msgid "Load State Slot 9" msgstr "Charger l'état du Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Charger un état depuis un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Charge l'état depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Charger un état depuis un slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Charger le Menu Système Wii %1" @@ -8328,28 +8328,28 @@ msgstr "Charger et enregistrer les données de sauvegarde chez l'hôte." msgid "Load from Selected Slot" msgstr "Charger depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Chargement depuis le Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Charger un fichier de carte" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Charger le menu %1 du système vWii" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Charger..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Symboles chargés à partir de '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8360,7 +8360,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8377,7 +8377,7 @@ msgstr "Local" msgid "Lock Mouse Cursor" msgstr "Verrouiller le curseur de la souris" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Verrouillé" @@ -8403,7 +8403,7 @@ msgstr "Configuration de la journalisation" msgid "Log In" msgstr "Connexion" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -8411,7 +8411,7 @@ msgstr "Log JIT Instruction Coverage" msgid "Log Out" msgstr "Déconnexion" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Noter le temps de rendu dans un fichier" @@ -8427,7 +8427,7 @@ msgstr "Sorties des journalisations" msgid "Login Failed" msgstr "Échec de la connection" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8438,20 +8438,20 @@ msgstr "" "performances de Dolphin.

Dans le doute, décochez " "cette case." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Boucle" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Connexion au serveur NetPlay perdue !" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Faible" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "La moins bonne" @@ -8513,7 +8513,7 @@ msgstr "Vérifiez qu'il y a un Skylander dans le slot %1 !" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Concepteur" @@ -8535,12 +8535,12 @@ msgstr "" "

\n" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Gestion de NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Échantillonnage manuel de la texture" @@ -8556,11 +8556,11 @@ msgstr "ROM masque" msgid "Match Found" msgstr "Correspondance trouvée" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Tampon maxi :" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Taille maximum du tampon changée à %1" @@ -8569,7 +8569,7 @@ msgstr "Taille maximum du tampon changée à %1" msgid "Maximum tilt angle." msgstr "Angle maximum d'inclinaison." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Ceci peut ralentir le Menu Wii et quelques jeux." @@ -8590,7 +8590,7 @@ msgstr "Point d'arrêt mémoire" msgid "Memory Card" msgstr "Carte mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Gestionnaire de cartes mémoires" @@ -8649,11 +8649,11 @@ msgstr "Micro" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Divers" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Paramètres divers" @@ -8671,7 +8671,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Non concordance entre les structures de données internes." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8698,7 +8698,7 @@ msgstr "Adaptateur modem (tapserver)" msgid "Modifier" msgstr "Modif." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8718,8 +8718,8 @@ msgstr "Modifier le slot" msgid "Modifying Skylander: %1" msgstr "Modification de Skylander : %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Modules trouvés : %1" @@ -8727,7 +8727,7 @@ msgstr "Modules trouvés : %1" msgid "Money:" msgstr "Argent :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8787,10 +8787,10 @@ msgstr "Multiplicateur" msgid "N&o to All" msgstr "Non à &tout" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Vérification de la NAND" @@ -8799,7 +8799,7 @@ msgstr "Vérification de la NAND" msgid "NKit Warning" msgstr "Avertissement pour NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8832,7 +8832,7 @@ msgstr "" "

Dans le doute, laissez la valeur à 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -9050,7 +9050,7 @@ msgstr "Pas d'erreur." msgid "No extension selected." msgstr "Aucune extension sélectionnée" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Aucun fichier chargé / enregistré" @@ -9058,7 +9058,7 @@ msgstr "Aucun fichier chargé / enregistré" msgid "No game is running." msgstr "Aucun jeu en fonctionnement." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Aucun jeu en fonctionnement." @@ -9071,7 +9071,7 @@ msgstr "Aucun mod de graphique sélectionné" msgid "No input" msgstr "Aucune entrée" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Aucun souci n'a été détecté" @@ -9121,8 +9121,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9278,7 +9278,7 @@ msgstr "Objet 4 : X" msgid "Object 4 Y" msgstr "Objet 4 : Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Plage d'objets :" @@ -9303,7 +9303,7 @@ msgstr "Marche" msgid "On Movement" msgstr "Si mouvement" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9340,7 +9340,7 @@ msgstr "" "fonction et les chemins de code conditionnel qui ne sont empruntés que " "lorsqu'une action est faite dans le logiciel émulé." -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Documentation en ligne" @@ -9348,7 +9348,7 @@ msgstr "&Documentation en ligne" msgid "Only Show Collection" msgstr "Afficher uniquement la Collection" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9356,7 +9356,7 @@ msgstr "" "Uniquement ajouter les symboles avec le préfixe :\n" "(Vide pour tous les symboles) " -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9375,7 +9375,7 @@ msgstr "Ouvrir" msgid "Open &Containing Folder" msgstr "Ouvrir l'emplacement du fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Ouvrir le dossier &utilisateur" @@ -9384,7 +9384,7 @@ msgstr "Ouvrir le dossier &utilisateur" msgid "Open Directory..." msgstr "Ouvrir le dossier..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Charger le journal FIFO" @@ -9474,7 +9474,7 @@ msgid "Origin and Destination" msgstr "Origine et destination" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9516,11 +9516,11 @@ msgstr "Rééchantillonnage de la sortie :" msgid "Overwritten" msgstr "Écrasé" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Jouer l'enregistrement..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9534,11 +9534,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Niveau de compression en PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Niveau de compression en PNG :" @@ -9626,7 +9626,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "Mettre en pause la surveillance de la branche" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pause à la fin du Film" @@ -9675,7 +9675,7 @@ msgstr "Vitesse maximale des mouvements de va-et-vient." msgid "Per-Pixel Lighting" msgstr "Eclairage par pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Effectuer une mise à jour en ligne" @@ -9683,15 +9683,15 @@ msgstr "Effectuer une mise à jour en ligne" msgid "Perform System Update" msgstr "Exécuter une mise à jour du Système" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Fenêtre d'échantillon de performances (en ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Fenêtre d'échantillon de performances (en ms) :" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Statistiques de performances" @@ -9709,7 +9709,7 @@ msgstr "Espace d'adresse physique" msgid "PiB" msgstr "Pio" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Choisissez une police pour le débogage" @@ -9726,7 +9726,7 @@ msgid "Pitch Up" msgstr "Monter" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plateforme" @@ -9734,7 +9734,7 @@ msgstr "Plateforme" msgid "Play" msgstr "Démarrer" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Lecture / Enregistrement" @@ -9742,11 +9742,11 @@ msgstr "Lecture / Enregistrement" msgid "Play Recording" msgstr "Jouer l'enregistrement..." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Jouer au plateau / Mettre en route le disque" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Options de lecture" @@ -9754,27 +9754,27 @@ msgstr "Options de lecture" msgid "Player" msgstr "Joueur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Joueur 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Joueur Un Capacité Une" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Joueur Un Capacité Deux" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Joueur Deux" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Joueur Deux Capacité Une" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Joueur Deux Capacité Deux" @@ -9798,7 +9798,7 @@ msgstr "" "Veuillez changer le paramètre de \"SyncOnSkipIdle\" pour \"True\" ! Il est " "actuellement désactivé, ce qui fait que ce problème va probablement arriver." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9833,7 +9833,7 @@ msgstr "Port :" msgid "Portal Slots" msgstr "Slots de portail" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Possible désynchronisation détectée : %1 peut s'être désynchronisé à l'image " @@ -9851,20 +9851,20 @@ msgstr "Effet de Post-processing :" msgid "Post-Processing Shader Configuration" msgstr "Configuration du post-traitement des Shaders" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Préférer VS pour l'extension Point/Ligne" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Précharger textures personnalisées" @@ -9901,7 +9901,7 @@ msgstr "Appuyer sur le bouton Sync" msgid "Pressure" msgstr "Pression" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9981,11 +9981,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Progression" @@ -9999,7 +9999,7 @@ msgstr "" msgid "Public" msgstr "Publique" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Purger le cache de la liste de jeu" @@ -10023,7 +10023,7 @@ msgstr "La Qualité de Service (QoS) n'a pas pu être activée." msgid "Quality of Service (QoS) was successfully enabled." msgstr "La Qualité de Service (QoS) a été activée avec succès." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Qualité du décodeur Dolby Pro Logic II. Plus la latence est haute, meilleure " @@ -10057,11 +10057,11 @@ msgstr "R Analog." msgid "READY" msgstr "PRÊT" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "Modules RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "Détection automatique du RSO" @@ -10086,7 +10086,7 @@ msgstr "Fin de zone :" msgid "Range Start: " msgstr "Début de zone :" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Rang %1" @@ -10094,7 +10094,7 @@ msgstr "Rang %1" msgid "Raw" msgstr "Raw (brut)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Résolution interne brute" @@ -10153,7 +10153,7 @@ msgstr "Hits récents" msgid "Recenter" msgstr "Recentrer" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Enregistrer" @@ -10165,11 +10165,11 @@ msgstr "Enregistrer les entrées" msgid "Recording" msgstr "Enregistrement" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Options d'enregistrement" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Enregistrement..." @@ -10242,7 +10242,7 @@ msgid "Refreshing..." msgstr "Actualisation..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Région" @@ -10275,7 +10275,7 @@ msgstr "Me rappeler plus tard" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Retirer" @@ -10315,11 +10315,11 @@ msgstr "Renommer le symbole" msgid "Render Window" msgstr "Fenêtre de rendu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Rendu dans la fenêtre principale" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10354,7 +10354,7 @@ msgstr "Reset" msgid "Reset All" msgstr "Tout réinitialiser" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Réinitialiser Ignorer le gestionnaire de panique" @@ -10386,7 +10386,7 @@ msgstr "Réinitialiser la vue" msgid "Reset all saved Wii Remote pairings" msgstr "Réinitialiser tous les jumelages sauvegardés des Wiimotes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Type de résolution :" @@ -10570,19 +10570,19 @@ msgstr "Russie" msgid "SD Card" msgstr "Carte SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Taille du fichier de la carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Image de carte SD (*.raw);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Réglages de la carte SD" @@ -10590,7 +10590,7 @@ msgstr "Réglages de la carte SD" msgid "SD Root:" msgstr "Racine de la carte SD :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Dossier de synchronisation SD :" @@ -10625,11 +10625,11 @@ msgstr "Contexte SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Sau&vegarder le code" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Sau&vegarder l'état" @@ -10661,11 +10661,11 @@ msgstr "Sauvegarder l'instantané de surveillance de Branche" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Exportation de la sauvegarde" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Enregistrer le journal FIFO" @@ -10683,11 +10683,11 @@ msgstr "Sauvegarde du jeu" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Fichiers de sauvegarde de jeu (*.sav);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Importation de la sauvegarde" @@ -10699,7 +10699,7 @@ msgstr "Sauvegarder l'ancien état" msgid "Save Preset" msgstr "Enregistrer le préréglage" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Sauvegarder le fichier d'enregistrement sous" @@ -10749,23 +10749,23 @@ msgstr "Sauvegarder l'état vers le Slot 8" msgid "Save State Slot 9" msgstr "Sauvegarder l'état vers le Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Sauvegarder l'état dans un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Sauvegarder l'état dans le slot le plus ancien" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Sauvegarder l'état dans l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Sauvegarder l'état dans le slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Sauvegarder la carte des symboles &sous..." @@ -10785,11 +10785,11 @@ msgstr "Enregistrer sous le préréglage..." msgid "Save as..." msgstr "Enregistrer sous..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Sauvegarder le fichier de sortie combinée sous" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10803,11 +10803,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Placer la sauvegarde dans le même dossier que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Sauvegarder le fichier de carte" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Sauvegarder le fichier de signature" @@ -10815,11 +10815,11 @@ msgstr "Sauvegarder le fichier de signature" msgid "Save to Selected Slot" msgstr "Sauvegarder vers l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Sauvegarder dans le slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Sauvegarder..." @@ -10853,7 +10853,7 @@ msgstr "Capt écran" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Rechercher" @@ -10882,7 +10882,7 @@ msgstr "" "La recherche n'est pour l'instant pas possible dans l'espace d'adresse " "virtuelle. Exécutez le jeu pendant un moment et essayez à nouveau." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Rechercher une instruction" @@ -10890,7 +10890,7 @@ msgstr "Rechercher une instruction" msgid "Search games..." msgstr "Rechercher des jeux..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Rechercher une instruction" @@ -10938,11 +10938,11 @@ msgid "Select Dump Path" msgstr "Sélectionner le dossier pour le dump :" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Sélectionner le dossier d'exportation" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Sélectionner le fichier de Figurine" @@ -10982,7 +10982,7 @@ msgstr "Sélectionner la collection Skylander" msgid "Select Skylander File" msgstr "Sélectionnez un fichier Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Sélectionner le slot %1 - %2" @@ -10990,7 +10990,7 @@ msgstr "Sélectionner le slot %1 - %2" msgid "Select State" msgstr "Sélectionner l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Sélectionner l'emplacement de l'état" @@ -11057,7 +11057,7 @@ msgstr "Sélectionner un dossier" msgid "Select a File" msgstr "Sélectionner un fichier" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Sélectionnez un dossier à synchroniser avec l'image de la carte SD" @@ -11065,7 +11065,7 @@ msgstr "Sélectionnez un dossier à synchroniser avec l'image de la carte SD" msgid "Select a Game" msgstr "Sélectionner un Jeu" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Sélectionner une image de carte SD" @@ -11077,7 +11077,7 @@ msgstr "Sélectionner un fichier" msgid "Select a game" msgstr "Sélectionner un jeu" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Sélectionner un titre à installer dans la NAND" @@ -11085,7 +11085,7 @@ msgstr "Sélectionner un titre à installer dans la NAND" msgid "Select e-Reader Cards" msgstr "Sélectionner les cartes e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Sélectionner l'adresse du module RSO :" @@ -11102,7 +11102,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Sélectionner le fichier des clés (dump OTP/SEEPROM)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Sélectionner le fichier à enregistrer" @@ -11126,7 +11126,7 @@ msgstr "Le profil de contrôleur sélectionné n'existe pas" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Le jeu sélectionné ne figure pas dans la liste des jeux !" @@ -11154,7 +11154,7 @@ msgstr "" "Sélectionne la carte graphique à utiliser.

Dans le " "doute, sélectionnez la première." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11211,7 +11211,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11251,7 +11251,7 @@ msgstr "" "être utilisé en temps normal.

Dans le doute, " "sélectionnez Auto." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11272,7 +11272,7 @@ msgstr "" msgid "Send" msgstr "Envoyer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Position de la Sensor Bar :" @@ -11341,7 +11341,7 @@ msgstr "Définir l'adresse de fin du symbole" msgid "Set symbol size (%1):" msgstr "Entrer la taille du symbole (%1) :" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11351,7 +11351,7 @@ msgstr "" "pour les jeux.\n" "Peut ne pas fonctionner pour tous les jeux." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Définit la langue du système de la Wii." @@ -11363,7 +11363,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11387,7 +11387,7 @@ msgstr "" "Wii) MEM2 dans l'adressage de la mémoire virtuelle. Ceci fonctionnera pour " "la grande majorité des jeux." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11401,7 +11401,7 @@ msgstr "SetupWiiMemory : Impossible de créer le fichier setting.txt" msgid "Severity" msgstr "Importance" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilation de Shader" @@ -11423,16 +11423,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Manette Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Afficher le % de vitesse" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Afficher le &journal" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Afficher la barre d'&outils" @@ -11440,11 +11440,11 @@ msgstr "Afficher la barre d'&outils" msgid "Show Active Title in Window Title" msgstr "Affiche le titre en cours dans le nom de la fenêtre" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Tout afficher" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Afficher Australie" @@ -11457,7 +11457,7 @@ msgstr "Afficher le jeu en cours sur Discord" msgid "Show Disabled Codes First" msgstr "Afficher d'abord les codes désactivés" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Afficher les ELF/DOL" @@ -11466,27 +11466,27 @@ msgstr "Afficher les ELF/DOL" msgid "Show Enabled Codes First" msgstr "Afficher d'abord les codes activés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Afficher le nombre de FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Afficher le compteur d'images" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Afficher le temps de rendu par image" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Afficher France" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Afficher GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Afficher Allemagne" @@ -11498,23 +11498,23 @@ msgstr "Afficher le Mode golf en surimpression" msgid "Show Infinity Base" msgstr "Afficher la Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Afficher les entrées du contrôleur" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Afficher Italie" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Afficher JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Afficher Corée" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Afficher le compteur de lags" @@ -11522,19 +11522,19 @@ msgstr "Afficher le compteur de lags" msgid "Show Language:" msgstr "Afficher en :" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Afficher la config. de journalisation" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Afficher les messages NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Afficher le ping du NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Afficher Pays-bas" @@ -11542,7 +11542,7 @@ msgstr "Afficher Pays-bas" msgid "Show On-Screen Display Messages" msgstr "Afficher les messages informatifs" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Afficher PAL" @@ -11551,27 +11551,27 @@ msgstr "Afficher PAL" msgid "Show PC" msgstr "Afficher PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Afficher les graphiques de performance" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Afficher les plateformes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "Afficher les statistiques de projection" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Afficher les régions" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Afficher le compteur de réenregistrements" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Afficher Russie" @@ -11579,51 +11579,51 @@ msgstr "Afficher Russie" msgid "Show Skylanders Portal" msgstr "Afficher le Portail Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Afficher Espagne" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Afficher les couleurs selon la vitesse" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Afficher les statistiques" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Afficher l'heure du système" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Afficher Taïwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Afficher USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Afficher les inconnus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Afficher les durées de VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Afficher les VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Afficher les WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Afficher Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Afficher Monde" @@ -11636,7 +11636,7 @@ msgid "Show in Code" msgstr "Afficher dans le code" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Afficher dans la mémoire" @@ -11664,7 +11664,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11674,7 +11674,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11720,7 +11720,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11730,7 +11730,7 @@ msgstr "" "une déviation standard.

Dans le doute, décochez " "cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11740,7 +11740,7 @@ msgstr "" "standard.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11750,7 +11750,7 @@ msgstr "" "fluidité visuelle.

Dans le doute, décochez cette " "case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11769,7 +11769,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11777,7 +11777,7 @@ msgstr "" "Affiche diverses statistiques de projection.

Dans " "le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11801,7 +11801,7 @@ msgstr "Utiliser à l'horizontale" msgid "Sideways Wii Remote" msgstr "Wiimote à l'horizontale" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Base de données de Signatures" @@ -11825,7 +11825,7 @@ msgid "Signed Integer" msgstr "Entier signé" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinois simplifié" @@ -11842,7 +11842,7 @@ msgstr "Six axes" msgid "Size" msgstr "Taille" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11854,7 +11854,7 @@ msgstr "" msgid "Skip" msgstr "Sauter" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Saute le dessin" @@ -11992,7 +11992,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Trier par ordre alphabétique" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Son :" @@ -12006,7 +12006,7 @@ msgstr "Espagne" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espagnol" @@ -12014,11 +12014,11 @@ msgstr "Espagnol" msgid "Speaker Pan" msgstr "Volume du haut-parleur" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume du haut-parleur :" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Spécialisé (par défaut)" @@ -12026,7 +12026,7 @@ msgstr "Spécialisé (par défaut)" msgid "Specific" msgstr "Spécifique" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12079,7 +12079,7 @@ msgstr "Contrôleur standard" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Démarrer &NetPlay..." @@ -12088,11 +12088,11 @@ msgstr "Démarrer &NetPlay..." msgid "Start Branch Watch" msgstr "Démarrer la surveillance de la Branche" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Démarrer une nouvelle recherche de cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Démarrer l'enregistrement de l'entrée" @@ -12100,7 +12100,7 @@ msgstr "&Démarrer l'enregistrement de l'entrée" msgid "Start Recording" msgstr "Commencer l'enregistrement" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Démarrer en Plein écran" @@ -12112,7 +12112,7 @@ msgstr "Démarrer avec les patchs Riivolution" msgid "Start with Riivolution Patches..." msgstr "Démarrer avec les patchs Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Jeu démarré" @@ -12172,7 +12172,7 @@ msgstr "Pas à pas réussi !" msgid "Stepping" msgstr "Pas à pas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stéréo" @@ -12201,12 +12201,12 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Arrêter" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Arrêter de jouer/enregistrer l'entrée" @@ -12252,7 +12252,7 @@ msgstr "" "RAM (et Texture)

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Étirer à la fenêtre" @@ -12291,8 +12291,8 @@ msgstr "Style" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Succès !" @@ -12319,7 +12319,7 @@ msgstr "Exportation avec succès de %n sur %1 fichier(s) de sauvegarde." msgid "Successfully exported save files" msgstr "Fichiers de sauvegarde exportés avec succès." -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Certificats extraits avec succès depuis la NAND" @@ -12331,12 +12331,12 @@ msgstr "Fichier extrait avec succès." msgid "Successfully extracted system data." msgstr "Extraction avec succès des données du système." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Fichier de sauvegarde importé avec succès." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Ce titre a été installé avec succès dans la NAND." @@ -12359,13 +12359,13 @@ msgstr "Aide" msgid "Supported file formats" msgstr "Formats de fichiers pris en charge" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" "Prend en charge les cartes SD et SDHC. La taille par défaut est de 128 Mo." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -12426,7 +12426,7 @@ msgstr "Nom du symbole :" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symboles" @@ -12454,7 +12454,7 @@ msgstr "" "Synchronise les tâches entre le GPU et le CPU pour éviter des blocages " "aléatoires en mode Dual Core. (Coché = Compatible, Décoché = Rapide)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12475,11 +12475,11 @@ msgid "Synchronizing save data..." msgstr "Synchronisation des données de sauvegarde..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Langue du système :" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Entrée TAS" @@ -12492,7 +12492,7 @@ msgstr "Outils TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Tags" @@ -12510,7 +12510,7 @@ msgstr "Tail" msgid "Taiwan" msgstr "Taïwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Capture d'écran" @@ -12551,7 +12551,7 @@ msgstr "Cache de texture" msgid "Texture Cache Accuracy" msgstr "Précision du cache de texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Copie des textures" @@ -12563,7 +12563,7 @@ msgstr "Filtrage de texture" msgid "Texture Filtering:" msgstr "Filtrage de texture :" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Infos de format de texture" @@ -12609,7 +12609,7 @@ msgstr "Le fichier IPL n'est pas connu comme un dump correct. (CRC32 : {0:x})" msgid "The Masterpiece partitions are missing." msgstr "La partition des Chefs-d'œuvre est manquante." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12617,7 +12617,7 @@ msgstr "" "Impossible de réparer la NAND. Il est recommandé de sauvegarder vos données " "actuelles et de recommencer avec une nouvelle NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "La NAND a été réparée." @@ -12636,7 +12636,7 @@ msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" "La quantité d'argent que ce Skylander possède. Compris entre 0 et 65000." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -13003,7 +13003,7 @@ msgstr "L'index de la clé commune spécifiée est {0} au lieu de {1}." msgid "The specified file \"{0}\" does not exist" msgstr "Le fichier spécifié \"{0}\" n'existe pas" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -13069,7 +13069,7 @@ msgstr "La partition des mises à jour est manquante." msgid "The update partition is not at its normal position." msgstr "La partition des mises à jour n'est pas à sa position normale." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13468,7 +13468,7 @@ msgstr "Délai dépassé" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titre" @@ -13477,12 +13477,12 @@ msgid "To" msgstr "À" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "jusqu'à :" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Activer le &plein écran" @@ -13571,7 +13571,7 @@ msgstr "Contrôles des outils" msgid "Toolbar" msgstr "Barre d'outils" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Haut" @@ -13622,7 +13622,7 @@ msgid "Toy code:" msgstr "Code du jouet :" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinois traditionnel" @@ -13642,8 +13642,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Erreur de Traversal" @@ -13726,7 +13726,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Erreur dans la liste blanche des USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13738,7 +13738,7 @@ msgstr "" "

Dans le doute, sélectionnez ce mode." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13751,7 +13751,7 @@ msgstr "" "saccades avec les Ubershaders hybrides et que vous avez un GPU puissant." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13766,7 +13766,7 @@ msgstr "" "impact minimal sur les performances, mais cela dépend du comportement du " "driver de la carte graphique." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Impossible de détecter automatiquement le module RSO" @@ -13837,11 +13837,11 @@ msgstr "Images GC/Wii non compressées (*.iso *.gcm)" msgid "Undead" msgstr "Mort-vivant" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "&Annuler le lancement d'état" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Annuler la sauvegarde de l'état" @@ -13861,7 +13861,7 @@ msgstr "" "Désinstaller le WAD va supprimer la version actuellement installée de ce " "titre dans la NAND sans supprimer ses données de sauvegarde. Continuer ?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "États-Unis" @@ -13958,7 +13958,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Inconnu(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Inconnu(%1).bin" @@ -13974,7 +13974,7 @@ msgstr "Décharger la ROM" msgid "Unlock Cursor" msgstr "Débloquer le curseur" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -14017,7 +14017,7 @@ msgid "Up" msgstr "Haut" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Mettre à jour" @@ -14091,7 +14091,7 @@ msgstr "Utiliser toutes les données de sauvegarde de la Wii" msgid "Use Built-In Database of Game Names" msgstr "Utiliser la base de données interne des noms de jeux" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Utiliser un codec sans perte (FFV1)" @@ -14099,7 +14099,7 @@ msgstr "Utiliser un codec sans perte (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Utiliser le pointage contrôlé par la souris" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Utiliser le mode PAL60 (EuRGB60)" @@ -14113,7 +14113,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14204,7 +14204,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14215,7 +14215,7 @@ msgstr "" "créée.

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Dans le cas " "contraire et dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14519,7 +14519,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Avertissement" @@ -14643,7 +14643,7 @@ msgstr "Occidental (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14656,7 +14656,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14669,7 +14669,7 @@ msgstr "" "

Dans le doute, cochez cette case." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Périphériques USB autorisés pour une connexion directe à la Wii émulée" @@ -14719,7 +14719,7 @@ msgstr "Boutons de la Wiimote" msgid "Wii Remote Gyroscope" msgstr "Gyroscope de la Wiimote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Paramètres de la Wiimote" @@ -14747,7 +14747,7 @@ msgstr "Wii et Wiimote" msgid "Wii data is not public yet" msgstr "Données Wii pas encore publiques" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fichiers de sauvegarde de Wii (*.bin);;Tous les fichiers (*)" @@ -14755,7 +14755,7 @@ msgstr "Fichiers de sauvegarde de Wii (*.bin);;Tous les fichiers (*)" msgid "WiiTools Signature MEGA File" msgstr "Fichier MEGA de signature de WiiTools" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Résolution de la fenêtre" @@ -14786,7 +14786,7 @@ msgstr "Monde" msgid "Write" msgstr "Écrire" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "Écrire le vidage du journal du bloc JIT" @@ -14835,11 +14835,11 @@ msgstr "Mauvaise région" msgid "Wrong revision" msgstr "Mauvaise révision" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "Écrit vers \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "Écrit vers \"{0}\"." @@ -14890,7 +14890,7 @@ msgstr "Oui" msgid "Yes to &All" msgstr "Oui à to&ut" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14899,7 +14899,7 @@ msgstr "" "Vous allez convertir le contenu du fichier dans %2 vers un dossier dans %1. " "Tout le contenu du dossier sera supprimé. Souhaitez-vous continuer ?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -15045,7 +15045,7 @@ msgstr "" "Souhaitez-vous corriger maintenant le problème ?\n" "Si vous sélectionnez \"Non\", le son risque d'être détérioré." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/hr.po b/Languages/po/hr.po index 6bdf48a731..d574455f79 100644 --- a/Languages/po/hr.po +++ b/Languages/po/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Alberto Poljak , 2013-2014\n" "Language-Team: Croatian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -165,18 +165,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -184,11 +184,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -200,8 +200,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -326,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -367,11 +367,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -379,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -426,13 +426,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -446,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulacija" @@ -471,40 +471,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Datoteka" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Upravljač sličica po sekundi" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Postavke Grafike" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Pomoć" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Postavke prečica na tipkovnici" @@ -524,7 +524,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -536,7 +536,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -548,11 +548,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Učitaj stanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -562,11 +562,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -574,11 +574,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -586,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -595,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Pokreni igru" @@ -619,7 +619,7 @@ msgstr "&Pokreni igru" msgid "&Properties" msgstr "&Svojstva" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registri" @@ -645,11 +645,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Resetiraj" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Zaustavi igru" @@ -681,7 +681,7 @@ msgstr "&Zaustavi igru" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -689,7 +689,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Alati" @@ -699,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Pogled" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -725,11 +725,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -843,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1028,7 +1028,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1132,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1174,8 +1174,8 @@ msgstr "Kvaliteta:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1255,7 +1255,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1332,7 +1332,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Dodaj..." @@ -1346,7 +1346,7 @@ msgstr "Dodaj..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1540,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1580,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analiziraj" @@ -1606,15 +1606,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1632,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1664,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Omjer Slike:" @@ -1714,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Zvuk" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Upravljač zvuka:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1734,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatski" @@ -1755,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1763,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1819,19 +1819,19 @@ msgstr "BP registar" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Upravljač zvuka- Postavke" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Upravljač:" @@ -1874,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Transparent" @@ -1898,7 +1898,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Osnovno" @@ -1950,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1964,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2000,7 +2000,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2012,11 +2012,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Dno" @@ -2193,20 +2193,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Međuspremnik:" @@ -2255,7 +2255,7 @@ msgstr "" msgid "C Stick" msgstr "C Gljiva" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2359,11 +2359,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Promjeni &Disk..." @@ -2470,7 +2470,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2488,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2496,7 +2496,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2508,7 +2508,7 @@ msgstr "Čavrljanje" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Tražilica" @@ -2516,7 +2516,7 @@ msgstr "Tražilica" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2554,11 +2554,11 @@ msgstr "Odaberite datoteku za otvaranje" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2589,7 +2589,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Očisti" @@ -2597,7 +2597,7 @@ msgstr "Očisti" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2618,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2662,7 +2662,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2689,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2699,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "Podesi" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Potvrdite zaustavljanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "Spoji" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Priključite USB tipkovnicu" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2885,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3013,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3022,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3032,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3054,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3245,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3261,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Država:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3298,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "Kritično" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Podrezati" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3314,18 +3314,18 @@ msgstr "" msgid "Crossfade" msgstr "Prijelaz" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3345,11 +3345,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3357,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3408,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3416,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3495,7 +3495,7 @@ msgstr "Mrtva Zona" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Traženje/ispravljanje pogrešaka" @@ -3505,7 +3505,7 @@ msgstr "Traženje/ispravljanje pogrešaka" msgid "Decimal" msgstr "Decimalan" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3552,7 +3552,7 @@ msgstr "Standardne vrijednosti" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "Uobičajeni ISO:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3576,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3622,7 +3622,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" @@ -3671,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Otkrij" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3701,7 +3701,7 @@ msgstr "Postavke Uređaja" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3709,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3733,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3741,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemogući maglu" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4134,11 +4134,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nizozemski" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "I&zlaz" @@ -4162,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Rana Ažuriranja Memorije" @@ -4236,7 +4236,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emu Thread je već pokrenut" @@ -4244,7 +4244,7 @@ msgstr "Emu Thread je već pokrenut" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4262,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4284,16 +4284,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4341,7 +4341,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4367,7 +4367,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4380,7 +4380,7 @@ msgstr "Omogući MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Omogućite Progresivno Skeniranje" @@ -4389,11 +4389,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Omogućite Čuvar Zaslona" @@ -4413,11 +4413,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Omogući Žičani Okvir" @@ -4473,7 +4473,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4504,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4512,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4529,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4557,7 +4557,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4565,7 +4565,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4573,7 +4573,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4602,7 +4602,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engleski" @@ -4619,7 +4619,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4643,7 +4643,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4682,9 +4682,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4697,24 +4697,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4744,7 +4744,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4850,12 +4850,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforija" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4899,11 +4899,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "" @@ -4918,7 +4918,7 @@ msgstr "" msgid "Export Recording" msgstr "Izvedi Snimku Videa" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Izvedi Snimku Videa..." @@ -4946,7 +4946,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4974,7 +4974,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5012,7 +5012,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO Pokretač Datoteka" @@ -5030,7 +5030,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5050,7 +5050,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5071,7 +5071,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5125,7 +5125,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5152,18 +5152,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5190,7 +5190,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5200,8 +5200,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5213,7 +5213,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5241,11 +5241,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5293,11 +5293,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5356,11 +5356,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5421,27 +5421,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5492,7 +5492,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5528,7 +5528,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5542,7 +5542,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5550,24 +5550,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Informacije o Datoteci" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5685,7 +5685,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Prisili 16:9" @@ -5693,7 +5693,7 @@ msgstr "Prisili 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Prisili 4:3" @@ -5725,11 +5725,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5803,11 +5803,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Domet Slike" @@ -5815,7 +5815,7 @@ msgstr "Domet Slike" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5866,7 +5866,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francuski" @@ -5885,8 +5885,8 @@ msgid "From" msgstr "Iz" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5942,11 +5942,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6090,7 +6090,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6103,7 +6103,7 @@ msgstr "Identifikacija Igre:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6211,7 +6211,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Kodovi" @@ -6243,13 +6243,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Njemački" @@ -6325,7 +6325,7 @@ msgstr "Zelena Lijevo" msgid "Green Right" msgstr "Zelena Desno" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6407,7 +6407,7 @@ msgstr "Sakrij" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6431,11 +6431,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6474,11 +6474,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6504,7 +6504,7 @@ msgstr "Brze Tipke" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6562,7 +6562,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR Osjetljivost:" @@ -6626,14 +6626,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6677,7 +6677,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6686,7 +6686,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6701,7 +6701,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6802,16 +6802,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6831,8 +6831,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informacije" @@ -6845,11 +6845,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Unos" @@ -6875,7 +6875,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Umetni SD karticu" @@ -6892,7 +6892,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6915,7 +6915,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7001,7 +7001,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7026,7 +7026,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7051,7 +7051,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7087,13 +7087,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Talijanski" @@ -7106,11 +7106,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7118,47 +7118,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7170,11 +7170,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7185,16 +7185,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanski" @@ -7254,12 +7254,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korejski" @@ -7306,23 +7306,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7330,7 +7330,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7420,11 +7420,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7436,15 +7436,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Učitaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7456,7 +7456,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Učitaj Posebne Teksture" @@ -7464,7 +7464,7 @@ msgstr "Učitaj Posebne Teksture" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7574,19 +7574,19 @@ msgstr "Učitaj Stanje Igre 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7598,35 +7598,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7640,7 +7640,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7666,7 +7666,7 @@ msgstr "Konfiguracija Zapisa" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7674,7 +7674,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7690,27 +7690,27 @@ msgstr "Ispisi Bilježenja" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7770,7 +7770,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7787,12 +7787,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7808,11 +7808,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7821,7 +7821,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7842,7 +7842,7 @@ msgstr "" msgid "Memory Card" msgstr "Memorijska Kartica" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7893,11 +7893,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Razno" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Razne Postavke" @@ -7913,7 +7913,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7933,7 +7933,7 @@ msgstr "" msgid "Modifier" msgstr "Modifikator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7949,8 +7949,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7958,7 +7958,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8016,10 +8016,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8028,7 +8028,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8055,7 +8055,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8265,7 +8265,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8273,7 +8273,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8286,7 +8286,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8330,8 +8330,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8480,7 +8480,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Domet Objekta" @@ -8505,7 +8505,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8527,7 +8527,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "" @@ -8535,13 +8535,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8558,7 +8558,7 @@ msgstr "Otvori" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8567,7 +8567,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8657,7 +8657,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8699,11 +8699,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8717,11 +8717,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8809,7 +8809,7 @@ msgstr "Pauza" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8854,7 +8854,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvjetljenje po pikselu" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8862,15 +8862,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8888,7 +8888,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8905,7 +8905,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8913,7 +8913,7 @@ msgstr "" msgid "Play" msgstr "Pokreni" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8921,11 +8921,11 @@ msgstr "" msgid "Play Recording" msgstr "Pokreni Video Snimak" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Postavke Reprodukcije" @@ -8933,27 +8933,27 @@ msgstr "Postavke Reprodukcije" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8975,7 +8975,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9008,7 +9008,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9024,20 +9024,20 @@ msgstr "Post-Processing Efekt:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9072,7 +9072,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9141,11 +9141,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9159,7 +9159,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9183,7 +9183,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9215,11 +9215,11 @@ msgstr "R-Analogan" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9244,7 +9244,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9252,7 +9252,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9311,7 +9311,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Snimi Video" @@ -9323,11 +9323,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opcije Snimanja Videa" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9391,7 +9391,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9424,7 +9424,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Ukloni" @@ -9461,11 +9461,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Obrađivati u Glavnom prozoru" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9498,7 +9498,7 @@ msgstr "Resetiraj" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9530,7 +9530,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9709,19 +9709,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9729,7 +9729,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9764,11 +9764,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Sn&imi stanje igre" @@ -9800,11 +9800,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9822,11 +9822,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9838,7 +9838,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9888,23 +9888,23 @@ msgstr "Snimi Stanje Igre 8" msgid "Save State Slot 9" msgstr "Mjesto za Stanje Snimanja 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9924,11 +9924,11 @@ msgstr "" msgid "Save as..." msgstr "Snimi kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9939,11 +9939,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9951,11 +9951,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9985,7 +9985,7 @@ msgstr "UslikajZaslon" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Traži" @@ -10012,7 +10012,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10020,7 +10020,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10065,11 +10065,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10109,7 +10109,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10117,7 +10117,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10184,7 +10184,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10192,7 +10192,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10204,7 +10204,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10212,7 +10212,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10229,7 +10229,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Odaberite snimak igre" @@ -10253,7 +10253,7 @@ msgstr "Odabrani profil kontrolera ne postoji." #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10277,7 +10277,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10307,7 +10307,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10329,7 +10329,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10343,7 +10343,7 @@ msgstr "" msgid "Send" msgstr "Poslati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Pozicija Senzora:" @@ -10408,14 +10408,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10427,7 +10427,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10446,7 +10446,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10460,7 +10460,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10482,16 +10482,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Pokaži &Zapis" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Pokaži &Alatnu Traku" @@ -10499,11 +10499,11 @@ msgstr "Pokaži &Alatnu Traku" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10516,7 +10516,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10525,27 +10525,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Pokaži FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Pokaži Francusku" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Pokaži GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10557,23 +10557,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Pokaži Unos Tipki" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Pokaži Italiju" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Pokaži Koreju" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10581,19 +10581,19 @@ msgstr "" msgid "Show Language:" msgstr "Pokaži Jezik:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Pokaži Konfiguraciju za &Zapis" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10601,7 +10601,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Pokaži PAL" @@ -10610,27 +10610,27 @@ msgstr "Pokaži PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Pokaži Platforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Pokaži Regije" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10638,51 +10638,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Pokaži Statistike" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Pokaži Taivan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Pokaži SAD" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Pokaži Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10695,7 +10695,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10723,13 +10723,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10768,47 +10768,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10830,7 +10830,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10854,7 +10854,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Pojednostavljeni Kineski" @@ -10871,7 +10871,7 @@ msgstr "" msgid "Size" msgstr "Veličina" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10881,7 +10881,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10998,7 +10998,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11012,7 +11012,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Španjolski" @@ -11020,11 +11020,11 @@ msgstr "Španjolski" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Glasnoća Zvučnika:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11032,7 +11032,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11074,7 +11074,7 @@ msgstr "Standardni Kontroler" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11083,11 +11083,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11095,7 +11095,7 @@ msgstr "" msgid "Start Recording" msgstr "Počni Snimati Video" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11107,7 +11107,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11167,7 +11167,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11196,12 +11196,12 @@ msgid "Stick" msgstr "Gljiva" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11237,7 +11237,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Rastegni do Prozora" @@ -11276,8 +11276,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11304,7 +11304,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11316,12 +11316,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11344,12 +11344,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11407,7 +11407,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11433,7 +11433,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11452,11 +11452,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Jezik Sustava:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS Unos" @@ -11469,7 +11469,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11487,7 +11487,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Uslikaj Ekran" @@ -11526,7 +11526,7 @@ msgstr "Predmemorija za Teksture" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11538,7 +11538,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Prekriti Format Teksture" @@ -11575,13 +11575,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11596,7 +11596,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11890,7 +11890,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11948,7 +11948,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12266,7 +12266,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Naslov" @@ -12275,12 +12275,12 @@ msgid "To" msgstr "Do" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12369,7 +12369,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Vrh" @@ -12420,7 +12420,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Tradicionalni Kineski" @@ -12440,8 +12440,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12522,14 +12522,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12537,7 +12537,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12546,7 +12546,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12609,11 +12609,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Poništi Posljednje Učitavanje" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "" @@ -12631,7 +12631,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12723,7 +12723,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12739,7 +12739,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12782,7 +12782,7 @@ msgid "Up" msgstr "Gore" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Ažuriraj" @@ -12853,7 +12853,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12861,7 +12861,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12875,7 +12875,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12943,14 +12943,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13213,7 +13213,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Upozorenje" @@ -13302,7 +13302,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13310,7 +13310,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13318,7 +13318,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13368,7 +13368,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13396,7 +13396,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13404,7 +13404,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13435,7 +13435,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13484,11 +13484,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13539,14 +13539,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13643,7 +13643,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/hu.po b/Languages/po/hu.po index a82b200ded..fb972afd0f 100644 --- a/Languages/po/hu.po +++ b/Languages/po/hu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Péter Patkós, 2023-2024\n" "Language-Team: Hungarian (http://app.transifex.com/delroth/dolphin-emu/" @@ -87,7 +87,7 @@ msgstr "" "%1\n" "csatlakozni szeretne a partidhoz." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -141,7 +141,7 @@ msgstr "%1 (lassú)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -176,18 +176,18 @@ msgstr "%1 nem támogatja ezt a funkciót a rendszereden." msgid "%1 doesn't support this feature." msgstr "%1 nem támogatja ezt a funkciót." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 csatlakozott" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 kilépett" @@ -195,11 +195,11 @@ msgstr "%1 kilépett" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 nem egy valid ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 éppen golfozik" @@ -211,8 +211,8 @@ msgstr "%1 ezzel játszik: %2" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -229,7 +229,7 @@ msgstr "%1 játékmenet található" msgid "%1 sessions found" msgstr "%1 játékmenet található" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -337,11 +337,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Névjegy" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Új memória töréspont hozzáadása" @@ -358,11 +358,11 @@ msgstr "&Funkció hozzáadása" msgid "&Add..." msgstr "&Hozzáadás..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Audió beállítások" @@ -378,11 +378,11 @@ msgstr "&Szegély nélküli ablak" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Töréspontok" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -390,15 +390,15 @@ msgstr "" msgid "&Cancel" msgstr "&Mégse" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Csaláskezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Frissítések keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -406,7 +406,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Kód" @@ -414,7 +414,7 @@ msgstr "&Kód" msgid "&Connected" msgstr "&Csatlakoztatva" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Vezérlő beállítások" @@ -437,13 +437,13 @@ msgstr "&Törlés" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -457,11 +457,11 @@ msgstr "&Kód szerkesztése..." msgid "&Edit..." msgstr "&Szerkesztés..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Lemez kiadása" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emuláció" @@ -482,40 +482,40 @@ msgid "&Export as .gci..." msgstr "&Exportálás, mint .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fájl" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "Képkocka léptetése" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Szabad nézet beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub tárház" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafikai beállítások" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Súgó" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Gyorsbillentyű beállítások" @@ -535,7 +535,7 @@ msgstr "&Állapot importálása..." msgid "&Import..." msgstr "&Importálás..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -547,7 +547,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -559,11 +559,11 @@ msgstr "&Nyelv:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Állapot betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -573,11 +573,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -585,11 +585,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Film" @@ -597,7 +597,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Némítás" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Hálózat" @@ -606,23 +606,23 @@ msgid "&No" msgstr "&Nem" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Megnyitás..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&HLE funkciók javítása" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Szünet" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Indítás" @@ -630,7 +630,7 @@ msgstr "&Indítás" msgid "&Properties" msgstr "&Tulajdonságok" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Írásvédett mód" @@ -638,7 +638,7 @@ msgstr "&Írásvédett mód" msgid "&Refresh List" msgstr "&Lista frissítése" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Regiszterek" @@ -656,11 +656,11 @@ msgid "&Rename symbol" msgstr "&Szimbólum átnevezése" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Alapbeállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -668,7 +668,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -676,7 +676,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -684,7 +684,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "&Sebességkorlát:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Stop" @@ -692,7 +692,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Téma:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Szálak" @@ -700,7 +700,7 @@ msgstr "&Szálak" msgid "&Tool" msgstr "&Eszköz" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Eszközök" @@ -710,21 +710,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Nézet" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Figyelés" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Weboldal" @@ -736,11 +736,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Igen" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -788,7 +788,7 @@ msgstr "- Kivonás" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Ismeretlen--" @@ -854,7 +854,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -938,7 +938,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokk)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1039,7 +1039,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Ha bizonytalan vagy, hagyd üresen." @@ -1146,7 +1146,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR kód" @@ -1188,8 +1188,8 @@ msgstr "Pontosság:" msgid "Achievement Settings" msgstr "Teljesítmény beállítások" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Teljesítmények" @@ -1269,7 +1269,7 @@ msgstr "NetPlay Chat aktiválása" msgid "Active" msgstr "Aktív" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1281,7 +1281,7 @@ msgstr "" msgid "Active threads" msgstr "Aktív szálak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adapter" @@ -1289,7 +1289,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter érzékelve" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1346,7 +1346,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Hozzáadás" @@ -1360,7 +1360,7 @@ msgstr "Hozzáadás" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Cím" @@ -1554,7 +1554,7 @@ msgstr "Eltérő régióbeállítások engedélyezése" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD kártyára írás engedélyezése" @@ -1594,7 +1594,7 @@ msgstr "A behelyezni próbált lemez nem található." msgid "Anaglyph" msgstr "Anaglif" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Elemzés" @@ -1620,15 +1620,15 @@ msgstr "Élsimítás:" msgid "Any Region" msgstr "Bármilyen régió" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1646,7 +1646,7 @@ msgstr "Betöltőprogram dátuma:" msgid "Apply" msgstr "Alkalmaz" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1678,16 +1678,16 @@ msgstr "Biztos vagy benne?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Képarány" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Képarány-korrigált belső felbontás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Képarány:" @@ -1728,11 +1728,11 @@ msgstr "" msgid "Audio" msgstr "Audió" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Audió feldolgozó:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Hangnyújtás beállítások" @@ -1748,7 +1748,7 @@ msgstr "Szerző" msgid "Authors" msgstr "Készítők" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automatikus" @@ -1769,7 +1769,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Ablak automatikus méretezése" @@ -1777,15 +1777,15 @@ msgstr "Ablak automatikus méretezése" msgid "Auto-Hide" msgstr "Automatikus elrejtés" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Automatikus szinkronizálás a mappával" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1833,19 +1833,19 @@ msgstr "BP regiszter " msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Háttéralkalmazás beállításai" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Háttéralkalmazás:" @@ -1888,7 +1888,7 @@ msgstr "Rossz érték lett megadva." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -1912,7 +1912,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Alap" @@ -1964,11 +1964,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitráta (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1978,7 +1978,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blokk méret" @@ -2014,7 +2014,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2026,11 +2026,11 @@ msgstr "BootMii NAND backup fájl(*.bin);;Minden fájl (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys fájl (*.bin);;Minden fájl (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Szegély nélküli teljes képernyő" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Lent" @@ -2207,20 +2207,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "&NetPlay játékmenetek böngészése...." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Pufferméret:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Pufferméret megváltozott erre: %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Puffer:" @@ -2269,7 +2269,7 @@ msgstr "" msgid "C Stick" msgstr "C kar" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2293,7 +2293,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Gyorsítótáras értelmező (lassabb)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2373,11 +2373,11 @@ msgstr "Nem indítható NetPlay munkamenet, amíg egy játék fut!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Mégse" @@ -2463,7 +2463,7 @@ msgstr "" msgid "Change &Disc" msgstr "Lemez&váltás" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Lemez&váltás..." @@ -2485,7 +2485,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2506,7 +2506,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2514,7 +2514,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Csaláskód szerkesztő" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Csalás keresése" @@ -2534,7 +2534,7 @@ msgstr "Csalás keresése" msgid "Cheats Manager" msgstr "Csalás kezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "NAND ellenőrzése..." @@ -2572,11 +2572,11 @@ msgstr "Válassz megnyitandó fájlt" msgid "Choose a file to open or create" msgstr "Válassz megnyitandó vagy létrehozandó fájlt" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2607,7 +2607,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Törlés" @@ -2615,7 +2615,7 @@ msgstr "Törlés" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Gyorsítótár törlése" @@ -2636,7 +2636,7 @@ msgstr "" msgid "Close" msgstr "Bezárás" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ko&nfiguráció" @@ -2680,7 +2680,7 @@ msgstr "Színtér" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2707,7 +2707,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2717,7 +2717,7 @@ msgstr "Árnyékolók összeállítása" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Tömörítés" @@ -2832,7 +2832,7 @@ msgstr "Beállítások" msgid "Configure Controller" msgstr "Vezérlő konfigurálása" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin konfigurálása" @@ -2856,7 +2856,7 @@ msgstr "Kimenet konfigurálása" msgid "Confirm" msgstr "Megerősítés" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2864,7 +2864,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Megerősítés leállításkor" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2875,15 +2875,15 @@ msgstr "Megerősítés" msgid "Connect" msgstr "Csatlakozás" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Balance Board csatlakoztatása" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB billentyűzet csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Wii Remote %1 csatlakoztatása" @@ -2903,7 +2903,7 @@ msgstr "Wii Remote 3 csatlakoztatása" msgid "Connect Wii Remote 4" msgstr "Wii Remote 4 csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Wii Remote-ok csatlakoztatása" @@ -3031,8 +3031,8 @@ msgstr "Konvergencia" msgid "Convergence:" msgstr "Konvergencia:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Sikertelen átalakítás." @@ -3040,9 +3040,9 @@ msgstr "Sikertelen átalakítás." msgid "Convert" msgstr "Konvertálás" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Fájl mappává konvertálása" @@ -3050,9 +3050,9 @@ msgstr "Fájl mappává konvertálása" msgid "Convert File..." msgstr "Fájl konvertálása..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Mappa fájllá konvertálása " @@ -3072,8 +3072,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konvertálás..." @@ -3269,7 +3269,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "A központi szerver nem található" @@ -3285,13 +3285,13 @@ msgstr "A fájl nem olvasható." msgid "Country:" msgstr "Ország:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Létrehozás" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3322,11 +3322,11 @@ msgstr "Készítő:" msgid "Critical" msgstr "Kritikus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Levágás" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3338,18 +3338,18 @@ msgstr "" msgid "Crossfade" msgstr "Átúsztatás" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Jelenlegi régió" @@ -3369,11 +3369,11 @@ msgstr "Jelenlegi játék" msgid "Current thread" msgstr "Jelenlegi szál" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Egyéni" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Egyéni (nyújtott)" @@ -3381,15 +3381,15 @@ msgstr "Egyéni (nyújtott)" msgid "Custom Address Space" msgstr "Egyéni címtartomány" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Egyéni képarány magassága" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Egyéni képarány szélessége" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Egyéni képarány:" @@ -3432,7 +3432,7 @@ msgstr "DJ pult" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3440,15 +3440,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "DSP HLE (gyors)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (ajánlott)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (nagyon lassú)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (lassú)" @@ -3519,7 +3519,7 @@ msgstr "Holtsáv" msgid "Debug" msgstr "Hibakeresés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Hibakeresés" @@ -3529,7 +3529,7 @@ msgstr "Hibakeresés" msgid "Decimal" msgstr "Decimális" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Dekódolás minősége:" @@ -3576,7 +3576,7 @@ msgstr "Alapértelmezett" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Alapértelmezett eszköz" @@ -3592,7 +3592,7 @@ msgstr "Alapértelmezett ISO:" msgid "Default thread" msgstr "Alapértelmezett szál" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3600,7 +3600,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3646,7 +3646,7 @@ msgstr "Mélység:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Leírás" @@ -3695,7 +3695,7 @@ msgstr "Leválasztva" msgid "Detect" msgstr "Észlelés" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "RSO modulok észlelése" @@ -3725,7 +3725,7 @@ msgstr "Eszköz beállítások" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Eszköz:" @@ -3733,7 +3733,7 @@ msgstr "Eszköz:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Képernyő sötétítése öt perc inaktivitás után." @@ -3757,7 +3757,7 @@ msgstr "Határolókeret kikapcsolása" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3765,11 +3765,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Emulációs sebességkorlát kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Fastmem kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Fastmem Arena kikapcsolása" @@ -3777,11 +3777,11 @@ msgstr "Fastmem Arena kikapcsolása" msgid "Disable Fog" msgstr "Köd kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "JIT gyorsítótár kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3796,7 +3796,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4160,11 +4160,11 @@ msgstr "Turbógomb felengedésének időtartama (képkocka):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holland" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "K&ilépés" @@ -4188,7 +4188,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Korai memória frissítés" @@ -4262,7 +4262,7 @@ msgstr "Beágyazott képkocka puffer (EFB)" msgid "Empty" msgstr "Üres" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Az emulációs szál már fut" @@ -4270,7 +4270,7 @@ msgstr "Az emulációs szál már fut" msgid "Emulate Disc Speed" msgstr "Lemezsebesség emulálása" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4288,7 +4288,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Emulált USB esközök" @@ -4310,16 +4310,16 @@ msgstr "Emuláció sebessége" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Engedélyezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API-érvényesítési rétegek használata" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Hangnyújtás engedélyezése" @@ -4367,7 +4367,7 @@ msgstr "" msgid "Enable FPRF" msgstr "FPRF használata" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Grafikai modok engedélyezése" @@ -4393,7 +4393,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "MMU használata" msgid "Enable Progress Notifications" msgstr "Előrehaladási értesítések engedélyezése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Progresszív pásztázás használata" @@ -4415,11 +4415,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Rumble engedélyezése" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Képernyővédő használata" @@ -4439,11 +4439,11 @@ msgstr "Nem hivatalos teljesítmények engedélyezése" msgid "Enable Usage Statistics Reporting" msgstr "Használati statisztika jelentése" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Vonalháló használata" @@ -4499,7 +4499,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4532,7 +4532,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4540,7 +4540,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4557,7 +4557,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Hangnyújtás engedélyezése az emuláció sebességének igazításához." @@ -4585,7 +4585,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4593,7 +4593,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4601,7 +4601,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4630,7 +4630,7 @@ msgstr "Enet nincs inicializálva" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Angol" @@ -4647,7 +4647,7 @@ msgstr "XLink Kai klienst futtató eszköz IP címének megadása:" msgid "Enter USB device ID" msgstr "USB eszköz ID megadása" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Figyelendő cím megadása:" @@ -4671,7 +4671,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "RSO modul címének megadása:" @@ -4710,9 +4710,9 @@ msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4725,24 +4725,24 @@ msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4772,7 +4772,7 @@ msgstr "Hiba az adapter megnyitásakor: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4879,12 +4879,12 @@ msgstr "" msgid "Euphoria" msgstr "Eufória" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Európa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4928,11 +4928,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Kísérleti" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Minden Wii mentés exportálása" @@ -4947,7 +4947,7 @@ msgstr "Sikertelen exportálás" msgid "Export Recording" msgstr "Felvétel exportálása" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Felvétel exportálása..." @@ -4975,7 +4975,7 @@ msgstr "Exportálás, mint .&gcs..." msgid "Export as .&sav..." msgstr "Exportálás, mint .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5003,7 +5003,7 @@ msgstr "Külső" msgid "External Frame Buffer (XFB)" msgstr "Küldő képkockapuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5041,7 +5041,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO lejátszó" @@ -5061,7 +5061,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5081,7 +5081,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Nem sikerült kapcsolódni ehhez: Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Nem sikerült kapcsolódni a szerverhez: %1" @@ -5102,7 +5102,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5156,7 +5156,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5183,12 +5183,12 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "\"%1\" importálása sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5196,7 +5196,7 @@ msgstr "" "Mentési fájl importálása sikertelen. A megadott fájl sérült, vagy nem " "érvényes Wii mentés." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5223,7 +5223,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5233,8 +5233,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5246,7 +5246,7 @@ msgstr "d3d11.dll betöltése sikertelen" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll betöltése sikertelen" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5274,11 +5274,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Nem sikerült módosítani a Skylander-t!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5326,11 +5326,11 @@ msgstr "Nem sikerült megnyitni a fájlt." msgid "Failed to open server" msgstr "Nem sikerült megnyitni a szervert" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Nem sikerült megnyitni az Infinity fájlt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5389,11 +5389,11 @@ msgstr "Nem sikerült beolvasni a \"{0}\" bemeneti fájlt." msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Nem sikerült beolvasni az Infinity fájlt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5454,27 +5454,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "FIFO napló mentése sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5525,7 +5525,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5561,7 +5561,7 @@ msgstr "" msgid "Field of View" msgstr "Látómező" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5575,7 +5575,7 @@ msgstr "Fájl részletei" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Fájlformátum" @@ -5583,24 +5583,24 @@ msgstr "Fájlformátum" msgid "File Format:" msgstr "Fájl formátuma:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Fájl információ" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Fájlnév" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Fájl útvonala:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Fájlméret" @@ -5720,7 +5720,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "16:9 kényszerítése" @@ -5728,7 +5728,7 @@ msgstr "16:9 kényszerítése" msgid "Force 24-Bit Color" msgstr "24-Bites szín kényszerítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "4:3 kényszerítése" @@ -5760,11 +5760,11 @@ msgstr "" msgid "Force Nearest" msgstr "Legközelebbi kényszerítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5838,11 +5838,11 @@ msgstr "Képkocka léptetés gyorsítás" msgid "Frame Advance Reset Speed" msgstr "Képkocka léptetés alap sebesség" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Képkocka kimentés" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Képkocka hatókör" @@ -5850,7 +5850,7 @@ msgstr "Képkocka hatókör" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Rögzítendő képkockák:" @@ -5905,7 +5905,7 @@ msgstr "Szabad nézet kapcsoló" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francia" @@ -5924,8 +5924,8 @@ msgid "From" msgstr "Ettől:" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Ettől:" @@ -5981,11 +5981,11 @@ msgstr "GBA hangerő" msgid "GBA Window Size" msgstr "GBA ablakméret" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM megváltozott erre: \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM letiltva" @@ -6141,7 +6141,7 @@ msgid "Game Gamma:" msgstr "Játék gamma:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Játék azonosító" @@ -6154,7 +6154,7 @@ msgstr "Játék azonosító:" msgid "Game Status" msgstr "Játék állapot" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6262,7 +6262,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko kódok" @@ -6294,13 +6294,13 @@ msgstr "Új statisztikai azonosító generálása" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Német" @@ -6376,7 +6376,7 @@ msgstr "Zöld balra" msgid "Green Right" msgstr "Zöld jobbra" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Rács nézet" @@ -6458,7 +6458,7 @@ msgstr "Elrejtés" msgid "Hide &Controls" msgstr "&Vezérlők elrejtése" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Összes elrejtése" @@ -6482,11 +6482,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Magas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Legmagasabb" @@ -6525,11 +6525,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6555,7 +6555,7 @@ msgstr "Gyorsbillentyűk" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6613,7 +6613,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR érzékenysége:" @@ -6677,14 +6677,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6728,7 +6728,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6737,7 +6737,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6752,7 +6752,7 @@ msgstr "Importálás sikertelen" msgid "Import Save File(s)" msgstr "Mentési fájl(ok) importálása" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Wii mentés importálása..." @@ -6853,16 +6853,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6882,8 +6882,8 @@ msgstr "Infó" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Információk" @@ -6896,11 +6896,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Bemenet" @@ -6926,7 +6926,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD kártya behelyezése" @@ -6943,7 +6943,7 @@ msgstr "" msgid "Install Update" msgstr "Frissítés telepítése" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WAD telepítése..." @@ -6966,7 +6966,7 @@ msgstr "Utasítás" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Utasítás:" @@ -7052,7 +7052,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Értelmező (leglassabb)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7077,7 +7077,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "Érvénytelen játékos ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Érvénytelen RSO modulcím: %1" @@ -7102,7 +7102,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Érvénytelen bemenet" @@ -7139,13 +7139,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Olasz" @@ -7158,11 +7158,11 @@ msgstr "Olaszország" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7170,47 +7170,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7222,11 +7222,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7237,16 +7237,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "A JIT nem aktív" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japán" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japán" @@ -7306,12 +7306,12 @@ msgstr "" msgid "Kick Player" msgstr "Játékos kirúgása" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korea" @@ -7358,23 +7358,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Késleltetés:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Késleltetés: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Késleltetés: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Késleltetés: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Késleltetés: ~80 ms" @@ -7382,7 +7382,7 @@ msgstr "Késleltetés: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Ranglisták" @@ -7472,11 +7472,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Oszlopok megjelenítése a listában" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Lista nézet" @@ -7488,15 +7488,15 @@ msgstr "Figyelés" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Betöltés" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7508,7 +7508,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Egyedi textúrák betöltése" @@ -7516,7 +7516,7 @@ msgstr "Egyedi textúrák betöltése" msgid "Load File" msgstr "Fájl betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "GameCube főmenü betöltése" @@ -7626,19 +7626,19 @@ msgstr "Állapot betöltése, foglalat 8" msgid "Load State Slot 9" msgstr "Állapot betöltése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Állapot betöltése fájlból" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Állapot betöltése a választott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Állapot betöltése foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Wii rendszermenü betöltése %1" @@ -7650,35 +7650,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Betöltés a kiválasztott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Betöltés a foglalatból %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Betöltés..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7692,7 +7692,7 @@ msgstr "Helyi" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7718,7 +7718,7 @@ msgstr "Napló beállítások" msgid "Log In" msgstr "Bejelentkezés" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7726,7 +7726,7 @@ msgstr "" msgid "Log Out" msgstr "Kijelentkezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Renderidő naplózása fájlba" @@ -7742,27 +7742,27 @@ msgstr "Napló kimenetek" msgid "Login Failed" msgstr "Sikertelen bejelentkezés" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Ismétlés" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Alacsony" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Legalacsonyabb" @@ -7822,7 +7822,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Készítő" @@ -7839,12 +7839,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "NAND kezelése" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7860,11 +7860,11 @@ msgstr "" msgid "Match Found" msgstr "Egyezés található" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Max puffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "A maximális pufferméret %1 értékre változott" @@ -7873,7 +7873,7 @@ msgstr "A maximális pufferméret %1 értékre változott" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Talán lassulást okoz a Wii menüben és néhány játéknál." @@ -7894,7 +7894,7 @@ msgstr "Memória töréspont" msgid "Memory Card" msgstr "Memóriakártya" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Memóriakártya kezelő" @@ -7945,11 +7945,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Egyebek" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Egyéb beállítások" @@ -7965,7 +7965,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7985,7 +7985,7 @@ msgstr "" msgid "Modifier" msgstr "Módosító" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8001,8 +8001,8 @@ msgstr "Foglalat módosítása" msgid "Modifying Skylander: %1" msgstr "Skylander módosítása: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -8010,7 +8010,7 @@ msgstr "" msgid "Money:" msgstr "Pénz:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8068,10 +8068,10 @@ msgstr "" msgid "N&o to All" msgstr "N&em mindre" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND ellenőrzés" @@ -8080,7 +8080,7 @@ msgstr "NAND ellenőrzés" msgid "NKit Warning" msgstr "NKit figyelmeztetés" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8107,7 +8107,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8317,7 +8317,7 @@ msgstr "Nincs hiba." msgid "No extension selected." msgstr "Nincs kiterjesztés kiválasztva." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Nincs betöltött / rögzített fájl." @@ -8325,7 +8325,7 @@ msgstr "Nincs betöltött / rögzített fájl." msgid "No game is running." msgstr "Nincs futó játék." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Nincs futó játék." @@ -8338,7 +8338,7 @@ msgstr "Nincs kiválasztva grafikai mod" msgid "No input" msgstr "Nincs bemenet" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Nem található probléma." @@ -8384,8 +8384,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8534,7 +8534,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Objektum hatókör" @@ -8559,7 +8559,7 @@ msgstr "Be" msgid "On Movement" msgstr "Mozgatáskor" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8581,7 +8581,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online &dokumentáció" @@ -8589,13 +8589,13 @@ msgstr "Online &dokumentáció" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8612,7 +8612,7 @@ msgstr "Megnyitás" msgid "Open &Containing Folder" msgstr "&Tartalmazó mappa megnyitása" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "&Felhasználói mappa megnyitása" @@ -8621,7 +8621,7 @@ msgstr "&Felhasználói mappa megnyitása" msgid "Open Directory..." msgstr "Könyvtár megnyitása..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "FIFO napló megnyitása" @@ -8711,7 +8711,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8753,11 +8753,11 @@ msgstr "Kimeneti mintavételezés:" msgid "Overwritten" msgstr "Felülírva" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Bemeneti fe&lvétel lejátszása..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8771,11 +8771,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG tömörítési szint" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG tömörítés szintje:" @@ -8863,7 +8863,7 @@ msgstr "Szünet" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Szünet a videó végén" @@ -8908,7 +8908,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Képpont alapú megvilágítás" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Online rendszerfrissítés végrehajtása" @@ -8916,15 +8916,15 @@ msgstr "Online rendszerfrissítés végrehajtása" msgid "Perform System Update" msgstr "Rendszerfrissítés végrehajtása" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Teljesítménystatisztikák" @@ -8942,7 +8942,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8959,7 +8959,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platform" @@ -8967,7 +8967,7 @@ msgstr "Platform" msgid "Play" msgstr "Indítás" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Indítás / Felvétel" @@ -8975,11 +8975,11 @@ msgstr "Indítás / Felvétel" msgid "Play Recording" msgstr "Felvétel lejátszása" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Visszajátszási beállítások" @@ -8987,27 +8987,27 @@ msgstr "Visszajátszási beállítások" msgid "Player" msgstr "Játékos" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9029,7 +9029,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9062,7 +9062,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9078,20 +9078,20 @@ msgstr "Utófeldolgozási effektus:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Egyedi textúrák előzetes lehívása" @@ -9128,7 +9128,7 @@ msgstr "" msgid "Pressure" msgstr "Nyomás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9197,11 +9197,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Haladás" @@ -9215,7 +9215,7 @@ msgstr "" msgid "Public" msgstr "Nyilvános" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Játéklista gyorsítótár ürítése" @@ -9239,7 +9239,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9271,11 +9271,11 @@ msgstr "Jobb analóg" msgid "READY" msgstr "KÉSZ" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO modulok" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO auto-felismerés" @@ -9300,7 +9300,7 @@ msgstr "Tartomány vége:" msgid "Range Start: " msgstr "Tartomány eleje:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9308,7 +9308,7 @@ msgstr "" msgid "Raw" msgstr "Nyers" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Nyers belső felbontás" @@ -9367,7 +9367,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Rögzítés" @@ -9379,11 +9379,11 @@ msgstr "" msgid "Recording" msgstr "Rögzítés" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Rögzítési beállítások" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Rögzítés..." @@ -9448,7 +9448,7 @@ msgid "Refreshing..." msgstr "Frissítés..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Régió" @@ -9481,7 +9481,7 @@ msgstr "Emlékeztessen később" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Törlés" @@ -9518,11 +9518,11 @@ msgstr "Szimbólum átnevezése" msgid "Render Window" msgstr "Render ablak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Megjelenítés a főablakban" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9555,7 +9555,7 @@ msgstr "Alapbeállítások" msgid "Reset All" msgstr "Összes visszaállítása" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9587,7 +9587,7 @@ msgstr "Nézet visszaállítása" msgid "Reset all saved Wii Remote pairings" msgstr "Mentett Wii Remote párosítások visszaállítása" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Felbontás típusa:" @@ -9766,19 +9766,19 @@ msgstr "Oroszország" msgid "SD Card" msgstr "SD kártya" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD kártya fájlméret:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD kártya képfájl (*.raw);;Minden fájl (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD kártya elérési út:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD kártya beállítások" @@ -9786,7 +9786,7 @@ msgstr "SD kártya beállítások" msgid "SD Root:" msgstr "SD gyökér:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9821,11 +9821,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "K&ód mentése" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Á&llapot mentése" @@ -9857,11 +9857,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "FIFO napló mentése" @@ -9879,11 +9879,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Mentési fájlok (*.sav);;Minden fájl (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9895,7 +9895,7 @@ msgstr "Legrégebbi állapot mentése" msgid "Save Preset" msgstr "Előbeállítás mentése" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Rögzített fájl mentése, mint" @@ -9945,23 +9945,23 @@ msgstr "Állapot mentése, foglalat 8" msgid "Save State Slot 9" msgstr "Állapot mentése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Állapot mentése fájlba" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Állapot mentése a legrégebbi foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Állapot mentése a választott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Állapot mentése a foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9981,11 +9981,11 @@ msgstr "Mentés előbeállításként..." msgid "Save as..." msgstr "Mentés másként..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9996,11 +9996,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Mentés a ROM-mal azonos könyvtárba" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -10008,11 +10008,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "Mentés a kiválasztott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Mentés foglalatba %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Mentés..." @@ -10042,7 +10042,7 @@ msgstr "Pillanatkép" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Keresés" @@ -10069,7 +10069,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Utasítás keresése" @@ -10077,7 +10077,7 @@ msgstr "Utasítás keresése" msgid "Search games..." msgstr "Játékok keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Keresési utasítás" @@ -10122,11 +10122,11 @@ msgid "Select Dump Path" msgstr "Kimentési útvonal kiválasztása" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Exportálási könyvtár kiválasztása" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10166,7 +10166,7 @@ msgstr "Skylander Collection kiválasztása" msgid "Select Skylander File" msgstr "Skylander fájl kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Foglalat kiválasztása %1 - %2" @@ -10174,7 +10174,7 @@ msgstr "Foglalat kiválasztása %1 - %2" msgid "Select State" msgstr "Állapot kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Állapot kiválasztása, foglalat" @@ -10241,7 +10241,7 @@ msgstr "Válassz egy könyvtárat" msgid "Select a File" msgstr "Válassz egy fájlt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10249,7 +10249,7 @@ msgstr "" msgid "Select a Game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Válassz egy SD kártya képfájlt" @@ -10261,7 +10261,7 @@ msgstr "Válassz egy fájlt" msgid "Select a game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10269,7 +10269,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Válaszd ki az RSO modul címét:" @@ -10286,7 +10286,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Válassz mentési fájlt" @@ -10310,7 +10310,7 @@ msgstr "A megadott vezérlő profil nem létezik" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "A kiválasztott játék nem létezik a játéklistában!" @@ -10334,7 +10334,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10364,7 +10364,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10386,7 +10386,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10400,7 +10400,7 @@ msgstr "" msgid "Send" msgstr "Küldés" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Érzékelősáv helyzete:" @@ -10465,7 +10465,7 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "Szimbólum méret beállítása (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10475,7 +10475,7 @@ msgstr "" "helyett.\n" "Nem biztos, hogy minden játékkal működik." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "A Wii rendszer nyelve." @@ -10487,7 +10487,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10506,7 +10506,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10520,7 +10520,7 @@ msgstr "SetupWiiMemory: setting.txt fájl nem hozható létre" msgid "Severity" msgstr "Súlyosság" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Árnyékoló összeállítás" @@ -10542,16 +10542,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Sebesség % megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Nap&ló megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Eszközt&ár megjelenítése" @@ -10559,11 +10559,11 @@ msgstr "Eszközt&ár megjelenítése" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Összes megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Ausztrália megjelenítése" @@ -10576,7 +10576,7 @@ msgstr "Jelenlegi játék megjelenítése Discordon" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL megjelenítése" @@ -10585,27 +10585,27 @@ msgstr "ELF/DOL megjelenítése" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Képkockaszámoló megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Képkockaidők megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Franciaország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "GameCube megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Németország megjelenítése" @@ -10617,23 +10617,23 @@ msgstr "Golf mód átfedés megjelenítése" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Bemeneti kijelző megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Olaszország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "JPN megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Korea megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Eltérési szám megjelenítése" @@ -10641,19 +10641,19 @@ msgstr "Eltérési szám megjelenítése" msgid "Show Language:" msgstr "Nyelv megjelenítése:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Naplózási &beállítások megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "NetPlay üzenetek mgejelenítése" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay ping mgejelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Hollandia megjelenítése" @@ -10661,7 +10661,7 @@ msgstr "Hollandia megjelenítése" msgid "Show On-Screen Display Messages" msgstr "Képernyőn megjelenő üzenetek megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL megjelenítése" @@ -10670,27 +10670,27 @@ msgstr "PAL megjelenítése" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Teljesítmény grafikonok megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Platformok megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Régiók megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Oroszország megjelenítése" @@ -10698,51 +10698,51 @@ msgstr "Oroszország megjelenítése" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Spanyolország megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Statisztikák megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Rendszeróra megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Tajvan megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "USA megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Ismeretlen megjelenítése" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Világ megjelenítése" @@ -10755,7 +10755,7 @@ msgid "Show in Code" msgstr "Megjelenítés a Kódban" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Megjelenítés a Memóriában" @@ -10783,13 +10783,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10828,47 +10828,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10890,7 +10890,7 @@ msgstr "Oldalra tartás kapcsoló" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10914,7 +10914,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Egyszerűsített kínai" @@ -10931,7 +10931,7 @@ msgstr "" msgid "Size" msgstr "Méret" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10941,7 +10941,7 @@ msgstr "" msgid "Skip" msgstr "Átugrás" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11058,7 +11058,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Alfabetikus rendezés" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Hang:" @@ -11072,7 +11072,7 @@ msgstr "Spanyolország" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanyol" @@ -11080,11 +11080,11 @@ msgstr "Spanyol" msgid "Speaker Pan" msgstr "Hangszóró pásztázás" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Hangszóró hangerő:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11092,7 +11092,7 @@ msgstr "" msgid "Specific" msgstr "Specifikus" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11134,7 +11134,7 @@ msgstr "Szabványos vezérlő" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "&NetPlay indítása..." @@ -11143,11 +11143,11 @@ msgstr "&NetPlay indítása..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Bemenet rögzítésének indítása" @@ -11155,7 +11155,7 @@ msgstr "&Bemenet rögzítésének indítása" msgid "Start Recording" msgstr "Felvétel indítása" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Indítás teljes képernyőn" @@ -11167,7 +11167,7 @@ msgstr "Indítás Riivolution Patchekkel" msgid "Start with Riivolution Patches..." msgstr "Indítás Riivolution Patchekkel..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Elindított játék" @@ -11227,7 +11227,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Sztereó" @@ -11256,12 +11256,12 @@ msgid "Stick" msgstr "Kar" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Játék/felvétel leállítása" @@ -11297,7 +11297,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Ablakméretűvé nyújtás" @@ -11336,8 +11336,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Siker" @@ -11364,7 +11364,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Sikeresen exportált mentési fájlok" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Tanúsítványok sikeresen kivonva a NAND-ból" @@ -11376,12 +11376,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Mentett fájl sikeresen importálva." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11404,12 +11404,12 @@ msgstr "Támogatás" msgid "Supported file formats" msgstr "Támogatott fájlformátumok" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Támogatja az SD és SDHC formátumot. Az alapértelmezett méret 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Térhangzás" @@ -11470,7 +11470,7 @@ msgstr "Szimbólum neve:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11496,7 +11496,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11515,11 +11515,11 @@ msgid "Synchronizing save data..." msgstr "Mentett adatok szinkronizálása..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Rendszer nyelve:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS bemenet" @@ -11532,7 +11532,7 @@ msgstr "TAS eszközök" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Címkék" @@ -11550,7 +11550,7 @@ msgstr "" msgid "Taiwan" msgstr "Tajvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Pillanatkép készítése" @@ -11589,7 +11589,7 @@ msgstr "Textúra gyorsítótár" msgid "Texture Cache Accuracy" msgstr "Textúra gyorsítótár pontosság" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Textúra kimentés" @@ -11601,7 +11601,7 @@ msgstr "Textúraszűrés" msgid "Texture Filtering:" msgstr "Textúraszűrés:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Textúra formátum átfedés" @@ -11638,13 +11638,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11659,7 +11659,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "Ennek a Skylandernek a pénzösszege. 0 és 65000 között" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11963,7 +11963,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "A megadott fájl \"{0}\" nem létezik." -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12021,7 +12021,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12348,7 +12348,7 @@ msgstr "Lejárt az idő" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Cím" @@ -12357,12 +12357,12 @@ msgid "To" msgstr "Eddig:" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Eddig:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Teljes képernyő kapcsoló" @@ -12451,7 +12451,7 @@ msgstr "" msgid "Toolbar" msgstr "Eszköztár" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Fent" @@ -12502,7 +12502,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Hagyományos kínai" @@ -12522,8 +12522,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12604,14 +12604,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB engedélyezési hiba" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12619,7 +12619,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12628,7 +12628,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12691,11 +12691,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Állapot betöltésének visszavonása" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Állapot mentésének visszavonása" @@ -12713,7 +12713,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Egyesült Államok" @@ -12805,7 +12805,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Ismeretlen(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Ismeretlen(%1).bin" @@ -12821,7 +12821,7 @@ msgstr "ROM ürítése" msgid "Unlock Cursor" msgstr "Kurzor feloldása" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12864,7 +12864,7 @@ msgid "Up" msgstr "Fel" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Frissítés" @@ -12937,7 +12937,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Veszteségmentes kodek használata (FFV1)" @@ -12945,7 +12945,7 @@ msgstr "Veszteségmentes kodek használata (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 mód használata (EuRGB60)" @@ -12959,7 +12959,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13028,14 +13028,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13298,7 +13298,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Figyelem" @@ -13387,7 +13387,7 @@ msgstr "Western (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13395,7 +13395,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13403,7 +13403,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Engedélyezett USB átjáró eszközök" @@ -13453,7 +13453,7 @@ msgstr "Wii Remote gombok" msgid "Wii Remote Gyroscope" msgstr "Wii Remote Giroszkóp" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote beállítások" @@ -13481,7 +13481,7 @@ msgstr "Wii és Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii mentési fájlok (*.bin);;Minden fájl (*)" @@ -13489,7 +13489,7 @@ msgstr "Wii mentési fájlok (*.bin);;Minden fájl (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Ablakfelbontás" @@ -13520,7 +13520,7 @@ msgstr "Világ" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13569,11 +13569,11 @@ msgstr "Helytelen régió" msgid "Wrong revision" msgstr "Helytelen revízió" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13624,14 +13624,14 @@ msgstr "Igen" msgid "Yes to &All" msgstr "&Igen mindre" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13729,7 +13729,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/it.po b/Languages/po/it.po index b46d2b90de..bef5e6f6f5 100644 --- a/Languages/po/it.po +++ b/Languages/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mewster , 2023-2024\n" "Language-Team: Italian (http://app.transifex.com/delroth/dolphin-emu/" @@ -92,7 +92,7 @@ msgstr "" "%1\n" "vuole entrare nel party." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -146,7 +146,7 @@ msgstr "%1 (lento)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -181,7 +181,7 @@ msgstr "%1 non supporta questa funzionalità sul tuo sistema." msgid "%1 doesn't support this feature." msgstr "%1 non supporta questa funzionalità." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -191,11 +191,11 @@ msgstr "" "%2 oggetto/i\n" "Frame corrente: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 è entrato" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 è uscito" @@ -203,11 +203,11 @@ msgstr "%1 è uscito" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha sbloccato %2/%3 achievement del valore di %4/%5 punti" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 non è una ROM valida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 è in modalità golf" @@ -219,8 +219,8 @@ msgstr "%1 sta giocando a %2" msgid "%1 memory ranges" msgstr "%1 range di memoria" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -237,7 +237,7 @@ msgstr "Trovata %1 sessione" msgid "%1 sessions found" msgstr "Trovate %1 sessioni" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -274,7 +274,7 @@ msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -345,11 +345,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&A proposito di..." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Aggiungi punto di interruzione dei dati" @@ -366,11 +366,11 @@ msgstr "&Aggiungi funzione" msgid "&Add..." msgstr "&Aggiungi..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Impostazioni &audio" @@ -384,13 +384,13 @@ msgstr "&Finestra senza bordi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 msgid "&Break On Hit" -msgstr "" +msgstr "&Interrompi al raggiungimento" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Punti di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -398,15 +398,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Annulla" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Gestore trucchi" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Controlla la presenza di aggiornamenti..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Pulisci simboli" @@ -414,7 +414,7 @@ msgstr "&Pulisci simboli" msgid "&Clone..." msgstr "&Clona..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Codice" @@ -422,7 +422,7 @@ msgstr "&Codice" msgid "&Connected" msgstr "&Connesso" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Impostazioni &Controller" @@ -445,13 +445,13 @@ msgstr "&Elimina" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Elimina espressione di controllo" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Elimina espressioni di controllo" @@ -465,11 +465,11 @@ msgstr "&Modifica codice..." msgid "&Edit..." msgstr "&Modifica..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Espelli disco" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulazione" @@ -490,40 +490,40 @@ msgid "&Export as .gci..." msgstr "&Esporta come .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&File" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Avanza per fotogramma" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Impostazioni camera libera" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Genera simboli da" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Repository &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Impostazioni video" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Aiuto" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Impostazioni tasti di scelta rapida" @@ -543,7 +543,7 @@ msgstr "&Importa stato..." msgid "&Import..." msgstr "&Importa..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Base Infinity" @@ -555,7 +555,7 @@ msgstr "&Inserisci blr" msgid "&Interframe Blending" msgstr "&Blending Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -567,11 +567,11 @@ msgstr "&Lingua:" msgid "&Load Branch Watch" msgstr "&Carica Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Carica stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Carica mappa dei simboli" @@ -581,23 +581,23 @@ msgstr "&Carica file all'indirizzo corrente" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Blocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Blocca widget" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 msgid "&Log On Hit" -msgstr "" +msgstr "&Logga al raggiungimento" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Filmato" @@ -605,7 +605,7 @@ msgstr "&Filmato" msgid "&Mute" msgstr "&Muto" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Network" @@ -614,23 +614,23 @@ msgid "&No" msgstr "&No" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Apri..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opzioni" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Patch funzioni HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Gioca" @@ -638,7 +638,7 @@ msgstr "&Gioca" msgid "&Properties" msgstr "&Proprietà" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Modalità sola-lettura" @@ -646,7 +646,7 @@ msgstr "&Modalità sola-lettura" msgid "&Refresh List" msgstr "&Aggiorna elenco" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registri" @@ -664,11 +664,11 @@ msgid "&Rename symbol" msgstr "&Rinomina simbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Resetta" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Gestione Resource Pack" @@ -676,7 +676,7 @@ msgstr "&Gestione Resource Pack" msgid "&Save Branch Watch" msgstr "&Salva Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Salva mappa dei simboli" @@ -684,7 +684,7 @@ msgstr "&Salva mappa dei simboli" msgid "&Scan e-Reader Card(s)..." msgstr "&Scansiona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" @@ -692,7 +692,7 @@ msgstr "&Skylanders Portal" msgid "&Speed Limit:" msgstr "&Limite velocità" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Arresta" @@ -700,7 +700,7 @@ msgstr "&Arresta" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Thread" @@ -708,7 +708,7 @@ msgstr "&Thread" msgid "&Tool" msgstr "&Strumenti" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Strumenti" @@ -718,21 +718,21 @@ msgstr "&Rimuovi ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "&Sblocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Visualizza" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Espressione di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Sito Web" @@ -744,11 +744,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sì" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' non trovato, non sono stati generati nomi dei simboli" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' non trovato, ora cercherò nomi di funzioni comuni" @@ -796,7 +796,7 @@ msgstr "- Sottrai" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Sconosciuto--" @@ -862,7 +862,7 @@ msgstr "Signed Integer 16-bit" msgid "16-bit Unsigned Integer" msgstr "Unsigned Integer 16-bit" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -946,7 +946,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blocchi)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1048,7 +1048,7 @@ msgid "Disabled in Hardcore Mode." msgstr "" "Disabilitato in Modalità Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "Nel dubbio, lascia deselezionato." @@ -1191,7 +1191,7 @@ msgstr "" "non funzionare correttamente.\n" "Usalo a tuo rischio e pericolo.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "Codice AR" @@ -1233,8 +1233,8 @@ msgstr "Precisione:" msgid "Achievement Settings" msgstr "Impostazioni achievement" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Achievement" @@ -1332,7 +1332,7 @@ msgstr "Attiva chat NetPlay" msgid "Active" msgstr "Attivo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "Statuine Infinity attive:" @@ -1344,7 +1344,7 @@ msgstr "Coda thread attivo" msgid "Active threads" msgstr "Thread attivi" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adattatore" @@ -1352,7 +1352,7 @@ msgstr "Adattatore" msgid "Adapter Detected" msgstr "Rilevato adattatore" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adattatore:" @@ -1409,7 +1409,7 @@ msgstr "Aggiungi espressione di controllo" #: 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:329 msgid "Add..." msgstr "Aggiungi..." @@ -1423,7 +1423,7 @@ msgstr "Aggiungi..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Indirizzo" @@ -1667,7 +1667,7 @@ msgstr "Permetti diverse impostazioni regione" msgid "Allow Usage Statistics Reporting" msgstr "Permetti report statistiche d'uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Permetti scrittura su scheda SD" @@ -1709,7 +1709,7 @@ msgstr "Impossibile trovare il disco di cui si era in attesa." msgid "Anaglyph" msgstr "Anaglifo" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analizza" @@ -1735,15 +1735,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualunque regione" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Accoda signature a" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "Accoda ad un fil&e di signature preesistente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "A&pplica file signature..." @@ -1763,7 +1763,7 @@ msgstr "Data Apploader" msgid "Apply" msgstr "Applica" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Applica file di signature" @@ -1795,16 +1795,16 @@ msgstr "Sei sicuro?" msgid "Area Sampling" msgstr "Campionamento ad Area" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Rapporto d'aspetto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "Risoluzione interna corretta per il rapporto d'aspetto" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Rapporto d'aspetto:" @@ -1846,11 +1846,11 @@ msgstr "Collega MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Motore audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Impostazioni stretching audio" @@ -1866,7 +1866,7 @@ msgstr "Autore" msgid "Authors" msgstr "Autori" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1891,7 +1891,7 @@ msgstr "" "\n" "Seleziona una specifica risoluzione interna." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Ridimensiona automaticamente la finestra" @@ -1899,15 +1899,15 @@ msgstr "Ridimensiona automaticamente la finestra" msgid "Auto-Hide" msgstr "Nascondi automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "Individua automaticamente i moduli RSO?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Sincronizza automaticamente con la cartella" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1961,19 +1961,19 @@ msgstr "Registro BP" msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Motore" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Multithreading backend" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Impostazioni motore" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motore:" @@ -2016,7 +2016,7 @@ msgstr "Valore non valido." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -2040,7 +2040,7 @@ msgstr "Indirizzo base" msgid "Base priority" msgstr "Priorità base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Impostazioni di base" @@ -2093,11 +2093,11 @@ msgstr "Binary SSL (lettura)" msgid "Binary SSL (write)" msgstr "Binary SSL (scrittura)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2111,7 +2111,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Dimensione blocco" @@ -2149,7 +2149,7 @@ msgstr "" "La modalità ponte Bluetooth è abilitata, ma Dolphin è stato compilato senza " "libusb. La modalità ponte non può essere utilizzata." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Avvia in pausa" @@ -2161,11 +2161,11 @@ msgstr "File di backup NAND BootMII (*.bin);;Tutti i file (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "File chiavi BootMii (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Schermo intero senza bordi" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Sotto" @@ -2317,7 +2317,7 @@ msgstr "Interrompi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 msgid "Break &And Log On Hit" -msgstr "" +msgstr "Interrompi &e logga al raggiungimento" #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 @@ -2363,20 +2363,20 @@ msgstr "Errore adattatore Broadband" msgid "Broadband Adapter MAC Address" msgstr "Indirizzo MAC adattatore Broadband" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Sfoglia sessioni &NetPlay..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Dimensione buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Dimensione del buffer cambiata a %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2428,7 +2428,7 @@ msgstr "Da: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "C&rea file di signature..." @@ -2452,7 +2452,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2544,11 +2544,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annulla" @@ -2635,7 +2635,7 @@ msgstr "Centra e calibra" msgid "Change &Disc" msgstr "Cambia &disco" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Cambia &disco..." @@ -2656,8 +2656,10 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"Cambia la presentazione e il colore dei pulsanti di Dolphin." +"

Nel dubbio, seleziona Clean." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2686,7 +2688,7 @@ msgstr "" "ha movimento laterale, ma solo rotazione e zoom fino al punto di origine " "della telecamera." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Cambiare i trucchi avrà effetto soltanto dopo aver riavviato il gioco." @@ -2694,7 +2696,7 @@ msgstr "Cambiare i trucchi avrà effetto soltanto dopo aver riavviato il gioco." msgid "Channel Partition (%1)" msgstr "Partizione Canale (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Il personaggio inserito non è valido!" @@ -2706,7 +2708,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editor di codici" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cerca codice" @@ -2714,7 +2716,7 @@ msgstr "Cerca codice" msgid "Cheats Manager" msgstr "Gestione codici" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Controlla NAND..." @@ -2754,11 +2756,11 @@ msgstr "Scegli un file da aprire" msgid "Choose a file to open or create" msgstr "Scegli un file da aprire o creare" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Scegli file di input prioritario" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Scegli file di input secondario" @@ -2789,7 +2791,7 @@ msgstr "Controller tradizionale" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Pulisci" @@ -2797,7 +2799,7 @@ msgstr "Pulisci" msgid "Clear Branch Watch" msgstr "Pulisci Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Pulisci cache" @@ -2818,7 +2820,7 @@ msgstr "&Clona e modifica codice" msgid "Close" msgstr "Chiudi" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Co&nfigurazione" @@ -2862,7 +2864,7 @@ msgstr "Spazio dei colori" msgid "Column &Visibility" msgstr "&Visibilità colonna" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Combina &due file signature..." @@ -2896,7 +2898,7 @@ msgstr "" "dump. Ciononostante, è possibile che si tratti di un buon dump nei confronti " "della versione eShop Wii U del gioco. Dolphin non è in grado di verificarlo." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compila gli shader prima dell'avvio" @@ -2906,7 +2908,7 @@ msgstr "Compilazione degli shader" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Compressione" @@ -3005,6 +3007,59 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" +"Condizioni:\n" +"Imposta un'espressione valutata quando viene raggiunto un punto di " +"interruzione. Se l'espressione è falsa o 0, il punto di interruzione viene " +"ignorato fino alla volta successiva. Le espressioni devono essere separate " +"da una virgola. Solo l'ultima espressione verrà usata per determinare cosa " +"fare.\n" +"\n" +"Registri che possono essere referenziati:\n" +"GPRs : r0..r31\n" +"FPRs : f0..f31\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Altro: pc, msr\n" +"\n" +"Funzioni:\n" +"Imposta un registro: r1 = 8\n" +"Cast: s8(0xff). Disponibili: s8, u8, s16, u16, s32, u32\n" +"Stack di chiamate: callstack(0x80123456), callstack(\"anim\")\n" +"Confronta stringhe: streq(r3, \"abc\"). Entrambi i parametri possono essere " +"indirizzi o stringhe costanti.\n" +"Leggi Memoria: read_u32(0x80000000). Disponibili: u8, s8, u16, s16, u32, " +"s32, f32, f64\n" +"Scrivi Memoria: write_u32(r3, 0x80000000). Disponibili: u8, u16, u32, f32, " +"f64\n" +"*attualmente la scrittura verrà sempre attivata\n" +"\n" +"Operazioni:\n" +"Unarie: -u, !u, ~u\n" +"Operazioni: * / + -, potenza: **, resto: %, shift: <<, >>\n" +"Compara: <, <=, >, >=, ==, !=, &&, ||\n" +"Bitwise: &, |, ^\n" +"\n" +"Esempi:\n" +"r4 == 1\n" +"f0 == 1.0 && f2 < 10.0\n" +"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" +"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" +"Scrivi e interrompi: r4 = 8, 1\n" +"Scrivi e continua: f3 = f1 + f2, 0\n" +"La condizione va sempre per ultima\n" +"\n" +"Le stringhe vanno usate solo con callstack() o streq() e \"virgolettate\". " +"Non assegnare stringhe a variabili.\n" +"Tutte le variabili verranno stampate nel log Memory Interface, se c'è " +"un'interruzione o un risultato NaN. In caso di problemi, assegna una " +"variabile alla tua equazione perché possa venir stampata.\n" +"\n" +"Nota: Tutti i valori sono internamente convertiti a Double per i calcoli. È " +"possibile che vadano fuori dal range o che diventino NaN. Se viene ritornato " +"NaN verrà fornito un avviso e verrà loggata la variabile che è diventata NaN." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3021,7 +3076,7 @@ msgstr "Configura" msgid "Configure Controller" msgstr "Configura controller" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Configura Dolphin" @@ -3045,7 +3100,7 @@ msgstr "Configura output" msgid "Confirm" msgstr "Conferma" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Conferma cambio backend" @@ -3053,7 +3108,7 @@ msgstr "Conferma cambio backend" msgid "Confirm on Stop" msgstr "Arresto su conferma" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3064,15 +3119,15 @@ msgstr "Conferma" msgid "Connect" msgstr "Collega" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Collega Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Collega tastiera USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Collega Wii Remote %1" @@ -3092,7 +3147,7 @@ msgstr "Collega Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Collega Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Connetti Wii Remote" @@ -3242,8 +3297,8 @@ msgstr "Convergenza" msgid "Convergence:" msgstr "Convergenza:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Conversione fallita." @@ -3251,9 +3306,9 @@ msgstr "Conversione fallita." msgid "Convert" msgstr "Converti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Converti ora file in cartella" @@ -3261,9 +3316,9 @@ msgstr "Converti ora file in cartella" msgid "Convert File..." msgstr "Converti file..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Converti ora cartella in file" @@ -3286,8 +3341,8 @@ msgstr "" "Vuoi continuare lo stesso?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Conversione in corso..." @@ -3522,7 +3577,7 @@ msgstr "" "Se è così, allora potresti dover reimpostare la posizione della memory card " "nelle opzioni." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Impossibile raggiungere il server centrale" @@ -3538,13 +3593,13 @@ msgstr "Impossibile leggere il file." msgid "Country:" msgstr "Paese:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Crea" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Crea file Infinity" @@ -3575,11 +3630,11 @@ msgstr "Autore: " msgid "Critical" msgstr "Critico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Taglia immagine lungo i bordi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3595,11 +3650,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Riduci vertici sulla CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3610,7 +3665,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Regione corrente" @@ -3630,11 +3685,11 @@ msgstr "Gioco corrente" msgid "Current thread" msgstr "Thread corrente" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Personalizzato (allarga)" @@ -3642,15 +3697,15 @@ msgstr "Personalizzato (allarga)" msgid "Custom Address Space" msgstr "Spazio degli indirizzi personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Altezza rapporto d'aspetto personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Larghezza rapporto d'aspetto personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Rapporto d'aspetto personalizzato:" @@ -3696,7 +3751,7 @@ msgstr "Console DJ" msgid "DK Bongos" msgstr "Bongo DK" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP Emulation Engine" @@ -3704,15 +3759,15 @@ msgstr "DSP Emulation Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (veloce)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (consigliato)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "Interpreter DSP LLE (molto lento)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "Ricompilatore DSP LLE (lento)" @@ -3787,7 +3842,7 @@ msgstr "Zona morta" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3797,7 +3852,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Decimale" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Qualità decodifica:" @@ -3844,7 +3899,7 @@ msgstr "Default" msgid "Default Config (Read Only)" msgstr "Configurazione di default (sola lettura)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Dispositivo predefinito" @@ -3860,7 +3915,7 @@ msgstr "ISO predefinita:" msgid "Default thread" msgstr "Thread predefinito" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Posponi invalidazione cache EFB" @@ -3868,7 +3923,7 @@ msgstr "Posponi invalidazione cache EFB" msgid "Defer EFB Copies to RAM" msgstr "Posponi copie EFB su RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3920,7 +3975,7 @@ msgstr "Profondità:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrizione" @@ -3969,7 +4024,7 @@ msgstr "Scollegato" msgid "Detect" msgstr "Rileva" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Individuazione moduli RSO" @@ -3999,7 +4054,7 @@ msgstr "Impostazioni periferica" msgid "Device VID (e.g., 057e)" msgstr "Device VID (es. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Dispositivo:" @@ -4008,7 +4063,7 @@ msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" "Non è stato possibile riconoscere %1 come un file Riivolution XML valido." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Oscura lo schermo dopo cinque minuti di inattività." @@ -4032,7 +4087,7 @@ msgstr "Disabilita Bounding Box" msgid "Disable Copy Filter" msgstr "Disabilita copia filtro" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Disattiva copie EFB VRAM" @@ -4040,11 +4095,11 @@ msgstr "Disattiva copie EFB VRAM" msgid "Disable Emulation Speed Limit" msgstr "Disabilita limite velocità di emulazione" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Disabilita Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Disabilita Fastmem Arena" @@ -4052,11 +4107,11 @@ msgstr "Disabilita Fastmem Arena" msgid "Disable Fog" msgstr "Disabilita nebbia" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Disabilita cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Disabilita grandi mappe degli entry point" @@ -4075,7 +4130,7 @@ msgstr "" "alcuni giochi.

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If " "unsure, leave this checked." msgstr "" +"Disabilita lo screensaver durante l'esecuzione di un gioco." +"

Nel dubbio, lascia selezionato." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4115,7 +4172,7 @@ msgstr "Annulla" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 msgid "Display Settings" -msgstr "" +msgstr "Impostazioni di visualizzazione" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4156,7 +4213,7 @@ msgstr "Autorizzi Dolphin a inviare informazioni agli sviluppatori di Dolphin?" 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:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 msgid "Do you want to clear the list of symbol names?" msgstr "Vuoi cancellare la lista dei nomi dei simboli?" @@ -4174,12 +4231,12 @@ msgstr "Vuoi interrompere l'emulazione in corso?" msgid "Do you want to try to repair the NAND?" msgstr "Vuoi provare a correggere la NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 msgid "Dolby Pro Logic II Decoder" msgstr "Decoder Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:218 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:229 msgid "Dolphin FIFO Log (*.dff)" msgstr "Log FIFO Dolphin (*.dff)" @@ -4187,9 +4244,9 @@ msgstr "Log FIFO Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Preset Dolphin Game Mod" -#: Source/Core/DolphinQt/MenuBar.cpp:1603 -#: Source/Core/DolphinQt/MenuBar.cpp:1620 -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +#: Source/Core/DolphinQt/MenuBar.cpp:1629 msgid "Dolphin Map File (*.map)" msgstr "File mappa Dolphin (*.map)" @@ -4202,7 +4259,7 @@ msgid "Dolphin Signature File" msgstr "File signature Dolphin" #: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmati TAS Dolphin (*.dtm)" @@ -4245,7 +4302,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:1001 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:999 msgid "Dolphin is too old for traversal server" msgstr "Dolphin è troppo vecchio per il server traversal" @@ -4269,7 +4326,7 @@ msgstr "" "Dolhin userà questa impostazione per i titoli di cui non potrà riconoscere " "automaticamente la regione." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Il sistema codici di Dolphin è attualmente disabilitato." @@ -4342,6 +4399,12 @@ msgid "" "file banners.

If unsure, leave this checked." msgstr "" +"Scarica le cover di gioco da GameTDB.com per visualizzarle nella " +"visualizzazione a griglia della lista di giochi. Se quest'opzione è " +"deselezionata, la lista giochi visualizzerà un logo generato dai file di " +"salvataggio del gioco, o un logo generico in loro assenza.

La " +"visualizzazione a lista userà sempre il logo del file di salvataggio." +"

Nel dubbio, lascia selezionato." #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 @@ -4382,19 +4445,19 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:845 msgid "Dump Audio" msgstr "Dump audio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Base Textures" msgstr "Dump texture base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump EFB Target" msgstr "Dump del target EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:842 +#: Source/Core/DolphinQt/MenuBar.cpp:839 msgid "Dump Frames" msgstr "Dump dei frame" @@ -4402,7 +4465,7 @@ msgstr "Dump dei frame" msgid "Dump GameCube BBA traffic" msgstr "Scarica traffico GameCube BBA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 msgid "Dump Mip Maps" msgstr "Dump Mip Map" @@ -4410,7 +4473,7 @@ msgstr "Dump Mip Map" msgid "Dump Path:" msgstr "Percorso dump:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 msgid "Dump XFB Target" msgstr "Dump del Target XFB" @@ -4435,7 +4498,7 @@ msgstr "Dump certificati peer" msgid "Dump root CA certificates" msgstr "Dump certificati root CA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Nel dubbio, " "lascia deselezionato.
" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4454,7 +4517,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4473,11 +4536,11 @@ msgstr "Durata rilascio pulsante turbo (in frame):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Olandese" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Esci" @@ -4509,7 +4572,7 @@ msgstr "" "Adatto ai giochi competitivi dove l'imparzialità e la latenza minima sono " "più importanti." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Aggiornamenti anticipati della memoria" @@ -4530,11 +4593,11 @@ msgstr "Modifica punto di interruzione" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit Conditional" -msgstr "" +msgstr "Modifica condizionale" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit conditional expression" -msgstr "" +msgstr "Modifica espressione condizionale" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 @@ -4583,7 +4646,7 @@ msgstr "Embedded Frame Buffer (EFB)" msgid "Empty" msgstr "Vuoto" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread dell'emulatore già in esecuzione" @@ -4591,7 +4654,7 @@ msgstr "Thread dell'emulatore già in esecuzione" msgid "Emulate Disc Speed" msgstr "Emula velocità disco" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Emula Base Infinity" @@ -4611,7 +4674,7 @@ msgstr "" "Emula la velocità disco dell'hardware reale. Disabilitarlo potrebbe causare " "instabilità. L'impostazione predefinita è Abilitato" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Dispositivi USB emulati" @@ -4636,16 +4699,16 @@ msgstr "Velocità di emulazione" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Attiva" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Abilita layer di validazione API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Abilita audio stretching" @@ -4667,7 +4730,7 @@ msgstr "Abilita UI debugging" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "Abilita presenza Discord" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" @@ -4693,7 +4756,7 @@ msgstr "Abilita Achievement Encore" msgid "Enable FPRF" msgstr "Abilita FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Abilita mod grafiche" @@ -4735,7 +4798,7 @@ msgstr "" "disattivazione della Modalità Hardcore durante il gioco ne richiede la " "chiusura prima che possa essere riabilitata nuovamente." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "Abilita JIT Block Profiling" @@ -4748,7 +4811,7 @@ msgstr "Abilita MMU" msgid "Enable Progress Notifications" msgstr "Abilita Notifica Avanzamento" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Abilita scansione progressiva" @@ -4757,11 +4820,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Abilita integrazione RetroAchievements.org" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Abilita vibrazione" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Abilita screen saver" @@ -4771,7 +4834,7 @@ msgstr "Abilita dati altoparlante" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "Abilita modalità spettatore" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" @@ -4781,11 +4844,11 @@ msgstr "Abilita achievement non ufficiali" msgid "Enable Usage Statistics Reporting" msgstr "Abilita report statistiche d'uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Abilita WiiConnect24 tramite WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Abilita wireframe" @@ -4832,6 +4895,11 @@ msgid "" "speedrun criteria or simply for fun.

Setting takes effect on next " "game load." msgstr "" +"Abilita lo sblocco degli achievement in Modalità Encore.

La Modalità " +"Encore ri-attiva gli achievement che il giocatore ha già sbloccato sul sito " +"per poter ricevere le notifiche quando il giocatore soddisfa nuovamente le " +"condizioni, utile per speedrun custom o anche solo per divertimento." +"

L'impostazione avrà effetto dal prossimo gioco caricato." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 msgid "" @@ -4842,6 +4910,13 @@ msgid "" "RetroAchievements session will not be created.

If this is off at game " "launch, it can be toggled freely while the game is running." msgstr "" +"Abilita lo sblocco degli achievement in Modalità Spettatore.

In " +"questa modalità, gli achievement e le leaderboard saranno calcolate e " +"visualizzate a schermo, ma non verranno inviate al server.

Se è " +"attivo all'avvio di un gioco, non potrà essere spento fino alla chiusura di " +"un gioco perché non è possibile creare una sessione RetroAchievements " +"altrimenti.

Se è spento all'avvio di un gioco, è possibile abilitarlo " +"o disabilitarlo liberamente durante l'esecuzione." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" @@ -4850,8 +4925,13 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" +"Abilita lo sblocco di achivement ufficiali e non ufficiali.

Gli " +"achievement non ufficiali potrebbero essere achievement opzionali o non " +"completi che non sono stati ritenuti ufficiali da RetroAchievements, e " +"potrebbero essere utili per testing o anche solo per divertimento." +"

L'impostazione avrà effetto dal prossimo gioco caricato." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4898,7 +4978,7 @@ msgstr "" "meno che non sia assolutamente necessaria.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4910,7 +4990,7 @@ msgstr "" "solo il backend Vulkan ne trarrebbe beneficio.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4937,7 +5017,7 @@ msgstr "" "giochi continueranno a renderizzare in SDR.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Attiva lo stretching dell'audio affinché corrisponda alla velocità " @@ -4975,7 +5055,7 @@ msgstr "" "Compatibile, OFF = Veloce)

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4987,7 +5067,7 @@ msgstr "" "Meteo e i Canali Nintendo\n" "Leggi i Termini del Servizio su: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4999,7 +5079,7 @@ msgstr "" "simboli di debug per gli shader compilati.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5027,7 +5107,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "End Addr" -msgstr "" +msgstr "Fine Ind" #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -5035,7 +5115,7 @@ msgstr "Enet non è stato inizializzato" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglese" @@ -5054,7 +5134,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Inserisci ID del dispositivo USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Inserisci indirizzo da controllare:" @@ -5080,7 +5160,7 @@ msgstr "" "Inserisci l'indirizzo IP e la porta dell'istanza tapserver a cui vuoi " "connetterti." -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Inserisci l'indirizzo del modulo RSO:" @@ -5119,9 +5199,9 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5134,24 +5214,24 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5181,7 +5261,7 @@ msgstr "Errore apertura adattatore: %1" msgid "Error collecting save data!" msgstr "Errore recuperando i salvataggi!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5296,12 +5376,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershader esclusivi" @@ -5345,11 +5425,11 @@ msgstr "Inizio di espressione prevista." msgid "Expected variable name." msgstr "Prevista nome variabile." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Sperimentale" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Esporta tutti i salvataggi Wii" @@ -5364,7 +5444,7 @@ msgstr "Esportazione non riuscita" msgid "Export Recording" msgstr "Esporta registrazione" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Esporta registrazione..." @@ -5392,7 +5472,7 @@ msgstr "Esporta come .&gcs..." msgid "Export as .&sav..." msgstr "Esporta come .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5420,7 +5500,7 @@ msgstr "Esterno" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Estrai certificati da NAND" @@ -5458,7 +5538,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Lettore FIFO" @@ -5478,7 +5558,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Impossibile aggiungere il file di signature '%1'" @@ -5498,7 +5578,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:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Impossibile connettersi al server: %1" @@ -5519,7 +5599,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Fallita creazione del file Infinity" @@ -5581,7 +5661,7 @@ msgstr "Fallita l'esportazione di %n su %1 file di salvataggio." msgid "Failed to export the following save files:" msgstr "Fallita l'esportazione dei seguenti file di salvataggio:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Fallita estrazione dei certificati dalla NAND" @@ -5611,14 +5691,14 @@ msgstr "Impossibile trovare uno o più simboli D3D" msgid "Failed to import \"%1\"." msgstr "Importazione di \"%1\" non riuscita." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5626,7 +5706,7 @@ msgstr "" "Fallita l'importazione del salvataggio. Il file sembra corrotto o non è un " "file di salvataggio Wii valido." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5660,7 +5740,7 @@ msgid "Failed to install pack: %1" msgstr "Fallita installazione del pack: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Fallita installazione del titolo nella NAND." @@ -5672,8 +5752,8 @@ msgstr "" "Fallito l'ascolto sulla porta %1. C'è già un'altra istanza di un server " "NetPlay in esecuzione?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Fallito caricamento del modulo RSO a %1" @@ -5685,7 +5765,7 @@ msgstr "Caricamento d3d11.dll non riuscito" msgid "Failed to load dxgi.dll" msgstr "Caricamento dxgi.dll non riuscito" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Fallita l'apertura del file mappa '%1'" @@ -5717,11 +5797,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Impossibile modificare lo Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "Fallita l'apertura di \"%1\" per la scrittura." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "Fallita l'apertura di \"{0}\" per la scrittura." @@ -5773,11 +5853,11 @@ msgstr "Impossibile aprire il file." msgid "Failed to open server" msgstr "Impossibile avviare il server" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Fallita apertura del file Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5848,17 +5928,21 @@ 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:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Fallita lettura del file Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"Fallita lettura del file Infinity:\n" +"%1\n" +"\n" +"Il file è troppo piccolo." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5928,27 +6012,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "Fallito il salvataggio dello snapshot Branch Watch \"%1\"" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Fallito il salvataggio del log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Impossibile salvare la mappa del codice nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Impossibile salvare il file di signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Impossibile salvare la mappa dei simboli nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Impossibile salvare nel file di signature '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -6005,7 +6089,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Errore" @@ -6043,7 +6127,7 @@ msgstr "" msgid "Field of View" msgstr "Campo visivo" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Statuina numero:" @@ -6057,7 +6141,7 @@ msgstr "Dettagli del file" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Formato del file" @@ -6065,24 +6149,24 @@ msgstr "Formato del file" msgid "File Format:" msgstr "Formato del file:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Info file" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nome file" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Percorso:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Dimensioni del file" @@ -6213,7 +6297,7 @@ msgstr "" "Per istruzioni sull'installazione, consulta questa pagina." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forza 16:9" @@ -6221,7 +6305,7 @@ msgstr "Forza 16:9" msgid "Force 24-Bit Color" msgstr "Forza colore 24-Bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forza 4:3" @@ -6253,11 +6337,11 @@ msgstr "Forza ascolto su porta:" msgid "Force Nearest" msgstr "Forza adiacente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Forzato a off perché %1 non supporta l'espansione VS" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Forzato a on perché %1 non supporta i geometry shader." @@ -6294,6 +6378,9 @@ msgid "" "Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked." msgstr "" +"Forza la finestra di render in cima a tutte le altre finestre e applicazioni." +"

Nel dubbio, lascia deselezionato." #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" @@ -6341,11 +6428,11 @@ msgstr "Aumenta velocità avanzamento frame" msgid "Frame Advance Reset Speed" msgstr "Reimposta velocità avanzamento frame" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Dumping dei frame" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Intervallo fotogramma" @@ -6353,7 +6440,7 @@ msgstr "Intervallo fotogramma" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "L'immagine/i del fotogramma '{0}' esiste già. Vuoi sovrascrivere?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Fotogrammi da registrare:" @@ -6408,7 +6495,7 @@ msgstr "Abilita/Disabilita camera libera" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francese" @@ -6427,8 +6514,8 @@ msgid "From" msgstr "Da" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Da:" @@ -6442,7 +6529,7 @@ msgstr "Funzione" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 msgid "Function Settings" -msgstr "" +msgstr "Impostazioni funzionalità" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6484,11 +6571,11 @@ msgstr "Volume GBA" msgid "GBA Window Size" msgstr "Dimensioni finestra GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "Cambiata ROM GBA%1 in \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "ROM GBA%1 disabilitata" @@ -6657,7 +6744,7 @@ msgid "Game Gamma:" msgstr "Gamma di gioco:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID gioco" @@ -6670,7 +6757,7 @@ msgstr "ID gioco:" msgid "Game Status" msgstr "Stato del gioco" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Cambiato gioco in \"%1\"" @@ -6783,7 +6870,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Codici Gecko" @@ -6815,13 +6902,13 @@ msgstr "Genera una nuova identità statistiche" msgid "Generated AR code(s)." msgstr "Codici AR generati." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 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:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tedesco" @@ -6902,7 +6989,7 @@ msgstr "Verde sinistro" msgid "Green Right" msgstr "Verde destro" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Vista a griglia" @@ -6984,7 +7071,7 @@ msgstr "Nascondi" msgid "Hide &Controls" msgstr "Nascondi &controlli" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Nascondi tutto" @@ -7006,13 +7093,16 @@ msgid "" "render window is focused.

If unsure, select "" "On Movement"." msgstr "" +"Nasconde il cursore del mouse all'interno della finestra di render quando si " +"trova in primo piano.

Nel dubbio, seleziona "" +"Al movimento"." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Alta" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Più alta" @@ -7055,11 +7145,11 @@ msgstr "" "Adatto a giochi casual con più di 3 giocatori, ma potenzialmente instabile " "su connessioni ad alta latenza." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Autorità input host disattivata" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Autorità input host attivata" @@ -7085,7 +7175,7 @@ msgstr "Tasti di scelta rapida" msgid "Hotkeys Require Window Focus" msgstr "I tasti rapidi richiedono il focus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershader ibridi" @@ -7149,7 +7239,7 @@ 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:363 msgid "IR Sensitivity:" msgstr "Sensibilità IR:" @@ -7248,7 +7338,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:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7259,7 +7349,7 @@ msgstr "" "per testing.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7316,7 +7406,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB immediatamente presente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7331,7 +7421,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Importa backup NAND BootMII..." @@ -7346,7 +7436,7 @@ msgstr "Importazione non riuscita" msgid "Import Save File(s)" msgstr "Importa file di salvataggio" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importa salvataggio Wii..." @@ -7371,6 +7461,11 @@ msgid "" "notified.

If unsure, leave this checked." msgstr "" +"In caso di errore, Dolphin si interromperà per informarti dell'errore e per " +"permetterti di scegliere su come procedere. Con quest'opzione disabilitata, " +"Dolphin \"ignorerà\" tutti gli errori. L'emulazione non verrà interrotta e " +"non verrai notificato.

Nel dubbio, lascia " +"selezionato." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" @@ -7454,16 +7549,16 @@ msgstr "Rotazione incrementale" msgid "Incremental Rotation (rad/sec)" msgstr "Rotazione incrementale (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Creatore statuina Infinity" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Gestione Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Oggetto Infinity (*.bin);;" @@ -7486,8 +7581,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informazioni" @@ -7500,11 +7595,11 @@ msgid "Inject" msgstr "Inject" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Input" @@ -7530,7 +7625,7 @@ msgstr "Inserisci &NOP" msgid "Insert &nop" msgstr "Inserisci &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserisci scheda SD" @@ -7547,7 +7642,7 @@ msgstr "Partizione di installazione (%1)" msgid "Install Update" msgstr "Installa aggiornamento" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Installa WAD..." @@ -7570,7 +7665,7 @@ msgstr "Istruzione" msgid "Instruction Breakpoint" msgstr "Punto di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Istruzione:" @@ -7666,7 +7761,7 @@ msgstr "Errore interno durante la generazione del codice AR." msgid "Interpreter (slowest)" msgstr "Interpreter (il più lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7691,7 +7786,7 @@ msgstr "Pack non valido %1 fornito: %2" msgid "Invalid Player ID" msgstr "ID giocatore non valido" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Indirizzo del modulo RSO non valido: %1" @@ -7716,7 +7811,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Input non valido nel campo \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Input non valido" @@ -7754,13 +7849,13 @@ msgstr "" msgid "Invalid title ID." msgstr "Title ID non valido." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Indirizzo di controllo non valido: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7773,11 +7868,11 @@ msgstr "Italia" msgid "Item" msgstr "Oggetto" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "Disattiva linking dei blocchi JIT" @@ -7785,47 +7880,47 @@ msgstr "Disattiva linking dei blocchi JIT" msgid "JIT Blocks" msgstr "Blocchi JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7837,11 +7932,11 @@ msgstr "Ricompilatore JIT per ARM64 (consigliato)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Ricompilatore JIT per x86-64 (consigliato)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "Registro cache JIT Off" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" @@ -7855,16 +7950,16 @@ msgstr "" "cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo " "problema nel bug tracker. Dolphin ora terminerà." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "JIT non è attivo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Giappone" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Giapponese" @@ -7926,12 +8021,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Kicka giocatore" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Corea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -7962,7 +8057,7 @@ msgstr "Etichetta" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Lingua" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -7978,23 +8073,23 @@ msgstr "Ultimo posizionamento:" msgid "Last reset:" msgstr "Ultimo reset:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Latenza:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Latenza: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Latenza: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Latenza: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Latenza: ~80 ms" @@ -8002,7 +8097,7 @@ 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:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Classifiche" @@ -8098,11 +8193,11 @@ msgstr "Luce" msgid "Limit Chunked Upload Speed:" msgstr "Limite velocità upload a blocchi:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Lista colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Vista a lista" @@ -8114,15 +8209,15 @@ msgstr "Ascolto" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carica" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Carica file mappa &invalida..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Carica &altro file mappa..." @@ -8134,7 +8229,7 @@ msgstr "&Carica Branch Watch da..." msgid "Load Branch Watch snapshot" msgstr "Carica snapshot Branch Watch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carica texture personalizzate" @@ -8142,7 +8237,7 @@ msgstr "Carica texture personalizzate" msgid "Load File" msgstr "Carica file" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Carica menu principale GameCube" @@ -8252,19 +8347,19 @@ msgstr "Carica stato di gioco da slot 8" msgid "Load State Slot 9" msgstr "Carica stato di gioco da slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Carica stato da file" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Carica stato dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Carica stato da slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Carica menu di sistema Wii %1" @@ -8276,28 +8371,28 @@ msgstr "Carica e scrivi salvataggio dell'host" msgid "Load from Selected Slot" msgstr "Carica dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Carica da slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Carica mappa" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Carica menu di sistema vWii %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Carica..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Caricati simboli da '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8307,7 +8402,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8323,7 +8418,7 @@ msgstr "Locale" msgid "Lock Mouse Cursor" msgstr "Blocca il cursore del mouse" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Bloccato" @@ -8334,6 +8429,9 @@ msgid "" "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" +"Blocca il cursore nella finestra di render finché è in primo piano. Puoi " +"indicare una scorciatoia per sbloccarlo.

Nel " +"dubbio, lascia deselezionato." #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 @@ -8349,7 +8447,7 @@ msgstr "Configurazione log" msgid "Log In" msgstr "Login" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Log della copertura delle istruzioni JIT" @@ -8357,7 +8455,7 @@ msgstr "Log della copertura delle istruzioni JIT" msgid "Log Out" msgstr "Logut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Scrivi log del tempo di rendering su file" @@ -8373,7 +8471,7 @@ msgstr "Destinazione logger" msgid "Login Failed" msgstr "Login non riuscita" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8384,20 +8482,20 @@ msgstr "" "Dolphin.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Loop" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Persa la connessione al server NetPlay..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Bassa" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Più bassa" @@ -8457,7 +8555,7 @@ msgstr "Assicurati che ci sia uno Skylander nello slot %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Produttore" @@ -8479,12 +8577,12 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Gestisci NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Texture sampling manuale" @@ -8500,11 +8598,11 @@ msgstr "Maschera ROM" msgid "Match Found" msgstr "Trovata corrispondenza" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Buffer massimo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Dimensione massima del buffer cambiata a %1" @@ -8513,7 +8611,7 @@ msgstr "Dimensione massima del buffer cambiata a %1" msgid "Maximum tilt angle." msgstr "Massimo angolo di inclinazione" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" "Potrebbe causare rallentamenti all'interno del menu Wii e in alcuni giochi." @@ -8535,7 +8633,7 @@ msgstr "Punto di interruzione dei dati" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Gestione Memory Card" @@ -8591,11 +8689,11 @@ msgstr "Microfono" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Varie" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Impostazioni varie" @@ -8613,7 +8711,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Discordanza tra le strutture dati interne." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8640,7 +8738,7 @@ msgstr "Adattatore modem (tapserver)" msgid "Modifier" msgstr "Mezza incl." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8660,8 +8758,8 @@ msgstr "Modifica slot" msgid "Modifying Skylander: %1" msgstr "Modifica Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Moduli trovati: %1" @@ -8669,7 +8767,7 @@ msgstr "Moduli trovati: %1" msgid "Money:" msgstr "Soldi:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8729,10 +8827,10 @@ msgstr "Moltiplicatore" msgid "N&o to All" msgstr "N&o a tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Controllo NAND" @@ -8741,7 +8839,7 @@ msgstr "Controllo NAND" msgid "NKit Warning" msgstr "Attenzione NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8773,7 +8871,7 @@ msgstr "" "gioco permette di scegliere un valore gamma, impostalo qui." "

Nel dubbio, lascia a 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8991,7 +9089,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:326 msgid "No file loaded / recorded." msgstr "Nessun file caricato / registrato." @@ -8999,7 +9097,7 @@ msgstr "Nessun file caricato / registrato." msgid "No game is running." msgstr "Nessun gioco è in esecuzione." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Nessun gioco in esecuzione." @@ -9012,7 +9110,7 @@ msgstr "Non sono state selezionate mod grafiche" msgid "No input" msgstr "Nessun input" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Non sono stati rilevati problemi." @@ -9063,8 +9161,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9219,7 +9317,7 @@ msgstr "X oggetto 4" msgid "Object 4 Y" msgstr "Y oggetto 4" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Intervallo oggetto" @@ -9244,7 +9342,7 @@ msgstr "On" msgid "On Movement" msgstr "Al movimento" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9280,7 +9378,7 @@ msgstr "" "funzione e code path condizionali percorsi solo quando un'azione viene " "eseguita nel software emulato." -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Documentazione online" @@ -9288,7 +9386,7 @@ msgstr "&Documentazione online" msgid "Only Show Collection" msgstr "Mostra solo collezione" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9296,7 +9394,7 @@ msgstr "" "Inserisci solo simboli con prefisso:\n" "(Vuoto per tutti i simboli)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9315,7 +9413,7 @@ msgstr "Apri" msgid "Open &Containing Folder" msgstr "Apri &percorso file" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Apri cartella &utente" @@ -9324,7 +9422,7 @@ msgstr "Apri cartella &utente" msgid "Open Directory..." msgstr "Apri cartella..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Apri log FIFO" @@ -9414,7 +9512,7 @@ msgid "Origin and Destination" msgstr "Origine e destinazione" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9456,11 +9554,11 @@ msgstr "Ricampionamento Output:" msgid "Overwritten" msgstr "Sovrascritto" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Riproduci registrazione input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9474,11 +9572,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Livello compressione PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Livello compressione PNG:" @@ -9566,7 +9664,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "Pausa Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pausa al termine del filmato" @@ -9595,6 +9693,9 @@ msgid "" "Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked." msgstr "" +"Pausa il gioco ogni volta che la finestra di render non è in primo piano." +"

Nel dubbio, lascia deselezionato." #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9615,7 +9716,7 @@ msgstr "Velocità massima per oscillare verso l'esterno" msgid "Per-Pixel Lighting" msgstr "Illuminazione per-pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Avviare aggiornamento di sistema online" @@ -9623,15 +9724,15 @@ msgstr "Avviare aggiornamento di sistema online" msgid "Perform System Update" msgstr "Avvia l'aggiornamento di sistema" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Finestra campione performance (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Finestra campione performance (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Statistiche di prestazioni" @@ -9649,7 +9750,7 @@ msgstr "Spazio dell'indirizzo fisico" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Scegli un font di debug" @@ -9666,7 +9767,7 @@ msgid "Pitch Up" msgstr "Inclinazione in alto" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Piattaforma" @@ -9674,7 +9775,7 @@ msgstr "Piattaforma" msgid "Play" msgstr "Gioca" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Avvia / Registra" @@ -9682,11 +9783,11 @@ msgstr "Avvia / Registra" msgid "Play Recording" msgstr "Riproduci registrazione" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Avvia Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opzioni di riproduzione" @@ -9694,27 +9795,27 @@ msgstr "Opzioni di riproduzione" msgid "Player" msgstr "Giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Primo giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Primo giocatore prima abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Primo giocatore seconda abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Secondo giocatore" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Secondo giocatore prima abilità" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Secondo giocatore seconda abilità" @@ -9739,7 +9840,7 @@ msgstr "" "disabilitata, per cui molto probabilmente il problema si verificherà di " "nuovo." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9773,7 +9874,7 @@ msgstr "Porta:" msgid "Portal Slots" msgstr "Slot portale" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "Rilevato possibile desync: %1 potrebbe aver desyncato al frame %2" @@ -9789,20 +9890,20 @@ msgstr "Effetto di post-processing:" msgid "Post-Processing Shader Configuration" msgstr "Configura shader di post-processing" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" -msgstr "" +msgstr "Power Disc Tre" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" -msgstr "" +msgstr "Power Disc Due" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Preferisci VS per espansione vertici/linee" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Precarica texture personalizzate" @@ -9839,7 +9940,7 @@ msgstr "Premi il pulsante Sync" msgid "Pressure" msgstr "Pressione" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9919,11 +10020,11 @@ msgstr "Profilo" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Avanzamento" @@ -9932,12 +10033,14 @@ msgid "" "Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked." msgstr "" +"Ti chiederà una conferma se vuoi interrompere l'emulazione premendo Stop." +"

Nel dubbio, lascia selezionato." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Pubblica" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Pulisci cache lista giochi" @@ -9961,7 +10064,7 @@ msgstr "Impossibile abilitare Quality of Service (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) abilitato con successo." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "Qualità del decoder DPLII. La latenza audio aumenta con la qualità." @@ -9993,11 +10096,11 @@ msgstr "R-Analogico" msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "Moduli RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "Auto-rilevamento RSO" @@ -10022,7 +10125,7 @@ msgstr "Fine intervallo:" msgid "Range Start: " msgstr "Inizio intervallo:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "%1 Posizione" @@ -10030,7 +10133,7 @@ msgstr "%1 Posizione" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Risoluzione interna originale" @@ -10089,7 +10192,7 @@ msgstr "Recent Hits" msgid "Recenter" msgstr "Centra" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Registra" @@ -10101,11 +10204,11 @@ msgstr "Registra input" msgid "Recording" msgstr "Registrazione" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opzioni di registrazione" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Registrazione..." @@ -10175,7 +10278,7 @@ msgid "Refreshing..." msgstr "Aggiornamento..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regione" @@ -10198,7 +10301,7 @@ msgstr "Pressione relativa input" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Releases (every few months)" -msgstr "" +msgstr "Rilasci (ogni qualche mese)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -10208,7 +10311,7 @@ msgstr "Ricorda più tardi" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Rimuovi" @@ -10248,11 +10351,11 @@ msgstr "Rinomina simbolo" msgid "Render Window" msgstr "Finestra di render" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderizza nella finestra principale" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10273,6 +10376,9 @@ msgid "" "Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked." msgstr "" +"Richiede che la finestra di render sia in primo piano perché le scorciatoie " +"abbiano effetto.

Nel dubbio, lascia selezionato." #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 @@ -10287,7 +10393,7 @@ msgstr "Reimposta" msgid "Reset All" msgstr "Reimposta tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Reimposta ignora avvisi di errore" @@ -10319,7 +10425,7 @@ msgstr "Reimposta visuale" msgid "Reset all saved Wii Remote pairings" msgstr "Reimposta tutti gli abbinamenti salvati con i Wii Remote" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Tipo di risoluzione:" @@ -10467,6 +10573,38 @@ msgid "" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" +"Le righe nella tabella possono essere cliccate nelle colonne di origine, " +"destinazione e simbolo per visualizzare l'indirizzo associato in una " +"schermata Visualizza codice. Il tasto destro invece mostrerà un menu " +"contestuale..\n" +"\n" +"Se le colonne origine, destinazione, o simboli vengono cliccati col destro, " +"verranno copiati gli indirizzi in considerazione nella clipboard, e sarà " +"possibile impostare un punto di interruzione negli stessi. Tieni presente " +"che per i simboli della colonna origine / destinazione le azioni saranno " +"abilitate solo se ogni riga della selezione ha un simbolo.\n" +"\n" +"Se la colonna origine di una riga selezionata viene cliccata con il destro, " +"sarà possibile sostituire l'istruzione del branch all'origine con " +"un'istruzione NOP (No Operation), oppure copiare l'indirizzo nella " +"clipboard.\n" +"\n" +"If the destination column of a row selection is right-clicked, an action to " +"replace the instruction at the destination(s) with a BLR instruction (Branch " +"to Link Register) will be available, but will only be enabled if the branch " +"instruction at every origin updates the link register.\n" +"\n" +"Se la colonna destinazione di una riga selezionata viene cliccata con il " +"destro, sarà possibile sostituire l'istruzione alla destinazione con " +"un'istruzione BLR (Branch to Link Register), ma solo se l'istruzione branch " +"ad ogni origine aggiorna il registro link.\n" +"\n" +"Se la colonna origine / destinazione di una riga selezionata viene cliccata " +"con il destro, sarà possibile sostituire l'istruzione all'inizio del simbolo " +"con un'istruzione BLR, ma solo se ogni riga della selezione ha un simbolo.\n" +"\n" +"In tutti i menu contestuali sarà possibile rimuovere le righe selezionate " +"dai candidati." #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10503,19 +10641,19 @@ msgstr "Russia" msgid "SD Card" msgstr "Scheda SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Dimensione file scheda SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Immagine scheda SD (*.raw);;Tutti i file (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Percorso scheda SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Impostazioni scheda SD" @@ -10523,7 +10661,7 @@ msgstr "Impostazioni scheda SD" msgid "SD Root:" msgstr "Root SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Cartella sincronizzazione SD:" @@ -10558,11 +10696,11 @@ msgstr "Contesto SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Sal&va codice" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Sal&va stato di gioco" @@ -10594,11 +10732,11 @@ msgstr "Salva snapshot Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Esporta salvataggio" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Salva log FIFO" @@ -10616,11 +10754,11 @@ msgstr "Salvataggio di gioco" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "File di salvataggio di gioco (*.sav);;Tutti i file (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Importa salvataggio" @@ -10632,7 +10770,7 @@ msgstr "Salva sul più vecchio stato di gioco" msgid "Save Preset" msgstr "Salva preset" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Salva file registrazione come" @@ -10682,23 +10820,23 @@ msgstr "Salva stato di gioco nello slot 8" msgid "Save State Slot 9" msgstr "Salva stato di gioco nello slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Salva stato su file" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Salva stato su slot più vecchio" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Salva stato nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Salva stato su slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Salva mappa dei simboli &come..." @@ -10718,11 +10856,11 @@ msgstr "Salva come preset..." msgid "Save as..." msgstr "Salva come..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Salva file combinato in output come" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10736,11 +10874,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Salva nella stessa cartella della ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Salva file mappa" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Salva file di signature" @@ -10748,11 +10886,11 @@ msgstr "Salva file di signature" msgid "Save to Selected Slot" msgstr "Salva nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Salva su slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Salva..." @@ -10784,7 +10922,7 @@ msgstr "Screenshot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Cerca" @@ -10813,7 +10951,7 @@ msgstr "" "La ricerca nello spazio di indirizzo virtuale non è attualmente possibile. " "Esegui il gioco per un po', quindi riprova." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Cerca un'istruzione" @@ -10821,7 +10959,7 @@ msgstr "Cerca un'istruzione" msgid "Search games..." msgstr "Cerca giochi..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Ricerca istruzione" @@ -10869,11 +11007,11 @@ msgid "Select Dump Path" msgstr "Seleziona percorso dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Seleziona cartella di estrazione" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Seleziona file statuina" @@ -10913,7 +11051,7 @@ msgstr "Seleziona collezione Skylander" msgid "Select Skylander File" msgstr "Seleziona file Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Seleziona slot %1 - %2" @@ -10921,7 +11059,7 @@ msgstr "Seleziona slot %1 - %2" msgid "Select State" msgstr "Seleziona stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Seleziona slot di stato" @@ -10988,7 +11126,7 @@ msgstr "Seleziona una cartella" msgid "Select a File" msgstr "Seleziona un file" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Scegli la cartella da sincronizzare con l'immagine scheda SD" @@ -10996,7 +11134,7 @@ msgstr "Scegli la cartella da sincronizzare con l'immagine scheda SD" msgid "Select a Game" msgstr "Seleziona un gioco" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Seleziona un'immagine scheda SD" @@ -11008,7 +11146,7 @@ msgstr "Seleziona un file" msgid "Select a game" msgstr "Seleziona un gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Seleziona un titolo da installare su NAND" @@ -11016,7 +11154,7 @@ msgstr "Seleziona un titolo da installare su NAND" msgid "Select e-Reader Cards" msgstr "Seleziona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Scegli l'indirizzo del modulo RSO:" @@ -11033,7 +11171,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Seleziona il file di salvataggio" @@ -11057,7 +11195,7 @@ msgstr "Il profilo controller selezionato non esiste" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Il gioco selezionato non esiste nella lista dei giochi!" @@ -11085,7 +11223,7 @@ msgstr "" "Seleziona l'adattatore hardware da utilizzare.

Nel " "dubbio, seleziona il primo." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11141,7 +11279,7 @@ msgstr "" "una tipologia di 3D usata da alcune TV.

Nel dubbio, " "seleziona Off." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11181,7 +11319,7 @@ msgstr "" "proporzioni dell'immagine, e non dovrebbe mai venire utilizzato." "

Nel dubbio, seleziona Auto." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11202,7 +11340,7 @@ msgstr "" msgid "Send" msgstr "Invia" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posizione della Sensor Bar: " @@ -11237,7 +11375,7 @@ msgstr "Imposta &valore" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 msgid "Set Brea&kpoint" -msgstr "" +msgstr "Imposta &punto di interruzione" #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 @@ -11272,7 +11410,7 @@ msgstr "Imposta indirizzo di termine del simbolo" msgid "Set symbol size (%1):" msgstr "Imposta dimensione del simbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11282,7 +11420,7 @@ msgstr "" "(576i) per i giochi PAL.\n" "Potrebbe non funzionare su tutti i giochi." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Imposta la lingua di sistema del Wii" @@ -11293,8 +11431,12 @@ msgid "" "

If unsure, select <System Language>." msgstr "" +"Imposta la lingua usata dall'interfaccia utente di Dolphin.

I " +"cambiamenti avranno effetto dal prossimo riavvio di Dolphin." +"

Nel dubbio, seleziona <Lingua di sistema>." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11308,6 +11450,9 @@ msgid "" "have loaded will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" +"Imposta lo stile dell'interfaccia utente di Dolphin. Qui saranno presenti e " +"selezionabili tutti gli stili personalizzati che hai caricato." +"

Nel dubbio, seleziona (System)." #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" @@ -11317,7 +11462,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:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11331,7 +11476,7 @@ msgstr "SetupWiiMemory: Impossibile creare il file setting.txt" msgid "Severity" msgstr "Severità" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilazione shader" @@ -11353,16 +11498,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Controller Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Mostra velocità %" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Mostra finestra di &log" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Mostra barra degli s&trumenti" @@ -11370,11 +11515,11 @@ msgstr "Mostra barra degli s&trumenti" msgid "Show Active Title in Window Title" msgstr "Mostra gioco corrente nella barra del titolo" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Mostra tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Mostra Australia" @@ -11387,7 +11532,7 @@ msgstr "Mostra gioco corrente su Discord" msgid "Show Disabled Codes First" msgstr "Mostra prima codici inattivi" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Mostra ELF/DOL" @@ -11396,27 +11541,27 @@ msgstr "Mostra ELF/DOL" msgid "Show Enabled Codes First" msgstr "Mostra prima codici attivi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Mostra contatore frame" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Mostra tempi frame" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Mostra Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Mostra GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Mostra Germania" @@ -11428,23 +11573,23 @@ msgstr "Mostra overlay modalità golf" msgid "Show Infinity Base" msgstr "Mostra base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Mostra tasti di input" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Mostra Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Mostra JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Mostra Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Mostra contatore lag" @@ -11452,19 +11597,19 @@ msgstr "Mostra contatore lag" msgid "Show Language:" msgstr "Mostra lingua:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Mostra &configurazione log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Mostra messaggi NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Mostra ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Mostra Olanda" @@ -11472,7 +11617,7 @@ msgstr "Mostra Olanda" msgid "Show On-Screen Display Messages" msgstr "Mostra messaggi su schermo" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Mostra PAL" @@ -11481,27 +11626,27 @@ msgstr "Mostra PAL" msgid "Show PC" msgstr "Mostra PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Mostra grafico di performance" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Mostra piattaforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "Mostra informazioni di proiezione" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Mostra regioni" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Mostra contatore re-registrazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Mostra Russia" @@ -11509,51 +11654,51 @@ msgstr "Mostra Russia" msgid "Show Skylanders Portal" msgstr "Mostra portale Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Mostra Spagna" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Mostra colori velocità" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostra informazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Mostra orologio di sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Mostra Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Mostra USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Mostra sconosciuto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Mostra tempi VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Mostra VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Mostra WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Mostra Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Mostra mondo" @@ -11566,7 +11711,7 @@ msgid "Show in Code" msgstr "Mostra nel codice" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Mostra in memoria" @@ -11593,8 +11738,13 @@ msgid "" "requests, and more.

If unsure, leave this unchecked." "" msgstr "" +"Mostra l'interfaccia utente di debug di Dolphin. Ti permette di visualizzare " +"e modificare il codice di gioco e il contenuto della memoria, impostare " +"punti di controllo, esaminare le richieste network, e altro." +"

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11603,7 +11753,7 @@ msgstr "" "una partita NetPlay.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
If unsure, leave " "this checked." msgstr "" +"Mostra i messaggi a schermo nella finestra di render. Questi messaggi " +"scompariranno dopo alcuni secondi.

Nel dubbio, " +"lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11635,20 +11788,27 @@ msgid "" "Shows the Mouse Cursor at all times.

If unsure, " "select "On Movement"." msgstr "" +"Mostra sempre il cursore del mouse.

Nel dubbio, " +"seleziona "Al movimento"." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 msgid "" "Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." "

If unsure, select this mode." msgstr "" +"Mostra brevemente il cursore del mouse al movimento, per poi nasconderlo " +"poco dopo.

Nel dubbio, seleziona questa modalità." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." "

If unsure, leave this checked." msgstr "" +"Mostra il gioco corrente nel barra del titolo della finestra di render." +"

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11658,7 +11818,7 @@ msgstr "" "deviazione standard.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11668,7 +11828,7 @@ msgstr "" "standard.

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11678,7 +11838,7 @@ msgstr "" "misura dell'uniformità di visualizzazione.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11697,7 +11857,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11705,7 +11865,7 @@ msgstr "" "Mostra diverse informazioni di proiezione.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11729,7 +11889,7 @@ msgstr "Attiva/disattiva posizione di traverso" msgid "Sideways Wii Remote" msgstr "Wii Remote in posizione di traverso" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Database signature" @@ -11753,7 +11913,7 @@ msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Cinese Semplificato" @@ -11770,7 +11930,7 @@ msgstr "Six Axis" msgid "Size" msgstr "Dimensioni" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11782,7 +11942,7 @@ msgstr "" msgid "Skip" msgstr "Salta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Salta drawing" @@ -11838,7 +11998,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;Tutti i file (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -11915,7 +12075,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Ordine alfabetico" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Suono:" @@ -11929,7 +12089,7 @@ msgstr "Spagna" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spagnolo" @@ -11937,11 +12097,11 @@ msgstr "Spagnolo" msgid "Speaker Pan" msgstr "Panning altoparlante" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume altoparlante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specializzato (default)" @@ -11949,7 +12109,7 @@ msgstr "Specializzato (default)" msgid "Specific" msgstr "Specifico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12000,7 +12160,7 @@ msgstr "Controller standard" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Avvia &NetPlay" @@ -12009,11 +12169,11 @@ msgstr "Avvia &NetPlay" msgid "Start Branch Watch" msgstr "Avvia Branch Watch" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Inizia nuova ricerca cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Avvia re&gistrazione input" @@ -12021,7 +12181,7 @@ msgstr "Avvia re&gistrazione input" msgid "Start Recording" msgstr "Avvia registrazione" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Avvia a schermo intero." @@ -12033,7 +12193,7 @@ msgstr "Avvia con le patch Riivolution" msgid "Start with Riivolution Patches..." msgstr "Avvia con le patch Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Gioco avviato" @@ -12093,7 +12253,7 @@ msgstr "Istruzione eseguita con successo!" msgid "Stepping" msgstr "Entrando" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -12122,12 +12282,12 @@ msgid "Stick" msgstr "Levetta" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Arresta" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Interrompi riproduzione/registrazione input" @@ -12173,7 +12333,7 @@ msgstr "" "RAM (e su texture)

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Adatta a finestra" @@ -12193,7 +12353,7 @@ msgstr "Strimpellata" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Stile" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -12212,8 +12372,8 @@ msgstr "Stilo" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Completato" @@ -12240,7 +12400,7 @@ msgstr "Esportato con successo %n file di salvataggio su %1." msgid "Successfully exported save files" msgstr "File di salvataggio esportati con successo" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "I certificati sono stati estratti con successo dalla NAND" @@ -12252,12 +12412,12 @@ msgstr "File estratto con successo." msgid "Successfully extracted system data." msgstr "Dati di sistema estratti con successo." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Salvataggio importato con successo." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Il titolo è stato installato con successo su NAND." @@ -12280,12 +12440,12 @@ msgstr "Supporto" msgid "Supported file formats" msgstr "Formato file supportati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 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:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -12346,7 +12506,7 @@ msgstr "Nome del simbolo:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Simboli" @@ -12374,7 +12534,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:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12395,11 +12555,11 @@ msgid "Synchronizing save data..." msgstr "Sincronizzazione dei dati di salvataggio in corso..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Lingua di sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Input TAS" @@ -12412,7 +12572,7 @@ msgstr "Strumenti TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Tag" @@ -12430,7 +12590,7 @@ msgstr "Coda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Cattura uno screenshot" @@ -12471,7 +12631,7 @@ msgstr "Cache texture" msgid "Texture Cache Accuracy" msgstr "Accuratezza cache texture" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Dump delle texture" @@ -12483,7 +12643,7 @@ msgstr "Filtraggio texture" msgid "Texture Filtering:" msgstr "Filtraggio texture:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Overlay formato texture" @@ -12527,7 +12687,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:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12535,7 +12695,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:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "La NAND è stata riparata." @@ -12553,7 +12713,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "I soldi di questo Skylander. Tra 0 e 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12914,7 +13074,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "il file specificato \"{0}\" non esiste" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12982,7 +13142,7 @@ 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:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13008,7 +13168,7 @@ msgstr "La partizione {0} non è correttamente allineata." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Tema" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -13377,7 +13537,7 @@ msgstr "Tempo scaduto" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titolo" @@ -13386,12 +13546,12 @@ msgid "To" msgstr "A" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Attiva/disattiva &schermo intero" @@ -13480,7 +13640,7 @@ msgstr "Controlli strumenti" msgid "Toolbar" msgstr "Barra degli strumenti" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Sopra" @@ -13531,7 +13691,7 @@ msgid "Toy code:" msgstr "Codice figura:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Cinese Tradizionale" @@ -13551,8 +13711,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Errore traversal" @@ -13636,7 +13796,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Errore USB Whitelist" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13648,7 +13808,7 @@ msgstr "" "

Nel dubbio, seleziona questa modalità." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13660,7 +13820,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:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13674,7 +13834,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:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Impossibile individuare automaticamente il modulo RSO" @@ -13745,11 +13905,11 @@ msgstr "Immagini GC/Wii non compresse (*.iso *.gcm)" msgid "Undead" msgstr "Non-morti" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Annulla caricamento stato di gioco" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Annulla salvataggio dello stato di gioco" @@ -13770,7 +13930,7 @@ msgstr "" "attualmente installata su NAND senza cancellarne i file di salvataggio. " "Continuare?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Stati Uniti" @@ -13868,7 +14028,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Sconosciuto(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Sconosciuto(%1).bin" @@ -13884,9 +14044,9 @@ msgstr "Rimuovi ROM" msgid "Unlock Cursor" msgstr "Sblocca il cursore" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" -msgstr "" +msgstr "Sbloccato il %1" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13927,7 +14087,7 @@ msgid "Up" msgstr "Su" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Aggiorna" @@ -14001,7 +14161,7 @@ msgstr "Usa tutti i salvataggi Wii" msgid "Use Built-In Database of Game Names" msgstr "Usa database interno per i nomi dei giochi" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Usa codec lossless (FFV1)" @@ -14009,7 +14169,7 @@ msgstr "Usa codec lossless (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Usa puntamento con il mouse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usa modalità PAL60 (EuRGB60)" @@ -14022,8 +14182,10 @@ msgid "" "Use RetroAchievements rich presence in your Discord status.

Show " "Current Game on Discord must be enabled." msgstr "" +"Usa la rich presence di RetroAchievements nel tuo status Discord.

La " +"visualizzazione del gioco corrente su Discord deve essere abilitata." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14098,6 +14260,9 @@ msgid "" "column.

If unsure, leave this checked." msgstr "" +"Usa i nomi formattati correttamente del database Dolphin nella colonna " +"Titolo della lista dei giochi.

Nel dubbio, lascia " +"selezionato." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -14111,7 +14276,7 @@ msgstr "" "di velocità a seconda del gioco e/o della tua GPU." "

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14122,7 +14287,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Altrimenti, nel dubbio, lascia disattivato." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14422,7 +14587,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Attenzione" @@ -14545,7 +14710,7 @@ msgstr "Occidentale (Windows-1252)" msgid "Whammy" msgstr "Tremolo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14557,7 +14722,7 @@ msgstr "" "Arbitraria' è abilitato in Miglioramenti.

Nel " "dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14569,7 +14734,7 @@ msgstr "" "Detection Arbitraria' è abilitato in Miglioramenti." "

Nel dubbio, lascia selezionato." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivi USB ponte accettati" @@ -14619,7 +14784,7 @@ msgstr "Pulsanti Wii Remote" msgid "Wii Remote Gyroscope" msgstr "Giroscopio Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Impostazioni Wii Remote" @@ -14647,7 +14812,7 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dati Wii non ancora pubblici" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)" @@ -14655,7 +14820,7 @@ msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)" msgid "WiiTools Signature MEGA File" msgstr "File WIITools Signature MEGA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Risoluzione finestra" @@ -14686,7 +14851,7 @@ msgstr "Mondo" msgid "Write" msgstr "Scrittura" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "Scrivi JIT Block Log Dump" @@ -14735,11 +14900,11 @@ msgstr "Regione errata" msgid "Wrong revision" msgstr "Revisione errata" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "Scritto su \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "Scritto su \"{0}\"." @@ -14790,7 +14955,7 @@ msgstr "Sì" msgid "Yes to &All" msgstr "Sì a &tutto" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14799,7 +14964,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:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14943,7 +15108,7 @@ msgstr "" "Vuoi terminare l'emulazione per correggere il problema?\n" "Se selezioni \"No\", l'audio potrebbe risultare ingarbugliato." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -15167,6 +15332,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Dolphin Team. “GameCube” e “Wii” sono marchi registrati " +"Nintendo. Dolphin non è in alcun modo associato con Nintendo." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ja.po b/Languages/po/ja.po index 2df286c6a8..ad2b5bf2c9 100644 --- a/Languages/po/ja.po +++ b/Languages/po/ja.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 難波 鷹史, 2023-2024\n" "Language-Team: Japanese (http://app.transifex.com/delroth/dolphin-emu/" @@ -101,7 +101,7 @@ msgstr "" "%1 さんが\n" "あなたのパーティに参加したいようです" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -155,7 +155,7 @@ msgstr "%1 (低速)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -190,7 +190,7 @@ msgstr "%1 はあなたのシステム上でこの機能をサポートしてい msgid "%1 doesn't support this feature." msgstr "%1 はこの機能をサポートしていません" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -200,11 +200,11 @@ msgstr "" "%2 オブジェクト\n" "現在のフレーム: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 が入室しました" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 が退室しました" @@ -213,11 +213,11 @@ msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" "%1 は %2%3 の実績をロック解除しました。これは %4%5 ポイントに相当します。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 は有効な ROM ではありません" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 がゴルフ中" @@ -229,8 +229,8 @@ msgstr "%1 は %2 をプレイしています。" msgid "%1 memory ranges" msgstr "%1 memory ranges" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -247,7 +247,7 @@ msgstr "%1 個のセッションを発見" msgid "%1 sessions found" msgstr "%1 個のセッションを発見" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -355,11 +355,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "Dolphinについて(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "メモリ ブレークポイントの追加(&A)" @@ -376,11 +376,11 @@ msgstr "ファンクションを追加(&A)" msgid "&Add..." msgstr "追加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "アセンブラ(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "サウンド設定(&A)" @@ -396,11 +396,11 @@ msgstr "ボーダーレス ウィンドウ(&B)" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "ブレークポイント(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "バグトラッカー(&B)" @@ -408,15 +408,15 @@ msgstr "バグトラッカー(&B)" msgid "&Cancel" msgstr "キャンセル(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "チートマネージャ(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "更新を確認...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "クリアシンボル(&C)" @@ -424,7 +424,7 @@ msgstr "クリアシンボル(&C)" msgid "&Clone..." msgstr "クローン...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "コード(&C)" @@ -432,7 +432,7 @@ msgstr "コード(&C)" msgid "&Connected" msgstr "接続(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "コントローラー設定(&C)" @@ -455,13 +455,13 @@ msgstr "削除(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "ウォッチの削除(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "ウォッチの削除(&D)" @@ -475,11 +475,11 @@ msgstr "コードを編集...(&E)" msgid "&Edit..." msgstr "編集...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "ディスクの取り出し(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "エミュレーション(&E)" @@ -500,40 +500,40 @@ msgid "&Export as .gci..." msgstr "GCI形式でエクスポート...(&E)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "ファイル(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "フォント...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "フレームアドバンス(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "フリールックの設定(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Generate Symbols From" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "GitHub リポジトリ(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "グラフィック設定(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "ヘルプ(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "ホットキーのカスタマイズ(&H)" @@ -553,7 +553,7 @@ msgstr "&Import State..." msgid "&Import..." msgstr "インポート...(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity Base" @@ -565,7 +565,7 @@ msgstr "&Insert blr" msgid "&Interframe Blending" msgstr "&Interframe Blending" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -577,11 +577,11 @@ msgstr "UIの言語(&L):" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "ステートロード(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "ロードシンボルマップ(&L)" @@ -591,11 +591,11 @@ msgstr "&Load file to current address" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "ウォッチのロック(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "ツールバーの位置を固定(&L)" @@ -603,11 +603,11 @@ msgstr "ツールバーの位置を固定(&L)" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memory" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "記録(&M)" @@ -615,7 +615,7 @@ msgstr "記録(&M)" msgid "&Mute" msgstr "ミュート(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Network" @@ -624,23 +624,23 @@ msgid "&No" msgstr "いいえ(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "開く...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "設定(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functions" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "一時停止(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "開始(&P)" @@ -648,7 +648,7 @@ msgstr "開始(&P)" msgid "&Properties" msgstr "プロパティ(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "読み込み専用(&R)" @@ -656,7 +656,7 @@ msgstr "読み込み専用(&R)" msgid "&Refresh List" msgstr "ゲームリストを再更新(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registers" @@ -674,11 +674,11 @@ msgid "&Rename symbol" msgstr "&Rename symbol" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "リセット(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "リソースパックマネージャー(&R)" @@ -686,7 +686,7 @@ msgstr "リソースパックマネージャー(&R)" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" @@ -694,7 +694,7 @@ msgstr "&Save Symbol Map" msgid "&Scan e-Reader Card(s)..." msgstr "カードeのスキャン...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "スカイランダーズポータル(&S)" @@ -702,7 +702,7 @@ msgstr "スカイランダーズポータル(&S)" msgid "&Speed Limit:" msgstr "速度制限(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "停止(&S)" @@ -710,7 +710,7 @@ msgstr "停止(&S)" msgid "&Theme:" msgstr "テーマ(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Threads" @@ -718,7 +718,7 @@ msgstr "&Threads" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "ツール(&T)" @@ -728,21 +728,21 @@ msgstr "ROMを取り外してリセット(&U)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "ウォッチのロックを解除(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "公式Webサイト(&W)" @@ -754,11 +754,11 @@ msgstr "公式Wiki(英語)で動作状況を確認(&W)" msgid "&Yes" msgstr "はい(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' not found, no symbol names generated" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' not found, scanning for common functions instead" @@ -806,7 +806,7 @@ msgstr "- Subtract(減算)" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "-未確認-" @@ -872,7 +872,7 @@ msgstr "16-bit Signed Integer" msgid "16-bit Unsigned Integer" msgstr "16-bit Unsigned Integer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -956,7 +956,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 ブロック)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1058,7 +1058,7 @@ msgid "Disabled in Hardcore Mode." msgstr "" "ハードコアモードでは無効になります。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "よく分からなければ、チェックを入れないでください
If unsure, leave this unchecked." @@ -1940,19 +1940,19 @@ msgstr "BP register " msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "出力バックエンド" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "バックエンドをマルチスレッド化" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "出力設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "出力バックエンド:" @@ -1995,7 +1995,7 @@ msgstr "不正な値が示されました。" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "バナー" @@ -2019,7 +2019,7 @@ msgstr "ベースアドレス" msgid "Base priority" msgstr "ベースの優先度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "基本設定" @@ -2071,11 +2071,11 @@ msgstr "バイナリー SSL (読み込み)" msgid "Binary SSL (write)" msgstr "バイナリー SSL (書き込み)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "ビットレート (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2085,7 +2085,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "ブロックサイズ" @@ -2124,7 +2124,7 @@ msgstr "" "ドされました。\n" "パススルーの機能は使えません。" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "ブートから一時停止" @@ -2136,11 +2136,11 @@ msgstr "BootMii NAND バックアップファイル (*.bin);;すべてのファ msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii キー ファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "ボーダーレス フルスクリーン" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "下" @@ -2317,20 +2317,20 @@ msgstr "ブロードバンドアダプタのエラー" msgid "Broadband Adapter MAC Address" msgstr "ブロードバンドアダプタ MACアドレス設定" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "ネットプレイセッションブラウザ...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "バッファサイズ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "バッファサイズが変更されました: %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "バッファ:" @@ -2382,7 +2382,7 @@ msgstr "By: %1" msgid "C Stick" msgstr "Cスティック" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "署名ファイルの作成(&R)..." @@ -2406,7 +2406,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Cached Interpreter (低速)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2494,11 +2494,11 @@ msgstr "ゲーム実行中はネットプレイセッションを開始できま #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "キャンセル" @@ -2584,7 +2584,7 @@ msgstr "センタリングとキャリブレーション" msgid "Change &Disc" msgstr "ディスクの入れ替え(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "ディスクの入れ替え...(&D)" @@ -2606,7 +2606,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2632,7 +2632,7 @@ msgstr "" "で扱いやすい代わりに、画面全体の回転はできません。

Orbital: ゲーム内カ" "メラを軸とした、回転とズームのみを行える方式" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "変更されたチート内容は次回のゲーム開始時に反映されます" @@ -2640,7 +2640,7 @@ msgstr "変更されたチート内容は次回のゲーム開始時に反映さ msgid "Channel Partition (%1)" msgstr "チャンネルパーティション (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "入力された文字は無効です!" @@ -2652,7 +2652,7 @@ msgstr "チャット欄" msgid "Cheat Code Editor" msgstr "チートコードエディタ" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "コードサーチ" @@ -2660,7 +2660,7 @@ msgstr "コードサーチ" msgid "Cheats Manager" msgstr "チートマネージャ" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "NANDの整合性チェックを実行..." @@ -2699,11 +2699,11 @@ msgstr "メモリーカードを選択" msgid "Choose a file to open or create" msgstr "ファイルを開くか作成してください" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "プロパティ入力ファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "セカンダリー入力ファイルの選択" @@ -2734,7 +2734,7 @@ msgstr "クラシックコントローラ" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "全消去" @@ -2742,7 +2742,7 @@ msgstr "全消去" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "キャッシュの消去" @@ -2763,7 +2763,7 @@ msgstr "コードをコピーして編集..." msgid "Close" msgstr "閉じる" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Dolphinの設定(&N)" @@ -2807,7 +2807,7 @@ msgstr "色空間" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Combine &Two Signature Files..." @@ -2840,7 +2840,7 @@ msgstr "" "eShopでリリースされたゲームと比較すると、かなり良いダンプである可能性がありま" "す。Dolphinではこれを確認できません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "ゲーム開始前にシェーダをコンパイルする" @@ -2850,7 +2850,7 @@ msgstr "シェーダをコンパイル中..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "圧縮形式" @@ -2965,7 +2965,7 @@ msgstr "設定" msgid "Configure Controller" msgstr "操作設定" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphinの設定" @@ -2989,7 +2989,7 @@ msgstr "出力設定" msgid "Confirm" msgstr "確認" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "出力バックエンド変更の確認" @@ -2997,7 +2997,7 @@ msgstr "出力バックエンド変更の確認" msgid "Confirm on Stop" msgstr "動作停止時に確認" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3008,15 +3008,15 @@ msgstr "確認" msgid "Connect" msgstr "ホストに接続" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "バランスWiiボードを接続する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USBキーボードを接続する" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "%1PのWiiリモコンを接続" @@ -3036,7 +3036,7 @@ msgstr "3PのWiiリモコンを接続" msgid "Connect Wii Remote 4" msgstr "4PのWiiリモコンを接続" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Wiiリモコンの接続" @@ -3184,8 +3184,8 @@ msgstr "収束点" msgid "Convergence:" msgstr "収束点 (Convergence):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "変換に失敗しました。" @@ -3193,9 +3193,9 @@ msgstr "変換に失敗しました。" msgid "Convert" msgstr "ファイル形式の変換" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "ファイルをフォルダーに変換する" @@ -3203,9 +3203,9 @@ msgstr "ファイルをフォルダーに変換する" msgid "Convert File..." msgstr "このタイトルを変換..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "フォルダーをファイルに変換する" @@ -3229,8 +3229,8 @@ msgstr "" "このまま変換を行いますか?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "変換中..." @@ -3462,7 +3462,7 @@ msgstr "" "もしそうなら、オプションでメモリーカードの場所を指定し直す必要があるかもしれ" "ません。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Couldn't look up central server" @@ -3478,13 +3478,13 @@ msgstr "ファイルを読み込めませんでした。" msgid "Country:" msgstr "発売国" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "作成" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "インフィニティファイルの作成" @@ -3515,11 +3515,11 @@ msgstr "制作者:" msgid "Critical" msgstr "致命的なエラー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "クロッピングを有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3535,11 +3535,11 @@ msgstr "" msgid "Crossfade" msgstr "クロスフェーダー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "CPUで頂点をカリングする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3549,7 +3549,7 @@ msgstr "" "マンスと描画統計に影響するおそれがあります。

分から" "ない場合はチェックを外してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "現在の地域" @@ -3569,11 +3569,11 @@ msgstr "選択中のタイトル" msgid "Current thread" msgstr "Current thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "カスタム" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3581,15 +3581,15 @@ msgstr "" msgid "Custom Address Space" msgstr "カスタムアドレス空間" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "カスタム アスペクト比の高さ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "カスタム アスペクト比の幅" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "カスタム アスペクト比:" @@ -3635,7 +3635,7 @@ msgstr "ターンテーブル" msgid "DK Bongos" msgstr "タルコンガ" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSPのエミュレーション方式:" @@ -3643,15 +3643,15 @@ msgstr "DSPのエミュレーション方式:" msgid "DSP HLE (fast)" msgstr "DSP HLE (高速)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (推奨)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (非常に低速)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (低速)" @@ -3726,7 +3726,7 @@ msgstr "遊びの調整" msgid "Debug" msgstr "デバッグ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "デバッグ用" @@ -3736,7 +3736,7 @@ msgstr "デバッグ用" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "デコード精度" @@ -3783,7 +3783,7 @@ msgstr "既定" msgid "Default Config (Read Only)" msgstr "デフォルト設定(読み取り専用)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "既定のデバイス" @@ -3799,7 +3799,7 @@ msgstr "デフォルトISO:" msgid "Default thread" msgstr "Default thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Defer EFB Cache Invalidation" @@ -3807,7 +3807,7 @@ msgstr "Defer EFB Cache Invalidation" msgid "Defer EFB Copies to RAM" msgstr "メモリへのコピーを遅延させる" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3858,7 +3858,7 @@ msgstr "深度 (Depth):" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "説明" @@ -3907,7 +3907,7 @@ msgstr "Detached" msgid "Detect" msgstr "検出" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Detecting RSO Modules" @@ -3937,7 +3937,7 @@ msgstr "デバイス設定" msgid "Device VID (e.g., 057e)" msgstr "デバイス PID (例: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "デバイス:" @@ -3945,7 +3945,7 @@ msgstr "デバイス:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 を有効な Riivolution XML ファイルとして認識されませんでした。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "5分間操作がない状態が続くと、画面を暗くするようにします" @@ -3969,7 +3969,7 @@ msgstr "Bounding Box を無効にする" msgid "Disable Copy Filter" msgstr "Disable Copy Filter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" @@ -3977,11 +3977,11 @@ msgstr "Disable EFB VRAM Copies" msgid "Disable Emulation Speed Limit" msgstr "エミュレーション速度 無効化" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Disable Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "ファストメム・アリーナを無効にします" @@ -3989,11 +3989,11 @@ msgstr "ファストメム・アリーナを無効にします" msgid "Disable Fog" msgstr "フォグを無効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "大規模なエントリ ポイント マップを無効にします" @@ -4011,7 +4011,7 @@ msgstr "" "ますが、タイトルによっては不具合が発生します。

よく" "分からなければ、チェックを外さないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
よく分か" "らなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4388,7 +4388,7 @@ msgstr "" "

よく分からない場合は、このチェックを外したままにし" "てください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4407,11 +4407,11 @@ msgstr "ターボボタンを離す時間(フレーム):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "オランダ語" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "終了" @@ -4440,7 +4440,7 @@ msgstr "" "ホストが設定したバッファサイズですべてのプレイヤーの入力を受け付けます。\n" "公平性が重要な対戦ゲーム向けの設定です。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Early Memory Updates" @@ -4514,7 +4514,7 @@ msgstr "Embedded Frame Buffer (内蔵フレームバッファ)" msgid "Empty" msgstr "空き" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "エミュレーションスレッドはすでに稼働中です" @@ -4522,7 +4522,7 @@ msgstr "エミュレーションスレッドはすでに稼働中です" msgid "Emulate Disc Speed" msgstr "ディスク速度をエミュレートする" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "インフィニティベースをエミュレートする" @@ -4542,7 +4542,7 @@ msgstr "" "実際のハードウェアのディスク速度をエミュレートします。無効にすると不安定にな" "ることがあります。デフォルトはTrueです" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "USBデバイスをエミュレート" @@ -4567,16 +4567,16 @@ msgstr "エミュレーション速度" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "有効" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Enable API Validation Layers" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "タイムストレッチを有効にする (Audio Stretching)" @@ -4624,7 +4624,7 @@ msgstr "アンコール実績を有効にする" msgid "Enable FPRF" msgstr "Enable FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "グラフィック MOD を有効にする" @@ -4664,7 +4664,7 @@ msgstr "" "ム実行中にハードコアモードをオフにするには、再度有効にする前にゲームを終了す" "る必要があることに注意してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4677,7 +4677,7 @@ msgstr "MMU (メモリ管理ユニット) を有効にする" msgid "Enable Progress Notifications" msgstr "進捗状況の通知を有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "プログレッシブ表示を有効にする" @@ -4686,11 +4686,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.orgの統合を有効にする" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "振動を有効にする" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "スクリーンセーバーを有効にする" @@ -4710,11 +4710,11 @@ msgstr "非公式アチーブメントを有効にする" msgid "Enable Usage Statistics Reporting" msgstr "統計レポートの収集に協力する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink経由でWiiConnect24を有効にする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "ワイヤーフレーム表示を有効にする" @@ -4780,7 +4780,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4826,7 +4826,7 @@ msgstr "" "まにしておくこと。

よく分からない場合は、チェックを" "外したままにしておいてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4839,7 +4839,7 @@ msgstr "" "ます。

よく分からない場合は、チェックを外したままに" "してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4866,7 +4866,7 @@ msgstr "" "

よく分からない場合は、このチェックを外したままにし" "てください。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "有効にすると音声をエミュレーション速度に合わせて伸長させます" @@ -4902,7 +4902,7 @@ msgstr "" "速)

よく分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4915,7 +4915,7 @@ msgstr "" "利用規約を読む場合は次のURLを参照してください。: https://www.wiilink24.com/" "tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4927,7 +4927,7 @@ msgstr "" "バッグシンボルも有効にします。

よく分からない場合" "は、このチェックを外したままにしてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4962,7 +4962,7 @@ msgstr "Enet Didn't Initialize" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "英語" @@ -4981,7 +4981,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "デバイス(ハードウェア)IDを入力" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Enter address to watch:" @@ -5005,7 +5005,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Enter the RSO module address:" @@ -5044,9 +5044,9 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5059,24 +5059,24 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5106,7 +5106,7 @@ msgstr "アダプタのオープン時にエラーが発生しました: %1" msgid "Error collecting save data!" msgstr "セーブデータ収集時にエラーが発生しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5219,12 +5219,12 @@ 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:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "ヨーロッパ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Uber (統合) シェーダーだけを使用する" @@ -5268,11 +5268,11 @@ msgstr "入力値の検証:入力待ち" msgid "Expected variable name." msgstr "変数名が必要です。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "実験的" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "全てのWiiセーブデータをエクスポート" @@ -5287,7 +5287,7 @@ msgstr "エクスポート失敗" msgid "Export Recording" msgstr "録画ファイルのエクスポート" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "録画ファイルのエクスポート..." @@ -5315,7 +5315,7 @@ msgstr "GCS形式でエクスポート..." msgid "Export as .&sav..." msgstr "SAV形式でエクスポート..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5343,7 +5343,7 @@ msgstr "External" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (外部フレームバッファ)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "証明書ファイルをNANDから取り出す" @@ -5381,7 +5381,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO プレーヤー" @@ -5401,7 +5401,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "このセッションを NetPlay インデックスに追加できませんでした: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5421,7 +5421,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org に接続できませんでした" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "サーバー %1 に接続できませんでした" @@ -5442,7 +5442,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Infinityファイルの作成に失敗しました" @@ -5499,7 +5499,7 @@ msgstr "%nから%1 セーブファイルのエクスポートに失敗しまし msgid "Failed to export the following save files:" msgstr "次のセーブファイルをエクスポートできませんでした:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "証明書ファイルの取り出しに失敗" @@ -5529,14 +5529,14 @@ msgstr "Failed to find one or more D3D symbols" msgid "Failed to import \"%1\"." msgstr "\"%1\" をインポートできませんでした" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "セーブファイルのインポートに失敗しました。一度ゲームを起動してから、再度お試" "しください。" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5544,7 +5544,7 @@ msgstr "" "セーブファイルのインポートに失敗しました。指定されたファイルは破損している" "か、有効な Wiiセーブファイルではありません。" -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5577,7 +5577,7 @@ msgid "Failed to install pack: %1" msgstr "リソースパック %1 をインストールできませんでした" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "タイトルのインストールに失敗" @@ -5589,8 +5589,8 @@ msgstr "" "ポート番号 %1 で待ち受けできませんでした。別のネットプレイサーバーが実行中に" "なっていませんか?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "%1 にて RSO モジュールをロードできませんでした" @@ -5602,7 +5602,7 @@ msgstr "d3d11.dllのロードに失敗しました" msgid "Failed to load dxgi.dll" msgstr "dxgi.dllのロードに失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "マップ ファイル '%1' のロードに失敗しました" @@ -5632,11 +5632,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Skylanderの修正に失敗しました!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5687,11 +5687,11 @@ msgstr "ファイルのオープンに失敗しました。" msgid "Failed to open server" msgstr "サーバーを開けませんでした" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Infinity ファイルのオープンに失敗しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5753,11 +5753,11 @@ msgstr "入力ファイル \"{0}\" からの読み込みに失敗しました。 msgid "Failed to read selected savefile(s) from memory card." msgstr "メモリーカードから選択したセーブファイルの読み込みに失敗しました。" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Infinityファイルの読み込みに失敗しました!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5827,27 +5827,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "FIFOログの保存に失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Failed to save to signature file '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5903,7 +5903,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "失敗" @@ -5941,7 +5941,7 @@ msgstr "" msgid "Field of View" msgstr "視野角(Field of View)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "図番号:" @@ -5955,7 +5955,7 @@ msgstr "ファイル情報" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "ファイル形式" @@ -5963,24 +5963,24 @@ msgstr "ファイル形式" msgid "File Format:" msgstr "ファイル形式:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "ファイル情報" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "ファイル名" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "ファイルパス" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "ファイルサイズ" @@ -6107,7 +6107,7 @@ msgstr "" "セットアップ方法については、このページを参照してください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "強制的に 16:9 にする" @@ -6115,7 +6115,7 @@ msgstr "強制的に 16:9 にする" msgid "Force 24-Bit Color" msgstr "強制24bitカラー化" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "強制的に 4:3 にする" @@ -6147,12 +6147,12 @@ msgstr "接続待ちポートを次の番号で固定:" msgid "Force Nearest" msgstr "ニアレストを強制" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" "%1 は頂点シェーダー拡張をサポートしていないため、強制的にオフになりました。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "%1 はジオメトリシェーダーをサポートしていないため、強制的にオンになりました。" @@ -6237,11 +6237,11 @@ msgstr "Frame Advance速度 増加" msgid "Frame Advance Reset Speed" msgstr "Frame Advance速度 リセット" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Frame Dumping" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "フレームの範囲" @@ -6249,7 +6249,7 @@ msgstr "フレームの範囲" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "フレームダンプイメージ '{0}' はすでに存在します。上書きしますか?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "記録するフレーム数" @@ -6304,7 +6304,7 @@ msgstr "フリールック 切替" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "フランス語" @@ -6323,8 +6323,8 @@ msgid "From" msgstr "開始" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "開始" @@ -6380,11 +6380,11 @@ msgstr "GBA 音量" msgid "GBA Window Size" msgstr "GBA 画面サイズ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBAのROMを %1 から \"%2\" へ変更" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBAのROM %1 を無効化" @@ -6553,7 +6553,7 @@ msgid "Game Gamma:" msgstr "ゲームガンマ:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ゲームID" @@ -6566,7 +6566,7 @@ msgstr "ゲームID" msgid "Game Status" msgstr "状態" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "次のゲームに変更 \"%1\"" @@ -6679,7 +6679,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Geckoコード" @@ -6711,13 +6711,13 @@ msgstr "新しい統計IDを作成する" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Generated symbol names from '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "ドイツ語" @@ -6797,7 +6797,7 @@ msgstr "緑 - 左" msgid "Green Right" msgstr "緑 - 右" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "グリッド表示" @@ -6879,7 +6879,7 @@ msgstr "隠す" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "すべて非表示" @@ -6903,11 +6903,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "大" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "高" @@ -6950,11 +6950,11 @@ msgstr "" "す\n" "3人以上の環境で、通信が不安定な場合やレイテンシが大きい場合に効果的です" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Host Input Authority が無効になりました" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Host Input Authority が有効になりました" @@ -6980,7 +6980,7 @@ msgstr "ホットキー" msgid "Hotkeys Require Window Focus" msgstr "フォーカスがあるときのみホットキーを動作させる" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Uber (統合) シェーダーを一部使用する" @@ -7044,7 +7044,7 @@ msgid "IR" msgstr "ポインタ" #. 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:363 msgid "IR Sensitivity:" msgstr "Wiiリモコンの感度" @@ -7141,7 +7141,7 @@ msgstr "" "チェックされない場合、エミュレートされたコントローラの接続状態は\n" "実際のデフォルトデバイスの接続状態(ある場合)にリンクされます。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7152,7 +7152,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7208,7 +7208,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFBを即時表示する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7222,7 +7222,7 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND バックアップをインポート..." @@ -7237,7 +7237,7 @@ msgstr "インポートに失敗" msgid "Import Save File(s)" msgstr "セーブファイルのインポート" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Wii セーブデータのインポート..." @@ -7344,16 +7344,16 @@ msgstr "インクリメンタルローテション" msgid "Incremental Rotation (rad/sec)" msgstr "インクリメンタルローテーション(rad/秒)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "インフィニティ・フィギュア・クリエイター" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "インフィニティマネージャー" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "インフィニティオブジェクト (*.bin);;" @@ -7375,8 +7375,8 @@ msgstr "情報" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "情報" @@ -7389,11 +7389,11 @@ msgid "Inject" msgstr "インジェクト" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "入力" @@ -7419,7 +7419,7 @@ msgstr "" msgid "Insert &nop" msgstr "Insert &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SDカードの挿入をエミュレートする" @@ -7436,7 +7436,7 @@ msgstr "インストールパーティション (%1)" msgid "Install Update" msgstr "自動更新" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WiiメニューにWADファイルを追加..." @@ -7459,7 +7459,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Instruction Breakpoint" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instruction:" @@ -7555,7 +7555,7 @@ msgstr "Internal error while generating AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (非常に低速)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7580,7 +7580,7 @@ msgstr "無効なリソースパック %1 が与えられました:%2" msgid "Invalid Player ID" msgstr "無効なプレイヤーID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" @@ -7605,7 +7605,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Invalid input for the field \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Invalid input provided" @@ -7641,13 +7641,13 @@ msgstr "Invalid search string (only even string lengths supported)" msgid "Invalid title ID." msgstr "無効なタイトルID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Invalid watch address: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "イタリア語" @@ -7660,11 +7660,11 @@ msgstr "イタリア" msgid "Item" msgstr "アイテム" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7672,47 +7672,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7724,11 +7724,11 @@ msgstr "JIT Recompiler for ARM64 (推奨)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (推奨)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" @@ -7742,16 +7742,16 @@ msgstr "" "このエラーは起こらないはずです。この状況をバグトラッカーへ報告してください。" "Dolphinを終了します。" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "日本" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "日本語" @@ -7813,12 +7813,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "選択したプレイヤーをキック" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "韓国" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "韓国語" @@ -7865,23 +7865,23 @@ msgstr "最終順位:" msgid "Last reset:" msgstr "最終リセット:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "レイテンシ:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "遅延:~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "遅延:~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "遅延:~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "遅延: ~80 ms" @@ -7889,7 +7889,7 @@ msgstr "遅延: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "これらのタイトルを起動すると問題が解決する場合があります。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "リーダーボード" @@ -7985,11 +7985,11 @@ msgstr "ライト" msgid "Limit Chunked Upload Speed:" msgstr "Limit Chunked Upload Speed:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "ゲームリストカラムの表示" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "リスト表示" @@ -8001,15 +8001,15 @@ msgstr "Listening" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "読込" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." @@ -8021,7 +8021,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "カスタムテクスチャを読み込む" @@ -8029,7 +8029,7 @@ msgstr "カスタムテクスチャを読み込む" msgid "Load File" msgstr "ファイルの読み込み" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "ゲームキューブ メインメニューを起動" @@ -8139,19 +8139,19 @@ msgstr "ステートロード - スロット 8" msgid "Load State Slot 9" msgstr "ステートロード - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "ファイルからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "次のスロットからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Wiiメニュー %1 を起動" @@ -8163,28 +8163,28 @@ msgstr "ホストのセーブデータの読み込みと書き込み" msgid "Load from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Load map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "vWii システム・メニュー %1 を読み込みます。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "読込..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Loaded symbols from '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8195,7 +8195,7 @@ msgstr "" "User/Load/DynamicInputTextures/<game_id>/

よく" "分からなければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8212,7 +8212,7 @@ msgstr "IPアドレスと使用ポート番号" msgid "Lock Mouse Cursor" msgstr "マウスカーソルをロック" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "ロックされています" @@ -8238,7 +8238,7 @@ msgstr "ログの設定" msgid "Log In" msgstr "ログイン" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -8246,7 +8246,7 @@ msgstr "Log JIT Instruction Coverage" msgid "Log Out" msgstr "ログアウト" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "レンダリング時間を記録" @@ -8262,7 +8262,7 @@ msgstr "ログ出力先" msgid "Login Failed" msgstr "ログインに失敗しました" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8273,20 +8273,20 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "ループ" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "ネットプレイサーバーへの接続が失われました..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "小" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "低" @@ -8346,7 +8346,7 @@ msgstr "スロット %1 に Skylander があることを確認してください #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "メーカー" @@ -8367,12 +8367,12 @@ msgstr "" "ません。

よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Wii NANDの管理" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "手動テクスチャサンプリングを有効にする" @@ -8388,11 +8388,11 @@ msgstr "マスクロム" msgid "Match Found" msgstr "Match Found" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "最大バッファサイズ:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "最大バッファサイズが変更されました: %1" @@ -8401,7 +8401,7 @@ msgstr "最大バッファサイズが変更されました: %1" msgid "Maximum tilt angle." msgstr "最大傾斜角度。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" "有効にしているとWiiメニューやいくつかのタイトルで動作速度が低下する場合があり" @@ -8424,7 +8424,7 @@ msgstr "Memory Breakpoint" msgid "Memory Card" msgstr "メモリーカード" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "GCメモリーカードマネージャ" @@ -8484,11 +8484,11 @@ msgstr "マイク" msgid "Mini" msgstr "ミニ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "その他" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "その他の設定" @@ -8505,7 +8505,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Mismatch between internal data structures." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8532,7 +8532,7 @@ msgstr "" msgid "Modifier" msgstr "感度変更" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8551,8 +8551,8 @@ msgstr "スロットの変更" msgid "Modifying Skylander: %1" msgstr "スカイランダーを修正中: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Modules found: %1" @@ -8560,7 +8560,7 @@ msgstr "Modules found: %1" msgid "Money:" msgstr "貨幣:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "モノラル" @@ -8620,10 +8620,10 @@ msgstr "乗数" msgid "N&o to All" msgstr "すべていいえ(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 整合性チェック" @@ -8632,7 +8632,7 @@ msgstr "NAND 整合性チェック" msgid "NKit Warning" msgstr "NKit Warning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8664,7 +8664,7 @@ msgstr "" "に合わせてください。

分からない場合は2.35のままにし" "ておいてください。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8881,7 +8881,7 @@ msgstr "エラーはありません。" msgid "No extension selected." msgstr "拡張コントローラが選択されていません" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "読み込み/記録ファイルなし" @@ -8889,7 +8889,7 @@ msgstr "読み込み/記録ファイルなし" msgid "No game is running." msgstr "No game is running." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "No game running." @@ -8902,7 +8902,7 @@ msgstr "グラフィック MOD が選択されていません" msgid "No input" msgstr "入力なし" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "問題は見つかりませんでした" @@ -8951,8 +8951,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9107,7 +9107,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "オブジェクトの範囲" @@ -9132,7 +9132,7 @@ msgstr "有効" msgid "On Movement" msgstr "操作時のみ表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9157,7 +9157,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "オンラインガイドを表示(&D)" @@ -9165,7 +9165,7 @@ msgstr "オンラインガイドを表示(&D)" msgid "Only Show Collection" msgstr "コレクションのみを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9173,7 +9173,7 @@ msgstr "" "Only append symbols with prefix:\n" "(Blank for all symbols)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9192,7 +9192,7 @@ msgstr "開く" msgid "Open &Containing Folder" msgstr "実体ファイルのあるフォルダを開く(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "ユーザーフォルダーを開く(&U)" @@ -9201,7 +9201,7 @@ msgstr "ユーザーフォルダーを開く(&U)" msgid "Open Directory..." msgstr " フォルダーを開く..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "FIFOログファイルを選択" @@ -9291,7 +9291,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9333,11 +9333,11 @@ msgstr "出力 リサンプリング:" msgid "Overwritten" msgstr "Overwritten" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "録画ファイルを再生...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9351,11 +9351,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG圧縮レベル" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG圧縮レベル:" @@ -9443,7 +9443,7 @@ msgstr "一時停止" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "再生終了時に一時停止" @@ -9492,7 +9492,7 @@ msgstr "外向きのスイング動作のピーク速度。" msgid "Per-Pixel Lighting" msgstr "ピクセル単位のライティングを有効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Wii システムアップデート" @@ -9500,15 +9500,15 @@ msgstr "Wii システムアップデート" msgid "Perform System Update" msgstr "Wii システムアップデート" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "パフォーマンス サンプル ウィンドウ (ミリ秒)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "パフォーマンス サンプル ウィンドウ (ミリ秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "パフォーマンスステータス" @@ -9526,7 +9526,7 @@ msgstr "Physical address space" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Pick a debug font" @@ -9543,7 +9543,7 @@ msgid "Pitch Up" msgstr "ピッチアップ" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "機種" @@ -9551,7 +9551,7 @@ msgstr "機種" msgid "Play" msgstr "開始" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "再生/記録" @@ -9559,11 +9559,11 @@ msgstr "再生/記録" msgid "Play Recording" msgstr "録画ファイルを再生" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "プレイセット/パワーディスク" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "再生に関する設定" @@ -9571,27 +9571,27 @@ msgstr "再生に関する設定" msgid "Player" msgstr "プレイヤー名" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "プレイヤー 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "プレイヤー 1 アビリティ 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "プレイヤー 1 アビリティ 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "プレイヤー 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "プレイヤー 2 アビリティ 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "プレイヤー 2 アビリティ 2" @@ -9615,7 +9615,7 @@ msgstr "" "「SyncOnSkipIdle」設定を「True」に変更してください。現在無効になっているた" "め、この問題が発生する確率が非常に高くなります。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9649,7 +9649,7 @@ msgstr "ポート:" msgid "Portal Slots" msgstr "ポータルスロット" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "非同期が起きたことが検出されました。 %1 は、フレーム %2 で非同期になった可能" @@ -9667,20 +9667,20 @@ msgstr "ポストプロセス:" msgid "Post-Processing Shader Configuration" msgstr "ポストプロセスシェーダーの設定" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "点/線の展開時に頂点シェーダーを優先する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "カスタムテクスチャの事前読込" @@ -9717,7 +9717,7 @@ msgstr "シンクロボタン 押下" msgid "Pressure" msgstr "筆圧" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9794,11 +9794,11 @@ msgstr "プロファイル" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "進行状況" @@ -9812,7 +9812,7 @@ msgstr "" msgid "Public" msgstr "誰でも" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "ゲームリストのキャッシュを消去" @@ -9836,7 +9836,7 @@ msgstr "Quality of Service (QoS) は有効になりませんでした" msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) が有効になっています" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Dolby Pro Logic II デコーダの精度を調整します。精度を高めると遅延も大きくなり" @@ -9870,11 +9870,11 @@ msgstr "R (アナログ)" msgid "READY" msgstr "READY" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO auto-detection" @@ -9899,7 +9899,7 @@ msgstr "Range End: " msgid "Range Start: " msgstr "Range Start: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "順位 %1" @@ -9907,7 +9907,7 @@ msgstr "順位 %1" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9966,7 +9966,7 @@ msgstr "" msgid "Recenter" msgstr "リセット" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "録画" @@ -9978,11 +9978,11 @@ msgstr "コントローラ操作を記録" msgid "Recording" msgstr "Recording" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "録画設定" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "レコーディング..." @@ -10052,7 +10052,7 @@ msgid "Refreshing..." msgstr "セッションリストを更新中..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地域" @@ -10085,7 +10085,7 @@ msgstr "また今度" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "削除" @@ -10126,11 +10126,11 @@ msgstr "Rename symbol" msgid "Render Window" msgstr "ゲームウィンドウ設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "メインウィンドウ部分に描画" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10165,7 +10165,7 @@ msgstr "リセット" msgid "Reset All" msgstr "すべてをリセット" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Reset Ignore Panic Handler" @@ -10197,7 +10197,7 @@ msgstr "位置をリセット" msgid "Reset all saved Wii Remote pairings" msgstr "全てのペアリングをリセットする" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -10381,19 +10381,19 @@ msgstr "ロシア" msgid "SD Card" msgstr "SDカード" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SDカードのファイルサイズ:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SDカードファイル (*.raw);; すべてのファイル (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SDカード" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SDカードの設定" @@ -10401,7 +10401,7 @@ msgstr "SDカードの設定" msgid "SD Root:" msgstr "SDのルート:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "同期させるフォルダ" @@ -10436,11 +10436,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Sa&ve Code" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "ステートセーブ(&V)" @@ -10472,11 +10472,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "エクスポートの保存" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "FIFOログの保存" @@ -10494,11 +10494,11 @@ msgstr "セーブデータ" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "ゲームボーイアドバンス セーブファイル (*.sav);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "インポートの保存" @@ -10510,7 +10510,7 @@ msgstr "最古のステートに上書き保存" msgid "Save Preset" msgstr "プリセットの保存" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "レコーディングファイルに名前を付けて保存" @@ -10560,23 +10560,23 @@ msgstr "ステートセーブ - スロット 8" msgid "Save State Slot 9" msgstr "ステートセーブ - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "ファイルとして保存" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "最古のステートに上書き保存" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "次のスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10596,11 +10596,11 @@ msgstr "プリセットとして保存..." msgid "Save as..." msgstr "ファイルとして保存..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Save combined output file as" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10614,11 +10614,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "ROMと同じフォルダにセーブファイルを保存する" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Save map file" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Save signature file" @@ -10626,11 +10626,11 @@ msgstr "Save signature file" msgid "Save to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "保存..." @@ -10662,7 +10662,7 @@ msgstr "画面撮影" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Search" @@ -10691,7 +10691,7 @@ msgstr "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Search for an Instruction" @@ -10699,7 +10699,7 @@ msgstr "Search for an Instruction" msgid "Search games..." msgstr "ゲームタイトルを検索..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Search instruction" @@ -10744,11 +10744,11 @@ msgid "Select Dump Path" msgstr "ダンプ先を選択" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "エクスポート先フォルダを選択" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "フィギュアファイルを選択する" @@ -10788,7 +10788,7 @@ msgstr "Skylanderコレクションの選択" msgid "Select Skylander File" msgstr "Skylanderファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "スロット %1 - %2" @@ -10796,7 +10796,7 @@ msgstr "スロット %1 - %2" msgid "Select State" msgstr "スロットの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "スロットの選択" @@ -10863,7 +10863,7 @@ msgstr "ディレクトリを選択" msgid "Select a File" msgstr "ファイルを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "SDカードへの変更内容を同期するフォルダを選択" @@ -10871,7 +10871,7 @@ msgstr "SDカードへの変更内容を同期するフォルダを選択" msgid "Select a Game" msgstr "ディスクドライブチャンネルに表示するゲームを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SDカードファイルを選択" @@ -10883,7 +10883,7 @@ msgstr "ファイルの選択" msgid "Select a game" msgstr "タイトルを選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "NANDにインストールするタイトルを選択" @@ -10891,7 +10891,7 @@ msgstr "NANDにインストールするタイトルを選択" msgid "Select e-Reader Cards" msgstr "カードeファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Select the RSO module address:" @@ -10908,7 +10908,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "キーファイル (OTP/SEEPROM ダンプ)を選択" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "セーブファイルを選択" @@ -10932,7 +10932,7 @@ msgstr "選択されたプロファイルは存在しません" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "選択されたゲームがゲームリストに存在しません!" @@ -10960,7 +10960,7 @@ msgstr "" "描画に使用するビデオカードを選択します。

よく分から" "なければ、一番上のものを選択してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10998,7 +10998,7 @@ msgstr "" "す。

よく分からなければ、「オフ」を選択してくださ" "い。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11020,7 +11020,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11040,7 +11040,7 @@ msgstr "" msgid "Send" msgstr "送信" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "センサーバーの位置" @@ -11109,7 +11109,7 @@ msgstr "Set symbol end address" msgid "Set symbol size (%1):" msgstr "Set symbol size (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11119,7 +11119,7 @@ msgstr "" "変更します\n" "すべてのタイトルで上手く動作するとは限りません" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Wiiのシステム言語を変更できます" @@ -11131,7 +11131,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11154,7 +11154,7 @@ msgstr "" "仮想アドレス空間で標準の MEM1 および (Wii の) MEM2 マッピングを使用して検索を" "設定します。これはほとんどのゲームで機能します。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11168,7 +11168,7 @@ msgstr "SetupWiiMemory: Can't create setting.txt file" msgid "Severity" msgstr "影響度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "シェーダコンパイルの設定" @@ -11190,16 +11190,16 @@ msgstr "新幹線" msgid "Shinkansen Controller" msgstr "新幹線専用コントローラー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "% 速度を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "ログを表示(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "ツールバー(&T)" @@ -11207,11 +11207,11 @@ msgstr "ツールバー(&T)" msgid "Show Active Title in Window Title" msgstr "タイトルバーに起動中のゲーム名を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "すべて表示" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "オーストラリア" @@ -11224,7 +11224,7 @@ msgstr "Discordにプレイ中のゲームを表示" msgid "Show Disabled Codes First" msgstr "無効なコードを最初に表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11233,27 +11233,27 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "有効なコードを最初に表示する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "フレームカウンタを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "フレームタイムを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "フランス" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "ゲームキューブ" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "ドイツ" @@ -11265,23 +11265,23 @@ msgstr "Show Golf Mode Overlay" msgid "Show Infinity Base" msgstr "インフィニティベースを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "入力された操作を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "イタリア" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "日本" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "韓国" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "ラグカウンタを表示" @@ -11289,19 +11289,19 @@ msgstr "ラグカウンタを表示" msgid "Show Language:" msgstr "次の言語で表示" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "ログの設定を表示(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "ネットプレイ:OSD表示" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "ネットプレイ:Ping表示" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "オランダ" @@ -11309,7 +11309,7 @@ msgstr "オランダ" msgid "Show On-Screen Display Messages" msgstr "OSDを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL規格の地域" @@ -11318,27 +11318,27 @@ msgstr "PAL規格の地域" msgid "Show PC" msgstr "Show PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "パフォーマンスグラフを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "特定機種のソフトだけを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "次の地域のソフトだけを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "再記録カウンターを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "ロシア" @@ -11346,51 +11346,51 @@ msgstr "ロシア" msgid "Show Skylanders Portal" msgstr " Skylandersポータルを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "スペイン" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "スピードカラーを表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "統計情報を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "システム時間を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "アメリカ合衆国" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "不明" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "垂直ブランキング期間 (VBlank) 時間を表示" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD(Wiiウェア/VC/Wiiチャンネル)" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "地域なし" @@ -11403,7 +11403,7 @@ msgid "Show in Code" msgstr "Show in Code" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Show in Memory" @@ -11431,7 +11431,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11440,7 +11440,7 @@ msgstr "" "画面に表示します。

よく分からなければ、チェックを入" "れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11485,7 +11485,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11495,7 +11495,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11505,7 +11505,7 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11515,7 +11515,7 @@ msgstr "" "す。

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
よく分からなければ、チェックを入れない" "でください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11534,13 +11534,13 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11564,7 +11564,7 @@ msgstr "横持ちの切替" msgid "Sideways Wii Remote" msgstr "横持ちで使用する" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Signature Database" @@ -11588,7 +11588,7 @@ msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "簡体字中国語" @@ -11605,7 +11605,7 @@ msgstr "Six Axis" msgid "Size" msgstr "サイズ" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11617,7 +11617,7 @@ msgstr "" msgid "Skip" msgstr "Skip" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Skip Drawing" @@ -11750,7 +11750,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "アルファベット順で並べ替え" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "サウンドの設定:" @@ -11764,7 +11764,7 @@ msgstr "スペイン" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "スペイン語" @@ -11772,11 +11772,11 @@ msgstr "スペイン語" msgid "Speaker Pan" msgstr "スピーカー パン調整" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "リモコンスピーカー音量" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specialized (既定)" @@ -11784,7 +11784,7 @@ msgstr "Specialized (既定)" msgid "Specific" msgstr "Specific" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11834,7 +11834,7 @@ msgstr "標準コントローラ" msgid "Start" msgstr "スタート" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "ネットプレイを開始...(&N)" @@ -11843,11 +11843,11 @@ msgstr "ネットプレイを開始...(&N)" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "新しいチート検索を開始します" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "操作の記録を開始(&C)" @@ -11855,7 +11855,7 @@ msgstr "操作の記録を開始(&C)" msgid "Start Recording" msgstr "操作の記録を開始" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "フルスクリーンで開始する" @@ -11867,7 +11867,7 @@ msgstr "Riivolution パッチから始めます" msgid "Start with Riivolution Patches..." msgstr "Riivolution パッチから始めます..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "ゲームを開始" @@ -11927,7 +11927,7 @@ msgstr "Step successful!" msgid "Stepping" msgstr "Stepping" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "ステレオ" @@ -11956,12 +11956,12 @@ msgid "Stick" msgstr "スティック" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "操作の再生/記録を停止" @@ -12007,7 +12007,7 @@ msgstr "" "Texture)

よく分からなければ、チェックを外さないでく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "ウィンドウに合わせる" @@ -12046,8 +12046,8 @@ msgstr "スタイラス" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "完了" @@ -12074,7 +12074,7 @@ msgstr "保存ファイル %1 から正常に %n エクスポートされまし msgid "Successfully exported save files" msgstr "セーブファイルのエクスポートに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "証明書ファイルの取り出しに成功しました" @@ -12086,12 +12086,12 @@ msgstr "ファイルの取り出しに成功しました" msgid "Successfully extracted system data." msgstr "システムデータの取り出しに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "セーブファイルのインポートに成功しました。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "タイトルのインストールに成功しました" @@ -12114,12 +12114,12 @@ msgstr "サポート" msgid "Supported file formats" msgstr "サポートしているすべての形式" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "SD および SDHC 仕様のみサポート。デフォルト容量は 128 MB です" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "サラウンド" @@ -12180,7 +12180,7 @@ msgstr "Symbol name:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symbols" @@ -12208,7 +12208,7 @@ msgstr "" "CPU/GPUスレッドを同期させることでデュアルコア動作時のフリーズを抑制します " "[有効=互換性重視/無効=速度向上]" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12229,11 +12229,11 @@ msgid "Synchronizing save data..." msgstr "セーブデータの同期中..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "システムの言語:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS用入力ウィンドウを表示" @@ -12246,7 +12246,7 @@ msgstr "TAS関係" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "タグを表示" @@ -12264,7 +12264,7 @@ msgstr "Tail" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "スクリーンショット" @@ -12305,7 +12305,7 @@ msgstr "Texture Cache" msgid "Texture Cache Accuracy" msgstr "テクスチャキャッシュの精度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texture Dumping" @@ -12317,7 +12317,7 @@ msgstr "テクスチャーフィルタリング" msgid "Texture Filtering:" msgstr "テクスチャフィルタ:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "テクスチャフォーマット情報表示" @@ -12361,7 +12361,7 @@ msgstr "IPL ファイルは既知の正常なダンプではありません。 ( msgid "The Masterpiece partitions are missing." msgstr "The Masterpiece partitions are missing." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12369,7 +12369,7 @@ msgstr "" "NANDを修復できませんでした。現在のデータをバックアップして、NANDのダンプから" "やり直すことをオススメします" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NANDの修復に成功しました" @@ -12387,7 +12387,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12739,7 +12739,7 @@ msgstr "The specified common key index is {0} but should be {1}." msgid "The specified file \"{0}\" does not exist" msgstr "指定されたファイル \"{0}\" は存在しません" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12802,7 +12802,7 @@ msgstr "The update partition is missing." msgid "The update partition is not at its normal position." msgstr "The update partition is not at its normal position." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13190,7 +13190,7 @@ msgstr "Timed Out" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "タイトル" @@ -13199,12 +13199,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "全画面表示 切り替え(&F)" @@ -13293,7 +13293,7 @@ msgstr "" msgid "Toolbar" msgstr "ツールバー" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "上" @@ -13344,7 +13344,7 @@ msgid "Toy code:" msgstr "トイコード:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "繁体字中国語" @@ -13364,8 +13364,8 @@ msgstr "トラップマスター" msgid "Trap Team" msgstr "トラップチーム" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "トラバーサルエラー" @@ -13448,7 +13448,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB ホワイトリストエラー" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13459,7 +13459,7 @@ msgstr "" "す。

よく分からなければ、これを選択してください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13471,7 +13471,7 @@ msgstr "" "したPCで、Hybrid Ubershaders では問題がある場合にしかオススメできません。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13484,7 +13484,7 @@ msgstr "" "ケースではパフォーマンスへの影響を最小限に抑えつつカクつきが解消されるはずで" "すが、実際どのような結果になるかは使用中のビデオドライバに依存します。" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Unable to auto-detect RSO module" @@ -13555,11 +13555,11 @@ msgstr "未圧縮のGC/Wii ISOファイル (*.iso *.gcm)" msgid "Undead" msgstr "アンデット" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "直前のステートロードを取消" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "直前のステートセーブの取消" @@ -13578,7 +13578,7 @@ msgid "" msgstr "" "セーブデータを残してNAND内からこのタイトルを削除します。よろしいですか?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "米国" @@ -13676,7 +13676,7 @@ msgid "Unknown(%1 %2).sky" msgstr "不明(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "不明(%1).bin" @@ -13692,7 +13692,7 @@ msgstr "ROMを取り外してリセット" msgid "Unlock Cursor" msgstr "マウスカーソルをロック 解除" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13735,7 +13735,7 @@ msgid "Up" msgstr "上" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "再取得" @@ -13809,7 +13809,7 @@ msgstr "すべてのWiiセーブデータを使用する" msgid "Use Built-In Database of Game Names" msgstr "ゲーム名の表記に内蔵リストを使用する" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "ロスレス映像コーデック (FFV1) を使用する" @@ -13817,7 +13817,7 @@ msgstr "ロスレス映像コーデック (FFV1) を使用する" msgid "Use Mouse Controlled Pointing" msgstr "マウス操作によるポインティグを使用する" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 (EuRGB60) モードを使用する" @@ -13831,7 +13831,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13918,7 +13918,7 @@ msgstr "" "場合もあります。

よく分からなければ、チェックを外さ" "ないでください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13928,7 +13928,7 @@ msgstr "" "画面でのエミュレーションとなります。

よく分からなけ" "れば、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14221,7 +14221,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -14343,7 +14343,7 @@ msgstr "欧米用 (Windows-1252)" msgid "Whammy" msgstr "ワーミー" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14355,7 +14355,7 @@ msgstr "" "る場合、任意のベーステクスチャを含みます。

よく分か" "らない場合はチェックしたままにしてください。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14368,7 +14368,7 @@ msgstr "" "

よく分からない場合はチェックしたままにしてくださ" "い。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "常にパススルーを行うUSBデバイスリスト" @@ -14418,7 +14418,7 @@ msgstr "Wiiリモコン ボタン" msgid "Wii Remote Gyroscope" msgstr "Wiiリモコンのジャイロスコープ" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wiiリモコンの設定" @@ -14446,7 +14446,7 @@ msgstr "WiiとWiiリモコン" msgid "Wii data is not public yet" msgstr "Wii data is not public yet" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii セーブファイル (*.bin);;すべてのファイル (*)" @@ -14454,7 +14454,7 @@ msgstr "Wii セーブファイル (*.bin);;すべてのファイル (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiToolsシグネチャーMEGAファイル" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -14485,7 +14485,7 @@ msgstr "地域なし" msgid "Write" msgstr "Write" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -14534,11 +14534,11 @@ msgstr "間違った地域です" msgid "Wrong revision" msgstr "間違ったリビジョンです" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -14589,7 +14589,7 @@ msgstr "はい" msgid "Yes to &All" msgstr "すべてはい(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14598,7 +14598,7 @@ msgstr "" "%2 のファイルの内容を %1 のフォルダーに変換しようとしています。フォルダーの現" "在の内容はすべて削除されます。続行してもよろしいですか?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14740,7 +14740,7 @@ msgstr "" "問題を解決するために今すぐ停止しますか?\n" "「No」を選択した場合、音声が乱れることがあります。" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ko.po b/Languages/po/ko.po index ad98601a8f..9446d53316 100644 --- a/Languages/po/ko.po +++ b/Languages/po/ko.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Siegfried, 2013-2023\n" "Language-Team: Korean (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -91,7 +91,7 @@ msgstr "" "%1 가\n" "당신의 파티에 참여를 원합니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -145,7 +145,7 @@ msgstr "%1 (느림)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -180,7 +180,7 @@ msgstr "%1 는 당신의 시스템에서 이 특성을 지원하지 않습니다 msgid "%1 doesn't support this feature." msgstr "%1 는 이 특성을 지원하지 않습니다" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -190,11 +190,11 @@ msgstr "" "%2 오브젝트(들)\n" "현재 프레임: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 가 참가했습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 가 떠났습니다" @@ -202,11 +202,11 @@ msgstr "%1 가 떠났습니다" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 가 %2/%3 달성을 해제했습니다 %4/%5 점의 가치" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 는 적합한 롬이 아닙니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 은 지금 골프중입니다" @@ -218,8 +218,8 @@ msgstr "%1 은 %2 를 플레이하고 있습니다" msgid "%1 memory ranges" msgstr "%1 메모리 영역" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -236,7 +236,7 @@ msgstr "%1 세션이 발견되었습니다" msgid "%1 sessions found" msgstr "%1 세션들이 발견되었습니다" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -344,11 +344,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "돌핀 정보(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "메모리 중단점 추가 (&A)" @@ -365,11 +365,11 @@ msgstr "함수 추가 (&A)" msgid "&Add..." msgstr "추가... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "오디오 설정(&A)" @@ -385,11 +385,11 @@ msgstr "틀 없는 창(&B)" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "중단점 (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "버그 추적자(&B)" @@ -397,15 +397,15 @@ msgstr "버그 추적자(&B)" msgid "&Cancel" msgstr "취소(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "치트 매니저(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "업데이트 확인(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "부호 지우기 (& C)" @@ -413,7 +413,7 @@ msgstr "부호 지우기 (& C)" msgid "&Clone..." msgstr "복제... (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "코드 (&C)" @@ -421,7 +421,7 @@ msgstr "코드 (&C)" msgid "&Connected" msgstr "연결된(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "컨트롤러 설정(&C)" @@ -444,13 +444,13 @@ msgstr "삭제 (&)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "관찰 삭제 (&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "관찰들 삭제 (&D)" @@ -464,11 +464,11 @@ msgstr "코드 수정... (&E)" msgid "&Edit..." msgstr "편집... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "디스크 꺼내기(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "에뮬레이션(&E)" @@ -489,40 +489,40 @@ msgid "&Export as .gci..." msgstr ".gci 로 내보내기... (&E)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "파일(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "폰트 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "프레임 진행(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "자유 보기 설정(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "부호 생성 (&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "GitHub 저장소(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "그래픽 설정(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "도움말(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "단축키 설정(&H)" @@ -542,7 +542,7 @@ msgstr "상태 가져오기...(&I)" msgid "&Import..." msgstr "가져오기... (&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "무한대 기반(&I)" @@ -554,7 +554,7 @@ msgstr "blr 삽입 (&I)" msgid "&Interframe Blending" msgstr "프레임간 혼합(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "JIT(&J)" @@ -566,11 +566,11 @@ msgstr "언어(&L):" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "상태 로드(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "로드 부호 맵 (&L)" @@ -580,11 +580,11 @@ msgstr "파일을 현재 주소로 로드합니다 (&L)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "관찰들 고정 (&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "위젯 고정(&L)" @@ -592,11 +592,11 @@ msgstr "위젯 고정(&L)" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "메모리(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "무비(&M)" @@ -604,7 +604,7 @@ msgstr "무비(&M)" msgid "&Mute" msgstr "음소거(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "네트워크(&N)" @@ -613,23 +613,23 @@ msgid "&No" msgstr "아니요(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "열기...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "옵션(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "HLE 함수 패치 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "일시정지(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "실행(&P)" @@ -637,7 +637,7 @@ msgstr "실행(&P)" msgid "&Properties" msgstr "속성(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "읽기 전용 모드(&R)" @@ -645,7 +645,7 @@ msgstr "읽기 전용 모드(&R)" msgid "&Refresh List" msgstr "목록 새로고침(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "레지스터 (&R)" @@ -663,11 +663,11 @@ msgid "&Rename symbol" msgstr "부호 이름 바꾸기 (&R)" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "리셋(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "리소스 팩 매니저(&R)" @@ -675,7 +675,7 @@ msgstr "리소스 팩 매니저(&R)" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "부호 맵 저장 (&S)" @@ -683,7 +683,7 @@ msgstr "부호 맵 저장 (&S)" msgid "&Scan e-Reader Card(s)..." msgstr "e-Reader 카드 스캔...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "스카이랜더스 포탈 (&S)" @@ -691,7 +691,7 @@ msgstr "스카이랜더스 포탈 (&S)" msgid "&Speed Limit:" msgstr "속도 제한(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "중지(&S)" @@ -699,7 +699,7 @@ msgstr "중지(&S)" msgid "&Theme:" msgstr "테마(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "쓰레드(&T)" @@ -707,7 +707,7 @@ msgstr "쓰레드(&T)" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "도구(&T)" @@ -717,21 +717,21 @@ msgstr "롬 언로드(&U)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "관찰들 고정풀기 (&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "관찰(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "웹사이트(&W)" @@ -743,11 +743,11 @@ msgstr "위키(&W)" msgid "&Yes" msgstr "예(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' 이 발견되지 않았습니다, 생성된 부호 이름이 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' 이 발견되지 않았습니다, 공통 함수들을 대신 스캔합니다" @@ -795,7 +795,7 @@ msgstr "- 빼기" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--알려지지 않음--" @@ -861,7 +861,7 @@ msgstr "16-비트 부호화 정수" msgid "16-bit Unsigned Integer" msgstr "16-비트 비부호화 정수" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -945,7 +945,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 블락)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1046,7 +1046,7 @@ msgstr "<시스템 언어>" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "잘 모르겠으면, 체크 해제해 두세요." @@ -1180,7 +1180,7 @@ msgstr "" "니다.\n" "스스로 위험을 감수하고 사용하세요.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR 코드" @@ -1222,8 +1222,8 @@ msgstr "정확성:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "달성" @@ -1319,7 +1319,7 @@ msgstr "넷플레이 채팅 활성" msgid "Active" msgstr "액티브" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "활성 무한대 피겨:" @@ -1331,7 +1331,7 @@ msgstr "활성 쓰레드 큐" msgid "Active threads" msgstr "활성 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "어댑터" @@ -1339,7 +1339,7 @@ msgstr "어댑터" msgid "Adapter Detected" msgstr "어댑터가 감지되었습니다" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "어댑터:" @@ -1396,7 +1396,7 @@ msgstr "관찰에 추가" #: 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:329 msgid "Add..." msgstr "추가..." @@ -1410,7 +1410,7 @@ msgstr "추가..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "주소" @@ -1622,7 +1622,7 @@ msgstr "맞지 않는 지역 설정 허락" msgid "Allow Usage Statistics Reporting" msgstr "사용 통계 보고 허용" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD 카드에 쓰기 허용" @@ -1664,7 +1664,7 @@ msgstr "삽입된 디스크가 예상되었지만 찾지 못했습니다." msgid "Anaglyph" msgstr "입체" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "분석" @@ -1690,15 +1690,15 @@ msgstr "안티-앨리어싱:" msgid "Any Region" msgstr "아무 지역" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "서명 덧붙이기" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "존재하는 서명 파일에 덧붙이기... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "서명 파일 적용... (&y)" @@ -1718,7 +1718,7 @@ msgstr "앱로더 날짜:" msgid "Apply" msgstr "적용" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "서명 파일 적용" @@ -1750,16 +1750,16 @@ msgstr "확신합니까?" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "종횡비" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "종횡비:" @@ -1800,11 +1800,11 @@ msgstr "모션플러스 연결" msgid "Audio" msgstr "오디오" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "오디오 백엔드:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "오디오 늘림 설정" @@ -1820,7 +1820,7 @@ msgstr "작성자" msgid "Authors" msgstr "제작자" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "자동" @@ -1845,7 +1845,7 @@ msgstr "" "\n" "특정 내부 해상도를 선택해주세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "창 크기 자동 조정" @@ -1853,15 +1853,15 @@ msgstr "창 크기 자동 조정" msgid "Auto-Hide" msgstr "자동-숨기기" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "RSO 모듈을 자동-감지할까요?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "폴더와 자동으로 동기화" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1914,19 +1914,19 @@ msgstr "BP 레지스터" msgid "Back Chain" msgstr "백 체인" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "백엔드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "백엔드 멀티쓰레딩" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "백엔드 설정" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "백엔드:" @@ -1969,7 +1969,7 @@ msgstr "안 좋은 값이 제공되었습니다." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "배너" @@ -1993,7 +1993,7 @@ msgstr "" msgid "Base priority" msgstr "기본 우선순위" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "기본" @@ -2045,11 +2045,11 @@ msgstr "바이너리 SSL (읽기)" msgid "Binary SSL (write)" msgstr "바이너리 SSL (쓰기)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "비트레이트 (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2059,7 +2059,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "블락 크기" @@ -2097,7 +2097,7 @@ msgstr "" "블루투스 패스쓰루 모드가 켜졌습니다, 하지만 돌핀이 libusb 없이 빌드되었습니" "다. 패스쓰루 모드를 사용할 수 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "부팅하고 멈추기" @@ -2109,11 +2109,11 @@ msgstr "BootMii NAND 백업 파일 (*.bin);;모든 파일 (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 키 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "틀 없는 전체화면" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "아래" @@ -2290,20 +2290,20 @@ msgstr "광대역 어댑터 에러" msgid "Broadband Adapter MAC Address" msgstr "광대역 어댑터 맥 어드레스" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "넷플레이 세션들 둘러보기...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "버퍼 크기:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "버퍼 크기가 %1 로 변경되었습니다" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "버퍼:" @@ -2354,7 +2354,7 @@ msgstr "" msgid "C Stick" msgstr "C 스틱" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "서명 파일 생성... (&C)" @@ -2378,7 +2378,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "캐시된 인터프리터 (더 느림)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2466,11 +2466,11 @@ msgstr "게임이 여전히 구동되는 동안에 넷플레이 세션을 시작 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "취소" @@ -2555,7 +2555,7 @@ msgstr "중앙과 측정" msgid "Change &Disc" msgstr "디스크 변경(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "디스크 변경...(&D)" @@ -2577,7 +2577,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2605,7 +2605,7 @@ msgstr "" "이트합니다. 측면 이동은 없습니다, 단지 로테이트하고 카메라의 원본 지점까지 줌" "할 수 있을 겁니다." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "치트 변경은 게임을 재시작해야만 효과가 반영될 것입니다." @@ -2613,7 +2613,7 @@ msgstr "치트 변경은 게임을 재시작해야만 효과가 반영될 것입 msgid "Channel Partition (%1)" msgstr "채널 파티션 (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "입력된 캐릭터가 부적합합니다!" @@ -2625,7 +2625,7 @@ msgstr "대화" msgid "Cheat Code Editor" msgstr "치트 코드 에디터" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "치트 찾기" @@ -2633,7 +2633,7 @@ msgstr "치트 찾기" msgid "Cheats Manager" msgstr "치트 관리자" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "NAND 체크..." @@ -2673,11 +2673,11 @@ msgstr "열 파일 선택하기" msgid "Choose a file to open or create" msgstr "열거나 만들 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "우선 입력 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "차선 입력 파일 선택" @@ -2708,7 +2708,7 @@ msgstr "클래식 컨트롤러" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "지움" @@ -2716,7 +2716,7 @@ msgstr "지움" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "캐시 청소" @@ -2737,7 +2737,7 @@ msgstr "복제하고 코드 수정... (&E)" msgid "Close" msgstr "닫기" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "환경설정(&n)" @@ -2781,7 +2781,7 @@ msgstr "색 공간" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "두 서명 파일을 합치기... (&T)" @@ -2814,7 +2814,7 @@ msgstr "" "은 Wii U eShop 출시판에 비해 좋은 덤프일 가능성이 있습니다. 돌핀은 이것을 검" "증할 수 없습니다." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "시작하기 전에 쉐이더들 컴파일" @@ -2824,7 +2824,7 @@ msgstr "쉐이더들 컴파일하기" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "압축" @@ -2939,7 +2939,7 @@ msgstr "설정" msgid "Configure Controller" msgstr "컨트롤러 설정" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "돌핀 환경설정" @@ -2963,7 +2963,7 @@ msgstr "출력 설정" msgid "Confirm" msgstr "확정" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "백엔드 변경 확정" @@ -2971,7 +2971,7 @@ msgstr "백엔드 변경 확정" msgid "Confirm on Stop" msgstr "멈출 때 확인" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2982,15 +2982,15 @@ msgstr "확정" msgid "Connect" msgstr "연결" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "밸런스 보드 연결" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB 키보드 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Wii 리모트 %1 연결" @@ -3010,7 +3010,7 @@ msgstr "Wii 리모트 3 연결" msgid "Connect Wii Remote 4" msgstr "Wii 리모트 4 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Wii 리모트 연결" @@ -3153,8 +3153,8 @@ msgstr "수렴" msgid "Convergence:" msgstr "수렴:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "변환을 실패하였습니다." @@ -3162,9 +3162,9 @@ msgstr "변환을 실패하였습니다." msgid "Convert" msgstr "변환" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "파일을 폴더로 지금 변환" @@ -3172,9 +3172,9 @@ msgstr "파일을 폴더로 지금 변환" msgid "Convert File..." msgstr "파일 변환..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "폴더를 파일로 지금 변환" @@ -3196,8 +3196,8 @@ msgstr "" "와 비교해서 뚜렷하게 공간을 절약하지는 않습니다. 아무튼 계속 하시겠습니까?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "변환중..." @@ -3427,7 +3427,7 @@ msgstr "" "에뮬레이터 디렉토리를 이동한 후에 이 메시지를 받고 있나요?\n" "그렇다면, 옵션에서 메모리카드 위치를 재지정해야 합니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "중앙 서버를 찾을 수 없습니다" @@ -3443,13 +3443,13 @@ msgstr "파일을 읽을 수 없습니다." msgid "Country:" msgstr "국가:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "생성" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "무한대 파일 생성" @@ -3480,11 +3480,11 @@ msgstr "만든이:" msgid "Critical" msgstr "치명적" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "자르기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3496,11 +3496,11 @@ msgstr "" msgid "Crossfade" msgstr "크로스페이드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "CPU 상에서 정점들 도태" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3510,7 +3510,7 @@ msgstr "" "로우 통계에 효과가 있을지 모릅니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "현재 지역" @@ -3530,11 +3530,11 @@ msgstr "현재 게임" msgid "Current thread" msgstr "현재 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3542,15 +3542,15 @@ msgstr "" msgid "Custom Address Space" msgstr "커스텀 주소 공간" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3593,7 +3593,7 @@ msgstr "디제이 턴테이블" msgid "DK Bongos" msgstr "DK 봉고" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP 에뮬레이션 엔진" @@ -3601,15 +3601,15 @@ msgstr "DSP 에뮬레이션 엔진" msgid "DSP HLE (fast)" msgstr "DSP HLE (빠름)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (추천됨)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE 인터프리터 (매우 느림)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE 리컴파일러 (느림)" @@ -3684,7 +3684,7 @@ msgstr "데드 존" msgid "Debug" msgstr "디버그" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "디버깅" @@ -3694,7 +3694,7 @@ msgstr "디버깅" msgid "Decimal" msgstr "10 진수" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "디코딩 품질:" @@ -3741,7 +3741,7 @@ msgstr "기본" msgid "Default Config (Read Only)" msgstr "기본 환경 (읽기 전용)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "기본 장치" @@ -3757,7 +3757,7 @@ msgstr "기본 ISO:" msgid "Default thread" msgstr "기본 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB 캐시 무효화를 연기" @@ -3765,7 +3765,7 @@ msgstr "EFB 캐시 무효화를 연기" msgid "Defer EFB Copies to RAM" msgstr "EFB 램에 복사 연기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3816,7 +3816,7 @@ msgstr "깊이:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "설명" @@ -3865,7 +3865,7 @@ msgstr "떨어진" msgid "Detect" msgstr "감지" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "RSO 모듈 감지하기" @@ -3895,7 +3895,7 @@ msgstr "장치 설정" msgid "Device VID (e.g., 057e)" msgstr "장치 VID (예, 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "장치:" @@ -3903,7 +3903,7 @@ msgstr "장치:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 을 적합한 Riivolution XML 파일로 인식하지 못했습니다." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "활동이 없을 경우 5분후에 화면을 어둡게 합니다." @@ -3927,7 +3927,7 @@ msgstr "바운딩 박스 끄기" msgid "Disable Copy Filter" msgstr "복사 필터 비활성" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "EFB 비디오램 복사 비활성" @@ -3935,11 +3935,11 @@ msgstr "EFB 비디오램 복사 비활성" msgid "Disable Emulation Speed Limit" msgstr "에뮬레이션 속도 제한 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "패스트멤 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "패스트멤 투기장 비활성" @@ -3947,11 +3947,11 @@ msgstr "패스트멤 투기장 비활성" msgid "Disable Fog" msgstr "안개 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "JIT 캐시 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3969,7 +3969,7 @@ msgstr "" "도 모릅니다, 하지만 일부 게임은 깨질 것입니다.

잘 모" "르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
잘 모르겠으면, 체크 해제" "해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4345,7 +4345,7 @@ msgstr "" "User/Dump/Textures/로 EFB 복사의 내용을 덤프합니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4363,11 +4363,11 @@ msgstr "터보 버튼 떼기의 기간 (프레임)" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "네덜란드어" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "종료(&x)" @@ -4397,7 +4397,7 @@ msgstr "" "자신의 입력을 게임에 보냅니다.\n" "공정함과 최소의 지연이 가장 중요한 경쟁 게임들에 알맞음." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "빠른 메모리 업데이트" @@ -4471,7 +4471,7 @@ msgstr "내장형 프레임 버퍼 (EFB)" msgid "Empty" msgstr "비어있음" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "에뮬 쓰레드가 이미 구동중임" @@ -4479,7 +4479,7 @@ msgstr "에뮬 쓰레드가 이미 구동중임" msgid "Emulate Disc Speed" msgstr "디스크 속도 에뮬" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "무한대 기반 에뮬" @@ -4499,7 +4499,7 @@ msgstr "" "실제 하드웨어의 디스크 속도를 에뮬합니다. 비활성화는 불안정을 유발할 수 있습" "니다. 기본 값은 True" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "에뮬된 USB 장치들" @@ -4524,16 +4524,16 @@ msgstr "에뮬레이션 속도" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "활성" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API 검증 레이어 활성화" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "오디오 늘림 활성" @@ -4581,7 +4581,7 @@ msgstr "재 달성 활성화" msgid "Enable FPRF" msgstr "FPRF 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "그래픽 모드 활성화" @@ -4607,7 +4607,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4620,7 +4620,7 @@ msgstr "MMU 활성화" msgid "Enable Progress Notifications" msgstr "진척도 알림 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "프로그레시브 스캔 활성화" @@ -4629,11 +4629,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.org 통합 활성화" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "진동 활성화" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "화면 보호기 활성화" @@ -4653,11 +4653,11 @@ msgstr "비공식 달성 활성화" msgid "Enable Usage Statistics Reporting" msgstr "사용 통계 보고 활성화" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink 로 WiiConnect24 활성화" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "와이어프레임 활성화" @@ -4720,7 +4720,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4759,7 +4759,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4771,7 +4771,7 @@ msgstr "" "것은 Vulkan 백엔드 한정입니다.

잘 모르겠으면, 체크" "해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4797,7 +4797,7 @@ msgstr "" "로 여전히 SDR 로 랜더하는 점을 알아두세요.

잘 모르겠" "으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "에뮬레이션 스피드와 맞도록 오디오 늘리기를 활성화합니다." @@ -4828,7 +4828,7 @@ msgstr "" "름)

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4840,7 +4840,7 @@ msgstr "" "한 대체 제공자입니다.\n" "이곳에서 서비스 설명을 읽으세요: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4852,7 +4852,7 @@ msgstr "" "쉐이더용 디버그 부호를 활성화합니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4887,7 +4887,7 @@ msgstr "Enet이 초기화되지 않았습니다." #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "영어" @@ -4904,7 +4904,7 @@ msgstr "XLink Kai 클라이언트를 구동할 장치의 IP 주소 입력 :" msgid "Enter USB device ID" msgstr "USB 장치 ID 를 입력하세요" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "관찰할 주소 입력:" @@ -4928,7 +4928,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "RSO 모듈 주소를 입력:" @@ -4967,9 +4967,9 @@ msgstr "RSO 모듈 주소를 입력:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4982,24 +4982,24 @@ msgstr "RSO 모듈 주소를 입력:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5029,7 +5029,7 @@ msgstr "어댑터 열기 에러: %1" msgid "Error collecting save data!" msgstr "저장 데이터 수집 에러!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5141,12 +5141,12 @@ msgstr "{1} 파티션에 {0} 사용되지 않은 블락들에서 에러들이 msgid "Euphoria" msgstr "유포리아" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "유럽" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "전용 우버쉐이더" @@ -5190,11 +5190,11 @@ msgstr "표현식의 시작을 예상했습니다." msgid "Expected variable name." msgstr "변수 이름을 예상했습니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "실험적" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "모든 Wii 저장을 내보내기" @@ -5209,7 +5209,7 @@ msgstr "내보내기를 실패했습니다" msgid "Export Recording" msgstr "입력 기록 내보내기" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "입력 기록 내보내기..." @@ -5237,7 +5237,7 @@ msgstr ".gcs 로 내보내기... (&g)" msgid "Export as .&sav..." msgstr ".sav 로 내보내기... (&s)" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5265,7 +5265,7 @@ msgstr "외부의" msgid "External Frame Buffer (XFB)" msgstr "외부 프레임 버퍼 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "NAND 에서 증명서 추출" @@ -5303,7 +5303,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO 플레이어" @@ -5323,7 +5323,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "넷플레이 목록 : %1 에 이 세션을 추가하는데에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다." @@ -5343,7 +5343,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org 연결에 실패했습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "서버 연결에 실패했습니다: %1" @@ -5364,7 +5364,7 @@ msgstr "D3D12 글로벌 리소스 생성에 실패했습니다" msgid "Failed to create DXGI factory" msgstr "DXGI 팩토리 생성에 실패했습니다" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "무한대 파일 생성에 실패했습니다" @@ -5418,7 +5418,7 @@ msgstr "%1 저장 파일(들)로부터 %n 를 내보내기에 실패했습니다 msgid "Failed to export the following save files:" msgstr "다음 저장 파일들을 내보내기에 실패했습니다:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "NAND 에서 증명서 추출에 실패했습니다" @@ -5448,14 +5448,14 @@ msgstr "하나 이상의 D3D 부호 찾기에 실패했습니다" msgid "Failed to import \"%1\"." msgstr "\"%1\" 가져오기에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "저장 파일을 가져오기에 실패했습니다. 해당 게임을 한번 띄워주세요, 그리고 다" "시 시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5463,7 +5463,7 @@ msgstr "" "저장 파일 가져오기에 실패했습니다. 주어진 파일은 오염되었거나 적합한 Wii 저장" "이 아닙니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5496,7 +5496,7 @@ msgid "Failed to install pack: %1" msgstr "팩 설치에 실패했습니다: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "NAND 에 이 타이틀 설치에 실패했습니다." @@ -5508,8 +5508,8 @@ msgstr "" "포트 %1 듣기에 실패했습니다. 구동 중인 다른 넷플레이 서버 인스턴스가 있습니" "까?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "%1 에서 RSO 모듈 로드에 실패했습니다" @@ -5521,7 +5521,7 @@ msgstr "d3d11.dll 로드에 실패했습니다" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll 로드에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "맵 파일 '%1' 을 로드에 실패했습니다." @@ -5551,11 +5551,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "스카이랜더 수정에 실패했습니다!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5605,11 +5605,11 @@ msgstr "파일 열기에 실패했습니다." msgid "Failed to open server" msgstr "서버 열기에 실패했습니다" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "무한대 파일 열기에 실패했습니다!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5671,11 +5671,11 @@ msgstr "입력 파일 \"{0}\" 로 부터 읽기에 실패했습니다." msgid "Failed to read selected savefile(s) from memory card." msgstr "메모리 카드에서 선택된 저장파일(들)을 읽기에 실패했습니다." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "무한대 파일 읽기에 실패했습니다!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5740,27 +5740,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "FIFO 로그 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "경로 '%1' 에 코드 맵 저장을 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "서명 파일 '%1' 을 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "경로 '%1' 에 심볼 맵 저장을 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "서명 파일 '%1' 에 저장에 실패했습니다." -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5816,7 +5816,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "실패" @@ -5854,7 +5854,7 @@ msgstr "" msgid "Field of View" msgstr "시야" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "피겨 번호:" @@ -5868,7 +5868,7 @@ msgstr "파일 세부사항" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "파일 형식" @@ -5876,24 +5876,24 @@ msgstr "파일 형식" msgid "File Format:" msgstr "파일 형식:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "파일 정보" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "파일 이름" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "파일 경로" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "파일 크기" @@ -6020,7 +6020,7 @@ msgstr "" "설정 지시사항에 대해, " "이 페이지를 참고하세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "강제 16:9" @@ -6028,7 +6028,7 @@ msgstr "강제 16:9" msgid "Force 24-Bit Color" msgstr "강제 24-비트 컬러" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "강제 4:3" @@ -6060,11 +6060,11 @@ msgstr "강제 듣기 포트: " msgid "Force Nearest" msgstr "강제 Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "%1 가 VS 확장을 지원하지 않기 때문에 강제로 꺼졌습니다." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "%1 가 기하학 쉐이더를 지원하지 않기 때문에 강제로 켜졌습니다." @@ -6141,11 +6141,11 @@ msgstr "프레임 진행 속도 증가" msgid "Frame Advance Reset Speed" msgstr "프레임 진행 속도 리셋" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "프레임 덤핑" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "프레임 범위" @@ -6153,7 +6153,7 @@ msgstr "프레임 범위" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "프레임 덤프 이미지(들) '{0}' 가 이미 존재합니다. 덮어쓰시겠습니까?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "녹화할 프레임:" @@ -6207,7 +6207,7 @@ msgstr "자유로운 보기 토글" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "프랑스어" @@ -6226,8 +6226,8 @@ msgid "From" msgstr "From" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "에서:" @@ -6283,11 +6283,11 @@ msgstr "GBA 볼륨" msgid "GBA Window Size" msgstr "GBA 창 크기" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 롬이 \"%2\" 로 변경되었습니다" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1 롬이 비활성화되었습니다" @@ -6456,7 +6456,7 @@ msgid "Game Gamma:" msgstr "게임 감마:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "게임 ID" @@ -6469,7 +6469,7 @@ msgstr "게임 ID:" msgid "Game Status" msgstr "게임 상태" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "게임이 \"%1\" 로 변경되었습니다" @@ -6580,7 +6580,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 코드" @@ -6612,13 +6612,13 @@ msgstr "새로운 통계 식별자 생성" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "'%1' 에서 부호 이름들을 생성했습니다" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "독일어" @@ -6698,7 +6698,7 @@ msgstr "초록 왼쪽" msgid "Green Right" msgstr "초록 오른쪽" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "격자 보기" @@ -6780,7 +6780,7 @@ msgstr "숨기기" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "모두 숨기기" @@ -6804,11 +6804,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "높은" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "최고" @@ -6851,11 +6851,11 @@ msgstr "" "3+ 플레이어들과 함께하는 캐주얼 게임에 알맞음, 아마도 불안정하거나 높은 지연 " "연결상에서." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "호스트 입력 권한 꺼짐" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "호스트 입력 권한 켜짐" @@ -6881,7 +6881,7 @@ msgstr "단축키" msgid "Hotkeys Require Window Focus" msgstr "핫키들은 윈도우 포커스가 필요함" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "하이브리드 우버쉐이더" @@ -6945,7 +6945,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR 감도:" @@ -7040,7 +7040,7 @@ msgstr "" "체크 해제되면, 에뮬된 컨트롤러의 연결 상태는\n" "실제 기본 장비 (만일 있다면)의 연결 상태와 연결됩니다." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7051,7 +7051,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7105,7 +7105,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB 를 즉시 표시합니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7119,7 +7119,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND 백업 가져오기..." @@ -7134,7 +7134,7 @@ msgstr "가져오기를 실패했습니다" msgid "Import Save File(s)" msgstr "저장 파일(들)을 가져오기" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Wii 저장 가져오기" @@ -7241,16 +7241,16 @@ msgstr "증분 회전" msgid "Incremental Rotation (rad/sec)" msgstr "증분 회전 (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "무한대 피겨 생성자" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "무한대 매니저" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "무한대 오브젝트 (*.bin);;" @@ -7272,8 +7272,8 @@ msgstr "정보" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "정보" @@ -7286,11 +7286,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "입력" @@ -7316,7 +7316,7 @@ msgstr "" msgid "Insert &nop" msgstr "nop 삽입 (&n)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD 카드 삽입" @@ -7333,7 +7333,7 @@ msgstr "파티션 (%1) 설치" msgid "Install Update" msgstr "업데이트 설치" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WAD 설치..." @@ -7356,7 +7356,7 @@ msgstr "명령" msgid "Instruction Breakpoint" msgstr "명령 중단점" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "명령:" @@ -7450,7 +7450,7 @@ msgstr "AR 코드를 생성하는 동안 내부 에러." msgid "Interpreter (slowest)" msgstr "인터프리터 (가장 느림)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "인터프리터 코어" @@ -7475,7 +7475,7 @@ msgstr "부적합한 %1 이 제공됨: %2" msgid "Invalid Player ID" msgstr "부적합한 플레이어 아이디" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "부적합 RSO 모듈 주소: %1" @@ -7500,7 +7500,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "필드 \"%1\" 에 부적합한 입력" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "부적합한 입력이 제공됨" @@ -7536,13 +7536,13 @@ msgstr "부적합한 찾기 스트링 (짝수 길이 스트링만 지원됩니 msgid "Invalid title ID." msgstr "부적합한 타이틀 ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "부적합한 관찰 주소: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "이탈리아어" @@ -7555,11 +7555,11 @@ msgstr "이탈리아" msgid "Item" msgstr "아이템" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT 블록 연결 끄기" @@ -7567,47 +7567,47 @@ msgstr "JIT 블록 연결 끄기" msgid "JIT Blocks" msgstr "JIT 블록들" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT 분기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT 소수점 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT 정수 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT 로드스토어 부동 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT 로드스토어 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT 로드스토어 짝짓기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT 로드스토어 lXz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT 로드스토어 lbzx 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT 로드스토어 lwz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT 끄기 (JIT 코어)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT 짝짓기 끄기" @@ -7619,11 +7619,11 @@ msgstr "ARM64 용 JIT 리컴파일러 (권장)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "x86-64 용 JIT 리컴파일러 (권장)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT 레지스터 캐시 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT 시스템레지스터 끄기" @@ -7636,16 +7636,16 @@ msgstr "" "JIT 이 캐시 청소후에 코드 공간 찾기에 실패했습니다. 이것은 절대 일어나서는 안" "됩니다. 버그 트랙커에 이 사고를 보고해주세요. 돌핀은 지금 나갈 것입니다." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "일본" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "일본어" @@ -7706,12 +7706,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "플레이어 차기" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "한국" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "한국어" @@ -7758,23 +7758,23 @@ msgstr "마지막 위치:" msgid "Last reset:" msgstr "마지막 리셋:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "지연:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "지연: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "지연: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "지연: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "지연: ~80 ms" @@ -7782,7 +7782,7 @@ msgstr "지연: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "이 타이틀들을 런칭하면 이슈들도 고칠지도 모릅니다." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "리더보드" @@ -7878,11 +7878,11 @@ msgstr "왼쪽" msgid "Limit Chunked Upload Speed:" msgstr "덩어리된 업로드 스피드 제한:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "목록 세로줄" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "목록 보기" @@ -7894,15 +7894,15 @@ msgstr "듣기" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "배드 맵 파일 로드... (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "다른 맵 파일 로드... (&O)" @@ -7914,7 +7914,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "커스텀 텍스처 로드" @@ -7922,7 +7922,7 @@ msgstr "커스텀 텍스처 로드" msgid "Load File" msgstr "파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "게임큐브 메인 메뉴 로드" @@ -8032,19 +8032,19 @@ msgstr "슬롯 8 상태 로드" msgid "Load State Slot 9" msgstr "슬롯 9 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "파일에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "선택된 슬롯에서 상태를 로드합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "슬롯에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Wii 시스템 메뉴 %1 로드" @@ -8056,28 +8056,28 @@ msgstr "호스트의 저장 데이터 로드하고 쓰기" msgid "Load from Selected Slot" msgstr "선택된 슬롯에서 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "슬롯 %1 - %2 로부터 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "맵 파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "vWii 시스템 메뉴 %1 로드" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "로드..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "'%1' 에서 부호들이 로드되었습니다" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8087,7 +8087,7 @@ msgstr "" "game_id>/ 에서 커스텀 텍스처를 로드합니다.

잘 모" "르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8104,7 +8104,7 @@ msgstr "지역" msgid "Lock Mouse Cursor" msgstr "마우스 커서 가두기" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "잠긴" @@ -8130,7 +8130,7 @@ msgstr "로그 환경설정" msgid "Log In" msgstr "로그인" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "JIT 명령 커버리지 로그" @@ -8138,7 +8138,7 @@ msgstr "JIT 명령 커버리지 로그" msgid "Log Out" msgstr "로그아웃" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "렌더 타임을 파일에 로그" @@ -8154,7 +8154,7 @@ msgstr "로거 출력" msgid "Login Failed" msgstr "로그인 실패" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8164,20 +8164,20 @@ msgstr "" "핀의 성능을 측정하려면 이 기능을 사용하세요.

잘 모르" "겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "루프" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "넷플레이 서버 연결을 잃었습니다..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "낮은" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "최하" @@ -8237,7 +8237,7 @@ msgstr "슬롯 %1 에 스카이랜더가 있는지 확인하세요!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "제작사" @@ -8258,12 +8258,12 @@ msgstr "" "게임들을 망가뜨릴 것입니다.

잘 모르겠으면, 이것을 체" "크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "NAND 관리" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "수동 텍스처 샘플링" @@ -8279,11 +8279,11 @@ msgstr "마스크 롬" msgid "Match Found" msgstr "일치 발견" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "최대 버퍼:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "최대 버퍼 크기가 %1 로 변경되었습니다" @@ -8292,7 +8292,7 @@ msgstr "최대 버퍼 크기가 %1 로 변경되었습니다" msgid "Maximum tilt angle." msgstr "최대 틸트 각도." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Wii 메뉴와 일부 게임에서 느려짐을 유발할지도 모릅니다." @@ -8313,7 +8313,7 @@ msgstr "메모리 중단점" msgid "Memory Card" msgstr "메모리 카드" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "메모리 카드 관리자" @@ -8367,11 +8367,11 @@ msgstr "마이크" msgid "Mini" msgstr "미니" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "기타" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "기타 설정" @@ -8387,7 +8387,7 @@ msgstr "헤더안 빈 블락 숫자와 실제 사용되지 않은 블락수가 msgid "Mismatch between internal data structures." msgstr "내부 데이터 구조들끼리 맞지 않습니다." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8414,7 +8414,7 @@ msgstr "" msgid "Modifier" msgstr "수정자" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8433,8 +8433,8 @@ msgstr "슬롯 수정" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "발견된 모듈: %1" @@ -8442,7 +8442,7 @@ msgstr "발견된 모듈: %1" msgid "Money:" msgstr "돈:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "단일" @@ -8502,10 +8502,10 @@ msgstr "곱하는 수" msgid "N&o to All" msgstr "모두 아니오(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 체크" @@ -8514,7 +8514,7 @@ msgstr "NAND 체크" msgid "NKit Warning" msgstr "NKit 경고" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8545,7 +8545,7 @@ msgstr "" "니다.

만일 게임이 감마 값을 고를 수 있도록 허용한다면, 여기서 맞추세" "요.

모르겠으면, 2.35 로 두세요." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8763,7 +8763,7 @@ msgstr "에러가 없습니다." msgid "No extension selected." msgstr "선택된 확장이 없습니다." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "로드된 / 녹화된 파일이 없음." @@ -8771,7 +8771,7 @@ msgstr "로드된 / 녹화된 파일이 없음." msgid "No game is running." msgstr "구동중인 게임이 없습니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "구동중인 게임이 없습니다." @@ -8784,7 +8784,7 @@ msgstr "선택된 그래픽 모드가 없음" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "이슈가 감지되지 않았습니다." @@ -8832,8 +8832,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8987,7 +8987,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "오브젝트 범위" @@ -9012,7 +9012,7 @@ msgstr "켜기" msgid "On Movement" msgstr "움직일 때" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9037,7 +9037,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "온라인 문서(&D)" @@ -9045,7 +9045,7 @@ msgstr "온라인 문서(&D)" msgid "Only Show Collection" msgstr "컬렉션만 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9053,7 +9053,7 @@ msgstr "" "접두사를 가진 부호들만 덧붙입니다:\n" "(모든 부호들은 빈칸)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9072,7 +9072,7 @@ msgstr "열기" msgid "Open &Containing Folder" msgstr "담고 있는 폴더 열기(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "사용자 폴더 열기 (&U)" @@ -9081,7 +9081,7 @@ msgstr "사용자 폴더 열기 (&U)" msgid "Open Directory..." msgstr "디렉토리 열기..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "FIFO 로그 열기" @@ -9171,7 +9171,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9213,11 +9213,11 @@ msgstr "출력 리샘플링:" msgid "Overwritten" msgstr "덮어 쓰여진" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "입력 기록 플레이...(&l)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9231,11 +9231,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG 압축 레블" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG 압축 레블:" @@ -9323,7 +9323,7 @@ msgstr "일시정지" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "무비의 끝에서 일시정지" @@ -9372,7 +9372,7 @@ msgstr "바깥쪽 스윙 이동의 피크 가속도" msgid "Per-Pixel Lighting" msgstr "픽셀단위 광원" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "온라인 시스템 업데이트 하기" @@ -9380,15 +9380,15 @@ msgstr "온라인 시스템 업데이트 하기" msgid "Perform System Update" msgstr "시스텝 업데이트 하기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "성능 샘플 윈도우 (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "성능 샘플 윈도우 (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "성능 통계" @@ -9406,7 +9406,7 @@ msgstr "물리적 주소 공간" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "디버그 폰트 고르기" @@ -9423,7 +9423,7 @@ msgid "Pitch Up" msgstr "피치 올리기" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "플랫폼" @@ -9431,7 +9431,7 @@ msgstr "플랫폼" msgid "Play" msgstr " 실행 " -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "재생 / 녹화" @@ -9439,11 +9439,11 @@ msgstr "재생 / 녹화" msgid "Play Recording" msgstr "(입력) 기록 재생" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "플레이 셋/파워 디스크" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "재생 옵션" @@ -9451,27 +9451,27 @@ msgstr "재생 옵션" msgid "Player" msgstr "플레이어" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "플레이어 원" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "플레이어 원 능력 하나" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "플레이어 원 능력 둘" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "플레이어 투" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "플레이어 투 능력 하나" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "플레이어 투 능력 둘" @@ -9495,7 +9495,7 @@ msgstr "" "\"SyncOnSkipIdle\" 설정을\"True\" 로 바꾸세요! 현재 비활성화 되어있습니다, 이" "게 이 문제를 매우 잘 일어나게 합니다." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "표준 메모리 영역으로 찾기 시작하기 전에 게임을 시작하세요." @@ -9528,7 +9528,7 @@ msgstr "포트:" msgid "Portal Slots" msgstr "포탈 슬롯들" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "가능한 비동기 감지됨: %1 가 프레임 %2 에서 비동기화된 듯 합니다" @@ -9544,20 +9544,20 @@ msgstr "후-처리 효과:" msgid "Post-Processing Shader Configuration" msgstr "후-처리 쉐이더 환경설정" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "점/선 확장용 선호 VS" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "커스텀 텍스처 프리패치" @@ -9594,7 +9594,7 @@ msgstr "동기화 버튼을 누르세요" msgid "Pressure" msgstr "압력" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9673,11 +9673,11 @@ msgstr "프로파일" msgid "Program Counter" msgstr "프로그램 카운터" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "진행" @@ -9691,7 +9691,7 @@ msgstr "" msgid "Public" msgstr "공공" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "게임 목록 캐시 제거" @@ -9715,7 +9715,7 @@ msgstr "서비스의 품질 (QoS) 이 활성화될 수 없었습니다." msgid "Quality of Service (QoS) was successfully enabled." msgstr "서비스의 품질 (QoS) 이 성공적으로 활성화되었습니다." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "DPLII 디코더의 품질. 오디오 지연이 품질로 증가합니다." @@ -9747,11 +9747,11 @@ msgstr "R-아날로그" msgid "READY" msgstr "준비" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO 모듈" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO 자동-감지" @@ -9776,7 +9776,7 @@ msgstr "범위 끝: " msgid "Range Start: " msgstr "범위 시작: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "랭크 %1" @@ -9784,7 +9784,7 @@ msgstr "랭크 %1" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9843,7 +9843,7 @@ msgstr "" msgid "Recenter" msgstr "리센터" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "녹화" @@ -9855,11 +9855,11 @@ msgstr "입력 녹화" msgid "Recording" msgstr "녹화" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "녹화 옵션" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "녹화..." @@ -9929,7 +9929,7 @@ msgid "Refreshing..." msgstr "새로고침..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "지역" @@ -9962,7 +9962,7 @@ msgstr "나중에 다시 알려주기" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "제거" @@ -10002,11 +10002,11 @@ msgstr "부호 이름 바꾸기" msgid "Render Window" msgstr "렌더 창" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "메인 창에 렌더" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10041,7 +10041,7 @@ msgstr "리셋" msgid "Reset All" msgstr "모두 리셋" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "패닉 핸들러 무시를 리셋" @@ -10073,7 +10073,7 @@ msgstr "보기 리셋" msgid "Reset all saved Wii Remote pairings" msgstr "저장된 모든 Wii 리모트 페어링 재설정" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -10256,19 +10256,19 @@ msgstr "러시아" msgid "SD Card" msgstr "SD 카드" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD 카드 파일 크기:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD 카드 이미지 (*.raw);;모든 파일 (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD 카드 경로:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD 카드 설정" @@ -10276,7 +10276,7 @@ msgstr "SD 카드 설정" msgid "SD Root:" msgstr "SD 루트:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD 동기화 폴더:" @@ -10311,11 +10311,11 @@ msgstr "SSL 맥락" msgid "START" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "코드 저장 (&v)" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "상태 저장(&v) " @@ -10347,11 +10347,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "저장 내보내기" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "FIFO 로그 저장" @@ -10369,11 +10369,11 @@ msgstr "게임 저장" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "게임 저장 파일들 (*.sav);;모든 파일들 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "저장 가져오기" @@ -10385,7 +10385,7 @@ msgstr "가장 오래된 상태 저장" msgid "Save Preset" msgstr "프리셋 저장" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "녹화 파일을 다른 이름으로 저장" @@ -10435,23 +10435,23 @@ msgstr "슬롯 8 상태 저장" msgid "Save State Slot 9" msgstr "슬롯 9 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "파일에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "가장 오래된 슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "선택된 슬롯에 상태를 저장합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "심볼 맵 다른 이름으로 저장... (&A)" @@ -10471,11 +10471,11 @@ msgstr "프리셋 다른 이름으로 저장..." msgid "Save as..." msgstr "다른 이름으로 저장..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "합쳐진 출력 파일 다른 이름으로 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10489,11 +10489,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "롬과 같은 디렉토리에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "맵 파일 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "서명 파일 저장" @@ -10501,11 +10501,11 @@ msgstr "서명 파일 저장" msgid "Save to Selected Slot" msgstr "선택된 슬롯에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "슬롯 %1 - %2 에 저장" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "저장..." @@ -10535,7 +10535,7 @@ msgstr "스크린샷" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "찾기" @@ -10564,7 +10564,7 @@ msgstr "" "가상 주소 공간에서는 현재 검색할 수 없습니다. 게임을 잠시 구동하신 후에 다시 " "시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "명령에 대한 찾기" @@ -10572,7 +10572,7 @@ msgstr "명령에 대한 찾기" msgid "Search games..." msgstr "게임들 검색..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "명령 찾기" @@ -10617,11 +10617,11 @@ msgid "Select Dump Path" msgstr "덤프 경로 선택" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "내보내기 디렉토리 선택" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "피겨 파일 선택" @@ -10661,7 +10661,7 @@ msgstr "스카이랜더 컬렉션 선택" msgid "Select Skylander File" msgstr "스카이랜더 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "슬롯 %1 - %2 선택" @@ -10669,7 +10669,7 @@ msgstr "슬롯 %1 - %2 선택" msgid "Select State" msgstr "상태 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "상태 슬롯 선택" @@ -10736,7 +10736,7 @@ msgstr "디렉토리 선택" msgid "Select a File" msgstr "파일 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" @@ -10744,7 +10744,7 @@ msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" msgid "Select a Game" msgstr "게임 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "SD 카드 이미지 선택" @@ -10756,7 +10756,7 @@ msgstr "파일 선택" msgid "Select a game" msgstr "게임 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "NAND 에 설치할 타이틀 선택" @@ -10764,7 +10764,7 @@ msgstr "NAND 에 설치할 타이틀 선택" msgid "Select e-Reader Cards" msgstr "e-Reader 카드 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "RSO 모듈 주소 선택:" @@ -10781,7 +10781,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "키 파일 선택 (OTP/SEEPROM 덤프)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "저장 파일을 선택" @@ -10805,7 +10805,7 @@ msgstr "선택된 컨트롤러 프로파일이 존재하지 않습니다" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "선택된 게임은 게임 목록에 존재하지 않습니다!" @@ -10833,7 +10833,7 @@ msgstr "" "사용할 하드웨어 어댑터를 선택하세요.

잘 모르겠으면, " "처음 것을 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10870,7 +10870,7 @@ msgstr "" "른 유형의 3D입니다.

잘 모르겠으면, 끄기를 선택하세" "요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10892,7 +10892,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10912,7 +10912,7 @@ msgstr "" msgid "Send" msgstr "보내기" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "센서 바 위치:" @@ -10980,7 +10980,7 @@ msgstr "부호 끝 주소 설정" msgid "Set symbol size (%1):" msgstr "부호 크기 (%1) 설정:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10990,7 +10990,7 @@ msgstr "" "니다.\n" "모든 게임에서 작동하지는 않을 것입니다." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Wii 시스템 언어를 설정합니다." @@ -11002,7 +11002,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11025,7 +11025,7 @@ msgstr "" "가상 주소 공간에서 표준 MEM1 과 (Wii 상의) MEM2 매핑을 사용하여 검색을 설정합" "니다. 방대한 다수의 게임들에서 작동할 것입니다." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11039,7 +11039,7 @@ msgstr "Wii메모리설정: setting.txt 파일을 생성할 수 없음" msgid "Severity" msgstr "심각성" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "쉐이더 컴파일" @@ -11061,16 +11061,16 @@ msgstr "신간선" msgid "Shinkansen Controller" msgstr "신간선 컨트롤러" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "% 속도 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "로그 보기(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "툴바 표시(&T)" @@ -11078,11 +11078,11 @@ msgstr "툴바 표시(&T)" msgid "Show Active Title in Window Title" msgstr "창 제목에 활성 타이틀 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "모두 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "오스트레일리아" @@ -11095,7 +11095,7 @@ msgstr "디스코드에 현재 게임을 보여주기" msgid "Show Disabled Codes First" msgstr "비활성된 코드들 먼저 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11104,27 +11104,27 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "활성된 코드들 먼저 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "프레임 카운터 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "프레임 타임 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "프랑스" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "게임큐브" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "독일" @@ -11136,23 +11136,23 @@ msgstr "골프 모드 오버레이 보기" msgid "Show Infinity Base" msgstr "무한대 베이스 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "입력 표시 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "이탈리아" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "일본 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "한국" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "랙 카운터 보기" @@ -11160,19 +11160,19 @@ msgstr "랙 카운터 보기" msgid "Show Language:" msgstr "언어 보기:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "로그 환경설정(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "넷플레이 메시지 보기" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "넷플레이 핑 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "네덜란드" @@ -11180,7 +11180,7 @@ msgstr "네덜란드" msgid "Show On-Screen Display Messages" msgstr "온-스크린 메시지 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL (유럽 방식)" @@ -11189,27 +11189,27 @@ msgstr "PAL (유럽 방식)" msgid "Show PC" msgstr "PC 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "성능 그래프 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "플랫폼 표시" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "지역 표시" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "재녹화 횟수 보이기" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "러시아" @@ -11217,51 +11217,51 @@ msgstr "러시아" msgid "Show Skylanders Portal" msgstr "스카이랜더스 포탈 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "스페인" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "속도 색 보여주기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "통계 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "시스템 클럭 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "타이완" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "USA (미국 방식)" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "알려지지 않음" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "VBlank 타임 보기" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "세계" @@ -11274,7 +11274,7 @@ msgid "Show in Code" msgstr "코드로 보기" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "메모리로 보기" @@ -11302,7 +11302,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11311,7 +11311,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11355,7 +11355,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11365,7 +11365,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11375,7 +11375,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11385,7 +11385,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11404,13 +11404,13 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11434,7 +11434,7 @@ msgstr "옆방향 토글" msgid "Sideways Wii Remote" msgstr "Wii 리모트 옆으로" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "서명 데이터베이스" @@ -11458,7 +11458,7 @@ msgid "Signed Integer" msgstr "부호화 정수" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "간소화 중국어" @@ -11475,7 +11475,7 @@ msgstr "6 축" msgid "Size" msgstr "크기" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11487,7 +11487,7 @@ msgstr "" msgid "Skip" msgstr "스킵" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "그리기 스킵" @@ -11618,7 +11618,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "알파벳순으로 정렬" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "사운드:" @@ -11632,7 +11632,7 @@ msgstr "스페인" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "스페인어" @@ -11640,11 +11640,11 @@ msgstr "스페인어" msgid "Speaker Pan" msgstr "스피커 팬" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "스피커 볼륨:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "전문화된 (기본값)" @@ -11652,7 +11652,7 @@ msgstr "전문화된 (기본값)" msgid "Specific" msgstr "상세" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11701,7 +11701,7 @@ msgstr "표준 컨트롤러" msgid "Start" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "넷플레이 시작(&N)" @@ -11710,11 +11710,11 @@ msgstr "넷플레이 시작(&N)" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "새로운 치트 검색 시작" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "입력 기록 시작(&c)" @@ -11722,7 +11722,7 @@ msgstr "입력 기록 시작(&c)" msgid "Start Recording" msgstr "(입력) 기록 시작" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "전체화면으로 시작" @@ -11734,7 +11734,7 @@ msgstr "Riivolution 패치들로 시작" msgid "Start with Riivolution Patches..." msgstr "Riivolution 패치들로 시작..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "시작된 게임" @@ -11794,7 +11794,7 @@ msgstr "스텝 성공!" msgid "Stepping" msgstr "스텝핑" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "스테레오" @@ -11823,12 +11823,12 @@ msgid "Stick" msgstr "스틱" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "중지" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "입력 재생/기록 중지" @@ -11872,7 +11872,7 @@ msgstr "" "XFB 복사를 램(과 텍스처)에

잘 모르겠으면, 체크해 두" "세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "창으로 늘림" @@ -11911,8 +11911,8 @@ msgstr "스타일러스" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "성공" @@ -11939,7 +11939,7 @@ msgstr "%1 저장 파일(들)로부터 %n 를 성공적으로 내보냈습니다 msgid "Successfully exported save files" msgstr "저장 파일들을 성공적으로 내보냈습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "NAND 에서 증명서를 성공적으로 추출했습니다" @@ -11951,12 +11951,12 @@ msgstr "성공적으로 파일 압축을 풀었습니다." msgid "Successfully extracted system data." msgstr "성공적으로 시스템 데이터 압축을 풀었습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "저장 파일을 성공적으로 내보냈습니다." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "NAND 에 이 타이틀을 성공적으로 설치했습니다." @@ -11979,12 +11979,12 @@ msgstr "지원" msgid "Supported file formats" msgstr "지원하는 파일 포멧" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "SD 와 SDHC 를 지원합니다. 기본 크기는 128 MB 입니다." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "서라운드" @@ -12045,7 +12045,7 @@ msgstr "부호 이름:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "부호들" @@ -12073,7 +12073,7 @@ msgstr "" "듀얼 코어 모드에서 랜덤 프리징을 막을 수 있도록 GPU와 CPU 쓰레드들을 동기화합" "니다. (켬 = 호환성, 끔 = 빠름)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12092,11 +12092,11 @@ msgid "Synchronizing save data..." msgstr "저장 데이터를 동기화합니다..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "시스템 언어:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS 입력" @@ -12109,7 +12109,7 @@ msgstr "TAS 도구" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "태그" @@ -12127,7 +12127,7 @@ msgstr "꼬리" msgid "Taiwan" msgstr "타이완" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "스크린샷 찍기" @@ -12168,7 +12168,7 @@ msgstr "텍스처 캐시" msgid "Texture Cache Accuracy" msgstr "텍스처 캐시 정확도" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "텍스처 덤핑" @@ -12180,7 +12180,7 @@ msgstr "텍스처 필터링" msgid "Texture Filtering:" msgstr "텍스처 필터링:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "텍스처 포맷 오버레이" @@ -12223,7 +12223,7 @@ msgstr "IPL 파일이 알려진 좋은 덤프가 아닙니다. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "명작 파티션들이 빠져있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12231,7 +12231,7 @@ msgstr "" "NAND 는 고쳐질 수 없었습니다. 현재 데이터 백업이 권장됩니다 그리고 생생한 " "NAND 로 다시 시작하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND 가 고쳐졌습니다." @@ -12249,7 +12249,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12598,7 +12598,7 @@ msgstr "명시된 공통 키 인덱스는 {0} 입니다 하지만 {1} 이어야 msgid "The specified file \"{0}\" does not exist" msgstr "기술된 \"{0}\" 파일은 존재하지 않습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12662,7 +12662,7 @@ msgstr "업데이트 파티션이 빠져있습니다." msgid "The update partition is not at its normal position." msgstr "업데이트 파티션이 정상적 위치에 있지 않습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13039,7 +13039,7 @@ msgstr "시간 초과" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "타이틀" @@ -13048,12 +13048,12 @@ msgid "To" msgstr "To" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "까지:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "전체화면 토글(&F)" @@ -13142,7 +13142,7 @@ msgstr "" msgid "Toolbar" msgstr "툴바" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "위" @@ -13193,7 +13193,7 @@ msgid "Toy code:" msgstr "토이 코드:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "전통 중국어" @@ -13213,8 +13213,8 @@ msgstr "함정 마스터" msgid "Trap Team" msgstr "트랩 팀" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "횡단 에러" @@ -13297,7 +13297,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB 와이트리스트 에러" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13308,7 +13308,7 @@ msgstr "" "

모르겠으면, 이 모드를 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13320,7 +13320,7 @@ msgstr "" "로 버벅임을 겪었고 매우 강력한 GPU를 가지고 있지 않다면 이것을 사용하지 마세" "요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13333,7 +13333,7 @@ msgstr "" "의 경우 미약한 성능 타격을 얻는 반면 쉐이더 컴파일 버벅임을 완전제거합니다, " "하지만 결과는 비디오 드라이버 행동에 달려있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "RSO 모듈을 자동-감지할 수 없습니다" @@ -13404,11 +13404,11 @@ msgstr "압축풀린 GC/Wii 이미지들 (*.iso *.gcm)" msgid "Undead" msgstr "언데드" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "상태 로드 되돌리기" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "상태 저장 되돌리기" @@ -13428,7 +13428,7 @@ msgstr "" "WAD 를 언인스톨하면 NAND 에서 현재 설치된 이 타이틀 버전을 저장 데이터를 지우" "지 않고 제거하게 됩니다." -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "미국" @@ -13525,7 +13525,7 @@ msgid "Unknown(%1 %2).sky" msgstr "알려지지 않음(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "알려지지 않음(%1).bin" @@ -13541,7 +13541,7 @@ msgstr "롬 언로드" msgid "Unlock Cursor" msgstr "마우스 커서 풀기" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13584,7 +13584,7 @@ msgid "Up" msgstr "위쪽" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "업데이트" @@ -13657,7 +13657,7 @@ msgstr "모든 Wii 저장 데이터 사용" msgid "Use Built-In Database of Game Names" msgstr "내장된 데이터 베이스의 게임 이름 사용" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "비손실 코덱 (FFV1) 사용" @@ -13665,7 +13665,7 @@ msgstr "비손실 코덱 (FFV1) 사용" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 모드 (EuRGB60) 사용" @@ -13679,7 +13679,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13764,7 +13764,7 @@ msgstr "" "져올 수 있습니다.

모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13774,7 +13774,7 @@ msgstr "" "입니다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
그렇지 않고, 잘 모르겠으" "면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14065,7 +14065,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "경고" @@ -14184,7 +14184,7 @@ msgstr "웨스턴 (윈도우즈-1252)" msgid "Whammy" msgstr "훼미" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14196,7 +14196,7 @@ msgstr "" "를 포함합니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14208,7 +14208,7 @@ msgstr "" "를 포함합니다.

잘 모르겠으면, 체크해 두세요." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "와이트리스트된 USB 패스쓰루 장치들" @@ -14258,7 +14258,7 @@ msgstr "Wii 리모트 버튼" msgid "Wii Remote Gyroscope" msgstr "Wii 리모트 자이로스콥" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii 리모트 설정" @@ -14286,7 +14286,7 @@ msgstr "Wii 와 Wii 리모트" msgid "Wii data is not public yet" msgstr "Wii 데이터는 아직 공개가 아닙니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 저장 파일 (*.bin);;모든 파일 (*)" @@ -14294,7 +14294,7 @@ msgstr "Wii 저장 파일 (*.bin);;모든 파일 (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools 서명 MEGA 파일" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -14325,7 +14325,7 @@ msgstr "세계" msgid "Write" msgstr "쓰기" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -14374,11 +14374,11 @@ msgstr "잘못된 지역" msgid "Wrong revision" msgstr "잘못된 개정" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -14429,7 +14429,7 @@ msgstr "예" msgid "Yes to &All" msgstr "모두 예(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14438,7 +14438,7 @@ msgstr "" "%2 에 있는 파일의 내용을 %1 에 있는 폴더로 변환하려 합니다. 모든 현재 폴더의 " "내용이 삭제됩니다. 정말 계속 하시겠습니까?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14575,7 +14575,7 @@ msgstr "" "문제를 고치기 위해 지금 멈추시겠습니까?\n" "\"아니오\" 를 선택하면, 오디오가 혼란스러울지도 모릅니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ms.po b/Languages/po/ms.po index c085a4a62e..bf2e1b9708 100644 --- a/Languages/po/ms.po +++ b/Languages/po/ms.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: abuyop , 2018\n" "Language-Team: Malay (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -80,7 +80,7 @@ msgstr "" "%1\n" "mahu menyertai kumpulan anda." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -134,7 +134,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -169,7 +169,7 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "%1 tidak menyokong fitur ini." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -179,11 +179,11 @@ msgstr "" "%2 objek(s)\n" "Bingkai Semasa: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -191,11 +191,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -207,8 +207,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -225,7 +225,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -333,11 +333,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "Perih&al" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Tambah Titik Henti Ingatan" @@ -354,11 +354,11 @@ msgstr "&Tambah fungsi" msgid "&Add..." msgstr "T&ambah" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Tetapan &Audio" @@ -374,11 +374,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Titik Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -386,15 +386,15 @@ msgstr "" msgid "&Cancel" msgstr "&Batal" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Pengurus Menipu" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Kosongkan Simbol" @@ -402,7 +402,7 @@ msgstr "&Kosongkan Simbol" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "K&od" @@ -410,7 +410,7 @@ msgstr "K&od" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Tetapan Ka&walan" @@ -433,13 +433,13 @@ msgstr "Pa&dam" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "Pa&dam Pantauan" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -453,11 +453,11 @@ msgstr "&Sunting Kod..." msgid "&Edit..." msgstr "&Sunting..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulasi" @@ -478,40 +478,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Fon..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "B&ingkai Lanjutan" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Jana Simbol Dari" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Repositori &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Tetapan &Grafik" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Bantuan" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Tetapan Kekunci Pa&nas" @@ -531,7 +531,7 @@ msgstr "" msgid "&Import..." msgstr "&Import..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -543,7 +543,7 @@ msgstr "&Sisip blr" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -555,11 +555,11 @@ msgstr "&Bahasa:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Muat Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Muat Peta Simbol" @@ -569,11 +569,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -581,11 +581,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "Ce&reka" @@ -593,7 +593,7 @@ msgstr "Ce&reka" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -602,23 +602,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "B&uka..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "Pi&lihan" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Tampal Fungsi HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Jeda" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Main" @@ -626,7 +626,7 @@ msgstr "&Main" msgid "&Properties" msgstr "Si&fat" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "Mod Ba&ca-Sahaja" @@ -634,7 +634,7 @@ msgstr "Mod Ba&ca-Sahaja" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Daftar" @@ -652,11 +652,11 @@ msgid "&Rename symbol" msgstr "&Nama semula simbol" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "T&etap Semula" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -664,7 +664,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Simpan Peta Simbol" @@ -672,7 +672,7 @@ msgstr "&Simpan Peta Simbol" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -680,7 +680,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "&Had Kelajuan:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Henti" @@ -688,7 +688,7 @@ msgstr "&Henti" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -696,7 +696,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "Ala&tan" @@ -706,21 +706,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Lihat" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Tonton" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Laman Sesawang" @@ -732,11 +732,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' tidak ditemui, tiada nama simbol dijana" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' tidak ditemui, mengimbas fungsi umum sebagai ganti" @@ -784,7 +784,7 @@ msgstr "" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -850,7 +850,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -934,7 +934,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1035,7 +1035,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1141,7 +1141,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1183,8 +1183,8 @@ msgstr "Ketepatan:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Active" msgstr "Aktif" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1276,7 +1276,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1284,7 +1284,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Penyesuai Dikesan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Penyesuai" @@ -1341,7 +1341,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Tambah..." @@ -1355,7 +1355,7 @@ msgstr "Tambah..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Alamat" @@ -1559,7 +1559,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1599,7 +1599,7 @@ msgstr "Sebuah cakera tersisip dijangka tetapi tidak ditemui." msgid "Anaglyph" msgstr "Anaglif" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analisis" @@ -1625,15 +1625,15 @@ msgstr "Anti-Alias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1651,7 +1651,7 @@ msgstr "Tarikh Pemuatapl:" msgid "Apply" msgstr "Laksana" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1683,16 +1683,16 @@ msgstr "Anda pasti?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Nisbah Bidang:" @@ -1733,11 +1733,11 @@ msgstr "" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Bahagian Belakang Audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Tetapan Peregangan Audio" @@ -1753,7 +1753,7 @@ msgstr "" msgid "Authors" msgstr "Pengarang" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1774,7 +1774,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Auto-Laras Saiz Tetingkap" @@ -1782,15 +1782,15 @@ msgstr "Auto-Laras Saiz Tetingkap" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1838,19 +1838,19 @@ msgstr "Daftar BP" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Tetapan Bahagian Belakang" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Bahagian Belakang:" @@ -1893,7 +1893,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Sepanduk" @@ -1917,7 +1917,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Asas" @@ -1969,11 +1969,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1983,7 +1983,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2021,7 +2021,7 @@ msgstr "" "Mod passthrough Bluetooth dibenarkan, tetapi Dolphin dibina tanpa libusb. " "Mod passthrough tidak dapat digunakan." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "But untuk Dijeda" @@ -2033,11 +2033,11 @@ msgstr "Fail sandar NAND BootMii (*.bin);;Semua Fail (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fail kunci BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Skrin Penuh Tanpa Sempadan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Bawah" @@ -2214,20 +2214,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Saiz Penimbal:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Saiz penimbal berubah ke %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Penimbal:" @@ -2276,7 +2276,7 @@ msgstr "" msgid "C Stick" msgstr "Batang C" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2300,7 +2300,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Pentafsir bercache (lebih perlahan)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2380,11 +2380,11 @@ msgstr "Tidak dapat memulakan Sesi NetPlay ketika permainan masih berlangsung!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Batal" @@ -2470,7 +2470,7 @@ msgstr "" msgid "Change &Disc" msgstr "Ubah &Cakera" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Ubah &Cakera..." @@ -2492,7 +2492,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2510,7 +2510,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Pengubahanan tipu hanya berkesan bila permainan dimulakan semula." @@ -2518,7 +2518,7 @@ msgstr "Pengubahanan tipu hanya berkesan bila permainan dimulakan semula." msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2530,7 +2530,7 @@ msgstr "Sembang" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Gelitar Menipu" @@ -2538,7 +2538,7 @@ msgstr "Gelitar Menipu" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Periksa NAND..." @@ -2578,11 +2578,11 @@ msgstr "Pilih satu fail untuk dibuka" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2613,7 +2613,7 @@ msgstr "Pengawal Klasik" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Kosongkan" @@ -2621,7 +2621,7 @@ msgstr "Kosongkan" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2642,7 +2642,7 @@ msgstr "Klon dan &Sunting Kod..." msgid "Close" msgstr "Tutup" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ko&nfigurasi" @@ -2686,7 +2686,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2713,7 +2713,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2723,7 +2723,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "Konfigur" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfigur Dolphin" @@ -2862,7 +2862,7 @@ msgstr "Konfigur Output" msgid "Confirm" msgstr "Sahkan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2870,7 +2870,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Sahkan bil Berhenti" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2881,15 +2881,15 @@ msgstr "Pengesahan" msgid "Connect" msgstr "Sambung" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Sambung Papan Imbang" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Sambung Papan Kekunci USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Sambung Wii Remote %1" @@ -2909,7 +2909,7 @@ msgstr "Sambung Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Sambung Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Sambung Wii Remote" @@ -3037,8 +3037,8 @@ msgstr "" msgid "Convergence:" msgstr "Ketumpuan:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3046,9 +3046,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3056,9 +3056,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3078,8 +3078,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3277,7 +3277,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Tidak dapat cari pelayan pusat" @@ -3293,13 +3293,13 @@ msgstr "" msgid "Country:" msgstr "Negara:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3330,11 +3330,11 @@ msgstr "Pencipta:" msgid "Critical" msgstr "Kritikal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Kerat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3346,18 +3346,18 @@ msgstr "" msgid "Crossfade" msgstr "Resap Silang" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Wilayah Semasa" @@ -3377,11 +3377,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3389,15 +3389,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3440,7 +3440,7 @@ msgstr "" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Enjin Emulasi DSP" @@ -3448,15 +3448,15 @@ msgstr "Enjin Emulasi DSP" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3527,7 +3527,7 @@ msgstr "Zon Mati" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Menyahpepijat" @@ -3537,7 +3537,7 @@ msgstr "Menyahpepijat" msgid "Decimal" msgstr "Desimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3584,7 +3584,7 @@ msgstr "Lalai" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3600,7 +3600,7 @@ msgstr "ISO Lalai:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3608,7 +3608,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3654,7 +3654,7 @@ msgstr "Kedalaman:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Keterangan" @@ -3703,7 +3703,7 @@ msgstr "" msgid "Detect" msgstr "Kesan" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3733,7 +3733,7 @@ msgstr "Tetapan Peranti" msgid "Device VID (e.g., 057e)" msgstr "VID Peranti (iaitu, 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3741,7 +3741,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Malapkan skrin selepas lima minit ketidakaktifan." @@ -3765,7 +3765,7 @@ msgstr "Lumpuhkan Kotak Pembatas" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3773,11 +3773,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Lumpuhkan Had Kelajuan Emulasi" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3785,11 +3785,11 @@ msgstr "" msgid "Disable Fog" msgstr "Lumpuhkan Kabus" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3804,7 +3804,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4169,11 +4169,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Bahasa Belanda" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "Ke&luar" @@ -4197,7 +4197,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Kemaskini Ingatan Awal" @@ -4271,7 +4271,7 @@ msgstr "Penimbal Bingkai Terbenam (EFB)" msgid "Empty" msgstr "Kosong" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Bebenang Emu sudah berjalan" @@ -4279,7 +4279,7 @@ msgstr "Bebenang Emu sudah berjalan" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4297,7 +4297,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4319,16 +4319,16 @@ msgstr "Kelajuan Emulasi" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Benarkan Lapisan Pengesahan API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Benarkan Peregangan Audio" @@ -4376,7 +4376,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Benarkan FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4402,7 +4402,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4415,7 +4415,7 @@ msgstr "Benarkan MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Benarkan Imbas Progresif" @@ -4424,11 +4424,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Benarkan Rumble" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Benarkan Penyelamat Skrin" @@ -4448,11 +4448,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "Benarkan Pelaporan Statistik Penggunaan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Benarkan Bingkai Wayar" @@ -4508,7 +4508,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4543,7 +4543,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4551,7 +4551,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4568,7 +4568,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Benarkan peregangan audio untuk dipadankan dengan kelajuan emulasi." @@ -4596,7 +4596,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4604,7 +4604,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4612,7 +4612,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4641,7 +4641,7 @@ msgstr "Enet Tidak Diawalkan" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Bahasa Inggeris" @@ -4658,7 +4658,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Masukkan ID peranti USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4682,7 +4682,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Masukkan alamat modul RSO:" @@ -4721,9 +4721,9 @@ msgstr "Masukkan alamat modul RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4736,24 +4736,24 @@ msgstr "Masukkan alamat modul RSO:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4783,7 +4783,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4892,12 +4892,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eropah" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4941,11 +4941,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Eskport Semua Simpan Wii" @@ -4960,7 +4960,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksport Rakaman" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Eksport Rakaman..." @@ -4988,7 +4988,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5016,7 +5016,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Penimbal Bingkai Luaran (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Ekstrak Sijil dari NAND" @@ -5054,7 +5054,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Pemain FIFO" @@ -5072,7 +5072,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5092,7 +5092,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5113,7 +5113,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5167,7 +5167,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Gagal mengekstrak sijil dari NAND" @@ -5194,18 +5194,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5232,7 +5232,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Gagal memasang tajuk ini ke NAND." @@ -5244,8 +5244,8 @@ msgstr "" "Gagal mendengar pada port %1. Adakah kejadian lain pelayan NetPlay masih " "berjalan?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Gagal memuatkan modul RSO pada %1" @@ -5257,7 +5257,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5285,11 +5285,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5337,11 +5337,11 @@ msgstr "" msgid "Failed to open server" msgstr "Gagal membuka pelayan" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5400,11 +5400,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5465,27 +5465,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Gagal menyimpan log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5536,7 +5536,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5572,7 +5572,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5586,7 +5586,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5594,24 +5594,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Maklumat Fail" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nama Fail" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Saiz Fail" @@ -5731,7 +5731,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Paksa 16:9" @@ -5739,7 +5739,7 @@ msgstr "Paksa 16:9" msgid "Force 24-Bit Color" msgstr "Paksa warna 24-Bit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Paksa 4:3" @@ -5771,11 +5771,11 @@ msgstr "Paksa Port Dengar:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5849,11 +5849,11 @@ msgstr "Bingkai Lanjutan Tingkatkan Kelajuan" msgid "Frame Advance Reset Speed" msgstr "Bingkai Lanjutan Tetap Semula Kelajuan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Julat Bingkai" @@ -5861,7 +5861,7 @@ msgstr "Julat Bingkai" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Bingkai untuk Dirakam:" @@ -5912,7 +5912,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Perancis" @@ -5931,8 +5931,8 @@ msgid "From" msgstr "Dari" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Dari:" @@ -5988,11 +5988,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6136,7 +6136,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID Permainan" @@ -6149,7 +6149,7 @@ msgstr "ID Permainan:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Permainan bertukar ke \"%1\"" @@ -6257,7 +6257,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kod Gecko" @@ -6289,13 +6289,13 @@ msgstr "Jana satu Identiti Statistik Baharu" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Nama simbol terjana dari '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Jerman" @@ -6371,7 +6371,7 @@ msgstr "Hijau Kiri" msgid "Green Right" msgstr "Hijau Kanan" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Paparan Grid" @@ -6453,7 +6453,7 @@ msgstr "Sembunyi" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6477,11 +6477,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6520,11 +6520,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6550,7 +6550,7 @@ msgstr "Kekunci Panas" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6608,7 +6608,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Kepekaan IR:" @@ -6682,14 +6682,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6733,7 +6733,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Serta-Merta Hadirkan XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6742,7 +6742,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Import Sandar NAND BootMii..." @@ -6757,7 +6757,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Import Simpan Wii..." @@ -6860,16 +6860,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6889,8 +6889,8 @@ msgstr "Maklumat" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Maklumat" @@ -6903,11 +6903,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Input" @@ -6933,7 +6933,7 @@ msgstr "" msgid "Insert &nop" msgstr "Sisip &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sisip Kad SD" @@ -6950,7 +6950,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Pasang WAD..." @@ -6973,7 +6973,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "Titik Henti Arahan" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7059,7 +7059,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Pentafsir (paling perlahan)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7084,7 +7084,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "ID Pemain Tidak Sah" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Alamat modul RSO tidak sah: %1" @@ -7109,7 +7109,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Input tidak sah untuk medan \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Input tidak sah disediakan" @@ -7145,13 +7145,13 @@ msgstr "Parameter gelintar tidak sah (hanya panjang rentetan disokong)" msgid "Invalid title ID." msgstr "ID tajuk tidak sah." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Itali" @@ -7164,11 +7164,11 @@ msgstr "Itali" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7176,47 +7176,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7228,11 +7228,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7243,16 +7243,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Jepun" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Jepun" @@ -7312,12 +7312,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Tendang Pemain" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korea" @@ -7364,23 +7364,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Kependaman:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7388,7 +7388,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7478,11 +7478,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Lajur Senarai" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Paparan Senarai" @@ -7494,15 +7494,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Muat" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Muat Fail Peta &Lain..." @@ -7514,7 +7514,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Muat Tekstur Suai" @@ -7522,7 +7522,7 @@ msgstr "Muat Tekstur Suai" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Muat Menu Utama GameCube" @@ -7632,19 +7632,19 @@ msgstr "Muat Slot Keadaan 8" msgid "Load State Slot 9" msgstr "Muat Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Muat Keadaan dari Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Muat Keadaan dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Muat Keadaan dari Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Muat Menu Sistem Wii %1" @@ -7656,35 +7656,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Muat dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Muat dari Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Muat fail peta" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Muat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Simbol dimuatkan dari '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7698,7 +7698,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7724,7 +7724,7 @@ msgstr "Log Konfigurasi" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7732,7 +7732,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Log Masa Terap ke Fail" @@ -7748,27 +7748,27 @@ msgstr "Output Pengelog" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Sambung dengan pelayan NetPlay terputus..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7828,7 +7828,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Pembuat:" @@ -7845,12 +7845,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7866,11 +7866,11 @@ msgstr "" msgid "Match Found" msgstr "Padanan Ditemui" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7879,7 +7879,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Ia menyebabkan kelembapan dalam menu Wii dan sesetengah permainan." @@ -7900,7 +7900,7 @@ msgstr "Titik Henti Ingatan" msgid "Memory Card" msgstr "Kad Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7955,11 +7955,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Pelbagai" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Tetapan Pelbagai" @@ -7975,7 +7975,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7995,7 +7995,7 @@ msgstr "" msgid "Modifier" msgstr "Pengubahsuai" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8011,8 +8011,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -8020,7 +8020,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8078,10 +8078,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Semak NAND" @@ -8090,7 +8090,7 @@ msgstr "Semak NAND" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8117,7 +8117,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8327,7 +8327,7 @@ msgstr "" msgid "No extension selected." msgstr "Tiada sambungan dipilih" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Tiada fail dimuatkan / dirakam." @@ -8335,7 +8335,7 @@ msgstr "Tiada fail dimuatkan / dirakam." msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8348,7 +8348,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Tiada isu dikesan." @@ -8394,8 +8394,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Julat Objek" @@ -8569,7 +8569,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8591,7 +8591,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Dokumentasi Atas Talian" @@ -8599,13 +8599,13 @@ msgstr "&Dokumentasi Atas Talian" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8624,7 +8624,7 @@ msgstr "Buka" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8633,7 +8633,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Buka log FIFO" @@ -8723,7 +8723,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8765,11 +8765,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Ma&in Rakaman Input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8783,11 +8783,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8875,7 +8875,7 @@ msgstr "Jeda" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Jeda Dipenghujung Cereka" @@ -8920,7 +8920,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Pencahayaan Per-Piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Lakukan Kemaskini Sistem Atas-Talian" @@ -8928,15 +8928,15 @@ msgstr "Lakukan Kemaskini Sistem Atas-Talian" msgid "Perform System Update" msgstr "Lakukan Kemaskini Sistem" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8954,7 +8954,7 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Ambil satu fon nyahpepijat" @@ -8971,7 +8971,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platform" @@ -8979,7 +8979,7 @@ msgstr "Platform" msgid "Play" msgstr "Main" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8987,11 +8987,11 @@ msgstr "" msgid "Play Recording" msgstr "Main Rakaman" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Pilihan Main Balik" @@ -8999,27 +8999,27 @@ msgstr "Pilihan Main Balik" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9041,7 +9041,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9074,7 +9074,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Nyahsegerak berkemungkinan dikesan: %1 mungkin telah dinyahsegerak pada " @@ -9092,20 +9092,20 @@ msgstr "Kesan Pasca-Pemprosesan:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Dapatkan Tekstur Suai" @@ -9142,7 +9142,7 @@ msgstr "Tekan Butang Segerak" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9211,11 +9211,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "Kiraan Program" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9229,7 +9229,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9253,7 +9253,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9285,11 +9285,11 @@ msgstr "Analog-R" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "Modul RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9314,7 +9314,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9322,7 +9322,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9381,7 +9381,7 @@ msgstr "" msgid "Recenter" msgstr "Tengahkan semula" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Rakam" @@ -9393,11 +9393,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Pilihan Rakaman" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Merakam..." @@ -9461,7 +9461,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Wilayah" @@ -9494,7 +9494,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Buang" @@ -9531,11 +9531,11 @@ msgstr "Nama semula simbol" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Terap ke Tetingkap Utama" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9568,7 +9568,7 @@ msgstr "Tetap Semula" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9600,7 +9600,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Tetap semula semua perpasangan Wii Remote tersimpan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9779,19 +9779,19 @@ msgstr "Rusia" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Laluan Kad SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9799,7 +9799,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9834,11 +9834,11 @@ msgstr "" msgid "START" msgstr "MULA" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Keadaan S&impan" @@ -9870,11 +9870,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Simpan log FIFO" @@ -9892,11 +9892,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9908,7 +9908,7 @@ msgstr "Simpan Keadaan Terlama" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9958,23 +9958,23 @@ msgstr "Simpan Slot Keadaan 8" msgid "Save State Slot 9" msgstr "Simpan Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Simpan Keadaan ke Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Simpan Keadaan ke Slot Terlama" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Simpan Keadaan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Simpan Keadaan ke Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Simpan Peta Simbol Sebag&ai..." @@ -9994,11 +9994,11 @@ msgstr "" msgid "Save as..." msgstr "Simpan sebagai..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10009,11 +10009,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Simpan fail peta" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Simpan fail tandatangan" @@ -10021,11 +10021,11 @@ msgstr "Simpan fail tandatangan" msgid "Save to Selected Slot" msgstr "Simpan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Simpan ke Slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Simpan..." @@ -10057,7 +10057,7 @@ msgstr "CkpSkrin" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Gelintar" @@ -10084,7 +10084,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10092,7 +10092,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10137,11 +10137,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10181,7 +10181,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Pilih Slot %1 - %2" @@ -10189,7 +10189,7 @@ msgstr "Pilih Slot %1 - %2" msgid "Select State" msgstr "Pilih Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Pilih Slot Keadaan" @@ -10256,7 +10256,7 @@ msgstr "Pilih satu Direktori" msgid "Select a File" msgstr "Pilih satu Fail" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10264,7 +10264,7 @@ msgstr "" msgid "Select a Game" msgstr "Pilih satu Permainan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10276,7 +10276,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Pilih satu tajuk untuk dipasang ke dalam NAND" @@ -10284,7 +10284,7 @@ msgstr "Pilih satu tajuk untuk dipasang ke dalam NAND" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10301,7 +10301,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Pilih fail kunci (longgok OTP/SEEPROM)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Pilih fail simpan" @@ -10325,7 +10325,7 @@ msgstr "Profil pengawal terpilih tidak wujud" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10349,7 +10349,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10379,7 +10379,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10401,7 +10401,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10415,7 +10415,7 @@ msgstr "" msgid "Send" msgstr "Hantar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Kedudukan Palang Penderia:" @@ -10480,7 +10480,7 @@ msgstr "Tetapkan alamat akhir simbol" msgid "Set symbol size (%1):" msgstr "Tetapkan saiz simbol (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10490,7 +10490,7 @@ msgstr "" "permainan PAL.\n" "Mungkin tidak berfungsi untk semua permainan." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Tetapkan bahasa sistem Wii." @@ -10502,7 +10502,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10521,7 +10521,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10535,7 +10535,7 @@ msgstr "SetupWiiMemory: Tidak dapat cipta fail setting.txt" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10557,16 +10557,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Tunjuk &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Tunjuk Palang Ala&t" @@ -10574,11 +10574,11 @@ msgstr "Tunjuk Palang Ala&t" msgid "Show Active Title in Window Title" msgstr "Tunjuk Tajuk Aktif dalam Tajuk Tetingkap" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Tunjuk Australia" @@ -10591,7 +10591,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Tunjuk ELF/DOL" @@ -10600,27 +10600,27 @@ msgstr "Tunjuk ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Tunjuk FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Tunjuk Kiraan Bingkai" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Tunjuk Perancis" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Tunjuk GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Tunjuk Jerman" @@ -10632,23 +10632,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Tunjuk Paparan Input" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Tunjuk Itali" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Tunjuk Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Tunjuk Kiraan Lengah" @@ -10656,19 +10656,19 @@ msgstr "Tunjuk Kiraan Lengah" msgid "Show Language:" msgstr "Tunjuk Bahasa:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Tunjuk K&onfigurasi Log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Tunjuk Mesej NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Tunjuk Ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Tunjuk Belanda" @@ -10676,7 +10676,7 @@ msgstr "Tunjuk Belanda" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Tunjuk PAL" @@ -10685,27 +10685,27 @@ msgstr "Tunjuk PAL" msgid "Show PC" msgstr "Tunjuk PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Tunjuk Platform" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Tunjuk Wilayah" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Tunjuk Rusia" @@ -10713,51 +10713,51 @@ msgstr "Tunjuk Rusia" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Tunjuk Sepanyol" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Tunjuk Statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Tunjuk Jam Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Tunjuk Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Tunjuk USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Tunjuk Tidak Diketahui" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Tunjuk WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Tunjuk Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Tunjuk Dunia" @@ -10770,7 +10770,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10798,13 +10798,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10843,47 +10843,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10905,7 +10905,7 @@ msgstr "Togol Sisi" msgid "Sideways Wii Remote" msgstr "Wii Remote Sisi" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Pangkalan Data Tandatangan" @@ -10929,7 +10929,7 @@ msgid "Signed Integer" msgstr "Integer Bertanda" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Cina Ringkas" @@ -10946,7 +10946,7 @@ msgstr "" msgid "Size" msgstr "Saiz" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10958,7 +10958,7 @@ msgstr "" msgid "Skip" msgstr "Langkau" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11075,7 +11075,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11089,7 +11089,7 @@ msgstr "Sepanyol" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Sepanyol" @@ -11097,11 +11097,11 @@ msgstr "Sepanyol" msgid "Speaker Pan" msgstr "Lata Pembesar Suara" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volum Pembesar Suara:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11109,7 +11109,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11151,7 +11151,7 @@ msgstr "Pengawal Piawai" msgid "Start" msgstr "Mula" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Mula &NetPlay..." @@ -11160,11 +11160,11 @@ msgstr "Mula &NetPlay..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Mula Me&rakam Input" @@ -11172,7 +11172,7 @@ msgstr "Mula Me&rakam Input" msgid "Start Recording" msgstr "Mula Rakaman" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11184,7 +11184,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Permainan bermula" @@ -11244,7 +11244,7 @@ msgstr "Langkah berjaya!" msgid "Stepping" msgstr "Melangkah" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11273,12 +11273,12 @@ msgid "Stick" msgstr "Bidak" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Henti Memainkan/Merakam Input" @@ -11314,7 +11314,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Regang ke Tetingkap" @@ -11353,8 +11353,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Berjaya" @@ -11381,7 +11381,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Berjaya mengimport fail simpan" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Berjaya mengekstrak sijil dari NAND" @@ -11393,12 +11393,12 @@ msgstr "Berjaya mengekstrak fail." msgid "Successfully extracted system data." msgstr "Berjaya mengekstrak data sistem." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Berjaya memasang tajuk ini ke NAND." @@ -11421,12 +11421,12 @@ msgstr "Sokongan" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11484,7 +11484,7 @@ msgstr "Nama simbol:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Simbol" @@ -11510,7 +11510,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11529,11 +11529,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Bahasa Sistem:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Input TAS" @@ -11546,7 +11546,7 @@ msgstr "Alatan TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11564,7 +11564,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Ambil Cekupan Skrin" @@ -11603,7 +11603,7 @@ msgstr "Tekstur Cache" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11615,7 +11615,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Tindihan Format Tekstur" @@ -11652,7 +11652,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11660,7 +11660,7 @@ msgstr "" "NAND tidak dapat dibaiki. Adalah disarankan menyandar data semasa anda dan " "mula kembali dengan NAND yang baharu." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND telah dibaiki." @@ -11675,7 +11675,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11973,7 +11973,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12033,7 +12033,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12367,7 +12367,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Tajuk" @@ -12376,12 +12376,12 @@ msgid "To" msgstr "Ke" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Ke:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Togol &Skrin Penuh" @@ -12470,7 +12470,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Atas" @@ -12521,7 +12521,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Cina Tradisional" @@ -12541,8 +12541,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Ralat Traversal" @@ -12623,14 +12623,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12638,7 +12638,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12647,7 +12647,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12714,11 +12714,11 @@ msgstr "Imej GC/Wii Tak Mampat (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Buat Asal Muat Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Buat Asal Keadaan Simpan" @@ -12738,7 +12738,7 @@ msgstr "" "Menyahpasang WAD akan membuang versi terpasang semasa bagi tajuk ini dari " "NAND tanpa memadam data simpannya. Mahu teruskan?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Amerika Syarikat" @@ -12830,7 +12830,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12846,7 +12846,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12889,7 +12889,7 @@ msgid "Up" msgstr "Naik" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Kemaskini" @@ -12962,7 +12962,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Guna Pangkalan Data Terbina-Dalam Nama Permainan" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12970,7 +12970,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Guna Mod PAL60 (EuRGB60)" @@ -12984,7 +12984,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13054,14 +13054,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13324,7 +13324,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Amaran" @@ -13413,7 +13413,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13421,7 +13421,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13429,7 +13429,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Peranti Menerusi USB Senarai Putih" @@ -13479,7 +13479,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Tetapan Kawalan Jauh Wii" @@ -13507,7 +13507,7 @@ msgstr "Wii dan Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fail simpan Wii (*.bin);;Semua Fail (*)" @@ -13515,7 +13515,7 @@ msgstr "Fail simpan Wii (*.bin);;Semua Fail (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13546,7 +13546,7 @@ msgstr "Dunia" msgid "Write" msgstr "Tulis" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13595,11 +13595,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13650,14 +13650,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13758,7 +13758,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/nb.po b/Languages/po/nb.po index 878dec49fd..5e331bc5d6 100644 --- a/Languages/po/nb.po +++ b/Languages/po/nb.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" @@ -95,7 +95,7 @@ msgstr "" "%1\n" "vil bli med i din gruppe." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -149,7 +149,7 @@ msgstr "%1 (tregt)" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -184,7 +184,7 @@ msgstr "%1 støtter ikke denne funksjonen på ditt system." msgid "%1 doesn't support this feature." msgstr "%1 støtter ikke denne funksjonen." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -194,11 +194,11 @@ msgstr "" "%2 objekt(er)\n" "Nåværende bilderute: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 ble med" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 har forlatt" @@ -206,11 +206,11 @@ msgstr "%1 har forlatt" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 golfer nå" @@ -222,8 +222,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -240,7 +240,7 @@ msgstr "%1 økt funnet" msgid "%1 sessions found" msgstr "%1 økter funnet" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Om" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Legg til minnestoppunkt" @@ -369,11 +369,11 @@ msgstr "&Legg til funksjon" msgid "&Add..." msgstr "&Legg til..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Lyd-innstillinger" @@ -389,11 +389,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Brytepunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Feilsporer" @@ -401,15 +401,15 @@ msgstr "&Feilsporer" msgid "&Cancel" msgstr "&Avbryt" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Se etter oppdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Tøm symboler" @@ -417,7 +417,7 @@ msgstr "&Tøm symboler" msgid "&Clone..." msgstr "&Dupliser..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Kode" @@ -425,7 +425,7 @@ msgstr "&Kode" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Kontroller-innstillinger" @@ -448,13 +448,13 @@ msgstr "&Slett" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Slett Overvåker" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -468,11 +468,11 @@ msgstr "&Rediger kode…" msgid "&Edit..." msgstr "&Rediger..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Løs ut disk" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulering" @@ -493,40 +493,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Skrift…" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Bilde for bilde" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "%Generer symboler fra" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub-pakkebrønn" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafikkinnstillinger" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Hjelp" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Innstillinger for &hurtigtaster" @@ -546,7 +546,7 @@ msgstr "" msgid "&Import..." msgstr "&Importer..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -558,7 +558,7 @@ msgstr "&Sett inn blr" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -570,11 +570,11 @@ msgstr "&Språk:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "Åpne hurtiglagring" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Last symbolkart" @@ -584,11 +584,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Lås fast moduler" @@ -596,11 +596,11 @@ msgstr "&Lås fast moduler" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Film" @@ -608,7 +608,7 @@ msgstr "&Film" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Nettverk" @@ -617,23 +617,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Åpne…" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Innstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Patch HLE-funksjoner" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Spill" @@ -641,7 +641,7 @@ msgstr "&Spill" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Skrivebeskyttet modus" @@ -649,7 +649,7 @@ msgstr "&Skrivebeskyttet modus" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registere" @@ -667,11 +667,11 @@ msgid "&Rename symbol" msgstr "&Gi symbol nytt navn" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Tilbakestill" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Ressurspakke-behandler" @@ -679,7 +679,7 @@ msgstr "&Ressurspakke-behandler" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Lagre symbolkart" @@ -687,7 +687,7 @@ msgstr "&Lagre symbolkart" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -695,7 +695,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "&Fartsgrense:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "S&topp" @@ -703,7 +703,7 @@ msgstr "S&topp" msgid "&Theme:" msgstr "&Drakt:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Tråder" @@ -711,7 +711,7 @@ msgstr "&Tråder" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Verktøy" @@ -721,21 +721,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "Vi&s" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Se" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Nettside" @@ -747,11 +747,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' ikke funnet, ingen symbolnavn generert" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' ikke funnet, scanner for vanlige funksjoner istedet" @@ -799,7 +799,7 @@ msgstr "- Trekk fra" msgid "--> %1" msgstr "→ %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -865,7 +865,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -949,7 +949,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokker)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1050,7 +1050,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1170,7 +1170,7 @@ msgstr "" "Wiimote-støtte i NetPlay er eksperimentell, og kan muligens fungere feil.\n" "Benytt med din egen risiko.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR-kode" @@ -1212,8 +1212,8 @@ msgstr "Nøyaktighet:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1293,7 +1293,7 @@ msgstr "Aktiver NetPlay-chat" msgid "Active" msgstr "Aktiv" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1305,7 +1305,7 @@ msgstr "" msgid "Active threads" msgstr "Aktive tråder" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1313,7 +1313,7 @@ msgstr "" msgid "Adapter Detected" msgstr "Adapter oppdaget" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1370,7 +1370,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Legg til…" @@ -1384,7 +1384,7 @@ msgstr "Legg til…" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adresse" @@ -1587,7 +1587,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "Tillat rapportering av brukerstatistikk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Tillat lagringer til SD-kort" @@ -1627,7 +1627,7 @@ msgstr "En innsatt plate var forventet, men ble ikke funnet." msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analyser" @@ -1653,15 +1653,15 @@ msgstr "Kantutjevning:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Legg signatur til" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "Føy på til &eksisterende signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "Legg p&å Singaturfil..." @@ -1679,7 +1679,7 @@ msgstr "Programinnlaster-dato:" msgid "Apply" msgstr "Bruk" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Bruk signaturfil" @@ -1711,16 +1711,16 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Billedforhold:" @@ -1761,11 +1761,11 @@ msgstr "Tilknytt MotionPlus" msgid "Audio" msgstr "Lyd-CD" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Lyd-bakende:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Innstillinger for lydstrekking" @@ -1781,7 +1781,7 @@ msgstr "Forfatter" msgid "Authors" msgstr "Forfattere" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1806,7 +1806,7 @@ msgstr "" "\n" "Vennligst velg en spesifikk intern oppløsning." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Automatisk justering av vindusstørrelse" @@ -1814,15 +1814,15 @@ msgstr "Automatisk justering av vindusstørrelse" msgid "Auto-Hide" msgstr "Gjem automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "Vil du auto-oppdage RSO-moduler?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1870,19 +1870,19 @@ msgstr "BP-register " msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Bakende-innstillinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Motor:" @@ -1925,7 +1925,7 @@ msgstr "Dårlig verdi angitt." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -1949,7 +1949,7 @@ msgstr "" msgid "Base priority" msgstr "Grunnprioritet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Grunnleggende" @@ -2001,11 +2001,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitfrekvens (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2015,7 +2015,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blokkstørrelse" @@ -2053,7 +2053,7 @@ msgstr "" "Blåtann gjennomstrømningsmodus er aktivert, men Dolphin ble bygd uten " "Libusdb. Gjennomstrømmingsmodus kan ikke benyttes." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Start opp i pausemodus" @@ -2065,11 +2065,11 @@ msgstr "BootMii NAND sikkerhetskopifil (*.bin);;Alle filer (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii nøkkelfil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Rammefri fullskjermsvisning" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Nede" @@ -2246,20 +2246,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Utforsk &NetPlay-sesjoner..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Hurtiglagerstørrelse:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Bufferstørrelse endret til %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Mellomlager:" @@ -2308,7 +2308,7 @@ msgstr "" msgid "C Stick" msgstr "C-joystick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "Lag Signatu&rfil..." @@ -2332,7 +2332,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Hurtiglagret fortolker (tregere)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2412,11 +2412,11 @@ msgstr "Kan ikke starte en NetPlay-økt mens et spill er aktivt!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Avbryt" @@ -2502,7 +2502,7 @@ msgstr "Sentrer og kalibrer" msgid "Change &Disc" msgstr "Endre &disk" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Endre &disk…" @@ -2524,7 +2524,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2542,7 +2542,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Endring av juksekode vil kun tre i kraft etter at spillet er startet på nytt." @@ -2551,7 +2551,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2563,7 +2563,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Juksekode-redigeringsverktøy" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Juksekodesøk" @@ -2571,7 +2571,7 @@ msgstr "Juksekodesøk" msgid "Cheats Manager" msgstr "Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Sjekk NAND..." @@ -2611,11 +2611,11 @@ msgstr "Velg en fil å åpne" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Velg prioritetsinputfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Velg andre input fil" @@ -2646,7 +2646,7 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Nullstill" @@ -2654,7 +2654,7 @@ msgstr "Nullstill" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Tøm mellomlager" @@ -2675,7 +2675,7 @@ msgstr "Klon og &rediger kode..." msgid "Close" msgstr "Lukk" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "&Oppsett" @@ -2719,7 +2719,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Kombiner &to signaturfiler..." @@ -2746,7 +2746,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Kompiler shadere før start" @@ -2756,7 +2756,7 @@ msgstr "Komplierer skygger" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Kompresjon" @@ -2871,7 +2871,7 @@ msgstr "Sett opp" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Sett opp Dolphin" @@ -2895,7 +2895,7 @@ msgstr "Sett opp utdata" msgid "Confirm" msgstr "Bekreft" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Bekreft endring av backend" @@ -2903,7 +2903,7 @@ msgstr "Bekreft endring av backend" msgid "Confirm on Stop" msgstr "Bekreft ved stans" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2914,15 +2914,15 @@ msgstr "Bekreftelse" msgid "Connect" msgstr "Koble til" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Koble til balansebrett" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Koble til USB-tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Koble til Wii Remote %1" @@ -2942,7 +2942,7 @@ msgstr "Koble til Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Koble til Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Koble til Wii Remote-er" @@ -3076,8 +3076,8 @@ msgstr "" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3085,9 +3085,9 @@ msgstr "" msgid "Convert" msgstr "Konverter" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3095,9 +3095,9 @@ msgstr "" msgid "Convert File..." msgstr "Konverter fil …" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3117,8 +3117,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konverterer…" @@ -3316,7 +3316,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Kunne ikke finne sentral tjener" @@ -3332,13 +3332,13 @@ msgstr "Kunne ikke lese fil." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3369,11 +3369,11 @@ msgstr "Skaper:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Beskjær" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3385,18 +3385,18 @@ msgstr "" msgid "Crossfade" msgstr "Kryssutfasing" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Nåværende region" @@ -3416,11 +3416,11 @@ msgstr "Nåværende spill" msgid "Current thread" msgstr "Nåværende tråd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3428,15 +3428,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3479,7 +3479,7 @@ msgstr "DJ dreiebord" msgid "DK Bongos" msgstr "DK-bongotrommer" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP-emuleringsmotor" @@ -3487,15 +3487,15 @@ msgstr "DSP-emuleringsmotor" msgid "DSP HLE (fast)" msgstr "DSP HLE (raskt)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3566,7 +3566,7 @@ msgstr "Dødsone" msgid "Debug" msgstr "Feilsøk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Feilretting" @@ -3576,7 +3576,7 @@ msgstr "Feilretting" msgid "Decimal" msgstr "Desimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Dekodingskvalitet:" @@ -3623,7 +3623,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "Standard Konfigurasjon (Kun Lesing)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Standard enhet" @@ -3639,7 +3639,7 @@ msgstr "Forvalgt ISO-fil:" msgid "Default thread" msgstr "Standardtråd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Utsett EFB cahce-invalidering" @@ -3647,7 +3647,7 @@ msgstr "Utsett EFB cahce-invalidering" msgid "Defer EFB Copies to RAM" msgstr "Utsett EFB Kopier til RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3693,7 +3693,7 @@ msgstr "Dybde:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" @@ -3742,7 +3742,7 @@ msgstr "Frakoblet" msgid "Detect" msgstr "Finn automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3772,7 +3772,7 @@ msgstr "Enhetsinnstillinger" msgid "Device VID (e.g., 057e)" msgstr "Enhets-VID (f.eks 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Enhet:" @@ -3780,7 +3780,7 @@ msgstr "Enhet:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Demp skjermbelysning etter fem minutters inaktivitet." @@ -3804,7 +3804,7 @@ msgstr "Skru av bounding-box-kalkulasjoner" msgid "Disable Copy Filter" msgstr "Slå av Kopieringsfilter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Slå av EFB VRAM Kopier" @@ -3812,11 +3812,11 @@ msgstr "Slå av EFB VRAM Kopier" msgid "Disable Emulation Speed Limit" msgstr "Skru av hastighetsbegrensning av emulering" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3824,11 +3824,11 @@ msgstr "" msgid "Disable Fog" msgstr "Skru av tåke" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Deaktiver JIT-lager" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3843,7 +3843,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4209,11 +4209,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nederlandsk" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Avslutt" @@ -4237,7 +4237,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Tidlige minneoppdateringer" @@ -4311,7 +4311,7 @@ msgstr "Eksternt bildemellomlager (EFB)" msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emulator-CPU-tråden kjører allerede" @@ -4319,7 +4319,7 @@ msgstr "Emulator-CPU-tråden kjører allerede" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4337,7 +4337,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4359,16 +4359,16 @@ msgstr "Emuleringshastighet" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Aktiver" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Slå på API-valideringslag" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Tillat lydstrekking" @@ -4416,7 +4416,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Aktiver FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4442,7 +4442,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4455,7 +4455,7 @@ msgstr "Aktiver MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Aktiver progressiv skanning" @@ -4464,11 +4464,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Aktiver vibrering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Aktiver skjermbeskytter" @@ -4488,11 +4488,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "Skru på bruks- og statistikkrapportering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Aktiver wireframe" @@ -4548,7 +4548,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4583,7 +4583,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4591,7 +4591,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4608,7 +4608,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Tillater strekking av lyden for å matche emuleringshastigheten." @@ -4636,7 +4636,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4644,7 +4644,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4652,7 +4652,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4681,7 +4681,7 @@ msgstr "Enhet ble ikke igangsatt" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engelsk" @@ -4698,7 +4698,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Skriv inn ID for USB-enhet" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4722,7 +4722,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Skriv inn RSO-moduladresse:" @@ -4761,9 +4761,9 @@ msgstr "Skriv inn RSO-moduladresse:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4776,24 +4776,24 @@ msgstr "Skriv inn RSO-moduladresse:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4823,7 +4823,7 @@ msgstr "Feil under åpning av adapter: %1" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4933,12 +4933,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4982,11 +4982,11 @@ msgstr "Forventet starten på RegEx-innkapsling." msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Eksperimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-lagringsfiler" @@ -5001,7 +5001,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksporter opptak" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Eksporter opptak…" @@ -5029,7 +5029,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5057,7 +5057,7 @@ msgstr "Ekstern" msgid "External Frame Buffer (XFB)" msgstr "Eksternt bildebuffer (EFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Pakk ut sertifikater fra NAND" @@ -5095,7 +5095,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO-spiller" @@ -5115,7 +5115,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Kunne ikke legge til på signaturfil '%1'" @@ -5135,7 +5135,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Kunne ikke koble til server: %1" @@ -5156,7 +5156,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "Kunne ikke lage DXGI factory" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5210,7 +5210,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Kunne ikke eksportere følgende lagringsfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Klarte ikke å pakke ut sertifikater fra NAND" @@ -5237,18 +5237,18 @@ msgstr "Kunne ikke finne en eller flere D3D-symboler" msgid "Failed to import \"%1\"." msgstr "Kunne ikke importere \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5275,7 +5275,7 @@ msgid "Failed to install pack: %1" msgstr "Kunne ikke installere pakke: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Klarte ikke å installere denne tittelen til NAND." @@ -5287,8 +5287,8 @@ msgstr "" "Klarte ikke å lytte til port %1. Kjøres det en annen instans av NetPlay-" "tjeneren?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Kunne ikke laste RSO-modul ved %1" @@ -5300,7 +5300,7 @@ msgstr "Kunne ikke laste d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Kunne ikke laste dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Kunne ikke laste map-fil '%1'" @@ -5328,11 +5328,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5382,11 +5382,11 @@ msgstr "" msgid "Failed to open server" msgstr "Klarte ikke å åpne tjener" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5445,11 +5445,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5513,27 +5513,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Lagring av FIFO-logg mislyktes." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Kunne ikke lagre kodemapping til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Kunne ikke lagre signaturfil '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Kunne ikke lagre symbolkart til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Kunne ikke lagre til signaturfil '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5584,7 +5584,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Feil" @@ -5620,7 +5620,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5634,7 +5634,7 @@ msgstr "Fildetaljer" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Filformat" @@ -5642,24 +5642,24 @@ msgstr "Filformat" msgid "File Format:" msgstr "Filformat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Fil-informasjon" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Filnavn" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Filbane" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Filstørrelse" @@ -5782,7 +5782,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Tving 16:9" @@ -5790,7 +5790,7 @@ msgstr "Tving 16:9" msgid "Force 24-Bit Color" msgstr "Tving 24-biters farge" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Tving 4:3" @@ -5822,11 +5822,11 @@ msgstr "Tving lytteport:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5900,11 +5900,11 @@ msgstr "Øk hastighet for bildeforskuddsvisning" msgid "Frame Advance Reset Speed" msgstr "Tilbakestill bilde-for-bilde-hastighet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Bildespennvidde" @@ -5912,7 +5912,7 @@ msgstr "Bildespennvidde" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Bilder å ta opp:" @@ -5963,7 +5963,7 @@ msgstr "Frisikts-veksling" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Fransk" @@ -5982,8 +5982,8 @@ msgid "From" msgstr "Fra" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Fra:" @@ -6039,11 +6039,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6187,7 +6187,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Spill-ID" @@ -6200,7 +6200,7 @@ msgstr "Spill-ID:" msgid "Game Status" msgstr "Spillstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Spill endret til \"%1\"" @@ -6308,7 +6308,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-juksekoder" @@ -6340,13 +6340,13 @@ msgstr "Opprett en ny statistikk-identitet" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Genererte symbolnavn fra '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tysk" @@ -6422,7 +6422,7 @@ msgstr "Grønn venstre" msgid "Green Right" msgstr "Grønn høyre" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Rutenettvisning" @@ -6504,7 +6504,7 @@ msgstr "Gjem" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6528,11 +6528,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Høy" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Høyest" @@ -6571,11 +6571,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Vertsinndataautoritet deaktivert" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Vertsinndataautoritet aktivert" @@ -6601,7 +6601,7 @@ msgstr "Hurtigtaster" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6659,7 +6659,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR-sensitivitet:" @@ -6732,14 +6732,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6783,7 +6783,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Øyeblikkelig tilgjengelig XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6792,7 +6792,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Importer BootMii NAND sikkerhetskopi..." @@ -6807,7 +6807,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importer Wii-lagringsfil …" @@ -6910,16 +6910,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6939,8 +6939,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informasjon" @@ -6953,11 +6953,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Inngang" @@ -6983,7 +6983,7 @@ msgstr "" msgid "Insert &nop" msgstr "Sett inn &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sett inn SD-kort" @@ -7000,7 +7000,7 @@ msgstr "" msgid "Install Update" msgstr "Installer oppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Installer WAD…" @@ -7023,7 +7023,7 @@ msgstr "Instruksjon" msgid "Instruction Breakpoint" msgstr "Instruksjonsstoppunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instruksjon:" @@ -7109,7 +7109,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Fortolker (tregest)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Fortolkerkjerne" @@ -7134,7 +7134,7 @@ msgstr "Ugyldig Pakke %1 oppgitt: %2" msgid "Invalid Player ID" msgstr "Ugyldig spiller-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Ugyldig RSO-moduladresse: %1" @@ -7159,7 +7159,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ugyldig inndata for feltet \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Ugyldig inndata oppgitt" @@ -7195,13 +7195,13 @@ msgstr "Ugyldig søkestreng (bare strenger av partallslengde støttes)" msgid "Invalid title ID." msgstr "Ugyldig tittel-ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiensk" @@ -7214,11 +7214,11 @@ msgstr "Italia" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT Blokklinking Av" @@ -7226,47 +7226,47 @@ msgstr "JIT Blokklinking Av" msgid "JIT Blocks" msgstr "JIT-blokker" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Branching Av" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FlytTall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Heltall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LastLagre Flyt Av" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LastLagre Av" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LastLagre Parret Av" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LastLagre lXz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT Ibzx Av" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LastLagre Iwz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Av (JIT Kjerne)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Parret Av" @@ -7278,11 +7278,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT Systemregistre Av" @@ -7293,16 +7293,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japansk" @@ -7362,12 +7362,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Spark spiller" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreansk" @@ -7414,23 +7414,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Forsinkelse:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7438,7 +7438,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7532,11 +7532,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Begrens Klump-opplastningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Listekolonner" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Listevisning" @@ -7548,15 +7548,15 @@ msgstr "Lytter" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Last" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Last &Dårlig kartfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Last &Annen kartfil..." @@ -7568,7 +7568,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Last inn brukerlagde teksturer" @@ -7576,7 +7576,7 @@ msgstr "Last inn brukerlagde teksturer" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Last inn GameCube-hovedmeny" @@ -7686,19 +7686,19 @@ msgstr "Åpne hurtiglagringsplass nr. 8" msgid "Load State Slot 9" msgstr "Åpne hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Last inn tilstand fra fil" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Last inn tilstand fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Last inn tilstand fra kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Last inn Wii-systemmeny %1" @@ -7710,35 +7710,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Last fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Last inn fra kortplass %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Last kartfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Last..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Lastet symboler fra '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7752,7 +7752,7 @@ msgstr "Lokal" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7778,7 +7778,7 @@ msgstr "Logg-innstillinger" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Jit-logg Instruksjonsdekning" @@ -7786,7 +7786,7 @@ msgstr "Jit-logg Instruksjonsdekning" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Loggfør opptegningstid til fil" @@ -7802,27 +7802,27 @@ msgstr "Logger utdata" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Mistet tilkobling til NetPlay-tjener…" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Lav" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Lavest" @@ -7882,7 +7882,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Skaper" @@ -7899,12 +7899,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Administrer NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7920,11 +7920,11 @@ msgstr "" msgid "Match Found" msgstr "Treff funnet" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Maksimal Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Maksimum bufferstørrelse endret til %1" @@ -7933,7 +7933,7 @@ msgstr "Maksimum bufferstørrelse endret til %1" msgid "Maximum tilt angle." msgstr "Maksimal tilt-vinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan senke ytelse i Wii-menyen og noen spill." @@ -7954,7 +7954,7 @@ msgstr "Minne Stoppunkt" msgid "Memory Card" msgstr "Minnekort" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Minnekortbehandler" @@ -8009,11 +8009,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Diverse innstillinger" @@ -8029,7 +8029,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8049,7 +8049,7 @@ msgstr "" msgid "Modifier" msgstr "Modifiserer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8065,8 +8065,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -8074,7 +8074,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8132,10 +8132,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-sjekk" @@ -8144,7 +8144,7 @@ msgstr "NAND-sjekk" msgid "NKit Warning" msgstr "NKit-advarsel" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8171,7 +8171,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8381,7 +8381,7 @@ msgstr "Ingen feil." msgid "No extension selected." msgstr "Ingen utvidelse valgt." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Ingen filer lastet / tatt opp." @@ -8389,7 +8389,7 @@ msgstr "Ingen filer lastet / tatt opp." msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8402,7 +8402,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Ingen feil har blitt oppdaget." @@ -8451,8 +8451,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8601,7 +8601,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Objektrekkevidde" @@ -8626,7 +8626,7 @@ msgstr "På" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8648,7 +8648,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Nettbasert &dokumentasjon" @@ -8656,7 +8656,7 @@ msgstr "Nettbasert &dokumentasjon" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8664,7 +8664,7 @@ msgstr "" "Legg til kun symboler med prefiks:\n" "(Blank for alle symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8683,7 +8683,7 @@ msgstr "Åpne" msgid "Open &Containing Folder" msgstr "Åpne &inneholdende mappe" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8692,7 +8692,7 @@ msgstr "" msgid "Open Directory..." msgstr "Åpne mappe..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Åpne FIFO-logg" @@ -8782,7 +8782,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8824,11 +8824,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Spi&ll av inndataopptak…" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8842,11 +8842,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8935,7 +8935,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pause på slutten av filmen" @@ -8980,7 +8980,7 @@ msgstr "Høyeste fart for utgående svingbevegelser." msgid "Per-Pixel Lighting" msgstr "Belysning per piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Utfør pålogget systemoppdatering" @@ -8988,15 +8988,15 @@ msgstr "Utfør pålogget systemoppdatering" msgid "Perform System Update" msgstr "Utfør systemoppdatering" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -9014,7 +9014,7 @@ msgstr "" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Velg en debug-font" @@ -9031,7 +9031,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plattform" @@ -9039,7 +9039,7 @@ msgstr "Plattform" msgid "Play" msgstr "Spill av" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Spill/Ta opp" @@ -9047,11 +9047,11 @@ msgstr "Spill/Ta opp" msgid "Play Recording" msgstr "Spill av opptak" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Avspillingsalterntiver" @@ -9059,27 +9059,27 @@ msgstr "Avspillingsalterntiver" msgid "Player" msgstr "Spiller" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9101,7 +9101,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9134,7 +9134,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Potensiell desynkronisering oppdaget: %1 kan ha desynkroniser i bilde %2" @@ -9151,20 +9151,20 @@ msgstr "Postbehandlingseffekt:" msgid "Post-Processing Shader Configuration" msgstr "Oppsett av Etterbehandlings-skyggelegging" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Forhåndsinnlasting av egendefinerte teksturer" @@ -9201,7 +9201,7 @@ msgstr "Trykk Synkroniseringsknapp" msgid "Pressure" msgstr "Trykk" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9276,11 +9276,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "Programteller" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Fremdrift" @@ -9294,7 +9294,7 @@ msgstr "" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Tøm spillistehurtiglager" @@ -9318,7 +9318,7 @@ msgstr "Quality of Service (QoS) kunne ikke aktiveres." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) ble aktivert." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9350,11 +9350,11 @@ msgstr "Høyre-analog" msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO-autooppdaging" @@ -9379,7 +9379,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9387,7 +9387,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9446,7 +9446,7 @@ msgstr "" msgid "Recenter" msgstr "Sentrer igjen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Opptak" @@ -9458,11 +9458,11 @@ msgstr "Ta opp inndata" msgid "Recording" msgstr "Tar opp" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opptaksinnstillinger" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Tar opp..." @@ -9526,7 +9526,7 @@ msgid "Refreshing..." msgstr "Gjennoppfrisker..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9559,7 +9559,7 @@ msgstr "Minn Meg Senere" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Fjern" @@ -9596,11 +9596,11 @@ msgstr "&Gi symbol nytt navn" msgid "Render Window" msgstr "Renderingsvindu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Spill i hovedvinduet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9633,7 +9633,7 @@ msgstr "Nullstill" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9665,7 +9665,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Tilbakestill alle Wii-kontroll parringer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9844,19 +9844,19 @@ msgstr "Russland" msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-kortbilde (*.raw);;Alle filer (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kort-sti:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9864,7 +9864,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9899,11 +9899,11 @@ msgstr "SSL-sammenheng" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Lag&ringskode" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Lagre &stadie" @@ -9935,11 +9935,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Lagringsfil Eksport" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Lagre FIFO-logg" @@ -9957,11 +9957,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Lagre import" @@ -9973,7 +9973,7 @@ msgstr "Lagre eldste hurtiglagring" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -10023,23 +10023,23 @@ msgstr "Hurtiglagringsplass nr. 8" msgid "Save State Slot 9" msgstr "Hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Lagre tilstand til fil" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Lagre tilstand til eldste kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Lagre tilstand til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Lagre tilstand til kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "&Lagre symbolkart som..." @@ -10059,11 +10059,11 @@ msgstr "" msgid "Save as..." msgstr "Lagre som …" -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Lagre kombinert utdatafil som" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10077,11 +10077,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Lagre kartfil" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Lagre signaturfil" @@ -10089,11 +10089,11 @@ msgstr "Lagre signaturfil" msgid "Save to Selected Slot" msgstr "Lagre til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Lagre til kortplass %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Lagre …" @@ -10124,7 +10124,7 @@ msgstr "SkjDump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Søk" @@ -10151,7 +10151,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Søk etter en instruks" @@ -10159,7 +10159,7 @@ msgstr "Søk etter en instruks" msgid "Search games..." msgstr "Søk spill..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Søk instruksjon" @@ -10205,11 +10205,11 @@ msgid "Select Dump Path" msgstr "Velg dumpens filbane" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Velg eksportmappe" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10249,7 +10249,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Velg inngang %1 - %2" @@ -10257,7 +10257,7 @@ msgstr "Velg inngang %1 - %2" msgid "Select State" msgstr "Velg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Velg kortplass for lagringsstadie" @@ -10324,7 +10324,7 @@ msgstr "Velg mappe" msgid "Select a File" msgstr "Velg en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10332,7 +10332,7 @@ msgstr "" msgid "Select a Game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Velg en SD-kortbilledfil" @@ -10344,7 +10344,7 @@ msgstr "" msgid "Select a game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Velg en tittel å installere til NAND" @@ -10352,7 +10352,7 @@ msgstr "Velg en tittel å installere til NAND" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Velg RSO-moduladressen:" @@ -10369,7 +10369,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Velg nøkkelfil (OTP/SEEPROM dump)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Velg lagringsfil" @@ -10393,7 +10393,7 @@ msgstr "Valgt kontrolprofil finnes ikke" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Valgt spill eksisterer ikke i spillisten!" @@ -10417,7 +10417,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10447,7 +10447,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10469,7 +10469,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10483,7 +10483,7 @@ msgstr "" msgid "Send" msgstr "Send" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensorbjelkeposisjon:" @@ -10548,7 +10548,7 @@ msgstr "Sett symbol-sluttadresse" msgid "Set symbol size (%1):" msgstr "Angi symbolstørrelse (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10558,7 +10558,7 @@ msgstr "" "spill.\n" "Fungerer kanskje ikke i alle spill." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Sett Wii-systemspråket." @@ -10570,7 +10570,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10589,7 +10589,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10603,7 +10603,7 @@ msgstr "SetupWiiMemory: Kan ikke opprette «setting.txt»-fil" msgid "Severity" msgstr "Alvorlighetsgrad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Skygeleggerkompilering" @@ -10625,16 +10625,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Vis &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Vis &verktøylinje" @@ -10642,11 +10642,11 @@ msgstr "Vis &verktøylinje" msgid "Show Active Title in Window Title" msgstr "Vis aktiv tittel i vindustittel" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Vis Australia" @@ -10659,7 +10659,7 @@ msgstr "Vis nåværende spill på Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" @@ -10668,27 +10668,27 @@ msgstr "Vis ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Vis bildefrekvens (FPS)" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Vis bildeteller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Vis Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Vis Tyskland" @@ -10700,23 +10700,23 @@ msgstr "Vis golfmodusoverlegg" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Vis inndataskjerm" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Vis Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Vis lagteller" @@ -10724,19 +10724,19 @@ msgstr "Vis lagteller" msgid "Show Language:" msgstr "Vis språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Vis logg&oppsett" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Vis NetPlay-meldinger" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Vis NetPlay-ping" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Vis Nederland" @@ -10744,7 +10744,7 @@ msgstr "Vis Nederland" msgid "Show On-Screen Display Messages" msgstr "Vis Skjerm-meldinger" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Vis PAL" @@ -10753,27 +10753,27 @@ msgstr "Vis PAL" msgid "Show PC" msgstr "Vis PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Vis plattformer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Vis Russland" @@ -10781,51 +10781,51 @@ msgstr "Vis Russland" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Vis Spania" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Vis systemklokke" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Vis ukjent" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Vis verden" @@ -10838,7 +10838,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10866,13 +10866,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10911,47 +10911,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10973,7 +10973,7 @@ msgstr "Sideveisveksling" msgid "Sideways Wii Remote" msgstr "Sideveis Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Signaturdatabase" @@ -10997,7 +10997,7 @@ msgid "Signed Integer" msgstr "Signert heltall" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Forenklet kinesisk" @@ -11014,7 +11014,7 @@ msgstr "" msgid "Size" msgstr "Størrelse" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11026,7 +11026,7 @@ msgstr "" msgid "Skip" msgstr "Hopp over" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11145,7 +11145,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Sorter alfabetisk" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Lyd:" @@ -11159,7 +11159,7 @@ msgstr "Spania" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spansk" @@ -11167,11 +11167,11 @@ msgstr "Spansk" msgid "Speaker Pan" msgstr "Høytaler-lydforskyvelse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Lydstyrke:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11179,7 +11179,7 @@ msgstr "" msgid "Specific" msgstr "Spesifikk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11221,7 +11221,7 @@ msgstr "Forvalgt kontroller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Start &NetPlay…" @@ -11230,11 +11230,11 @@ msgstr "Start &NetPlay…" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Start inn&dataopptak" @@ -11242,7 +11242,7 @@ msgstr "Start inn&dataopptak" msgid "Start Recording" msgstr "Start opptak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11254,7 +11254,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Startet spill" @@ -11314,7 +11314,7 @@ msgstr "Stepp vellykket!" msgid "Stepping" msgstr "Stepper" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11343,12 +11343,12 @@ msgid "Stick" msgstr "Joystick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Stopp avspilling/opptak av inndata" @@ -11384,7 +11384,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Strekk til Vindu" @@ -11423,8 +11423,8 @@ msgstr "Penn" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Vellykket" @@ -11451,7 +11451,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Eksportering av lagringsfiler var vellykket" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Ekstrahering av sertifikat fra NAND vellykket" @@ -11463,12 +11463,12 @@ msgstr "Ekstrahering av fil vellykket." msgid "Successfully extracted system data." msgstr "Ekstrahering av systemdata vellykket." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Installering av tittelen til NAND var vellykket." @@ -11491,12 +11491,12 @@ msgstr "Støtte" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Støtter SD og SDHC. Standardstørrelsen er 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -11554,7 +11554,7 @@ msgstr "Symbolnavn:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symboler" @@ -11582,7 +11582,7 @@ msgstr "" "Synkroniserer GPU- og CPU-trådene for å hindre tilfeldige frys i " "dobbelkjernemodus. (PÅ = kompatibel, AV = raskt)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11601,11 +11601,11 @@ msgid "Synchronizing save data..." msgstr "Synkroniserer lagringsdata..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS-inndata" @@ -11618,7 +11618,7 @@ msgstr "TAS-verktøy" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Etiketter" @@ -11636,7 +11636,7 @@ msgstr "Hale" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Ta skjermbilde" @@ -11675,7 +11675,7 @@ msgstr "Tekstur-hurtiglager" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11687,7 +11687,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Teksturformat-overlegg" @@ -11724,7 +11724,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "Mesterverk-partisjonene mangler." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11732,7 +11732,7 @@ msgstr "" "NAND kunne ikke repareres. Det er anbefalt å sikkerhetskopiere dine " "nåværende data for deretter å starte med en blank NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND er blitt reparert." @@ -11747,7 +11747,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12056,7 +12056,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12118,7 +12118,7 @@ msgstr "Oppdateringspartisjonen mangler." msgid "The update partition is not at its normal position." msgstr "Oppdateringspartisjonen er ikke ved sin normale posisjon." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12474,7 +12474,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Tittel" @@ -12483,12 +12483,12 @@ msgid "To" msgstr "Til" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Bruk &fullskjerm" @@ -12577,7 +12577,7 @@ msgstr "" msgid "Toolbar" msgstr "Verktøylinje" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Oppe" @@ -12628,7 +12628,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Tradisjonell kinesisk" @@ -12648,8 +12648,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Traverseringsfeil" @@ -12732,14 +12732,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB hviteliste-feil" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12747,7 +12747,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12756,7 +12756,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12827,11 +12827,11 @@ msgstr "Ukomprimerte GC/Wii bildefiler (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Angre åpning av hurtiglagring" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Angre hurtiglagring" @@ -12851,7 +12851,7 @@ msgstr "" "Å avinstallere WAD-filen vil fjerne den nåværende installerte versjonen av " "denne tittelen fra NAND, uten å slette dens lagringsdata. Fortsett?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "USA" @@ -12943,7 +12943,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12959,7 +12959,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13002,7 +13002,7 @@ msgid "Up" msgstr "Opp" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Oppdater" @@ -13075,7 +13075,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Bruk den innebygde databasen over spillnavn" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Bruk tapsfri kodek (FFV1)" @@ -13083,7 +13083,7 @@ msgstr "Bruk tapsfri kodek (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Bruk PAL60-modus (EuRGB60)" @@ -13097,7 +13097,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13165,14 +13165,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13435,7 +13435,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advarsel" @@ -13526,7 +13526,7 @@ msgstr "Vestlig (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13534,7 +13534,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13542,7 +13542,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Hvitelistede USB-gjennomstrømmingsenheter" @@ -13592,7 +13592,7 @@ msgstr "Wii-kontrollerknapper" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Innstillinger for Wii Remote" @@ -13620,7 +13620,7 @@ msgstr "Wii og Wii-kontroll" msgid "Wii data is not public yet" msgstr "Wii-data er ikke offentlige enda" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-lagringsfiler (*.bin);;Alle filer (*)" @@ -13628,7 +13628,7 @@ msgstr "Wii-lagringsfiler (*.bin);;Alle filer (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13659,7 +13659,7 @@ msgstr "Verden" msgid "Write" msgstr "Skriv" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13708,11 +13708,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13763,14 +13763,14 @@ msgstr "Ja" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13873,7 +13873,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/nl.po b/Languages/po/nl.po index 3754dfbc99..7fcad3f8da 100644 --- a/Languages/po/nl.po +++ b/Languages/po/nl.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mike van der Kuijl , 2020-2024\n" "Language-Team: Dutch (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -110,7 +110,7 @@ msgstr "" "%1\n" "wil lid worden van uw partij." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -164,7 +164,7 @@ msgstr "%1 (langzaam)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -199,7 +199,7 @@ msgstr "%1 ondersteunt deze functie niet op uw systeem." msgid "%1 doesn't support this feature." msgstr "%1 ondersteunt deze functie niet." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -209,11 +209,11 @@ msgstr "" "%2 object(en)\n" "Huidige Frame: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 doet nu mee" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 is vertrokken" @@ -221,11 +221,11 @@ msgstr "%1 is vertrokken" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 heeft %2/%3 prestaties ontgrendeld die %4/%5 punten waard zijn" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 is geen geldige ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 is nu aan het golfen" @@ -237,8 +237,8 @@ msgstr "%1 is %2 aan het spelen" msgid "%1 memory ranges" msgstr "%1 geheugen reeksen" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -255,7 +255,7 @@ msgstr "%1 sessie gevonden" msgid "%1 sessions found" msgstr "%1 sessies gevonden" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -364,11 +364,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Over" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Voeg Geheugen Breekpunt Toe" @@ -385,11 +385,11 @@ msgstr "&Functie toevoegen" msgid "&Add..." msgstr "&Toevoegen..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Geluidsinstellingen" @@ -405,11 +405,11 @@ msgstr "&Randloos venster" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Breekpunten" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Bug-tracker" @@ -417,15 +417,15 @@ msgstr "&Bug-tracker" msgid "&Cancel" msgstr "&Annuleren" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Controleer op updates..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "Symbolen &wissen" @@ -433,7 +433,7 @@ msgstr "Symbolen &wissen" msgid "&Clone..." msgstr "&Klonen…" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Code" @@ -441,7 +441,7 @@ msgstr "&Code" msgid "&Connected" msgstr "&Verbonden" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Controllerinstellingen" @@ -464,13 +464,13 @@ msgstr "&Verwijderen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Verwijder Watchvenster" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Verwijder Watches" @@ -484,11 +484,11 @@ msgstr "Code &bewerken…" msgid "&Edit..." msgstr "&Bewerken…" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "Schijf &uitwerpen" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulatie" @@ -509,40 +509,40 @@ msgid "&Export as .gci..." msgstr "Als .gci exporteren…" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Lettertype..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Frame Voorwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Vrije-kijk-instellingen" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "Symbolen &genereren van" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub-repository" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafische instellingen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Hulp" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Sneltoetsinstellingen" @@ -562,7 +562,7 @@ msgstr "State &importeren…" msgid "&Import..." msgstr "&Importeren…" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity Base" @@ -574,7 +574,7 @@ msgstr "Blr …invoegen" msgid "&Interframe Blending" msgstr "&Interframe Menging" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -586,11 +586,11 @@ msgstr "&Taal:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "State &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "Symbol-map &laden" @@ -600,11 +600,11 @@ msgstr "&Laad bestand naar huidig adres" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Vergrendel Watches" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Vergrendel Widgets op hun Plaats" @@ -612,11 +612,11 @@ msgstr "&Vergrendel Widgets op hun Plaats" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Geheugen" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Opname" @@ -624,7 +624,7 @@ msgstr "&Opname" msgid "&Mute" msgstr "&Dempen" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Netwerk" @@ -633,23 +633,23 @@ msgid "&No" msgstr "&Nee" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Openen…" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opties" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functies" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Spelen" @@ -657,7 +657,7 @@ msgstr "&Spelen" msgid "&Properties" msgstr "&Eigenschappen" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Alleen-lezen-modus" @@ -665,7 +665,7 @@ msgstr "&Alleen-lezen-modus" msgid "&Refresh List" msgstr "Lijst &verversen" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registers" @@ -683,11 +683,11 @@ msgid "&Rename symbol" msgstr "&Symbool hernoemen" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Resetten" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Resource Pack Beheer" @@ -695,7 +695,7 @@ msgstr "&Resource Pack Beheer" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Symbol-map opslaan" @@ -703,7 +703,7 @@ msgstr "&Symbol-map opslaan" msgid "&Scan e-Reader Card(s)..." msgstr "&Scan e-Reader Kaart(en)..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" @@ -711,7 +711,7 @@ msgstr "&Skylanders Portal" msgid "&Speed Limit:" msgstr "&Snelheidslimiet:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Stoppen" @@ -719,7 +719,7 @@ msgstr "&Stoppen" msgid "&Theme:" msgstr "&Thema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Threads" @@ -727,7 +727,7 @@ msgstr "&Threads" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Gereedschap" @@ -737,21 +737,21 @@ msgstr "&ROM ontladen" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "Watches &ontgrendelen" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Weergave" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Website" @@ -763,11 +763,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' niet gevonden, geen symboolnamen gegenereerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' niet gevonden, in plaats daarvan zoeken naar algemene functies" @@ -815,7 +815,7 @@ msgstr "- Aftrekken" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Onbekend--" @@ -881,7 +881,7 @@ msgstr "16-bit Signed Integer" msgid "16-bit Unsigned Integer" msgstr "16-bit Unsigned Integer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -965,7 +965,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blokken)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1066,7 +1066,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "Uitgeschakeld in Hardcore-modus." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "In geval van twijfel leeg laten." @@ -1207,7 +1207,7 @@ msgstr "" "Wii-afstandbediening ondersteuning in netplay is experimenteel en " "functioneert mogelijk niet optimaal. Gebruik op eigen risico.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR Code" @@ -1249,8 +1249,8 @@ msgstr "Nauwkeurigheid:" msgid "Achievement Settings" msgstr "Prestatie-instellingen" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Prestaties" @@ -1347,7 +1347,7 @@ msgstr "Activeer NetPlay Chat" msgid "Active" msgstr "Actief" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "Actieve Infinity Figuren:" @@ -1359,7 +1359,7 @@ msgstr "Actieve thread wachtrij" msgid "Active threads" msgstr "Actieve threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "Adapter" @@ -1367,7 +1367,7 @@ msgstr "Adapter" msgid "Adapter Detected" msgstr "Adapter gedetecteerd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter:" @@ -1424,7 +1424,7 @@ msgstr "Voeg toe aan watch" #: 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:329 msgid "Add..." msgstr "Toevoegen..." @@ -1438,7 +1438,7 @@ msgstr "Toevoegen..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adres" @@ -1651,7 +1651,7 @@ msgstr "Niet-overeenkomende regio-instellingen toestaan" msgid "Allow Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken toestaan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Sta Schrijven naar SD-Kaart toe" @@ -1693,7 +1693,7 @@ msgstr "Een geplaatste schijf werd verwacht maar is niet gevonden." msgid "Anaglyph" msgstr "Anaglyph" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analyseer" @@ -1719,15 +1719,15 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Elke Regio" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Voeg Signatuur toe aan" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "Toevoegen aan &Bestaand Signatuurbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "P&as Signatuur Toe..." @@ -1747,7 +1747,7 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Toepassen" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Pas signatuurbestand toe..." @@ -1779,16 +1779,16 @@ msgstr "Weet u het zeker?" msgid "Area Sampling" msgstr "Gebiedssampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Beeldverhouding" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Beeldverhouding:" @@ -1831,11 +1831,11 @@ msgstr "Koppel MotionPlus" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Audio-backend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Audiorekkingsinstellingen" @@ -1851,7 +1851,7 @@ msgstr "Auteur" msgid "Authors" msgstr "Auteurs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1876,7 +1876,7 @@ msgstr "" "\n" "Selecteer een specifieke interne resolutie." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Venstergrootte automatisch aanpassen" @@ -1884,15 +1884,15 @@ msgstr "Venstergrootte automatisch aanpassen" msgid "Auto-Hide" msgstr "Automatisch Verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO module?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Automatisch synchroniseren met map" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1945,19 +1945,19 @@ msgstr "BP register " msgid "Back Chain" msgstr "Back Chain" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Backend Multi-threading" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Backend-instellingen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -2000,7 +2000,7 @@ msgstr "Verkeerde waarde opgegeven." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -2024,7 +2024,7 @@ msgstr "Basis Adres" msgid "Base priority" msgstr "Basisprioriteit" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Basis" @@ -2076,11 +2076,11 @@ msgstr "Binaire SSL (lees)" msgid "Binary SSL (write)" msgstr "Binaire SSL (schrijf)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bitrate (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2090,7 +2090,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blokgrootte" @@ -2128,7 +2128,7 @@ msgstr "" "Bluetooth passthrough modus staat aan, maar Dolphin is gecompileerd zonder " "libusb. Passthrough mode kan niet gebruikt worden." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Opstarten naar Pauze" @@ -2140,11 +2140,11 @@ msgstr "BootMii NAND backup bestanden (*.bin);;Alle bestanden (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii sleutelbestand (*.bin);;Alle Bestanden (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Randloos volledig scherm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Beneden" @@ -2321,20 +2321,20 @@ msgstr "Breedbandadapterfout" msgid "Broadband Adapter MAC Address" msgstr "Breedbandadapter-MAC-adres" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Blader &NetPlay Sessies...." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Buffergrootte:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Buffergrootte gewijzigd naar %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2386,7 +2386,7 @@ msgstr "Door: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "M&aak Signatuurbestand aan..." @@ -2410,7 +2410,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Gecachete interpreter (trager)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2499,11 +2499,11 @@ msgstr "Kan geen NetPlay-sessie starten als spel nog draait!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Annuleren" @@ -2590,7 +2590,7 @@ msgstr "Centreer en Kalibreer" msgid "Change &Disc" msgstr "&Schijf wisselen" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "&Schijf wisselen…" @@ -2612,7 +2612,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2642,7 +2642,7 @@ msgstr "" "de vrije camera rond de originele camera. Heeft geen zijwaartse beweging, " "alleen rotatie. U kunt inzoomen tot het oorsprongspunt van de camera." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Het veranderen van cheats zal pas van kracht worden wanneer het spel opnieuw " @@ -2652,7 +2652,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "Kanaal Partitie (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Ingevoerde karakter is ongeldig!" @@ -2664,7 +2664,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Cheat Code Bewerker" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Cheat Zoeken" @@ -2672,7 +2672,7 @@ msgstr "Cheat Zoeken" msgid "Cheats Manager" msgstr "Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Controleer NAND..." @@ -2712,11 +2712,11 @@ msgstr "Kies een bestand om te openen" msgid "Choose a file to open or create" msgstr "Kies een bestand om te openen of te maken" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Kies een inputbestand met prioriteit" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Kies een secundair inputbestand" @@ -2747,7 +2747,7 @@ msgstr "Klassieke Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Legen" @@ -2755,7 +2755,7 @@ msgstr "Legen" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Cache legen" @@ -2776,7 +2776,7 @@ msgstr "Clone en &Wijzig Code..." msgid "Close" msgstr "Sluiten" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Co&nfiguratie" @@ -2820,7 +2820,7 @@ msgstr "Kleurruimte" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Combineer &Twee Signatuurbestanden..." @@ -2854,7 +2854,7 @@ msgstr "" "Desondanks is het mogelijk dat dit een goede dump is vergeleken met de Wii U " "eShop release van het spel. Dolphin kan dit niet verifiëren." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compileer Shaders Voor Starten" @@ -2864,7 +2864,7 @@ msgstr "Shaders Compileren" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Compressie" @@ -2979,7 +2979,7 @@ msgstr "Configureren" msgid "Configure Controller" msgstr "Configureer Controller" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin Configureren" @@ -3003,7 +3003,7 @@ msgstr "Configureer Output" msgid "Confirm" msgstr "Bevestigen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Backend-wijziging bevestigen" @@ -3011,7 +3011,7 @@ msgstr "Backend-wijziging bevestigen" msgid "Confirm on Stop" msgstr "Bevestiging bij Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3022,15 +3022,15 @@ msgstr "Bevestiging" msgid "Connect" msgstr "Verbind" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Verbind Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB-toetsenbord verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Verbind Wii-afstandsbediening %1" @@ -3050,7 +3050,7 @@ msgstr "Verbind Wii-afstandsbediening 3" msgid "Connect Wii Remote 4" msgstr "Verbind Wii-afstandsbediening 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Verbind Wii-afstandsbedieningen" @@ -3195,8 +3195,8 @@ msgstr "Convergentie" msgid "Convergence:" msgstr "Convergentie:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Conversie mislukt." @@ -3204,9 +3204,9 @@ msgstr "Conversie mislukt." msgid "Convert" msgstr "Converteer" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Converteer Bestand Nu naar Map" @@ -3214,9 +3214,9 @@ msgstr "Converteer Bestand Nu naar Map" msgid "Convert File..." msgstr "Converteer Bestand..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Converteer Map Nu naar Bestand" @@ -3239,8 +3239,8 @@ msgstr "" "converteren naar ISO. Wilt u toch doorgaan?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Converteren..." @@ -3473,7 +3473,7 @@ msgstr "" "In dat geval moet u uw geheugenkaartlocatie opnieuw aangeven in de " "configuratie." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Kon de centrale server niet vinden" @@ -3489,13 +3489,13 @@ msgstr "Kon bestand niet lezen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Creëer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Maak Infinity Bestand aan" @@ -3526,11 +3526,11 @@ msgstr "Maker:" msgid "Critical" msgstr "Kritiek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Bijsnijden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3542,11 +3542,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Cull Vertices op de CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3556,7 +3556,7 @@ msgstr "" "Kan de prestaties beïnvloeden.

In geval van twijfel " "leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Huidige Regio" @@ -3576,11 +3576,11 @@ msgstr "Huidig spel" msgid "Current thread" msgstr "Huidige thread" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Aangepast" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3588,15 +3588,15 @@ msgstr "" msgid "Custom Address Space" msgstr "Aangepaste Adresruimte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Aangepaste Beeldverhouding Hoogte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Aangepaste Beeldverhouding Breedte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Aangepaste Beeldverhouding:" @@ -3641,7 +3641,7 @@ msgstr "DJ Draaitafel" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP Emulatie Engine" @@ -3649,15 +3649,15 @@ msgstr "DSP Emulatie Engine" msgid "DSP HLE (fast)" msgstr "DSP HLE (snel)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (aanbevolen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (zeer langzaam)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (langzaam)" @@ -3732,7 +3732,7 @@ msgstr "Dead Zone" msgid "Debug" msgstr "Debug" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugging" @@ -3742,7 +3742,7 @@ msgstr "Debugging" msgid "Decimal" msgstr "Decimaal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Decoderingskwaliteit:" @@ -3789,7 +3789,7 @@ msgstr "Standaard" msgid "Default Config (Read Only)" msgstr "Standaardconfiguratie (Alleen-lezen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Standaardapparaat" @@ -3805,7 +3805,7 @@ msgstr "Standaard-ISO:" msgid "Default thread" msgstr "Standaard-thread" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB-cache-invalidatie uitschakelen" @@ -3813,7 +3813,7 @@ msgstr "EFB-cache-invalidatie uitschakelen" msgid "Defer EFB Copies to RAM" msgstr "Stel EFB Kopieën naar RAM uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3865,7 +3865,7 @@ msgstr "Diepte:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschrijving" @@ -3914,7 +3914,7 @@ msgstr "Ontkoppeld" msgid "Detect" msgstr "Detecteer" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "RSO Module Detecteren" @@ -3944,7 +3944,7 @@ msgstr "Apparaatinstellingen" msgid "Device VID (e.g., 057e)" msgstr "Apparaat VID (bijv., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Apparaat:" @@ -3952,7 +3952,7 @@ msgstr "Apparaat:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 werd niet herkend als een geldig Riivolution XML bestand." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Dimt het scherm na vijf minuten inactiviteit." @@ -3976,7 +3976,7 @@ msgstr "Schakel Bounding Box uit" msgid "Disable Copy Filter" msgstr "Schakel Kopieerfilter uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Schakel EFB VRAM Kopieën uit" @@ -3984,11 +3984,11 @@ msgstr "Schakel EFB VRAM Kopieën uit" msgid "Disable Emulation Speed Limit" msgstr "Schakel Emulatie Snelheidslimit uit" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Schakel Fastmem uit" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Schakel Fastmem Arena uit" @@ -3996,11 +3996,11 @@ msgstr "Schakel Fastmem Arena uit" msgid "Disable Fog" msgstr "Schakel Mist uit" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "JIT-cache uitschakelen" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Schakel Large Entry Points Map uit" @@ -4018,7 +4018,7 @@ msgstr "" "verbeteren, maar breekt sommige spellen.

In geval " "van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4400,7 +4400,7 @@ msgstr "" "Dumpt de inhoud van EFB-kopieën naar User/Dump/Textures/." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4418,11 +4418,11 @@ msgstr "Duur van Tubo-knop los Laten (frames):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nederlands" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "Sl&uiten" @@ -4453,7 +4453,7 @@ msgstr "" "Geschikt voor competitieve spellen waarbij rechtvaardigheid en minimale " "latentie het belangrijkst zijn." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Vroege Geheugen Updates" @@ -4527,7 +4527,7 @@ msgstr "Embedded Frame Buffer (EFB)" msgid "Empty" msgstr "Leeg" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emu Thread draait al" @@ -4535,7 +4535,7 @@ msgstr "Emu Thread draait al" msgid "Emulate Disc Speed" msgstr "Emuleer Disc Snelheid" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Emuleer Infinity Base" @@ -4555,7 +4555,7 @@ msgstr "" "Emuleert de schijfsnelheid van echte hardware. Uitschakelen kan " "instabiliteit veroorzaken. Staat standaard op Aan" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Geëmuleerde USB Apparaten" @@ -4580,16 +4580,16 @@ msgstr "Emulatiesnelheid" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Inschakelen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Activeer API Validatielagen" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Activeer Audio Uitrekking" @@ -4637,7 +4637,7 @@ msgstr "Activeer Encore Prestaties" msgid "Enable FPRF" msgstr "Activeer FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Schakel Grafische Mods in" @@ -4663,7 +4663,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4676,7 +4676,7 @@ msgstr "Activeer MMU" msgid "Enable Progress Notifications" msgstr "Schakel Voortgangsmeldingen in." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activeer Progressieve Scan" @@ -4685,11 +4685,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Activeer RetroAchievements.org Integratie" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Activeer Trillen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activeer Schermbeveiliger" @@ -4709,11 +4709,11 @@ msgstr "Activeer Onofficiële Prestaties" msgid "Enable Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken inschakelen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Activeer WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activeer Wireframe" @@ -4772,7 +4772,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4807,7 +4807,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4821,7 +4821,7 @@ msgstr "" "

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4841,7 +4841,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Maakt uitrekking van audio mogelijk, zodat de audio gelijk blijft aan de " @@ -4874,7 +4874,7 @@ msgstr "" "Compatibel, UIT = Snel)

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4886,7 +4886,7 @@ msgstr "" "zoals de Voorspellings- en Nintendo-kanalen.\n" "Lees de servicevoorwaarden op: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4898,7 +4898,7 @@ msgstr "" "schakelt dit ook debug symbolen in voor de gecompileerde shaders." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4933,7 +4933,7 @@ msgstr "Enet niet geïnitialiseerd" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engels" @@ -4950,7 +4950,7 @@ msgstr "Voer IP-adres in van het apparaat waarop de XLink Kai Client draait:" msgid "Enter USB device ID" msgstr "Voer USB apparaat ID in" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Voer adres in voor watch:" @@ -4974,7 +4974,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Voer adres van de RSO-module in:" @@ -5013,9 +5013,9 @@ msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5028,24 +5028,24 @@ msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5075,7 +5075,7 @@ msgstr "Fout bij openen van adapter: %1" msgid "Error collecting save data!" msgstr "Fout bij verzamelen van save data!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5190,12 +5190,12 @@ msgstr "Er zijn fouten gevonden in {0} ongebruikte blokken in de {1} partitie." msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Exclusieve Ubershaders" @@ -5239,11 +5239,11 @@ msgstr "Verwachte start van de uitdrukking." msgid "Expected variable name." msgstr "Verwachtte naam van variabele." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimenteel" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exporteer alle Wii Saves" @@ -5258,7 +5258,7 @@ msgstr "Exporteren Mislukt" msgid "Export Recording" msgstr "Exporteer Opname" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exporteer Opname..." @@ -5286,7 +5286,7 @@ msgstr "Exporteer als .&gcs..." msgid "Export as .&sav..." msgstr "Exporteer als .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5314,7 +5314,7 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externe Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Certificaten uitpakken van NAND" @@ -5352,7 +5352,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO Speler" @@ -5372,7 +5372,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Mislukt om deze sessie aan de NetPlay index toe voegen: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Mislukt om signatuurbestand toe te voegen aan bestand '%1'" @@ -5393,7 +5393,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Mislukt om met Redump.org te verbinden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Mislukt om verbinding te maken met server: %1" @@ -5414,7 +5414,7 @@ msgstr "Mislukt om D3D12 global resources te creëren" msgid "Failed to create DXGI factory" msgstr "Mislukt om DXGI factory te creëren" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Mislukt om Infinity bestand te creëren" @@ -5471,7 +5471,7 @@ msgstr "Exporteren van %n van de %1 save bestand(en) is mislukt." msgid "Failed to export the following save files:" msgstr "Kon de volgende save bestanden niet exporteren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Kon geen certificaten uitpakken van NAND" @@ -5501,14 +5501,14 @@ msgstr "Kon één of meerdere D3D symbolen niet vinden" msgid "Failed to import \"%1\"." msgstr "Mislukt om \"%1\" te importeren." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Save bestand importeren mislukt. Start het spel eerst en probeer het dan " "opnieuw." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5516,7 +5516,7 @@ msgstr "" "Save bestand importeren mislukt. Het bestand lijkt beschadigd te zijn of is " "geen geldige Wii-save." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5549,7 +5549,7 @@ msgid "Failed to install pack: %1" msgstr "Het is niet gelukt om het pakket te installeren: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Kon deze titel niet installeren op de NAND." @@ -5561,8 +5561,8 @@ msgstr "" "Luisteren naar poort %1 mislukt. Is er nog een exemplaar van de NetPlay-" "server actief?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Kon RSO-module op %1 niet laden" @@ -5574,7 +5574,7 @@ msgstr "Kon d3d11.dll niet laden" msgid "Failed to load dxgi.dll" msgstr "Kon dxgi.dll niet laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Kon mapbestand'%1' niet laden" @@ -5604,11 +5604,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Mislukt om Skylander te wijzigen!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5658,11 +5658,11 @@ msgstr "Openen bestand mislukt." msgid "Failed to open server" msgstr "Kon server niet openen" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Openen van Infinity bestand mislukt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5724,11 +5724,11 @@ msgstr "Lezen van het inputbestand \"{0}\" is mislukt." msgid "Failed to read selected savefile(s) from memory card." msgstr "Lezen van geselecteerde save bestand(en) van geheugenkaart mislukt." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Lezen van infinity bestand mislukt!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5792,27 +5792,27 @@ msgstr "Kon NetPlay omleid map niet resetten. Controleer uw schrijfrechten." msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Mislukt om FIFO op te slaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Kon code map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Kon signatuurbestand '%1' niet opslaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Kon symbool map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Kon niet opslaan naar signatuurbestand '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5865,7 +5865,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Gefaald" @@ -5903,7 +5903,7 @@ msgstr "" msgid "Field of View" msgstr "Gezichtsveld" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Figuur Nummer:" @@ -5917,7 +5917,7 @@ msgstr "Bestand Details" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Bestandsformaat" @@ -5925,24 +5925,24 @@ msgstr "Bestandsformaat" msgid "File Format:" msgstr "Bestandsformaat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Bestandsinfo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Bestandsnaam" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Bestandspad" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Bestandsgrootte" @@ -6073,7 +6073,7 @@ msgstr "" "Voor setup instructies, raadpleeg deze pagina." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forceer 16:9" @@ -6081,7 +6081,7 @@ msgstr "Forceer 16:9" msgid "Force 24-Bit Color" msgstr "24-bits kleuren forceren" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forceer 4:3" @@ -6113,11 +6113,11 @@ msgstr "Forceer Luisterpoort:" msgid "Force Nearest" msgstr "Forceer Nearest" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Uitgeschakeld omdat %1 geen VS uitbreiding ondersteunt." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Uitgeschakeld omdat %1 geen geometry shaders ondersteunt." @@ -6196,11 +6196,11 @@ msgstr "Frame Vordering Verhoog Snelheid" msgid "Frame Advance Reset Speed" msgstr "Frame Voorwaarts Reset Snelheid" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Frame Dumping" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Framebereik" @@ -6208,7 +6208,7 @@ msgstr "Framebereik" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Frame Dump-afbeelding(en) '{0}' bestaan al. Overschrijven?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Frames om Op te Nemen:" @@ -6263,7 +6263,7 @@ msgstr "Vrije-Kijk Schakelaar" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Frans" @@ -6282,8 +6282,8 @@ msgid "From" msgstr "Van" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Van:" @@ -6339,11 +6339,11 @@ msgstr "GBA Volume" msgid "GBA Window Size" msgstr "GBA-venstergrootte" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM verandert naar \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM uitgeschakeld" @@ -6512,7 +6512,7 @@ msgid "Game Gamma:" msgstr "Gamma Spel:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Spel ID" @@ -6525,7 +6525,7 @@ msgstr "Spel ID:" msgid "Game Status" msgstr "Spelstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Spel gewijzigd naar \"%1\"" @@ -6636,7 +6636,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Codes" @@ -6668,13 +6668,13 @@ msgstr "Nieuwe statistiekidentiteit genereren" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Gegenereerde symboolnamen van '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Duits" @@ -6756,7 +6756,7 @@ msgstr "Groen Links" msgid "Green Right" msgstr "Groen Rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Rasterweergave" @@ -6838,7 +6838,7 @@ msgstr "Verbergen" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Alles verbergen" @@ -6862,11 +6862,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Hoog" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Hoogste" @@ -6909,11 +6909,11 @@ msgstr "" "maar de latentie voor anderen groter wordt. Geschikt voor casual spellen met " "3+ spelers, mogelijk op onstabiele of hoge latency-verbindingen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Host Input Autoriteit uitgeschakeld" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Host Input Autoriteit ingeschakeld" @@ -6939,7 +6939,7 @@ msgstr "Sneltoetsen" msgid "Hotkeys Require Window Focus" msgstr "Sneltoetsen vereisen vensterfocus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybride Ubershaders" @@ -7003,7 +7003,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR-gevoeligheid:" @@ -7102,7 +7102,7 @@ msgstr "" "gekoppeld aan de verbindingsstatus van de echte standaard controller (als er " "een is)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7113,7 +7113,7 @@ msgstr "" "nuttig zijn voor testen

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7169,7 +7169,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "XFB direct presenteren" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7183,7 +7183,7 @@ msgstr "" "en vermindert prestaties enigszins.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-back-up importeren…" @@ -7198,7 +7198,7 @@ msgstr "Importeren mislukt" msgid "Import Save File(s)" msgstr "Save-bestand(en) importeren" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Wii-save importeren…" @@ -7306,16 +7306,16 @@ msgstr "Incrementele Rotatie" msgid "Incremental Rotation (rad/sec)" msgstr "Incrementele Rotatie (rad/sec)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Infinity Figuur Maker" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Infinity Beheer" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Infinity Object (*.bin);;" @@ -7337,8 +7337,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informatie" @@ -7351,11 +7351,11 @@ msgid "Inject" msgstr "Injecteren" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Input" @@ -7381,7 +7381,7 @@ msgstr "" msgid "Insert &nop" msgstr "&Nop invoegen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD-Kaart Invoegen" @@ -7398,7 +7398,7 @@ msgstr "Installatiepartitie (%1)" msgid "Install Update" msgstr "Installeer Update" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WAD installeren…" @@ -7421,7 +7421,7 @@ msgstr "Instructie" msgid "Instruction Breakpoint" msgstr "Instructiebreekpunt" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instructie:" @@ -7517,7 +7517,7 @@ msgstr "Interne fout bij het genereren van AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (traagst)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreter-kern" @@ -7542,7 +7542,7 @@ msgstr "Ongeldige Pakket %1 ingevoerd: %2" msgid "Invalid Player ID" msgstr "Ongeldige Speler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Ongeldig RSO-moduleadres: %1" @@ -7567,7 +7567,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ongeldige input voor het veld \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Ongeldige input opgegeven" @@ -7604,13 +7604,13 @@ msgstr "" msgid "Invalid title ID." msgstr "Ongeldige titel-ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Ongeldig watch adres: 1%" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiaans" @@ -7623,11 +7623,11 @@ msgstr "Italië" msgid "Item" msgstr "Voorwerp" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Uit" @@ -7635,47 +7635,47 @@ msgstr "JIT Block Linking Uit" msgid "JIT Blocks" msgstr "JIT Blokken" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "Jit Branch Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Integer Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Uit (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Paired Uit" @@ -7687,11 +7687,11 @@ msgstr "JIT Recompiler voor ARM64 (aanbevolen)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler voor x86-64 (aanbevolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT-registercache uitgeschakld" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT SysteemRegisters Uit" @@ -7705,16 +7705,16 @@ msgstr "" "nooit moeten gebeuren. Meld dit incident alstublieft via de bugtracker. " "Dolphin zal nu afsluiten." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japans" @@ -7775,12 +7775,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Speler kicken" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreaans" @@ -7827,23 +7827,23 @@ msgstr "Laatst geplaatst:" msgid "Last reset:" msgstr "Laatste reset:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Vertraging:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Vertraging: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Vertraging: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Vertraging: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Vertraging: ~80 ms" @@ -7851,7 +7851,7 @@ msgstr "Vertraging: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Het starten van deze spellen kan de problemen ook verhelpen." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Leiderborden" @@ -7947,11 +7947,11 @@ msgstr "Licht" msgid "Limit Chunked Upload Speed:" msgstr "Beperk chunked-uploadsnelheid:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Lijstkolommen" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Lijstweergave" @@ -7963,15 +7963,15 @@ msgstr "Luisteren" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Laad &Slechte Mapbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Laad &Ander Mapbestand..." @@ -7983,7 +7983,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Laad Aangepaste Textures" @@ -7991,7 +7991,7 @@ msgstr "Laad Aangepaste Textures" msgid "Load File" msgstr "Laad Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "GameCube Hoofdmenu Laden" @@ -8101,19 +8101,19 @@ msgstr "Laad State Slot 8" msgid "Load State Slot 9" msgstr "Laad State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Laad State van Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Laad State van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Laad State van Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Wii-systeemmenu %1 laden" @@ -8125,28 +8125,28 @@ msgstr "Laad en Schrijf Alleen Host Save Data" msgid "Load from Selected Slot" msgstr "Laden van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Laad van Slot Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Laad mapbestand" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Laad vWii Systeem Menu %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Symbolen geladen van '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8156,7 +8156,7 @@ msgstr "" "DynamicInputTextures//.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8172,7 +8172,7 @@ msgstr "Lokaal" msgid "Lock Mouse Cursor" msgstr "Vergrendel Muisaanwijzer" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Vergrendeld" @@ -8198,7 +8198,7 @@ msgstr "Logconfiguratie" msgid "Log In" msgstr "Aanmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "JIT-instructiedekking loggen" @@ -8206,7 +8206,7 @@ msgstr "JIT-instructiedekking loggen" msgid "Log Out" msgstr "Afmelden" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Log Rendertijden naar Bestand" @@ -8222,7 +8222,7 @@ msgstr "Logger Outputs" msgid "Login Failed" msgstr "Inloggen Mislukt" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8232,20 +8232,20 @@ msgstr "" "

Gebruik deze optie als u de prestaties van Dolphin wilt meten." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Loop" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Verbinding met NetPlay-server verloren..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Laag" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Laagste" @@ -8305,7 +8305,7 @@ msgstr "Zorg ervoor dat er een Skylander in slot %1 zit!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Maker" @@ -8326,12 +8326,12 @@ msgstr "" "mist emulatie rekent.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Beheer NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Handmatige Texture Sampling" @@ -8347,11 +8347,11 @@ msgstr "Mask ROM" msgid "Match Found" msgstr "Overeenkomst Gevonden" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Max Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Max buffergrootte gewijzigd naar %1" @@ -8360,7 +8360,7 @@ msgstr "Max buffergrootte gewijzigd naar %1" msgid "Maximum tilt angle." msgstr "Maximale kantel hoek." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan leiden tot vertraging van het Wii-menu en een aantal spellen." @@ -8381,7 +8381,7 @@ msgstr "Geheugenbreekpunt" msgid "Memory Card" msgstr "Geheugenkaart" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Geheugenkaart Beheer" @@ -8436,11 +8436,11 @@ msgstr "Microfoon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Overig" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Overige instellingen" @@ -8458,7 +8458,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Verschil tussen interne data structuren." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8504,8 +8504,8 @@ msgstr "Wijzig Slot" msgid "Modifying Skylander: %1" msgstr "Wijzig Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Module gevonden: %1" @@ -8513,7 +8513,7 @@ msgstr "Module gevonden: %1" msgid "Money:" msgstr "Geld:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8573,10 +8573,10 @@ msgstr "Vermenigvuldiger" msgid "N&o to All" msgstr "N&ee op Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-controle" @@ -8585,7 +8585,7 @@ msgstr "NAND-controle" msgid "NKit Warning" msgstr "NKit-waarschuwing" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8618,7 +8618,7 @@ msgstr "" "

In geval van twijfel op 2.35 laten." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8836,7 +8836,7 @@ msgstr "Geen fouten." msgid "No extension selected." msgstr "Geen extensie geselecteerd." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Geen bestand geladen / opgenomen." @@ -8844,7 +8844,7 @@ msgstr "Geen bestand geladen / opgenomen." msgid "No game is running." msgstr "Er draait geen spel." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Er draait geen spel." @@ -8857,7 +8857,7 @@ msgstr "Geen graphics mod geselecteerd" msgid "No input" msgstr "Geen input" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Er zijn geen problemen gedetecteerd." @@ -8906,8 +8906,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9062,7 +9062,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Object Bereik" @@ -9087,7 +9087,7 @@ msgstr "Aan" msgid "On Movement" msgstr "Bij Beweging" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9112,7 +9112,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online &Documentatie" @@ -9120,7 +9120,7 @@ msgstr "Online &Documentatie" msgid "Only Show Collection" msgstr "Alleen Collectie Tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9128,7 +9128,7 @@ msgstr "" "Alleen symbolen toevoegen die beginnen met:\n" "(Leeg voor alle symbolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9147,7 +9147,7 @@ msgstr "Openen" msgid "Open &Containing Folder" msgstr "&Bijbehorende map openen" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "&Gebruikersmap openen" @@ -9156,7 +9156,7 @@ msgstr "&Gebruikersmap openen" msgid "Open Directory..." msgstr "Map openen…" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Open FIFO Log" @@ -9246,7 +9246,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9288,11 +9288,11 @@ msgstr "Output Resampling:" msgid "Overwritten" msgstr "Overschrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Input Opname Af&spelen..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9306,11 +9306,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG Compressie Level" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG Compressie Level:" @@ -9398,7 +9398,7 @@ msgstr "Pauze" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pauzeer aan het Einde van de Opname" @@ -9443,7 +9443,7 @@ msgstr "Top snelheid van buitenwaartse zwaai beweging." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Belichting" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Voer Online Systeemupdate Uit" @@ -9451,15 +9451,15 @@ msgstr "Voer Online Systeemupdate Uit" msgid "Perform System Update" msgstr "Voer Systeemupdate Uit" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Venster van prestatiemonster (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Venster van prestatiemonster (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Prestatiestatistieken" @@ -9477,7 +9477,7 @@ msgstr "Fysieke adresruimte" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Kies een debug-lettertype" @@ -9494,7 +9494,7 @@ msgid "Pitch Up" msgstr "Stamp Omhoog" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platform" @@ -9502,7 +9502,7 @@ msgstr "Platform" msgid "Play" msgstr "Spelen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Afspelen / Opnemen" @@ -9510,11 +9510,11 @@ msgstr "Afspelen / Opnemen" msgid "Play Recording" msgstr "Speel Opname" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Terugspeel Opties" @@ -9522,27 +9522,27 @@ msgstr "Terugspeel Opties" msgid "Player" msgstr "Speler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Speler Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Speler Een Vaardigheid Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Speler Een Vaardigheid Twee" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Tweede Speler" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Speler Twee Vaardigheid Een" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Speler Twee Vaardigheid Twee" @@ -9566,7 +9566,7 @@ msgstr "" "Verander de instelling \"SyncOnSkipIdle\" naar \"True\"! Op dit moment is " "het uitgeschakeld, waardoor dit probleem zeer waarschijnlijk zal optreden." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9601,7 +9601,7 @@ msgstr "Poort:" msgid "Portal Slots" msgstr "Portal Slots" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mogelijke desync gedetecteerd: %1 heeft mogelijk sync verloren in frame %2" @@ -9618,20 +9618,20 @@ msgstr "Post-Processing Effect:" msgid "Post-Processing Shader Configuration" msgstr "Post-Processing Shader Configuratie" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Geef voorkeur aan VS voor Punt/Lijn uitbreiding" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Prefetch Aangepaste Textures" @@ -9668,7 +9668,7 @@ msgstr "Druk Op Sync Knop" msgid "Pressure" msgstr "Druk" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9748,11 +9748,11 @@ msgstr "Profiel" msgid "Program Counter" msgstr "Programmateller" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Voortgang" @@ -9766,7 +9766,7 @@ msgstr "" msgid "Public" msgstr "Openbaar" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Gamelijstcache opschonen" @@ -9790,7 +9790,7 @@ msgstr "Quality of Service (QoS) kan niet worden geactiveerd." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) is succesvol geactiveerd." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Kwaliteit van de DPLII decoder. Audio vetraging neemt toe met de kwaliteit." @@ -9823,11 +9823,11 @@ msgstr "R-Analoog" msgid "READY" msgstr "GEREED" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO autodetectie" @@ -9852,7 +9852,7 @@ msgstr "Bereik Einde:" msgid "Range Start: " msgstr "Bereik Start:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Rang %1" @@ -9860,7 +9860,7 @@ msgstr "Rang %1" msgid "Raw" msgstr "Rauw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9919,7 +9919,7 @@ msgstr "" msgid "Recenter" msgstr "Hercentreren" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Opnemen" @@ -9931,11 +9931,11 @@ msgstr "Input Opnemen" msgid "Recording" msgstr "Opnemen" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opname Opties" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Opnemen..." @@ -10007,7 +10007,7 @@ msgid "Refreshing..." msgstr "Verversen..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regio" @@ -10040,7 +10040,7 @@ msgstr "Herinner Me Later" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Verwijder" @@ -10080,11 +10080,11 @@ msgstr "Hernoem symbool" msgid "Render Window" msgstr "Render-venster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderen naar hoofdvenster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10119,7 +10119,7 @@ msgstr "Reset" msgid "Reset All" msgstr "Reset Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Reset Negeer Panic Handler" @@ -10151,7 +10151,7 @@ msgstr "Reset Weergave" msgid "Reset all saved Wii Remote pairings" msgstr "Reset alle opgeslagen Wii-afstandsbediening koppelingen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -10335,19 +10335,19 @@ msgstr "Rusland" msgid "SD Card" msgstr "SD-Kaart" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD-Kaart Bestandsgrootte:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-Kaartafbeedling (*.raw);;Alle Bestanden(*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-Kaart Pad:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-Kaart-instellingen" @@ -10355,7 +10355,7 @@ msgstr "SD-Kaart-instellingen" msgid "SD Root:" msgstr "SD Root:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD Sync Map:" @@ -10390,11 +10390,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Code Op&slaan" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "S&la State Op" @@ -10426,11 +10426,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Export Opslaan" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Sla FIFO log op" @@ -10448,11 +10448,11 @@ msgstr "Spel Opslag" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Spel Save Bestanden (*.sav);;All Files (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Import Opslaan" @@ -10464,7 +10464,7 @@ msgstr "Sla Oudste State op" msgid "Save Preset" msgstr "Voorinstelling opslaan" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Sla Opnamebestand op Als" @@ -10514,23 +10514,23 @@ msgstr "Save State Slot 8" msgid "Save State Slot 9" msgstr "Save State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Save State naar Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Save State naar Oudste Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Save State naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Save State naar Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Sla Symbol Map Op &Als..." @@ -10550,11 +10550,11 @@ msgstr "Opslaan als voorinstelling..." msgid "Save as..." msgstr "Opslaan als..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Gecombineerde outputbestand opslaan als" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10568,11 +10568,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Save in de Zelfde Map als de ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Sla mapbestand op" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Sla signatuurbestand op" @@ -10580,11 +10580,11 @@ msgstr "Sla signatuurbestand op" msgid "Save to Selected Slot" msgstr "Opslaan naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Opslaan naar Slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Opslaan..." @@ -10616,7 +10616,7 @@ msgstr "Schermafdruk" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Zoeken" @@ -10645,7 +10645,7 @@ msgstr "" "Zoeken is momenteel niet mogelijk in de virtuele adresruimte. Laat het spel " "een tijdje draaien en probeer het opnieuw." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Zoek naar Instructie" @@ -10653,7 +10653,7 @@ msgstr "Zoek naar Instructie" msgid "Search games..." msgstr "Zoek Spellen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Zoek instructie" @@ -10698,11 +10698,11 @@ msgid "Select Dump Path" msgstr "Selecteer Dump Pad" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Selecteer Export Map" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Selecteer Figuur Bestand" @@ -10742,7 +10742,7 @@ msgstr "Selecteer Skylander Collectie" msgid "Select Skylander File" msgstr "Selecteer Skylander Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Selecteer Slot %1 - %2" @@ -10750,7 +10750,7 @@ msgstr "Selecteer Slot %1 - %2" msgid "Select State" msgstr "Selecteer State" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Selecteer State Slot" @@ -10817,7 +10817,7 @@ msgstr "Selecteer een Map" msgid "Select a File" msgstr "Selecteer een Bestand" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Selecteer een map om te synchroniseren met de SD-kaart afbeelding" @@ -10825,7 +10825,7 @@ msgstr "Selecteer een map om te synchroniseren met de SD-kaart afbeelding" msgid "Select a Game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Selecteer een SD-Kaartafbeelding" @@ -10837,7 +10837,7 @@ msgstr "Selecteer een bestand" msgid "Select a game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Selecteer een titel om te installeren op de NAND" @@ -10845,7 +10845,7 @@ msgstr "Selecteer een titel om te installeren op de NAND" msgid "Select e-Reader Cards" msgstr "Selecteer e-Reader Kaarten" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Selecteer het RSO module adres:" @@ -10862,7 +10862,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Selecteer het sleutelbestand (OTP/SEEPROM dump)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Selecteer het save bestand" @@ -10886,7 +10886,7 @@ msgstr "Geselecteerde controller profiel bestaat niet" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Het geselecteerde spel bestaat niet in de spellijst!" @@ -10914,7 +10914,7 @@ msgstr "" "Selecteert een hardware-adapter om te gebruiken.

In " "geval van twijfel de eerste selecteren." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10952,7 +10952,7 @@ msgstr "" "dat door sommige tv's wordt gebruikt.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10974,7 +10974,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10995,7 +10995,7 @@ msgstr "" msgid "Send" msgstr "Verzend" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensor Bar Positie:" @@ -11065,7 +11065,7 @@ msgstr "Stel symbool eindadres in" msgid "Set symbol size (%1):" msgstr "Stel symboolgrootte (%1) in:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11075,7 +11075,7 @@ msgstr "" "PAL spellen.\n" "Werkt mogelijk niet voor alle spellen." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Stelt de Wii-systeemtaal in." @@ -11087,7 +11087,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11111,7 +11111,7 @@ msgstr "" "virtuele adresruimte. Dit zal werken voor de overgrote meerderheid van " "spellen." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11125,7 +11125,7 @@ msgstr "SetupWiiMem: Kan setting.txt niet aanmaken" msgid "Severity" msgstr "Ernst" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Shadercompilatie" @@ -11147,16 +11147,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansen Controller" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Snelheidspercentage tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Toon &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "&Werkbalk tonen" @@ -11164,11 +11164,11 @@ msgstr "&Werkbalk tonen" msgid "Show Active Title in Window Title" msgstr "Actieve game in venstertitel weergeven" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Alles tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Australië tonen" @@ -11181,7 +11181,7 @@ msgstr "Huidig spel op Discord tonen" msgid "Show Disabled Codes First" msgstr "Toon Eerst de Uitgeschakelde Codes" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL tonen" @@ -11190,27 +11190,27 @@ msgstr "ELF/DOL tonen" msgid "Show Enabled Codes First" msgstr "Toon Eerst de Ingeschakelde Codes" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Frameteller tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Frametijden tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Frankrijk tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "GameCube tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Duitsland tonen" @@ -11222,23 +11222,23 @@ msgstr "Golfmodus-overlay tonen" msgid "Show Infinity Base" msgstr "Toon Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Inputweergave tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Italië tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "JPN tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Korea tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Vertragingsteller tonen" @@ -11246,19 +11246,19 @@ msgstr "Vertragingsteller tonen" msgid "Show Language:" msgstr "Taal tonen:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Toon Log &Configuratie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "NetPlay-berichten tonen" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay-ping tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Nederland tonen" @@ -11266,7 +11266,7 @@ msgstr "Nederland tonen" msgid "Show On-Screen Display Messages" msgstr "On-screen-berichtgevingen tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL tonen" @@ -11275,27 +11275,27 @@ msgstr "PAL tonen" msgid "Show PC" msgstr "PC weergeven" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Prestatiegrafieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Platforms tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Regio's tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Heropnameteller tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Rusland tonen" @@ -11303,51 +11303,51 @@ msgstr "Rusland tonen" msgid "Show Skylanders Portal" msgstr "Toon Skylanders Portal" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Spanje tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Snelheidskleuren tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Statistieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Systeemklok tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Taiwan tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "VS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Onbekend tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "VBlank-tijden tonen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "VPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Wereld tonen" @@ -11360,7 +11360,7 @@ msgid "Show in Code" msgstr "In Code Weergeven" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "In Geheugen Weergeven" @@ -11388,7 +11388,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11397,7 +11397,7 @@ msgstr "" "tijdens NetPlay.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11442,7 +11442,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11452,7 +11452,7 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11462,7 +11462,7 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11472,7 +11472,7 @@ msgstr "" "de visuele vloeiendheid.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11490,13 +11490,13 @@ msgstr "" "Toont de maximum ping van de spelers tijdens NetPlay." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11520,7 +11520,7 @@ msgstr " Schakel Zijwaarts" msgid "Sideways Wii Remote" msgstr "Wii-afstandsbediening Zijwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Signatuurdatabase" @@ -11544,7 +11544,7 @@ msgid "Signed Integer" msgstr "Signed Integer" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Vereenvoudigd Chinees" @@ -11561,7 +11561,7 @@ msgstr "Zes Assen" msgid "Size" msgstr "Grootte" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11573,7 +11573,7 @@ msgstr "" msgid "Skip" msgstr "Overslaan" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Tekenen Overslaan" @@ -11704,7 +11704,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Sorteer Alfabetisch" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Geluid:" @@ -11718,7 +11718,7 @@ msgstr "Spanje" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spaans" @@ -11726,11 +11726,11 @@ msgstr "Spaans" msgid "Speaker Pan" msgstr "Speaker Pan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Speaker Volume:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Gespecialiseerd (Standaard)" @@ -11738,7 +11738,7 @@ msgstr "Gespecialiseerd (Standaard)" msgid "Specific" msgstr "Specifiek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11790,7 +11790,7 @@ msgstr "Standaardcontroller" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Start &NetPlay..." @@ -11799,11 +11799,11 @@ msgstr "Start &NetPlay..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Start Nieuwe Cheat Zoekopdracht" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Start Input &Opname" @@ -11811,7 +11811,7 @@ msgstr "Start Input &Opname" msgid "Start Recording" msgstr "Start Opname" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "In volledig scherm starten" @@ -11823,7 +11823,7 @@ msgstr "Start met Riivolution Patches" msgid "Start with Riivolution Patches..." msgstr "Start met Riivolution Patches..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Gestart spel" @@ -11883,7 +11883,7 @@ msgstr "Stap succesvol!" msgid "Stepping" msgstr "Stappen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11912,12 +11912,12 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stoppen" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Afspelen/opnemen van input stoppen" @@ -11963,7 +11963,7 @@ msgstr "" "Texture)

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Uitrekken naar venster" @@ -12002,8 +12002,8 @@ msgstr "Stylus" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Geslaagd" @@ -12030,7 +12030,7 @@ msgstr "Exporteren van %n van de %1 save bestand(en) gelukt." msgid "Successfully exported save files" msgstr "Save bestanden succesvol geëxporteerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Certificaten succesvol uitgepakt van NAND" @@ -12042,12 +12042,12 @@ msgstr "Bestand succesvol uitgepakt." msgid "Successfully extracted system data." msgstr "Systeemdata succesvol uitgepakt." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Save bestand succesvol geïmporteerd." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Titel succesvol geïnstalleerd op de NAND." @@ -12070,12 +12070,12 @@ msgstr "Ondersteuning" msgid "Supported file formats" msgstr "Ondersteunde bestandsformaten" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Ondersteunt SD en SDHC. De standaardgrootte is 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -12136,7 +12136,7 @@ msgstr "Symboolnaam:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symbolen" @@ -12164,7 +12164,7 @@ msgstr "" "Synchroniseert de GPU- en CPU-threads om willekeurige vastlopers te " "voorkomen in Dual-core modus. (Aan = Compatibel, Uit = Snel)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12185,11 +12185,11 @@ msgid "Synchronizing save data..." msgstr "Synchroniseren van save data..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systeemtaal:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS-input" @@ -12202,7 +12202,7 @@ msgstr "TAS-gereedschap" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Tags" @@ -12220,7 +12220,7 @@ msgstr "Staart" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Maak Screenshot" @@ -12261,7 +12261,7 @@ msgstr "Textuurcache" msgid "Texture Cache Accuracy" msgstr "Nauwkeurigheid van textuurcache" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texture Dumping" @@ -12273,7 +12273,7 @@ msgstr "Textuurfiltering" msgid "Texture Filtering:" msgstr "Textuurfiltering:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Texture Formaat Overlay" @@ -12317,7 +12317,7 @@ msgstr "Het IPL bestand is geen bekende goede dump. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "De Masterpiece partities ontbreken." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12325,7 +12325,7 @@ msgstr "" "De NAND kon niet worden gerepareerd. Het wordt aanbevolen om een back-up te " "maken van uw huidige gegevens en opnieuw te beginnen met een nieuwe NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "De NAND is gerepareerd." @@ -12343,7 +12343,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12708,7 +12708,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Het opgegeven bestand \"{0}\" bestaat niet" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12773,7 +12773,7 @@ msgstr "De updatepartitie ontbreekt." msgid "The update partition is not at its normal position." msgstr "De updatepartitie staat niet op zijn normale positie." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13168,7 +13168,7 @@ msgstr "Timed Out" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titel" @@ -13177,12 +13177,12 @@ msgid "To" msgstr "Naar" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Naar:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Volledig scherm omschakelen" @@ -13271,7 +13271,7 @@ msgstr "" msgid "Toolbar" msgstr "Toolbar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Boven" @@ -13322,7 +13322,7 @@ msgid "Toy code:" msgstr "Figuur-code:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinees (Traditioneel)" @@ -13342,8 +13342,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Traversalfout" @@ -13426,7 +13426,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB Whitelist Fout" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13437,7 +13437,7 @@ msgstr "" "low-end hardware.

In geval van twijfel deze modus " "selecteren." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13449,7 +13449,7 @@ msgstr "" "

Alleen aanbevolen als u stotteringen ondervindt " "met Hybride Ubershaders en u een krachtige GPU heeft." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13463,7 +13463,7 @@ msgstr "" "het shadercompilatie met minimale impact op de prestaties, maar de " "resultaten zijn afhankelijk van het gedrag van video-stuurprogramma's." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Kan RSO-module niet automatisch detecteren" @@ -13535,11 +13535,11 @@ msgstr "Ongecomprimeerde GC/Wii-afbeeldingen (*.iso *.gcm)" msgid "Undead" msgstr "Ondood" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Laad State Ongedaan Maken" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Save State Ongedaan Maken" @@ -13560,7 +13560,7 @@ msgstr "" "van deze titel uit de NAND, zonder dat zijn save data wordt verwijderd. " "Doorgaan?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Verenigde Staten" @@ -13658,7 +13658,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Onbekend(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Onbekend(%1).bin" @@ -13674,7 +13674,7 @@ msgstr "Leeg ROM" msgid "Unlock Cursor" msgstr "Ontgrendel Cursor" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13717,7 +13717,7 @@ msgid "Up" msgstr "Omhoog" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Update" @@ -13790,7 +13790,7 @@ msgstr "Alle Wii Save Data gebruiken" msgid "Use Built-In Database of Game Names" msgstr "Gebruik Ingebouwde Database met Spelnamen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Gebruik Lossless Codec (FFV1)" @@ -13798,7 +13798,7 @@ msgstr "Gebruik Lossless Codec (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Gebruik Muis Gestuurd Wijzen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Gebruik PAL60 Modus (EuRGB60)" @@ -13812,7 +13812,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13899,7 +13899,7 @@ msgstr "" "

In geval van twijfel geselecteerd laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13909,7 +13909,7 @@ msgstr "" "zal er een render venster worden aangemaakt.

In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14205,7 +14205,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Waarschuwing" @@ -14328,7 +14328,7 @@ msgstr "Westers (Windows-1252)" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14340,7 +14340,7 @@ msgstr "" "Mipmapdetectie' is ingeschakeld in Verbeteringen." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14352,7 +14352,7 @@ msgstr "" "Mipmapdetectie' is ingeschakeld in Verbeteringen." "

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Whitelist van USB Passthrough Apparaten" @@ -14402,7 +14402,7 @@ msgstr "Wii-afstandbedieningsknoppen" msgid "Wii Remote Gyroscope" msgstr "Gyroscoop van Wii-afstandbediening" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii-afstandsbedienings-instellingen" @@ -14430,7 +14430,7 @@ msgstr "Wii en Wii-afstandsbediening" msgid "Wii data is not public yet" msgstr "Wii data is nog niet publiek" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii save bestanden (*.bin);;All Files (*)" @@ -14438,7 +14438,7 @@ msgstr "Wii save bestanden (*.bin);;All Files (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools Signatuur MEGA Bestand" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -14469,7 +14469,7 @@ msgstr "Wereld" msgid "Write" msgstr "Schrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -14518,11 +14518,11 @@ msgstr "Verkeerde regio" msgid "Wrong revision" msgstr "Verkeerde revisie" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -14573,7 +14573,7 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja op &Alles" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14583,7 +14583,7 @@ msgstr "" "de map in %1. Alle huidige inhoud van de map zal worden verwijderd. Weet u " "zeker dat u door wilt gaan?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14727,7 +14727,7 @@ msgstr "" "Wilt u nu stoppen om het probleem op te lossen?\n" "Als u \"Nee\" kiest, kan het geluid vervormd zijn." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/pl.po b/Languages/po/pl.po index 2d2874f7db..b473ee0b36 100644 --- a/Languages/po/pl.po +++ b/Languages/po/pl.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: FlexBy, 2021,2023\n" "Language-Team: Polish (http://app.transifex.com/delroth/dolphin-emu/language/" @@ -105,7 +105,7 @@ msgstr "" "%1\n" "chce dołączyć do Twojej rozgrywki." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -159,7 +159,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -191,7 +191,7 @@ msgstr "%1 nie wspiera tej funkcji na twoim systemie." msgid "%1 doesn't support this feature." msgstr "%1 nie wspiera tej funkcji." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -201,11 +201,11 @@ msgstr "" "%2 obiekt(ów)\n" "Aktualna klatka: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 dołączył(a)" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 wyszedł" @@ -213,11 +213,11 @@ msgstr "%1 wyszedł" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -229,8 +229,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -247,7 +247,7 @@ msgstr "Znaleziono %1 sesję" msgid "%1 sessions found" msgstr "Znaleziono %1 sesji" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -355,11 +355,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&O programie" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Dodaj punkt przerwania pamięci" @@ -376,11 +376,11 @@ msgstr "&Dodaj funkcję" msgid "&Add..." msgstr "&Dodaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Ustawienia &audio" @@ -396,11 +396,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Punkty przerwania" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -408,15 +408,15 @@ msgstr "" msgid "&Cancel" msgstr "&Anuluj" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Sprawdź aktualizacje..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "Wy&czyść Symbole" @@ -424,7 +424,7 @@ msgstr "Wy&czyść Symbole" msgid "&Clone..." msgstr "&Klonuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -432,7 +432,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Ustawienia &kontrolerów" @@ -455,13 +455,13 @@ msgstr "&Usuń" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Usuń obejrzenie" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -475,11 +475,11 @@ msgstr "&Edytuj kod..." msgid "&Edit..." msgstr "&Edytuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulacja" @@ -500,40 +500,40 @@ msgid "&Export as .gci..." msgstr "&Eksportuj jako .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Plik" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Czcionka..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "Wyprzedzanie &klatek" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Generuj Symbole Z" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&Repozytorium GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Ustawienia &graficzne" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "Po&moc" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Ustawienia &skrótów klawiaturowych" @@ -553,7 +553,7 @@ msgstr "&Importuj Stan..." msgid "&Import..." msgstr "&Importuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -565,7 +565,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -577,11 +577,11 @@ msgstr "&Język:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Wczytaj stan" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -591,11 +591,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "Pa&mięć" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Film" @@ -615,7 +615,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Wycisz" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Sieć" @@ -624,23 +624,23 @@ msgid "&No" msgstr "&Nie" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Otwórz..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opcje" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "W&strzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Graj" @@ -648,7 +648,7 @@ msgstr "&Graj" msgid "&Properties" msgstr "&Właściwości" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Tryb tylko do odczytu" @@ -656,7 +656,7 @@ msgstr "&Tryb tylko do odczytu" msgid "&Refresh List" msgstr "&Odśwież listę" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Rejestry" @@ -674,11 +674,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "Z&resetuj" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -686,7 +686,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -694,7 +694,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -702,7 +702,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "Limit &szybkości:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Zatrzymaj" @@ -710,7 +710,7 @@ msgstr "&Zatrzymaj" msgid "&Theme:" msgstr "&Motyw:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Wątków" @@ -718,7 +718,7 @@ msgstr "&Wątków" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Narzędzia" @@ -728,21 +728,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Widok" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Obejrz" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Strona internetowa" @@ -754,11 +754,11 @@ msgstr "Wi&ki" msgid "&Yes" msgstr "&Tak" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -806,7 +806,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -872,7 +872,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -956,7 +956,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1057,7 +1057,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Jeśli nie jesteś pewien, pozostaw to pole niezaznaczone.
If unsure, leave this unchecked." @@ -1867,19 +1867,19 @@ msgstr "Rejestr BP" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Ustawienia silnika" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Silnik:" @@ -1922,7 +1922,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Baner" @@ -1946,7 +1946,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Podstawowe" @@ -1998,11 +1998,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2012,7 +2012,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2048,7 +2048,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2060,11 +2060,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Pełny ekran bez ramek" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Dół" @@ -2241,20 +2241,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Rozmiar bufora:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Rozmiar bufora zmieniono na %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Bufor:" @@ -2303,7 +2303,7 @@ msgstr "" msgid "C Stick" msgstr "C Gałka" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2327,7 +2327,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "Buforowany Interpreter (wolniejszy)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2408,11 +2408,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Anuluj" @@ -2497,7 +2497,7 @@ msgstr "" msgid "Change &Disc" msgstr "Zmień &dysk" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Zmień &dysk..." @@ -2519,7 +2519,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2537,7 +2537,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" "Zmienianie cheatów uzyska efekt dopiero wtedy, gdy gra zostanie ponownie " @@ -2547,7 +2547,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2559,7 +2559,7 @@ msgstr "Rozmówki" msgid "Cheat Code Editor" msgstr "Edytor kodów cheatowania" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Szukaj cheatów" @@ -2567,7 +2567,7 @@ msgstr "Szukaj cheatów" msgid "Cheats Manager" msgstr "Menadżer cheatów" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2605,11 +2605,11 @@ msgstr "Wybierz plik do otwarcia" msgid "Choose a file to open or create" msgstr "Wybierz plik do otwarcia lub utworzenia" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2640,7 +2640,7 @@ msgstr "Kontroler Klasyczny" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Wyczyść" @@ -2648,7 +2648,7 @@ msgstr "Wyczyść" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Wyczyść pamięć podręczną" @@ -2669,7 +2669,7 @@ msgstr "Sklonuj i &edytuj kod..." msgid "Close" msgstr "Zamknij" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ko&nfiguracja" @@ -2713,7 +2713,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2740,7 +2740,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2750,7 +2750,7 @@ msgstr "Kompilowanie shaderów" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2865,7 +2865,7 @@ msgstr "Konfiguruj" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfiguruj Dolphin" @@ -2889,7 +2889,7 @@ msgstr "Skonfiguruj wyjście" msgid "Confirm" msgstr "Potwierdź" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Potwierdź przy zatrzymaniu" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2908,15 +2908,15 @@ msgstr "Potwierdzenie" msgid "Connect" msgstr "Połącz" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Podłącz Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Podłącz klawiaturę USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2936,7 +2936,7 @@ msgstr "Połącz Wiilot 3" msgid "Connect Wii Remote 4" msgstr "Połącz Wiilot 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Połącz Wiiloty" @@ -3064,8 +3064,8 @@ msgstr "" msgid "Convergence:" msgstr "Konwergencja:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3073,9 +3073,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3083,9 +3083,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3105,8 +3105,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3300,7 +3300,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3316,13 +3316,13 @@ msgstr "" msgid "Country:" msgstr "Kraj:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3353,11 +3353,11 @@ msgstr "Twórca:" msgid "Critical" msgstr "Krytyczny" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Przycinanie obrazu" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3369,18 +3369,18 @@ msgstr "" msgid "Crossfade" msgstr "Suwak" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Aktualny region" @@ -3400,11 +3400,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3412,15 +3412,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3463,7 +3463,7 @@ msgstr "" msgid "DK Bongos" msgstr "Bongosy DK" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Tryb emulacji DSP" @@ -3471,15 +3471,15 @@ msgstr "Tryb emulacji DSP" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3550,7 +3550,7 @@ msgstr "Dead Zone" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Debugowanie" @@ -3560,7 +3560,7 @@ msgstr "Debugowanie" msgid "Decimal" msgstr "Dziesiętnie" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3607,7 +3607,7 @@ msgstr "Domyślne" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3623,7 +3623,7 @@ msgstr "Domyślne ISO:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3631,7 +3631,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3677,7 +3677,7 @@ msgstr "Głębia:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" @@ -3726,7 +3726,7 @@ msgstr "" msgid "Detect" msgstr "Wykryj" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3756,7 +3756,7 @@ msgstr "Ustawienia urządzenia" msgid "Device VID (e.g., 057e)" msgstr "VID urządzenia (np. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3764,7 +3764,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Ekran wygasa po 5 minutach braku aktywności." @@ -3788,7 +3788,7 @@ msgstr "Wyłącz prostokąt ograniczający" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3796,11 +3796,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "Wyłącz limit szybkości emulacji" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3808,11 +3808,11 @@ msgstr "" msgid "Disable Fog" msgstr "Wyłącz mgłę" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3827,7 +3827,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4192,11 +4192,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holenderski" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Wyjście" @@ -4220,7 +4220,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Wczesne aktualizacje pamięci" @@ -4294,7 +4294,7 @@ msgstr "Wbudowany bufor klatki (Embedded Frame Buffer - EFB)" msgid "Empty" msgstr "Pusty" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Wątek emulacji jest już uruchomiony" @@ -4302,7 +4302,7 @@ msgstr "Wątek emulacji jest już uruchomiony" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4320,7 +4320,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4342,16 +4342,16 @@ msgstr "Szybkość emulacji" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Włącz weryfikację warstw API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Włącz rozciąganie dźwięku" @@ -4399,7 +4399,7 @@ msgstr "" msgid "Enable FPRF" msgstr "Włącz FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4425,7 +4425,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4438,7 +4438,7 @@ msgstr "Włącz MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Włącz skanowanie progresywne" @@ -4447,11 +4447,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Włącz wygaszacz ekranu" @@ -4471,11 +4471,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "Włącz raportowanie statystyk użytkowania" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Włącz przedstawienie szkieletowe" @@ -4531,7 +4531,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4566,7 +4566,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4574,7 +4574,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4591,7 +4591,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4619,7 +4619,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4627,7 +4627,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4635,7 +4635,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4664,7 +4664,7 @@ msgstr "Enet nie zainicjował się" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Angielski" @@ -4681,7 +4681,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "Wprowadź ID urządzenia USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4705,7 +4705,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4744,9 +4744,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4759,24 +4759,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4806,7 +4806,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4916,12 +4916,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4965,11 +4965,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Eksportuj wszystkie zapisy Wii" @@ -4984,7 +4984,7 @@ msgstr "" msgid "Export Recording" msgstr "Eksportuj nagranie" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Eksportuj nagranie..." @@ -5012,7 +5012,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5040,7 +5040,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Zewnętrzny bufor klatki (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Wypakuj certyfikaty z NAND" @@ -5078,7 +5078,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Odtwarzacz FIFO" @@ -5096,7 +5096,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5116,7 +5116,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5137,7 +5137,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5191,7 +5191,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5218,18 +5218,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5256,7 +5256,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5268,8 +5268,8 @@ msgstr "" "Nasłuch na porcie %1 zakończony niepowodzeniem. Czy jest uruchomiony jakiś " "inny serwer NetPlay?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5281,7 +5281,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5309,11 +5309,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5361,11 +5361,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5424,11 +5424,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5489,27 +5489,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Nie udało się zapisać log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5560,7 +5560,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5596,7 +5596,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5610,7 +5610,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5618,24 +5618,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Informacje o pliku" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nazwa pliku" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Rozmiar pliku" @@ -5753,7 +5753,7 @@ msgid "" "\">refer to this page
." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Wymuszaj 16:9" @@ -5761,7 +5761,7 @@ msgstr "Wymuszaj 16:9" msgid "Force 24-Bit Color" msgstr "Wymuszaj 24-bitowy kolor" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Wymuszaj 4:3" @@ -5793,11 +5793,11 @@ msgstr "Wymuszaj nasłuch na porcie:" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5871,11 +5871,11 @@ msgstr "Zwiększ szybkość wyprzedzania klatek" msgid "Frame Advance Reset Speed" msgstr "Zresetuj szybkość wyprzedzania klatek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Zrzucanie klatek" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Zasięg klatki" @@ -5883,7 +5883,7 @@ msgstr "Zasięg klatki" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francuski" @@ -5953,8 +5953,8 @@ msgid "From" msgstr "Z" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -6010,11 +6010,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6158,7 +6158,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID gry" @@ -6171,7 +6171,7 @@ msgstr "ID gry:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Zmieniono grę na \"%1\"" @@ -6279,7 +6279,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Kody Gecko" @@ -6311,13 +6311,13 @@ msgstr "Generuj nową tożsamość" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Niemiecki" @@ -6393,7 +6393,7 @@ msgstr "Zielony lewo" msgid "Green Right" msgstr "Zielony prawo" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Widok kafelków" @@ -6475,7 +6475,7 @@ msgstr "Ukryj" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6499,11 +6499,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6542,11 +6542,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "Skróty klawiaturowe" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6630,7 +6630,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Czułość IR" @@ -6703,14 +6703,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6754,7 +6754,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Natychmiastowo obecny XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6763,7 +6763,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6778,7 +6778,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importuj zapis Wii..." @@ -6879,16 +6879,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6908,8 +6908,8 @@ msgstr "Informacje" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informacja" @@ -6922,11 +6922,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Wejście" @@ -6952,7 +6952,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Włóż kartę SD" @@ -6969,7 +6969,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Zainstaluj WAD..." @@ -6992,7 +6992,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7078,7 +7078,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (najwolniejszy)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7103,7 +7103,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7128,7 +7128,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7166,13 +7166,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Włoski" @@ -7185,11 +7185,11 @@ msgstr "Włochy" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7197,47 +7197,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7249,11 +7249,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7264,16 +7264,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japonia" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japoński" @@ -7333,12 +7333,12 @@ msgstr "" msgid "Kick Player" msgstr "Wyrzuć gracza" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreański" @@ -7385,23 +7385,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Opóźnienie" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7409,7 +7409,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7499,11 +7499,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Pokaż kolumny" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Widok listy" @@ -7515,15 +7515,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Wczytaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7535,7 +7535,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Wczytuj dostosowane tekstury" @@ -7543,7 +7543,7 @@ msgstr "Wczytuj dostosowane tekstury" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7653,19 +7653,19 @@ msgstr "Wczytaj stan Slot 8" msgid "Load State Slot 9" msgstr "Wczytaj stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Wczytaj stan z pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Wczytaj stan z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Wczytaj stan ze slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7677,35 +7677,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Wczytaj z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Wczytaj ze slotu Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Wczytaj plik map" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Wczytaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7719,7 +7719,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7745,7 +7745,7 @@ msgstr "Konfiguracja logu" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7753,7 +7753,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Loguj czas renderowania do pliku" @@ -7769,27 +7769,27 @@ msgstr "Logger Outputs" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7849,7 +7849,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Producent" @@ -7866,12 +7866,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7887,11 +7887,11 @@ msgstr "" msgid "Match Found" msgstr "Trafienie znalezione" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7900,7 +7900,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Może powodować spowolnienie w Wii Menu i niektórych grach." @@ -7921,7 +7921,7 @@ msgstr "" msgid "Memory Card" msgstr "Karta pamięci" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7972,11 +7972,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Różne" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Ustawienia różne" @@ -7992,7 +7992,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8012,7 +8012,7 @@ msgstr "" msgid "Modifier" msgstr "Zmiennik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8028,8 +8028,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -8037,7 +8037,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8095,10 +8095,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8107,7 +8107,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8134,7 +8134,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8344,7 +8344,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8352,7 +8352,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8365,7 +8365,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Nie wykryto żadnych problemów" @@ -8409,8 +8409,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8559,7 +8559,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Zasięg objektu" @@ -8584,7 +8584,7 @@ msgstr "Włączone" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8606,7 +8606,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Dokumentacja online" @@ -8614,13 +8614,13 @@ msgstr "&Dokumentacja online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8639,7 +8639,7 @@ msgstr "Otwórz" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8648,7 +8648,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Otwórz log FIFO" @@ -8738,7 +8738,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8780,11 +8780,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Odtwórz nagranie wejścia..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -8798,11 +8798,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8890,7 +8890,7 @@ msgstr "Wstrzymaj" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Wstrzymaj na końcu filmu" @@ -8935,7 +8935,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Oświetlenie na piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8943,15 +8943,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8969,7 +8969,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8986,7 +8986,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platforma" @@ -8994,7 +8994,7 @@ msgstr "Platforma" msgid "Play" msgstr "Graj" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -9002,11 +9002,11 @@ msgstr "" msgid "Play Recording" msgstr "Odtwórz nagranie" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opcje odtwarzania" @@ -9014,27 +9014,27 @@ msgstr "Opcje odtwarzania" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9056,7 +9056,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9089,7 +9089,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9105,20 +9105,20 @@ msgstr "Efekt przetwarzania końcowego:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Wstępnie pobieraj dostosowane tekstury" @@ -9155,7 +9155,7 @@ msgstr "Naciśnij przycisk Sync" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9224,11 +9224,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "Licznik programu" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9242,7 +9242,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9266,7 +9266,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9298,11 +9298,11 @@ msgstr "R-Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9327,7 +9327,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9335,7 +9335,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9394,7 +9394,7 @@ msgstr "" msgid "Recenter" msgstr "Wyśrodkuj" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Nagranie" @@ -9406,11 +9406,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opcje nagrywania" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Nagrywanie..." @@ -9474,7 +9474,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9507,7 +9507,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Usuń" @@ -9544,11 +9544,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderuj do okna głównego‭" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9581,7 +9581,7 @@ msgstr "Zresetuj" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9613,7 +9613,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Zresetuj wszystkie zapisane sparowania Wiilotów" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9792,19 +9792,19 @@ msgstr "Rosja" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Ścieżka karty SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9812,7 +9812,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9847,11 +9847,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Z&apisz stan" @@ -9883,11 +9883,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Zapisz log FIFO" @@ -9905,11 +9905,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9921,7 +9921,7 @@ msgstr "Zapisz najstarszy stan" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9971,23 +9971,23 @@ msgstr "Zapisz stan Slot 8" msgid "Save State Slot 9" msgstr "Zapisz stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Zapisz stan do pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Zapisz stan w najstarszym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Zapisz stan we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Zapisz stan w slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -10007,11 +10007,11 @@ msgstr "" msgid "Save as..." msgstr "Zapisz jako..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10022,11 +10022,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -10034,11 +10034,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "Zapisz we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Zapisz w slocie %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Zapisz..." @@ -10068,7 +10068,7 @@ msgstr "Zrzut ekranu" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Szukaj" @@ -10095,7 +10095,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10103,7 +10103,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10148,11 +10148,11 @@ msgid "Select Dump Path" msgstr "Wybierz ścieżkę zrzutu" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10192,7 +10192,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Wybierz slot %1 - %2" @@ -10200,7 +10200,7 @@ msgstr "Wybierz slot %1 - %2" msgid "Select State" msgstr "Wybierz stan" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Wybierz slot stanu" @@ -10267,7 +10267,7 @@ msgstr "Wybierz ścieżkę" msgid "Select a File" msgstr "Wybierz plik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10275,7 +10275,7 @@ msgstr "" msgid "Select a Game" msgstr "Wybierz grę" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10287,7 +10287,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10295,7 +10295,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10312,7 +10312,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Wybierz plik do zapisu" @@ -10336,7 +10336,7 @@ msgstr "Wybrany profil kontrolera nie istnieje" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10360,7 +10360,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10390,7 +10390,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10412,7 +10412,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10426,7 +10426,7 @@ msgstr "" msgid "Send" msgstr "Wyślij" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Pozycja Sensor Baru:" @@ -10491,7 +10491,7 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10501,7 +10501,7 @@ msgstr "" "gier PAL.\n" "Może nie działać z niektórymi grami." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Ustawia język systemu Wii." @@ -10513,7 +10513,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10532,7 +10532,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10546,7 +10546,7 @@ msgstr "SetupWiiMem: Nie można utworzyć pliku setting.txt" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10568,16 +10568,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Pokaż &log" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Pokaż pasek &narzędzi" @@ -10585,11 +10585,11 @@ msgstr "Pokaż pasek &narzędzi" msgid "Show Active Title in Window Title" msgstr "Pokazuj aktywny tytuł w tytule okna" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Pokaż Australię" @@ -10602,7 +10602,7 @@ msgstr "Pokazuj aktualną grę w programie Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Pokaż ELF/DOL" @@ -10611,27 +10611,27 @@ msgstr "Pokaż ELF/DOL" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Pokazuj kl./s" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Pokazuj licznik klatek" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Pokaż Francję" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Pokaż GameCube'a" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Pokaż Niemcy" @@ -10643,23 +10643,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Pokaż wejścia ekranu" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Pokaż Włochy" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Pokaż Koreę" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Pokaż licznik lagów" @@ -10667,19 +10667,19 @@ msgstr "Pokaż licznik lagów" msgid "Show Language:" msgstr "Pokaż język:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Pokaż &konfigurację logu" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Pokazuj wiadomości NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Pokazuj ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Pokaż Holandię" @@ -10687,7 +10687,7 @@ msgstr "Pokaż Holandię" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Pokaż PAL" @@ -10696,27 +10696,27 @@ msgstr "Pokaż PAL" msgid "Show PC" msgstr "Pokaż PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Pokaż platformy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Pokaż regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Pokaż Rosję" @@ -10724,51 +10724,51 @@ msgstr "Pokaż Rosję" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Pokaż Hiszpanię" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Pokazuj statystyki" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Pokaż zegar systemowy" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Pokaż Tajwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Pokaż USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Pokaż nieznane" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Pokaż WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Pokaż Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Pokaż świat" @@ -10781,7 +10781,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10809,13 +10809,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10854,47 +10854,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10916,7 +10916,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "Wiilot trzymany poziomo" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10940,7 +10940,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chiński uproszczony" @@ -10957,7 +10957,7 @@ msgstr "" msgid "Size" msgstr "Rozmiar" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10967,7 +10967,7 @@ msgstr "" msgid "Skip" msgstr "Pomiń" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11086,7 +11086,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11100,7 +11100,7 @@ msgstr "Hiszpania" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Hiszpański" @@ -11108,11 +11108,11 @@ msgstr "Hiszpański" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Poziom głośnika:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11120,7 +11120,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11162,7 +11162,7 @@ msgstr "Standardowy kontroler" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Uruchom &NetPlay..." @@ -11171,11 +11171,11 @@ msgstr "Uruchom &NetPlay..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Rozpocznij nagrywanie wejścia" @@ -11183,7 +11183,7 @@ msgstr "&Rozpocznij nagrywanie wejścia" msgid "Start Recording" msgstr "Rozpocznij nagrywanie" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11195,7 +11195,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11255,7 +11255,7 @@ msgstr "Krok wykonany!" msgid "Stepping" msgstr "Kroki" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11284,12 +11284,12 @@ msgid "Stick" msgstr "Gałka" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Zatrzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11325,7 +11325,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Rozciągnij do okna" @@ -11364,8 +11364,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Powodzenie" @@ -11392,7 +11392,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "Pliki zapisów zostały pomyślnie wyeksportowane" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Certyfikaty z NAND zostały pomyślnie wyodrębnione" @@ -11404,12 +11404,12 @@ msgstr "Plik został pomyślnie wyodrębniony." msgid "Successfully extracted system data." msgstr "Dane systemowe zostały pomyślnie wyodrębnione." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Ten tytuł został pomyślnie zainstalowany do NAND." @@ -11432,12 +11432,12 @@ msgstr "Wsparcie" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11495,7 +11495,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symbole" @@ -11521,7 +11521,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11540,11 +11540,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Język systemu:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Wejście TAS" @@ -11557,7 +11557,7 @@ msgstr "Narzędzia TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11575,7 +11575,7 @@ msgstr "" msgid "Taiwan" msgstr "Tajwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Zrób zrzut ekranu" @@ -11614,7 +11614,7 @@ msgstr "Bufor tekstur" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11626,7 +11626,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Nakładka formatu tekstur" @@ -11663,13 +11663,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND został naprawiony." @@ -11684,7 +11684,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11978,7 +11978,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12036,7 +12036,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12367,7 +12367,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Tytuł" @@ -12376,12 +12376,12 @@ msgid "To" msgstr "Do" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Do:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Przełącz pełny &ekran" @@ -12470,7 +12470,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Góra" @@ -12521,7 +12521,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chiński tradycyjny" @@ -12541,8 +12541,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12623,14 +12623,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12638,7 +12638,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12647,7 +12647,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12710,11 +12710,11 @@ msgstr "Nieskompresowane obrazy gier GC/Wii (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Cofnij wczytywanie stanu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Cofnij zapisywanie stanu" @@ -12732,7 +12732,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Stany Zjednoczone" @@ -12824,7 +12824,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12840,7 +12840,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12883,7 +12883,7 @@ msgid "Up" msgstr "Góra" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Aktualizuj" @@ -12954,7 +12954,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "Użyj wbudowanej bazy danych nazw gier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12962,7 +12962,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Użyj trybu PAL60 (EuRGB60)" @@ -12976,7 +12976,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13044,14 +13044,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13314,7 +13314,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Ostrzeżenie" @@ -13403,7 +13403,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13411,7 +13411,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13419,7 +13419,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Zezwolone urządzenia przejściowe USB" @@ -13469,7 +13469,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Ustawienia Wii Pilota" @@ -13497,7 +13497,7 @@ msgstr "Wii i Wiilot" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Pliki zapisu Wii (*.bin);Wszystkie pliki (*)" @@ -13505,7 +13505,7 @@ msgstr "Pliki zapisu Wii (*.bin);Wszystkie pliki (*)" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13536,7 +13536,7 @@ msgstr "Świat" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13585,11 +13585,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13640,14 +13640,14 @@ msgstr "Tak" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13744,7 +13744,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/pt.po b/Languages/po/pt.po index 4e05f1b99d..64e49128f2 100644 --- a/Languages/po/pt.po +++ b/Languages/po/pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zilaan , 2011\n" "Language-Team: Portuguese (http://app.transifex.com/delroth/dolphin-emu/" @@ -80,7 +80,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -166,18 +166,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -185,11 +185,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -201,8 +201,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -219,7 +219,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -327,11 +327,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -348,11 +348,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -368,11 +368,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Pontos de partida" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -380,15 +380,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -396,7 +396,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -404,7 +404,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -427,13 +427,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -447,11 +447,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulação" @@ -472,40 +472,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Ficheiro" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Avançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Definições Gráficas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Definições de Teclas de Atalho" @@ -525,7 +525,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -537,7 +537,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -549,11 +549,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Carregar Estado" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -563,11 +563,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -575,11 +575,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -587,7 +587,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -596,23 +596,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Começar" @@ -620,7 +620,7 @@ msgstr "&Começar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registos" @@ -646,11 +646,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -658,7 +658,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -666,7 +666,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -674,7 +674,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Parar" @@ -682,7 +682,7 @@ msgstr "&Parar" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Ferramentas" @@ -700,21 +700,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Ver" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -726,11 +726,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -778,7 +778,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -844,7 +844,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -928,7 +928,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1029,7 +1029,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1133,7 +1133,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1175,8 +1175,8 @@ msgstr "Precisão:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1256,7 +1256,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1268,7 +1268,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1276,7 +1276,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptador:" @@ -1333,7 +1333,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Adicionar..." @@ -1347,7 +1347,7 @@ msgstr "Adicionar..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1541,7 +1541,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1581,7 +1581,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analisar" @@ -1607,15 +1607,15 @@ msgstr "Anti-Serrilhamento" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1633,7 +1633,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1665,16 +1665,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Proporção de ecrã:" @@ -1715,11 +1715,11 @@ msgstr "" msgid "Audio" msgstr "Áudio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Áudio Backend :" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Automático" @@ -1756,7 +1756,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1764,15 +1764,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1820,19 +1820,19 @@ msgstr "" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Definições Backend" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1875,7 +1875,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -1899,7 +1899,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Básico" @@ -1951,11 +1951,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1965,7 +1965,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2001,7 +2001,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2013,11 +2013,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Inferior" @@ -2194,20 +2194,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2256,7 +2256,7 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2280,7 +2280,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2360,11 +2360,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2449,7 +2449,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Mudar &Disco..." @@ -2471,7 +2471,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2489,7 +2489,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2497,7 +2497,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2509,7 +2509,7 @@ msgstr "Conversa" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Procura de Cheats" @@ -2517,7 +2517,7 @@ msgstr "Procura de Cheats" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2555,11 +2555,11 @@ msgstr "Escolha um ficheiro para abrir" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2590,7 +2590,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Limpar" @@ -2598,7 +2598,7 @@ msgstr "Limpar" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2619,7 +2619,7 @@ msgstr "" msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2663,7 +2663,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2690,7 +2690,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2700,7 +2700,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "Configuração" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2839,7 +2839,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2847,7 +2847,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmar Ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2858,15 +2858,15 @@ msgstr "" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2886,7 +2886,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3014,8 +3014,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3023,9 +3023,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3033,9 +3033,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3055,8 +3055,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3246,7 +3246,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3262,13 +3262,13 @@ msgstr "" msgid "Country:" msgstr "País" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3299,11 +3299,11 @@ msgstr "" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Recortar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3315,18 +3315,18 @@ msgstr "" msgid "Crossfade" msgstr "Desvanecimento cruzado" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3346,11 +3346,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3358,15 +3358,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3409,7 +3409,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3417,15 +3417,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3496,7 +3496,7 @@ msgstr "Zona morta" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuração" @@ -3506,7 +3506,7 @@ msgstr "Depuração" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3553,7 +3553,7 @@ msgstr "Padrão" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3569,7 +3569,7 @@ msgstr "ISO Padrão:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3577,7 +3577,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3623,7 +3623,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" @@ -3672,7 +3672,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3702,7 +3702,7 @@ msgstr "Definições de Dispositivo" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3710,7 +3710,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3734,7 +3734,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3742,11 +3742,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3754,11 +3754,11 @@ msgstr "" msgid "Disable Fog" msgstr "Desactivar Nevoeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3773,7 +3773,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4135,11 +4135,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandês" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "S&air" @@ -4163,7 +4163,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Actualizações de Memória Inicial" @@ -4237,7 +4237,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread de Emulador já em execução" @@ -4245,7 +4245,7 @@ msgstr "Thread de Emulador já em execução" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4263,7 +4263,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4285,16 +4285,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4342,7 +4342,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4368,7 +4368,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4381,7 +4381,7 @@ msgstr "Activar MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activar Progressive Scan" @@ -4390,11 +4390,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activar Protector de Ecrã" @@ -4414,11 +4414,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activar Wireframe" @@ -4474,7 +4474,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4505,7 +4505,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4513,7 +4513,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4530,7 +4530,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4558,7 +4558,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4566,7 +4566,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4574,7 +4574,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4603,7 +4603,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglês" @@ -4620,7 +4620,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4644,7 +4644,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4683,9 +4683,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4698,24 +4698,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4745,7 +4745,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4852,12 +4852,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4901,11 +4901,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportar Todos os Jogos Guardados Wii" @@ -4920,7 +4920,7 @@ msgstr "" msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -4948,7 +4948,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4976,7 +4976,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5014,7 +5014,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Reprodutor FIFO" @@ -5032,7 +5032,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5052,7 +5052,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5127,7 +5127,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5154,18 +5154,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5192,7 +5192,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5202,8 +5202,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5215,7 +5215,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5243,11 +5243,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5295,11 +5295,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5358,11 +5358,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5423,27 +5423,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5494,7 +5494,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5530,7 +5530,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5544,7 +5544,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5552,24 +5552,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Informação de Ficheiro" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5687,7 +5687,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forçar 16:9" @@ -5695,7 +5695,7 @@ msgstr "Forçar 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forçar 4:3" @@ -5727,11 +5727,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5805,11 +5805,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Alcance de Quadros" @@ -5817,7 +5817,7 @@ msgstr "Alcance de Quadros" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francês" @@ -5887,8 +5887,8 @@ msgid "From" msgstr "De" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5944,11 +5944,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6092,7 +6092,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6105,7 +6105,7 @@ msgstr "ID do Jogo:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6213,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6245,13 +6245,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemão" @@ -6327,7 +6327,7 @@ msgstr "Verde Esquerda" msgid "Green Right" msgstr "Verde Direita" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6409,7 +6409,7 @@ msgstr "Esconder" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6433,11 +6433,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6476,11 +6476,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6506,7 +6506,7 @@ msgstr "Teclas de Atalho" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6564,7 +6564,7 @@ msgid "IR" msgstr "IV" #. 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:363 msgid "IR Sensitivity:" msgstr "Sensibilidade de Infra Vermelhos" @@ -6628,14 +6628,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6679,7 +6679,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6688,7 +6688,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6703,7 +6703,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6804,16 +6804,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6833,8 +6833,8 @@ msgstr "Informação" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informação" @@ -6847,11 +6847,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Entrada" @@ -6877,7 +6877,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir Cartão SD" @@ -6894,7 +6894,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6917,7 +6917,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7003,7 +7003,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7028,7 +7028,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7053,7 +7053,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7089,13 +7089,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7108,11 +7108,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7120,47 +7120,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7172,11 +7172,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7187,16 +7187,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonês" @@ -7256,12 +7256,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -7308,23 +7308,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7332,7 +7332,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7422,11 +7422,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7438,15 +7438,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7458,7 +7458,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carregar Texturas Personalizadas" @@ -7466,7 +7466,7 @@ msgstr "Carregar Texturas Personalizadas" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7576,19 +7576,19 @@ msgstr "Carregar Estado Slot 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7600,35 +7600,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7642,7 +7642,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7668,7 +7668,7 @@ msgstr "Configuração de Relatório" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7676,7 +7676,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7692,27 +7692,27 @@ msgstr "Saídas de Gerador de Relatórios" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7772,7 +7772,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7789,12 +7789,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7810,11 +7810,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7823,7 +7823,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7844,7 +7844,7 @@ msgstr "" msgid "Memory Card" msgstr "Cartão de memória" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7895,11 +7895,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diversos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configurações Diversas" @@ -7915,7 +7915,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7935,7 +7935,7 @@ msgstr "" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7951,8 +7951,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7960,7 +7960,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8018,10 +8018,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8030,7 +8030,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8057,7 +8057,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8267,7 +8267,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8275,7 +8275,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8288,7 +8288,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8332,8 +8332,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8482,7 +8482,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Alcance de Objecto" @@ -8507,7 +8507,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8529,7 +8529,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Online e documentação" @@ -8537,13 +8537,13 @@ msgstr "Online e documentação" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8560,7 +8560,7 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8569,7 +8569,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8659,7 +8659,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8701,11 +8701,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8719,11 +8719,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8811,7 +8811,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8856,7 +8856,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminação por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8864,15 +8864,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8890,7 +8890,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8907,7 +8907,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8915,7 +8915,7 @@ msgstr "" msgid "Play" msgstr "Começar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8923,11 +8923,11 @@ msgstr "" msgid "Play Recording" msgstr "Tocar Gravação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opções de Reprodução" @@ -8935,27 +8935,27 @@ msgstr "Opções de Reprodução" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8977,7 +8977,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9010,7 +9010,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9026,20 +9026,20 @@ msgstr "Efeito de Pós-Processamento" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9074,7 +9074,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9143,11 +9143,11 @@ msgstr "Perfil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9161,7 +9161,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9185,7 +9185,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9217,11 +9217,11 @@ msgstr "R-Analógico" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9246,7 +9246,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9254,7 +9254,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9313,7 +9313,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Gravar" @@ -9325,11 +9325,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opções de Gravação" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9393,7 +9393,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9426,7 +9426,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Remover" @@ -9463,11 +9463,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderizar para a Janela Principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9500,7 +9500,7 @@ msgstr "Reset" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9532,7 +9532,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9711,19 +9711,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9731,7 +9731,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9766,11 +9766,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Gua&rdar Estado" @@ -9802,11 +9802,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9824,11 +9824,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9840,7 +9840,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9890,23 +9890,23 @@ msgstr "Guardar Estado Slot 8" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9926,11 +9926,11 @@ msgstr "" msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9941,11 +9941,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9953,11 +9953,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9987,7 +9987,7 @@ msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "" @@ -10014,7 +10014,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10022,7 +10022,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10067,11 +10067,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10111,7 +10111,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10119,7 +10119,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10186,7 +10186,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10194,7 +10194,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10206,7 +10206,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10214,7 +10214,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10231,7 +10231,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Seleccione o ficheiro de jogo guardado" @@ -10255,7 +10255,7 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10279,7 +10279,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10309,7 +10309,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10331,7 +10331,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10345,7 +10345,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posição da Barra de Sensor:" @@ -10410,14 +10410,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10429,7 +10429,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10448,7 +10448,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10462,7 +10462,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10484,16 +10484,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Mostrar &Relatório" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Mostrar Barra de Ferramen&tas" @@ -10501,11 +10501,11 @@ msgstr "Mostrar Barra de Ferramen&tas" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10518,7 +10518,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10527,27 +10527,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10559,23 +10559,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Mostrar visualização de Entradas" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Mostrar Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Mostrar Coreia" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10583,19 +10583,19 @@ msgstr "" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Mostrar &Configuração de Relatório" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10603,7 +10603,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Mostrar Pal" @@ -10612,27 +10612,27 @@ msgstr "Mostrar Pal" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Mostrar Plataformas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10640,51 +10640,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Mostrar Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10697,7 +10697,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10725,13 +10725,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10770,47 +10770,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10832,7 +10832,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10856,7 +10856,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinês Simplificado" @@ -10873,7 +10873,7 @@ msgstr "" msgid "Size" msgstr "Dimensão" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10883,7 +10883,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11000,7 +11000,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11014,7 +11014,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanhol" @@ -11022,11 +11022,11 @@ msgstr "Espanhol" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume do Altifalante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11034,7 +11034,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11076,7 +11076,7 @@ msgstr "Comando padrão" msgid "Start" msgstr "Começar" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11085,11 +11085,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11097,7 +11097,7 @@ msgstr "" msgid "Start Recording" msgstr "Começar Gravação" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11109,7 +11109,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11169,7 +11169,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11198,12 +11198,12 @@ msgid "Stick" msgstr "Stick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11239,7 +11239,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Ajustar à janela" @@ -11278,8 +11278,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11306,7 +11306,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11318,12 +11318,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11346,12 +11346,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11409,7 +11409,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11435,7 +11435,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11454,11 +11454,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma do sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Entrada TAS" @@ -11471,7 +11471,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11489,7 +11489,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Tirar Screenshot" @@ -11528,7 +11528,7 @@ msgstr "Cache de Textura" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11540,7 +11540,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Formato da textura" @@ -11577,13 +11577,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11598,7 +11598,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11892,7 +11892,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11950,7 +11950,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12272,7 +12272,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Título" @@ -12281,12 +12281,12 @@ msgid "To" msgstr "Para" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12375,7 +12375,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Topo" @@ -12426,7 +12426,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinês Tradicional" @@ -12446,8 +12446,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12528,14 +12528,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12543,7 +12543,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12552,7 +12552,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12615,11 +12615,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Retroceder Carregamento de Estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "" @@ -12637,7 +12637,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12729,7 +12729,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12745,7 +12745,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12788,7 +12788,7 @@ msgid "Up" msgstr "Cima" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Actualizar" @@ -12859,7 +12859,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12867,7 +12867,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12881,7 +12881,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12949,14 +12949,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13219,7 +13219,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Aviso" @@ -13308,7 +13308,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13316,7 +13316,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13324,7 +13324,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13374,7 +13374,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13402,7 +13402,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13410,7 +13410,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13441,7 +13441,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13490,11 +13490,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13545,14 +13545,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13649,7 +13649,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index ba46aff353..8386b6b309 100644 --- a/Languages/po/pt_BR.po +++ b/Languages/po/pt_BR.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mateus B. Cassiano , 2017,2021-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/delroth/dolphin-" @@ -128,7 +128,7 @@ msgstr "" "%1\n" "quer se juntar ao seu grupo." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1%" @@ -182,7 +182,7 @@ msgstr "%1 (lento)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -217,7 +217,7 @@ msgstr "O backend %1 não é compatível com esse recurso no seu sistema." msgid "%1 doesn't support this feature." msgstr "O backend %1 não é compatível com esse recurso." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -227,11 +227,11 @@ msgstr "" "%2 objeto(s)\n" "Quadro Atual: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 entrou" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 saiu" @@ -239,11 +239,11 @@ msgstr "%1 saiu" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 desbloqueou %2 de %3 conquistas valendo %4 de %5 pontos" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 não é uma ROM válida" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 assumiu controle do golfe" @@ -255,8 +255,8 @@ msgstr "%1 está jogando %2" msgid "%1 memory ranges" msgstr "%1 alcances da memória" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -273,7 +273,7 @@ msgstr "%1 sessão encontrada" msgid "%1 sessions found" msgstr "%1 sessões encontradas" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -310,7 +310,7 @@ msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -381,11 +381,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Sobre" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Adicionar Ponto de Interrupção de Memória" @@ -402,11 +402,11 @@ msgstr "&Adicionar função" msgid "&Add..." msgstr "&Adicionar..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Configurações de &Som" @@ -420,13 +420,13 @@ msgstr "Janela Sem &Bordas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 msgid "&Break On Hit" -msgstr "" +msgstr "&Interromper No Acerto" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Pontos de Interrupção" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -434,15 +434,15 @@ msgstr "&Bug Tracker" msgid "&Cancel" msgstr "&Cancelar" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "Gerenciador de &Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "Verificar &Atualizações..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Limpar Símbolos" @@ -450,7 +450,7 @@ msgstr "&Limpar Símbolos" msgid "&Clone..." msgstr "&Duplicar..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Código" @@ -458,7 +458,7 @@ msgstr "&Código" msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Configurações de &Controles" @@ -481,13 +481,13 @@ msgstr "E&xcluir" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Apagar Observação" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Apagar Relógios" @@ -501,11 +501,11 @@ msgstr "&Editar Código..." msgid "&Edit..." msgstr "&Editar..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Ejetar Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulação" @@ -526,40 +526,40 @@ msgid "&Export as .gci..." msgstr "&Exportar como .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Fonte..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "A&vançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Configurações do Olhar Livre" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Gerar Símbolos De" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Repositório no &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Configurações de &Gráficos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "Aj&uda" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Configurações das &Teclas de Atalho" @@ -579,7 +579,7 @@ msgstr "&Importar Estado Salvo..." msgid "&Import..." msgstr "&Importar..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "Base &Infinity" @@ -591,7 +591,7 @@ msgstr "&Inserir blr" msgid "&Interframe Blending" msgstr "&Mistura do Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -603,11 +603,11 @@ msgstr "&Idioma:" msgid "&Load Branch Watch" msgstr "&Carregar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "Carregar Estado Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Carregar o Mapa dos Símbolos" @@ -617,23 +617,23 @@ msgstr "&Carregar o arquivo no endereço atual" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Trancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "B&loquear Widgets" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 msgid "&Log On Hit" -msgstr "" +msgstr "&Registrar No Acerto" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Gravação" @@ -641,7 +641,7 @@ msgstr "&Gravação" msgid "&Mute" msgstr "Ativar &Mudo" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Rede" @@ -650,23 +650,23 @@ msgid "&No" msgstr "&Não" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "A&brir..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Funções HLE do Patch" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "P&ausar" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "Inici&ar" @@ -674,7 +674,7 @@ msgstr "Inici&ar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "Modo &Somente Leitura" @@ -682,7 +682,7 @@ msgstr "Modo &Somente Leitura" msgid "&Refresh List" msgstr "&Atualizar Lista" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registradores" @@ -700,11 +700,11 @@ msgid "&Rename symbol" msgstr "&Renomear Símbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reiniciar" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "Gerenciador de Pacotes de &Recursos" @@ -712,7 +712,7 @@ msgstr "Gerenciador de Pacotes de &Recursos" msgid "&Save Branch Watch" msgstr "&Salvar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Salvar Mapa de Símbolos" @@ -720,7 +720,7 @@ msgstr "&Salvar Mapa de Símbolos" msgid "&Scan e-Reader Card(s)..." msgstr "&Escanear Cartões do e-Reader..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "Portal &Skylanders" @@ -728,7 +728,7 @@ msgstr "Portal &Skylanders" msgid "&Speed Limit:" msgstr "&Limite de Velocidade:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Parar" @@ -736,7 +736,7 @@ msgstr "&Parar" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Threads" @@ -744,7 +744,7 @@ msgstr "&Threads" msgid "&Tool" msgstr "&Ferramenta" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Ferramentas" @@ -754,21 +754,21 @@ msgstr "&Fechar ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "&Destrancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Visualizar" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "A&ssistir" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Website" @@ -780,11 +780,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sim" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1\" não foi encontrado, nenhum nome de símbolo foi gerado" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' não foi encontrado, ao invés disto escaneando por funções comuns" @@ -832,7 +832,7 @@ msgstr "- Subtrair" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Desconhecido--" @@ -898,7 +898,7 @@ msgstr "Inteiro de 16 bits (Com Sinal)" msgid "16-bit Unsigned Integer" msgstr "Inteiro de 16 bits (Sem Sinal)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -982,7 +982,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbits (59 blocos)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1083,7 +1083,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "Desativado no Modo Hardcore." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Na dúvida, mantenha essa opção desativada.
If unsure, leave this unchecked." @@ -1996,19 +1996,19 @@ msgstr "Registrador BP" msgid "Back Chain" msgstr "Cadeia Traseira" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Usar Múltiplas Threads" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Configurações do Backend" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -2051,7 +2051,7 @@ msgstr "Valor ruim fornecido." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -2075,7 +2075,7 @@ msgstr "Endereço Base" msgid "Base priority" msgstr "Prioridade base" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Básico" @@ -2129,11 +2129,11 @@ msgstr "SSL Binário (leitura)" msgid "Binary SSL (write)" msgstr "SSL Binário (gravação)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Taxa de Bits (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2147,7 +2147,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Tamanho do Bloco" @@ -2186,7 +2186,7 @@ msgstr "" "foi compilada sem o libusb. O modo de redirecionamento não pode ser " "utilizado." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Do Início até a Pausa" @@ -2198,11 +2198,11 @@ msgstr "Arquivo de backup da NAND do BootMii (*.bin);;Todos os arquivos (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Arquivo de chaves do BootMii (*.bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Tela Cheia Sem Bordas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Embaixo" @@ -2355,7 +2355,7 @@ msgstr "Interrupção" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 msgid "Break &And Log On Hit" -msgstr "" +msgstr "Interromper &E Registrar no Acerto" #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 @@ -2400,20 +2400,20 @@ msgstr "Erro no Adaptador de Banda Larga" msgid "Broadband Adapter MAC Address" msgstr "Endereço MAC do Adaptador de Banda Larga" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Navegar pelas &Sessões do NetPlay..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Tamanho do Buffer:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Tamanho do buffer alterado para %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffer:" @@ -2465,7 +2465,7 @@ msgstr "Autor(a): %1" msgid "C Stick" msgstr "Eixo C" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "C&riar Arquivo de Assinatura..." @@ -2489,7 +2489,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Interpretador com Cache (lento)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2581,11 +2581,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Cancelar" @@ -2673,7 +2673,7 @@ msgstr "Centralizar e Calibrar" msgid "Change &Disc" msgstr "Trocar &Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "&Trocar Disco..." @@ -2694,8 +2694,10 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"Altera a aparência e a cor dos botões do Dolphin." +"

Na dúvida, selecione \"Clean\"." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2725,7 +2727,7 @@ msgstr "" "tem movimento lateral, só rotação e você pode aumentar o zoom até o ponto de " "origem da câmera." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Alterações nos cheats só terão efeito quando o jogo for reiniciado." @@ -2733,7 +2735,7 @@ msgstr "Alterações nos cheats só terão efeito quando o jogo for reiniciado." msgid "Channel Partition (%1)" msgstr "Partição do Canal (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "O personagem informado é inválido!" @@ -2745,7 +2747,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "Editor de Código de Cheat" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Pesquisa de Cheats" @@ -2753,7 +2755,7 @@ msgstr "Pesquisa de Cheats" msgid "Cheats Manager" msgstr "Gerenciador de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Verificar NAND..." @@ -2793,11 +2795,11 @@ msgstr "Abrir" msgid "Choose a file to open or create" msgstr "Escolha um arquivo pra abrir ou criar" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Escolha a prioridade do arquivo de entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Escolha o arquivo secundário de entrada dos dados" @@ -2828,7 +2830,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Limpar" @@ -2836,7 +2838,7 @@ msgstr "Limpar" msgid "Clear Branch Watch" msgstr "Limpar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Limpar Cache" @@ -2857,7 +2859,7 @@ msgstr "Duplicar e &Editar Código..." msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Co&nfigurações" @@ -2901,7 +2903,7 @@ msgstr "Espaço de Cores" msgid "Column &Visibility" msgstr "Colunas &Visíveis" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Combinar &Dois Arquivos de Assinatura..." @@ -2935,7 +2937,7 @@ msgstr "" "Mesmo assim, é possível que seja uma cópia válida se comparada com a edição " "digital da eShop do Wii U. O Dolphin não pode verificar se esse é o caso." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Compilar Shaders Antes de Iniciar" @@ -2945,7 +2947,7 @@ msgstr "Compilando Shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Compressão" @@ -3044,6 +3046,59 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" +"Condições:\n" +"Define uma expressão que é avaliada quando um ponto de interrupção é " +"atingido. Se a expressão é falsa ou 0, o ponto de interrupção é ignorado até " +"ser atingido de novo. As declarações devem ser separadas por uma vírgula. " +"Somente a última declaração será usada para determinar o que fazer.\n" +"\n" +"Registradores que podem ser referenciados:\n" +"GPRs : r0..r31\n" +"FPRs : f0..f31\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Outros : pc, msr\n" +"\n" +"Funções:\n" +"Atribuir valor para registrador: r1 = 8\n" +"Conversão: s8(0xff). Disponíveis: s8, u8, s16, u16, s32, u32\n" +"Callstack: callstack(0x80123456), callstack(\"anim\")\n" +"Comparar Strings: streq(r3, \"abc\"). Ambos os parâmetros podem ser " +"endereços ou constantes das strings.\n" +"Ler Memória: read_u32(0x80000000). Disponíveis: u8, s8, u16, s16, u32, s32, " +"f32, f64\n" +"Gravar Memória: write_u32(r3, 0x80000000). Disponíveis: u8, u16, u32, f32, " +"f64\n" +"*no momento, a gravação será sempre executada\n" +"\n" +"Operações:\n" +"Unário: -u, !u, ~u\n" +"Cálculo: * / + -, potência: **, resto: %, deslocamento: <<, >>\n" +"Comparação: <, <=, >, >=, ==, !=, &&, ||\n" +"Bitwise: &, |, ^\n" +"\n" +"Exemplos:\n" +"r4 == 1\n" +"f0 == 1.0 && f2 < 10.0\n" +"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" +"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" +"Definir e interromper: r4 = 8, 1\n" +"Definir e continuar: f3 = f1 + f2, 0\n" +"A condição deve ser sempre a última\n" +"\n" +"As strings só devem ser usadas no callstack() or streq() e \"entre aspas\". " +"Não atribua strings para variáveis.\n" +"Todas as variáveis serão impressas no registro de Interface da Memória, se " +"há um acerto ou um resultado da NaN. Para procurar problemas, atribua uma " +"variável à sua equação pra que possa ser impressa.\n" +"\n" +"Nota: Todos os valores são convertidos internamente em Doubles para " +"cálculos. É possível que eles saiam do alcance ou se tornem NaNs. Um aviso " +"será dado se for retornado um NaN e a variável que se tornou NaN será " +"registrada." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3060,7 +3115,7 @@ msgstr "Configurar" msgid "Configure Controller" msgstr "Configurar" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Abrir Configurações" @@ -3084,7 +3139,7 @@ msgstr "Configurar a Saída dos Dados" msgid "Confirm" msgstr "Confirmar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Confirmar mudança de backend" @@ -3092,7 +3147,7 @@ msgstr "Confirmar mudança de backend" msgid "Confirm on Stop" msgstr "Confirmar ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3103,15 +3158,15 @@ msgstr "Confirmação" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Conectar/Desconectar Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Wii Remote %1" @@ -3131,7 +3186,7 @@ msgstr "Conectar/Desconectar Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Conectar/Desconectar Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Conectar Wii Remotes" @@ -3282,8 +3337,8 @@ msgstr "Convergência" msgid "Convergence:" msgstr "Convergência:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Falha na conversão." @@ -3291,9 +3346,9 @@ msgstr "Falha na conversão." msgid "Convert" msgstr "Converter" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Converter Arquivo para Pasta Agora" @@ -3301,9 +3356,9 @@ msgstr "Converter Arquivo para Pasta Agora" msgid "Convert File..." msgstr "Converter Arquivo..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Converter Pasta para Arquivo Agora" @@ -3326,8 +3381,8 @@ msgstr "" "a conversão para ISO. Deseja continuar assim mesmo?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Convertendo..." @@ -3567,7 +3622,7 @@ msgstr "" "Se sim, então você pode precisar reespecificar o local do seu arquivo de " "Memory Card nas configurações." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Não foi possível encontrar o servidor central" @@ -3583,13 +3638,13 @@ msgstr "Não foi possível ler o arquivo." msgid "Country:" msgstr "País:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Criar" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Criar Arquivo do Infinity" @@ -3620,11 +3675,11 @@ msgstr "Autor:" msgid "Critical" msgstr "Crítico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Cortar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3640,11 +3695,11 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Selecionar Vértices na CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3655,7 +3710,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Região Atual" @@ -3675,11 +3730,11 @@ msgstr "Jogo atual" msgid "Current thread" msgstr "Thread atual" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Personalizada (Esticada)" @@ -3687,15 +3742,15 @@ msgstr "Personalizada (Esticada)" msgid "Custom Address Space" msgstr "Espaço do Endereço Personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Altura da proporção de tela personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Largura da proporção de tela personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Proporção de Tela Personalizada:" @@ -3738,7 +3793,7 @@ msgstr "Mesa de DJ" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Mecanismo de Emulação do DSP" @@ -3746,15 +3801,15 @@ msgstr "Mecanismo de Emulação do DSP" msgid "DSP HLE (fast)" msgstr "DSP HLE (rápido)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (recomendado)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "Interpretador DSP LLE (muito lento)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "Recompilador DSP LLE (lento)" @@ -3829,7 +3884,7 @@ msgstr "Zona Morta" msgid "Debug" msgstr "Depuração" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depuração" @@ -3839,7 +3894,7 @@ msgstr "Depuração" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Qualidade de Decodificação:" @@ -3886,7 +3941,7 @@ msgstr "Padrão" msgid "Default Config (Read Only)" msgstr "Configuração Padrão (Somente Leitura)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Dispositivo Padrão" @@ -3902,7 +3957,7 @@ msgstr "ISO padrão:" msgid "Default thread" msgstr "Thread padrão" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Adiar Invalidação do Cache do EFB" @@ -3910,7 +3965,7 @@ msgstr "Adiar Invalidação do Cache do EFB" msgid "Defer EFB Copies to RAM" msgstr "Adiar Cópias do EFB para RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3962,7 +4017,7 @@ msgstr "Profundidade:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" @@ -4011,7 +4066,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Detectando os Módulos do RSO" @@ -4041,7 +4096,7 @@ msgstr "Configurações do Dispositivo" msgid "Device VID (e.g., 057e)" msgstr "VID do Dispositivo (ex.: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Dispositivo:" @@ -4049,7 +4104,7 @@ msgstr "Dispositivo:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 não reconhecido como um arquivo XML válido do Riivolution." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" "Escurece a tela após 5 minutos de inatividade durante a emulação de " @@ -4075,7 +4130,7 @@ msgstr "Desativar Bounding Box" msgid "Disable Copy Filter" msgstr "Desativar Filtro de Cópia" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Desativar Cópias VRAM do EFB" @@ -4083,11 +4138,11 @@ msgstr "Desativar Cópias VRAM do EFB" msgid "Disable Emulation Speed Limit" msgstr "Desativar Limite de Velocidade" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Desativar Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Desativar Arena do Fastmem" @@ -4095,11 +4150,11 @@ msgstr "Desativar Arena do Fastmem" msgid "Disable Fog" msgstr "Desativar Névoa" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Desativar Cache do JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Desativar o Mapa dos Pontos de Entrada Grandes" @@ -4118,7 +4173,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If " "unsure, leave this checked." msgstr "" +"Desativa a proteção de tela enquanto um jogo está em execução." +"

Na dúvida, mantenha essa opção ativada." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4159,7 +4217,7 @@ msgstr "Descartar" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 msgid "Display Settings" -msgstr "" +msgstr "Configurações de Exibição" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4202,7 +4260,7 @@ msgstr "" 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:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 msgid "Do you want to clear the list of symbol names?" msgstr "Você quer limpar a lista dos nomes do símbolos?" @@ -4220,12 +4278,12 @@ msgstr "Deseja parar a emulação atual?" msgid "Do you want to try to repair the NAND?" msgstr "Deseja tentar efetuar um reparo na NAND?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 msgid "Dolby Pro Logic II Decoder" msgstr "Decodificador Dolby Pro Logic II" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:218 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:229 msgid "Dolphin FIFO Log (*.dff)" msgstr "Registro FIFO do Dolphin (*.dff)" @@ -4233,9 +4291,9 @@ msgstr "Registro FIFO do Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Pré-definição do Mod do Jogo no Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1603 -#: Source/Core/DolphinQt/MenuBar.cpp:1620 -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +#: Source/Core/DolphinQt/MenuBar.cpp:1629 msgid "Dolphin Map File (*.map)" msgstr "Arquivo do Mapa do Dolphin (*.map)" @@ -4248,7 +4306,7 @@ msgid "Dolphin Signature File" msgstr "Arquivo de Assinatura do Dolphin" #: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Gravações TAS do Dolphin (*.dtm)" @@ -4292,7 +4350,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:1001 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:999 msgid "Dolphin is too old for traversal server" msgstr "Versão do Dolphin é muito antiga para o servidor traversal" @@ -4316,7 +4374,7 @@ msgstr "" "O Dolphin usará a região padrão quando não for possível determinar a região " "do software automaticamente." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "O sistema de cheats do Dolphin está desativado no momento." @@ -4389,6 +4447,13 @@ msgid "" "file banners.

If unsure, leave this checked." msgstr "" +"Baixa imagens de capa do GameTDB.com para mostrar na exibição em grade da " +"lista de jogos. Se essa opção estiver desativada, a lista de jogos mostrará " +"banners gerados a partir dos arquivos de dados salvos dos jogos, e se nenhum " +"dado salvo para o jogo existir, mostrará um banner genérico.

Exibição " +"em Lista sempre usará o banner dos arquivos de dados salvos." +"

Na dúvida, mantenha essa opção ativada." #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 @@ -4429,19 +4494,19 @@ msgstr "Exportar &FakeVMEM" msgid "Dump &MRAM" msgstr "Exportar &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:845 msgid "Dump Audio" msgstr "Exportar Áudio" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Base Textures" msgstr "Exportar Texturas de Base" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump EFB Target" msgstr "Exportar Alvo EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:842 +#: Source/Core/DolphinQt/MenuBar.cpp:839 msgid "Dump Frames" msgstr "Exportar Quadros" @@ -4449,7 +4514,7 @@ msgstr "Exportar Quadros" msgid "Dump GameCube BBA traffic" msgstr "Exportar tráfego do BBA do GameCube" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 msgid "Dump Mip Maps" msgstr "Exportar Mip Maps" @@ -4457,7 +4522,7 @@ msgstr "Exportar Mip Maps" msgid "Dump Path:" msgstr "Exportação:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 msgid "Dump XFB Target" msgstr "Exportar Alvo XFB" @@ -4482,7 +4547,7 @@ msgstr "Exportar certificados de mesmo nível" msgid "Dump root CA certificates" msgstr "Exportar certificados raiz da CA" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Na " "dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4501,7 +4566,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4520,11 +4585,11 @@ msgstr "Duração do Soltar do Botão Turbo (frames):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Holandês" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "S&air" @@ -4556,7 +4621,7 @@ msgstr "" "Adequado para jogos competitivos em que imparcialidade e latência mínima são " "mais importantes." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Atualizações Prévias de Memória" @@ -4577,11 +4642,11 @@ msgstr "Editar Ponto de Interrupção" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit Conditional" -msgstr "" +msgstr "Editar Condicional" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit conditional expression" -msgstr "" +msgstr "Editar expressão condicional" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 @@ -4630,7 +4695,7 @@ msgstr "Frame Buffer Embutido (EFB)" msgid "Empty" msgstr "Vazio" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Thread de Emulação já está em execução" @@ -4638,7 +4703,7 @@ 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:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Emular Base Infinity" @@ -4658,7 +4723,7 @@ 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:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Dispositivos USB Emulados" @@ -4683,16 +4748,16 @@ msgstr "Velocidade de Emulação" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Ativar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Ativar Camadas de Validação da API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Ativar Alongamento de Áudio" @@ -4714,7 +4779,7 @@ msgstr "Ativar Interface de Depuração" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "Ativar Status do Discord" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" @@ -4740,7 +4805,7 @@ msgstr "Ativar Conquistas Encore" msgid "Enable FPRF" msgstr "Ativar FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Ativar Mods Gráficos" @@ -4782,7 +4847,7 @@ msgstr "" "ativar.
Desativar o Modo Hardcore enquanto um jogo está em execução " "requer que o jogo seja fechado antes de ser possível reativá-lo." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "Ativar Perfilamento de Bloco JIT" @@ -4795,7 +4860,7 @@ msgstr "Ativar MMU" msgid "Enable Progress Notifications" msgstr "Ativar Notificações de Progresso" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Ativar Varredura Progressiva" @@ -4804,11 +4869,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Ativar Integração RetroAchievements.org" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Ativar Vibração" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ativar Proteção de Tela" @@ -4818,7 +4883,7 @@ msgstr "Ativar Dados do Auto-Falante" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "Ativar Modo Espectador" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" @@ -4828,11 +4893,11 @@ msgstr "Ativar Conquistas Não Oficiais" msgid "Enable Usage Statistics Reporting" msgstr "Ativar Envio de Estatísticas de Uso" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Ativar WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Ativar Wireframe" @@ -4878,6 +4943,12 @@ msgid "" "speedrun criteria or simply for fun.

Setting takes effect on next " "game load." msgstr "" +"Ativa o desbloqueio de conquistas no Modo Encore.

O Modo Encore " +"reativa conquistas que já foram desbloqueadas no website, de modo que os " +"jogadores sejam notificados sempre que atenderem os requisitos de " +"desbloqueio, útil para critérios de speedrun personalizados, ou por pura " +"diversão.

Essa opção será aplicada na próxima vez que um jogo for " +"iniciado." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 msgid "" @@ -4888,6 +4959,14 @@ msgid "" "RetroAchievements session will not be created.

If this is off at game " "launch, it can be toggled freely while the game is running." msgstr "" +"Ativa o desbloqueio de conquistas no Modo Espectador.

Enquanto " +"estiver no Modo Espectador, conquistas e placares de líderes serão " +"processados e mostrados na tela, mas não serão enviados para o servidor." +"

Se isso estiver ativado ao iniciar um jogo, não será possível " +"desativar o Modo Espectador até que o jogo seja fechado, pois nenhuma sessão " +"do RetroAchievements será criada.

Se isso estiver desativado ao " +"iniciar um jogo, o Modo Espectador poderá ser ligado/desligado a qualquer " +"momento enquanto o jogo estiver em execução." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" @@ -4896,8 +4975,13 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" +"Ativa o desbloqueio de conquistas não oficiais, assim como conquistas " +"oficiais.

Conquistas não oficiais utilizam critérios opcionais ou não " +"finalizados, que não tenham sido validados como oficiais pela equipe do " +"RetroAchievements, útil para testes, ou por pura diversão.

Essa opção " +"será aplicada na próxima vez que um jogo for iniciado." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4944,7 +5028,7 @@ msgstr "" "absolutamente necessária.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4957,7 +5041,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4985,7 +5069,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" "Previne picotamentos no áudio causados por variações na velocidade de " @@ -5023,7 +5107,7 @@ msgstr "" "(ON = Compatível, OFF = Rápido)

Na dúvida, mantenha " "essa opção desativada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -5035,7 +5119,7 @@ msgstr "" "como o Forecast Channel e o Nintendo Channel.\n" "Leia os Termos de Serviço em: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5048,7 +5132,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5075,7 +5159,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "End Addr" -msgstr "" +msgstr "End. Final" #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -5083,7 +5167,7 @@ msgstr "Enet Não Inicializou" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Inglês" @@ -5100,7 +5184,7 @@ msgstr "Informe o endereço IP do dispositivo executando o cliente XLink Kai:" msgid "Enter USB device ID" msgstr "Informe a ID do dispositivo USB" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Insira o endereço a observar:" @@ -5126,7 +5210,7 @@ msgstr "" "Informe o endereço IP e a porta da instância tapserver que você gostaria de " "se conectar." -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Insira o endereço do módulo do RSO:" @@ -5165,9 +5249,9 @@ msgstr "Insira o endereço do módulo do RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5180,24 +5264,24 @@ msgstr "Insira o endereço do módulo do RSO:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5227,7 +5311,7 @@ msgstr "Erro ao Abrir o Adaptador: %1" msgid "Error collecting save data!" msgstr "Erro ao coletar os dados do save!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5338,12 +5422,12 @@ 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:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ubershaders Exclusivos" @@ -5387,11 +5471,11 @@ msgstr "Início esperado da expressão." msgid "Expected variable name." msgstr "Nome esperado da variável." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportar Todos os Dados Salvos do Wii" @@ -5406,7 +5490,7 @@ msgstr "Falha ao Exportar" msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -5434,7 +5518,7 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5462,7 +5546,7 @@ msgstr "IP Externo" msgid "External Frame Buffer (XFB)" msgstr "Frame Buffer Externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Extrair Certificados da NAND" @@ -5500,7 +5584,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO Player" @@ -5520,7 +5604,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Falha ao anexar ao arquivo de assinatura '%1'" @@ -5541,7 +5625,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:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Falha na conexão com o servidor: %1" @@ -5562,7 +5646,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Falha ao criar arquivo do Infinity!" @@ -5626,7 +5710,7 @@ msgstr "Falha ao exportar %n de %1 arquivo(s) de jogo(s) salvo(s)." msgid "Failed to export the following save files:" msgstr "Falha ao exportar os seguintes dados salvos:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Falha ao extrair os certificados da NAND" @@ -5656,14 +5740,14 @@ msgstr "Falha ao localizar um ou mais símbolos do Direct3D" msgid "Failed to import \"%1\"." msgstr "Falha ao importar \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5671,7 +5755,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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5705,7 +5789,7 @@ msgid "Failed to install pack: %1" msgstr "Falha ao instalar pacote: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Falha ao instalar esse software na NAND." @@ -5717,8 +5801,8 @@ msgstr "" "Falha ao acessar a porta %1. Existe outra instância do servidor NetPlay em " "execução?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Falha ao carregar o módulo RSO em %1" @@ -5730,7 +5814,7 @@ msgstr "Falha ao carregar d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Falha ao carregar dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Falha ao carregar o arquivo de mapa '%1'" @@ -5762,11 +5846,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Falha ao modificar o Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "Falha ao abrir \"%1\" para escrita." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "Falha ao abrir \"{0}\" para escrita." @@ -5817,11 +5901,11 @@ msgstr "Falha ao abrir o arquivo." msgid "Failed to open server" msgstr "Falha ao abrir o servidor" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Falha ao abrir arquivo do Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5893,17 +5977,21 @@ msgstr "" "Falha ao ler o(s) arquivo(s) de jogo(s) salvo(s) selecionado(s) do Memory " "Card." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Falha ao ler arquivo do Infinity!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"Falha ao ler arquivo do Infinity:\n" +"%1\n" +"\n" +"O arquivo é muito pequeno." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5973,27 +6061,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "Falha ao salvar o estado do Branch Watch \"%1\"" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Falha ao salvar o log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 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:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Falha ao salvar o arquivo de assinatura '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 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:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Falha ao salvar no arquivo de assinatura '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -6050,7 +6138,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Falha" @@ -6088,7 +6176,7 @@ msgstr "" msgid "Field of View" msgstr "Campo de Visualização" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Número da Figura:" @@ -6102,7 +6190,7 @@ msgstr "Detalhes do Arquivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Formato" @@ -6110,24 +6198,24 @@ msgstr "Formato" msgid "File Format:" msgstr "Formato do Arquivo:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Informações do Arquivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Nome do Arquivo" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Local" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Tamanho" @@ -6259,7 +6347,7 @@ msgstr "" "Para instruções de configuração, consulte essa página." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forçar 16:9" @@ -6267,7 +6355,7 @@ msgstr "Forçar 16:9" msgid "Force 24-Bit Color" msgstr "Forçar Cores de 24 Bits" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forçar 4:3" @@ -6299,13 +6387,13 @@ msgstr "Forçar Porta de Escuta:" msgid "Force Nearest" msgstr "Forçar Pelo Mais Próximo" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" "Opção desativada pois o backend %1 não suporta expansão " "por SV." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "Opção ativada pois o backend %1 não suporta shaders de " @@ -6346,6 +6434,9 @@ msgid "" "Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked." msgstr "" +"Força a janela de renderização a ser exibida sempre no topo de outras " +"janelas e programas.

Na dúvida, mantenha essa opção " +"desativada." #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" @@ -6393,11 +6484,11 @@ msgstr "Aumentar Velocidade" msgid "Frame Advance Reset Speed" msgstr "Redefinir Velocidade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Exportação de Quadros" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Intervalo de Quadros" @@ -6405,7 +6496,7 @@ msgstr "Intervalo de Quadros" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Imagem(ns) da exportação de quadros '{0}' já existe(m). Substituir?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Quadros a Gravar:" @@ -6460,7 +6551,7 @@ msgstr "Ativar/Desativar Olhar Livre" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Francês" @@ -6479,8 +6570,8 @@ msgid "From" msgstr "De" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "De:" @@ -6494,7 +6585,7 @@ msgstr "Função" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 msgid "Function Settings" -msgstr "" +msgstr "Configurações de Funcionamento" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6536,11 +6627,11 @@ msgstr "Volume do GBA" msgid "GBA Window Size" msgstr "Tamanho da Janela do GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "ROM do GBA%1 alterada para \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "ROM desativada do GBA%1" @@ -6711,7 +6802,7 @@ msgid "Game Gamma:" msgstr "Gama do Jogo:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID do Jogo" @@ -6724,7 +6815,7 @@ msgstr "ID do Jogo:" msgid "Game Status" msgstr "Status do Jogo" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Jogo alterado para \"%1\"" @@ -6837,7 +6928,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Códigos Gecko" @@ -6869,13 +6960,13 @@ msgstr "Gerar uma Nova ID de Estatísticas " msgid "Generated AR code(s)." msgstr "Código(s) AR gerado(s)." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Nomes de símbolos gerados a partir de '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Alemão" @@ -6956,7 +7047,7 @@ msgstr "Verde Esquerdo" msgid "Green Right" msgstr "Verde Direito" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Exibição em Grade" @@ -7038,7 +7129,7 @@ msgstr "Ocultar" msgid "Hide &Controls" msgstr "Ocultar &Controles" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Ocultar Tudo" @@ -7060,13 +7151,17 @@ msgid "" "render window is focused.

If unsure, select "" "On Movement"." msgstr "" +"Oculta o cursor do mouse sempre que estiver posicionado sobre a janela de " +"renderização e a janela de renderização estiver em foco." +"

Na dúvida, selecione \"Ao Mover\"." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Alto" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Muito Alto" @@ -7110,11 +7205,11 @@ msgstr "" "Adequado para jogos casuais com mais de 3 jogadores, possivelmente em " "conexões instáveis ou de alta latência." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Host autoritário desativado" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Host autoritário ativado" @@ -7140,7 +7235,7 @@ msgstr "Teclas de Atalho" msgid "Hotkeys Require Window Focus" msgstr "Desativar Teclas de Atalho em Segundo Plano" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Ubershaders Híbridos" @@ -7204,7 +7299,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Sensibilidade do Ponteiro:" @@ -7307,7 +7402,7 @@ msgstr "" "Se desmarcado o estado da conexão do controle emulado é ligado\n" "ao estado da conexão do dispositivo padrão real (se houver um)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7318,7 +7413,7 @@ msgstr "" "pode ser útil para testes.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7375,7 +7470,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Exibir o XFB Imediatamente" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7390,7 +7485,7 @@ msgstr "" "levemente o desempenho.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Importar Backup da NAND do BootMii..." @@ -7405,7 +7500,7 @@ msgstr "Falha ao Importar" msgid "Import Save File(s)" msgstr "Importar Arquivo(s) de Jogo Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importar Dados Salvos do Wii..." @@ -7430,6 +7525,11 @@ msgid "" "notified.

If unsure, leave this checked." msgstr "" +"Caso ocorra um erro, o Dolphin pausará a emulação para informar sobre o erro " +"e perguntar como prosseguir. Com essa opção desativada, o Dolphin irá " +"ignorar todos os erros, a emulação não será pausada e nenhum aviso será " +"mostrado.

Na dúvida, mantenha essa opção ativada." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" @@ -7513,16 +7613,16 @@ msgstr "Rotação Incremental" msgid "Incremental Rotation (rad/sec)" msgstr "Rotação Incremental (rad/seg)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Criador de Figura Infinity" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Gerenciador do Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Objeto Infinity (*.bin);;" @@ -7544,8 +7644,8 @@ msgstr "Informações" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informação" @@ -7558,11 +7658,11 @@ msgid "Inject" msgstr "Injetar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Entrada de Dados" @@ -7588,7 +7688,7 @@ msgstr "Inserir &NOP" msgid "Insert &nop" msgstr "Inserir &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir Cartão SD" @@ -7605,7 +7705,7 @@ msgstr "Partição de Instalação (%1)" msgid "Install Update" msgstr "Instalar Atualização" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7628,7 +7728,7 @@ msgstr "Instrução" msgid "Instruction Breakpoint" msgstr "Ponto de Interrupção da Instrução" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instrução:" @@ -7723,7 +7823,7 @@ msgstr "Erro interno enquanto gera o código AR." msgid "Interpreter (slowest)" msgstr "Interpretador (muito lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Núcleo do Interpretador" @@ -7748,7 +7848,7 @@ msgstr "O pacote %1 fornecido é inválido: %2" msgid "Invalid Player ID" msgstr "ID de Jogador Inválida" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Endereço do módulo do RSO inválido: %1" @@ -7773,7 +7873,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Entrada inválida para o campo \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Entrada de dados inválida fornecida" @@ -7811,13 +7911,13 @@ msgstr "" msgid "Invalid title ID." msgstr "ID do título inválida." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Endereço da observação inválido: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiano" @@ -7830,11 +7930,11 @@ msgstr "Itália" msgid "Item" msgstr "Item" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "Link de Blocos JIT Desativado" @@ -7842,47 +7942,47 @@ msgstr "Link de Blocos JIT Desativado" msgid "JIT Blocks" msgstr "Blocos JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "Vertente do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "Ponto Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "Inteiro do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "LoadStore Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "LoadStore do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "LoadStore Emparelhado do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "LoadStore lXz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "LoadStore lbzx do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "LoadStore lwz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT Desligado (Núcleo do JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "Emparelhamento do JIT Desligado" @@ -7894,11 +7994,11 @@ msgstr "Recompilador JIT ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "Registro do Cache do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "Registros do Sistema do JIT Desligado" @@ -7912,16 +8012,16 @@ msgstr "" "nunca deveria acontecer. Por favor relate este incidente no bug tracker. O " "Dolphin irá fechar agora." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "JIT não está ativo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japão" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonês" @@ -7983,12 +8083,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Remover Jogador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Coréia" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreano" @@ -8019,7 +8119,7 @@ msgstr "Rótulo" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Idioma" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -8035,23 +8135,23 @@ msgstr "Último uso:" msgid "Last reset:" msgstr "Último reset:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Latência:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Latência: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Latência: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Latência: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Latência: ~80 ms" @@ -8059,7 +8159,7 @@ msgstr "Latência: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Executar os softwares afetados talvez corrija os problemas detectados." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Placar de Líderes" @@ -8155,11 +8255,11 @@ msgstr "Luz" msgid "Limit Chunked Upload Speed:" msgstr "Limitar Velocidade de Envio de Fragmentos:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Selecionar Colunas" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Exibição em Lista" @@ -8171,15 +8271,15 @@ msgstr "Escutando" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Carregar o &Arquivo do Mapa Ruim..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Carregar o &Outro Arquivo do Mapa..." @@ -8191,7 +8291,7 @@ msgstr "Carregar Branch Watch &De..." msgid "Load Branch Watch snapshot" msgstr "Carregar estado do Branch Watch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Carregar Texturas Personalizadas" @@ -8199,7 +8299,7 @@ msgstr "Carregar Texturas Personalizadas" msgid "Load File" msgstr "Carregar Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Carregar Menu Principal do GameCube" @@ -8309,19 +8409,19 @@ msgstr "Carregar do Slot 8" msgid "Load State Slot 9" msgstr "Carregar do Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Carregar do Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Carregar do Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Carregar Wii System Menu %1" @@ -8333,28 +8433,28 @@ msgstr "Carregar e Armazenar Dados Salvos do Host" msgid "Load from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Carregar o arquivo do mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Carregar vWii System Menu %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Carregar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Símbolos carregados do '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8365,7 +8465,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8382,7 +8482,7 @@ msgstr "IP Local" msgid "Lock Mouse Cursor" msgstr "Travar Cursor do Mouse" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Trancado" @@ -8393,6 +8493,10 @@ msgid "" "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" +"Prende o cursor do mouse dentro da janela de renderização sempre que a " +"janela estiver em foco. Você pode definir uma tecla de atalho para liberar o " +"cursor.

Na dúvida, mantenha essa opção desativada." #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 @@ -8408,7 +8512,7 @@ msgstr "Configurações" msgid "Log In" msgstr "Entrar" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Registrar Cobertura das Instruções do JIT" @@ -8416,7 +8520,7 @@ msgstr "Registrar Cobertura das Instruções do JIT" msgid "Log Out" msgstr "Sair" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Registrar Tempo de Renderização" @@ -8432,7 +8536,7 @@ msgstr "Saída de Dados" msgid "Login Failed" msgstr "Falha no Login" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8443,20 +8547,20 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Reprodução contínua" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Perdeu a conexão com o servidor do NetPlay..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Baixo" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Muito baixo" @@ -8516,7 +8620,7 @@ msgstr "Certifique-se que há um Skylander no slot %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Fabricante" @@ -8538,12 +8642,12 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Gerenciar NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Amostragem Manual de Texturas" @@ -8559,11 +8663,11 @@ msgstr "Mask ROM" msgid "Match Found" msgstr "Combinação Achada" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Buffer Máximo:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Tamanho máximo do buffer alterado para %1" @@ -8572,7 +8676,7 @@ msgstr "Tamanho máximo do buffer alterado para %1" msgid "Maximum tilt angle." msgstr "Ângulo máximo de inclinação." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Pode causar lentidão no Wii Menu e em alguns jogos." @@ -8593,7 +8697,7 @@ msgstr "Pontos de Interrupção da Memória" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Gerenciador de Memory Cards" @@ -8648,11 +8752,11 @@ msgstr "Microfone" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diversos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configurações Diversas" @@ -8670,7 +8774,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Incompatibilidade entre as estruturas internas dos dados." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8697,7 +8801,7 @@ msgstr "Adaptador de Modem (tapserver)" msgid "Modifier" msgstr "Modificador" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8717,8 +8821,8 @@ msgstr "Modificar Slot" msgid "Modifying Skylander: %1" msgstr "Modificando o Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Módulos achados: %1" @@ -8726,7 +8830,7 @@ msgstr "Módulos achados: %1" msgid "Money:" msgstr "Dinheiro:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8786,10 +8890,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "Não para T&odos" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Verificação da NAND" @@ -8798,7 +8902,7 @@ msgstr "Verificação da NAND" msgid "NKit Warning" msgstr "Aviso sobre o NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8831,7 +8935,7 @@ msgstr "" "mesmo valor aqui.

Na dúvida, mantenha essa opção em " "2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -9048,7 +9152,7 @@ msgstr "Não há erros." msgid "No extension selected." msgstr "Nenhum acessório selecionado." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Nenhum arquivo carregado / gravado." @@ -9056,7 +9160,7 @@ msgstr "Nenhum arquivo carregado / gravado." msgid "No game is running." msgstr "Nenhum jogo está em execução." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Nenhum jogo em execução" @@ -9069,7 +9173,7 @@ msgstr "Nenhum mod gráfico selecionado." msgid "No input" msgstr "Sem entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Não foram detectados problemas." @@ -9118,8 +9222,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9274,7 +9378,7 @@ msgstr "Posição X do Objeto 4" msgid "Object 4 Y" msgstr "Posição Y do Objeto 4" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Intervalo de Objetos" @@ -9299,7 +9403,7 @@ msgstr "Ligado" msgid "On Movement" msgstr "Ao Mover" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9336,7 +9440,7 @@ msgstr "" "são executados apenas quando uma ação específica é executada no software " "emulado." -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Documentação Online" @@ -9344,7 +9448,7 @@ msgstr "&Documentação Online" msgid "Only Show Collection" msgstr "Mostrar Apenas Coleção" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9352,7 +9456,7 @@ msgstr "" "Só anexar símbolos com o prefixo:\n" "(Em branco pra todos os símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9371,7 +9475,7 @@ msgstr "Abrir" msgid "Open &Containing Folder" msgstr "Abrir &Local do Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Abrir Pasta do &Usuário" @@ -9380,7 +9484,7 @@ msgstr "Abrir Pasta do &Usuário" msgid "Open Directory..." msgstr "Abrir Diretório..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Abrir log do FIFO" @@ -9470,7 +9574,7 @@ msgid "Origin and Destination" msgstr "Origem e Destino" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9512,11 +9616,11 @@ msgstr "Saída da Reamostragem:" msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Reproduzir Gravação de Replay..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9530,11 +9634,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Nível da Compressão do PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG Compression Level:" @@ -9622,7 +9726,7 @@ msgstr "Pausar" msgid "Pause Branch Watch" msgstr "Pausar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "&Pausar no Fim do Replay" @@ -9652,6 +9756,9 @@ msgid "" "Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked." msgstr "" +"Pausa a emulação sempre que a janela de renderização não estiver em foco." +"

Na dúvida, mantenha essa opção desativada." #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9672,7 +9779,7 @@ msgstr "Velocidade pico dos movimentos de balanço externos." msgid "Per-Pixel Lighting" msgstr "Iluminação Por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Executar Atualização do Sistema Online" @@ -9680,15 +9787,15 @@ msgstr "Executar Atualização do Sistema Online" msgid "Perform System Update" msgstr "Executar Atualização do Sistema" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Tamanho da Amostra de Desempenho (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Tamanho da Amostra de Desempenho (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Estatísticas de Desempenho" @@ -9706,7 +9813,7 @@ msgstr "Espaço do endereço físico" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Escolha a fonte de depuração" @@ -9723,7 +9830,7 @@ msgid "Pitch Up" msgstr "Pra cima" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plataforma" @@ -9731,7 +9838,7 @@ msgstr "Plataforma" msgid "Play" msgstr "Reproduzir" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Reproduzir / Gravar" @@ -9739,11 +9846,11 @@ msgstr "Reproduzir / Gravar" msgid "Play Recording" msgstr "Reproduzir Gravação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opções de Reprodução" @@ -9751,27 +9858,27 @@ msgstr "Opções de Reprodução" msgid "Player" msgstr "Jogador" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Jogador 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Jogador 1, Habilidade 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Jogador 1, Habilidade 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Jogador 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Jogador 2, Habilidade 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Jogador 2, Habilidade 2" @@ -9795,7 +9902,7 @@ msgstr "" "Por favor altere a configuração \"SyncOnSkipIdle\" para \"True\"! Ela está " "desativada no momento, o que torna esse problema muito provável de acontecer." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9830,7 +9937,7 @@ msgstr "Porta:" msgid "Portal Slots" msgstr "Slots do Portal" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Possível dessincronia detectada: %1 pode ter dessincronizado no quadro %2" @@ -9847,20 +9954,20 @@ msgstr "Efeito de Pós-Processamento:" msgid "Post-Processing Shader Configuration" msgstr "Configurações do Shader de Pós-Processamento" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" -msgstr "" +msgstr "Power Disc 3" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" -msgstr "" +msgstr "Power Disc 2" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Preferir SV para Expansão de Ponto/Linha" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Pré-carregar Texturas Personalizadas" @@ -9897,7 +10004,7 @@ msgstr "Sincronizar (Redirecionamento Bluetooth)" msgid "Pressure" msgstr "Pressão" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9977,11 +10084,11 @@ msgstr "Perfil" msgid "Program Counter" msgstr "Contador do Programa" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Progresso" @@ -9990,12 +10097,15 @@ msgid "" "Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked." msgstr "" +"Solicita que você confirme que deseja encerrar a emulação ao pressionar " +"Parar.

Na dúvida, mantenha essa opção ativada." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Limpar Cache da Lista de Jogos" @@ -10019,7 +10129,7 @@ msgstr "A Qualidade do Serviço (QoS) não pôde ser ativada." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Qualidade do Serviço (QoS) ativado com sucesso." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Qualidade do decodificador DPLII. A latência do áudio aumenta com a " @@ -10053,11 +10163,11 @@ msgstr "R (analógico)" msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "Módulos do RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "Auto-detecção do RSO" @@ -10082,7 +10192,7 @@ msgstr "Final do Alcance: " msgid "Range Start: " msgstr "Início do Alcance: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Rank %1" @@ -10090,7 +10200,7 @@ msgstr "Rank %1" msgid "Raw" msgstr "Bruto" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Resolução Interna Bruta" @@ -10149,7 +10259,7 @@ msgstr "Acertos Recentes" msgid "Recenter" msgstr "Re-centralizar" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Gravar" @@ -10161,11 +10271,11 @@ msgstr "Gravar a Entrada dos Dados" msgid "Recording" msgstr "Gravação" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opções da Gravação" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Gravando..." @@ -10237,7 +10347,7 @@ msgid "Refreshing..." msgstr "Atualizando..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Região" @@ -10260,7 +10370,7 @@ msgstr "Manter a Entrada Relativa dos Dados" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Releases (every few months)" -msgstr "" +msgstr "Lançamentos (a cada poucos meses)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -10270,7 +10380,7 @@ msgstr "Me Lembrar Mais Tarde" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Remover" @@ -10310,11 +10420,11 @@ msgstr "Renomear Símbolo" msgid "Render Window" msgstr "Janela de Renderização" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Renderizar na Janela Principal" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10335,6 +10445,9 @@ msgid "" "Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked." msgstr "" +"Exige que a janela de renderização esteja em foco para que as teclas de " +"atalho funcionem.

Na dúvida, mantenha essa opção " +"ativada." #: Source/Core/Core/FreeLookManager.cpp:99 #: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 @@ -10349,7 +10462,7 @@ msgstr "Redefinir" msgid "Reset All" msgstr "Resetar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Redefinir Ignorar Gerenciadores de Pânico" @@ -10381,7 +10494,7 @@ msgstr "Redefinir Câmera" msgid "Reset all saved Wii Remote pairings" msgstr "Redefinir pareamento de todos os Wii Remotes salvos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Resolução de Captura:" @@ -10529,6 +10642,36 @@ msgid "" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" +"Linhas da tabela podem ser clicadas com o botão esquerdo nas colunas de " +"origem, destino e símbolo para mostrar o endereço correspondente no painel " +"de Código. Clicar com o botão direito na(s) linha(s) selecionada(s) mostrará " +"um menu de contexto.\n" +"\n" +"Se a coluna de origem, destino ou símbolo forem clicadas com o botão " +"direito, uma ação para copiar o(s) endereço(s) relevante(s) para a área de " +"transferência estará disponível, e uma ação para definir um ponto de " +"interrupção no(s) endereço(s) relevante(s) também estará disponível. Observe " +"que para as colunas de símbolo de origem / destino, essas ações só estarão " +"disponíveis se todas as linhas selecionadas contiverem um símbolo.\n" +"\n" +"Se a coluna de origem em uma linha da tabela for clicada com o botão " +"direito, uma ação para substituir a instrução no(s) destino(s) com uma " +"instrução NOP (No Operation) estará disponível.\n" +"\n" +"Se a coluna de destino em uma linha da tabela for clicada com o botão " +"direito, uma ação para substituir a instrução no(s) destino(s) com uma " +"instrução BLR (Branch para Registrador de Link) estará disponível, mas " +"somente se a instrução de branch em cada origem salva o registrador de link, " +"e uma ação para copiar o(s) endereço(s) para a área de transferência estará " +"disponível.\n" +"\n" +"Se a coluna do símbolo de origem / destino em uma linha da tabela for " +"clicada com o botão direito, uma ação para substituir a(s) instrução(ões) no " +"início do símbolo com uma instrução BLR estará disponível, mas somente se " +"linha selecionada contiver um símbolo. \n" +"\n" +"Todos os menus de contexto tem uma ação para excluir a(s) linha(s) " +"selecionada(s) da lista de candidatos." #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10565,19 +10708,19 @@ msgstr "Rússia" msgid "SD Card" msgstr "Cartão SD" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Tamanho do Cartão SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Imagem do Cartão SD (*.raw);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Local do Cartão SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Configurações do Cartão SD" @@ -10585,7 +10728,7 @@ msgstr "Configurações do Cartão SD" msgid "SD Root:" msgstr "Raiz do SD:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Pasta de Sincronização do SD:" @@ -10620,11 +10763,11 @@ msgstr "Contexto do SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Sa&lvar Código" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Salvar Estado Salvo" @@ -10656,11 +10799,11 @@ msgstr "Salvar estado do Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Exportar Dados Salvos" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Salvar o Log do FIFO" @@ -10678,11 +10821,11 @@ msgstr "Jogo Salvo" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Arquivo de jogo salvo (*.sav);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Importar Dados Salvos" @@ -10694,7 +10837,7 @@ msgstr "Salvar Estado Mais Antigo" msgid "Save Preset" msgstr "Salvar Predefinição" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Salvar o Arquivo da Gravação Como" @@ -10744,23 +10887,23 @@ msgstr "Salvar no Slot 8" msgid "Save State Slot 9" msgstr "Salvar no Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Salvar no Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Salvar no Slot Mais Antigo" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Salvar no Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Salvar o Mapa dos Símbolos &Como..." @@ -10780,11 +10923,11 @@ msgstr "Salvar como Predefinição..." msgid "Save as..." msgstr "Salvar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Salvar o arquivo de saída combinada dos dados como" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10798,11 +10941,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Salvar na Mesma Pasta da ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Salvar o arquivo do mapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Salvar o arquivo de assinatura" @@ -10810,11 +10953,11 @@ msgstr "Salvar o arquivo de assinatura" msgid "Save to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Salvar..." @@ -10846,7 +10989,7 @@ msgstr "Screenshot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Pesquisar" @@ -10875,7 +11018,7 @@ msgstr "" "A busca atualmente não é possível no espaço do endereço virtual. Por favor " "execute o jogo um pouco e tente de novo." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Procurar uma Instrução" @@ -10883,7 +11026,7 @@ msgstr "Procurar uma Instrução" msgid "Search games..." msgstr "Pesquisar jogos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Procurar instrução" @@ -10932,11 +11075,11 @@ msgid "Select Dump Path" msgstr "Selecione o Caminho do Dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Selecione o Diretório de Exportação" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Selecionar Arquivo da Figura" @@ -10976,7 +11119,7 @@ msgstr "Selecione a Correção do Skylander" msgid "Select Skylander File" msgstr "Selecione o arquivo do Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2" @@ -10984,7 +11127,7 @@ msgstr "Slot %1 - %2" msgid "Select State" msgstr "Selecionar" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Slot de Estado Salvo" @@ -11051,7 +11194,7 @@ msgstr "Selecione um Diretório" msgid "Select a File" msgstr "Selecione um Arquivo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Selecione uma pasta pra sincronizar com a imagem do cartão SD" @@ -11059,7 +11202,7 @@ msgstr "Selecione uma pasta pra sincronizar com a imagem do cartão SD" msgid "Select a Game" msgstr "Selecione um Jogo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Selecione uma Imagem do Cartão SD" @@ -11071,7 +11214,7 @@ msgstr "Selecione um arquivo" msgid "Select a game" msgstr "Selecione um jogo" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Selecione um título pra instalar no NAND" @@ -11079,7 +11222,7 @@ msgstr "Selecione um título pra instalar no NAND" msgid "Select e-Reader Cards" msgstr "Selecione os Cartões do e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Selecione o endereço do módulo do RSO:" @@ -11096,7 +11239,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Selecione o arquivo das chaves (dump do OTP/SEEPROM)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Importar" @@ -11120,7 +11263,7 @@ msgstr "O perfil de controle selecionado não existe" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "O jogo selecionado não existe na lista de jogos!" @@ -11148,7 +11291,7 @@ msgstr "" "Seleciona o adaptador de vídeo a ser utilizado.

Na " "dúvida, selecione o primeiro da lista." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11204,7 +11347,7 @@ msgstr "" "utilizado por algumas TVs.

Na dúvida, selecione " "\"Desligado\"." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11245,7 +11388,7 @@ msgstr "" "

Na dúvida, selecione \"Automática\"." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11265,7 +11408,7 @@ msgstr "" msgid "Send" msgstr "Enviar" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Posição da Sensor Bar:" @@ -11299,7 +11442,7 @@ msgstr "Definir &Valor" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 msgid "Set Brea&kpoint" -msgstr "" +msgstr "Definir Ponto de In&terrupção" #. i18n: Here, PC is an acronym for program counter, not personal computer. #: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 @@ -11334,7 +11477,7 @@ msgstr "Definir final do endereço do símbolo" msgid "Set symbol size (%1):" msgstr "Definir tamanho do símbolo (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11344,7 +11487,7 @@ msgstr "" "jogos PAL.\n" "Pode não funcionar em todos os jogos." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Define o idioma do sistema do Wii." @@ -11355,8 +11498,12 @@ msgid "" "

If unsure, select <System Language>." msgstr "" +"Define o idioma de exibição para a interface do Dolphin.

Mudanças " +"nesta opção só serão aplicadas quando o Dolphin for reiniciado." +"

Na dúvida, selecione \"<Idioma do Sistema>\"." +"" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11370,6 +11517,10 @@ msgid "" "have loaded will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" +"Define o estilo para a interface do Dolphin. Qualquer estilo customizado que " +"tenha sido carregado será mostrado aqui, permitindo que você alterne para " +"eles.

Na dúvida, selecione \"(Sistema)\"." #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" @@ -11379,7 +11530,7 @@ msgstr "" "Configura a busca usando mapeamentos MEM1 e MEM2 padrão (no Wii) no espaço " "do endereço virtual. Isto funcionará para a vasta maioria dos jogos." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11393,7 +11544,7 @@ msgstr "SetupWiiMemory: Não foi possível criar o arquivo setting.txt" msgid "Severity" msgstr "Gravidade" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Compilação de Shaders" @@ -11415,16 +11566,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Controle Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Mostrar Velocidade em %" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Mostrar &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Mostrar Barra de &Ferramentas" @@ -11432,11 +11583,11 @@ msgstr "Mostrar Barra de &Ferramentas" msgid "Show Active Title in Window Title" msgstr "Mostrar Software em Execução no Título da Janela" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Mostrar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Austrália" @@ -11449,7 +11600,7 @@ msgstr "Mostrar Jogo em Execução no Discord" msgid "Show Disabled Codes First" msgstr "Mostrar Códigos Desativados Primeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11458,27 +11609,27 @@ msgstr "ELF/DOL" msgid "Show Enabled Codes First" msgstr "Mostrar Códigos Ativados Primeiro" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Mostrar Contador de Quadros" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Mostrar Duração dos Quadros" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "França" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Alemanha" @@ -11490,23 +11641,23 @@ msgstr "Mostrar Sobreposição do Modo Golfe" msgid "Show Infinity Base" msgstr "Mostrar Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Mostrar Entrada de Dados" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Japão" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Coréia" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Mostrar Contador de Lag" @@ -11514,19 +11665,19 @@ msgstr "Mostrar Contador de Lag" msgid "Show Language:" msgstr "Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Mostrar &Configurações do Log" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Mostrar Mensagens do NetPlay" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Mostrar Ping do NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Holanda" @@ -11534,7 +11685,7 @@ msgstr "Holanda" msgid "Show On-Screen Display Messages" msgstr "Mostrar Mensagens na Tela" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Europa" @@ -11543,27 +11694,27 @@ msgstr "Europa" msgid "Show PC" msgstr "Mostrar PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Mostrar Gráfico de Desempenho" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Mostrar Plataformas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "Exibir Estatísticas de Projeção" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Mostrar Contador de Regravações" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Rússia" @@ -11571,51 +11722,51 @@ msgstr "Rússia" msgid "Show Skylanders Portal" msgstr "Mostrar Portal Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Espanha" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Mostrar Velocidade em Cores" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Exibir Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Mostrar Relógio do Sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Desconhecido" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Mostrar Duração do VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Global" @@ -11628,7 +11779,7 @@ msgid "Show in Code" msgstr "Mostrar no Código" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Mostrar na Memória" @@ -11655,8 +11806,13 @@ msgid "" "requests, and more.

If unsure, leave this unchecked." "" msgstr "" +"Mostra a interface de depuração do Dolphin. Isso permite visualizar e " +"modificar o código e o conteúdo da memória de um jogo, definir pontos de " +"interrupção para depuração, examinar requisições de rede, e muito mais. " +"

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11665,7 +11821,7 @@ msgstr "" "enquanto joga no NetPlay.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked.
If unsure, leave " "this checked." msgstr "" +"Mostra mensagens na janela de renderização. Essas mensagens desaparecem após " +"alguns segundos.

Na dúvida, mantenha essa opção " +"ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11697,20 +11856,28 @@ msgid "" "Shows the Mouse Cursor at all times.

If unsure, " "select "On Movement"." msgstr "" +"Mostra o cursor do mouse o tempo todo.

Na dúvida, " +"selecione \"Ao Mover\"." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 msgid "" "Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." "

If unsure, select this mode." msgstr "" +"Mostra o cursor do mouse sempre que for movido, ocultando automaticamente " +"após alguns segundos parado.

Na dúvida, selecione " +"essa opção." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." "

If unsure, leave this checked." msgstr "" +"Mostra o nome do software atualmente em execução na barra de título da " +"janela de renderização.

Na dúvida, mantenha essa " +"opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11720,7 +11887,7 @@ msgstr "" "e seu desvio padrão.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11730,7 +11897,7 @@ msgstr "" "desvio padrão.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11740,7 +11907,7 @@ msgstr "" "métrica de suavidade visual.

Na dúvida, mantenha " "essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11759,7 +11926,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11767,7 +11934,7 @@ msgstr "" "Mostra várias estatísticas de projeção.

Na dúvida, " "mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11791,7 +11958,7 @@ msgstr "Alternar Horizontal" msgid "Sideways Wii Remote" msgstr "Wii Remote na Horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Base de Dados da Assinatura" @@ -11815,7 +11982,7 @@ msgid "Signed Integer" msgstr "Inteiro Assinada" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chinês Simplificado" @@ -11832,7 +11999,7 @@ msgstr "Seis Eixos" msgid "Size" msgstr "Tamanho" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11844,7 +12011,7 @@ msgstr "" msgid "Skip" msgstr "Ignorar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Ignorar Desenho" @@ -11899,7 +12066,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;Todos os arquivos (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -11975,7 +12142,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Classificar por Nome" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Modo de Som:" @@ -11989,7 +12156,7 @@ msgstr "Espanha" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Espanhol" @@ -11997,11 +12164,11 @@ msgstr "Espanhol" msgid "Speaker Pan" msgstr "Balanço do Speaker" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volume do Auto-Falante:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Especializada (Padrão)" @@ -12009,7 +12176,7 @@ msgstr "Especializada (Padrão)" msgid "Specific" msgstr "Específico" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12061,7 +12228,7 @@ msgstr "Controle Padrão" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Iniciar &NetPlay..." @@ -12070,11 +12237,11 @@ msgstr "Iniciar &NetPlay..." msgid "Start Branch Watch" msgstr "Iniciar Branch Watch" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Iniciar Nova Pesquisa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Iniciar Gravação de Replay" @@ -12082,7 +12249,7 @@ msgstr "&Iniciar Gravação de Replay" msgid "Start Recording" msgstr "Iniciar Gravação" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Iniciar em Tela Cheia" @@ -12094,7 +12261,7 @@ msgstr "Iniciar com Patches do Riivolution" msgid "Start with Riivolution Patches..." msgstr "Iniciar com Patches do Riivolution..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Jogo iniciado" @@ -12154,7 +12321,7 @@ msgstr "Passo bem-sucedido!" msgid "Stepping" msgstr "Passando" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Estéreo" @@ -12183,12 +12350,12 @@ msgid "Stick" msgstr "Eixo" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Parar a Reprodução/Gravação de Replay" @@ -12234,7 +12401,7 @@ msgstr "" "Cópias do XFB na RAM (e na Textura)

Na dúvida, " "mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Esticar para a Janela" @@ -12254,7 +12421,7 @@ msgstr "Palheta" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Estilo" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -12273,8 +12440,8 @@ msgstr "Stylus" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Sucesso" @@ -12301,7 +12468,7 @@ msgstr "%n de %1 arquivo(s) de jogo salvo exportados com sucesso." msgid "Successfully exported save files" msgstr "Arquivos dos saves exportados com sucesso" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Certificados da NAND extraídos com sucesso" @@ -12313,12 +12480,12 @@ msgstr "Arquivo extraído com sucesso." msgid "Successfully extracted system data." msgstr "Dados extraídos do sistema com sucesso." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Arquivo de dados salvos importado com sucesso." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Software instalado na NAND com sucesso." @@ -12341,12 +12508,12 @@ msgstr "Suporte" msgid "Supported file formats" msgstr "Formatos de arquivo suportados" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Suporta SD e SDHC. O tamanho padrão é 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -12407,7 +12574,7 @@ msgstr "Nome do símbolo:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Símbolos" @@ -12435,7 +12602,7 @@ msgstr "" "Sincroniza os threads da GPU e da CPU pra ajudar a impedir os congelamentos " "aleatórios no modo Dual Core. (ON = Compatível, OFF = Rápido)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12456,11 +12623,11 @@ msgid "Synchronizing save data..." msgstr "Sincronizando dados salvos..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Idioma do Sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Entrada de Dados TAS" @@ -12473,7 +12640,7 @@ msgstr "Ferramentas de TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Etiquetas" @@ -12491,7 +12658,7 @@ msgstr "Cauda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Capturar Tela" @@ -12532,7 +12699,7 @@ msgstr "Cache de Texturas" msgid "Texture Cache Accuracy" msgstr "Precisão do Cache de Texturas" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Exportação de Texturas" @@ -12544,7 +12711,7 @@ msgstr "Filtragem de Textura" msgid "Texture Filtering:" msgstr "Filtragem de Textura:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Sobreposição do Formato das Texturas" @@ -12591,7 +12758,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "As partições das Masterpieces estão ausentes." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12599,7 +12766,7 @@ msgstr "" "A NAND não pôde ser reparada. É recomendável fazer backup dos dados salvos " "atuais e recomeçar do zero com uma NAND limpa." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "A NAND foi reparada." @@ -12617,7 +12784,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "A quantidade de dinheiro que esse Skylander possui. Entre 0 e 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12983,7 +13150,7 @@ msgstr "O índice de chave comum especificado é {0}, mas deveria ser {1}." msgid "The specified file \"{0}\" does not exist" msgstr "O arquivo especificado \"{0}\" não existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -13048,7 +13215,7 @@ msgstr "A partição de atualização está ausente." msgid "The update partition is not at its normal position." msgstr "A partição de atualização não está em sua posição normal." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13074,7 +13241,7 @@ msgstr "A partição {0} não está alinhada corretamente." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Tema" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -13447,7 +13614,7 @@ msgstr "Tempo Esgotado" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Título" @@ -13456,12 +13623,12 @@ msgid "To" msgstr "Até" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Até:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "Alternar &Tela Cheia" @@ -13550,7 +13717,7 @@ msgstr "Controles da Ferramenta" msgid "Toolbar" msgstr "Barra de Ferramentas" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Em cima" @@ -13601,7 +13768,7 @@ msgid "Toy code:" msgstr "Código do brinquedo:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chinês Tradicional" @@ -13621,8 +13788,8 @@ msgstr "Trap Master" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Erro Traversal" @@ -13705,7 +13872,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Erro no Redirecionamento USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13716,7 +13883,7 @@ msgstr "" "hardware de entrada.

Na dúvida, selecione esse modo." "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13729,7 +13896,7 @@ msgstr "" "notado engasgos com os Ubershaders Híbridos e possua uma GPU " "consideravelmente potente.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13743,7 +13910,7 @@ msgstr "" "compilação de shaders com um impacto mínimo no desempenho, mas os resultados " "dependem do comportamento do driver de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Incapaz de auto-detectar o módulo do RSO" @@ -13815,11 +13982,11 @@ msgstr "Imagens do GC/Wii sem compressão (*.iso *.gcm)" msgid "Undead" msgstr "Morto-Vivo" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Desfazer Carregamento" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Desfazer Estado Salvo" @@ -13839,7 +14006,7 @@ msgstr "" "Desinstalar o WAD removerá a versão atualmente instalada desse software da " "NAND, sem excluir seus dados salvos. Continuar?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "Estados Unidos" @@ -13936,7 +14103,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Desconhecido (%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Desconhecido (%1).bin" @@ -13952,9 +14119,9 @@ msgstr "Fechar ROM" msgid "Unlock Cursor" msgstr "Destravar Cursor" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" -msgstr "" +msgstr "Desbloqueado em %1" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13995,7 +14162,7 @@ msgid "Up" msgstr "Para cima" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Atualizar" @@ -14068,7 +14235,7 @@ msgstr "Utilizar Todos os Dados Salvos do Wii" msgid "Use Built-In Database of Game Names" msgstr "Usar Nomes de Jogos da Base de Dados Embutida" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Usar Codec Sem Perdas (FFV1)" @@ -14076,7 +14243,7 @@ msgstr "Usar Codec Sem Perdas (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Usar o Ponteiro Controlado pelo Mouse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Usar Modo PAL60 (EuRGB60)" @@ -14089,8 +14256,11 @@ msgid "" "Use RetroAchievements rich presence in your Discord status.

Show " "Current Game on Discord must be enabled." msgstr "" +"Mostra o status do RetroAchievements no seu perfil do Discord." +"

'Mostrar Jogo em Execução no Discord' precisa estar ativado para que " +"essa opção funcione." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14167,6 +14337,9 @@ msgid "" "column.

If unsure, leave this checked." msgstr "" +"Usa a base de dados do Dolphin para mostrar nomes formatados corretamente na " +"coluna de título da lista de jogos.

Na dúvida, " +"mantenha essa opção ativada." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -14181,7 +14354,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14191,7 +14364,7 @@ msgstr "" "separada será criada para a renderização.

Na " "dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
Caso " "contrário, na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14493,7 +14666,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Aviso" @@ -14617,7 +14790,7 @@ msgstr "Ocidental (Windows-1252)" msgid "Whammy" msgstr "Distorção" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14630,7 +14803,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14643,7 +14816,7 @@ msgstr "" "

Na dúvida, mantenha essa opção ativada." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Dispositivos Permitidos no Redirecionamento USB" @@ -14693,7 +14866,7 @@ msgstr "Botões do Wii Remote" msgid "Wii Remote Gyroscope" msgstr "Giroscópio do Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Configurações do Wii Remote" @@ -14721,7 +14894,7 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dados do Wii ainda não são públicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Arquivo de dados salvos do Wii (*.bin);;Todos os arquivos (*)" @@ -14729,7 +14902,7 @@ msgstr "Arquivo de dados salvos do Wii (*.bin);;Todos os arquivos (*)" msgid "WiiTools Signature MEGA File" msgstr "MEGA Arquivo de Assinatura do WiiTools" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Resolução da Janela" @@ -14760,7 +14933,7 @@ msgstr "Global" msgid "Write" msgstr "Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "Salvar Despejo de Log do Bloco JIT" @@ -14809,11 +14982,11 @@ msgstr "Região incorreta" msgid "Wrong revision" msgstr "Revisão incorreta" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "Escrito em \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "Escrito em \"{0}\"." @@ -14864,7 +15037,7 @@ msgstr "Sim" msgid "Yes to &All" msgstr "Sim para &Todos" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14874,7 +15047,7 @@ msgstr "" "%1. Todo o conteúdo existente na pasta será excluído. Tem certeza de que " "quer continuar?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -15023,7 +15196,7 @@ msgstr "" "Gostaria de interromper a emulação para corrigir o problema?\n" "Se optar por continuar, o áudio pode não funcionar corretamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -15245,6 +15418,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Equipe Dolphin. \"GameCube\" e \"Wii\" são marcas registradas " +"da Nintendo. Dolphin não é afiliado à Nintendo de forma alguma." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ro.po b/Languages/po/ro.po index 45a8f75093..f1d9969c0e 100644 --- a/Languages/po/ro.po +++ b/Languages/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Arian - Cazare Muncitori , 2014\n" "Language-Team: Romanian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -165,18 +165,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -184,11 +184,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -200,8 +200,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -326,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -367,11 +367,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Puncte de întrerupere" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -379,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -426,13 +426,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -446,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulare" @@ -471,40 +471,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fișier" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Avans Cadru" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Configurări Grafică" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Ajutor" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Configurări Tastă Rapidă" @@ -524,7 +524,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -536,7 +536,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -548,11 +548,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "&Status de Încărcare" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -562,11 +562,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -574,11 +574,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -586,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -595,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Deschide..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opțiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pauză" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Redare" @@ -619,7 +619,7 @@ msgstr "&Redare" msgid "&Properties" msgstr "&Proprietăți" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Înregistrări" @@ -645,11 +645,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Resetează" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Stop" @@ -681,7 +681,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -689,7 +689,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Instrumente" @@ -699,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Vizualizează" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -725,11 +725,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -843,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1028,7 +1028,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1132,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1174,8 +1174,8 @@ msgstr "Precizie:" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1255,7 +1255,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adaptor:" @@ -1332,7 +1332,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Adaugă..." @@ -1346,7 +1346,7 @@ msgstr "Adaugă..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1540,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1580,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analizează" @@ -1606,15 +1606,15 @@ msgstr "Antialias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1632,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1664,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Raport Aspect:" @@ -1714,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Audio" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Backend Audio:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1734,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1755,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1763,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1819,19 +1819,19 @@ msgstr "Înregistrare BP" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Configurări Backend" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1874,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -1898,7 +1898,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Principal" @@ -1950,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1964,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2000,7 +2000,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2012,11 +2012,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Jos" @@ -2193,20 +2193,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Tampon:" @@ -2255,7 +2255,7 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2359,11 +2359,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Schimbă &Discul..." @@ -2470,7 +2470,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2488,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2496,7 +2496,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2508,7 +2508,7 @@ msgstr "Chat" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Căutare Trișări" @@ -2516,7 +2516,7 @@ msgstr "Căutare Trișări" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2554,11 +2554,11 @@ msgstr "Alege un fișier pentru a-l deschide" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2589,7 +2589,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Curăță" @@ -2597,7 +2597,7 @@ msgstr "Curăță" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2618,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Închide" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2662,7 +2662,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2689,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2699,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "Configurare" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmă la Oprire" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "Conectare" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Conectează Placa de Echilibru" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Conectează Tastatura USB" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2885,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3013,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3022,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3032,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3054,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3245,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3261,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Țara:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3298,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "Critic" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Decupare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3314,18 +3314,18 @@ msgstr "" msgid "Crossfade" msgstr "Estompare Intercalată" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3345,11 +3345,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3357,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3408,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3416,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3495,7 +3495,7 @@ msgstr "Zonă Moartă" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Depanare" @@ -3505,7 +3505,7 @@ msgstr "Depanare" msgid "Decimal" msgstr "Zecimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3552,7 +3552,7 @@ msgstr "Implicit" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "ISO implicit:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3576,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3622,7 +3622,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descriere" @@ -3671,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Detectare" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3701,7 +3701,7 @@ msgstr "Configurări Dispozitiv" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3709,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3733,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3741,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Dezactivează Ceața" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4134,11 +4134,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Olandeză" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "I&sire" @@ -4162,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Actualizări Anterioare Memorie" @@ -4236,7 +4236,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Firul Emu rulează deja" @@ -4244,7 +4244,7 @@ msgstr "Firul Emu rulează deja" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4262,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4284,16 +4284,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4341,7 +4341,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4367,7 +4367,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4380,7 +4380,7 @@ msgstr "Activare MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Activare Scanare Progresivă" @@ -4389,11 +4389,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Activare Economizor Ecran" @@ -4413,11 +4413,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Activare Wireframe" @@ -4473,7 +4473,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4504,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4512,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4529,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4557,7 +4557,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4565,7 +4565,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4573,7 +4573,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4602,7 +4602,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engleză" @@ -4619,7 +4619,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4643,7 +4643,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4682,9 +4682,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4697,24 +4697,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4744,7 +4744,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4851,12 +4851,12 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4900,11 +4900,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportă Toate Salvările Wii" @@ -4919,7 +4919,7 @@ msgstr "" msgid "Export Recording" msgstr "Export Înregistrare" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Export Înregistrare..." @@ -4947,7 +4947,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4975,7 +4975,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5013,7 +5013,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Jucător FIFO" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5051,7 +5051,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5072,7 +5072,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5126,7 +5126,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5153,18 +5153,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5191,7 +5191,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5201,8 +5201,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5214,7 +5214,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5242,11 +5242,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5294,11 +5294,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5357,11 +5357,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5422,27 +5422,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5493,7 +5493,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5529,7 +5529,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5543,7 +5543,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5551,24 +5551,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Info Fişier " #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5686,7 +5686,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Forțare 16:9" @@ -5694,7 +5694,7 @@ msgstr "Forțare 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Forțare 4:3" @@ -5726,11 +5726,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5804,11 +5804,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Interval Cadru" @@ -5816,7 +5816,7 @@ msgstr "Interval Cadru" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5867,7 +5867,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Franceză" @@ -5886,8 +5886,8 @@ msgid "From" msgstr "De la" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5943,11 +5943,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6091,7 +6091,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6104,7 +6104,7 @@ msgstr "ID Joc:" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6212,7 +6212,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Coduri Gecko" @@ -6244,13 +6244,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Germană" @@ -6326,7 +6326,7 @@ msgstr "Verde Stânga" msgid "Green Right" msgstr "Verde Dreapta" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6408,7 +6408,7 @@ msgstr "Ascunde" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6432,11 +6432,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6475,11 +6475,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6505,7 +6505,7 @@ msgstr "Taste rapide" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6563,7 +6563,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "Sensibilitate IR:" @@ -6627,14 +6627,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6678,7 +6678,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6687,7 +6687,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6803,16 +6803,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6832,8 +6832,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informații" @@ -6846,11 +6846,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Intrare" @@ -6876,7 +6876,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Introdu Card SD" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6916,7 +6916,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7002,7 +7002,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7027,7 +7027,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7052,7 +7052,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7090,13 +7090,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italiană" @@ -7109,11 +7109,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7121,47 +7121,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7173,11 +7173,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7188,16 +7188,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japoneză" @@ -7257,12 +7257,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Coreeană" @@ -7309,23 +7309,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7333,7 +7333,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7423,11 +7423,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7439,15 +7439,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Încarcă" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7459,7 +7459,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Încarcă Texturi Personalizate" @@ -7467,7 +7467,7 @@ msgstr "Încarcă Texturi Personalizate" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7577,19 +7577,19 @@ msgstr "Încarcă Status din Slotul 8" msgid "Load State Slot 9" msgstr "Încarcă Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7601,35 +7601,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7643,7 +7643,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7669,7 +7669,7 @@ msgstr "Configurare Jurnal" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7677,7 +7677,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7693,27 +7693,27 @@ msgstr "Jurnale Generate" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7773,7 +7773,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7790,12 +7790,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7811,11 +7811,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7824,7 +7824,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7845,7 +7845,7 @@ msgstr "" msgid "Memory Card" msgstr "Card de memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7896,11 +7896,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Diverse" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Configurări Diverse" @@ -7916,7 +7916,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7936,7 +7936,7 @@ msgstr "" msgid "Modifier" msgstr "Modificator" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7952,8 +7952,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7961,7 +7961,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8019,10 +8019,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8031,7 +8031,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8058,7 +8058,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8268,7 +8268,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8276,7 +8276,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8289,7 +8289,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8333,8 +8333,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8483,7 +8483,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Interval Obiect" @@ -8508,7 +8508,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8530,7 +8530,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Documentație Online" @@ -8538,13 +8538,13 @@ msgstr "&Documentație Online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8561,7 +8561,7 @@ msgstr "Deschide" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8570,7 +8570,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8660,7 +8660,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8702,11 +8702,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8720,11 +8720,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8812,7 +8812,7 @@ msgstr "Pauză" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8857,7 +8857,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminare Per-Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8865,15 +8865,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8891,7 +8891,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8908,7 +8908,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8916,7 +8916,7 @@ msgstr "" msgid "Play" msgstr "Rulare" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8924,11 +8924,11 @@ msgstr "" msgid "Play Recording" msgstr "Rulează Înregistrarea" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Opțiuni de Rulare" @@ -8936,27 +8936,27 @@ msgstr "Opțiuni de Rulare" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8978,7 +8978,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9011,7 +9011,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9027,20 +9027,20 @@ msgstr "Efect Post-Procesare:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9075,7 +9075,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9144,11 +9144,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9162,7 +9162,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9186,7 +9186,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9218,11 +9218,11 @@ msgstr "R-Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9247,7 +9247,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9255,7 +9255,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9314,7 +9314,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Înregistrare" @@ -9326,11 +9326,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Opțiuni Înregistrare" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9394,7 +9394,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9427,7 +9427,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Elimină" @@ -9464,11 +9464,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Redare în Fereastra Principală" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9501,7 +9501,7 @@ msgstr "Resetare" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9533,7 +9533,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9712,19 +9712,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9732,7 +9732,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9767,11 +9767,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Sal&vează Status" @@ -9803,11 +9803,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9825,11 +9825,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9841,7 +9841,7 @@ msgstr "Salvează cel mai Vechi Status" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9891,23 +9891,23 @@ msgstr "Salvează Status din Slotul 8" msgid "Save State Slot 9" msgstr "Salvează Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9927,11 +9927,11 @@ msgstr "" msgid "Save as..." msgstr "Salvează ca..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9942,11 +9942,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9954,11 +9954,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9988,7 +9988,7 @@ msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Căutare" @@ -10015,7 +10015,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10023,7 +10023,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10068,11 +10068,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10112,7 +10112,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10120,7 +10120,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10187,7 +10187,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10195,7 +10195,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10207,7 +10207,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10215,7 +10215,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10232,7 +10232,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Selectează fișierul salvat" @@ -10256,7 +10256,7 @@ msgstr "Profilul controlerului selectat, nu există" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10280,7 +10280,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10310,7 +10310,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10332,7 +10332,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10346,7 +10346,7 @@ msgstr "" msgid "Send" msgstr "Trimite" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Poziția barei de senzor:" @@ -10411,14 +10411,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10430,7 +10430,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10449,7 +10449,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10463,7 +10463,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10485,16 +10485,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Afișare &Jurnal" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Afișare &Bară de Instrumente" @@ -10502,11 +10502,11 @@ msgstr "Afișare &Bară de Instrumente" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10519,7 +10519,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10528,27 +10528,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Afișare FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Afișare Franța" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Afișare GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10560,23 +10560,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Afișare Ecran Conectat" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Afișare Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Afișare Coreea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10584,19 +10584,19 @@ msgstr "" msgid "Show Language:" msgstr "Afișare Limbă:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Afișare Jurnal &Configurare" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10604,7 +10604,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Afișare PAL" @@ -10613,27 +10613,27 @@ msgstr "Afișare PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Afișare Platforme" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Afișare Regiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10641,51 +10641,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Afișare Statistici" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Afișare Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Afișare SUA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Afișare Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10698,7 +10698,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10726,13 +10726,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10771,47 +10771,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10833,7 +10833,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10857,7 +10857,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Chineză simplificată" @@ -10874,7 +10874,7 @@ msgstr "" msgid "Size" msgstr "Dimensiune" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10884,7 +10884,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11001,7 +11001,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11015,7 +11015,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spaniolă" @@ -11023,11 +11023,11 @@ msgstr "Spaniolă" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Volum Difuzor:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11035,7 +11035,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11077,7 +11077,7 @@ msgstr "Controler Standard" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11086,11 +11086,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11098,7 +11098,7 @@ msgstr "" msgid "Start Recording" msgstr "Pornește Înregistrarea" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11110,7 +11110,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11170,7 +11170,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11199,12 +11199,12 @@ msgid "Stick" msgstr "Joystick" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11240,7 +11240,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Potrivește la Fereastră" @@ -11279,8 +11279,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11307,7 +11307,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11319,12 +11319,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11347,12 +11347,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11410,7 +11410,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11436,7 +11436,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11455,11 +11455,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Limbă Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Intrare TAS" @@ -11472,7 +11472,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11490,7 +11490,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Realizează CapturăEcran" @@ -11529,7 +11529,7 @@ msgstr "Cache Textură" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11541,7 +11541,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Suprapunere Format Textură" @@ -11578,13 +11578,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11599,7 +11599,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11893,7 +11893,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11951,7 +11951,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12273,7 +12273,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titlu" @@ -12282,12 +12282,12 @@ msgid "To" msgstr "Către" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12376,7 +12376,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Sus" @@ -12427,7 +12427,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Chineză tradițională" @@ -12447,8 +12447,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12529,14 +12529,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12544,7 +12544,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12553,7 +12553,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12616,11 +12616,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Anulare Status Încărcare" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Anulare Status Salvare" @@ -12638,7 +12638,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12730,7 +12730,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12746,7 +12746,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12789,7 +12789,7 @@ msgid "Up" msgstr "Sus" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Actualizare" @@ -12860,7 +12860,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12868,7 +12868,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12882,7 +12882,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12950,14 +12950,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13220,7 +13220,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Atenție" @@ -13309,7 +13309,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13317,7 +13317,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13325,7 +13325,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13375,7 +13375,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13403,7 +13403,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13411,7 +13411,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13442,7 +13442,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13491,11 +13491,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13546,14 +13546,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13650,7 +13650,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ru.po b/Languages/po/ru.po index 629db40418..13cd907e51 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Илья Гредасов , 2021\n" "Language-Team: Russian (http://app.transifex.com/delroth/dolphin-emu/" @@ -105,7 +105,7 @@ msgstr "" "%1\n" "хочет присоединиться к вашей группе." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -159,7 +159,7 @@ msgstr "%1 (медленно)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -194,7 +194,7 @@ msgstr "%1 не поддерживает данный функционал на msgid "%1 doesn't support this feature." msgstr "%1 не поддерживает данный функционал." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -204,11 +204,11 @@ msgstr "" "%2 объект(ов)\n" "Текущий кадр: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 присоединился" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 вышел" @@ -216,11 +216,11 @@ msgstr "%1 вышел" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 разблокировал достижений: %2 из %3 в количестве очков: %4 из %5" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 — некорректный образ игры" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 теперь играет в гольф" @@ -232,8 +232,8 @@ msgstr "%1 играет в %2" msgid "%1 memory ranges" msgstr "Диапазонов памяти: %1" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 мс" @@ -250,7 +250,7 @@ msgstr "Найдено сессий: %1" msgid "%1 sessions found" msgstr "Найдено сессий: %1" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -358,11 +358,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Об эмуляторе" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Добавить точку останова в памяти" @@ -379,11 +379,11 @@ msgstr "&Добавить функцию" msgid "&Add..." msgstr "&Добавить..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Ассемблер" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "Настройки &звука" @@ -399,11 +399,11 @@ msgstr "&Окно без рамок" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Точки останова" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Баг-трекер" @@ -411,15 +411,15 @@ msgstr "&Баг-трекер" msgid "&Cancel" msgstr "&Отмена" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Проверить обновления..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Очистить символы" @@ -427,7 +427,7 @@ msgstr "&Очистить символы" msgid "&Clone..." msgstr "&Клонировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Код" @@ -435,7 +435,7 @@ msgstr "&Код" msgid "&Connected" msgstr "&Подключен" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "Настройки &управления" @@ -458,13 +458,13 @@ msgstr "&Удалить" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Удалить из наблюдения" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Удалить из наблюдений" @@ -478,11 +478,11 @@ msgstr "&Изменить код..." msgid "&Edit..." msgstr "&Изменить..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Извлечь диск" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Эмуляция" @@ -503,40 +503,40 @@ msgid "&Export as .gci..." msgstr "&Экспорт в .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Файл" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Шрифт..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "Перемотка &кадров" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "Настройки &свободного обзора" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Создать символы из" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Репозиторий на &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "Настройки &графики" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Помощь" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "Горячие &клавиши" @@ -556,7 +556,7 @@ msgstr "&Импорт состояния…" msgid "&Import..." msgstr "&Импортировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity Base" @@ -568,7 +568,7 @@ msgstr "&Вставить blr" msgid "&Interframe Blending" msgstr "&Межкадровый блендинг" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -580,11 +580,11 @@ msgstr "&Язык:" msgid "&Load Branch Watch" msgstr "&Загрузить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "Быстрая &загрузка" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Загрузить карту символов" @@ -594,11 +594,11 @@ msgstr "&Загрузить файл по текущему адресу" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Зафиксировать наблюдения" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Зафиксировать виджеты" @@ -606,11 +606,11 @@ msgstr "&Зафиксировать виджеты" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Память" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Запись" @@ -618,7 +618,7 @@ msgstr "&Запись" msgid "&Mute" msgstr "&Выключить звук" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Сеть" @@ -627,23 +627,23 @@ msgid "&No" msgstr "&Нет" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Открыть..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Опции" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Патчить HLE-функции" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Пауза" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Запустить" @@ -651,7 +651,7 @@ msgstr "&Запустить" msgid "&Properties" msgstr "&Свойства" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "Режим \"Только для &чтения\"" @@ -659,7 +659,7 @@ msgstr "Режим \"Только для &чтения\"" msgid "&Refresh List" msgstr "&Обновить список" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Регистры" @@ -677,11 +677,11 @@ msgid "&Rename symbol" msgstr "&Переименовать символ" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Сбросить" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Менеджер наборов ресурсов" @@ -689,7 +689,7 @@ msgstr "&Менеджер наборов ресурсов" msgid "&Save Branch Watch" msgstr "&Сохранить наблюдение ветви" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Сохранить карту символов" @@ -697,7 +697,7 @@ msgstr "&Сохранить карту символов" msgid "&Scan e-Reader Card(s)..." msgstr "&Сканировать карту(ы) электронного ридера…" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Портал Skylanders" @@ -705,7 +705,7 @@ msgstr "&Портал Skylanders" msgid "&Speed Limit:" msgstr "&Ограничение скорости:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Остановить" @@ -713,7 +713,7 @@ msgstr "&Остановить" msgid "&Theme:" msgstr "&Тема:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Потоки" @@ -721,7 +721,7 @@ msgstr "&Потоки" msgid "&Tool" msgstr "&Инструмент" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Инструменты" @@ -731,21 +731,21 @@ msgstr "&Выгрузить образ игры" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "&Разблокировать наблюдения" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Наблюдение" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Сайт" @@ -757,11 +757,11 @@ msgstr "&Вики" msgid "&Yes" msgstr "&Да" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' не найден, имена символов не созданы" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' не найден, ищем на замену распространенные функции" @@ -809,7 +809,7 @@ msgstr "- Вычесть" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Неизвестно--" @@ -875,7 +875,7 @@ msgstr "16-разрядное целое число со знаком" msgid "16-bit Unsigned Integer" msgstr "16-разрядное целое число без знака" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -959,7 +959,7 @@ msgstr "16 ГиБ (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Мбит (59 блоков)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1060,7 +1060,7 @@ msgstr "<Системный язык>" msgid "Disabled in Hardcore Mode." msgstr "Отключено в режиме «Хардкор»." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Если вы не уверены, не устанавливайте этот флажок.
If unsure, leave this unchecked." @@ -1967,19 +1967,19 @@ msgstr "Регистр в ТО " msgid "Back Chain" msgstr "Цепочка возврата" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Бэкенд" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Многопоточный бэкенд" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Настройки бэкенда" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Бэкенд:" @@ -2022,7 +2022,7 @@ msgstr "Указано некорректное значение." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Логотип" @@ -2046,7 +2046,7 @@ msgstr "Базовый адрес" msgid "Base priority" msgstr "Базовый приоритет" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Основные" @@ -2098,11 +2098,11 @@ msgstr "Бинарный SSL (чтение)" msgid "Binary SSL (write)" msgstr "Бинарный SSL (запись)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Битрейт (кбит/с):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2116,7 +2116,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Размер блока" @@ -2154,7 +2154,7 @@ msgstr "" "Включён режим проброса Bluetooth, но Dolphin собран без поддержки libusb. " "Невозможно использовать режим проброса." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Пауза после запуска" @@ -2166,11 +2166,11 @@ msgstr "Файл бэкапа NAND BootMii (*.bin);;Все файлы (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Файл с ключами BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Полноэкранный режим без рамок" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "снизу" @@ -2367,20 +2367,20 @@ msgstr "Ошибка широкополосного адаптера" msgid "Broadband Adapter MAC Address" msgstr "MAC-адрес широкополосного адаптера" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Просмотр &сессий сетевой игры..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Размер буфера:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Размер буфера изменён на %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Буфер:" @@ -2431,7 +2431,7 @@ msgstr "Автор: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "С&оздать файл с сигнатурами..." @@ -2455,7 +2455,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Кэширующий интерпретатор (медленнее)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2544,11 +2544,11 @@ msgstr "Невозможно создать сессию сетевой игры #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Отмена" @@ -2635,7 +2635,7 @@ msgstr "Центрировать и откалибровать" msgid "Change &Disc" msgstr "Сменить &диск" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Сменить &диск..." @@ -2657,7 +2657,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2688,7 +2688,7 @@ msgstr "" "вращать, а при помощи масштабирования можно вернуться к исходной точке " "камеры." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Изменения в читах вступят в силу после перезапуска игры." @@ -2696,7 +2696,7 @@ msgstr "Изменения в читах вступят в силу после msgid "Channel Partition (%1)" msgstr "Раздел с каналом (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Введён недопустимый символ." @@ -2708,7 +2708,7 @@ msgstr "Чат" msgid "Cheat Code Editor" msgstr "Редактор чит-кодов" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Поиск чит-кодов" @@ -2716,7 +2716,7 @@ msgstr "Поиск чит-кодов" msgid "Cheats Manager" msgstr "Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Проверить NAND..." @@ -2756,11 +2756,11 @@ msgstr "Выберите открываемый файл" msgid "Choose a file to open or create" msgstr "Выберите файл, который следует открыть или создать" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Выберите основной входной файл" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Выберите вторичный входной файл" @@ -2791,7 +2791,7 @@ msgstr "Контроллер Classic" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Очистить" @@ -2799,7 +2799,7 @@ msgstr "Очистить" msgid "Clear Branch Watch" msgstr "Очистить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Очистить кэш" @@ -2820,7 +2820,7 @@ msgstr "Скопировать и &изменить код..." msgid "Close" msgstr "Закрыть" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "&Настройка" @@ -2864,7 +2864,7 @@ msgstr "Цветовое пространство" msgid "Column &Visibility" msgstr "Видимость &столбца" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Объединить &два файла с сигнатурами..." @@ -2898,7 +2898,7 @@ msgstr "" "Несмотря на это, вполне возможно, что это корректный дамп по сравнению с " "выпуском игры для Wii U в магазине eShop. Dolphin не удалось проверить это." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Компилировать шейдеры перед запуском" @@ -2908,7 +2908,7 @@ msgstr "Компиляция шейдеров" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Сжатие" @@ -3023,7 +3023,7 @@ msgstr "Настройка" msgid "Configure Controller" msgstr "Настроить контроллер" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Настройка Dolphin" @@ -3047,7 +3047,7 @@ msgstr "Настройка вывода" msgid "Confirm" msgstr "Подтвердить" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Подтвердите смену бэкенда" @@ -3055,7 +3055,7 @@ msgstr "Подтвердите смену бэкенда" msgid "Confirm on Stop" msgstr "Подтверждать остановку" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3066,15 +3066,15 @@ msgstr "Подтверждение" msgid "Connect" msgstr "Подключиться" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Подключить Balance Board" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Подключить USB-клавиатуру" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Подключить Wii Remote %1" @@ -3094,7 +3094,7 @@ msgstr "Подключить Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "Подключить Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Подключить Wii Remote" @@ -3244,8 +3244,8 @@ msgstr "Сведение" msgid "Convergence:" msgstr "Сведение:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Ошибка преобразования" @@ -3253,9 +3253,9 @@ msgstr "Ошибка преобразования" msgid "Convert" msgstr "Конвертация" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Преобразовать файл в папку" @@ -3263,9 +3263,9 @@ msgstr "Преобразовать файл в папку" msgid "Convert File..." msgstr "Конвертировать файл..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Преобразовать папку в файл" @@ -3288,8 +3288,8 @@ msgstr "" "ISO. Вы всё равно хотите продолжить?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Идёт конвертация..." @@ -3523,7 +3523,7 @@ msgstr "" "папку, то, возможно, потребуется заново указать расположение вашей карты " "памяти в настройках." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Не удалось обнаружить центральный сервер" @@ -3539,13 +3539,13 @@ msgstr "Не удалось прочесть файл." msgid "Country:" msgstr "Страна:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Создать" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Создать файл Infinity" @@ -3576,11 +3576,11 @@ msgstr "Создатель:" msgid "Critical" msgstr "Критический" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Обрезка" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3596,11 +3596,11 @@ msgstr "" msgid "Crossfade" msgstr "Кроссфейдер" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "Убрать вершины на процессоре" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3611,7 +3611,7 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Текущий регион" @@ -3631,11 +3631,11 @@ msgstr "Текущей игры" msgid "Current thread" msgstr "Текущий поток" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Другое" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "Другое (растягивание)" @@ -3643,15 +3643,15 @@ msgstr "Другое (растягивание)" msgid "Custom Address Space" msgstr "Другое адресное пространство" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Высота другого соотношения сторон" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Ширина другого соотношения сторон" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Другое соотношение сторон:" @@ -3696,7 +3696,7 @@ msgstr "DJ пульт" msgid "DK Bongos" msgstr "Бонго DK" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "Движок эмуляции DSP" @@ -3704,15 +3704,15 @@ msgstr "Движок эмуляции DSP" msgid "DSP HLE (fast)" msgstr "DSP HLE (быстрый)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (рекомендуется)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "Интерпретатор DSP LLE (очень медленно)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "Рекомпилятор DSP LLE (медленно)" @@ -3787,7 +3787,7 @@ msgstr "Мёртвая зона" msgid "Debug" msgstr "Отладка" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Отладка" @@ -3797,7 +3797,7 @@ msgstr "Отладка" msgid "Decimal" msgstr "Десятичный" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Качество декодирования:" @@ -3844,7 +3844,7 @@ msgstr "По умолчанию" msgid "Default Config (Read Only)" msgstr "Конфигурация по умолчанию (только для чтения)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Устройство по умолчанию" @@ -3860,7 +3860,7 @@ msgstr "Образ по умолчанию:" msgid "Default thread" msgstr "Поток по умолчанию" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Отложить инвалидацию кэша EFB" @@ -3868,7 +3868,7 @@ msgstr "Отложить инвалидацию кэша EFB" msgid "Defer EFB Copies to RAM" msgstr "Отложенное копирование EFB в ОЗУ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3920,7 +3920,7 @@ msgstr "Глубина:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Описание" @@ -3969,7 +3969,7 @@ msgstr "Отсоединён" msgid "Detect" msgstr "Считать" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Обнаружение модулей RSO" @@ -3999,7 +3999,7 @@ msgstr "Настройки устройства" msgid "Device VID (e.g., 057e)" msgstr "VID устройства (напр., 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Устройство:" @@ -4007,7 +4007,7 @@ msgstr "Устройство:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "Не удалось распознать %1 как действительный XML-файл Riivolution." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Затемняет экран после пяти минут бездействия." @@ -4031,7 +4031,7 @@ msgstr "Отключить эмуляцию bounding box" msgid "Disable Copy Filter" msgstr "Отключить фильтр копирования" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Отключить копии EFB в VRAM" @@ -4039,11 +4039,11 @@ msgstr "Отключить копии EFB в VRAM" msgid "Disable Emulation Speed Limit" msgstr "Отключить огр. скорости эмуляции" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Отключить быструю память" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Отключить Fastmem Arena" @@ -4051,11 +4051,11 @@ msgstr "Отключить Fastmem Arena" msgid "Disable Fog" msgstr "Отключить туман" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Отключить кэш JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Отключить карту больших точек входа" @@ -4074,7 +4074,7 @@ msgstr "" "игры не будут работать.

Если не уверены – оставьте " "включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
Если не уверены – оставьте " "выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4455,7 +4455,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4474,11 +4474,11 @@ msgstr "Длительность отпускания турбо-кнопки ( #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Голландский" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Закрыть" @@ -4509,7 +4509,7 @@ msgstr "" "Подходит для соревновательных игр, где важны честность и минимальная " "задержка." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Ранние обновления памяти" @@ -4583,7 +4583,7 @@ msgstr "Встроенный буфер кадров (EFB)" msgid "Empty" msgstr "Пусто" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Процесс эмулятора уже запущен" @@ -4591,7 +4591,7 @@ msgstr "Процесс эмулятора уже запущен" msgid "Emulate Disc Speed" msgstr "Эмулировать скорость воспроизведения диска" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Эмулировать Infinity Base" @@ -4611,7 +4611,7 @@ msgstr "" "Эмулирует скорость воспроизведения диска реального оборудования. Отключение " "может привести к нестабильности. По умолчанию True" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Эмулируемые устройства USB" @@ -4636,16 +4636,16 @@ msgstr "Скорость эмуляции" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Включить" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Включить слои проверки API" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Включить растяжение звука" @@ -4693,7 +4693,7 @@ msgstr "Включить достижения «На бис»" msgid "Enable FPRF" msgstr "Включить FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Включить графические моды" @@ -4733,7 +4733,7 @@ msgstr "" "игру перед включением.
Имейте в виду, что выключение режима «Хардкор» во " "время игры требует закрытия игры перед повторным включением." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "Включить профилирование блока JIT" @@ -4746,7 +4746,7 @@ msgstr "Включить MMU" msgid "Enable Progress Notifications" msgstr "Включить уведомления о прогрессе" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Включить прогрессивную развёртку" @@ -4755,11 +4755,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Включить интеграцию с RetroAchievements.org" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Включить вибрацию" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Включить скринсейвер" @@ -4779,11 +4779,11 @@ msgstr "Включить неофициальные достижения" msgid "Enable Usage Statistics Reporting" msgstr "Включить отправку статистики об использовании" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Включить WiiConnect24 с помощью WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Включить каркас моделей" @@ -4850,7 +4850,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4900,7 +4900,7 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4913,7 +4913,7 @@ msgstr "" "Vulkan.

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4941,7 +4941,7 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Включает растяжение звука для соответствия скорости эмуляции." @@ -4977,7 +4977,7 @@ msgstr "" "= выше совместимость, ОТКЛ = выше скорость)

Если вы " "не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4990,7 +4990,7 @@ msgstr "" "Ознакомьтесь с условиями предоставления услуг на сайте: https://www." "wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -5003,7 +5003,7 @@ msgstr "" "

Если не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -5039,7 +5039,7 @@ msgstr "Enet не был инициализирован" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Английский" @@ -5056,7 +5056,7 @@ msgstr "Введите IP-адрес устройства, на котором msgid "Enter USB device ID" msgstr "Введите ID USB-устройства" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Введите адрес для наблюдения:" @@ -5082,7 +5082,7 @@ msgstr "" "Введите IP-адрес и порт экземпляра tapserver, к которому вы хотите " "подключиться." -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Введите адрес модуля RSO:" @@ -5121,9 +5121,9 @@ msgstr "Введите адрес модуля RSO:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5136,24 +5136,24 @@ msgstr "Введите адрес модуля RSO:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5183,7 +5183,7 @@ msgstr "Ошибка открытия адаптера: %1" msgid "Error collecting save data!" msgstr "Ошибка сбора данных сохранения." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5295,12 +5295,12 @@ msgstr "В {0} неиспользуемых блоках раздела {1} на msgid "Euphoria" msgstr "Эйфория" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Европа" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Только убершейдеры" @@ -5344,11 +5344,11 @@ msgstr "Ожидалось начало выражения." msgid "Expected variable name." msgstr "Ожидалось название переменной." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Экспериментальные" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Экспортировать все сохранения Wii" @@ -5363,7 +5363,7 @@ msgstr "Не удалось экспортировать" msgid "Export Recording" msgstr "Экспорт записи" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Экспорт записи..." @@ -5391,7 +5391,7 @@ msgstr "Экспорт в .&gcs..." msgid "Export as .&sav..." msgstr "Экспорт в .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5419,7 +5419,7 @@ msgstr "Внешний адрес" msgid "External Frame Buffer (XFB)" msgstr "Внешний буфер кадров (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Извлечь сертификаты из NAND" @@ -5457,7 +5457,7 @@ msgid "FD" msgstr "ФД" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "Проигрыватель FIFO" @@ -5477,7 +5477,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Не удалось добавить сессию в индекс сетевой игры: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Не удалось добавить данные в файл с сигнатурами '%1'" @@ -5497,7 +5497,7 @@ msgstr "Не удалось очистить Skylander из слота %1." msgid "Failed to connect to Redump.org" msgstr "Не удалось подключиться к Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Не удалось подключиться к серверу: %1" @@ -5518,7 +5518,7 @@ msgstr "Не удалось создать глобальные ресурсы D msgid "Failed to create DXGI factory" msgstr "Не удалось создать фабрику DXGI" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Не удалось создать файл Infinity." @@ -5580,7 +5580,7 @@ msgstr "Не удалось экспортировать %n из %1 сохран msgid "Failed to export the following save files:" msgstr "Не удалось экспортировать следующие файлы сохранений:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Не удалось извлечь сертификаты из NAND" @@ -5610,14 +5610,14 @@ msgstr "Не удалось найти один или более символ D msgid "Failed to import \"%1\"." msgstr "Не удалось импортировать \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Не удалось импортировать файл сохранения. Пожалуйста, запустите игру, а " "потом попробуйте ещё раз." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5625,7 +5625,7 @@ msgstr "" "Не удалось импортировать файл сохранения. Похоже, что данный файл повреждён " "или не является корректным сохранением Wii." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5659,7 +5659,7 @@ msgid "Failed to install pack: %1" msgstr "Не удалось установить набор: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Не удалось установить этот продукт в NAND." @@ -5671,8 +5671,8 @@ msgstr "" "Не удалось инициализировать прослушивание порта %1. У вас запущен ещё один " "сервер сетевой игры?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Не удалось загрузить модуль RSO на %1" @@ -5684,7 +5684,7 @@ msgstr "Не удалось загрузить d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Не удалось загрузить dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Не удалось загрузить файл с картой '%1'" @@ -5716,11 +5716,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Не удалось изменить Skylander." -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "Не удалось открыть «%1» для записи." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "Не удалось открыть «{0}» для записи." @@ -5772,11 +5772,11 @@ msgstr "Не удалось открыть файл." msgid "Failed to open server" msgstr "Не удалось открыть сервер" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Не удалось открыть файл Infinity." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5846,11 +5846,11 @@ msgstr "Не удалось прочесть входной файл \"{0}\"." msgid "Failed to read selected savefile(s) from memory card." msgstr "Не удалось прочитать выбранные файлы сохранений с карты памяти." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Не удалось прочитать файл Infinity." -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5925,27 +5925,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "Не удалось сохранить снимок Branch Watch «%1»" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Не удалось сохранить лог FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "Не удалось сохранить карту кода по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Не удалось сохранить файл сигнатуры '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "Не удалось сохранить карту символов по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Не удалось сохранить файл с сигнатурами '%1'" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -6002,7 +6002,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Ошибка" @@ -6040,7 +6040,7 @@ msgstr "" msgid "Field of View" msgstr "Поле зрения" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Номер фигурки:" @@ -6054,7 +6054,7 @@ msgstr "Информация о файле" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Формат файла" @@ -6062,24 +6062,24 @@ msgstr "Формат файла" msgid "File Format:" msgstr "Формат файла:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Информация о файле" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Имя файла" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Путь к файлу" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Размер файла" @@ -6209,7 +6209,7 @@ msgstr "" "Инструкции по установке доступны на этой странице." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Принудительно 16:9" @@ -6217,7 +6217,7 @@ msgstr "Принудительно 16:9" msgid "Force 24-Bit Color" msgstr "Принудительная 24-битная палитра" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Принудительно 4:3" @@ -6249,11 +6249,11 @@ msgstr "Принудительно слушать порт:" msgid "Force Nearest" msgstr "Принудительно метод ближайших соседей" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Принудительно отключено, поскольку %1 не поддерживает расширение VS." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "Принудительно включено, поскольку %1 не поддерживает геометрические шейдеры." @@ -6340,11 +6340,11 @@ msgstr "Перемотка кадров: увел. скорость" msgid "Frame Advance Reset Speed" msgstr "Перемотка кадров: сбросить скорость" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Дамп кадров" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Диапазон кадров" @@ -6352,7 +6352,7 @@ msgstr "Диапазон кадров" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Изображения с дампами кадра(ов) '{0}' уже существуют. Перезаписать?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Кадров для записи:" @@ -6407,7 +6407,7 @@ msgstr "Вкл./выкл. свободный обзор" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Французский" @@ -6426,8 +6426,8 @@ msgid "From" msgstr "от" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "От:" @@ -6483,11 +6483,11 @@ msgstr "Громкость GBA" msgid "GBA Window Size" msgstr "Размер окна GBA" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "ROM GBA%1 изменён на «%2»" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "ROM GBA%1 отключён" @@ -6657,7 +6657,7 @@ msgid "Game Gamma:" msgstr "Гамма игры:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "ID игры" @@ -6670,7 +6670,7 @@ msgstr "ID игры:" msgid "Game Status" msgstr "Статус игры" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Игра изменена на \"%1\"" @@ -6783,7 +6783,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-коды" @@ -6815,13 +6815,13 @@ msgstr "Сгенерировать новый ID сбора статистики msgid "Generated AR code(s)." msgstr "Сгенерированы AR-коды." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Созданы имена символов из '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Немецкий" @@ -6903,7 +6903,7 @@ msgstr "Зеленая слева" msgid "Green Right" msgstr "Зеленая справа" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "В виде сетки" @@ -6985,7 +6985,7 @@ msgstr "Спрятать" msgid "Hide &Controls" msgstr "Скрыть &элементы управления" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Скрыть все" @@ -7009,11 +7009,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Высокая" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Самое высокое" @@ -7057,11 +7057,11 @@ msgstr "" "Подходит для казуальных игр с 3 и более игроками, возможно, при нестабильных " "соединениях или соединениях с высокой задержкой." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Хост не управляет вводом" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Хост управляет вводом" @@ -7087,7 +7087,7 @@ msgstr "Горячие клавиши" msgid "Hotkeys Require Window Focus" msgstr "Для горячих клавиш требуется окно в фокусе" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Гибридные убершейдеры" @@ -7151,7 +7151,7 @@ msgid "IR" msgstr "ИК" #. 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:363 msgid "IR Sensitivity:" msgstr "Чувствительность ИК:" @@ -7249,7 +7249,7 @@ msgstr "" "Если отключено — подключённость эмулируемого контроллера зависит\n" "от подключённости реального устройства по умолчанию (при наличии такового)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7260,7 +7260,7 @@ msgstr "" "полезно для тестирования.

Если вы не уверены, не " "устанавливайте этот флажок." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7316,7 +7316,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Выводить XFB немедленно" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7331,7 +7331,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Импортировать бэкап BootMii NAND..." @@ -7346,7 +7346,7 @@ msgstr "Не удалось импортировать" msgid "Import Save File(s)" msgstr "Импорт файлов сохранений" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Импортировать сохранение Wii..." @@ -7454,16 +7454,16 @@ msgstr "Увеличивающееся вращение" msgid "Incremental Rotation (rad/sec)" msgstr "Увеличивающееся вращение (рад/с)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Создатель фигурок Infinity" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Менеджер Infinity" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Объект Infinity (*.bin);;" @@ -7485,8 +7485,8 @@ msgstr "Информация" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Информация" @@ -7499,11 +7499,11 @@ msgid "Inject" msgstr "Ввести" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Ввод" @@ -7529,7 +7529,7 @@ msgstr "Вставить &NOP" msgid "Insert &nop" msgstr "Вставить &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Вставить SD-карту" @@ -7546,7 +7546,7 @@ msgstr "Установить раздел (%1)" msgid "Install Update" msgstr "Установить обновление" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Установить WAD..." @@ -7569,7 +7569,7 @@ msgstr "Инструкция" msgid "Instruction Breakpoint" msgstr "Точка останова инструкции" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Инструкция:" @@ -7666,7 +7666,7 @@ msgstr "Внутренняя ошибка генерации AR-кода" msgid "Interpreter (slowest)" msgstr "Интерпретатор (самый медленный)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Ядро интерпретатора" @@ -7691,7 +7691,7 @@ msgstr "Некорректный набор %1 указан: %2" msgid "Invalid Player ID" msgstr "Некорректный ID игрока" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Некорректный адрес модуля RSO: %1" @@ -7716,7 +7716,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Неверные входные данные для поля \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Неверные входные данные" @@ -7752,13 +7752,13 @@ msgstr "Неверная строка поиска (поддерживаются msgid "Invalid title ID." msgstr "Неверный ID продукта." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Недопустимый адрес наблюдения: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Итальянский" @@ -7771,11 +7771,11 @@ msgstr "Италия" msgid "Item" msgstr "Элемент" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "Отключить линковку блоков JIT" @@ -7783,47 +7783,47 @@ msgstr "Отключить линковку блоков JIT" msgid "JIT Blocks" msgstr "Блоки JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "Отключить JIT Branch" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "Отключить JIT для FloatingPoint" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "Отключить JIT для Integer" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "Отключить JIT LoadStore Floating" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "Отключить JIT LoadStore" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "Отключить JIT LoadStore Paired" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "Отключить JIT LoadStore lXz" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "Отключить JIT LoadStore lbzx" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "Отключить JIT LoadStore lwz" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "Отключить JIT (ядро JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "Отключить JIT Paired" @@ -7835,11 +7835,11 @@ msgstr "JIT-рекомпилятор для ARM64 (рекомендуется)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-рекомпилятор для x86-64 (рекомендуется)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "Отключить кэш регистров JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "Отключить JIT SystemRegisters" @@ -7853,16 +7853,16 @@ msgstr "" "происходить. Пожалуйста, сообщите об этой ошибке в багтрекере. Dolphin " "завершит работу." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "JIT не активирован" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Япония" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Японский" @@ -7924,12 +7924,12 @@ msgstr "КиБ" msgid "Kick Player" msgstr "Исключить игрока" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Корея" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Корейский" @@ -7976,23 +7976,23 @@ msgstr "Последнее размещение:" msgid "Last reset:" msgstr "Последний сброс:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Задержка:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Задержка: ~10 мс" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Задержка: ~20 мс" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Задержка: ~40 мс" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Задержка: ~80 мс" @@ -8000,7 +8000,7 @@ msgstr "Задержка: ~80 мс" msgid "Launching these titles may also fix the issues." msgstr "Запуск этих игр также может устранить проблемы." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "Таблицы лидеров" @@ -8096,11 +8096,11 @@ msgstr "Свет" msgid "Limit Chunked Upload Speed:" msgstr "Ограничить скорость закачки:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Столбцы в списке" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "В виде списка" @@ -8112,15 +8112,15 @@ msgstr "Прослушивание" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Загр." -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Загрузить файл с &плохими картами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Загрузить &другой файл с картой..." @@ -8132,7 +8132,7 @@ msgstr "Загрузить Branch Watch &из…" msgid "Load Branch Watch snapshot" msgstr "Загрузить снимок Branch Watch" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Загружать свои текстуры" @@ -8140,7 +8140,7 @@ msgstr "Загружать свои текстуры" msgid "Load File" msgstr "Загрузить файл" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Загрузить главное меню GameCube" @@ -8250,19 +8250,19 @@ msgstr "Быстрая загрузка 8" msgid "Load State Slot 9" msgstr "Быстрая загрузка 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Быстрая загрузка из файла" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Быстрая загрузка из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Быстрая загрузка из слота" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Загрузить системное меню Wii %1" @@ -8274,28 +8274,28 @@ msgstr "Загрузка и запись данных сохранений хо msgid "Load from Selected Slot" msgstr "Загрузить из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Быстрая загрузка из слота %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Загрузить файл с картой" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Загрузить системное меню vWii %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Загрузить..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Загружены символы из '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8305,7 +8305,7 @@ msgstr "" "DynamicInputTextures/<game_id>/.

Если не " "уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8322,7 +8322,7 @@ msgstr "Локальный адрес" msgid "Lock Mouse Cursor" msgstr "Захватывать курсор мыши" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Заблокировано" @@ -8348,7 +8348,7 @@ msgstr "Настройка логирования" msgid "Log In" msgstr "Войти" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Логировать покрытие инструкций JIT" @@ -8356,7 +8356,7 @@ msgstr "Логировать покрытие инструкций JIT" msgid "Log Out" msgstr "Выйти" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Записывать время рендеринга в файл" @@ -8372,7 +8372,7 @@ msgstr "Вывод логов" msgid "Login Failed" msgstr "Не удалось выполнить вход" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8383,20 +8383,20 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Повторять" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Соединение с сервером сетевой игры потеряно..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Низкая" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Самое низкое" @@ -8457,7 +8457,7 @@ msgstr "Убедитесь, что в слоте %1 есть Skylander." #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Создатель" @@ -8479,12 +8479,12 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Управлять NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Ручная выборка текстур" @@ -8500,11 +8500,11 @@ msgstr "Масочное ПЗУ" msgid "Match Found" msgstr "Найдено совпадение" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Максимальный буфер:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Максимальный размер буфера изменён на %1" @@ -8513,7 +8513,7 @@ msgstr "Максимальный размер буфера изменён на % msgid "Maximum tilt angle." msgstr "Максимальный угол наклона." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Может привести к замедлению в меню Wii и некоторых играх." @@ -8534,7 +8534,7 @@ msgstr "Точка останова в памяти" msgid "Memory Card" msgstr "Карта памяти" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Менеджер карт памяти" @@ -8588,11 +8588,11 @@ msgstr "Микрофон" msgid "Mini" msgstr "Мини" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Разное" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Разное" @@ -8610,7 +8610,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "Расхождение во внутренних структурах данных." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8637,7 +8637,7 @@ msgstr "Адаптер для модема (tapserver)" msgid "Modifier" msgstr "Модиф." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8657,8 +8657,8 @@ msgstr "Изменить слот" msgid "Modifying Skylander: %1" msgstr "Изменение Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Найдено модулей: %1" @@ -8666,7 +8666,7 @@ msgstr "Найдено модулей: %1" msgid "Money:" msgstr "Деньги:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Моно" @@ -8726,10 +8726,10 @@ msgstr "Множитель" msgid "N&o to All" msgstr "&Нет для всех" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Проверка NAND" @@ -8738,7 +8738,7 @@ msgstr "Проверка NAND" msgid "NKit Warning" msgstr "Предупреждение NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8771,7 +8771,7 @@ msgstr "" "

Если вы не уверены, оставьте значение 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8989,7 +8989,7 @@ msgstr "Ошибок нет." msgid "No extension selected." msgstr "Не выбрано расширение." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Файл не загружен / записан." @@ -8997,7 +8997,7 @@ msgstr "Файл не загружен / записан." msgid "No game is running." msgstr "Ни одной игры не запущено." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Ни одной игры не запущено." @@ -9010,7 +9010,7 @@ msgstr "Графический мод не выбран." msgid "No input" msgstr "Нет входных данных" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Проблем не обнаружено." @@ -9060,8 +9060,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -9216,7 +9216,7 @@ msgstr "Объект 4 X" msgid "Object 4 Y" msgstr "Объект 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Диапазон обьектов" @@ -9241,7 +9241,7 @@ msgstr "Вкл" msgid "On Movement" msgstr "При перемещении" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9277,7 +9277,7 @@ msgstr "" "вызовы функций и пути кода условия, которые выполняются только при при " "выполнении какого-либо действия в эмулируемом программном обеспечении." -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Онлайн-&документация" @@ -9285,7 +9285,7 @@ msgstr "Онлайн-&документация" msgid "Only Show Collection" msgstr "Показывать только коллекцию" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9293,7 +9293,7 @@ msgstr "" "Добавлять только символы с префиксом:\n" "(Пусто - все символы)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9312,7 +9312,7 @@ msgstr "Открыть" msgid "Open &Containing Folder" msgstr "Открыть &папку с образом" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Открыть папку &пользователя" @@ -9321,7 +9321,7 @@ msgstr "Открыть папку &пользователя" msgid "Open Directory..." msgstr "Открыть папку..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Открыть лог FIFO" @@ -9411,7 +9411,7 @@ msgid "Origin and Destination" msgstr "Источник и назначение" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9453,11 +9453,11 @@ msgstr "Результаты повторной выборки:" msgid "Overwritten" msgstr "Перезаписано" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "&Проиграть записанный ввод..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9471,11 +9471,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "Уровень сжатия PNG" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "Уровень сжатия PNG:" @@ -9563,7 +9563,7 @@ msgstr "Пауза" msgid "Pause Branch Watch" msgstr "Приостановить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Пауза в конце ролика" @@ -9613,7 +9613,7 @@ msgstr "Пиковая скорость взмаха." msgid "Per-Pixel Lighting" msgstr "Попискельное освещение" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Обновить систему через интернет" @@ -9621,15 +9621,15 @@ msgstr "Обновить систему через интернет" msgid "Perform System Update" msgstr "Выполнить обновление системы" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Окно образца производительности (мс)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Окно образца производительности (мс):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Статистика производительности" @@ -9647,7 +9647,7 @@ msgstr "Физическое адресное пространство" msgid "PiB" msgstr "ПиБ" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Выбрать шрифт для отладки" @@ -9664,7 +9664,7 @@ msgid "Pitch Up" msgstr "Тангаж вверх" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Платформа" @@ -9672,7 +9672,7 @@ msgstr "Платформа" msgid "Play" msgstr "Запуск" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Проигрывание / запись" @@ -9680,11 +9680,11 @@ msgstr "Проигрывание / запись" msgid "Play Recording" msgstr "Проиграть записанное" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Параметры просмотра" @@ -9692,27 +9692,27 @@ msgstr "Параметры просмотра" msgid "Player" msgstr "Игрок" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Игрок 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Игрок 1 Способность 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Игрок 1 Способность 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Игрок 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Игрок 2 Способность 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Игрок 2 Способность 2" @@ -9736,7 +9736,7 @@ msgstr "" "Измените настройку «SyncOnSkipIdle» на «True». В настоящее время она " "отключена, что делает эту проблему очень вероятной." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "Прежде чем начать поиск в стандартных областях памяти, запустите игру." @@ -9769,7 +9769,7 @@ msgstr "Порт:" msgid "Portal Slots" msgstr "Слоты портала" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Обнаружена возможная рассинхронизация: %1, вероятно, рассинхронизовался на " @@ -9787,20 +9787,20 @@ msgstr "Эффект пост-обработки:" msgid "Post-Processing Shader Configuration" msgstr "Конфигурация шейдеров пост-обработки" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Предпочтение VS для расширения точек/линий" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Предзагружать свои текстуры" @@ -9837,7 +9837,7 @@ msgstr "Кнопка синхронизации" msgid "Pressure" msgstr "Давление" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9917,11 +9917,11 @@ msgstr "Профиль" msgid "Program Counter" msgstr "Счётчик команд" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Ход выполнения" @@ -9935,7 +9935,7 @@ msgstr "" msgid "Public" msgstr "Открытые" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Очистить кэш списка игр" @@ -9959,7 +9959,7 @@ msgstr "Не удаётся включить Quality of Service (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) успешно включен." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Качество декодера DPLII. С увеличением качества возрастает задержка аудио." @@ -9992,11 +9992,11 @@ msgstr "R-аналог" msgid "READY" msgstr "ГОТОВ" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "Модули RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "Автообнаружение RSO" @@ -10021,7 +10021,7 @@ msgstr "Конец диапазона: " msgid "Range Start: " msgstr "Начало диапазона: " -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Место %1" @@ -10029,7 +10029,7 @@ msgstr "Место %1" msgid "Raw" msgstr "Raw (без обработки)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "Внутреннее разрешение Raw" @@ -10088,7 +10088,7 @@ msgstr "Последние достижения" msgid "Recenter" msgstr "Центровка" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Запись" @@ -10100,11 +10100,11 @@ msgstr "Записывать ввод" msgid "Recording" msgstr "Запись" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Опции записи" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Запись..." @@ -10177,7 +10177,7 @@ msgid "Refreshing..." msgstr "Обновление..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Регион" @@ -10210,7 +10210,7 @@ msgstr "Напомнить позже" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Удалить" @@ -10250,11 +10250,11 @@ msgstr "Переименовать символ" msgid "Render Window" msgstr "Окно отрисовки" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Выводить изображение в главное окно" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10289,7 +10289,7 @@ msgstr "Сбросить" msgid "Reset All" msgstr "Сбросить все" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Сброс игнорирования обработчика ошибок" @@ -10321,7 +10321,7 @@ msgstr "Сбросить поле" msgid "Reset all saved Wii Remote pairings" msgstr "Сбросить все сопряжения Wii Remote" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "Тип разрешения:" @@ -10505,19 +10505,19 @@ msgstr "Россия" msgid "SD Card" msgstr "SD-карты" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Размер файла SD-карты:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "Образ SD-карты (*.raw);;Все файлы (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "Путь к SD-карте:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "Параметры SD-карты" @@ -10525,7 +10525,7 @@ msgstr "Параметры SD-карты" msgid "SD Root:" msgstr "Корневой каталог SD-карты:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "Папка синхронизации:" @@ -10560,11 +10560,11 @@ msgstr "Контекст SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "Со&хранить код" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Быстрое &сохранение" @@ -10596,11 +10596,11 @@ msgstr "Сохранить снимок Branch Watch" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Экспортировать сохранение" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Сохранить лог FIFO" @@ -10618,11 +10618,11 @@ msgstr "Сохранение игры" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Файлы сохранений игры (*.sav);;Все файлы (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Импортировать сохранение" @@ -10634,7 +10634,7 @@ msgstr "Сохранить самое старое сохранение" msgid "Save Preset" msgstr "Сохранить предустановку" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Сохранить файл записи как" @@ -10684,23 +10684,23 @@ msgstr "Быстрое сохранение 8" msgid "Save State Slot 9" msgstr "Быстрое сохранение 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Быстрое сохранение в файл" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Быстрое сохранение в старый слот" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Быстрое сохранение в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Быстрое сохранение в слот" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Сохранить карту символов &как..." @@ -10720,11 +10720,11 @@ msgstr "Сохранить как предустановку…" msgid "Save as..." msgstr "Сохранить как..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Сохранить объединённый файл как" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10739,11 +10739,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Сохранение в той же папке, где и образ" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Сохранить файл с картой" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Сохранить файл сигнатуры" @@ -10751,11 +10751,11 @@ msgstr "Сохранить файл сигнатуры" msgid "Save to Selected Slot" msgstr "Сохранить в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Сохранить в слот %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Сохранить..." @@ -10787,7 +10787,7 @@ msgstr "Скриншот" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Поиск" @@ -10816,7 +10816,7 @@ msgstr "" "Поиск в виртуальном адресном пространстве пока невозможен. Пожалуйста, " "запустите игру на некоторое время и попробуйте снова." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Найти инструкцию" @@ -10824,7 +10824,7 @@ msgstr "Найти инструкцию" msgid "Search games..." msgstr "Искать игры..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Поиск инструкции" @@ -10873,11 +10873,11 @@ msgid "Select Dump Path" msgstr "Выберите путь к дампам" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Выберите папку для экспорта" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Выберите файл фигурки" @@ -10917,7 +10917,7 @@ msgstr "Выберите коллекцию Skylander" msgid "Select Skylander File" msgstr "Выберите файл Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Выбрать слот %1 - %2" @@ -10925,7 +10925,7 @@ msgstr "Выбрать слот %1 - %2" msgid "Select State" msgstr "Выбор сохранения" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Выбрать слот сохранения" @@ -10992,7 +10992,7 @@ msgstr "Выберите папку" msgid "Select a File" msgstr "Выберите файл" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Выберите папку для синхронизации с образом SD-карты" @@ -11000,7 +11000,7 @@ msgstr "Выберите папку для синхронизации с обр msgid "Select a Game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Выберите образ SD-карты" @@ -11012,7 +11012,7 @@ msgstr "Выберите файл" msgid "Select a game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Выберите продукт для установки в NAND" @@ -11020,7 +11020,7 @@ msgstr "Выберите продукт для установки в NAND" msgid "Select e-Reader Cards" msgstr "Выбрать e-карточки" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Выберите адрес модуля RSO:" @@ -11037,7 +11037,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Выберите файл с ключами (дамп OTP/SEEPROM)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Выберите файл сохранения" @@ -11061,7 +11061,7 @@ msgstr "Выбранный профиль контроллера не сущес #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Выбранной игры нету в списке игр!" @@ -11089,7 +11089,7 @@ msgstr "" "Выбирает используемый аппаратный адаптер.

Если не " "уверены – выберите первый." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -11144,7 +11144,7 @@ msgstr "" "– ещё один вид 3D, который используется в некоторых телевизорах." "

Если не уверены – выберите Выкл." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -11186,7 +11186,7 @@ msgstr "" "использовать в обычных условиях.

Если вы не " "уверены, выберите «Автоматическое»." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -11207,7 +11207,7 @@ msgstr "" msgid "Send" msgstr "Отправить" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Месторасположение сенсора:" @@ -11276,7 +11276,7 @@ msgstr "Назначить адрес конца символа" msgid "Set symbol size (%1):" msgstr "Назначить размер символа (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11286,7 +11286,7 @@ msgstr "" "игр.\n" "Может не работать для некоторых игр." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Устанавливает язык системы для Wii." @@ -11298,7 +11298,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11322,7 +11322,7 @@ msgstr "" "Wii) MEM2 в виртуальном адресном пространстве. Это подходит для подавляющего " "большинства игр." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11336,7 +11336,7 @@ msgstr "SetupWiiMemory: не удалось создать файл setting.txt" msgid "Severity" msgstr "Критичность" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Компиляция шейдеров" @@ -11358,16 +11358,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Контроллер Shinkansen" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Показывать % скорости" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Показать &лог" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Отображать панель &инструментов" @@ -11375,11 +11375,11 @@ msgstr "Отображать панель &инструментов" msgid "Show Active Title in Window Title" msgstr "Показывать название запущенной игры в заголовке окна" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Показать все" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Австралия" @@ -11392,7 +11392,7 @@ msgstr "Показывать текущую игру в Discord" msgid "Show Disabled Codes First" msgstr "Показывать отключённые коды первыми" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL-файлы" @@ -11401,27 +11401,27 @@ msgstr "ELF/DOL-файлы" msgid "Show Enabled Codes First" msgstr "Показывать включённые коды первыми" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Показывать FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Показывать счётчик кадров" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Показывать время кадра" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Франция" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Германия" @@ -11433,23 +11433,23 @@ msgstr "Показывать оверлей режима гольфа" msgid "Show Infinity Base" msgstr "Показать Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Показывать ввод экрана" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Италия" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Япония" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Корея" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Показывать счётчик лагов" @@ -11457,19 +11457,19 @@ msgstr "Показывать счётчик лагов" msgid "Show Language:" msgstr "Язык отображения:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Показать &настройки логирования" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Показывать сообщения в сетевой игре" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Показывать пинг в сетевой игре" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Голландия" @@ -11477,7 +11477,7 @@ msgstr "Голландия" msgid "Show On-Screen Display Messages" msgstr "Показывать наэкранные сообщения" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL" @@ -11486,27 +11486,27 @@ msgstr "PAL" msgid "Show PC" msgstr "Показать СК" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Показывать графики производительности" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Отображать игры платформ" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "Показывать статистику проекции" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Отображать игры регионов" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Показывать счётчик перезаписей" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Россия" @@ -11514,51 +11514,51 @@ msgstr "Россия" msgid "Show Skylanders Portal" msgstr "Показать портал Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Испания" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Отображение цветов в зависимости от скорости" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Показывать статистику" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Показывать системное время" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Тайвань" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Неизвестный" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Показывать длительность VBlank" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Показывать VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD-файлы" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Мир" @@ -11571,7 +11571,7 @@ msgid "Show in Code" msgstr "Показать в коде" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Показать в памяти" @@ -11599,7 +11599,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11608,7 +11608,7 @@ msgstr "" "рассинхроне в сетевой игре.

Если не уверены – " "оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11654,7 +11654,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11664,7 +11664,7 @@ msgstr "" "также стандартное отклонение.

Если вы не уверены, " "не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11674,7 +11674,7 @@ msgstr "" "стандартное отклонение.

Если вы не уверены, не " "устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11684,7 +11684,7 @@ msgstr "" "показатель визуальной плавности.

Если вы не " "уверены, установите этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11703,7 +11703,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11711,7 +11711,7 @@ msgstr "" "Показывает различную статистику проекции.

Если не " "уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11735,7 +11735,7 @@ msgstr "Положить на бок" msgid "Sideways Wii Remote" msgstr "Wii Remote на боку" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "База данных сигнатур" @@ -11759,7 +11759,7 @@ msgid "Signed Integer" msgstr "Знаковое целое" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Упрощ. китайский" @@ -11776,7 +11776,7 @@ msgstr "По шести осям" msgid "Size" msgstr "Размер" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11788,7 +11788,7 @@ msgstr "" msgid "Skip" msgstr "Пропустить" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Пропуск отрисовки" @@ -11920,7 +11920,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Сортировать по алфавиту" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Звук:" @@ -11934,7 +11934,7 @@ msgstr "Испания" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Испанский" @@ -11942,11 +11942,11 @@ msgstr "Испанский" msgid "Speaker Pan" msgstr "Баланс звука" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Громкость динамика:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Специализированные (по умолчанию)" @@ -11954,7 +11954,7 @@ msgstr "Специализированные (по умолчанию)" msgid "Specific" msgstr "Особенность" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -12005,7 +12005,7 @@ msgstr "Стандартный контроллер" msgid "Start" msgstr "Старт" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Начать &сетевую игру..." @@ -12014,11 +12014,11 @@ msgstr "Начать &сетевую игру..." msgid "Start Branch Watch" msgstr "Запуск Branch Watch" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Новый поиск читов" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "&Начать запись ввода" @@ -12026,7 +12026,7 @@ msgstr "&Начать запись ввода" msgid "Start Recording" msgstr "Начать запись" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Запускать во весь экран" @@ -12038,7 +12038,7 @@ msgstr "Запуск с исправлениями Riivolution" msgid "Start with Riivolution Patches..." msgstr "Запуск с исправлениями Riivolution…" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Игра начата" @@ -12098,7 +12098,7 @@ msgstr "Шаг выполнен успешно!" msgid "Stepping" msgstr "Шаги" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Стерео" @@ -12127,12 +12127,12 @@ msgid "Stick" msgstr "Стик" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Стоп" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Остановить проигр./запись ввода" @@ -12178,7 +12178,7 @@ msgstr "" "текстуре)

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Растянуть по окну" @@ -12217,8 +12217,8 @@ msgstr "Стилус" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Успешно" @@ -12245,7 +12245,7 @@ msgstr "Файлы сохранений (%n из %1 шт.) успешно экс msgid "Successfully exported save files" msgstr "Файлы сохранений успешно экспортированы" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Сертификаты успешно извлечены из NAND" @@ -12257,12 +12257,12 @@ msgstr "Файл успешно извлечён." msgid "Successfully extracted system data." msgstr "Системные данные успешно извлечены." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Файл сохранения успешно импортирован." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Данный продукт успешно установлен в NAND." @@ -12285,12 +12285,12 @@ msgstr "Поддержка" msgid "Supported file formats" msgstr "Поддерживаемые форматы файлов" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Поддерживаются SD и SDHC. Размер по умолчанию: 128 Мбайт." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Объёмный" @@ -12352,7 +12352,7 @@ msgstr "Имя символа:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Символы" @@ -12380,7 +12380,7 @@ msgstr "" "Синхронизировать потоки ГП и ЦП для исправления случайных зависаний в " "двухядерном режиме. (ВКЛ = Совместимость, ВЫКЛ = Скорость)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12399,11 +12399,11 @@ msgid "Synchronizing save data..." msgstr "Синхронизация сохранений..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Язык системы:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "Ввод TAS" @@ -12416,7 +12416,7 @@ msgstr "Управление TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Метки" @@ -12434,7 +12434,7 @@ msgstr "Хвост" msgid "Taiwan" msgstr "Тайвань" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Сделать скриншот" @@ -12475,7 +12475,7 @@ msgstr "Кэширование текстур" msgid "Texture Cache Accuracy" msgstr "Точность кэширования текстур" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Дамп текстур" @@ -12487,7 +12487,7 @@ msgstr "Фильтрация текстур" msgid "Texture Filtering:" msgstr "Фильтрация текстур:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Наложение форматов текстур" @@ -12532,7 +12532,7 @@ msgstr "IPL-файла нет в списке известных коррект msgid "The Masterpiece partitions are missing." msgstr "Отсутствуют разделы Masterpiece." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12540,7 +12540,7 @@ msgstr "" "Не получается исправить NAND. Рекомендуется создать резервную копию текущих " "данных и поставить NAND с нуля." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND успешно исправлен." @@ -12558,7 +12558,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "Количество денег у этого скайлендера. От 0 до 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12915,7 +12915,7 @@ msgstr "Указанный общий ключевой индекс: {0}, а д msgid "The specified file \"{0}\" does not exist" msgstr "Указанный файл \"{0}\" не существует" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12980,7 +12980,7 @@ msgstr "Отсутствует раздел с обновлением." msgid "The update partition is not at its normal position." msgstr "Раздел с обновлением находится не на своей обычной позиции." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -13374,7 +13374,7 @@ msgstr "Время ожидания истекло" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Название" @@ -13383,12 +13383,12 @@ msgid "To" msgstr "до" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "До:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Полноэкранный режим" @@ -13477,7 +13477,7 @@ msgstr "Элементы управления инструмента" msgid "Toolbar" msgstr "Панель инструментов" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "сверху" @@ -13528,7 +13528,7 @@ msgid "Toy code:" msgstr "Код игрушки:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Традиц. китайский" @@ -13548,8 +13548,8 @@ msgstr "Мастер ловушек" msgid "Trap Team" msgstr "Команда ловушек" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Ошибка промежуточного сервера" @@ -13632,7 +13632,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Ошибка белого списка USB" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13643,7 +13643,7 @@ msgstr "" "слабого оборудования.

Если не уверены – выберите " "этот режим." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13656,7 +13656,7 @@ msgstr "" "вас не бывает подтормаживаний или же у вас слабый ГП — не пользуйтесь этим " "режимом.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13670,7 +13670,7 @@ msgstr "" "подтормаживания при компиляции шейдеров с минимальным влиянием на " "производительность, но конечный результат зависит от поведения драйвера ГП." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Не удалось автоматически обнаружить модуль RSO" @@ -13741,11 +13741,11 @@ msgstr "Несжатые образы GC/Wii (*.iso *.gcm)" msgid "Undead" msgstr "Нежить" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Отменить быструю загрузку" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Отменить быстрое сохранение" @@ -13765,7 +13765,7 @@ msgstr "" "Удаление WAD приведет к удалению текущей версии этого продукта из NAND без " "удаления его сохраненных данных. Продолжить?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "США" @@ -13861,7 +13861,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Неизвестный(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Неизвестный(%1).bin" @@ -13877,7 +13877,7 @@ msgstr "Выгрузить образ игры" msgid "Unlock Cursor" msgstr "Разблок. курсор" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13920,7 +13920,7 @@ msgid "Up" msgstr "Вверх" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Обновление" @@ -13995,7 +13995,7 @@ msgstr "Использовать все данные сохранений Wii" msgid "Use Built-In Database of Game Names" msgstr "Использовать встроенную базу названий игр" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Использовать кодек без потерь (FFV1)" @@ -14003,7 +14003,7 @@ msgstr "Использовать кодек без потерь (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Использовать наведение с помощью мыши" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Режим PAL60 (EuRGB60)" @@ -14017,7 +14017,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -14107,7 +14107,7 @@ msgstr "" "зависимости от игры и/или ГП.

Если не уверены – " "оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -14117,7 +14117,7 @@ msgstr "" "этого будет создано отдельное окно вывода.

Если не " "уверены – оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
В противном случае, " "если не уверены – оставьте выключенной." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14413,7 +14413,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Предупреждение" @@ -14535,7 +14535,7 @@ msgstr "Западная (Windows-1252)" msgid "Whammy" msgstr "Флойд" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14548,7 +14548,7 @@ msgstr "" "

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14561,7 +14561,7 @@ msgstr "" "

Если не уверены – оставьте включенным." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Белый список пробрасываемых USB-устройств" @@ -14611,7 +14611,7 @@ msgstr "Кнопки Wii Remote" msgid "Wii Remote Gyroscope" msgstr "Гироскоп Wii Remote" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Настройки контроллера Wii" @@ -14639,7 +14639,7 @@ msgstr "Wii и Wii Remote" msgid "Wii data is not public yet" msgstr "Данные Wii ещё не опубликованы" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Файлы сохранений Wii (*.bin);;Все файлы (*)" @@ -14647,7 +14647,7 @@ msgstr "Файлы сохранений Wii (*.bin);;Все файлы (*)" msgid "WiiTools Signature MEGA File" msgstr "MEGA-файл с сигнатурами WiiTools" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "Разрешение окна" @@ -14678,7 +14678,7 @@ msgstr "Мир" msgid "Write" msgstr "Запись" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "Запись дампа журнала блока JIT" @@ -14727,11 +14727,11 @@ msgstr "Неверный регион" msgid "Wrong revision" msgstr "Неверная версия" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "Записано в «%1»." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "Записано в «{0}»." @@ -14782,7 +14782,7 @@ msgstr "Да" msgid "Yes to &All" msgstr "Да для &всех" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14792,7 +14792,7 @@ msgstr "" "%1. Всё текущее содержимое папки будет удалено. Вы уверены, что хотите " "продолжить?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14937,7 +14937,7 @@ msgstr "" "Остановиться сейчас, чтобы устранить проблему?\n" "Если выбрать «Нет», звук может быть искажён." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/sr.po b/Languages/po/sr.po index 5dfc4624f3..29a1031ac4 100644 --- a/Languages/po/sr.po +++ b/Languages/po/sr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: nikolassj, 2011\n" "Language-Team: Serbian (http://app.transifex.com/delroth/dolphin-emu/" @@ -79,7 +79,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -165,18 +165,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -184,11 +184,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -200,8 +200,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -326,11 +326,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -347,11 +347,11 @@ msgstr "" msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "" @@ -367,11 +367,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -379,15 +379,15 @@ msgstr "" msgid "&Cancel" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "" @@ -426,13 +426,13 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -446,11 +446,11 @@ msgstr "" msgid "&Edit..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulacija" @@ -471,40 +471,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Fajl" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Graficke Opcije" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Pomoc" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Hotkey Opcije" @@ -524,7 +524,7 @@ msgstr "" msgid "&Import..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -536,7 +536,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -548,11 +548,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "Loaduj Savestate" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -562,11 +562,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -574,11 +574,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "" @@ -586,7 +586,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -595,23 +595,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Pokreni" @@ -619,7 +619,7 @@ msgstr "&Pokreni" msgid "&Properties" msgstr "&Pribor/Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Registri" @@ -645,11 +645,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Reset" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Stop" @@ -681,7 +681,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -689,7 +689,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Alat" @@ -699,21 +699,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Pogledaj" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "" @@ -725,11 +725,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -843,7 +843,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1028,7 +1028,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1132,7 +1132,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1174,8 +1174,8 @@ msgstr "" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1255,7 +1255,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "Adapter" @@ -1332,7 +1332,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "Dodaj..." @@ -1346,7 +1346,7 @@ msgstr "Dodaj..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "" @@ -1540,7 +1540,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1580,7 +1580,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "" @@ -1606,15 +1606,15 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1632,7 +1632,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1664,16 +1664,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "" @@ -1714,11 +1714,11 @@ msgstr "" msgid "Audio" msgstr "Zvuk" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1734,7 +1734,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1755,7 +1755,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1763,15 +1763,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1819,19 +1819,19 @@ msgstr "" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1874,7 +1874,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Baner" @@ -1898,7 +1898,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Osnovno/ni/ne" @@ -1950,11 +1950,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1964,7 +1964,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2000,7 +2000,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2012,11 +2012,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Donji deo/dno" @@ -2193,20 +2193,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "" @@ -2255,7 +2255,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2279,7 +2279,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2359,11 +2359,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "" @@ -2448,7 +2448,7 @@ msgstr "" msgid "Change &Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Promeni &Disk..." @@ -2470,7 +2470,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2488,7 +2488,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2496,7 +2496,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2508,7 +2508,7 @@ msgstr "Chat/Caskanje" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Trazi Chit" @@ -2516,7 +2516,7 @@ msgstr "Trazi Chit" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2554,11 +2554,11 @@ msgstr "Biraj fajl da otvoris " msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2589,7 +2589,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Ocisti" @@ -2597,7 +2597,7 @@ msgstr "Ocisti" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2618,7 +2618,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2662,7 +2662,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2689,7 +2689,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2699,7 +2699,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,15 +2857,15 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "" @@ -2885,7 +2885,7 @@ msgstr "" msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "" @@ -3013,8 +3013,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3022,9 +3022,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3032,9 +3032,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3054,8 +3054,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3245,7 +3245,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3261,13 +3261,13 @@ msgstr "" msgid "Country:" msgstr "Zemlja:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3298,11 +3298,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Izseci" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3314,18 +3314,18 @@ msgstr "" msgid "Crossfade" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3345,11 +3345,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3357,15 +3357,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3408,7 +3408,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3416,15 +3416,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3495,7 +3495,7 @@ msgstr "Mrtva Zona " msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3505,7 +3505,7 @@ msgstr "" msgid "Decimal" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3552,7 +3552,7 @@ msgstr "" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3576,7 +3576,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3622,7 +3622,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3671,7 +3671,7 @@ msgstr "" msgid "Detect" msgstr "Detekuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3701,7 +3701,7 @@ msgstr "Opcije Uredjaja " msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3709,7 +3709,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3733,7 +3733,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3741,11 +3741,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3753,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemoguci \"Fog\"" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3772,7 +3772,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4134,11 +4134,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "" @@ -4162,7 +4162,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "" @@ -4236,7 +4236,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "" @@ -4244,7 +4244,7 @@ msgstr "" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4262,7 +4262,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4284,16 +4284,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4341,7 +4341,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4367,7 +4367,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4380,7 +4380,7 @@ msgstr "" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "" @@ -4389,11 +4389,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4413,11 +4413,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "" @@ -4473,7 +4473,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4504,7 +4504,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4512,7 +4512,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4529,7 +4529,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4555,7 +4555,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4563,7 +4563,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4571,7 +4571,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4600,7 +4600,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "" @@ -4617,7 +4617,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4641,7 +4641,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4680,9 +4680,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4695,24 +4695,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4742,7 +4742,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4847,12 +4847,12 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4896,11 +4896,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "" @@ -4915,7 +4915,7 @@ msgstr "" msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "" @@ -4943,7 +4943,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4971,7 +4971,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5009,7 +5009,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "" @@ -5027,7 +5027,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5047,7 +5047,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5068,7 +5068,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5122,7 +5122,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5149,18 +5149,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5187,7 +5187,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5197,8 +5197,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5210,7 +5210,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5238,11 +5238,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5290,11 +5290,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5353,11 +5353,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5418,27 +5418,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5489,7 +5489,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5525,7 +5525,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5539,7 +5539,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5547,24 +5547,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "" @@ -5682,7 +5682,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "" @@ -5690,7 +5690,7 @@ msgstr "" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "" @@ -5722,11 +5722,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5800,11 +5800,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "" @@ -5812,7 +5812,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5863,7 +5863,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "" @@ -5882,8 +5882,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5939,11 +5939,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6087,7 +6087,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "" @@ -6100,7 +6100,7 @@ msgstr "" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6208,7 +6208,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "" @@ -6240,13 +6240,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Nemacki " @@ -6322,7 +6322,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6404,7 +6404,7 @@ msgstr "" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6428,11 +6428,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6471,11 +6471,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6501,7 +6501,7 @@ msgstr "" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6559,7 +6559,7 @@ msgid "IR" msgstr "" #. 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:363 msgid "IR Sensitivity:" msgstr "" @@ -6623,14 +6623,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6674,7 +6674,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6683,7 +6683,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6698,7 +6698,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6799,16 +6799,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6828,8 +6828,8 @@ msgstr "Info " #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Informacija " @@ -6842,11 +6842,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "" @@ -6872,7 +6872,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "" @@ -6889,7 +6889,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6912,7 +6912,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -6998,7 +6998,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7023,7 +7023,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7048,7 +7048,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7084,13 +7084,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italianski " @@ -7103,11 +7103,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7115,47 +7115,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7167,11 +7167,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7182,16 +7182,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanski " @@ -7251,12 +7251,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korejski " @@ -7303,23 +7303,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7327,7 +7327,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7414,11 +7414,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7430,15 +7430,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Ucitaj " -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7450,7 +7450,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" @@ -7458,7 +7458,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7568,19 +7568,19 @@ msgstr "Ucitaj State Slot 8" msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7592,35 +7592,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7634,7 +7634,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7660,7 +7660,7 @@ msgstr "" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7668,7 +7668,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7684,27 +7684,27 @@ msgstr "" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7764,7 +7764,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7781,12 +7781,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7802,11 +7802,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7815,7 +7815,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7836,7 +7836,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7887,11 +7887,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "" @@ -7907,7 +7907,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7927,7 +7927,7 @@ msgstr "" msgid "Modifier" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7943,8 +7943,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7952,7 +7952,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8010,10 +8010,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8022,7 +8022,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8049,7 +8049,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8259,7 +8259,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8267,7 +8267,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8280,7 +8280,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8324,8 +8324,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8474,7 +8474,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "" @@ -8499,7 +8499,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8521,7 +8521,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "" @@ -8529,13 +8529,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8552,7 +8552,7 @@ msgstr "Otvori " msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8561,7 +8561,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8651,7 +8651,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8693,11 +8693,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8711,11 +8711,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8803,7 +8803,7 @@ msgstr "Pauza " msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8848,7 +8848,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8856,15 +8856,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8882,7 +8882,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8899,7 +8899,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8907,7 +8907,7 @@ msgstr "" msgid "Play" msgstr "Pokreni " -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8915,11 +8915,11 @@ msgstr "" msgid "Play Recording" msgstr "Pokreni snimanje " -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "" @@ -8927,27 +8927,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8969,7 +8969,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9002,7 +9002,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9018,20 +9018,20 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9066,7 +9066,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9135,11 +9135,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9153,7 +9153,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9177,7 +9177,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9209,11 +9209,11 @@ msgstr "" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9238,7 +9238,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9246,7 +9246,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9305,7 +9305,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "" @@ -9317,11 +9317,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9385,7 +9385,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9418,7 +9418,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "" @@ -9455,11 +9455,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9492,7 +9492,7 @@ msgstr "Reset/Restart " msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9524,7 +9524,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9703,19 +9703,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9723,7 +9723,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9758,11 +9758,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "" @@ -9794,11 +9794,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9816,11 +9816,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9832,7 +9832,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9882,23 +9882,23 @@ msgstr "Snimaj State Slot 8" msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9918,11 +9918,11 @@ msgstr "" msgid "Save as..." msgstr "Snimaj kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9933,11 +9933,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9945,11 +9945,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9979,7 +9979,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "" @@ -10006,7 +10006,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10014,7 +10014,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10059,11 +10059,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10103,7 +10103,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10111,7 +10111,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "" @@ -10178,7 +10178,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10186,7 +10186,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10198,7 +10198,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10206,7 +10206,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10223,7 +10223,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Izaberi \"snimani fajl/the save state\"" @@ -10247,7 +10247,7 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10271,7 +10271,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10301,7 +10301,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10323,7 +10323,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10337,7 +10337,7 @@ msgstr "" msgid "Send" msgstr "Isprati" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "" @@ -10402,14 +10402,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10421,7 +10421,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10440,7 +10440,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10454,7 +10454,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10476,16 +10476,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "" @@ -10493,11 +10493,11 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10510,7 +10510,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10519,27 +10519,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10551,23 +10551,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10575,19 +10575,19 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10595,7 +10595,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "" @@ -10604,27 +10604,27 @@ msgstr "" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10632,51 +10632,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10689,7 +10689,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10717,13 +10717,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10762,47 +10762,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10824,7 +10824,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10848,7 +10848,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "" @@ -10865,7 +10865,7 @@ msgstr "" msgid "Size" msgstr "Velicina" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10875,7 +10875,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -10992,7 +10992,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11006,7 +11006,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "" @@ -11014,11 +11014,11 @@ msgstr "" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11026,7 +11026,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11068,7 +11068,7 @@ msgstr "" msgid "Start" msgstr "Pokreni " -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11077,11 +11077,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11089,7 +11089,7 @@ msgstr "" msgid "Start Recording" msgstr "Pokreni Snimanje" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11101,7 +11101,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11161,7 +11161,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11190,12 +11190,12 @@ msgid "Stick" msgstr "" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr " Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11231,7 +11231,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "" @@ -11270,8 +11270,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11298,7 +11298,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11310,12 +11310,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11338,12 +11338,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11401,7 +11401,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11427,7 +11427,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11446,11 +11446,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "" @@ -11463,7 +11463,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11481,7 +11481,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "" @@ -11520,7 +11520,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11532,7 +11532,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11569,13 +11569,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11590,7 +11590,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11884,7 +11884,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11942,7 +11942,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12260,7 +12260,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "" @@ -12269,12 +12269,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12363,7 +12363,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "" @@ -12414,7 +12414,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "" @@ -12434,8 +12434,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12516,14 +12516,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12531,7 +12531,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12540,7 +12540,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12603,11 +12603,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "" @@ -12625,7 +12625,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12717,7 +12717,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12733,7 +12733,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12776,7 +12776,7 @@ msgid "Up" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Updejt " @@ -12847,7 +12847,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12855,7 +12855,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12869,7 +12869,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12937,14 +12937,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13207,7 +13207,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Upozorenje " @@ -13296,7 +13296,7 @@ msgstr "" msgid "Whammy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13304,7 +13304,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13312,7 +13312,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13362,7 +13362,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13390,7 +13390,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13398,7 +13398,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13429,7 +13429,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13478,11 +13478,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13533,14 +13533,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 +13637,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/sv.po b/Languages/po/sv.po index e362669471..3afd6079b6 100644 --- a/Languages/po/sv.po +++ b/Languages/po/sv.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: JosJuice, 2015-2024\n" "Language-Team: Swedish (http://app.transifex.com/delroth/dolphin-emu/" @@ -95,7 +95,7 @@ msgstr "" "%1\n" "vill vara med i din grupp." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -149,7 +149,7 @@ msgstr "%1 (långsamt)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -174,7 +174,7 @@ msgstr "%1 MB (MEM2)" #. i18n: A positive number of version control commits made compared to some named branch #: Source/Core/DolphinQt/AboutDialog.cpp:27 msgid "%1 commit(s) ahead of %2" -msgstr "" +msgstr "%1 ändring(ar) före %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." @@ -184,7 +184,7 @@ msgstr "%1 stöder inte den här funktionen på ditt system." msgid "%1 doesn't support this feature." msgstr "%1 stöder inte den här funktionen." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -194,11 +194,11 @@ msgstr "" "%2 objekt\n" "Nuvarande bildruta: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 har gått med" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 har gått ut" @@ -206,11 +206,11 @@ msgstr "%1 har gått ut" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 har låst upp %2/%3 prestationer värda %4/%5 poäng" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 är inte en giltig ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 golfar nu" @@ -222,8 +222,8 @@ msgstr "%1 spelar %2" msgid "%1 memory ranges" msgstr "%1 minnesintervall" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -240,7 +240,7 @@ msgstr "%1 session hittades" msgid "%1 sessions found" msgstr "%1 sessioner hittades" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -277,7 +277,7 @@ msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -348,11 +348,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Om" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Lägg till minnesbrytpunkt" @@ -369,11 +369,11 @@ msgstr "&Lägg till funktion" msgid "&Add..." msgstr "&Lägg till..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" -msgstr "" +msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Ljudinställningar" @@ -387,13 +387,13 @@ msgstr "&Kantlöst fönster" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 msgid "&Break On Hit" -msgstr "" +msgstr "&Bryt vid träff" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Brytpunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Bugghanterare" @@ -401,15 +401,15 @@ msgstr "&Bugghanterare" msgid "&Cancel" msgstr "&Avbryt" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Leta efter uppdateringar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Rensa symboler" @@ -417,7 +417,7 @@ msgstr "&Rensa symboler" msgid "&Clone..." msgstr "&Klona..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Kod" @@ -425,13 +425,13 @@ msgstr "&Kod" msgid "&Connected" msgstr "&Inkopplad" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Kontrollinställningar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 msgid "&Copy Address" -msgstr "" +msgstr "&Kopiera adress" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 msgid "&Copy address" @@ -448,15 +448,15 @@ msgstr "&Radera" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Ta bort bevakning" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" -msgstr "" +msgstr "&Ta bort bevakningar" #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:65 #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:192 @@ -468,11 +468,11 @@ msgstr "&Redigera kod…" msgid "&Edit..." msgstr "&Redigera..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Mata ut skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emulering" @@ -493,40 +493,40 @@ msgid "&Export as .gci..." msgstr "&Exportera som .gci..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Arkiv" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Teckensnitt…" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "Gå fram en &bildruta" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Fri vy-inställningar" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Generera symboler från" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "Källkoden på &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "G&rafikinställningar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Hjälp" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Kortkommandoinställningar" @@ -546,7 +546,7 @@ msgstr "&Importera snabbsparning..." msgid "&Import..." msgstr "&Importera..." -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinitybas" @@ -558,7 +558,7 @@ msgstr "&Infoga blr" msgid "&Interframe Blending" msgstr "Tidsut&jämning" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -568,13 +568,13 @@ msgstr "&Språk:" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Ladda grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "L&äs in snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Ladda symbol-map" @@ -584,23 +584,23 @@ msgstr "&Ladda fil till nuvarande adress" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" -msgstr "" +msgstr "&Lås bevakningar" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Lås fast gränssnittselement" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 msgid "&Log On Hit" -msgstr "" +msgstr "&Logga vid träff" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Inspelning" @@ -608,7 +608,7 @@ msgstr "&Inspelning" msgid "&Mute" msgstr "&Tyst" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Nätverk" @@ -617,23 +617,23 @@ msgid "&No" msgstr "&Nej" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Öppna..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "A<ernativ" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&Patcha HLE-funktioner" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Spela" @@ -641,7 +641,7 @@ msgstr "&Spela" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "S&krivskyddat läge" @@ -649,7 +649,7 @@ msgstr "S&krivskyddat läge" msgid "&Refresh List" msgstr "&Uppdatera lista" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Register" @@ -667,19 +667,19 @@ msgid "&Rename symbol" msgstr "&Byt namn på symbol" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Återställ" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Resurspaketshanterare" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Spara grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Spara symbol-map" @@ -687,7 +687,7 @@ msgstr "&Spara symbol-map" msgid "&Scan e-Reader Card(s)..." msgstr "&Skanna e-Readerkort..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Skylandersportal" @@ -695,7 +695,7 @@ msgstr "&Skylandersportal" msgid "&Speed Limit:" msgstr "&Hastighetsbegränsning:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "S&toppa" @@ -703,15 +703,15 @@ msgstr "S&toppa" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&Trådar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "&Verktyg" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Verktyg" @@ -721,21 +721,21 @@ msgstr "Ladda &ur ROM" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" -msgstr "" +msgstr "Lås &upp bevakningar" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Visa" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&Bevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Webbplats" @@ -747,25 +747,25 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' hittades inte, inga symbolnamn genererade" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' hittades inte, skannar efter vanliga funktioner istället" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:152 msgid "(Dark)" -msgstr "" +msgstr "(Mörk)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Light)" -msgstr "" +msgstr "(Ljus)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:147 msgid "(System)" -msgstr "" +msgstr "(System)" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:143 msgid "(host)" @@ -799,7 +799,7 @@ msgstr "- Subtrahera" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Okänd--" @@ -865,7 +865,7 @@ msgstr "16-bitars signerat heltal" msgid "16-bit Unsigned Integer" msgstr "16-bitars osignerat heltal" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -949,7 +949,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 block)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1048,9 +1048,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:269 msgid "Disabled in Hardcore Mode." -msgstr "" +msgstr "Inte tillgängligt i hardcoreläge." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Om du är osäker kan du lämna detta omarkerat.
If unsure, select 'Default'." msgstr "" +"Justerar texturfiltreringen. Anisotropisk filtrering förbättrar den visuella " +"kvaliteten på texturer som ses från sneda vinklar. Tvinga närmsta och tvinga " +"linjär åsidosätter texturskalningsfiltret som spelet har valt.

Alla " +"alternativ utom \"Standard\" förändrar hur spelets texturer ser ut och kan " +"orsaka problem i ett litet antal spel.

Det här alternativet är inte " +"kompatibelt med manuell textursampling.

Om du är " +"osäker kan du välja \"Default\"." #. i18n: Refers to plastic shell of game controller (stick gate) that limits stick movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:107 @@ -1562,7 +1569,7 @@ msgstr "Alla" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:585 msgid "All Assembly files" -msgstr "" +msgstr "Alla assemblerfiler" #. i18n: A double precision floating point number #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:170 @@ -1598,7 +1605,7 @@ msgstr "Alla GC/Wii-filer" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160 msgid "All Hexadecimal" -msgstr "" +msgstr "Alla hexadecimala" #: Source/Core/DolphinQt/MainWindow.cpp:1412 #: Source/Core/DolphinQt/MainWindow.cpp:1424 @@ -1607,11 +1614,11 @@ msgstr "Alla snabbsparningar (*.sav *.s##);; Alla filer (*)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162 msgid "All Signed Integer" -msgstr "" +msgstr "Alla int" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:164 msgid "All Unsigned Integer" -msgstr "" +msgstr "Alla uint" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:696 msgid "All files (*)" @@ -1633,7 +1640,7 @@ msgstr "Tillåt regionsinställningar som inte matchar" msgid "Allow Usage Statistics Reporting" msgstr "Tillåt rapportering av användningsstatistik" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "Tillåt ändringar på SD-kort" @@ -1675,7 +1682,7 @@ msgstr "En inmatad skiva förväntades men hittades inte." msgid "Anaglyph" msgstr "Anaglyf" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analysera" @@ -1701,15 +1708,15 @@ msgstr "Kantutjämning:" msgid "Any Region" msgstr "Valfri region" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Lägg till signatur i" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "Lägg till i &existerande signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "Appli&cera signaturfil..." @@ -1729,7 +1736,7 @@ msgstr "Apploader-datum:" msgid "Apply" msgstr "Verkställ" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "Applicera signaturfil" @@ -1759,36 +1766,36 @@ msgstr "Är du säker?" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:142 msgid "Area Sampling" -msgstr "" +msgstr "Områdessampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "Bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Intern upplösning korrigerad för bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "Bildförhållande:" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:366 msgid "Assemble" -msgstr "" +msgstr "Assemblera" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 msgid "Assemble instruction" -msgstr "" +msgstr "Assemblera instruktion" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" -msgstr "" +msgstr "Assembler" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:768 msgid "Assembly File" -msgstr "" +msgstr "Assemblerfil" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:296 msgid "Assign Controller Ports" @@ -1811,11 +1818,11 @@ msgstr "Anslut MotionPlus" msgid "Audio" msgstr "Ljud" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Ljudbackend:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Ljudsträckningsinställningar" @@ -1831,7 +1838,7 @@ msgstr "Skapare" msgid "Authors" msgstr "Författare" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Auto" @@ -1857,7 +1864,7 @@ msgstr "" "\n" "Välj en specifik intern upplösning." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Autojustera fönsterstorlek" @@ -1865,15 +1872,15 @@ msgstr "Autojustera fönsterstorlek" msgid "Auto-Hide" msgstr "Dölj automatiskt" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "Upptäck RSO-moduler automatiskt?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Synkronisera med mapp automatiskt" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1913,7 +1920,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "BBA-destinationsadress" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -1927,19 +1934,19 @@ msgstr "BP-register" msgid "Back Chain" msgstr "Bakåtkedja" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Backend" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Flertrådning i backend" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Backendinställningar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Backend:" @@ -1982,7 +1989,7 @@ msgstr "Ogiltigt värde angivet." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Banner" @@ -2006,7 +2013,7 @@ msgstr "Basadress" msgid "Base priority" msgstr "Basprioritet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Grundläggande" @@ -2032,19 +2039,19 @@ msgstr "BetterJoy, DS4Windows, etc" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:134 msgid "Bicubic: B-Spline" -msgstr "" +msgstr "Bikubisk: B-Spline" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:138 msgid "Bicubic: Catmull-Rom" -msgstr "" +msgstr "Bikubisk: Catmull-Rom" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:136 msgid "Bicubic: Mitchell-Netravali" -msgstr "" +msgstr "Bikubisk: Mitchell-Netravali" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:132 msgid "Bilinear" -msgstr "" +msgstr "Bilinjär" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:427 msgid "Binary SSL" @@ -2058,21 +2065,25 @@ msgstr "Binär SSL (läs)" msgid "Binary SSL (write)" msgstr "Binär SSL (skriv)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bithastighet (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" "\n" "Try again with a different character." msgstr "" +"Misslyckades att skapa blank figur i:\n" +"%1\n" +"\n" +"Prova igen med en annan karaktär." #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blockstorlek" @@ -2110,7 +2121,7 @@ msgstr "" "Bluetooth-genomsläppningsläge är påslaget, men Dolphin byggdes utan libusb. " "Genomsläppningsläge kan inte användas." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Pausa vid start" @@ -2122,81 +2133,81 @@ msgstr "BootMii-NAND-kopia (*bin);;Alla filer (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii-nyckelfil (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Kantlös helskärm" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Under" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" -msgstr "" +msgstr "Branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" -msgstr "" +msgstr "Branch (LR sparad)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" -msgstr "" +msgstr "Branch Conditional" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" -msgstr "" +msgstr "Branch Conditional (LR sparad)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" -msgstr "" +msgstr "Branch Conditional to Count Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Branch Conditional to Count Register (LR sparad)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" -msgstr "" +msgstr "Branch Conditional to Link Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Branch Conditional to Link Register (LR sparad)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" -msgstr "" +msgstr "Gren har inte skrivits över" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" -msgstr "" +msgstr "Grentyp" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Gren har skrivits över" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Grenbevakning" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Grenbevakningsverktyg" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Hjälp för grenbevakningsverktyg (1/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Hjälp för grenbevakningsverktyg (2/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Hjälp för grenbevakningsverktyg (3/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Hjälp för grenbevakningsverktyg (4/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" @@ -2227,19 +2238,19 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" -msgstr "" +msgstr "Branch to Count Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" -msgstr "" +msgstr "Branch to Count Register (LR sparad)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" -msgstr "" +msgstr "Branch to Link Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Branch to Link Register (LR sparad)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 @@ -2258,7 +2269,7 @@ msgstr "Bryt" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 msgid "Break &And Log On Hit" -msgstr "" +msgstr "Bryt &och logga vid träff" #: Source/Core/Core/HotkeyManager.cpp:340 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 @@ -2303,20 +2314,20 @@ msgstr "Fel i bredbandsadapter" msgid "Broadband Adapter MAC Address" msgstr "Bredbandsadapterns MAC-adress" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "Bläddra bland &nätspelssessioner..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Buffertstorlek:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Buffertstorleken ändrades till %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Buffert:" @@ -2368,7 +2379,7 @@ msgstr "Av: %1" msgid "C Stick" msgstr "C-spak" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "S&kapa signaturfil..." @@ -2392,7 +2403,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Interpreterare med cache (långsammare)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2414,11 +2425,11 @@ msgid "" "less noticeable.

Rarely causes slowdowns or graphical issues." "

If unsure, leave this unchecked." msgstr "" -"Beräknar ljussättning av 3D-objekt per pixel istället för per vertex, vilket " -"ger ett mjukare utseende på belysta polygoner och gör individuella trianglar " -"mindre märkbara.

Kan i vissa fall leda till prestandaproblem eller " -"grafiska problem.

Om du är osäker kan du lämna " -"detta omarkerat." +"Beräknar ljussättning av 3D-objekt per bildpunkt istället för per hörnpunkt, " +"vilket ger ett mjukare utseende på belysta polygoner och gör individuella " +"trianglar mindre märkbara.

Kan i vissa fall leda till " +"prestandaproblem eller grafiska problem.

Om du är " +"osäker kan du lämna detta omarkerat." #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:928 msgid "Calibrate" @@ -2482,11 +2493,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "Avbryt" @@ -2497,15 +2508,15 @@ msgstr "Avbryt kalibrering" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" -msgstr "" +msgstr "Kandidater: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Kandidater: %1 | Exkluderade: %2 | Kvar: %3" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Kandidater: %1 | Filtrerade: %2 | Kvar: %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2576,7 +2587,7 @@ msgstr "Centrera och kalibrera" msgid "Change &Disc" msgstr "Byt &skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "Byt s&kiva..." @@ -2597,8 +2608,10 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"Förändrar hur Dolphins knappar ser ut.

Om du är " +"osäker kan du välja Clean." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2627,7 +2640,7 @@ msgstr "" "kameran kring den ursprungliga kameran. Har ingen rörlighet sidledes, endast " "rotation, och du kan zooma upp till kamerans ursprungsläge." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Fuskändringar kommer inte börja gälla förrän spelet startas om." @@ -2635,7 +2648,7 @@ msgstr "Fuskändringar kommer inte börja gälla förrän spelet startas om." msgid "Channel Partition (%1)" msgstr "Kanalpartition (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Den angivna karaktären är ogiltig!" @@ -2647,7 +2660,7 @@ msgstr "Chatt" msgid "Cheat Code Editor" msgstr "Fuskkodsredigerare" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Sök efter fusk" @@ -2655,7 +2668,7 @@ msgstr "Sök efter fusk" msgid "Cheats Manager" msgstr "Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "Kontrollera NAND-minne..." @@ -2695,11 +2708,11 @@ msgstr "Välj en fil att öppna" msgid "Choose a file to open or create" msgstr "Välj en fil att öppna eller skapa" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Välj primär indatafil" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "Välj sekundär indatafil" @@ -2730,15 +2743,15 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Rensa" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" -msgstr "" +msgstr "Rensa grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Rensa cache" @@ -2759,7 +2772,7 @@ msgstr "Klona och &redigera kod…" msgid "Close" msgstr "Stäng" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ko&nfiguration" @@ -2801,9 +2814,9 @@ msgstr "Färgrymd" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" -msgstr "" +msgstr "Kolumn&synlighet" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "Kombinera &två signaturfiler..." @@ -2830,7 +2843,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Kompilera shaders före start" @@ -2840,7 +2853,7 @@ msgstr "Kompilerar shaders" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Komprimering" @@ -2855,7 +2868,7 @@ msgstr "Komprimering:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." -msgstr "" +msgstr "Villkor" #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. @@ -2939,6 +2952,58 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" +"Villkor:\n" +"Anger ett uttryck som evalueras när en brytpunkt aktiveras. Om uttrycket är " +"false eller 0 ignoreras brytpunkten tills nästa gång den aktiveras. Satser " +"separeras med komma. Bara den sista satsen används för att bestämma vad som " +"ska göras.\n" +"\n" +"Register som kan användas:\n" +"GPR : r0..r31\n" +"FPR : f0..f31\n" +"SPR : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, sprg0.." +"sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l..dbat07, " +"gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, ecid_u, " +"ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, pmc1.." +"pmc4, thrm1..thrm3\n" +"Övriga: pc, msr\n" +"\n" +"Funktioner:\n" +"Skriv till ett register: r1 = 8\n" +"Typecast: s8(0xff). Tillgängliga: s8, u8, s16, u16, s32, u32\n" +"Callstack: callstack(0x80123456), callstack(\"anim\")\n" +"Strängjämförelse: streq(r3, \"abc\"). Båda parametrarna kan vara adresser " +"eller strängkonstanter.\n" +"Läs från minne: read_u32(0x80000000). Tillgängliga: u8, s8, u16, s16, u32, " +"s32, f32, f64\n" +"Skriv till minne: write_u32(r3, 0x80000000). Tillgängliga: u8, u16, u32, " +"f32, f64\n" +"*Just nu aktiveras skrivning alltid\n" +"\n" +"Operatörer:\n" +"Unära: -u, !u, ~u\n" +"Matematik: * / + -, exponent: **, modulo: %, bitskift: <<, >>\n" +"Jämförelse: <, <=, >, >=, ==, !=, &&, ||\n" +"Bitmatematik: &, |, ^\n" +"\n" +"Exempel:\n" +"r4 == 1\n" +"f0 == 1.0 && f2 < 10.0\n" +"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" +"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" +"Skriv och bryt: r4 = 8, 1\n" +"Skriv och fortsätt: f3 = f1 + f2, 0\n" +"Villkoret måste alltid vara sist\n" +"\n" +"Använd bara strängar i callstack() eller streq(), och skriv dem \"i " +"citattecken\". Tilldela inte strängar till en variabel. Alla variabler " +"loggas i Memory Interface-loggen ifall det sker en träff eller ett NaN-" +"resultat. För att leta efter problem, tilldela resultatet för ditt uttryck " +"till en variabel så att den kan loggas.\n" +"\n" +"OBS: Alla värden omvandlas internt till double för beräkning. Det är möjligt " +"för dem att gå till oändlighet eller NaN. Om NaN returneras sker en varning, " +"och variabeln som blev NaN loggas." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -2955,7 +3020,7 @@ msgstr "Konfigurera" msgid "Configure Controller" msgstr "Anpassa kontroll" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Konfigurera Dolphin" @@ -2979,7 +3044,7 @@ msgstr "Konfigurera utmatning" msgid "Confirm" msgstr "Bekräfta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Bekräfta byte av backend" @@ -2987,7 +3052,7 @@ msgstr "Bekräfta byte av backend" msgid "Confirm on Stop" msgstr "Bekräfta vid stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2998,15 +3063,15 @@ msgstr "Bekräftelse" msgid "Connect" msgstr "Anslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Anslut balansbräda" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "Anslut USB-tangentbord" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Anslut Wii-fjärrkontroll %1" @@ -3026,7 +3091,7 @@ msgstr "Anslut Wii-fjärrkontroll 3" msgid "Connect Wii Remote 4" msgstr "Anslut Wii-fjärrkontroll 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Anslut Wii-fjärrkontroller" @@ -3145,7 +3210,7 @@ msgid "" "but can also cause issues. Defaults to True" msgstr "" "Styr huruvida Dual Core ska aktiveras. Det kan förbättra prestanda men kan " -"också orsaka problem. Förval är Sant" +"också orsaka problem. Förvalet är True" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:44 msgid "" @@ -3160,8 +3225,8 @@ msgid "" "Controls whether to use high or low-level DSP emulation. Defaults to " "True" msgstr "" -"Styr vilken DSP-emulering som ska användas; hög eller låg nivå. Förval är " -"Sant" +"Styr vilken DSP-emulering som ska användas; hög eller låg nivå. Förvalet är " +"True" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 msgid "Convergence" @@ -3172,8 +3237,8 @@ msgstr "Konvergens" msgid "Convergence:" msgstr "Konvergens:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Konvertering misslyckades." @@ -3181,9 +3246,9 @@ msgstr "Konvertering misslyckades." msgid "Convert" msgstr "Konvertera" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Konvertera fil till mapp nu" @@ -3191,9 +3256,9 @@ msgstr "Konvertera fil till mapp nu" msgid "Convert File..." msgstr "Konvertera fil..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Konvertera mapp till fil nu" @@ -3216,8 +3281,8 @@ msgstr "" "fortsätta ändå?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Konverterar..." @@ -3313,7 +3378,7 @@ msgstr "Kärna" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." -msgstr "" +msgstr "Kärnan har inte initialiserats." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3448,7 +3513,7 @@ msgstr "" "I så fall kan du behöva ställa in dina minneskortsplatser i inställningarna " "igen." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Kunde inte slå upp centralserver" @@ -3464,13 +3529,13 @@ msgstr "Kunde inte läsa in filen." msgid "Country:" msgstr "Land:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Skapa" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Skapa Infinityfil" @@ -3501,11 +3566,11 @@ msgstr "Skapare:" msgid "Critical" msgstr "Kritisk" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Beskär" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3517,18 +3582,21 @@ msgstr "" msgid "Crossfade" msgstr "Överbländning" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" -msgstr "" +msgstr "Filtrera hörnpunkter på CPU" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" +"Filtrerar hörnpunkter på CPU:n för att minska antalet ritanrop som krävs. " +"Kan påverka prestanda och ritstatistik.

Om du är " +"osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Nuvarande region" @@ -3548,29 +3616,29 @@ msgstr "Nuvarande spel" msgid "Current thread" msgstr "Aktuell tråd" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" -msgstr "" +msgstr "Anpassad" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" -msgstr "" +msgstr "Anpassad (utsträckt)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" msgstr "Anpassat adressutrymme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" -msgstr "" +msgstr "Höjd för anpassat bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" -msgstr "" +msgstr "Bredd för anpassat bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" -msgstr "" +msgstr "Anpassat bildförhållande:" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:158 msgid "Custom RTC Options" @@ -3611,7 +3679,7 @@ msgstr "DJ-skivspelare" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP-emuleringsmotor" @@ -3619,15 +3687,15 @@ msgstr "DSP-emuleringsmotor" msgid "DSP HLE (fast)" msgstr "DSP HLE (snabb)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (rekommenderas)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE-interpreterare (väldigt långsam)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE-omkompilator (långsam)" @@ -3702,7 +3770,7 @@ msgstr "Död zon" msgid "Debug" msgstr "Felsökning" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Felsökning" @@ -3712,7 +3780,7 @@ msgstr "Felsökning" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Dekodningskvalitet:" @@ -3759,7 +3827,7 @@ msgstr "Standard" msgid "Default Config (Read Only)" msgstr "Standardinställningar (skrivskyddad)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Standardenhet" @@ -3775,7 +3843,7 @@ msgstr "Standard-ISO:" msgid "Default thread" msgstr "Förvald tråd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "Fördröj EFB-cacheinvalidering" @@ -3783,7 +3851,7 @@ msgstr "Fördröj EFB-cacheinvalidering" msgid "Defer EFB Copies to RAM" msgstr "Fördröj EFB-kopior till RAM" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3835,7 +3903,7 @@ msgstr "Djup:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivning" @@ -3852,29 +3920,29 @@ msgstr "Beskrivning: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" -msgstr "" +msgstr "Destination" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Destination (UNIX-socketsökväg eller adress:port):" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Destination (adress:port):" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" -msgstr "" +msgstr "Maxdestination" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" -msgstr "" +msgstr "Mindestination" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" -msgstr "" +msgstr "Destinationssymbol" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" @@ -3884,7 +3952,7 @@ msgstr "Frikopplad" msgid "Detect" msgstr "Sök" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "Upptäcker RSO-moduler" @@ -3894,7 +3962,7 @@ msgstr "Deterministiska dubbla kärnor:" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Dev (multiple times a day)" -msgstr "Utveckling (flera gånger om dagen)" +msgstr "Utvecklingsversioner (flera gånger om dagen)" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:98 msgid "Device" @@ -3914,7 +3982,7 @@ msgstr "Enhetsinställningar" msgid "Device VID (e.g., 057e)" msgstr "Enhetens VID (t.ex. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Enhet:" @@ -3922,7 +3990,7 @@ msgstr "Enhet:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 verkar inte vara en giltig Riivolution-XML-fil." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Gör skärmen mörkare efter fem minuters inaktivitet." @@ -3946,7 +4014,7 @@ msgstr "Inaktivera Bounding Box" msgid "Disable Copy Filter" msgstr "Inaktivera kopieringsfilter" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "Inaktivera EFB-VRAM-kopior" @@ -3954,11 +4022,11 @@ msgstr "Inaktivera EFB-VRAM-kopior" msgid "Disable Emulation Speed Limit" msgstr "Inaktivera emuleringshastighetsgräns" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Inaktivera fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Inaktivera fastmemarena" @@ -3966,13 +4034,13 @@ msgstr "Inaktivera fastmemarena" msgid "Disable Fog" msgstr "Inaktivera dimma" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "Inaktivera JIT-cache" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" -msgstr "" +msgstr "Inaktivera stor ingångspunktstabell" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:214 msgid "Disabled" @@ -3989,7 +4057,7 @@ msgstr "" "inte fungera rätt.

Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If " "unsure, leave this checked." msgstr "" +"Hindrar skärmsläckaren från att visas medan ett spel kör." +"

Om du är osäker kan du lämna detta markerat." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4029,7 +4100,7 @@ msgstr "Kasta" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 msgid "Display Settings" -msgstr "" +msgstr "Visningsinställningar" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4070,7 +4141,7 @@ msgstr "" 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:1302 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 msgid "Do you want to clear the list of symbol names?" msgstr "Vill du tömma symbolnamnlistan?" @@ -4088,12 +4159,12 @@ msgstr "Vill du stoppa den aktuella emuleringen?" msgid "Do you want to try to repair the NAND?" msgstr "Vill du försöka reparera NAND-minnet?" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:83 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:84 msgid "Dolby Pro Logic II Decoder" msgstr "Dolby Pro Logic II-dekoder" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:232 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:218 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:229 msgid "Dolphin FIFO Log (*.dff)" msgstr "Dolphin-FIFO-logg (*.dff)" @@ -4101,9 +4172,9 @@ msgstr "Dolphin-FIFO-logg (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Förinställd Dolphin-spelmod" -#: Source/Core/DolphinQt/MenuBar.cpp:1603 -#: Source/Core/DolphinQt/MenuBar.cpp:1620 -#: Source/Core/DolphinQt/MenuBar.cpp:1639 +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +#: Source/Core/DolphinQt/MenuBar.cpp:1629 msgid "Dolphin Map File (*.map)" msgstr "Dolphin-map-fil (*.map)" @@ -4116,7 +4187,7 @@ msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" #: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin-TAS-filmer (*.dtm)" @@ -4160,7 +4231,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:1001 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:999 msgid "Dolphin is too old for traversal server" msgstr "Dolphin är för gammal för traverseringsservern" @@ -4183,7 +4254,7 @@ msgid "" msgstr "" "Dolphin använder detta för titlar vars region inte kan avgöras automatiskt." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:75 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins fusksystem är avstängt just nu." @@ -4296,19 +4367,19 @@ msgstr "Dumpa &FakeVMEM" msgid "Dump &MRAM" msgstr "Dumpa &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:848 +#: Source/Core/DolphinQt/MenuBar.cpp:845 msgid "Dump Audio" msgstr "Dumpa ljud" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 msgid "Dump Base Textures" msgstr "Dumpa bastexturer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 msgid "Dump EFB Target" msgstr "Dumpa EFB-mål" -#: Source/Core/DolphinQt/MenuBar.cpp:842 +#: Source/Core/DolphinQt/MenuBar.cpp:839 msgid "Dump Frames" msgstr "Dumpa bildrutor" @@ -4316,7 +4387,7 @@ msgstr "Dumpa bildrutor" msgid "Dump GameCube BBA traffic" msgstr "Dumpa GameCube-BBA-trafik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:131 msgid "Dump Mip Maps" msgstr "Dumpa mipmaps" @@ -4324,7 +4395,7 @@ msgstr "Dumpa mipmaps" msgid "Dump Path:" msgstr "Dump-sökväg:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:110 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:111 msgid "Dump XFB Target" msgstr "Dumpa XFB-mål" @@ -4349,7 +4420,7 @@ msgstr "Dumpa peer-certifikat" msgid "Dump root CA certificates" msgstr "Dumpa rot-CA-certifikat" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:317 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:318 msgid "" "Dumps decoded game textures based on the other flags to User/Dump/Textures/" "<game_id>/.

If unsure, leave this unchecked.
Om du är osäker kan du " "lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4368,7 +4439,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4387,11 +4458,11 @@ msgstr "Varaktighet för turboknappsläppning (bildrutor):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Nederländska" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "A&vsluta" @@ -4423,7 +4494,7 @@ msgstr "" "Lämpligt för tävlingar där neutralitet och minimal latens är som mest " "viktigt." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Tidiga minnesuppdateringar" @@ -4444,11 +4515,11 @@ msgstr "Redigera brytpunkt" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit Conditional" -msgstr "" +msgstr "Redigera villkor" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 msgid "Edit conditional expression" -msgstr "" +msgstr "Redigera villkorsuttryck" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 @@ -4497,7 +4568,7 @@ msgstr "Inbäddad bildrutebuffert (EFB)" msgid "Empty" msgstr "Tom" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Emuleringstråd körs redan" @@ -4505,7 +4576,7 @@ msgstr "Emuleringstråd körs redan" msgid "Emulate Disc Speed" msgstr "Emulera skivhastighet" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Emulera Infinitybas" @@ -4522,8 +4593,10 @@ msgid "" "Emulate the disc speed of real hardware. Disabling can cause instability. " "Defaults to True" msgstr "" +"Emulerar riktig hårdvaras skivläsarhastighet. Spel kan bli instabila om det " +"här är avstängt. Förvalet är True" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Emulerade USB-enheter" @@ -4548,16 +4621,16 @@ msgstr "Emuleringshastighet" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Aktivera" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "Aktivera API-valideringslager" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Aktivera ljudsträckning" @@ -4579,7 +4652,7 @@ msgstr "Aktivera felsökningsgränssnitt" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "Aktivera Discordnärvaro" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" @@ -4605,13 +4678,13 @@ msgstr "Aktivera reprisprestationer" msgid "Enable FPRF" msgstr "Aktivera FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Aktivera grafikmoddar" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "Aktivera hardcodeläge" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" @@ -4630,10 +4703,25 @@ msgid "" "
Be aware that turning Hardcore Mode off while a game is running requires " "the game to be closed before re-enabling." msgstr "" +"Aktiverar RetroAchivements hardcoreläge.

Tanken med hardcoreläget är " +"att göra spelupplevelsen så lik originalkonsolen som möjligt. " +"RetroAchievements rankningar riktar sig främst mot hardcorepoäng " +"(softcorepoäng registreras men har inte lika stor vikt), och leaderboards " +"kräver att hardcoreläget är på.

För att uppnå den här upplevelsen " +"stängs följande funktioner av, eftersom de ger emulatoranvändare fördelar " +"över konsolanvändare:
- Att ladda snabbsparningar
-- Det är tillåtet " +"att spara snabbsparningar
- Emulatorhastigheter under 100%
-- Att gå " +"framåt en bildruta i taget är avstängt
-- Turbo är tillåtet
- " +"Fusk
- Minnespatchar
-- Filpatchar är tillåtna
- " +"Felsökningsgränssnitt
- Fri kamera

Det går inte " +"att slå på detta medan ett spel körs.
Stäng det " +"nuvarande spelet före du aktiverar den här inställningen.
Tänk på att om " +"du stänger av hardcoreläget medan ett spel körs måste du stänga spelet före " +"du kan slå på det igen." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" -msgstr "" +msgstr "Aktivera JIT-blockprofilering" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 @@ -4642,9 +4730,9 @@ msgstr "Aktivera MMU" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" -msgstr "" +msgstr "Aktivera framstegsnotiser" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Aktivera Progressive scan" @@ -4653,11 +4741,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "Aktivera RetroAchievements.org-integrering" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Aktivera skärmsläckare" @@ -4677,11 +4765,11 @@ msgstr "Aktivera inofficiella prestationer" msgid "Enable Usage Statistics Reporting" msgstr "Aktivera statistikrapportering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "Aktivera WiiConnect24 via WiiLink" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Aktivera Wireframe" @@ -4739,7 +4827,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4774,7 +4862,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4787,7 +4875,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4814,7 +4902,7 @@ msgstr "" "SDR internt.

Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Sträcker ut ljudet så att det matchar emulationshastigheten." @@ -4842,7 +4930,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4854,7 +4942,7 @@ msgstr "" "Forecast Channel och Nintendo Channel.\n" "Läs användarvillkoren på: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4867,7 +4955,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4894,7 +4982,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 msgid "End Addr" -msgstr "" +msgstr "Slutadr." #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -4902,7 +4990,7 @@ msgstr "Enet initialiserades inte" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "Engelska" @@ -4919,7 +5007,7 @@ msgstr "Ange IP-adress för enheten som kör XLink Kai-klienten:" msgid "Enter USB device ID" msgstr "Ange ID för en USB-enhet" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Ange adress att bevaka:" @@ -4943,7 +5031,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "Ange RSO-moduladressen:" @@ -4982,9 +5070,9 @@ msgstr "Ange RSO-moduladressen:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4997,24 +5085,24 @@ msgstr "Ange RSO-moduladressen:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5044,7 +5132,7 @@ msgstr "Ett fel uppstod när adaptern skulle öppnas: %1" msgid "Error collecting save data!" msgstr "Fel uppstod när spardata samlades in!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5157,12 +5245,12 @@ 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:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Exklusiva übershaders" @@ -5206,11 +5294,11 @@ msgstr "Början av uttryck förväntades." msgid "Expected variable name." msgstr "Variabelnamn förväntades." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Exportera alla Wii-sparningar" @@ -5225,7 +5313,7 @@ msgstr "Exportering misslyckades" msgid "Export Recording" msgstr "Exportera inspelning" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Exportera inspelning..." @@ -5253,7 +5341,7 @@ msgstr "Exportera som .&gcs..." msgid "Export as .&sav..." msgstr "Exportera som .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5281,7 +5369,7 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Extern bildrutebuffert (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "Extrahera certifikat från NAND-minne" @@ -5319,7 +5407,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO-spelare" @@ -5339,7 +5427,7 @@ msgstr "" 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:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "Misslyckades att lägga till i signaturfilen \"%1\"" @@ -5359,7 +5447,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Misslyckades att ansluta till Redump.org" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Misslyckades att ansluta till server: %1" @@ -5380,7 +5468,7 @@ 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:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Misslyckades att skapa Infinityfil" @@ -5438,7 +5526,7 @@ msgstr "Misslyckades med att exportera %n av %1 sparfil(er)." msgid "Failed to export the following save files:" msgstr "Misslyckades att exportera följande sparfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "Misslyckades att extrahera certifikat från NAND-minnet" @@ -5468,14 +5556,14 @@ msgstr "Misslyckades att hitta en eller flera D3D-symboler" msgid "Failed to import \"%1\"." msgstr "Misslyckades att importera \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 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:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5483,7 +5571,7 @@ msgstr "" "Misslyckades att importera sparfil. Den givna filen verkar vara skadad eller " "är inte en giltig Wii-sparfil." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5517,7 +5605,7 @@ msgid "Failed to install pack: %1" msgstr "Misslyckades att installera paket: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Misslyckades att installera denna titel till NAND-minnet." @@ -5527,8 +5615,8 @@ msgid "" "running?" msgstr "Misslyckades att lyssna på port %1. Körs nätspelsservern redan?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "Misslyckades att ladda RSO-model vid %1" @@ -5540,7 +5628,7 @@ msgstr "Misslyckades att ladda d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Misslyckades att ladda dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Misslyckades att läsa map-filen \"%1\"" @@ -5570,13 +5658,13 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Misslyckades att modifiera Skylander!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Misslyckades att öppna \"%1\" för att skriva." -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Misslyckades att öppna \"{0}\" för att skriva." #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/MainWindow.cpp:1726 @@ -5590,7 +5678,7 @@ msgstr "Misslyckades att öppna Bluetooth-enhet: {0}" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Misslyckades att öppna grenbevakningsögonblicksbild \"%1\"" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5624,11 +5712,11 @@ msgstr "Kunde inte öppna fil." msgid "Failed to open server" msgstr "Misslyckades att öppna servern" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "Misslyckades att öppna Infinityfilen!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5690,17 +5778,21 @@ msgstr "Misslyckades att läsa från indatafilen \"{0}\"." 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:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "Misslyckades att läsa Infinityfilen!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" "\n" "The file was too small." msgstr "" +"Misslyckades att läsa Infinityfilen:\n" +"%1\n" +"\n" +"Filen var för liten." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5764,27 +5856,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "Misslyckades att spara FIFO-logg." -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 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:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "Misslyckades att spara signaturfilen \"%1\"" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 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:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "Misslyckades att spara till signaturfilen \"%1\"" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5837,7 +5929,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "Misslyckades" @@ -5875,7 +5967,7 @@ msgstr "" msgid "Field of View" msgstr "Synfält" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "Figurnummer:" @@ -5889,7 +5981,7 @@ msgstr "Fildetaljer" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Filformat" @@ -5897,24 +5989,24 @@ msgstr "Filformat" msgid "File Format:" msgstr "Filformat:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Filinformation" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Filnamn" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Sökväg" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Filstorlek" @@ -6040,7 +6132,7 @@ msgstr "" "För instruktioner, se " "den här sidan." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "Tvinga 16:9" @@ -6048,7 +6140,7 @@ msgstr "Tvinga 16:9" msgid "Force 24-Bit Color" msgstr "24-bitars färg" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "Tvinga 4:3" @@ -6080,11 +6172,11 @@ msgstr "Lyssna på port:" msgid "Force Nearest" msgstr "Tvinga närmsta" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "Kan inte sättas på eftersom %1 inte stöder VS-expansion." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Kan inte stängas av eftersom %1 inte stöder geometrishaders." @@ -6162,11 +6254,11 @@ msgstr "Gå fram en bildruta - Öka hastighet" msgid "Frame Advance Reset Speed" msgstr "Gå fram en bildruta - Nollställ hastighet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "Bildrutedumpning" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Räckvidd för bildrutor" @@ -6174,7 +6266,7 @@ msgstr "Räckvidd för bildrutor" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "Bildrutedumpfilen \"{0}\" finns redan. Vill du skriva över?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "Bildrutor att spela in:" @@ -6217,7 +6309,7 @@ msgstr "" #: Source/Core/Core/FreeLookManager.cpp:315 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:25 msgid "FreeLook" -msgstr "Fri vy" +msgstr "Fri kamera" #: Source/Core/Core/HotkeyManager.cpp:348 msgid "Freelook" @@ -6229,7 +6321,7 @@ msgstr "Fri kamera - Slå på/av" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Franska" @@ -6248,8 +6340,8 @@ msgid "From" msgstr "Från" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "Från:" @@ -6263,7 +6355,7 @@ msgstr "Funktion" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 msgid "Function Settings" -msgstr "" +msgstr "Funktionella inställningar" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6305,11 +6397,11 @@ msgstr "GBA-volym" msgid "GBA Window Size" msgstr "GBA-fönsterstorlek" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1:s ROM ändrad till \"%2\"" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1:s ROM borttagen" @@ -6478,7 +6570,7 @@ msgid "Game Gamma:" msgstr "Spelets gamma:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Spel-ID" @@ -6491,7 +6583,7 @@ msgstr "Spel-ID:" msgid "Game Status" msgstr "Spelstatus" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "Bytte spel till \"%1\"" @@ -6603,7 +6695,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko-koder" @@ -6625,7 +6717,7 @@ msgstr "Allmänt och alternativ" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:505 msgid "Generate Action Replay Code(s)" -msgstr "" +msgstr "Genererade Action Replay-kod(er)" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 msgid "Generate a New Statistics Identity" @@ -6633,15 +6725,15 @@ msgstr "Generera en ny statistikidentitet" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." -msgstr "" +msgstr "Genererade AR-kod(er)." -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "Genererade symbolnamn från '%1'" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Tyska" @@ -6722,7 +6814,7 @@ msgstr "Grön vänster" msgid "Green Right" msgstr "Grön höger" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Rutnätsvy" @@ -6802,9 +6894,9 @@ msgstr "Göm" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:299 msgid "Hide &Controls" -msgstr "" +msgstr "Dölj &kontroller" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "Dölj alla" @@ -6828,11 +6920,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Hög" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "Högsta" @@ -6876,11 +6968,11 @@ msgstr "" "Lämplig för casual spel med 3+ spelare, eventuellt på instabila eller höga " "latensanslutningar." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "Värdauktoritet för indata avstängt" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "Värdauktoritet för indata påslaget" @@ -6906,7 +6998,7 @@ msgstr "Kortkommandon" msgid "Hotkeys Require Window Focus" msgstr "Snabbtangenter kräver fönsterfokus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "Hybridübershaders" @@ -6970,7 +7062,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR-känslighet:" @@ -7070,7 +7162,7 @@ msgstr "" "anslutningstillstånd att länkas till den reella förvalda enhetens\n" "anslutningstillstånd (om sådan finns)." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7081,7 +7173,7 @@ msgstr "" "hjälpa vid tester.

Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7099,7 +7191,7 @@ msgstr "Ignorera" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:302 msgid "Ignore &Apploader Branch Hits" -msgstr "" +msgstr "Ignorera grenträffar i &apploader" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:50 msgid "Ignore Format Changes" @@ -7138,7 +7230,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "Presentera XFB omedelbart" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7153,7 +7245,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "Importera BootMii-NAND-kopia..." @@ -7168,7 +7260,7 @@ msgstr "Importering misslyckades" msgid "Import Save File(s)" msgstr "Importera sparfil(er)" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Importera Wii-sparning…" @@ -7276,16 +7368,16 @@ msgstr "Inkrementell rotation" msgid "Incremental Rotation (rad/sec)" msgstr "Inkrementell rotation (rad/sek)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Infinityfigurskapare" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Infinityhanterare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Infinityobjekt (*.bin);;" @@ -7307,8 +7399,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Information" @@ -7321,11 +7413,11 @@ msgid "Inject" msgstr "Injicera" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Indata" @@ -7341,17 +7433,17 @@ msgstr "Inmatningsstyrka att ignorera samt skala med." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1039 msgid "Insert &BLR" -msgstr "" +msgstr "Infoga &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 msgid "Insert &NOP" -msgstr "" +msgstr "Infoga &NOP" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "Insert &nop" msgstr "Sätt in &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sätt in SD-kort" @@ -7368,7 +7460,7 @@ msgstr "Installationspartition (%1)" msgid "Install Update" msgstr "Installera uppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "Installera WAD…" @@ -7391,7 +7483,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "Instruktionsbrytpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "Instruktion:" @@ -7407,6 +7499,10 @@ msgid "" "Registers: %2\n" "Memory: %3" msgstr "" +"Instruktioner exekverade: %1\n" +"Värdet finns i:\n" +"Register: %2\n" +"Minne: %3" #. i18n: Refers to the intensity of shaking an emulated wiimote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:141 @@ -7484,7 +7580,7 @@ msgstr "Ett internt fel uppstod när AR-kod skulle genereras." msgid "Interpreter (slowest)" msgstr "Interpreterare (långsammast)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "Interpreterarkärna" @@ -7509,7 +7605,7 @@ msgstr "Ogiltigt paket %1: %2" msgid "Invalid Player ID" msgstr "Ogiltigt spelar-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "Ogiltig RSO-moduladress: %1" @@ -7534,7 +7630,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "Ogiltig indata för fältet \"%1\"" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "Ogiltig indata" @@ -7570,13 +7666,13 @@ msgstr "Ogiltig söksträng (endast jämna stränglängder stöds)" msgid "Invalid title ID." msgstr "Ogiltigt titel-ID." -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "Ogiltig bevakningsadress: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italienska" @@ -7589,11 +7685,11 @@ msgstr "Italien" msgid "Item" msgstr "Föremål" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "JIT-blocklänkning av" @@ -7601,47 +7697,47 @@ msgstr "JIT-blocklänkning av" msgid "JIT Blocks" msgstr "JIT-block" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "JIT Branch av" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint av" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "JIT Integer av" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating av" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "JIT LoadStore av" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired av" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz av" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx av" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz av" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "JIT av (JIT-kärna)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "JIT Paired av" @@ -7653,11 +7749,11 @@ msgstr "JIT-omkompilerare för ARM64 (rekommenderas)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-omkompilerare för x86-64 (rekommenderas)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "JIT Register Cache av" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters av" @@ -7671,16 +7767,16 @@ msgstr "" "aldrig hända. Rapportera gärna detta till utvecklarna. Dolphin kommer nu " "avslutas." -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" -msgstr "" +msgstr "JIT är inte aktivt" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japan" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanska" @@ -7742,12 +7838,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "Sparka ut spelare" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Korea" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Koreanska" @@ -7778,7 +7874,7 @@ msgstr "Etikett" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Språk" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -7794,23 +7890,23 @@ msgstr "Senast placerad:" msgid "Last reset:" msgstr "Senast nollställd:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Latens:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "Latens: ~10 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "Latens: ~20 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "Latens: ~40 ms" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "Latens: ~80 ms" @@ -7818,9 +7914,9 @@ msgstr "Latens: ~80 ms" msgid "Launching these titles may also fix the issues." msgstr "Det är möjligt att problemen också kan fixas av att starta titlarna." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" -msgstr "" +msgstr "Leaderboards" #: Source/Core/Core/FreeLookManager.cpp:90 #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:36 @@ -7914,11 +8010,11 @@ msgstr "Ljus" msgid "Limit Chunked Upload Speed:" msgstr "Begränsa segmentuppladdningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "Listkolumner" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Listvy" @@ -7930,27 +8026,27 @@ msgstr "Lyssnar" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Läs in" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "Ladda &felaktig map-fil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "Ladda &annan map-fil..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:291 msgid "Load Branch Watch &From..." -msgstr "" +msgstr "Ladda grenbevakning &från..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 msgid "Load Branch Watch snapshot" -msgstr "" +msgstr "Ladda grenbevakningsöverblicksbild" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Läs in anpassade texturer" @@ -7958,7 +8054,7 @@ msgstr "Läs in anpassade texturer" msgid "Load File" msgstr "Ladda fil" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "Ladda GameCube-huvudmeny" @@ -8068,19 +8164,19 @@ msgstr "Läs in snabbsparningsplats 8" msgid "Load State Slot 9" msgstr "Läs in snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Läs in snabbsparning från fil" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Läs in snabbsparning från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Läs in snabbsparning från plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Starta Wii-systemmeny %1" @@ -8092,28 +8188,28 @@ msgstr "Ladda och skriv värdens spardata" msgid "Load from Selected Slot" msgstr "Ladda från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "Läs in från plats %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "Ladda map-fil" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "Starta vWii-systemmeny %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Ladda..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "Laddade symboler från '%1'" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8123,7 +8219,7 @@ msgstr "" "User/Load/DynamicInputTextures/<spel-id>/.

Om " "du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8140,7 +8236,7 @@ msgstr "Lokalt" msgid "Lock Mouse Cursor" msgstr "Lås muspekare" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Låst" @@ -8166,7 +8262,7 @@ msgstr "Loggkonfiguration" msgid "Log In" msgstr "Logga in" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "Logga JIT-instruktionstäckning" @@ -8174,7 +8270,7 @@ msgstr "Logga JIT-instruktionstäckning" msgid "Log Out" msgstr "Logga ut" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Logga renderingstid till fil" @@ -8190,7 +8286,7 @@ msgstr "Loggningsutdata" msgid "Login Failed" msgstr "Inloggning misslyckades" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8201,20 +8297,20 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "Slinga" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "Tappade anslutningen till nätspelsservern..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Låg" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "Lägsta" @@ -8274,7 +8370,7 @@ msgstr "Se till att det finns en Skylander på plats %1!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "Skapare" @@ -8296,12 +8392,12 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "Hantera NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "Manuell textursampling" @@ -8317,11 +8413,11 @@ msgstr "Mask-ROM" msgid "Match Found" msgstr "Sökträff hittades" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "Maxbuffert:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "Buffertstorleken ändrades till %1" @@ -8330,7 +8426,7 @@ msgstr "Buffertstorleken ändrades till %1" msgid "Maximum tilt angle." msgstr "Maximal lutningsvinkel." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Kan leda till prestandaproblem i Wii-menyn och vissa spel." @@ -8351,7 +8447,7 @@ msgstr "Minnesbrytpunkt" msgid "Memory Card" msgstr "Minneskort" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "Minneskorthanterare" @@ -8406,17 +8502,17 @@ msgstr "Mikrofon" msgid "Mini" msgstr "Mini" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Övrigt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Övriga inställningar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:487 msgid "Misc. Controls" -msgstr "" +msgstr "Diverse kontroller" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -8427,7 +8523,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "De interna datastrukturerna matchar inte." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8447,14 +8543,14 @@ msgstr "" #: Source/Core/Core/HW/EXI/EXI_Device.h:108 msgid "Modem Adapter (tapserver)" -msgstr "" +msgstr "Modemadapter (tapserver)" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25 msgid "Modifier" msgstr "Redigerare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8474,8 +8570,8 @@ msgstr "Modifiera plats" msgid "Modifying Skylander: %1" msgstr "Modifierar Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "Moduler hittade: %1" @@ -8483,7 +8579,7 @@ msgstr "Moduler hittade: %1" msgid "Money:" msgstr "Pengar:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "Mono" @@ -8532,7 +8628,7 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:582 msgid "Multiple errors while generating AR codes." -msgstr "" +msgstr "Flera fel uppstod vid generering av AR-koder." #. i18n: Controller input values are multiplied by this percentage value. #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342 @@ -8543,10 +8639,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ej till alla" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-minneskontroll" @@ -8555,7 +8651,7 @@ msgstr "NAND-minneskontroll" msgid "NKit Warning" msgstr "NKit-varning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8582,7 +8678,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8798,7 +8894,7 @@ msgstr "Inga fel." msgid "No extension selected." msgstr "Ingen extern kontroll har valts." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "Ingen fil inläst/inspelad." @@ -8806,7 +8902,7 @@ msgstr "Ingen fil inläst/inspelad." msgid "No game is running." msgstr "Inget spel körs." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "Inget spel körs." @@ -8819,7 +8915,7 @@ msgstr "Ingen grafikmodd vald" msgid "No input" msgstr "Ingen indata" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "Inga problem upptäcktes." @@ -8868,8 +8964,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8977,53 +9073,53 @@ msgstr "Objekt %1" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:24 msgid "Object 1 Size" -msgstr "" +msgstr "Objekt 1 storlek" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:22 msgid "Object 1 X" -msgstr "" +msgstr "Objekt 1 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:23 msgid "Object 1 Y" -msgstr "" +msgstr "Objekt 1 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:27 msgid "Object 2 Size" -msgstr "" +msgstr "Objekt 2 storlek" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:25 msgid "Object 2 X" -msgstr "" +msgstr "Objekt 2 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:26 msgid "Object 2 Y" -msgstr "" +msgstr "Objekt 2 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:30 msgid "Object 3 Size" -msgstr "" +msgstr "Objekt 3 storlek" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:28 msgid "Object 3 X" -msgstr "" +msgstr "Objekt 3 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:29 msgid "Object 3 Y" -msgstr "" +msgstr "Objekt 3 Y" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:33 msgid "Object 4 Size" -msgstr "" +msgstr "Objekt 4 storlek" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:31 msgid "Object 4 X" -msgstr "" +msgstr "Objekt 4 X" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IRPassthrough.cpp:32 msgid "Object 4 Y" -msgstr "" +msgstr "Objekt 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Räckvidd för objekt" @@ -9048,7 +9144,7 @@ msgstr "På" msgid "On Movement" msgstr "Vid rörelse" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9070,7 +9166,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "&Dokumentation online " @@ -9078,7 +9174,7 @@ msgstr "&Dokumentation online " msgid "Only Show Collection" msgstr "Visa bara samling" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9086,7 +9182,7 @@ msgstr "" "Lägg endast till symboler med prefix:\n" "(Lämna tomt för att exportera alla symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9105,7 +9201,7 @@ msgstr "Öppna" msgid "Open &Containing Folder" msgstr "Öppna &innehållande mapp" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "Öppna &användarmapp" @@ -9114,7 +9210,7 @@ msgstr "Öppna &användarmapp" msgid "Open Directory..." msgstr "Öppna mapp..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "Öppna FIFO-logg" @@ -9183,28 +9279,28 @@ msgstr "Omloppsbana" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Origin" -msgstr "" +msgstr "Ursprung" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:422 msgid "Origin Max" -msgstr "" +msgstr "Maxursprung" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Origin Min" -msgstr "" +msgstr "Minursprung" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:420 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Origin Symbol" -msgstr "" +msgstr "Ursprungssymbol" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:428 msgid "Origin and Destination" -msgstr "" +msgstr "Ursprung och destination" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9236,21 +9332,21 @@ msgstr "Utdata" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 msgid "Output Resampling" -msgstr "" +msgstr "Resampling" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:176 msgid "Output Resampling:" -msgstr "" +msgstr "Resampling:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 msgid "Overwritten" msgstr "Överskrivet" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "Spe&la upp inspelning..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9264,11 +9360,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG-komprimeringsnivå" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG-komprimeringsnivå:" @@ -9337,7 +9433,7 @@ msgstr "Patchnamn" #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:70 msgid "Patches" -msgstr "Patcher" +msgstr "Patchar" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:52 msgid "Path:" @@ -9354,9 +9450,9 @@ msgstr "Pausa" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:543 msgid "Pause Branch Watch" -msgstr "" +msgstr "Pausa grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Pausa vid slutet av inspelningar" @@ -9381,6 +9477,9 @@ msgid "" "Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked." msgstr "" +"Pausar spelet när renderingsfönstret inte är i fokus." +"

Om du är osäker kan du lämna detta omarkerat." #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9401,7 +9500,7 @@ msgstr "Topphastigheten för svingande utåt." msgid "Per-Pixel Lighting" msgstr "Ljus per bildpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "Uppdatera systemmjukvaran via internet" @@ -9409,15 +9508,15 @@ msgstr "Uppdatera systemmjukvaran via internet" msgid "Perform System Update" msgstr "Uppdatera systemmjukvaran" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "Prestandasampelfönster (ms)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "Prestandasampelfönster (ms):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "Prestandastatistik" @@ -9435,7 +9534,7 @@ msgstr "Fysiskt adressutrymme" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "Välj ett teckensnitt för felsökning" @@ -9452,7 +9551,7 @@ msgid "Pitch Up" msgstr "Luta uppåt" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Plattform" @@ -9460,7 +9559,7 @@ msgstr "Plattform" msgid "Play" msgstr "Spela" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "Spela / spela in" @@ -9468,11 +9567,11 @@ msgstr "Spela / spela in" msgid "Play Recording" msgstr "Spela upp inspelning" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "Play Set/Power Disc" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Uppspelningsalternativ" @@ -9480,27 +9579,27 @@ msgstr "Uppspelningsalternativ" msgid "Player" msgstr "Spelare" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "Spelare ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "Spelare ett förmåga ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "Spelare ett förmåga två" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "Spelare två" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "Spelare två förmåga ett" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "Spelare två förmåga två" @@ -9525,7 +9624,7 @@ msgstr "" "avstängd, vilket leder till väldigt stor risk för det här problemet att " "inträffa." -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9540,7 +9639,7 @@ msgstr "Peka" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:255 msgid "Point (Passthrough)" -msgstr "" +msgstr "Peka (genomsläpp)" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:65 @@ -9560,7 +9659,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "Portalplatser" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Möjlig desynkronisation upptäcktes: %1 kan ha desynkroniserat under bildruta " @@ -9578,20 +9677,20 @@ msgstr "Efterbehandlingseffekt:" msgid "Post-Processing Shader Configuration" msgstr "Efterbehandlingsshaderkonfiguration" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" -msgstr "" +msgstr "Power Disc 3" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" -msgstr "" +msgstr "Power Disc 2" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "Föredra VS för att expandera punkter/linjer" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "Läs in anpassade texturer i förhand" @@ -9628,7 +9727,7 @@ msgstr "Synkknapptryckning" msgid "Pressure" msgstr "Tryck" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9708,11 +9807,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "Program Counter" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "Förlopp" @@ -9721,12 +9820,15 @@ msgid "" "Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked." msgstr "" +"Ber dig att bekräfta att du vill avsluta emulering när du trycker på Stoppa." +"

Om du är osäker kan du lämna detta markerat." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "Töm cache för spellista" @@ -9750,7 +9852,7 @@ msgstr "Det gick inte att sätta på Quality of Service (QoS)." msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) har satts på." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" "Kvaliteten för DPLII-dekodern. Ljudlatensen ökar ju högre kvaliteten är." @@ -9783,11 +9885,11 @@ msgstr "R-analog" msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO auto-upptäckt" @@ -9812,7 +9914,7 @@ msgstr "Intervall slut:" msgid "Range Start: " msgstr "Intervall start:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "Rank %1" @@ -9820,9 +9922,9 @@ msgstr "Rank %1" msgid "Raw" msgstr "Rå" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" -msgstr "" +msgstr "Rå intern upplösning" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Re&place instruction" @@ -9879,7 +9981,7 @@ msgstr "" msgid "Recenter" msgstr "Återställ" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Spela in" @@ -9891,11 +9993,11 @@ msgstr "Spela in inmatningar" msgid "Recording" msgstr "Inspelning" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Inspelningsalternativ" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "Spelar in..." @@ -9965,7 +10067,7 @@ msgid "Refreshing..." msgstr "Uppdaterar..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9988,7 +10090,7 @@ msgstr "Relativ Inmatning Håll" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "Releases (every few months)" -msgstr "" +msgstr "Släppta versioner (några månaders mellanrum)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -9998,7 +10100,7 @@ msgstr "Påminn mig senare" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Ta bort" @@ -10038,11 +10140,11 @@ msgstr "Byt namn på symbol" msgid "Render Window" msgstr "Renderingsfönster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Rendera till huvudfönstret" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10077,7 +10179,7 @@ msgstr "Återställ" msgid "Reset All" msgstr "Återställ alla" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "Nollställ ignorera panikhanterare" @@ -10109,9 +10211,9 @@ msgstr "Återställ vy" msgid "Reset all saved Wii Remote pairings" msgstr "Nollställ alla sparade Wii-fjärrkontrollparningar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" -msgstr "" +msgstr "Upplösningstyp:" #: Source/Core/DolphinQt/ResourcePackManager.cpp:26 msgid "Resource Pack Manager" @@ -10222,7 +10324,7 @@ msgid "" "used.

If unsure, leave this unchecked." msgstr "" -"Avrundar 2D-vertexer till hela bildpunkter och avrundar vystorleken till " +"Avrundar 2D-hörnpunkter till hela bildpunkter och avrundar vystorleken till " "heltal.

Åtgärdar grafiska problem i vissa spel vid högre interna " "upplösningar. Inställningen har ingen effekt när ursprunglig intern " "upplösning används.

Om du är osäker, lämna detta " @@ -10293,19 +10395,19 @@ msgstr "Ryssland" msgid "SD Card" msgstr "SD-kort" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "Filstorlek för SD-kort:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD-kortsavbildning (*.raw);;Alla filer (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD-kortssökväg:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD-kortsinställningar" @@ -10313,7 +10415,7 @@ msgstr "SD-kortsinställningar" msgid "SD Root:" msgstr "SD-rot:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD-synkmapp:" @@ -10348,11 +10450,11 @@ msgstr "SSL-kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "&Spara kod" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "Spa&ra snabbsparning" @@ -10376,19 +10478,19 @@ msgstr "Spara alla" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:289 msgid "Save Branch Watch &As..." -msgstr "" +msgstr "Spara grenbevakning &som..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 msgid "Save Branch Watch snapshot" -msgstr "" +msgstr "Spara grenbevakningsögonblicksbild" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "Sparfilsexportering" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "Spara FIFO-logg" @@ -10406,11 +10508,11 @@ msgstr "Sparfil" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Sparfiler (*.sav);;Alla filer (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "Sparfilsimportering" @@ -10422,7 +10524,7 @@ msgstr "Spara äldsta snabbsparning" msgid "Save Preset" msgstr "Spara förinställningar" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "Spara inspelning som" @@ -10472,23 +10574,23 @@ msgstr "Spara snabbsparningsplats 8" msgid "Save State Slot 9" msgstr "Spara snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "Spara snabbsparning till fil" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "Spara snabbsparning på äldsta platsen" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Snabbspara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "Spara snabbsparning på plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "Spara symbol-map so&m..." @@ -10508,11 +10610,11 @@ msgstr "Spara som förinställningar..." msgid "Save as..." msgstr "Spara som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "Spara kombinerad utdatafil som" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10526,11 +10628,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Spara i samma katalog som ROM-filen" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "Spara map-fil" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "Spara signaturfil" @@ -10538,11 +10640,11 @@ msgstr "Spara signaturfil" msgid "Save to Selected Slot" msgstr "Spara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "Spara på plats %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Spara..." @@ -10574,7 +10676,7 @@ msgstr "Skärmdump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Sök" @@ -10603,7 +10705,7 @@ msgstr "" "Sökning är inte möjligt i virtuellt adressutrymme just nu. Kör spelet ett " "kort tag och prova igen." -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Sök efter en instruktion" @@ -10611,7 +10713,7 @@ msgstr "Sök efter en instruktion" msgid "Search games..." msgstr "Sök efter spel..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "Sök efter en instruktion" @@ -10650,17 +10752,19 @@ msgid "" "Select Branch Watch snapshot auto-save file (for user folder location, " "cancel)" msgstr "" +"Välj plats att autospara grenbevakningsögonblicksbild på (eller tryck Avbryt " +"för användarmappen)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Välj dump-sökväg:" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "Välj exporteringskatalog" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "Välj figurfil" @@ -10700,7 +10804,7 @@ msgstr "Välj Skylandersamling" msgid "Select Skylander File" msgstr "Välj Skylanderfil" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "Välj plats %1 - %2" @@ -10708,7 +10812,7 @@ msgstr "Välj plats %1 - %2" msgid "Select State" msgstr "Välj snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Välj snabbsparningsplats" @@ -10775,7 +10879,7 @@ msgstr "Välj en mapp" msgid "Select a File" msgstr "Välj en fil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "Välj mapp att synkronisera med SD-kortsfilen" @@ -10783,7 +10887,7 @@ msgstr "Välj mapp att synkronisera med SD-kortsfilen" msgid "Select a Game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Välj en SD-kortsavbildning" @@ -10795,7 +10899,7 @@ msgstr "Välj en fil" msgid "Select a game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "Välj en titel att installera till NAND-minnet" @@ -10803,7 +10907,7 @@ msgstr "Välj en titel att installera till NAND-minnet" msgid "Select e-Reader Cards" msgstr "Välj e-Readerkort" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "Välj RSO-modulens adress:" @@ -10820,7 +10924,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "Välj nyckelfil (OTP/SEEPROM-kopia)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Välj sparningsfilen" @@ -10844,7 +10948,7 @@ msgstr "Den valda kontrollprofilen finns inte" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "Det valda spelet finns inte i spellistan!" @@ -10872,7 +10976,7 @@ msgstr "" "Väljer en hårdvaruadapter att använda.

Om du är " "osäker kan du välja den första." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10909,7 +11013,7 @@ msgstr "" "
Passiv är en annan typ av 3D som används av vissa TV-apparater." "

Om du är osäker kan du välja Av." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10931,7 +11035,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10953,7 +11057,7 @@ msgstr "" msgid "Send" msgstr "Skicka" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Position för Sensor Bar:" @@ -11022,7 +11126,7 @@ msgstr "Ställ in slutadress för symbol" msgid "Set symbol size (%1):" msgstr "Ange storlek för symbol (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -11031,7 +11135,7 @@ msgstr "" "Sätter Wii-bildläget till 60Hz (480i) istället för 50Hz (576i) för PAL-spel. " "Vissa spel stöder inte detta." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Ställer in Wii-systemspråk." @@ -11043,7 +11147,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -11067,7 +11171,7 @@ msgstr "" "mappningarna i virtuellt adressutrymme. Detta fungerar för de allra flesta " "spel." -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11081,7 +11185,7 @@ msgstr "SetupWiiMemory: Kan inte skapa filen setting.txt" msgid "Severity" msgstr "Allvarlighet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Shaderkompilering" @@ -11093,7 +11197,7 @@ msgstr "Skaka" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:140 msgid "Sharp Bilinear" -msgstr "" +msgstr "Skarp bilinjär" #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:232 msgid "Shinkansen" @@ -11103,16 +11207,16 @@ msgstr "Shinkansen" msgid "Shinkansen Controller" msgstr "Shinkansenkontroll" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "Visa %-hastighet" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "Visa &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Visa &verktygsfält" @@ -11120,11 +11224,11 @@ msgstr "Visa &verktygsfält" msgid "Show Active Title in Window Title" msgstr "Visa aktiv titel i fönstertitel" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "Visa alla" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Visa Australien" @@ -11137,7 +11241,7 @@ msgstr "Visa nuvarande spel på Discord" msgid "Show Disabled Codes First" msgstr "Visa avstängda koder först" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "Visa ELF/DOL" @@ -11146,27 +11250,27 @@ msgstr "Visa ELF/DOL" msgid "Show Enabled Codes First" msgstr "Visa påslagna koder först" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "Visa bildfrekvens" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Visa bildruteräknare" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "Visa bildrutetider" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Visa Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "Visa GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Visa Tyskland" @@ -11178,23 +11282,23 @@ msgstr "Visa överlägg för golfläge" msgid "Show Infinity Base" msgstr "Visa Infinitybas" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Visa indata" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "Visa Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "Visa JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Visa Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Visa laggräknare" @@ -11202,19 +11306,19 @@ msgstr "Visa laggräknare" msgid "Show Language:" msgstr "Visa språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Visa logg&konfiguration" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "Visa nätspelsmeddelanden" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "Visa nätspelsping" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Visa Nederländerna" @@ -11222,7 +11326,7 @@ msgstr "Visa Nederländerna" msgid "Show On-Screen Display Messages" msgstr "Visa meddelanden på skärmen" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "Visa PAL" @@ -11231,27 +11335,27 @@ msgstr "Visa PAL" msgid "Show PC" msgstr "Visa PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "Visa prestandagrafer" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Visa plattformar" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" -msgstr "" +msgstr "Visa projektionsstatistik" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Visa regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "Visa ominspelningsräknare" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Visa Ryssland" @@ -11259,51 +11363,51 @@ msgstr "Visa Ryssland" msgid "Show Skylanders Portal" msgstr "Visa Skylandersportal" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "Visa Spanien" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "Visa hastighetsfärger" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "Visa statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Visa systemklocka" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Visa Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Visa USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Visa okänd" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "Visa vblank-tider" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "Visa VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "Visa WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Visa Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Visa världen" @@ -11316,7 +11420,7 @@ msgid "Show in Code" msgstr "Visa i kod" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Visa i minne" @@ -11344,7 +11448,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11353,7 +11457,7 @@ msgstr "" "under nätspel.

Om du är osäker kan du lämna detta " "omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11392,28 +11496,28 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
Om du är osäker kan du lämna " "detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11431,13 +11535,15 @@ msgstr "" "Visar spelarens maximala ping under nätspel.

Om du " "är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" +"Visar diverse projektionsstatistik.

Om du är osäker " +"kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11461,7 +11567,7 @@ msgstr "Tryck för liggande läge" msgid "Sideways Wii Remote" msgstr "Liggande Wii-fjärrkontroll" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "Signaturdatabas" @@ -11485,7 +11591,7 @@ msgid "Signed Integer" msgstr "Signed int" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Förenklad kinesiska" @@ -11502,7 +11608,7 @@ msgstr "Sex axlar" msgid "Size" msgstr "Storlek" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11514,7 +11620,7 @@ msgstr "" msgid "Skip" msgstr "Hoppa över" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "Hoppa över att rita" @@ -11570,7 +11676,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;Alla filer (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -11646,7 +11752,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Sortera alfabetiskt" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Ljud:" @@ -11660,7 +11766,7 @@ msgstr "Spanien" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanska" @@ -11668,11 +11774,11 @@ msgstr "Spanska" msgid "Speaker Pan" msgstr "Högtalarpanorering" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Högtalarvolym:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "Specialiserad (standard)" @@ -11680,7 +11786,7 @@ msgstr "Specialiserad (standard)" msgid "Specific" msgstr "Specifik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11731,20 +11837,20 @@ msgstr "Standardkontroll" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "Starta &nätspel..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:330 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:552 msgid "Start Branch Watch" -msgstr "" +msgstr "Starta grenbevakning" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "Starta ny fusksökning" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "Starta &inspelning" @@ -11752,7 +11858,7 @@ msgstr "Starta &inspelning" msgid "Start Recording" msgstr "Starta inspelning" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "Starta i helskärm" @@ -11764,7 +11870,7 @@ msgstr "Starta med Riivolution-moddar" msgid "Start with Riivolution Patches..." msgstr "Starta med Riivolution-moddar..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "Startade spelet" @@ -11824,7 +11930,7 @@ msgstr "Stegning lyckades!" msgid "Stepping" msgstr "Stega" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "Stereo" @@ -11853,12 +11959,12 @@ msgid "Stick" msgstr "Spak" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Stoppa" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "Avbryt uppspelning/inspelning" @@ -11904,7 +12010,7 @@ msgstr "" "texturer)

Om du är osäker kan du lämna detta " "markerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Sträck ut till fönster" @@ -11924,7 +12030,7 @@ msgstr "Slagskena" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Stil" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -11943,8 +12049,8 @@ msgstr "Penna" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "Klar" @@ -11971,7 +12077,7 @@ msgstr "Exporterade %n av %1 sparfil(er)." msgid "Successfully exported save files" msgstr "Exporteringen av sparfiler lyckades" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "Certifikaten har extraherats från NAND-minnet" @@ -11983,12 +12089,12 @@ msgstr "Extraheringen av filen lyckades." msgid "Successfully extracted system data." msgstr "Extraheringen av systemdata lyckades." -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "Importeringen av sparfilen lyckades." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "Titeln har installerats i NAND-minnet." @@ -12011,12 +12117,12 @@ msgstr "Support" msgid "Supported file formats" msgstr "Filformat som stöds" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "Stöder SD och SDHC. Standardstorleken är 128 MB." #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "Surround" @@ -12077,7 +12183,7 @@ msgstr "Symbolnamn" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Symboler" @@ -12106,7 +12212,7 @@ msgstr "" "slumpartade frysningar när läget \"Dubbla kärnor\" används. (PÅ = " "kompatibel, AV = snabb)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12127,11 +12233,11 @@ msgid "Synchronizing save data..." msgstr "Synkroniserar spardata..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS-inmatning" @@ -12144,7 +12250,7 @@ msgstr "TAS-verktyg" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Etiketter" @@ -12162,7 +12268,7 @@ msgstr "Svans" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Ta en skärmdump" @@ -12175,6 +12281,8 @@ msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" msgstr "" +"Målvärdet skrevs över av den nuvarande instruktionen.\n" +"Instruktioner exekverade: %1" #. 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 @@ -12190,7 +12298,7 @@ msgstr "Test" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:617 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:780 msgid "Text file (*.txt);;All Files (*)" -msgstr "" +msgstr "Textfil (*.txt);;Alla filer (*)" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:63 @@ -12201,7 +12309,7 @@ msgstr "Texturcache" msgid "Texture Cache Accuracy" msgstr "Texturcachenoggrannhet" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "Texturdumpning" @@ -12213,7 +12321,7 @@ msgstr "Texturfiltrering" msgid "Texture Filtering:" msgstr "Texturfiltrering:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Överlägg för texturformat" @@ -12257,7 +12365,7 @@ msgstr "IPL-filen är inte en känd korrekt version. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Masterpiecepartitionerna saknas." -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12266,7 +12374,7 @@ msgstr "" "säkerhetskopia av ditt nuvarande NAND-minne och sedan börjar om med ett " "nyskapat NAND-minne." -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND-minnet har reparerats." @@ -12282,9 +12390,9 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175 msgid "The amount of money this Skylander has. Between 0 and 65000" -msgstr "" +msgstr "Mängden pengar den här Skylandern har. Mellan 0 och 65000" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12331,6 +12439,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" +"Standardvärdet \"%1\" fungerar med lokal tapserver och newserv. Du kan också " +"ange en nätverksplats (adress:port) för att ansluta till en tapserver på " +"internet." #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12523,6 +12634,8 @@ msgid "" "The hero level of this Skylander. Only seen in Skylanders: Spyro's " "Adventures. Between 0 and 100" msgstr "" +"Hjältesnivån för den här Skylandern. Används bara i Skylanders: Spyro's " +"Adventures. Mellan 0 och 100" #: Source/Core/Core/NetPlayClient.cpp:184 msgid "" @@ -12561,7 +12674,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178 msgid "The nickname for this Skylander. Limited to 15 characters" -msgstr "" +msgstr "Smeknamnet för den här Skylandern. Max 15 tecken" #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:159 msgid "The patches in %1 are not for the selected game or game revision." @@ -12637,11 +12750,13 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Den angivna filen \"{0}\" finns inte" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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 "" +"Den systemreserverade delen av NAND-minnet innehåller %1 block (%2 KiB) " +"data. Maxgränsen är %3 block (%4 KiB)." #: Source/Core/DolphinQt/GCMemcardManager.cpp:544 msgid "The target memory card already contains a file \"%1\"." @@ -12702,11 +12817,13 @@ msgstr "Uppdateringspartitionen saknas." msgid "The update partition is not at its normal position." msgstr "Uppdateringspartitionen är inte på sin normala position." -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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 "" +"Den användartillgängliga delen av NAND-minnet innehåller %1 block (%2 KiB) " +"data. Maxgränsen är %3 block (%4 KiB)." #: Source/Core/DiscIO/VolumeVerifier.cpp:643 msgid "The {0} partition does not have a valid file system." @@ -12726,7 +12843,7 @@ msgstr "{0}-partitionen ligger inte på en giltig position." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Tema" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -12745,7 +12862,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:582 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:593 msgid "There is nothing to save!" -msgstr "" +msgstr "Det finns inget att spara!" #: Source/Core/Core/State.cpp:1050 msgid "There is nothing to undo!" @@ -12900,7 +13017,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:38 msgid "This feature is disabled in hardcore mode." -msgstr "" +msgstr "Den här funktionen är inte tillgänglig i hardcoreläget." #: Source/Core/DiscIO/NANDImporter.cpp:116 msgid "This file does not contain a valid Wii filesystem." @@ -12957,7 +13074,7 @@ msgstr "Detta är en korrekt kopia." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:304 msgid "This only applies to the initial boot of the emulated software." -msgstr "" +msgstr "Detta gäller bara när den emulerade mjukvaran först startar." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:302 msgid "This session requires a password:" @@ -13095,7 +13212,7 @@ msgstr "Timeout" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Titel" @@ -13104,12 +13221,12 @@ msgid "To" msgstr "till" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Till:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Helskärm" @@ -13198,7 +13315,7 @@ msgstr "" msgid "Toolbar" msgstr "Verktygsfält" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Ovan" @@ -13249,7 +13366,7 @@ msgid "Toy code:" msgstr "Leksakskod:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Traditionell kinesiska" @@ -13269,8 +13386,8 @@ msgstr "" msgid "Trap Team" msgstr "Trap Team" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "Traverseringsfel" @@ -13288,7 +13405,7 @@ msgid "" "cases. Defaults to True" msgstr "" "Försöker översätta grenar i förtid, vilket förbättrar prestanda i de flesta " -"fall. Förvalet är Sant" +"fall. Förvalet är True" #: Source/Core/Core/HW/EXI/EXI_Device.h:101 msgid "Triforce AM Baseboard" @@ -13306,7 +13423,7 @@ msgstr "Avtryckare" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:415 msgid "Trophy" -msgstr "" +msgstr "Trofé" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 @@ -13353,7 +13470,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "Ogiltig USB-enhet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13364,7 +13481,7 @@ msgstr "" "kraftfull hårdvara.

Om du är osäker, välj det här " "läget." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13376,7 +13493,7 @@ msgstr "" "om du upplever pauser med hybridübershaders och du har en väldigt kraftfull " "grafikprocessor.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13390,7 +13507,7 @@ msgstr "" "prestandapåverkan, men resultaten varierar beroende på grafikdrivrutinernas " "beteende." -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "Kunde inte upptäcka RSO-modul automatiskt" @@ -13404,7 +13521,7 @@ msgstr "Kunde inte skapa en kopia av uppdateraren." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:98 msgid "Unable to modify Skylander!" -msgstr "" +msgstr "Det gick inte att modifiera Skylandern!" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:706 msgid "Unable to open file." @@ -13461,11 +13578,11 @@ msgstr "Okomprimerade GC/Wii-skivavbildningar (*.iso *.gcm)" msgid "Undead" msgstr "Odöd" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Ångra inläsning av snabbsparning" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Ångra snabbsparning" @@ -13486,7 +13603,7 @@ msgstr "" "av denna titel tas bort från NAND-minnet utan att dess spardata tas bort. " "Vill du fortsätta?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "USA" @@ -13584,7 +13701,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Okänd(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Okänd(%1).bin" @@ -13600,9 +13717,9 @@ msgstr "Ladda ur ROM" msgid "Unlock Cursor" msgstr "Lås upp muspekare" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" -msgstr "" +msgstr "Låstes upp %1" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13643,7 +13760,7 @@ msgid "Up" msgstr "Upp" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Uppdatera" @@ -13716,7 +13833,7 @@ msgstr "Använd all Wii-spardata" msgid "Use Built-In Database of Game Names" msgstr "Använd inbyggd databas för spelnamn" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "Använd förlustfritt kodek (FFV1)" @@ -13724,7 +13841,7 @@ msgstr "Använd förlustfritt kodek (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "Använd muskontrollerad pekning" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "Använd PAL60-läge (EuRGB60)" @@ -13737,8 +13854,10 @@ msgid "" "Use RetroAchievements rich presence in your Discord status.

Show " "Current Game on Discord must be enabled." msgstr "" +"Använder RetroAchivements rika närvaro i din Discordstatus.

\"Visa " +"nuvarande spel på Discord\" måste vara aktiverat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13814,6 +13933,9 @@ msgid "" "column.

If unsure, leave this checked." msgstr "" +"Använder Dolphins databas av ordentligt formaterade namn i spellistans " +"titelkolumn.

Om du är osäker kan du lämna detta " +"markerat." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -13827,7 +13949,7 @@ msgstr "" "grafikprocessor.

Om du är osäker kan du lämna detta " "markerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13837,7 +13959,7 @@ msgstr "" "ett renderingsfönster att skapas istället.

Om du är " "osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
I övriga fall kan du lämna detta " "omarkerat om du är osäker." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -14131,7 +14253,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varning" @@ -14141,6 +14263,8 @@ msgid "" "Warning: A GCI folder override path is currently configured for this slot. " "Adjusting the GCI path here will have no effect." msgstr "" +"Varning: En åsidosättning för GCI-mappssökvägen är konfigurerad för den här " +"minneskortsplatsen. Att ändra GCI-sökvägen här kommer inte ha någon effekt." #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:57 msgid "" @@ -14253,7 +14377,7 @@ msgstr "Västerländsk (Windows-1252)" msgid "Whammy" msgstr "Svajarm" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14265,7 +14389,7 @@ msgstr "" "mipmaps' är aktiverat i Förbättringar.

Om du är " "osäker kan du lämna detta markerat." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14278,9 +14402,9 @@ msgstr "" "

Om du är osäker kan du lämna detta markerat." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" -msgstr "Enheter som används med USB-genomsläppning" +msgstr "Enheter godkända för USB-genomsläpp" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:153 msgid "Widescreen Hack" @@ -14328,7 +14452,7 @@ msgstr "Wii-fjärrkontrollknappar" msgid "Wii Remote Gyroscope" msgstr "Wii-fjärrkontrollgyroskop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii-fjärrkontrollinställningar" @@ -14356,7 +14480,7 @@ msgstr "Wii och Wii-fjärrkontroller" msgid "Wii data is not public yet" msgstr "Wii-data är inte offentlig än" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-sparfiler (*.bin);;Alla filer (*)" @@ -14364,9 +14488,9 @@ msgstr "Wii-sparfiler (*.bin);;Alla filer (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools-signaturmegafil" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" -msgstr "" +msgstr "Fönsterupplösning" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 @@ -14395,9 +14519,9 @@ msgstr "Världen" msgid "Write" msgstr "Skriv" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Skriv JIT-blockloggdump" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. @@ -14444,13 +14568,13 @@ msgstr "Fel region" msgid "Wrong revision" msgstr "Fel revision" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." -msgstr "" +msgstr "Skrev till \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." -msgstr "" +msgstr "Skrev till \"{0}\"." #. i18n: Refers to a 3D axis (used when mapping motion controls) #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:123 @@ -14499,7 +14623,7 @@ msgstr "Ja" msgid "Yes to &All" msgstr "Ja till &alla" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14508,7 +14632,7 @@ msgstr "" "Du håller på att konvertera innehållet av filen %2 till mappen %1. Allt som " "finns i mappen just nu kommer raderas. Är du säker på att du vill fortsätta?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14652,11 +14776,13 @@ msgstr "" "Vill du avbryta nu för att åtgärda problemet?\n" "Om du väljer \"Nej\" kan det uppstå problem med ljudet." -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." msgstr "" +"NAND-minnet innehåller mer data än vad som är tillåtet. Wii-mjukvara kanske " +"beter sig inkorrekt eller inte låter dig spara." #. i18n: Refers to a 3D axis (used when mapping motion controls) #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:135 @@ -14672,7 +14798,7 @@ msgstr "Zero 3-kod stöds inte" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:943 msgid "Zero candidates remaining." -msgstr "" +msgstr "Noll kandidater kvar." #: Source/Core/Core/ActionReplay.cpp:961 msgid "Zero code unknown to Dolphin: {0:08x}" @@ -14874,6 +15000,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024 Dolphin-teamet. ”GameCube” och ”Wii” är varumärken som tillhör " +"Nintendo. Dolphin är inte associerat med Nintendo på något sätt." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/tr.po b/Languages/po/tr.po index 6bbccc1784..af368015cf 100644 --- a/Languages/po/tr.po +++ b/Languages/po/tr.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the Dolphin Emulator package. # # Translators: +# Ahmet Emin, 2024 # Ali Ozderya , 2019 # Bahadır Usta , 2017 # Bahadır Usta , 2017 @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: zenkyomu, 2024\n" +"Last-Translator: Ahmet Emin, 2024\n" "Language-Team: Turkish (http://app.transifex.com/delroth/dolphin-emu/" "language/tr/)\n" "Language: tr\n" @@ -100,7 +101,7 @@ msgstr "" "%1\n" "partine katılmak istiyor." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -154,7 +155,7 @@ msgstr "%1 (yavaş)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -189,7 +190,7 @@ msgstr "%1, sisteminde bu özellik desteklemiyor." msgid "%1 doesn't support this feature." msgstr "%1 bu özelliği desteklemiyor." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -199,11 +200,11 @@ msgstr "" "%2 nesne\n" "Mevcut Kare: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 katıldı" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 ayrıldı" @@ -211,11 +212,11 @@ msgstr "%1 ayrıldı" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 %4/%5 puan değerinde %2/%3 başarıyı açtı" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 geçerli bir ROM değil" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "Oynama sırası %1'de" @@ -227,8 +228,8 @@ msgstr "%1 %2 oynuyor" msgid "%1 memory ranges" msgstr "%1 bellek aralığı" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -245,7 +246,7 @@ msgstr "%1 oturum bulundu" msgid "%1 sessions found" msgstr "%1 oturum bulundu" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -282,7 +283,7 @@ msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -353,11 +354,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "&Hakkında" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Bellek Kesme Noktası Ekle" @@ -374,11 +375,11 @@ msgstr "&Fonksiyon Ekle" msgid "&Add..." msgstr "&Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "&Birleştirici" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "&Ses Ayarları" @@ -394,11 +395,11 @@ msgstr "&Çerçevesiz pencere" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "&Kesme Noktaları" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "&Hata İzleyici" @@ -406,15 +407,15 @@ msgstr "&Hata İzleyici" msgid "&Cancel" msgstr "&İptal" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "&Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "&Güncellemeleri Denetle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "&Sembolleri Temizle" @@ -422,7 +423,7 @@ msgstr "&Sembolleri Temizle" msgid "&Clone..." msgstr "&Çoğalt..." -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "&Kod" @@ -430,7 +431,7 @@ msgstr "&Kod" msgid "&Connected" msgstr "&Bağlandı" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "&Denetleyici Ayarları" @@ -453,13 +454,13 @@ msgstr "&Sil" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "&Gözlemciyi Kaldır" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "&Gözlemcileri Kaldır" @@ -473,11 +474,11 @@ msgstr "&Kodu Düzenle..." msgid "&Edit..." msgstr "&Düzenle..." -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "&Diski Çıkar" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "&Emülasyon" @@ -498,40 +499,40 @@ msgid "&Export as .gci..." msgstr "&.gci Olarak Dışarı Aktar..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "&Dosya" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "&Yazı Tipi..." -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "&Kare İlerletme" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "&Serbest Bakış Ayarları" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "&Sembolleri Şuradan Getir" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "&GitHub Repo'su" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "&Grafik Ayarları" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "&Yardım" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "&Kısayol Ayarları" @@ -551,7 +552,7 @@ msgstr "&Durumu İçe Aktar..." msgid "&Import..." msgstr "&İçeri aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "&Infinity Base" @@ -563,7 +564,7 @@ msgstr "&BLR yerleştir" msgid "&Interframe Blending" msgstr "&Karelerarası Harmanlama" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -575,11 +576,11 @@ msgstr "&Dil:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "Durumu &Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "&Sembol Haritasını Yükle" @@ -589,11 +590,11 @@ msgstr "&Mevcut adrese dosya yükle" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "&Gözlemcileri Kilitle" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "&Gereçleri Yerinde Kilitle" @@ -601,11 +602,11 @@ msgstr "&Gereçleri Yerinde Kilitle" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "&Hafıza" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "&Film" @@ -613,7 +614,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Sustur" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "&Ağ" @@ -622,23 +623,23 @@ msgid "&No" msgstr "&Hayır" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "&Aç..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "&Seçenekler" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "&HLE Fonksiyonlarını Yamala" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "&Duraklat" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "&Oynat" @@ -646,7 +647,7 @@ msgstr "&Oynat" msgid "&Properties" msgstr "&Özellikler" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "&Salt-Okunur Mod" @@ -654,7 +655,7 @@ msgstr "&Salt-Okunur Mod" msgid "&Refresh List" msgstr "&Listeyi Yenile" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "&Kayıtlar" @@ -672,11 +673,11 @@ msgid "&Rename symbol" msgstr "&Sembolü yeniden adlandır" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "&Sıfırla" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "&Kaynak Paketi Yöneticisi" @@ -684,7 +685,7 @@ msgstr "&Kaynak Paketi Yöneticisi" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "&Sembol Haritasını Kaydet" @@ -692,7 +693,7 @@ msgstr "&Sembol Haritasını Kaydet" msgid "&Scan e-Reader Card(s)..." msgstr "&e-Okuyucu Kart(lar)ı Tara..." -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "&Skylanders Portal" @@ -700,7 +701,7 @@ msgstr "&Skylanders Portal" msgid "&Speed Limit:" msgstr "&Hız Limiti:" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "&Durdur" @@ -708,7 +709,7 @@ msgstr "&Durdur" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "&İş parçacıkları" @@ -716,7 +717,7 @@ msgstr "&İş parçacıkları" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "&Araçlar" @@ -726,21 +727,21 @@ msgstr "&ROM'u Boşalt" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "&Gözlemcilerin Kilidini Aç" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 msgid "&View" msgstr "&Görünüm" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "&İzle" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "&Website" @@ -752,11 +753,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Evet" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "'%1' bulunamadı, sembol adları oluşturulmadı" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' bulunamadı, yerine yaygın fonksiyonlar taranıyor" @@ -804,7 +805,7 @@ msgstr "- Çıkar" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--Bilinmeyen--" @@ -870,7 +871,7 @@ msgstr "16-bit İmzalı Tamsayı" msgid "16-bit Unsigned Integer" msgstr "16-bit İmzasız Tamsayı" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -954,7 +955,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 blok)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1056,7 +1057,7 @@ msgid "Disabled in Hardcore Mode." msgstr "" "Zorlayıcı Modunda Devre Dışı Bırakıldı." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" "Emin değilseniz, bunu işaretlemeyin." @@ -1195,7 +1196,7 @@ msgstr "" "Netplay'deki Wii Remote desteği deneyseldir ve düzgün çalışmayabilir.\n" "Kullanım riski sana ait.\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR Kodu" @@ -1237,8 +1238,8 @@ msgstr "Doğruluk:" msgid "Achievement Settings" msgstr "Başarı Ayarları" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "Başarılar" @@ -1333,7 +1334,7 @@ msgstr "NetPlay Sohbeti Etkinleştir" msgid "Active" msgstr "Aktif" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "Etkin Infinity Figürleri:" @@ -1345,7 +1346,7 @@ msgstr "Etkin iş parçacığı sırası" msgid "Active threads" msgstr "Etkin iş parçacıkları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "GPU" @@ -1353,7 +1354,7 @@ msgstr "GPU" msgid "Adapter Detected" msgstr "GPU Algılandı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "GPU:" @@ -1410,7 +1411,7 @@ msgstr "Gözlemci'ye ekle" #: 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:329 msgid "Add..." msgstr "Ekle..." @@ -1424,7 +1425,7 @@ msgstr "Ekle..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "Adres" @@ -1644,7 +1645,7 @@ msgstr "Uyumsuz Bölge Ayarlarına İzin Ver" msgid "Allow Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasına İzin Ver" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "SD Karta Yazmaya İzin Ver" @@ -1686,7 +1687,7 @@ msgstr "Takılı bir disk bekleniyordu ancak bulunamadı." msgid "Anaglyph" msgstr "Anaglif" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "Analiz et" @@ -1712,15 +1713,15 @@ msgstr "Kenar Yumuşatma:" msgid "Any Region" msgstr "Herhangi Bir Bölge" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "Şuraya imza ekle" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "&Mevcut İmza Dosyasına Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "İmza Dosyasını &Uygula..." @@ -1741,7 +1742,7 @@ msgstr "Apploader Tarihi:" msgid "Apply" msgstr "Uygula" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "İmza dosyasını uygula" @@ -1773,16 +1774,16 @@ msgstr "Emin misiniz?" msgid "Area Sampling" msgstr "Alan Örnekleme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "En-Boy Oranı" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "En-Boy Oranı:" @@ -1823,11 +1824,11 @@ msgstr "MotionPlus'u Tak" msgid "Audio" msgstr "Ses" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "Ses Arka Ucu:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "Ses Esnetme Ayarları" @@ -1843,7 +1844,7 @@ msgstr "Yazar" msgid "Authors" msgstr "Yazarlar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "Otomatik" @@ -1868,7 +1869,7 @@ msgstr "" "\n" "Lütfen belirli bir dahili çözünürlük seçin." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "Pencere Boyutunu Otomatik Ayarla" @@ -1876,15 +1877,15 @@ msgstr "Pencere Boyutunu Otomatik Ayarla" msgid "Auto-Hide" msgstr "Otomatik Gizle" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "RSO modüllerini otomatik olarak algıla?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "Otomatik Olarak Klasörle Senkronize Et" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1938,19 +1939,19 @@ msgstr "BP kaydı" msgid "Back Chain" msgstr "Arka Zincir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "Arka uç" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "Arka Uç Çoklu İş Parçacığı" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "Arka Uç Ayarları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "Arka Uç:" @@ -1993,7 +1994,7 @@ msgstr "Kötü değer sağlandı." #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "Afiş" @@ -2017,7 +2018,7 @@ msgstr "Baz Adres" msgid "Base priority" msgstr "Baz önceliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "Temel" @@ -2069,11 +2070,11 @@ msgstr "Binary SSL (oku)" msgid "Binary SSL (write)" msgstr "Binary SSL (yaz)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "Bit hızı (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2083,7 +2084,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "Blok Boyutu" @@ -2121,7 +2122,7 @@ msgstr "" "Bluetooth geçiş modu etkin, ancak Dolphin libusb olmadan derlendi. Geçiş " "modu kullanılamaz." -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "Önyüklendiğinde Duraklat" @@ -2133,11 +2134,11 @@ msgstr "BootMii NAND yedekleme dosyası (*.bin);;Tüm Dosyalar (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii anahtarları dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "Çerçevesiz Tam Ekran" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "Alt" @@ -2314,20 +2315,20 @@ msgstr "Genişbant Adaptör Hatası" msgid "Broadband Adapter MAC Address" msgstr "Genişbant Adaptör MAC Adresi" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "&NetPlay Oturumlarına Göz Atın..." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "Arabellek Boyutu:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "Arabellek boyutu %1 olarak değiştirildi." #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "Arabellek:" @@ -2379,7 +2380,7 @@ msgstr "%1" msgid "C Stick" msgstr "C Çubuğu" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "&İmzalı Dosya Oluştur..." @@ -2403,7 +2404,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "Önbellekli Yorumlayıcı (yavaş)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2492,11 +2493,11 @@ msgstr "Bir oyun hâlâ çalışırken bir NetPlay Oturumu başlatılamaz!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "İptal" @@ -2582,7 +2583,7 @@ msgstr "Ortala ve Kalibre Et" msgid "Change &Disc" msgstr "&Diski Değiştir" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "&Diski Değiştir..." @@ -2604,7 +2605,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2634,7 +2635,7 @@ msgstr "" "etrafında döndürür. Yanal hareket yoktur, sadece döndürme vardır ve " "kameranın başlangıç noktasına kadar yakınlaştırabilirsiniz." -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "Değiştirilen hileler oyunu yeniden başlattığınızda etkili olacaktır." @@ -2642,7 +2643,7 @@ msgstr "Değiştirilen hileler oyunu yeniden başlattığınızda etkili olacakt msgid "Channel Partition (%1)" msgstr "Kanal Bölümü (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "Girilen karakter geçersiz!" @@ -2654,7 +2655,7 @@ msgstr "Sohbet" msgid "Cheat Code Editor" msgstr "Hile Kodu Düzenleyici" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "Hile Arama" @@ -2662,7 +2663,7 @@ msgstr "Hile Arama" msgid "Cheats Manager" msgstr "Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "NAND'ı Kontrol Et..." @@ -2702,11 +2703,11 @@ msgstr "Açmak için bir dosya seçin" msgid "Choose a file to open or create" msgstr "Açmak veya oluşturmak için bir dosya seçin" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "Öncelikli girdi dosyasını seçin" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "İkincil girdi dosyasını seçin" @@ -2737,7 +2738,7 @@ msgstr "Klasik Denetleyici" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "Temizle" @@ -2745,7 +2746,7 @@ msgstr "Temizle" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "Önbelleği Temizle" @@ -2766,7 +2767,7 @@ msgstr "Klonla ve Kodu &Düzenle..." msgid "Close" msgstr "Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "Ya&pılandırma" @@ -2810,7 +2811,7 @@ msgstr "Renk Alanı" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "İki İmza Dosyasını &Birleştir..." @@ -2843,7 +2844,7 @@ msgstr "" "rağmen, oyunun Wii U eShop sürümüne kıyasla bunun iyi bir döküm olması " "mümkün. Dolphin bunu doğrulayamaz." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "Başlamadan önce gölgelendiricileri derle" @@ -2853,7 +2854,7 @@ msgstr "Gölgelendiriciler Derleniyor" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "Sıkıştırma" @@ -2968,7 +2969,7 @@ msgstr "Yapılandır" msgid "Configure Controller" msgstr "Denetleyiciyi Yapılandır" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin'i Yapılandır" @@ -2992,7 +2993,7 @@ msgstr "Çıktıları Yapılandır" msgid "Confirm" msgstr "Onayla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "Arka uç değişikliğini onayla" @@ -3000,7 +3001,7 @@ msgstr "Arka uç değişikliğini onayla" msgid "Confirm on Stop" msgstr "Durdurmayı Onayla" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3011,15 +3012,15 @@ msgstr "Onay" msgid "Connect" msgstr "Bağlan" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "Balance Board Bağla" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "USB Klavye Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "Wii Remote'u Bağla: %1" @@ -3039,7 +3040,7 @@ msgstr "3. Wii Remote'u Bağla" msgid "Connect Wii Remote 4" msgstr "4. Wii Remote'u Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "Wii Remote Bağla" @@ -3192,8 +3193,8 @@ msgstr "Yakınsama" msgid "Convergence:" msgstr "Yakınsama:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "Dönüşüm başarısız oldu." @@ -3201,9 +3202,9 @@ msgstr "Dönüşüm başarısız oldu." msgid "Convert" msgstr "Dönüştür" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "Dosyayı Klasöre Şimdi Dönüştür" @@ -3211,9 +3212,9 @@ msgstr "Dosyayı Klasöre Şimdi Dönüştür" msgid "Convert File..." msgstr "Dosyayı dönüştür..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "Klasörü Dosyaya Şimdi Dönüştür" @@ -3236,8 +3237,8 @@ msgstr "" "Yine de devam etmek istiyor musun?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "Dönüştürülüyor..." @@ -3470,7 +3471,7 @@ msgstr "" "Öyleyse, seçeneklerde hafıza kartınızın konumunu yeniden belirtmeniz " "gerekebilir." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "Merkezi sunucu aranamadı" @@ -3486,13 +3487,13 @@ msgstr "Dosya okunamadı." msgid "Country:" msgstr "Ülke:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "Oluştur" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "Infinity Dosyası Oluştur" @@ -3523,11 +3524,11 @@ msgstr "Oluşturan:" msgid "Critical" msgstr "Kritik" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "Kırp" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3543,11 +3544,11 @@ msgstr "" msgid "Crossfade" msgstr "Çapraz solma" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "CPU'da Verteksleri Ayıkla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3558,7 +3559,7 @@ msgstr "" "

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "Mevcut Bölge" @@ -3578,11 +3579,11 @@ msgstr "Mevcut oyun" msgid "Current thread" msgstr "Mevcut iş parçacığı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "Özel" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3590,15 +3591,15 @@ msgstr "" msgid "Custom Address Space" msgstr "Özel Adres Alanı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "Özel En Boy Oranı Yüksekliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "Özel En Boy Oranı Genişliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "Özel En Boy Oranı:" @@ -3643,7 +3644,7 @@ msgstr "DJ Turntable" msgid "DK Bongos" msgstr "DK Bongos" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "DSP Öykünme Motoru" @@ -3651,15 +3652,15 @@ msgstr "DSP Öykünme Motoru" msgid "DSP HLE (fast)" msgstr "DSP HLE (hızlı)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "DSP HLE (önerilen)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "DSP LLE Interpreter (acayip yavaş)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "DSP LLE Recompiler (yavaş)" @@ -3734,7 +3735,7 @@ msgstr "Ölü Bölge" msgid "Debug" msgstr "Hata ayıkla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "Hata ayıklama" @@ -3744,7 +3745,7 @@ msgstr "Hata ayıklama" msgid "Decimal" msgstr "Ondalık" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "Kod Çözme Kalitesi:" @@ -3791,7 +3792,7 @@ msgstr "Varsayılan" msgid "Default Config (Read Only)" msgstr "Varsayılan Yapılandırma (Salt Okunur)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "Varsayılan Cihaz" @@ -3807,7 +3808,7 @@ msgstr "Varsayılan ISO:" msgid "Default thread" msgstr "Varsayılan iş parçacığı" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "EFB Önbelleği Geçersiz Kılmayı Ertele" @@ -3815,7 +3816,7 @@ msgstr "EFB Önbelleği Geçersiz Kılmayı Ertele" msgid "Defer EFB Copies to RAM" msgstr "EFB Kopyalarını RAM'e Ertele" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3867,7 +3868,7 @@ msgstr "Derinlik:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Açıklama" @@ -3916,7 +3917,7 @@ msgstr "Ayrılmış" msgid "Detect" msgstr "Belirle" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "RSO Modülleri Algılanıyor" @@ -3946,7 +3947,7 @@ msgstr "Cihaz Ayarları" msgid "Device VID (e.g., 057e)" msgstr "Cihaz VID (örn. 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "Cihaz:" @@ -3954,7 +3955,7 @@ msgstr "Cihaz:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "%1 geçerli bir Riivolution XML dosyası olarak tanınmadı." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "Beş dakika boyunca hareketsiz kalınırsa ekranı karartır." @@ -3978,7 +3979,7 @@ msgstr "Sınırlayıcı Kutusunu Devre Dışı Bırak" msgid "Disable Copy Filter" msgstr "Kopyalama Filtresini Devre Dışı Bırak" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM Kopyalarını Devre Dışı Bırak" @@ -3986,11 +3987,11 @@ msgstr "EFB VRAM Kopyalarını Devre Dışı Bırak" msgid "Disable Emulation Speed Limit" msgstr "Öykünme Hızı Limitini Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "Fastmem'i Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "Fastmem Alanını Devre Dışı Bırak" @@ -3998,11 +3999,11 @@ msgstr "Fastmem Alanını Devre Dışı Bırak" msgid "Disable Fog" msgstr "Sisi Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "JIT Önbelleğini Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "Büyük Giriş Noktaları Haritasını Devre Dışı Bırak" @@ -4021,7 +4022,7 @@ msgstr "" "

Emin değilsen, bunu işaretli bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4403,7 +4404,7 @@ msgstr "" "

Emin değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4422,11 +4423,11 @@ msgstr "Turbo Düğmesini Bırakma Süresi (kare):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Flemenkçe" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "&Çıkış" @@ -4458,7 +4459,7 @@ msgstr "" "Adaletin ve minimum gecikmenin çok önemli olduğu rekabetçi oyunlar için " "uygundur." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "Erken Hafıza Güncellemeleri" @@ -4532,7 +4533,7 @@ msgstr "Gömülü Kare Arabelleği (EFB)" msgid "Empty" msgstr "Boş" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "Öykünme iş parçacığı zaten çalışıyor" @@ -4540,7 +4541,7 @@ msgstr "Öykünme iş parçacığı zaten çalışıyor" msgid "Emulate Disc Speed" msgstr "Disk Hızını Öykün" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "Infinity Base'i Öykün" @@ -4560,7 +4561,7 @@ msgstr "" "Gerçek donanımın disk hızını öykünün. Devre dışı bırakmak kararsızlığa neden " "olabilir. Varsayılan değer Etkin'dir." -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "Öykünen USB Cihazları" @@ -4585,16 +4586,16 @@ msgstr "Öykünme hızı" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "API Doğrulama Katmanlarını Etkinleştir" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "Ses Esnetmeyi Etkinleştir" @@ -4642,7 +4643,7 @@ msgstr "Encore Başarımlarını Etkinleştir" msgid "Enable FPRF" msgstr "FPRF'i Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "Grafik Modlarını Etkinleştir" @@ -4683,7 +4684,7 @@ msgstr "" "oyun çalışırken Zorlayıcı Modunu kapatmanın, yeniden etkinleştirmeden önce " "oyunun kapatılmasını gerektirdiğini unutmayın." -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4696,7 +4697,7 @@ msgstr "MMU'yu Etkinleştir" msgid "Enable Progress Notifications" msgstr "İlerleme Bildirimlerini Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "Progresif Taramayı Etkinleştir" @@ -4705,11 +4706,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "RetroAchievements.org Entegrasyonunu Etkinleştir" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "Rumble'ı Etkinleştir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "Ekran Koruyucusunu Etkinleştir" @@ -4729,11 +4730,11 @@ msgstr "Resmi Olmayan Başarımları Etkinleştir" msgid "Enable Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasını Etkinleştir" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "WiiLink Aracılığıyla WiiConnect24'u Etkinleştir" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "Wireframe'i Etkinleştir" @@ -4799,7 +4800,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4845,7 +4846,7 @@ msgstr "" "devre dışı kalmalıdır.

Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4858,7 +4859,7 @@ msgstr "" "arka ucu ile sınırlıdır.

Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4886,7 +4887,7 @@ msgstr "" "dahili olarak SDR'da işlendiğini unutmayın.

Emin " "değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "Öykünme hızına uyması için sesin esnetilmesini sağlar." @@ -4922,7 +4923,7 @@ msgstr "" "(AÇIK = Uyumlu, KAPALI = Hızlı)

Emin değilsen, bunu " "işaretsiz bırak." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4934,7 +4935,7 @@ msgstr "" "Kanalları için alternatif bir sağlayıcıdır\n" "Hizmet Koşullarını şu adresten okuyabilirsin: https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4947,7 +4948,7 @@ msgstr "" "etkinleştirir.

Emin değilsen, bunu işaretsiz bırak." "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4983,7 +4984,7 @@ msgstr "Enet Başlatılamadı" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "İngilizce" @@ -5000,7 +5001,7 @@ msgstr "XLink Kai istemcisini çalıştıran cihazın IP adresini girin:" msgid "Enter USB device ID" msgstr "USB cihaz ID'sini girin" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "Gözlemek için adres girin:" @@ -5024,7 +5025,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "RSO modül adresini girin:" @@ -5063,9 +5064,9 @@ msgstr "RSO modül adresini girin:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -5078,24 +5079,24 @@ msgstr "RSO modül adresini girin:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5125,7 +5126,7 @@ msgstr "Adaptör Açılırken Hata Oluştu: %1" msgid "Error collecting save data!" msgstr "Kayıt verileri toplanırken hata oluştu!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5237,12 +5238,12 @@ msgstr "{1} bölümündeki {0} kullanılmayan blokta hatalar bulundu." msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Avrupa" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "Ayrıcalıklı Uber Gölgelendiriciler" @@ -5286,11 +5287,11 @@ msgstr "İfadenin başlangıcı bekleniyor." msgid "Expected variable name." msgstr "Değişken ismi bekleniyor." -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "Deneysel" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "Tüm Wii Kayıtlarını Dışa Aktar" @@ -5305,7 +5306,7 @@ msgstr "Dışa Aktarma Başarısız Oldu" msgid "Export Recording" msgstr "Kaydı Dışa Aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "Kaydı Dışa Aktar..." @@ -5333,7 +5334,7 @@ msgstr ".&gcs Olarak Dışarı Aktar..." msgid "Export as .&sav..." msgstr ".&sav Olarak Dışarı Aktar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5361,7 +5362,7 @@ msgstr "Harici" msgid "External Frame Buffer (XFB)" msgstr "Harici Kare Arabelleği (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "NAND'den Sertifikaları Çıkar" @@ -5399,7 +5400,7 @@ msgid "FD" msgstr "FD" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO Oynatıcısı" @@ -5419,7 +5420,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Bu oturum NetPlay dizinine eklenemedi: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "İmza dosyasına eklenemedi: '%1'" @@ -5439,7 +5440,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "Redump.org'a bağlanılamadı." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "Sunucuya bağlanılamadı: %1" @@ -5460,7 +5461,7 @@ msgstr "D3D12 küresel kaynakları oluşturulamadı" msgid "Failed to create DXGI factory" msgstr "DXGI factory oluşturulamadı" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "Infinity dosyası oluşturulamadı" @@ -5515,7 +5516,7 @@ msgstr "%1 kayıt dosyasından %n tanesi dışa aktarılamadı." msgid "Failed to export the following save files:" msgstr "Aşağıdaki kayıt dosyaları dışa aktarılamadı:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "NAND'den sertifikalar çıkarılamadı" @@ -5545,13 +5546,13 @@ msgstr "Bir veya daha fazla D3D sembolü bulunamadı" msgid "Failed to import \"%1\"." msgstr "\"%1\" içe aktarılamadı." -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Kayıt dosyası içe aktarılamadı. Lütfen oyunu başlatın ve tekrar deneyin." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5559,7 +5560,7 @@ msgstr "" "Kayıt dosyası içe aktarılamadı. Verilen dosya bozuk veya geçersiz bir Wii " "kaydı olabilir." -#: Source/Core/DolphinQt/MenuBar.cpp:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5592,7 +5593,7 @@ msgid "Failed to install pack: %1" msgstr "Paket kurulamadı: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "Bu başlık NAND'a kurulamadı." @@ -5604,8 +5605,8 @@ msgstr "" "Port %1 dinlemesi başarısız oldu. Birden fazla NetPlay sunucusu çalışıyor " "olabilir mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "%1 için RSO modülü yüklenemedi" @@ -5617,7 +5618,7 @@ msgstr "d3d11.dll yüklenemedi" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll yüklenemedi" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "Harita dosyası yüklenemedi '%1'" @@ -5647,11 +5648,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "Skylander modifiye edilemedi!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5699,11 +5700,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5762,11 +5763,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5827,27 +5828,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5898,7 +5899,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5934,7 +5935,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5948,7 +5949,7 @@ msgstr "Dosya Ayrıntıları" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "Dosya Biçimi" @@ -5956,24 +5957,24 @@ msgstr "Dosya Biçimi" msgid "File Format:" msgstr "Dosya Biçimi:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "Dosya Bilgisi" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "Dosya Adı" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "Dosya Yolu" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "Dosya Boyutu" @@ -6091,7 +6092,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "16:9'a Zorla" @@ -6099,7 +6100,7 @@ msgstr "16:9'a Zorla" msgid "Force 24-Bit Color" msgstr "24-Bit Renge Zorla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "4:3'e Zorla" @@ -6131,11 +6132,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -6209,11 +6210,11 @@ msgstr "Kare İlerletme Hızını Arttır" msgid "Frame Advance Reset Speed" msgstr "Kare İlerletme Hızını Sıfırla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "Çerçeve Aralığı" @@ -6221,7 +6222,7 @@ msgstr "Çerçeve Aralığı" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -6272,7 +6273,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "Fransızca" @@ -6291,8 +6292,8 @@ msgid "From" msgstr "Buradan" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -6348,11 +6349,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6496,7 +6497,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "Oyun ID'si" @@ -6509,7 +6510,7 @@ msgstr "Oyun ID'si:" msgid "Game Status" msgstr "Oyun Durumları" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6617,7 +6618,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko Kodları" @@ -6649,13 +6650,13 @@ msgstr "Yeni bir İstatistik Kimliği Oluşturun" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "Almanca" @@ -6731,7 +6732,7 @@ msgstr "Yeşil Sol" msgid "Green Right" msgstr "Yeşil Sağ" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "Sütun Görünümü" @@ -6813,7 +6814,7 @@ msgstr "Gizle" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6837,11 +6838,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6880,11 +6881,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6910,7 +6911,7 @@ msgstr "Kısayol Tuşları" msgid "Hotkeys Require Window Focus" msgstr "Kısayol Tuşları Pencere Odağı Gerektirir" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6968,7 +6969,7 @@ msgid "IR" msgstr "Kızılötesi" #. 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:363 msgid "IR Sensitivity:" msgstr "Kızılötesi Hassasiyeti:" @@ -7032,14 +7033,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7083,7 +7084,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7092,7 +7093,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -7107,7 +7108,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "Wii Kayıtlarını Al..." @@ -7208,16 +7209,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -7237,8 +7238,8 @@ msgstr "Bilgi" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "Bilgilendirme" @@ -7251,11 +7252,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "Giriş" @@ -7281,7 +7282,7 @@ msgstr "" msgid "Insert &nop" msgstr "Yerleştir &nop" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD Kart Ekle" @@ -7298,7 +7299,7 @@ msgstr "" msgid "Install Update" msgstr "Güncellemeyi Kur" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "WAD Kur..." @@ -7321,7 +7322,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7407,7 +7408,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Yorumlayıcı (çok yavaş)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7432,7 +7433,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7457,7 +7458,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7493,13 +7494,13 @@ msgstr "Geçersiz arama dizesi (sadece düz dize uzunluğu destekleniyor)" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "İtalyanca" @@ -7512,11 +7513,11 @@ msgstr "İtalya" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7524,47 +7525,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7576,11 +7577,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7591,16 +7592,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "Japonya" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japonca" @@ -7660,12 +7661,12 @@ msgstr "" msgid "Kick Player" msgstr "Oyuncuyu At" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "Kore" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korece" @@ -7712,23 +7713,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "Gecikme:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7736,7 +7737,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7826,11 +7827,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "Liste Görünümü" @@ -7842,15 +7843,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7862,7 +7863,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "Özel Dokuları Yükle" @@ -7870,7 +7871,7 @@ msgstr "Özel Dokuları Yükle" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "GameCube Ana Menüsü'nü Yükle" @@ -7980,19 +7981,19 @@ msgstr "8. Durumu Yükle" msgid "Load State Slot 9" msgstr "9. Durumu Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "Dosyadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "Seçili Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "Wii Sistem Menüsünü Yükle %1" @@ -8004,35 +8005,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "Seçili Yuvadan Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "Yükle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8046,7 +8047,7 @@ msgstr "Yerel" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -8072,7 +8073,7 @@ msgstr "Günlük Yapılandırması" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -8080,7 +8081,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "Render Süresini Dosyaya Yaz" @@ -8096,27 +8097,27 @@ msgstr "Geçmiş Çıkışı" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -8176,7 +8177,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -8193,12 +8194,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -8214,11 +8215,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -8227,7 +8228,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "Bu Wii Menüsünde ve bazı oyunlarda yavaşlamaya neden olabilir." @@ -8248,7 +8249,7 @@ msgstr "" msgid "Memory Card" msgstr "Hafıza Kartı" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -8299,11 +8300,11 @@ msgstr "Mikrofon" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "Çeşitli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "Çeşitli Ayarlar" @@ -8319,7 +8320,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8339,7 +8340,7 @@ msgstr "" msgid "Modifier" msgstr "Değiştirici" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8355,8 +8356,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -8364,7 +8365,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8422,10 +8423,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8434,7 +8435,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8461,7 +8462,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8671,7 +8672,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8679,7 +8680,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8692,7 +8693,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8736,8 +8737,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8886,7 +8887,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "Nesne Aralığı" @@ -8911,7 +8912,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8933,7 +8934,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "Çevrimiçi &Belgeler" @@ -8941,13 +8942,13 @@ msgstr "Çevrimiçi &Belgeler" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8964,7 +8965,7 @@ msgstr "Aç" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8973,7 +8974,7 @@ msgstr "" msgid "Open Directory..." msgstr "Dizin Aç..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9105,11 +9106,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9123,11 +9124,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -9215,7 +9216,7 @@ msgstr "Duraklat" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "Filmin Sonunda Duraklat" @@ -9260,7 +9261,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Piksel Aydınlatması" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" @@ -9268,15 +9269,15 @@ msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -9294,7 +9295,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -9311,7 +9312,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "Platform" @@ -9319,7 +9320,7 @@ msgstr "Platform" msgid "Play" msgstr "Oynat" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -9327,11 +9328,11 @@ msgstr "" msgid "Play Recording" msgstr "Çekimi Oynat" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "Oynatma Seçenekleri" @@ -9339,27 +9340,27 @@ msgstr "Oynatma Seçenekleri" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -9381,7 +9382,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9414,7 +9415,7 @@ msgstr "Port:" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9430,20 +9431,20 @@ msgstr "Post-Processing Efekti:" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9480,7 +9481,7 @@ msgstr "Sync düğmesine basın" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9549,11 +9550,11 @@ msgstr "Profil" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9567,7 +9568,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9591,7 +9592,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9623,11 +9624,11 @@ msgstr "R-Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9652,7 +9653,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9660,7 +9661,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9719,7 +9720,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "Çek" @@ -9731,11 +9732,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "Çekim Seçenekleri" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9799,7 +9800,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Bölge" @@ -9832,7 +9833,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "Kaldır" @@ -9869,11 +9870,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "Ana Pencereye Dönüştür" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9906,7 +9907,7 @@ msgstr "Sıfırla" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9938,7 +9939,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "Kaydedilen tüm Wii Remote eşleştirmelerini sıfırla" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -10117,19 +10118,19 @@ msgstr "Rusya" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD Kart Yolu:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -10137,7 +10138,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -10172,11 +10173,11 @@ msgstr "" msgid "START" msgstr "START TUŞU" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "&Durumu Kaydet" @@ -10208,11 +10209,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -10230,11 +10231,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -10246,7 +10247,7 @@ msgstr "En Eski Durumu kaydet" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -10296,23 +10297,23 @@ msgstr "8. Duruma Kaydet" msgid "Save State Slot 9" msgstr "9. Duruma Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "Durumu Seçili Slot'a Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -10332,11 +10333,11 @@ msgstr "" msgid "Save as..." msgstr "Farklı kaydet..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10347,11 +10348,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -10359,11 +10360,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "Kaydet..." @@ -10395,7 +10396,7 @@ msgstr "Ekran Görüntüsü" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "Ara" @@ -10422,7 +10423,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "Bir talimat ara" @@ -10430,7 +10431,7 @@ msgstr "Bir talimat ara" msgid "Search games..." msgstr "Oyun ara..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10475,11 +10476,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10519,7 +10520,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10527,7 +10528,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "Durum Yuvası Seç" @@ -10594,7 +10595,7 @@ msgstr "Bir Dizin Seç" msgid "Select a File" msgstr "Bir Dosya Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10602,7 +10603,7 @@ msgstr "" msgid "Select a Game" msgstr "Bir Oyun Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "Bir SD Kart Kalıbı Seç" @@ -10614,7 +10615,7 @@ msgstr "" msgid "Select a game" msgstr "Bir oyun seç" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10622,7 +10623,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10639,7 +10640,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "Kayıt dosyasını seçin" @@ -10663,7 +10664,7 @@ msgstr "Seçilmiş kontrolcü profili yok" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10687,7 +10688,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10717,7 +10718,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10739,7 +10740,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10753,7 +10754,7 @@ msgstr "" msgid "Send" msgstr "Gönder" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "Sensör Çubuğu Konumu:" @@ -10818,7 +10819,7 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10828,7 +10829,7 @@ msgstr "" "olarak ayarlar.\n" "Tüm oyunlarda çalışmayabilir." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "Wii sistem dilini ayarlar." @@ -10840,7 +10841,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10859,7 +10860,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10873,7 +10874,7 @@ msgstr "SetupWiiMemory: setting.txt dosyası oluşturulamıyor" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "Gölgelendirici Derlemesi" @@ -10895,16 +10896,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "&Günlüğü Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "Araç Çubuğunu Gös&ter" @@ -10912,11 +10913,11 @@ msgstr "Araç Çubuğunu Gös&ter" msgid "Show Active Title in Window Title" msgstr "Etkin Başlığı Pencere Başlığında Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "Avusturalya'yı Göster" @@ -10929,7 +10930,7 @@ msgstr "Discord'da Mevcut Oyunu Göster" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "ELF/DOL'u Göster" @@ -10938,27 +10939,27 @@ msgstr "ELF/DOL'u Göster" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS'yi Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "Kare Sayacını Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "Fransızları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "GameCube'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "Almanları göster" @@ -10970,23 +10971,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "Görüntü Girişini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "İtalyanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "Korelileri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "Takılma Sayacını Göster" @@ -10994,19 +10995,19 @@ msgstr "Takılma Sayacını Göster" msgid "Show Language:" msgstr "Dili Göster:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "Geçmiş &Yapılandırmasını Göster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "NetPlay Mesajlarını Göster" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "NetPlay Ping'ini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "Hollanda'yı Göster" @@ -11014,7 +11015,7 @@ msgstr "Hollanda'yı Göster" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "PAL'ları Göster" @@ -11023,27 +11024,27 @@ msgstr "PAL'ları Göster" msgid "Show PC" msgstr "PC'yi Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "Platformları Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "Bölgeleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "Rusya'yı Göster" @@ -11051,51 +11052,51 @@ msgstr "Rusya'yı Göster" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "İspanya'yı Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "İstatistikleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "Sistem Saatini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "Tayvanlıları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "Amerikanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "Bilinmeyenleri Göster" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "WAD'ları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "Wii'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "Dünyayı Göster" @@ -11108,7 +11109,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -11136,13 +11137,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11181,47 +11182,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11243,7 +11244,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -11267,7 +11268,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Basitleştirilmiş Çince" @@ -11284,7 +11285,7 @@ msgstr "" msgid "Size" msgstr "Boyut" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11296,7 +11297,7 @@ msgstr "" msgid "Skip" msgstr "Atla" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11413,7 +11414,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "Alfabetik Sırala" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "Ses:" @@ -11427,7 +11428,7 @@ msgstr "İspanya" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "İspanyolca" @@ -11435,11 +11436,11 @@ msgstr "İspanyolca" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "Hoparlör Ses Seviyesi:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11447,7 +11448,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11489,7 +11490,7 @@ msgstr "Standart Denetleyici" msgid "Start" msgstr "Başlat" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "&Netplay'i Başlat..." @@ -11498,11 +11499,11 @@ msgstr "&Netplay'i Başlat..." msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11510,7 +11511,7 @@ msgstr "" msgid "Start Recording" msgstr "Çekimi Başlat" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11522,7 +11523,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11582,7 +11583,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11611,12 +11612,12 @@ msgid "Stick" msgstr "Çubuk" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "Durdur" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11652,7 +11653,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "Pencereye Göre Ayarla" @@ -11691,8 +11692,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11719,7 +11720,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11731,12 +11732,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11759,12 +11760,12 @@ msgstr "Destek" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11822,7 +11823,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "Semboller" @@ -11848,7 +11849,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11867,11 +11868,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "Sistem Dili:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS Girişi" @@ -11884,7 +11885,7 @@ msgstr "TAS Araçları" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "Etiketler" @@ -11902,7 +11903,7 @@ msgstr "" msgid "Taiwan" msgstr "Tayvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "Ekran Görüntüsü Al" @@ -11941,7 +11942,7 @@ msgstr "Doku Önbelleği" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11953,7 +11954,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "Doku Biçimi Kaplaması" @@ -11990,13 +11991,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -12011,7 +12012,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12305,7 +12306,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12365,7 +12366,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12694,7 +12695,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "Başlık" @@ -12703,12 +12704,12 @@ msgid "To" msgstr "Buraya" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "&Tam Ekran Moduna Geç" @@ -12797,7 +12798,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "Üst" @@ -12848,7 +12849,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Geleneksel Çince" @@ -12868,8 +12869,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12950,14 +12951,14 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12965,7 +12966,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12974,7 +12975,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -13037,11 +13038,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "Durum Yüklemeyi Geri Al" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "Durum Kaydetmeyi Geri Al" @@ -13061,7 +13062,7 @@ msgstr "" "Yüklü olan WAD dosyası, herhangi bir kayıt verisi silinmeden NAND'dan " "kaldırılacaktır. Devam edilsin mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "ABD" @@ -13153,7 +13154,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -13169,7 +13170,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -13212,7 +13213,7 @@ msgid "Up" msgstr "Yukarı" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "Güncelle" @@ -13283,7 +13284,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -13291,7 +13292,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "PAL60 Modunu Kullan (EuRGB60)" @@ -13305,7 +13306,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13374,14 +13375,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13646,7 +13647,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Uyarı" @@ -13735,7 +13736,7 @@ msgstr "" msgid "Whammy" msgstr "Darbe" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13743,7 +13744,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13751,7 +13752,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "Beyaz Listeye Alınmış USB Geçiş Aygıtları" @@ -13801,7 +13802,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii Remote Ayarları" @@ -13829,7 +13830,7 @@ msgstr "Wii ve Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13837,7 +13838,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13868,7 +13869,7 @@ msgstr "Dünya" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13917,11 +13918,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13972,14 +13973,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14080,7 +14081,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index 112c3ac2bd..79f4df53a3 100644 --- a/Languages/po/zh_CN.po +++ b/Languages/po/zh_CN.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: 天绝星 , 2015-2024\n" +"Last-Translator: 陈 依云 , 2023-2024\n" "Language-Team: Chinese (China) (http://app.transifex.com/delroth/dolphin-emu/" "language/zh_CN/)\n" "Language: zh_CN\n" @@ -101,7 +101,7 @@ msgstr "" "%1\n" "想参加你的派对。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "%1 %" @@ -155,7 +155,7 @@ msgstr "%1 (慢)" msgid "%1 *" msgstr "%1 *" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -190,7 +190,7 @@ msgstr "%1 在你的系统上不支持此特性。" msgid "%1 doesn't support this feature." msgstr "%1 不支持此特性。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" @@ -200,11 +200,11 @@ msgstr "" "%2 对象\n" "当前帧: %3" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "%1 已加入" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "%1 已离开" @@ -212,11 +212,11 @@ msgstr "%1 已离开" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 已解锁 %2/%3 项成就,折合 %4/%5 成就点数" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "%1 不是有效的 ROM" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "%1 控制中" @@ -228,8 +228,8 @@ msgstr "%1 正在玩 %2" msgid "%1 memory ranges" msgstr "%1 内存范围" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 毫秒" @@ -246,7 +246,7 @@ msgstr "已找到 %1 个会话" msgid "%1 sessions found" msgstr "已找到 %1 个会话" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "%1%" @@ -283,7 +283,7 @@ msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -354,11 +354,11 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "关于(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "添加内存断点(&A)" @@ -375,11 +375,11 @@ msgstr "添加函数(&A)" msgid "&Add..." msgstr "添加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "汇编器(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "音频设置(&A)" @@ -395,11 +395,11 @@ msgstr "无边框窗口(&B)" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "断点(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "错误跟踪器(&B)" @@ -407,15 +407,15 @@ msgstr "错误跟踪器(&B)" msgid "&Cancel" msgstr "取消(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "金手指管理器(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "检查更新...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "清除符号(&C)" @@ -423,7 +423,7 @@ msgstr "清除符号(&C)" msgid "&Clone..." msgstr "克隆...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "代码(&C)" @@ -431,7 +431,7 @@ msgstr "代码(&C)" msgid "&Connected" msgstr "连接(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "控制器设置(&C)" @@ -454,13 +454,13 @@ msgstr "删除(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "删除监视(&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "删除监视(&D)" @@ -474,11 +474,11 @@ msgstr "编辑代码...(&E)" msgid "&Edit..." msgstr "编辑...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "弹出光盘(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "模拟(&E)" @@ -499,40 +499,40 @@ msgid "&Export as .gci..." msgstr "导出为 .gci...(&E)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "文件(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "字体...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "逐帧播放(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "自由视点设置(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "生成符号来自(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "GitHub 资源库(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "图形设置(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "帮助(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "热键设置(&H)" @@ -552,7 +552,7 @@ msgstr "导入状态...(&I)" msgid "&Import..." msgstr "导入...(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "Infinity 底座(&I)" @@ -564,7 +564,7 @@ msgstr "插入 blr (&I)" msgid "&Interframe Blending" msgstr "帧间混合(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "即时编译器(&J)" @@ -576,11 +576,11 @@ msgstr "语言(&L):" msgid "&Load Branch Watch" msgstr "载入分支监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "载入状态(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "载入符号映射(&L)" @@ -590,11 +590,11 @@ msgstr "将文件加载到当前地址(&L)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "锁定监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "锁定部件位置(&L)" @@ -602,11 +602,11 @@ msgstr "锁定部件位置(&L)" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "内存(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "影片(&M)" @@ -614,7 +614,7 @@ msgstr "影片(&M)" msgid "&Mute" msgstr "静音(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "网络(&N)" @@ -623,23 +623,23 @@ msgid "&No" msgstr "否(&N)" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "打开...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "选项(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "修补 HLE 功能函数(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "暂停游戏(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "开始游戏(&P)" @@ -647,7 +647,7 @@ msgstr "开始游戏(&P)" msgid "&Properties" msgstr "属性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "只读模式(&R)" @@ -655,7 +655,7 @@ msgstr "只读模式(&R)" msgid "&Refresh List" msgstr "刷新列表(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "寄存器(&R)" @@ -673,11 +673,11 @@ msgid "&Rename symbol" msgstr "重命名符号(&R)" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "重置游戏(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "资源包管理器(&R)" @@ -685,7 +685,7 @@ msgstr "资源包管理器(&R)" msgid "&Save Branch Watch" msgstr "保存分支监视(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "保存符号映射(&S)" @@ -693,7 +693,7 @@ msgstr "保存符号映射(&S)" msgid "&Scan e-Reader Card(s)..." msgstr "扫描 e-Reader 卡...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "Skylanders 传送门(&S)" @@ -701,7 +701,7 @@ msgstr "Skylanders 传送门(&S)" msgid "&Speed Limit:" msgstr "速度限制(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "停止游戏(&S)" @@ -709,7 +709,7 @@ msgstr "停止游戏(&S)" msgid "&Theme:" msgstr "主题(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "线程(&T)" @@ -717,7 +717,7 @@ msgstr "线程(&T)" msgid "&Tool" msgstr "工具(&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "工具(&T)" @@ -727,21 +727,21 @@ msgstr "卸载 ROM (&U)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "解锁监视(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "监视(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "网站(&W)" @@ -753,11 +753,11 @@ msgstr "百科(&W)" msgid "&Yes" msgstr "是(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "找不到 '%1',未生成符号名" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "找不到 '%1',改为扫描常用函数" @@ -805,7 +805,7 @@ msgstr "- 减" msgid "--> %1" msgstr "--> %1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "--未知--" @@ -871,7 +871,7 @@ msgstr "16 位有符号整数" msgid "16-bit Unsigned Integer" msgstr "16 位无符号整数" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "16:9" @@ -955,7 +955,7 @@ msgstr "4 GiB (SDHC)" msgid "4 Mbit (59 blocks)" msgstr "4 Mbit (59 区块)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "4:3" @@ -1056,7 +1056,7 @@ msgstr "<系统语言>" msgid "Disabled in Hardcore Mode." msgstr "在硬核模式下禁用。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "如无法确定,请不要选中此项。" @@ -1183,7 +1183,7 @@ msgstr "" "Wii 遥控器的联机还在实验阶段,可能不会正常工作。\n" "使用需自担风险。\n" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "AR 代码" @@ -1225,8 +1225,8 @@ msgstr "精确度:" msgid "Achievement Settings" msgstr "成就设置" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "成就" @@ -1318,7 +1318,7 @@ msgstr "激活联机聊天" msgid "Active" msgstr "激活" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "正在使用的 Infinity 角色:" @@ -1330,7 +1330,7 @@ msgstr "活动线程队列" msgid "Active threads" msgstr "活动线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "适配器" @@ -1338,7 +1338,7 @@ msgstr "适配器" msgid "Adapter Detected" msgstr "检测到适配器" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "适配器:" @@ -1395,7 +1395,7 @@ msgstr "添加到监视" #: 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:329 msgid "Add..." msgstr "添加..." @@ -1409,7 +1409,7 @@ msgstr "添加..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "地址" @@ -1635,7 +1635,7 @@ msgstr "允许不匹配的区域设置" msgid "Allow Usage Statistics Reporting" msgstr "允许使用情况统计报告" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "允许写入 SD 卡" @@ -1677,7 +1677,7 @@ msgstr "光盘预计已插入但无法找到。" msgid "Anaglyph" msgstr "色差" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "分析" @@ -1703,15 +1703,15 @@ msgstr "抗锯齿:" msgid "Any Region" msgstr "任意区域" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "附加签名到" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "附加到现有签名文件...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "应用签名文件...(&Y)" @@ -1731,7 +1731,7 @@ msgstr "应用载入器时间:" msgid "Apply" msgstr "应用" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "应用签名文件" @@ -1763,16 +1763,16 @@ msgstr "确定?" msgid "Area Sampling" msgstr "区域取样" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "宽高比" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "宽高比已校正的内部分辨率" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "宽高比:" @@ -1813,11 +1813,11 @@ msgstr "附带 MotionPlus" msgid "Audio" msgstr "音频" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "音频后端:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "音频伸缩设置" @@ -1833,7 +1833,7 @@ msgstr "作者" msgid "Authors" msgstr "作者" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自动" @@ -1857,7 +1857,7 @@ msgstr "" "\n" "请选择特定的内部分辨率。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "自动调整窗口大小" @@ -1865,15 +1865,15 @@ msgstr "自动调整窗口大小" msgid "Auto-Hide" msgstr "自动隐藏" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "自动检测 RSO 模块?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "自动与文件夹同步" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1925,19 +1925,19 @@ msgstr "BP 寄存器" msgid "Back Chain" msgstr "后链" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "后端" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "后端多线程" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "后端设置" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "后端:" @@ -1980,7 +1980,7 @@ msgstr "值格式不正确。" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "标图" @@ -2004,7 +2004,7 @@ msgstr "基地址" msgid "Base priority" msgstr "基本优先级" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "基本" @@ -2056,11 +2056,11 @@ msgstr "二进制 SSL (读取)" msgid "Binary SSL (write)" msgstr "二进制 SSL (写入)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "比特率 (kbps):" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -2074,7 +2074,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "区块大小" @@ -2111,7 +2111,7 @@ msgid "" msgstr "" "蓝牙直通模式已启用,但 Dolphin 构建没有加入 libusb 驱动。无法使用直通模式。" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "引导后暂停" @@ -2123,11 +2123,11 @@ msgstr "BootMii NAND 备份文件 (*.bin);; 所有文件 (*)" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 密钥文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "无边框全屏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "底部" @@ -2316,20 +2316,20 @@ msgstr "宽带适配器错误" msgid "Broadband Adapter MAC Address" msgstr "宽带适配器 MAC 地址" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "浏览联机会话...(&N)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "缓冲区大小:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "缓冲区大小更改为 %1" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "缓冲区:" @@ -2380,7 +2380,7 @@ msgstr "作者:%1" msgid "C Stick" msgstr "C 摇杆" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "创建签名文件...(&R)" @@ -2404,7 +2404,7 @@ msgstr "CRC32:" msgid "Cached Interpreter (slower)" msgstr "缓存解释器(较慢)" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2490,11 +2490,11 @@ msgstr "游戏运行时无法启动联机会话!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "取消" @@ -2579,7 +2579,7 @@ msgstr "中心和校准" msgid "Change &Disc" msgstr "切换光盘(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "切换光盘...(&D)" @@ -2601,7 +2601,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2626,7 +2626,7 @@ msgstr "" "转和移动,但无法滚动。易于使用,但有局限性。

轨道:将自由镜头围绕原始" "镜头旋转。没有横向移动,只能旋转,可以放大视角到镜头的原点。" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "游戏重启后更改的金手指才会生效。" @@ -2634,7 +2634,7 @@ msgstr "游戏重启后更改的金手指才会生效。" msgid "Channel Partition (%1)" msgstr "通道分区 (%1)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "输入的字符无效!" @@ -2646,7 +2646,7 @@ msgstr "聊天" msgid "Cheat Code Editor" msgstr "金手指编辑器" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "金手指搜索" @@ -2654,7 +2654,7 @@ msgstr "金手指搜索" msgid "Cheats Manager" msgstr "金手指管理器" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "校验 NAND..." @@ -2692,11 +2692,11 @@ msgstr "选择要打开的文件" msgid "Choose a file to open or create" msgstr "选择要打开或创建的文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "选择优先输入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "选择次要输入文件" @@ -2727,7 +2727,7 @@ msgstr "传统控制器" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "清除" @@ -2735,7 +2735,7 @@ msgstr "清除" msgid "Clear Branch Watch" msgstr "清除分支监视" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "清除缓存" @@ -2756,7 +2756,7 @@ msgstr "复制并编辑代码...(&E)" msgid "Close" msgstr "关闭" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "程序设置(&N)" @@ -2800,7 +2800,7 @@ msgstr "色彩空间" msgid "Column &Visibility" msgstr "表列可见性(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "合并两个签名文件...(&T)" @@ -2831,7 +2831,7 @@ msgstr "" "与游戏的 Wii 光盘发布版本相比,这是错误的转储。尽管如此,与游戏的 Wii U " "eShop 版本比较的话这可能是一个正确的转储。Dolphin 无法验证这一点。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "在开始前编译着色器" @@ -2841,7 +2841,7 @@ msgstr "正在编译着色器" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "压缩" @@ -2956,7 +2956,7 @@ msgstr "配置" msgid "Configure Controller" msgstr "配置控制器" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "Dolphin 配置" @@ -2980,7 +2980,7 @@ msgstr "配置输出" msgid "Confirm" msgstr "确定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "确认改变后端" @@ -2988,7 +2988,7 @@ msgstr "确认改变后端" msgid "Confirm on Stop" msgstr "停止游戏时确认" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2999,15 +2999,15 @@ msgstr "确认" msgid "Connect" msgstr "连接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "连接平衡板" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "连接 USB 键盘" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "连接 Wii 遥控器 %1" @@ -3027,7 +3027,7 @@ msgstr "连接 Wii 遥控器 3" msgid "Connect Wii Remote 4" msgstr "连接 Wii 遥控器 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "连接 Wii 遥控器" @@ -3166,8 +3166,8 @@ msgstr "会聚" msgid "Convergence:" msgstr "会聚:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "转换失败。" @@ -3175,9 +3175,9 @@ msgstr "转换失败。" msgid "Convert" msgstr "转换" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "立即将文件转换为文件夹" @@ -3185,9 +3185,9 @@ msgstr "立即将文件转换为文件夹" msgid "Convert File..." msgstr "转换文件..." -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "立即将文件夹转换为文件" @@ -3209,8 +3209,8 @@ msgstr "" "不会节省任何更明显的空间。是否仍要继续?" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "正在转换..." @@ -3430,7 +3430,7 @@ msgstr "" "您是否是在移动模拟器目录后收到这个消息?\n" "如果是这样,您可能需要在选项中重新指定您的存储卡位置。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "无法查找中心服务器" @@ -3446,13 +3446,13 @@ msgstr "无法读取文件。" msgid "Country:" msgstr "国家:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "创建" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "创建 Infinity 文件" @@ -3483,11 +3483,11 @@ msgstr "创建者:" msgid "Critical" msgstr "错误" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "裁切" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3502,11 +3502,11 @@ msgstr "" msgid "Crossfade" msgstr "混音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "清除 CPU 顶点" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " @@ -3515,7 +3515,7 @@ msgstr "" "清除 CPU 上的顶点以减少所需的绘制调用数。可能影响性能和绘制统计数据。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "当前区域" @@ -3535,11 +3535,11 @@ msgstr "当前游戏" msgid "Current thread" msgstr "当前线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "自定义" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "自定义(拉伸)" @@ -3547,15 +3547,15 @@ msgstr "自定义(拉伸)" msgid "Custom Address Space" msgstr "自定义地址空间" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "自定义宽高比高度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "自定义宽高比宽度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "自定义宽高比:" @@ -3598,7 +3598,7 @@ msgstr "打碟机" msgid "DK Bongos" msgstr "DK 小对鼓" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "音频模拟引擎" @@ -3606,15 +3606,15 @@ msgstr "音频模拟引擎" msgid "DSP HLE (fast)" msgstr "音频 HLE (较快)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "音频 HLE (推荐)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "音频 LLE 解释器(很慢)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "音频 LLE 重编译器(较慢)" @@ -3688,7 +3688,7 @@ msgstr "死区" msgid "Debug" msgstr "调试" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "调试" @@ -3698,7 +3698,7 @@ msgstr "调试" msgid "Decimal" msgstr "十进制" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "解码质量:" @@ -3745,7 +3745,7 @@ msgstr "默认" msgid "Default Config (Read Only)" msgstr "默认配置 (只读)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "默认设备" @@ -3761,7 +3761,7 @@ msgstr "默认镜像:" msgid "Default thread" msgstr "默认线程" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "推迟 EFB 缓存失效" @@ -3769,7 +3769,7 @@ msgstr "推迟 EFB 缓存失效" msgid "Defer EFB Copies to RAM" msgstr "推迟 EFB 副本到内存" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3818,7 +3818,7 @@ msgstr "深度:" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "说明" @@ -3867,7 +3867,7 @@ msgstr "分离的" msgid "Detect" msgstr "检测" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "正在检测 RSO 模块" @@ -3897,7 +3897,7 @@ msgstr "设备设置" msgid "Device VID (e.g., 057e)" msgstr "设备 VID (例如: 057e)" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "设备:" @@ -3905,7 +3905,7 @@ msgstr "设备:" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "无法将 %1 识别为有效的 Riivolution XML 文件。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "五分钟非活动状态后变暗屏幕。" @@ -3929,7 +3929,7 @@ msgstr "禁用边界框" msgid "Disable Copy Filter" msgstr "禁用复制过滤" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "禁用 EFB VRAM 副本" @@ -3937,11 +3937,11 @@ msgstr "禁用 EFB VRAM 副本" msgid "Disable Emulation Speed Limit" msgstr "禁用模拟速度限制" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "禁用快速内存" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "禁用快速内存区" @@ -3949,11 +3949,11 @@ msgstr "禁用快速内存区" msgid "Disable Fog" msgstr "禁用雾化" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "禁用 JIT 缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "禁用超大入口端点映射" @@ -3970,7 +3970,7 @@ msgstr "" "禁用边界框模拟。

这可能显著提高 GPU 性能,但是一些游戏可能会停止运行。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked.
如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4337,7 +4337,7 @@ msgstr "" "将 EFB 副本的内容转储到 User/Dump/Textures/ 目录中。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4355,11 +4355,11 @@ msgstr "连发按键的松开持续时间(帧):" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "荷兰语" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "退出模拟(&X)" @@ -4387,7 +4387,7 @@ msgstr "" "每个玩家将自己的输入发送到游戏,并且所有玩家的缓冲区大小相同,由主机配置。\n" "适用于对公平性和低延迟最注重的竞技型游戏。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "内存提前更新" @@ -4461,7 +4461,7 @@ msgstr "内置帧缓冲 (EFB)" msgid "Empty" msgstr "空" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "模拟线程已经在运行" @@ -4469,7 +4469,7 @@ msgstr "模拟线程已经在运行" msgid "Emulate Disc Speed" msgstr "模拟光盘速度" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "模拟 Infinity 底座" @@ -4487,7 +4487,7 @@ msgid "" "Defaults to True" msgstr "模拟实机的光盘速度。禁用可能会导致不稳定。默认启用" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "模拟 USB 设备" @@ -4512,16 +4512,16 @@ msgstr "模拟速度" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "启用" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "启用 API 验证层" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "启用音频伸缩" @@ -4569,7 +4569,7 @@ msgstr "启用硬核成就" msgid "Enable FPRF" msgstr "启用 FPRF" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "启用图形模组" @@ -4604,7 +4604,7 @@ msgstr "" "用前请关闭当前游戏。
请注意,在游戏运行时关闭硬核模式需要先关闭游戏,然后" "才能重新启用。" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "启用 JIT 区块分析" @@ -4617,7 +4617,7 @@ msgstr "启用 MMU" msgid "Enable Progress Notifications" msgstr "启用成就进度通知" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "启用逐行扫描" @@ -4626,11 +4626,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "启用 RetroAchievements.org 集成" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "启用震动" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "允许屏幕保护程序" @@ -4650,11 +4650,11 @@ msgstr "启用非官方成就" msgid "Enable Usage Statistics Reporting" msgstr "启用使用情况统计报告" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "通过 WiiLink 启用 WiiConnect24" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "启用线框" @@ -4717,7 +4717,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4756,7 +4756,7 @@ msgstr "" "禁用。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4767,7 +4767,7 @@ msgstr "" "有性能提升。目前仅限于 Vulkan 后端。

如无法确定,请" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4790,7 +4790,7 @@ msgstr "" "全显示 PAL 和 NTSC-J 色彩空间。

请注意,游戏仍然在内部以 SDR 渲染。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "对音频进行伸缩以匹配模拟速度" @@ -4821,7 +4821,7 @@ msgstr "" "启用内存管理单元,某些游戏需要启用此项。(开 = 兼容,关 = 快" "速)

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4833,7 +4833,7 @@ msgstr "" "提供商\n" "请阅读服务条款:https://www.wiilink24.com/tos" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4844,7 +4844,7 @@ msgstr "" "端,这也为已编译的着色器启用调试符号。

如无法确定," "请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4879,7 +4879,7 @@ msgstr "Enet 没有初始化" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "英语" @@ -4896,7 +4896,7 @@ msgstr "输入正在运行 XLink Kai 客户端的设备 IP 地址:" msgid "Enter USB device ID" msgstr "输入 USB 设备 ID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "输入要监视的地址:" @@ -4920,7 +4920,7 @@ msgid "" "to." msgstr "输入要连接的分接服务器实例 IP 地址和端口。" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "请输入 RSO 模块地址:" @@ -4959,9 +4959,9 @@ msgstr "请输入 RSO 模块地址:" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4974,24 +4974,24 @@ msgstr "请输入 RSO 模块地址:" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -5021,7 +5021,7 @@ msgstr "打开适配器时出错: %1" msgid "Error collecting save data!" msgstr "收集存档数据时出错!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -5132,12 +5132,12 @@ msgstr "在 {1} 分区未使用的 {0} 区块中发现错误。" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "欧洲" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "专用超着色器" @@ -5181,11 +5181,11 @@ msgstr "建议用表达式开始符。" msgid "Expected variable name." msgstr "建议使用的变量名称。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "实验性" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "导出所有 Wii 存档" @@ -5200,7 +5200,7 @@ msgstr "导出失败" msgid "Export Recording" msgstr "导出录制" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "导出录制..." @@ -5228,7 +5228,7 @@ msgstr "导出为 .gcs...(&G)" msgid "Export as .&sav..." msgstr "导出为 .sav...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5256,7 +5256,7 @@ msgstr "外部" msgid "External Frame Buffer (XFB)" msgstr "外部帧缓冲 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "从 NAND 中提取证书" @@ -5294,7 +5294,7 @@ msgid "FD" msgstr "文件描述符" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "FIFO 回放器" @@ -5314,7 +5314,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "无法将此会话添加到联机索引: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "附加到签名文件 '%1' 失败" @@ -5334,7 +5334,7 @@ msgstr "清除插槽 %1 的 Skylander 失败!" msgid "Failed to connect to Redump.org" msgstr "连接 Redump.org 失败" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "连接服务器失败: %1" @@ -5355,7 +5355,7 @@ msgstr "创建 D3D12 全局资源失败" msgid "Failed to create DXGI factory" msgstr "创建 DXGI 工厂失败" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "创建 Infinity 文件失败" @@ -5413,7 +5413,7 @@ msgstr "在 %1 个存档文件中 %n 个导出失败。" msgid "Failed to export the following save files:" msgstr "导出以下存档文件失败:" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "从 NAND 中提取证书失败" @@ -5443,18 +5443,18 @@ msgstr "无法找到一个或多个 D3D 符号" msgid "Failed to import \"%1\"." msgstr "导入 “%1” 失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "导入存档文件失败。请运行一次游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5486,7 +5486,7 @@ msgid "Failed to install pack: %1" msgstr "安装包失败: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "无法将该游戏安装到 NAND。" @@ -5496,8 +5496,8 @@ msgid "" "running?" msgstr "监听端口 %1 失败。是否有另一个联机服务器的实例正在运行?" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "无法在 %1 处加载 RSO 模块" @@ -5509,7 +5509,7 @@ msgstr "载入 d3d11.dll 失败" msgid "Failed to load dxgi.dll" msgstr "载入 dxgi.dll 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "载入映射文件 '%1' 失败" @@ -5539,11 +5539,11 @@ msgstr "加载 {0} 失败。如果你使用的是 Windows 7,请尝试安装 KB msgid "Failed to modify Skylander!" msgstr "修改 Skylander 失败!" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "打开 “%1” 进行写入失败。" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "打开 “{0}” 进行写入失败。" @@ -5593,11 +5593,11 @@ msgstr "打开文件失败。" msgid "Failed to open server" msgstr "打开服务器失败" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "打开 Infinity 文件失败!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5666,11 +5666,11 @@ msgstr "从输入文件 “{0}” 读取失败。" msgid "Failed to read selected savefile(s) from memory card." msgstr "从存储卡读取所选的存档文件失败。" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "读取 Infinity 文件失败!" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5740,27 +5740,27 @@ msgstr "重置联机重定向文件夹失败。请验证你的写入权限。" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "保存分支监视快照 “%1” 失败" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "保存 FIFO 日志失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "保存代码映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "保存签名文件 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "保存符号映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "保存到签名文件 '%1' 失败" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5815,7 +5815,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "失败" @@ -5852,7 +5852,7 @@ msgstr "" msgid "Field of View" msgstr "视野" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "角色编号:" @@ -5866,7 +5866,7 @@ msgstr "文件详细信息" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "文件格式" @@ -5874,24 +5874,24 @@ msgstr "文件格式" msgid "File Format:" msgstr "文件格式:" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "文件信息" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "文件名" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "文件路径" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "文件大小" @@ -6017,7 +6017,7 @@ msgstr "" "有关设置说明,请参阅此页" "面。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "强制 16:9" @@ -6025,7 +6025,7 @@ msgstr "强制 16:9" msgid "Force 24-Bit Color" msgstr "强制 24 位色" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "强制 4:3" @@ -6057,11 +6057,11 @@ msgstr "强制监听端口:" msgid "Force Nearest" msgstr "强制邻近" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "已强制关闭,因为 %1 不支持顶点着色器扩展。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "已强制打开,因为 %1 不支持几何着色器。" @@ -6142,11 +6142,11 @@ msgstr "逐帧播放增加速度" msgid "Frame Advance Reset Speed" msgstr "逐帧播放重置速度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "转储帧" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "帧范围" @@ -6154,7 +6154,7 @@ msgstr "帧范围" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "帧转储图像 ‘{0}’ 已经存在。是否覆盖?" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "录制帧数:" @@ -6208,7 +6208,7 @@ msgstr "自由视点切换" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "法语" @@ -6227,8 +6227,8 @@ msgid "From" msgstr "从" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "从:" @@ -6284,11 +6284,11 @@ msgstr "GBA 音量" msgid "GBA Window Size" msgstr "GBA 窗口大小" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "GBA%1 ROM 更改为 “%2”" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "GBA%1 ROM 已禁用" @@ -6456,7 +6456,7 @@ msgid "Game Gamma:" msgstr "游戏伽玛:" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "游戏 ID" @@ -6469,7 +6469,7 @@ msgstr "游戏 ID:" msgid "Game Status" msgstr "游戏状态" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "游戏更改为 “%1”" @@ -6579,7 +6579,7 @@ msgstr "Gecko (C0)" msgid "Gecko (C2)" msgstr "Gecko (C2)" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 代码" @@ -6611,13 +6611,13 @@ msgstr "生成一个新的统计标识" msgid "Generated AR code(s)." msgstr "已生成 AR 代码。" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "从 '%1' 中生成符号名" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "德语" @@ -6696,7 +6696,7 @@ msgstr "绿 左" msgid "Green Right" msgstr "绿 右" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "网格视图" @@ -6778,7 +6778,7 @@ msgstr "隐藏" msgid "Hide &Controls" msgstr "隐藏控件(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "隐藏全部" @@ -6802,11 +6802,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "高" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "最高" @@ -6848,11 +6848,11 @@ msgstr "" "增加其他人的延迟。\n" "适合 3 人以上的休闲游戏,在连接不稳定或高延迟下或许也能运作。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "主机输入优先权已禁用" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "主机输入优先权已启用" @@ -6878,7 +6878,7 @@ msgstr "热键" msgid "Hotkeys Require Window Focus" msgstr "热键需要窗口是活动状态" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "混合超着色器" @@ -6940,7 +6940,7 @@ msgid "IR" msgstr "红外线" #. 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:363 msgid "IR Sensitivity:" msgstr "红外灵敏度:" @@ -7029,7 +7029,7 @@ msgstr "" "如果未选中,则模拟控制器的连接状态关联到\n" "真实默认设备(如果存在)的连接状态。 " -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." @@ -7039,7 +7039,7 @@ msgstr "" "量 fifo 日志,但对测试很有帮助。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -7092,7 +7092,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "立即呈现 XFB" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -7105,7 +7105,7 @@ msgstr "" "能也会略微降低。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "导入 BootMii NAND 备份..." @@ -7120,7 +7120,7 @@ msgstr "导入失败" msgid "Import Save File(s)" msgstr "导入存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "导入 Wii 存档..." @@ -7226,16 +7226,16 @@ msgstr "增量旋转" msgid "Incremental Rotation (rad/sec)" msgstr "增量旋转(度/秒)" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "Infinity 角色创建器" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "Infinity 管理器" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "Infinity 文件 (*.bin);;" @@ -7257,8 +7257,8 @@ msgstr "信息" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "信息" @@ -7271,11 +7271,11 @@ msgid "Inject" msgstr "注入" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "输入" @@ -7301,7 +7301,7 @@ msgstr "插入 NOP (&N)" msgid "Insert &nop" msgstr "插入 nop (&N)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "插入 SD 卡" @@ -7318,7 +7318,7 @@ msgstr "安装分区 (%1)" msgid "Install Update" msgstr "安装更新" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "安装 WAD..." @@ -7341,7 +7341,7 @@ msgstr "指令" msgid "Instruction Breakpoint" msgstr "指令断点" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "指令:" @@ -7433,7 +7433,7 @@ msgstr "生成 AR 代码时出现内部错误。" msgid "Interpreter (slowest)" msgstr "解释器(最慢)" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "解释器核心" @@ -7458,7 +7458,7 @@ msgstr "包 %1 无效: %2" msgid "Invalid Player ID" msgstr "无效玩家 ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "无效 RSO 模块地址: %1" @@ -7483,7 +7483,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "字段 “%1” 的输入无效" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "提供的输入无效" @@ -7519,13 +7519,13 @@ msgstr "无效的搜索字符串(仅支持相等长度的字符串)" msgid "Invalid title ID." msgstr "无效游戏 ID" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "无效监视地址: %1" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "意大利语" @@ -7538,11 +7538,11 @@ msgstr "意大利" msgid "Item" msgstr "物品" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "关闭 JIT 区块链接" @@ -7550,47 +7550,47 @@ msgstr "关闭 JIT 区块链接" msgid "JIT Blocks" msgstr "JIT 区块" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "关闭 JIT 分支" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "关闭 JIT 浮点" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "关闭 JIT 整数" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "关闭 JIT 加载存储浮动" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "关闭 JIT 加载存储" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "关闭 JIT 加载存储配对" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "关闭 JIT 加载存储 IXz" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "关闭 JIT 加载存储 Ibzx" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "关闭 JIT 加载存储 Iwz" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "关闭 JIT (JIT 核心)" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "关闭 JIT 配对" @@ -7602,11 +7602,11 @@ msgstr "适用于 ARM64 的 JIT 重编译器(推荐)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "适用于 x86-64 的 JIT 重编译器(推荐)" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "关闭 JIT 寄存器缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "关闭 JIT 系统寄存器" @@ -7619,16 +7619,16 @@ msgstr "" "清除缓存后,JIT 无法找到代码空间。这应该从不会出现。请在错误跟踪器中上报此事" "件。 Dolphin 即将退出。" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "JIT 未激活" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "日本" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "日语" @@ -7688,12 +7688,12 @@ msgstr "KiB" msgid "Kick Player" msgstr "踢除玩家" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "韩国" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "韩语" @@ -7740,23 +7740,23 @@ msgstr "上次放置:" msgid "Last reset:" msgstr "上次重置:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "延迟:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "延迟: ~10 毫秒" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "延迟: ~20 毫秒" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "延迟: ~40 毫秒" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "延迟: ~80 毫秒" @@ -7764,7 +7764,7 @@ msgstr "延迟: ~80 毫秒" msgid "Launching these titles may also fix the issues." msgstr "运行这些游戏也许可以解决问题。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "排行榜" @@ -7860,11 +7860,11 @@ msgstr "光" msgid "Limit Chunked Upload Speed:" msgstr "限制数据块上传速度:" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "表单列" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "列表视图" @@ -7876,15 +7876,15 @@ msgstr "正在监听" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "载入损坏映射文件(&B)..." -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "载入其他映射文件(&O)..." @@ -7896,7 +7896,7 @@ msgstr "载入分支监视...(&F)" msgid "Load Branch Watch snapshot" msgstr "载入分支监视快照" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "加载自定义纹理" @@ -7904,7 +7904,7 @@ msgstr "加载自定义纹理" msgid "Load File" msgstr "载入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "载入 GameCube 主菜单" @@ -8014,19 +8014,19 @@ msgstr "载入状态 8" msgid "Load State Slot 9" msgstr "载入状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "从文件中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "从选择的插槽中加载状态" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "从插槽中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "加载 Wii 系统菜单 %1" @@ -8038,28 +8038,28 @@ msgstr "加载和写入主机的存档数据" msgid "Load from Selected Slot" msgstr "从选择的插槽中加载" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "从插槽 %1 - %2 载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "载入映射文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "加载 vWii 系统菜单 %1" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "载入..." -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "已从 '%1' 中加载符号" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " @@ -8069,7 +8069,7 @@ msgstr "" "<game_id>/ 目录中的自定义纹理。

如无法确定,请" "不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -8085,7 +8085,7 @@ msgstr "本地" msgid "Lock Mouse Cursor" msgstr "锁定鼠标光标" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "已锁定" @@ -8111,7 +8111,7 @@ msgstr "日志设置" msgid "Log In" msgstr "登录" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "记录 JIT 指令范围" @@ -8119,7 +8119,7 @@ msgstr "记录 JIT 指令范围" msgid "Log Out" msgstr "注销" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "记录渲染时间到文件" @@ -8135,7 +8135,7 @@ msgstr "日志输出" msgid "Login Failed" msgstr "登录失败" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " @@ -8145,20 +8145,20 @@ msgstr "" "量 Dolphin 的性能。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "循环" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "丢失联机服务器连接..." #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "低" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "最低" @@ -8218,7 +8218,7 @@ msgstr "请确保 Skylander 已位于插槽 %1 中!" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "制作者" @@ -8238,12 +8238,12 @@ msgstr "" "雾模拟,禁用雾将破坏其游戏性。

如无法确定,请不要选" "中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "管理 NAND" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "手动纹理采样" @@ -8259,11 +8259,11 @@ msgstr "伪装 ROM" msgid "Match Found" msgstr "找到匹配" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "最大缓冲区:" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "最大缓冲区大小更改为 %1" @@ -8272,7 +8272,7 @@ msgstr "最大缓冲区大小更改为 %1" msgid "Maximum tilt angle." msgstr "最大倾斜角度。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "这会导致 Wii 菜单和一些游戏减速。" @@ -8293,7 +8293,7 @@ msgstr "内存断点" msgid "Memory Card" msgstr "存储卡" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "存储卡管理器" @@ -8346,11 +8346,11 @@ msgstr "麦克风" msgid "Mini" msgstr "迷你" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "其它" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "其它设置" @@ -8366,7 +8366,7 @@ msgstr "标头中的空闲区块数与实际未使用的区块不匹配。" msgid "Mismatch between internal data structures." msgstr "内部数据结构不匹配。" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -8393,7 +8393,7 @@ msgstr "调制解调器适配器 (分接服务器)" msgid "Modifier" msgstr "修饰键" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -8411,8 +8411,8 @@ msgstr "修改插槽" msgid "Modifying Skylander: %1" msgstr "修改 Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "已找到模块: %1" @@ -8420,7 +8420,7 @@ msgstr "已找到模块: %1" msgid "Money:" msgstr "金钱:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "单声道" @@ -8478,10 +8478,10 @@ msgstr "多重分插器" msgid "N&o to All" msgstr "全部选否(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 校验" @@ -8490,7 +8490,7 @@ msgstr "NAND 校验" msgid "NKit Warning" msgstr "NKit 警告" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "NTSC-J" @@ -8521,7 +8521,7 @@ msgstr "" "值,请在此处进行设置。

如无法确定,请保持为 2.35。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "NTSC-U" @@ -8737,7 +8737,7 @@ msgstr "没有错误。" msgid "No extension selected." msgstr "未选择扩展。" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "文件未加载 / 录制" @@ -8745,7 +8745,7 @@ msgstr "文件未加载 / 录制" msgid "No game is running." msgstr "没有游戏在运行。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "没有游戏运行。" @@ -8758,7 +8758,7 @@ msgstr "未选择图形模组" msgid "No input" msgstr "无输入" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "没有发现问题。" @@ -8804,8 +8804,8 @@ msgstr "未找到 undo.dtm 文件,为防止影片出现不同步撤销载入 #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8954,7 +8954,7 @@ msgstr "对象 4 X" msgid "Object 4 Y" msgstr "对象 4 Y" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "对象范围" @@ -8979,7 +8979,7 @@ msgstr "开" msgid "On Movement" msgstr "活动时" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -9010,7 +9010,7 @@ msgstr "" "经过足够的过程和实验后,您也许能够找到仅在模拟软件中执行操作时才会采用的函数" "调用和条件代码路径。" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "在线文档(&D)" @@ -9018,7 +9018,7 @@ msgstr "在线文档(&D)" msgid "Only Show Collection" msgstr "只显示合集" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9026,7 +9026,7 @@ msgstr "" "仅附加有此前缀的符号:\n" "(留空表示全部)" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9045,7 +9045,7 @@ msgstr "打开" msgid "Open &Containing Folder" msgstr "打开所在目录(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "打开用户目录(&U)" @@ -9054,7 +9054,7 @@ msgstr "打开用户目录(&U)" msgid "Open Directory..." msgstr "打开目录..." -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "打开 FIFO 日志" @@ -9144,7 +9144,7 @@ msgid "Origin and Destination" msgstr "起始和目标" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -9186,11 +9186,11 @@ msgstr "输出重采样:" msgid "Overwritten" msgstr "覆盖" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "播放录制...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "PAL" @@ -9204,11 +9204,11 @@ msgstr "PAL (EBU)" msgid "PCAP" msgstr "PCAP 格式" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "PNG 压缩级别" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "PNG 压缩级别:" @@ -9296,7 +9296,7 @@ msgstr "暂停" msgid "Pause Branch Watch" msgstr "暂停分支监视" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "在影片末尾暂停" @@ -9344,7 +9344,7 @@ msgstr "向外挥舞的峰值速度。" msgid "Per-Pixel Lighting" msgstr "逐像素光照" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "执行在线系统更新" @@ -9352,15 +9352,15 @@ msgstr "执行在线系统更新" msgid "Perform System Update" msgstr "执行系统更新" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "性能采样窗口(毫秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "性能采样窗口(毫秒):" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "性能统计" @@ -9378,7 +9378,7 @@ msgstr "物理地址空间" msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "选择调试字体" @@ -9395,7 +9395,7 @@ msgid "Pitch Up" msgstr "上仰" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "平台" @@ -9403,7 +9403,7 @@ msgstr "平台" msgid "Play" msgstr "开始" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "播放/录制" @@ -9411,11 +9411,11 @@ msgstr "播放/录制" msgid "Play Recording" msgstr "播放录制" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "玩具组合/动力飞盘" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "回放选项" @@ -9423,27 +9423,27 @@ msgstr "回放选项" msgid "Player" msgstr "玩家" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "玩家 1" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "玩家 1 的第 1 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "玩家 1 的第 2 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "玩家 2" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "玩家 2 的第 1 项能力" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "玩家 2 的第 2 项能力" @@ -9466,7 +9466,7 @@ msgid "" msgstr "" "请将“SyncOnSkipIdle”设置更改为“True”!当前已被禁用,使得很可能发生这个问题。" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "在以标准内存区域开始搜索前,请先运行游戏。" @@ -9499,7 +9499,7 @@ msgstr "端口 :" msgid "Portal Slots" msgstr "传送门插槽" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "检测到可能的非同步异常: %1 或许已在帧 %2 处不同步 " @@ -9515,20 +9515,20 @@ msgstr "后处理效果:" msgid "Post-Processing Shader Configuration" msgstr "后处理着色器配置" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "点/线扩展首选顶点着色器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "预读取自定义纹理" @@ -9565,7 +9565,7 @@ msgstr "按下同步按钮" msgid "Pressure" msgstr "压感" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9637,11 +9637,11 @@ msgstr "预设" msgid "Program Counter" msgstr "程序计数器" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "进度" @@ -9655,7 +9655,7 @@ msgstr "" msgid "Public" msgstr "公开" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "清除游戏列表缓存" @@ -9679,7 +9679,7 @@ msgstr "无法启用服务质量 (QoS)。" msgid "Quality of Service (QoS) was successfully enabled." msgstr "已成功启用服务质量 (QoS)。" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "DPLII 解码器的质量。质量越高音频延迟越大。" @@ -9711,11 +9711,11 @@ msgstr "R-模拟" msgid "READY" msgstr "就绪" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "RSO 模块" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "RSO 自动检测" @@ -9740,7 +9740,7 @@ msgstr "结束范围:" msgid "Range Start: " msgstr "开始范围:" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "排名 %1" @@ -9748,7 +9748,7 @@ msgstr "排名 %1" msgid "Raw" msgstr "Raw" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "原始内部分辨率" @@ -9807,7 +9807,7 @@ msgstr "最近命中" msgid "Recenter" msgstr "回到中心" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "录制" @@ -9819,11 +9819,11 @@ msgstr "录制输入" msgid "Recording" msgstr "正在录制" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "录制选项" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "正在录制..." @@ -9891,7 +9891,7 @@ msgid "Refreshing..." msgstr "正在刷新..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地区" @@ -9924,7 +9924,7 @@ msgstr "以后提醒我" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "移除" @@ -9963,11 +9963,11 @@ msgstr "重命名符号" msgid "Render Window" msgstr "渲染窗口" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "渲染到主窗口" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -10002,7 +10002,7 @@ msgstr "重置" msgid "Reset All" msgstr "全部重置" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "重置忽略警告程序" @@ -10034,7 +10034,7 @@ msgstr "重置视图" msgid "Reset all saved Wii Remote pairings" msgstr "重置所有保存的 Wii 遥控器配对" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "分辨率类型:" @@ -10216,19 +10216,19 @@ msgstr "俄罗斯" msgid "SD Card" msgstr "SD 卡" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "SD 卡文件大小:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "SD 卡镜像 (*.raw);;所有文件 (*)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "SD 卡路径:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "SD 卡设置" @@ -10236,7 +10236,7 @@ msgstr "SD 卡设置" msgid "SD Root:" msgstr "SD 根目录:" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "SD 同步文件夹:" @@ -10271,11 +10271,11 @@ msgstr "SSL 上下文" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "保存代码(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "保存状态(&V)" @@ -10307,11 +10307,11 @@ msgstr "保存分支监视快照" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "存档导出" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "保存 FIFO 日志" @@ -10329,11 +10329,11 @@ msgstr "游戏存档" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "游戏存档文件 (*.sav);;所有文件 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "存档导入" @@ -10345,7 +10345,7 @@ msgstr "保存到最早状态存档" msgid "Save Preset" msgstr "保存预设" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "录制文件另存为" @@ -10395,23 +10395,23 @@ msgstr "保存状态 8" msgid "Save State Slot 9" msgstr "保存状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "保存状态到文件" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "保存状态到最早的插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "向选中的插槽保存状态" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "保存状态到插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "保存符号映射为...(&A)" @@ -10431,11 +10431,11 @@ msgstr "另存为预设..." msgid "Save as..." msgstr "另存为..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "将组合输出文件另存为" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10448,11 +10448,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "保存在与 ROM 相同的目录中" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "保存映射文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "保存签名文件" @@ -10460,11 +10460,11 @@ msgstr "保存签名文件" msgid "Save to Selected Slot" msgstr "保存至所选插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "保存到插槽 %1 - %2" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "保存..." @@ -10494,7 +10494,7 @@ msgstr "截图" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "搜索" @@ -10521,7 +10521,7 @@ msgid "" "for a bit and try again." msgstr "当前无法在虚拟地址空间中进行搜索。请运行一会儿游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "搜索一个指令" @@ -10529,7 +10529,7 @@ msgstr "搜索一个指令" msgid "Search games..." msgstr "搜索游戏..." -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "搜索指令" @@ -10574,11 +10574,11 @@ msgid "Select Dump Path" msgstr "选择转储路径" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "选择导出目录" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "选择角色文件" @@ -10618,7 +10618,7 @@ msgstr "选择 Skylander 合集" msgid "Select Skylander File" msgstr "选择 Skylander 文件" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "选择插槽 %1 - %2" @@ -10626,7 +10626,7 @@ msgstr "选择插槽 %1 - %2" msgid "Select State" msgstr "选择状态" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "选择状态插槽" @@ -10693,7 +10693,7 @@ msgstr "选择目录" msgid "Select a File" msgstr "选择文件" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "选择要与 SD 卡镜像同步的文件夹" @@ -10701,7 +10701,7 @@ msgstr "选择要与 SD 卡镜像同步的文件夹" msgid "Select a Game" msgstr "选择游戏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "选择 SD 卡镜像" @@ -10713,7 +10713,7 @@ msgstr "选择文件" msgid "Select a game" msgstr "选择游戏" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "选择要安装到 NAND 的软件" @@ -10721,7 +10721,7 @@ msgstr "选择要安装到 NAND 的软件" msgid "Select e-Reader Cards" msgstr "选择 e-Reader 卡" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "选择 RSO 模块地址:" @@ -10738,7 +10738,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "选择密钥文件 (OTP/SEEPROM 转储)" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "选择一个存档文件" @@ -10762,7 +10762,7 @@ msgstr "所选控制器预设不存在" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "所选游戏在游戏列表中不存在!" @@ -10790,7 +10790,7 @@ msgstr "" "选择要使用的硬件适配器。

如无法确定,请选择第一个。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10835,7 +10835,7 @@ msgstr "" "一部分电视采用被动模式。

如无法确定,请选择“关”。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10868,7 +10868,7 @@ msgstr "" "常情况下不应使用。

如无法确定,请选择“自动”。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10886,7 +10886,7 @@ msgstr "" msgid "Send" msgstr "发送" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "感应条位置:" @@ -10954,7 +10954,7 @@ msgstr "设置符号终止地址" msgid "Set symbol size (%1):" msgstr "设置符号大小 (%1):" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" @@ -10963,7 +10963,7 @@ msgstr "" "将 PAL 制式 Wii 游戏的显示模式由 50Hz (576i) 改为 60Hz (480i)。\n" "可能并不适用于所有游戏。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "设置 Wii 的系统语言。" @@ -10975,7 +10975,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10996,7 +10996,7 @@ msgstr "" "设置搜索在虚拟地址空间中使用标准内存 1 和(在 Wii 上)内存 2 映射。这将适用于" "绝大多数游戏。" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -11010,7 +11010,7 @@ msgstr "SetupWiiMemory: 无法创建 setting.txt 文件" msgid "Severity" msgstr "严重性" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "着色器编译" @@ -11032,16 +11032,16 @@ msgstr "新干线" msgid "Shinkansen Controller" msgstr "新干线控制器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "显示百分比速度" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "显示日志(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "显示工具栏(&T)" @@ -11049,11 +11049,11 @@ msgstr "显示工具栏(&T)" msgid "Show Active Title in Window Title" msgstr "在标题栏显示当前游戏名" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "显示全部" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "显示澳大利亚" @@ -11066,7 +11066,7 @@ msgstr "在 Discord 软件中显示当前游戏" msgid "Show Disabled Codes First" msgstr "优先显示禁用的代码" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "显示 ELF/DOL" @@ -11075,27 +11075,27 @@ msgstr "显示 ELF/DOL" msgid "Show Enabled Codes First" msgstr "优先显示启用的代码" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "显示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "显示帧计数器" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "显示帧生成时间" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "显示法国" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "显示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "显示德国" @@ -11107,23 +11107,23 @@ msgstr "叠加显示高尔夫模式" msgid "Show Infinity Base" msgstr "显示 Infinity 底座" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "显示输入回显" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "显示意大利" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "显示日本" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "显示韩国" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "显示延迟计数器" @@ -11131,19 +11131,19 @@ msgstr "显示延迟计数器" msgid "Show Language:" msgstr "显示语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "显示日志设置(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "显示联机信息" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "显示联机延迟" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "显示荷兰" @@ -11151,7 +11151,7 @@ msgstr "显示荷兰" msgid "Show On-Screen Display Messages" msgstr "显示屏显消息" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "显示 PAL" @@ -11160,27 +11160,27 @@ msgstr "显示 PAL" msgid "Show PC" msgstr "显示 PC" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "显示性能图表" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "显示平台" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "显示投影统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "显示地区" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "显示重录计数器" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "显示俄罗斯" @@ -11188,51 +11188,51 @@ msgstr "显示俄罗斯" msgid "Show Skylanders Portal" msgstr "显示 Skylanders 传送门" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "显示西班牙" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "显示速度颜色" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "显示统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "显示系统频率" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "显示台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "显示美国" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "显示未知" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "显示垂直消隐时间" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "显示 VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "显示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "显示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "显示全球" @@ -11245,7 +11245,7 @@ msgid "Show in Code" msgstr "在代码中显示" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "在内存中显示" @@ -11273,7 +11273,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." @@ -11281,7 +11281,7 @@ msgstr "" "在联机游戏时显示聊天消息、缓冲变化和未同步警告。

如" "无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -11324,7 +11324,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " @@ -11333,7 +11333,7 @@ msgstr "" "以毫秒显示每个不同渲染帧与标准差之间的平均时间。

如" "无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." @@ -11342,7 +11342,7 @@ msgstr "" "以毫秒显示每个渲染帧与标准差之间的平均时间。

如无法" "确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." @@ -11351,7 +11351,7 @@ msgstr "" "显示每秒呈现的不同帧数以衡量视觉平滑度。

如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked.
如无法确定,请不" "要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." @@ -11368,7 +11368,7 @@ msgstr "" "在联机游戏时显示玩家的最大延迟。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." @@ -11376,7 +11376,7 @@ msgstr "" "显示各种投影统计数据。

如无法确定,请不要选中此项。" "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -11400,7 +11400,7 @@ msgstr "切换横握" msgid "Sideways Wii Remote" msgstr "横握 Wii 遥控器" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "签名数据库" @@ -11424,7 +11424,7 @@ msgid "Signed Integer" msgstr "有符号整数" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "简体中文" @@ -11441,7 +11441,7 @@ msgstr "六轴" msgid "Size" msgstr "大小" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -11451,7 +11451,7 @@ msgstr "伸缩缓冲区的大小,以毫秒计。数值过低可能导致噼啪 msgid "Skip" msgstr "跳过" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "跳过绘制" @@ -11504,7 +11504,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;所有文件 (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -11578,7 +11578,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "按字母排序" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "声音:" @@ -11592,7 +11592,7 @@ msgstr "西班牙" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "西班牙语" @@ -11600,11 +11600,11 @@ msgstr "西班牙语" msgid "Speaker Pan" msgstr "扬声器声像" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "扬声器音量:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "专门化(默认)" @@ -11612,7 +11612,7 @@ msgstr "专门化(默认)" msgid "Specific" msgstr "特定" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11660,7 +11660,7 @@ msgstr "标准控制器" msgid "Start" msgstr "开始" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "开始联机...(&N)" @@ -11669,11 +11669,11 @@ msgstr "开始联机...(&N)" msgid "Start Branch Watch" msgstr "开始分支监视" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "开始新的金手指搜索" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "开始录制输入(&C)" @@ -11681,7 +11681,7 @@ msgstr "开始录制输入(&C)" msgid "Start Recording" msgstr "开始录制" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "以全屏启动" @@ -11693,7 +11693,7 @@ msgstr "启动时附带 Riivolution 补丁" msgid "Start with Riivolution Patches..." msgstr "启动时附带 Riivolution 补丁..." -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "游戏已启动" @@ -11753,7 +11753,7 @@ msgstr "单步成功!" msgid "Stepping" msgstr "步进" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "立体声" @@ -11782,12 +11782,12 @@ msgid "Stick" msgstr "摇杆" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "停止播放/录制输入" @@ -11829,7 +11829,7 @@ msgstr "" "开启 = XFB 副本为纹理
关闭 = XFB 副本为内存(和纹理)" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "拉伸到窗口大小" @@ -11849,7 +11849,7 @@ msgstr "拨弦" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "样式" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -11868,8 +11868,8 @@ msgstr "手写笔" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "成功" @@ -11896,7 +11896,7 @@ msgstr "在 %1 个存档文件中 %n 个导出成功。" msgid "Successfully exported save files" msgstr "成功导出存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "已成功从 NAND 中提取证书" @@ -11908,12 +11908,12 @@ msgstr "提取文件成功。" msgid "Successfully extracted system data." msgstr "提取系统数据成功。" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "导入存档文件成功。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "成功将此软件安装到 NAND。" @@ -11936,12 +11936,12 @@ msgstr "支持" msgid "Supported file formats" msgstr "支持的文件格式" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "支持 SD 和 SDHC 格式。默认大小为 128 MB。" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "环绕" @@ -12001,7 +12001,7 @@ msgstr "符号名:" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "符号" @@ -12028,7 +12028,7 @@ msgid "" msgstr "" "同步 GPU 与 CPU 线程以帮助防止双核模式下的随机卡死。(开=兼容,关=快速)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -12047,11 +12047,11 @@ msgid "Synchronizing save data..." msgstr "正在同步存档数据..." #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "系统语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "TAS 输入" @@ -12064,7 +12064,7 @@ msgstr "TAS 工具" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "标签" @@ -12082,7 +12082,7 @@ msgstr "尾" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "屏幕截图" @@ -12123,7 +12123,7 @@ msgstr "纹理缓存" msgid "Texture Cache Accuracy" msgstr "纹理缓存精度" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "转储纹理" @@ -12135,7 +12135,7 @@ msgstr "纹理过滤" msgid "Texture Filtering:" msgstr "纹理过滤:" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "显示纹理格式" @@ -12176,13 +12176,13 @@ msgstr "此 IPL 文件不是已知的正确转储。(CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "缺少杰作分区。" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "该 NAND 无法修复。建议备份您当前的数据并使用新的 NAND 启动。" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "NAND 已修复。" @@ -12199,7 +12199,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "此 Skylander 拥有的金钱数量。介于 0 至 65000 之间" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -12534,7 +12534,7 @@ msgstr "指定的公用密钥索引是 {0} ,但应该为 {1} 。" msgid "The specified file \"{0}\" does not exist" msgstr "指定的文件 “{0}” 不存在" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -12594,7 +12594,7 @@ msgstr "缺少更新分区。" msgid "The update partition is not at its normal position." msgstr "更新分区未处于正常位置。" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12620,7 +12620,7 @@ msgstr "分区 {0} 未正确对齐。" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "主题" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -12958,7 +12958,7 @@ msgstr "超时" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "标题" @@ -12967,12 +12967,12 @@ msgid "To" msgstr "至" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "至:" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "切换全屏(&F)" @@ -13061,7 +13061,7 @@ msgstr "工具控件" msgid "Toolbar" msgstr "工具栏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "顶部" @@ -13112,7 +13112,7 @@ msgid "Toy code:" msgstr "玩具代码:" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "繁体中文" @@ -13132,8 +13132,8 @@ msgstr "陷阱大师" msgid "Trap Team" msgstr "陷阱小队" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "穿透错误" @@ -13214,7 +13214,7 @@ msgstr "USB Gecko" msgid "USB Whitelist Error" msgstr "USB 白名单错误" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " @@ -13224,7 +13224,7 @@ msgstr "" "低端硬件。

如无法确定,请选择此模式。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -13235,7 +13235,7 @@ msgstr "" "

除非使用混合超着色器遇到卡顿并且拥有非常强大的 " "GPU,否则不要使用此选项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -13247,7 +13247,7 @@ msgstr "" "

在理想情况下将在消除着色器编译卡顿的同时尽可能减小性能影响,但效果因" "视频驱动的行为而异。" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "无法自动检测 RSO 模块" @@ -13317,11 +13317,11 @@ msgstr "未压缩的 GC/Wii 镜像 (*.iso *.gcm)" msgid "Undead" msgstr "亡灵" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "撤销载入状态" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "撤销保存状态" @@ -13341,7 +13341,7 @@ msgstr "" "卸载 WAD 会将该游戏的当前已安装版本从 NAND 中移除,而不会删除其存档。是否继" "续?" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "美国" @@ -13433,7 +13433,7 @@ msgid "Unknown(%1 %2).sky" msgstr "Unknown(%1 %2).sky" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "Unknown(%1).bin" @@ -13449,9 +13449,9 @@ msgstr "卸载 ROM" msgid "Unlock Cursor" msgstr "解锁光标" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" -msgstr "" +msgstr "解锁于 %1" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -13492,7 +13492,7 @@ msgid "Up" msgstr "上" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "更新" @@ -13565,7 +13565,7 @@ msgstr "使用所有 Wii 存档数据" msgid "Use Built-In Database of Game Names" msgstr "使用内建数据库游戏名称" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "使用无损编解码器 (FFV1)" @@ -13573,7 +13573,7 @@ msgstr "使用无损编解码器 (FFV1)" msgid "Use Mouse Controlled Pointing" msgstr "使用鼠标控制指针" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "使用 PAL60 模式 (EuRGB60)" @@ -13587,7 +13587,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -13667,7 +13667,7 @@ msgstr "" "的提速,取决于游戏和/或 GPU。

如无法确定,请选中此" "项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " @@ -13676,7 +13676,7 @@ msgstr "" "使用整个屏幕进行渲染。

如果禁用,则会创建一个渲染窗口。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked.
其他情况下,如无法确" "定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13957,7 +13957,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -14070,7 +14070,7 @@ msgstr "西方 (Windows-1252)" msgid "Whammy" msgstr "颤音" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -14081,7 +14081,7 @@ msgstr "" "卡中启用了“特殊多级纹理检测”,则特殊基本纹理也会被转储。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -14092,7 +14092,7 @@ msgstr "" "强选项卡中启用了“特殊多级纹理检测”,则特殊多级纹理也会被转储。" "

如无法确定,请选中此项。" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "USB 直通设备白名单" @@ -14142,7 +14142,7 @@ msgstr "Wii 遥控器按键" msgid "Wii Remote Gyroscope" msgstr "Wii 遥控器陀螺仪" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "Wii 遥控器设置" @@ -14170,7 +14170,7 @@ msgstr "Wii 和 Wii 遥控器" msgid "Wii data is not public yet" msgstr "Wii 数据尚未公开" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 存档文件 (*.bin);; 所有文件 (*)" @@ -14178,7 +14178,7 @@ msgstr "Wii 存档文件 (*.bin);; 所有文件 (*)" msgid "WiiTools Signature MEGA File" msgstr "WiiTools 签名 MEGA 文件" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "窗口分辨率" @@ -14209,7 +14209,7 @@ msgstr "全球" msgid "Write" msgstr "写入" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "写入 JIT 区块日志转储" @@ -14258,11 +14258,11 @@ msgstr "区域错误" msgid "Wrong revision" msgstr "错误修订版" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "已写入 “%1”。" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "已写入 “{0}”。" @@ -14313,7 +14313,7 @@ msgstr "是" msgid "Yes to &All" msgstr "全部选是(&A)" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " @@ -14322,7 +14322,7 @@ msgstr "" "即将把 %2 的文件内容转换到 %1 的文件夹中。文件夹的所有当前内容将被删除。请确" "定是否要继续?" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -14455,7 +14455,7 @@ msgstr "" "您想现在停下来修复此问题吗?\n" "如果选择“否”,音频可能会嘈杂混乱。" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14676,6 +14676,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Dolphin 团队。“GameCube” 和 “Wii” 是任天堂的商标。Dolphin 与任天" +"堂没有任何形式的关联。" #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index 238f1899e3..87594fdadf 100644 --- a/Languages/po/zh_TW.po +++ b/Languages/po/zh_TW.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 20:21+0200\n" +"POT-Creation-Date: 2024-07-02 08:02+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Narusawa Yui , 2016,2018\n" "Language-Team: Chinese (Taiwan) (http://app.transifex.com/delroth/dolphin-" @@ -84,7 +84,7 @@ msgid "" "wants to join your party." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:73 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:74 msgid "%1 %" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid "%1 *" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:314 msgid "" "%1 FIFO bytes\n" "%2 memory bytes\n" @@ -170,18 +170,18 @@ msgstr "" msgid "%1 doesn't support this feature." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:294 msgid "" "%1 frame(s)\n" "%2 object(s)\n" "Current Frame: %3" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:913 msgid "%1 has joined" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:920 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:918 msgid "%1 has left" msgstr "" @@ -189,11 +189,11 @@ msgstr "" msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 msgid "%1 is not a valid ROM" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1042 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1040 msgid "%1 is now golfing" msgstr "" @@ -205,8 +205,8 @@ msgstr "" msgid "%1 memory ranges" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:252 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:321 msgid "%1 ms" msgstr "%1 ms" @@ -223,7 +223,7 @@ msgstr "" msgid "%1 sessions found" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:406 msgid "%1%" msgstr "" @@ -331,11 +331,11 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:649 +#: Source/Core/DolphinQt/MenuBar.cpp:646 msgid "&About" msgstr "關於(&A)" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -352,11 +352,11 @@ msgstr "新增功能 (&A)" msgid "&Add..." msgstr "新增... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:537 +#: Source/Core/DolphinQt/MenuBar.cpp:534 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Audio Settings" msgstr "聲音設定 (&A)" @@ -372,11 +372,11 @@ msgstr "" msgid "&Break On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:506 +#: Source/Core/DolphinQt/MenuBar.cpp:503 msgid "&Breakpoints" msgstr "中斷點(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:632 +#: Source/Core/DolphinQt/MenuBar.cpp:629 msgid "&Bug Tracker" msgstr "" @@ -384,15 +384,15 @@ msgstr "" msgid "&Cancel" msgstr "取消 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:255 +#: Source/Core/DolphinQt/MenuBar.cpp:253 msgid "&Cheats Manager" msgstr "作弊碼管理器 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:642 +#: Source/Core/DolphinQt/MenuBar.cpp:639 msgid "&Check for Updates..." msgstr "檢查更新 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1022 msgid "&Clear Symbols" msgstr "" @@ -400,7 +400,7 @@ msgstr "" msgid "&Clone..." msgstr "相容版 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:471 +#: Source/Core/DolphinQt/MenuBar.cpp:468 msgid "&Code" msgstr "代碼 (&C)" @@ -408,7 +408,7 @@ msgstr "代碼 (&C)" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:584 +#: Source/Core/DolphinQt/MenuBar.cpp:581 msgid "&Controller Settings" msgstr "控制器設定(&C)" @@ -431,13 +431,13 @@ msgstr "刪除 (&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:360 msgid "&Delete Watch" msgstr "刪除監視 (&D)" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:340 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:339 msgid "&Delete Watches" msgstr "" @@ -451,11 +451,11 @@ msgstr "編輯代碼 (&E)" msgid "&Edit..." msgstr "編輯 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:235 +#: Source/Core/DolphinQt/MenuBar.cpp:233 msgid "&Eject Disc" msgstr "退出碟片 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Emulation" msgstr "模擬 (&E)" @@ -476,40 +476,40 @@ msgid "&Export as .gci..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:287 -#: Source/Core/DolphinQt/MenuBar.cpp:225 +#: Source/Core/DolphinQt/MenuBar.cpp:223 msgid "&File" msgstr "檔案 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:604 +#: Source/Core/DolphinQt/MenuBar.cpp:601 msgid "&Font..." msgstr "字體... (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:355 +#: Source/Core/DolphinQt/MenuBar.cpp:352 msgid "&Frame Advance" msgstr "畫格步進(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:586 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1024 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:628 +#: Source/Core/DolphinQt/MenuBar.cpp:625 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:578 msgid "&Graphics Settings" msgstr "影像設定(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:619 +#: Source/Core/DolphinQt/MenuBar.cpp:616 msgid "&Help" msgstr "說明(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:585 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Hotkey Settings" msgstr "快捷鍵設定(&D)" @@ -529,7 +529,7 @@ msgstr "" msgid "&Import..." msgstr "匯入... (&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:261 +#: Source/Core/DolphinQt/MenuBar.cpp:259 msgid "&Infinity Base" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:531 +#: Source/Core/DolphinQt/MenuBar.cpp:528 msgid "&JIT" msgstr "&JIT" @@ -553,11 +553,11 @@ msgstr "語言 (&L)" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "&Load State" msgstr "讀取進度(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1033 +#: Source/Core/DolphinQt/MenuBar.cpp:1030 msgid "&Load Symbol Map" msgstr "" @@ -567,11 +567,11 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:343 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:342 msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:463 +#: Source/Core/DolphinQt/MenuBar.cpp:460 msgid "&Lock Widgets In Place" msgstr "" @@ -579,11 +579,11 @@ msgstr "" msgid "&Log On Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:515 +#: Source/Core/DolphinQt/MenuBar.cpp:512 msgid "&Memory" msgstr "記憶卡(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:778 +#: Source/Core/DolphinQt/MenuBar.cpp:775 msgid "&Movie" msgstr "影片(&M)" @@ -591,7 +591,7 @@ msgstr "影片(&M)" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:523 +#: Source/Core/DolphinQt/MenuBar.cpp:520 msgid "&Network" msgstr "" @@ -600,23 +600,23 @@ msgid "&No" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:136 -#: Source/Core/DolphinQt/MenuBar.cpp:227 Source/Core/DolphinQt/MenuBar.cpp:229 +#: Source/Core/DolphinQt/MenuBar.cpp:225 Source/Core/DolphinQt/MenuBar.cpp:227 msgid "&Open..." msgstr "開啟(&O)..." -#: Source/Core/DolphinQt/MenuBar.cpp:572 +#: Source/Core/DolphinQt/MenuBar.cpp:569 msgid "&Options" msgstr "選項(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1053 +#: Source/Core/DolphinQt/MenuBar.cpp:1050 msgid "&Patch HLE Functions" msgstr "修正 HLE 功能 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "&Pause" msgstr "暫停(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Play" msgstr "執行(&P)" @@ -624,7 +624,7 @@ msgstr "執行(&P)" msgid "&Properties" msgstr "屬性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:793 +#: Source/Core/DolphinQt/MenuBar.cpp:790 msgid "&Read-Only Mode" msgstr "唯讀模式(&R)" @@ -632,7 +632,7 @@ msgstr "唯讀模式(&R)" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:479 +#: Source/Core/DolphinQt/MenuBar.cpp:476 msgid "&Registers" msgstr "寄存器(&R)" @@ -650,11 +650,11 @@ msgid "&Rename symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:353 +#: Source/Core/DolphinQt/MenuBar.cpp:350 msgid "&Reset" msgstr "重新啟動(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:252 +#: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Resource Pack Manager" msgstr "" @@ -662,7 +662,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Save Symbol Map" msgstr "" @@ -670,7 +670,7 @@ msgstr "" msgid "&Scan e-Reader Card(s)..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:260 +#: Source/Core/DolphinQt/MenuBar.cpp:258 msgid "&Skylanders Portal" msgstr "" @@ -678,7 +678,7 @@ msgstr "" msgid "&Speed Limit:" msgstr "限制速度 (&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Stop" msgstr "停止(&S)" @@ -686,7 +686,7 @@ msgstr "停止(&S)" msgid "&Theme:" msgstr "主題 (&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:488 +#: Source/Core/DolphinQt/MenuBar.cpp:485 msgid "&Threads" msgstr "" @@ -694,7 +694,7 @@ msgstr "" msgid "&Tool" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:250 +#: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" msgstr "工具(&T)" @@ -704,21 +704,21 @@ msgstr "" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:346 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:345 msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:437 +#: Source/Core/DolphinQt/MenuBar.cpp:434 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:498 +#: Source/Core/DolphinQt/MenuBar.cpp:495 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:618 msgid "&Website" msgstr "網站(&W)" @@ -730,11 +730,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -782,7 +782,7 @@ msgstr "" msgid "--> %1" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:224 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:229 msgid "--Unknown--" msgstr "" @@ -848,7 +848,7 @@ msgstr "" msgid "16-bit Unsigned Integer" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166 msgid "16:9" msgstr "" @@ -932,7 +932,7 @@ msgstr "" msgid "4 Mbit (59 blocks)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:165 msgid "4:3" msgstr "" @@ -1033,7 +1033,7 @@ msgstr "" msgid "Disabled in Hardcore Mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:432 msgid "If unsure, leave this unchecked." msgstr "" @@ -1137,7 +1137,7 @@ msgid "" "Use at your own risk.\n" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:140 +#: Source/Core/DolphinQt/CheatsManager.cpp:139 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:410 msgid "AR Code" msgstr "" @@ -1179,8 +1179,8 @@ msgstr "" msgid "Achievement Settings" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:25 -#: Source/Core/DolphinQt/MenuBar.cpp:274 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 +#: Source/Core/DolphinQt/MenuBar.cpp:272 msgid "Achievements" msgstr "" @@ -1260,7 +1260,7 @@ msgstr "" msgid "Active" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:76 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78 msgid "Active Infinity Figures:" msgstr "" @@ -1272,7 +1272,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:317 msgid "Adapter" msgstr "" @@ -1280,7 +1280,7 @@ msgstr "" msgid "Adapter Detected" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89 msgid "Adapter:" msgstr "配接器:" @@ -1337,7 +1337,7 @@ msgstr "" #: 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:329 msgid "Add..." msgstr "新增..." @@ -1351,7 +1351,7 @@ msgstr "新增..." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1028 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "Address" msgstr "位址" @@ -1545,7 +1545,7 @@ msgstr "" msgid "Allow Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220 msgid "Allow Writes to SD Card" msgstr "" @@ -1585,7 +1585,7 @@ msgstr "" msgid "Anaglyph" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:172 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:169 msgid "Analyze" msgstr "" @@ -1611,15 +1611,15 @@ msgstr "邊緣抗鋸齒:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1718 +#: Source/Core/DolphinQt/MenuBar.cpp:1708 msgid "Append signature to" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1046 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1047 msgid "Appl&y Signature File..." msgstr "" @@ -1637,7 +1637,7 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1741 +#: Source/Core/DolphinQt/MenuBar.cpp:1731 msgid "Apply signature file" msgstr "" @@ -1669,16 +1669,16 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:319 msgid "Aspect Ratio" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 msgid "Aspect Ratio:" msgstr "畫面比例:" @@ -1719,11 +1719,11 @@ msgstr "" msgid "Audio" msgstr "聲音" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:81 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:82 msgid "Audio Backend:" msgstr "聲音裝置:" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:140 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:141 msgid "Audio Stretching Settings" msgstr "" @@ -1739,7 +1739,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:76 msgid "Auto" msgstr "自動" @@ -1760,7 +1760,7 @@ msgid "" "Please select a specific internal resolution." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 msgid "Auto-Adjust Window Size" msgstr "" @@ -1768,15 +1768,15 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "Auto-detect RSO modules?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:239 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240 msgid "Automatically Sync with Folder" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:249 msgid "" "Automatically adjusts the window size to the internal resolution." "

If unsure, leave this unchecked." @@ -1824,19 +1824,19 @@ msgstr "" msgid "Back Chain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:313 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:314 msgid "Backend" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:169 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:170 msgid "Backend Multithreading" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:78 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:79 msgid "Backend Settings" msgstr "裝置設定" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:86 msgid "Backend:" msgstr "" @@ -1879,7 +1879,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Banner" msgstr "橫幅" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Base priority" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:55 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:56 msgid "Basic" msgstr "基本" @@ -1955,11 +1955,11 @@ msgstr "" msgid "Binary SSL (write)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:154 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:155 msgid "Bitrate (kbps):" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:300 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:305 msgid "" "Blank figure creation failed at:\n" "%1\n" @@ -1969,7 +1969,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1010 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:686 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "Block Size" msgstr "" @@ -2005,7 +2005,7 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:591 +#: Source/Core/DolphinQt/MenuBar.cpp:588 msgid "Boot to Pause" msgstr "" @@ -2017,11 +2017,11 @@ msgstr "" msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:182 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:183 msgid "Borderless Fullscreen" msgstr "無框全螢幕" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:359 msgid "Bottom" msgstr "下方" @@ -2198,20 +2198,20 @@ msgstr "" msgid "Broadband Adapter MAC Address" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:267 +#: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "Browse &NetPlay Sessions...." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:145 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:146 msgid "Buffer Size:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:930 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:928 msgid "Buffer size changed to %1" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Buffer:" msgstr "緩衝:" @@ -2260,7 +2260,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1042 msgid "C&reate Signature File..." msgstr "" @@ -2284,7 +2284,7 @@ msgstr "" msgid "Cached Interpreter (slower)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:335 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:336 msgid "" "Caches custom textures to system RAM on startup.

This can require " "exponentially more RAM but fixes possible stuttering." @@ -2364,11 +2364,11 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1391 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 #: qtbase/src/gui/kernel/qplatformtheme.cpp:732 msgid "Cancel" msgstr "取消" @@ -2453,7 +2453,7 @@ msgstr "" msgid "Change &Disc" msgstr "更換光碟(&D)" -#: Source/Core/DolphinQt/MenuBar.cpp:234 +#: Source/Core/DolphinQt/MenuBar.cpp:232 msgid "Change &Disc..." msgstr "更換光碟(&D)..." @@ -2475,7 +2475,7 @@ msgid "" "

If unsure, select Clean." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:285 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" "Changes the color of the FPS counter depending on emulation speed." "

If unsure, leave this checked." @@ -2493,7 +2493,7 @@ msgid "" "and you may zoom up to the camera's origin point." msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:68 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:67 msgid "Changing cheats will only take effect when the game is restarted." msgstr "" @@ -2501,7 +2501,7 @@ msgstr "" msgid "Channel Partition (%1)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 msgid "Character entered is invalid!" msgstr "" @@ -2513,7 +2513,7 @@ msgstr "聊天" msgid "Cheat Code Editor" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:175 +#: Source/Core/DolphinQt/CheatsManager.cpp:174 msgid "Cheat Search" msgstr "尋找作弊代碼" @@ -2521,7 +2521,7 @@ msgstr "尋找作弊代碼" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:299 +#: Source/Core/DolphinQt/MenuBar.cpp:297 msgid "Check NAND..." msgstr "" @@ -2559,11 +2559,11 @@ msgstr "選擇一個要開啟的檔案" msgid "Choose a file to open or create" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 +#: Source/Core/DolphinQt/MenuBar.cpp:1751 msgid "Choose priority input file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1766 +#: Source/Core/DolphinQt/MenuBar.cpp:1756 msgid "Choose secondary input file" msgstr "" @@ -2594,7 +2594,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" msgstr "清除" @@ -2602,7 +2602,7 @@ msgstr "清除" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:907 +#: Source/Core/DolphinQt/MenuBar.cpp:904 msgid "Clear Cache" msgstr "" @@ -2623,7 +2623,7 @@ msgstr "" msgid "Close" msgstr "關閉" -#: Source/Core/DolphinQt/MenuBar.cpp:574 Source/Core/DolphinQt/MenuBar.cpp:577 +#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 msgid "Co&nfiguration" msgstr "" @@ -2667,7 +2667,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1048 +#: Source/Core/DolphinQt/MenuBar.cpp:1045 msgid "Combine &Two Signature Files..." msgstr "" @@ -2694,7 +2694,7 @@ msgid "" "release of the game. Dolphin can't verify this." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:136 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:137 msgid "Compile Shaders Before Starting" msgstr "" @@ -2704,7 +2704,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1011 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:687 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Compression" msgstr "" @@ -2819,7 +2819,7 @@ msgstr "設定" msgid "Configure Controller" msgstr "" -#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:45 +#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:44 #: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35 msgid "Configure Dolphin" msgstr "設定 Dolphin" @@ -2843,7 +2843,7 @@ msgstr "設定輸出" msgid "Confirm" msgstr "確認" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203 msgid "Confirm backend change" msgstr "" @@ -2851,7 +2851,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1301 +#: Source/Core/DolphinQt/MenuBar.cpp:1291 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2862,15 +2862,15 @@ msgstr "" msgid "Connect" msgstr "連接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 msgid "Connect Balance Board" msgstr "連接平衡板" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161 msgid "Connect USB Keyboard" msgstr "連接 USB 鍵盤" -#: Source/Core/DolphinQt/MenuBar.cpp:335 +#: Source/Core/DolphinQt/MenuBar.cpp:332 msgid "Connect Wii Remote %1" msgstr "連接 Wii Remote %1" @@ -2890,7 +2890,7 @@ msgstr "連接 Wii Remote 3" msgid "Connect Wii Remote 4" msgstr "連接 Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:328 +#: Source/Core/DolphinQt/MenuBar.cpp:325 msgid "Connect Wii Remotes" msgstr "連接 Wii Remote" @@ -3018,8 +3018,8 @@ msgstr "" msgid "Convergence:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Conversion failed." msgstr "" @@ -3027,9 +3027,9 @@ msgstr "" msgid "Convert" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:318 msgid "Convert File to Folder Now" msgstr "" @@ -3037,9 +3037,9 @@ msgstr "" msgid "Convert File..." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:292 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:269 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293 msgid "Convert Folder to File Now" msgstr "" @@ -3059,8 +3059,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:434 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:280 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:305 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306 msgid "Converting..." msgstr "" @@ -3250,7 +3250,7 @@ msgid "" "options." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 msgid "Couldn't look up central server" msgstr "" @@ -3266,13 +3266,13 @@ msgstr "" msgid "Country:" msgstr "國別:" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:113 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:251 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:115 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:256 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590 msgid "Create" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:294 msgid "Create Infinity File" msgstr "" @@ -3303,11 +3303,11 @@ msgstr "" msgid "Critical" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:166 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 msgid "Crop" msgstr "剪裁" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:382 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:383 msgid "" "Crops the picture from its native aspect ratio (which rarely exactly matches " "4:3 or 16:9), to the specific user target aspect ratio (e.g. 4:3 or 16:9)." @@ -3319,18 +3319,18 @@ msgstr "" msgid "Crossfade" msgstr "Crossfade" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:174 msgid "Cull Vertices on the CPU" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:400 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:401 msgid "" "Cull vertices on the CPU to reduce the number of draw calls required. May " "affect performance and draw statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:310 +#: Source/Core/DolphinQt/MenuBar.cpp:307 msgid "Current Region" msgstr "" @@ -3350,11 +3350,11 @@ msgstr "" msgid "Current thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" msgstr "" @@ -3362,15 +3362,15 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 msgid "Custom Aspect Ratio Width" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:63 msgid "Custom Aspect Ratio:" msgstr "" @@ -3413,7 +3413,7 @@ msgstr "" msgid "DK Bongos" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:48 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:49 msgid "DSP Emulation Engine" msgstr "" @@ -3421,15 +3421,15 @@ msgstr "" msgid "DSP HLE (fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:52 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 msgid "DSP HLE (recommended)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:55 msgid "DSP LLE Interpreter (very slow)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:53 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:54 msgid "DSP LLE Recompiler (slow)" msgstr "" @@ -3500,7 +3500,7 @@ msgstr "非作用區" msgid "Debug" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:83 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:448 msgid "Debugging" msgstr "" @@ -3510,7 +3510,7 @@ msgstr "" msgid "Decimal" msgstr "Decimal" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:101 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:102 msgid "Decoding Quality:" msgstr "" @@ -3557,7 +3557,7 @@ msgstr "預設值" msgid "Default Config (Read Only)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:367 msgid "Default Device" msgstr "" @@ -3573,7 +3573,7 @@ msgstr "預設的 ISO:" msgid "Default thread" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:193 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:194 msgid "Defer EFB Cache Invalidation" msgstr "" @@ -3581,7 +3581,7 @@ msgstr "" msgid "Defer EFB Copies to RAM" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:404 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:405 msgid "" "Defers invalidation of the EFB access cache until a GPU synchronization " "command is executed. If disabled, the cache will be invalidated with every " @@ -3627,7 +3627,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/GameList/GameList.cpp:1002 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:675 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "描述" @@ -3676,7 +3676,7 @@ msgstr "" msgid "Detect" msgstr "檢測" -#: Source/Core/DolphinQt/MenuBar.cpp:1392 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 msgid "Detecting RSO Modules" msgstr "" @@ -3706,7 +3706,7 @@ msgstr "裝置設定" msgid "Device VID (e.g., 057e)" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:129 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:130 msgid "Device:" msgstr "" @@ -3714,7 +3714,7 @@ msgstr "" msgid "Did not recognize %1 as a valid Riivolution XML file." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190 msgid "Dims the screen after five minutes of inactivity." msgstr "" @@ -3738,7 +3738,7 @@ msgstr "" msgid "Disable Copy Filter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:112 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 msgid "Disable EFB VRAM Copies" msgstr "" @@ -3746,11 +3746,11 @@ msgstr "" msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:887 +#: Source/Core/DolphinQt/MenuBar.cpp:884 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:893 +#: Source/Core/DolphinQt/MenuBar.cpp:890 msgid "Disable Fastmem Arena" msgstr "" @@ -3758,11 +3758,11 @@ msgstr "" msgid "Disable Fog" msgstr "關閉霧化" -#: Source/Core/DolphinQt/MenuBar.cpp:879 +#: Source/Core/DolphinQt/MenuBar.cpp:876 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:899 +#: Source/Core/DolphinQt/MenuBar.cpp:896 msgid "Disable Large Entry Points Map" msgstr "" @@ -3777,7 +3777,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:345 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:346 msgid "" "Disables the VRAM copy of the EFB, forcing a round-trip to RAM. Inhibits all " "upscaling.

If unsure, leave this unchecked.
If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:339 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:340 msgid "" "Dumps the contents of EFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:342 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:343 msgid "" "Dumps the contents of XFB copies to User/Dump/Textures/." "

If unsure, leave this unchecked." @@ -4139,11 +4139,11 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:95 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 msgid "Dutch" msgstr "Dutch" -#: Source/Core/DolphinQt/MenuBar.cpp:244 +#: Source/Core/DolphinQt/MenuBar.cpp:242 msgid "E&xit" msgstr "離開(&X)" @@ -4167,7 +4167,7 @@ msgid "" "important." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:128 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:125 msgid "Early Memory Updates" msgstr "" @@ -4241,7 +4241,7 @@ msgstr "" msgid "Empty" msgstr "" -#: Source/Core/Core/Core.cpp:247 +#: Source/Core/Core/Core.cpp:242 msgid "Emu Thread already running" msgstr "模擬器線程已經執行中" @@ -4249,7 +4249,7 @@ msgstr "模擬器線程已經執行中" msgid "Emulate Disc Speed" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:62 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:64 msgid "Emulate Infinity Base" msgstr "" @@ -4267,7 +4267,7 @@ msgid "" "Defaults to True" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:259 +#: Source/Core/DolphinQt/MenuBar.cpp:257 msgid "Emulated USB Devices" msgstr "" @@ -4289,16 +4289,16 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30 #: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:128 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:129 #: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:138 msgid "Enable" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:93 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:94 msgid "Enable API Validation Layers" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:143 msgid "Enable Audio Stretching" msgstr "" @@ -4346,7 +4346,7 @@ msgstr "" msgid "Enable FPRF" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:113 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:114 msgid "Enable Graphics Mods" msgstr "" @@ -4372,7 +4372,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:918 +#: Source/Core/DolphinQt/MenuBar.cpp:915 msgid "Enable JIT Block Profiling" msgstr "" @@ -4385,7 +4385,7 @@ msgstr "開啟 MMU" msgid "Enable Progress Notifications" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:167 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" msgstr "開啟逐行掃瞄" @@ -4394,11 +4394,11 @@ msgid "Enable RetroAchievements.org Integration" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354 msgid "Enable Rumble" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 msgid "Enable Screen Saver" msgstr "" @@ -4418,11 +4418,11 @@ msgstr "" msgid "Enable Usage Statistics Reporting" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 msgid "Enable Wireframe" msgstr "開啟線框" @@ -4478,7 +4478,7 @@ msgid "" "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" "Enables Dolby Pro Logic II emulation using 5.1 surround. Certain backends " "only." @@ -4509,7 +4509,7 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:390 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:391 msgid "" "Enables multithreaded command submission in backends where supported. " "Enabling this option may result in a performance improvement on systems with " @@ -4517,7 +4517,7 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:386 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:387 msgid "" "Enables progressive scan if supported by the emulated software. Most games " "don't have any issue with this.

If unsure, leave " @@ -4534,7 +4534,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" @@ -4560,7 +4560,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" "Enables the WiiLink service for WiiConnect24 channels.\n" "WiiLink is an alternate provider for the discontinued WiiConnect24 Channels " @@ -4568,7 +4568,7 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:312 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " "in debugging graphical issues. On the Vulkan and D3D backends, this also " @@ -4576,7 +4576,7 @@ msgid "" "unsure, leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:368 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:369 msgid "" "Encodes frame dumps using the FFV1 codec.

If " "unsure, leave this unchecked." @@ -4605,7 +4605,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:80 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 msgid "English" msgstr "English" @@ -4622,7 +4622,7 @@ msgstr "" msgid "Enter USB device ID" msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 msgid "Enter address to watch:" msgstr "" @@ -4646,7 +4646,7 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1363 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 msgid "Enter the RSO module address:" msgstr "" @@ -4685,9 +4685,9 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745 #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 #: Source/Core/DolphinQt/GBAWidget.cpp:583 #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 @@ -4700,24 +4700,24 @@ msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1608 #: Source/Core/DolphinQt/MainWindow.cpp:1615 #: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:207 Source/Core/DolphinQt/MenuBar.cpp:1257 -#: Source/Core/DolphinQt/MenuBar.cpp:1347 -#: Source/Core/DolphinQt/MenuBar.cpp:1370 -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1417 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 -#: Source/Core/DolphinQt/MenuBar.cpp:1659 -#: Source/Core/DolphinQt/MenuBar.cpp:1671 -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -#: Source/Core/DolphinQt/MenuBar.cpp:1783 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1337 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1649 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1673 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1721 +#: Source/Core/DolphinQt/MenuBar.cpp:1773 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:985 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1118 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1106 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1116 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:336 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:342 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:349 @@ -4747,7 +4747,7 @@ msgstr "" msgid "Error collecting save data!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:269 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:274 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:600 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:607 msgid "Error converting value" @@ -4852,12 +4852,12 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:312 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 msgid "Exclusive Ubershaders" msgstr "" @@ -4901,11 +4901,11 @@ msgstr "" msgid "Expected variable name." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:188 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:189 msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:326 +#: Source/Core/DolphinQt/MenuBar.cpp:323 msgid "Export All Wii Saves" msgstr "匯出全部 Wii 存檔" @@ -4920,7 +4920,7 @@ msgstr "" msgid "Export Recording" msgstr "匯出錄像" -#: Source/Core/DolphinQt/MenuBar.cpp:786 +#: Source/Core/DolphinQt/MenuBar.cpp:783 msgid "Export Recording..." msgstr "匯出錄像..." @@ -4948,7 +4948,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1182 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4976,7 +4976,7 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:300 +#: Source/Core/DolphinQt/MenuBar.cpp:298 msgid "Extract Certificates from NAND" msgstr "" @@ -5014,7 +5014,7 @@ msgid "FD" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:40 -#: Source/Core/DolphinQt/MenuBar.cpp:257 +#: Source/Core/DolphinQt/MenuBar.cpp:255 msgid "FIFO Player" msgstr "" @@ -5032,7 +5032,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1732 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5052,7 +5052,7 @@ msgstr "" msgid "Failed to connect to Redump.org" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:986 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:984 msgid "Failed to connect to server: %1" msgstr "" @@ -5073,7 +5073,7 @@ msgstr "" msgid "Failed to create DXGI factory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:299 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:304 msgid "Failed to create Infinity file" msgstr "" @@ -5127,7 +5127,7 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1257 +#: Source/Core/DolphinQt/MenuBar.cpp:1251 msgid "Failed to extract certificates from NAND" msgstr "" @@ -5154,18 +5154,18 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 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:1165 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 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 -> " @@ -5192,7 +5192,7 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failed to install this title to the NAND." msgstr "" @@ -5202,8 +5202,8 @@ msgid "" "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1385 -#: Source/Core/DolphinQt/MenuBar.cpp:1442 +#: Source/Core/DolphinQt/MenuBar.cpp:1375 +#: Source/Core/DolphinQt/MenuBar.cpp:1432 msgid "Failed to load RSO module at %1" msgstr "" @@ -5215,7 +5215,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1671 +#: Source/Core/DolphinQt/MenuBar.cpp:1661 msgid "Failed to load map file '%1'" msgstr "" @@ -5243,11 +5243,11 @@ msgstr "" msgid "Failed to modify Skylander!" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:208 +#: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:433 +#: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5295,11 +5295,11 @@ msgstr "" msgid "Failed to open server" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:171 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173 msgid "Failed to open the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:172 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174 msgid "" "Failed to open the Infinity file:\n" "%1\n" @@ -5358,11 +5358,11 @@ msgstr "" msgid "Failed to read selected savefile(s) from memory card." msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:181 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:183 msgid "Failed to read the Infinity file!" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:182 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:184 msgid "" "Failed to read the Infinity file:\n" "%1\n" @@ -5423,27 +5423,27 @@ msgstr "" msgid "Failed to save Branch Watch snapshot \"%1\"" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:243 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:240 msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1660 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1695 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1684 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1784 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 msgid "Failed to save to signature file '%1'" msgstr "" -#: Source/Core/Core/Core.cpp:538 +#: Source/Core/Core/Core.cpp:533 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 > " @@ -5494,7 +5494,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 #: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1123 +#: Source/Core/DolphinQt/MenuBar.cpp:1117 msgid "Failure" msgstr "" @@ -5530,7 +5530,7 @@ msgstr "" msgid "Field of View" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:247 msgid "Figure Number:" msgstr "" @@ -5544,7 +5544,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1009 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Format" msgstr "" @@ -5552,24 +5552,24 @@ msgstr "" msgid "File Format:" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:86 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:83 msgid "File Info" msgstr "檔案資訊" #: Source/Core/DolphinQt/GameList/GameList.cpp:1004 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "File Name" msgstr "檔案名稱" #: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:681 msgid "File Size" msgstr "檔案大小" @@ -5687,7 +5687,7 @@ msgid "" "\">refer to this page." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 16:9" msgstr "強制 16:9" @@ -5695,7 +5695,7 @@ msgstr "強制 16:9" msgid "Force 24-Bit Color" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 msgid "Force 4:3" msgstr "強制 4:3" @@ -5727,11 +5727,11 @@ msgstr "" msgid "Force Nearest" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:470 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:471 msgid "Forced off because %1 doesn't support VS expansion." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:467 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:468 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" @@ -5805,11 +5805,11 @@ msgstr "" msgid "Frame Advance Reset Speed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:138 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:139 msgid "Frame Dumping" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:108 msgid "Frame Range" msgstr "" @@ -5817,7 +5817,7 @@ msgstr "" msgid "Frame dump image(s) '{0}' already exists. Overwrite?" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:141 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 msgid "Frames to Record:" msgstr "" @@ -5868,7 +5868,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:86 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 msgid "French" msgstr "French" @@ -5887,8 +5887,8 @@ msgid "From" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:249 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:100 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:115 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:97 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:112 msgid "From:" msgstr "" @@ -5944,11 +5944,11 @@ msgstr "" msgid "GBA Window Size" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:836 msgid "GBA%1 ROM changed to \"%2\"" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:843 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:841 msgid "GBA%1 ROM disabled" msgstr "" @@ -6092,7 +6092,7 @@ msgid "Game Gamma:" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "Game ID" msgstr "遊戲 ID" @@ -6105,7 +6105,7 @@ msgstr "遊戲 ID :" msgid "Game Status" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:830 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:828 msgid "Game changed to \"%1\"" msgstr "" @@ -6213,7 +6213,7 @@ msgstr "" msgid "Gecko (C2)" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:141 +#: Source/Core/DolphinQt/CheatsManager.cpp:140 #: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:73 msgid "Gecko Codes" msgstr "Gecko 代碼" @@ -6245,13 +6245,13 @@ msgstr "" msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1341 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 msgid "Generated symbol names from '%1'" msgstr "" #: Source/Core/DiscIO/Enums.cpp:83 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172 msgid "German" msgstr "German" @@ -6327,7 +6327,7 @@ msgstr "綠 左" msgid "Green Right" msgstr "綠 右" -#: Source/Core/DolphinQt/MenuBar.cpp:657 +#: Source/Core/DolphinQt/MenuBar.cpp:654 msgid "Grid View" msgstr "" @@ -6409,7 +6409,7 @@ msgstr "隱藏" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:752 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Hide All" msgstr "" @@ -6433,11 +6433,11 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "Highest" msgstr "" @@ -6476,11 +6476,11 @@ msgid "" "latency connections." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority disabled" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:939 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" msgstr "" @@ -6506,7 +6506,7 @@ msgstr "快捷鍵" msgid "Hotkeys Require Window Focus" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:126 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 msgid "Hybrid Ubershaders" msgstr "" @@ -6564,7 +6564,7 @@ msgid "IR" msgstr "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:363 msgid "IR Sensitivity:" msgstr "IR 靈敏度:" @@ -6628,14 +6628,14 @@ msgid "" "to the connection state of the real default device (if there is one)." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:206 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:203 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." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:210 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." @@ -6679,7 +6679,7 @@ msgstr "" msgid "Immediately Present XFB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:423 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:424 msgid "" "Implements fullscreen mode with a borderless window spanning the whole " "screen instead of using exclusive mode. Allows for faster transitions " @@ -6688,7 +6688,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6703,7 +6703,7 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:324 +#: Source/Core/DolphinQt/MenuBar.cpp:321 msgid "Import Wii Save..." msgstr "" @@ -6804,16 +6804,16 @@ msgstr "" msgid "Incremental Rotation (rad/sec)" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:196 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:198 msgid "Infinity Figure Creator" msgstr "" #. i18n: Window for managing Disney Infinity figures -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:39 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:41 msgid "Infinity Manager" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:295 msgid "Infinity Object (*.bin);;" msgstr "" @@ -6833,8 +6833,8 @@ msgstr "訊息" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1340 -#: Source/Core/DolphinQt/MenuBar.cpp:1583 +#: Source/Core/DolphinQt/MenuBar.cpp:1330 +#: Source/Core/DolphinQt/MenuBar.cpp:1573 msgid "Information" msgstr "訊息" @@ -6847,11 +6847,11 @@ msgid "Inject" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 -#: Source/Core/DolphinQt/MenuBar.cpp:1363 -#: Source/Core/DolphinQt/MenuBar.cpp:1423 -#: Source/Core/DolphinQt/MenuBar.cpp:1690 -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 +#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "Input" msgstr "輸入" @@ -6877,7 +6877,7 @@ msgstr "" msgid "Insert &nop" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "插入 SD 卡" @@ -6894,7 +6894,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:293 msgid "Install WAD..." msgstr "" @@ -6917,7 +6917,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Instruction:" msgstr "" @@ -7003,7 +7003,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:859 +#: Source/Core/DolphinQt/MenuBar.cpp:856 msgid "Interpreter Core" msgstr "" @@ -7028,7 +7028,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1370 +#: Source/Core/DolphinQt/MenuBar.cpp:1360 msgid "Invalid RSO module address: %1" msgstr "" @@ -7053,7 +7053,7 @@ msgid "Invalid input for the field \"%1\"" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:433 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:432 msgid "Invalid input provided" msgstr "" @@ -7089,13 +7089,13 @@ msgstr "" msgid "Invalid title ID." msgstr "" -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:283 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282 msgid "Invalid watch address: %1" msgstr "" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175 msgid "Italian" msgstr "Italian" @@ -7108,11 +7108,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:857 +#: Source/Core/DolphinQt/MenuBar.cpp:854 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:871 +#: Source/Core/DolphinQt/MenuBar.cpp:868 msgid "JIT Block Linking Off" msgstr "" @@ -7120,47 +7120,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1006 +#: Source/Core/DolphinQt/MenuBar.cpp:1003 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:978 +#: Source/Core/DolphinQt/MenuBar.cpp:975 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:985 +#: Source/Core/DolphinQt/MenuBar.cpp:982 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:963 +#: Source/Core/DolphinQt/MenuBar.cpp:960 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:935 +#: Source/Core/DolphinQt/MenuBar.cpp:932 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:971 +#: Source/Core/DolphinQt/MenuBar.cpp:968 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:949 +#: Source/Core/DolphinQt/MenuBar.cpp:946 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:942 +#: Source/Core/DolphinQt/MenuBar.cpp:939 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:956 +#: Source/Core/DolphinQt/MenuBar.cpp:953 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:929 +#: Source/Core/DolphinQt/MenuBar.cpp:926 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:992 +#: Source/Core/DolphinQt/MenuBar.cpp:989 msgid "JIT Paired Off" msgstr "" @@ -7172,11 +7172,11 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1013 +#: Source/Core/DolphinQt/MenuBar.cpp:1010 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:999 +#: Source/Core/DolphinQt/MenuBar.cpp:996 msgid "JIT SystemRegisters Off" msgstr "" @@ -7187,16 +7187,16 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:422 +#: Source/Android/jni/MainAndroid.cpp:423 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:314 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 msgid "Japan" msgstr "" #: Source/Core/DiscIO/Enums.cpp:77 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170 msgid "Japanese" msgstr "Japanese" @@ -7256,12 +7256,12 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:316 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 msgid "Korea" msgstr "" #: Source/Core/DiscIO/Enums.cpp:104 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179 msgid "Korean" msgstr "Korean" @@ -7308,23 +7308,23 @@ msgstr "" msgid "Last reset:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:88 msgid "Latency:" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:436 msgid "Latency: ~10 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438 msgid "Latency: ~20 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442 msgid "Latency: ~40 ms" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440 msgid "Latency: ~80 ms" msgstr "" @@ -7332,7 +7332,7 @@ msgstr "" msgid "Launching these titles may also fix the issues." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:62 msgid "Leaderboards" msgstr "" @@ -7422,11 +7422,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:691 +#: Source/Core/DolphinQt/MenuBar.cpp:688 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:651 msgid "List View" msgstr "" @@ -7438,15 +7438,15 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "讀取" -#: Source/Core/DolphinQt/MenuBar.cpp:1038 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1037 +#: Source/Core/DolphinQt/MenuBar.cpp:1034 msgid "Load &Other Map File..." msgstr "" @@ -7458,7 +7458,7 @@ msgstr "" msgid "Load Branch Watch snapshot" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:106 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" msgstr "" @@ -7466,7 +7466,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:280 +#: Source/Core/DolphinQt/MenuBar.cpp:278 msgid "Load GameCube Main Menu" msgstr "" @@ -7576,19 +7576,19 @@ msgstr "讀取儲存格 8" msgid "Load State Slot 9" msgstr "讀取儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:374 +#: Source/Core/DolphinQt/MenuBar.cpp:371 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:375 +#: Source/Core/DolphinQt/MenuBar.cpp:372 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1083 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load Wii System Menu %1" msgstr "" @@ -7600,35 +7600,35 @@ msgstr "" msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:429 +#: Source/Core/DolphinQt/MenuBar.cpp:426 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1602 -#: Source/Core/DolphinQt/MenuBar.cpp:1619 +#: Source/Core/DolphinQt/MenuBar.cpp:1592 +#: Source/Core/DolphinQt/MenuBar.cpp:1609 msgid "Load map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1082 +#: Source/Core/DolphinQt/MenuBar.cpp:1076 msgid "Load vWii System Menu %1" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:151 msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1584 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Loaded symbols from '%1'" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:331 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:332 msgid "" "Loads custom textures from User/Load/Textures/<game_id>/ and User/Load/" "DynamicInputTextures/<game_id>/.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:349 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:350 msgid "" "Loads graphics mods from User/Load/GraphicsMods/." "

If unsure, leave this unchecked." @@ -7642,7 +7642,7 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:92 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" @@ -7668,7 +7668,7 @@ msgstr "記錄設定" msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:912 +#: Source/Core/DolphinQt/MenuBar.cpp:909 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7676,7 +7676,7 @@ msgstr "" msgid "Log Out" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:69 msgid "Log Render Time to File" msgstr "" @@ -7692,27 +7692,27 @@ msgstr "記錄輸出" msgid "Login Failed" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:296 msgid "" "Logs the render time of every frame to User/Logs/render_time.txt.

Use " "this feature to measure Dolphin's performance.

If " "unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:129 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 msgid "Loop" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:979 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:977 msgid "Lost connection to NetPlay server..." msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:421 msgid "Lowest" msgstr "" @@ -7772,7 +7772,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/MenuBar.cpp:676 msgid "Maker" msgstr "" @@ -7789,12 +7789,12 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:296 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Manage NAND" msgstr "" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93 -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:195 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:196 msgid "Manual Texture Sampling" msgstr "" @@ -7810,11 +7810,11 @@ msgstr "" msgid "Match Found" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:961 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:959 msgid "Max Buffer:" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:929 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:927 msgid "Max buffer size changed to %1" msgstr "" @@ -7823,7 +7823,7 @@ msgstr "" msgid "Maximum tilt angle." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196 msgid "May cause slow down in Wii Menu and some games." msgstr "" @@ -7844,7 +7844,7 @@ msgstr "" msgid "Memory Card" msgstr "記憶卡" -#: Source/Core/DolphinQt/MenuBar.cpp:289 +#: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Memory Card Manager" msgstr "" @@ -7895,11 +7895,11 @@ msgstr "" msgid "Mini" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:162 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:163 msgid "Misc" msgstr "雜項" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:153 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:154 msgid "Misc Settings" msgstr "其它設定" @@ -7915,7 +7915,7 @@ msgstr "" msgid "Mismatch between internal data structures." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108 msgid "" "Mismatched ROMs\n" "Selected: {0}\n" @@ -7935,7 +7935,7 @@ msgstr "" msgid "Modifier" msgstr "Modifier" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:308 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:309 msgid "" "Modifies textures to show the format they're encoded in.

May require " "an emulation reset to apply.

If unsure, leave this " @@ -7951,8 +7951,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1391 -#: Source/Core/DolphinQt/MenuBar.cpp:1542 +#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1532 msgid "Modules found: %1" msgstr "" @@ -7960,7 +7960,7 @@ msgstr "" msgid "Money:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Mono" msgstr "" @@ -8018,10 +8018,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1212 -#: Source/Core/DolphinQt/MenuBar.cpp:1221 -#: Source/Core/DolphinQt/MenuBar.cpp:1239 -#: Source/Core/DolphinQt/MenuBar.cpp:1243 +#: Source/Core/DolphinQt/MenuBar.cpp:1206 +#: Source/Core/DolphinQt/MenuBar.cpp:1215 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1237 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8030,7 +8030,7 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-J" msgstr "" @@ -8057,7 +8057,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:284 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "NTSC-U" msgstr "" @@ -8267,7 +8267,7 @@ msgstr "" msgid "No extension selected." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:326 msgid "No file loaded / recorded." msgstr "" @@ -8275,7 +8275,7 @@ msgstr "" msgid "No game is running." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 msgid "No game running." msgstr "" @@ -8288,7 +8288,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1223 +#: Source/Core/DolphinQt/MenuBar.cpp:1217 msgid "No issues have been detected." msgstr "" @@ -8332,8 +8332,8 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:117 -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:135 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137 #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80 #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:862 msgid "None" @@ -8482,7 +8482,7 @@ msgstr "" msgid "Object 4 Y" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:93 msgid "Object Range" msgstr "" @@ -8507,7 +8507,7 @@ msgstr "" msgid "On Movement" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:395 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" "On backends that support both using the geometry shader and the vertex " "shader for expanding points and lines, selects the vertex shader for the " @@ -8529,7 +8529,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:624 +#: Source/Core/DolphinQt/MenuBar.cpp:621 msgid "Online &Documentation" msgstr "" @@ -8537,13 +8537,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1715 +#: Source/Core/DolphinQt/MenuBar.cpp:1705 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1690 +#: Source/Core/DolphinQt/MenuBar.cpp:1680 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8560,7 +8560,7 @@ msgstr "開啟" msgid "Open &Containing Folder" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:240 +#: Source/Core/DolphinQt/MenuBar.cpp:238 msgid "Open &User Folder" msgstr "" @@ -8569,7 +8569,7 @@ msgstr "" msgid "Open Directory..." msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:220 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 msgid "Open FIFO log" msgstr "" @@ -8659,7 +8659,7 @@ msgid "Origin and Destination" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:101 -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103 #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:102 #: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229 @@ -8701,11 +8701,11 @@ msgstr "" msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:782 +#: Source/Core/DolphinQt/MenuBar.cpp:779 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 msgid "PAL" msgstr "" @@ -8719,11 +8719,11 @@ msgstr "" msgid "PCAP" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:159 msgid "PNG Compression Level" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:157 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:158 msgid "PNG Compression Level:" msgstr "" @@ -8811,7 +8811,7 @@ msgstr "暫停" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:803 +#: Source/Core/DolphinQt/MenuBar.cpp:800 msgid "Pause at End of Movie" msgstr "" @@ -8856,7 +8856,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:308 +#: Source/Core/DolphinQt/MenuBar.cpp:305 msgid "Perform Online System Update" msgstr "" @@ -8864,15 +8864,15 @@ msgstr "" msgid "Perform System Update" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:66 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:67 msgid "Performance Sample Window (ms)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:76 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77 msgid "Performance Sample Window (ms):" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55 msgid "Performance Statistics" msgstr "" @@ -8890,7 +8890,7 @@ msgstr "" msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1293 +#: Source/Core/DolphinQt/MenuBar.cpp:1283 msgid "Pick a debug font" msgstr "" @@ -8907,7 +8907,7 @@ msgid "Pitch Up" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:672 msgid "Platform" msgstr "" @@ -8915,7 +8915,7 @@ msgstr "" msgid "Play" msgstr "執行" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:171 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:168 msgid "Play / Record" msgstr "" @@ -8923,11 +8923,11 @@ msgstr "" msgid "Play Recording" msgstr "播放錄像" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:126 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" msgstr "" @@ -8935,27 +8935,27 @@ msgstr "" msgid "Player" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 msgid "Player One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 msgid "Player One Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 msgid "Player One Ability Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:92 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 msgid "Player Two" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:94 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 msgid "Player Two Ability One" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:96 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:98 msgid "Player Two Ability Two" msgstr "" @@ -8977,7 +8977,7 @@ msgid "" "disabled, which makes this problem very likely to happen." msgstr "" -#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166 +#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:167 msgid "" "Please start a game before starting a search with standard memory regions." msgstr "" @@ -9010,7 +9010,7 @@ msgstr "" msgid "Portal Slots" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:972 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:970 msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" @@ -9026,20 +9026,20 @@ msgstr "" msgid "Post-Processing Shader Configuration" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" msgstr "" #. i18n: VS is short for vertex shaders. -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:172 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 msgid "Prefer VS for Point/Line Expansion" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:109 msgid "Prefetch Custom Textures" msgstr "" @@ -9074,7 +9074,7 @@ msgstr "" msgid "Pressure" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:301 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:302 msgid "" "Prevents shader compilation stuttering by not rendering waiting objects. Can " "work in scenarios where Ubershaders doesn't, at the cost of introducing " @@ -9143,11 +9143,11 @@ msgstr "設定檔" msgid "Program Counter" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:58 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 msgid "Progress" msgstr "" @@ -9161,7 +9161,7 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:556 +#: Source/Core/DolphinQt/MenuBar.cpp:553 msgid "Purge Game List Cache" msgstr "" @@ -9185,7 +9185,7 @@ msgstr "" msgid "Quality of Service (QoS) was successfully enabled." msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:109 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:110 msgid "Quality of the DPLII decoder. Audio latency increases with quality." msgstr "" @@ -9217,11 +9217,11 @@ msgstr "R-類比" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1358 +#: Source/Core/DolphinQt/MenuBar.cpp:1348 msgid "RSO auto-detection" msgstr "" @@ -9246,7 +9246,7 @@ msgstr "" msgid "Range Start: " msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:153 +#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:149 msgid "Rank %1" msgstr "" @@ -9254,7 +9254,7 @@ msgstr "" msgid "Raw" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:145 msgid "Raw Internal Resolution" msgstr "" @@ -9313,7 +9313,7 @@ msgstr "" msgid "Recenter" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:156 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:153 msgid "Record" msgstr "" @@ -9325,11 +9325,11 @@ msgstr "" msgid "Recording" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:138 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135 msgid "Recording Options" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:322 msgid "Recording..." msgstr "" @@ -9393,7 +9393,7 @@ msgid "Refreshing..." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:680 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9426,7 +9426,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129 #: 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:330 msgid "Remove" msgstr "移除" @@ -9463,11 +9463,11 @@ msgstr "" msgid "Render Window" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:110 msgid "Render to Main Window" msgstr "渲染至主視窗" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:299 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:300 msgid "" "Renders the scene as a wireframe.

If unsure, leave " "this unchecked." @@ -9500,7 +9500,7 @@ msgstr "重置" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:598 +#: Source/Core/DolphinQt/MenuBar.cpp:595 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9532,7 +9532,7 @@ msgstr "" msgid "Reset all saved Wii Remote pairings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:150 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151 msgid "Resolution Type:" msgstr "" @@ -9711,19 +9711,19 @@ msgstr "" msgid "SD Card" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:264 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:265 msgid "SD Card File Size:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:507 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:508 msgid "SD Card Image (*.raw);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:231 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:232 msgid "SD Card Path:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:211 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:212 msgid "SD Card Settings" msgstr "" @@ -9731,7 +9731,7 @@ msgstr "" msgid "SD Root:" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:253 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:254 msgid "SD Sync Folder:" msgstr "" @@ -9766,11 +9766,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1039 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Sa&ve State" msgstr "儲存進度(&V)" @@ -9802,11 +9802,11 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1181 +#: Source/Core/DolphinQt/MenuBar.cpp:1175 msgid "Save Export" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:231 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 msgid "Save FIFO log" msgstr "" @@ -9824,11 +9824,11 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1139 -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1133 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1145 #: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1157 -#: Source/Core/DolphinQt/MenuBar.cpp:1164 +#: Source/Core/DolphinQt/MenuBar.cpp:1158 msgid "Save Import" msgstr "" @@ -9840,7 +9840,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1939 +#: Source/Core/DolphinQt/MainWindow.cpp:1938 msgid "Save Recording File As" msgstr "" @@ -9890,23 +9890,23 @@ msgstr "儲存至儲存格 8" msgid "Save State Slot 9" msgstr "儲存至儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:391 +#: Source/Core/DolphinQt/MenuBar.cpp:388 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:392 +#: Source/Core/DolphinQt/MenuBar.cpp:389 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Save Symbol Map &As..." msgstr "" @@ -9926,11 +9926,11 @@ msgstr "" msgid "Save as..." msgstr "另存為..." -#: Source/Core/DolphinQt/MenuBar.cpp:1771 +#: Source/Core/DolphinQt/MenuBar.cpp:1761 msgid "Save combined output file as" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1140 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9941,11 +9941,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1637 +#: Source/Core/DolphinQt/MenuBar.cpp:1627 msgid "Save map file" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1693 +#: Source/Core/DolphinQt/MenuBar.cpp:1683 msgid "Save signature file" msgstr "" @@ -9953,11 +9953,11 @@ msgstr "" msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:430 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Save to Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:152 msgid "Save..." msgstr "" @@ -9987,7 +9987,7 @@ msgstr "截圖" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:564 Source/Core/DolphinQt/MenuBar.cpp:566 +#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 msgid "Search" msgstr "" @@ -10014,7 +10014,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:914 +#: Source/Core/DolphinQt/MenuBar.cpp:911 msgid "Search for an Instruction" msgstr "" @@ -10022,7 +10022,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1812 +#: Source/Core/DolphinQt/MenuBar.cpp:1802 msgid "Search instruction" msgstr "" @@ -10067,11 +10067,11 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1169 msgid "Select Export Directory" msgstr "" -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:143 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:145 msgid "Select Figure File" msgstr "" @@ -10111,7 +10111,7 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:431 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Select Slot %1 - %2" msgstr "" @@ -10119,7 +10119,7 @@ msgstr "" msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:405 +#: Source/Core/DolphinQt/MenuBar.cpp:402 msgid "Select State Slot" msgstr "選擇儲存格" @@ -10186,7 +10186,7 @@ msgstr "" msgid "Select a File" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:522 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 msgid "Select a Folder to sync with the SD Card Image" msgstr "" @@ -10194,7 +10194,7 @@ msgstr "" msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:505 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 msgid "Select a SD Card Image" msgstr "" @@ -10206,7 +10206,7 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1110 +#: Source/Core/DolphinQt/MenuBar.cpp:1104 msgid "Select a title to install to NAND" msgstr "" @@ -10214,7 +10214,7 @@ msgstr "" msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1423 +#: Source/Core/DolphinQt/MenuBar.cpp:1413 msgid "Select the RSO module address:" msgstr "" @@ -10231,7 +10231,7 @@ msgid "Select the keys file (OTP/SEEPROM dump)" msgstr "" #: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1130 +#: Source/Core/DolphinQt/MenuBar.cpp:1124 msgid "Select the save file" msgstr "選擇存檔" @@ -10255,7 +10255,7 @@ msgstr "" #: Source/Core/Core/NetPlayServer.cpp:1715 #: Source/Core/Core/NetPlayServer.cpp:2043 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:489 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:893 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:891 msgid "Selected game doesn't exist in game list!" msgstr "" @@ -10279,7 +10279,7 @@ msgid "" "select the first one.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:352 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:353 msgid "" "Selects how frame dumps (videos) and screenshots are going to be captured." "
If the game or window resolution change during a recording, multiple " @@ -10309,7 +10309,7 @@ msgid "" "

If unsure, select Off." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:255 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:256 msgid "" "Selects which aspect ratio to use for displaying the game.

The aspect " "ratio of the image sent out by the original consoles varied depending on the " @@ -10331,7 +10331,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" "Selects which graphics API to use internally.

The software renderer " "is extremely slow and only useful for debugging, so any of the other " @@ -10345,7 +10345,7 @@ msgstr "" msgid "Send" msgstr "傳送" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356 msgid "Sensor Bar Position:" msgstr "傳感器位置:" @@ -10410,14 +10410,14 @@ msgstr "" msgid "Set symbol size (%1):" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " "games.\n" "May not work for all games." msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:195 msgid "Sets the Wii system language." msgstr "" @@ -10429,7 +10429,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:92 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" "Sets the latency in milliseconds. Higher values may reduce audio crackling. " "Certain backends only." @@ -10448,7 +10448,7 @@ msgid "" "address space. This will work for the vast majority of games." msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:57 +#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:59 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27 #: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:73 msgid "Settings" @@ -10462,7 +10462,7 @@ msgstr "" msgid "Severity" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:120 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:121 msgid "Shader Compilation" msgstr "" @@ -10484,16 +10484,16 @@ msgstr "" msgid "Shinkansen Controller" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 #, c-format msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:438 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "Show &Log" msgstr "顯示日誌視窗(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:451 +#: Source/Core/DolphinQt/MenuBar.cpp:448 msgid "Show &Toolbar" msgstr "顯示工具列(&T)" @@ -10501,11 +10501,11 @@ msgstr "顯示工具列(&T)" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:751 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show Australia" msgstr "" @@ -10518,7 +10518,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show ELF/DOL" msgstr "" @@ -10527,27 +10527,27 @@ msgstr "" msgid "Show Enabled Codes First" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "顯示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:821 +#: Source/Core/DolphinQt/MenuBar.cpp:818 msgid "Show Frame Counter" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show France" msgstr "顯示 France" -#: Source/Core/DolphinQt/MenuBar.cpp:711 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show GameCube" msgstr "顯示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show Germany" msgstr "" @@ -10559,23 +10559,23 @@ msgstr "" msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:827 +#: Source/Core/DolphinQt/MenuBar.cpp:824 msgid "Show Input Display" msgstr "輸入顯示" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Italy" msgstr "顯示 Italy" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:732 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Korea" msgstr "顯示 Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:815 +#: Source/Core/DolphinQt/MenuBar.cpp:812 msgid "Show Lag Counter" msgstr "" @@ -10583,19 +10583,19 @@ msgstr "" msgid "Show Language:" msgstr "顯示語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:444 +#: Source/Core/DolphinQt/MenuBar.cpp:441 msgid "Show Log &Configuration" msgstr "日誌記錄設定(&C)" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109 msgid "Show NetPlay Messages" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:105 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106 msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Netherlands" msgstr "" @@ -10603,7 +10603,7 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show PAL" msgstr "顯示 PAL" @@ -10612,27 +10612,27 @@ msgstr "顯示 PAL" msgid "Show PC" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63 msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:716 +#: Source/Core/DolphinQt/MenuBar.cpp:713 msgid "Show Platforms" msgstr "顯示平台" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:89 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:90 msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:750 +#: Source/Core/DolphinQt/MenuBar.cpp:747 msgid "Show Regions" msgstr "顯示區域" -#: Source/Core/DolphinQt/MenuBar.cpp:809 +#: Source/Core/DolphinQt/MenuBar.cpp:806 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Russia" msgstr "" @@ -10640,51 +10640,51 @@ msgstr "" msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Spain" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:64 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:65 msgid "Show Speed Colors" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:87 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:88 msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:834 +#: Source/Core/DolphinQt/MenuBar.cpp:831 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:746 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Taiwan" msgstr "顯示 Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show USA" msgstr "顯示 USA" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show Unknown" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:62 msgid "Show VBlank Times" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61 msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:712 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show WAD" msgstr "顯示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:707 msgid "Show Wii" msgstr "顯示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show World" msgstr "" @@ -10697,7 +10697,7 @@ msgid "Show in Code" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:358 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10725,13 +10725,13 @@ msgid "" "
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:282 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" "Shows chat messages, buffer changes, and desync alerts while playing NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:277 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278 msgid "" "Shows frametime graph along with statistics as a representation of emulation " "performance.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:281 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format msgid "" "Shows the % speed of emulation compared to full speed." @@ -10770,47 +10770,47 @@ msgid "" "

If unsure, leave this checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:265 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" "Shows the average time in ms between each distinct rendered frame alongside " "the standard deviation.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:273 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:274 msgid "" "Shows the average time in ms between each rendered frame alongside the " "standard deviation.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:261 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " "visual smoothness.

If unsure, leave this unchecked." "" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:269 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:270 msgid "" "Shows the number of frames rendered per second as a measure of emulation " "speed.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:279 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:280 msgid "" "Shows the player's maximum ping while playing on NetPlay." "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:305 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:306 msgid "" "Shows various projection statistics.

If unsure, " "leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:302 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:303 msgid "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." @@ -10832,7 +10832,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1029 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Signature Database" msgstr "" @@ -10856,7 +10856,7 @@ msgid "Signed Integer" msgstr "" #: Source/Core/DiscIO/Enums.cpp:98 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 msgid "Simplified Chinese" msgstr "Simplified Chinese" @@ -10873,7 +10873,7 @@ msgstr "" msgid "Size" msgstr "大小" -#: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 +#: Source/Core/DolphinQt/Settings/AudioPane.cpp:153 msgid "" "Size of stretch buffer in milliseconds. Values too low may cause audio " "crackling." @@ -10883,7 +10883,7 @@ msgstr "" msgid "Skip" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:127 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:128 msgid "Skip Drawing" msgstr "" @@ -11000,7 +11000,7 @@ msgstr "" msgid "Sort Alphabetically" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181 msgid "Sound:" msgstr "" @@ -11014,7 +11014,7 @@ msgstr "" #: Source/Core/DiscIO/Enums.cpp:89 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174 msgid "Spanish" msgstr "Spanish" @@ -11022,11 +11022,11 @@ msgstr "Spanish" msgid "Speaker Pan" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:370 msgid "Speaker Volume:" msgstr "揚聲器音量:" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:124 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:125 msgid "Specialized (Default)" msgstr "" @@ -11034,7 +11034,7 @@ msgstr "" msgid "Specific" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:372 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:373 msgid "" "Specifies the zlib compression level to use when saving PNG images (both for " "screenshots and framedumping).

Since PNG uses lossless compression, " @@ -11076,7 +11076,7 @@ msgstr "標準控制器" msgid "Start" msgstr "Start" -#: Source/Core/DolphinQt/MenuBar.cpp:266 +#: Source/Core/DolphinQt/MenuBar.cpp:264 msgid "Start &NetPlay..." msgstr "" @@ -11085,11 +11085,11 @@ msgstr "" msgid "Start Branch Watch" msgstr "" -#: Source/Core/DolphinQt/CheatsManager.cpp:162 +#: Source/Core/DolphinQt/CheatsManager.cpp:161 msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:777 msgid "Start Re&cording Input" msgstr "" @@ -11097,7 +11097,7 @@ msgstr "" msgid "Start Recording" msgstr "開始錄製" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:76 msgid "Start in Fullscreen" msgstr "" @@ -11109,7 +11109,7 @@ msgstr "" msgid "Start with Riivolution Patches..." msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:875 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:873 msgid "Started game" msgstr "" @@ -11169,7 +11169,7 @@ msgstr "" msgid "Stepping" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184 msgid "Stereo" msgstr "" @@ -11198,12 +11198,12 @@ msgid "Stick" msgstr "搖桿" #: Source/Core/Core/HotkeyManager.cpp:32 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:154 #: Source/Core/DolphinQt/ToolBar.cpp:124 msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "Stop Playing/Recording Input" msgstr "" @@ -11239,7 +11239,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Stretch to Window" msgstr "拉伸至視窗" @@ -11278,8 +11278,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:216 Source/Core/DolphinQt/MenuBar.cpp:1118 -#: Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 +#: Source/Core/DolphinQt/MenuBar.cpp:1246 msgid "Success" msgstr "" @@ -11306,7 +11306,7 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1253 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Successfully extracted certificates from NAND" msgstr "" @@ -11318,12 +11318,12 @@ msgstr "" msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1148 +#: Source/Core/DolphinQt/MenuBar.cpp:1142 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1119 +#: Source/Core/DolphinQt/MenuBar.cpp:1113 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11346,12 +11346,12 @@ msgstr "" msgid "Supported file formats" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219 msgid "Supports SD and SDHC. Default size is 128 MB." msgstr "" #. i18n: Surround audio (Dolby Pro Logic II) -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186 msgid "Surround" msgstr "" @@ -11409,7 +11409,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1023 +#: Source/Core/DolphinQt/MenuBar.cpp:1020 msgid "Symbols" msgstr "" @@ -11435,7 +11435,7 @@ msgid "" "core mode. (ON = Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:242 msgid "" "Synchronizes the SD Card with the SD Sync Folder when starting and ending " "emulation." @@ -11454,11 +11454,11 @@ msgid "Synchronizing save data..." msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168 msgid "System Language:" msgstr "系統語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:799 +#: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "TAS Input" msgstr "" @@ -11471,7 +11471,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 #: Source/Core/DolphinQt/GameList/GameList.cpp:1012 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Tags" msgstr "" @@ -11489,7 +11489,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 msgid "Take Screenshot" msgstr "截取畫面" @@ -11528,7 +11528,7 @@ msgstr "" msgid "Texture Cache Accuracy" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:125 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:126 msgid "Texture Dumping" msgstr "" @@ -11540,7 +11540,7 @@ msgstr "" msgid "Texture Filtering:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:91 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:92 msgid "Texture Format Overlay" msgstr "" @@ -11577,13 +11577,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1244 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1239 +#: Source/Core/DolphinQt/MenuBar.cpp:1233 msgid "The NAND has been repaired." msgstr "" @@ -11598,7 +11598,7 @@ msgstr "" msgid "The amount of money this Skylander has. Between 0 and 65000" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:289 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:290 msgid "" "The amount of time the FPS and VPS counters will sample over.

The " "higher the value, the more stable the FPS/VPS counter will be, but the " @@ -11892,7 +11892,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1202 +#: Source/Core/DolphinQt/MenuBar.cpp:1196 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)." @@ -11950,7 +11950,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1194 +#: Source/Core/DolphinQt/MenuBar.cpp:1188 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)." @@ -12270,7 +12270,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Title" msgstr "標題" @@ -12279,12 +12279,12 @@ msgid "To" msgstr "" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:102 -#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:117 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 +#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Toggle &Fullscreen" msgstr "" @@ -12373,7 +12373,7 @@ msgstr "" msgid "Toolbar" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" msgstr "上方" @@ -12424,7 +12424,7 @@ msgid "Toy code:" msgstr "" #: Source/Core/DiscIO/Enums.cpp:101 -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:178 msgid "Traditional Chinese" msgstr "Traditional Chinese" @@ -12444,8 +12444,8 @@ msgstr "" msgid "Trap Team" msgstr "" -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996 -#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1000 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:994 +#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998 msgid "Traversal Error" msgstr "" @@ -12526,14 +12526,14 @@ msgstr "" msgid "USB Whitelist Error" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:286 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:287 msgid "" "Ubershaders are never used. Stuttering will occur during shader compilation, " "but GPU demands are low.

Recommended for low-end hardware. " "

If unsure, select this mode." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:291 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:292 msgid "" "Ubershaders will always be used. Provides a near stutter-free experience at " "the cost of very high GPU performance requirements." @@ -12541,7 +12541,7 @@ msgid "" "with Hybrid Ubershaders and have a very powerful GPU.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:297 msgid "" "Ubershaders will be used to prevent stuttering during shader compilation, " "but specialized shaders will be used when they will not cause stuttering." @@ -12550,7 +12550,7 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1417 +#: Source/Core/DolphinQt/MenuBar.cpp:1407 msgid "Unable to auto-detect RSO module" msgstr "" @@ -12613,11 +12613,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:376 +#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 msgid "Undo Load State" msgstr "取消讀取進度" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:393 +#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 msgid "Undo Save State" msgstr "取消儲存進度" @@ -12635,7 +12635,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:318 +#: Source/Core/DolphinQt/MenuBar.cpp:315 msgid "United States" msgstr "" @@ -12727,7 +12727,7 @@ msgid "Unknown(%1 %2).sky" msgstr "" #. i18n: This is used to create a file name. The string must end in ".bin". -#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:285 +#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:290 msgid "Unknown(%1).bin" msgstr "" @@ -12743,7 +12743,7 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:87 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 msgid "Unlocked at %1" msgstr "" @@ -12786,7 +12786,7 @@ msgid "Up" msgstr "上" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:283 -#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:371 +#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:370 msgid "Update" msgstr "更新" @@ -12857,7 +12857,7 @@ msgstr "" msgid "Use Built-In Database of Game Names" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147 msgid "Use Lossless Codec (FFV1)" msgstr "" @@ -12865,7 +12865,7 @@ msgstr "" msgid "Use Mouse Controlled Pointing" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158 msgid "Use PAL60 Mode (EuRGB60)" msgstr "" @@ -12879,7 +12879,7 @@ msgid "" "Current Game on Discord must be enabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:410 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" "Use a manual implementation of texture sampling instead of the graphics " "backend's built-in functionality.

This setting can fix graphical " @@ -12947,14 +12947,14 @@ msgid "" "checked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:244 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:245 msgid "" "Uses the entire screen for rendering.

If disabled, a render window " "will be created instead.

If unsure, leave this " "unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:251 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:252 msgid "" "Uses the main Dolphin window for rendering rather than a separate render " "window.

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:274 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:275 msgid "" "Waits for vertical blanks in order to prevent tearing.

Decreases " "performance if emulation speed is below 100%.

If " @@ -13217,7 +13217,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1572 +#: Source/Core/DolphinQt/MenuBar.cpp:1562 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -13306,7 +13306,7 @@ msgstr "" msgid "Whammy" msgstr "Whammy" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:326 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:327 msgid "" "Whether to dump base game textures to User/Dump/Textures/<game_id>/. " "This includes arbitrary base textures if 'Arbitrary Mipmap Detection' is " @@ -13314,7 +13314,7 @@ msgid "" "checked." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:322 msgid "" "Whether to dump mipmapped game textures to User/Dump/Textures/<" "game_id>/. This includes arbitrary mipmapped textures if 'Arbitrary " @@ -13322,7 +13322,7 @@ msgid "" "unsure, leave this checked.
" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:342 msgid "Whitelisted USB Passthrough Devices" msgstr "" @@ -13372,7 +13372,7 @@ msgstr "" msgid "Wii Remote Gyroscope" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:350 msgid "Wii Remote Settings" msgstr "" @@ -13400,7 +13400,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1131 +#: Source/Core/DolphinQt/MenuBar.cpp:1125 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13408,7 +13408,7 @@ msgstr "" msgid "WiiTools Signature MEGA File" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:143 +#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Window Resolution" msgstr "" @@ -13439,7 +13439,7 @@ msgstr "" msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:925 +#: Source/Core/DolphinQt/MenuBar.cpp:922 msgid "Write JIT Block Log Dump" msgstr "" @@ -13488,11 +13488,11 @@ msgstr "" msgid "Wrong revision" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:216 +#: Source/Core/DolphinQt/MenuBar.cpp:214 msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:439 +#: Source/Android/jni/MainAndroid.cpp:440 msgid "Wrote to \"{0}\"." msgstr "" @@ -13543,14 +13543,14 @@ msgstr "" msgid "Yes to &All" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299 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 " "to continue?" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:273 +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274 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 " @@ -13647,7 +13647,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1214 +#: Source/Core/DolphinQt/MenuBar.cpp:1208 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." From b92e354389bb7c0bd114a8631b8af110d3cb3a14 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Tue, 2 Jul 2024 02:36:16 -0400 Subject: [PATCH 152/296] ScmRevGen: Bump major version to 2407 --- CMake/ScmRevGen.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index 0faec22eb5..e1b5bb2d62 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -31,7 +31,7 @@ if(GIT_FOUND) endif() # version number -set(DOLPHIN_VERSION_MAJOR "5") +set(DOLPHIN_VERSION_MAJOR "2407") set(DOLPHIN_VERSION_MINOR "0") set(DOLPHIN_VERSION_PATCH ${DOLPHIN_WC_REVISION}) From cafb83736e1d3123a34d27b92f98a7c9a507eae5 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 2 Jul 2024 14:57:09 +0200 Subject: [PATCH 153/296] Update Transifex organization name By request from delroth, I changed the name of our Transifex organization so it's named after the Dolphin project rather than after him. This broke old links and the .tx/config file. --- .tx/config | 2 +- Readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tx/config b/.tx/config index bb16087edd..f92cd35ee9 100644 --- a/.tx/config +++ b/.tx/config @@ -1,7 +1,7 @@ [main] host = https://www.transifex.com -[o:delroth:p:dolphin-emu:r:emulator] +[o:dolphinemu:p:dolphin-emu:r:emulator] file_filter = Languages/po/.po source_file = Languages/po/dolphin-emu.pot source_lang = en-US diff --git a/Readme.md b/Readme.md index 3c9dc84730..696ba76004 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,6 @@ # Dolphin - A GameCube and Wii Emulator -[Homepage](https://dolphin-emu.org/) | [Project Site](https://github.com/dolphin-emu/dolphin) | [Buildbot](https://dolphin.ci/) | [Forums](https://forums.dolphin-emu.org/) | [Wiki](https://wiki.dolphin-emu.org/) | [GitHub Wiki](https://github.com/dolphin-emu/dolphin/wiki) | [Issue Tracker](https://bugs.dolphin-emu.org/projects/emulator/issues) | [Coding Style](https://github.com/dolphin-emu/dolphin/blob/master/Contributing.md) | [Transifex Page](https://app.transifex.com/delroth/dolphin-emu/dashboard/) +[Homepage](https://dolphin-emu.org/) | [Project Site](https://github.com/dolphin-emu/dolphin) | [Buildbot](https://dolphin.ci/) | [Forums](https://forums.dolphin-emu.org/) | [Wiki](https://wiki.dolphin-emu.org/) | [GitHub Wiki](https://github.com/dolphin-emu/dolphin/wiki) | [Issue Tracker](https://bugs.dolphin-emu.org/projects/emulator/issues) | [Coding Style](https://github.com/dolphin-emu/dolphin/blob/master/Contributing.md) | [Transifex Page](https://app.transifex.com/dolphinemu/dolphin-emu/dashboard/) Dolphin is an emulator for running GameCube and Wii games on Windows, Linux, macOS, and recent Android devices. It's licensed under the terms From b5ccb59feb05809f21d281eafdc9f56ea64942cf Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:40:59 +0200 Subject: [PATCH 154/296] IOS::HLE::STMImmediateDevice: Add `IOCTL_STM_WRITEDMCU` --- Source/Core/Core/IOS/STM/STM.cpp | 1 + Source/Core/Core/IOS/STM/STM.h | 1 + 2 files changed, 2 insertions(+) diff --git a/Source/Core/Core/IOS/STM/STM.cpp b/Source/Core/Core/IOS/STM/STM.cpp index 06571b4ae3..e262fc4001 100644 --- a/Source/Core/Core/IOS/STM/STM.cpp +++ b/Source/Core/Core/IOS/STM/STM.cpp @@ -65,6 +65,7 @@ std::optional STMImmediateDevice::IOCtl(const IOCtlRequest& request) case IOCTL_STM_READDDRREG2: case IOCTL_STM_LEDFLASH: case IOCTL_STM_READVER: + case IOCTL_STM_WRITEDMCU: ERROR_LOG_FMT(IOS_STM, "{} - Unimplemented IOCtl: {}", GetDeviceName(), request.request); break; diff --git a/Source/Core/Core/IOS/STM/STM.h b/Source/Core/Core/IOS/STM/STM.h index ae2068b792..f249c66d95 100644 --- a/Source/Core/Core/IOS/STM/STM.h +++ b/Source/Core/Core/IOS/STM/STM.h @@ -32,6 +32,7 @@ enum IOCTL_STM_LEDFLASH = 0x6001, IOCTL_STM_LEDMODE = 0x6002, IOCTL_STM_READVER = 0x7001, + IOCTL_STM_WRITEDMCU = 0x8001, }; enum From 9aeeea37620cf7c554d1462188ad06c2f6d32617 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 15 Jun 2024 11:02:15 +0200 Subject: [PATCH 155/296] Debugger: Small Breakpoint cleanup Reuse more code, change misleading names, remove useless documentation, add useful documentation --- Source/Core/Core/Debugger/DebugInterface.h | 4 +-- .../Core/Core/Debugger/PPCDebugInterface.cpp | 10 ++---- Source/Core/Core/Debugger/PPCDebugInterface.h | 4 +-- Source/Core/Core/PowerPC/BreakPoints.cpp | 33 ++++++++++++------- Source/Core/Core/PowerPC/BreakPoints.h | 15 ++++----- Source/Core/Core/PowerPC/GDBStub.cpp | 3 +- .../DolphinQt/Debugger/BreakpointWidget.cpp | 4 +-- .../DolphinQt/Debugger/CodeViewWidget.cpp | 8 ++--- 8 files changed, 41 insertions(+), 40 deletions(-) diff --git a/Source/Core/Core/Debugger/DebugInterface.h b/Source/Core/Core/Debugger/DebugInterface.h index 9802c31f3a..67ff54fcdb 100644 --- a/Source/Core/Core/Debugger/DebugInterface.h +++ b/Source/Core/Core/Debugger/DebugInterface.h @@ -73,8 +73,8 @@ public: } virtual bool IsAlive() const { return true; } virtual bool IsBreakpoint(u32 /*address*/) const { return false; } - virtual void SetBreakpoint(u32 /*address*/) {} - virtual void ClearBreakpoint(u32 /*address*/) {} + virtual void AddBreakpoint(u32 /*address*/) {} + virtual void RemoveBreakpoint(u32 /*address*/) {} virtual void ClearAllBreakpoints() {} virtual void ToggleBreakpoint(u32 /*address*/) {} virtual void ClearAllMemChecks() {} diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index 9389fe76d8..3819f62493 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -357,12 +357,12 @@ bool PPCDebugInterface::IsBreakpoint(u32 address) const return m_system.GetPowerPC().GetBreakPoints().IsAddressBreakPoint(address); } -void PPCDebugInterface::SetBreakpoint(u32 address) +void PPCDebugInterface::AddBreakpoint(u32 address) { m_system.GetPowerPC().GetBreakPoints().Add(address); } -void PPCDebugInterface::ClearBreakpoint(u32 address) +void PPCDebugInterface::RemoveBreakpoint(u32 address) { m_system.GetPowerPC().GetBreakPoints().Remove(address); } @@ -374,11 +374,7 @@ void PPCDebugInterface::ClearAllBreakpoints() void PPCDebugInterface::ToggleBreakpoint(u32 address) { - auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); - if (breakpoints.IsAddressBreakPoint(address)) - breakpoints.Remove(address); - else - breakpoints.Add(address); + m_system.GetPowerPC().GetBreakPoints().ToggleBreakPoint(address); } void PPCDebugInterface::ClearAllMemChecks() diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.h b/Source/Core/Core/Debugger/PPCDebugInterface.h index 86207bc1da..5f8f8b04de 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.h +++ b/Source/Core/Core/Debugger/PPCDebugInterface.h @@ -80,8 +80,8 @@ public: u32 address) const override; bool IsAlive() const override; bool IsBreakpoint(u32 address) const override; - void SetBreakpoint(u32 address) override; - void ClearBreakpoint(u32 address) override; + void AddBreakpoint(u32 address) override; + void RemoveBreakpoint(u32 address) override; void ClearAllBreakpoints() override; void ToggleBreakpoint(u32 address) override; void ClearAllMemChecks() override; diff --git a/Source/Core/Core/PowerPC/BreakPoints.cpp b/Source/Core/Core/PowerPC/BreakPoints.cpp index 1e8689dd82..24b15750e0 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.cpp +++ b/Source/Core/Core/PowerPC/BreakPoints.cpp @@ -27,14 +27,13 @@ BreakPoints::~BreakPoints() = default; bool BreakPoints::IsAddressBreakPoint(u32 address) const { - return std::any_of(m_breakpoints.begin(), m_breakpoints.end(), - [address](const auto& bp) { return bp.address == address; }); + return GetBreakpoint(address) != nullptr; } bool BreakPoints::IsBreakPointEnable(u32 address) const { - return std::any_of(m_breakpoints.begin(), m_breakpoints.end(), - [address](const auto& bp) { return bp.is_enabled && bp.address == address; }); + const TBreakPoint* bp = GetBreakpoint(address); + return bp != nullptr && bp->is_enabled; } bool BreakPoints::IsTempBreakPoint(u32 address) const @@ -153,6 +152,16 @@ void BreakPoints::Add(u32 address, bool temp, bool break_on_hit, bool log_on_hit } bool BreakPoints::ToggleBreakPoint(u32 address) +{ + if (!Remove(address)) + { + Add(address); + return true; + } + return false; +} + +bool BreakPoints::ToggleEnable(u32 address) { auto iter = std::find_if(m_breakpoints.begin(), m_breakpoints.end(), [address](const auto& bp) { return bp.address == address; }); @@ -164,16 +173,18 @@ bool BreakPoints::ToggleBreakPoint(u32 address) return true; } -void BreakPoints::Remove(u32 address) +bool BreakPoints::Remove(u32 address) { const auto iter = std::find_if(m_breakpoints.begin(), m_breakpoints.end(), [address](const auto& bp) { return bp.address == address; }); if (iter == m_breakpoints.cend()) - return; + return false; m_breakpoints.erase(iter); m_system.GetJitInterface().InvalidateICache(address, 4, true); + + return true; } void BreakPoints::Clear() @@ -281,9 +292,8 @@ void MemChecks::Add(TMemCheck memory_check) [address](const auto& check) { return check.start_address == address; }); if (old_mem_check != m_mem_checks.end()) { - const bool is_enabled = old_mem_check->is_enabled; // Preserve enabled status + memory_check.is_enabled = old_mem_check->is_enabled; // Preserve enabled status *old_mem_check = std::move(memory_check); - old_mem_check->is_enabled = is_enabled; old_mem_check->num_hits = 0; } else @@ -297,7 +307,7 @@ void MemChecks::Add(TMemCheck memory_check) m_system.GetMMU().DBATUpdated(); } -bool MemChecks::ToggleBreakPoint(u32 address) +bool MemChecks::ToggleEnable(u32 address) { auto iter = std::find_if(m_mem_checks.begin(), m_mem_checks.end(), [address](const auto& bp) { return bp.start_address == address; }); @@ -309,20 +319,21 @@ bool MemChecks::ToggleBreakPoint(u32 address) return true; } -void MemChecks::Remove(u32 address) +bool MemChecks::Remove(u32 address) { const auto iter = std::find_if(m_mem_checks.cbegin(), m_mem_checks.cend(), [address](const auto& check) { return check.start_address == address; }); if (iter == m_mem_checks.cend()) - return; + return false; const Core::CPUThreadGuard guard(m_system); m_mem_checks.erase(iter); if (!HasAny()) m_system.GetJitInterface().ClearCache(guard); m_system.GetMMU().DBATUpdated(); + return true; } void MemChecks::Clear() diff --git a/Source/Core/Core/PowerPC/BreakPoints.h b/Source/Core/Core/PowerPC/BreakPoints.h index ce509e5d97..6c60b8a24e 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.h +++ b/Source/Core/Core/PowerPC/BreakPoints.h @@ -66,23 +66,22 @@ public: TBreakPointsStr GetStrings() const; void AddFromStrings(const TBreakPointsStr& bp_strings); - // is address breakpoint bool IsAddressBreakPoint(u32 address) const; bool IsBreakPointEnable(u32 adresss) const; bool IsTempBreakPoint(u32 address) const; const TBreakPoint* GetBreakpoint(u32 address) const; - // Add BreakPoint + // Add BreakPoint. If one already exists on the same address, replace it. void Add(u32 address, bool temp, bool break_on_hit, bool log_on_hit, std::optional condition); void Add(u32 address, bool temp = false); void Add(TBreakPoint bp); - // Modify Breakpoint bool ToggleBreakPoint(u32 address); + bool ToggleEnable(u32 address); - // Remove Breakpoint - void Remove(u32 address); + // Remove Breakpoint. Returns whether it was removed. + bool Remove(u32 address); void Clear(); void ClearAllTemporary(); @@ -111,12 +110,12 @@ public: void Add(TMemCheck memory_check); - bool ToggleBreakPoint(u32 address); + bool ToggleEnable(u32 address); - // memory breakpoint TMemCheck* GetMemCheck(u32 address, size_t size = 1); bool OverlapsMemcheck(u32 address, u32 length) const; - void Remove(u32 address); + // Remove Breakpoint. Returns whether it was removed. + bool Remove(u32 address); void Clear(); bool HasAny() const { return !m_mem_checks.empty(); } diff --git a/Source/Core/Core/PowerPC/GDBStub.cpp b/Source/Core/Core/PowerPC/GDBStub.cpp index df87a6c75a..0f6617a5b4 100644 --- a/Source/Core/Core/PowerPC/GDBStub.cpp +++ b/Source/Core/Core/PowerPC/GDBStub.cpp @@ -164,9 +164,8 @@ static void RemoveBreakpoint(BreakpointType type, u32 addr, u32 len) if (type == BreakpointType::ExecuteHard || type == BreakpointType::ExecuteSoft) { auto& breakpoints = Core::System::GetInstance().GetPowerPC().GetBreakPoints(); - while (breakpoints.IsAddressBreakPoint(addr)) + if (breakpoints.Remove(addr)) { - breakpoints.Remove(addr); INFO_LOG_FMT(GDB_STUB, "gdb: removed a breakpoint: {:08x} bytes at {:08x}", len, addr); } } diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 130e68e860..3bed35c576 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -215,9 +215,9 @@ void BreakpointWidget::OnClicked(QTableWidgetItem* item) if (item->column() == ENABLED_COLUMN) { if (item->data(IS_MEMCHECK_ROLE).toBool()) - m_system.GetPowerPC().GetMemChecks().ToggleBreakPoint(address); + m_system.GetPowerPC().GetMemChecks().ToggleEnable(address); else - m_system.GetPowerPC().GetBreakPoints().ToggleBreakPoint(address); + m_system.GetPowerPC().GetBreakPoints().ToggleEnable(address); emit BreakpointsChanged(); Update(); diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 51f2814d9b..e2df3420a6 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -869,7 +869,7 @@ void CodeViewWidget::OnRunToHere() { const u32 addr = GetContextAddress(); - m_system.GetPowerPC().GetDebugInterface().SetBreakpoint(addr); + m_system.GetPowerPC().GetDebugInterface().AddBreakpoint(addr); m_system.GetPowerPC().GetDebugInterface().RunToBreakpoint(); Update(); } @@ -1137,11 +1137,7 @@ void CodeViewWidget::showEvent(QShowEvent* event) void CodeViewWidget::ToggleBreakpoint() { - auto& power_pc = m_system.GetPowerPC(); - if (power_pc.GetDebugInterface().IsBreakpoint(GetContextAddress())) - power_pc.GetBreakPoints().Remove(GetContextAddress()); - else - power_pc.GetBreakPoints().Add(GetContextAddress()); + m_system.GetPowerPC().GetBreakPoints().ToggleBreakPoint(GetContextAddress()); emit BreakpointsChanged(); Update(); From 8235c38df79bd48ae3d84fe35471befb6f0ce5eb Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 15 Jun 2024 11:15:23 +0200 Subject: [PATCH 156/296] Debugger: Small other cleanup Change misleading names. Fix function usage: Intepreter and Step Out will not check breakpoints in their own wrong way anymore (e.g. breaking on log-only breakpoints). --- Source/Core/Core/Core.cpp | 6 ++-- Source/Core/Core/FifoPlayer/FifoPlayer.cpp | 4 +-- Source/Core/Core/HW/CPU.cpp | 7 ++-- Source/Core/Core/HW/CPU.h | 12 +++---- .../CachedInterpreter/CachedInterpreter.cpp | 3 +- Source/Core/Core/PowerPC/GDBStub.cpp | 2 +- .../Core/PowerPC/Interpreter/Interpreter.cpp | 32 +------------------ Source/Core/Core/PowerPC/Jit64/Jit.cpp | 2 +- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 2 +- Source/Core/Core/PowerPC/PowerPC.cpp | 31 +++++++++++------- Source/Core/Core/PowerPC/PowerPC.h | 7 ++-- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 9 +++--- 12 files changed, 48 insertions(+), 69 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 8399d55cba..dc362b242d 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -704,13 +704,13 @@ void SetState(Core::System& system, State state, bool report_state_change) case State::Paused: // NOTE: GetState() will return State::Paused immediately, even before anything has // stopped (including the CPU). - system.GetCPU().EnableStepping(true); // Break + system.GetCPU().SetStepping(true); // Break Wiimote::Pause(); ResetRumble(); break; case State::Running: { - system.GetCPU().EnableStepping(false); + system.GetCPU().SetStepping(false); Wiimote::Resume(); break; } @@ -813,7 +813,7 @@ static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unl // The CPU is responsible for managing the Audio and FIFO state so we use its // mechanism to unpause them. If we unpaused the systems above when releasing // the locks then they could call CPU::Break which would require detecting it - // and re-pausing with CPU::EnableStepping. + // and re-pausing with CPU::SetStepping. was_unpaused = system.GetCPU().PauseAndLock(false, unpause_on_unlock, true); } diff --git a/Source/Core/Core/FifoPlayer/FifoPlayer.cpp b/Source/Core/Core/FifoPlayer/FifoPlayer.cpp index 83eae87b9e..dcf50b4684 100644 --- a/Source/Core/Core/FifoPlayer/FifoPlayer.cpp +++ b/Source/Core/Core/FifoPlayer/FifoPlayer.cpp @@ -228,7 +228,7 @@ public: IsPlayingBackFifologWithBrokenEFBCopies = m_parent->m_File->HasBrokenEFBCopies(); // Without this call, we deadlock in initialization in dual core, as the FIFO is disabled and // thus ClearEfb()'s call to WaitForGPUInactive() never returns - m_parent->m_system.GetCPU().EnableStepping(false); + m_parent->m_system.GetCPU().SetStepping(false); m_parent->m_CurrentFrame = m_parent->m_FrameRangeStart; m_parent->LoadMemory(); @@ -243,7 +243,7 @@ public: void SingleStep() override { // NOTE: AdvanceFrame() will get stuck forever in Dual Core because the FIFO - // is disabled by CPU::EnableStepping(true) so the frame never gets displayed. + // is disabled by CPU::SetStepping(true) so the frame never gets displayed. PanicAlertFmtT("Cannot SingleStep the FIFO. Use Frame Advance instead."); } diff --git a/Source/Core/Core/HW/CPU.cpp b/Source/Core/Core/HW/CPU.cpp index 15237dab30..583693c21a 100644 --- a/Source/Core/Core/HW/CPU.cpp +++ b/Source/Core/Core/HW/CPU.cpp @@ -88,6 +88,7 @@ void CPUManager::Run() // Adjust PC for JIT when debugging // SingleStep so that the "continue", "step over" and "step out" debugger functions // work when the PC is at a breakpoint at the beginning of the block + // Don't use PowerPCManager::CheckBreakPoints, otherwise you get double logging // If watchpoints are enabled, any instruction could be a breakpoint. if (power_pc.GetMode() != PowerPC::CoreMode::Interpreter) { @@ -174,7 +175,7 @@ void CPUManager::Run() // Requires holding m_state_change_lock void CPUManager::RunAdjacentSystems(bool running) { - // NOTE: We're assuming these will not try to call Break or EnableStepping. + // NOTE: We're assuming these will not try to call Break or SetStepping. m_system.GetFifo().EmulatorState(running); // Core is responsible for shutting down the sound stream. if (m_state != State::PowerDown) @@ -247,7 +248,7 @@ bool CPUManager::SetStateLocked(State s) return true; } -void CPUManager::EnableStepping(bool stepping) +void CPUManager::SetStepping(bool stepping) { std::lock_guard stepping_lock(m_stepping_lock); std::unique_lock state_lock(m_state_change_lock); @@ -290,7 +291,7 @@ void CPUManager::Break() void CPUManager::Continue() { - EnableStepping(false); + SetStepping(false); Core::CallOnStateChangedCallbacks(Core::State::Running); } diff --git a/Source/Core/Core/HW/CPU.h b/Source/Core/Core/HW/CPU.h index e328f645e8..57e8a31a29 100644 --- a/Source/Core/Core/HW/CPU.h +++ b/Source/Core/Core/HW/CPU.h @@ -62,10 +62,10 @@ public: void StepOpcode(Common::Event* event = nullptr); // Enable or Disable Stepping. [Will deadlock if called from a system thread] - void EnableStepping(bool stepping); + void SetStepping(bool stepping); - // Breakpoint activation for system threads. Similar to EnableStepping(true). - // NOTE: Unlike EnableStepping, this does NOT synchronize with the CPU Thread + // Breakpoint activation for system threads. Similar to SetStepping(true). + // NOTE: Unlike SetStepping, this does NOT synchronize with the CPU Thread // which enables it to avoid deadlocks but also makes it less safe so it // should not be used by the Host. void Break(); @@ -91,7 +91,7 @@ public: // Return value for do_lock == true is whether the state was State::Running or not. // Return value for do_lock == false is whether the state was changed *to* State::Running or not. // Cannot be used by System threads as it will deadlock. It is threadsafe otherwise. - // "control_adjacent" causes PauseAndLock to behave like EnableStepping by modifying the + // "control_adjacent" causes PauseAndLock to behave like SetStepping by modifying the // state of the Audio and FIFO subsystems as well. bool PauseAndLock(bool do_lock, bool unpause_on_unlock = true, bool control_adjacent = false); @@ -110,9 +110,9 @@ private: // Read access is unsynchronized. State m_state = State::PowerDown; - // Synchronizes EnableStepping and PauseAndLock so only one instance can be + // Synchronizes SetStepping and PauseAndLock so only one instance can be // active at a time. Simplifies code by eliminating several edge cases where - // the EnableStepping(true)/PauseAndLock(true) case must release the state lock + // the SetStepping(true)/PauseAndLock(true) case must release the state lock // and wait for the CPU Thread which would otherwise require additional flags. // NOTE: When using the stepping lock, it must always be acquired first. If // the lock is acquired after the state lock then that is guaranteed to diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index d2296641c2..f8b5c6f53b 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -249,8 +249,7 @@ bool CachedInterpreter::CheckProgramException(CachedInterpreter& cached_interpre bool CachedInterpreter::CheckBreakpoint(CachedInterpreter& cached_interpreter, u32 data) { - cached_interpreter.m_system.GetPowerPC().CheckBreakPoints(); - if (cached_interpreter.m_system.GetCPU().GetState() != CPU::State::Running) + if (cached_interpreter.m_system.GetPowerPC().CheckAndHandleBreakPoints()) { cached_interpreter.m_ppc_state.downcount -= data; return true; diff --git a/Source/Core/Core/PowerPC/GDBStub.cpp b/Source/Core/Core/PowerPC/GDBStub.cpp index 0f6617a5b4..c293977aeb 100644 --- a/Source/Core/Core/PowerPC/GDBStub.cpp +++ b/Source/Core/Core/PowerPC/GDBStub.cpp @@ -865,7 +865,7 @@ static void WriteMemory(const Core::CPUThreadGuard& guard) static void Step() { auto& system = Core::System::GetInstance(); - system.GetCPU().EnableStepping(true); + system.GetCPU().SetStepping(true); Core::CallOnStateChangedCallbacks(Core::State::Paused); } diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp index a7c2fbed52..89153f801e 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp @@ -261,38 +261,8 @@ void Interpreter::Run() s_pc_vec.erase(s_pc_vec.begin()); #endif - // 2: check for breakpoint - if (power_pc.GetBreakPoints().IsAddressBreakPoint(m_ppc_state.pc)) - { -#ifdef SHOW_HISTORY - NOTICE_LOG_FMT(POWERPC, "----------------------------"); - NOTICE_LOG_FMT(POWERPC, "Blocks:"); - for (const u32 entry : s_pc_block_vec) - NOTICE_LOG_FMT(POWERPC, "PC: {:#010x}", entry); - NOTICE_LOG_FMT(POWERPC, "----------------------------"); - NOTICE_LOG_FMT(POWERPC, "Steps:"); - for (size_t j = 0; j < s_pc_vec.size(); j++) - { - // Write space - if (j > 0) - { - if (s_pc_vec[j] != s_pc_vec[(j - 1) + 4] - NOTICE_LOG_FMT(POWERPC, ""); - } - - NOTICE_LOG_FMT(POWERPC, "PC: {:#010x}", s_pc_vec[j]); - } -#endif - INFO_LOG_FMT(POWERPC, "Hit Breakpoint - {:08x}", m_ppc_state.pc); - cpu.Break(); - if (GDBStub::IsActive()) - GDBStub::TakeControl(); - if (power_pc.GetBreakPoints().IsTempBreakPoint(m_ppc_state.pc)) - power_pc.GetBreakPoints().Remove(m_ppc_state.pc); - - Host_UpdateDisasmDialog(); + if (power_pc.CheckAndHandleBreakPoints()) return; - } cycles += SingleStepInner(); } m_ppc_state.downcount -= cycles; diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 3c27e16fad..98d6dbb281 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -1043,7 +1043,7 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) MOV(32, PPCSTATE(pc), Imm32(op.address)); ABI_PushRegistersAndAdjustStack({}, 0); - ABI_CallFunctionP(PowerPC::CheckBreakPointsFromJIT, &power_pc); + ABI_CallFunctionP(PowerPC::CheckAndHandleBreakPointsFromJIT, &power_pc); ABI_PopRegistersAndAdjustStack({}, 0); MOV(64, R(RSCRATCH), ImmPtr(cpu.GetStatePtr())); CMP(32, MatR(RSCRATCH), Imm32(Common::ToUnderlying(CPU::State::Running))); diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index e5e6f76dda..c005484377 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -1249,7 +1249,7 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) MOVI2R(DISPATCHER_PC, op.address); STP(IndexType::Signed, DISPATCHER_PC, DISPATCHER_PC, PPC_REG, PPCSTATE_OFF(pc)); - ABI_CallFunction(&PowerPC::CheckBreakPointsFromJIT, &m_system.GetPowerPC()); + ABI_CallFunction(&PowerPC::CheckAndHandleBreakPointsFromJIT, &m_system.GetPowerPC()); LDR(IndexType::Unsigned, ARM64Reg::W0, ARM64Reg::X0, MOVPage2R(ARM64Reg::X0, cpu.GetStatePtr())); diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index 5b32f5c1f5..e3f66d8895 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -629,19 +629,13 @@ void PowerPCManager::CheckExternalExceptions() m_system.GetJitInterface().UpdateMembase(); } -void PowerPCManager::CheckBreakPoints() +bool PowerPCManager::CheckBreakPoints() { const TBreakPoint* bp = m_breakpoints.GetBreakpoint(m_ppc_state.pc); if (!bp || !bp->is_enabled || !EvaluateCondition(m_system, bp->condition)) - return; + return false; - if (bp->break_on_hit) - { - m_system.GetCPU().Break(); - if (GDBStub::IsActive()) - GDBStub::TakeControl(); - } if (bp->log_on_hit) { NOTICE_LOG_FMT(MEMMAP, @@ -652,8 +646,21 @@ void PowerPCManager::CheckBreakPoints() m_ppc_state.gpr[8], m_ppc_state.gpr[9], m_ppc_state.gpr[10], m_ppc_state.gpr[11], m_ppc_state.gpr[12], LR(m_ppc_state)); } - if (m_breakpoints.IsTempBreakPoint(m_ppc_state.pc)) - m_breakpoints.Remove(m_ppc_state.pc); + if (bp->break_on_hit) + return true; + return false; +} + +bool PowerPCManager::CheckAndHandleBreakPoints() +{ + if (CheckBreakPoints()) + { + m_system.GetCPU().Break(); + if (GDBStub::IsActive()) + GDBStub::TakeControl(); + return true; + } + return false; } void PowerPCState::SetSR(u32 index, u32 value) @@ -722,8 +729,8 @@ void CheckExternalExceptionsFromJIT(PowerPCManager& power_pc) power_pc.CheckExternalExceptions(); } -void CheckBreakPointsFromJIT(PowerPCManager& power_pc) +void CheckAndHandleBreakPointsFromJIT(PowerPCManager& power_pc) { - power_pc.CheckBreakPoints(); + power_pc.CheckAndHandleBreakPoints(); } } // namespace PowerPC diff --git a/Source/Core/Core/PowerPC/PowerPC.h b/Source/Core/Core/PowerPC/PowerPC.h index b38c4f5555..662507697e 100644 --- a/Source/Core/Core/PowerPC/PowerPC.h +++ b/Source/Core/Core/PowerPC/PowerPC.h @@ -281,7 +281,10 @@ public: void SingleStep(); void CheckExceptions(); void CheckExternalExceptions(); - void CheckBreakPoints(); + // Evaluate the breakpoints in order to log. Returns whether it would break. + bool CheckBreakPoints(); + // Evaluate the breakpoints in order to log and/or break. Returns whether it breaks. + bool CheckAndHandleBreakPoints(); void RunLoop(); u64 ReadFullTimeBaseValue() const; @@ -330,7 +333,7 @@ void UpdatePerformanceMonitor(u32 cycles, u32 num_load_stores, u32 num_fp_inst, void CheckExceptionsFromJIT(PowerPCManager& power_pc); void CheckExternalExceptionsFromJIT(PowerPCManager& power_pc); -void CheckBreakPointsFromJIT(PowerPCManager& power_pc); +void CheckAndHandleBreakPointsFromJIT(PowerPCManager& power_pc); // Easy register access macros. #define HID0(ppc_state) ((UReg_HID0&)(ppc_state).spr[SPR_HID0]) diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index e5dd96014b..361f142c7c 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -484,7 +484,7 @@ void CodeWidget::StepOver() auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); breakpoints.ClearAllTemporary(); breakpoints.Add(m_system.GetPPCState().pc + 4, true); - cpu.EnableStepping(false); + cpu.SetStepping(false); Core::DisplayMessage(tr("Step over in progress...").toStdString(), 2000); } else @@ -547,8 +547,7 @@ void CodeWidget::StepOut() do { power_pc.SingleStep(); - } while (ppc_state.pc != next_pc && clock::now() < timeout && - !breakpoints.IsAddressBreakPoint(ppc_state.pc)); + } while (ppc_state.pc != next_pc && clock::now() < timeout && !power_pc.CheckBreakPoints()); } else { @@ -556,14 +555,14 @@ void CodeWidget::StepOut() } inst = PowerPC::MMU::HostRead_Instruction(guard, ppc_state.pc); - } while (clock::now() < timeout && !breakpoints.IsAddressBreakPoint(ppc_state.pc)); + } while (clock::now() < timeout && !power_pc.CheckBreakPoints()); power_pc.SetMode(old_mode); } emit Host::GetInstance()->UpdateDisasmDialog(); - if (breakpoints.IsAddressBreakPoint(ppc_state.pc)) + if (power_pc.CheckBreakPoints()) Core::DisplayMessage(tr("Breakpoint encountered! Step out aborted.").toStdString(), 2000); else if (clock::now() >= timeout) Core::DisplayMessage(tr("Step out timed out!").toStdString(), 2000); From 037de1ce929b9c785f11e9f595ededd1497bfe41 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 15 Jun 2024 11:23:50 +0200 Subject: [PATCH 157/296] Debugger: fix Run to Here Now it actually does what it says on the name, instead of creating a breapoint and doing nothing else (not even updating the widget). Also, it now can't be selected if emulation isn't running. Closes https://bugs.dolphin-emu.org/issues/13532 --- Source/Core/Core/Debugger/DebugInterface.h | 2 +- Source/Core/Core/Debugger/PPCDebugInterface.cpp | 6 +++++- Source/Core/Core/Debugger/PPCDebugInterface.h | 2 +- Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 10 ++++------ 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Source/Core/Core/Debugger/DebugInterface.h b/Source/Core/Core/Debugger/DebugInterface.h index 67ff54fcdb..cc07d06d3b 100644 --- a/Source/Core/Core/Debugger/DebugInterface.h +++ b/Source/Core/Core/Debugger/DebugInterface.h @@ -99,7 +99,7 @@ public: virtual u32 GetPC() const { return 0; } virtual void SetPC(u32 /*address*/) {} virtual void Step() {} - virtual void RunToBreakpoint() {} + virtual void RunTo(u32 /*address*/) {} virtual u32 GetColor(const CPUThreadGuard* /*guard*/, u32 /*address*/) const { return 0xFFFFFFFF; diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index 3819f62493..72cfd05b2c 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -20,6 +20,7 @@ #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/Debugger/OSThread.h" +#include "Core/HW/CPU.h" #include "Core/HW/DSP.h" #include "Core/PatchEngine.h" #include "Core/PowerPC/MMU.h" @@ -502,8 +503,11 @@ void PPCDebugInterface::SetPC(u32 address) m_system.GetPPCState().pc = address; } -void PPCDebugInterface::RunToBreakpoint() +void PPCDebugInterface::RunTo(u32 address) { + auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); + breakpoints.Add(address, true); + m_system.GetCPU().SetStepping(false); } std::shared_ptr PPCDebugInterface::NetworkLogger() diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.h b/Source/Core/Core/Debugger/PPCDebugInterface.h index 5f8f8b04de..797f2d5254 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.h +++ b/Source/Core/Core/Debugger/PPCDebugInterface.h @@ -100,7 +100,7 @@ public: u32 GetPC() const override; void SetPC(u32 address) override; void Step() override {} - void RunToBreakpoint() override; + void RunTo(u32 address) override; u32 GetColor(const Core::CPUThreadGuard* guard, u32 address) const override; std::string_view GetDescription(u32 address) const override; diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index e2df3420a6..36e7ade321 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -594,7 +594,7 @@ void CodeViewWidget::OnContextMenu() menu->addAction(tr("Set symbol &end address"), this, &CodeViewWidget::OnSetSymbolEndAddress); menu->addSeparator(); - menu->addAction(tr("Run &To Here"), this, &CodeViewWidget::OnRunToHere); + auto* run_to_action = menu->addAction(tr("Run &To Here"), this, &CodeViewWidget::OnRunToHere); auto* function_action = menu->addAction(tr("&Add function"), this, &CodeViewWidget::OnAddFunction); auto* ppc_action = menu->addAction(tr("PPC vs Host"), this, &CodeViewWidget::OnPPCComparison); @@ -645,8 +645,8 @@ void CodeViewWidget::OnContextMenu() follow_branch_action->setEnabled(follow_branch_enabled); for (auto* action : - {copy_address_action, copy_line_action, copy_hex_action, function_action, ppc_action, - insert_blr_action, insert_nop_action, replace_action, assemble_action}) + {copy_address_action, copy_line_action, copy_hex_action, function_action, run_to_action, + ppc_action, insert_blr_action, insert_nop_action, replace_action, assemble_action}) { action->setEnabled(running); } @@ -869,9 +869,7 @@ void CodeViewWidget::OnRunToHere() { const u32 addr = GetContextAddress(); - m_system.GetPowerPC().GetDebugInterface().AddBreakpoint(addr); - m_system.GetPowerPC().GetDebugInterface().RunToBreakpoint(); - Update(); + m_system.GetPowerPC().GetDebugInterface().RunTo(addr); } void CodeViewWidget::OnPPCComparison() From b06b816d4c29edd314e0611f4305af4c50a4c56f Mon Sep 17 00:00:00 2001 From: Reilly Brogan Date: Tue, 2 Jul 2024 12:43:42 -0500 Subject: [PATCH 158/296] cmake: Fix building with system minizip-ng Dolphin currently fails to build when the Linux system building it includes headers/pkgconfigs for minizip-ng built in both minizip-ng mode and legacy compat mode (the minizip API). This is because minizip-ng is checked for in cmake however the code is not actually compatible against minizip-ng built in non-legacy mode. Until that is rectified Dolphin should just check for a pkgconfig for minizip. If the system has a pkgconfig for minizip with a version >= 4 then the system package is minizip-ng built in compat mode which is exactly what we want. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b246b193b..ce5d64715f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -677,7 +677,7 @@ dolphin_find_optional_system_library_pkgconfig(ZSTD libzstd>=1.4.0 zstd::zstd Ex dolphin_find_optional_system_library_pkgconfig(ZLIB zlib-ng ZLIB::ZLIB Externals/zlib-ng) dolphin_find_optional_system_library_pkgconfig(MINIZIP - "minizip-ng>=4.0.4;minizip>=4.0.4" minizip::minizip Externals/minizip-ng + "minizip>=4.0.4" minizip::minizip Externals/minizip-ng ) dolphin_find_optional_system_library(LZO Externals/LZO) From 51fd9b22f2d9fe5483ecf0ec4e747e2c832f1d07 Mon Sep 17 00:00:00 2001 From: MayImilae Date: Wed, 3 Jul 2024 05:02:26 -0700 Subject: [PATCH 159/296] linuxiconflatpakrules --- Data/dolphin-emu.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/dolphin-emu.svg b/Data/dolphin-emu.svg index 06b5cfdaba..b2759f8249 100644 --- a/Data/dolphin-emu.svg +++ b/Data/dolphin-emu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 360f899f68a97f4bae5eaf898dc32dcd063cdf1d Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 26 Jun 2024 20:05:54 -0400 Subject: [PATCH 160/296] Common/Crypto/SHA1: Add DigestToString() utility function --- Source/Core/Common/Crypto/SHA1.cpp | 16 ++++++++++++++++ Source/Core/Common/Crypto/SHA1.h | 2 ++ 2 files changed, 18 insertions(+) diff --git a/Source/Core/Common/Crypto/SHA1.cpp b/Source/Core/Common/Crypto/SHA1.cpp index f87bbd2c6d..8c4aa646bd 100644 --- a/Source/Core/Common/Crypto/SHA1.cpp +++ b/Source/Core/Common/Crypto/SHA1.cpp @@ -385,4 +385,20 @@ Digest CalculateDigest(const u8* msg, size_t len) ctx->Update(msg, len); return ctx->Finish(); } + +std::string DigestToString(const Digest& digest) +{ + static constexpr std::array lookup = {'0', '1', '2', '3', '4', '5', '6', '7', + '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; + std::string hash; + hash.reserve(digest.size() * 2); + for (size_t i = 0; i < digest.size(); ++i) + { + const u8 upper = static_cast((digest[i] >> 4) & 0xf); + const u8 lower = static_cast(digest[i] & 0xf); + hash.push_back(lookup[upper]); + hash.push_back(lookup[lower]); + } + return hash; +} } // namespace Common::SHA1 diff --git a/Source/Core/Common/Crypto/SHA1.h b/Source/Core/Common/Crypto/SHA1.h index 83c9875a71..b828c28f15 100644 --- a/Source/Core/Common/Crypto/SHA1.h +++ b/Source/Core/Common/Crypto/SHA1.h @@ -51,4 +51,6 @@ inline Digest CalculateDigest(const std::array& msg) static_assert(std::is_trivially_copyable_v); return CalculateDigest(reinterpret_cast(msg.data()), sizeof(msg)); } + +std::string DigestToString(const Digest& digest); } // namespace Common::SHA1 From bf97305a60a605b02e169add190dea35f74d789a Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 26 Jun 2024 20:05:54 -0400 Subject: [PATCH 161/296] AchievementManager: Cache Badges on Disk Badges are saved in /User/Cache/RetroAchievements on first download and reused from there instead of redownloaded. --- Source/Core/Common/CommonPaths.h | 1 + Source/Core/Common/FileUtil.cpp | 4 ++ Source/Core/Common/FileUtil.h | 1 + Source/Core/Core/AchievementManager.cpp | 75 ++++++++++++++++--------- Source/Core/UICommon/UICommon.cpp | 1 + 5 files changed, 56 insertions(+), 26 deletions(-) diff --git a/Source/Core/Common/CommonPaths.h b/Source/Core/Common/CommonPaths.h index bd0f946991..5561b0e187 100644 --- a/Source/Core/Common/CommonPaths.h +++ b/Source/Core/Common/CommonPaths.h @@ -63,6 +63,7 @@ #define COVERCACHE_DIR "GameCovers" #define REDUMPCACHE_DIR "Redump" #define SHADERCACHE_DIR "Shaders" +#define RETROACHIEVEMENTSCACHE_DIR "RetroAchievements" #define STATESAVES_DIR "StateSaves" #define SCREENSHOTS_DIR "ScreenShots" #define LOAD_DIR "Load" diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index 34350c9207..5582018b30 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -843,6 +843,8 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[D_COVERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + COVERCACHE_DIR DIR_SEP; s_user_paths[D_REDUMPCACHE_IDX] = s_user_paths[D_CACHE_IDX] + REDUMPCACHE_DIR DIR_SEP; s_user_paths[D_SHADERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + SHADERCACHE_DIR DIR_SEP; + s_user_paths[D_RETROACHIEVEMENTSCACHE_IDX] = + s_user_paths[D_CACHE_IDX] + RETROACHIEVEMENTSCACHE_DIR DIR_SEP; s_user_paths[D_SHADERS_IDX] = s_user_paths[D_USER_IDX] + SHADERS_DIR DIR_SEP; s_user_paths[D_STATESAVES_IDX] = s_user_paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP; s_user_paths[D_SCREENSHOTS_IDX] = s_user_paths[D_USER_IDX] + SCREENSHOTS_DIR DIR_SEP; @@ -926,6 +928,8 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[D_COVERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + COVERCACHE_DIR DIR_SEP; s_user_paths[D_REDUMPCACHE_IDX] = s_user_paths[D_CACHE_IDX] + REDUMPCACHE_DIR DIR_SEP; s_user_paths[D_SHADERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + SHADERCACHE_DIR DIR_SEP; + s_user_paths[D_RETROACHIEVEMENTSCACHE_IDX] = + s_user_paths[D_CACHE_IDX] + RETROACHIEVEMENTSCACHE_DIR DIR_SEP; break; case D_GCUSER_IDX: diff --git a/Source/Core/Common/FileUtil.h b/Source/Core/Common/FileUtil.h index 7d2d5e737a..a887ffd8f3 100644 --- a/Source/Core/Common/FileUtil.h +++ b/Source/Core/Common/FileUtil.h @@ -40,6 +40,7 @@ enum D_COVERCACHE_IDX, D_REDUMPCACHE_IDX, D_SHADERCACHE_IDX, + D_RETROACHIEVEMENTSCACHE_IDX, D_SHADERS_IDX, D_STATESAVES_IDX, D_SCREENSHOTS_IDX, diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 99128d68dd..4ef78bf322 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -16,6 +16,7 @@ #include "Common/Assert.h" #include "Common/CommonPaths.h" #include "Common/FileUtil.h" +#include "Common/IOFile.h" #include "Common/Image.h" #include "Common/Logging/Log.h" #include "Common/ScopeGuard.h" @@ -993,30 +994,57 @@ void AchievementManager::FetchBadge(AchievementManager::Badge* badge, u32 badge_ if (name_to_fetch.empty()) return; } - rc_api_fetch_image_request_t icon_request = {.image_name = name_to_fetch.c_str(), - .image_type = badge_type}; - Badge fetched_badge; - rc_api_request_t api_request; - Common::HttpRequest http_request; - if (rc_api_init_fetch_image_request(&api_request, &icon_request) != RC_OK) + + const std::string cache_path = fmt::format( + "{}/badge-{}-{}.png", File::GetUserPath(D_RETROACHIEVEMENTSCACHE_IDX), badge_type, + Common::SHA1::DigestToString(Common::SHA1::CalculateDigest(name_to_fetch))); + + AchievementManager::Badge tmp_badge; + if (!LoadPNGTexture(&tmp_badge, cache_path)) { - ERROR_LOG_FMT(ACHIEVEMENTS, "Invalid request for image {}.", name_to_fetch); - return; - } - auto http_response = http_request.Get(api_request.url, USER_AGENT_HEADER, - Common::HttpRequest::AllowedReturnCodes::All); - if (http_response.has_value() && http_response->size() <= 0) - { - WARN_LOG_FMT(ACHIEVEMENTS, "RetroAchievements connection failed on image request.\n URL: {}", - api_request.url); + rc_api_fetch_image_request_t icon_request = {.image_name = name_to_fetch.c_str(), + .image_type = badge_type}; + Badge fetched_badge; + rc_api_request_t api_request; + Common::HttpRequest http_request; + if (rc_api_init_fetch_image_request(&api_request, &icon_request) != RC_OK) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Invalid request for image {}.", name_to_fetch); + return; + } + auto http_response = http_request.Get(api_request.url, USER_AGENT_HEADER, + Common::HttpRequest::AllowedReturnCodes::All); + if (http_response.has_value() && http_response->size() <= 0) + { + WARN_LOG_FMT(ACHIEVEMENTS, + "RetroAchievements connection failed on image request.\n URL: {}", + api_request.url); + rc_api_destroy_request(&api_request); + m_update_callback(callback_data); + return; + } + rc_api_destroy_request(&api_request); - m_update_callback(callback_data); - return; + + INFO_LOG_FMT(ACHIEVEMENTS, "Successfully downloaded badge id {}.", name_to_fetch); + + if (!LoadPNGTexture(&tmp_badge, *http_response)) + { + ERROR_LOG_FMT(ACHIEVEMENTS, "Badge '{}' failed to load", name_to_fetch); + return; + } + + std::string temp_path = fmt::format("{}.tmp", cache_path); + File::IOFile temp_file(temp_path, "wb"); + if (!temp_file.IsOpen() || + !temp_file.WriteBytes(http_response->data(), http_response->size()) || + !temp_file.Close() || !File::Rename(temp_path, cache_path)) + { + File::Delete(temp_path); + WARN_LOG_FMT(ACHIEVEMENTS, "Failed to store badge '{}' to cache", name_to_fetch); + } } - rc_api_destroy_request(&api_request); - - INFO_LOG_FMT(ACHIEVEMENTS, "Successfully downloaded badge id {}.", name_to_fetch); std::lock_guard lg{m_lock}; if (function(*this).empty() || name_to_fetch != function(*this)) { @@ -1024,12 +1052,7 @@ void AchievementManager::FetchBadge(AchievementManager::Badge* badge, u32 badge_ return; } - if (!LoadPNGTexture(badge, *http_response)) - { - ERROR_LOG_FMT(ACHIEVEMENTS, "Default game badge '{}' failed to load", - DEFAULT_GAME_BADGE_FILENAME); - } - + *badge = std::move(tmp_badge); m_update_callback(callback_data); if (badge_type == RC_IMAGE_TYPE_ACHIEVEMENT && m_active_challenges.contains(*callback_data.achievements.begin())) diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp index 0875b53383..4575498fb5 100644 --- a/Source/Core/UICommon/UICommon.cpp +++ b/Source/Core/UICommon/UICommon.cpp @@ -271,6 +271,7 @@ void CreateDirectories() File::CreateFullPath(File::GetUserPath(D_SCREENSHOTS_IDX)); File::CreateFullPath(File::GetUserPath(D_SHADERS_IDX)); File::CreateFullPath(File::GetUserPath(D_SHADERS_IDX) + ANAGLYPH_DIR DIR_SEP); + File::CreateFullPath(File::GetUserPath(D_RETROACHIEVEMENTSCACHE_IDX)); File::CreateFullPath(File::GetUserPath(D_STATESAVES_IDX)); File::CreateFullPath(File::GetUserPath(D_ASM_ROOT_IDX)); #ifndef ANDROID From 3a63633be3190930d4245d5eac25e54ebb39350e Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Thu, 4 Jul 2024 22:29:24 +0200 Subject: [PATCH 162/296] Common/Crypto/SHA1: Use span and string_view for Context::Update() --- Source/Core/Common/Crypto/SHA1.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Source/Core/Common/Crypto/SHA1.h b/Source/Core/Common/Crypto/SHA1.h index b828c28f15..6fd29172c0 100644 --- a/Source/Core/Common/Crypto/SHA1.h +++ b/Source/Core/Common/Crypto/SHA1.h @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -23,7 +24,11 @@ class Context public: virtual ~Context() = default; virtual void Update(const u8* msg, size_t len) = 0; - void Update(const std::vector& msg) { return Update(msg.data(), msg.size()); } + void Update(std::span msg) { return Update(msg.data(), msg.size()); } + void Update(std::string_view msg) + { + return Update(reinterpret_cast(msg.data()), msg.size()); + } virtual Digest Finish() = 0; virtual bool HwAccelerated() const = 0; }; From bd3cf67cbc354dc93edf14a788e602c69c054d38 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 15 Jun 2024 11:36:38 +0200 Subject: [PATCH 163/296] Debugger: Rework temporary breakpoints Before: 1. In theory there could be multiple, but in practice they were (manually) cleared before creating one 2. (Some of) the conditions to clear one were either to reach it, to create a new one (due to the point above), or to step. This created weird behavior: let's say you Step Over a `bl` (thus creating a temporary breakpoint on `pc+4`), and you reached a regular breakpoint inside the `bl`. The temporary one would still be there: if you resumed, the emulation would still stop there, as a sort of Step Out. But, if before resuming, you made a Step, then it wouldn't do that. 3. The breakpoint widget had no idea concept of them, and will treat them as regular breakpoints. Also, they'll be shown only when the widget is updated in some other way, leading to more confusion. 4. Because only one breakpoint could exist per address, the creation of a temporary breakpoint on a top of a regular one would delete it and inherit its properties (e.g. being log-only). This could happen, for instance, if you Stepped Over a `bl` specifically, and pc+4 had a regular breakpoint. Now there can only be one temporary breakpoint, which is automatically cleared whenever emulation is paused. So, removing some manual clearing from 1., and removing the weird behavior of 2. As it is stored in a separate variable, it won't be seen at all depending on the function used (fixing 3., and removing some checks in other places), and it won't replace a regular breakpoint, instead simply having priority (fixing 4.). --- Source/Core/Core/Debugger/CodeTrace.cpp | 1 - .../Core/Core/Debugger/PPCDebugInterface.cpp | 2 +- Source/Core/Core/HW/CPU.cpp | 2 + Source/Core/Core/PowerPC/BreakPoints.cpp | 80 ++++++++++--------- Source/Core/Core/PowerPC/BreakPoints.h | 19 +++-- Source/Core/Core/PowerPC/PowerPC.cpp | 3 - .../DolphinQt/Debugger/BranchWatchDialog.cpp | 8 +- .../DolphinQt/Debugger/BreakpointDialog.cpp | 2 +- .../DolphinQt/Debugger/BreakpointWidget.cpp | 13 ++- .../DolphinQt/Debugger/BreakpointWidget.h | 2 +- .../DolphinQt/Debugger/CodeViewWidget.cpp | 5 +- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 7 +- 12 files changed, 74 insertions(+), 70 deletions(-) diff --git a/Source/Core/Core/Debugger/CodeTrace.cpp b/Source/Core/Core/Debugger/CodeTrace.cpp index a6411acc14..9036213324 100644 --- a/Source/Core/Core/Debugger/CodeTrace.cpp +++ b/Source/Core/Core/Debugger/CodeTrace.cpp @@ -189,7 +189,6 @@ AutoStepResults CodeTrace::AutoStepping(const Core::CPUThreadGuard& guard, bool stop_condition = HitType::ACTIVE; auto& power_pc = guard.GetSystem().GetPowerPC(); - power_pc.GetBreakPoints().ClearAllTemporary(); using clock = std::chrono::steady_clock; clock::time_point timeout = clock::now() + std::chrono::seconds(4); diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index 72cfd05b2c..786f95bfa7 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -506,7 +506,7 @@ void PPCDebugInterface::SetPC(u32 address) void PPCDebugInterface::RunTo(u32 address) { auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); - breakpoints.Add(address, true); + breakpoints.SetTemporary(address); m_system.GetCPU().SetStepping(false); } diff --git a/Source/Core/Core/HW/CPU.cpp b/Source/Core/Core/HW/CPU.cpp index 583693c21a..7a161b0bf7 100644 --- a/Source/Core/Core/HW/CPU.cpp +++ b/Source/Core/Core/HW/CPU.cpp @@ -244,6 +244,8 @@ bool CPUManager::SetStateLocked(State s) { if (m_state == State::PowerDown) return false; + if (s == State::Stepping) + m_system.GetPowerPC().GetBreakPoints().ClearTemporary(); m_state = s; return true; } diff --git a/Source/Core/Core/PowerPC/BreakPoints.cpp b/Source/Core/Core/PowerPC/BreakPoints.cpp index 24b15750e0..565dc961e5 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.cpp +++ b/Source/Core/Core/PowerPC/BreakPoints.cpp @@ -5,6 +5,7 @@ #include #include +#include #include #include #include @@ -36,14 +37,17 @@ bool BreakPoints::IsBreakPointEnable(u32 address) const return bp != nullptr && bp->is_enabled; } -bool BreakPoints::IsTempBreakPoint(u32 address) const +const TBreakPoint* BreakPoints::GetBreakpoint(u32 address) const { - return std::any_of(m_breakpoints.begin(), m_breakpoints.end(), [address](const auto& bp) { - return bp.address == address && bp.is_temporary; - }); + // Give priority to the temporary breakpoint (it could be in the same address of a regular + // breakpoint that doesn't break) + if (m_temp_breakpoint && m_temp_breakpoint->address == address) + return &*m_temp_breakpoint; + + return GetRegularBreakpoint(address); } -const TBreakPoint* BreakPoints::GetBreakpoint(u32 address) const +const TBreakPoint* BreakPoints::GetRegularBreakpoint(u32 address) const { auto bp = std::find_if(m_breakpoints.begin(), m_breakpoints.end(), [address](const auto& bp_) { return bp_.address == address; }); @@ -59,21 +63,18 @@ BreakPoints::TBreakPointsStr BreakPoints::GetStrings() const TBreakPointsStr bp_strings; for (const TBreakPoint& bp : m_breakpoints) { - if (!bp.is_temporary) - { - std::ostringstream ss; - ss.imbue(std::locale::classic()); - ss << fmt::format("${:08x} ", bp.address); - if (bp.is_enabled) - ss << "n"; - if (bp.log_on_hit) - ss << "l"; - if (bp.break_on_hit) - ss << "b"; - if (bp.condition) - ss << "c " << bp.condition->GetText(); - bp_strings.emplace_back(ss.str()); - } + std::ostringstream ss; + ss.imbue(std::locale::classic()); + ss << fmt::format("${:08x} ", bp.address); + if (bp.is_enabled) + ss << "n"; + if (bp.log_on_hit) + ss << "l"; + if (bp.break_on_hit) + ss << "b"; + if (bp.condition) + ss << "c " << bp.condition->GetText(); + bp_strings.emplace_back(ss.str()); } return bp_strings; @@ -102,7 +103,6 @@ void BreakPoints::AddFromStrings(const TBreakPointsStr& bp_strings) std::getline(iss, condition); bp.condition = Expression::TryParse(condition); } - bp.is_temporary = false; Add(std::move(bp)); } } @@ -117,12 +117,12 @@ void BreakPoints::Add(TBreakPoint bp) m_breakpoints.emplace_back(std::move(bp)); } -void BreakPoints::Add(u32 address, bool temp) +void BreakPoints::Add(u32 address) { - BreakPoints::Add(address, temp, true, false, std::nullopt); + BreakPoints::Add(address, true, false, std::nullopt); } -void BreakPoints::Add(u32 address, bool temp, bool break_on_hit, bool log_on_hit, +void BreakPoints::Add(u32 address, bool break_on_hit, bool log_on_hit, std::optional condition) { // Check for existing breakpoint, and overwrite with new info. @@ -132,7 +132,6 @@ void BreakPoints::Add(u32 address, bool temp, bool break_on_hit, bool log_on_hit TBreakPoint bp; // breakpoint settings bp.is_enabled = true; - bp.is_temporary = temp; bp.break_on_hit = break_on_hit; bp.log_on_hit = log_on_hit; bp.address = address; @@ -151,6 +150,20 @@ void BreakPoints::Add(u32 address, bool temp, bool break_on_hit, bool log_on_hit m_system.GetJitInterface().InvalidateICache(address, 4, true); } +void BreakPoints::SetTemporary(u32 address) +{ + TBreakPoint bp; // breakpoint settings + bp.is_enabled = true; + bp.break_on_hit = true; + bp.log_on_hit = false; + bp.address = address; + bp.condition = std::nullopt; + + m_temp_breakpoint.emplace(std::move(bp)); + + m_system.GetJitInterface().InvalidateICache(address, 4, true); +} + bool BreakPoints::ToggleBreakPoint(u32 address) { if (!Remove(address)) @@ -195,22 +208,15 @@ void BreakPoints::Clear() } m_breakpoints.clear(); + ClearTemporary(); } -void BreakPoints::ClearAllTemporary() +void BreakPoints::ClearTemporary() { - auto bp = m_breakpoints.begin(); - while (bp != m_breakpoints.end()) + if (m_temp_breakpoint) { - if (bp->is_temporary) - { - m_system.GetJitInterface().InvalidateICache(bp->address, 4, true); - bp = m_breakpoints.erase(bp); - } - else - { - ++bp; - } + m_system.GetJitInterface().InvalidateICache(m_temp_breakpoint->address, 4, true); + m_temp_breakpoint.reset(); } } diff --git a/Source/Core/Core/PowerPC/BreakPoints.h b/Source/Core/Core/PowerPC/BreakPoints.h index 6c60b8a24e..9b07fb53c0 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.h +++ b/Source/Core/Core/PowerPC/BreakPoints.h @@ -20,7 +20,6 @@ struct TBreakPoint { u32 address = 0; bool is_enabled = false; - bool is_temporary = false; bool log_on_hit = false; bool break_on_hit = false; std::optional condition; @@ -68,14 +67,21 @@ public: bool IsAddressBreakPoint(u32 address) const; bool IsBreakPointEnable(u32 adresss) const; - bool IsTempBreakPoint(u32 address) const; + // Get the breakpoint in this address (for most purposes) const TBreakPoint* GetBreakpoint(u32 address) const; + // Get the breakpoint in this address (ignore temporary breakpoint, e.g. for editing purposes) + const TBreakPoint* GetRegularBreakpoint(u32 address) const; // Add BreakPoint. If one already exists on the same address, replace it. - void Add(u32 address, bool temp, bool break_on_hit, bool log_on_hit, - std::optional condition); - void Add(u32 address, bool temp = false); + void Add(u32 address, bool break_on_hit, bool log_on_hit, std::optional condition); + void Add(u32 address); void Add(TBreakPoint bp); + // Add temporary breakpoint (e.g., Step Over, Run to Here) + // It can be on the same address of a regular breakpoint (it will have priority in this case) + // It's cleared whenever the emulation is paused for any reason + // (CPUManager::SetStateLocked(State::Paused)) + // TODO: Should it somehow force to resume emulation when called? + void SetTemporary(u32 address); bool ToggleBreakPoint(u32 address); bool ToggleEnable(u32 address); @@ -83,10 +89,11 @@ public: // Remove Breakpoint. Returns whether it was removed. bool Remove(u32 address); void Clear(); - void ClearAllTemporary(); + void ClearTemporary(); private: TBreakPoints m_breakpoints; + std::optional m_temp_breakpoint; Core::System& m_system; }; diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index e3f66d8895..e97db77fc7 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -270,9 +270,6 @@ void PowerPCManager::Init(CPUCore cpu_core) auto& memory = m_system.GetMemory(); m_ppc_state.iCache.Init(memory); m_ppc_state.dCache.Init(memory); - - if (Config::Get(Config::MAIN_ENABLE_DEBUGGING)) - m_breakpoints.ClearAllTemporary(); } void PowerPCManager::Reset() diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index f16afbf51f..4b6233678c 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -1021,7 +1021,7 @@ void BranchWatchDialog::SetBreakpoints(bool break_on_hit, bool log_on_hit) const for (const QModelIndex& index : m_index_list_temp) { const u32 address = m_table_proxy->data(index, UserRole::ClickRole).value(); - breakpoints.Add(address, false, break_on_hit, log_on_hit, {}); + breakpoints.Add(address, break_on_hit, log_on_hit, {}); } emit m_code_widget->BreakpointsChanged(); m_code_widget->Update(); @@ -1111,11 +1111,9 @@ QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) for (auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); const QModelIndex& idx : m_index_list_temp) { - if (const TBreakPoint* bp = - breakpoints.GetBreakpoint(m_table_proxy->data(idx, UserRole::ClickRole).value())) + if (const TBreakPoint* bp = breakpoints.GetRegularBreakpoint( + m_table_proxy->data(idx, UserRole::ClickRole).value())) { - if (bp->is_temporary) - continue; if (bp->break_on_hit && bp->log_on_hit) { bp_both_count += 1; diff --git a/Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp b/Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp index 1899b42168..ba7fe1feb5 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp @@ -289,7 +289,7 @@ void BreakpointDialog::accept() return; } - m_parent->AddBP(address, false, do_break, do_log, condition); + m_parent->AddBP(address, do_break, do_log, condition); } else { diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 3bed35c576..0bf6c5b29c 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -443,8 +443,8 @@ void BreakpointWidget::OnEditBreakpoint(u32 address, bool is_instruction_bp) { if (is_instruction_bp) { - auto* dialog = - new BreakpointDialog(this, m_system.GetPowerPC().GetBreakPoints().GetBreakpoint(address)); + auto* dialog = new BreakpointDialog( + this, m_system.GetPowerPC().GetBreakPoints().GetRegularBreakpoint(address)); dialog->setAttribute(Qt::WA_DeleteOnClose, true); SetQWidgetWindowDecorations(dialog); dialog->exec(); @@ -602,14 +602,13 @@ void BreakpointWidget::OnItemChanged(QTableWidgetItem* item) void BreakpointWidget::AddBP(u32 addr) { - AddBP(addr, false, true, true, {}); + AddBP(addr, true, true, {}); } -void BreakpointWidget::AddBP(u32 addr, bool temp, bool break_on_hit, bool log_on_hit, - const QString& condition) +void BreakpointWidget::AddBP(u32 addr, bool break_on_hit, bool log_on_hit, const QString& condition) { m_system.GetPowerPC().GetBreakPoints().Add( - addr, temp, break_on_hit, log_on_hit, + addr, break_on_hit, log_on_hit, !condition.isEmpty() ? Expression::TryParse(condition.toUtf8().constData()) : std::nullopt); emit BreakpointsChanged(); @@ -619,7 +618,7 @@ void BreakpointWidget::AddBP(u32 addr, bool temp, bool break_on_hit, bool log_on void BreakpointWidget::EditBreakpoint(u32 address, int edit, std::optional string) { TBreakPoint bp; - const TBreakPoint* old_bp = m_system.GetPowerPC().GetBreakPoints().GetBreakpoint(address); + const TBreakPoint* old_bp = m_system.GetPowerPC().GetBreakPoints().GetRegularBreakpoint(address); bp.is_enabled = edit == ENABLED_COLUMN ? !old_bp->is_enabled : old_bp->is_enabled; bp.log_on_hit = edit == LOG_COLUMN ? !old_bp->log_on_hit : old_bp->log_on_hit; bp.break_on_hit = edit == BREAK_COLUMN ? !old_bp->break_on_hit : old_bp->break_on_hit; diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h index 3e204b41c1..1689270d44 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.h +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.h @@ -34,7 +34,7 @@ public: ~BreakpointWidget(); void AddBP(u32 addr); - void AddBP(u32 addr, bool temp, bool break_on_hit, bool log_on_hit, const QString& condition); + void AddBP(u32 addr, bool break_on_hit, bool log_on_hit, const QString& condition); void AddAddressMBP(u32 addr, bool on_read = true, bool on_write = true, bool do_log = true, bool do_break = true, const QString& condition = {}); void AddRangedMBP(u32 from, u32 to, bool do_read = true, bool do_write = true, bool do_log = true, diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 36e7ade321..6e7e12dcd2 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -382,10 +382,11 @@ void CodeViewWidget::Update(const Core::CPUThreadGuard* guard) if (ins == "blr") ins_item->setForeground(dark_theme ? QColor(0xa0FFa0) : Qt::darkGreen); - if (debug_interface.IsBreakpoint(addr)) + const TBreakPoint* bp = power_pc.GetBreakPoints().GetRegularBreakpoint(addr); + if (bp != nullptr) { auto icon = Resources::GetThemeIcon("debugger_breakpoint").pixmap(QSize(rowh - 2, rowh - 2)); - if (!power_pc.GetBreakPoints().IsBreakPointEnable(addr)) + if (!bp->is_enabled) { QPixmap disabled_icon(icon.size()); disabled_icon.fill(Qt::transparent); diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 361f142c7c..36d3d92284 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -455,7 +455,6 @@ void CodeWidget::Step() auto& power_pc = m_system.GetPowerPC(); PowerPC::CoreMode old_mode = power_pc.GetMode(); power_pc.SetMode(PowerPC::CoreMode::Interpreter); - power_pc.GetBreakPoints().ClearAllTemporary(); cpu.StepOpcode(&sync_event); sync_event.WaitFor(std::chrono::milliseconds(20)); power_pc.SetMode(old_mode); @@ -482,8 +481,7 @@ void CodeWidget::StepOver() if (inst.LK) { auto& breakpoints = m_system.GetPowerPC().GetBreakPoints(); - breakpoints.ClearAllTemporary(); - breakpoints.Add(m_system.GetPPCState().pc + 4, true); + breakpoints.SetTemporary(m_system.GetPPCState().pc + 4); cpu.SetStepping(false); Core::DisplayMessage(tr("Step over in progress...").toStdString(), 2000); } @@ -519,12 +517,9 @@ void CodeWidget::StepOut() auto& power_pc = m_system.GetPowerPC(); auto& ppc_state = power_pc.GetPPCState(); - auto& breakpoints = power_pc.GetBreakPoints(); { Core::CPUThreadGuard guard(m_system); - breakpoints.ClearAllTemporary(); - PowerPC::CoreMode old_mode = power_pc.GetMode(); power_pc.SetMode(PowerPC::CoreMode::Interpreter); From 719af828e57fa032536953028c5906bfbed7f121 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 15 Jun 2024 11:46:28 +0200 Subject: [PATCH 164/296] BreakpointWidget: Can create new breakpoints when emulation isn't running It works perfectly fine, so why not? Also, consistency with CodeViewWidget. --- Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 0bf6c5b29c..5b983ceb78 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -173,7 +173,6 @@ void BreakpointWidget::CreateWidgets() m_load = m_toolbar->addAction(tr("Load"), this, &BreakpointWidget::OnLoad); m_save = m_toolbar->addAction(tr("Save"), this, &BreakpointWidget::OnSave); - m_new->setEnabled(false); m_load->setEnabled(false); m_save->setEnabled(false); @@ -252,7 +251,6 @@ void BreakpointWidget::UpdateButtonsEnabled() return; const bool is_initialised = Core::GetState(m_system) != Core::State::Uninitialized; - m_new->setEnabled(is_initialised); m_load->setEnabled(is_initialised); m_save->setEnabled(is_initialised); } From 5b13903e6a7e6ffcc707005692c3418d14e98137 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 15 Jun 2024 18:20:04 +0200 Subject: [PATCH 165/296] Intepreter: Step before checking for breakpoints This way, by pressing Continue on top of a breakpoint, the emulation will actually continue (like on Cached Interpreter and JIT), instead of doing nothing. --- Source/Core/Core/HW/CPU.cpp | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/Source/Core/Core/HW/CPU.cpp b/Source/Core/Core/HW/CPU.cpp index 7a161b0bf7..1eae912476 100644 --- a/Source/Core/Core/HW/CPU.cpp +++ b/Source/Core/Core/HW/CPU.cpp @@ -85,23 +85,20 @@ void CPUManager::Run() m_state_cpu_thread_active = true; state_lock.unlock(); - // Adjust PC for JIT when debugging + // Adjust PC when debugging // SingleStep so that the "continue", "step over" and "step out" debugger functions // work when the PC is at a breakpoint at the beginning of the block // Don't use PowerPCManager::CheckBreakPoints, otherwise you get double logging // If watchpoints are enabled, any instruction could be a breakpoint. - if (power_pc.GetMode() != PowerPC::CoreMode::Interpreter) + if (power_pc.GetBreakPoints().IsAddressBreakPoint(power_pc.GetPPCState().pc) || + power_pc.GetMemChecks().HasAny()) { - if (power_pc.GetBreakPoints().IsAddressBreakPoint(power_pc.GetPPCState().pc) || - power_pc.GetMemChecks().HasAny()) - { - m_state = State::Stepping; - PowerPC::CoreMode old_mode = power_pc.GetMode(); - power_pc.SetMode(PowerPC::CoreMode::Interpreter); - power_pc.SingleStep(); - power_pc.SetMode(old_mode); - m_state = State::Running; - } + m_state = State::Stepping; + PowerPC::CoreMode old_mode = power_pc.GetMode(); + power_pc.SetMode(PowerPC::CoreMode::Interpreter); + power_pc.SingleStep(); + power_pc.SetMode(old_mode); + m_state = State::Running; } // Enter a fast runloop From 2372b6a3865787929ced19d358471359b9d7f4a6 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 2 Jul 2024 02:43:35 -0400 Subject: [PATCH 166/296] Add Open Achievements Hotkey Adds a hotkey to pause emulation and bring up the Achievements dialog. --- Source/Core/Core/HotkeyManager.cpp | 10 ++++++++++ Source/Core/Core/HotkeyManager.h | 3 +++ Source/Core/DolphinQt/HotkeyScheduler.cpp | 5 +++++ Source/Core/DolphinQt/HotkeyScheduler.h | 3 +++ Source/Core/DolphinQt/MainWindow.cpp | 4 ++++ 5 files changed, 25 insertions(+) diff --git a/Source/Core/Core/HotkeyManager.cpp b/Source/Core/Core/HotkeyManager.cpp index 83b0c31616..3d0a153fd6 100644 --- a/Source/Core/Core/HotkeyManager.cpp +++ b/Source/Core/Core/HotkeyManager.cpp @@ -38,6 +38,9 @@ constexpr std::array s_hotkey_labels{{ _trans("Center Mouse"), _trans("Activate NetPlay Chat"), _trans("Control NetPlay Golf Mode"), +#ifdef USE_RETRO_ACHIEVEMENTS + _trans("Open Achievements"), +#endif // USE_RETRO_ACHIEVEMENTS _trans("Volume Down"), _trans("Volume Up"), @@ -330,7 +333,11 @@ struct HotkeyGroupInfo }; constexpr std::array s_groups_info = { +#ifdef USE_RETRO_ACHIEVEMENTS + {{_trans("General"), HK_OPEN, HK_OPEN_ACHIEVEMENTS}, +#else // USE_RETRO_ACHIEVEMENTS {{_trans("General"), HK_OPEN, HK_REQUEST_GOLF_CONTROL}, +#endif // USE_RETROACHIEVEMENTS {_trans("Volume"), HK_VOLUME_DOWN, HK_VOLUME_TOGGLE_MUTE}, {_trans("Emulation Speed"), HK_DECREASE_EMULATION_SPEED, HK_TOGGLE_THROTTLE}, {_trans("Frame Advance"), HK_FRAME_ADVANCE, HK_FRAME_ADVANCE_RESET_SPEED}, @@ -448,6 +455,9 @@ void HotkeyManager::LoadDefaults(const ControllerInterface& ciface) set_key_expression(HK_STOP, "Escape"); set_key_expression(HK_FULLSCREEN, hotkey_string({"Alt", "Return"})); #endif +#ifdef USE_RETRO_ACHIEVEMENTS + set_key_expression(HK_OPEN_ACHIEVEMENTS, hotkey_string({"Alt", "A"})); +#endif // USE_RETRO_ACHIEVEMENTS set_key_expression(HK_STEP, "F11"); set_key_expression(HK_STEP_OVER, hotkey_string({"Shift", "F10"})); set_key_expression(HK_STEP_OUT, hotkey_string({"Shift", "F11"})); diff --git a/Source/Core/Core/HotkeyManager.h b/Source/Core/Core/HotkeyManager.h index aae894cb5b..bb287b6561 100644 --- a/Source/Core/Core/HotkeyManager.h +++ b/Source/Core/Core/HotkeyManager.h @@ -32,6 +32,9 @@ enum Hotkey HK_CENTER_MOUSE, HK_ACTIVATE_CHAT, HK_REQUEST_GOLF_CONTROL, +#ifdef USE_RETRO_ACHIEVEMENTS + HK_OPEN_ACHIEVEMENTS, +#endif // USE_RETRO_ACHIEVEMENTS HK_VOLUME_DOWN, HK_VOLUME_UP, diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 39e4633a9e..232f41c2f8 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -192,6 +192,11 @@ void HotkeyScheduler::Run() if (IsHotkey(HK_EXIT)) emit ExitHotkey(); +#ifdef USE_RETRO_ACHIEVEMENTS + if (IsHotkey(HK_OPEN_ACHIEVEMENTS)) + emit OpenAchievements(); +#endif // USE_RETRO_ACHIEVEMENTS + if (!Core::IsRunning(system)) { // Only check for Play Recording hotkey when no game is running diff --git a/Source/Core/DolphinQt/HotkeyScheduler.h b/Source/Core/DolphinQt/HotkeyScheduler.h index 97a43be72e..c61cdb265d 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.h +++ b/Source/Core/DolphinQt/HotkeyScheduler.h @@ -53,6 +53,9 @@ signals: void ExportRecording(); void ToggleReadOnlyMode(); void ConnectWiiRemote(int id); +#ifdef USE_RETRO_ACHIEVEMENTS + void OpenAchievements(); +#endif // USE_RETRO_ACHIEVEMENTS void Step(); void StepOver(); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 772fee9abf..e68673a205 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -658,6 +658,10 @@ void MainWindow::ConnectHotkeys() movie.SetReadOnly(read_only); emit ReadOnlyModeChanged(read_only); }); +#ifdef USE_RETRO_ACHIEVEMENTS + connect(m_hotkey_scheduler, &HotkeyScheduler::OpenAchievements, this, + &MainWindow::ShowAchievementsWindow, Qt::QueuedConnection); +#endif // USE_RETRO_ACHIEVEMENTS connect(m_hotkey_scheduler, &HotkeyScheduler::Step, m_code_widget, &CodeWidget::Step); connect(m_hotkey_scheduler, &HotkeyScheduler::StepOver, m_code_widget, &CodeWidget::StepOver); From 8b427de28f0674948098a24f5807aad647af7426 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 2 Jul 2024 08:49:39 -0400 Subject: [PATCH 167/296] Remove popups for challenges The challenge popups have proven to be excessive and are no longer useful thanks to the achievements hotkey. Instead, those events will ask for an immediate RP-level update to the achievements dialog, which will among other things re-sort the dialog to show challenges on top faster. --- Source/Core/Core/AchievementManager.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 7d7c0af374..544ec36afc 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -882,9 +882,7 @@ void AchievementManager::HandleAchievementChallengeIndicatorShowEvent( const auto [iter, inserted] = instance.m_active_challenges.insert(client_event->achievement->id); if (inserted) instance.m_challenges_updated = true; - OSD::AddMessage(fmt::format("Challenge Started: {}", client_event->achievement->title), - OSD::Duration::VERY_LONG, OSD::Color::GREEN, - &instance.GetAchievementBadge(client_event->achievement->id, false)); + AchievementManager::GetInstance().m_update_callback(UpdatedItems{.rich_presence = true}); } void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( @@ -894,9 +892,7 @@ void AchievementManager::HandleAchievementChallengeIndicatorHideEvent( const auto removed = instance.m_active_challenges.erase(client_event->achievement->id); if (removed > 0) instance.m_challenges_updated = true; - OSD::AddMessage(fmt::format("Challenge Ended: {}", client_event->achievement->title), - OSD::Duration::VERY_LONG, OSD::Color::GREEN, - &instance.GetAchievementBadge(client_event->achievement->id, false)); + AchievementManager::GetInstance().m_update_callback(UpdatedItems{.rich_presence = true}); } void AchievementManager::HandleAchievementProgressIndicatorShowEvent( From cab6e7c12e280be05995655ea9a3a458466dd849 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Sat, 6 Jul 2024 16:56:44 -0500 Subject: [PATCH 168/296] Properly link against xxhash Things using dolphin_find_optional_system_library need to link against the name used there or they won't work with both the system and bundled cases --- Externals/xxhash/CMakeLists.txt | 1 + Source/Core/VideoBackends/Vulkan/CMakeLists.txt | 2 +- Source/Core/VideoCommon/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Externals/xxhash/CMakeLists.txt b/Externals/xxhash/CMakeLists.txt index c275795083..a874dc4e90 100644 --- a/Externals/xxhash/CMakeLists.txt +++ b/Externals/xxhash/CMakeLists.txt @@ -6,3 +6,4 @@ target_include_directories(xxhash PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/xxHash ) +add_library(xxhash::xxhash ALIAS xxhash) diff --git a/Source/Core/VideoBackends/Vulkan/CMakeLists.txt b/Source/Core/VideoBackends/Vulkan/CMakeLists.txt index a41c5af172..c4fbd847e1 100644 --- a/Source/Core/VideoBackends/Vulkan/CMakeLists.txt +++ b/Source/Core/VideoBackends/Vulkan/CMakeLists.txt @@ -45,7 +45,7 @@ PUBLIC PRIVATE # Link against glslang, the other necessary libraries are referenced by the executable. glslang - xxhash + xxhash::xxhash ) if (ANDROID AND _M_ARM_64) diff --git a/Source/Core/VideoCommon/CMakeLists.txt b/Source/Core/VideoCommon/CMakeLists.txt index 89ec66d048..e24680185e 100644 --- a/Source/Core/VideoCommon/CMakeLists.txt +++ b/Source/Core/VideoCommon/CMakeLists.txt @@ -214,7 +214,7 @@ PUBLIC PRIVATE fmt::fmt spng::spng - xxhash + xxhash::xxhash imgui implot glslang From 0c14b0c8a70799072ddccb648006914af7c62855 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 21 Jun 2024 23:44:21 -0400 Subject: [PATCH 169/296] Add Approved Patch Allowlist for Achievements Prototype of a system to whitelist known game patches that are allowed to be used while RetroAchievements Hardcore mode is active. ApprovedInis.txt contains known hashes for the ini files as they appear in the repo, and can be compared to the local versions of these files to ensure they have not been edited locally by the player. ApprovedInis.txt is hashed and verified similarly first, with its hash residing as a const string within AchievementManager.h, ensuring ApprovedInis and the hashes within cannot be modified without editing Dolphin's source code and recompiling completely. --- Data/Sys/ApprovedInis.json | 323 ++++++++++++++++++++++++ Data/Sys/GameSettings/D43J01.ini | 3 + Data/Sys/GameSettings/G2BE5G.ini | 3 + Data/Sys/GameSettings/G2BP7D.ini | 3 + Data/Sys/GameSettings/GC6E01.ini | 3 + Data/Sys/GameSettings/GC6J01.ini | 3 + Data/Sys/GameSettings/GC6P01.ini | 3 + Data/Sys/GameSettings/GCCE01.ini | 4 + Data/Sys/GameSettings/GCCJGC.ini | 3 + Data/Sys/GameSettings/GCCP01.ini | 3 + Data/Sys/GameSettings/GDREAF.ini | 3 + Data/Sys/GameSettings/GDRP69.ini | 3 + Data/Sys/GameSettings/GEME7F.ini | 3 + Data/Sys/GameSettings/GEMJ28.ini | 3 + Data/Sys/GameSettings/GGVD78.ini | 3 + Data/Sys/GameSettings/GGVE78.ini | 3 + Data/Sys/GameSettings/GGVP78.ini | 3 + Data/Sys/GameSettings/GGVX78.ini | 3 + Data/Sys/GameSettings/GHAE08.ini | 3 + Data/Sys/GameSettings/GHAJ08.ini | 3 + Data/Sys/GameSettings/GHAP08.ini | 3 + Data/Sys/GameSettings/GICD78.ini | 3 + Data/Sys/GameSettings/GICE78.ini | 3 + Data/Sys/GameSettings/GICF78.ini | 3 + Data/Sys/GameSettings/GICH78.ini | 3 + Data/Sys/GameSettings/GICJG9.ini | 3 + Data/Sys/GameSettings/GICP78.ini | 3 + Data/Sys/GameSettings/GIQE78.ini | 3 + Data/Sys/GameSettings/GIQJ8P.ini | 3 + Data/Sys/GameSettings/GIQX78.ini | 3 + Data/Sys/GameSettings/GIQY78.ini | 3 + Data/Sys/GameSettings/GLEE08.ini | 3 + Data/Sys/GameSettings/GLEJ08.ini | 3 + Data/Sys/GameSettings/GLEP08.ini | 3 + Data/Sys/GameSettings/GLSD64.ini | 3 + Data/Sys/GameSettings/GLSE64.ini | 3 + Data/Sys/GameSettings/GLSF64.ini | 3 + Data/Sys/GameSettings/GLSP64.ini | 3 + Data/Sys/GameSettings/GNHE5d.ini | 3 + Data/Sys/GameSettings/GQPE78.ini | 3 + Data/Sys/GameSettings/GQPP78.ini | 3 + Data/Sys/GameSettings/GRYE41.ini | 3 + Data/Sys/GameSettings/GU2D78.ini | 3 + Data/Sys/GameSettings/GU2F78.ini | 3 + Data/Sys/GameSettings/GU3D78.ini | 3 + Data/Sys/GameSettings/GU3X78.ini | 3 + Data/Sys/GameSettings/GU4Y78.ini | 3 + Data/Sys/GameSettings/GV4E69.ini | 3 + Data/Sys/GameSettings/GVPE69.ini | 3 + Data/Sys/GameSettings/GWLE6L.ini | 3 + Data/Sys/GameSettings/GWLX6L.ini | 3 + Data/Sys/GameSettings/GXXE01.ini | 3 + Data/Sys/GameSettings/GXXJ01.ini | 3 + Data/Sys/GameSettings/GXXP01.ini | 3 + Data/Sys/GameSettings/GZ2E01.ini | 3 + Data/Sys/GameSettings/GZ2J01.ini | 3 + Data/Sys/GameSettings/GZ2P01.ini | 3 + Data/Sys/GameSettings/HAF.ini | 3 + Data/Sys/GameSettings/HAL.ini | 3 + Data/Sys/GameSettings/RELJAB.ini | 3 + Data/Sys/GameSettings/RGQE70.ini | 3 + Data/Sys/GameSettings/RLEEFS.ini | 3 + Data/Sys/GameSettings/RMHP08.ini | 3 + Data/Sys/GameSettings/RO2P7N.ini | 3 + Data/Sys/GameSettings/RPBE01.ini | 3 + Data/Sys/GameSettings/RPBJ01r0.ini | 3 + Data/Sys/GameSettings/RPBJ01r1.ini | 3 + Data/Sys/GameSettings/RPBJ01r2.ini | 3 + Data/Sys/GameSettings/RPBP01.ini | 3 + Data/Sys/GameSettings/RTH.ini | 3 + Data/Sys/GameSettings/RX4E4Z.ini | 3 + Data/Sys/GameSettings/RX4PMT.ini | 3 + Data/Sys/GameSettings/RZDE01r0.ini | 3 + Data/Sys/GameSettings/RZDE01r2.ini | 3 + Data/Sys/GameSettings/RZDJ01.ini | 3 + Data/Sys/GameSettings/RZDK01.ini | 3 + Data/Sys/GameSettings/RZDP01.ini | 3 + Data/Sys/GameSettings/SAOE78.ini | 3 + Data/Sys/GameSettings/SAOEVZ.ini | 3 + Data/Sys/GameSettings/SGLEA4.ini | 3 + Data/Sys/GameSettings/SGLPA4.ini | 3 + Source/Core/Core/AchievementManager.cpp | 72 ++++++ Source/Core/Core/AchievementManager.h | 20 +- Source/Core/Core/PatchEngine.cpp | 10 +- 84 files changed, 662 insertions(+), 4 deletions(-) create mode 100644 Data/Sys/ApprovedInis.json diff --git a/Data/Sys/ApprovedInis.json b/Data/Sys/ApprovedInis.json new file mode 100644 index 0000000000..85c8f7a067 --- /dev/null +++ b/Data/Sys/ApprovedInis.json @@ -0,0 +1,323 @@ +{ + "D43J01": { + "title": "ZELDA OCARINA MULTI PACK", + "CAB9CED2D904F12CCB21F5B1DE9B5433620C3E13": "loophack" + }, + "G2BE5G": { + "title": "Black & Bruised", + "7FFF6BDD93713BEDFD23739C32B86153FA19AEA0": "Disable interlaced rendering" + }, + "G2BP7D": { + "title": "Black & Bruised", + "56E85D7285F10348E1E5354E379918D07E79EDA9": "Disable interlaced rendering" + }, + "GC6E01": { + "title": "Pokémon Colosseum", + "2F64F98686E62B60E466E931A9EBCD19A750FF4E": "Allow Memory Card saving with Savestates" + }, + "GC6J01": { + "title": "ポケモンコロシアム", + "D8F327304A88FBC717BB1F775494C5F864B9E8D2": "Allow Memory Card saving with Savestates" + }, + "GC6P01": { + "title": "Pokémon Colosseum", + "EDEE0E28EEA1834868F2865336290FFBDFB9C6DA": "Allow Memory Card saving with Savestates" + }, + "GCCE01": { + "title": "FINAL FANTASY Crystal Chronicles", + "6C107FEC15C76201233CA2645EB5FAB4FF9751CE": "Fix buffer overrun bug (crash at Goblin Wall)", + "483BDB94615C690045C3759795AF13CE76552286": "Fix GBA connections" + }, + "GCCJGC": { + "title": "FINAL FANTASY Crystal Chronicles", + "4C104D24329172F5D0F8649DE9423B931FE72CA3": "Fix GBA connections" + }, + "GCCP01": { + "title": "FINAL FANTASY Crystal Chronicles", + "2EAA60A8A115AD68A795109FB59E4A726D29016D": "Fix GBA connections" + }, + "GDREAF": { + "title": "Dead to Rights", + "F8EAE60FEB0CFB4477FDC4B9E136B63F68DFA63A": "Fix audio issues" + }, + "GDRP69": { + "title": "Dead to Rights", + "E23D98B2CE185C3993A40F2495D37E41B971BF91": "Fix audio issues" + }, + "GEME7F": { + "title": "Egg Mania: Eggstreme Madness", + "CB04E00918C9C0F161715D21D046ED6620F7ADEF": "Force Progressive Scan" + }, + "GEMJ28": { + "title": "Egg Mania: Eggstreme Madness", + "CC2057185BB10DAD4A361412D024DFD586EE0130": "Force Progressive Scan" + }, + "GGVD78": { + "title": "The SpongeBob SquarePants Movie", + "FE52240DF6D132C15A8324E8A477F2BF2250D208": "EFB Copy Fix" + }, + "GGVE78": { + "title": "The SpongeBob SquarePants Movie", + "5E38E10829D5F77243C95E9E41518BB3ADE24139": "EFB Copy Fix" + }, + "GGVP78": { + "title": "The SpongeBob SquarePants Movie", + "5E38E10829D5F77243C95E9E41518BB3ADE24139": "EFB Copy Fix" + }, + "GGVX78": { + "title": "The SpongeBob SquarePants Movie", + "740F2D1C01DA39D1760D96B03974A48E6F74578D": "EFB Copy Fix" + }, + "GHAE08": { + "title": "Resident Evil 2", + "9799AFF8463EC86C9230E31E2627E141F0C129D3": "Fix audio issues" + }, + "GHAJ08": { + "title": "Biohazard 2", + "B45A8FC32D14567B8D6C95F303E00A72C0E1D344": "Fix audio issues" + }, + "GHAP08": { + "title": "Resident Evil 2", + "BC7F3CFC97593AA2055C370C175950DC478D2709": "Fix audio issues" + }, + "GICD78": { + "title": "The Incredibles", + "3A94591A149AE88C150AB3320BBC909FE54BAEA5": "EFB Copy Fix" + }, + "GICE78": { + "title": "The Incredibles", + "5BF55685B8867A85EAA9C86571309B17BF7DED32": "EFB Copy Fix" + }, + "GICF78": { + "title": "The Incredibles", + "85AABAEB9A59C4F96D9330A3B884F6D757DA1683": "EFB Copy Fix" + }, + "GICH78": { + "title": "The Incredibles", + "3A94591A149AE88C150AB3320BBC909FE54BAEA5": "EFB Copy Fix" + }, + "GICJG9": { + "title": "The Incredibles", + "969134EA21A160EBDA91C0870266E7D1707FDC43": "EFB Copy Fix" + }, + "GICP78": { + "title": "The Incredibles", + "13B158CF41F5412BC637F50644193D43CC3DA49A": "EFB Copy Fix" + }, + "GIQE78": { + "title": "The Incredibles: Rise of the Underminer", + "E15AA1E30D26E5735D68AAADE436E7B7E4A33A35": "EFB Copy Fix" + }, + "GIQJ8P": { + "title": "The Incredibles: Rise of the Underminer", + "FFFCB76E98DDB06A7BBBC0AA73C869C87EB787D6": "EFB Copy Fix" + }, + "GIQX78": { + "title": "The Incredibles: Rise of the Underminer", + "485DA99FAB35646DAA2A138B0315361495ABE778": "EFB Copy Fix" + }, + "GIQY78": { + "title": "The Incredibles: Rise of the Underminer", + "485DA99FAB35646DAA2A138B0315361495ABE778": "EFB Copy Fix" + }, + "GLEE08": { + "title": "Resident Evil 3: Nemesis", + "7355F358CAC6F418D37E4C23E64F7867D46E4FC9": "Fix audio issues" + }, + "GLEJ08": { + "title": "BioHazard 3: Last Escape", + "12B24A6D7389A2AC5AB75FC0BF8493E7661F2A73": "Fix audio issues" + }, + "GLEP08": { + "title": "Resident Evil 3: Nemesis", + "81BD39F5527552DE89E3B59BA86298900F0A3168": "Fix audio issues" + }, + "GLSD64": { + "title": "Gladius", + "5E2A73717BD66EF647846DD64C33BC80AD9B5227": "Fix freeze in opening cutscene" + }, + "GLSE64": { + "title": "Gladius", + "1CE78E7954415A44DF693C0BB879AA5A4FF059A3": "Fix freeze in opening cutscene" + }, + "GLSF64": { + "title": "Gladius", + "009B0C4AD80A9C28C987934D254C2C4AACC9A07A": "Fix freeze in opening cutscene" + }, + "GLSP64": { + "title": "Gladius", + "3D0894616C9A7FA5ED91C1D2F461BF14DF47ECEC": "Fix freeze in opening cutscene" + }, + "GNHE5d": { + "title": "NHL HITZ 2002", + "89393A24E2336841AA4CD0AD3BE1C9A66B89E9EF": "Nop Hack" + }, + "GQPE78": { + "title": "SpongeBob SquarePants: Battle for Bikini Bottom", + "880B114E9A308084CAB92C004A9EE067B371C310": "EFB Copy Fix" + }, + "GQPP78": { + "title": "SpongeBob SquarePants: Battle for Bikini Bottom", + "5D9A14954AE8D639C9B254F3BA73A70F284BBC8D": "EFB Copy Fix" + }, + "GRYE41": { + "title": "Rayman Arena", + "AF0A575EB6071EAC0D2EC3D2EA30A23EB05A4192": "Disable Culling to Fix Rise and Shrine Hang" + }, + "GU2D78": { + "title": "2 Games in 1: The Incredibles / Finding Nemo", + "CFF4C3F932B08732627572EDA1A0CD2D9C71AE0C": "EFB Copy Fix" + }, + "GU2F78": { + "title": "2 Games in 1: The Incredibles / Finding Nemo", + "CFF4C3F932B08732627572EDA1A0CD2D9C71AE0C": "EFB Copy Fix" + }, + "GU3D78": { + "title": "2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams", + "8A0E3114862ADFE421874211BD6F5220AA425BF5": "EFB Copy Fix" + }, + "GU3X78": { + "title": "2 Games in 1: The SpongeBob SquarePants Movie / Tak 2: The Staff of Dreams", + "E3303FDAE7ECA17A72EDC440C32D94648A6453A0": "EFB Copy Fix" + }, + "GU4Y78": { + "title": "2 Games in 1: Nickelodeon SpongeBob Schwammkopf: Der Film + Nickelodeon SpongeBob Schwammkopf: Schlacht um Bikini Bottom", + "D54767785E139A8BC8C4B75573FBD5A0B686D8E3": "EFB Copy Fix" + }, + "GV4E69": { + "title": "MVP Baseball 2005", + "8679891FCAA250FCFF670B26E0CB9875900D17FD": "Fix 2D Rendering" + }, + "GVPE69": { + "title": "MVP Baseball 2004", + "3159CA79B0A890131763EA6CB163684BEE886E3F": "Fix 2D Rendering" + }, + "GWLE6L": { + "title": "Project Zoo", + "C9101E4C6800FEEF18136846D771273593C21890": "Bypass FIFO reset" + }, + "GWLX6L": { + "title": "Project Zoo", + "89C15ADC918F3A4399257534F326EB9F933AF040": "Bypass FIFO reset" + }, + "GXXE01": { + "title": "Pokémon XD: Gale of Darkness", + "64FAA15062F0D0C319F904BBDE9C4489A25D6369": "Allow Memory Card saving with Savestates" + }, + "GXXJ01": { + "title": "ポケモンXD 闇の旋風ダーク・ルギア", + "8293802260536FA2EF2EFDAB5266DE36BB88DE1B": "Allow Memory Card saving with Savestates" + }, + "GXXP01": { + "title": "Pokémon XD: Gale of Darkness", + "3CAFBC4AE6FC5CE9F53377F86AB5BD8F1BC8861A": "Allow Memory Card saving with Savestates" + }, + "GZ2E01": { + "title": "The Legend of Zelda: Twilight Princess [GC]", + "FCB673D46E716C7F63C618B8D8BF83AEE0B501F0": "Hyrule Field Speed Hack" + }, + "GZ2J01": { + "title": "The Legend of Zelda: Twilight Princess [GC]", + "FCB673D46E716C7F63C618B8D8BF83AEE0B501F0": "Hyrule Field Speed Hack" + }, + "GZ2P01": { + "title": "The Legend of Zelda: Twilight Princess [GC]", + "0F63623D4D984B7706F718F57C0ABDB6DBADCF8D": "Hyrule Field Speed Hack" + }, + "HAF": { + "title": "Forecast Channel", + "181195871F63B89B1CF09AFA4420CF89B9883108": "BufferPatch" + }, + "HAL": { + "title": "Region Select", + "AD12237401ABE9FE4A545AADB5C5AE10355E2076": "RSAPatch" + }, + "RELJAB": { + "title": "SegaBoot", + "130F3594CAB57B85616F95C7126F4748AAC5867D": "DI Seed Blanker" + }, + "RGQE70": { + "title": "Ghostbusters", + "5F4CF8D4DA19A0FF74FF9EB925AC0236069BFD59": "crashfix" + }, + "RLEEFS": { + "title": "Ten Pin Alley 2", + "793642AC6862C2F3412035A9E3D7172CC4A1D5C7": "Fix crash on main menu" + }, + "RMHP08": { + "title": "Monster Hunter Tri", + "1720C1173D4698167080DBFC4232F21757C4DA08": "Bloom OFF" + }, + "RO2P7N": { + "title": "OFF ROAD", + "EEE9C8DE4671C18DD7F81DD08D39B64C57600DEA": "Hangfix" + }, + "RPBE01": { + "title": "Pokemon Battle Revolution", + "775ABECA6073E02C5C68CF4D644194D966A418F5": "Fix black screen effects" + }, + "RPBJ01r0": { + "title": "Pokemon Battle Revolution", + "0EAB5D8DE827894AFEF97C10ACB67378E6983323": "Fix black screen effects" + }, + "RPBJ01r1": { + "title": "Pokemon Battle Revolution", + "4905E08643E9D00136F7EAF51978CF2F54D10D07": "Fix black screen effects" + }, + "RPBJ01r2": { + "title": "Pokemon Battle Revolution", + "4905E08643E9D00136F7EAF51978CF2F54D10D07": "Fix black screen effects" + }, + "RPBP01": { + "title": "Pokemon Battle Revolution", + "82AEB60F9A9083F93060531A970FFAABE0833A40": "Fix black screen effects" + }, + "RTH": { + "title": "Tony Hawk's Downhill Jam", + "812EE46AC967BFCD239335B10A664D71A93E8175": "Disable blur" + }, + "RX4E4Z": { + "title": "Casper's Scare School: Spooky Sports Day", + "9E4E0F1465A9A1E85349DBA3B1278AC215A97DBB": "Fix file reads (dcache bypass)" + }, + "RX4PMT": { + "title": "Casper's Scare School: Spooky Sports Day", + "EE85907C03F0295794821383B93F8D5B91D2697A": "Fix file reads (dcache bypass)" + }, + "RZDE01r0": { + "title": "The Legend of Zelda: Twilight Princess [Wii]", + "15EAD073414C9903D6CAE5229DCE582BD17A9162": "Hyrule Field Speed Hack" + }, + "RZDE01r2": { + "title": "The Legend of Zelda: Twilight Princess [Wii]", + "27395CC8BC2C51201D566657D31A471A850482FB": "Hyrule Field Speed Hack" + }, + "RZDJ01": { + "title": "The Legend of Zelda: Twilight Princess [Wii]", + "B3F7473F8C911A32F1D616491C9E78EBBD7A6309": "Hyrule Field Speed Hack" + }, + "RZDK01": { + "title": "The Legend of Zelda: Twilight Princess [Wii]", + "A280C0114B800D7DC056ECFB5E482229DA0B1550": "Hyrule Field Speed Hack" + }, + "RZDP01": { + "title": "The Legend of Zelda: Twilight Princess [Wii]", + "2A83ADFB760F9498841ED0ED68B0C0438232472C": "Hyrule Field Speed Hack" + }, + "SAOE78": { + "title": "Monster High: Ghoul Spirit", + "EA11FA4908FB20B61876ACD360EC7657A6D39FB2": "Fix crash on boot" + }, + "SAOEVZ": { + "title": "Monster High: Ghoul Spirit", + "AA55C214DE7545DE0E203CC39F06BF3D31451BE9": "Fix crash on boot" + }, + "SGLEA4": { + "title": "Gormiti: The Lords of Nature!", + "258378187ACF475A55EFEAF8A703681252E014C3": "Fix black screen" + }, + "SGLPA4": { + "title": "Gormiti: The Lords of Nature!", + "6F8CD59D897338CA90939149E1A62588620C6D88": "Fix black screen" + } +} \ No newline at end of file diff --git a/Data/Sys/GameSettings/D43J01.ini b/Data/Sys/GameSettings/D43J01.ini index 347e49b949..373c98f913 100644 --- a/Data/Sys/GameSettings/D43J01.ini +++ b/Data/Sys/GameSettings/D43J01.ini @@ -8,5 +8,8 @@ $loophack 0x806866E4:word:0x60000000 +[Patches_RetroAchievements_Verified] +$loophack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/G2BE5G.ini b/Data/Sys/GameSettings/G2BE5G.ini index af06b01fac..fd8e961342 100644 --- a/Data/Sys/GameSettings/G2BE5G.ini +++ b/Data/Sys/GameSettings/G2BE5G.ini @@ -11,6 +11,9 @@ $Disable interlaced rendering 0x800D8520:dword:0x38600000 +[Patches_RetroAchievements_Verified] +$Disable interlaced rendering + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/G2BP7D.ini b/Data/Sys/GameSettings/G2BP7D.ini index 39f453fcbb..d3dc9a3b39 100644 --- a/Data/Sys/GameSettings/G2BP7D.ini +++ b/Data/Sys/GameSettings/G2BP7D.ini @@ -11,6 +11,9 @@ $Disable interlaced rendering 0x800D9E68:dword:0x38600000 +[Patches_RetroAchievements_Verified] +$Disable interlaced rendering + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/GC6E01.ini b/Data/Sys/GameSettings/GC6E01.ini index 7fa89bcfad..5af8c69560 100644 --- a/Data/Sys/GameSettings/GC6E01.ini +++ b/Data/Sys/GameSettings/GC6E01.ini @@ -25,3 +25,6 @@ $Allow Memory Card saving with Savestates 0x801cfc2c:dword:0x9005002c 0x801cfc7c:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GC6J01.ini b/Data/Sys/GameSettings/GC6J01.ini index 5368a547a0..eb8bd994a8 100644 --- a/Data/Sys/GameSettings/GC6J01.ini +++ b/Data/Sys/GameSettings/GC6J01.ini @@ -25,3 +25,6 @@ $Allow Memory Card saving with Savestates 0x801cb5b8:dword:0x9005002c 0x801cb608:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GC6P01.ini b/Data/Sys/GameSettings/GC6P01.ini index cfc8c6cbe0..8f02b22bd3 100644 --- a/Data/Sys/GameSettings/GC6P01.ini +++ b/Data/Sys/GameSettings/GC6P01.ini @@ -25,3 +25,6 @@ $Allow Memory Card saving with Savestates 0x801d429c:dword:0x9005002c 0x801d42ec:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GCCE01.ini b/Data/Sys/GameSettings/GCCE01.ini index 0066794bba..e9ccea7360 100644 --- a/Data/Sys/GameSettings/GCCE01.ini +++ b/Data/Sys/GameSettings/GCCE01.ini @@ -29,6 +29,10 @@ $Fix GBA connections [OnFrame_Enabled] $Fix GBA connections +[Patches_RetroAchievements_Verified] +$Fix buffer overrun bug (crash at Goblin Wall) +$Fix GBA connections + [ActionReplay] # Add action replay cheats here. $Infinite Health: Single Player diff --git a/Data/Sys/GameSettings/GCCJGC.ini b/Data/Sys/GameSettings/GCCJGC.ini index bcbc70da9e..f2967432f2 100644 --- a/Data/Sys/GameSettings/GCCJGC.ini +++ b/Data/Sys/GameSettings/GCCJGC.ini @@ -23,3 +23,6 @@ $Fix GBA connections [OnFrame_Enabled] $Fix GBA connections + +[Patches_RetroAchievements_Verified] +$Fix GBA connections diff --git a/Data/Sys/GameSettings/GCCP01.ini b/Data/Sys/GameSettings/GCCP01.ini index c37aca32af..71100cbbce 100644 --- a/Data/Sys/GameSettings/GCCP01.ini +++ b/Data/Sys/GameSettings/GCCP01.ini @@ -23,3 +23,6 @@ $Fix GBA connections [OnFrame_Enabled] $Fix GBA connections + +[Patches_RetroAchievements_Verified] +$Fix GBA connections diff --git a/Data/Sys/GameSettings/GDREAF.ini b/Data/Sys/GameSettings/GDREAF.ini index 9f98d82fd0..a07afe24b9 100644 --- a/Data/Sys/GameSettings/GDREAF.ini +++ b/Data/Sys/GameSettings/GDREAF.ini @@ -9,3 +9,6 @@ $Fix audio issues 0x8000AF34:dword:0x60000000 [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GDRP69.ini b/Data/Sys/GameSettings/GDRP69.ini index ae3fc95a2f..81efcef87b 100644 --- a/Data/Sys/GameSettings/GDRP69.ini +++ b/Data/Sys/GameSettings/GDRP69.ini @@ -9,3 +9,6 @@ $Fix audio issues 0x8000B7EC:dword:0x60000000 [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GEME7F.ini b/Data/Sys/GameSettings/GEME7F.ini index e44d7b6960..842bbbfb9b 100644 --- a/Data/Sys/GameSettings/GEME7F.ini +++ b/Data/Sys/GameSettings/GEME7F.ini @@ -10,3 +10,6 @@ $Force Progressive Scan 0x806D0898:dword:0x801671CC [OnFrame_Enabled] $Force Progressive Scan + +[Patches_RetroAchievements_Verified] +$Force Progressive Scan diff --git a/Data/Sys/GameSettings/GEMJ28.ini b/Data/Sys/GameSettings/GEMJ28.ini index 0c32470103..1ba4951a9e 100644 --- a/Data/Sys/GameSettings/GEMJ28.ini +++ b/Data/Sys/GameSettings/GEMJ28.ini @@ -10,3 +10,6 @@ $Force Progressive Scan 0x806D0660:dword:0x801640A4 [OnFrame_Enabled] $Force Progressive Scan + +[Patches_RetroAchievements_Verified] +$Force Progressive Scan diff --git a/Data/Sys/GameSettings/GGVD78.ini b/Data/Sys/GameSettings/GGVD78.ini index 2af4c9f3a3..932ebdc5f5 100644 --- a/Data/Sys/GameSettings/GGVD78.ini +++ b/Data/Sys/GameSettings/GGVD78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GGVE78.ini b/Data/Sys/GameSettings/GGVE78.ini index 32bec5e8bb..2f357fb090 100644 --- a/Data/Sys/GameSettings/GGVE78.ini +++ b/Data/Sys/GameSettings/GGVE78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GGVP78.ini b/Data/Sys/GameSettings/GGVP78.ini index 156e7bfa86..6bac93ba18 100644 --- a/Data/Sys/GameSettings/GGVP78.ini +++ b/Data/Sys/GameSettings/GGVP78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GGVX78.ini b/Data/Sys/GameSettings/GGVX78.ini index c0a94843fd..6bd903205e 100644 --- a/Data/Sys/GameSettings/GGVX78.ini +++ b/Data/Sys/GameSettings/GGVX78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GHAE08.ini b/Data/Sys/GameSettings/GHAE08.ini index 373cbb45e3..242310c058 100644 --- a/Data/Sys/GameSettings/GHAE08.ini +++ b/Data/Sys/GameSettings/GHAE08.ini @@ -14,3 +14,6 @@ $Fix audio issues 0x8055AB54:dword:0x60000000:0x4BAA85AD [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GHAJ08.ini b/Data/Sys/GameSettings/GHAJ08.ini index 9bb3feec95..eb58677c27 100644 --- a/Data/Sys/GameSettings/GHAJ08.ini +++ b/Data/Sys/GameSettings/GHAJ08.ini @@ -14,3 +14,6 @@ $Fix audio issues 0x805C5BFC:dword:0x60000000:0x4BA3D505 [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GHAP08.ini b/Data/Sys/GameSettings/GHAP08.ini index d6e39d5c17..3b7df30169 100644 --- a/Data/Sys/GameSettings/GHAP08.ini +++ b/Data/Sys/GameSettings/GHAP08.ini @@ -30,3 +30,6 @@ $Fix audio issues 0x8055CEBC:dword:0x60000000:0x4BAA6245 [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GICD78.ini b/Data/Sys/GameSettings/GICD78.ini index f05b308a07..14f7941e68 100644 --- a/Data/Sys/GameSettings/GICD78.ini +++ b/Data/Sys/GameSettings/GICD78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GICE78.ini b/Data/Sys/GameSettings/GICE78.ini index b60f33c6b3..f4684b75e1 100644 --- a/Data/Sys/GameSettings/GICE78.ini +++ b/Data/Sys/GameSettings/GICE78.ini @@ -13,6 +13,9 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. $EFB Copy Fix +[Patches_RetroAchievements_Verified] +$EFB Copy Fix + [ActionReplay] # Add action replay cheats here. $Infinite Health diff --git a/Data/Sys/GameSettings/GICF78.ini b/Data/Sys/GameSettings/GICF78.ini index 2f47a1b8d7..75259ad265 100644 --- a/Data/Sys/GameSettings/GICF78.ini +++ b/Data/Sys/GameSettings/GICF78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GICH78.ini b/Data/Sys/GameSettings/GICH78.ini index 063f9da83b..fa6a26b21c 100644 --- a/Data/Sys/GameSettings/GICH78.ini +++ b/Data/Sys/GameSettings/GICH78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GICJG9.ini b/Data/Sys/GameSettings/GICJG9.ini index 1ffdd77d9e..5096ec20f8 100644 --- a/Data/Sys/GameSettings/GICJG9.ini +++ b/Data/Sys/GameSettings/GICJG9.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GICP78.ini b/Data/Sys/GameSettings/GICP78.ini index 6b1186ed6f..81c3ed66c6 100644 --- a/Data/Sys/GameSettings/GICP78.ini +++ b/Data/Sys/GameSettings/GICP78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GIQE78.ini b/Data/Sys/GameSettings/GIQE78.ini index f48c376391..3a20714fe8 100644 --- a/Data/Sys/GameSettings/GIQE78.ini +++ b/Data/Sys/GameSettings/GIQE78.ini @@ -13,6 +13,9 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. $EFB Copy Fix +[Patches_RetroAchievements_Verified] +$EFB Copy Fix + [ActionReplay] # Add action replay cheats here. $Infinite Specials diff --git a/Data/Sys/GameSettings/GIQJ8P.ini b/Data/Sys/GameSettings/GIQJ8P.ini index 668bc295c1..123445926f 100644 --- a/Data/Sys/GameSettings/GIQJ8P.ini +++ b/Data/Sys/GameSettings/GIQJ8P.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GIQX78.ini b/Data/Sys/GameSettings/GIQX78.ini index a8fbe89ad4..be8ece5efb 100644 --- a/Data/Sys/GameSettings/GIQX78.ini +++ b/Data/Sys/GameSettings/GIQX78.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GIQY78.ini b/Data/Sys/GameSettings/GIQY78.ini index 9375354afb..7047088526 100644 --- a/Data/Sys/GameSettings/GIQY78.ini +++ b/Data/Sys/GameSettings/GIQY78.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GLEE08.ini b/Data/Sys/GameSettings/GLEE08.ini index 90759a99a9..c25c7d0634 100644 --- a/Data/Sys/GameSettings/GLEE08.ini +++ b/Data/Sys/GameSettings/GLEE08.ini @@ -10,3 +10,6 @@ $Fix audio issues 0x80150E94:dword:0x60000000 [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GLEJ08.ini b/Data/Sys/GameSettings/GLEJ08.ini index 5c8ebc84fc..afaa82f067 100644 --- a/Data/Sys/GameSettings/GLEJ08.ini +++ b/Data/Sys/GameSettings/GLEJ08.ini @@ -10,3 +10,6 @@ $Fix audio issues 0x8015110C:dword:0x60000000 [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GLEP08.ini b/Data/Sys/GameSettings/GLEP08.ini index 9c947103ac..43d21161f7 100644 --- a/Data/Sys/GameSettings/GLEP08.ini +++ b/Data/Sys/GameSettings/GLEP08.ini @@ -18,3 +18,6 @@ $Fix audio issues 0x8058CEA4:dword:0x60000000:0x4BA7625D [OnFrame_Enabled] $Fix audio issues + +[Patches_RetroAchievements_Verified] +$Fix audio issues diff --git a/Data/Sys/GameSettings/GLSD64.ini b/Data/Sys/GameSettings/GLSD64.ini index 83fcec325f..f0e3f06f05 100644 --- a/Data/Sys/GameSettings/GLSD64.ini +++ b/Data/Sys/GameSettings/GLSD64.ini @@ -18,3 +18,6 @@ $Fix freeze in opening cutscene [OnFrame_Enabled] $Fix freeze in opening cutscene + +[Patches_RetroAchievements_Verified] +$Fix freeze in opening cutscene diff --git a/Data/Sys/GameSettings/GLSE64.ini b/Data/Sys/GameSettings/GLSE64.ini index 0cee6fb0ca..58bb286eb4 100644 --- a/Data/Sys/GameSettings/GLSE64.ini +++ b/Data/Sys/GameSettings/GLSE64.ini @@ -18,3 +18,6 @@ $Fix freeze in opening cutscene [OnFrame_Enabled] $Fix freeze in opening cutscene + +[Patches_RetroAchievements_Verified] +$Fix freeze in opening cutscene diff --git a/Data/Sys/GameSettings/GLSF64.ini b/Data/Sys/GameSettings/GLSF64.ini index a29a7cc587..4cde1fdd8e 100644 --- a/Data/Sys/GameSettings/GLSF64.ini +++ b/Data/Sys/GameSettings/GLSF64.ini @@ -18,3 +18,6 @@ $Fix freeze in opening cutscene [OnFrame_Enabled] $Fix freeze in opening cutscene + +[Patches_RetroAchievements_Verified] +$Fix freeze in opening cutscene diff --git a/Data/Sys/GameSettings/GLSP64.ini b/Data/Sys/GameSettings/GLSP64.ini index 251eccc4e5..3a2eff7c47 100644 --- a/Data/Sys/GameSettings/GLSP64.ini +++ b/Data/Sys/GameSettings/GLSP64.ini @@ -18,3 +18,6 @@ $Fix freeze in opening cutscene [OnFrame_Enabled] $Fix freeze in opening cutscene + +[Patches_RetroAchievements_Verified] +$Fix freeze in opening cutscene diff --git a/Data/Sys/GameSettings/GNHE5d.ini b/Data/Sys/GameSettings/GNHE5d.ini index 9329d6c298..efd4c62268 100644 --- a/Data/Sys/GameSettings/GNHE5d.ini +++ b/Data/Sys/GameSettings/GNHE5d.ini @@ -8,5 +8,8 @@ $Nop Hack 0x80025BA0:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Nop Hack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/GQPE78.ini b/Data/Sys/GameSettings/GQPE78.ini index 61d50ed753..3407be428e 100644 --- a/Data/Sys/GameSettings/GQPE78.ini +++ b/Data/Sys/GameSettings/GQPE78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GQPP78.ini b/Data/Sys/GameSettings/GQPP78.ini index dd3ee36e7d..4e11d4f3bd 100644 --- a/Data/Sys/GameSettings/GQPP78.ini +++ b/Data/Sys/GameSettings/GQPP78.ini @@ -12,3 +12,6 @@ $EFB Copy Fix # resolutions. In order for this patch to fully work, the # Vertex Rounding Hack must be enabled. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GRYE41.ini b/Data/Sys/GameSettings/GRYE41.ini index 9449f1ec33..fedae056f1 100644 --- a/Data/Sys/GameSettings/GRYE41.ini +++ b/Data/Sys/GameSettings/GRYE41.ini @@ -12,3 +12,6 @@ $Disable Culling to Fix Rise and Shrine Hang # causes the "Rise and Shrine" hang in Dolphin. # There is no noticeable side-effects unless Dolphin's # built-in Widescreen Hack is enabled. + +[Patches_RetroAchievements_Verified] +$Disable Culling to Fix Rise and Shrine Hang diff --git a/Data/Sys/GameSettings/GU2D78.ini b/Data/Sys/GameSettings/GU2D78.ini index c936e280ce..d1e83e267a 100644 --- a/Data/Sys/GameSettings/GU2D78.ini +++ b/Data/Sys/GameSettings/GU2D78.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. # Patch has been made conditional to prevent causing issues on disc 2. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GU2F78.ini b/Data/Sys/GameSettings/GU2F78.ini index 04bef5ba98..9f39bd7c6b 100644 --- a/Data/Sys/GameSettings/GU2F78.ini +++ b/Data/Sys/GameSettings/GU2F78.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. # Patch has been made conditional to prevent causing issues on disc 2. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GU3D78.ini b/Data/Sys/GameSettings/GU3D78.ini index 7d4f3bde13..165f8b0a81 100644 --- a/Data/Sys/GameSettings/GU3D78.ini +++ b/Data/Sys/GameSettings/GU3D78.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. # The patch has been made conditional as not to crash disc 2's game. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GU3X78.ini b/Data/Sys/GameSettings/GU3X78.ini index cb7341e261..8ed19c6c03 100644 --- a/Data/Sys/GameSettings/GU3X78.ini +++ b/Data/Sys/GameSettings/GU3X78.ini @@ -13,3 +13,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. # The patch has been made conditional as not to crash disc 2's game. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GU4Y78.ini b/Data/Sys/GameSettings/GU4Y78.ini index fee110ccb3..958bf986f0 100644 --- a/Data/Sys/GameSettings/GU4Y78.ini +++ b/Data/Sys/GameSettings/GU4Y78.ini @@ -20,3 +20,6 @@ $EFB Copy Fix # Vertex Rounding Hack must be enabled. # These patches have been made conditional. $EFB Copy Fix + +[Patches_RetroAchievements_Verified] +$EFB Copy Fix diff --git a/Data/Sys/GameSettings/GV4E69.ini b/Data/Sys/GameSettings/GV4E69.ini index 77ffcaf749..d9117452f6 100644 --- a/Data/Sys/GameSettings/GV4E69.ini +++ b/Data/Sys/GameSettings/GV4E69.ini @@ -5,3 +5,6 @@ $Fix 2D Rendering 0x80319214:dword:0x48113250 [OnFrame_Enabled] $Fix 2D Rendering + +[Patches_RetroAchievements_Verified] +$Fix 2D Rendering diff --git a/Data/Sys/GameSettings/GVPE69.ini b/Data/Sys/GameSettings/GVPE69.ini index afc48b4b43..926a01b456 100644 --- a/Data/Sys/GameSettings/GVPE69.ini +++ b/Data/Sys/GameSettings/GVPE69.ini @@ -5,3 +5,6 @@ $Fix 2D Rendering 0x803C92D4:dword:0x480DA8E4 [OnFrame_Enabled] $Fix 2D Rendering + +[Patches_RetroAchievements_Verified] +$Fix 2D Rendering diff --git a/Data/Sys/GameSettings/GWLE6L.ini b/Data/Sys/GameSettings/GWLE6L.ini index 579430712f..a6bf25f253 100644 --- a/Data/Sys/GameSettings/GWLE6L.ini +++ b/Data/Sys/GameSettings/GWLE6L.ini @@ -5,3 +5,6 @@ $Bypass FIFO reset 0x8028EF00:dword:0x48000638 [OnFrame_Enabled] $Bypass FIFO reset + +[Patches_RetroAchievements_Verified] +$Bypass FIFO reset diff --git a/Data/Sys/GameSettings/GWLX6L.ini b/Data/Sys/GameSettings/GWLX6L.ini index fdf558ac8c..bee1e2290b 100644 --- a/Data/Sys/GameSettings/GWLX6L.ini +++ b/Data/Sys/GameSettings/GWLX6L.ini @@ -5,3 +5,6 @@ $Bypass FIFO reset 0x8028EE80:dword:0x48000638 [OnFrame_Enabled] $Bypass FIFO reset + +[Patches_RetroAchievements_Verified] +$Bypass FIFO reset diff --git a/Data/Sys/GameSettings/GXXE01.ini b/Data/Sys/GameSettings/GXXE01.ini index fa16f3d897..fdf9d338dd 100644 --- a/Data/Sys/GameSettings/GXXE01.ini +++ b/Data/Sys/GameSettings/GXXE01.ini @@ -5,3 +5,6 @@ $Allow Memory Card saving with Savestates 0x801cc304:dword:0x90e5002c 0x801cc4b0:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GXXJ01.ini b/Data/Sys/GameSettings/GXXJ01.ini index a03a774a0d..505aa9d828 100644 --- a/Data/Sys/GameSettings/GXXJ01.ini +++ b/Data/Sys/GameSettings/GXXJ01.ini @@ -5,3 +5,6 @@ $Allow Memory Card saving with Savestates 0x801c7984:dword:0x90e5002c 0x801c7b30:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GXXP01.ini b/Data/Sys/GameSettings/GXXP01.ini index 837c59c3e4..5b02d18d0f 100644 --- a/Data/Sys/GameSettings/GXXP01.ini +++ b/Data/Sys/GameSettings/GXXP01.ini @@ -5,3 +5,6 @@ $Allow Memory Card saving with Savestates 0x801cd764:dword:0x90e5002c 0x801cd910:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GZ2E01.ini b/Data/Sys/GameSettings/GZ2E01.ini index 7cf0fc16b9..4d7b950074 100644 --- a/Data/Sys/GameSettings/GZ2E01.ini +++ b/Data/Sys/GameSettings/GZ2E01.ini @@ -39,6 +39,9 @@ $Hyrule Field Speed Hack 0x8003D5EC:dword:0x60000000 0x8003D608:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. $Infinite Health diff --git a/Data/Sys/GameSettings/GZ2J01.ini b/Data/Sys/GameSettings/GZ2J01.ini index c3622c0553..50c948ff3b 100644 --- a/Data/Sys/GameSettings/GZ2J01.ini +++ b/Data/Sys/GameSettings/GZ2J01.ini @@ -35,3 +35,6 @@ $Hyrule Field Speed Hack 0x8003D5D4:dword:0x60000000 0x8003D5EC:dword:0x60000000 0x8003D608:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack diff --git a/Data/Sys/GameSettings/GZ2P01.ini b/Data/Sys/GameSettings/GZ2P01.ini index 56e38c8523..c99b22c34b 100644 --- a/Data/Sys/GameSettings/GZ2P01.ini +++ b/Data/Sys/GameSettings/GZ2P01.ini @@ -39,6 +39,9 @@ $Hyrule Field Speed Hack 0x8003d71c:dword:0x60000000 0x8003d738:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. $Infinite Health diff --git a/Data/Sys/GameSettings/HAF.ini b/Data/Sys/GameSettings/HAF.ini index b6296a9819..b28e20df17 100644 --- a/Data/Sys/GameSettings/HAF.ini +++ b/Data/Sys/GameSettings/HAF.ini @@ -19,6 +19,9 @@ $BufferPatch 0x8000B08E:word:0x00000008 0x8000B09E:word:0x00007000 +[Patches_RetroAchievements_Verified] +$BufferPatch + [WC24Patch] $Main weather.wapp.wii.com:fore.wiilink24.com:1 diff --git a/Data/Sys/GameSettings/HAL.ini b/Data/Sys/GameSettings/HAL.ini index 5d8cd65f8b..0ab222db76 100644 --- a/Data/Sys/GameSettings/HAL.ini +++ b/Data/Sys/GameSettings/HAL.ini @@ -11,6 +11,9 @@ $RSAPatch 0x8001AB20:dword:0x38600001 0x8001AC68:dword:0x38600001 +[Patches_RetroAchievements_Verified] +$RSAPatch + [WC24Patch] $Main cfh.wapp.wii.com:ch.wiilink24.com:1 diff --git a/Data/Sys/GameSettings/RELJAB.ini b/Data/Sys/GameSettings/RELJAB.ini index 519d8901a9..90543a1c23 100644 --- a/Data/Sys/GameSettings/RELJAB.ini +++ b/Data/Sys/GameSettings/RELJAB.ini @@ -13,6 +13,9 @@ $DI Seed Blanker 0x80000004:dword:0x00000000 0x80000008:dword:0x00000000 +[Patches_RetroAchievements_Verified] +$DI Seed Blanker + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RGQE70.ini b/Data/Sys/GameSettings/RGQE70.ini index fcd04fb22b..5cc3381c46 100644 --- a/Data/Sys/GameSettings/RGQE70.ini +++ b/Data/Sys/GameSettings/RGQE70.ini @@ -8,5 +8,8 @@ $crashfix 0x8006935C:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$crashfix + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RLEEFS.ini b/Data/Sys/GameSettings/RLEEFS.ini index a16579762b..0bd00909ec 100644 --- a/Data/Sys/GameSettings/RLEEFS.ini +++ b/Data/Sys/GameSettings/RLEEFS.ini @@ -9,3 +9,6 @@ $Fix crash on main menu [OnFrame_Enabled] $Fix crash on main menu + +[Patches_RetroAchievements_Verified] +$Fix crash on main menu diff --git a/Data/Sys/GameSettings/RMHP08.ini b/Data/Sys/GameSettings/RMHP08.ini index 83850071ac..7916926fcd 100644 --- a/Data/Sys/GameSettings/RMHP08.ini +++ b/Data/Sys/GameSettings/RMHP08.ini @@ -9,5 +9,8 @@ $Bloom OFF 0x80057058:dword:0xC022FFE4 0x8079FF44:dword:0x3F800000 +[Patches_RetroAchievements_Verified] +$Bloom OFF + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RO2P7N.ini b/Data/Sys/GameSettings/RO2P7N.ini index b50875b06c..4c54f16eb5 100644 --- a/Data/Sys/GameSettings/RO2P7N.ini +++ b/Data/Sys/GameSettings/RO2P7N.ini @@ -10,5 +10,8 @@ $Hangfix 0x8007D344:byte:0x00000090 0x8007D348:byte:0x00000090 +[Patches_RetroAchievements_Verified] +$Hangfix + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RPBE01.ini b/Data/Sys/GameSettings/RPBE01.ini index 8b7fc7d50d..88cfdd165d 100644 --- a/Data/Sys/GameSettings/RPBE01.ini +++ b/Data/Sys/GameSettings/RPBE01.ini @@ -8,3 +8,6 @@ $Fix black screen effects 0x80244A94:dword:0x39080000 0x80244A9C:dword:0x38030000 + +[Patches_RetroAchievements_Verified] +$Fix black screen effects diff --git a/Data/Sys/GameSettings/RPBJ01r0.ini b/Data/Sys/GameSettings/RPBJ01r0.ini index 7982d0a705..87c16fd35c 100644 --- a/Data/Sys/GameSettings/RPBJ01r0.ini +++ b/Data/Sys/GameSettings/RPBJ01r0.ini @@ -8,3 +8,6 @@ $Fix black screen effects 0x802342DC:dword:0x39080000 0x802342E4:dword:0x38030000 + +[Patches_RetroAchievements_Verified] +$Fix black screen effects diff --git a/Data/Sys/GameSettings/RPBJ01r1.ini b/Data/Sys/GameSettings/RPBJ01r1.ini index ddaf42f3ee..05c5511840 100644 --- a/Data/Sys/GameSettings/RPBJ01r1.ini +++ b/Data/Sys/GameSettings/RPBJ01r1.ini @@ -8,3 +8,6 @@ $Fix black screen effects 0x80234580:dword:0x39080000 0x80234588:dword:0x38030000 + +[Patches_RetroAchievements_Verified] +$Fix black screen effects diff --git a/Data/Sys/GameSettings/RPBJ01r2.ini b/Data/Sys/GameSettings/RPBJ01r2.ini index ddaf42f3ee..05c5511840 100644 --- a/Data/Sys/GameSettings/RPBJ01r2.ini +++ b/Data/Sys/GameSettings/RPBJ01r2.ini @@ -8,3 +8,6 @@ $Fix black screen effects 0x80234580:dword:0x39080000 0x80234588:dword:0x38030000 + +[Patches_RetroAchievements_Verified] +$Fix black screen effects diff --git a/Data/Sys/GameSettings/RPBP01.ini b/Data/Sys/GameSettings/RPBP01.ini index 50024b6704..c14a0d89f7 100644 --- a/Data/Sys/GameSettings/RPBP01.ini +++ b/Data/Sys/GameSettings/RPBP01.ini @@ -8,3 +8,6 @@ $Fix black screen effects 0x8023FF50:dword:0x39080000 0x8023FF58:dword:0x38030000 + +[Patches_RetroAchievements_Verified] +$Fix black screen effects diff --git a/Data/Sys/GameSettings/RTH.ini b/Data/Sys/GameSettings/RTH.ini index 5234f0ea7e..4977ff46dd 100644 --- a/Data/Sys/GameSettings/RTH.ini +++ b/Data/Sys/GameSettings/RTH.ini @@ -11,6 +11,9 @@ $Disable blur 0x8015b900:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Disable blur + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RX4E4Z.ini b/Data/Sys/GameSettings/RX4E4Z.ini index 093e76cca6..05cde86aa5 100644 --- a/Data/Sys/GameSettings/RX4E4Z.ini +++ b/Data/Sys/GameSettings/RX4E4Z.ini @@ -26,3 +26,6 @@ $Fix file reads (dcache bypass) 0x800d2e68:dword:0x60000000 [OnFrame_Enabled] $Fix file reads (dcache bypass) + +[Patches_RetroAchievements_Verified] +$Fix file reads (dcache bypass) diff --git a/Data/Sys/GameSettings/RX4PMT.ini b/Data/Sys/GameSettings/RX4PMT.ini index d23a807744..c0f5d1e327 100644 --- a/Data/Sys/GameSettings/RX4PMT.ini +++ b/Data/Sys/GameSettings/RX4PMT.ini @@ -26,3 +26,6 @@ $Fix file reads (dcache bypass) 0x80164b90:dword:0x60000000 [OnFrame_Enabled] $Fix file reads (dcache bypass) + +[Patches_RetroAchievements_Verified] +$Fix file reads (dcache bypass) diff --git a/Data/Sys/GameSettings/RZDE01r0.ini b/Data/Sys/GameSettings/RZDE01r0.ini index 7b31eead41..baf02ed5b4 100644 --- a/Data/Sys/GameSettings/RZDE01r0.ini +++ b/Data/Sys/GameSettings/RZDE01r0.ini @@ -38,5 +38,8 @@ $Hyrule Field Speed Hack 0x80040D14:dword:0x60000000 0x80040D30:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RZDE01r2.ini b/Data/Sys/GameSettings/RZDE01r2.ini index 3c1c2874e0..4843f3e3c3 100644 --- a/Data/Sys/GameSettings/RZDE01r2.ini +++ b/Data/Sys/GameSettings/RZDE01r2.ini @@ -38,5 +38,8 @@ $Hyrule Field Speed Hack 0x80040EC4:dword:0x60000000 0x80040EE0:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RZDJ01.ini b/Data/Sys/GameSettings/RZDJ01.ini index f812a9512b..f8d488b48c 100644 --- a/Data/Sys/GameSettings/RZDJ01.ini +++ b/Data/Sys/GameSettings/RZDJ01.ini @@ -37,5 +37,8 @@ $Hyrule Field Speed Hack 0x80040E40:dword:0x60000000 0x80040E5C:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RZDK01.ini b/Data/Sys/GameSettings/RZDK01.ini index cc92b01b5d..0b773f4e2e 100644 --- a/Data/Sys/GameSettings/RZDK01.ini +++ b/Data/Sys/GameSettings/RZDK01.ini @@ -37,5 +37,8 @@ $Hyrule Field Speed Hack 0x80047EC8:dword:0x60000000 0x80047EE4:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/RZDP01.ini b/Data/Sys/GameSettings/RZDP01.ini index b30d32a734..9b11d8311d 100644 --- a/Data/Sys/GameSettings/RZDP01.ini +++ b/Data/Sys/GameSettings/RZDP01.ini @@ -38,5 +38,8 @@ $Hyrule Field Speed Hack 0x80040f90:dword:0x60000000 0x80040fac:dword:0x60000000 +[Patches_RetroAchievements_Verified] +$Hyrule Field Speed Hack + [ActionReplay] # Add action replay cheats here. diff --git a/Data/Sys/GameSettings/SAOE78.ini b/Data/Sys/GameSettings/SAOE78.ini index 190419f79c..58a248c579 100644 --- a/Data/Sys/GameSettings/SAOE78.ini +++ b/Data/Sys/GameSettings/SAOE78.ini @@ -7,3 +7,6 @@ $Fix crash on boot 0x803A5F20:dword:0x60000000 [OnFrame_Enabled] $Fix crash on boot + +[Patches_RetroAchievements_Verified] +$Fix crash on boot diff --git a/Data/Sys/GameSettings/SAOEVZ.ini b/Data/Sys/GameSettings/SAOEVZ.ini index a737692c5b..6ae9aa3970 100644 --- a/Data/Sys/GameSettings/SAOEVZ.ini +++ b/Data/Sys/GameSettings/SAOEVZ.ini @@ -7,3 +7,6 @@ $Fix crash on boot 0x803A64D0:dword:0x60000000 [OnFrame_Enabled] $Fix crash on boot + +[Patches_RetroAchievements_Verified] +$Fix crash on boot diff --git a/Data/Sys/GameSettings/SGLEA4.ini b/Data/Sys/GameSettings/SGLEA4.ini index 4eb864004e..8b2094f55a 100644 --- a/Data/Sys/GameSettings/SGLEA4.ini +++ b/Data/Sys/GameSettings/SGLEA4.ini @@ -6,3 +6,6 @@ # incorrectly, but for now this patch makes the game playable. $Fix black screen 0x801D59AC:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Fix black screen diff --git a/Data/Sys/GameSettings/SGLPA4.ini b/Data/Sys/GameSettings/SGLPA4.ini index f70ade77e3..8651e5eb82 100644 --- a/Data/Sys/GameSettings/SGLPA4.ini +++ b/Data/Sys/GameSettings/SGLPA4.ini @@ -6,3 +6,6 @@ # incorrectly, but for now this patch makes the game playable. $Fix black screen 0x801D59C8:dword:0x60000000 + +[Patches_RetroAchievements_Verified] +$Fix black screen diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 7d7c0af374..1920ad0552 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -14,6 +14,7 @@ #include #include "Common/Assert.h" +#include "Common/BitUtils.h" #include "Common/CommonPaths.h" #include "Common/FileUtil.h" #include "Common/IOFile.h" @@ -26,6 +27,7 @@ #include "Core/Core.h" #include "Core/HW/Memmap.h" #include "Core/HW/VideoInterface.h" +#include "Core/PatchEngine.h" #include "Core/PowerPC/MMU.h" #include "Core/System.h" #include "DiscIO/Blob.h" @@ -70,6 +72,34 @@ void AchievementManager::Init() } } +void AchievementManager::LoadApprovedList() +{ + picojson::value temp; + std::string error; + if (!JsonFromFile(fmt::format("{}{}{}", File::GetSysDirectory(), DIR_SEP, APPROVED_LIST_FILENAME), + &temp, &error)) + { + WARN_LOG_FMT(ACHIEVEMENTS, "Failed to load approved game settings list {}", + APPROVED_LIST_FILENAME); + WARN_LOG_FMT(ACHIEVEMENTS, "Error: {}", error); + return; + } + auto context = Common::SHA1::CreateContext(); + context->Update(temp.serialize()); + auto digest = context->Finish(); + if (digest != APPROVED_LIST_HASH) + { + WARN_LOG_FMT(ACHIEVEMENTS, "Failed to verify approved game settings list {}", + APPROVED_LIST_FILENAME); + WARN_LOG_FMT(ACHIEVEMENTS, "Expected hash {}, found hash {}", + Common::SHA1::DigestToString(APPROVED_LIST_HASH), + Common::SHA1::DigestToString(digest)); + return; + } + std::lock_guard lg{m_lock}; + m_ini_root = std::move(temp); +} + void AchievementManager::SetUpdateCallback(UpdateCallback callback) { m_update_callback = std::move(callback); @@ -322,6 +352,48 @@ bool AchievementManager::IsHardcoreModeActive() const return rc_client_is_processing_required(m_client); } +void AchievementManager::FilterApprovedPatches(std::vector& patches, + const std::string& game_ini_id) const +{ + if (!IsHardcoreModeActive()) + return; + + if (!m_ini_root.contains(game_ini_id)) + patches.clear(); + auto patch_itr = patches.begin(); + while (patch_itr != patches.end()) + { + INFO_LOG_FMT(ACHIEVEMENTS, "Verifying patch {}", patch_itr->name); + + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(patch_itr->entries.size()))); + for (const auto& entry : patch_itr->entries) + { + context->Update(Common::BitCastToArray(entry.type)); + context->Update(Common::BitCastToArray(entry.address)); + context->Update(Common::BitCastToArray(entry.value)); + context->Update(Common::BitCastToArray(entry.comparand)); + context->Update(Common::BitCastToArray(entry.conditional)); + } + auto digest = context->Finish(); + + bool verified = m_ini_root.get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); + if (!verified) + { + patch_itr = patches.erase(patch_itr); + OSD::AddMessage( + fmt::format("Failed to verify patch {} from file {}.", patch_itr->name, game_ini_id), + OSD::Duration::VERY_LONG, OSD::Color::RED); + OSD::AddMessage("Disable hardcore mode to enable this patch.", OSD::Duration::VERY_LONG, + OSD::Color::RED); + } + else + { + patch_itr++; + } + } +} + void AchievementManager::SetSpectatorMode() { rc_client_set_spectator_mode_enabled(m_client, Config::Get(Config::RA_SPECTATOR_ENABLED)); diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 3996003040..efddd003a9 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -27,6 +27,7 @@ #include "Common/CommonTypes.h" #include "Common/Event.h" #include "Common/HttpRequest.h" +#include "Common/JsonUtil.h" #include "Common/WorkQueueThread.h" #include "DiscIO/Volume.h" #include "VideoCommon/Assets/CustomTextureData.h" @@ -37,6 +38,11 @@ class CPUThreadGuard; class System; } // namespace Core +namespace PatchEngine +{ +struct Patch; +} // namespace PatchEngine + class AchievementManager { public: @@ -60,6 +66,10 @@ public: static constexpr std::string_view GRAY = "transparent"; static constexpr std::string_view GOLD = "#FFD700"; static constexpr std::string_view BLUE = "#0B71C1"; + static constexpr std::string_view APPROVED_LIST_FILENAME = "ApprovedInis.json"; + static const inline Common::SHA1::Digest APPROVED_LIST_HASH = { + 0x01, 0x1E, 0x2E, 0x74, 0xDD, 0x07, 0x79, 0xDA, 0x0E, 0x5D, + 0xF8, 0x51, 0x09, 0xC7, 0x9B, 0x46, 0x22, 0x95, 0x50, 0xE9}; struct LeaderboardEntry { @@ -109,6 +119,9 @@ public: std::recursive_mutex& GetLock(); void SetHardcoreMode(); bool IsHardcoreModeActive() const; + void SetGameIniId(const std::string& game_ini_id) { m_game_ini_id = game_ini_id; } + void FilterApprovedPatches(std::vector& patches, + const std::string& game_ini_id) const; void SetSpectatorMode(); std::string_view GetPlayerDisplayName() const; u32 GetPlayerScore() const; @@ -132,7 +145,7 @@ public: void Shutdown(); private: - AchievementManager() = default; + AchievementManager() { LoadApprovedList(); }; struct FilereaderState { @@ -140,6 +153,8 @@ private: std::unique_ptr volume; }; + void LoadApprovedList(); + static void* FilereaderOpenByFilepath(const char* path_utf8); static void* FilereaderOpenByVolume(const char* path_utf8); static void FilereaderSeek(void* file_handle, int64_t offset, int origin); @@ -211,6 +226,9 @@ private: std::chrono::steady_clock::time_point m_last_rp_time = std::chrono::steady_clock::now(); std::chrono::steady_clock::time_point m_last_progress_message = std::chrono::steady_clock::now(); + picojson::value m_ini_root; + std::string m_game_ini_id; + std::unordered_map m_leaderboard_map; bool m_challenges_updated = false; std::unordered_set m_active_challenges; diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index f020c754eb..0728637e47 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -182,6 +182,13 @@ void LoadPatches() LoadPatchSection("OnFrame", &s_on_frame, globalIni, localIni); +#ifdef USE_RETRO_ACHIEVEMENTS + { + std::lock_guard lg{AchievementManager::GetInstance().GetLock()}; + AchievementManager::GetInstance().FilterApprovedPatches(s_on_frame, sconfig.GetGameID()); + } +#endif // USE_RETRO_ACHIEVEMENTS + // Check if I'm syncing Codes if (Config::Get(Config::SESSION_CODE_SYNC_OVERRIDE)) { @@ -197,9 +204,6 @@ void LoadPatches() static void ApplyPatches(const Core::CPUThreadGuard& guard, const std::vector& patches) { - if (AchievementManager::GetInstance().IsHardcoreModeActive()) - return; - for (const Patch& patch : patches) { if (patch.enabled) From 3ca50f7879d79339fac66e79bdd2ddfa5e69235f Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 7 Jul 2024 21:03:29 +0200 Subject: [PATCH 170/296] Implement File::GetExePath() for FreeBSD --- Source/Core/Common/FileUtil.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index 5582018b30..545bfaba44 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -60,6 +60,10 @@ #include "jni/AndroidCommon/AndroidCommon.h" #endif +#if defined(__FreeBSD__) +#include +#endif + namespace fs = std::filesystem; namespace File @@ -738,6 +742,15 @@ std::string GetExePath() return PathToString(exe_path_absolute); #elif defined(__APPLE__) return GetBundleDirectory(); +#elif defined(__FreeBSD__) + int name[4]{CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1}; + size_t length = 0; + if (sysctl(name, 4, nullptr, &length, nullptr, 0) != 0 || length == 0) + return {}; + std::string dolphin_exe_path(length, '\0'); + if (sysctl(name, 4, dolphin_exe_path.data(), &length, nullptr, 0) != 0) + return {}; + return dolphin_exe_path; #else char dolphin_exe_path[PATH_MAX]; ssize_t len = ::readlink("/proc/self/exe", dolphin_exe_path, sizeof(dolphin_exe_path)); From ae87bf9af5d6a09a380949b47f2d7c484cea7d01 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Mon, 1 Jul 2024 20:49:51 -0400 Subject: [PATCH 171/296] Add Unit Test for Patch Allowlist This unit test compares ApprovedInis.json with the contents of the GameSettings folder to verify that every patch marked allowed for use with RetroAchievements has a hash in ApprovedInis.json. If not, that hash is reported in the test logs so that the hash may be updated more easily. --- Source/UnitTests/CMakeLists.txt | 3 + Source/UnitTests/Core/CMakeLists.txt | 1 + Source/UnitTests/Core/PatchAllowlistTest.cpp | 138 +++++++++++++++++++ Source/UnitTests/UnitTests.vcxproj | 5 + 4 files changed, 147 insertions(+) create mode 100644 Source/UnitTests/Core/PatchAllowlistTest.cpp diff --git a/Source/UnitTests/CMakeLists.txt b/Source/UnitTests/CMakeLists.txt index 158b523cbe..96f26a8793 100644 --- a/Source/UnitTests/CMakeLists.txt +++ b/Source/UnitTests/CMakeLists.txt @@ -8,6 +8,9 @@ add_executable(tests EXCLUDE_FROM_ALL UnitTestsMain.cpp StubHost.cpp) set_target_properties(tests PROPERTIES FOLDER Tests) target_link_libraries(tests PRIVATE fmt::fmt gtest::gtest core uicommon) add_test(NAME tests COMMAND tests) +add_custom_command(TARGET tests POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/Data/Sys" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys" +) add_dependencies(unittests tests) macro(add_dolphin_test target) diff --git a/Source/UnitTests/Core/CMakeLists.txt b/Source/UnitTests/Core/CMakeLists.txt index f2de6f13ad..865064ed68 100644 --- a/Source/UnitTests/Core/CMakeLists.txt +++ b/Source/UnitTests/Core/CMakeLists.txt @@ -1,6 +1,7 @@ add_dolphin_test(MMIOTest MMIOTest.cpp) add_dolphin_test(PageFaultTest PageFaultTest.cpp) add_dolphin_test(CoreTimingTest CoreTimingTest.cpp) +add_dolphin_test(PatchAllowlistTest PatchAllowlistTest.cpp) add_dolphin_test(DSPAcceleratorTest DSP/DSPAcceleratorTest.cpp) add_dolphin_test(DSPAssemblyTest diff --git a/Source/UnitTests/Core/PatchAllowlistTest.cpp b/Source/UnitTests/Core/PatchAllowlistTest.cpp new file mode 100644 index 0000000000..779b49791f --- /dev/null +++ b/Source/UnitTests/Core/PatchAllowlistTest.cpp @@ -0,0 +1,138 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "Common/BitUtils.h" +#include "Common/CommonPaths.h" +#include "Common/Crypto/SHA1.h" +#include "Common/FileUtil.h" +#include "Common/IOFile.h" +#include "Common/IniFile.h" +#include "Common/JsonUtil.h" +#include "Core/CheatCodes.h" +#include "Core/PatchEngine.h" + +struct GameHashes +{ + std::string game_title; + std::map hashes; +}; + +TEST(PatchAllowlist, VerifyHashes) +{ + // Load allowlist + static constexpr std::string_view APPROVED_LIST_FILENAME = "ApprovedInis.json"; + picojson::value json_tree; + std::string error; + std::string cur_directory = File::GetExeDirectory() +#if defined(__APPLE__) + + DIR_SEP "Tests" // FIXME: Ugly hack. +#endif + ; + std::string sys_directory = cur_directory + DIR_SEP "Sys"; + const auto& list_filepath = fmt::format("{}{}{}", sys_directory, DIR_SEP, APPROVED_LIST_FILENAME); + ASSERT_TRUE(JsonFromFile(list_filepath, &json_tree, &error)) + << "Failed to open file at " << list_filepath; + // Parse allowlist - Map + ASSERT_TRUE(json_tree.is()); + std::map allow_list; + for (const auto& entry : json_tree.get()) + { + ASSERT_TRUE(entry.second.is()); + GameHashes& game_entry = allow_list[entry.first]; + for (const auto& line : entry.second.get()) + { + ASSERT_TRUE(line.second.is()); + if (line.first == "title") + game_entry.game_title = line.second.get(); + else + game_entry.hashes[line.first] = line.second.get(); + } + } + // Iterate over GameSettings directory + auto directory = + File::ScanDirectoryTree(fmt::format("{}{}GameSettings", sys_directory, DIR_SEP), false); + for (const auto& file : directory.children) + { + // Load ini file + Common::IniFile ini_file; + ini_file.Load(file.physicalName, true); + std::string game_id = file.virtualName.substr(0, file.virtualName.find_first_of('.')); + std::vector patches; + PatchEngine::LoadPatchSection("OnFrame", &patches, ini_file, Common::IniFile()); + // Filter patches for RetroAchievements approved + ReadEnabledOrDisabled(ini_file, "OnFrame", false, &patches); + ReadEnabledOrDisabled(ini_file, "Patches_RetroAchievements_Verified", true, + &patches); + // Get game section from allow list + auto game_itr = allow_list.find(game_id); + // Iterate over approved patches + for (const auto& patch : patches) + { + if (!patch.enabled) + continue; + // Hash patch + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(patch.entries.size()))); + for (const auto& entry : patch.entries) + { + context->Update(Common::BitCastToArray(entry.type)); + context->Update(Common::BitCastToArray(entry.address)); + context->Update(Common::BitCastToArray(entry.value)); + context->Update(Common::BitCastToArray(entry.comparand)); + context->Update(Common::BitCastToArray(entry.conditional)); + } + auto digest = context->Finish(); + std::string hash = Common::SHA1::DigestToString(digest); + // Check patch in list + if (game_itr == allow_list.end()) + { + // Report: no patches in game found in list + ADD_FAILURE() << "Approved hash missing from list." << std::endl + << "Game ID: " << game_id << std::endl + << "Patch: \"" << hash << "\" : \"" << patch.name << "\""; + continue; + } + auto hash_itr = game_itr->second.hashes.find(hash); + if (hash_itr == game_itr->second.hashes.end()) + { + // Report: patch not found in list + ADD_FAILURE() << "Approved hash missing from list." << std::endl + << "Game ID: " << game_id << ":" << game_itr->second.game_title << std::endl + << "Patch: \"" << hash << "\" : \"" << patch.name << "\""; + } + else + { + // Remove patch from map if found + game_itr->second.hashes.erase(hash_itr); + } + } + // Report missing patches in map + if (game_itr == allow_list.end()) + continue; + for (auto& remaining_hashes : game_itr->second.hashes) + { + ADD_FAILURE() << "Hash in list not approved in ini." << std::endl + << "Game ID: " << game_id << ":" << game_itr->second.game_title << std::endl + << "Patch: " << remaining_hashes.second << ":" << remaining_hashes.first; + } + // Remove section from map + allow_list.erase(game_itr); + } + // Report remaining sections in map + for (auto& remaining_games : allow_list) + { + ADD_FAILURE() << "Game in list has no ini file." << std::endl + << "Game ID: " << remaining_games.first << ":" + << remaining_games.second.game_title; + } +} diff --git a/Source/UnitTests/UnitTests.vcxproj b/Source/UnitTests/UnitTests.vcxproj index 9e44cec8c3..229e5b576f 100644 --- a/Source/UnitTests/UnitTests.vcxproj +++ b/Source/UnitTests/UnitTests.vcxproj @@ -24,6 +24,9 @@ Console + + xcopy /i /e /s /y /f "$(ProjectDir)\..\..\Data\Sys\" "$(TargetDir)Sys" + @@ -70,6 +73,7 @@ + @@ -101,6 +105,7 @@ + From 95e2064099454f0c3d972674d6ce1fa7551ce77f Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 7 Jul 2024 11:43:43 +0200 Subject: [PATCH 172/296] Fix AchievementManager::SetBackgroundExecutionAllowed crash We mustn't use m_system when it is nullptr. This was causing Dolphin to crash on Android whenever an activity was recreated or resumed while emulation is running, which is super common. --- Source/Core/Core/AchievementManager.cpp | 19 +++++++++++++------ Source/Core/Core/AchievementManager.h | 3 ++- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 544ec36afc..8e05ab0271 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -166,7 +166,12 @@ bool AchievementManager::IsGameLoaded() const void AchievementManager::SetBackgroundExecutionAllowed(bool allowed) { m_background_execution_allowed = allowed; - if (allowed && Core::GetState(*AchievementManager::GetInstance().m_system) == Core::State::Paused) + + Core::System* system = m_system.load(std::memory_order_acquire); + if (!system) + return; + + if (allowed && Core::GetState(*system) == Core::State::Paused) DoIdle(); } @@ -241,7 +246,8 @@ void AchievementManager::DoFrame() std::lock_guard lg{m_lock}; rc_client_do_frame(m_client); } - if (!m_system) + Core::System* system = m_system.load(std::memory_order_acquire); + if (!system) return; auto current_time = std::chrono::steady_clock::now(); if (current_time - m_last_rp_time > std::chrono::seconds{10}) @@ -279,7 +285,8 @@ void AchievementManager::DoIdle() Common::SleepCurrentThread(1000); { std::lock_guard lg{m_lock}; - if (!m_system || Core::GetState(*m_system) != Core::State::Paused) + Core::System* system = m_system.load(std::memory_order_acquire); + if (!system || Core::GetState(*system) != Core::State::Paused) return; if (!m_background_execution_allowed) return; @@ -290,7 +297,7 @@ void AchievementManager::DoIdle() // needs to be on host or CPU thread to access memory. Core::QueueHostJob([this](Core::System& system) { std::lock_guard lg{m_lock}; - if (!m_system || Core::GetState(*m_system) != Core::State::Paused) + if (Core::GetState(system) != Core::State::Paused) return; if (!m_background_execution_allowed) return; @@ -487,7 +494,7 @@ void AchievementManager::CloseGame() m_queue.Cancel(); m_image_queue.Cancel(); rc_client_unload_game(m_client); - m_system = nullptr; + m_system.store(nullptr, std::memory_order_release); if (Config::Get(Config::RA_DISCORD_PRESENCE_ENABLED)) Discord::UpdateDiscordPresence(); INFO_LOG_FMT(ACHIEVEMENTS, "Game closed."); @@ -747,7 +754,7 @@ void AchievementManager::LoadGameCallback(int result, const char* error_message, rc_client_set_read_memory_function(instance.m_client, MemoryPeeker); instance.m_display_welcome_message = true; instance.FetchGameBadges(); - instance.m_system = &Core::System::GetInstance(); + instance.m_system.store(&Core::System::GetInstance(), std::memory_order_release); instance.m_update_callback({.all = true}); // Set this to a value that will immediately trigger RP instance.m_last_rp_time = std::chrono::steady_clock::now() - std::chrono::minutes{2}; diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 3996003040..1b9c828661 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -5,6 +5,7 @@ #ifdef USE_RETRO_ACHIEVEMENTS #include +#include #include #include #include @@ -189,7 +190,7 @@ private: rc_runtime_t m_runtime{}; rc_client_t* m_client{}; - Core::System* m_system{}; + std::atomic m_system{}; bool m_is_runtime_initialized = false; UpdateCallback m_update_callback = [](const UpdatedItems&) {}; std::unique_ptr m_loading_volume; From f59678842b9614969be0813e54d25f6c35e0de63 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 8 Jul 2024 18:13:52 +0200 Subject: [PATCH 173/296] RetroAchievements: Delay calling LoadApprovedList 0c14b0c8a70799072ddccb648006914af7c62855 made Dolphin load a file from the Sys folder the first time AchievementManager::GetInstance() is called. Because Android calls AchievementManager::GetInstance() from setBackgroundExecutionAllowedNative, this had two negative consequences on Android: 1. The first time setBackgroundExecutionAllowedNative gets called is often before directory initialization is done. Getting the path of the Sys folder before directory initialization is done causes a crash. 2. setBackgroundExecutionAllowedNative is called from the GUI thread, and we don't want file I/O on the GUI thread for performance reasons. This change makes us load the data from the Sys folder the first time the data is needed instead. This also saves us from having to load the data at all when hardcore mode is inactive. --- Source/Core/Core/AchievementManager.cpp | 15 ++++++++------- Source/Core/Core/AchievementManager.h | 7 ++++--- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index b5eec09d47..d4ee8a0add 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -72,7 +72,7 @@ void AchievementManager::Init() } } -void AchievementManager::LoadApprovedList() +picojson::value AchievementManager::LoadApprovedList() { picojson::value temp; std::string error; @@ -82,7 +82,7 @@ void AchievementManager::LoadApprovedList() WARN_LOG_FMT(ACHIEVEMENTS, "Failed to load approved game settings list {}", APPROVED_LIST_FILENAME); WARN_LOG_FMT(ACHIEVEMENTS, "Error: {}", error); - return; + return {}; } auto context = Common::SHA1::CreateContext(); context->Update(temp.serialize()); @@ -94,10 +94,9 @@ void AchievementManager::LoadApprovedList() WARN_LOG_FMT(ACHIEVEMENTS, "Expected hash {}, found hash {}", Common::SHA1::DigestToString(APPROVED_LIST_HASH), Common::SHA1::DigestToString(digest)); - return; + return {}; } - std::lock_guard lg{m_lock}; - m_ini_root = std::move(temp); + return temp; } void AchievementManager::SetUpdateCallback(UpdateCallback callback) @@ -362,10 +361,12 @@ bool AchievementManager::IsHardcoreModeActive() const void AchievementManager::FilterApprovedPatches(std::vector& patches, const std::string& game_ini_id) const { + std::lock_guard lg{m_lock}; + if (!IsHardcoreModeActive()) return; - if (!m_ini_root.contains(game_ini_id)) + if (!m_ini_root->contains(game_ini_id)) patches.clear(); auto patch_itr = patches.begin(); while (patch_itr != patches.end()) @@ -384,7 +385,7 @@ void AchievementManager::FilterApprovedPatches(std::vector& } auto digest = context->Finish(); - bool verified = m_ini_root.get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); + bool verified = m_ini_root->get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); if (!verified) { patch_itr = patches.erase(patch_itr); diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 66f4398441..6bc9e74a7a 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -29,6 +29,7 @@ #include "Common/Event.h" #include "Common/HttpRequest.h" #include "Common/JsonUtil.h" +#include "Common/Lazy.h" #include "Common/WorkQueueThread.h" #include "DiscIO/Volume.h" #include "VideoCommon/Assets/CustomTextureData.h" @@ -146,7 +147,7 @@ public: void Shutdown(); private: - AchievementManager() { LoadApprovedList(); }; + AchievementManager() = default; struct FilereaderState { @@ -154,7 +155,7 @@ private: std::unique_ptr volume; }; - void LoadApprovedList(); + static picojson::value LoadApprovedList(); static void* FilereaderOpenByFilepath(const char* path_utf8); static void* FilereaderOpenByVolume(const char* path_utf8); @@ -227,7 +228,7 @@ private: std::chrono::steady_clock::time_point m_last_rp_time = std::chrono::steady_clock::now(); std::chrono::steady_clock::time_point m_last_progress_message = std::chrono::steady_clock::now(); - picojson::value m_ini_root; + Common::Lazy m_ini_root{LoadApprovedList}; std::string m_game_ini_id; std::unordered_map m_leaderboard_map; From e6b9091ffce7f87e241aef8818e7cd0ee4053782 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 8 Jul 2024 18:15:23 +0200 Subject: [PATCH 174/296] RetroAchievements: Skip LoadApprovedList if there are no patches There being no active patches is by far the most common case, so let's optimize for this case. --- Source/Core/Core/AchievementManager.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index d4ee8a0add..7a1837abbc 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -361,6 +361,12 @@ bool AchievementManager::IsHardcoreModeActive() const void AchievementManager::FilterApprovedPatches(std::vector& patches, const std::string& game_ini_id) const { + if (patches.empty()) + { + // There's nothing to verify, so let's save ourselves some work + return; + } + std::lock_guard lg{m_lock}; if (!IsHardcoreModeActive()) From afa6e26e5de58e942c8e7ef3a02632ccfb851d3d Mon Sep 17 00:00:00 2001 From: VampireFlower Date: Mon, 8 Jul 2024 03:49:31 -0700 Subject: [PATCH 175/296] BreakpointWidget: Correct icon position Co-Authored-By: TryTwo <10532806+TryTwo@users.noreply.github.com> --- Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 130e68e860..a678889aad 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -83,7 +83,8 @@ private: if (!pix.isNull()) { const QRect r = option.rect; - const QPoint p = QPoint((r.width() - pix.width()) / 2, (r.height() - pix.height()) / 2); + const QSize size = pix.deviceIndependentSize().toSize(); + const QPoint p = QPoint((r.width() - size.width()) / 2, (r.height() - size.height()) / 2); painter->drawPixmap(r.topLeft() + p, pix); } } From 1bf12a50c211e091368a453dbcca5662bdf64acc Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 10 Jul 2024 13:16:54 +0200 Subject: [PATCH 176/296] RetroAchievements: Show OSD messages also for unverified INI files Currently we're showing OSD messages for unknown patches in known INI files, but not for unknown patches in unknown INI files. I don't think this distinction makes much sense to the user. If there's a patch the user can't use, they probably want to be aware of that fact. --- Source/Core/Core/AchievementManager.cpp | 34 +++++++++++++++---------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 7a1837abbc..8b13a5327a 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -372,26 +372,32 @@ void AchievementManager::FilterApprovedPatches(std::vector& if (!IsHardcoreModeActive()) return; - if (!m_ini_root->contains(game_ini_id)) - patches.clear(); + const bool known_id = m_ini_root->contains(game_ini_id); + auto patch_itr = patches.begin(); while (patch_itr != patches.end()) { INFO_LOG_FMT(ACHIEVEMENTS, "Verifying patch {}", patch_itr->name); - auto context = Common::SHA1::CreateContext(); - context->Update(Common::BitCastToArray(static_cast(patch_itr->entries.size()))); - for (const auto& entry : patch_itr->entries) - { - context->Update(Common::BitCastToArray(entry.type)); - context->Update(Common::BitCastToArray(entry.address)); - context->Update(Common::BitCastToArray(entry.value)); - context->Update(Common::BitCastToArray(entry.comparand)); - context->Update(Common::BitCastToArray(entry.conditional)); - } - auto digest = context->Finish(); + bool verified = false; + + if (known_id) + { + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(patch_itr->entries.size()))); + for (const auto& entry : patch_itr->entries) + { + context->Update(Common::BitCastToArray(entry.type)); + context->Update(Common::BitCastToArray(entry.address)); + context->Update(Common::BitCastToArray(entry.value)); + context->Update(Common::BitCastToArray(entry.comparand)); + context->Update(Common::BitCastToArray(entry.conditional)); + } + auto digest = context->Finish(); + + verified = m_ini_root->get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); + } - bool verified = m_ini_root->get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); if (!verified) { patch_itr = patches.erase(patch_itr); From 073426ead75bd4dde88e91c3ba9b7d30ea9ff7fd Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 10 Jul 2024 08:51:13 -0400 Subject: [PATCH 177/296] Force progress bar to 100% on completed achievements --- Source/Core/DolphinQt/Achievements/AchievementBox.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 56a246955b..0beba5b06f 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -117,11 +117,12 @@ void AchievementBox::UpdateProgress() if (m_achievement->measured_percent > 0.000) { m_progress_bar->setRange(0, 100); - m_progress_bar->setValue(m_achievement->measured_percent); + m_progress_bar->setValue(m_achievement->unlocked ? 100 : m_achievement->measured_percent); m_progress_bar->setTextVisible(false); m_progress_label->setText( QString::fromUtf8(m_achievement->measured_progress, qstrnlen(m_achievement->measured_progress, PROGRESS_LENGTH))); + m_progress_label->setVisible(!m_achievement->unlocked); m_progress_bar->setVisible(true); } else From 40f2b1a1c2661a1eb7a040779f0bbfc882cde32b Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Wed, 10 Jul 2024 17:33:38 -0400 Subject: [PATCH 178/296] BuildMacOSUniversalBinary: Disable usage of most system-provided libraries --- BuildMacOSUniversalBinary.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/BuildMacOSUniversalBinary.py b/BuildMacOSUniversalBinary.py index 442fb83fe7..bcf5ce97d6 100755 --- a/BuildMacOSUniversalBinary.py +++ b/BuildMacOSUniversalBinary.py @@ -324,7 +324,15 @@ def build(config): + python_to_cmake_bool(config["steam"]), "-DENABLE_AUTOUPDATE=" + python_to_cmake_bool(config["autoupdate"]), - '-DDISTRIBUTOR=' + config['distributor'] + '-DDISTRIBUTOR=' + config['distributor'], + # Always use libraries from Externals to prevent any libraries + # installed by Homebrew from leaking in to the app + "-DUSE_SYSTEM_LIBS=OFF", + # However, we should still use the macOS provided versions of + # iconv, bzip2, and curl + "-DUSE_SYSTEM_ICONV=ON", + "-DUSE_SYSTEM_BZIP2=ON", + "-DUSE_SYSTEM_CURL=ON" ], env=env, cwd=arch) From e035db9127d7886937be70fb522437d50fe5b965 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 10 Jul 2024 08:52:12 -0400 Subject: [PATCH 179/296] Update game progress bar to match achievement progress bar --- .../Achievements/AchievementHeaderWidget.cpp | 19 ++++++++++++++++--- .../Achievements/AchievementHeaderWidget.h | 1 + 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index eeaae09b47..38a2c90ec4 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -27,6 +27,7 @@ AchievementHeaderWidget::AchievementHeaderWidget(QWidget* parent) : QWidget(pare m_name = new QLabel(); m_points = new QLabel(); m_game_progress = new QProgressBar(); + m_progress_label = new QLabel(); m_rich_presence = new QLabel(); m_name->setWordWrap(true); @@ -35,6 +36,9 @@ AchievementHeaderWidget::AchievementHeaderWidget(QWidget* parent) : QWidget(pare QSizePolicy sp_retain = m_game_progress->sizePolicy(); sp_retain.setRetainSizeWhenHidden(true); m_game_progress->setSizePolicy(sp_retain); + m_game_progress->setTextVisible(false); + m_progress_label->setStyleSheet(QStringLiteral("background-color:transparent;")); + m_progress_label->setAlignment(Qt::AlignCenter); QVBoxLayout* icon_col = new QVBoxLayout(); icon_col->addWidget(m_user_icon); @@ -44,6 +48,9 @@ AchievementHeaderWidget::AchievementHeaderWidget(QWidget* parent) : QWidget(pare text_col->addWidget(m_points); text_col->addWidget(m_game_progress); text_col->addWidget(m_rich_presence); + QVBoxLayout* prog_layout = new QVBoxLayout(m_game_progress); + prog_layout->setContentsMargins(0, 0, 0, 0); + prog_layout->addWidget(m_progress_label); QHBoxLayout* header_layout = new QHBoxLayout(); header_layout->addLayout(icon_col); header_layout->addLayout(text_col); @@ -115,10 +122,15 @@ void AchievementHeaderWidget::UpdateData() .arg(game_summary.points_unlocked) .arg(game_summary.points_core)); - m_game_progress->setRange(0, game_summary.num_core_achievements); - if (!m_game_progress->isVisible()) - m_game_progress->setVisible(true); + // This ensures that 0/0 renders as empty instead of full + m_game_progress->setRange( + 0, (game_summary.num_core_achievements == 0) ? 1 : game_summary.num_core_achievements); + m_game_progress->setVisible(true); m_game_progress->setValue(game_summary.num_unlocked_achievements); + m_progress_label->setVisible(true); + m_progress_label->setText(tr("%1/%2") + .arg(game_summary.num_unlocked_achievements) + .arg(game_summary.num_core_achievements)); m_rich_presence->setText(QString::fromUtf8(instance.GetRichPresence().data())); m_rich_presence->setVisible(true); } @@ -128,6 +140,7 @@ void AchievementHeaderWidget::UpdateData() m_points->setText(tr("%1 points").arg(instance.GetPlayerScore())); m_game_progress->setVisible(false); + m_progress_label->setVisible(false); m_rich_presence->setVisible(false); } } diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.h b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.h index 0964ef488f..65731f8d18 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.h +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.h @@ -25,6 +25,7 @@ private: QLabel* m_name; QLabel* m_points; QProgressBar* m_game_progress; + QLabel* m_progress_label; QLabel* m_rich_presence; QGroupBox* m_header_box; }; From 82b97ca904e39abb0649d8eebbb653065543a7a7 Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:36:26 +0200 Subject: [PATCH 180/296] IOS::HLE::EmulationKernel::InitIPC: Fix WiiIPC ack generation --- Source/Core/Core/IOS/IOS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/IOS.cpp b/Source/Core/Core/IOS/IOS.cpp index d15eb9317d..8eab961228 100644 --- a/Source/Core/Core/IOS/IOS.cpp +++ b/Source/Core/Core/IOS/IOS.cpp @@ -533,7 +533,7 @@ bool EmulationKernel::BootIOS(const u64 ios_title_id, HangPPC hang_ppc, void EmulationKernel::InitIPC() { - if (!Core::IsRunning(m_system)) + if (Core::GetState(m_system) == Core::State::Uninitialized) return; INFO_LOG_FMT(IOS, "IPC initialised."); From 22aed354f5d6c18808d59240ca184baeaf5e0bf9 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 11 Jul 2024 14:49:29 -0400 Subject: [PATCH 181/296] Tools: Remove gameini-ratings-from-wiki.sh We haven't been storing ratings in GameINIs since #6569. --- Tools/gameini-ratings-from-wiki.sh | 47 ------------------------------ 1 file changed, 47 deletions(-) delete mode 100755 Tools/gameini-ratings-from-wiki.sh diff --git a/Tools/gameini-ratings-from-wiki.sh b/Tools/gameini-ratings-from-wiki.sh deleted file mode 100755 index 5ed89ebd66..0000000000 --- a/Tools/gameini-ratings-from-wiki.sh +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/bash - -if [ "$#" -ne 1 ]; then - echo >&2 "usage: $0 " - exit 1 -fi - -[ -z "$PGPASSWORD" ] && read -rs -p 'Enter PostgreSQL password: ' PGPASSWORD - -export PGHOST=postgresql1.alwaysdata.com -export PGDATABASE=dolphin-emu_wiki -export PGUSER=dolphin-emu_wiki -export PGPASSWORD - -sql() { - psql -A -t -F ',' -c "$1" -} - -GAME_ID=$(basename "$1" | cut -c -6) - -if ! echo "$GAME_ID" | grep -q '[A-Z0-9]\{6\}'; then - echo >&2 "Invalid game ID: $GAME_ID" - exit 1 -fi - -GAME_ID_GLOB=$(echo "$GAME_ID" | sed 's/\(...\).\(..\)/\1_\2/') -RATING=$(sql " - SELECT - rating_content.old_text - FROM - page gid_page - LEFT JOIN pagelinks gid_to_main - ON gid_to_main.pl_from = gid_page.page_id - LEFT JOIN page rating_page - ON rating_page.page_title = ('Ratings/' || gid_to_main.pl_title) - LEFT JOIN revision rating_rev - ON rating_rev.rev_id = rating_page.page_latest - LEFT JOIN pagecontent rating_content - ON rating_content.old_id = rating_rev.rev_text_id - WHERE - gid_page.page_title LIKE '$GAME_ID_GLOB' - LIMIT 1 -" | grep '^[1-5]$') - -if ! [ -z "$RATING" ]; then - sed -i "s/^EmulationStateId.*$/EmulationStateId = $RATING/" "$1" -fi From 3db641ab4c30b7536a7431fb0e1afb7dd9c55cac Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 11 Jul 2024 14:55:41 -0400 Subject: [PATCH 182/296] Tools: Remove buildbot-try.sh try support was removed from the buildbot master in dolphin-emu/sadm@336d0e6064679019cfb5720d83b8008e2e0983c9. --- Tools/buildbot-try.sh | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100755 Tools/buildbot-try.sh diff --git a/Tools/buildbot-try.sh b/Tools/buildbot-try.sh deleted file mode 100755 index ef2903b2e4..0000000000 --- a/Tools/buildbot-try.sh +++ /dev/null @@ -1,42 +0,0 @@ -#! /bin/bash -# -# Submits a "buildbot try" message to the Dolphin buildbot with all the -# required options. - -opt_file=$HOME/.buildbot/options - -if ! [ -f "$opt_file" ]; then - echo >&2 "error: no .buildbot/options configuration file found" - echo >&2 "Read the docs: https://wiki.dolphin-emu.org/index.php?title=Buildbot" - exit 1 -fi - -if ! which buildbot >/dev/null 2>&1; then - echo >&2 "error: buildbot is not installed" - echo >&2 "Install it from your package manager, or use 'pip install buildbot'" - exit 1 -fi - -if ! git branch | grep -q '^* '; then - echo "Unable to determine the current Git branch. Input the Git branch name:" - read branchname -else - branchname=$(git branch | grep '^* ' | cut -d ' ' -f 2-) -fi - -shortrev=$(git describe --always --long --dirty=+ | sed 's/-g[0-9a-f]*\(+*\)$/\1/') - -author=$(grep try_username "$opt_file" | cut -d "'" -f 2) - -remote=$(git remote -v | grep dolphin-emu/dolphin.git | head -n1 | cut -f1) -remote=${remote:-origin} - -baserev=$(git merge-base HEAD $remote/master) - -echo "Branch name: $branchname" -echo "Change author: $author" -echo "Short rev: $shortrev" -echo "Remote: $remote" -echo "Base rev: $baserev" - -git diff --binary -r $baserev | buildbot try --properties=branchname=$branchname,author=$author,shortrev=$shortrev --diff=- -p1 --baserev $baserev $* From 8bd2cb40e51a94190bb35ec8f72e7061eecb35bc Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 11 Jul 2024 14:58:39 -0400 Subject: [PATCH 183/296] Tools: Remove CleanFiles.py This tool doesn't seem to work properly anymore, even after fixing the path in main(). --- Tools/CleanFiles.py | 109 -------------------------------------------- 1 file changed, 109 deletions(-) delete mode 100644 Tools/CleanFiles.py diff --git a/Tools/CleanFiles.py b/Tools/CleanFiles.py deleted file mode 100644 index 812523204b..0000000000 --- a/Tools/CleanFiles.py +++ /dev/null @@ -1,109 +0,0 @@ - -import codecs -import os -import glob - -standard_sections = [ - "Core", - "EmuState", - "OnLoad", - "OnFrame", - "ActionReplay", - "Video", - "Video_Settings", - "Video_Enhancements", - "Video_Hacks", - "Speedhacks", -] - -standard_comments = { - "Core": "Values set here will override the main dolphin settings.", - "EmuState": "The Emulation State. 1 is worst, 5 is best, 0 is not set.", - "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": "", - "Video_Settings": "", - "Video_Enhancements": "", - "Video_Hacks": "", - "Speedhacks": "", -} - -def normalize_comment(line): - line = line.strip().lstrip('#').lstrip() - if line: - return "# %s" % (line,) - else: - return "" - -def normalize_ini_file(in_, out): - sections = {} - current_section = None - toplevel_comment = "" - wants_comment = False - - for line in in_: - line = line.strip() - - # strip utf8 bom - line = line.lstrip(u'\ufeff') - - if line.startswith('#'): - line = normalize_comment(line) - if current_section is None: - toplevel_comment += line - continue - - if line.startswith('['): - end = line.find(']') - section_name = line[1:end] - if section_name not in standard_sections: - continue - current_section = [] - sections[section_name] = current_section - wants_comment = False - continue - - if current_section is None and line: - raise ValueError("invalid junk") - - if current_section is None: - continue - - if line.startswith('#') and not wants_comment: - continue - - current_section.append(line) - if line: - wants_comment = True - - out.write(toplevel_comment.strip() + "\n\n") - - for section in standard_sections: - lines = '\n'.join(sections.get(section, "")).strip() - comments = standard_comments[section] - - if not lines and not comments: - continue - - out.write("[%s]\n" % (section,)) - if comments: - out.write("# %s\n" % (comments,)) - if lines: - out.write(lines) - out.write('\n') - out.write('\n') - -def main(): - base_path = os.path.dirname(__file__) - pattern = os.path.join(base_path, "../Data/User/GameConfig/??????.ini") - for name in glob.glob(pattern): - in__name = name - out_name = name + '.new' - in_ = codecs.open(in__name, 'r', 'utf8') - out = codecs.open(out_name, 'w', 'utf8') - normalize_ini_file(in_, out) - os.rename(out_name, in__name) - -if __name__ == "__main__": - main() From 4550fc3ab55b11b91ad6938d5d9deee580064be9 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 11 Jul 2024 15:00:18 -0400 Subject: [PATCH 184/296] Tools: Remove check-includes.py Include sorting has been enforced by clang-format and lint since ~2015. --- Tools/check-includes.py | 98 ----------------------------------------- 1 file changed, 98 deletions(-) delete mode 100755 Tools/check-includes.py diff --git a/Tools/check-includes.py b/Tools/check-includes.py deleted file mode 100755 index 0c2aee3832..0000000000 --- a/Tools/check-includes.py +++ /dev/null @@ -1,98 +0,0 @@ -#! /usr/bin/env python - -""" -check-includes.py - -Checks if the includes are sorted properly and following the "system headers -before local headers" rule. - -Ignores what is in #if blocks to avoid false negatives. -""" - -import re -import sys - -def exclude_if_blocks(lines): - '''Removes lines from #if ... #endif blocks.''' - level = 0 - for l in lines: - if l.startswith('#if'): - level += 1 - elif l.startswith('#endif'): - level -= 1 - elif level == 0: - yield l - -def filter_includes(lines): - '''Removes lines that are not #include and keeps only the file part.''' - for l in lines: - if l.startswith('#include'): - if 'NOLINT' not in l: - yield l.split(' ')[1] - -class IncludeFileSorter(object): - def __init__(self, path): - self.path = path - - def __lt__(self, other): - '''Sorting function for include files. - - * System headers go before local headers (check the first character - - if it's different, then the one starting with " is the 'larger'). - * Then, iterate on all the path components: - * If they are equal, try to continue to the next path component. - * If not, return whether the path component are smaller/larger. - * Paths with less components should go first, so after iterating, check - whether one path still has some / in it. - ''' - a, b = self.path, other.path - if a[0] != b[0]: - return False if a[0] == '"' else True - a, b = a[1:-1].lower(), b[1:-1].lower() - while '/' in a and '/' in b: - ca, a = a.split('/', 1) - cb, b = b.split('/', 1) - if ca != cb: - return ca < cb - if '/' in a: - return False - elif '/' in b: - return True - else: - return a < b - - def __eq__(self, other): - return self.path.lower() == other.path.lower() - -def sort_includes(includes): - return sorted(includes, key=IncludeFileSorter) - -def show_differences(bad, good): - bad = [' Current'] + bad - good = [' Should be'] + good - longest = max(len(i) for i in bad) - padded = [i + ' ' * (longest + 4 - len(i)) for i in bad] - return '\n'.join('%s%s' % t for t in zip(padded, good)) - -def check_file(path): - print('Checking %s' % path) - try: - try: - data = open(path, encoding='utf-8').read() - except TypeError: # py2 - data = open(path).read().decode('utf-8') - except UnicodeDecodeError: - sys.stderr.write('%s: bad UTF-8 data\n' % path) - return - - lines = (l.strip() for l in data.split('\n')) - lines = exclude_if_blocks(lines) - includes = list(filter_includes(lines)) - sorted_includes = sort_includes(includes) - if includes != sorted_includes: - sys.stderr.write('%s: includes are incorrect\n' % path) - sys.stderr.write(show_differences(includes, sorted_includes) + '\n') - -if __name__ == '__main__': - for path in sys.argv[1:]: - check_file(path) From 193c863f20d7645e728b1df8ac7abdb8ffd0eda8 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 12 Jul 2024 07:45:04 -0400 Subject: [PATCH 185/296] Disable Leaderboards Tab Emergency PR to disable the leaderboards tab for launch if we are not satisfied with its testing yet. --- .../Achievements/AchievementsWindow.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp index 8605c10725..2e0a6cb40c 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp @@ -55,12 +55,12 @@ void AchievementsWindow::CreateMainLayout() m_tab_widget = new QTabWidget(); m_settings_widget = new AchievementSettingsWidget(m_tab_widget); m_progress_widget = new AchievementProgressWidget(m_tab_widget); - m_leaderboard_widget = new AchievementLeaderboardWidget(m_tab_widget); + // m_leaderboard_widget = new AchievementLeaderboardWidget(m_tab_widget); m_tab_widget->addTab(GetWrappedWidget(m_settings_widget, this, 125, 100), tr("Settings")); m_tab_widget->addTab(GetWrappedWidget(m_progress_widget, this, 125, 100), tr("Progress")); m_tab_widget->setTabVisible(1, is_game_loaded); - m_tab_widget->addTab(GetWrappedWidget(m_leaderboard_widget, this, 125, 100), tr("Leaderboards")); - m_tab_widget->setTabVisible(2, is_game_loaded); + // m_tab_widget->addTab(GetWrappedWidget(m_leaderboard_widget, this, 125, 100), + // tr("Leaderboards")); m_tab_widget->setTabVisible(2, is_game_loaded); m_button_box = new QDialogButtonBox(QDialogButtonBox::Close); @@ -84,9 +84,9 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite { m_header_widget->UpdateData(); m_progress_widget->UpdateData(true); - m_leaderboard_widget->UpdateData(true); + // m_leaderboard_widget->UpdateData(true); static_cast(m_tab_widget->widget(1))->verticalScrollBar()->setValue(0); - static_cast(m_tab_widget->widget(2))->verticalScrollBar()->setValue(0); + // static_cast(m_tab_widget->widget(2))->verticalScrollBar()->setValue(0); } else { @@ -99,10 +99,10 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite m_progress_widget->UpdateData(false); else if (updated_items.achievements.size() > 0) m_progress_widget->UpdateData(updated_items.achievements); - if (updated_items.all_leaderboards) - m_leaderboard_widget->UpdateData(false); - else if (updated_items.leaderboards.size() > 0) - m_leaderboard_widget->UpdateData(updated_items.leaderboards); + // if (updated_items.all_leaderboards) + // m_leaderboard_widget->UpdateData(false); + // else if (updated_items.leaderboards.size() > 0) + // m_leaderboard_widget->UpdateData(updated_items.leaderboards); } { @@ -111,7 +111,7 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite const bool is_game_loaded = instance.IsGameLoaded(); m_header_widget->setVisible(instance.HasAPIToken()); m_tab_widget->setTabVisible(1, is_game_loaded); - m_tab_widget->setTabVisible(2, is_game_loaded); + // m_tab_widget->setTabVisible(2, is_game_loaded); } update(); } From 0108ecebcb1db25da9efcf31280f2a36e74a6880 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 12 Jul 2024 21:39:46 -0400 Subject: [PATCH 186/296] Fix Leaderboards Tab Now that we have some test data, it wasn't showing up in the leaderboards tab; this fixes it to ensure (1) that the right ID is being passed to UpdateRow and (2) the map of leaderboard entries is being populated correctly. --- Source/Core/Core/AchievementManager.cpp | 16 ++++++++++++++++ .../AchievementLeaderboardWidget.cpp | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 7a1837abbc..bea8d4c965 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -837,6 +837,22 @@ void AchievementManager::LoadGameCallback(int result, const char* error_message, instance.m_update_callback({.all = true}); // Set this to a value that will immediately trigger RP instance.m_last_rp_time = std::chrono::steady_clock::now() - std::chrono::minutes{2}; + + std::lock_guard lg{instance.GetLock()}; + auto* leaderboard_list = + rc_client_create_leaderboard_list(client, RC_CLIENT_LEADERBOARD_LIST_GROUPING_NONE); + for (u32 bucket = 0; bucket < leaderboard_list->num_buckets; bucket++) + { + const auto& leaderboard_bucket = leaderboard_list->buckets[bucket]; + for (u32 board = 0; board < leaderboard_bucket.num_leaderboards; board++) + { + const auto& leaderboard = leaderboard_bucket.leaderboards[board]; + instance.m_leaderboard_map.insert( + std::pair(leaderboard->id, LeaderboardStatus{.name = leaderboard->title, + .description = leaderboard->description})); + } + } + rc_client_destroy_leaderboard_list(leaderboard_list); } void AchievementManager::ChangeMediaCallback(int result, const char* error_message, diff --git a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp index c15afea34f..092e892bb7 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp @@ -87,7 +87,7 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all) } for (auto row : m_leaderboard_order) { - UpdateRow(row.second); + UpdateRow(row.first); } } @@ -98,7 +98,7 @@ void AchievementLeaderboardWidget::UpdateData( { if (update_ids.contains(row.first)) { - UpdateRow(row.second); + UpdateRow(row.first); } } } From 7a36d5373a54890a124cced96762164f1c0e4889 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 14 Jul 2024 23:03:24 +0200 Subject: [PATCH 187/296] AchievementManager: Improve error message for repeated pausing --- Source/Core/Core/AchievementManager.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 38aa5ea132..c203af7a56 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -295,10 +295,9 @@ bool AchievementManager::CanPause() bool can_pause = rc_client_can_pause(m_client, &frames_to_next_pause); if (!can_pause) { - OSD::AddMessage("Cannot spam pausing in hardcore mode.", OSD::Duration::VERY_LONG, - OSD::Color::RED); OSD::AddMessage( - fmt::format("Can pause in {} seconds.", + fmt::format("RetroAchievements Hardcore Mode:\n" + "Cannot pause until another {:.2f} seconds have passed.", static_cast(frames_to_next_pause) / Core::System::GetInstance().GetVideoInterface().GetTargetRefreshRate()), OSD::Duration::VERY_LONG, OSD::Color::RED); From 7e7273a335f851995ab0f27e53b1c3f7393b443f Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Mon, 15 Jul 2024 03:44:05 +0200 Subject: [PATCH 188/296] =?UTF-8?q?GameINI:=20Enable=20Pok=C3=A9mon=20Colo?= =?UTF-8?q?sseum/XD=20save=20patches=20by=20default?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Data/Sys/GameSettings/GC6E01.ini | 3 +++ Data/Sys/GameSettings/GC6J01.ini | 3 +++ Data/Sys/GameSettings/GC6P01.ini | 3 +++ Data/Sys/GameSettings/GXXE01.ini | 3 +++ Data/Sys/GameSettings/GXXJ01.ini | 3 +++ Data/Sys/GameSettings/GXXP01.ini | 3 +++ 6 files changed, 18 insertions(+) diff --git a/Data/Sys/GameSettings/GC6E01.ini b/Data/Sys/GameSettings/GC6E01.ini index 5af8c69560..6316102159 100644 --- a/Data/Sys/GameSettings/GC6E01.ini +++ b/Data/Sys/GameSettings/GC6E01.ini @@ -26,5 +26,8 @@ $Allow Memory Card saving with Savestates 0x801cfc2c:dword:0x9005002c 0x801cfc7c:dword:0x60000000 +[OnFrame_Enabled] +$Allow Memory Card saving with Savestates + [Patches_RetroAchievements_Verified] $Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GC6J01.ini b/Data/Sys/GameSettings/GC6J01.ini index eb8bd994a8..e00506e280 100644 --- a/Data/Sys/GameSettings/GC6J01.ini +++ b/Data/Sys/GameSettings/GC6J01.ini @@ -26,5 +26,8 @@ $Allow Memory Card saving with Savestates 0x801cb5b8:dword:0x9005002c 0x801cb608:dword:0x60000000 +[OnFrame_Enabled] +$Allow Memory Card saving with Savestates + [Patches_RetroAchievements_Verified] $Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GC6P01.ini b/Data/Sys/GameSettings/GC6P01.ini index 8f02b22bd3..0d1683bbcc 100644 --- a/Data/Sys/GameSettings/GC6P01.ini +++ b/Data/Sys/GameSettings/GC6P01.ini @@ -26,5 +26,8 @@ $Allow Memory Card saving with Savestates 0x801d429c:dword:0x9005002c 0x801d42ec:dword:0x60000000 +[OnFrame_Enabled] +$Allow Memory Card saving with Savestates + [Patches_RetroAchievements_Verified] $Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GXXE01.ini b/Data/Sys/GameSettings/GXXE01.ini index fdf9d338dd..f9afa517c0 100644 --- a/Data/Sys/GameSettings/GXXE01.ini +++ b/Data/Sys/GameSettings/GXXE01.ini @@ -6,5 +6,8 @@ $Allow Memory Card saving with Savestates 0x801cc304:dword:0x90e5002c 0x801cc4b0:dword:0x60000000 +[OnFrame_Enabled] +$Allow Memory Card saving with Savestates + [Patches_RetroAchievements_Verified] $Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GXXJ01.ini b/Data/Sys/GameSettings/GXXJ01.ini index 505aa9d828..0bf33c8824 100644 --- a/Data/Sys/GameSettings/GXXJ01.ini +++ b/Data/Sys/GameSettings/GXXJ01.ini @@ -6,5 +6,8 @@ $Allow Memory Card saving with Savestates 0x801c7984:dword:0x90e5002c 0x801c7b30:dword:0x60000000 +[OnFrame_Enabled] +$Allow Memory Card saving with Savestates + [Patches_RetroAchievements_Verified] $Allow Memory Card saving with Savestates diff --git a/Data/Sys/GameSettings/GXXP01.ini b/Data/Sys/GameSettings/GXXP01.ini index 5b02d18d0f..2238386639 100644 --- a/Data/Sys/GameSettings/GXXP01.ini +++ b/Data/Sys/GameSettings/GXXP01.ini @@ -6,5 +6,8 @@ $Allow Memory Card saving with Savestates 0x801cd764:dword:0x90e5002c 0x801cd910:dword:0x60000000 +[OnFrame_Enabled] +$Allow Memory Card saving with Savestates + [Patches_RetroAchievements_Verified] $Allow Memory Card saving with Savestates From d665175a2bfc8c0867bf14578d1f12b57b5fca66 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Mon, 15 Jul 2024 21:44:48 +0200 Subject: [PATCH 189/296] AchievementManager: Return the default player and game badges if the current one isn't loaded yet This saves some copying and fixes an issue where the default badges disappear after a game was closed --- Source/Core/Core/AchievementManager.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c203af7a56..a1dd5f851f 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -440,7 +440,7 @@ u32 AchievementManager::GetPlayerScore() const const AchievementManager::Badge& AchievementManager::GetPlayerBadge() const { - return m_player_badge; + return m_player_badge.data.empty() ? m_default_player_badge : m_player_badge; } std::string_view AchievementManager::GetGameDisplayName() const @@ -460,7 +460,7 @@ rc_api_fetch_game_data_response_t* AchievementManager::GetGameData() const AchievementManager::Badge& AchievementManager::GetGameBadge() const { - return m_game_badge; + return m_game_badge.data.empty() ? m_default_game_badge : m_game_badge; } const AchievementManager::Badge& AchievementManager::GetAchievementBadge(AchievementId id, @@ -696,7 +696,6 @@ void AchievementManager::LoadDefaultBadges() DEFAULT_PLAYER_BADGE_FILENAME); } } - m_player_badge = m_default_player_badge; if (m_default_game_badge.data.empty()) { @@ -707,7 +706,6 @@ void AchievementManager::LoadDefaultBadges() DEFAULT_GAME_BADGE_FILENAME); } } - m_game_badge = m_default_game_badge; if (m_default_unlocked_badge.data.empty()) { @@ -888,7 +886,7 @@ void AchievementManager::DisplayWelcomeMessage() const u32 color = rc_client_get_hardcore_enabled(m_client) ? OSD::Color::YELLOW : OSD::Color::CYAN; - OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, &m_game_badge); + OSD::AddMessage("", OSD::Duration::VERY_LONG, OSD::Color::GREEN, &GetGameBadge()); auto info = rc_client_get_game_info(m_client); if (!info) { @@ -1033,7 +1031,7 @@ void AchievementManager::HandleGameCompletedEvent(const rc_client_event_t* clien OSD::AddMessage(fmt::format("Congratulations! {} has {} {}", user_info->display_name, hardcore ? "mastered" : "completed", game_info->title), OSD::Duration::VERY_LONG, hardcore ? OSD::Color::YELLOW : OSD::Color::CYAN, - &AchievementManager::GetInstance().m_game_badge); + &AchievementManager::GetInstance().GetGameBadge()); } void AchievementManager::HandleResetEvent(const rc_client_event_t* client_event) From 50b318cc31ba11de8deb20c5b277db2f2e348e4c Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Mon, 15 Jul 2024 21:47:59 +0200 Subject: [PATCH 190/296] Qt/AchievementHeaderWidget: Don't crash when we get an empty player or game badge --- .../Achievements/AchievementHeaderWidget.cpp | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index 38a2c90ec4..41e87ef5e2 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -84,10 +84,13 @@ void AchievementHeaderWidget::UpdateData() m_user_icon->setVisible(false); m_user_icon->clear(); m_user_icon->setText({}); - QImage i_user_icon(&player_badge.data.front(), player_badge.width, player_badge.height, - QImage::Format_RGBA8888); - m_user_icon->setPixmap(QPixmap::fromImage(i_user_icon) - .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + if (!player_badge.data.empty()) + { + QImage i_user_icon(player_badge.data.data(), player_badge.width, player_badge.height, + QImage::Format_RGBA8888); + m_user_icon->setPixmap(QPixmap::fromImage(i_user_icon) + .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + } m_user_icon->adjustSize(); m_user_icon->setStyleSheet(QStringLiteral("border: 4px solid transparent")); m_user_icon->setVisible(true); @@ -100,10 +103,13 @@ void AchievementHeaderWidget::UpdateData() { rc_client_user_game_summary_t game_summary; rc_client_get_user_game_summary(instance.GetClient(), &game_summary); - QImage i_game_icon(&game_badge.data.front(), game_badge.width, game_badge.height, - QImage::Format_RGBA8888); - m_game_icon->setPixmap(QPixmap::fromImage(i_game_icon) - .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + if (game_badge.data.empty()) + { + QImage i_game_icon(game_badge.data.data(), game_badge.width, game_badge.height, + QImage::Format_RGBA8888); + m_game_icon->setPixmap(QPixmap::fromImage(i_game_icon) + .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + } m_game_icon->adjustSize(); std::string_view color = AchievementManager::GRAY; if (game_summary.num_core_achievements == game_summary.num_unlocked_achievements) From c50689355b83cab69bb20851919babff2808a4ae Mon Sep 17 00:00:00 2001 From: Aiden <86704247+vabold@users.noreply.github.com> Date: Mon, 15 Jul 2024 16:11:15 -0400 Subject: [PATCH 191/296] IOS: Fix return code inaccuracy Co-Authored-By: Mike <99037623+MikeIsAStar@users.noreply.github.com> --- Source/Core/Core/IOS/FS/HostBackend/File.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/Core/IOS/FS/HostBackend/File.cpp b/Source/Core/Core/IOS/FS/HostBackend/File.cpp index 9f58c2fffa..1379ebc049 100644 --- a/Source/Core/Core/IOS/FS/HostBackend/File.cpp +++ b/Source/Core/Core/IOS/FS/HostBackend/File.cpp @@ -81,6 +81,12 @@ Result HostFileSystem::OpenFile(Uid, Gid, const std::string& path, M return ResultCode::NoFreeHandle; const std::string host_path = BuildFilename(path).host_path; + if (File::IsDirectory(host_path)) + { + *handle = Handle{}; + return ResultCode::Invalid; + } + if (!File::IsFile(host_path)) { *handle = Handle{}; From 63e1419396de6d85588e48954b4e7b433ceeebb7 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Mon, 15 Jul 2024 23:24:04 +0200 Subject: [PATCH 192/296] AchievementManager: Don't point to stack for login error message --- Source/Core/Core/AchievementManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index a1dd5f851f..7788876139 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -1077,7 +1077,7 @@ void AchievementManager::Request(const rc_api_request_t* request, } else { - constexpr char error_message[] = "Failed HTTP request."; + static constexpr char error_message[] = "Failed HTTP request."; server_response.body = error_message; server_response.body_length = sizeof(error_message); server_response.http_status_code = RC_API_SERVER_RESPONSE_RETRYABLE_CLIENT_ERROR; From 130d594c82fdf13af0bcb5bd928570105821971a Mon Sep 17 00:00:00 2001 From: Avasam Date: Tue, 16 Jul 2024 21:50:22 -0400 Subject: [PATCH 193/296] Disable Dual Core in Death Jr.: Root of Evil --- Data/Sys/GameSettings/RDJ.ini | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Data/Sys/GameSettings/RDJ.ini diff --git a/Data/Sys/GameSettings/RDJ.ini b/Data/Sys/GameSettings/RDJ.ini new file mode 100644 index 0000000000..9ec8e83cf7 --- /dev/null +++ b/Data/Sys/GameSettings/RDJ.ini @@ -0,0 +1,15 @@ +# RDJE4F, RDJP4F - Death Jr: Root of Evil + +[Core] +# Death Jr.: Root of Evil locks up after minutes of gameplay when Dual Core is enabled. +# https://bugs.dolphin-emu.org/issues/13544 +CPUThread = False + +[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. From d19aa934aeacf9aaf1fd8db766eb638bc0cef2ae Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 17 Jul 2024 04:36:53 -0400 Subject: [PATCH 194/296] Fixed incorrect unlock information in Achievements dialog --- .../DolphinQt/Achievements/AchievementBox.cpp | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 0beba5b06f..63562f2573 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -79,7 +79,7 @@ void AchievementBox::UpdateData() return; const auto& badge = AchievementManager::GetInstance().GetAchievementBadge( - m_achievement->id, m_achievement->state != RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED); + m_achievement->id, !m_achievement->unlocked); std::string_view color = AchievementManager::GRAY; if (m_achievement->unlocked & RC_CLIENT_ACHIEVEMENT_UNLOCKED_HARDCORE) color = AchievementManager::GOLD; @@ -92,11 +92,18 @@ void AchievementBox::UpdateData() m_badge->setStyleSheet( QStringLiteral("border: 4px solid %1").arg(QtUtils::FromStdString(color))); - if (m_achievement->state == RC_CLIENT_ACHIEVEMENT_STATE_UNLOCKED) + if (m_achievement->unlocked) { - m_status->setText( - tr("Unlocked at %1") - .arg(QDateTime::fromSecsSinceEpoch(m_achievement->unlock_time).toString())); + if (m_achievement->unlock_time != 0) + { + m_status->setText( + tr("Unlocked at %1") + .arg(QDateTime::fromSecsSinceEpoch(m_achievement->unlock_time).toString())); + } + else + { + m_status->setText(tr("Unlocked")); + } } else { From e7504d0b12fbb773ed5b86b1e3e389414a085d95 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 17 Jul 2024 22:51:24 -0400 Subject: [PATCH 195/296] Remove Leaderboard Fetch when Getting Info The cause of the leaderboard spam was primarily this call where if there was an attempt to get leaderboard info and there wasn't already, there would be a fetch request. This is bad for many reasons: some games have hundreds of boards that will be fetched at startup, if there's simply no data to populate that board, this will just continue to fetch every time the dialog needs to update. To mitigate this, I simply don't load leaderboard information until there are events for that leaderboard - less information for the player, sadly, but heavily cuts down on the number of leaderboard fetches. --- Source/Core/Core/AchievementManager.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 7788876139..7dab23d5f6 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -479,8 +479,6 @@ AchievementManager::GetLeaderboardInfo(AchievementManager::AchievementId leaderb if (const auto leaderboard_iter = m_leaderboard_map.find(leaderboard_id); leaderboard_iter != m_leaderboard_map.end()) { - if (leaderboard_iter->second.entries.size() == 0) - FetchBoardInfo(leaderboard_id); return &leaderboard_iter->second; } From 5ccd157c944a24de13975661a62e6d46a3a5bb44 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 17 Jul 2024 22:51:43 -0400 Subject: [PATCH 196/296] Re-enable Leaderboards Tab --- .../Achievements/AchievementsWindow.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp index 2e0a6cb40c..8605c10725 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp @@ -55,12 +55,12 @@ void AchievementsWindow::CreateMainLayout() m_tab_widget = new QTabWidget(); m_settings_widget = new AchievementSettingsWidget(m_tab_widget); m_progress_widget = new AchievementProgressWidget(m_tab_widget); - // m_leaderboard_widget = new AchievementLeaderboardWidget(m_tab_widget); + m_leaderboard_widget = new AchievementLeaderboardWidget(m_tab_widget); m_tab_widget->addTab(GetWrappedWidget(m_settings_widget, this, 125, 100), tr("Settings")); m_tab_widget->addTab(GetWrappedWidget(m_progress_widget, this, 125, 100), tr("Progress")); m_tab_widget->setTabVisible(1, is_game_loaded); - // m_tab_widget->addTab(GetWrappedWidget(m_leaderboard_widget, this, 125, 100), - // tr("Leaderboards")); m_tab_widget->setTabVisible(2, is_game_loaded); + m_tab_widget->addTab(GetWrappedWidget(m_leaderboard_widget, this, 125, 100), tr("Leaderboards")); + m_tab_widget->setTabVisible(2, is_game_loaded); m_button_box = new QDialogButtonBox(QDialogButtonBox::Close); @@ -84,9 +84,9 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite { m_header_widget->UpdateData(); m_progress_widget->UpdateData(true); - // m_leaderboard_widget->UpdateData(true); + m_leaderboard_widget->UpdateData(true); static_cast(m_tab_widget->widget(1))->verticalScrollBar()->setValue(0); - // static_cast(m_tab_widget->widget(2))->verticalScrollBar()->setValue(0); + static_cast(m_tab_widget->widget(2))->verticalScrollBar()->setValue(0); } else { @@ -99,10 +99,10 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite m_progress_widget->UpdateData(false); else if (updated_items.achievements.size() > 0) m_progress_widget->UpdateData(updated_items.achievements); - // if (updated_items.all_leaderboards) - // m_leaderboard_widget->UpdateData(false); - // else if (updated_items.leaderboards.size() > 0) - // m_leaderboard_widget->UpdateData(updated_items.leaderboards); + if (updated_items.all_leaderboards) + m_leaderboard_widget->UpdateData(false); + else if (updated_items.leaderboards.size() > 0) + m_leaderboard_widget->UpdateData(updated_items.leaderboards); } { @@ -111,7 +111,7 @@ void AchievementsWindow::UpdateData(AchievementManager::UpdatedItems updated_ite const bool is_game_loaded = instance.IsGameLoaded(); m_header_widget->setVisible(instance.HasAPIToken()); m_tab_widget->setTabVisible(1, is_game_loaded); - // m_tab_widget->setTabVisible(2, is_game_loaded); + m_tab_widget->setTabVisible(2, is_game_loaded); } update(); } From 8bb2f98c6a9c4bbf265fb91737d0994dfe1f83dc Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 17 Jul 2024 22:53:15 -0400 Subject: [PATCH 197/296] Properly Populate Player Index The player_index field in question is ultimately what gets used to determine which ranks get displayed in the leaderboards chart, and because this was missing the chart was simply displaying the top four results no matter what. --- Source/Core/Core/AchievementManager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 7dab23d5f6..b669a445b1 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -804,6 +804,8 @@ void AchievementManager::LeaderboardEntriesCallback(int result, const char* erro map_entry.username.assign(response_entry.user); memcpy(map_entry.score.data(), response_entry.display, FORMAT_SIZE); map_entry.rank = response_entry.rank; + if (ix == list->user_index) + leaderboard.player_index = response_entry.rank; } AchievementManager::GetInstance().m_update_callback({.leaderboards = {*leaderboard_id}}); } From 982893b04cb3605f7703ebf2b9a99d33efa3b3eb Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 21 Jul 2024 16:26:35 +0100 Subject: [PATCH 198/296] Use C++20 erase_if() instead of erase(remove_if()) (NFC) --- Source/Core/Core/CoreTiming.cpp | 7 +++---- Source/Core/DiscIO/DiscUtils.cpp | 8 +++----- Source/Core/DolphinQt/GameList/GameList.cpp | 14 +++++--------- .../ControllerInterface/ControllerInterface.cpp | 6 ++---- 4 files changed, 13 insertions(+), 22 deletions(-) diff --git a/Source/Core/Core/CoreTiming.cpp b/Source/Core/Core/CoreTiming.cpp index b304ff2fa6..7fe8160da8 100644 --- a/Source/Core/Core/CoreTiming.cpp +++ b/Source/Core/Core/CoreTiming.cpp @@ -282,13 +282,12 @@ void CoreTimingManager::ScheduleEvent(s64 cycles_into_future, EventType* event_t void CoreTimingManager::RemoveEvent(EventType* event_type) { - auto itr = std::remove_if(m_event_queue.begin(), m_event_queue.end(), - [&](const Event& e) { return e.type == event_type; }); + const size_t erased = + std::erase_if(m_event_queue, [&](const Event& e) { return e.type == event_type; }); // Removing random items breaks the invariant so we have to re-establish it. - if (itr != m_event_queue.end()) + if (erased != 0) { - m_event_queue.erase(itr, m_event_queue.end()); std::make_heap(m_event_queue.begin(), m_event_queue.end(), std::greater()); } } diff --git a/Source/Core/DiscIO/DiscUtils.cpp b/Source/Core/DiscIO/DiscUtils.cpp index cdfcb015c4..afd22117c6 100644 --- a/Source/Core/DiscIO/DiscUtils.cpp +++ b/Source/Core/DiscIO/DiscUtils.cpp @@ -131,11 +131,9 @@ u64 GetBiggestReferencedOffset(const Volume& volume) // This can happen when certain programs that create WBFS files scrub the entirety of // the Masterpiece partitions in Super Smash Bros. Brawl without removing them from // the partition table. https://bugs.dolphin-emu.org/issues/8733 - const auto it = - std::remove_if(partitions.begin(), partitions.end(), [&](const Partition& partition) { - return volume.ReadSwapped(0x18, partition) != WII_DISC_MAGIC; - }); - partitions.erase(it, partitions.end()); + std::erase_if(partitions, [&](const Partition& partition) { + return volume.ReadSwapped(0x18, partition) != WII_DISC_MAGIC; + }); if (partitions.empty()) partitions.push_back(PARTITION_NONE); diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 97c596b969..f1d69613a3 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -803,15 +803,11 @@ bool GameList::AddShortcutToDesktop() std::string game_name = game->GetName(Core::TitleDatabase()); // Sanitize the string by removing all characters that cannot be used in NTFS file names - game_name.erase(std::remove_if(game_name.begin(), game_name.end(), - [](char ch) { - static constexpr char illegal_characters[] = { - '<', '>', ':', '\"', '/', '\\', '|', '?', '*'}; - return std::find(std::begin(illegal_characters), - std::end(illegal_characters), - ch) != std::end(illegal_characters); - }), - game_name.end()); + std::erase_if(game_name, [](char ch) { + static constexpr char illegal_characters[] = {'<', '>', ':', '\"', '/', '\\', '|', '?', '*'}; + return std::find(std::begin(illegal_characters), std::end(illegal_characters), ch) != + std::end(illegal_characters); + }); std::wstring desktop_path = std::wstring(desktop.get()) + UTF8ToTStr("\\" + game_name + ".lnk"); auto persist_file = shell_link.try_query(); diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index ab266292bc..769e6c5f0e 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -308,7 +308,7 @@ void ControllerInterface::RemoveDevice(std::functionGetQualifiedName()); @@ -316,9 +316,7 @@ void ControllerInterface::RemoveDevice(std::function Date: Sun, 21 Jul 2024 17:45:32 +0200 Subject: [PATCH 199/296] Change OperandDesc variables to not be underscore-prefixed in order to comply with https://eel.is/c++draft/lex.name#3.1 (fixes compilation under newlib; e.g. devkitPro) --- .../Core/Common/Assembler/AssemblerTables.cpp | 513 +++++++++--------- 1 file changed, 259 insertions(+), 254 deletions(-) diff --git a/Source/Core/Common/Assembler/AssemblerTables.cpp b/Source/Core/Common/Assembler/AssemblerTables.cpp index ba6c8ad5d4..f9869d3ad3 100644 --- a/Source/Core/Common/Assembler/AssemblerTables.cpp +++ b/Source/Core/Common/Assembler/AssemblerTables.cpp @@ -42,40 +42,40 @@ constexpr ExtendedMnemonicDesc INVALID_EXT_MNEMONIC = {0, nullptr}; // All operands as referenced by the Gekko/Broadway user manual // See section 12.1.2 under Chapter 12 -constexpr OperandDesc _A = OperandDesc{Mask(11, 15), {16, false}}; -constexpr OperandDesc _B = OperandDesc{Mask(16, 20), {11, false}}; -constexpr OperandDesc _BD = OperandDesc{Mask(16, 29), {0, true}}; -constexpr OperandDesc _BI = OperandDesc{Mask(11, 15), {16, false}}; -constexpr OperandDesc _BO = OperandDesc{Mask(6, 10), {21, false}}; -constexpr OperandDesc _C = OperandDesc{Mask(21, 25), {6, false}}; -constexpr OperandDesc _Crba = OperandDesc{Mask(11, 15), {16, false}}; -constexpr OperandDesc _Crbb = OperandDesc{Mask(16, 20), {11, false}}; -constexpr OperandDesc _Crbd = OperandDesc{Mask(6, 10), {21, false}}; -constexpr OperandDesc _Crfd = OperandDesc{Mask(6, 8), {23, false}}; -constexpr OperandDesc _Crfs = OperandDesc{Mask(11, 13), {18, false}}; -constexpr OperandDesc _CRM = OperandDesc{Mask(12, 19), {12, false}}; -constexpr OperandDesc _D = OperandDesc{Mask(6, 10), {21, false}}; -constexpr OperandDesc _FM = OperandDesc{Mask(7, 14), {17, false}}; -constexpr OperandDesc _W1 = OperandDesc{Mask(16, 16), {15, false}}; -constexpr OperandDesc _W2 = OperandDesc{Mask(21, 21), {10, false}}; -constexpr OperandDesc _IMM = OperandDesc{Mask(16, 19), {12, false}}; -constexpr OperandDesc _L = OperandDesc{Mask(10, 10), {21, false}}; -constexpr OperandDesc _LI = OperandDesc{Mask(6, 29), {0, true}}; -constexpr OperandDesc _MB = OperandDesc{Mask(21, 25), {6, false}}; -constexpr OperandDesc _ME = OperandDesc{Mask(26, 30), {1, false}}; -constexpr OperandDesc _NB = OperandDesc{Mask(16, 20), {11, false}}; -constexpr OperandDesc _Offd = OperandDesc{Mask(16, 31), {0, true}}; -constexpr OperandDesc _OffdPs = OperandDesc{Mask(20, 31), {0, true}}; -constexpr OperandDesc _S = OperandDesc{Mask(6, 10), {21, false}}; -constexpr OperandDesc _SH = OperandDesc{Mask(16, 20), {11, false}}; -constexpr OperandDesc _SIMM = OperandDesc{Mask(16, 31), {0, true}}; -constexpr OperandDesc _SPR = OperandDesc{Mask(11, 20), {11, false}}; -constexpr OperandDesc _SR = OperandDesc{Mask(12, 15), {16, false}}; -constexpr OperandDesc _TO = OperandDesc{Mask(6, 10), {21, false}}; -constexpr OperandDesc _TPR = OperandDesc{Mask(11, 20), {11, false}}; -constexpr OperandDesc _UIMM = OperandDesc{Mask(16, 31), {0, false}}; -constexpr OperandDesc _I1 = OperandDesc{Mask(17, 19), {12, false}}; -constexpr OperandDesc _I2 = OperandDesc{Mask(22, 24), {7, false}}; +constexpr OperandDesc OpDesc_A = OperandDesc{Mask(11, 15), {16, false}}; +constexpr OperandDesc OpDesc_B = OperandDesc{Mask(16, 20), {11, false}}; +constexpr OperandDesc OpDesc_BD = OperandDesc{Mask(16, 29), {0, true}}; +constexpr OperandDesc OpDesc_BI = OperandDesc{Mask(11, 15), {16, false}}; +constexpr OperandDesc OpDesc_BO = OperandDesc{Mask(6, 10), {21, false}}; +constexpr OperandDesc OpDesc_C = OperandDesc{Mask(21, 25), {6, false}}; +constexpr OperandDesc OpDesc_Crba = OperandDesc{Mask(11, 15), {16, false}}; +constexpr OperandDesc OpDesc_Crbb = OperandDesc{Mask(16, 20), {11, false}}; +constexpr OperandDesc OpDesc_Crbd = OperandDesc{Mask(6, 10), {21, false}}; +constexpr OperandDesc OpDesc_Crfd = OperandDesc{Mask(6, 8), {23, false}}; +constexpr OperandDesc OpDesc_Crfs = OperandDesc{Mask(11, 13), {18, false}}; +constexpr OperandDesc OpDesc_CRM = OperandDesc{Mask(12, 19), {12, false}}; +constexpr OperandDesc OpDesc_D = OperandDesc{Mask(6, 10), {21, false}}; +constexpr OperandDesc OpDesc_FM = OperandDesc{Mask(7, 14), {17, false}}; +constexpr OperandDesc OpDesc_W1 = OperandDesc{Mask(16, 16), {15, false}}; +constexpr OperandDesc OpDesc_W2 = OperandDesc{Mask(21, 21), {10, false}}; +constexpr OperandDesc OpDesc_IMM = OperandDesc{Mask(16, 19), {12, false}}; +constexpr OperandDesc OpDesc_L = OperandDesc{Mask(10, 10), {21, false}}; +constexpr OperandDesc OpDesc_LI = OperandDesc{Mask(6, 29), {0, true}}; +constexpr OperandDesc OpDesc_MB = OperandDesc{Mask(21, 25), {6, false}}; +constexpr OperandDesc OpDesc_ME = OperandDesc{Mask(26, 30), {1, false}}; +constexpr OperandDesc OpDesc_NB = OperandDesc{Mask(16, 20), {11, false}}; +constexpr OperandDesc OpDesc_Offd = OperandDesc{Mask(16, 31), {0, true}}; +constexpr OperandDesc OpDesc_OffdPs = OperandDesc{Mask(20, 31), {0, true}}; +constexpr OperandDesc OpDesc_S = OperandDesc{Mask(6, 10), {21, false}}; +constexpr OperandDesc OpDesc_SH = OperandDesc{Mask(16, 20), {11, false}}; +constexpr OperandDesc OpDesc_SIMM = OperandDesc{Mask(16, 31), {0, true}}; +constexpr OperandDesc OpDesc_SPR = OperandDesc{Mask(11, 20), {11, false}}; +constexpr OperandDesc OpDesc_SR = OperandDesc{Mask(12, 15), {16, false}}; +constexpr OperandDesc OpDesc_TO = OperandDesc{Mask(6, 10), {21, false}}; +constexpr OperandDesc OpDesc_TPR = OperandDesc{Mask(11, 20), {11, false}}; +constexpr OperandDesc OpDesc_UIMM = OperandDesc{Mask(16, 31), {0, false}}; +constexpr OperandDesc OpDesc_I1 = OperandDesc{Mask(17, 19), {12, false}}; +constexpr OperandDesc OpDesc_I2 = OperandDesc{Mask(22, 24), {7, false}}; } // namespace void OperandList::Insert(size_t before, u32 val) @@ -675,288 +675,293 @@ extern const CaseInsensitiveDict extended_mnemoni // Defines all basic mnemonics that Broadway/Gekko supports extern const std::array mnemonics = { // A-2 - OERC_MNEMONIC(31, InsertVal(266, 22, 30), _D, _A, _B), // add - OERC_MNEMONIC(31, InsertVal(10, 22, 30), _D, _A, _B), // addc - OERC_MNEMONIC(31, InsertVal(138, 22, 30), _D, _A, _B), // adde - BASIC_MNEMONIC(14, _D, _A, _SIMM), // addi - BASIC_MNEMONIC(12, _D, _A, _SIMM), // addic - BASIC_MNEMONIC(13, _D, _A, _SIMM), // addic. - BASIC_MNEMONIC(15, _D, _A, _SIMM), // addis - OERC_MNEMONIC(31, InsertVal(234, 22, 30), _D, _A), // addme - OERC_MNEMONIC(31, InsertVal(202, 22, 30), _D, _A), // addze - OERC_MNEMONIC(31, InsertVal(491, 22, 30), _D, _A, _B), // divw - OERC_MNEMONIC(31, InsertVal(459, 22, 30), _D, _A, _B), // divwu - RC_MNEMONIC(31, InsertVal(75, 22, 30), _D, _A, _B), // mulhw - RC_MNEMONIC(31, InsertVal(11, 22, 30), _D, _A, _B), // mulhwu - BASIC_MNEMONIC(7, _D, _A, _SIMM), // mulli - OERC_MNEMONIC(31, InsertVal(235, 22, 30), _D, _A, _B), // mullw - OERC_MNEMONIC(31, InsertVal(104, 22, 30), _D, _A), // neg - OERC_MNEMONIC(31, InsertVal(40, 22, 30), _D, _A, _B), // subf - OERC_MNEMONIC(31, InsertVal(8, 22, 30), _D, _A, _B), // subfc - OERC_MNEMONIC(31, InsertVal(136, 22, 30), _D, _A, _B), // subfe - BASIC_MNEMONIC(8, _D, _A, _SIMM), // subfic - OERC_MNEMONIC(31, InsertVal(232, 22, 30), _D, _A), // subfme - OERC_MNEMONIC(31, InsertVal(200, 22, 30), _D, _A), // subfze + OERC_MNEMONIC(31, InsertVal(266, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // add + OERC_MNEMONIC(31, InsertVal(10, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // addc + OERC_MNEMONIC(31, InsertVal(138, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // adde + BASIC_MNEMONIC(14, OpDesc_D, OpDesc_A, OpDesc_SIMM), // addi + BASIC_MNEMONIC(12, OpDesc_D, OpDesc_A, OpDesc_SIMM), // addic + BASIC_MNEMONIC(13, OpDesc_D, OpDesc_A, OpDesc_SIMM), // addic. + BASIC_MNEMONIC(15, OpDesc_D, OpDesc_A, OpDesc_SIMM), // addis + OERC_MNEMONIC(31, InsertVal(234, 22, 30), OpDesc_D, OpDesc_A), // addme + OERC_MNEMONIC(31, InsertVal(202, 22, 30), OpDesc_D, OpDesc_A), // addze + OERC_MNEMONIC(31, InsertVal(491, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // divw + OERC_MNEMONIC(31, InsertVal(459, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // divwu + RC_MNEMONIC(31, InsertVal(75, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // mulhw + RC_MNEMONIC(31, InsertVal(11, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // mulhwu + BASIC_MNEMONIC(7, OpDesc_D, OpDesc_A, OpDesc_SIMM), // mulli + OERC_MNEMONIC(31, InsertVal(235, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // mullw + OERC_MNEMONIC(31, InsertVal(104, 22, 30), OpDesc_D, OpDesc_A), // neg + OERC_MNEMONIC(31, InsertVal(40, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // subf + OERC_MNEMONIC(31, InsertVal(8, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // subfc + OERC_MNEMONIC(31, InsertVal(136, 22, 30), OpDesc_D, OpDesc_A, OpDesc_B), // subfe + BASIC_MNEMONIC(8, OpDesc_D, OpDesc_A, OpDesc_SIMM), // subfic + OERC_MNEMONIC(31, InsertVal(232, 22, 30), OpDesc_D, OpDesc_A), // subfme + OERC_MNEMONIC(31, InsertVal(200, 22, 30), OpDesc_D, OpDesc_A), // subfze // A-3 - MNEMONIC(31, InsertVal(0, 21, 30), _Crfd, _L, _A, _B), // cmp - BASIC_MNEMONIC(11, _Crfd, _L, _A, _SIMM), // cmpi - MNEMONIC(31, InsertVal(32, 21, 30), _Crfd, _L, _A, _B), // cmpl - BASIC_MNEMONIC(10, _Crfd, _L, _A, _UIMM), // cmpli + MNEMONIC(31, InsertVal(0, 21, 30), OpDesc_Crfd, OpDesc_L, OpDesc_A, OpDesc_B), // cmp + BASIC_MNEMONIC(11, OpDesc_Crfd, OpDesc_L, OpDesc_A, OpDesc_SIMM), // cmpi + MNEMONIC(31, InsertVal(32, 21, 30), OpDesc_Crfd, OpDesc_L, OpDesc_A, OpDesc_B), // cmpl + BASIC_MNEMONIC(10, OpDesc_Crfd, OpDesc_L, OpDesc_A, OpDesc_UIMM), // cmpli // A-4 - RC_MNEMONIC(31, InsertVal(28, 21, 30), _A, _S, _B), // and - RC_MNEMONIC(31, InsertVal(60, 21, 30), _A, _S, _B), // andc - BASIC_MNEMONIC(28, _A, _S, _UIMM), // andi. - BASIC_MNEMONIC(29, _A, _S, _UIMM), // andis. - RC_MNEMONIC(31, InsertVal(26, 21, 30), _A, _S), // cntlzw - RC_MNEMONIC(31, InsertVal(284, 21, 30), _A, _S, _B), // eqv - RC_MNEMONIC(31, InsertVal(954, 21, 30), _A, _S), // extsb - RC_MNEMONIC(31, InsertVal(922, 21, 30), _A, _S), // extsh - RC_MNEMONIC(31, InsertVal(476, 21, 30), _A, _S, _B), // nand - RC_MNEMONIC(31, InsertVal(124, 21, 30), _A, _S, _B), // nor - RC_MNEMONIC(31, InsertVal(444, 21, 30), _A, _S, _B), // or - RC_MNEMONIC(31, InsertVal(412, 21, 30), _A, _S, _B), // orc - BASIC_MNEMONIC(24, _A, _S, _UIMM), // ori - BASIC_MNEMONIC(25, _A, _S, _UIMM), // oris - RC_MNEMONIC(31, InsertVal(316, 21, 30), _A, _S, _B), // xor - BASIC_MNEMONIC(26, _A, _S, _UIMM), // xori - BASIC_MNEMONIC(27, _A, _S, _UIMM), // xoris + RC_MNEMONIC(31, InsertVal(28, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // and + RC_MNEMONIC(31, InsertVal(60, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // andc + BASIC_MNEMONIC(28, OpDesc_A, OpDesc_S, OpDesc_UIMM), // andi. + BASIC_MNEMONIC(29, OpDesc_A, OpDesc_S, OpDesc_UIMM), // andis. + RC_MNEMONIC(31, InsertVal(26, 21, 30), OpDesc_A, OpDesc_S), // cntlzw + RC_MNEMONIC(31, InsertVal(284, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // eqv + RC_MNEMONIC(31, InsertVal(954, 21, 30), OpDesc_A, OpDesc_S), // extsb + RC_MNEMONIC(31, InsertVal(922, 21, 30), OpDesc_A, OpDesc_S), // extsh + RC_MNEMONIC(31, InsertVal(476, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // nand + RC_MNEMONIC(31, InsertVal(124, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // nor + RC_MNEMONIC(31, InsertVal(444, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // or + RC_MNEMONIC(31, InsertVal(412, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // orc + BASIC_MNEMONIC(24, OpDesc_A, OpDesc_S, OpDesc_UIMM), // ori + BASIC_MNEMONIC(25, OpDesc_A, OpDesc_S, OpDesc_UIMM), // oris + RC_MNEMONIC(31, InsertVal(316, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // xor + BASIC_MNEMONIC(26, OpDesc_A, OpDesc_S, OpDesc_UIMM), // xori + BASIC_MNEMONIC(27, OpDesc_A, OpDesc_S, OpDesc_UIMM), // xoris // A-5 - RC_MNEMONIC(20, 0, _A, _S, _SH, _MB, _ME), // rlwimi - RC_MNEMONIC(21, 0, _A, _S, _SH, _MB, _ME), // rlwinm - RC_MNEMONIC(23, 0, _A, _S, _B, _MB, _ME), // rlwnm + RC_MNEMONIC(20, 0, OpDesc_A, OpDesc_S, OpDesc_SH, OpDesc_MB, OpDesc_ME), // rlwimi + RC_MNEMONIC(21, 0, OpDesc_A, OpDesc_S, OpDesc_SH, OpDesc_MB, OpDesc_ME), // rlwinm + RC_MNEMONIC(23, 0, OpDesc_A, OpDesc_S, OpDesc_B, OpDesc_MB, OpDesc_ME), // rlwnm // A-6 - RC_MNEMONIC(31, InsertVal(24, 21, 30), _A, _S, _B), // slw - RC_MNEMONIC(31, InsertVal(792, 21, 30), _A, _S, _B), // sraw - RC_MNEMONIC(31, InsertVal(824, 21, 30), _A, _S, _SH), // srawi - RC_MNEMONIC(31, InsertVal(536, 21, 30), _A, _S, _B), // srw + RC_MNEMONIC(31, InsertVal(24, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // slw + RC_MNEMONIC(31, InsertVal(792, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // sraw + RC_MNEMONIC(31, InsertVal(824, 21, 30), OpDesc_A, OpDesc_S, OpDesc_SH), // srawi + RC_MNEMONIC(31, InsertVal(536, 21, 30), OpDesc_A, OpDesc_S, OpDesc_B), // srw // A-7 - RC_MNEMONIC(63, InsertVal(21, 26, 30), _D, _A, _B), // fadd - RC_MNEMONIC(59, InsertVal(21, 26, 30), _D, _A, _B), // fadds - RC_MNEMONIC(63, InsertVal(18, 26, 30), _D, _A, _B), // fdiv - RC_MNEMONIC(59, InsertVal(18, 26, 30), _D, _A, _B), // fdivs - RC_MNEMONIC(63, InsertVal(25, 26, 30), _D, _A, _C), // fmul - RC_MNEMONIC(59, InsertVal(25, 26, 30), _D, _A, _C), // fmuls - RC_MNEMONIC(59, InsertVal(24, 26, 30), _D, _B), // fres - RC_MNEMONIC(63, InsertVal(26, 26, 30), _D, _B), // frsqrte - RC_MNEMONIC(63, InsertVal(20, 26, 30), _D, _A, _B), // fsub - RC_MNEMONIC(59, InsertVal(20, 26, 30), _D, _A, _B), // fsubs - RC_MNEMONIC(63, InsertVal(23, 26, 30), _D, _A, _C, _B), // fsel + RC_MNEMONIC(63, InsertVal(21, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // fadd + RC_MNEMONIC(59, InsertVal(21, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // fadds + RC_MNEMONIC(63, InsertVal(18, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // fdiv + RC_MNEMONIC(59, InsertVal(18, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // fdivs + RC_MNEMONIC(63, InsertVal(25, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C), // fmul + RC_MNEMONIC(59, InsertVal(25, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C), // fmuls + RC_MNEMONIC(59, InsertVal(24, 26, 30), OpDesc_D, OpDesc_B), // fres + RC_MNEMONIC(63, InsertVal(26, 26, 30), OpDesc_D, OpDesc_B), // frsqrte + RC_MNEMONIC(63, InsertVal(20, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // fsub + RC_MNEMONIC(59, InsertVal(20, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // fsubs + RC_MNEMONIC(63, InsertVal(23, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fsel // A-8 - RC_MNEMONIC(63, InsertVal(29, 26, 30), _D, _A, _C, _B), // fmadd - RC_MNEMONIC(59, InsertVal(29, 26, 30), _D, _A, _C, _B), // fmadds - RC_MNEMONIC(63, InsertVal(28, 26, 30), _D, _A, _C, _B), // fmsub - RC_MNEMONIC(59, InsertVal(28, 26, 30), _D, _A, _C, _B), // fmsubs - RC_MNEMONIC(63, InsertVal(31, 26, 30), _D, _A, _C, _B), // fnmadd - RC_MNEMONIC(59, InsertVal(31, 26, 30), _D, _A, _C, _B), // fnmadds - RC_MNEMONIC(63, InsertVal(30, 26, 30), _D, _A, _C, _B), // fnmsub - RC_MNEMONIC(59, InsertVal(30, 26, 30), _D, _A, _C, _B), // fnmsubs + RC_MNEMONIC(63, InsertVal(29, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fmadd + RC_MNEMONIC(59, InsertVal(29, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fmadds + RC_MNEMONIC(63, InsertVal(28, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fmsub + RC_MNEMONIC(59, InsertVal(28, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fmsubs + RC_MNEMONIC(63, InsertVal(31, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fnmadd + RC_MNEMONIC(59, InsertVal(31, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fnmadds + RC_MNEMONIC(63, InsertVal(30, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fnmsub + RC_MNEMONIC(59, InsertVal(30, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // fnmsubs // A-9 - RC_MNEMONIC(63, InsertVal(14, 21, 30), _D, _B), // fctiw - RC_MNEMONIC(63, InsertVal(15, 21, 30), _D, _B), // fctiwz - RC_MNEMONIC(63, InsertVal(12, 21, 30), _D, _B), // frsp + RC_MNEMONIC(63, InsertVal(14, 21, 30), OpDesc_D, OpDesc_B), // fctiw + RC_MNEMONIC(63, InsertVal(15, 21, 30), OpDesc_D, OpDesc_B), // fctiwz + RC_MNEMONIC(63, InsertVal(12, 21, 30), OpDesc_D, OpDesc_B), // frsp // A-10 - MNEMONIC(63, InsertVal(32, 21, 30), _Crfd, _A, _B), // fcmpo - MNEMONIC(63, InsertVal(0, 21, 30), _Crfd, _A, _B), // fcmpu + MNEMONIC(63, InsertVal(32, 21, 30), OpDesc_Crfd, OpDesc_A, OpDesc_B), // fcmpo + MNEMONIC(63, InsertVal(0, 21, 30), OpDesc_Crfd, OpDesc_A, OpDesc_B), // fcmpu // A-11 - MNEMONIC(63, InsertVal(64, 21, 30), _Crfd, _Crfs), // mcrfs - RC_MNEMONIC(63, InsertVal(583, 21, 30), _D), // mffs - RC_MNEMONIC(63, InsertVal(70, 21, 30), _Crbd), // mtfsb0 - RC_MNEMONIC(63, InsertVal(38, 21, 30), _Crbd), // mtfsb1 - RC_MNEMONIC(63, InsertVal(711, 21, 30), _FM, _B), // mtfsf - RC_MNEMONIC(63, InsertVal(134, 21, 30), _Crfd, _IMM), // mtfsfi + MNEMONIC(63, InsertVal(64, 21, 30), OpDesc_Crfd, OpDesc_Crfs), // mcrfs + RC_MNEMONIC(63, InsertVal(583, 21, 30), OpDesc_D), // mffs + RC_MNEMONIC(63, InsertVal(70, 21, 30), OpDesc_Crbd), // mtfsb0 + RC_MNEMONIC(63, InsertVal(38, 21, 30), OpDesc_Crbd), // mtfsb1 + RC_MNEMONIC(63, InsertVal(711, 21, 30), OpDesc_FM, OpDesc_B), // mtfsf + RC_MNEMONIC(63, InsertVal(134, 21, 30), OpDesc_Crfd, OpDesc_IMM), // mtfsfi // A-12 - BASIC_MNEMONIC(34, _D, _Offd, _A), // lbz - BASIC_MNEMONIC(35, _D, _Offd, _A), // lbzu - MNEMONIC(31, InsertVal(119, 21, 30), _D, _A, _B), // lbzux - MNEMONIC(31, InsertVal(87, 21, 30), _D, _A, _B), // lbzx - BASIC_MNEMONIC(42, _D, _Offd, _A), // lha - BASIC_MNEMONIC(43, _D, _Offd, _A), // lhau - MNEMONIC(31, InsertVal(375, 21, 30), _D, _A, _B), // lhaux - MNEMONIC(31, InsertVal(343, 21, 30), _D, _A, _B), // lhax - BASIC_MNEMONIC(40, _D, _Offd, _A), // lhz - BASIC_MNEMONIC(41, _D, _Offd, _A), // lhzu - MNEMONIC(31, InsertVal(311, 21, 30), _D, _A, _B), // lhzux - MNEMONIC(31, InsertVal(279, 21, 30), _D, _A, _B), // lhzx - BASIC_MNEMONIC(32, _D, _Offd, _A), // lwz - BASIC_MNEMONIC(33, _D, _Offd, _A), // lwzu - MNEMONIC(31, InsertVal(55, 21, 30), _D, _A, _B), // lwzux - MNEMONIC(31, InsertVal(23, 21, 30), _D, _A, _B), // lwzx + BASIC_MNEMONIC(34, OpDesc_D, OpDesc_Offd, OpDesc_A), // lbz + BASIC_MNEMONIC(35, OpDesc_D, OpDesc_Offd, OpDesc_A), // lbzu + MNEMONIC(31, InsertVal(119, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lbzux + MNEMONIC(31, InsertVal(87, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lbzx + BASIC_MNEMONIC(42, OpDesc_D, OpDesc_Offd, OpDesc_A), // lha + BASIC_MNEMONIC(43, OpDesc_D, OpDesc_Offd, OpDesc_A), // lhau + MNEMONIC(31, InsertVal(375, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lhaux + MNEMONIC(31, InsertVal(343, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lhax + BASIC_MNEMONIC(40, OpDesc_D, OpDesc_Offd, OpDesc_A), // lhz + BASIC_MNEMONIC(41, OpDesc_D, OpDesc_Offd, OpDesc_A), // lhzu + MNEMONIC(31, InsertVal(311, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lhzux + MNEMONIC(31, InsertVal(279, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lhzx + BASIC_MNEMONIC(32, OpDesc_D, OpDesc_Offd, OpDesc_A), // lwz + BASIC_MNEMONIC(33, OpDesc_D, OpDesc_Offd, OpDesc_A), // lwzu + MNEMONIC(31, InsertVal(55, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lwzux + MNEMONIC(31, InsertVal(23, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lwzx // A-13 - BASIC_MNEMONIC(38, _S, _Offd, _A), // stb - BASIC_MNEMONIC(39, _S, _Offd, _A), // stbu - MNEMONIC(31, InsertVal(247, 21, 30), _S, _A, _B), // stbux - MNEMONIC(31, InsertVal(215, 21, 30), _S, _A, _B), // stbx - BASIC_MNEMONIC(44, _S, _Offd, _A), // sth - BASIC_MNEMONIC(45, _S, _Offd, _A), // sthu - MNEMONIC(31, InsertVal(439, 21, 30), _S, _A, _B), // sthux - MNEMONIC(31, InsertVal(407, 21, 30), _S, _A, _B), // sthx - BASIC_MNEMONIC(36, _S, _Offd, _A), // stw - BASIC_MNEMONIC(37, _S, _Offd, _A), // stwu - MNEMONIC(31, InsertVal(183, 21, 30), _S, _A, _B), // stwux - MNEMONIC(31, InsertVal(151, 21, 30), _S, _A, _B), // stwx + BASIC_MNEMONIC(38, OpDesc_S, OpDesc_Offd, OpDesc_A), // stb + BASIC_MNEMONIC(39, OpDesc_S, OpDesc_Offd, OpDesc_A), // stbu + MNEMONIC(31, InsertVal(247, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stbux + MNEMONIC(31, InsertVal(215, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stbx + BASIC_MNEMONIC(44, OpDesc_S, OpDesc_Offd, OpDesc_A), // sth + BASIC_MNEMONIC(45, OpDesc_S, OpDesc_Offd, OpDesc_A), // sthu + MNEMONIC(31, InsertVal(439, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // sthux + MNEMONIC(31, InsertVal(407, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // sthx + BASIC_MNEMONIC(36, OpDesc_S, OpDesc_Offd, OpDesc_A), // stw + BASIC_MNEMONIC(37, OpDesc_S, OpDesc_Offd, OpDesc_A), // stwu + MNEMONIC(31, InsertVal(183, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stwux + MNEMONIC(31, InsertVal(151, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stwx // A-14 - MNEMONIC(31, InsertVal(790, 21, 30), _D, _A, _B), // lhbrx - MNEMONIC(31, InsertVal(534, 21, 30), _D, _A, _B), // lwbrx - MNEMONIC(31, InsertVal(918, 21, 30), _S, _A, _B), // sthbrx - MNEMONIC(31, InsertVal(662, 21, 30), _S, _A, _B), // stwbrx + MNEMONIC(31, InsertVal(790, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lhbrx + MNEMONIC(31, InsertVal(534, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lwbrx + MNEMONIC(31, InsertVal(918, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // sthbrx + MNEMONIC(31, InsertVal(662, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stwbrx // A-15 - BASIC_MNEMONIC(46, _D, _Offd, _A), // lmw - BASIC_MNEMONIC(47, _S, _Offd, _A), // stmw + BASIC_MNEMONIC(46, OpDesc_D, OpDesc_Offd, OpDesc_A), // lmw + BASIC_MNEMONIC(47, OpDesc_S, OpDesc_Offd, OpDesc_A), // stmw // A-16 - MNEMONIC(31, InsertVal(597, 21, 30), _D, _A, _NB), // lswi - MNEMONIC(31, InsertVal(533, 21, 30), _D, _A, _B), // lswx - MNEMONIC(31, InsertVal(725, 21, 30), _S, _A, _NB), // stswi - MNEMONIC(31, InsertVal(661, 21, 30), _S, _A, _B), // stswx + MNEMONIC(31, InsertVal(597, 21, 30), OpDesc_D, OpDesc_A, OpDesc_NB), // lswi + MNEMONIC(31, InsertVal(533, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lswx + MNEMONIC(31, InsertVal(725, 21, 30), OpDesc_S, OpDesc_A, OpDesc_NB), // stswi + MNEMONIC(31, InsertVal(661, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stswx // A-17 - MNEMONIC(31, InsertVal(854, 21, 30)), // eieio - MNEMONIC(19, InsertVal(150, 21, 30)), // isync - MNEMONIC(31, InsertVal(20, 21, 30), _D, _A, _B), // lwarx - MNEMONIC(31, InsertVal(150, 21, 30) | InsertVal(1, 31, 31), _S, _A, _B), // stwcx. - MNEMONIC(31, InsertVal(598, 21, 30)), // sync + MNEMONIC(31, InsertVal(854, 21, 30)), // eieio + MNEMONIC(19, InsertVal(150, 21, 30)), // isync + MNEMONIC(31, InsertVal(20, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lwarx + MNEMONIC(31, InsertVal(150, 21, 30) | InsertVal(1, 31, 31), OpDesc_S, OpDesc_A, + OpDesc_B), // stwcx. + MNEMONIC(31, InsertVal(598, 21, 30)), // sync // A-18 - BASIC_MNEMONIC(50, _D, _Offd, _A), // lfd - BASIC_MNEMONIC(51, _D, _Offd, _A), // lfdu - MNEMONIC(31, InsertVal(631, 21, 30), _D, _A, _B), // lfdux - MNEMONIC(31, InsertVal(599, 21, 30), _D, _A, _B), // lfdx - BASIC_MNEMONIC(48, _D, _Offd, _A), // lfs - BASIC_MNEMONIC(49, _D, _Offd, _A), // lfsu - MNEMONIC(31, InsertVal(567, 21, 30), _D, _A, _B), // lfsux - MNEMONIC(31, InsertVal(535, 21, 30), _D, _A, _B), // lfsx + BASIC_MNEMONIC(50, OpDesc_D, OpDesc_Offd, OpDesc_A), // lfd + BASIC_MNEMONIC(51, OpDesc_D, OpDesc_Offd, OpDesc_A), // lfdu + MNEMONIC(31, InsertVal(631, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lfdux + MNEMONIC(31, InsertVal(599, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lfdx + BASIC_MNEMONIC(48, OpDesc_D, OpDesc_Offd, OpDesc_A), // lfs + BASIC_MNEMONIC(49, OpDesc_D, OpDesc_Offd, OpDesc_A), // lfsu + MNEMONIC(31, InsertVal(567, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lfsux + MNEMONIC(31, InsertVal(535, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // lfsx // A-19 - BASIC_MNEMONIC(54, _S, _Offd, _A), // stfd - BASIC_MNEMONIC(55, _S, _Offd, _A), // stfdu - MNEMONIC(31, InsertVal(759, 21, 30), _S, _A, _B), // stfdux - MNEMONIC(31, InsertVal(727, 21, 30), _S, _A, _B), // stfdx - MNEMONIC(31, InsertVal(983, 21, 30), _S, _A, _B), // stfiwx - BASIC_MNEMONIC(52, _S, _Offd, _A), // stfs - BASIC_MNEMONIC(53, _S, _Offd, _A), // stfsu - MNEMONIC(31, InsertVal(695, 21, 30), _S, _A, _B), // stfsux - MNEMONIC(31, InsertVal(663, 21, 30), _S, _A, _B), // stfsx + BASIC_MNEMONIC(54, OpDesc_S, OpDesc_Offd, OpDesc_A), // stfd + BASIC_MNEMONIC(55, OpDesc_S, OpDesc_Offd, OpDesc_A), // stfdu + MNEMONIC(31, InsertVal(759, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stfdux + MNEMONIC(31, InsertVal(727, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stfdx + MNEMONIC(31, InsertVal(983, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stfiwx + BASIC_MNEMONIC(52, OpDesc_S, OpDesc_Offd, OpDesc_A), // stfs + BASIC_MNEMONIC(53, OpDesc_S, OpDesc_Offd, OpDesc_A), // stfsu + MNEMONIC(31, InsertVal(695, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stfsux + MNEMONIC(31, InsertVal(663, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // stfsx // A-20 - RC_MNEMONIC(63, InsertVal(264, 21, 30), _D, _B), // fabs - RC_MNEMONIC(63, InsertVal(72, 21, 30), _D, _B), // fmr - RC_MNEMONIC(63, InsertVal(136, 21, 30), _D, _B), // fnabs - RC_MNEMONIC(63, InsertVal(40, 21, 30), _D, _B), // fneg + RC_MNEMONIC(63, InsertVal(264, 21, 30), OpDesc_D, OpDesc_B), // fabs + RC_MNEMONIC(63, InsertVal(72, 21, 30), OpDesc_D, OpDesc_B), // fmr + RC_MNEMONIC(63, InsertVal(136, 21, 30), OpDesc_D, OpDesc_B), // fnabs + RC_MNEMONIC(63, InsertVal(40, 21, 30), OpDesc_D, OpDesc_B), // fneg // A-21 - AALK_MNEMONIC(18, 0, _LI), // b - AALK_MNEMONIC(16, 0, _BO, _BI, _BD), // bc - LK_MNEMONIC(19, InsertVal(528, 21, 30), _BO, _BI), // bcctr - LK_MNEMONIC(19, InsertVal(16, 21, 30), _BO, _BI), // bclr + AALK_MNEMONIC(18, 0, OpDesc_LI), // b + AALK_MNEMONIC(16, 0, OpDesc_BO, OpDesc_BI, OpDesc_BD), // bc + LK_MNEMONIC(19, InsertVal(528, 21, 30), OpDesc_BO, OpDesc_BI), // bcctr + LK_MNEMONIC(19, InsertVal(16, 21, 30), OpDesc_BO, OpDesc_BI), // bclr // A-22 - MNEMONIC(19, InsertVal(257, 21, 30), _Crbd, _Crba, _Crbb), // crand - MNEMONIC(19, InsertVal(129, 21, 30), _Crbd, _Crba, _Crbb), // crandc - MNEMONIC(19, InsertVal(289, 21, 30), _Crbd, _Crba, _Crbb), // creqv - MNEMONIC(19, InsertVal(225, 21, 30), _Crbd, _Crba, _Crbb), // crnand - MNEMONIC(19, InsertVal(33, 21, 30), _Crbd, _Crba, _Crbb), // crnor - MNEMONIC(19, InsertVal(449, 21, 30), _Crbd, _Crba, _Crbb), // cror - MNEMONIC(19, InsertVal(417, 21, 30), _Crbd, _Crba, _Crbb), // crorc - MNEMONIC(19, InsertVal(193, 21, 30), _Crbd, _Crba, _Crbb), // crxor - MNEMONIC(19, InsertVal(0, 21, 30), _Crfd, _Crfs), // mcrf + MNEMONIC(19, InsertVal(257, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // crand + MNEMONIC(19, InsertVal(129, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // crandc + MNEMONIC(19, InsertVal(289, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // creqv + MNEMONIC(19, InsertVal(225, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // crnand + MNEMONIC(19, InsertVal(33, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // crnor + MNEMONIC(19, InsertVal(449, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // cror + MNEMONIC(19, InsertVal(417, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // crorc + MNEMONIC(19, InsertVal(193, 21, 30), OpDesc_Crbd, OpDesc_Crba, OpDesc_Crbb), // crxor + MNEMONIC(19, InsertVal(0, 21, 30), OpDesc_Crfd, OpDesc_Crfs), // mcrf // A-23 MNEMONIC(19, InsertVal(50, 21, 30)), // rfi MNEMONIC(17, InsertVal(1, 30, 30)), // sc // A-24 - MNEMONIC(31, InsertVal(4, 21, 30), _TO, _A, _B), // tw - BASIC_MNEMONIC(3, _TO, _A, _SIMM), // twi + MNEMONIC(31, InsertVal(4, 21, 30), OpDesc_TO, OpDesc_A, OpDesc_B), // tw + BASIC_MNEMONIC(3, OpDesc_TO, OpDesc_A, OpDesc_SIMM), // twi // A-25 - MNEMONIC(31, InsertVal(512, 21, 30), _Crfd), // mcrxr - MNEMONIC(31, InsertVal(19, 21, 30), _D), // mfcr - MNEMONIC(31, InsertVal(83, 21, 30), _D), // mfmsr - MNEMONIC(31, InsertVal(339, 21, 30), _D, _SPR), // mfspr - MNEMONIC(31, InsertVal(371, 21, 30), _D, _TPR), // mftb - MNEMONIC(31, InsertVal(144, 21, 30), _CRM, _S), // mtcrf - MNEMONIC(31, InsertVal(146, 21, 30), _S), // mtmsr - MNEMONIC(31, InsertVal(467, 21, 30), _SPR, _D), // mtspr + MNEMONIC(31, InsertVal(512, 21, 30), OpDesc_Crfd), // mcrxr + MNEMONIC(31, InsertVal(19, 21, 30), OpDesc_D), // mfcr + MNEMONIC(31, InsertVal(83, 21, 30), OpDesc_D), // mfmsr + MNEMONIC(31, InsertVal(339, 21, 30), OpDesc_D, OpDesc_SPR), // mfspr + MNEMONIC(31, InsertVal(371, 21, 30), OpDesc_D, OpDesc_TPR), // mftb + MNEMONIC(31, InsertVal(144, 21, 30), OpDesc_CRM, OpDesc_S), // mtcrf + MNEMONIC(31, InsertVal(146, 21, 30), OpDesc_S), // mtmsr + MNEMONIC(31, InsertVal(467, 21, 30), OpDesc_SPR, OpDesc_D), // mtspr // A-26 - MNEMONIC(31, InsertVal(86, 21, 30), _A, _B), // dcbf - MNEMONIC(31, InsertVal(470, 21, 30), _A, _B), // dcbi - MNEMONIC(31, InsertVal(54, 21, 30), _A, _B), // dcbst - MNEMONIC(31, InsertVal(278, 21, 30), _A, _B), // dcbt - MNEMONIC(31, InsertVal(246, 21, 30), _A, _B), // dcbtst - MNEMONIC(31, InsertVal(1014, 21, 30), _A, _B), // dcbz - MNEMONIC(31, InsertVal(982, 21, 30), _A, _B), // icbi + MNEMONIC(31, InsertVal(86, 21, 30), OpDesc_A, OpDesc_B), // dcbf + MNEMONIC(31, InsertVal(470, 21, 30), OpDesc_A, OpDesc_B), // dcbi + MNEMONIC(31, InsertVal(54, 21, 30), OpDesc_A, OpDesc_B), // dcbst + MNEMONIC(31, InsertVal(278, 21, 30), OpDesc_A, OpDesc_B), // dcbt + MNEMONIC(31, InsertVal(246, 21, 30), OpDesc_A, OpDesc_B), // dcbtst + MNEMONIC(31, InsertVal(1014, 21, 30), OpDesc_A, OpDesc_B), // dcbz + MNEMONIC(31, InsertVal(982, 21, 30), OpDesc_A, OpDesc_B), // icbi // A-27 - MNEMONIC(31, InsertVal(595, 21, 30), _D, _SR), // mfsr - MNEMONIC(31, InsertVal(659, 21, 30), _D, _B), // mfsrin - MNEMONIC(31, InsertVal(210, 21, 30), _SR, _S), // mtsr - MNEMONIC(31, InsertVal(242, 21, 30), _S, _B), // mtsrin + MNEMONIC(31, InsertVal(595, 21, 30), OpDesc_D, OpDesc_SR), // mfsr + MNEMONIC(31, InsertVal(659, 21, 30), OpDesc_D, OpDesc_B), // mfsrin + MNEMONIC(31, InsertVal(210, 21, 30), OpDesc_SR, OpDesc_S), // mtsr + MNEMONIC(31, InsertVal(242, 21, 30), OpDesc_S, OpDesc_B), // mtsrin // A-28 - MNEMONIC(31, InsertVal(306, 21, 30), _B), // tlbie - MNEMONIC(31, InsertVal(566, 21, 30)), // tlbsync + MNEMONIC(31, InsertVal(306, 21, 30), OpDesc_B), // tlbie + MNEMONIC(31, InsertVal(566, 21, 30)), // tlbsync // A-29 - MNEMONIC(31, InsertVal(310, 21, 30), _D, _A, _B), // eciwx - MNEMONIC(31, InsertVal(438, 21, 30), _S, _A, _B), // ecowx + MNEMONIC(31, InsertVal(310, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // eciwx + MNEMONIC(31, InsertVal(438, 21, 30), OpDesc_S, OpDesc_A, OpDesc_B), // ecowx // A-30 - MNEMONIC(4, InsertVal(6, 25, 30), _D, _A, _B, _W2, _I2), // psq_lx - MNEMONIC(4, InsertVal(7, 25, 30), _S, _A, _B, _W2, _I2), // psq_stx - MNEMONIC(4, InsertVal(38, 25, 30), _D, _A, _B, _W2, _I2), // psq_lux - MNEMONIC(4, InsertVal(39, 25, 30), _S, _A, _B, _W2, _I2), // psq_stux - BASIC_MNEMONIC(56, _D, _OffdPs, _A, _W1, _I1), // psq_l - BASIC_MNEMONIC(57, _D, _OffdPs, _A, _W1, _I1), // psq_lu - BASIC_MNEMONIC(60, _S, _OffdPs, _A, _W1, _I1), // psq_st - BASIC_MNEMONIC(61, _S, _OffdPs, _A, _W1, _I1), // psq_stu + MNEMONIC(4, InsertVal(6, 25, 30), OpDesc_D, OpDesc_A, OpDesc_B, OpDesc_W2, + OpDesc_I2), // psq_lx + MNEMONIC(4, InsertVal(7, 25, 30), OpDesc_S, OpDesc_A, OpDesc_B, OpDesc_W2, + OpDesc_I2), // psq_stx + MNEMONIC(4, InsertVal(38, 25, 30), OpDesc_D, OpDesc_A, OpDesc_B, OpDesc_W2, + OpDesc_I2), // psq_lux + MNEMONIC(4, InsertVal(39, 25, 30), OpDesc_S, OpDesc_A, OpDesc_B, OpDesc_W2, + OpDesc_I2), // psq_stux + BASIC_MNEMONIC(56, OpDesc_D, OpDesc_OffdPs, OpDesc_A, OpDesc_W1, OpDesc_I1), // psq_l + BASIC_MNEMONIC(57, OpDesc_D, OpDesc_OffdPs, OpDesc_A, OpDesc_W1, OpDesc_I1), // psq_lu + BASIC_MNEMONIC(60, OpDesc_S, OpDesc_OffdPs, OpDesc_A, OpDesc_W1, OpDesc_I1), // psq_st + BASIC_MNEMONIC(61, OpDesc_S, OpDesc_OffdPs, OpDesc_A, OpDesc_W1, OpDesc_I1), // psq_stu // A-31 - RC_MNEMONIC(4, InsertVal(18, 26, 30), _D, _A, _B), // ps_div - RC_MNEMONIC(4, InsertVal(20, 26, 30), _D, _A, _B), // ps_sub - RC_MNEMONIC(4, InsertVal(21, 26, 30), _D, _A, _B), // ps_add - RC_MNEMONIC(4, InsertVal(23, 26, 30), _D, _A, _C, _B), // ps_sel - RC_MNEMONIC(4, InsertVal(24, 26, 30), _D, _B), // ps_res - RC_MNEMONIC(4, InsertVal(25, 26, 30), _D, _A, _C), // ps_mul - RC_MNEMONIC(4, InsertVal(26, 26, 30), _D, _B), // ps_rsqrte - RC_MNEMONIC(4, InsertVal(28, 26, 30), _D, _A, _C, _B), // ps_msub - RC_MNEMONIC(4, InsertVal(29, 26, 30), _D, _A, _C, _B), // ps_madd - RC_MNEMONIC(4, InsertVal(30, 26, 30), _D, _A, _C, _B), // ps_nmsub - RC_MNEMONIC(4, InsertVal(31, 26, 30), _D, _A, _C, _B), // ps_nmadd - RC_MNEMONIC(4, InsertVal(40, 21, 30), _D, _B), // ps_neg - RC_MNEMONIC(4, InsertVal(72, 21, 30), _D, _B), // ps_mr - RC_MNEMONIC(4, InsertVal(136, 21, 30), _D, _B), // ps_nabs - RC_MNEMONIC(4, InsertVal(264, 21, 30), _D, _B), // ps_abs + RC_MNEMONIC(4, InsertVal(18, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_div + RC_MNEMONIC(4, InsertVal(20, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_sub + RC_MNEMONIC(4, InsertVal(21, 26, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_add + RC_MNEMONIC(4, InsertVal(23, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_sel + RC_MNEMONIC(4, InsertVal(24, 26, 30), OpDesc_D, OpDesc_B), // ps_res + RC_MNEMONIC(4, InsertVal(25, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C), // ps_mul + RC_MNEMONIC(4, InsertVal(26, 26, 30), OpDesc_D, OpDesc_B), // ps_rsqrte + RC_MNEMONIC(4, InsertVal(28, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_msub + RC_MNEMONIC(4, InsertVal(29, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_madd + RC_MNEMONIC(4, InsertVal(30, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_nmsub + RC_MNEMONIC(4, InsertVal(31, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_nmadd + RC_MNEMONIC(4, InsertVal(40, 21, 30), OpDesc_D, OpDesc_B), // ps_neg + RC_MNEMONIC(4, InsertVal(72, 21, 30), OpDesc_D, OpDesc_B), // ps_mr + RC_MNEMONIC(4, InsertVal(136, 21, 30), OpDesc_D, OpDesc_B), // ps_nabs + RC_MNEMONIC(4, InsertVal(264, 21, 30), OpDesc_D, OpDesc_B), // ps_abs // A-32 - RC_MNEMONIC(4, InsertVal(10, 26, 30), _D, _A, _C, _B), // ps_sum0 - RC_MNEMONIC(4, InsertVal(11, 26, 30), _D, _A, _C, _B), // ps_sum1 - RC_MNEMONIC(4, InsertVal(12, 26, 30), _D, _A, _C), // ps_muls0 - RC_MNEMONIC(4, InsertVal(13, 26, 30), _D, _A, _C), // ps_muls1 - RC_MNEMONIC(4, InsertVal(14, 26, 30), _D, _A, _C, _B), // ps_madds0 - RC_MNEMONIC(4, InsertVal(15, 26, 30), _D, _A, _C, _B), // ps_madds1 - MNEMONIC(4, InsertVal(0, 21, 30), _Crfd, _A, _B), // ps_cmpu0 - MNEMONIC(4, InsertVal(32, 21, 30), _Crfd, _A, _B), // ps_cmpo0 - MNEMONIC(4, InsertVal(64, 21, 30), _Crfd, _A, _B), // ps_cmpu1 - MNEMONIC(4, InsertVal(96, 21, 30), _Crfd, _A, _B), // ps_cmpo1 - RC_MNEMONIC(4, InsertVal(528, 21, 30), _D, _A, _B), // ps_merge00 - RC_MNEMONIC(4, InsertVal(560, 21, 30), _D, _A, _B), // ps_merge01 - RC_MNEMONIC(4, InsertVal(592, 21, 30), _D, _A, _B), // ps_merge10 - RC_MNEMONIC(4, InsertVal(624, 21, 30), _D, _A, _B), // ps_merge11 - MNEMONIC(4, InsertVal(1014, 21, 30), _A, _B), // dcbz_l + RC_MNEMONIC(4, InsertVal(10, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_sum0 + RC_MNEMONIC(4, InsertVal(11, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_sum1 + RC_MNEMONIC(4, InsertVal(12, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C), // ps_muls0 + RC_MNEMONIC(4, InsertVal(13, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C), // ps_muls1 + RC_MNEMONIC(4, InsertVal(14, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_madds0 + RC_MNEMONIC(4, InsertVal(15, 26, 30), OpDesc_D, OpDesc_A, OpDesc_C, OpDesc_B), // ps_madds1 + MNEMONIC(4, InsertVal(0, 21, 30), OpDesc_Crfd, OpDesc_A, OpDesc_B), // ps_cmpu0 + MNEMONIC(4, InsertVal(32, 21, 30), OpDesc_Crfd, OpDesc_A, OpDesc_B), // ps_cmpo0 + MNEMONIC(4, InsertVal(64, 21, 30), OpDesc_Crfd, OpDesc_A, OpDesc_B), // ps_cmpu1 + MNEMONIC(4, InsertVal(96, 21, 30), OpDesc_Crfd, OpDesc_A, OpDesc_B), // ps_cmpo1 + RC_MNEMONIC(4, InsertVal(528, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_merge00 + RC_MNEMONIC(4, InsertVal(560, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_merge01 + RC_MNEMONIC(4, InsertVal(592, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_merge10 + RC_MNEMONIC(4, InsertVal(624, 21, 30), OpDesc_D, OpDesc_A, OpDesc_B), // ps_merge11 + MNEMONIC(4, InsertVal(1014, 21, 30), OpDesc_A, OpDesc_B), // dcbz_l }; namespace From 191b36976cd36d1edfe8a022c1c2e0046687a83b Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 21 Jul 2024 05:29:20 +0100 Subject: [PATCH 200/296] DolphinTool: list filesystem recursively --- Source/Core/DolphinTool/ExtractCommand.cpp | 27 +++++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/Source/Core/DolphinTool/ExtractCommand.cpp b/Source/Core/DolphinTool/ExtractCommand.cpp index 1dfe849869..d1daa3dd07 100644 --- a/Source/Core/DolphinTool/ExtractCommand.cpp +++ b/Source/Core/DolphinTool/ExtractCommand.cpp @@ -97,6 +97,25 @@ static void ExtractPartition(const DiscIO::Volume& disc_volume, const DiscIO::Pa ExtractSystemData(disc_volume, partition, out); } +static void ListRecursively(const std::string& path, const DiscIO::FileInfo& info, + std::string* result_text) +{ + // Don't print the root. + if (!path.empty()) + { + const std::string line = fmt::format("{}\n", path); + fmt::print("{}", line); + result_text->append(line); + } + for (const DiscIO::FileInfo& child_info : info) + { + std::string child_path = path + child_info.GetName(); + if (child_info.IsDirectory()) + child_path += '/'; + ListRecursively(child_path, child_info, result_text); + } +} + static bool ListPartition(const DiscIO::Volume& disc_volume, const DiscIO::Partition& partition, const std::string& partition_name, const std::string& path, std::string* result_text) @@ -113,12 +132,8 @@ static bool ListPartition(const DiscIO::Volume& disc_volume, const DiscIO::Parti return false; } - for (auto it = info->begin(); it != info->end(); ++it) - { - const std::string file_name = fmt::format("{}\n", it->GetName()); - fmt::print(std::cout, "{}", file_name); - result_text->append(file_name); - } + // Canonicalize user-provided path by reconstructing it using GetPath(). + ListRecursively(info->GetPath(), *info, result_text); return true; } From 384e0444379050b8672aef5b2b3453907fc4b542 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 21 Jul 2024 17:25:43 -0700 Subject: [PATCH 201/296] QtUtils/ClearLayoutRecursively: Fix potential crash Use QObject->deleteLater() instead of the delete operator to destroy child widgets of the layout. This prevents crashes caused by pending events trying to access the now-destroyed widget. --- Source/Core/DolphinQt/QtUtils/ClearLayoutRecursively.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/QtUtils/ClearLayoutRecursively.cpp b/Source/Core/DolphinQt/QtUtils/ClearLayoutRecursively.cpp index b7e588d01b..8869c8092d 100644 --- a/Source/Core/DolphinQt/QtUtils/ClearLayoutRecursively.cpp +++ b/Source/Core/DolphinQt/QtUtils/ClearLayoutRecursively.cpp @@ -17,7 +17,7 @@ void ClearLayoutRecursively(QLayout* layout) if (child->widget()) { layout->removeWidget(child->widget()); - delete child->widget(); + child->widget()->deleteLater(); } else if (child->layout()) { From ffc7bcfbf81e9c6a005ab1139bc74874d8d4ce35 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 21 Jul 2024 21:35:29 -0700 Subject: [PATCH 202/296] Emitters: Define Trivial Getters Inline --- Source/Core/Common/Arm64Emitter.cpp | 20 -------------------- Source/Core/Common/Arm64Emitter.h | 8 ++++---- Source/Core/Common/x64Emitter.cpp | 20 -------------------- Source/Core/Common/x64Emitter.h | 8 ++++---- 4 files changed, 8 insertions(+), 48 deletions(-) diff --git a/Source/Core/Common/Arm64Emitter.cpp b/Source/Core/Common/Arm64Emitter.cpp index a7dafba569..8d71016f7e 100644 --- a/Source/Core/Common/Arm64Emitter.cpp +++ b/Source/Core/Common/Arm64Emitter.cpp @@ -87,26 +87,6 @@ void ARM64XEmitter::SetCodePtr(u8* ptr, u8* end, bool write_failed) m_lastCacheFlushEnd = ptr; } -const u8* ARM64XEmitter::GetCodePtr() const -{ - return m_code; -} - -u8* ARM64XEmitter::GetWritableCodePtr() -{ - return m_code; -} - -const u8* ARM64XEmitter::GetCodeEnd() const -{ - return m_code_end; -} - -u8* ARM64XEmitter::GetWritableCodeEnd() -{ - return m_code_end; -} - void ARM64XEmitter::ReserveCodeSpace(u32 bytes) { for (u32 i = 0; i < bytes / 4; i++) diff --git a/Source/Core/Common/Arm64Emitter.h b/Source/Core/Common/Arm64Emitter.h index e97e72f3c3..134f9b64cc 100644 --- a/Source/Core/Common/Arm64Emitter.h +++ b/Source/Core/Common/Arm64Emitter.h @@ -680,10 +680,10 @@ public: void SetCodePtr(u8* ptr, u8* end, bool write_failed = false); void SetCodePtrUnsafe(u8* ptr, u8* end, bool write_failed = false); - const u8* GetCodePtr() const; - u8* GetWritableCodePtr(); - const u8* GetCodeEnd() const; - u8* GetWritableCodeEnd(); + const u8* GetCodePtr() const { return m_code; } + u8* GetWritableCodePtr() { return m_code; } + const u8* GetCodeEnd() const { return m_code_end; } + u8* GetWritableCodeEnd() { return m_code_end; } void ReserveCodeSpace(u32 bytes); u8* AlignCode16(); u8* AlignCodePage(); diff --git a/Source/Core/Common/x64Emitter.cpp b/Source/Core/Common/x64Emitter.cpp index a050c68b29..14458ae7d4 100644 --- a/Source/Core/Common/x64Emitter.cpp +++ b/Source/Core/Common/x64Emitter.cpp @@ -107,26 +107,6 @@ void XEmitter::SetCodePtr(u8* ptr, u8* end, bool write_failed) m_write_failed = write_failed; } -const u8* XEmitter::GetCodePtr() const -{ - return code; -} - -u8* XEmitter::GetWritableCodePtr() -{ - return code; -} - -const u8* XEmitter::GetCodeEnd() const -{ - return m_code_end; -} - -u8* XEmitter::GetWritableCodeEnd() -{ - return m_code_end; -} - void XEmitter::Write8(u8 value) { if (code >= m_code_end) diff --git a/Source/Core/Common/x64Emitter.h b/Source/Core/Common/x64Emitter.h index e19ef37734..5370afd3ad 100644 --- a/Source/Core/Common/x64Emitter.h +++ b/Source/Core/Common/x64Emitter.h @@ -394,10 +394,10 @@ public: u8* AlignCode4(); u8* AlignCode16(); u8* AlignCodePage(); - const u8* GetCodePtr() const; - u8* GetWritableCodePtr(); - const u8* GetCodeEnd() const; - u8* GetWritableCodeEnd(); + const u8* GetCodePtr() const { return code; } + u8* GetWritableCodePtr() { return code; } + const u8* GetCodeEnd() const { return m_code_end; } + u8* GetWritableCodeEnd() { return m_code_end; } void LockFlags() { flags_locked = true; } void UnlockFlags() { flags_locked = false; } From c71ccb548e9baea772e2e900e9eeeadca8ec5341 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Tue, 23 Jul 2024 20:48:17 +0200 Subject: [PATCH 203/296] AchievementManager: Fix incorrect check on network request return value in FetchBadge() --- Source/Core/Core/AchievementManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index b669a445b1..932ca45656 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -1175,7 +1175,7 @@ void AchievementManager::FetchBadge(AchievementManager::Badge* badge, u32 badge_ } auto http_response = http_request.Get(api_request.url, USER_AGENT_HEADER, Common::HttpRequest::AllowedReturnCodes::All); - if (http_response.has_value() && http_response->size() <= 0) + if (!http_response.has_value() || http_response->empty()) { WARN_LOG_FMT(ACHIEVEMENTS, "RetroAchievements connection failed on image request.\n URL: {}", From f79520a90601e20c887055761cd6c7ab0463f329 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Tue, 23 Apr 2024 09:28:49 -0700 Subject: [PATCH 204/296] Cached Interpreter 2.0 It now supports variable-sized data payloads and memory range freeing. It's a little faster, too. --- Source/Core/Common/CodeBlock.h | 7 +- Source/Core/Core/CMakeLists.txt | 6 +- .../CachedInterpreter/CachedInterpreter.cpp | 376 +++++++++--------- .../CachedInterpreter/CachedInterpreter.h | 106 ++++- .../CachedInterpreterBlockCache.cpp | 41 ++ .../CachedInterpreterBlockCache.h | 35 ++ .../CachedInterpreterEmitter.cpp | 39 ++ .../CachedInterpreterEmitter.h | 84 ++++ .../InterpreterBlockCache.cpp | 14 - .../CachedInterpreter/InterpreterBlockCache.h | 17 - Source/Core/DolphinLib.props | 6 +- 11 files changed, 479 insertions(+), 252 deletions(-) create mode 100644 Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.cpp create mode 100644 Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h create mode 100644 Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.cpp create mode 100644 Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h delete mode 100644 Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.cpp delete mode 100644 Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.h diff --git a/Source/Core/Common/CodeBlock.h b/Source/Core/Common/CodeBlock.h index 9efc82edeb..8c6291dc63 100644 --- a/Source/Core/Common/CodeBlock.h +++ b/Source/Core/Common/CodeBlock.h @@ -17,7 +17,7 @@ namespace Common // having to prefix them with gen-> or something similar. // Example implementation: // class JIT : public CodeBlock {} -template +template class CodeBlock : public T { private: @@ -53,7 +53,10 @@ public: { region_size = size; total_region_size = size; - region = static_cast(Common::AllocateExecutableMemory(total_region_size)); + if constexpr (executable) + region = static_cast(Common::AllocateExecutableMemory(total_region_size)); + else + region = static_cast(Common::AllocateMemoryPages(total_region_size)); T::SetCodePtr(region, region + size); } diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 54a2e18db5..6b0022d63c 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -481,8 +481,10 @@ add_library(core PowerPC/BreakPoints.h PowerPC/CachedInterpreter/CachedInterpreter.cpp PowerPC/CachedInterpreter/CachedInterpreter.h - PowerPC/CachedInterpreter/InterpreterBlockCache.cpp - PowerPC/CachedInterpreter/InterpreterBlockCache.h + PowerPC/CachedInterpreter/CachedInterpreterBlockCache.cpp + PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h + PowerPC/CachedInterpreter/CachedInterpreterEmitter.cpp + PowerPC/CachedInterpreter/CachedInterpreterEmitter.h PowerPC/ConditionRegister.cpp PowerPC/ConditionRegister.h PowerPC/Expression.cpp diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index f8b5c6f53b..7e740b5de9 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -6,6 +6,7 @@ #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" #include "Core/ConfigManager.h" +#include "Core/Core.h" #include "Core/CoreTiming.h" #include "Core/HLE/HLE.h" #include "Core/HW/CPU.h" @@ -16,65 +17,7 @@ #include "Core/PowerPC/PowerPC.h" #include "Core/System.h" -struct CachedInterpreter::Instruction -{ - using CommonCallback = void (*)(UGeckoInstruction); - using ConditionalCallback = bool (*)(u32); - using InterpreterCallback = void (*)(Interpreter&, UGeckoInstruction); - using CachedInterpreterCallback = void (*)(CachedInterpreter&, UGeckoInstruction); - using ConditionalCachedInterpreterCallback = bool (*)(CachedInterpreter&, u32); - - Instruction() {} - Instruction(const CommonCallback c, UGeckoInstruction i) - : common_callback(c), data(i.hex), type(Type::Common) - { - } - - Instruction(const ConditionalCallback c, u32 d) - : conditional_callback(c), data(d), type(Type::Conditional) - { - } - - Instruction(const InterpreterCallback c, UGeckoInstruction i) - : interpreter_callback(c), data(i.hex), type(Type::Interpreter) - { - } - - Instruction(const CachedInterpreterCallback c, UGeckoInstruction i) - : cached_interpreter_callback(c), data(i.hex), type(Type::CachedInterpreter) - { - } - - Instruction(const ConditionalCachedInterpreterCallback c, u32 d) - : conditional_cached_interpreter_callback(c), data(d), - type(Type::ConditionalCachedInterpreter) - { - } - - enum class Type - { - Abort, - Common, - Conditional, - Interpreter, - CachedInterpreter, - ConditionalCachedInterpreter, - }; - - union - { - const CommonCallback common_callback = nullptr; - const ConditionalCallback conditional_callback; - const InterpreterCallback interpreter_callback; - const CachedInterpreterCallback cached_interpreter_callback; - const ConditionalCachedInterpreterCallback conditional_cached_interpreter_callback; - }; - - u32 data = 0; - Type type = Type::Abort; -}; - -CachedInterpreter::CachedInterpreter(Core::System& system) : JitBase(system) +CachedInterpreter::CachedInterpreter(Core::System& system) : JitBase(system), m_block_cache(*this) { } @@ -84,7 +27,8 @@ void CachedInterpreter::Init() { RefreshConfig(); - m_code.reserve(CODE_SIZE / sizeof(Instruction)); + AllocCodeSpace(CODE_SIZE); + ResetFreeMemoryRanges(); jo.enableBlocklink = false; @@ -100,11 +44,6 @@ void CachedInterpreter::Shutdown() m_block_cache.Shutdown(); } -u8* CachedInterpreter::GetCodePtr() -{ - return reinterpret_cast(m_code.data() + m_code.size()); -} - void CachedInterpreter::ExecuteOneBlock() { const u8* normal_entry = m_block_cache.Dispatch(); @@ -114,50 +53,23 @@ void CachedInterpreter::ExecuteOneBlock() return; } - const Instruction* code = reinterpret_cast(normal_entry); - auto& interpreter = m_system.GetInterpreter(); - - for (; code->type != Instruction::Type::Abort; ++code) + auto& ppc_state = m_ppc_state; + while (true) { - switch (code->type) - { - case Instruction::Type::Common: - code->common_callback(UGeckoInstruction(code->data)); + const auto callback = *reinterpret_cast(normal_entry); + if (const auto distance = callback(ppc_state, normal_entry + sizeof(callback))) + normal_entry += distance; + else break; - - case Instruction::Type::Conditional: - if (code->conditional_callback(code->data)) - return; - break; - - case Instruction::Type::Interpreter: - code->interpreter_callback(interpreter, UGeckoInstruction(code->data)); - break; - - case Instruction::Type::CachedInterpreter: - code->cached_interpreter_callback(*this, UGeckoInstruction(code->data)); - break; - - case Instruction::Type::ConditionalCachedInterpreter: - if (code->conditional_cached_interpreter_callback(*this, code->data)) - return; - break; - - default: - ERROR_LOG_FMT(POWERPC, "Unknown CachedInterpreter Instruction: {}", - static_cast(code->type)); - break; - } } } void CachedInterpreter::Run() { auto& core_timing = m_system.GetCoreTiming(); - auto& cpu = m_system.GetCPU(); - const CPU::State* state_ptr = cpu.GetStatePtr(); - while (cpu.GetState() == CPU::State::Running) + const CPU::State* state_ptr = m_system.GetCPU().GetStatePtr(); + while (*state_ptr == CPU::State::Running) { // Start new timing slice // NOTE: Exceptions may change PC @@ -177,93 +89,105 @@ void CachedInterpreter::SingleStep() ExecuteOneBlock(); } -void CachedInterpreter::EndBlock(CachedInterpreter& cached_interpreter, UGeckoInstruction data) +s32 CachedInterpreter::EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlockOperands& operands) { - auto& ppc_state = cached_interpreter.m_ppc_state; + const auto& [downcount, num_load_stores, num_fp_inst] = operands; ppc_state.pc = ppc_state.npc; - ppc_state.downcount -= data.hex; - PowerPC::UpdatePerformanceMonitor(data.hex, 0, 0, ppc_state); + ppc_state.downcount -= downcount; + PowerPC::UpdatePerformanceMonitor(downcount, num_load_stores, num_fp_inst, ppc_state); + return 0; } -void CachedInterpreter::UpdateNumLoadStoreInstructions(CachedInterpreter& cached_interpreter, - UGeckoInstruction data) +s32 CachedInterpreter::Interpret(PowerPC::PowerPCState& ppc_state, + const InterpretOperands& operands) { - PowerPC::UpdatePerformanceMonitor(0, data.hex, 0, cached_interpreter.m_ppc_state); + const auto& [interpreter, func, current_pc, inst] = operands; + func(interpreter, inst); + return sizeof(AnyCallback) + sizeof(operands); } -void CachedInterpreter::UpdateNumFloatingPointInstructions(CachedInterpreter& cached_interpreter, - UGeckoInstruction data) +s32 CachedInterpreter::HLEFunction(PowerPC::PowerPCState& ppc_state, + const HLEFunctionOperands& operands) { - PowerPC::UpdatePerformanceMonitor(0, 0, data.hex, cached_interpreter.m_ppc_state); + const auto& [system, current_pc, hook_index] = operands; + HLE::Execute(Core::CPUThreadGuard{system}, current_pc, hook_index); + return sizeof(AnyCallback) + sizeof(operands); } -void CachedInterpreter::WritePC(CachedInterpreter& cached_interpreter, UGeckoInstruction data) +s32 CachedInterpreter::WritePC(PowerPC::PowerPCState& ppc_state, const WritePCOperands& operands) { - auto& ppc_state = cached_interpreter.m_ppc_state; - ppc_state.pc = data.hex; - ppc_state.npc = data.hex + 4; + const auto& [current_pc] = operands; + ppc_state.pc = current_pc; + ppc_state.npc = current_pc + 4; + return sizeof(AnyCallback) + sizeof(operands); } -void CachedInterpreter::WriteBrokenBlockNPC(CachedInterpreter& cached_interpreter, - UGeckoInstruction data) +s32 CachedInterpreter::WriteBrokenBlockNPC(PowerPC::PowerPCState& ppc_state, + const WritePCOperands& operands) { - cached_interpreter.m_ppc_state.npc = data.hex; + const auto& [current_pc] = operands; + ppc_state.npc = current_pc; + return sizeof(AnyCallback) + sizeof(operands); } -bool CachedInterpreter::CheckFPU(CachedInterpreter& cached_interpreter, u32 data) +s32 CachedInterpreter::CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { - auto& ppc_state = cached_interpreter.m_ppc_state; + const auto& [power_pc, downcount] = operands; if (!ppc_state.msr.FP) { ppc_state.Exceptions |= EXCEPTION_FPU_UNAVAILABLE; - cached_interpreter.m_system.GetPowerPC().CheckExceptions(); - ppc_state.downcount -= data; - return true; + power_pc.CheckExceptions(); + ppc_state.downcount -= downcount; + return 0; } - return false; + return sizeof(AnyCallback) + sizeof(operands); } -bool CachedInterpreter::CheckDSI(CachedInterpreter& cached_interpreter, u32 data) +s32 CachedInterpreter::CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { - auto& ppc_state = cached_interpreter.m_ppc_state; - if (ppc_state.Exceptions & EXCEPTION_DSI) + const auto& [power_pc, downcount] = operands; + if ((ppc_state.Exceptions & EXCEPTION_DSI) != 0) { - cached_interpreter.m_system.GetPowerPC().CheckExceptions(); - ppc_state.downcount -= data; - return true; + power_pc.CheckExceptions(); + ppc_state.downcount -= downcount; + return 0; } - return false; + return sizeof(AnyCallback) + sizeof(operands); } -bool CachedInterpreter::CheckProgramException(CachedInterpreter& cached_interpreter, u32 data) +s32 CachedInterpreter::CheckProgramException(PowerPC::PowerPCState& ppc_state, + const CheckHaltOperands& operands) { - auto& ppc_state = cached_interpreter.m_ppc_state; - if (ppc_state.Exceptions & EXCEPTION_PROGRAM) + const auto& [power_pc, downcount] = operands; + if ((ppc_state.Exceptions & EXCEPTION_PROGRAM) != 0) { - cached_interpreter.m_system.GetPowerPC().CheckExceptions(); - ppc_state.downcount -= data; - return true; + power_pc.CheckExceptions(); + ppc_state.downcount -= downcount; + return 0; } - return false; + return sizeof(AnyCallback) + sizeof(operands); } -bool CachedInterpreter::CheckBreakpoint(CachedInterpreter& cached_interpreter, u32 data) +s32 CachedInterpreter::CheckBreakpoint(PowerPC::PowerPCState& ppc_state, + const CheckHaltOperands& operands) { - if (cached_interpreter.m_system.GetPowerPC().CheckAndHandleBreakPoints()) + const auto& [power_pc, downcount] = operands; + if (power_pc.CheckAndHandleBreakPoints()) { - cached_interpreter.m_ppc_state.downcount -= data; - return true; + // Accessing PowerPCState through power_pc instead of ppc_state produces better assembly. + power_pc.GetPPCState().downcount -= downcount; + return 0; } - return false; + return sizeof(AnyCallback) + sizeof(operands); } -bool CachedInterpreter::CheckIdle(CachedInterpreter& cached_interpreter, u32 idle_pc) +s32 CachedInterpreter::CheckIdle(PowerPC::PowerPCState& ppc_state, + const CheckIdleOperands& operands) { - if (cached_interpreter.m_ppc_state.npc == idle_pc) - { - cached_interpreter.m_system.GetCoreTiming().Idle(); - } - return false; + const auto& [core_timing, idle_pc] = operands; + if (ppc_state.npc == idle_pc) + core_timing.Idle(); + return sizeof(AnyCallback) + sizeof(operands); } bool CachedInterpreter::HandleFunctionHooking(u32 address) @@ -274,27 +198,57 @@ bool CachedInterpreter::HandleFunctionHooking(u32 address) if (!result) return false; - m_code.emplace_back(WritePC, address); - m_code.emplace_back(Interpreter::HLEFunction, result.hook_index); + Write(WritePC, {address}); + Write(HLEFunction, {m_system, address, result.hook_index}); if (result.type != HLE::HookType::Replace) return false; - m_code.emplace_back(EndBlock, js.downcountAmount); - m_code.emplace_back(); + js.downcountAmount += js.st.numCycles; + Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); return true; } -void CachedInterpreter::Jit(u32 address) +bool CachedInterpreter::SetEmitterStateToFreeCodeRegion() { - if (m_code.size() >= CODE_SIZE / sizeof(Instruction) - 0x1000 || - SConfig::GetInstance().bJITNoBlockCache) + const auto free = m_free_ranges.by_size_begin(); + if (free == m_free_ranges.by_size_end()) + { + WARN_LOG_FMT(DYNA_REC, "Failed to find free memory region in code region."); + return false; + } + SetCodePtr(free.from(), free.to()); + return true; +} + +void CachedInterpreter::FreeRanges() +{ + for (const auto& [from, to] : m_block_cache.GetRangesToFree()) + m_free_ranges.insert(from, to); + m_block_cache.ClearRangesToFree(); +} + +void CachedInterpreter::ResetFreeMemoryRanges() +{ + m_free_ranges.clear(); + m_free_ranges.insert(region, region + region_size); +} + +void CachedInterpreter::Jit(u32 em_address) +{ + Jit(em_address, true); +} + +void CachedInterpreter::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) +{ + if (IsAlmostFull() || SConfig::GetInstance().bJITNoBlockCache) { ClearCache(); } + FreeRanges(); const u32 nextPC = - analyzer.Analyze(m_ppc_state.pc, &code_block, &m_code_buffer, m_code_buffer.size()); + analyzer.Analyze(em_address, &code_block, &m_code_buffer, m_code_buffer.size()); if (code_block.m_memory_exception) { // Address of instruction could not be translated @@ -305,9 +259,46 @@ void CachedInterpreter::Jit(u32 address) return; } - JitBlock* b = m_block_cache.AllocateBlock(m_ppc_state.pc); + if (SetEmitterStateToFreeCodeRegion()) + { + JitBlock* b = m_block_cache.AllocateBlock(em_address); + b->normalEntry = b->near_begin = GetWritableCodePtr(); - js.blockStart = m_ppc_state.pc; + if (DoJit(em_address, b, nextPC)) + { + // Record what memory region was used so we know what to free if this block gets invalidated. + b->near_end = GetWritableCodePtr(); + b->far_begin = b->far_end = nullptr; + + b->codeSize = static_cast(b->near_end - b->normalEntry); + b->originalSize = code_block.m_num_instructions; + + // Mark the memory region that this code block uses in the RangeSizeSet. + if (b->near_begin != b->near_end) + m_free_ranges.erase(b->near_begin, b->near_end); + + m_block_cache.FinalizeBlock(*b, jo.enableBlocklink, code_block.m_physical_addresses); + + return; + } + } + + if (clear_cache_and_retry_on_failure) + { + WARN_LOG_FMT(DYNA_REC, "flushing code caches, please report if this happens a lot"); + ClearCache(); + Jit(em_address, false); + return; + } + + PanicAlertFmtT("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."); + std::exit(-1); +} + +bool CachedInterpreter::DoJit(u32 em_address, JitBlock* b, u32 nextPC) +{ + js.blockStart = em_address; js.firstFPInstructionFound = false; js.fifoBytesSinceCheck = 0; js.downcountAmount = 0; @@ -315,85 +306,80 @@ void CachedInterpreter::Jit(u32 address) js.numFloatingPointInst = 0; js.curBlock = b; - b->normalEntry = b->near_begin = GetCodePtr(); + auto& interpreter = m_system.GetInterpreter(); + auto& power_pc = m_system.GetPowerPC(); + auto& cpu = m_system.GetCPU(); + auto& breakpoints = power_pc.GetBreakPoints(); for (u32 i = 0; i < code_block.m_num_instructions; i++) { PPCAnalyst::CodeOp& op = m_code_buffer[i]; + js.op = &op; + js.compilerPC = op.address; + js.instructionsLeft = (code_block.m_num_instructions - 1) - i; js.downcountAmount += op.opinfo->num_cycles; if (op.opinfo->flags & FL_LOADSTORE) ++js.numLoadStoreInst; if (op.opinfo->flags & FL_USE_FPU) ++js.numFloatingPointInst; - if (HandleFunctionHooking(op.address)) + if (HandleFunctionHooking(js.compilerPC)) break; if (!op.skip) { - const bool breakpoint = - m_enable_debugging && - m_system.GetPowerPC().GetBreakPoints().IsAddressBreakPoint(op.address); - const bool check_fpu = (op.opinfo->flags & FL_USE_FPU) && !js.firstFPInstructionFound; + const bool breakpoint = IsDebuggingEnabled() && !cpu.IsStepping() && + breakpoints.IsAddressBreakPoint(js.compilerPC); + const bool check_fpu = (op.opinfo->flags & FL_USE_FPU) != 0 && !js.firstFPInstructionFound; const bool endblock = (op.opinfo->flags & FL_ENDBLOCK) != 0; - const bool memcheck = (op.opinfo->flags & FL_LOADSTORE) && jo.memcheck; + const bool memcheck = (op.opinfo->flags & FL_LOADSTORE) != 0 && jo.memcheck; const bool check_program_exception = !endblock && ShouldHandleFPExceptionForInstruction(&op); const bool idle_loop = op.branchIsIdleLoop; if (breakpoint || check_fpu || endblock || memcheck || check_program_exception) - m_code.emplace_back(WritePC, op.address); + Write(WritePC, {js.compilerPC}); if (breakpoint) - m_code.emplace_back(CheckBreakpoint, js.downcountAmount); + Write(CheckBreakpoint, {power_pc, js.downcountAmount}); if (check_fpu) { - m_code.emplace_back(CheckFPU, js.downcountAmount); + Write(CheckFPU, {power_pc, js.downcountAmount}); js.firstFPInstructionFound = true; } - m_code.emplace_back(Interpreter::GetInterpreterOp(op.inst), op.inst); + Write(Interpret, + {interpreter, Interpreter::GetInterpreterOp(op.inst), js.compilerPC, op.inst}); if (memcheck) - m_code.emplace_back(CheckDSI, js.downcountAmount); + Write(CheckDSI, {power_pc, js.downcountAmount}); if (check_program_exception) - m_code.emplace_back(CheckProgramException, js.downcountAmount); + Write(CheckProgramException, {power_pc, js.downcountAmount}); if (idle_loop) - m_code.emplace_back(CheckIdle, js.blockStart); + Write(CheckIdle, {m_system.GetCoreTiming(), js.blockStart}); if (endblock) - { - m_code.emplace_back(EndBlock, js.downcountAmount); - if (js.numLoadStoreInst != 0) - m_code.emplace_back(UpdateNumLoadStoreInstructions, js.numLoadStoreInst); - if (js.numFloatingPointInst != 0) - m_code.emplace_back(UpdateNumFloatingPointInstructions, js.numFloatingPointInst); - } + Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); } } if (code_block.m_broken) { - m_code.emplace_back(WriteBrokenBlockNPC, nextPC); - m_code.emplace_back(EndBlock, js.downcountAmount); - if (js.numLoadStoreInst != 0) - m_code.emplace_back(UpdateNumLoadStoreInstructions, js.numLoadStoreInst); - if (js.numFloatingPointInst != 0) - m_code.emplace_back(UpdateNumFloatingPointInstructions, js.numFloatingPointInst); + Write(WriteBrokenBlockNPC, {nextPC}); + Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); } - m_code.emplace_back(); - b->near_end = GetCodePtr(); - b->far_begin = nullptr; - b->far_end = nullptr; - - b->codeSize = static_cast(GetCodePtr() - b->normalEntry); - b->originalSize = code_block.m_num_instructions; - - m_block_cache.FinalizeBlock(*b, jo.enableBlocklink, code_block.m_physical_addresses); + if (HasWriteFailed()) + { + WARN_LOG_FMT(DYNA_REC, "JIT ran out of space in code region during code generation."); + return false; + } + return true; } void CachedInterpreter::ClearCache() { - m_code.clear(); m_block_cache.Clear(); + m_block_cache.ClearRangesToFree(); + ClearCodeSpace(); + ResetFreeMemoryRanges(); RefreshConfig(); } diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h index 513ad7dbc9..b500ba81e7 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h @@ -3,14 +3,27 @@ #pragma once -#include +#include + +#include #include "Common/CommonTypes.h" -#include "Core/PowerPC/CachedInterpreter/InterpreterBlockCache.h" +#include "Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h" +#include "Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h" #include "Core/PowerPC/JitCommon/JitBase.h" #include "Core/PowerPC/PPCAnalyst.h" -class CachedInterpreter : public JitBase +namespace CoreTiming +{ +class CoreTimingManager; +} +namespace CPU +{ +enum class State; +} +class Interpreter; + +class CachedInterpreter : public JitBase, public CachedInterpreterCodeBlock { public: explicit CachedInterpreter(Core::System& system); @@ -30,32 +43,85 @@ public: void SingleStep() override; void Jit(u32 address) override; + void Jit(u32 address, bool clear_cache_and_retry_on_failure); + bool DoJit(u32 address, JitBlock* b, u32 nextPC); JitBaseBlockCache* GetBlockCache() override { return &m_block_cache; } const char* GetName() const override { return "Cached Interpreter"; } const CommonAsmRoutinesBase* GetAsmRoutines() override { return nullptr; } private: - struct Instruction; - - u8* GetCodePtr(); void ExecuteOneBlock(); bool HandleFunctionHooking(u32 address); - static void EndBlock(CachedInterpreter& cached_interpreter, UGeckoInstruction data); - static void UpdateNumLoadStoreInstructions(CachedInterpreter& cached_interpreter, - UGeckoInstruction data); - static void UpdateNumFloatingPointInstructions(CachedInterpreter& cached_interpreter, - UGeckoInstruction data); - static void WritePC(CachedInterpreter& cached_interpreter, UGeckoInstruction data); - static void WriteBrokenBlockNPC(CachedInterpreter& cached_interpreter, UGeckoInstruction data); - static bool CheckFPU(CachedInterpreter& cached_interpreter, u32 data); - static bool CheckDSI(CachedInterpreter& cached_interpreter, u32 data); - static bool CheckProgramException(CachedInterpreter& cached_interpreter, u32 data); - static bool CheckBreakpoint(CachedInterpreter& cached_interpreter, u32 data); - static bool CheckIdle(CachedInterpreter& cached_interpreter, u32 idle_pc); + // Finds a free memory region and sets the code emitter to point at that region. + // Returns false if no free memory region can be found. + bool SetEmitterStateToFreeCodeRegion(); - BlockCache m_block_cache{*this}; - std::vector m_code; + void FreeRanges(); + void ResetFreeMemoryRanges(); + + struct EndBlockOperands; + struct InterpretOperands; + struct HLEFunctionOperands; + struct WritePCOperands; + struct CheckHaltOperands; + struct CheckIdleOperands; + + static s32 EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlockOperands& operands); + static s32 Interpret(PowerPC::PowerPCState& ppc_state, const InterpretOperands& operands); + static s32 HLEFunction(PowerPC::PowerPCState& ppc_state, const HLEFunctionOperands& operands); + static s32 WritePC(PowerPC::PowerPCState& ppc_state, const WritePCOperands& operands); + static s32 WriteBrokenBlockNPC(PowerPC::PowerPCState& ppc_state, const WritePCOperands& operands); + static s32 CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands); + static s32 CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands); + static s32 CheckProgramException(PowerPC::PowerPCState& ppc_state, + const CheckHaltOperands& operands); + static s32 CheckBreakpoint(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands); + static s32 CheckIdle(PowerPC::PowerPCState& ppc_state, const CheckIdleOperands& operands); + + HyoutaUtilities::RangeSizeSet m_free_ranges; + CachedInterpreterBlockCache m_block_cache; +}; + +struct CachedInterpreter::EndBlockOperands +{ + u32 downcount; + u32 num_load_stores; + u32 num_fp_inst; + u32 : 32; +}; + +struct CachedInterpreter::InterpretOperands +{ + Interpreter& interpreter; + void (*func)(Interpreter&, UGeckoInstruction); // Interpreter::Instruction + u32 current_pc; + UGeckoInstruction inst; +}; + +struct CachedInterpreter::HLEFunctionOperands +{ + Core::System& system; + u32 current_pc; + u32 hook_index; +}; + +struct CachedInterpreter::WritePCOperands +{ + u32 current_pc; + u32 : 32; +}; + +struct CachedInterpreter::CheckHaltOperands +{ + PowerPC::PowerPCManager& power_pc; + u32 downcount; +}; + +struct CachedInterpreter::CheckIdleOperands +{ + CoreTiming::CoreTimingManager& core_timing; + u32 idle_pc; }; diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.cpp new file mode 100644 index 0000000000..3b4c4a0637 --- /dev/null +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.cpp @@ -0,0 +1,41 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h" + +#include "Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h" +#include "Core/PowerPC/JitCommon/JitBase.h" + +CachedInterpreterBlockCache::CachedInterpreterBlockCache(JitBase& jit) : JitBaseBlockCache{jit} +{ +} + +void CachedInterpreterBlockCache::Init() +{ + JitBaseBlockCache::Init(); + ClearRangesToFree(); +} + +void CachedInterpreterBlockCache::DestroyBlock(JitBlock& block) +{ + JitBaseBlockCache::DestroyBlock(block); + + if (block.near_begin != block.near_end) + m_ranges_to_free_on_next_codegen.emplace_back(block.near_begin, block.near_end); +} + +void CachedInterpreterBlockCache::ClearRangesToFree() +{ + m_ranges_to_free_on_next_codegen.clear(); +} + +void CachedInterpreterBlockCache::WriteLinkBlock(const JitBlock::LinkData& source, + const JitBlock* dest) +{ +} + +void CachedInterpreterBlockCache::WriteDestroyBlock(const JitBlock& block) +{ + CachedInterpreterEmitter emitter(block.normalEntry, block.near_end); + emitter.Write(CachedInterpreterEmitter::PoisonCallback); +} diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h new file mode 100644 index 0000000000..2e06bafb41 --- /dev/null +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h @@ -0,0 +1,35 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +#include "Common/CommonTypes.h" +#include "Core/PowerPC/JitCommon/JitCache.h" + +class JitBase; + +class CachedInterpreterBlockCache final : public JitBaseBlockCache +{ +public: + explicit CachedInterpreterBlockCache(JitBase& jit); + + void Init() override; + + void DestroyBlock(JitBlock& block) override; + + void ClearRangesToFree(); + + const std::vector>& GetRangesToFree() const + { + return m_ranges_to_free_on_next_codegen; + }; + +private: + void WriteLinkBlock(const JitBlock::LinkData& source, const JitBlock* dest) override; + void WriteDestroyBlock(const JitBlock& block) override; + + std::vector> m_ranges_to_free_on_next_codegen; +}; diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.cpp new file mode 100644 index 0000000000..8422ef9edb --- /dev/null +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.cpp @@ -0,0 +1,39 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h" + +#include +#include + +#include "Common/Assert.h" +#include "Common/MsgHandler.h" + +void CachedInterpreterEmitter::Write(AnyCallback callback, const void* operands, std::size_t size) +{ + DEBUG_ASSERT(reinterpret_cast(m_code) % alignof(AnyCallback) == 0); + if (m_code + sizeof(callback) + size >= m_code_end) + { + m_write_failed = true; + return; + } + std::memcpy(m_code, &callback, sizeof(callback)); + m_code += sizeof(callback); + std::memcpy(m_code, operands, size); + m_code += size; +} + +s32 CachedInterpreterEmitter::PoisonCallback(PowerPC::PowerPCState& ppc_state, const void* operands) +{ + ASSERT_MSG(DYNA_REC, false, + "The Cached Interpreter reached a poisoned callback. This should never happen!"); + return 0; +} + +void CachedInterpreterCodeBlock::PoisonMemory() +{ + DEBUG_ASSERT(reinterpret_cast(region) % alignof(AnyCallback) == 0); + DEBUG_ASSERT(region_size % sizeof(AnyCallback) == 0); + std::fill(reinterpret_cast(region), + reinterpret_cast(region + region_size), AnyCallbackCast(PoisonCallback)); +} diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h new file mode 100644 index 0000000000..7c2ee24632 --- /dev/null +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h @@ -0,0 +1,84 @@ +// Copyright 2024 Dolphin Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +#include "Common/CodeBlock.h" +#include "Common/CommonTypes.h" + +namespace PowerPC +{ +struct PowerPCState; +} + +class CachedInterpreterEmitter +{ +protected: + // The return value of most callbacks is the distance in memory to the next callback. + // If a callback returns 0, the block will be exited. The return value is signed to + // support block-linking. 32-bit return values seem to perform better than 64-bit ones. + template + using Callback = s32 (*)(PowerPC::PowerPCState& ppc_state, const Operands& operands); + using AnyCallback = s32 (*)(PowerPC::PowerPCState& ppc_state, const void* operands); + + template + static AnyCallback AnyCallbackCast(Callback callback) + { + return reinterpret_cast(callback); + } + static consteval AnyCallback AnyCallbackCast(AnyCallback callback) { return callback; } + +public: + CachedInterpreterEmitter() = default; + explicit CachedInterpreterEmitter(u8* begin, u8* end) : m_code(begin), m_code_end(end) {} + + template + void Write(Callback callback, const Operands& operands) + { + // I would use std::is_trivial_v, but almost every operands struct uses + // references instead of pointers to make the callback functions nicer. + static_assert( + std::is_trivially_copyable_v && std::is_trivially_destructible_v && + alignof(Operands) <= alignof(AnyCallback) && sizeof(Operands) % alignof(AnyCallback) == 0); + Write(AnyCallbackCast(callback), &operands, sizeof(Operands)); + } + void Write(AnyCallback callback) { Write(callback, nullptr, 0); } + + const u8* GetCodePtr() const { return m_code; } + u8* GetWritableCodePtr() { return m_code; } + const u8* GetCodeEnd() const { return m_code_end; }; + u8* GetWritableCodeEnd() { return m_code_end; }; + // Should be checked after a block of code has been generated to see if the code has been + // successfully written to memory. Do not call the generated code when this returns true! + bool HasWriteFailed() const { return m_write_failed; } + + void SetCodePtr(u8* begin, u8* end) + { + m_code = begin; + m_code_end = end; + m_write_failed = false; + }; + + static s32 PoisonCallback(PowerPC::PowerPCState& ppc_state, const void* operands); + +private: + void Write(AnyCallback callback, const void* operands, std::size_t size); + + // Pointer to memory where code will be emitted to. + u8* m_code = nullptr; + // Pointer past the end of the memory region we're allowed to emit to. + // Writes that would reach this memory are refused and will set the m_write_failed flag instead. + u8* m_code_end = nullptr; + // Set to true when a write request happens that would write past m_code_end. + // Must be cleared with SetCodePtr() afterwards. + bool m_write_failed = false; +}; + +class CachedInterpreterCodeBlock : public Common::CodeBlock +{ +private: + void PoisonMemory() override; +}; diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.cpp deleted file mode 100644 index 4bcc0b3848..0000000000 --- a/Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2016 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "Core/PowerPC/CachedInterpreter/InterpreterBlockCache.h" - -#include "Core/PowerPC/JitCommon/JitBase.h" - -BlockCache::BlockCache(JitBase& jit) : JitBaseBlockCache{jit} -{ -} - -void BlockCache::WriteLinkBlock(const JitBlock::LinkData& source, const JitBlock* dest) -{ -} diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.h b/Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.h deleted file mode 100644 index a20e457ef6..0000000000 --- a/Source/Core/Core/PowerPC/CachedInterpreter/InterpreterBlockCache.h +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2016 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "Core/PowerPC/JitCommon/JitCache.h" - -class JitBase; - -class BlockCache final : public JitBaseBlockCache -{ -public: - explicit BlockCache(JitBase& jit); - -private: - void WriteLinkBlock(const JitBlock::LinkData& source, const JitBlock* dest) override; -}; diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index e236276ce9..5f1c59ac4d 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -428,7 +428,8 @@ - + + @@ -1089,7 +1090,8 @@ - + + From 0282fa7adbeea737bfdb8f11570d6d17ea94d47b Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 20 Apr 2024 05:16:05 -0700 Subject: [PATCH 205/296] CachedInterpreter: Exception Check Callback Micro-Optimization This saves two register pushes / pops. --- .../Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 7e740b5de9..82b8058e7a 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -135,9 +135,9 @@ s32 CachedInterpreter::CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHal const auto& [power_pc, downcount] = operands; if (!ppc_state.msr.FP) { + ppc_state.downcount -= downcount; ppc_state.Exceptions |= EXCEPTION_FPU_UNAVAILABLE; power_pc.CheckExceptions(); - ppc_state.downcount -= downcount; return 0; } return sizeof(AnyCallback) + sizeof(operands); @@ -148,8 +148,8 @@ s32 CachedInterpreter::CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHal const auto& [power_pc, downcount] = operands; if ((ppc_state.Exceptions & EXCEPTION_DSI) != 0) { - power_pc.CheckExceptions(); ppc_state.downcount -= downcount; + power_pc.CheckExceptions(); return 0; } return sizeof(AnyCallback) + sizeof(operands); @@ -161,8 +161,8 @@ s32 CachedInterpreter::CheckProgramException(PowerPC::PowerPCState& ppc_state, const auto& [power_pc, downcount] = operands; if ((ppc_state.Exceptions & EXCEPTION_PROGRAM) != 0) { - power_pc.CheckExceptions(); ppc_state.downcount -= downcount; + power_pc.CheckExceptions(); return 0; } return sizeof(AnyCallback) + sizeof(operands); From 818647d694e613c79da10854a65b823e9aea3e8b Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 4 May 2024 18:10:57 -0700 Subject: [PATCH 206/296] CachedInterpreter: WritePC optimizations WritePC is now needed far less, only for instructions that end the block. Unfortunately, WritePC still needs to update `PowerPCState::npc` to support the false path of conditional branch instructions. Both drawbacks should be smoothed over by optimized cached instructions in the future. --- .../CachedInterpreter/CachedInterpreter.cpp | 50 +++++++++---------- .../CachedInterpreter/CachedInterpreter.h | 1 + 2 files changed, 25 insertions(+), 26 deletions(-) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 82b8058e7a..745dc9c9b3 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -110,6 +110,7 @@ s32 CachedInterpreter::HLEFunction(PowerPC::PowerPCState& ppc_state, const HLEFunctionOperands& operands) { const auto& [system, current_pc, hook_index] = operands; + ppc_state.pc = current_pc; HLE::Execute(Core::CPUThreadGuard{system}, current_pc, hook_index); return sizeof(AnyCallback) + sizeof(operands); } @@ -132,9 +133,10 @@ s32 CachedInterpreter::WriteBrokenBlockNPC(PowerPC::PowerPCState& ppc_state, s32 CachedInterpreter::CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { - const auto& [power_pc, downcount] = operands; + const auto& [power_pc, current_pc, downcount] = operands; if (!ppc_state.msr.FP) { + ppc_state.pc = current_pc; ppc_state.downcount -= downcount; ppc_state.Exceptions |= EXCEPTION_FPU_UNAVAILABLE; power_pc.CheckExceptions(); @@ -145,9 +147,10 @@ s32 CachedInterpreter::CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHal s32 CachedInterpreter::CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { - const auto& [power_pc, downcount] = operands; + const auto& [power_pc, current_pc, downcount] = operands; if ((ppc_state.Exceptions & EXCEPTION_DSI) != 0) { + ppc_state.pc = current_pc; ppc_state.downcount -= downcount; power_pc.CheckExceptions(); return 0; @@ -158,9 +161,10 @@ s32 CachedInterpreter::CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHal s32 CachedInterpreter::CheckProgramException(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { - const auto& [power_pc, downcount] = operands; + const auto& [power_pc, current_pc, downcount] = operands; if ((ppc_state.Exceptions & EXCEPTION_PROGRAM) != 0) { + ppc_state.pc = current_pc; ppc_state.downcount -= downcount; power_pc.CheckExceptions(); return 0; @@ -171,7 +175,8 @@ s32 CachedInterpreter::CheckProgramException(PowerPC::PowerPCState& ppc_state, s32 CachedInterpreter::CheckBreakpoint(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { - const auto& [power_pc, downcount] = operands; + const auto& [power_pc, current_pc, downcount] = operands; + ppc_state.pc = current_pc; if (power_pc.CheckAndHandleBreakPoints()) { // Accessing PowerPCState through power_pc instead of ppc_state produces better assembly. @@ -198,7 +203,6 @@ bool CachedInterpreter::HandleFunctionHooking(u32 address) if (!result) return false; - Write(WritePC, {address}); Write(HLEFunction, {m_system, address, result.hook_index}); if (result.type != HLE::HookType::Replace) @@ -329,33 +333,27 @@ bool CachedInterpreter::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (!op.skip) { - const bool breakpoint = IsDebuggingEnabled() && !cpu.IsStepping() && - breakpoints.IsAddressBreakPoint(js.compilerPC); - const bool check_fpu = (op.opinfo->flags & FL_USE_FPU) != 0 && !js.firstFPInstructionFound; - const bool endblock = (op.opinfo->flags & FL_ENDBLOCK) != 0; - const bool memcheck = (op.opinfo->flags & FL_LOADSTORE) != 0 && jo.memcheck; - const bool check_program_exception = !endblock && ShouldHandleFPExceptionForInstruction(&op); - const bool idle_loop = op.branchIsIdleLoop; - - if (breakpoint || check_fpu || endblock || memcheck || check_program_exception) - Write(WritePC, {js.compilerPC}); - - if (breakpoint) - Write(CheckBreakpoint, {power_pc, js.downcountAmount}); - - if (check_fpu) + if (IsDebuggingEnabled() && !cpu.IsStepping() && + breakpoints.IsAddressBreakPoint(js.compilerPC)) { - Write(CheckFPU, {power_pc, js.downcountAmount}); + Write(CheckBreakpoint, {power_pc, js.compilerPC, js.downcountAmount}); + } + if (!js.firstFPInstructionFound && (op.opinfo->flags & FL_USE_FPU) != 0) + { + Write(CheckFPU, {power_pc, js.compilerPC, js.downcountAmount}); js.firstFPInstructionFound = true; } + const bool endblock = (op.opinfo->flags & FL_ENDBLOCK) != 0; + if (endblock) + Write(WritePC, {js.compilerPC}); Write(Interpret, {interpreter, Interpreter::GetInterpreterOp(op.inst), js.compilerPC, op.inst}); - if (memcheck) - Write(CheckDSI, {power_pc, js.downcountAmount}); - if (check_program_exception) - Write(CheckProgramException, {power_pc, js.downcountAmount}); - if (idle_loop) + if (jo.memcheck && (op.opinfo->flags & FL_LOADSTORE) != 0) + Write(CheckDSI, {power_pc, js.compilerPC, js.downcountAmount}); + if (!endblock && ShouldHandleFPExceptionForInstruction(&op)) + Write(CheckProgramException, {power_pc, js.compilerPC, js.downcountAmount}); + if (op.branchIsIdleLoop) Write(CheckIdle, {m_system.GetCoreTiming(), js.blockStart}); if (endblock) Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h index b500ba81e7..a1c87a8986 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h @@ -117,6 +117,7 @@ struct CachedInterpreter::WritePCOperands struct CachedInterpreter::CheckHaltOperands { PowerPC::PowerPCManager& power_pc; + u32 current_pc; u32 downcount; }; From ae43b10eff153c0322fcc254e1f63a92a8581d2e Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 5 May 2024 00:48:40 -0700 Subject: [PATCH 207/296] CachedInterpreter: Use `CodeOp::canEndBlock` This was a bigger performance boost than I expected. --- .../Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 745dc9c9b3..98534ed903 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -344,18 +344,17 @@ bool CachedInterpreter::DoJit(u32 em_address, JitBlock* b, u32 nextPC) js.firstFPInstructionFound = true; } - const bool endblock = (op.opinfo->flags & FL_ENDBLOCK) != 0; - if (endblock) + if (op.canEndBlock) Write(WritePC, {js.compilerPC}); Write(Interpret, {interpreter, Interpreter::GetInterpreterOp(op.inst), js.compilerPC, op.inst}); if (jo.memcheck && (op.opinfo->flags & FL_LOADSTORE) != 0) Write(CheckDSI, {power_pc, js.compilerPC, js.downcountAmount}); - if (!endblock && ShouldHandleFPExceptionForInstruction(&op)) + if (!op.canEndBlock && ShouldHandleFPExceptionForInstruction(&op)) Write(CheckProgramException, {power_pc, js.compilerPC, js.downcountAmount}); if (op.branchIsIdleLoop) Write(CheckIdle, {m_system.GetCoreTiming(), js.blockStart}); - if (endblock) + if (op.canEndBlock) Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); } } From 6c3024c3b1bf161c0c435640ccf5b8057a433f71 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 5 May 2024 21:34:52 -0700 Subject: [PATCH 208/296] CachedInterpreter: Combine Interpret, CheckDSI, CheckProgram, and WritePC I tried making the new templated Interpret callback test only the relevant exceptions (EXCEPTION_DSI, EXCEPTION_PROGRAM, or both), but didn't find a significant performance boost in it. As I am learning, the biggest bottleneck is the number of callbacks emitted, not usually the actual contents of them. --- .../CachedInterpreter/CachedInterpreter.cpp | 94 ++++++++++--------- .../CachedInterpreter/CachedInterpreter.h | 22 +++-- 2 files changed, 63 insertions(+), 53 deletions(-) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 98534ed903..0960b77fb7 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -98,11 +98,37 @@ s32 CachedInterpreter::EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlock return 0; } +template s32 CachedInterpreter::Interpret(PowerPC::PowerPCState& ppc_state, const InterpretOperands& operands) { - const auto& [interpreter, func, current_pc, inst] = operands; - func(interpreter, inst); + if constexpr (write_pc) + { + ppc_state.pc = operands.current_pc; + ppc_state.npc = operands.current_pc + 4; + } + operands.func(operands.interpreter, operands.inst); + return sizeof(AnyCallback) + sizeof(operands); +} + +template +s32 CachedInterpreter::InterpretAndCheckExceptions( + PowerPC::PowerPCState& ppc_state, const InterpretAndCheckExceptionsOperands& operands) +{ + if constexpr (write_pc) + { + ppc_state.pc = operands.current_pc; + ppc_state.npc = operands.current_pc + 4; + } + operands.func(operands.interpreter, operands.inst); + + if ((ppc_state.Exceptions & (EXCEPTION_DSI | EXCEPTION_PROGRAM)) != 0) + { + ppc_state.pc = operands.current_pc; + ppc_state.downcount -= operands.downcount; + operands.power_pc.CheckExceptions(); + return 0; + } return sizeof(AnyCallback) + sizeof(operands); } @@ -115,16 +141,8 @@ s32 CachedInterpreter::HLEFunction(PowerPC::PowerPCState& ppc_state, return sizeof(AnyCallback) + sizeof(operands); } -s32 CachedInterpreter::WritePC(PowerPC::PowerPCState& ppc_state, const WritePCOperands& operands) -{ - const auto& [current_pc] = operands; - ppc_state.pc = current_pc; - ppc_state.npc = current_pc + 4; - return sizeof(AnyCallback) + sizeof(operands); -} - s32 CachedInterpreter::WriteBrokenBlockNPC(PowerPC::PowerPCState& ppc_state, - const WritePCOperands& operands) + const WriteBrokenBlockNPCOperands& operands) { const auto& [current_pc] = operands; ppc_state.npc = current_pc; @@ -145,33 +163,6 @@ s32 CachedInterpreter::CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHal return sizeof(AnyCallback) + sizeof(operands); } -s32 CachedInterpreter::CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) -{ - const auto& [power_pc, current_pc, downcount] = operands; - if ((ppc_state.Exceptions & EXCEPTION_DSI) != 0) - { - ppc_state.pc = current_pc; - ppc_state.downcount -= downcount; - power_pc.CheckExceptions(); - return 0; - } - return sizeof(AnyCallback) + sizeof(operands); -} - -s32 CachedInterpreter::CheckProgramException(PowerPC::PowerPCState& ppc_state, - const CheckHaltOperands& operands) -{ - const auto& [power_pc, current_pc, downcount] = operands; - if ((ppc_state.Exceptions & EXCEPTION_PROGRAM) != 0) - { - ppc_state.pc = current_pc; - ppc_state.downcount -= downcount; - power_pc.CheckExceptions(); - return 0; - } - return sizeof(AnyCallback) + sizeof(operands); -} - s32 CachedInterpreter::CheckBreakpoint(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands) { @@ -344,14 +335,25 @@ bool CachedInterpreter::DoJit(u32 em_address, JitBlock* b, u32 nextPC) js.firstFPInstructionFound = true; } - if (op.canEndBlock) - Write(WritePC, {js.compilerPC}); - Write(Interpret, - {interpreter, Interpreter::GetInterpreterOp(op.inst), js.compilerPC, op.inst}); - if (jo.memcheck && (op.opinfo->flags & FL_LOADSTORE) != 0) - Write(CheckDSI, {power_pc, js.compilerPC, js.downcountAmount}); - if (!op.canEndBlock && ShouldHandleFPExceptionForInstruction(&op)) - Write(CheckProgramException, {power_pc, js.compilerPC, js.downcountAmount}); + // Instruction may cause a DSI Exception or Program Exception. + if ((jo.memcheck && (op.opinfo->flags & FL_LOADSTORE) != 0) || + (!op.canEndBlock && ShouldHandleFPExceptionForInstruction(&op))) + { + const InterpretAndCheckExceptionsOperands operands = { + {interpreter, Interpreter::GetInterpreterOp(op.inst), js.compilerPC, op.inst}, + power_pc, + js.downcountAmount}; + Write(op.canEndBlock ? InterpretAndCheckExceptions : + InterpretAndCheckExceptions, + operands); + } + else + { + const InterpretOperands operands = {interpreter, Interpreter::GetInterpreterOp(op.inst), + js.compilerPC, op.inst}; + Write(op.canEndBlock ? Interpret : Interpret, operands); + } + if (op.branchIsIdleLoop) Write(CheckIdle, {m_system.GetCoreTiming(), js.blockStart}); if (op.canEndBlock) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h index a1c87a8986..8b4752dbb8 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h @@ -64,20 +64,22 @@ private: struct EndBlockOperands; struct InterpretOperands; + struct InterpretAndCheckExceptionsOperands; struct HLEFunctionOperands; - struct WritePCOperands; + struct WriteBrokenBlockNPCOperands; struct CheckHaltOperands; struct CheckIdleOperands; static s32 EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlockOperands& operands); + template static s32 Interpret(PowerPC::PowerPCState& ppc_state, const InterpretOperands& operands); + template + static s32 InterpretAndCheckExceptions(PowerPC::PowerPCState& ppc_state, + const InterpretAndCheckExceptionsOperands& operands); static s32 HLEFunction(PowerPC::PowerPCState& ppc_state, const HLEFunctionOperands& operands); - static s32 WritePC(PowerPC::PowerPCState& ppc_state, const WritePCOperands& operands); - static s32 WriteBrokenBlockNPC(PowerPC::PowerPCState& ppc_state, const WritePCOperands& operands); + static s32 WriteBrokenBlockNPC(PowerPC::PowerPCState& ppc_state, + const WriteBrokenBlockNPCOperands& operands); static s32 CheckFPU(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands); - static s32 CheckDSI(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands); - static s32 CheckProgramException(PowerPC::PowerPCState& ppc_state, - const CheckHaltOperands& operands); static s32 CheckBreakpoint(PowerPC::PowerPCState& ppc_state, const CheckHaltOperands& operands); static s32 CheckIdle(PowerPC::PowerPCState& ppc_state, const CheckIdleOperands& operands); @@ -101,6 +103,12 @@ struct CachedInterpreter::InterpretOperands UGeckoInstruction inst; }; +struct CachedInterpreter::InterpretAndCheckExceptionsOperands : InterpretOperands +{ + PowerPC::PowerPCManager& power_pc; + u32 downcount; +}; + struct CachedInterpreter::HLEFunctionOperands { Core::System& system; @@ -108,7 +116,7 @@ struct CachedInterpreter::HLEFunctionOperands u32 hook_index; }; -struct CachedInterpreter::WritePCOperands +struct CachedInterpreter::WriteBrokenBlockNPCOperands { u32 current_pc; u32 : 32; From 347aab7ab38a0aecbe60c2e57f1b577197d4969b Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Wed, 24 Jul 2024 19:04:26 -0400 Subject: [PATCH 209/296] Fixed achievements not working after a disc change. --- Source/Core/Core/AchievementManager.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 932ca45656..a1288a2b70 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -156,7 +156,6 @@ void AchievementManager::LoadGame(const std::string& file_path, const DiscIO::Vo rc_client_set_unofficial_enabled(m_client, Config::Get(Config::RA_UNOFFICIAL_ENABLED)); rc_client_set_encore_mode_enabled(m_client, Config::Get(Config::RA_ENCORE_ENABLED)); rc_client_set_spectator_mode_enabled(m_client, Config::Get(Config::RA_SPECTATOR_ENABLED)); - rc_client_set_read_memory_function(m_client, MemoryVerifier); if (volume) { std::lock_guard lg{m_lock}; @@ -181,6 +180,7 @@ void AchievementManager::LoadGame(const std::string& file_path, const DiscIO::Vo } else { + rc_client_set_read_memory_function(m_client, MemoryVerifier); rc_client_begin_identify_and_load_game(m_client, RC_CONSOLE_GAMECUBE, file_path.c_str(), NULL, 0, LoadGameCallback, NULL); } @@ -863,7 +863,9 @@ void AchievementManager::ChangeMediaCallback(int result, const char* error_messa { AchievementManager::GetInstance().m_loading_volume.reset(nullptr); if (result == RC_OK) + { return; + } if (result == RC_HARDCORE_DISABLED) { @@ -876,7 +878,6 @@ void AchievementManager::ChangeMediaCallback(int result, const char* error_messa ERROR_LOG_FMT(ACHIEVEMENTS, "RetroAchievements media change failed: {}", error_message); } - rc_client_set_read_memory_function(AchievementManager::GetInstance().m_client, MemoryPeeker); } void AchievementManager::DisplayWelcomeMessage() From d627b78c46ef752211a0aa7f259cd9f7e2415985 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Fri, 26 Jul 2024 14:24:16 -0700 Subject: [PATCH 210/296] Adjust order and spacing of various #includes Move some #includes around to match the Contributing guidelines. --- Source/Core/AudioCommon/WaveFile.cpp | 2 +- Source/Core/Common/ColorUtil.cpp | 1 + Source/Core/Common/Crypto/AES.cpp | 3 ++- Source/Core/Common/GL/GLInterface/AGL.mm | 1 + Source/Core/Common/GL/GLX11Window.cpp | 1 + Source/Core/Core/HLE/HLE_VarArgs.cpp | 5 +++-- Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp | 2 +- Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp | 3 ++- Source/Core/DolphinNoGUI/Platform.cpp | 1 + Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp | 2 +- Source/Core/DolphinQt/CheatSearchWidget.cpp | 2 +- Source/Core/DolphinQt/Config/ARCodeWidget.cpp | 2 +- Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp | 2 +- Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm | 1 + Source/Core/VideoCommon/AbstractFramebuffer.cpp | 1 + .../GraphicsModSystem/Runtime/CustomShaderCache.cpp | 1 + Source/Core/VideoCommon/PerfQueryBase.cpp | 2 ++ 17 files changed, 22 insertions(+), 10 deletions(-) diff --git a/Source/Core/AudioCommon/WaveFile.cpp b/Source/Core/AudioCommon/WaveFile.cpp index b2345aca59..3c74bd0cc4 100644 --- a/Source/Core/AudioCommon/WaveFile.cpp +++ b/Source/Core/AudioCommon/WaveFile.cpp @@ -2,12 +2,12 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "AudioCommon/WaveFile.h" -#include "AudioCommon/Mixer.h" #include #include +#include "AudioCommon/Mixer.h" #include "Common/CommonTypes.h" #include "Common/FileUtil.h" #include "Common/IOFile.h" diff --git a/Source/Core/Common/ColorUtil.cpp b/Source/Core/Common/ColorUtil.cpp index f56fac6b38..0f1a0dc69c 100644 --- a/Source/Core/Common/ColorUtil.cpp +++ b/Source/Core/Common/ColorUtil.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "Common/ColorUtil.h" + #include "Common/Swap.h" namespace Common diff --git a/Source/Core/Common/Crypto/AES.cpp b/Source/Core/Common/Crypto/AES.cpp index 272341ecca..e27e6659ad 100644 --- a/Source/Core/Common/Crypto/AES.cpp +++ b/Source/Core/Common/Crypto/AES.cpp @@ -1,6 +1,8 @@ // Copyright 2017 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later +#include "Common/Crypto/AES.h" + #include #include #include @@ -9,7 +11,6 @@ #include "Common/Assert.h" #include "Common/CPUDetect.h" -#include "Common/Crypto/AES.h" #ifdef _MSC_VER #include diff --git a/Source/Core/Common/GL/GLInterface/AGL.mm b/Source/Core/Common/GL/GLInterface/AGL.mm index 5f2d3b0675..1b8ff224d1 100644 --- a/Source/Core/Common/GL/GLInterface/AGL.mm +++ b/Source/Core/Common/GL/GLInterface/AGL.mm @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "Common/GL/GLInterface/AGL.h" + #include "Common/Logging/Log.h" // UpdateCachedDimensions and AttachContextToView contain calls to UI APIs, so they must only be diff --git a/Source/Core/Common/GL/GLX11Window.cpp b/Source/Core/Common/GL/GLX11Window.cpp index 3e8a721856..d8f072d1a7 100644 --- a/Source/Core/Common/GL/GLX11Window.cpp +++ b/Source/Core/Common/GL/GLX11Window.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "Common/GL/GLX11Window.h" + #include "Common/GL/GLContext.h" GLX11Window::GLX11Window(Display* display, Window parent_window, Colormap color_map, Window window, diff --git a/Source/Core/Core/HLE/HLE_VarArgs.cpp b/Source/Core/Core/HLE/HLE_VarArgs.cpp index faef168943..453940f2c2 100644 --- a/Source/Core/Core/HLE/HLE_VarArgs.cpp +++ b/Source/Core/Core/HLE/HLE_VarArgs.cpp @@ -2,11 +2,12 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "Core/HLE/HLE_VarArgs.h" -#include "Core/Core.h" -#include "Core/System.h" #include "Common/Logging/Log.h" +#include "Core/Core.h" +#include "Core/System.h" + HLE::SystemVABI::VAList::~VAList() = default; u32 HLE::SystemVABI::VAList::GetGPR(u32 gpr) const diff --git a/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp b/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp index 1f3b9fcbcd..bbfdfa19de 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp @@ -2,13 +2,13 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "Core/HW/EXI/BBA/TAP_Win32.h" -#include "Core/HW/EXI/EXI_DeviceEthernet.h" #include "Common/Assert.h" #include "Common/Logging/Log.h" #include "Common/MsgHandler.h" #include "Common/StringUtil.h" #include "Core/HW/EXI/EXI_Device.h" +#include "Core/HW/EXI/EXI_DeviceEthernet.h" namespace Win32TAPHelper { diff --git a/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp b/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp index a5a223712c..0293ae41e4 100644 --- a/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/DesiredWiimoteState.cpp @@ -1,6 +1,8 @@ // Copyright 2022 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later +#include "Core/HW/WiimoteEmu/DesiredWiimoteState.h" + #include #include #include @@ -9,7 +11,6 @@ #include "Common/BitUtils.h" #include "Common/CommonTypes.h" -#include "Core/HW/WiimoteEmu/DesiredWiimoteState.h" #include "Core/HW/WiimoteEmu/Extension/Classic.h" #include "Core/HW/WiimoteEmu/Extension/DrawsomeTablet.h" #include "Core/HW/WiimoteEmu/Extension/Drums.h" diff --git a/Source/Core/DolphinNoGUI/Platform.cpp b/Source/Core/DolphinNoGUI/Platform.cpp index 04319b5da4..d057678788 100644 --- a/Source/Core/DolphinNoGUI/Platform.cpp +++ b/Source/Core/DolphinNoGUI/Platform.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinNoGUI/Platform.h" + #include "Core/HW/ProcessorInterface.h" #include "Core/IOS/IOS.h" #include "Core/IOS/STM/STM.h" diff --git a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp index e1970dacc5..3b5ddcb1c1 100644 --- a/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/CheatSearchFactoryWidget.h" -#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -26,6 +25,7 @@ #include "Core/System.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" CheatSearchFactoryWidget::CheatSearchFactoryWidget() { diff --git a/Source/Core/DolphinQt/CheatSearchWidget.cpp b/Source/Core/DolphinQt/CheatSearchWidget.cpp index c2b1854677..3a4c024c97 100644 --- a/Source/Core/DolphinQt/CheatSearchWidget.cpp +++ b/Source/Core/DolphinQt/CheatSearchWidget.cpp @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/CheatSearchWidget.h" -#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -42,6 +41,7 @@ #include "DolphinQt/Config/CheatCodeEditor.h" #include "DolphinQt/Config/CheatWarningWidget.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include "DolphinQt/Settings.h" #include "UICommon/GameFile.h" diff --git a/Source/Core/DolphinQt/Config/ARCodeWidget.cpp b/Source/Core/DolphinQt/Config/ARCodeWidget.cpp index 93f0d7e589..d40d4f9109 100644 --- a/Source/Core/DolphinQt/Config/ARCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/ARCodeWidget.cpp @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/Config/ARCodeWidget.h" -#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -25,6 +24,7 @@ #include "DolphinQt/Config/HardcoreWarningWidget.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include "UICommon/GameFile.h" diff --git a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp index 7f37241ee6..d87162214d 100644 --- a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "DolphinQt/Config/GeckoCodeWidget.h" -#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include #include @@ -31,6 +30,7 @@ #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" +#include "DolphinQt/QtUtils/WrapInScrollArea.h" #include "UICommon/GameFile.h" diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm index 5d52595835..e0a504604a 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "InputCommon/ControllerInterface/Quartz/Quartz.h" + #include "InputCommon/ControllerInterface/ControllerInterface.h" #include "InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h" diff --git a/Source/Core/VideoCommon/AbstractFramebuffer.cpp b/Source/Core/VideoCommon/AbstractFramebuffer.cpp index beb6c6752b..18a6cd6014 100644 --- a/Source/Core/VideoCommon/AbstractFramebuffer.cpp +++ b/Source/Core/VideoCommon/AbstractFramebuffer.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "VideoCommon/AbstractFramebuffer.h" + #include "VideoCommon/AbstractTexture.h" AbstractFramebuffer::AbstractFramebuffer(AbstractTexture* color_attachment, diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp index de68bffa63..29d801cc52 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.h" + #include "VideoCommon/AbstractGfx.h" #include "VideoCommon/VideoConfig.h" diff --git a/Source/Core/VideoCommon/PerfQueryBase.cpp b/Source/Core/VideoCommon/PerfQueryBase.cpp index a4492cb328..ed8c3366a1 100644 --- a/Source/Core/VideoCommon/PerfQueryBase.cpp +++ b/Source/Core/VideoCommon/PerfQueryBase.cpp @@ -2,7 +2,9 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "VideoCommon/PerfQueryBase.h" + #include + #include "VideoCommon/VideoConfig.h" std::unique_ptr g_perf_query; From f9450f1460956238cdbd647f5e0e3593f67a70eb Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 27 Jul 2024 15:42:12 +0200 Subject: [PATCH 211/296] GameINI: SVX.ini: Replace `EFBToTextureEnable=False` with `ImmediateXFBEnable=False` To fix flickering pre-rendered cutscenes, the former doesn't do anything anymore, while the latter does. --- Data/Sys/GameSettings/SVX.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Sys/GameSettings/SVX.ini b/Data/Sys/GameSettings/SVX.ini index f92ea1afee..9f5097db38 100644 --- a/Data/Sys/GameSettings/SVX.ini +++ b/Data/Sys/GameSettings/SVX.ini @@ -13,4 +13,4 @@ # Add action replay cheats here. [Video_Hacks] -EFBToTextureEnable = False +ImmediateXFBEnable = False From 991bce2d68ddad63a42318ebd6325603aeb5f693 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 27 Jul 2024 16:33:47 +0200 Subject: [PATCH 212/296] Config: Don't depend on `is_dirty` to save SYSCONF during restore `Layer::Save` only does its thing if the layer has `is_dirty == true`. But SYSCONF could have been modified by other layers, so if the base layer wasn't made dirty by anything else, then it wouldn't be restored. Fixes https://bugs.dolphin-emu.org/issues/13580 --- Source/Core/Core/BootManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/Core/BootManager.cpp b/Source/Core/Core/BootManager.cpp index 81192b4821..52a3ec910f 100644 --- a/Source/Core/Core/BootManager.cpp +++ b/Source/Core/Core/BootManager.cpp @@ -209,8 +209,7 @@ static void RestoreSYSCONF() }, setting.config_info); } - // Save the SYSCONF. - Config::GetLayer(Config::LayerType::Base)->Save(); + ConfigLoaders::SaveToSYSCONF(Config::LayerType::Base); } void RestoreConfig() From 7215610dfe891c429c8c1f1c01df94b186643199 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Thu, 25 Jul 2024 14:36:35 +0200 Subject: [PATCH 213/296] Add Bloom definitions for Need for Speed: Nitro --- .../GraphicMods/Need for Speed Nitro/R7X.txt | 0 .../Need for Speed Nitro/metadata.json | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 Data/Sys/Load/GraphicMods/Need for Speed Nitro/R7X.txt create mode 100644 Data/Sys/Load/GraphicMods/Need for Speed Nitro/metadata.json diff --git a/Data/Sys/Load/GraphicMods/Need for Speed Nitro/R7X.txt b/Data/Sys/Load/GraphicMods/Need for Speed Nitro/R7X.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Data/Sys/Load/GraphicMods/Need for Speed Nitro/metadata.json b/Data/Sys/Load/GraphicMods/Need for Speed Nitro/metadata.json new file mode 100644 index 0000000000..dd810c2fcc --- /dev/null +++ b/Data/Sys/Load/GraphicMods/Need for Speed Nitro/metadata.json @@ -0,0 +1,19 @@ +{ + "meta": + { + "title": "Bloom Texture Definitions", + "author": "SuperSamus" + }, + "groups": + [ + { + "name": "Bloom", + "targets": [ + { + "type": "efb", + "texture_filename": "efb1_n000008_160x120_4" + } + ] + } + ] +} \ No newline at end of file From 7cafd78ffc3f30bcb0f790bc0236777fca0e7812 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 27 Jul 2024 20:22:25 -0700 Subject: [PATCH 214/296] MainAndroid: Use JNI_FALSE instead of static_cast(false) --- Source/Android/jni/MainAndroid.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 23fc782aeb..2ca05572a8 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -420,8 +420,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteJitBloc if (jit_interface.GetCore() == nullptr) { env->CallStaticVoidMethod(native_library_class, IDCache::GetDisplayToastMsg(), - ToJString(env, Common::GetStringT("JIT is not active")), - static_cast(false)); + ToJString(env, Common::GetStringT("JIT is not active")), JNI_FALSE); return; } const std::string filename = fmt::format("{}{}.txt", File::GetUserPath(D_DUMPDEBUG_JITBLOCKS_IDX), @@ -432,13 +431,13 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteJitBloc env->CallStaticVoidMethod( native_library_class, IDCache::GetDisplayToastMsg(), ToJString(env, Common::FmtFormatT("Failed to open \"{0}\" for writing.", filename)), - static_cast(false)); + JNI_FALSE); return; } jit_interface.JitBlockLogDump(Core::CPUThreadGuard{system}, f.GetHandle()); env->CallStaticVoidMethod(native_library_class, IDCache::GetDisplayToastMsg(), ToJString(env, Common::FmtFormatT("Wrote to \"{0}\".", filename)), - static_cast(false)); + JNI_FALSE); } // Surface Handling @@ -701,7 +700,7 @@ JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_ConvertD blob_reader = DiscIO::CreateBlobReader(in_path); if (!blob_reader) - return static_cast(false); + return JNI_FALSE; jobject jCallbackGlobal = env->NewGlobalRef(jCallback); Common::ScopeGuard scope_guard([jCallbackGlobal, env] { env->DeleteGlobalRef(jCallbackGlobal); }); From 7b0a7f15b08bf59437627e33946f2c301948317a Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 20 Jul 2024 21:06:07 +0200 Subject: [PATCH 215/296] Android: Use structural equality for sensorDetails To fix the crash in input device sensor handling, we should look up Sensors using structural equality. Unfortunately, Sensor.equals implements referential equality, and HashMap doesn't let us provide a custom comparator. Because the number of sensors is relatively small, and because we have a reason to keep a sorted list of sensors around anyway, let's switch from HashMap to ArrayList. --- .../input/model/DolphinSensorEventListener.kt | 61 ++++++++++--------- 1 file changed, 33 insertions(+), 28 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt index e89143aa31..ee9885ce7a 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt @@ -19,6 +19,7 @@ class DolphinSensorEventListener : SensorEventListener { private class AxisSetDetails(val firstAxisOfSet: Int, val axisSetType: Int) private class SensorDetails( + val sensor: Sensor, val sensorType: Int, val axisNames: Array, val axisSetDetails: Array @@ -28,7 +29,7 @@ class DolphinSensorEventListener : SensorEventListener { private val sensorManager: SensorManager? - private val sensorDetails = HashMap() + private val sensorDetails = ArrayList() private val rotateCoordinatesForScreenOrientation: Boolean @@ -40,6 +41,7 @@ class DolphinSensorEventListener : SensorEventListener { .getSystemService(Context.SENSOR_SERVICE) as SensorManager? rotateCoordinatesForScreenOrientation = true addSensors() + sortSensorDetails() } @Keep @@ -58,6 +60,7 @@ class DolphinSensorEventListener : SensorEventListener { } else { null } + sortSensorDetails() } private fun addSensors() { @@ -254,15 +257,22 @@ class DolphinSensorEventListener : SensorEventListener { ) { val sensor = sensorManager!!.getDefaultSensor(sensorType) if (sensor != null) { - sensorDetails[sensor] = SensorDetails(sensorType, axisNames, axisSetDetails) + sensorDetails.add(SensorDetails(sensor, sensorType, axisNames, axisSetDetails)) } } + private fun sortSensorDetails() { + Collections.sort( + sensorDetails, + Comparator.comparingInt { s: SensorDetails -> s.sensorType } + ) + } + override fun onSensorChanged(sensorEvent: SensorEvent) { - val sensorDetails = sensorDetails[sensorEvent.sensor] + val sensorDetails = sensorDetails.first{s -> sensorsAreEqual(s.sensor, sensorEvent.sensor)} val values = sensorEvent.values - val axisNames = sensorDetails!!.axisNames + val axisNames = sensorDetails.axisNames val axisSetDetails = sensorDetails.axisSetDetails var eventAxisIndex = 0 @@ -356,7 +366,7 @@ class DolphinSensorEventListener : SensorEventListener { } } if (!keepSensorAlive) { - setSensorSuspended(sensorEvent.sensor, sensorDetails, true) + setSensorSuspended(sensorDetails, true) } } @@ -381,18 +391,14 @@ class DolphinSensorEventListener : SensorEventListener { */ @Keep fun requestUnsuspendSensor(axisName: String) { - for ((key, value) in sensorDetails) { - if (listOf(*value.axisNames).contains(axisName)) { - setSensorSuspended(key, value, false) + for (sd in sensorDetails) { + if (listOf(*sd.axisNames).contains(axisName)) { + setSensorSuspended(sd, false) } } } - private fun setSensorSuspended( - sensor: Sensor, - sensorDetails: SensorDetails, - suspend: Boolean - ) { + private fun setSensorSuspended(sensorDetails: SensorDetails, suspend: Boolean) { var changeOccurred = false synchronized(sensorDetails) { @@ -404,9 +410,9 @@ class DolphinSensorEventListener : SensorEventListener { ) if (suspend) - sensorManager!!.unregisterListener(this, sensor) + sensorManager!!.unregisterListener(this, sensorDetails.sensor) else - sensorManager!!.registerListener(this, sensor, SAMPLING_PERIOD_US) + sensorManager!!.registerListener(this, sensorDetails.sensor, SAMPLING_PERIOD_US) sensorDetails.isSuspended = suspend @@ -415,14 +421,14 @@ class DolphinSensorEventListener : SensorEventListener { } if (changeOccurred) { - Log.info((if (suspend) "Suspended sensor " else "Unsuspended sensor ") + sensor.name) + Log.info((if (suspend) "Suspended sensor " else "Unsuspended sensor ") + sensorDetails.sensor.name) } } @Keep fun getAxisNames(): Array { val axisNames = ArrayList() - for (sensorDetails in sensorDetailsSorted) { + for (sensorDetails in sensorDetails) { sensorDetails.axisNames.forEach { axisNames.add(it) } } return axisNames.toArray(arrayOf()) @@ -432,7 +438,7 @@ class DolphinSensorEventListener : SensorEventListener { fun getNegativeAxes(): BooleanArray { val negativeAxes = ArrayList() - for (sensorDetails in sensorDetailsSorted) { + for (sensorDetails in sensorDetails) { var eventAxisIndex = 0 var detailsAxisIndex = 0 var detailsAxisSetIndex = 0 @@ -467,22 +473,13 @@ class DolphinSensorEventListener : SensorEventListener { return result } - private val sensorDetailsSorted: List - get() { - val sensorDetails = ArrayList(sensorDetails.values) - Collections.sort( - sensorDetails, - Comparator.comparingInt { s: SensorDetails -> s.sensorType } - ) - return sensorDetails - } - companion object { // Set of three axes. Creates a negative companion to each axis, and corrects for device rotation. private const val AXIS_SET_TYPE_DEVICE_COORDINATES = 0 // Set of three axes. Creates a negative companion to each axis. private const val AXIS_SET_TYPE_OTHER_COORDINATES = 1 + private var deviceRotation = Surface.ROTATION_0 // The fastest sampling rate Android lets us use without declaring the HIGH_SAMPLING_RATE_SENSORS @@ -500,5 +497,13 @@ class DolphinSensorEventListener : SensorEventListener { fun setDeviceRotation(deviceRotation: Int) { this.deviceRotation = deviceRotation } + + private fun sensorsAreEqual(s1: Sensor, s2: Sensor): Boolean { + return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N && s1.id > 0 && s2.id > 0) { + s1.type == s2.type && s1.id == s2.id + } else { + s1.type == s2.type && s1.name == s2.name + } + } } } From 59cbe5a84324e079535babce673c9116d2cfe56f Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 20 Jul 2024 21:41:38 +0200 Subject: [PATCH 216/296] Android: Add workaround for AOSP input device sensor suspend bug --- .../input/model/DolphinSensorEventListener.kt | 57 +++++++++++++++++-- 1 file changed, 53 insertions(+), 4 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt index ee9885ce7a..6076b67384 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt @@ -25,6 +25,7 @@ class DolphinSensorEventListener : SensorEventListener { val axisSetDetails: Array ) { var isSuspended = true + var hasRegisteredListener = false } private val sensorManager: SensorManager? @@ -33,6 +34,16 @@ class DolphinSensorEventListener : SensorEventListener { private val rotateCoordinatesForScreenOrientation: Boolean + /** + * AOSP has a bug in InputDeviceSensorManager where + * InputSensorEventListenerDelegate.removeSensor attempts to modify an ArrayList it's iterating + * through in a way that throws a ConcurrentModificationException. Because of this, we can't + * suspend individual sensors for InputDevices, but we can suspend all sensors at once. + */ + private val canSuspendSensorsIndividually: Boolean + + private var unsuspendedSensors = 0 + private var deviceQualifier = "" @Keep @@ -40,6 +51,7 @@ class DolphinSensorEventListener : SensorEventListener { sensorManager = DolphinApplication.getAppContext() .getSystemService(Context.SENSOR_SERVICE) as SensorManager? rotateCoordinatesForScreenOrientation = true + canSuspendSensorsIndividually = true addSensors() sortSensorDetails() } @@ -47,6 +59,7 @@ class DolphinSensorEventListener : SensorEventListener { @Keep constructor(inputDevice: InputDevice) { rotateCoordinatesForScreenOrientation = false + canSuspendSensorsIndividually = false sensorManager = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { inputDevice.sensorManager @@ -409,10 +422,46 @@ class DolphinSensorEventListener : SensorEventListener { suspend ) - if (suspend) - sensorManager!!.unregisterListener(this, sensorDetails.sensor) - else - sensorManager!!.registerListener(this, sensorDetails.sensor, SAMPLING_PERIOD_US) + if (suspend) { + unsuspendedSensors -= 1 + } else { + unsuspendedSensors += 1 + } + + if (canSuspendSensorsIndividually) { + if (suspend) { + sensorManager!!.unregisterListener(this, sensorDetails.sensor) + } else { + sensorManager!!.registerListener( + this, + sensorDetails.sensor, + SAMPLING_PERIOD_US + ) + } + sensorDetails.hasRegisteredListener = !suspend + } else { + if (suspend) { + // If there are no unsuspended sensors left, unregister them all. + // Otherwise, leave unregistering for later. A possible alternative could be + // to unregister everything and then re-register the sensors we still want, + // but I fear this could lead to dropped inputs. + if (unsuspendedSensors == 0) { + sensorManager!!.unregisterListener(this) + for (sd in this.sensorDetails) { + sd.hasRegisteredListener = false + } + } + } else { + if (!sensorDetails.hasRegisteredListener) { + sensorManager!!.registerListener( + this, + sensorDetails.sensor, + SAMPLING_PERIOD_US + ) + sensorDetails.hasRegisteredListener = true + } + } + } sensorDetails.isSuspended = suspend From 91930459895f179f360414ae9a0d7a9253a4fedd Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 15 Jun 2024 14:09:22 +0200 Subject: [PATCH 217/296] Revert "Android: Disable input device sensor input due to crash" This reverts commit 75fb1a7edfb12f490b08ab0b76a8e2f1536d2d9b. --- .../input/model/DolphinSensorEventListener.kt | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt index 6076b67384..6aa5ce2fc0 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/input/model/DolphinSensorEventListener.kt @@ -60,18 +60,11 @@ class DolphinSensorEventListener : SensorEventListener { constructor(inputDevice: InputDevice) { rotateCoordinatesForScreenOrientation = false canSuspendSensorsIndividually = false - sensorManager = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { - inputDevice.sensorManager - - // TODO: There is a bug where after suspending sensors, onSensorChanged can get called for - // a sensor that we never registered as a listener for. The way our code is currently written, - // this causes a NullPointerException, but if we checked for null we would instead have the - // problem of being spammed with onSensorChanged calls even though the sensor shouldn't be - // enabled. For now, let's comment out the ability to use InputDevice sensors. - - //addSensors(); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { + sensorManager = inputDevice.sensorManager + addSensors() } else { - null + sensorManager = null } sortSensorDetails() } From defc38b258bbf984c463e18058b2f61478f202bc Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 28 Jul 2024 12:09:15 +0200 Subject: [PATCH 218/296] InputCommon: Translate ExpressionParser error messages The _trans macro marks strings for translation but doesn't do anything at runtime. For that, we need to use a function like GetStringT. --- .../ControlReference/ExpressionParser.cpp | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp index b76c170a2f..2e2adab6c0 100644 --- a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp +++ b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp @@ -15,7 +15,7 @@ #include #include "Common/Assert.h" -#include "Common/Common.h" +#include "Common/MsgHandler.h" #include "Common/StringUtil.h" #include "InputCommon/ControlReference/FunctionExpression.h" @@ -454,7 +454,7 @@ static ParseResult MakeLiteralExpression(const Token& token) if (TryParse(token.data, &val)) return ParseResult::MakeSuccessfulResult(std::make_unique(val)); else - return ParseResult::MakeErrorResult(token, _trans("Invalid literal.")); + return ParseResult::MakeErrorResult(token, Common::GetStringT("Invalid literal.")); } class VariableExpression : public Expression @@ -690,7 +690,7 @@ public: if (Peek().type == TOK_EOF) return result; - return ParseResult::MakeErrorResult(Peek(), _trans("Expected end of expression.")); + return ParseResult::MakeErrorResult(Peek(), Common::GetStringT("Expected end of expression.")); } private: @@ -758,7 +758,7 @@ private: // Comma before the next argument. if (TOK_COMMA != tok.type) - return ParseResult::MakeErrorResult(tok, _trans("Expected comma.")); + return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected comma.")); }; } } @@ -771,7 +771,8 @@ private: std::get(argument_validation).text + ')'; - return ParseResult::MakeErrorResult(func_tok, _trans("Expected arguments: " + text)); + return ParseResult::MakeErrorResult(func_tok, + Common::FmtFormatT("Expected arguments: {0}", text)); } return ParseResult::MakeSuccessfulResult(std::move(func)); @@ -812,7 +813,7 @@ private: case TOK_VARIABLE: { if (tok.data.empty()) - return ParseResult::MakeErrorResult(tok, _trans("Expected variable name.")); + return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected variable name.")); else return ParseResult::MakeSuccessfulResult(std::make_unique(tok.data)); } @@ -838,7 +839,7 @@ private: } default: { - return ParseResult::MakeErrorResult(tok, _trans("Expected start of expression.")); + return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected start of expression.")); } } } @@ -908,7 +909,7 @@ private: const auto rparen = Chew(); if (rparen.type != TOK_RPAREN) { - return ParseResult::MakeErrorResult(rparen, _trans("Expected closing paren.")); + return ParseResult::MakeErrorResult(rparen, Common::GetStringT("Expected closing paren.")); } return result; @@ -918,7 +919,7 @@ private: { Token tok = Chew(); if (tok.type != TOK_LPAREN) - return ParseResult::MakeErrorResult(tok, _trans("Expected opening paren.")); + return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected opening paren.")); std::vector> inputs; @@ -927,7 +928,7 @@ private: tok = Chew(); if (tok.type != TOK_CONTROL && tok.type != TOK_BAREWORD) - return ParseResult::MakeErrorResult(tok, _trans("Expected name of input.")); + return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected name of input.")); ControlQualifier cq; cq.FromString(tok.data); @@ -941,7 +942,7 @@ private: if (tok.type == TOK_RPAREN) break; - return ParseResult::MakeErrorResult(tok, _trans("Expected + or closing paren.")); + return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected + or closing paren.")); } return ParseResult::MakeSuccessfulResult(std::make_unique(std::move(inputs))); @@ -961,7 +962,8 @@ static ParseResult ParseComplexExpression(const std::string& str) std::vector tokens; const ParseStatus tokenize_status = l.Tokenize(tokens); if (tokenize_status != ParseStatus::Successful) - return ParseResult::MakeErrorResult(Token(TOK_INVALID), _trans("Tokenizing failed.")); + return ParseResult::MakeErrorResult(Token(TOK_INVALID), + Common::GetStringT("Tokenizing failed.")); RemoveInertTokens(&tokens); return ParseTokens(tokens); From 9a730bacce411e9a4ad68e58d8275d1a16ef595f Mon Sep 17 00:00:00 2001 From: MayImilae Date: Sun, 28 Jul 2024 03:30:08 -0700 Subject: [PATCH 219/296] Change Dual Core (speedup) to Dual Core (speedhack) --- Source/Android/app/src/main/res/values/strings.xml | 2 +- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 052a0a0028..a195ef08ea 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -69,7 +69,7 @@ General - Dual Core + Dual Core (speedhack) Split workload to two CPU cores instead of one. Increases speed. Enable Cheats Speed Limit (0% = Unlimited) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 00f7c5ea17..4804c72102 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -140,7 +140,7 @@ void GeneralPane::CreateBasic() basic_group->setLayout(basic_group_layout); m_main_layout->addWidget(basic_group); - m_checkbox_dualcore = new QCheckBox(tr("Enable Dual Core (speedup)")); + m_checkbox_dualcore = new QCheckBox(tr("Enable Dual Core (speedhack)")); basic_group_layout->addWidget(m_checkbox_dualcore); m_checkbox_cheats = new QCheckBox(tr("Enable Cheats")); From 9d2f5245f49a7bdcc265001c420bc9f61e629a34 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 28 Jul 2024 14:24:38 +0200 Subject: [PATCH 220/296] i18n: Add comments and improve source strings Most of these changes are to improve consistency in capitalization. --- .../DolphinQt/Achievements/AchievementBox.cpp | 1 + .../AchievementSettingsWidget.cpp | 2 + .../DolphinQt/Config/FilesystemWidget.cpp | 5 +- Source/Core/DolphinQt/ConvertDialog.cpp | 4 +- .../DolphinQt/Debugger/AssemblerWidget.cpp | 2 +- .../DolphinQt/Debugger/BranchWatchDialog.cpp | 12 ++-- .../DolphinQt/Debugger/CodeViewWidget.cpp | 60 +++++++++---------- .../Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp | 4 +- Source/Core/DolphinQt/GCMemcardManager.cpp | 4 +- Source/Core/DolphinQt/MainWindow.cpp | 4 +- Source/Core/DolphinQt/MenuBar.cpp | 24 ++++---- .../Core/DolphinQt/Settings/GameCubePane.cpp | 7 +-- .../Core/DolphinQt/Settings/GeneralPane.cpp | 6 +- .../Core/DolphinQt/Settings/InterfacePane.cpp | 24 ++++---- Source/Core/DolphinQt/Settings/WiiPane.cpp | 4 +- 15 files changed, 84 insertions(+), 79 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp index 63562f2573..2b73ba83b0 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementBox.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementBox.cpp @@ -97,6 +97,7 @@ void AchievementBox::UpdateData() if (m_achievement->unlock_time != 0) { m_status->setText( + // i18n: %1 is a date/time. tr("Unlocked at %1") .arg(QDateTime::fromSecsSinceEpoch(m_achievement->unlock_time).toString())); } diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index fe83fe9146..6359fd1900 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -114,11 +114,13 @@ void AchievementSettingsWidget::CreateLayout() m_common_layout->addWidget(m_common_login_button); m_common_layout->addWidget(m_common_logout_button); m_common_layout->addWidget(m_common_login_failed); + // i18n: Settings that affect the functionality of unlocking achievements. m_common_layout->addWidget(new QLabel(tr("Function Settings"))); m_common_layout->addWidget(m_common_hardcore_enabled_input); m_common_layout->addWidget(m_common_unofficial_enabled_input); m_common_layout->addWidget(m_common_encore_enabled_input); m_common_layout->addWidget(m_common_spectator_enabled_input); + // i18n: Settings that affect how achievements are displayed while playing. m_common_layout->addWidget(new QLabel(tr("Display Settings"))); #ifdef USE_DISCORD_PRESENCE m_common_layout->addWidget(m_common_discord_presence_enabled_input); diff --git a/Source/Core/DolphinQt/Config/FilesystemWidget.cpp b/Source/Core/DolphinQt/Config/FilesystemWidget.cpp index de8b366310..8a78981f5e 100644 --- a/Source/Core/DolphinQt/Config/FilesystemWidget.cpp +++ b/Source/Core/DolphinQt/Config/FilesystemWidget.cpp @@ -213,8 +213,7 @@ void FilesystemWidget::PopulateDirectory(int partition_id, QStandardItem* root, QString FilesystemWidget::SelectFolder() { - return DolphinFileDialog::getExistingDirectory(this, - QObject::tr("Choose the folder to extract to")); + return DolphinFileDialog::getExistingDirectory(this, QObject::tr("Choose Folder to Extract To")); } void FilesystemWidget::ShowContextMenu(const QPoint&) @@ -300,7 +299,7 @@ void FilesystemWidget::ShowContextMenu(const QPoint&) case EntryType::File: menu->addAction(tr("Extract File..."), this, [this, partition, path] { auto dest = - DolphinFileDialog::getSaveFileName(this, tr("Save File to"), QFileInfo(path).fileName()); + DolphinFileDialog::getSaveFileName(this, tr("Save File To"), QFileInfo(path).fileName()); if (!dest.isEmpty()) ExtractFile(partition, path, dest); diff --git a/Source/Core/DolphinQt/ConvertDialog.cpp b/Source/Core/DolphinQt/ConvertDialog.cpp index 4ed7536c52..1e9d5ef46d 100644 --- a/Source/Core/DolphinQt/ConvertDialog.cpp +++ b/Source/Core/DolphinQt/ConvertDialog.cpp @@ -367,7 +367,7 @@ void ConvertDialog::Convert() if (m_files.size() > 1) { dst_dir = DolphinFileDialog::getExistingDirectory( - this, tr("Select where you want to save the converted images"), + this, tr("Save Converted Image"), QFileInfo(QString::fromStdString(m_files[0]->GetFilePath())).dir().absolutePath()); if (dst_dir.isEmpty()) @@ -376,7 +376,7 @@ void ConvertDialog::Convert() else { dst_path = DolphinFileDialog::getSaveFileName( - this, tr("Select where you want to save the converted image"), + this, tr("Save Converted Image"), QFileInfo(QString::fromStdString(m_files[0]->GetFilePath())) .dir() .absoluteFilePath( diff --git a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp index 8dba286c01..d62c5c447f 100644 --- a/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp @@ -770,7 +770,7 @@ bool AssemblerWidget::SaveEditor(AsmEditor* editor) QString selected_filter; save_path = DolphinFileDialog::getSaveFileName( - this, tr("Save File to"), QString::fromStdString(default_dir), + this, tr("Save File To"), QString::fromStdString(default_dir), QStringLiteral("%1;;%2").arg(asm_filter).arg(all_filter), &selected_filter); if (save_path.isEmpty()) diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp index 4b6233678c..3a8aaf479a 100644 --- a/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp @@ -595,7 +595,7 @@ void BranchWatchDialog::OnSaveAs() } const QString filepath = DolphinFileDialog::getSaveFileName( - this, tr("Save Branch Watch snapshot"), + this, tr("Save Branch Watch Snapshot"), QString::fromStdString(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)), tr("Text file (*.txt);;All Files (*)")); if (filepath.isEmpty()) @@ -612,7 +612,7 @@ void BranchWatchDialog::OnLoad() void BranchWatchDialog::OnLoadFrom() { const QString filepath = DolphinFileDialog::getOpenFileName( - this, tr("Load Branch Watch snapshot"), + this, tr("Load Branch Watch Snapshot"), QString::fromStdString(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)), tr("Text file (*.txt);;All Files (*)"), nullptr, QFileDialog::Option::ReadOnly); if (filepath.isEmpty()) @@ -775,7 +775,7 @@ void BranchWatchDialog::OnToggleAutoSave(bool checked) const QString filepath = DolphinFileDialog::getSaveFileName( // i18n: If the user selects a file, Branch Watch will save to that file. // If the user presses Cancel, Branch Watch will save to a file in the user folder. - this, tr("Select Branch Watch snapshot auto-save file (for user folder location, cancel)"), + this, tr("Select Branch Watch Snapshot Auto-Save File (for user folder location, cancel)"), QString::fromStdString(File::GetUserPath(D_DUMPDEBUG_BRANCHWATCH_IDX)), tr("Text file (*.txt);;All Files (*)")); if (filepath.isEmpty()) @@ -1042,11 +1042,11 @@ QMenu* BranchWatchDialog::GetTableContextMenu(const QModelIndex& index) m_mnu_set_breakpoint = new QMenu(tr("Set Brea&kpoint")); m_act_break_on_hit = m_mnu_set_breakpoint->addAction( - tr("&Break On Hit"), this, &BranchWatchDialog::OnTableSetBreakpointBreak); - m_act_log_on_hit = m_mnu_set_breakpoint->addAction(tr("&Log On Hit"), this, + tr("&Break on Hit"), this, &BranchWatchDialog::OnTableSetBreakpointBreak); + m_act_log_on_hit = m_mnu_set_breakpoint->addAction(tr("&Log on Hit"), this, &BranchWatchDialog::OnTableSetBreakpointLog); m_act_both_on_hit = m_mnu_set_breakpoint->addAction( - tr("Break &And Log On Hit"), this, &BranchWatchDialog::OnTableSetBreakpointBoth); + tr("Break &and Log on Hit"), this, &BranchWatchDialog::OnTableSetBreakpointBoth); m_mnu_table_context->addMenu(m_mnu_set_breakpoint); } diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 6e7e12dcd2..c6ca41d64c 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -156,6 +156,7 @@ CodeViewWidget::CodeViewWidget() horizontalHeader()->setStretchLastSection(true); setHorizontalHeaderItem(CODE_VIEW_COLUMN_BREAKPOINT, new QTableWidgetItem()); setHorizontalHeaderItem(CODE_VIEW_COLUMN_ADDRESS, new QTableWidgetItem(tr("Address"))); + // i18n: Short for "Instruction" setHorizontalHeaderItem(CODE_VIEW_COLUMN_INSTRUCTION, new QTableWidgetItem(tr("Instr."))); setHorizontalHeaderItem(CODE_VIEW_COLUMN_PARAMETERS, new QTableWidgetItem(tr("Parameters"))); setHorizontalHeaderItem(CODE_VIEW_COLUMN_DESCRIPTION, new QTableWidgetItem(tr("Symbols"))); @@ -569,44 +570,44 @@ void CodeViewWidget::OnContextMenu() const bool has_symbol = m_ppc_symbol_db.GetSymbolFromAddr(addr); auto* follow_branch_action = - menu->addAction(tr("Follow &branch"), this, &CodeViewWidget::OnFollowBranch); + menu->addAction(tr("Follow &Branch"), this, &CodeViewWidget::OnFollowBranch); menu->addSeparator(); - menu->addAction(tr("&Copy address"), this, &CodeViewWidget::OnCopyAddress); + menu->addAction(tr("&Copy Address"), this, &CodeViewWidget::OnCopyAddress); auto* copy_address_action = - menu->addAction(tr("Copy &function"), this, &CodeViewWidget::OnCopyFunction); + menu->addAction(tr("Copy &Function"), this, &CodeViewWidget::OnCopyFunction); auto* copy_line_action = - menu->addAction(tr("Copy code &line"), this, &CodeViewWidget::OnCopyCode); - auto* copy_hex_action = menu->addAction(tr("Copy &hex"), this, &CodeViewWidget::OnCopyHex); + menu->addAction(tr("Copy Code &Line"), this, &CodeViewWidget::OnCopyCode); + auto* copy_hex_action = menu->addAction(tr("Copy &Hex"), this, &CodeViewWidget::OnCopyHex); - menu->addAction(tr("Show in &memory"), this, &CodeViewWidget::OnShowInMemory); + menu->addAction(tr("Show in &Memory"), this, &CodeViewWidget::OnShowInMemory); auto* show_target_memory = - menu->addAction(tr("Show target in memor&y"), this, &CodeViewWidget::OnShowTargetInMemory); + menu->addAction(tr("Show Target in Memor&y"), this, &CodeViewWidget::OnShowTargetInMemory); auto* copy_target_memory = - menu->addAction(tr("Copy tar&get address"), this, &CodeViewWidget::OnCopyTargetAddress); + menu->addAction(tr("Copy Tar&get Sddress"), this, &CodeViewWidget::OnCopyTargetAddress); menu->addSeparator(); auto* symbol_rename_action = - menu->addAction(tr("&Rename symbol"), this, &CodeViewWidget::OnRenameSymbol); + menu->addAction(tr("&Rename Symbol"), this, &CodeViewWidget::OnRenameSymbol); auto* symbol_size_action = - menu->addAction(tr("Set symbol &size"), this, &CodeViewWidget::OnSetSymbolSize); + menu->addAction(tr("Set Symbol &Size"), this, &CodeViewWidget::OnSetSymbolSize); auto* symbol_end_action = - menu->addAction(tr("Set symbol &end address"), this, &CodeViewWidget::OnSetSymbolEndAddress); + menu->addAction(tr("Set Symbol &End Address"), this, &CodeViewWidget::OnSetSymbolEndAddress); menu->addSeparator(); - auto* run_to_action = menu->addAction(tr("Run &To Here"), this, &CodeViewWidget::OnRunToHere); + auto* run_to_action = menu->addAction(tr("Run &to Here"), this, &CodeViewWidget::OnRunToHere); auto* function_action = - menu->addAction(tr("&Add function"), this, &CodeViewWidget::OnAddFunction); + menu->addAction(tr("&Add Function"), this, &CodeViewWidget::OnAddFunction); auto* ppc_action = menu->addAction(tr("PPC vs Host"), this, &CodeViewWidget::OnPPCComparison); - auto* insert_blr_action = menu->addAction(tr("&Insert blr"), this, &CodeViewWidget::OnInsertBLR); - auto* insert_nop_action = menu->addAction(tr("Insert &nop"), this, &CodeViewWidget::OnInsertNOP); + auto* insert_blr_action = menu->addAction(tr("&Insert BLR"), this, &CodeViewWidget::OnInsertBLR); + auto* insert_nop_action = menu->addAction(tr("Insert &NOP"), this, &CodeViewWidget::OnInsertNOP); auto* replace_action = - menu->addAction(tr("Re&place instruction"), this, &CodeViewWidget::OnReplaceInstruction); + menu->addAction(tr("Re&place Instruction"), this, &CodeViewWidget::OnReplaceInstruction); auto* assemble_action = - menu->addAction(tr("Assemble instruction"), this, &CodeViewWidget::OnAssembleInstruction); + menu->addAction(tr("Assemble Instruction"), this, &CodeViewWidget::OnAssembleInstruction); auto* restore_action = - menu->addAction(tr("Restore instruction"), this, &CodeViewWidget::OnRestoreInstruction); + menu->addAction(tr("Restore Instruction"), this, &CodeViewWidget::OnRestoreInstruction); QString target; bool valid_load_store = false; @@ -631,14 +632,14 @@ void CodeViewWidget::OnContextMenu() follow_branch_enabled = GetBranchFromAddress(guard, addr); } - auto* run_until_menu = menu->addMenu(tr("Run until (ignoring breakpoints)")); - // i18n: One of the options shown below "Run until (ignoring breakpoints)" + auto* run_until_menu = menu->addMenu(tr("Run Until (Ignoring Breakpoints)")); + // i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" run_until_menu->addAction(tr("%1's value is hit").arg(target), this, [this] { AutoStep(CodeTrace::AutoStop::Always); }); - // i18n: One of the options shown below "Run until (ignoring breakpoints)" + // i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" run_until_menu->addAction(tr("%1's value is used").arg(target), this, [this] { AutoStep(CodeTrace::AutoStop::Used); }); - // i18n: One of the options shown below "Run until (ignoring breakpoints)" + // i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" run_until_menu->addAction(tr("%1's value is changed").arg(target), [this] { AutoStep(CodeTrace::AutoStop::Changed); }); @@ -677,7 +678,7 @@ void CodeViewWidget::AutoStep(CodeTrace::AutoStop option) CodeTrace code_trace; bool repeat = false; - QMessageBox msgbox(QMessageBox::NoIcon, tr("Run until"), {}, QMessageBox::Cancel); + QMessageBox msgbox(QMessageBox::NoIcon, tr("Run Until"), {}, QMessageBox::Cancel); QPushButton* run_button = msgbox.addButton(tr("Keep Running"), QMessageBox::AcceptRole); // Not sure if we want default to be cancel. Spacebar can let you quickly continue autostepping if // Yes. @@ -930,7 +931,7 @@ void CodeViewWidget::OnRenameSymbol() bool good; const QString name = - QInputDialog::getText(this, tr("Rename symbol"), tr("Symbol name:"), QLineEdit::Normal, + QInputDialog::getText(this, tr("Rename Symbol"), tr("Symbol Name:"), QLineEdit::Normal, QString::fromStdString(symbol->name), &good, Qt::WindowCloseButtonHint); if (good && !name.isEmpty()) @@ -963,10 +964,9 @@ void CodeViewWidget::OnSetSymbolSize() return; bool good; - const int size = - QInputDialog::getInt(this, tr("Rename symbol"), - tr("Set symbol size (%1):").arg(QString::fromStdString(symbol->name)), - symbol->size, 1, 0xFFFF, 1, &good, Qt::WindowCloseButtonHint); + const int size = QInputDialog::getInt( + this, tr("Rename Symbol"), tr("Symbol Size (%1):").arg(QString::fromStdString(symbol->name)), + symbol->size, 1, 0xFFFF, 1, &good, Qt::WindowCloseButtonHint); if (!good) return; @@ -988,8 +988,8 @@ void CodeViewWidget::OnSetSymbolEndAddress() bool good; const QString name = QInputDialog::getText( - this, tr("Set symbol end address"), - tr("Symbol (%1) end address:").arg(QString::fromStdString(symbol->name)), QLineEdit::Normal, + this, tr("Set Symbol End Address"), + tr("Symbol End Address (%1):").arg(QString::fromStdString(symbol->name)), QLineEdit::Normal, QStringLiteral("%1").arg(addr + symbol->size, 8, 16, QLatin1Char('0')), &good, Qt::WindowCloseButtonHint); diff --git a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp index 4d2cadb6ca..c01381f9a6 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp +++ b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp @@ -214,7 +214,7 @@ void FIFOPlayerWindow::AddDescriptions() void FIFOPlayerWindow::LoadRecording() { - QString path = DolphinFileDialog::getOpenFileName(this, tr("Open FIFO log"), QString(), + QString path = DolphinFileDialog::getOpenFileName(this, tr("Open FIFO Log"), QString(), tr("Dolphin FIFO Log (*.dff)")); if (path.isEmpty()) @@ -225,7 +225,7 @@ void FIFOPlayerWindow::LoadRecording() void FIFOPlayerWindow::SaveRecording() { - QString path = DolphinFileDialog::getSaveFileName(this, tr("Save FIFO log"), QString(), + QString path = DolphinFileDialog::getSaveFileName(this, tr("Save FIFO Log"), QString(), tr("Dolphin FIFO Log (*.dff)")); if (path.isEmpty()) diff --git a/Source/Core/DolphinQt/GCMemcardManager.cpp b/Source/Core/DolphinQt/GCMemcardManager.cpp index 405bee200e..2bdca764ab 100644 --- a/Source/Core/DolphinQt/GCMemcardManager.cpp +++ b/Source/Core/DolphinQt/GCMemcardManager.cpp @@ -356,8 +356,8 @@ void GCMemcardManager::SetSlotFileInteractive(Slot slot) { QString path = QDir::toNativeSeparators( DolphinFileDialog::getOpenFileName(this, - slot == Slot::A ? tr("Set memory card file for Slot A") : - tr("Set memory card file for Slot B"), + slot == Slot::A ? tr("Set Memory Card File for Slot A") : + tr("Set Memory Card File for Slot B"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)), QStringLiteral("%1 (*.raw *.gcp);;%2 (*)") .arg(tr("GameCube Memory Cards"), tr("All Files")))); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index e68673a205..a02f26b7a9 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1820,7 +1820,7 @@ void MainWindow::OnImportNANDBackup() return; QString file = - DolphinFileDialog::getOpenFileName(this, tr("Select the save file"), QDir::currentPath(), + DolphinFileDialog::getOpenFileName(this, tr("Select NAND Backup"), QDir::currentPath(), tr("BootMii NAND backup file (*.bin);;" "All Files (*)")); @@ -1846,7 +1846,7 @@ void MainWindow::OnImportNANDBackup() [this] { std::optional keys_file = RunOnObject(this, [this] { return DolphinFileDialog::getOpenFileName( - this, tr("Select the keys file (OTP/SEEPROM dump)"), QDir::currentPath(), + this, tr("Select Keys File (OTP/SEEPROM Dump)"), QDir::currentPath(), tr("BootMii keys file (*.bin);;" "All Files (*)")) .toStdString(); diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 22b109ce74..b7dac7c918 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -1097,8 +1097,8 @@ void MenuBar::UpdateToolsMenu(bool emulation_started) void MenuBar::InstallWAD() { - QString wad_file = DolphinFileDialog::getOpenFileName( - this, tr("Select a title to install to NAND"), QString(), tr("WAD files (*.wad)")); + QString wad_file = DolphinFileDialog::getOpenFileName(this, tr("Select Title to Install to NAND"), + QString(), tr("WAD files (*.wad)")); if (wad_file.isEmpty()) return; @@ -1118,7 +1118,7 @@ void MenuBar::InstallWAD() void MenuBar::ImportWiiSave() { QString file = - DolphinFileDialog::getOpenFileName(this, tr("Select the save file"), QDir::currentPath(), + DolphinFileDialog::getOpenFileName(this, tr("Select Save File"), QDir::currentPath(), tr("Wii save files (*.bin);;" "All Files (*)")); @@ -1586,7 +1586,7 @@ void MenuBar::SaveSymbolMap() void MenuBar::LoadOtherSymbolMap() { const QString file = DolphinFileDialog::getOpenFileName( - this, tr("Load map file"), QString::fromStdString(File::GetUserPath(D_MAPS_IDX)), + this, tr("Load Map File"), QString::fromStdString(File::GetUserPath(D_MAPS_IDX)), tr("Dolphin Map File (*.map)")); if (file.isEmpty()) @@ -1603,7 +1603,7 @@ void MenuBar::LoadOtherSymbolMap() void MenuBar::LoadBadSymbolMap() { const QString file = DolphinFileDialog::getOpenFileName( - this, tr("Load map file"), QString::fromStdString(File::GetUserPath(D_MAPS_IDX)), + this, tr("Load Map File"), QString::fromStdString(File::GetUserPath(D_MAPS_IDX)), tr("Dolphin Map File (*.map)")); if (file.isEmpty()) @@ -1621,7 +1621,7 @@ void MenuBar::SaveSymbolMapAs() { const std::string& title_id_str = SConfig::GetInstance().m_debugger_game_id; const QString file = DolphinFileDialog::getSaveFileName( - this, tr("Save map file"), + this, tr("Save Map File"), QString::fromStdString(File::GetUserPath(D_MAPS_IDX) + "/" + title_id_str + ".map"), tr("Dolphin Map File (*.map)")); @@ -1677,7 +1677,7 @@ void MenuBar::CreateSignatureFile() this, tr("Input"), tr("Only export symbols with prefix:\n(Blank for all symbols)"), QLineEdit::Normal, QString{}, nullptr, Qt::WindowCloseButtonHint); - const QString file = DolphinFileDialog::getSaveFileName(this, tr("Save signature file"), + const QString file = DolphinFileDialog::getSaveFileName(this, tr("Save Signature File"), QDir::homePath(), GetSignatureSelector()); if (file.isEmpty()) return; @@ -1702,7 +1702,7 @@ void MenuBar::AppendSignatureFile() this, tr("Input"), tr("Only append symbols with prefix:\n(Blank for all symbols)"), QLineEdit::Normal, QString{}, nullptr, Qt::WindowCloseButtonHint); - const QString file = DolphinFileDialog::getSaveFileName(this, tr("Append signature to"), + const QString file = DolphinFileDialog::getSaveFileName(this, tr("Append Signature To"), QDir::homePath(), GetSignatureSelector()); if (file.isEmpty()) return; @@ -1725,7 +1725,7 @@ void MenuBar::AppendSignatureFile() void MenuBar::ApplySignatureFile() { - const QString file = DolphinFileDialog::getOpenFileName(this, tr("Apply signature file"), + const QString file = DolphinFileDialog::getOpenFileName(this, tr("Apply Signature File"), QDir::homePath(), GetSignatureSelector()); if (file.isEmpty()) @@ -1745,17 +1745,17 @@ void MenuBar::ApplySignatureFile() void MenuBar::CombineSignatureFiles() { const QString priorityFile = DolphinFileDialog::getOpenFileName( - this, tr("Choose priority input file"), QDir::homePath(), GetSignatureSelector()); + this, tr("Choose Priority Input File"), QDir::homePath(), GetSignatureSelector()); if (priorityFile.isEmpty()) return; const QString secondaryFile = DolphinFileDialog::getOpenFileName( - this, tr("Choose secondary input file"), QDir::homePath(), GetSignatureSelector()); + this, tr("Choose Secondary Input File"), QDir::homePath(), GetSignatureSelector()); if (secondaryFile.isEmpty()) return; const QString saveFile = DolphinFileDialog::getSaveFileName( - this, tr("Save combined output file as"), QDir::homePath(), GetSignatureSelector()); + this, tr("Save Combined Output File As"), QDir::homePath(), GetSignatureSelector()); if (saveFile.isEmpty()) return; diff --git a/Source/Core/DolphinQt/Settings/GameCubePane.cpp b/Source/Core/DolphinQt/Settings/GameCubePane.cpp index 07abe76a65..806e0c7840 100644 --- a/Source/Core/DolphinQt/Settings/GameCubePane.cpp +++ b/Source/Core/DolphinQt/Settings/GameCubePane.cpp @@ -434,7 +434,7 @@ void GameCubePane::BrowseMemcard(ExpansionInterface::Slot slot) ASSERT(ExpansionInterface::IsMemcardSlot(slot)); const QString filename = DolphinFileDialog::getSaveFileName( - this, tr("Choose a file to open or create"), + this, tr("Choose a File to Open or Create"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)), tr("GameCube Memory Cards (*.raw *.gcp)"), nullptr, QFileDialog::DontConfirmOverwrite); @@ -538,8 +538,7 @@ void GameCubePane::BrowseGCIFolder(ExpansionInterface::Slot slot) ASSERT(ExpansionInterface::IsMemcardSlot(slot)); const QString path = DolphinFileDialog::getExistingDirectory( - this, tr("Choose the GCI base folder"), - QString::fromStdString(File::GetUserPath(D_GCUSER_IDX))); + this, tr("Choose GCI Base Folder"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX))); if (!path.isEmpty()) SetGCIFolder(slot, path); @@ -645,7 +644,7 @@ void GameCubePane::BrowseAGPRom(ExpansionInterface::Slot slot) ASSERT(ExpansionInterface::IsMemcardSlot(slot)); QString filename = DolphinFileDialog::getSaveFileName( - this, tr("Choose a file to open"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)), + this, tr("Choose a File to Open"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)), tr("Game Boy Advance Carts (*.gba)"), nullptr, QFileDialog::DontConfirmOverwrite); if (!filename.isEmpty()) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 00f7c5ea17..05976e62b3 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -194,8 +194,12 @@ void GeneralPane::CreateAutoUpdate() auto_update_group_layout->addRow(tr("&Auto Update:"), m_combobox_update_track); for (const QString& option : - {tr("Don't Update"), tr("Releases (every few months)"), tr("Dev (multiple times a day)")}) + {tr("Don't Update"), + // i18n: Releases is a noun. + tr("Releases (every few months)"), tr("Dev (multiple times a day)")}) + { m_combobox_update_track->addItem(option); + } } void GeneralPane::CreateFallbackRegion() diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 42f186abee..1fc0caea71 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -262,7 +262,7 @@ void InterfacePane::UpdateShowDebuggingCheckbox() ->setChecked(Settings::Instance().IsDebugModeEnabled()); static constexpr char TR_SHOW_DEBUGGING_UI_DESCRIPTION[] = QT_TR_NOOP( - "Shows Dolphin's debugging User Interface. This lets you view and modify a game's code and " + "Shows Dolphin's debugging user interface. This lets you view and modify a game's code and " "memory contents, set debugging breakpoints, examine network requests, and more." "

If unsure, leave this unchecked."); static constexpr char TR_DISABLED_IN_HARDCORE_DESCRIPTION[] = @@ -317,7 +317,7 @@ void InterfacePane::OnLanguageChanged() void InterfacePane::AddDescriptions() { static constexpr char TR_TITLE_DATABASE_DESCRIPTION[] = QT_TR_NOOP( - "Uses Dolphin's database of properly formatted names in the Game List Title column." + "Uses Dolphin's database of properly formatted names in the game list's Title column." "

If unsure, leave this checked."); static constexpr char TR_THEME_DESCRIPTION[] = QT_TR_NOOP("Changes the appearance and color of Dolphin's buttons." @@ -326,16 +326,16 @@ void InterfacePane::AddDescriptions() QT_TR_NOOP("Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked."); static constexpr char TR_LANGUAGE_DESCRIPTION[] = QT_TR_NOOP( - "Sets the language displayed by Dolphin's User Interface." + "Sets the language displayed by Dolphin's user interface." "

Changes to this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>."); static constexpr char TR_FOCUSED_HOTKEYS_DESCRIPTION[] = QT_TR_NOOP("Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked."); static constexpr char TR_USE_COVERS_DESCRIPTION[] = - QT_TR_NOOP("Downloads full game covers from GameTDB.com to display in the Game List's Grid " - "View. If this setting is unchecked the Game List displays a banner generated " - "from the game's save files, and if the game has no save file displays a generic " + QT_TR_NOOP("Downloads full game covers from GameTDB.com to display in the game list's Grid " + "View. If this setting is unchecked, the game list displays a banner from the " + "game's save data, and if the game has no save file, displays a generic " "banner instead." "

List View will always use the save file banners." "

If unsure, leave this checked."); @@ -361,22 +361,22 @@ void InterfacePane::AddDescriptions() QT_TR_NOOP("Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked."); static constexpr char TR_LOCK_MOUSE_DESCRIPTION[] = - QT_TR_NOOP("Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " + QT_TR_NOOP("Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it." "

If unsure, leave this unchecked."); static constexpr char TR_CURSOR_VISIBLE_MOVEMENT_DESCRIPTION[] = - QT_TR_NOOP("Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." + QT_TR_NOOP("Shows the mouse cursor briefly whenever it has recently moved, then hides it." "

If unsure, select this mode."); static constexpr char TR_CURSOR_VISIBLE_NEVER_DESCRIPTION[] = QT_TR_NOOP( - "Hides the Mouse Cursor whenever it is inside the render window and the render window is " + "Hides the mouse cursor whenever it is inside the render window and the render window is " "focused." "

If unsure, select "On Movement"."); static constexpr char TR_CURSOR_VISIBLE_ALWAYS_DESCRIPTION[] = QT_TR_NOOP( - "Shows the Mouse Cursor at all times." + "Shows the mouse cursor at all times." "

If unsure, select "On Movement"."); static constexpr char TR_USER_STYLE_DESCRIPTION[] = - QT_TR_NOOP("Sets the style of Dolphin's User Interface. Any Custom User Styles that you have " - "loaded will be presented here, allowing you to switch to them." + QT_TR_NOOP("Sets the style of Dolphin's user interface. Any custom styles that you have " + "added will be presented here, allowing you to switch to them." "

If unsure, select (System)."); m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION)); diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp index b6ad36654f..d7ae90b815 100644 --- a/Source/Core/DolphinQt/Settings/WiiPane.cpp +++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp @@ -503,7 +503,7 @@ void WiiPane::PopulateUSBPassthroughListWidget() void WiiPane::BrowseSDRaw() { QString file = QDir::toNativeSeparators(DolphinFileDialog::getOpenFileName( - this, tr("Select a SD Card Image"), + this, tr("Select SD Card Image"), QString::fromStdString(Config::Get(Config::MAIN_WII_SD_CARD_IMAGE_PATH)), tr("SD Card Image (*.raw);;" "All Files (*)"))); @@ -520,7 +520,7 @@ void WiiPane::SetSDRaw(const QString& path) void WiiPane::BrowseSDSyncFolder() { QString file = QDir::toNativeSeparators(DolphinFileDialog::getExistingDirectory( - this, tr("Select a Folder to sync with the SD Card Image"), + this, tr("Select a Folder to Sync with the SD Card Image"), QString::fromStdString(Config::Get(Config::MAIN_WII_SD_CARD_SYNC_FOLDER_PATH)))); if (!file.isEmpty()) SetSDSyncFolder(file); From 4f0954dd447ca604832688f6eb9798e8245ca334 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sun, 28 Jul 2024 15:45:52 -0700 Subject: [PATCH 221/296] MainAndroid: Thread Correctness In WriteJitBlockLogDump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In a race condition, the core could shut down between the `JitInterface::GetCore` nullptr check and the `JitInterface::JitBlockLogDump` call which constructs a `CPUThreadGuard`. In this scenario, nothing horrible happens—`JitBlockLogDump` also checks for a nullptr—but it would be a failure to display the correct feedback to the user. --- Source/Android/jni/MainAndroid.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 2ca05572a8..811b28c32b 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -417,6 +417,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteJitBloc HostThreadLock guard; auto& system = Core::System::GetInstance(); auto& jit_interface = system.GetJitInterface(); + const Core::CPUThreadGuard cpu_guard(system); if (jit_interface.GetCore() == nullptr) { env->CallStaticVoidMethod(native_library_class, IDCache::GetDisplayToastMsg(), @@ -434,7 +435,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteJitBloc JNI_FALSE); return; } - jit_interface.JitBlockLogDump(Core::CPUThreadGuard{system}, f.GetHandle()); + jit_interface.JitBlockLogDump(cpu_guard, f.GetHandle()); env->CallStaticVoidMethod(native_library_class, IDCache::GetDisplayToastMsg(), ToJString(env, Common::FmtFormatT("Wrote to \"{0}\".", filename)), JNI_FALSE); From d4e6bd9d18a57e9b473bbbe966be54c1bcf859f3 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 29 Jul 2024 12:16:13 -0400 Subject: [PATCH 222/296] MacUpdater: Remove unused variables in CMakeLists --- Source/Core/MacUpdater/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt index 7ce5a58a5f..9d006a52a5 100644 --- a/Source/Core/MacUpdater/CMakeLists.txt +++ b/Source/Core/MacUpdater/CMakeLists.txt @@ -13,8 +13,6 @@ set(SOURCES add_executable(MacUpdater ${SOURCES}) set(MacUpdater_NAME "Dolphin Updater") -set(MacUpdater_BIN_DIR ${CMAKE_BINARY_DIR}/Binaries) -set(MacUpdater_BUNDLE_PATH ${MacUpdater_BIN_DIR}/${MacUpdater_NAME}.app) add_dependencies(MacUpdater dolphin_scmrev) From 4883483d0914a160ea769284ce5a464ec0face5b Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 29 Jul 2024 12:17:08 -0400 Subject: [PATCH 223/296] MacUpdater: Don't set bundle name via a CMake variable --- Source/Core/MacUpdater/CMakeLists.txt | 4 +--- Source/Core/MacUpdater/Info.plist.in | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt index 9d006a52a5..71c0408317 100644 --- a/Source/Core/MacUpdater/CMakeLists.txt +++ b/Source/Core/MacUpdater/CMakeLists.txt @@ -12,14 +12,12 @@ set(SOURCES add_executable(MacUpdater ${SOURCES}) -set(MacUpdater_NAME "Dolphin Updater") - add_dependencies(MacUpdater dolphin_scmrev) set_target_properties(MacUpdater PROPERTIES MACOSX_BUNDLE true MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/Info.plist" - OUTPUT_NAME ${MacUpdater_NAME}) + OUTPUT_NAME "Dolphin Updater") target_compile_options(MacUpdater PRIVATE -x objective-c++) diff --git a/Source/Core/MacUpdater/Info.plist.in b/Source/Core/MacUpdater/Info.plist.in index f9c9263682..df5967f289 100644 --- a/Source/Core/MacUpdater/Info.plist.in +++ b/Source/Core/MacUpdater/Info.plist.in @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion English CFBundleExecutable - ${MacUpdater_NAME} + Dolphin Updater CFBundleIconFile Dolphin.icns CFBundleIdentifier From b2107023bae14ebba544d27bc4dfe42f1f1b60d4 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 27 Nov 2023 22:06:08 -0800 Subject: [PATCH 224/296] GeneralPane: Add BalloonTip to dualcore checkbox --- .../Core/DolphinQt/Settings/GeneralPane.cpp | 19 +++++++++++++++---- Source/Core/DolphinQt/Settings/GeneralPane.h | 4 +++- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 4804c72102..8aabfdb9fe 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -24,6 +24,7 @@ #include "Core/PowerPC/PowerPC.h" #include "Core/System.h" +#include "DolphinQt/Config/ConfigControls/ConfigBool.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" @@ -52,6 +53,7 @@ GeneralPane::GeneralPane(QWidget* parent) : QWidget(parent) { CreateLayout(); LoadConfig(); + AddDescriptions(); ConnectLayout(); @@ -97,7 +99,6 @@ void GeneralPane::OnEmulationStateChanged(Core::State state) void GeneralPane::ConnectLayout() { - connect(m_checkbox_dualcore, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); connect(m_checkbox_cheats, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); connect(m_checkbox_override_region_settings, &QCheckBox::stateChanged, this, &GeneralPane::OnSaveConfig); @@ -140,7 +141,7 @@ void GeneralPane::CreateBasic() basic_group->setLayout(basic_group_layout); m_main_layout->addWidget(basic_group); - m_checkbox_dualcore = new QCheckBox(tr("Enable Dual Core (speedhack)")); + m_checkbox_dualcore = new ConfigBool(tr("Enable Dual Core (speedhack)"), Config::MAIN_CPU_THREAD); basic_group_layout->addWidget(m_checkbox_dualcore); m_checkbox_cheats = new QCheckBox(tr("Enable Cheats")); @@ -261,7 +262,6 @@ void GeneralPane::LoadConfig() SignalBlocking(m_checkbox_enable_analytics) ->setChecked(Settings::Instance().IsAnalyticsEnabled()); #endif - SignalBlocking(m_checkbox_dualcore)->setChecked(Config::Get(Config::MAIN_CPU_THREAD)); SignalBlocking(m_checkbox_cheats)->setChecked(Settings::Instance().GetCheatsEnabled()); SignalBlocking(m_checkbox_override_region_settings) ->setChecked(Config::Get(Config::MAIN_OVERRIDE_REGION_SETTINGS)); @@ -353,7 +353,6 @@ void GeneralPane::OnSaveConfig() Settings::Instance().SetAnalyticsEnabled(m_checkbox_enable_analytics->isChecked()); DolphinAnalytics::Instance().ReloadConfig(); #endif - Config::SetBaseOrCurrent(Config::MAIN_CPU_THREAD, m_checkbox_dualcore->isChecked()); Settings::Instance().SetCheatsEnabled(m_checkbox_cheats->isChecked()); Config::SetBaseOrCurrent(Config::MAIN_OVERRIDE_REGION_SETTINGS, m_checkbox_override_region_settings->isChecked()); @@ -378,3 +377,15 @@ void GeneralPane::GenerateNewIdentity() message_box.exec(); } #endif + +void GeneralPane::AddDescriptions() +{ + static constexpr char TR_DUALCORE_DESCRIPTION[] = + QT_TR_NOOP("Separates CPU and GPU emulation work to separate threads. Reduces single-thread " + "burden by spreading Dolphin's heaviest load across two cores, which usually " + "improves performance. However, it can result in glitches and crashes." + "

This setting cannot be changed while emulation is active." + "

If unsure, leave this checked."); + + m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); +} diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 476cc67510..2fc68ddc13 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -5,6 +5,7 @@ #include +class ConfigBool; class QCheckBox; class QComboBox; class QLabel; @@ -30,6 +31,7 @@ private: void CreateBasic(); void CreateAutoUpdate(); void CreateFallbackRegion(); + void AddDescriptions(); void LoadConfig(); void OnSaveConfig(); @@ -40,7 +42,7 @@ private: QComboBox* m_combobox_speedlimit; QComboBox* m_combobox_update_track; QComboBox* m_combobox_fallback_region; - QCheckBox* m_checkbox_dualcore; + ConfigBool* m_checkbox_dualcore; QCheckBox* m_checkbox_cheats; QCheckBox* m_checkbox_override_region_settings; QCheckBox* m_checkbox_auto_disc_change; From d9336a5de0d4a487eebfe9368f8cd406505ff3c6 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 27 Nov 2023 22:47:28 -0800 Subject: [PATCH 225/296] GeneralPane: Add BalloonTip to cheats checkbox --- .../Achievements/AchievementSettingsWidget.cpp | 2 +- Source/Core/DolphinQt/Settings.cpp | 9 --------- Source/Core/DolphinQt/Settings.h | 1 - Source/Core/DolphinQt/Settings/GeneralPane.cpp | 15 ++++++++++----- Source/Core/DolphinQt/Settings/GeneralPane.h | 2 +- 5 files changed, 12 insertions(+), 17 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index fe83fe9146..622b2e848f 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -266,7 +266,7 @@ void AchievementSettingsWidget::ToggleHardcore() if (Config::Get(Config::MAIN_EMULATION_SPEED) < 1.0f) Config::SetBaseOrCurrent(Config::MAIN_EMULATION_SPEED, 1.0f); Config::SetBaseOrCurrent(Config::FREE_LOOK_ENABLED, false); - Settings::Instance().SetCheatsEnabled(false); + Config::SetBaseOrCurrent(Config::MAIN_ENABLE_CHEATS, false); Settings::Instance().SetDebugModeEnabled(false); } emit Settings::Instance().EmulationStateChanged(Core::GetState(Core::System::GetInstance())); diff --git a/Source/Core/DolphinQt/Settings.cpp b/Source/Core/DolphinQt/Settings.cpp index 195cf16579..ec930711a1 100644 --- a/Source/Core/DolphinQt/Settings.cpp +++ b/Source/Core/DolphinQt/Settings.cpp @@ -539,15 +539,6 @@ bool Settings::GetCheatsEnabled() const return Config::Get(Config::MAIN_ENABLE_CHEATS); } -void Settings::SetCheatsEnabled(bool enabled) -{ - if (Config::Get(Config::MAIN_ENABLE_CHEATS) != enabled) - { - Config::SetBaseOrCurrent(Config::MAIN_ENABLE_CHEATS, enabled); - emit EnableCheatsChanged(enabled); - } -} - void Settings::SetDebugModeEnabled(bool enabled) { if (AchievementManager::GetInstance().IsHardcoreModeActive()) diff --git a/Source/Core/DolphinQt/Settings.h b/Source/Core/DolphinQt/Settings.h index a1ceb0c8c5..f59e7c143b 100644 --- a/Source/Core/DolphinQt/Settings.h +++ b/Source/Core/DolphinQt/Settings.h @@ -145,7 +145,6 @@ public: // Cheats bool GetCheatsEnabled() const; - void SetCheatsEnabled(bool enabled); // Debug void SetDebugModeEnabled(bool enabled); diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 8aabfdb9fe..fab903a873 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -99,7 +99,8 @@ void GeneralPane::OnEmulationStateChanged(Core::State state) void GeneralPane::ConnectLayout() { - connect(m_checkbox_cheats, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); + connect(m_checkbox_cheats, &QCheckBox::toggled, &Settings::Instance(), + &Settings::EnableCheatsChanged); connect(m_checkbox_override_region_settings, &QCheckBox::stateChanged, this, &GeneralPane::OnSaveConfig); connect(m_checkbox_auto_disc_change, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); @@ -144,7 +145,7 @@ void GeneralPane::CreateBasic() m_checkbox_dualcore = new ConfigBool(tr("Enable Dual Core (speedhack)"), Config::MAIN_CPU_THREAD); basic_group_layout->addWidget(m_checkbox_dualcore); - m_checkbox_cheats = new QCheckBox(tr("Enable Cheats")); + m_checkbox_cheats = new ConfigBool(tr("Enable Cheats"), Config::MAIN_ENABLE_CHEATS); basic_group_layout->addWidget(m_checkbox_cheats); m_checkbox_override_region_settings = new QCheckBox(tr("Allow Mismatched Region Settings")); @@ -262,7 +263,6 @@ void GeneralPane::LoadConfig() SignalBlocking(m_checkbox_enable_analytics) ->setChecked(Settings::Instance().IsAnalyticsEnabled()); #endif - SignalBlocking(m_checkbox_cheats)->setChecked(Settings::Instance().GetCheatsEnabled()); SignalBlocking(m_checkbox_override_region_settings) ->setChecked(Config::Get(Config::MAIN_OVERRIDE_REGION_SETTINGS)); SignalBlocking(m_checkbox_auto_disc_change) @@ -353,11 +353,9 @@ void GeneralPane::OnSaveConfig() Settings::Instance().SetAnalyticsEnabled(m_checkbox_enable_analytics->isChecked()); DolphinAnalytics::Instance().ReloadConfig(); #endif - Settings::Instance().SetCheatsEnabled(m_checkbox_cheats->isChecked()); Config::SetBaseOrCurrent(Config::MAIN_OVERRIDE_REGION_SETTINGS, m_checkbox_override_region_settings->isChecked()); Config::SetBase(Config::MAIN_AUTO_DISC_CHANGE, m_checkbox_auto_disc_change->isChecked()); - Config::SetBaseOrCurrent(Config::MAIN_ENABLE_CHEATS, m_checkbox_cheats->isChecked()); Settings::Instance().SetFallbackRegion( UpdateFallbackRegionFromIndex(m_combobox_fallback_region->currentIndex())); @@ -386,6 +384,13 @@ void GeneralPane::AddDescriptions() "improves performance. However, it can result in glitches and crashes." "

This setting cannot be changed while emulation is active." "

If unsure, leave this checked."); + static constexpr char TR_CHEATS_DESCRIPTION[] = QT_TR_NOOP( + "Enables the use of AR and Gecko cheat codes which can be used to modify games' behavior. " + "These codes can be configured with the Cheats Manager in the Tools menu." + "

This setting cannot be changed while emulation is active." + "

If unsure, leave this unchecked."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); + + m_checkbox_cheats->SetDescription(tr(TR_CHEATS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 2fc68ddc13..3c69360c75 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -43,7 +43,7 @@ private: QComboBox* m_combobox_update_track; QComboBox* m_combobox_fallback_region; ConfigBool* m_checkbox_dualcore; - QCheckBox* m_checkbox_cheats; + ConfigBool* m_checkbox_cheats; QCheckBox* m_checkbox_override_region_settings; QCheckBox* m_checkbox_auto_disc_change; #ifdef USE_DISCORD_PRESENCE From 755866b771fb086959bef621a73387322b9360f7 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 27 Nov 2023 23:17:46 -0800 Subject: [PATCH 226/296] GeneralPane: Add BalloonTip to override region settings checkbox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 16 +++++++++------- Source/Core/DolphinQt/Settings/GeneralPane.h | 2 +- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index fab903a873..23b1f0b8af 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -101,8 +101,6 @@ void GeneralPane::ConnectLayout() { connect(m_checkbox_cheats, &QCheckBox::toggled, &Settings::Instance(), &Settings::EnableCheatsChanged); - connect(m_checkbox_override_region_settings, &QCheckBox::stateChanged, this, - &GeneralPane::OnSaveConfig); connect(m_checkbox_auto_disc_change, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); #ifdef USE_DISCORD_PRESENCE connect(m_checkbox_discord_presence, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); @@ -148,7 +146,8 @@ void GeneralPane::CreateBasic() m_checkbox_cheats = new ConfigBool(tr("Enable Cheats"), Config::MAIN_ENABLE_CHEATS); basic_group_layout->addWidget(m_checkbox_cheats); - m_checkbox_override_region_settings = new QCheckBox(tr("Allow Mismatched Region Settings")); + m_checkbox_override_region_settings = + new ConfigBool(tr("Allow Mismatched Region Settings"), Config::MAIN_OVERRIDE_REGION_SETTINGS); basic_group_layout->addWidget(m_checkbox_override_region_settings); m_checkbox_auto_disc_change = new QCheckBox(tr("Change Discs Automatically")); @@ -263,8 +262,6 @@ void GeneralPane::LoadConfig() SignalBlocking(m_checkbox_enable_analytics) ->setChecked(Settings::Instance().IsAnalyticsEnabled()); #endif - SignalBlocking(m_checkbox_override_region_settings) - ->setChecked(Config::Get(Config::MAIN_OVERRIDE_REGION_SETTINGS)); SignalBlocking(m_checkbox_auto_disc_change) ->setChecked(Config::Get(Config::MAIN_AUTO_DISC_CHANGE)); @@ -353,8 +350,6 @@ void GeneralPane::OnSaveConfig() Settings::Instance().SetAnalyticsEnabled(m_checkbox_enable_analytics->isChecked()); DolphinAnalytics::Instance().ReloadConfig(); #endif - Config::SetBaseOrCurrent(Config::MAIN_OVERRIDE_REGION_SETTINGS, - m_checkbox_override_region_settings->isChecked()); Config::SetBase(Config::MAIN_AUTO_DISC_CHANGE, m_checkbox_auto_disc_change->isChecked()); Settings::Instance().SetFallbackRegion( UpdateFallbackRegionFromIndex(m_combobox_fallback_region->currentIndex())); @@ -389,8 +384,15 @@ void GeneralPane::AddDescriptions() "These codes can be configured with the Cheats Manager in the Tools menu." "

This setting cannot be changed while emulation is active." "

If unsure, leave this unchecked."); + static constexpr char TR_OVERRIDE_REGION_SETTINGS_DESCRIPTION[] = + QT_TR_NOOP("Lets you use languages and other region-related settings that the game may not " + "be designed for. May cause various crashes and bugs." + "

This setting cannot be changed while emulation is active." + "

If unsure, leave this unchecked."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); m_checkbox_cheats->SetDescription(tr(TR_CHEATS_DESCRIPTION)); + + m_checkbox_override_region_settings->SetDescription(tr(TR_OVERRIDE_REGION_SETTINGS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 3c69360c75..73a9fb0999 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -44,7 +44,7 @@ private: QComboBox* m_combobox_fallback_region; ConfigBool* m_checkbox_dualcore; ConfigBool* m_checkbox_cheats; - QCheckBox* m_checkbox_override_region_settings; + ConfigBool* m_checkbox_override_region_settings; QCheckBox* m_checkbox_auto_disc_change; #ifdef USE_DISCORD_PRESENCE QCheckBox* m_checkbox_discord_presence; From ce0ab58dc91f8dde851334e0186caaab8ff89eac Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Tue, 28 Nov 2023 11:19:09 -0800 Subject: [PATCH 227/296] GeneralPane: Add BalloonTip to auto disc change checkbox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 17 ++++++++++++----- Source/Core/DolphinQt/Settings/GeneralPane.h | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 23b1f0b8af..47fa351950 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -101,7 +101,6 @@ void GeneralPane::ConnectLayout() { connect(m_checkbox_cheats, &QCheckBox::toggled, &Settings::Instance(), &Settings::EnableCheatsChanged); - connect(m_checkbox_auto_disc_change, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); #ifdef USE_DISCORD_PRESENCE connect(m_checkbox_discord_presence, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig); #endif @@ -150,7 +149,8 @@ void GeneralPane::CreateBasic() new ConfigBool(tr("Allow Mismatched Region Settings"), Config::MAIN_OVERRIDE_REGION_SETTINGS); basic_group_layout->addWidget(m_checkbox_override_region_settings); - m_checkbox_auto_disc_change = new QCheckBox(tr("Change Discs Automatically")); + m_checkbox_auto_disc_change = + new ConfigBool(tr("Change Discs Automatically"), Config::MAIN_AUTO_DISC_CHANGE); basic_group_layout->addWidget(m_checkbox_auto_disc_change); #ifdef USE_DISCORD_PRESENCE @@ -262,8 +262,6 @@ void GeneralPane::LoadConfig() SignalBlocking(m_checkbox_enable_analytics) ->setChecked(Settings::Instance().IsAnalyticsEnabled()); #endif - SignalBlocking(m_checkbox_auto_disc_change) - ->setChecked(Config::Get(Config::MAIN_AUTO_DISC_CHANGE)); #ifdef USE_DISCORD_PRESENCE SignalBlocking(m_checkbox_discord_presence) @@ -350,7 +348,6 @@ void GeneralPane::OnSaveConfig() Settings::Instance().SetAnalyticsEnabled(m_checkbox_enable_analytics->isChecked()); DolphinAnalytics::Instance().ReloadConfig(); #endif - Config::SetBase(Config::MAIN_AUTO_DISC_CHANGE, m_checkbox_auto_disc_change->isChecked()); Settings::Instance().SetFallbackRegion( UpdateFallbackRegionFromIndex(m_combobox_fallback_region->currentIndex())); @@ -389,10 +386,20 @@ void GeneralPane::AddDescriptions() "be designed for. May cause various crashes and bugs." "

This setting cannot be changed while emulation is active." "

If unsure, leave this unchecked."); + static constexpr char TR_AUTO_DISC_CHANGE_DESCRIPTION[] = QT_TR_NOOP( + "Automatically changes the game disc when requested by games with two discs. This feature " + "requires the game to be launched in one of the following ways:" + "
- From the game list, with both discs being present in the game list." + "
- With File > Open or the command line interface, with the paths to both discs being " + "provided." + "
- By launching an M3U file with File > Open or the command line interface." + "

If unsure, leave this unchecked."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); m_checkbox_cheats->SetDescription(tr(TR_CHEATS_DESCRIPTION)); m_checkbox_override_region_settings->SetDescription(tr(TR_OVERRIDE_REGION_SETTINGS_DESCRIPTION)); + + m_checkbox_auto_disc_change->SetDescription(tr(TR_AUTO_DISC_CHANGE_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 73a9fb0999..1fd0ab66b7 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -45,7 +45,7 @@ private: ConfigBool* m_checkbox_dualcore; ConfigBool* m_checkbox_cheats; ConfigBool* m_checkbox_override_region_settings; - QCheckBox* m_checkbox_auto_disc_change; + ConfigBool* m_checkbox_auto_disc_change; #ifdef USE_DISCORD_PRESENCE QCheckBox* m_checkbox_discord_presence; #endif From 809b8a683fac21122431845b02d3dba337f28023 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 18 May 2024 12:47:22 -0700 Subject: [PATCH 228/296] GeneralPane: Add BalloonTip to discord presence checkbox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 14 +++++++++++++- Source/Core/DolphinQt/Settings/GeneralPane.h | 3 ++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 47fa351950..7f9c9e0572 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -25,6 +25,7 @@ #include "Core/System.h" #include "DolphinQt/Config/ConfigControls/ConfigBool.h" +#include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" @@ -154,7 +155,7 @@ void GeneralPane::CreateBasic() basic_group_layout->addWidget(m_checkbox_auto_disc_change); #ifdef USE_DISCORD_PRESENCE - m_checkbox_discord_presence = new QCheckBox(tr("Show Current Game on Discord")); + m_checkbox_discord_presence = new ToolTipCheckBox(tr("Show Current Game on Discord")); basic_group_layout->addWidget(m_checkbox_discord_presence); #endif @@ -394,6 +395,13 @@ void GeneralPane::AddDescriptions() "provided." "
- By launching an M3U file with File > Open or the command line interface." "

If unsure, leave this unchecked."); +#ifdef USE_DISCORD_PRESENCE + static constexpr char TR_DISCORD_PRESENCE_DESCRIPTION[] = + QT_TR_NOOP("Shows which game is active and the duration of your current play session in your " + "Discord status." + "

This setting cannot be changed while emulation is active." + "

If unsure, leave this checked."); +#endif m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -402,4 +410,8 @@ void GeneralPane::AddDescriptions() m_checkbox_override_region_settings->SetDescription(tr(TR_OVERRIDE_REGION_SETTINGS_DESCRIPTION)); m_checkbox_auto_disc_change->SetDescription(tr(TR_AUTO_DISC_CHANGE_DESCRIPTION)); + +#ifdef USE_DISCORD_PRESENCE + m_checkbox_discord_presence->SetDescription(tr(TR_DISCORD_PRESENCE_DESCRIPTION)); +#endif } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 1fd0ab66b7..1c4febcd6e 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -13,6 +13,7 @@ class QPushButton; class QRadioButton; class QSlider; class QVBoxLayout; +class ToolTipCheckBox; namespace Core { @@ -47,7 +48,7 @@ private: ConfigBool* m_checkbox_override_region_settings; ConfigBool* m_checkbox_auto_disc_change; #ifdef USE_DISCORD_PRESENCE - QCheckBox* m_checkbox_discord_presence; + ToolTipCheckBox* m_checkbox_discord_presence; #endif QLabel* m_label_speedlimit; From 427b85f2a15522dba811e3d151d38da4c3d22bf8 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 22 Apr 2024 20:38:04 -0700 Subject: [PATCH 229/296] GeneralPane: Add BalloonTip to speed limit combobox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 13 ++++++++++++- Source/Core/DolphinQt/Settings/GeneralPane.h | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 7f9c9e0572..6740bfbd9d 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -26,6 +26,7 @@ #include "DolphinQt/Config/ConfigControls/ConfigBool.h" #include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" +#include "DolphinQt/Config/ToolTipControls/ToolTipComboBox.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" @@ -164,7 +165,7 @@ void GeneralPane::CreateBasic() speed_limit_layout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow); basic_group_layout->addLayout(speed_limit_layout); - m_combobox_speedlimit = new QComboBox(); + m_combobox_speedlimit = new ToolTipComboBox(); m_combobox_speedlimit->addItem(tr("Unlimited")); for (int i = 10; i <= 200; i += 10) // from 10% to 200% @@ -402,6 +403,13 @@ void GeneralPane::AddDescriptions() "

This setting cannot be changed while emulation is active." "

If unsure, leave this checked."); #endif + static constexpr char TR_SPEEDLIMIT_DESCRIPTION[] = QT_TR_NOOP( + "Sets the maximum time scale of emulation. Values higher than 100% will accelerate emulated " + "time by processing faster than the original hardware, while values lower than 100% will " + "slow emulated time. Unlimited will emulate as fast as your host hardware can run." + "

Higher speeds are proportionally more costly to emulate. Depending on the title, " + "your settings, and your host hardware, some of these values may not be sustainable." + "

If unsure, select 100%."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -414,4 +422,7 @@ void GeneralPane::AddDescriptions() #ifdef USE_DISCORD_PRESENCE m_checkbox_discord_presence->SetDescription(tr(TR_DISCORD_PRESENCE_DESCRIPTION)); #endif + + m_combobox_speedlimit->SetTitle(tr("Speed Limit")); + m_combobox_speedlimit->SetDescription(tr(TR_SPEEDLIMIT_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 1c4febcd6e..77f4303e55 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -14,6 +14,7 @@ class QRadioButton; class QSlider; class QVBoxLayout; class ToolTipCheckBox; +class ToolTipComboBox; namespace Core { @@ -40,7 +41,7 @@ private: // Widgets QVBoxLayout* m_main_layout; - QComboBox* m_combobox_speedlimit; + ToolTipComboBox* m_combobox_speedlimit; QComboBox* m_combobox_update_track; QComboBox* m_combobox_fallback_region; ConfigBool* m_checkbox_dualcore; @@ -50,7 +51,6 @@ private: #ifdef USE_DISCORD_PRESENCE ToolTipCheckBox* m_checkbox_discord_presence; #endif - QLabel* m_label_speedlimit; // Analytics related #if defined(USE_ANALYTICS) && USE_ANALYTICS From fa4803f38aba99e2e24cc7e2c809b95c1180cb9b Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 25 Apr 2024 20:32:16 -0700 Subject: [PATCH 230/296] GeneralPane: Add BalloonTip to auto update combobox --- .../Core/DolphinQt/Settings/GeneralPane.cpp | 27 ++++++++++++++++++- Source/Core/DolphinQt/Settings/GeneralPane.h | 2 +- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 6740bfbd9d..e8bb70afa7 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -192,7 +192,7 @@ void GeneralPane::CreateAutoUpdate() auto_update_group_layout->setFormAlignment(Qt::AlignLeft | Qt::AlignTop); auto_update_group_layout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow); - m_combobox_update_track = new QComboBox(this); + m_combobox_update_track = new ToolTipComboBox(); auto_update_group_layout->addRow(tr("&Auto Update:"), m_combobox_update_track); @@ -410,6 +410,25 @@ void GeneralPane::AddDescriptions() "

Higher speeds are proportionally more costly to emulate. Depending on the title, " "your settings, and your host hardware, some of these values may not be sustainable." "

If unsure, select 100%."); + static constexpr char TR_UPDATE_TRACK_DESCRIPTION[] = QT_TR_NOOP( + "Selects which update track Dolphin uses when checking for updates at startup. If a new " + "update is available, Dolphin will show a list of changes made since your current version " + "and ask you if you want to update." + "

The Dev track has the latest version of Dolphin which often updates multiple times " + "per day. Select this track if you want the newest features and fixes." + "

The Releases track has an update every few months. Some reasons you might prefer to " + "use this track:" + "
- You prefer using versions that have had additional testing." + "
- NetPlay requires players to have the same Dolphin version, and the latest Release " + "version will have the most players to match with." + "
- You frequently use Dolphin's savestate system, which doesn't guarantee backward " + "compatibility of savestates between Dolphin versions. If this applies to you, make sure you " + "make an in-game save before updating (i.e. save your game in the same way you would on a " + "physical GameCube or Wii), then load the in-game save after updating Dolphin and before " + "making any new savestates." + "

Selecting \"Don't Update\" will prevent Dolphin from automatically checking for " + "updates." + "

If unsure, select Releases."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -425,4 +444,10 @@ void GeneralPane::AddDescriptions() m_combobox_speedlimit->SetTitle(tr("Speed Limit")); m_combobox_speedlimit->SetDescription(tr(TR_SPEEDLIMIT_DESCRIPTION)); + + if (AutoUpdateChecker::SystemSupportsAutoUpdates()) + { + m_combobox_update_track->SetTitle(tr("Auto Update")); + m_combobox_update_track->SetDescription(tr(TR_UPDATE_TRACK_DESCRIPTION)); + } } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 77f4303e55..facc651648 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -42,7 +42,7 @@ private: // Widgets QVBoxLayout* m_main_layout; ToolTipComboBox* m_combobox_speedlimit; - QComboBox* m_combobox_update_track; + ToolTipComboBox* m_combobox_update_track; QComboBox* m_combobox_fallback_region; ConfigBool* m_checkbox_dualcore; ConfigBool* m_checkbox_cheats; From bfbc4c8cc7d1cd3640efa4c105d02e9054e73350 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 25 Apr 2024 20:52:07 -0700 Subject: [PATCH 231/296] GeneralPane: Add BalloonTip to fallback region combobox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 14 +++++++------- Source/Core/DolphinQt/Settings/GeneralPane.h | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index e8bb70afa7..a80c2c176c 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -213,17 +213,11 @@ void GeneralPane::CreateFallbackRegion() fallback_region_dropdown_layout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow); fallback_region_group_layout->addLayout(fallback_region_dropdown_layout); - m_combobox_fallback_region = new QComboBox(this); + m_combobox_fallback_region = new ToolTipComboBox(); fallback_region_dropdown_layout->addRow(tr("Fallback Region:"), m_combobox_fallback_region); for (const QString& option : {tr("NTSC-J"), tr("NTSC-U"), tr("PAL"), tr("NTSC-K")}) m_combobox_fallback_region->addItem(option); - - auto* fallback_region_description = - new QLabel(tr("Dolphin will use this for titles whose region cannot be determined " - "automatically.")); - fallback_region_description->setWordWrap(true); - fallback_region_group_layout->addWidget(fallback_region_description); } #if defined(USE_ANALYTICS) && USE_ANALYTICS @@ -429,6 +423,9 @@ void GeneralPane::AddDescriptions() "

Selecting \"Don't Update\" will prevent Dolphin from automatically checking for " "updates." "

If unsure, select Releases."); + static constexpr char TR_FALLBACK_REGION_DESCRIPTION[] = + QT_TR_NOOP("Sets the region used for titles whose region cannot be determined automatically." + "

This setting cannot be changed while emulation is active."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -450,4 +447,7 @@ void GeneralPane::AddDescriptions() m_combobox_update_track->SetTitle(tr("Auto Update")); m_combobox_update_track->SetDescription(tr(TR_UPDATE_TRACK_DESCRIPTION)); } + + m_combobox_fallback_region->SetTitle(tr("Fallback Region")); + m_combobox_fallback_region->SetDescription(tr(TR_FALLBACK_REGION_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index facc651648..ba60cddf7e 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -43,7 +43,7 @@ private: QVBoxLayout* m_main_layout; ToolTipComboBox* m_combobox_speedlimit; ToolTipComboBox* m_combobox_update_track; - QComboBox* m_combobox_fallback_region; + ToolTipComboBox* m_combobox_fallback_region; ConfigBool* m_checkbox_dualcore; ConfigBool* m_checkbox_cheats; ConfigBool* m_checkbox_override_region_settings; From 5512b68020268bbc57e4a44f18ddff021e6ba377 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 25 Apr 2024 23:08:51 -0700 Subject: [PATCH 232/296] GeneralPane: Add BalloonTip to enable analytics checkbox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 10 +++++++++- Source/Core/DolphinQt/Settings/GeneralPane.h | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index a80c2c176c..8b2962fe6e 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -228,7 +228,7 @@ void GeneralPane::CreateAnalytics() analytics_group->setLayout(analytics_group_layout); m_main_layout->addWidget(analytics_group); - m_checkbox_enable_analytics = new QCheckBox(tr("Enable Usage Statistics Reporting")); + m_checkbox_enable_analytics = new ToolTipCheckBox(tr("Enable Usage Statistics Reporting")); m_button_generate_new_identity = new NonDefaultQPushButton(tr("Generate a New Statistics Identity")); analytics_group_layout->addWidget(m_checkbox_enable_analytics); @@ -426,6 +426,12 @@ void GeneralPane::AddDescriptions() static constexpr char TR_FALLBACK_REGION_DESCRIPTION[] = QT_TR_NOOP("Sets the region used for titles whose region cannot be determined automatically." "

This setting cannot be changed while emulation is active."); + static constexpr char TR_ENABLE_ANALYTICS_DESCRIPTION[] = QT_TR_NOOP( + "If selected, Dolphin can collect data on its performance, feature usage, emulated games, " + "and configuration, as well as data on your system's hardware and operating system." + "

No private data is ever collected. This data helps us understand how people and " + "emulated games use Dolphin and prioritize our efforts. It also helps us identify rare " + "configurations that are causing bugs, performance and stability issues."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -450,4 +456,6 @@ void GeneralPane::AddDescriptions() m_combobox_fallback_region->SetTitle(tr("Fallback Region")); m_combobox_fallback_region->SetDescription(tr(TR_FALLBACK_REGION_DESCRIPTION)); + + m_checkbox_enable_analytics->SetDescription(tr(TR_ENABLE_ANALYTICS_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index ba60cddf7e..8b968f9c4a 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -58,6 +58,6 @@ private: void GenerateNewIdentity(); QPushButton* m_button_generate_new_identity; - QCheckBox* m_checkbox_enable_analytics; + ToolTipCheckBox* m_checkbox_enable_analytics; #endif }; From 6a735f3758a58bae1b6c05621f728a9707715a46 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 25 Apr 2024 23:10:38 -0700 Subject: [PATCH 233/296] GeneralPane: Add BalloonTip to generate new identity checkbox --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 11 ++++++++--- Source/Core/DolphinQt/Settings/GeneralPane.h | 3 ++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 8b2962fe6e..55dc4f0799 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -27,8 +27,8 @@ #include "DolphinQt/Config/ConfigControls/ConfigBool.h" #include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h" #include "DolphinQt/Config/ToolTipControls/ToolTipComboBox.h" +#include "DolphinQt/Config/ToolTipControls/ToolTipPushButton.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" -#include "DolphinQt/QtUtils/NonDefaultQPushButton.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" #include "DolphinQt/QtUtils/SignalBlocking.h" #include "DolphinQt/Settings.h" @@ -229,8 +229,7 @@ void GeneralPane::CreateAnalytics() m_main_layout->addWidget(analytics_group); m_checkbox_enable_analytics = new ToolTipCheckBox(tr("Enable Usage Statistics Reporting")); - m_button_generate_new_identity = - new NonDefaultQPushButton(tr("Generate a New Statistics Identity")); + m_button_generate_new_identity = new ToolTipPushButton(tr("Generate a New Statistics Identity")); analytics_group_layout->addWidget(m_checkbox_enable_analytics); analytics_group_layout->addWidget(m_button_generate_new_identity); } @@ -432,6 +431,9 @@ void GeneralPane::AddDescriptions() "

No private data is ever collected. This data helps us understand how people and " "emulated games use Dolphin and prioritize our efforts. It also helps us identify rare " "configurations that are causing bugs, performance and stability issues."); + static constexpr char TR_GENERATE_NEW_IDENTITY_DESCRIPTION[] = + QT_TR_NOOP("Generate a new anonymous ID for your usage statistics. This will cause any " + "future statistics to be unassociated with your previous statistics."); m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -458,4 +460,7 @@ void GeneralPane::AddDescriptions() m_combobox_fallback_region->SetDescription(tr(TR_FALLBACK_REGION_DESCRIPTION)); m_checkbox_enable_analytics->SetDescription(tr(TR_ENABLE_ANALYTICS_DESCRIPTION)); + + m_button_generate_new_identity->SetTitle(tr("Generate a New Statistics Identity")); + m_button_generate_new_identity->SetDescription(tr(TR_GENERATE_NEW_IDENTITY_DESCRIPTION)); } diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.h b/Source/Core/DolphinQt/Settings/GeneralPane.h index 8b968f9c4a..ffe850491b 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.h +++ b/Source/Core/DolphinQt/Settings/GeneralPane.h @@ -15,6 +15,7 @@ class QSlider; class QVBoxLayout; class ToolTipCheckBox; class ToolTipComboBox; +class ToolTipPushButton; namespace Core { @@ -57,7 +58,7 @@ private: void CreateAnalytics(); void GenerateNewIdentity(); - QPushButton* m_button_generate_new_identity; + ToolTipPushButton* m_button_generate_new_identity; ToolTipCheckBox* m_checkbox_enable_analytics; #endif }; From 91a323df9654d66dd065a58c52324b70f63bfac4 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 30 Jul 2024 18:24:48 +0200 Subject: [PATCH 234/296] Android: Update to NDK 27.0.12077973 --- Source/Android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index 851ac51ae9..af48026a86 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -8,7 +8,7 @@ plugins { @Suppress("UnstableApiUsage") android { compileSdkVersion = "android-34" - ndkVersion = "26.1.10909125" + ndkVersion = "27.0.12077973" buildFeatures { viewBinding = true From bb5326adf439797b563978f54444c37667ceecee Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Tue, 30 Jul 2024 21:44:46 -0400 Subject: [PATCH 235/296] DolphinQt: Rename output bundle on macOS to DolphinQt --- Source/Core/DolphinQt/CMakeLists.txt | 4 ++-- Source/Core/DolphinQt/Info.plist.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 25a3c0daa8..c828a446a3 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -566,7 +566,7 @@ endif() if(APPLE) include(BundleUtilities) - set(BUNDLE_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Dolphin.app) + set(BUNDLE_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/DolphinQt.app) # Ask for an application bundle. set_target_properties(dolphin-emu PROPERTIES @@ -574,7 +574,7 @@ if(APPLE) MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/Info.plist" XCODE_ATTRIBUTE_CODE_SIGN_ENTITLEMENTS "${CMAKE_CURRENT_SOURCE_DIR}/DolphinEmu.entitlements" XCODE_ATTRIBUTE_OTHER_CODE_SIGN_FLAGS "--deep --options=runtime" - OUTPUT_NAME Dolphin + OUTPUT_NAME DolphinQt ) # Copy qt.conf into the bundle diff --git a/Source/Core/DolphinQt/Info.plist.in b/Source/Core/DolphinQt/Info.plist.in index 93c2266280..2a3d17291e 100644 --- a/Source/Core/DolphinQt/Info.plist.in +++ b/Source/Core/DolphinQt/Info.plist.in @@ -30,7 +30,7 @@
CFBundleExecutable - Dolphin + DolphinQt CFBundleIconFile Dolphin.icns CFBundleIdentifier From 8499b43501f93b5b1cc138773d24040a0d34a52d Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Tue, 30 Jul 2024 21:46:06 -0400 Subject: [PATCH 236/296] MacUpdater: Always use the same signing identity as the DolphinQt bundle --- BuildMacOSUniversalBinary.py | 2 -- CMakeLists.txt | 1 - Source/Core/MacUpdater/CMakeLists.txt | 6 +----- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/BuildMacOSUniversalBinary.py b/BuildMacOSUniversalBinary.py index bcf5ce97d6..33973393a6 100755 --- a/BuildMacOSUniversalBinary.py +++ b/BuildMacOSUniversalBinary.py @@ -317,8 +317,6 @@ def build(config): + config[arch+"_mac_os_deployment_target"], "-DMACOS_CODE_SIGNING_IDENTITY=" + config["codesign_identity"], - "-DMACOS_CODE_SIGNING_IDENTITY_UPDATER=" - + config["codesign_identity"], '-DMACOS_CODE_SIGNING="ON"', "-DSTEAM=" + python_to_cmake_bool(config["steam"]), diff --git a/CMakeLists.txt b/CMakeLists.txt index ce5d64715f..e3a33876d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,7 +138,6 @@ if(APPLE) option(MACOS_CODE_SIGNING "Enable codesigning" ON) option(USE_BUNDLED_MOLTENVK "Build MoltenVK from Externals with Dolphin-specific patches" ON) set(MACOS_CODE_SIGNING_IDENTITY "-" CACHE STRING "The identity used for codesigning.") - set(MACOS_CODE_SIGNING_IDENTITY_UPDATER "-" CACHE STRING "The identity used for codesigning, for the updater.") endif() if(CMAKE_SYSTEM_NAME STREQUAL "Linux") diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt index 71c0408317..60abe88792 100644 --- a/Source/Core/MacUpdater/CMakeLists.txt +++ b/Source/Core/MacUpdater/CMakeLists.txt @@ -54,10 +54,6 @@ foreach(sb ${STORYBOARDS}) endforeach() if(MACOS_CODE_SIGNING) - if (MACOS_CODE_SIGNING_IDENTITY_UPDATER STREQUAL "") - set(MACOS_CODE_SIGNING_IDENTITY_UPDATER "${MACOS_CODE_SIGNING_IDENTITY}") - endif() - add_custom_command(TARGET MacUpdater POST_BUILD - COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY_UPDATER}" --deep --options runtime $) + COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY}" --deep --options runtime $) endif() From 5c401bd5da0fa88a1b4e33cdc0d0318d1531ebb9 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Tue, 30 Jul 2024 21:51:39 -0400 Subject: [PATCH 237/296] MacUpdater: Change CFBundleName to match the bundle's output name --- Source/Core/MacUpdater/Info.plist.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/MacUpdater/Info.plist.in b/Source/Core/MacUpdater/Info.plist.in index df5967f289..ba3eae075d 100644 --- a/Source/Core/MacUpdater/Info.plist.in +++ b/Source/Core/MacUpdater/Info.plist.in @@ -13,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - Updater + Dolphin Updater CFBundlePackageType APPL CFBundleShortVersionString From f74f748ff6329fdf0572015cd355fde0684189a6 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Tue, 30 Jul 2024 21:53:17 -0400 Subject: [PATCH 238/296] MacUpdater: Change bundle ID to org.dolphin-emu.updater The domain "dolphinteam.com" is not under our control, so we shouldn't be using it. --- Source/Core/MacUpdater/Info.plist.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/MacUpdater/Info.plist.in b/Source/Core/MacUpdater/Info.plist.in index ba3eae075d..574843c28d 100644 --- a/Source/Core/MacUpdater/Info.plist.in +++ b/Source/Core/MacUpdater/Info.plist.in @@ -9,7 +9,7 @@ CFBundleIconFile Dolphin.icns CFBundleIdentifier - com.dolphinteam.dolphin-updater + org.dolphin-emu.updater CFBundleInfoDictionaryVersion 6.0 CFBundleName From ebb6255441edd954af42f7cb2b3bd2e4e217e107 Mon Sep 17 00:00:00 2001 From: Sketch <75850871+SketchMaster2001@users.noreply.github.com> Date: Thu, 1 Aug 2024 13:58:15 -0400 Subject: [PATCH 239/296] Display Taiwanese covers for Taiwanese games --- Source/Core/Core/ConfigManager.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index 8882076daa..a284cbe266 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -451,7 +451,14 @@ std::string SConfig::GetGameTDBImageRegionCode(bool wii, DiscIO::Region region) switch (region) { case DiscIO::Region::NTSC_J: + { + // Taiwanese games share the Japanese region code however their title ID ends with 'W'. + // GameTDB differentiates the covers using the code "ZH". + if (m_game_id.size() >= 4 && m_game_id.at(3) == 'W') + return "ZH"; + return "JA"; + } case DiscIO::Region::NTSC_U: return "US"; case DiscIO::Region::NTSC_K: From 4883889e23ac784e004b4c80ab809920f11a69d3 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Wed, 31 Jul 2024 13:31:23 -0400 Subject: [PATCH 240/296] Tools: Add script to codesign a macOS bundle or executable With our current setup, we use the --deep option, which should be avoided. This tool signs bundles in the "correct" way as recommended by Apple (each Mach-O individually, from the inside-out). --- Tools/mac-codesign.sh | 74 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100755 Tools/mac-codesign.sh diff --git a/Tools/mac-codesign.sh b/Tools/mac-codesign.sh new file mode 100755 index 0000000000..9fb330bc6c --- /dev/null +++ b/Tools/mac-codesign.sh @@ -0,0 +1,74 @@ +#!/bin/bash + +# This script signs a specific object with the specified identity, entitlements, +# and optional flags. If the target is a bundle, it will also sign all frameworks +# and dylibs within the bundle. + +set -eu + +function usage() { + echo "Usage: $0 [-t] [-e ] " + exit 1 +} + +USE_SECURE_TIMESTAMP=0 +ENTITLEMENTS_FILE="" + +while getopts ":te:" opt; do + case $opt in + t) + USE_SECURE_TIMESTAMP=1 + ;; + e) + ENTITLEMENTS_FILE=$OPTARG + ;; + \?) + usage + ;; + esac +done + +if [ $USE_SECURE_TIMESTAMP -eq 1 ]; then + TIMESTAMP_FLAG="--timestamp" +else + TIMESTAMP_FLAG="--timestamp=none" +fi + +shift $((OPTIND - 1)) + +if [ $# -ne 2 ]; then + usage +fi + +IDENTITY=$1 +TARGET_PATH=$2 + +# Signs the given target with the specified identity and optional flags. +function sign() { + /usr/bin/codesign -f -s "$IDENTITY" $TIMESTAMP_FLAG ${2:-} "$1" +} + +if [ -d "$TARGET_PATH" ]; then + # Newlines are the only valid separator character in find's output. + IFS=$'\n' + + for framework in $(find "$TARGET_PATH" -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do + sign "$framework" + done + + unset IFS +fi + +TARGET_EXTRA_CODESIGN_FLAGS="-o runtime" + +if [ -n "$ENTITLEMENTS_FILE" ]; then + # "preserve" is a special keyword which tells us we should preserve the + # existing entitlements in the target. + if [ "$ENTITLEMENTS_FILE" == "preserve" ]; then + TARGET_EXTRA_CODESIGN_FLAGS+=" --preserve-metadata=entitlements" + else + TARGET_EXTRA_CODESIGN_FLAGS+=" --entitlements $ENTITLEMENTS_FILE" + fi +fi + +sign "$TARGET_PATH" "$TARGET_EXTRA_CODESIGN_FLAGS" From cbbffce79aa7811a6bd9c00dc4ac955662ca0a17 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Wed, 31 Jul 2024 13:31:41 -0400 Subject: [PATCH 241/296] MacUpdater: Switch to mac-codesign script for code signing --- Source/Core/MacUpdater/CMakeLists.txt | 8 ++++++-- Tools/mac-codesign.sh | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt index 60abe88792..b27b466df9 100644 --- a/Source/Core/MacUpdater/CMakeLists.txt +++ b/Source/Core/MacUpdater/CMakeLists.txt @@ -54,6 +54,10 @@ foreach(sb ${STORYBOARDS}) endforeach() if(MACOS_CODE_SIGNING) - add_custom_command(TARGET MacUpdater POST_BUILD - COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY}" --deep --options runtime $) + add_custom_command(TARGET MacUpdater + POST_BUILD + COMMAND "${CMAKE_SOURCE_DIR}/Tools/mac-codesign.sh" + "${MACOS_CODE_SIGNING_IDENTITY}" + "$" + ) endif() diff --git a/Tools/mac-codesign.sh b/Tools/mac-codesign.sh index 9fb330bc6c..2b26d461ee 100755 --- a/Tools/mac-codesign.sh +++ b/Tools/mac-codesign.sh @@ -52,7 +52,7 @@ if [ -d "$TARGET_PATH" ]; then # Newlines are the only valid separator character in find's output. IFS=$'\n' - for framework in $(find "$TARGET_PATH" -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do + for framework in $(find "$TARGET_PATH" -depth -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do sign "$framework" done From 22dda0b0c40dde0167a952442b90410f815643a0 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Wed, 31 Jul 2024 13:32:25 -0400 Subject: [PATCH 242/296] DolphinQt: Disable Xcode code signing to avoid double code signing --- Source/Core/DolphinQt/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index c828a446a3..071b56972f 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -572,8 +572,7 @@ if(APPLE) set_target_properties(dolphin-emu PROPERTIES MACOSX_BUNDLE true MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/Info.plist" - XCODE_ATTRIBUTE_CODE_SIGN_ENTITLEMENTS "${CMAKE_CURRENT_SOURCE_DIR}/DolphinEmu.entitlements" - XCODE_ATTRIBUTE_OTHER_CODE_SIGN_FLAGS "--deep --options=runtime" + XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "" OUTPUT_NAME DolphinQt ) From 37a7b1e5c95fc08af231455931ed3c39b314731d Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Wed, 31 Jul 2024 13:32:52 -0400 Subject: [PATCH 243/296] DolphinQt: Switch to mac-codesign script for code signing --- Source/Core/DolphinQt/CMakeLists.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 071b56972f..3f8c087cd1 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -637,9 +637,13 @@ if(APPLE) endif() if(MACOS_CODE_SIGNING) - # Code sign make file builds - add_custom_command(TARGET dolphin-emu POST_BUILD - COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY}" --deep --options=runtime --entitlements "${CMAKE_SOURCE_DIR}/Source/Core/DolphinQt/DolphinEmu$<$:Debug>.entitlements" "$") + add_custom_command(TARGET dolphin-emu + POST_BUILD + COMMAND "${CMAKE_SOURCE_DIR}/Tools/mac-codesign.sh" + "-e" "${CMAKE_CURRENT_SOURCE_DIR}/DolphinEmu$<$:Debug>.entitlements" + "${MACOS_CODE_SIGNING_IDENTITY}" + "${BUNDLE_PATH}" + ) endif() else() install(TARGETS dolphin-emu RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) From b0ca5f2666690d094264bd168a1a1a8e9773acf1 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 1 Aug 2024 11:59:15 -0400 Subject: [PATCH 244/296] DolphinPostprocessBundle: Use TARGET_BUNDLE_DIR to avoid having to make a relative path absolute --- CMake/DolphinPostprocessBundle.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMake/DolphinPostprocessBundle.cmake b/CMake/DolphinPostprocessBundle.cmake index ba412ba48d..dfc71779f7 100644 --- a/CMake/DolphinPostprocessBundle.cmake +++ b/CMake/DolphinPostprocessBundle.cmake @@ -14,14 +14,13 @@ if(CMAKE_GENERATOR) set(_DOLPHIN_POSTPROCESS_BUNDLE_MODULE_LOCATION "${CMAKE_CURRENT_LIST_FILE}") function(dolphin_postprocess_bundle target) add_custom_command(TARGET ${target} POST_BUILD - COMMAND ${CMAKE_COMMAND} -DDOLPHIN_BUNDLE_PATH="$/../.." + COMMAND ${CMAKE_COMMAND} -DDOLPHIN_BUNDLE_PATH="$" -P "${_DOLPHIN_POSTPROCESS_BUNDLE_MODULE_LOCATION}" ) endfunction() return() endif() -get_filename_component(DOLPHIN_BUNDLE_PATH "${DOLPHIN_BUNDLE_PATH}" ABSOLUTE) message(STATUS "Fixing up application bundle: ${DOLPHIN_BUNDLE_PATH}") # Make sure to fix up any additional shared libraries (like plugins) that are From 4fa78be3ad256a339adfa1b1f7e7b62319d31878 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 1 Aug 2024 12:02:21 -0400 Subject: [PATCH 245/296] DolphinPostprocessBundle: Separate "-D" from DOLPHIN_BUNDLE_PATH definition For whatever reason, the previous way would inject backslashes into any path that has spaces. --- CMake/DolphinPostprocessBundle.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/DolphinPostprocessBundle.cmake b/CMake/DolphinPostprocessBundle.cmake index dfc71779f7..4a1c68562c 100644 --- a/CMake/DolphinPostprocessBundle.cmake +++ b/CMake/DolphinPostprocessBundle.cmake @@ -14,7 +14,7 @@ if(CMAKE_GENERATOR) set(_DOLPHIN_POSTPROCESS_BUNDLE_MODULE_LOCATION "${CMAKE_CURRENT_LIST_FILE}") function(dolphin_postprocess_bundle target) add_custom_command(TARGET ${target} POST_BUILD - COMMAND ${CMAKE_COMMAND} -DDOLPHIN_BUNDLE_PATH="$" + COMMAND ${CMAKE_COMMAND} "-D" "DOLPHIN_BUNDLE_PATH=$" -P "${_DOLPHIN_POSTPROCESS_BUNDLE_MODULE_LOCATION}" ) endfunction() From 16acdb630b3e231a9319edd84bc45a72e064b086 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 1 Aug 2024 12:02:43 -0400 Subject: [PATCH 246/296] MacUpdater: Post-process the bundle --- Source/Core/MacUpdater/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt index b27b466df9..d72dd46cd2 100644 --- a/Source/Core/MacUpdater/CMakeLists.txt +++ b/Source/Core/MacUpdater/CMakeLists.txt @@ -53,6 +53,18 @@ foreach(sb ${STORYBOARDS}) COMMENT "Compiling Storyboard ${sb}...") endforeach() +if(NOT SKIP_POSTPROCESS_BUNDLE) + # Update library references to make the bundle portable + include(DolphinPostprocessBundle) + dolphin_postprocess_bundle(MacUpdater) + + # Fix rpath + add_custom_command(TARGET MacUpdater + POST_BUILD COMMAND + ${CMAKE_INSTALL_NAME_TOOL} -add_rpath "@executable_path/../Frameworks/" + $) +endif() + if(MACOS_CODE_SIGNING) add_custom_command(TARGET MacUpdater POST_BUILD From 7c94edb02cae578515c345d699b378f67c2ad610 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 1 Aug 2024 12:31:11 -0400 Subject: [PATCH 247/296] CMakeLists: Embed macOS Updater app inside DolphinQt I accomplish this by adding a new step where a copy of the DolphinQt bundle is created, and then the Updater is inserted into it. --- Source/Core/CMakeLists.txt | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/Source/Core/CMakeLists.txt b/Source/Core/CMakeLists.txt index 576e3eec62..b1c5a3ab17 100644 --- a/Source/Core/CMakeLists.txt +++ b/Source/Core/CMakeLists.txt @@ -30,3 +30,59 @@ endif() if (WIN32 AND ENABLE_AUTOUPDATE) add_subdirectory(WinUpdater) endif() + +if (APPLE AND ENABLE_QT) + set(DOLPHIN_MAC_BUNDLE "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Dolphin.app") + + add_custom_target(build_final_bundle ALL + COMMAND ${CMAKE_COMMAND} -E remove_directory + ${DOLPHIN_MAC_BUNDLE} + + COMMAND cp -R + ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/DolphinQt.app + ${DOLPHIN_MAC_BUNDLE} + + # HACK: The Updater does not support setting the executable bit on new files, + # so don't use the new executable name, and instead continue to use "Dolphin". + COMMAND ${CMAKE_COMMAND} -E rename + ${DOLPHIN_MAC_BUNDLE}/Contents/MacOS/DolphinQt + ${DOLPHIN_MAC_BUNDLE}/Contents/MacOS/Dolphin + + COMMAND plutil + -replace CFBundleExecutable -string Dolphin + ${DOLPHIN_MAC_BUNDLE}/Contents/Info.plist + + DEPENDS dolphin-emu) + + if (ENABLE_AUTOUPDATE) + add_dependencies(build_final_bundle MacUpdater) + + add_custom_command(TARGET build_final_bundle + POST_BUILD + COMMAND ${CMAKE_COMMAND} -E make_directory + "${DOLPHIN_MAC_BUNDLE}/Contents/Helpers" + + COMMAND cp -R + "$" + "${DOLPHIN_MAC_BUNDLE}/Contents/Helpers/Dolphin Updater.app") + + if (MACOS_CODE_SIGNING) + add_custom_command(TARGET build_final_bundle + POST_BUILD + COMMAND "${CMAKE_SOURCE_DIR}/Tools/mac-codesign.sh" + "-t" + "${MACOS_CODE_SIGNING_IDENTITY}" + "${DOLPHIN_MAC_BUNDLE}/Contents/Helpers/Dolphin Updater.app") + endif() + endif() + + if (MACOS_CODE_SIGNING) + add_custom_command(TARGET build_final_bundle + POST_BUILD + COMMAND "${CMAKE_SOURCE_DIR}/Tools/mac-codesign.sh" + "-t" + "-e" "${CMAKE_SOURCE_DIR}/Source/Core/DolphinQt/DolphinEmu$<$:Debug>.entitlements" + "${MACOS_CODE_SIGNING_IDENTITY}" + "${DOLPHIN_MAC_BUNDLE}") + endif() +endif() From 058000851b1c261858b4b89cd8636c6f5ecf6284 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 1 Aug 2024 12:38:16 -0400 Subject: [PATCH 248/296] AutoUpdate: Use the embedded Updater on macOS --- Source/Core/UICommon/AutoUpdate.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Source/Core/UICommon/AutoUpdate.cpp b/Source/Core/UICommon/AutoUpdate.cpp index 0bf87e4886..0f1ea63d58 100644 --- a/Source/Core/UICommon/AutoUpdate.cpp +++ b/Source/Core/UICommon/AutoUpdate.cpp @@ -49,15 +49,13 @@ const char UPDATER_LOG_FILE[] = "Updater.log"; std::string UpdaterPath(bool relocated = false) { - std::string path(File::GetExeDirectory() + DIR_SEP); #ifdef __APPLE__ if (relocated) - path += ".Dolphin Updater.2.app"; + return File::GetExeDirectory() + DIR_SEP + ".Dolphin Updater.2.app"; else - path += "Dolphin Updater.app"; - return path; + return File::GetBundleDirectory() + DIR_SEP + "Contents/Helpers/Dolphin Updater.app"; #else - return path + "Updater.exe"; + return File::GetExeDirectory() + DIR_SEP + "Updater.exe"; #endif } From 352bf09ef70f3c37335628fad22dcce2341be5f7 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 1 Aug 2024 14:55:34 -0400 Subject: [PATCH 249/296] BuildMacOSUniversalBinary: Switch to mac-codesign tool and codesign embedded updater --- BuildMacOSUniversalBinary.py | 33 +++++++++++++-------------------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/BuildMacOSUniversalBinary.py b/BuildMacOSUniversalBinary.py index 33973393a6..d09bd9a8b3 100755 --- a/BuildMacOSUniversalBinary.py +++ b/BuildMacOSUniversalBinary.py @@ -59,8 +59,6 @@ DEFAULT_CONFIG = { # running corrupted binaries and allows for access to the extended # permisions needed for ARM builds "codesign_identity": "-", - # Entitlements file to use for code signing - "entitlements": "../Source/Core/DolphinQt/DolphinEmu.entitlements", # Minimum macOS version for each architecture slice "arm64_mac_os_deployment_target": "11.0.0", @@ -119,11 +117,6 @@ def parse_args(conf=DEFAULT_CONFIG): help="Directory where universal binary will be stored", default=conf["dst_app"]) - parser.add_argument( - "--entitlements", - help="Path to .entitlements file for code signing", - default=conf["entitlements"]) - parser.add_argument("--run_unit_tests", action="store_true", default=conf["run_unit_tests"]) @@ -352,21 +345,21 @@ def build(config): src_app1 = ARCHITECTURES[1]+"/Binaries/" recursive_merge_binaries(src_app0, src_app1, dst_app) - for path in glob.glob(dst_app+"/*"): - if os.path.isdir(path) and os.path.splitext(path)[1] != ".app": - continue - + + if config["autoupdate"]: subprocess.check_call([ - "codesign", - "-d", - "--force", - "-s", + "../Tools/mac-codesign.sh", + "-t", + "-e", "preserve", config["codesign_identity"], - "--options=runtime", - "--entitlements", config["entitlements"], - "--deep", - "--verbose=2", - path]) + dst_app+"/Dolphin.app/Contents/Helpers/Dolphin Updater.app"]) + + subprocess.check_call([ + "../Tools/mac-codesign.sh", + "-t", + "-e", "preserve", + config["codesign_identity"], + dst_app+"/Dolphin.app"]) print("Built Universal Binary successfully!") From cde64b6a3d174e3e5e92fa399286fa9513d8fce6 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 20 Apr 2024 02:01:07 -0700 Subject: [PATCH 250/296] CachedInterpreter: Software JIT Profiling Support --- .../CachedInterpreter/CachedInterpreter.cpp | 41 +++++++++++++++---- .../CachedInterpreter/CachedInterpreter.h | 22 +++++++++- 2 files changed, 54 insertions(+), 9 deletions(-) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 0960b77fb7..594f560f10 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -89,12 +89,23 @@ void CachedInterpreter::SingleStep() ExecuteOneBlock(); } -s32 CachedInterpreter::EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlockOperands& operands) +s32 CachedInterpreter::StartProfiledBlock(PowerPC::PowerPCState& ppc_state, + const StartProfiledBlockOperands& operands) +{ + JitBlock::ProfileData::BeginProfiling(operands.profile_data); + return sizeof(AnyCallback) + sizeof(operands); +} + +template +s32 CachedInterpreter::EndBlock(PowerPC::PowerPCState& ppc_state, + const EndBlockOperands& operands) { - const auto& [downcount, num_load_stores, num_fp_inst] = operands; ppc_state.pc = ppc_state.npc; - ppc_state.downcount -= downcount; - PowerPC::UpdatePerformanceMonitor(downcount, num_load_stores, num_fp_inst, ppc_state); + ppc_state.downcount -= operands.downcount; + PowerPC::UpdatePerformanceMonitor(operands.downcount, operands.num_load_stores, + operands.num_fp_inst, ppc_state); + if constexpr (profiled) + JitBlock::ProfileData::EndProfiling(operands.profile_data, operands.downcount); return 0; } @@ -200,10 +211,23 @@ bool CachedInterpreter::HandleFunctionHooking(u32 address) return false; js.downcountAmount += js.st.numCycles; - Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); + WriteEndBlock(); return true; } +void CachedInterpreter::WriteEndBlock() +{ + if (IsProfilingEnabled()) + { + Write(EndBlock, {{js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}, + js.curBlock->profile_data.get()}); + } + else + { + Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); + } +} + bool CachedInterpreter::SetEmitterStateToFreeCodeRegion() { const auto free = m_free_ranges.by_size_begin(); @@ -306,6 +330,9 @@ bool CachedInterpreter::DoJit(u32 em_address, JitBlock* b, u32 nextPC) auto& cpu = m_system.GetCPU(); auto& breakpoints = power_pc.GetBreakPoints(); + if (IsProfilingEnabled()) + Write(StartProfiledBlock, {js.curBlock->profile_data.get()}); + for (u32 i = 0; i < code_block.m_num_instructions; i++) { PPCAnalyst::CodeOp& op = m_code_buffer[i]; @@ -357,13 +384,13 @@ bool CachedInterpreter::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (op.branchIsIdleLoop) Write(CheckIdle, {m_system.GetCoreTiming(), js.blockStart}); if (op.canEndBlock) - Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); + WriteEndBlock(); } } if (code_block.m_broken) { Write(WriteBrokenBlockNPC, {nextPC}); - Write(EndBlock, {js.downcountAmount, js.numLoadStoreInst, js.numFloatingPointInst}); + WriteEndBlock(); } if (HasWriteFailed()) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h index 8b4752dbb8..92da1cd473 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.h @@ -54,6 +54,7 @@ private: void ExecuteOneBlock(); bool HandleFunctionHooking(u32 address); + void WriteEndBlock(); // Finds a free memory region and sets the code emitter to point at that region. // Returns false if no free memory region can be found. @@ -62,6 +63,8 @@ private: void FreeRanges(); void ResetFreeMemoryRanges(); + struct StartProfiledBlockOperands; + template struct EndBlockOperands; struct InterpretOperands; struct InterpretAndCheckExceptionsOperands; @@ -70,7 +73,10 @@ private: struct CheckHaltOperands; struct CheckIdleOperands; - static s32 EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlockOperands& operands); + static s32 StartProfiledBlock(PowerPC::PowerPCState& ppc_state, + const StartProfiledBlockOperands& profile_data); + template + static s32 EndBlock(PowerPC::PowerPCState& ppc_state, const EndBlockOperands& operands); template static s32 Interpret(PowerPC::PowerPCState& ppc_state, const InterpretOperands& operands); template @@ -87,7 +93,13 @@ private: CachedInterpreterBlockCache m_block_cache; }; -struct CachedInterpreter::EndBlockOperands +struct CachedInterpreter::StartProfiledBlockOperands +{ + JitBlock::ProfileData* profile_data; +}; + +template <> +struct CachedInterpreter::EndBlockOperands { u32 downcount; u32 num_load_stores; @@ -95,6 +107,12 @@ struct CachedInterpreter::EndBlockOperands u32 : 32; }; +template <> +struct CachedInterpreter::EndBlockOperands : CachedInterpreter::EndBlockOperands +{ + JitBlock::ProfileData* profile_data; +}; + struct CachedInterpreter::InterpretOperands { Interpreter& interpreter; From f1366a4546f40c31fc4156a31971a0c0368176b6 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 3 Aug 2024 19:09:58 +0100 Subject: [PATCH 251/296] Debugger: keep breakpoints ordered by address Previously, breakpoints would move to the end of the list whenever they were edited. --- Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 200d414395..92b49a3b0e 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -207,8 +207,11 @@ void BreakpointWidget::OnClicked(QTableWidgetItem* item) if (!item) return; - if (item->column() == ADDRESS_COLUMN || item->column() == END_ADDRESS_COLUMN) + if (item->column() == SYMBOL_COLUMN || item->column() == ADDRESS_COLUMN || + item->column() == END_ADDRESS_COLUMN) + { return; + } const u32 address = static_cast(m_table->item(item->row(), 0)->data(ADDRESS_ROLE).toUInt()); @@ -351,6 +354,8 @@ void BreakpointWidget::Update() i++; } + m_table->sortItems(ADDRESS_COLUMN); + // Memory Breakpoints for (const auto& mbp : memchecks.GetMemChecks()) { From 316f7bfcbf41e345348a65cea4d005a8da14e3a1 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Tue, 6 Aug 2024 14:25:12 -0700 Subject: [PATCH 252/296] GeneralPane: Fix building with analytics disabled Add #if statements to only create and set analytics descriptions if analytics are enabled in the build settings. --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 55dc4f0799..db00c323c0 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -425,6 +425,7 @@ void GeneralPane::AddDescriptions() static constexpr char TR_FALLBACK_REGION_DESCRIPTION[] = QT_TR_NOOP("Sets the region used for titles whose region cannot be determined automatically." "

This setting cannot be changed while emulation is active."); +#if defined(USE_ANALYTICS) && USE_ANALYTICS static constexpr char TR_ENABLE_ANALYTICS_DESCRIPTION[] = QT_TR_NOOP( "If selected, Dolphin can collect data on its performance, feature usage, emulated games, " "and configuration, as well as data on your system's hardware and operating system." @@ -434,6 +435,7 @@ void GeneralPane::AddDescriptions() static constexpr char TR_GENERATE_NEW_IDENTITY_DESCRIPTION[] = QT_TR_NOOP("Generate a new anonymous ID for your usage statistics. This will cause any " "future statistics to be unassociated with your previous statistics."); +#endif m_checkbox_dualcore->SetDescription(tr(TR_DUALCORE_DESCRIPTION)); @@ -459,8 +461,10 @@ void GeneralPane::AddDescriptions() m_combobox_fallback_region->SetTitle(tr("Fallback Region")); m_combobox_fallback_region->SetDescription(tr(TR_FALLBACK_REGION_DESCRIPTION)); +#if defined(USE_ANALYTICS) && USE_ANALYTICS m_checkbox_enable_analytics->SetDescription(tr(TR_ENABLE_ANALYTICS_DESCRIPTION)); m_button_generate_new_identity->SetTitle(tr("Generate a New Statistics Identity")); m_button_generate_new_identity->SetDescription(tr(TR_GENERATE_NEW_IDENTITY_DESCRIPTION)); +#endif } From e0e0c074ef782aa4fac8b54a0c5dea16f69b0ae4 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Wed, 7 Aug 2024 04:44:45 -0700 Subject: [PATCH 253/296] JITs: Consistently Use Trivial `IsDebuggingEnabled` Getter --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 4 ++-- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 4 ++-- Source/Core/Core/PowerPC/JitCommon/JitBase.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 98d6dbb281..fe46aa90a6 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -757,7 +757,7 @@ void Jit64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) std::size_t block_size = m_code_buffer.size(); - if (m_enable_debugging) + if (IsDebuggingEnabled()) { // We can link blocks as long as we are not single stepping EnableBlockLink(); @@ -1035,7 +1035,7 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) { auto& cpu = m_system.GetCPU(); auto& power_pc = m_system.GetPowerPC(); - if (m_enable_debugging && power_pc.GetBreakPoints().IsAddressBreakPoint(op.address) && + if (IsDebuggingEnabled() && power_pc.GetBreakPoints().IsAddressBreakPoint(op.address) && !cpu.IsStepping()) { gpr.Flush(); diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index c005484377..4f0bd71c31 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -943,7 +943,7 @@ void JitArm64::Jit(u32 em_address, bool clear_cache_and_retry_on_failure) auto& cpu = m_system.GetCPU(); - if (m_enable_debugging) + if (IsDebuggingEnabled()) { // We can link blocks as long as we are not single stepping SetBlockLinkingEnabled(true); @@ -1237,7 +1237,7 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) } else { - if (m_enable_debugging && !cpu.IsStepping() && + if (IsDebuggingEnabled() && !cpu.IsStepping() && m_system.GetPowerPC().GetBreakPoints().IsAddressBreakPoint(op.address)) { FlushCarry(); diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp index 372a06008c..39b173095c 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp @@ -151,7 +151,7 @@ void JitBase::InitFastmemArena() void JitBase::InitBLROptimization() { m_enable_blr_optimization = - jo.enableBlocklink && !m_enable_debugging && EMM::IsExceptionHandlerSupported(); + jo.enableBlocklink && !IsDebuggingEnabled() && EMM::IsExceptionHandlerSupported(); m_cleanup_after_stackfault = false; } @@ -267,7 +267,7 @@ bool JitBase::CanMergeNextInstructions(int count) const // Be careful: a breakpoint kills flags in between instructions for (int i = 1; i <= count; i++) { - if (m_enable_debugging && + if (IsDebuggingEnabled() && m_system.GetPowerPC().GetBreakPoints().IsAddressBreakPoint(js.op[i].address)) { return false; From feb2b287e8cee719d452042b5f475f3915ee8d77 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 8 Aug 2024 02:51:18 -0400 Subject: [PATCH 254/296] AutoUpdate: Remove the old updater app on macOS if it exists --- Source/Core/UICommon/AutoUpdate.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/UICommon/AutoUpdate.cpp b/Source/Core/UICommon/AutoUpdate.cpp index 0f1ea63d58..e1d6b7732c 100644 --- a/Source/Core/UICommon/AutoUpdate.cpp +++ b/Source/Core/UICommon/AutoUpdate.cpp @@ -84,6 +84,12 @@ void CleanupFromPreviousUpdate() { // Remove the relocated updater file. File::DeleteDirRecursively(UpdaterPath(true)); + + // Remove the old (non-embedded) updater app bundle. + // While the update process will delete the files within the old bundle after updating to a + // version with an embedded updater, it won't delete the folder structure of the bundle, so + // we should clean those leftovers up. + File::DeleteDirRecursively(File::GetExeDirectory() + DIR_SEP + "Dolphin Updater.app"); } #endif From 8e546e79aa39e68ea5c5ef1d613ba2fe3a8cf6cf Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 8 Aug 2024 08:01:50 -0700 Subject: [PATCH 255/296] DolphinQT: Listen For `clicked` Signal Rather Than `pressed` The latter signal was likely used by mistake, e.g. https://github.com/dolphin-emu/dolphin/pull/8263. --- .../Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp | 4 ++-- Source/Core/DolphinQt/Debugger/NetworkWidget.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index c39e1d7d58..df8456318c 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -135,8 +135,8 @@ void AchievementSettingsWidget::ConnectWidgets() { connect(m_common_integration_enabled_input, &QCheckBox::toggled, this, &AchievementSettingsWidget::ToggleRAIntegration); - connect(m_common_login_button, &QPushButton::pressed, this, &AchievementSettingsWidget::Login); - connect(m_common_logout_button, &QPushButton::pressed, this, &AchievementSettingsWidget::Logout); + connect(m_common_login_button, &QPushButton::clicked, this, &AchievementSettingsWidget::Login); + connect(m_common_logout_button, &QPushButton::clicked, this, &AchievementSettingsWidget::Logout); connect(m_common_hardcore_enabled_input, &QCheckBox::toggled, this, &AchievementSettingsWidget::ToggleHardcore); connect(m_common_unofficial_enabled_input, &QCheckBox::toggled, this, diff --git a/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp b/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp index 22a0cf74e3..e5b91e856a 100644 --- a/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/NetworkWidget.cpp @@ -227,7 +227,7 @@ void NetworkWidget::ConnectWidgets() connect(m_dump_bba_checkbox, &QCheckBox::stateChanged, [](int state) { Config::SetBaseOrCurrent(Config::MAIN_NETWORK_DUMP_BBA, state == Qt::Checked); }); - connect(m_open_dump_folder, &QPushButton::pressed, [] { + connect(m_open_dump_folder, &QPushButton::clicked, [] { const std::string location = File::GetUserPath(D_DUMPSSL_IDX); const QUrl url = QUrl::fromLocalFile(QString::fromStdString(location)); QDesktopServices::openUrl(url); From 9c5cd817e39b44ff2eb68c75d9405c582207b53b Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 8 Aug 2024 09:42:14 -0700 Subject: [PATCH 256/296] CMakeLists: Fix LLVM Usage In UICommon This compile definition was removed in 68cbd2640d4663fe29e21234dc068769cb9bc673 because it was complicated by changes in 50dc0ffbceebe0f633bd63cd4710a3e2f548d688. Thus, the LLVM disassembler would never be used in UICommon's Disassembler class. --- Source/Core/UICommon/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/UICommon/CMakeLists.txt b/Source/Core/UICommon/CMakeLists.txt index beb5e16e3f..67460ac1af 100644 --- a/Source/Core/UICommon/CMakeLists.txt +++ b/Source/Core/UICommon/CMakeLists.txt @@ -56,6 +56,7 @@ if(ENABLE_LLVM) find_package(LLVM CONFIG) if(LLVM_FOUND) message(STATUS "LLVM found, enabling LLVM support in disassembler") + target_compile_definitions(uicommon PRIVATE HAVE_LLVM) # Minimal documentation about LLVM's CMake functions is available here: # https://releases.llvm.org/16.0.0/docs/CMake.html#embedding-llvm-in-your-project # https://groups.google.com/g/llvm-dev/c/YeEVe7HTasQ?pli=1 @@ -69,6 +70,7 @@ if(ENABLE_LLVM) llvm_config(uicommon USE_SHARED mcdisassembler target ${LLVM_EXPAND_COMPONENTS} ) + target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS}) endif() endif() From 89959758922a5e6115e2cc25a7494ca6558ade1d Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Mon, 22 Jul 2024 09:44:07 +0200 Subject: [PATCH 257/296] Replace redundant dereferencing --- Source/Core/Core/HW/DVD/DVDInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/DVD/DVDInterface.cpp b/Source/Core/Core/HW/DVD/DVDInterface.cpp index 79081bee47..babb500902 100644 --- a/Source/Core/Core/HW/DVD/DVDInterface.cpp +++ b/Source/Core/Core/HW/DVD/DVDInterface.cpp @@ -391,7 +391,7 @@ void DVDInterface::SetDisc(std::unique_ptr disc, if (auto_disc_change_paths) { - ASSERT_MSG(DISCIO, (*auto_disc_change_paths).size() != 1, + ASSERT_MSG(DISCIO, auto_disc_change_paths->size() != 1, "Cannot automatically change between one disc"); m_auto_disc_change_paths = *auto_disc_change_paths; From ed62aec658f6646db1b4a1d34094a5ec06f8f784 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Mon, 22 Jul 2024 09:45:50 +0200 Subject: [PATCH 258/296] Update gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8e58ace16a..be0d2845b6 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,6 @@ CMakeLists.txt.user # Ignore kdevelop files/dirs *.kdev4 # Ignore IDEA/Clion files/dirs -/.idea/ +.idea/ # Ignore Visual Studio Code's working dir /.vscode/ From 194a5f39969e8f6c4d0c8eaab0521024ba1f18a0 Mon Sep 17 00:00:00 2001 From: lycheefox Date: Tue, 6 Aug 2024 19:34:33 -0400 Subject: [PATCH 259/296] Skylanders: Fix some skylanders and add missing ones. --- .../IOS/USB/Emulated/Skylanders/Skylander.cpp | 660 ++++++++++-------- 1 file changed, 360 insertions(+), 300 deletions(-) diff --git a/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp b/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp index 643c33d4b8..2997f90ab0 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp @@ -22,17 +22,19 @@ namespace IOS::HLE::USB const std::map, SkyData> list_skylanders = { {{0, 0x0000}, {"Whirlwind", Game::SpyrosAdv, Element::Air, Type::Skylander}}, {{0, 0x1801}, {"Whirlwind (S2)", Game::Giants, Element::Air, Type::Skylander}}, + {{0, 0x1812}, {"Whirlwind (Stone)", Game::Giants, Element::Air, Type::Skylander}}, {{0, 0x1C02}, {"Whirlwind (Polar)", Game::Giants, Element::Air, Type::Skylander}}, {{0, 0x2805}, {"Whirlwind (Horn Blast)", Game::SwapForce, Element::Air, Type::Skylander}}, {{0, 0x3810}, {"Whirlwind (Eon's Elite)", Game::TrapTeam, Element::Air, Type::Skylander}}, {{1, 0x0000}, {"Sonic Boom", Game::SpyrosAdv, Element::Air, Type::Skylander}}, {{1, 0x1801}, {"Sonic Boom (S2)", Game::Giants, Element::Air, Type::Skylander}}, - {{1, 0x1811}, {"Sonic Boom (Glow In The Dark)", Game::Giants, Element::Air, Type::Skylander}}, + {{1, 0x1811}, {"Sonic Boom (Glow in the Dark)", Game::Giants, Element::Air, Type::Skylander}}, {{1, 0x1813}, {"Sonic Boom (Sparkle)", Game::Giants, Element::Air, Type::Skylander}}, {{2, 0x0000}, {"Warnado", Game::SpyrosAdv, Element::Air, Type::Skylander}}, - {{2, 0x2206}, {"Warnado (Lightcore)", Game::SwapForce, Element::Air, Type::Skylander}}, + {{2, 0x2206}, {"Warnado (LightCore)", Game::SwapForce, Element::Air, Type::Skylander}}, {{3, 0x0000}, {"Lightning Rod", Game::SpyrosAdv, Element::Air, Type::Skylander}}, {{3, 0x1801}, {"Lightning Rod (S2)", Game::Giants, Element::Air, Type::Skylander}}, + {{3, 0x1814}, {"Lightning Rod (Metallic Purple)", Game::Giants, Element::Air, Type::Skylander}}, {{4, 0x0000}, {"Bash", Game::SpyrosAdv, Element::Earth, Type::Skylander}}, {{4, 0x1801}, {"Bash (S2)", Game::Giants, Element::Earth, Type::Skylander}}, {{5, 0x0000}, {"Terrafin", Game::SpyrosAdv, Element::Earth, Type::Skylander}}, @@ -43,15 +45,19 @@ const std::map, SkyData> list_skylanders = {{6, 0x4810}, {"Dino-Rang (Eon's Elite)", Game::Superchargers, Element::Earth, Type::Skylander}}, {{7, 0x0000}, {"Prism Break", Game::SpyrosAdv, Element::Earth, Type::Skylander}}, - {{7, 0x1206}, {"Prism Break (Lightcore)", Game::Giants, Element::Earth, Type::Skylander}}, + {{7, 0x1206}, {"Prism Break (LightCore)", Game::Giants, Element::Earth, Type::Skylander}}, + {{7, 0x1214}, + {"Prism Break (White Flocked LightCore)", Game::Giants, Element::Earth, Type::Skylander}}, {{7, 0x1801}, {"Prism Break (S2)", Game::Giants, Element::Earth, Type::Skylander}}, {{7, 0x2805}, {"Prism Break (Hyper Beam)", Game::SwapForce, Element::Earth, Type::Skylander}}, {{8, 0x0000}, {"Sunburn", Game::SpyrosAdv, Element::Fire, Type::Skylander}}, {{9, 0x0000}, {"Eruptor", Game::SpyrosAdv, Element::Fire, Type::Skylander}}, - {{9, 0x1206}, {"Eruptor (Lightcore)", Game::Giants, Element::Fire, Type::Skylander}}, + {{9, 0x1206}, {"Eruptor (LightCore)", Game::Giants, Element::Fire, Type::Skylander}}, {{9, 0x1801}, {"Eruptor (S2)", Game::Giants, Element::Fire, Type::Skylander}}, + {{9, 0x1814}, {"Eruptor (White Flocked)", Game::Giants, Element::Fire, Type::Skylander}}, {{9, 0x2805}, {"Eruptor (Lava Barf)", Game::SwapForce, Element::Fire, Type::Skylander}}, - {{9, 0x2C02}, {"Eruptor (Volcanic)", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{9, 0x2C02}, + {"Eruptor (Volcanic Lava Barf)", Game::SwapForce, Element::Fire, Type::Skylander}}, {{9, 0x3810}, {"Eruptor (Eon's Elite)", Game::TrapTeam, Element::Fire, Type::Skylander}}, {{10, 0x0000}, {"Ignitor", Game::SpyrosAdv, Element::Fire, Type::Skylander}}, {{10, 0x1801}, {"Ignitor (S2)", Game::Giants, Element::Fire, Type::Skylander}}, @@ -62,10 +68,10 @@ const std::map, SkyData> list_skylanders = {{12, 0x0000}, {"Zap", Game::SpyrosAdv, Element::Water, Type::Skylander}}, {{12, 0x1801}, {"Zap (S2)", Game::Giants, Element::Water, Type::Skylander}}, {{13, 0x0000}, {"Wham-Shell", Game::SpyrosAdv, Element::Water, Type::Skylander}}, - {{13, 0x2206}, {"Wham-Shell (Lightcore)", Game::SwapForce, Element::Water, Type::Skylander}}, + {{13, 0x2206}, {"Wham-Shell (LightCore)", Game::SwapForce, Element::Water, Type::Skylander}}, {{14, 0x0000}, {"Gill Grunt", Game::SpyrosAdv, Element::Water, Type::Skylander}}, {{14, 0x1801}, {"Gill Grunt (S2)", Game::Giants, Element::Water, Type::Skylander}}, - {{14, 0x1817}, {"Gill Grunt (Metallic)", Game::Giants, Element::Water, Type::Skylander}}, + {{14, 0x1817}, {"Gill Grunt (Metallic Green)", Game::Giants, Element::Water, Type::Skylander}}, {{14, 0x2805}, {"Gill Grunt (Anchors Away)", Game::SwapForce, Element::Water, Type::Skylander}}, {{14, 0x3809}, {"Gill Grunt (Tidal Wave)", Game::TrapTeam, Element::Water, Type::Skylander}}, {{14, 0x3810}, {"Gill Grunt (Eon's Elite)", Game::TrapTeam, Element::Water, Type::Skylander}}, @@ -87,10 +93,11 @@ const std::map, SkyData> list_skylanders = {{19, 0x0000}, {"Trigger Happy", Game::SpyrosAdv, Element::Tech, Type::Skylander}}, {{19, 0x1801}, {"Trigger Happy (S2)", Game::Giants, Element::Tech, Type::Skylander}}, {{19, 0x2805}, {"Trigger Happy (Big Bang)", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{19, 0x2C02}, {"Trigger Happy (Springtime)", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{19, 0x2C02}, + {"Trigger Happy (Springtime Big Bang)", Game::SwapForce, Element::Tech, Type::Skylander}}, {{19, 0x3810}, {"Trigger Happy (Eon's Elite)", Game::TrapTeam, Element::Tech, Type::Skylander}}, {{20, 0x0000}, {"Drobot", Game::SpyrosAdv, Element::Tech, Type::Skylander}}, - {{20, 0x1206}, {"Drobot (Lightcore)", Game::Giants, Element::Tech, Type::Skylander}}, + {{20, 0x1206}, {"Drobot (LightCore)", Game::Giants, Element::Tech, Type::Skylander}}, {{20, 0x1801}, {"Drobot (S2)", Game::Giants, Element::Tech, Type::Skylander}}, {{21, 0x0000}, {"Drill Sergeant", Game::SpyrosAdv, Element::Tech, Type::Skylander}}, {{21, 0x1801}, {"Drill Sergeant (S2)", Game::Giants, Element::Tech, Type::Skylander}}, @@ -98,25 +105,30 @@ const std::map, SkyData> list_skylanders = {{22, 0x4810}, {"Boomer (Eon's Elite)", Game::Superchargers, Element::Tech, Type::Skylander}}, {{23, 0x0000}, {"Wrecking Ball", Game::SpyrosAdv, Element::Magic, Type::Skylander}}, {{23, 0x1801}, {"Wrecking Ball (S2)", Game::Giants, Element::Magic, Type::Skylander}}, + {{23, 0x1814}, + {"Wrecking Ball (Metallic Purple)", Game::Giants, Element::Magic, Type::Skylander}}, {{24, 0x0000}, {"Camo", Game::SpyrosAdv, Element::Life, Type::Skylander}}, {{24, 0x2805}, {"Camo (Thorn Horn)", Game::SwapForce, Element::Life, Type::Skylander}}, {{25, 0x0000}, {"Zook", Game::SpyrosAdv, Element::Life, Type::Skylander}}, {{25, 0x1801}, {"Zook (S2)", Game::Giants, Element::Life, Type::Skylander}}, + {{25, 0x1812}, {"Zook (Stone)", Game::Giants, Element::Life, Type::Skylander}}, {{25, 0x3810}, {"Zook (Eon's Elite)", Game::Superchargers, Element::Life, Type::Skylander}}, {{26, 0x0000}, {"Stealth Elf", Game::SpyrosAdv, Element::Life, Type::Skylander}}, {{26, 0x1801}, {"Stealth Elf (S2)", Game::Giants, Element::Life, Type::Skylander}}, {{26, 0x1C03}, {"Stealth Elf (Legendary)", Game::Giants, Element::Life, Type::Skylander}}, {{26, 0x2805}, {"Stealth Elf (Ninja)", Game::SwapForce, Element::Life, Type::Skylander}}, - {{26, 0x2C02}, {"Stealth Elf (Dark)", Game::SwapForce, Element::Life, Type::Skylander}}, + {{26, 0x2C02}, {"Stealth Elf (Dark Ninja)", Game::SwapForce, Element::Life, Type::Skylander}}, {{26, 0x3810}, {"Stealth Elf (Eon's Elite)", Game::TrapTeam, Element::Life, Type::Skylander}}, {{27, 0x0000}, {"Stump Smash", Game::SpyrosAdv, Element::Life, Type::Skylander}}, {{27, 0x1801}, {"Stump Smash (S2)", Game::Giants, Element::Life, Type::Skylander}}, + {{27, 0x1814}, {"Stump Smash (White Flocked)", Game::Giants, Element::Life, Type::Skylander}}, {{28, 0x0000}, {"Spyro (Dark)", Game::SpyrosAdv, Element::Magic, Type::Skylander}}, {{29, 0x0000}, {"Hex", Game::SpyrosAdv, Element::Undead, Type::Skylander}}, - {{29, 0x1206}, {"Hex (Lightcore)", Game::Giants, Element::Undead, Type::Skylander}}, + {{29, 0x1206}, {"Hex (LightCore)", Game::Giants, Element::Undead, Type::Skylander}}, {{29, 0x1801}, {"Hex (S2)", Game::Giants, Element::Undead, Type::Skylander}}, {{30, 0x0000}, {"Chop Chop", Game::SpyrosAdv, Element::Undead, Type::Skylander}}, {{30, 0x1801}, {"Chop Chop (S2)", Game::Giants, Element::Undead, Type::Skylander}}, + {{30, 0x1804}, {"Chop Chop (Metallic Blue)", Game::Giants, Element::Undead, Type::Skylander}}, {{30, 0x2805}, {"Chop Chop (Twin Blade)", Game::SwapForce, Element::Undead, Type::Skylander}}, {{30, 0x2816}, {"Chop Chop (Green Twin Blade)", Game::SwapForce, Element::Undead, Type::Skylander}}, @@ -126,11 +138,10 @@ const std::map, SkyData> list_skylanders = {"Ghost Roaster (Eon's Elite)", Game::Superchargers, Element::Undead, Type::Skylander}}, {{32, 0x0000}, {"Cynder", Game::SpyrosAdv, Element::Undead, Type::Skylander}}, {{32, 0x1801}, {"Cynder (S2)", Game::Giants, Element::Undead, Type::Skylander}}, - {{32, 0x1811}, {"Cynder (Glow In The Dark)", Game::Giants, Element::Undead, Type::Skylander}}, + {{32, 0x1811}, {"Cynder (Glow in the Dark)", Game::Giants, Element::Undead, Type::Skylander}}, {{32, 0x2805}, {"Cynder (Phantom)", Game::SwapForce, Element::Undead, Type::Skylander}}, - {{32, 0x301D}, {"Cynder (Clear)", Game::SpyrosAdv, Element::Undead, Type::Skylander}}, {{100, 0x1000}, {"Jet-Vac", Game::Giants, Element::Air, Type::Skylander}}, - {{100, 0x1206}, {"Jet-Vac (Lightcore)", Game::Giants, Element::Air, Type::Skylander}}, + {{100, 0x1206}, {"Jet-Vac (LightCore)", Game::Giants, Element::Air, Type::Skylander}}, {{100, 0x1403}, {"Jet-Vac (Legendary)", Game::Giants, Element::Air, Type::Skylander}}, {{100, 0x2805}, {"Jet Vac (Turbo)", Game::SwapForce, Element::Air, Type::Skylander}}, {{100, 0x3805}, {"Jet-Vac (Full Blast)", Game::TrapTeam, Element::Air, Type::Skylander}}, @@ -139,309 +150,68 @@ const std::map, SkyData> list_skylanders = {{102, 0x1602}, {"Crusher (Granite)", Game::Giants, Element::Earth, Type::Giant}}, {{103, 0x1000}, {"Flashwing", Game::Giants, Element::Earth, Type::Skylander}}, {{103, 0x1402}, {"Flashwing (Jade)", Game::Giants, Element::Earth, Type::Skylander}}, - {{103, 0x2206}, {"Flashwing (Lightcore)", Game::SwapForce, Element::Earth, Type::Skylander}}, + {{103, 0x2206}, {"Flashwing (LightCore)", Game::SwapForce, Element::Earth, Type::Skylander}}, {{104, 0x1206}, {"Hot Head", Game::Giants, Element::Fire, Type::Giant}}, {{104, 0x1213}, {"Hot Head (Sparkle)", Game::Giants, Element::Fire, Type::Skylander}}, {{105, 0x1000}, {"Hot Dog", Game::Giants, Element::Fire, Type::Skylander}}, + {{105, 0x1015}, {"Hot Dog (Bronze)", Game::Giants, Element::Fire, Type::Skylander}}, {{105, 0x1402}, {"Hot Dog (Molten)", Game::Giants, Element::Fire, Type::Skylander}}, {{105, 0x2805}, {"Hot Dog (Fire Bone)", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{105, 0x281A}, + {"Hot Dog (Red Flame Frito-Lay Fire Bone)", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{105, 0x281B}, + {"Hot Dog (Green Flame Frito-Lay Fire Bone)", Game::SwapForce, Element::Fire, + Type::Skylander}}, + {{105, 0x281C}, + {"Hot Dog (Purple Flame Frito-Lay Fire Bone)", Game::SwapForce, Element::Fire, + Type::Skylander}}, {{106, 0x1000}, {"Chill", Game::Giants, Element::Water, Type::Skylander}}, - {{106, 0x1206}, {"Chill (Lightcore)", Game::Giants, Element::Water, Type::Skylander}}, - {{106, 0x1603}, {"Chill (Legendary)", Game::Giants, Element::Water, Type::Skylander}}, + {{106, 0x1206}, {"Chill (LightCore)", Game::Giants, Element::Water, Type::Skylander}}, + {{106, 0x1603}, {"Chill (Legendary LightCore)", Game::Giants, Element::Water, Type::Skylander}}, {{106, 0x2805}, {"Chill (Blizzard)", Game::SwapForce, Element::Water, Type::Skylander}}, {{107, 0x1206}, {"Thumpback", Game::Giants, Element::Water, Type::Giant}}, {{108, 0x1000}, {"Pop Fizz", Game::Giants, Element::Magic, Type::Skylander}}, - {{108, 0x1206}, {"Pop Fizz (Lightcore)", Game::Giants, Element::Magic, Type::Skylander}}, + {{108, 0x1206}, {"Pop Fizz (LightCore)", Game::Giants, Element::Magic, Type::Skylander}}, {{108, 0x1402}, {"Pop Fizz (Punch)", Game::Giants, Element::Magic, Type::Skylander}}, {{108, 0x2805}, {"Pop Fizz (Super Gulp)", Game::SwapForce, Element::Magic, Type::Skylander}}, {{108, 0x3805}, {"Pop Fizz (Fizzy Frenzy)", Game::TrapTeam, Element::Magic, Type::Skylander}}, - {{108, 0x3C02}, {"Pop Fizz (Love Potion)", Game::TrapTeam, Element::Magic, Type::Skylander}}, + {{108, 0x3C02}, + {"Pop Fizz (Love Potion Fizzy Frenzy)", Game::TrapTeam, Element::Magic, Type::Skylander}}, {{109, 0x1206}, {"Ninjini", Game::Giants, Element::Magic, Type::Giant}}, {{109, 0x1602}, {"Ninjini (Scarlet)", Game::Giants, Element::Magic, Type::Giant}}, {{110, 0x1206}, {"Bouncer", Game::Giants, Element::Tech, Type::Giant}}, {{110, 0x1603}, {"Bouncer (Legendary)", Game::Giants, Element::Tech, Type::Giant}}, {{111, 0x1000}, {"Sprocket", Game::Giants, Element::Tech, Type::Skylander}}, + {{111, 0x1013}, {"Sprocket (Sparkle)", Game::Giants, Element::Tech, Type::Skylander}}, {{111, 0x2805}, {"Sprocket (Heavy Duty)", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{111, 0x2819}, {"Sprocket (Heavy Metal)", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{111, 0x2819}, + {"Sprocket (Heavy Metal Heavy Duty)", Game::SwapForce, Element::Tech, Type::Skylander}}, {{112, 0x1206}, {"Tree Rex", Game::Giants, Element::Life, Type::Giant}}, {{112, 0x1602}, {"Tree Rex (Gnarly)", Game::Giants, Element::Life, Type::Giant}}, {{113, 0x1000}, {"Shroomboom", Game::Giants, Element::Life, Type::Skylander}}, - {{113, 0x1206}, {"Shroomboom (Lightcore)", Game::Giants, Element::Life, Type::Skylander}}, + {{113, 0x1017}, {"Shroomboom (Metallic Green)", Game::Giants, Element::Life, Type::Skylander}}, + {{113, 0x1206}, {"Shroomboom (LightCore)", Game::Giants, Element::Life, Type::Skylander}}, {{113, 0x3801}, {"Shroomboom (Sure Shot)", Game::TrapTeam, Element::Life, Type::Skylander}}, {{114, 0x1206}, {"Eye-Brawl", Game::Giants, Element::Undead, Type::Giant}}, + {{114, 0x1214}, {"Eye-Brawl (Metallic Purple)", Game::Giants, Element::Undead, Type::Giant}}, {{114, 0x1215}, {"Eye-Brawl (Pumpkin)", Game::Giants, Element::Undead, Type::Giant}}, {{115, 0x1000}, {"Fright Rider", Game::Giants, Element::Undead, Type::Skylander}}, - {{115, 0x1011}, {"Fright Rider (Halloween)", Game::Giants, Element::Undead, Type::Skylander}}, - {{115, 0x1811}, - {"Fright Rider (Glow In The Dark)", Game::Giants, Element::Undead, Type::Skylander}}, - {{404, 0x0000}, {"Bash (Legendary)", Game::SpyrosAdv, Element::Earth, Type::Skylander}}, - {{416, 0x0000}, {"Spyro (Legendary)", Game::SpyrosAdv, Element::Magic, Type::Skylander}}, - {{419, 0x0000}, {"Trigger Happy (Legendary)", Game::SpyrosAdv, Element::Tech, Type::Skylander}}, - {{430, 0x0000}, {"Chop Chop (Legendary)", Game::SpyrosAdv, Element::Undead, Type::Skylander}}, - {{450, 0x3000}, {"Gusto", Game::TrapTeam, Element::Air, Type::TrapMaster}}, - {{451, 0x3000}, {"Thunderbolt", Game::TrapTeam, Element::Air, Type::TrapMaster}}, - {{451, 0x301D}, {"Thunderbolt (Clear)", Game::TrapTeam, Element::Air, Type::TrapMaster}}, - {{452, 0x3000}, {"Fling Kong", Game::TrapTeam, Element::Air, Type::Skylander}}, - {{453, 0x3000}, {"Blades", Game::TrapTeam, Element::Air, Type::Skylander}}, - {{453, 0x3403}, {"Blades (Legendary)", Game::TrapTeam, Element::Air, Type::Skylander}}, - {{454, 0x3000}, {"Wallop", Game::TrapTeam, Element::Earth, Type::TrapMaster}}, - {{455, 0x3000}, {"Head Rush", Game::TrapTeam, Element::Earth, Type::TrapMaster}}, - {{455, 0x3402}, {"Head Rush (Nitro)", Game::TrapTeam, Element::Earth, Type::Skylander}}, - {{456, 0x3000}, {"Fist Bump", Game::TrapTeam, Element::Earth, Type::Skylander}}, - {{457, 0x3000}, {"Rocky Roll", Game::TrapTeam, Element::Earth, Type::Skylander}}, - {{458, 0x3000}, {"Wildfire", Game::TrapTeam, Element::Fire, Type::TrapMaster}}, - {{458, 0x3402}, {"Wildfire (Dark)", Game::TrapTeam, Element::Fire, Type::TrapMaster}}, - {{459, 0x3000}, {"Kaboom", Game::TrapTeam, Element::Fire, Type::TrapMaster}}, - {{460, 0x3000}, {"Trail Blazer", Game::TrapTeam, Element::Fire, Type::Skylander}}, - {{461, 0x3000}, {"Torch", Game::TrapTeam, Element::Fire, Type::Skylander}}, - {{462, 0x3000}, {"Snap Shot", Game::TrapTeam, Element::Water, Type::TrapMaster}}, - {{462, 0x450F}, {"Snap Shot (Virtual)", Game::TrapTeam, Element::Water, Type::TrapMaster}}, - {{462, 0x3402}, {"Snap Shot (Dark)", Game::TrapTeam, Element::Water, Type::TrapMaster}}, - {{463, 0x3000}, {"Lob Star", Game::TrapTeam, Element::Water, Type::TrapMaster}}, - {{463, 0x3402}, {"Lob Star (Winterfest)", Game::TrapTeam, Element::Water, Type::TrapMaster}}, - {{464, 0x3000}, {"Flip Wreck", Game::TrapTeam, Element::Water, Type::Skylander}}, - {{465, 0x3000}, {"Echo", Game::TrapTeam, Element::Water, Type::Skylander}}, - {{466, 0x3000}, {"Blastermind", Game::TrapTeam, Element::Magic, Type::TrapMaster}}, - {{467, 0x3000}, {"Enigma", Game::TrapTeam, Element::Magic, Type::TrapMaster}}, - {{468, 0x3000}, {"Deja Vu", Game::TrapTeam, Element::Magic, Type::Skylander}}, - {{468, 0x3403}, {"Deja Vu (Legendary)", Game::TrapTeam, Element::Magic, Type::Skylander}}, - {{469, 0x3000}, {"Cobra Cadabra", Game::TrapTeam, Element::Magic, Type::Skylander}}, - {{469, 0x3402}, {"Cobra Cadabra (King)", Game::TrapTeam, Element::Magic, Type::Skylander}}, - {{470, 0x3000}, {"Jawbreaker", Game::TrapTeam, Element::Tech, Type::TrapMaster}}, - {{470, 0x3403}, {"Jawbreaker (Legendary)", Game::TrapTeam, Element::Tech, Type::TrapMaster}}, - {{471, 0x3000}, {"Gearshift", Game::TrapTeam, Element::Tech, Type::TrapMaster}}, - {{472, 0x3000}, {"Chopper", Game::TrapTeam, Element::Tech, Type::Skylander}}, - {{473, 0x3000}, {"Tread Head", Game::TrapTeam, Element::Tech, Type::Skylander}}, - {{474, 0x3000}, {"Bushwhack", Game::TrapTeam, Element::Life, Type::TrapMaster}}, - {{474, 0x3403}, {"Bushwhack (Legendary)", Game::TrapTeam, Element::Life, Type::TrapMaster}}, - {{475, 0x3000}, {"Tuff Luck", Game::TrapTeam, Element::Life, Type::TrapMaster}}, - {{475, 0x301D}, {"Tuff Luck (Clear)", Game::TrapTeam, Element::Life, Type::TrapMaster}}, - {{476, 0x3000}, {"Food Fight", Game::TrapTeam, Element::Life, Type::Skylander}}, - {{476, 0x3402}, {"Food Fight (Dark)", Game::TrapTeam, Element::Life, Type::Skylander}}, - {{476, 0x450F}, {"Food Fight (Virtual)", Game::TrapTeam, Element::Life, Type::Skylander}}, - {{477, 0x3000}, {"High Five", Game::TrapTeam, Element::Life, Type::Skylander}}, - {{478, 0x3000}, {"Krypt King", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, - {{478, 0x3402}, {"Krypt King (Nitro)", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, - {{479, 0x3000}, {"Short Cut", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, - {{480, 0x3000}, {"Bat Spin", Game::TrapTeam, Element::Undead, Type::Skylander}}, - {{481, 0x3000}, {"Funny Bone", Game::TrapTeam, Element::Undead, Type::Skylander}}, - {{482, 0x3000}, {"Knight Light", Game::TrapTeam, Element::Light, Type::TrapMaster}}, - {{483, 0x3000}, {"Spot Light", Game::TrapTeam, Element::Light, Type::Skylander}}, - {{484, 0x3000}, {"Knight Mare", Game::TrapTeam, Element::Dark, Type::TrapMaster}}, - {{485, 0x3000}, {"Blackout", Game::TrapTeam, Element::Dark, Type::Skylander}}, - {{502, 0x3000}, {"Bop", Game::TrapTeam, Element::Earth, Type::Mini}}, - {{503, 0x3000}, {"Spry", Game::TrapTeam, Element::Magic, Type::Mini}}, - {{504, 0x3000}, {"Hijinx", Game::TrapTeam, Element::Undead, Type::Mini}}, - {{505, 0x3000}, {"Terrabite", Game::TrapTeam, Element::Earth, Type::Mini}}, - {{506, 0x3000}, {"Breeze", Game::TrapTeam, Element::Air, Type::Mini}}, - {{507, 0x3000}, {"Weeruptor", Game::TrapTeam, Element::Fire, Type::Mini}}, - {{507, 0x3402}, {"Weeruptor (Eggsellent)", Game::TrapTeam, Element::Fire, Type::Mini}}, - {{508, 0x3000}, {"Pet Vac", Game::TrapTeam, Element::Air, Type::Mini}}, - {{508, 0x3402}, {"Pet Vac (Power Punch)", Game::TrapTeam, Element::Air, Type::Mini}}, - {{509, 0x3000}, {"Small Fry", Game::TrapTeam, Element::Fire, Type::Mini}}, - {{510, 0x3000}, {"Drobit", Game::TrapTeam, Element::Tech, Type::Mini}}, - {{514, 0x3000}, {"Gill Runt", Game::TrapTeam, Element::Water, Type::Mini}}, - {{519, 0x3000}, {"Trigger Snappy", Game::TrapTeam, Element::Tech, Type::Mini}}, - {{526, 0x3000}, {"Whisper Elf", Game::TrapTeam, Element::Life, Type::Mini}}, - {{540, 0x1000}, {"Barkley (Sidekick)", Game::Giants, Element::Life, Type::Mini}}, - {{540, 0x3000}, {"Barkley", Game::TrapTeam, Element::Life, Type::Mini}}, - {{540, 0x3402}, {"Barkley (Gnarly)", Game::TrapTeam, Element::Life, Type::Mini}}, - {{541, 0x1000}, {"Thumpling (Sidekick)", Game::Giants, Element::Water, Type::Mini}}, - {{541, 0x3000}, {"Thumpling", Game::TrapTeam, Element::Water, Type::Mini}}, - {{542, 0x1000}, {"Mini Jini (Sidekick)", Game::Giants, Element::Magic, Type::Mini}}, - {{542, 0x3000}, {"Mini Jini", Game::TrapTeam, Element::Magic, Type::Mini}}, - {{543, 0x1000}, {"Eye-Small (Sidekick)", Game::Giants, Element::Undead, Type::Mini}}, - {{543, 0x3000}, {"Eye-Small", Game::TrapTeam, Element::Undead, Type::Mini}}, - {{1000, 0x2000}, {"Boom Jet (Bottom)", Game::SwapForce, Element::Air, Type::Swapper}}, - {{1001, 0x2000}, {"Free Ranger (Bottom)", Game::SwapForce, Element::Air, Type::Swapper}}, - {{1001, 0x2403}, - {"Free Ranger (Legendary) (Bottom)", Game::SwapForce, Element::Air, Type::Swapper}}, - {{1002, 0x2000}, {"Rubble Rouser (Bottom)", Game::SwapForce, Element::Earth, Type::Swapper}}, - {{1003, 0x2000}, {"Doom Stone (Bottom)", Game::SwapForce, Element::Earth, Type::Swapper}}, - {{1004, 0x2000}, {"Blast Zone (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{1004, 0x2402}, {"Blast Zone (Dark) (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{1005, 0x2000}, {"Fire Kraken (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{1005, 0x2402}, - {"Fire Kraken (Jade) (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{1006, 0x2000}, {"Stink Bomb (Bottom)", Game::SwapForce, Element::Life, Type::Swapper}}, - {{1007, 0x2000}, {"Grilla Drilla (Bottom)", Game::SwapForce, Element::Life, Type::Swapper}}, - {{1008, 0x2000}, {"Hoot Loop (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, - {{1008, 0x2402}, - {"Hoot Loop (Enchanted) (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, - {{1009, 0x2000}, {"Trap Shadow (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, - {{1010, 0x2000}, {"Magna Charge (Bottom)", Game::SwapForce, Element::Tech, Type::Swapper}}, - {{1010, 0x2402}, - {"Magna Charge (Nitro) (Bottom)", Game::SwapForce, Element::Tech, Type::Swapper}}, - {{1011, 0x2000}, {"Spy Rise (Bottom)", Game::SwapForce, Element::Tech, Type::Swapper}}, - {{1012, 0x2000}, {"Night Shift (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{1012, 0x2403}, - {"Night Shift (Legendary) (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{1013, 0x2000}, {"Rattle Shake (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{1013, 0x2402}, - {"Rattle Shake (Quickdraw) (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{1014, 0x2000}, {"Freeze Blade (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{1014, 0x2402}, - {"Freeze Blade (Nitro) (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{1015, 0x2000}, {"Wash Buckler (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{1015, 0x2402}, - {"Wash Buckler (Dark) (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{2000, 0x2000}, {"Boom Jet (Top)", Game::SwapForce, Element::Air, Type::Swapper}}, - {{2001, 0x2000}, {"Free Ranger (Top)", Game::SwapForce, Element::Air, Type::Swapper}}, - {{2001, 0x2403}, - {"Free Ranger (Legendary) (Top)", Game::SwapForce, Element::Air, Type::Swapper}}, - {{2002, 0x2000}, {"Rubble Rouser (Top)", Game::SwapForce, Element::Earth, Type::Swapper}}, - {{2003, 0x2000}, {"Doom Stone (Top)", Game::SwapForce, Element::Earth, Type::Swapper}}, - {{2004, 0x2000}, {"Blast Zone (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{2004, 0x2402}, {"Blast Zone (Dark) (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{2005, 0x2000}, {"Fire Kraken (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{2005, 0x2402}, {"Fire Kraken (Jade) (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, - {{2006, 0x2000}, {"Stink Bomb (Top)", Game::SwapForce, Element::Life, Type::Swapper}}, - {{2007, 0x2000}, {"Grilla Drilla (Top)", Game::SwapForce, Element::Life, Type::Swapper}}, - {{2008, 0x2000}, {"Hoot Loop (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, - {{2008, 0x2402}, - {"Hoot Loop (Enchanted) (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, - {{2009, 0x2000}, {"Trap Shadow (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, - {{2010, 0x2000}, {"Magna Charge (Top)", Game::SwapForce, Element::Tech, Type::Swapper}}, - {{2010, 0x2402}, {"Magna Charge (Nitro) (Top)", Game::SwapForce, Element::Tech, Type::Swapper}}, - {{2011, 0x2000}, {"Spy Rise (Top)", Game::SwapForce, Element::Tech, Type::Swapper}}, - {{2012, 0x2000}, {"Night Shift (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{2012, 0x2403}, - {"Night Shift (Legendary) (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{2013, 0x2000}, {"Rattle Shake (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{2013, 0x2402}, - {"Rattle Shake (Quickdraw) (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, - {{2014, 0x2000}, {"Freeze Blade (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{2014, 0x2402}, - {"Freeze Blade (Nitro) (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{2015, 0x2000}, {"Wash Buckler (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{2015, 0x2402}, {"Wash Buckler (Dark) (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, - {{3000, 0x2000}, {"Scratch", Game::SwapForce, Element::Air, Type::Skylander}}, - {{3001, 0x2000}, {"Pop Thorn", Game::SwapForce, Element::Air, Type::Skylander}}, - {{3002, 0x2000}, {"Slobber Tooth", Game::SwapForce, Element::Earth, Type::Skylander}}, - {{3002, 0x2402}, {"Slobber Tooth (Dark)", Game::SwapForce, Element::Earth, Type::Skylander}}, - {{3003, 0x2000}, {"Scorp", Game::SwapForce, Element::Earth, Type::Skylander}}, - {{3004, 0x2000}, {"Fryno", Game::SwapForce, Element::Fire, Type::Skylander}}, - {{3004, 0x3801}, {"Fryno (Hog Wild)", Game::TrapTeam, Element::Fire, Type::Skylander}}, - {{3005, 0x2000}, {"Smolderdash", Game::SwapForce, Element::Fire, Type::Skylander}}, - {{3005, 0x2206}, {"Smolderdash (Lightcore)", Game::SwapForce, Element::Fire, Type::Skylander}}, - {{3006, 0x2000}, {"Bumble Blast", Game::SwapForce, Element::Life, Type::Skylander}}, - {{3006, 0x2206}, {"Bumble Blast (Lightcore)", Game::SwapForce, Element::Life, Type::Skylander}}, - {{3006, 0x2402}, {"Bumble Blast (Jolly)", Game::SwapForce, Element::Life, Type::Skylander}}, - {{3007, 0x2000}, {"Zoo Lou", Game::SwapForce, Element::Life, Type::Skylander}}, - {{3007, 0x2403}, {"Zoo Lou (Legendary)", Game::SwapForce, Element::Life, Type::Skylander}}, - {{3008, 0x2000}, {"Dune Bug", Game::SwapForce, Element::Magic, Type::Skylander}}, - {{3009, 0x2000}, {"Star Strike", Game::SwapForce, Element::Magic, Type::Skylander}}, - {{3009, 0x2206}, {"Star Strike (Lightcore)", Game::SwapForce, Element::Magic, Type::Skylander}}, - {{3009, 0x2602}, - {"Star Strike (Lightcore Enchanted)", Game::SwapForce, Element::Magic, Type::Skylander}}, - {{3010, 0x2000}, {"Countdown", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{3010, 0x2206}, {"Countdown (Lightcore)", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{3010, 0x2402}, {"Countdown (Kickoff)", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{3011, 0x2000}, {"Wind Up", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{3011, 0x2404}, - {"Wind Up (Gear Head Vicarious Visions)", Game::SwapForce, Element::Tech, Type::Skylander}}, - {{3012, 0x2000}, {"Roller Brawl", Game::SwapForce, Element::Undead, Type::Skylander}}, - {{3013, 0x2000}, {"Grim Creeper", Game::SwapForce, Element::Undead, Type::Skylander}}, - {{3013, 0x2206}, - {"Grim Creeper (Lightcore)", Game::SwapForce, Element::Undead, Type::Skylander}}, - {{3013, 0x2603}, - {"Grim Creeper (Legendary) (Lightcore)", Game::SwapForce, Element::Undead, Type::Skylander}}, - {{3014, 0x2000}, {"Rip Tide", Game::SwapForce, Element::Water, Type::Skylander}}, - {{3015, 0x2000}, {"Punk Shock", Game::SwapForce, Element::Water, Type::Skylander}}, - {{3400, 0x4100}, {"Fiesta", Game::Superchargers, Element::Undead, Type::Skylander}}, - {{3400, 0x4515}, {"Fiesta (Frightful)", Game::Superchargers, Element::Undead, Type::Skylander}}, - {{3401, 0x4100}, {"High Volt", Game::Superchargers, Element::Tech, Type::Skylander}}, - {{3402, 0x4100}, {"Splat", Game::Superchargers, Element::Magic, Type::Skylander}}, - {{3402, 0x4502}, {"Splat (Power Blue)", Game::Superchargers, Element::Magic, Type::Skylander}}, - {{3406, 0x4100}, {"Stormblade", Game::Superchargers, Element::Air, Type::Skylander}}, - {{3406, 0x4502}, {"Stormblade (Dark)", Game::Superchargers, Element::Air, Type::Skylander}}, - {{3406, 0x4503}, {"Stormblade (Dark)", Game::Superchargers, Element::Air, Type::Skylander}}, - {{3411, 0x4100}, {"Smash Hit", Game::Superchargers, Element::Earth, Type::Skylander}}, - {{3411, 0x4502}, - {"Smash Hit (Steel Plated)", Game::Superchargers, Element::Earth, Type::Skylander}}, - {{3412, 0x4100}, {"Spitfire", Game::Superchargers, Element::Fire, Type::Skylander}}, - {{3412, 0x4502}, {"Spitfire (Dark)", Game::Superchargers, Element::Fire, Type::Skylander}}, - {{3412, 0x450F}, {"Spitfire (Instant)", Game::Superchargers, Element::Fire, Type::Skylander}}, - {{3413, 0x4100}, {"Jet-Vac (Hurricane)", Game::Superchargers, Element::Air, Type::Skylander}}, - {{3413, 0x4503}, - {"Jet-Vac (Legendary Hurricane)", Game::Superchargers, Element::Air, Type::Skylander}}, - {{3414, 0x4100}, - {"Trigger Happy (Double Dare)", Game::Superchargers, Element::Tech, Type::Skylander}}, - {{3414, 0x4502}, - {"Trigger Happy (Power Blue)", Game::Superchargers, Element::Tech, Type::Skylander}}, - {{3415, 0x4100}, - {"Stealth Elf (Super Shot)", Game::Superchargers, Element::Life, Type::Skylander}}, - {{3415, 0x4502}, - {"Stealth Elf (Dark Super Shot)", Game::Superchargers, Element::Life, Type::Skylander}}, - {{3415, 0x450F}, - {"Stealth Elf (Instant)", Game::Superchargers, Element::Life, Type::Skylander}}, - {{3416, 0x4100}, - {"Terrafin (Shark Shooter)", Game::Superchargers, Element::Earth, Type::Skylander}}, - {{3417, 0x4100}, - {"Roller Brawl (Bone Bash)", Game::Superchargers, Element::Undead, Type::Skylander}}, - {{3417, 0x4503}, - {"Roller Brawl (Legendary Bone Bash)", Game::Superchargers, Element::Undead, Type::Skylander}}, - {{3420, 0x4100}, - {"Pop Fizz (Big Bubble)", Game::Superchargers, Element::Magic, Type::Skylander}}, - {{3420, 0x450E}, - {"Pop Fizz (Birthday Bash Big Bubble)", Game::Superchargers, Element::Magic, Type::Skylander}}, - {{3421, 0x4100}, {"Eruptor (Lava Lance)", Game::Superchargers, Element::Fire, Type::Skylander}}, - {{3422, 0x4100}, - {"Gill Grunt (Deep Dive)", Game::Superchargers, Element::Water, Type::Skylander}}, - {{3423, 0x4100}, - {"Donkey Kong (Turbo Charge)", Game::Superchargers, Element::Life, Type::Skylander}}, - {{3423, 0x4502}, - {"Donkey Kong (Dark Turbo Charge)", Game::Superchargers, Element::Life, Type::Skylander}}, - {{3424, 0x4100}, {"Bowser (Hammer Slam)", Game::Superchargers, Element::Fire, Type::Skylander}}, - {{3424, 0x4502}, - {"Bowser (Dark Hammer Slam)", Game::Superchargers, Element::Fire, Type::Skylander}}, - {{3425, 0x4100}, {"Dive-Clops", Game::Superchargers, Element::Water, Type::Skylander}}, - {{3425, 0x450E}, - {"Dive-Clops (Missile-Tow)", Game::Superchargers, Element::Water, Type::Skylander}}, - {{3425, 0x450F}, - {"Dive-Clops (Instant)", Game::Superchargers, Element::Water, Type::Skylander}}, - {{3426, 0x4100}, {"Astroblast", Game::Superchargers, Element::Tech, Type::Skylander}}, - {{3426, 0x4503}, - {"Astroblast (Legendary)", Game::Superchargers, Element::Light, Type::Skylander}}, - {{3427, 0x4100}, {"Nightfall", Game::Superchargers, Element::Dark, Type::Skylander}}, - {{3428, 0x4100}, {"Thrillipede", Game::Superchargers, Element::Life, Type::Skylander}}, - {{3428, 0x450D}, - {"Thrillipede (Eggcited)", Game::Superchargers, Element::Life, Type::Skylander}}, - {{200, 0x2000}, {"Anvil Rain", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{201, 0x2000}, {"Hidden Treasure", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{202, 0x2000}, {"Healing Elixer", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{203, 0x2000}, {"Ghost Pirate Swords", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{204, 0x2000}, {"Time Twister Hourglass", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{205, 0x2000}, {"Sky-Iron Shield", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{206, 0x2000}, {"Winged Boots", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{207, 0x2000}, {"Sparx Dragonfly", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{115, 0x1011}, + {"Fright Rider (Glow in the Dark)", Game::Giants, Element::Undead, Type::Skylander}}, + {{115, 0x1015}, {"Fright Rider (Halloween)", Game::Giants, Element::Undead, Type::Skylander}}, + {{200, 0x0000}, {"Anvil Rain", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{201, 0x0000}, {"Hidden Treasure", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{201, 0x0002}, {"Hidden Treasure (Platinum)", Game::Giants, Element::Other, Type::Item}}, + {{202, 0x0000}, {"Healing Elixir", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{203, 0x0000}, {"Ghost Pirate Swords", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{204, 0x0000}, {"Time Twister Hourglass", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{205, 0x0000}, {"Sky-Iron Shield", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{206, 0x0000}, {"Winged Boots", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{207, 0x0000}, {"Sparx Dragonfly", Game::SpyrosAdv, Element::Other, Type::Item}}, {{208, 0x1206}, {"Dragonfire Cannon", Game::Giants, Element::Other, Type::Item}}, {{208, 0x1602}, {"Golden Dragonfire Cannon", Game::Giants, Element::Other, Type::Item}}, {{209, 0x1206}, {"Scorpion Striker Catapult", Game::Giants, Element::Other, Type::Item}}, - {{230, 0x0000}, {"Hand Of Fate", Game::TrapTeam, Element::Other, Type::Item}}, - {{230, 0x3403}, {"Hand Of Fate (Legendary)", Game::TrapTeam, Element::Other, Type::Item}}, - {{231, 0x0000}, {"Piggy Bank", Game::TrapTeam, Element::Other, Type::Item}}, - {{232, 0x0000}, {"Rocket Ram", Game::TrapTeam, Element::Other, Type::Item}}, - {{233, 0x0000}, {"Tiki Speaky", Game::TrapTeam, Element::Other, Type::Item}}, - {{300, 0x0000}, {"Dragon's Peak", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{301, 0x2000}, {"Empire Of Ice", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{302, 0x2000}, {"Pirate Ship", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{303, 0x2000}, {"Darklight Crypt", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{304, 0x2000}, {"Volcanic Vault", Game::SpyrosAdv, Element::Other, Type::Item}}, - {{305, 0x3000}, {"Mirror Of Mystery", Game::TrapTeam, Element::Other, Type::Item}}, - {{306, 0x3000}, {"Nightmare Express", Game::TrapTeam, Element::Other, Type::Item}}, - {{307, 0x3206}, {"Sunscraper Spire", Game::TrapTeam, Element::Other, Type::Item}}, - {{308, 0x3206}, {"Midnight Museum", Game::TrapTeam, Element::Other, Type::Item}}, - {{3200, 0x2000}, {"Battle Hammer", Game::SwapForce, Element::Other, Type::Item}}, - {{3201, 0x2000}, {"Sky Diamond", Game::SwapForce, Element::Other, Type::Item}}, - {{3202, 0x2000}, {"Platinum Sheep", Game::SwapForce, Element::Other, Type::Item}}, - {{3203, 0x2000}, {"Groove Machine", Game::SwapForce, Element::Other, Type::Item}}, - {{3204, 0x2000}, {"Ufo Hat", Game::SwapForce, Element::Other, Type::Item}}, - {{3300, 0x2000}, {"Sheep Wreck Island", Game::SwapForce, Element::Other, Type::Item}}, - {{3301, 0x2000}, {"Tower Of Time", Game::SwapForce, Element::Other, Type::Item}}, - {{3302, 0x2206}, {"Fiery Forge", Game::SwapForce, Element::Other, Type::Item}}, - {{3303, 0x2206}, {"Arkeyan Crossbow", Game::SwapForce, Element::Other, Type::Item}}, - {{210, 0x3001}, {"Magic Log Holder", Game::TrapTeam, Element::Magic, Type::Trap}}, + {{210, 0x3002}, {"Magic Log Holder", Game::TrapTeam, Element::Magic, Type::Trap}}, {{210, 0x3008}, {"Magic Skull", Game::TrapTeam, Element::Magic, Type::Trap}}, {{210, 0x300B}, {"Magic Axe", Game::TrapTeam, Element::Magic, Type::Trap}}, {{210, 0x300E}, {"Magic Hourglass", Game::TrapTeam, Element::Magic, Type::Trap}}, @@ -474,9 +244,8 @@ const std::map, SkyData> list_skylanders = {{214, 0x300C}, {"Tech Hand", Game::TrapTeam, Element::Tech, Type::Trap}}, {{214, 0x3016}, {"Tech Flying Helmet", Game::TrapTeam, Element::Tech, Type::Trap}}, {{214, 0x301A}, {"Tech Handstand", Game::TrapTeam, Element::Tech, Type::Trap}}, - {{215, 0x3001}, {"Fire Flower", Game::TrapTeam, Element::Fire, Type::Trap}}, {{215, 0x3005}, {"Fire Torch", Game::TrapTeam, Element::Fire, Type::Trap}}, - {{215, 0x3009}, {"Fire Flower (NEW)", Game::TrapTeam, Element::Fire, Type::Trap}}, + {{215, 0x3009}, {"Fire Scepter", Game::TrapTeam, Element::Fire, Type::Trap}}, {{215, 0x3011}, {"Fire Screamer", Game::TrapTeam, Element::Fire, Type::Trap}}, {{215, 0x3012}, {"Fire Totem", Game::TrapTeam, Element::Fire, Type::Trap}}, {{215, 0x3017}, {"Fire Captain's Hat", Game::TrapTeam, Element::Fire, Type::Trap}}, @@ -488,7 +257,6 @@ const std::map, SkyData> list_skylanders = {{216, 0x3012}, {"Earth Totem", Game::TrapTeam, Element::Earth, Type::Trap}}, {{216, 0x301A}, {"Earth Handstand", Game::TrapTeam, Element::Earth, Type::Trap}}, {{217, 0x3001}, {"Life Toucan", Game::TrapTeam, Element::Life, Type::Trap}}, - {{217, 0x3003}, {"Life Toucan (NEW)", Game::TrapTeam, Element::Life, Type::Trap}}, {{217, 0x3005}, {"Life Torch", Game::TrapTeam, Element::Life, Type::Trap}}, {{217, 0x300A}, {"Life Hammer", Game::TrapTeam, Element::Life, Type::Trap}}, {{217, 0x3010}, {"Life Snake", Game::TrapTeam, Element::Life, Type::Trap}}, @@ -502,20 +270,237 @@ const std::map, SkyData> list_skylanders = {{219, 0x301B}, {"Light Yawn", Game::TrapTeam, Element::Light, Type::Trap}}, {{220, 0x301E}, {"Kaos", Game::TrapTeam, Element::Other, Type::Trap}}, {{220, 0x351F}, {"Kaos (Ultimate)", Game::TrapTeam, Element::Other, Type::Trap}}, - {{3500, 0x4000}, {"Sky Trophy", Game::Superchargers, Element::Air, Type::Trophy}}, - {{3500, 0x4403}, {"Sky Trophy (Legendary)", Game::Superchargers, Element::Air, Type::Trophy}}, - {{3501, 0x4000}, {"Land Trophy", Game::Superchargers, Element::Earth, Type::Trophy}}, - {{3502, 0x4000}, {"Sea Trophy", Game::Superchargers, Element::Water, Type::Trophy}}, - {{3503, 0x4000}, {"Kaos Trophy", Game::Superchargers, Element::Other, Type::Trophy}}, + {{230, 0x3000}, {"Hand of Fate", Game::TrapTeam, Element::Other, Type::Item}}, + {{230, 0x3403}, {"Hand of Fate (Legendary)", Game::TrapTeam, Element::Other, Type::Item}}, + {{231, 0x3000}, {"Piggy Bank", Game::TrapTeam, Element::Other, Type::Item}}, + {{232, 0x3000}, {"Rocket Ram", Game::TrapTeam, Element::Other, Type::Item}}, + {{233, 0x3000}, {"Tiki Speaky", Game::TrapTeam, Element::Other, Type::Item}}, + {{300, 0x0000}, {"Dragon's Peak", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{301, 0x0000}, {"Empire of Ice", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{302, 0x0000}, {"Pirate Seas", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{303, 0x0000}, {"Darklight Crypt", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{304, 0x0000}, {"Volcanic Vault", Game::SpyrosAdv, Element::Other, Type::Item}}, + {{305, 0x3000}, {"Mirror of Mystery", Game::TrapTeam, Element::Other, Type::Item}}, + {{306, 0x3000}, {"Nightmare Express", Game::TrapTeam, Element::Other, Type::Item}}, + {{307, 0x3206}, {"Sunscraper Spire", Game::TrapTeam, Element::Other, Type::Item}}, + {{308, 0x3206}, {"Midnight Museum", Game::TrapTeam, Element::Other, Type::Item}}, + {{404, 0x0000}, {"Bash (Legendary)", Game::SpyrosAdv, Element::Earth, Type::Skylander}}, + {{416, 0x0000}, {"Spyro (Legendary)", Game::SpyrosAdv, Element::Magic, Type::Skylander}}, + {{419, 0x0000}, {"Trigger Happy (Legendary)", Game::SpyrosAdv, Element::Tech, Type::Skylander}}, + {{430, 0x0000}, {"Chop Chop (Legendary)", Game::SpyrosAdv, Element::Undead, Type::Skylander}}, + {{450, 0x3000}, {"Gusto", Game::TrapTeam, Element::Air, Type::TrapMaster}}, + {{451, 0x3000}, {"Thunderbolt", Game::TrapTeam, Element::Air, Type::TrapMaster}}, + {{451, 0x301D}, {"Thunderbolt (Clear)", Game::TrapTeam, Element::Air, Type::TrapMaster}}, + {{452, 0x3000}, {"Fling Kong", Game::TrapTeam, Element::Air, Type::Skylander}}, + {{453, 0x3000}, {"Blades", Game::TrapTeam, Element::Air, Type::Skylander}}, + {{453, 0x3403}, {"Blades (Legendary)", Game::TrapTeam, Element::Air, Type::Skylander}}, + {{454, 0x3000}, {"Wallop", Game::TrapTeam, Element::Earth, Type::TrapMaster}}, + {{455, 0x3000}, {"Head Rush", Game::TrapTeam, Element::Earth, Type::TrapMaster}}, + {{455, 0x3402}, {"Head Rush (Nitro)", Game::TrapTeam, Element::Earth, Type::Skylander}}, + {{456, 0x3000}, {"Fist Bump", Game::TrapTeam, Element::Earth, Type::Skylander}}, + {{457, 0x3000}, {"Rocky Roll", Game::TrapTeam, Element::Earth, Type::Skylander}}, + {{458, 0x3000}, {"Wildfire", Game::TrapTeam, Element::Fire, Type::TrapMaster}}, + {{458, 0x3402}, {"Wildfire (Dark)", Game::TrapTeam, Element::Fire, Type::TrapMaster}}, + {{459, 0x3000}, {"Ka-Boom", Game::TrapTeam, Element::Fire, Type::TrapMaster}}, + {{460, 0x3000}, {"Trail Blazer", Game::TrapTeam, Element::Fire, Type::Skylander}}, + {{461, 0x3000}, {"Torch", Game::TrapTeam, Element::Fire, Type::Skylander}}, + {{462, 0x3000}, {"Snap Shot", Game::TrapTeam, Element::Water, Type::TrapMaster}}, + {{462, 0x3402}, {"Snap Shot (Dark)", Game::TrapTeam, Element::Water, Type::TrapMaster}}, + {{462, 0x450F}, {"Snap Shot (Virtual)", Game::TrapTeam, Element::Water, Type::TrapMaster}}, + {{463, 0x3000}, {"Lob-Star", Game::TrapTeam, Element::Water, Type::TrapMaster}}, + {{463, 0x3402}, {"Lob-Star (Winterfest)", Game::TrapTeam, Element::Water, Type::TrapMaster}}, + {{464, 0x3000}, {"Flip Wreck", Game::TrapTeam, Element::Water, Type::Skylander}}, + {{465, 0x3000}, {"Echo", Game::TrapTeam, Element::Water, Type::Skylander}}, + {{466, 0x3000}, {"Blastermind", Game::TrapTeam, Element::Magic, Type::TrapMaster}}, + {{467, 0x3000}, {"Enigma", Game::TrapTeam, Element::Magic, Type::TrapMaster}}, + {{468, 0x3000}, {"Deja Vu", Game::TrapTeam, Element::Magic, Type::Skylander}}, + {{468, 0x3403}, {"Deja Vu (Legendary)", Game::TrapTeam, Element::Magic, Type::Skylander}}, + {{469, 0x3000}, {"Cobra Cadabra", Game::TrapTeam, Element::Magic, Type::Skylander}}, + {{469, 0x3402}, {"Cobra Cadabra (King)", Game::TrapTeam, Element::Magic, Type::Skylander}}, + {{470, 0x3000}, {"Jawbreaker", Game::TrapTeam, Element::Tech, Type::TrapMaster}}, + {{470, 0x3403}, {"Jawbreaker (Legendary)", Game::TrapTeam, Element::Tech, Type::TrapMaster}}, + {{471, 0x3000}, {"Gearshift", Game::TrapTeam, Element::Tech, Type::TrapMaster}}, + {{472, 0x3000}, {"Chopper", Game::TrapTeam, Element::Tech, Type::Skylander}}, + {{473, 0x3000}, {"Tread Head", Game::TrapTeam, Element::Tech, Type::Skylander}}, + {{474, 0x3000}, {"Bushwhack", Game::TrapTeam, Element::Life, Type::TrapMaster}}, + {{474, 0x3403}, {"Bushwhack (Legendary)", Game::TrapTeam, Element::Life, Type::TrapMaster}}, + {{475, 0x3000}, {"Tuff Luck", Game::TrapTeam, Element::Life, Type::TrapMaster}}, + {{475, 0x301D}, {"Tuff Luck (Clear)", Game::TrapTeam, Element::Life, Type::TrapMaster}}, + {{476, 0x3000}, {"Food Fight", Game::TrapTeam, Element::Life, Type::Skylander}}, + {{476, 0x3402}, {"Food Fight (Dark)", Game::TrapTeam, Element::Life, Type::Skylander}}, + {{476, 0x450F}, {"Food Fight (Virtual)", Game::TrapTeam, Element::Life, Type::Skylander}}, + {{477, 0x3000}, {"High Five", Game::TrapTeam, Element::Life, Type::Skylander}}, + {{478, 0x3000}, {"Krypt King", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, + {{478, 0x3402}, {"Krypt King (Nitro)", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, + {{479, 0x3000}, {"Short Cut", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, + {{479, 0x301D}, {"Short Cut (Clear)", Game::TrapTeam, Element::Undead, Type::TrapMaster}}, + {{480, 0x3000}, {"Bat Spin", Game::TrapTeam, Element::Undead, Type::Skylander}}, + {{481, 0x3000}, {"Funny Bone", Game::TrapTeam, Element::Undead, Type::Skylander}}, + {{482, 0x3000}, {"Knight Light", Game::TrapTeam, Element::Light, Type::TrapMaster}}, + {{483, 0x3000}, {"Spotlight", Game::TrapTeam, Element::Light, Type::Skylander}}, + {{484, 0x3000}, {"Knight Mare", Game::TrapTeam, Element::Dark, Type::TrapMaster}}, + {{485, 0x3000}, {"Blackout", Game::TrapTeam, Element::Dark, Type::Skylander}}, + {{502, 0x3000}, {"Bop", Game::TrapTeam, Element::Earth, Type::Mini}}, + {{503, 0x3000}, {"Spry", Game::TrapTeam, Element::Magic, Type::Mini}}, + {{504, 0x3000}, {"Hijinx", Game::TrapTeam, Element::Undead, Type::Mini}}, + {{505, 0x0000}, {"Terrabite (Sidekick)", Game::SpyrosAdv, Element::Earth, Type::Mini}}, + {{505, 0x3000}, {"Terrabite", Game::TrapTeam, Element::Earth, Type::Mini}}, + {{506, 0x3000}, {"Breeze", Game::TrapTeam, Element::Air, Type::Mini}}, + {{507, 0x3000}, {"Weeruptor", Game::TrapTeam, Element::Fire, Type::Mini}}, + {{507, 0x3402}, {"Weeruptor (Eggsellent)", Game::TrapTeam, Element::Fire, Type::Mini}}, + {{508, 0x3000}, {"Pet Vac", Game::TrapTeam, Element::Air, Type::Mini}}, + {{508, 0x3402}, {"Pet Vac (Power Punch)", Game::TrapTeam, Element::Air, Type::Mini}}, + {{509, 0x3000}, {"Small Fry", Game::TrapTeam, Element::Fire, Type::Mini}}, + {{510, 0x3000}, {"Drobit", Game::TrapTeam, Element::Tech, Type::Mini}}, + {{514, 0x0000}, {"Gill Runt (Sidekick)", Game::SpyrosAdv, Element::Water, Type::Mini}}, + {{514, 0x3000}, {"Gill Runt", Game::TrapTeam, Element::Water, Type::Mini}}, + {{519, 0x0000}, {"Trigger Snappy (Sidekick)", Game::SpyrosAdv, Element::Tech, Type::Mini}}, + {{519, 0x3000}, {"Trigger Snappy", Game::TrapTeam, Element::Tech, Type::Mini}}, + {{526, 0x0000}, {"Whisper Elf (Sidekick)", Game::SpyrosAdv, Element::Life, Type::Mini}}, + {{526, 0x3000}, {"Whisper Elf", Game::TrapTeam, Element::Life, Type::Mini}}, + {{540, 0x1000}, {"Barkley (Sidekick)", Game::Giants, Element::Life, Type::Mini}}, + {{540, 0x3000}, {"Barkley", Game::TrapTeam, Element::Life, Type::Mini}}, + {{540, 0x3402}, {"Barkley (Gnarly)", Game::TrapTeam, Element::Life, Type::Mini}}, + {{541, 0x1000}, {"Thumpling (Sidekick)", Game::Giants, Element::Water, Type::Mini}}, + {{541, 0x3000}, {"Thumpling", Game::TrapTeam, Element::Water, Type::Mini}}, + {{542, 0x1000}, {"Mini Jini (Sidekick)", Game::Giants, Element::Magic, Type::Mini}}, + {{542, 0x3000}, {"Mini Jini", Game::TrapTeam, Element::Magic, Type::Mini}}, + {{543, 0x1000}, {"Eye-Small (Sidekick)", Game::Giants, Element::Undead, Type::Mini}}, + {{543, 0x3000}, {"Eye-Small", Game::TrapTeam, Element::Undead, Type::Mini}}, + {{1000, 0x2000}, {"Boom Jet (Bottom)", Game::SwapForce, Element::Air, Type::Swapper}}, + {{1001, 0x2000}, {"Free Ranger (Bottom)", Game::SwapForce, Element::Air, Type::Swapper}}, + {{1001, 0x2403}, + {"Free Ranger (Legendary) (Bottom)", Game::SwapForce, Element::Air, Type::Swapper}}, + {{1002, 0x2000}, {"Rubble Rouser (Bottom)", Game::SwapForce, Element::Earth, Type::Swapper}}, + {{1003, 0x2000}, {"Doom Stone (Bottom)", Game::SwapForce, Element::Earth, Type::Swapper}}, + {{1003, 0x2016}, + {"Doom Stone (Gold & Bronze) (Bottom)", Game::SwapForce, Element::Earth, Type::Swapper}}, + {{1004, 0x2000}, {"Blast Zone (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{1004, 0x2402}, {"Blast Zone (Dark) (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{1005, 0x2000}, {"Fire Kraken (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{1005, 0x2004}, + {"Fire Kraken (Gold) (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{1005, 0x2402}, + {"Fire Kraken (Jade) (Bottom)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{1006, 0x2000}, {"Stink Bomb (Bottom)", Game::SwapForce, Element::Life, Type::Swapper}}, + {{1006, 0x2016}, + {"Stink Bomb (Silver & Gold) (Bottom)", Game::SwapForce, Element::Life, Type::Swapper}}, + {{1007, 0x2000}, {"Grilla Drilla (Bottom)", Game::SwapForce, Element::Life, Type::Swapper}}, + {{1008, 0x2000}, {"Hoot Loop (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{1008, 0x2402}, + {"Hoot Loop (Enchanted) (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{1009, 0x2000}, {"Trap Shadow (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{1009, 0x2016}, + {"Trap Shadow (Bronze & Silver) (Bottom)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{1010, 0x2000}, {"Magna Charge (Bottom)", Game::SwapForce, Element::Tech, Type::Swapper}}, + {{1010, 0x2402}, + {"Magna Charge (Nitro) (Bottom)", Game::SwapForce, Element::Tech, Type::Swapper}}, + {{1011, 0x2000}, {"Spy Rise (Bottom)", Game::SwapForce, Element::Tech, Type::Swapper}}, + {{1012, 0x2000}, {"Night Shift (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{1012, 0x2403}, + {"Night Shift (Legendary) (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{1013, 0x2000}, {"Rattle Shake (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{1013, 0x2402}, + {"Rattle Shake (Quickdraw) (Bottom)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{1014, 0x2000}, {"Freeze Blade (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{1014, 0x2402}, + {"Freeze Blade (Nitro) (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{1015, 0x2000}, {"Wash Buckler (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{1015, 0x2018}, + {"Wash Buckler (Gold) (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{1015, 0x2402}, + {"Wash Buckler (Dark) (Bottom)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{2000, 0x2000}, {"Boom Jet (Top)", Game::SwapForce, Element::Air, Type::Swapper}}, + {{2001, 0x2000}, {"Free Ranger (Top)", Game::SwapForce, Element::Air, Type::Swapper}}, + {{2001, 0x2403}, + {"Free Ranger (Legendary) (Top)", Game::SwapForce, Element::Air, Type::Swapper}}, + {{2002, 0x2000}, {"Rubble Rouser (Top)", Game::SwapForce, Element::Earth, Type::Swapper}}, + {{2003, 0x2000}, {"Doom Stone (Top)", Game::SwapForce, Element::Earth, Type::Swapper}}, + {{2003, 0x2016}, + {"Doom Stone (Gold & Bronze) (Top)", Game::SwapForce, Element::Earth, Type::Swapper}}, + {{2004, 0x2000}, {"Blast Zone (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{2004, 0x2402}, {"Blast Zone (Dark) (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{2005, 0x2000}, {"Fire Kraken (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{2005, 0x2004}, {"Fire Kraken (Gold) (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{2005, 0x2402}, {"Fire Kraken (Jade) (Top)", Game::SwapForce, Element::Fire, Type::Swapper}}, + {{2006, 0x2000}, {"Stink Bomb (Top)", Game::SwapForce, Element::Life, Type::Swapper}}, + {{2006, 0x2016}, + {"Stink Bomb (Silver & Gold) (Top)", Game::SwapForce, Element::Life, Type::Swapper}}, + {{2007, 0x2000}, {"Grilla Drilla (Top)", Game::SwapForce, Element::Life, Type::Swapper}}, + {{2008, 0x2000}, {"Hoot Loop (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{2008, 0x2402}, + {"Hoot Loop (Enchanted) (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{2009, 0x2000}, {"Trap Shadow (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{2009, 0x2016}, + {"Trap Shadow (Bronze & Silver) (Top)", Game::SwapForce, Element::Magic, Type::Swapper}}, + {{2010, 0x2000}, {"Magna Charge (Top)", Game::SwapForce, Element::Tech, Type::Swapper}}, + {{2010, 0x2402}, {"Magna Charge (Nitro) (Top)", Game::SwapForce, Element::Tech, Type::Swapper}}, + {{2011, 0x2000}, {"Spy Rise (Top)", Game::SwapForce, Element::Tech, Type::Swapper}}, + {{2012, 0x2000}, {"Night Shift (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{2012, 0x2403}, + {"Night Shift (Legendary) (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{2013, 0x2000}, {"Rattle Shake (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{2013, 0x2402}, + {"Rattle Shake (Quickdraw) (Top)", Game::SwapForce, Element::Undead, Type::Swapper}}, + {{2014, 0x2000}, {"Freeze Blade (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{2014, 0x2402}, + {"Freeze Blade (Nitro) (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{2015, 0x2000}, {"Wash Buckler (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{2015, 0x2018}, {"Wash Buckler (Gold) (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{2015, 0x2402}, {"Wash Buckler (Dark) (Top)", Game::SwapForce, Element::Water, Type::Swapper}}, + {{3000, 0x2000}, {"Scratch", Game::SwapForce, Element::Air, Type::Skylander}}, + {{3001, 0x2000}, {"Pop Thorn", Game::SwapForce, Element::Air, Type::Skylander}}, + {{3002, 0x2000}, {"Slobber Tooth", Game::SwapForce, Element::Earth, Type::Skylander}}, + {{3002, 0x2402}, {"Slobber Tooth (Dark)", Game::SwapForce, Element::Earth, Type::Skylander}}, + {{3003, 0x2000}, {"Scorp", Game::SwapForce, Element::Earth, Type::Skylander}}, + {{3003, 0x2016}, {"Scorp (Green)", Game::SwapForce, Element::Earth, Type::Skylander}}, + {{3004, 0x2000}, {"Fryno", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{3004, 0x3801}, {"Fryno (Hog Wild)", Game::TrapTeam, Element::Fire, Type::Skylander}}, + {{3005, 0x2000}, {"Smolderdash", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{3005, 0x2206}, {"Smolderdash (LightCore)", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{3005, 0x2219}, {"Snowderdash (LightCore)", Game::SwapForce, Element::Fire, Type::Skylander}}, + {{3006, 0x2000}, {"Bumble Blast", Game::SwapForce, Element::Life, Type::Skylander}}, + {{3006, 0x2206}, {"Bumble Blast (LightCore)", Game::SwapForce, Element::Life, Type::Skylander}}, + {{3006, 0x2402}, {"Bumble Blast (Jolly)", Game::SwapForce, Element::Life, Type::Skylander}}, + {{3007, 0x2000}, {"Zoo Lou", Game::SwapForce, Element::Life, Type::Skylander}}, + {{3007, 0x2403}, {"Zoo Lou (Legendary)", Game::SwapForce, Element::Life, Type::Skylander}}, + {{3008, 0x2000}, {"Dune Bug", Game::SwapForce, Element::Magic, Type::Skylander}}, + {{3008, 0x2004}, {"Dune Bug (Metallic Red)", Game::SwapForce, Element::Magic, Type::Skylander}}, + {{3009, 0x2000}, {"Star Strike", Game::SwapForce, Element::Magic, Type::Skylander}}, + {{3009, 0x2206}, {"Star Strike (LightCore)", Game::SwapForce, Element::Magic, Type::Skylander}}, + {{3009, 0x2602}, + {"Star Strike (Enchanted LightCore)", Game::SwapForce, Element::Magic, Type::Skylander}}, + {{3010, 0x2000}, {"Countdown", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{3010, 0x2206}, {"Countdown (LightCore)", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{3010, 0x2402}, {"Countdown (Kickoff)", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{3011, 0x2000}, {"Wind Up", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{3011, 0x2404}, + {"Wind Up (Gear Head Vicarious Visions)", Game::SwapForce, Element::Tech, Type::Skylander}}, + {{3012, 0x2000}, {"Roller Brawl", Game::SwapForce, Element::Undead, Type::Skylander}}, + {{3013, 0x2000}, {"Grim Creeper", Game::SwapForce, Element::Undead, Type::Skylander}}, + {{3013, 0x2206}, + {"Grim Creeper (LightCore)", Game::SwapForce, Element::Undead, Type::Skylander}}, + {{3013, 0x2603}, + {"Grim Creeper (Legendary LightCore)", Game::SwapForce, Element::Undead, Type::Skylander}}, + {{3014, 0x2000}, {"Rip Tide", Game::SwapForce, Element::Water, Type::Skylander}}, + {{3014, 0x2016}, {"Rip Tide (Green)", Game::SwapForce, Element::Water, Type::Skylander}}, + {{3015, 0x2000}, {"Punk Shock", Game::SwapForce, Element::Water, Type::Skylander}}, + {{3200, 0x2000}, {"Battle Hammer", Game::SwapForce, Element::Other, Type::Item}}, + {{3201, 0x2000}, {"Sky Diamond", Game::SwapForce, Element::Other, Type::Item}}, + {{3202, 0x2000}, {"Platinum Sheep", Game::SwapForce, Element::Other, Type::Item}}, + {{3203, 0x2000}, {"Groove Machine", Game::SwapForce, Element::Other, Type::Item}}, + {{3204, 0x2000}, {"UFO Hat", Game::SwapForce, Element::Other, Type::Item}}, {{3220, 0x4000}, {"Jet Stream", Game::Superchargers, Element::Air, Type::Vehicle}}, {{3221, 0x4000}, {"Tomb Buggy", Game::Superchargers, Element::Undead, Type::Vehicle}}, + {{3221, 0x401E}, {"Tomb Buggy (Bronze)", Game::Superchargers, Element::Undead, Type::Vehicle}}, {{3222, 0x4000}, {"Reef Ripper", Game::Superchargers, Element::Water, Type::Vehicle}}, {{3223, 0x4000}, {"Burn-Cycle", Game::Superchargers, Element::Fire, Type::Vehicle}}, + {{3223, 0x401E}, {"Burn-Cycle (Patina)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x4000}, {"Hot Streak", Game::Superchargers, Element::Fire, Type::Vehicle}}, - {{3224, 0x4004}, {"Hot Streak (Mobile)", Game::Superchargers, Element::Fire, Type::Vehicle}}, + {{3224, 0x4004}, + {"Hot Streak (Event Exclusive)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x4402}, {"Hot Streak (Dark)", Game::Superchargers, Element::Fire, Type::Vehicle}}, - {{3224, 0x441E}, - {"Hot Streak (Golden) (E3)", Game::Superchargers, Element::Fire, Type::Vehicle}}, + {{3224, 0x441E}, {"Hot Streak (Golden)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x450F}, {"Hot Streak (Instant)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3225, 0x4000}, {"Shark Tank", Game::Superchargers, Element::Earth, Type::Vehicle}}, {{3226, 0x4000}, {"Thump Truck", Game::Superchargers, Element::Earth, Type::Vehicle}}, @@ -536,6 +521,8 @@ const std::map, SkyData> list_skylanders = {{3234, 0x4402}, {"Gold Rusher (Power Blue)", Game::Superchargers, Element::Tech, Type::Vehicle}}, {{3235, 0x4000}, {"Shield Striker", Game::Superchargers, Element::Tech, Type::Vehicle}}, + {{3235, 0x401E}, + {"Shield Striker (Patina)", Game::Superchargers, Element::Tech, Type::Vehicle}}, {{3236, 0x4000}, {"Sun Runner", Game::Superchargers, Element::Light, Type::Vehicle}}, {{3236, 0x4403}, {"Sun Runner (Legendary)", Game::Superchargers, Element::Light, Type::Vehicle}}, @@ -549,6 +536,79 @@ const std::map, SkyData> list_skylanders = {{3240, 0x4000}, {"Barrel Blaster", Game::Superchargers, Element::Tech, Type::Vehicle}}, {{3240, 0x4402}, {"Barrel Blaster (Dark)", Game::Superchargers, Element::Tech, Type::Vehicle}}, {{3241, 0x4000}, {"Buzz Wing", Game::Superchargers, Element::Life, Type::Vehicle}}, + {{3300, 0x2000}, {"Sheep Wreck Island", Game::SwapForce, Element::Other, Type::Item}}, + {{3301, 0x2000}, {"Tower of Time", Game::SwapForce, Element::Other, Type::Item}}, + {{3302, 0x2206}, {"Fiery Forge", Game::SwapForce, Element::Other, Type::Item}}, + {{3303, 0x2206}, {"Arkeyan Crossbow", Game::SwapForce, Element::Other, Type::Item}}, + {{3400, 0x4100}, {"Fiesta", Game::Superchargers, Element::Undead, Type::Skylander}}, + {{3400, 0x4515}, {"Fiesta (Frightful)", Game::Superchargers, Element::Undead, Type::Skylander}}, + {{3401, 0x4100}, {"High Volt", Game::Superchargers, Element::Tech, Type::Skylander}}, + {{3401, 0x411E}, {"High Volt (Patina)", Game::Superchargers, Element::Tech, Type::Skylander}}, + {{3402, 0x4100}, {"Splat", Game::Superchargers, Element::Magic, Type::Skylander}}, + {{3402, 0x4502}, {"Splat (Power Blue)", Game::Superchargers, Element::Magic, Type::Skylander}}, + {{3406, 0x4100}, {"Stormblade", Game::Superchargers, Element::Air, Type::Skylander}}, + {{3406, 0x410E}, + {"Stormblade (Snow-Brite)", Game::Superchargers, Element::Air, Type::Skylander}}, + {{3411, 0x4100}, {"Smash Hit", Game::Superchargers, Element::Earth, Type::Skylander}}, + {{3411, 0x4502}, + {"Smash Hit (Steel Plated)", Game::Superchargers, Element::Earth, Type::Skylander}}, + {{3412, 0x4100}, {"Spitfire", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3412, 0x4502}, {"Spitfire (Dark)", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3412, 0x450F}, {"Spitfire (Instant)", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3413, 0x4100}, {"Jet-Vac (Hurricane)", Game::Superchargers, Element::Air, Type::Skylander}}, + {{3413, 0x4503}, + {"Jet-Vac (Legendary Hurricane)", Game::Superchargers, Element::Air, Type::Skylander}}, + {{3414, 0x4100}, + {"Trigger Happy (Double Dare)", Game::Superchargers, Element::Tech, Type::Skylander}}, + {{3414, 0x4502}, + {"Trigger Happy (Power Blue Double Dare)", Game::Superchargers, Element::Tech, + Type::Skylander}}, + {{3415, 0x4100}, + {"Stealth Elf (Super Shot)", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3415, 0x4502}, + {"Stealth Elf (Dark Super Shot)", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3415, 0x450F}, + {"Stealth Elf (Instant Super Shot)", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3416, 0x4100}, + {"Terrafin (Shark Shooter)", Game::Superchargers, Element::Earth, Type::Skylander}}, + {{3417, 0x4100}, + {"Roller Brawl (Bone Bash)", Game::Superchargers, Element::Undead, Type::Skylander}}, + {{3417, 0x411E}, + {"Roller Brawl (Bronze Bone Bash)", Game::Superchargers, Element::Undead, Type::Skylander}}, + {{3417, 0x4503}, + {"Roller Brawl (Legendary Bone Bash)", Game::Superchargers, Element::Undead, Type::Skylander}}, + {{3420, 0x4100}, + {"Pop Fizz (Big Bubble)", Game::Superchargers, Element::Magic, Type::Skylander}}, + {{3420, 0x450E}, + {"Pop Fizz (Birthday Bash Big Bubble)", Game::Superchargers, Element::Magic, Type::Skylander}}, + {{3421, 0x4100}, {"Eruptor (Lava Lance)", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3421, 0x411E}, + {"Eruptor (Patina Lava Lance)", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3422, 0x4100}, + {"Gill Grunt (Deep Dive)", Game::Superchargers, Element::Water, Type::Skylander}}, + {{3423, 0x4100}, + {"Donkey Kong (Turbo Charge)", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3423, 0x4502}, + {"Donkey Kong (Dark Turbo Charge)", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3424, 0x4100}, {"Bowser (Hammer Slam)", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3424, 0x4502}, + {"Bowser (Dark Hammer Slam)", Game::Superchargers, Element::Fire, Type::Skylander}}, + {{3425, 0x4100}, {"Dive-Clops", Game::Superchargers, Element::Water, Type::Skylander}}, + {{3425, 0x450E}, + {"Dive-Clops (Missile-Tow)", Game::Superchargers, Element::Water, Type::Skylander}}, + {{3425, 0x450F}, + {"Dive-Clops (Instant)", Game::Superchargers, Element::Water, Type::Skylander}}, + {{3426, 0x4100}, {"Astroblast", Game::Superchargers, Element::Tech, Type::Skylander}}, + {{3426, 0x4503}, + {"Astroblast (Legendary)", Game::Superchargers, Element::Light, Type::Skylander}}, + {{3427, 0x4100}, {"Nightfall", Game::Superchargers, Element::Dark, Type::Skylander}}, + {{3428, 0x4100}, {"Thrillipede", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3428, 0x450D}, + {"Thrillipede (Eggcited)", Game::Superchargers, Element::Life, Type::Skylander}}, + {{3500, 0x4000}, {"Sky Trophy", Game::Superchargers, Element::Air, Type::Trophy}}, + {{3501, 0x4000}, {"Land Trophy", Game::Superchargers, Element::Earth, Type::Trophy}}, + {{3502, 0x4000}, {"Sea Trophy", Game::Superchargers, Element::Water, Type::Trophy}}, + {{3503, 0x4000}, {"Kaos Trophy", Game::Superchargers, Element::Other, Type::Trophy}}, }; SkylanderUSB::SkylanderUSB(EmulationKernel& ios, const std::string& device_name) : m_ios(ios) From 7bef0188af919f64a5197c31767e767e396b599f Mon Sep 17 00:00:00 2001 From: Carles Pastor Date: Sun, 28 Aug 2022 11:56:48 +0200 Subject: [PATCH 260/296] Detect when running inside a flatpak sandbox --- Source/Core/UICommon/UICommon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp index 4575498fb5..1783536651 100644 --- a/Source/Core/UICommon/UICommon.cpp +++ b/Source/Core/UICommon/UICommon.cpp @@ -424,7 +424,7 @@ void SetUserDirectory(std::string custom_path) // -> Use GetExeDirectory()/User // 2. $DOLPHIN_EMU_USERPATH is set // -> Use $DOLPHIN_EMU_USERPATH - // 3. ~/.dolphin-emu directory exists + // 3. ~/.dolphin-emu directory exists, and we're not in flatpak // -> Use ~/.dolphin-emu // 4. Default // -> Use XDG basedir, see @@ -457,7 +457,7 @@ void SetUserDirectory(std::string custom_path) { user_path = home_path + "." NORMAL_USER_DIR DIR_SEP; - if (!File::Exists(user_path)) + if (File::Exists("/.flatpak-info") || !File::Exists(user_path)) { const char* data_home = getenv("XDG_DATA_HOME"); std::string data_path = From 88bd81931f1442dc4b3b6cbf9eb096db4026c83f Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 12 May 2024 18:29:32 +0100 Subject: [PATCH 261/296] DSPHLE/Zelda: Add two missing filters The biquad filter is used in all Pikmin games for cursor sound effects in the main menu, although the difference is subtle. The low-pass filter is used at least by Pikmin 2 Wii during the spaceship crash in the intro and fixes the missing "puff" sound effects whenever there is black smoke coming out of the engine. --- Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp | 111 ++++++++++++++++++-- Source/Core/Core/HW/DSPHLE/UCodes/Zelda.h | 3 + 2 files changed, 108 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp index f1472807a1..c540dc2461 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp @@ -7,6 +7,7 @@ #include #include +#include "Common/BitField.h" #include "Common/ChunkFile.h" #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" @@ -803,8 +804,13 @@ struct ZeldaAudioRenderer::VPB // can be used for future linear interpolation. s16 resample_buffer[4]; - // TODO: document and implement. - s16 prev_input_samples[0x18]; + s16 variable_fir_history[20]; + + // Biquad filter history. + s16 biquad_xn1; + s16 biquad_xn2; + s16 biquad_yn1; + s16 biquad_yn2; // Values from the last decoded AFC block. The last two values are // especially important since AFC decoding - as a variant of ADPCM - @@ -813,7 +819,12 @@ struct ZeldaAudioRenderer::VPB s16 afc_remaining_samples[0x10]; s16* AFCYN2() { return &afc_remaining_samples[0xE]; } s16* AFCYN1() { return &afc_remaining_samples[0xF]; } - u16 unk_68_80[0x80 - 0x68]; + + // Low-pass filter history. + s16 low_pass_yn1; + s16 low_pass_xn1; + + u16 unk_6A_80[0x80 - 0x6A]; enum SamplesSourceType { @@ -861,7 +872,11 @@ struct ZeldaAudioRenderer::VPB s16 loop_yn1; s16 loop_yn2; - u16 unk_84; + union + { + BitField<0, 5, u16> variable_fir_filter_size; + BitField<5, 1, u16> enable_biquad_filter; + }; // If true, ramp down quickly to a volume of zero, and end the voice (by // setting VPB[1] done) when it reaches zero. @@ -890,6 +905,20 @@ struct ZeldaAudioRenderer::VPB u16 base_address_l; DEFINE_32BIT_ACCESSOR(base_address, BaseAddress) + u16 unk_8E; + u16 unk_8F; + + u16 variable_fir_coeffs[20]; + + // Biquad filter coefficients. + s16 biquad_bn1; + s16 biquad_bn2; + s16 biquad_an1; + s16 biquad_an2; + + // Low-pass filter coefficient. + u16 low_pass_coeff; + u16 padding[0xC0]; // These next two functions are terrible hacks used in order to support two @@ -1173,6 +1202,62 @@ ZeldaAudioRenderer::MixingBuffer* ZeldaAudioRenderer::BufferForID(u16 buffer_id) } } +void ZeldaAudioRenderer::ApplyLowPassFilter(MixingBuffer* buf, VPB* vpb) +{ + s32 yn1 = vpb->reset_vpb ? 0 : vpb->low_pass_yn1; + s32 xn1 = vpb->reset_vpb ? 0 : vpb->low_pass_xn1; + + // 9.7 format I think. + s32 coeff = vpb->low_pass_coeff; + + for (int i = 0; i < 0x50; ++i) + { + s32 xn0 = (*buf)[i]; + s64 tmp = xn0 - xn1; + tmp *= coeff; + tmp >>= 7; + tmp += yn1; + s16 yn0 = std::clamp(tmp, -0x8000, 0x7FFF); + (*buf)[i] = yn0; + + yn1 = yn0; + xn1 = xn0; + } + + vpb->low_pass_yn1 = yn1; + vpb->low_pass_xn1 = xn1; +} + +void ZeldaAudioRenderer::ApplyBiquadFilter(MixingBuffer* buf, VPB* vpb) +{ + s32 xn1 = vpb->biquad_xn1; + s32 xn2 = vpb->biquad_xn2; + s32 yn1 = vpb->biquad_yn1; + s32 yn2 = vpb->biquad_yn2; + + for (int i = 0; i < 0x50; ++i) + { + s32 xn0 = (*buf)[i]; + s64 tmp = 0; + tmp += vpb->biquad_bn1 * xn1; + tmp += vpb->biquad_bn2 * xn2; + tmp += vpb->biquad_an1 * yn1; + tmp += vpb->biquad_an2 * yn2; + s16 yn0 = std::clamp(tmp >> 15, -0x8000, 0x7FFF); + (*buf)[i] = yn0; + + xn2 = xn1; + xn1 = xn0; + yn2 = yn1; + yn1 = yn0; + } + + vpb->biquad_xn1 = xn1; + vpb->biquad_xn2 = xn2; + vpb->biquad_yn1 = yn1; + vpb->biquad_yn2 = yn2; +} + void ZeldaAudioRenderer::AddVoice(u16 voice_id) { VPB vpb; @@ -1184,9 +1269,23 @@ void ZeldaAudioRenderer::AddVoice(u16 voice_id) MixingBuffer input_samples; LoadInputSamples(&input_samples, &vpb); - // TODO: In place effects. + if (vpb.low_pass_coeff != 0) + { + ApplyLowPassFilter(&input_samples, &vpb); + } - // TODO: IIR filter. +#ifdef STRICT_ZELDA_HLE + if (vpb.variable_fir_filter_size != 0) + { + ERROR_LOG_FMT(DSPHLE, "TODO: variable FIR filter of size {}", vpb.variable_fir_filter_size); + } +#endif + + if (vpb.enable_biquad_filter && (vpb.biquad_an2 != 0 || vpb.biquad_an1 != 0 || + vpb.biquad_bn2 != 0 || vpb.biquad_bn1 != 0x7FFF)) + { + ApplyBiquadFilter(&input_samples, &vpb); + } if (vpb.use_dolby_volume) { diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.h b/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.h index 509c983a72..7bc4504f4e 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.h +++ b/Source/Core/Core/HW/DSPHLE/UCodes/Zelda.h @@ -185,6 +185,9 @@ private: // behavior. void DownloadRawSamplesFromMRAM(s16* dst, VPB* vpb, u16 requested_samples_count); + void ApplyLowPassFilter(MixingBuffer* buf, VPB* vpb); + void ApplyBiquadFilter(MixingBuffer* buf, VPB* vpb); + // Applies the reverb effect to Dolby mixed voices based on a set of // per-buffer parameters. Is called twice: once before frame rendering and // once after. From b86291f868bb81f7bc01645f4df115d679f91d8b Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Tue, 13 Aug 2024 06:38:03 +0200 Subject: [PATCH 262/296] Fix comments --- Source/Core/Common/CommonFuncs.h | 2 +- Source/Core/Common/x64ABI.h | 2 +- Source/Core/Core/HotkeyManager.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Common/CommonFuncs.h b/Source/Core/Common/CommonFuncs.h index c8e43edce9..c774cc64aa 100644 --- a/Source/Core/Common/CommonFuncs.h +++ b/Source/Core/Common/CommonFuncs.h @@ -37,7 +37,7 @@ __declspec(dllimport) void __stdcall DebugBreak(void); { \ DebugBreak(); \ } -#endif // WIN32 ndef +#endif // _WIN32 namespace Common { diff --git a/Source/Core/Common/x64ABI.h b/Source/Core/Common/x64ABI.h index 73e7e68a8c..5fc529fb9f 100644 --- a/Source/Core/Common/x64ABI.h +++ b/Source/Core/Common/x64ABI.h @@ -50,7 +50,7 @@ // FIXME: avoid pushing all 16 XMM registers when possible? most functions we call probably // don't actually clobber them. #define ABI_ALL_CALLER_SAVED (BitSet32{RAX, RCX, RDX, RDI, RSI, R8, R9, R10, R11} | ABI_ALL_FPRS) -#endif // WIN32 +#endif // _WIN32 #define ABI_ALL_CALLEE_SAVED (~ABI_ALL_CALLER_SAVED) diff --git a/Source/Core/Core/HotkeyManager.cpp b/Source/Core/Core/HotkeyManager.cpp index 3d0a153fd6..c7a177c022 100644 --- a/Source/Core/Core/HotkeyManager.cpp +++ b/Source/Core/Core/HotkeyManager.cpp @@ -337,7 +337,7 @@ constexpr std::array s_groups_info = { {{_trans("General"), HK_OPEN, HK_OPEN_ACHIEVEMENTS}, #else // USE_RETRO_ACHIEVEMENTS {{_trans("General"), HK_OPEN, HK_REQUEST_GOLF_CONTROL}, -#endif // USE_RETROACHIEVEMENTS +#endif // USE_RETRO_ACHIEVEMENTS {_trans("Volume"), HK_VOLUME_DOWN, HK_VOLUME_TOGGLE_MUTE}, {_trans("Emulation Speed"), HK_DECREASE_EMULATION_SPEED, HK_TOGGLE_THROTTLE}, {_trans("Frame Advance"), HK_FRAME_ADVANCE, HK_FRAME_ADVANCE_RESET_SPEED}, From 49134afb42291702bfe1b1ca58467be7707ce21b Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Tue, 13 Aug 2024 10:26:25 +0200 Subject: [PATCH 263/296] Remove unused lambda capture --- Source/Core/DolphinQt/Config/FilesystemWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Config/FilesystemWidget.cpp b/Source/Core/DolphinQt/Config/FilesystemWidget.cpp index 8a78981f5e..53b447fc47 100644 --- a/Source/Core/DolphinQt/Config/FilesystemWidget.cpp +++ b/Source/Core/DolphinQt/Config/FilesystemWidget.cpp @@ -266,7 +266,7 @@ void FilesystemWidget::ShowContextMenu(const QPoint&) switch (type) { case EntryType::Disc: - menu->addAction(tr("Extract Entire Disc..."), this, [this, path] { + menu->addAction(tr("Extract Entire Disc..."), this, [this] { auto folder = SelectFolder(); if (folder.isEmpty()) From d2c4f3af1958c26e50734cb04bd9442cf72eb5ef Mon Sep 17 00:00:00 2001 From: khg8m3r Date: Sun, 4 Aug 2024 11:24:26 -0400 Subject: [PATCH 264/296] Update SDL to release-2.30.6 and fix build errors for Windows and CMake --- CMakeLists.txt | 2 +- Externals/SDL/CMakeLists.txt | 31 ++++++++++++++++++++++++------- Externals/SDL/SDL | 2 +- Externals/SDL/SDL2.vcxproj | 32 ++++++++++++++++++++++++++++---- 4 files changed, 54 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce5d64715f..80ac6bc9df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -587,7 +587,7 @@ if(UNIX) endif() if(ENABLE_SDL) - dolphin_find_optional_system_library(SDL2 Externals/SDL 2.26.0) + dolphin_find_optional_system_library(SDL2 Externals/SDL 2.30.6) endif() if(ENABLE_ANALYTICS) diff --git a/Externals/SDL/CMakeLists.txt b/Externals/SDL/CMakeLists.txt index 599caff4d4..c30d8ae979 100644 --- a/Externals/SDL/CMakeLists.txt +++ b/Externals/SDL/CMakeLists.txt @@ -1,13 +1,30 @@ option(SDL2_DISABLE_SDL2MAIN "" ON) option(SDL2_DISABLE_INSTALL "" ON) option(SDL2_DISABLE_UNINSTALL "" ON) -set(SDL_SHARED OFF) -set(SDL_SHARED_ENABLED_BY_DEFAULT OFF) -set(SDL_STATIC ON) -set(SDL_STATIC_ENABLED_BY_DEFAULT ON) -set(SDL_TEST OFF) -set(SDL_TEST_ENABLED_BY_DEFAULT OFF) -set(OPT_DEF_LIBC ON) +option(SDL_SHARED "Build a shared version of the library" OFF) +option(SDL_SHARED_ENABLED_BY_DEFAULT "" OFF) +option(SDL_STATIC "Build a static version of the library" ON) +option(SDL_STATIC_ENABLED_BY_DEFAULT "" ON) +option(SDL_TEST "Build the SDL2_test library" OFF) +option(SDL_TEST_ENABLED_BY_DEFAULT "" OFF) + +# SDL fails to clean up old headers after version upgrades, so do that manually +set(EXPECTED_SDL_REVISION "SDL-release-2.30.6-0") +if (EXISTS "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/SDL2/SDL_revision.h") + file(READ "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/SDL2/SDL_revision.h" ACTUAL_SDL_REVISION) + if (NOT "${ACTUAL_SDL_REVISION}" MATCHES "${EXPECTED_SDL_REVISION}") + message(STATUS "Found unexpected SDL2/SDL_revision.h, removing generated includes.") + file(REMOVE_RECURSE "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/") + endif() +endif() +if (EXISTS "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/SDL_revision.h") + file(READ "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/SDL_revision.h" ACTUAL_SDL_REVISION) + if (NOT "${ACTUAL_SDL_REVISION}" MATCHES "${EXPECTED_SDL_REVISION}") + message(STATUS "Found unexpected SDL_revision.h, removing generated includes.") + file(REMOVE_RECURSE "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/") + endif() +endif() + add_subdirectory(SDL) if (TARGET SDL2) dolphin_disable_warnings(SDL2) diff --git a/Externals/SDL/SDL b/Externals/SDL/SDL index ac13ca9ab6..ba2f78a006 160000 --- a/Externals/SDL/SDL +++ b/Externals/SDL/SDL @@ -1 +1 @@ -Subproject commit ac13ca9ab691e13e8eebe9684740ddcb0d716203 +Subproject commit ba2f78a0069118a6c583f1fbf1420144ffa35bad diff --git a/Externals/SDL/SDL2.vcxproj b/Externals/SDL/SDL2.vcxproj index 1693429f70..66aace96fc 100644 --- a/Externals/SDL/SDL2.vcxproj +++ b/Externals/SDL/SDL2.vcxproj @@ -130,11 +130,17 @@ + + + + + + @@ -185,6 +191,13 @@ + + + + + + + @@ -198,6 +211,7 @@ + @@ -230,14 +244,19 @@ - - - + + + + + + + + @@ -290,14 +309,17 @@ + + + @@ -400,7 +422,9 @@ - + + + From c6eb7c566d4179377e5d1b27b10033fcd854368f Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Tue, 13 Aug 2024 10:20:34 +0200 Subject: [PATCH 265/296] Constness of 'result' prevents automatic move [performance-no-automatic-move] (0 issues) --- Source/Core/DolphinQt/Config/VerifyWidget.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/Config/VerifyWidget.cpp b/Source/Core/DolphinQt/Config/VerifyWidget.cpp index 2588682a1c..7c976092b1 100644 --- a/Source/Core/DolphinQt/Config/VerifyWidget.cpp +++ b/Source/Core/DolphinQt/Config/VerifyWidget.cpp @@ -177,10 +177,8 @@ void VerifyWidget::Verify() } verifier.Finish(); - const DiscIO::VolumeVerifier::Result result = verifier.GetResult(); progress.Reset(); - - return result; + return verifier.GetResult(); }); SetQWidgetWindowDecorations(progress.GetRaw()); progress.GetRaw()->exec(); From 134313e313edb27c7bc054a5a53d29744e0cf27c Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 12 Aug 2024 23:57:57 -0700 Subject: [PATCH 266/296] MenuBar: Update checkmarked Select State Slot when hotkey pressed Update the checkmarked slot in the Select State Slot menu when the Increase Selected State Slot or Decrease Selected State Slot hotkeys are pressed. The actual selected save slot was being changed correctly before this commit; this just fixes the menu checkmark. --- Source/Core/DolphinQt/MenuBar.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index b7dac7c918..b6e722fa7f 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -408,6 +408,10 @@ void MenuBar::AddStateSlotMenu(QMenu* emu_menu) action->setChecked(true); connect(action, &QAction::triggered, this, [=, this]() { emit SetStateSlot(i); }); + connect(this, &MenuBar::SetStateSlot, [action, i](const int slot) { + if (slot == i) + action->setChecked(true); + }); } } From 15500198d8f3b5028fa8ee01ef7086af0b76fe04 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Wed, 14 Aug 2024 08:22:57 +0200 Subject: [PATCH 267/296] Remove self-comparison --- Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp index 853d690142..09d6ce3be5 100644 --- a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp +++ b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp @@ -80,7 +80,7 @@ protected: // Read unswapped. const float actual = m_dst.Read(); - if (!actual || actual != actual) + if (!actual || std::isnan(actual)) EXPECT_EQ(std::bit_cast(expected), std::bit_cast(actual)); else EXPECT_EQ(expected, actual); From 618b41a4593032a5c374069b37369e91ecf5db9e Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Fri, 19 Jul 2024 22:49:15 +0200 Subject: [PATCH 268/296] Use 'contains' method --- Source/Core/Common/IniFile.cpp | 2 +- Source/Core/Core/Boot/Boot.cpp | 2 +- Source/Core/Core/HW/DVD/FileMonitor.cpp | 2 +- Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp | 2 +- Source/Core/Core/IOS/ES/ES.cpp | 2 +- Source/Core/Core/IOS/ES/NandUtils.cpp | 2 +- Source/Core/Core/IOS/Network/Socket.cpp | 4 ++-- Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp | 4 ++-- Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp | 2 +- Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.h | 2 +- .../IOS/USB/Emulated/Skylanders/SkylanderFigure.cpp | 2 +- Source/Core/Core/IOS/USB/Host.cpp | 6 +++--- Source/Core/Core/IOS/USB/OH0/OH0.cpp | 5 ++--- Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp | 5 ++--- Source/Core/Core/NetPlayClient.cpp | 2 +- Source/Core/Core/NetPlayServer.cpp | 10 +++++----- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 8 +++----- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 3 +-- Source/Core/Core/PowerPC/JitInterface.cpp | 3 +-- Source/Core/Core/PowerPC/PPCSymbolDB.cpp | 2 +- Source/Core/Core/State.cpp | 2 +- Source/Core/Core/WiiUtils.cpp | 2 +- Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 2 +- .../Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp | 2 +- Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp | 4 ++-- Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp | 2 +- .../Settings/USBDeviceAddToWhitelistDialog.cpp | 2 +- .../ControllerInterface/DInput/DInputJoystick.cpp | 4 ++-- Source/Core/UpdaterCommon/UpdaterCommon.cpp | 2 +- .../GraphicsModSystem/Runtime/GraphicsModManager.cpp | 2 +- Source/Core/VideoCommon/TextureCacheBase.cpp | 4 ++-- 31 files changed, 46 insertions(+), 52 deletions(-) diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index 2aed1b805f..ab20ff58fd 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -75,7 +75,7 @@ bool IniFile::Section::Get(std::string_view key, std::string* value, bool IniFile::Section::Exists(std::string_view key) const { - return values.find(key) != values.end(); + return values.contains(key); } bool IniFile::Section::Delete(std::string_view key) diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index 7e866604ed..1fd77d2c30 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -235,7 +235,7 @@ std::unique_ptr BootParameters::GenerateFromFile(std::vector disc_image_extensions = { {".gcm", ".iso", ".tgc", ".wbfs", ".ciso", ".gcz", ".wia", ".rvz", ".nfs", ".dol", ".elf"}}; - if (disc_image_extensions.find(extension) != disc_image_extensions.end()) + if (disc_image_extensions.contains(extension)) { std::unique_ptr disc = DiscIO::CreateDisc(path); if (disc) diff --git a/Source/Core/Core/HW/DVD/FileMonitor.cpp b/Source/Core/Core/HW/DVD/FileMonitor.cpp index f4bc53a097..b469b42570 100644 --- a/Source/Core/Core/HW/DVD/FileMonitor.cpp +++ b/Source/Core/Core/HW/DVD/FileMonitor.cpp @@ -43,7 +43,7 @@ static bool IsSoundFile(const std::string& filename) ".str", // Harry Potter & the Sorcerer's Stone }; - return extensions.find(extension) != extensions.end(); + return extensions.contains(extension); } FileLogger::FileLogger() = default; diff --git a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp index 9b6db2acfd..18cc6e4a37 100644 --- a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp +++ b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp @@ -1000,7 +1000,7 @@ bool IsBalanceBoardName(const std::string& name) bool IsNewWiimote(const std::string& identifier) { std::lock_guard lk(s_known_ids_mutex); - return s_known_ids.count(identifier) == 0; + return !s_known_ids.contains(identifier); } void HandleWiimoteSourceChange(unsigned int index) diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index d04a3ef889..3634518f6f 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -1049,7 +1049,7 @@ ReturnCode ESCore::WriteNewCertToStore(const ES::CertReader& cert) { const std::map certs = ES::ParseCertChain(current_store); // The cert is already present in the store. Nothing to do. - if (certs.find(cert.GetName()) != certs.end()) + if (certs.contains(cert.GetName())) return IPC_SUCCESS; } diff --git a/Source/Core/Core/IOS/ES/NandUtils.cpp b/Source/Core/Core/IOS/ES/NandUtils.cpp index 89af3f140f..7198049462 100644 --- a/Source/Core/Core/IOS/ES/NandUtils.cpp +++ b/Source/Core/Core/IOS/ES/NandUtils.cpp @@ -340,7 +340,7 @@ bool ESCore::FinishImport(const ES::TMDReader& tmd) // There should not be any directory in there. Remove it. if (fs->ReadDirectory(PID_KERNEL, PID_KERNEL, absolute_path)) fs->Delete(PID_KERNEL, PID_KERNEL, absolute_path); - else if (expected_entries.find(name) == expected_entries.end()) + else if (!expected_entries.contains(name)) fs->Delete(PID_KERNEL, PID_KERNEL, absolute_path); } diff --git a/Source/Core/Core/IOS/Network/Socket.cpp b/Source/Core/Core/IOS/Network/Socket.cpp index 59f8e31814..b5ab5ffc4e 100644 --- a/Source/Core/Core/IOS/Network/Socket.cpp +++ b/Source/Core/Core/IOS/Network/Socket.cpp @@ -876,7 +876,7 @@ s32 WiiSockMan::AddSocket(s32 fd, bool is_rw) for (wii_fd = 0; wii_fd < WII_SOCKET_FD_MAX; ++wii_fd) { // Find an available socket fd - if (WiiSockets.count(wii_fd) == 0) + if (!WiiSockets.contains(wii_fd)) break; } @@ -964,7 +964,7 @@ s32 WiiSockMan::NewSocket(s32 af, s32 type, s32 protocol) s32 WiiSockMan::GetHostSocket(s32 wii_fd) const { - if (WiiSockets.count(wii_fd) > 0) + if (WiiSockets.contains(wii_fd)) return WiiSockets.at(wii_fd).fd; return -EBADF; } diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp index 9d853d1f48..1a43a647c5 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp @@ -678,7 +678,7 @@ bool BluetoothRealDevice::OpenDevice(libusb_device* device) void BluetoothRealDevice::HandleCtrlTransfer(libusb_transfer* tr) { std::lock_guard lk(m_transfers_mutex); - if (!m_current_transfers.count(tr)) + if (!m_current_transfers.contains(tr)) return; if (tr->status != LIBUSB_TRANSFER_COMPLETED && tr->status != LIBUSB_TRANSFER_NO_DEVICE) @@ -706,7 +706,7 @@ void BluetoothRealDevice::HandleCtrlTransfer(libusb_transfer* tr) void BluetoothRealDevice::HandleBulkOrIntrTransfer(libusb_transfer* tr) { std::lock_guard lk(m_transfers_mutex); - if (!m_current_transfers.count(tr)) + if (!m_current_transfers.contains(tr)) return; if (tr->status != LIBUSB_TRANSFER_COMPLETED && tr->status != LIBUSB_TRANSFER_TIMED_OUT && diff --git a/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp b/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp index 950e20404f..a48be51173 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp @@ -188,7 +188,7 @@ u16 WiimoteDevice::GenerateChannelID() const u16 cid = starting_id; - while (m_channels.count(cid) != 0) + while (m_channels.contains(cid)) ++cid; return cid; diff --git a/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.h b/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.h index 99ac995f78..f74bb4717e 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.h +++ b/Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.h @@ -149,7 +149,7 @@ private: bool LinkChannel(u16 psm); u16 GenerateChannelID() const; - bool DoesChannelExist(u16 scid) const { return m_channels.count(scid) != 0; } + bool DoesChannelExist(u16 scid) const { return m_channels.contains(scid); } void SendCommandToACL(u8 ident, u8 code, u8 command_length, u8* command_data); void SignalChannel(u8* data, u32 size); diff --git a/Source/Core/Core/IOS/USB/Emulated/Skylanders/SkylanderFigure.cpp b/Source/Core/Core/IOS/USB/Emulated/Skylanders/SkylanderFigure.cpp index 56535f9c6b..f4483ba359 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Skylanders/SkylanderFigure.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Skylanders/SkylanderFigure.cpp @@ -186,7 +186,7 @@ FigureData SkylanderFigure::GetData() const auto filter = std::make_pair(figure_data.figure_id, figure_data.variant_id); Type type = Type::Item; - if (IOS::HLE::USB::list_skylanders.count(filter) != 0) + if (IOS::HLE::USB::list_skylanders.contains(filter)) { auto found = IOS::HLE::USB::list_skylanders.at(filter); type = found.type; diff --git a/Source/Core/Core/IOS/USB/Host.cpp b/Source/Core/Core/IOS/USB/Host.cpp index c2641932ac..bc1eace025 100644 --- a/Source/Core/Core/IOS/USB/Host.cpp +++ b/Source/Core/Core/IOS/USB/Host.cpp @@ -72,7 +72,7 @@ void USBHost::DoState(PointerWrap& p) bool USBHost::AddDevice(std::unique_ptr device) { std::lock_guard lk(m_devices_mutex); - if (m_devices.find(device->GetId()) != m_devices.end()) + if (m_devices.contains(device->GetId())) return false; m_devices[device->GetId()] = std::move(device); @@ -136,7 +136,7 @@ bool USBHost::AddNewDevices(std::set& new_devices, DeviceChangeHooks& hooks const int ret = m_context.GetDeviceList([&](libusb_device* device) { libusb_device_descriptor descriptor; libusb_get_device_descriptor(device, &descriptor); - if (whitelist.count({descriptor.idVendor, descriptor.idProduct}) == 0) + if (!whitelist.contains({descriptor.idVendor, descriptor.idProduct})) return true; auto usb_device = @@ -157,7 +157,7 @@ void USBHost::DetectRemovedDevices(const std::set& plugged_devices, DeviceC std::lock_guard lk(m_devices_mutex); for (auto it = m_devices.begin(); it != m_devices.end();) { - if (plugged_devices.find(it->second->GetId()) == plugged_devices.end()) + if (!plugged_devices.contains(it->second->GetId())) { hooks.emplace(it->second, ChangeEvent::Removed); it = m_devices.erase(it); diff --git a/Source/Core/Core/IOS/USB/OH0/OH0.cpp b/Source/Core/Core/IOS/USB/OH0/OH0.cpp index 3685c9d8f5..fdd6b40d9c 100644 --- a/Source/Core/Core/IOS/USB/OH0/OH0.cpp +++ b/Source/Core/Core/IOS/USB/OH0/OH0.cpp @@ -176,7 +176,7 @@ std::optional OH0::RegisterRemovalHook(const u64 device_id, const IOCt { std::lock_guard lock{m_hooks_mutex}; // IOS only allows a single device removal hook. - if (m_removal_hooks.find(device_id) != m_removal_hooks.end()) + if (m_removal_hooks.contains(device_id)) return IPCReply(IPC_EEXIST); m_removal_hooks.insert({device_id, request.address}); return std::nullopt; @@ -271,8 +271,7 @@ std::pair OH0::DeviceOpen(const u16 vid, const u16 pid) continue; has_device_with_vid_pid = true; - if (m_opened_devices.find(device.second->GetId()) != m_opened_devices.cend() || - !device.second->Attach()) + if (m_opened_devices.contains(device.second->GetId()) || !device.second->Attach()) { continue; } diff --git a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp index 288c4490fc..b60339a8f1 100644 --- a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp +++ b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp @@ -173,13 +173,12 @@ void USB_HIDv4::OnDeviceChange(ChangeEvent event, std::shared_ptr d if (event == ChangeEvent::Inserted) { s32 new_id = 0; - while (m_ios_ids.find(new_id) != m_ios_ids.cend()) + while (m_ios_ids.contains(new_id)) ++new_id; m_ios_ids[new_id] = device->GetId(); m_device_ids[device->GetId()] = new_id; } - else if (event == ChangeEvent::Removed && - m_device_ids.find(device->GetId()) != m_device_ids.cend()) + else if (event == ChangeEvent::Removed && m_device_ids.contains(device->GetId())) { m_ios_ids.erase(m_device_ids.at(device->GetId())); m_device_ids.erase(device->GetId()); diff --git a/Source/Core/Core/NetPlayClient.cpp b/Source/Core/Core/NetPlayClient.cpp index c40b122a70..96203a67d7 100644 --- a/Source/Core/Core/NetPlayClient.cpp +++ b/Source/Core/Core/NetPlayClient.cpp @@ -2388,7 +2388,7 @@ void NetPlayClient::RequestGolfControl() std::string NetPlayClient::GetCurrentGolfer() { std::lock_guard lkp(m_crit.players); - if (m_players.count(m_current_golfer)) + if (m_players.contains(m_current_golfer)) return m_players[m_current_golfer].name; return ""; } diff --git a/Source/Core/Core/NetPlayServer.cpp b/Source/Core/Core/NetPlayServer.cpp index 0705e4d2a7..617608741c 100644 --- a/Source/Core/Core/NetPlayServer.cpp +++ b/Source/Core/Core/NetPlayServer.cpp @@ -283,7 +283,7 @@ void NetPlayServer::ThreadFunc() auto& e = m_async_queue.Front(); if (e.target_mode == TargetMode::Only) { - if (m_players.find(e.target_pid) != m_players.end()) + if (m_players.contains(e.target_pid)) Send(m_players.at(e.target_pid).socket, e.packet, e.channel_id); } else @@ -787,7 +787,7 @@ unsigned int NetPlayServer::OnData(sf::Packet& packet, Client& player) u32 cid; packet >> cid; - if (m_chunked_data_complete_count.find(cid) != m_chunked_data_complete_count.end()) + if (m_chunked_data_complete_count.contains(cid)) { m_chunked_data_complete_count[cid]++; m_chunked_data_complete_event.Set(); @@ -832,7 +832,7 @@ unsigned int NetPlayServer::OnData(sf::Packet& packet, Client& player) if (m_host_input_authority) { // Prevent crash before game stop if the golfer disconnects - if (m_current_golfer != 0 && m_players.find(m_current_golfer) != m_players.end()) + if (m_current_golfer != 0 && m_players.contains(m_current_golfer)) Send(m_players.at(m_current_golfer).socket, spac); } else @@ -917,7 +917,7 @@ unsigned int NetPlayServer::OnData(sf::Packet& packet, Client& player) packet >> pid; // Check if player ID is valid and sender isn't a spectator - if (!m_players.count(pid) || !PlayerHasControllerMapped(player.pid)) + if (!m_players.contains(pid) || !PlayerHasControllerMapped(player.pid)) break; if (m_host_input_authority && m_settings.golf_mode && m_pending_golfer == 0 && @@ -2426,7 +2426,7 @@ void NetPlayServer::ChunkedDataThreadFunc() } if (e.target_mode == TargetMode::Only) { - if (m_players.find(e.target_pid) == m_players.end()) + if (!m_players.contains(e.target_pid)) { skip_wait = true; break; diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index fe46aa90a6..4594f7d6d5 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -909,7 +909,7 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) // Assume that GQR values don't change often at runtime. Many paired-heavy games use largely float // loads and stores, which are significantly faster when inlined (especially in MMU mode, where // this lets them use fastmem). - if (js.pairedQuantizeAddresses.find(js.blockStart) == js.pairedQuantizeAddresses.end()) + if (!js.pairedQuantizeAddresses.contains(js.blockStart)) { // If there are GQRs used but not set, we'll treat those as constant and optimize them BitSet8 gqr_static = ComputeStaticGQRs(code_block); @@ -938,8 +938,7 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) } } - if (js.noSpeculativeConstantsAddresses.find(js.blockStart) == - js.noSpeculativeConstantsAddresses.end()) + if (!js.noSpeculativeConstantsAddresses.contains(js.blockStart)) { IntializeSpeculativeConstants(); } @@ -967,8 +966,7 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) { // Gather pipe writes using a non-immediate address are discovered by profiling. const u32 prev_address = m_code_buffer[i - 1].address; - bool gatherPipeIntCheck = - js.fifoWriteAddresses.find(prev_address) != js.fifoWriteAddresses.end(); + bool gatherPipeIntCheck = js.fifoWriteAddresses.contains(prev_address); // Gather pipe writes using an immediate address are explicitly tracked. if (jo.optimizeGatherPipe && diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index 4f0bd71c31..049f9f6892 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -1158,8 +1158,7 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) { // Gather pipe writes using a non-immediate address are discovered by profiling. const u32 prev_address = m_code_buffer[i - 1].address; - bool gatherPipeIntCheck = - js.fifoWriteAddresses.find(prev_address) != js.fifoWriteAddresses.end(); + bool gatherPipeIntCheck = js.fifoWriteAddresses.contains(prev_address); if (jo.optimizeGatherPipe && (js.fifoBytesSinceCheck >= GPFifo::GATHER_PIPE_SIZE || js.mustCheckFifo)) diff --git a/Source/Core/Core/PowerPC/JitInterface.cpp b/Source/Core/Core/PowerPC/JitInterface.cpp index bd31893035..7e0e281998 100644 --- a/Source/Core/Core/PowerPC/JitInterface.cpp +++ b/Source/Core/Core/PowerPC/JitInterface.cpp @@ -316,8 +316,7 @@ void JitInterface::CompileExceptionCheck(ExceptionType type) } auto& ppc_state = m_system.GetPPCState(); - if (ppc_state.pc != 0 && - (exception_addresses->find(ppc_state.pc)) == (exception_addresses->end())) + if (ppc_state.pc != 0 && !exception_addresses->contains(ppc_state.pc)) { if (type == ExceptionType::FIFOWrite) { diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp index 4bbf5ca7db..cccf98a629 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp @@ -34,7 +34,7 @@ PPCSymbolDB::~PPCSymbolDB() = default; Common::Symbol* PPCSymbolDB::AddFunction(const Core::CPUThreadGuard& guard, u32 start_addr) { // It's already in the list - if (m_functions.find(start_addr) != m_functions.end()) + if (m_functions.contains(start_addr)) return nullptr; Common::Symbol symbol; diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 11c8e9660e..fe20d74ea4 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -742,7 +742,7 @@ static bool ValidateHeaders(const StateHeader& header) std::string loaded_str = header.version_string; const u32 loaded_version = header.version_header.version_cookie - COOKIE_BASE; - if (s_old_versions.count(loaded_version)) + if (s_old_versions.contains(loaded_version)) { // This is a REALLY old version, before we started writing the version string to file success = false; diff --git a/Source/Core/Core/WiiUtils.cpp b/Source/Core/Core/WiiUtils.cpp index 2803844ac6..2d5a8e4ac3 100644 --- a/Source/Core/Core/WiiUtils.cpp +++ b/Source/Core/Core/WiiUtils.cpp @@ -532,7 +532,7 @@ UpdateResult OnlineSystemUpdater::InstallTitleFromNUS(const std::string& prefix_ if (title.id == Titles::BOOT2) return UpdateResult::Succeeded; - if (!ShouldInstallTitle(title) || updated_titles->find(title.id) != updated_titles->end()) + if (!ShouldInstallTitle(title) || updated_titles->contains(title.id)) return UpdateResult::Succeeded; NOTICE_LOG_FMT(CORE, "Updating title {:016x}", title.id); diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index c6ca41d64c..be1eb0a4b9 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -728,7 +728,7 @@ void CodeViewWidget::AutoStep(CodeTrace::AutoStop option) for (u32 i = 1; i <= 3; i++) { - if (results.mem_tracked.count(address + i)) + if (results.mem_tracked.contains(address + i)) iter++; else break; diff --git a/Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp b/Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp index 8e28c9983f..18ba1a2d3c 100644 --- a/Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp @@ -125,7 +125,7 @@ void ChunkedProgressDialog::SetProgress(const int pid, const u64 progress) { QString player_name = GetPlayerNameFromPID(pid); - if (!m_status_labels.count(pid)) + if (!m_status_labels.contains(pid)) return; const float acquired = progress / 1024.0f / 1024.0f; diff --git a/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp b/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp index 6a91e4bbde..6ca4ec378d 100644 --- a/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp @@ -122,7 +122,7 @@ void GameDigestDialog::SetProgress(int pid, int progress) { QString player_name = GetPlayerNameFromPID(pid); - if (!m_status_labels.count(pid)) + if (!m_status_labels.contains(pid)) return; m_status_labels[pid]->setText( @@ -134,7 +134,7 @@ void GameDigestDialog::SetResult(int pid, const std::string& result) { QString player_name = GetPlayerNameFromPID(pid); - if (!m_status_labels.count(pid)) + if (!m_status_labels.contains(pid)) return; m_status_labels[pid]->setText( diff --git a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp index 4ae4b5f315..c02946d48f 100644 --- a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp @@ -659,7 +659,7 @@ void NetPlayDialog::UpdateGUI() auto* name_item = new QTableWidgetItem(QString::fromStdString(p->name)); name_item->setToolTip(name_item->text()); - const auto& status_info = player_status.count(p->game_status) ? + const auto& status_info = player_status.contains(p->game_status) ? player_status.at(p->game_status) : std::make_pair(QStringLiteral("?"), QStringLiteral("?")); auto* status_item = new QTableWidgetItem(status_info.first); diff --git a/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp b/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp index fd2b26e511..d6add823d3 100644 --- a/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp +++ b/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp @@ -113,7 +113,7 @@ void USBDeviceAddToWhitelistDialog::RefreshDeviceList() auto whitelist = Config::GetUSBDeviceWhitelist(); for (const auto& device : current_devices) { - if (whitelist.count({device.first.first, device.first.second}) != 0) + if (whitelist.contains({device.first.first, device.first.second})) continue; usb_inserted_devices_list->addItem(QString::fromStdString(device.second)); } diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp index f095818287..577bd761d4 100644 --- a/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp +++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp @@ -44,7 +44,7 @@ void InitJoystick(IDirectInput8* const idi8, HWND hwnd) for (DIDEVICEINSTANCE& joystick : joysticks) { // Skip XInput Devices - if (xinput_guids.count(joystick.guidProduct.Data1)) + if (xinput_guids.contains(joystick.guidProduct.Data1)) { continue; } @@ -52,7 +52,7 @@ void InitJoystick(IDirectInput8* const idi8, HWND hwnd) // Skip devices we are already using. { std::lock_guard lk(s_guids_mutex); - if (s_guids_in_use.count(joystick.guidInstance)) + if (s_guids_in_use.contains(joystick.guidInstance)) { continue; } diff --git a/Source/Core/UpdaterCommon/UpdaterCommon.cpp b/Source/Core/UpdaterCommon/UpdaterCommon.cpp index bba12b8f48..9dd470e067 100644 --- a/Source/Core/UpdaterCommon/UpdaterCommon.cpp +++ b/Source/Core/UpdaterCommon/UpdaterCommon.cpp @@ -279,7 +279,7 @@ TodoList ComputeActionsToDo(Manifest this_manifest, Manifest next_manifest) // Delete if present in this manifest but not in next manifest. for (const auto& entry : this_manifest.entries) { - if (next_manifest.entries.find(entry.first) == next_manifest.entries.end()) + if (!next_manifest.entries.contains(entry.first)) { TodoList::DeleteOp del; del.filename = entry.first; diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp index 4ddd2d1d72..0d070a4310 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp @@ -197,7 +197,7 @@ void GraphicsModManager::Load(const GraphicsModGroupConfig& config) { for (const GraphicsTargetGroupConfig& group : mod.m_groups) { - if (m_groups.find(group.m_name) != m_groups.end()) + if (m_groups.contains(group.m_name)) { WARN_LOG_FMT( VIDEO, diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index 5ef7d3fc98..b99533eb02 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -665,7 +665,7 @@ void TextureCacheBase::DoSaveState(PointerWrap& p) auto refpair1 = std::make_pair(*id1, *id2); auto refpair2 = std::make_pair(*id2, *id1); - if (reference_pairs.count(refpair1) == 0 && reference_pairs.count(refpair2) == 0) + if (!reference_pairs.contains(refpair1) && !reference_pairs.contains(refpair2)) reference_pairs.insert(refpair1); } } @@ -854,7 +854,7 @@ RcTcacheEntry TextureCacheBase::DoPartialTextureUpdates(RcTcacheEntry& entry_to_ { auto& entry = iter.first->second; if (entry != entry_to_update && entry->IsCopy() && - entry->references.count(entry_to_update.get()) == 0 && + !entry->references.contains(entry_to_update.get()) && entry->OverlapsMemoryRange(entry_to_update->addr, entry_to_update->size_in_bytes) && entry->memory_stride == numBlocksX * block_size) { From 7bc09bba87ea310af66e48162838b50bd9969fb4 Mon Sep 17 00:00:00 2001 From: Sketch <75850871+SketchMaster2001@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:44:36 -0400 Subject: [PATCH 269/296] IOS/KD: Implement Get Time Triggers --- .../Core/Core/IOS/Network/KD/NetKDRequest.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp b/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp index 6715a6c339..14553199d6 100644 --- a/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp +++ b/Source/Core/Core/IOS/Network/KD/NetKDRequest.cpp @@ -1179,6 +1179,25 @@ std::optional NetKDRequestDevice::IOCtl(const IOCtlRequest& request) return_value = IPC_SUCCESS; break; } + case IOCTL_NWC24_KD_GET_TIME_TRIGGERS: + { + if (request.buffer_out == 0 || request.buffer_out % 4 != 0 || request.buffer_out_size < 12) + { + return_value = IPC_EINVAL; + ERROR_LOG_FMT(IOS_WC24, "NET_KD_REQ: IOCTL_NWC24_KD_GET_TIME_TRIGGERS = IPC_EINVAL"); + break; + } + + INFO_LOG_FMT(IOS_WC24, "NET_KD_REQ: IOCTL_NWC24_KD_GET_TIME_TRIGGERS"); + + std::lock_guard lg(m_scheduler_buffer_lock); + memory.Write_U32(m_mail_span, request.buffer_out + 4); + memory.Write_U32(m_download_span, request.buffer_out + 8); + WriteReturnValue(memory, NWC24::WC24_OK, request.buffer_out); + + return_value = IPC_SUCCESS; + break; + } default: request.Log(GetDeviceName(), Common::Log::LogType::IOS_WC24); From 309df9ed5bbfefc68fb0cf6285b41324961aebbc Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sun, 28 Jul 2024 22:28:58 +0200 Subject: [PATCH 270/296] Replace boolean constants with boolean literals --- Source/Core/Core/Config/SYSCONFSettings.cpp | 2 +- Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp | 2 +- Source/Core/Core/IOS/FS/HostBackend/FS.cpp | 2 +- .../VideoCommon/VertexLoaderTest.cpp | 36 +++++++++---------- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Source/Core/Core/Config/SYSCONFSettings.cpp b/Source/Core/Core/Config/SYSCONFSettings.cpp index e2263ceaba..2a6528b8e0 100644 --- a/Source/Core/Core/Config/SYSCONFSettings.cpp +++ b/Source/Core/Core/Config/SYSCONFSettings.cpp @@ -15,7 +15,7 @@ const Info SYSCONF_LANGUAGE{{System::SYSCONF, "IPL", "LNG"}, const Info SYSCONF_COUNTRY{{System::SYSCONF, "IPL", "SADR"}, GetDefaultCountry()}; const Info SYSCONF_WIDESCREEN{{System::SYSCONF, "IPL", "AR"}, true}; const Info SYSCONF_PROGRESSIVE_SCAN{{System::SYSCONF, "IPL", "PGS"}, true}; -const Info SYSCONF_PAL60{{System::SYSCONF, "IPL", "E60"}, 0x01}; +const Info SYSCONF_PAL60{{System::SYSCONF, "IPL", "E60"}, true}; const Info SYSCONF_SOUND_MODE{{System::SYSCONF, "IPL", "SND"}, 0x01}; // SYSCONF.BT diff --git a/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp b/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp index f2cae61ff3..6bbab12dd1 100644 --- a/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp @@ -719,7 +719,7 @@ void MotionPlus::ReversePassthroughModifications(PassthroughMode mode, u8* data) // This is an overwritten unused button bit on the Classic Controller. // Note it's a significant bit on the DJ Hero Turntable. (passthrough not feasible) - Common::SetBit<0>(data[4], 1); + Common::SetBit<0>(data[4], true); } } diff --git a/Source/Core/Core/IOS/FS/HostBackend/FS.cpp b/Source/Core/Core/IOS/FS/HostBackend/FS.cpp index 8ef5af6f71..da5fa6d983 100644 --- a/Source/Core/Core/IOS/FS/HostBackend/FS.cpp +++ b/Source/Core/Core/IOS/FS/HostBackend/FS.cpp @@ -290,7 +290,7 @@ void HostFileSystem::DoStateRead(PointerWrap& p, std::string start_directory_pat File::CreateDir(path); // now restore from the stream - while (1) + while (true) { char type = 0; p.Do(type); diff --git a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp index 853d690142..92a9888ba2 100644 --- a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp +++ b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp @@ -316,15 +316,15 @@ TEST_P(VertexLoaderSpeedTest, TexCoordSingleElement) TEST_F(VertexLoaderTest, LargeFloatVertexSpeed) { // Enables most attributes in floating point indexed mode to test speed. - m_vtx_desc.low.PosMatIdx = 1; - m_vtx_desc.low.Tex0MatIdx = 1; - m_vtx_desc.low.Tex1MatIdx = 1; - m_vtx_desc.low.Tex2MatIdx = 1; - m_vtx_desc.low.Tex3MatIdx = 1; - m_vtx_desc.low.Tex4MatIdx = 1; - m_vtx_desc.low.Tex5MatIdx = 1; - m_vtx_desc.low.Tex6MatIdx = 1; - m_vtx_desc.low.Tex7MatIdx = 1; + m_vtx_desc.low.PosMatIdx = true; + m_vtx_desc.low.Tex0MatIdx = true; + m_vtx_desc.low.Tex1MatIdx = true; + m_vtx_desc.low.Tex2MatIdx = true; + m_vtx_desc.low.Tex3MatIdx = true; + m_vtx_desc.low.Tex4MatIdx = true; + m_vtx_desc.low.Tex5MatIdx = true; + m_vtx_desc.low.Tex6MatIdx = true; + m_vtx_desc.low.Tex7MatIdx = true; m_vtx_desc.low.Position = VertexComponentFormat::Index16; m_vtx_desc.low.Normal = VertexComponentFormat::Index16; m_vtx_desc.low.Color0 = VertexComponentFormat::Index16; @@ -379,15 +379,15 @@ TEST_F(VertexLoaderTest, LargeFloatVertexSpeed) TEST_F(VertexLoaderTest, DirectAllComponents) { - m_vtx_desc.low.PosMatIdx = 1; - m_vtx_desc.low.Tex0MatIdx = 1; - m_vtx_desc.low.Tex1MatIdx = 1; - m_vtx_desc.low.Tex2MatIdx = 1; - m_vtx_desc.low.Tex3MatIdx = 1; - m_vtx_desc.low.Tex4MatIdx = 1; - m_vtx_desc.low.Tex5MatIdx = 1; - m_vtx_desc.low.Tex6MatIdx = 1; - m_vtx_desc.low.Tex7MatIdx = 1; + m_vtx_desc.low.PosMatIdx = true; + m_vtx_desc.low.Tex0MatIdx = true; + m_vtx_desc.low.Tex1MatIdx = true; + m_vtx_desc.low.Tex2MatIdx = true; + m_vtx_desc.low.Tex3MatIdx = true; + m_vtx_desc.low.Tex4MatIdx = true; + m_vtx_desc.low.Tex5MatIdx = true; + m_vtx_desc.low.Tex6MatIdx = true; + m_vtx_desc.low.Tex7MatIdx = true; m_vtx_desc.low.Position = VertexComponentFormat::Direct; m_vtx_desc.low.Normal = VertexComponentFormat::Direct; m_vtx_desc.low.Color0 = VertexComponentFormat::Direct; From 8a93620d06f1ca74aee9e5e402721b1845fa9bd2 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 15 Aug 2024 12:36:46 -0400 Subject: [PATCH 271/296] DolphinQt: Remove entitlements for Steam overlay --- Source/Core/DolphinQt/DolphinEmu.entitlements | 3 --- Source/Core/DolphinQt/DolphinEmuDebug.entitlements | 3 --- 2 files changed, 6 deletions(-) diff --git a/Source/Core/DolphinQt/DolphinEmu.entitlements b/Source/Core/DolphinQt/DolphinEmu.entitlements index f7cafadc62..50c57c58c1 100644 --- a/Source/Core/DolphinQt/DolphinEmu.entitlements +++ b/Source/Core/DolphinQt/DolphinEmu.entitlements @@ -13,8 +13,5 @@ com.apple.security.cs.disable-library-validation - - com.apple.security.cs.allow-dyld-environment-variables - diff --git a/Source/Core/DolphinQt/DolphinEmuDebug.entitlements b/Source/Core/DolphinQt/DolphinEmuDebug.entitlements index 597315d760..6445fa77b9 100644 --- a/Source/Core/DolphinQt/DolphinEmuDebug.entitlements +++ b/Source/Core/DolphinQt/DolphinEmuDebug.entitlements @@ -13,9 +13,6 @@ com.apple.security.cs.disable-library-validation - - com.apple.security.cs.allow-dyld-environment-variables - com.apple.security.get-task-allow From f10f08d1c25ee2977f8ad4e213e5848c5d3de0ca Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 15 Aug 2024 12:37:57 -0400 Subject: [PATCH 272/296] UICommon: Remove Steam user directory logic --- Source/Core/Common/CommonPaths.h | 10 ---------- Source/Core/UICommon/UICommon.cpp | 24 ------------------------ 2 files changed, 34 deletions(-) diff --git a/Source/Core/Common/CommonPaths.h b/Source/Core/Common/CommonPaths.h index 5561b0e187..0f6b7adfb6 100644 --- a/Source/Core/Common/CommonPaths.h +++ b/Source/Core/Common/CommonPaths.h @@ -11,7 +11,6 @@ #define ROOT_DIR "." // The normal user directory -#ifndef STEAM #ifdef _WIN32 #define NORMAL_USER_DIR "Dolphin Emulator" #elif defined(__APPLE__) @@ -21,15 +20,6 @@ #else #define NORMAL_USER_DIR "dolphin-emu" #endif -#else // ifndef STEAM -#ifdef _WIN32 -#define NORMAL_USER_DIR "Dolphin Emulator (Steam)" -#elif defined(__APPLE__) -#define NORMAL_USER_DIR "Library/Application Support/Dolphin (Steam)" -#else -#define NORMAL_USER_DIR "dolphin-emu-steam" -#endif -#endif // The portable user directory #ifdef _WIN32 diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp index 4575498fb5..414581f305 100644 --- a/Source/Core/UICommon/UICommon.cpp +++ b/Source/Core/UICommon/UICommon.cpp @@ -308,21 +308,12 @@ void SetUserDirectory(std::string custom_path) // -> Use AppData\Roaming\Dolphin Emulator as the User directory path // 6. Default // -> Use GetExeDirectory()\User - // - // On Steam builds, we take a simplified approach: - // 1. GetExeDirectory()\portable.txt exists - // -> Use GetExeDirectory()\User - // 2. AppData\Roaming exists - // -> Use AppData\Roaming\Dolphin Emulator (Steam) as the User directory path - // 3. Default - // -> Use GetExeDirectory()\User // Get AppData path in case we need it. wil::unique_cotaskmem_string appdata; bool appdata_found = SUCCEEDED( SHGetKnownFolderPath(FOLDERID_RoamingAppData, KF_FLAG_DEFAULT, nullptr, appdata.put())); -#ifndef STEAM // Check our registry keys wil::unique_hkey hkey; DWORD local = 0; @@ -389,21 +380,6 @@ void SetUserDirectory(std::string custom_path) { user_path = File::GetExeDirectory() + DIR_SEP PORTABLE_USER_DIR DIR_SEP; } -#else // ifndef STEAM - if (File::Exists(File::GetExeDirectory() + DIR_SEP "portable.txt")) // Case 1 - { - user_path = File::GetExeDirectory() + DIR_SEP PORTABLE_USER_DIR DIR_SEP; - } - else if (appdata_found) // Case 2 - { - user_path = TStrToUTF8(appdata.get()) + DIR_SEP NORMAL_USER_DIR DIR_SEP; - } - else // Case 3 - { - user_path = File::GetExeDirectory() + DIR_SEP PORTABLE_USER_DIR DIR_SEP; - } -#endif - #else if (File::IsDirectory(ROOT_DIR DIR_SEP EMBEDDED_USER_DIR)) { From c28fd445d793ab66c33d1d085548f12ce22906cb Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 15 Aug 2024 12:38:27 -0400 Subject: [PATCH 273/296] DolphinQt: Remove Steam runtime build support --- Source/Core/DolphinQt/CMakeLists.txt | 42 ---------------------------- 1 file changed, 42 deletions(-) diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 3f8c087cd1..44a59d5313 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -649,48 +649,6 @@ else() install(TARGETS dolphin-emu RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) endif() -if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND STEAM) - # Set that we want ORIGIN in FLAGS. - # We also want RPATH, not RUNPATH, so disable the new tags. - target_link_options(dolphin-emu - PRIVATE - LINKER:-z,origin - LINKER:--disable-new-dtags - ) - - # For Steam Runtime builds, our Qt shared libraries will be in a "lib" folder. - set_target_properties(dolphin-emu PROPERTIES - BUILD_WITH_INSTALL_RPATH true - INSTALL_RPATH "\$ORIGIN/lib" - ) - - add_custom_command(TARGET dolphin-emu POST_BUILD - COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib" - COMMAND cp "${Qt6_DIR}/../../LICENSE.*" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib" - COMMAND cp -P "${Qt6_DIR}/../../*.so*" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib" - COMMAND ${CMAKE_COMMAND} -E copy_directory "${Qt6_DIR}/../../../plugins" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/plugins" - ) - - # Copy qt.conf - target_sources(dolphin-emu PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/qt.conf") - add_custom_command(TARGET dolphin-emu POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/qt.conf" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/qt.conf" - ) - - # Mark all data files as resources - set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/Data/Sys") - file(GLOB_RECURSE resources RELATIVE "${CMAKE_SOURCE_DIR}/Data" "${CMAKE_SOURCE_DIR}/Data/Sys/*") - foreach(res ${resources}) - target_sources(dolphin-emu PRIVATE "${CMAKE_SOURCE_DIR}/Data/${res}") - source_group("Resources" FILES "${CMAKE_SOURCE_DIR}/Data/${res}") - endforeach() - - # Copy Sys folder - add_custom_command(TARGET dolphin-emu POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/Data/Sys" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys" - ) -endif() - if(USE_MGBA) target_sources(dolphin-emu PRIVATE GBAHost.cpp From afde1dcfe252be9fedf0560191012d80bc2e1839 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 15 Aug 2024 12:39:22 -0400 Subject: [PATCH 274/296] BuildMacOSUniversalBinary: Remove flag for creating a Steam build --- BuildMacOSUniversalBinary.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/BuildMacOSUniversalBinary.py b/BuildMacOSUniversalBinary.py index d09bd9a8b3..6f4d2695ae 100755 --- a/BuildMacOSUniversalBinary.py +++ b/BuildMacOSUniversalBinary.py @@ -70,9 +70,6 @@ DEFAULT_CONFIG = { "run_unit_tests": False, - # Whether we should make a build for Steam. - "steam": False, - # Whether our autoupdate functionality is enabled or not. "autoupdate": True, @@ -120,12 +117,6 @@ def parse_args(conf=DEFAULT_CONFIG): parser.add_argument("--run_unit_tests", action="store_true", default=conf["run_unit_tests"]) - parser.add_argument( - "--steam", - help="Create a build for Steam", - action="store_true", - default=conf["steam"]) - parser.add_argument( "--autoupdate", help="Enables our autoupdate functionality", @@ -311,8 +302,6 @@ def build(config): "-DMACOS_CODE_SIGNING_IDENTITY=" + config["codesign_identity"], '-DMACOS_CODE_SIGNING="ON"', - "-DSTEAM=" - + python_to_cmake_bool(config["steam"]), "-DENABLE_AUTOUPDATE=" + python_to_cmake_bool(config["autoupdate"]), '-DDISTRIBUTOR=' + config['distributor'], From f85d4a429435917b843a50e2e7f35181196feb20 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 15 Aug 2024 12:39:56 -0400 Subject: [PATCH 275/296] CMakeLists: Remove flag for creating a Steam build --- CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e3a33876d5..7ca6679f28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,7 +104,6 @@ option(ENABLE_VULKAN "Enables vulkan video backend" ON) option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence, show the current game on Discord" ON) option(USE_MGBA "Enables GBA controllers emulation using libmgba" ON) option(ENABLE_AUTOUPDATE "Enables support for automatic updates" ON) -option(STEAM "Creates a build for Steam" OFF) option(USE_RETRO_ACHIEVEMENTS "Enables integration with retroachievements.org" ON) # Maintainers: if you consider blanket disabling this for your users, please @@ -391,7 +390,7 @@ if(ENABLE_LTO) endif() if(UNIX) - if(LINUX_LOCAL_DEV OR (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND STEAM)) + if(LINUX_LOCAL_DEV) add_definitions(-DLINUX_LOCAL_DEV) endif() endif() @@ -753,10 +752,6 @@ else() message(STATUS "libsystemd not found, disabling traversal server watchdog support") endif() -if(STEAM) - add_definitions(-DSTEAM) -endif() - if (WIN32) include_directories(Externals/WIL/include) include_directories(Externals/OpenAL/include) From 9fa4eb9aab4790ab370c92790de4f001eb50871e Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:20:16 -0700 Subject: [PATCH 276/296] Use 'contains' method --- Source/Android/jni/Cheats/GraphicsModGroup.cpp | 2 +- Source/Core/Core/CoreTiming.cpp | 2 +- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 6 ++---- Source/Core/DolphinQt/Config/GameConfigEdit.cpp | 2 +- Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp | 2 +- .../ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm | 2 +- Source/Core/VideoCommon/ShaderCache.cpp | 2 +- Source/UnitTests/Core/MMIOTest.cpp | 4 ++-- Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | 4 ++-- 9 files changed, 12 insertions(+), 14 deletions(-) diff --git a/Source/Android/jni/Cheats/GraphicsModGroup.cpp b/Source/Android/jni/Cheats/GraphicsModGroup.cpp index c21584f326..35a5a92f08 100644 --- a/Source/Android/jni/Cheats/GraphicsModGroup.cpp +++ b/Source/Android/jni/Cheats/GraphicsModGroup.cpp @@ -53,7 +53,7 @@ Java_org_dolphinemu_dolphinemu_features_cheats_model_GraphicsModGroup_getMods(JN // If no group matches the mod's features, or if the mod has no features, skip it if (std::none_of(mod.m_features.begin(), mod.m_features.end(), [&groups](const GraphicsModFeatureConfig& feature) { - return groups.count(feature.m_group) == 1; + return groups.contains(feature.m_group); })) { continue; diff --git a/Source/Core/Core/CoreTiming.cpp b/Source/Core/Core/CoreTiming.cpp index 7fe8160da8..f34bc5f9de 100644 --- a/Source/Core/Core/CoreTiming.cpp +++ b/Source/Core/Core/CoreTiming.cpp @@ -73,7 +73,7 @@ EventType* CoreTimingManager::RegisterEvent(const std::string& name, TimedCallba { // check for existing type with same name. // we want event type names to remain unique so that we can use them for serialization. - ASSERT_MSG(POWERPC, m_event_types.find(name) == m_event_types.end(), + ASSERT_MSG(POWERPC, !m_event_types.contains(name), "CoreTiming Event \"{}\" is already registered. Events should only be registered " "during Init to avoid breaking save states.", name); diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index 049f9f6892..e46ccf9ee4 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -1101,8 +1101,7 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) if (IsProfilingEnabled()) ABI_CallFunction(&JitBlock::ProfileData::BeginProfiling, b->profile_data.get()); - if (code_block.m_gqr_used.Count() == 1 && - js.pairedQuantizeAddresses.find(js.blockStart) == js.pairedQuantizeAddresses.end()) + if (code_block.m_gqr_used.Count() == 1 && !js.pairedQuantizeAddresses.contains(js.blockStart)) { int gqr = *code_block.m_gqr_used.begin(); if (!code_block.m_gqr_modified[gqr] && !GQR(m_ppc_state, gqr)) @@ -1126,8 +1125,7 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC) gpr.Start(js.gpa); fpr.Start(js.fpa); - if (js.noSpeculativeConstantsAddresses.find(js.blockStart) == - js.noSpeculativeConstantsAddresses.end()) + if (!js.noSpeculativeConstantsAddresses.contains(js.blockStart)) { IntializeSpeculativeConstants(); } diff --git a/Source/Core/DolphinQt/Config/GameConfigEdit.cpp b/Source/Core/DolphinQt/Config/GameConfigEdit.cpp index 2d03d396f6..d114704f6a 100644 --- a/Source/Core/DolphinQt/Config/GameConfigEdit.cpp +++ b/Source/Core/DolphinQt/Config/GameConfigEdit.cpp @@ -143,7 +143,7 @@ void GameConfigEdit::OnSelectionChanged() { const QString& keyword = m_edit->textCursor().selectedText(); - if (m_keyword_map.count(keyword)) + if (m_keyword_map.contains(keyword)) QWhatsThis::showText(QCursor::pos(), m_keyword_map[keyword], this); } diff --git a/Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp b/Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp index 3aacbaac43..4eb1bb69a6 100644 --- a/Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp +++ b/Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp @@ -140,7 +140,7 @@ void GraphicsModListWidget::RefreshModList() // If no group matches the mod's features, or if the mod has no features, skip it if (std::none_of(mod.m_features.begin(), mod.m_features.end(), [&groups](const GraphicsModFeatureConfig& feature) { - return groups.count(feature.m_group) == 1; + return groups.contains(feature.m_group); })) { continue; diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm index 58de0c302e..5f0022c79b 100644 --- a/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm +++ b/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm @@ -179,7 +179,7 @@ std::string KeycodeToName(const CGKeyCode keycode) {kVK_RightOption, "Right Alt"}, }; - if (named_keys.find(keycode) != named_keys.end()) + if (named_keys.contains(keycode)) return named_keys.at(keycode); else return "Key " + std::to_string(keycode); diff --git a/Source/Core/VideoCommon/ShaderCache.cpp b/Source/Core/VideoCommon/ShaderCache.cpp index ca409777ce..587ee3cc7f 100644 --- a/Source/Core/VideoCommon/ShaderCache.cpp +++ b/Source/Core/VideoCommon/ShaderCache.cpp @@ -290,7 +290,7 @@ void ShaderCache::LoadPipelineCache(T& cache, Common::LinearDiskCacheGetGXPipelineConfig(real_uid); diff --git a/Source/UnitTests/Core/MMIOTest.cpp b/Source/UnitTests/Core/MMIOTest.cpp index cdc751fe92..31c943fec1 100644 --- a/Source/UnitTests/Core/MMIOTest.cpp +++ b/Source/UnitTests/Core/MMIOTest.cpp @@ -19,13 +19,13 @@ TEST(UniqueID, UniqueEnough) for (u32 i = 0x0C000000; i < 0x0C010000; ++i) { u32 unique_id = MMIO::UniqueID(i); - EXPECT_EQ(ids.end(), ids.find(unique_id)); + EXPECT_FALSE(ids.contains(unique_id)); ids.insert(unique_id); } for (u32 i = 0x0D000000; i < 0x0D010000; ++i) { u32 unique_id = MMIO::UniqueID(i); - EXPECT_EQ(ids.end(), ids.find(unique_id)); + EXPECT_FALSE(ids.contains(unique_id)); ids.insert(unique_id); } } diff --git a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp index 09d6ce3be5..b7850e85a3 100644 --- a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp +++ b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp @@ -28,13 +28,13 @@ TEST(VertexLoaderUID, UniqueEnough) vtx_desc.low.Hex = 0x76543210; vtx_desc.high.Hex = 0xFEDCBA98; - EXPECT_EQ(uids.end(), uids.find(VertexLoaderUID(vtx_desc, vat))); + EXPECT_FALSE(uids.contains(VertexLoaderUID(vtx_desc, vat))); uids.insert(VertexLoaderUID(vtx_desc, vat)); vat.g0.Hex = 0xFFFFFFFF; vat.g1.Hex = 0xFFFFFFFF; vat.g2.Hex = 0xFFFFFFFF; - EXPECT_EQ(uids.end(), uids.find(VertexLoaderUID(vtx_desc, vat))); + EXPECT_FALSE(uids.contains(VertexLoaderUID(vtx_desc, vat))); uids.insert(VertexLoaderUID(vtx_desc, vat)); } From de1c47a70192a594c2435daa14b58950a613e2ce Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:23:07 -0700 Subject: [PATCH 277/296] Misc. Container Find Changes --- Source/Core/Core/NetPlayClient.cpp | 2 +- Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/NetPlayClient.cpp b/Source/Core/Core/NetPlayClient.cpp index 96203a67d7..ecde7441ac 100644 --- a/Source/Core/Core/NetPlayClient.cpp +++ b/Source/Core/Core/NetPlayClient.cpp @@ -515,7 +515,7 @@ void NetPlayClient::OnPlayerLeave(sf::Packet& packet) const auto& player = it->second; INFO_LOG_FMT(NETPLAY, "Player {} ({}) left", player.name, pid); m_dialog->OnPlayerDisconnect(player.name); - m_players.erase(m_players.find(pid)); + m_players.erase(it); } m_dialog->Update(); diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp index e9f4f21980..e0ae924b83 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp @@ -102,7 +102,7 @@ protected: for (auto remove_prefix : {"BTN_", "KEY_"}) { - if (name.find(remove_prefix) == 0) + if (name.starts_with(remove_prefix)) return std::string(name.substr(std::strlen(remove_prefix))); } From 8bcaf6ef26ddf92505a3474f4d2bf5e2e1d3ef84 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 15 Aug 2024 21:48:50 -0400 Subject: [PATCH 278/296] Fixed missing game badge in achievements dialog --- Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp index 41e87ef5e2..79ed1e15f0 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp @@ -103,7 +103,7 @@ void AchievementHeaderWidget::UpdateData() { rc_client_user_game_summary_t game_summary; rc_client_get_user_game_summary(instance.GetClient(), &game_summary); - if (game_badge.data.empty()) + if (!game_badge.data.empty()) { QImage i_game_icon(game_badge.data.data(), game_badge.width, game_badge.height, QImage::Format_RGBA8888); From 214756dd1840570cca6b7b6d0d7b0b369678dd15 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 11 Aug 2024 22:15:56 +0100 Subject: [PATCH 279/296] Small wording changes for dump conversions --- Source/Core/DolphinQt/ConvertDialog.cpp | 2 +- Source/Core/DolphinTool/ConvertCommand.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/ConvertDialog.cpp b/Source/Core/DolphinQt/ConvertDialog.cpp index 1e9d5ef46d..ee6229938c 100644 --- a/Source/Core/DolphinQt/ConvertDialog.cpp +++ b/Source/Core/DolphinQt/ConvertDialog.cpp @@ -367,7 +367,7 @@ void ConvertDialog::Convert() if (m_files.size() > 1) { dst_dir = DolphinFileDialog::getExistingDirectory( - this, tr("Save Converted Image"), + this, tr("Save Converted Images"), QFileInfo(QString::fromStdString(m_files[0]->GetFilePath())).dir().absolutePath()); if (dst_dir.isEmpty()) diff --git a/Source/Core/DolphinTool/ConvertCommand.cpp b/Source/Core/DolphinTool/ConvertCommand.cpp index ed494ef2d8..863cd4b70b 100644 --- a/Source/Core/DolphinTool/ConvertCommand.cpp +++ b/Source/Core/DolphinTool/ConvertCommand.cpp @@ -260,7 +260,7 @@ int ConvertCommand(const std::vector& args) { if (!compression_o.has_value()) { - fmt::print(std::cerr, "Error: Compression format must be set for WIA or RVZ\n"); + fmt::print(std::cerr, "Error: Compression method must be set for WIA or RVZ\n"); return EXIT_FAILURE; } From 884a38f04da0ccd883845d061bef2a4d3808b587 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Mon, 12 Aug 2024 03:06:05 +0100 Subject: [PATCH 280/296] DolphinTool: print title IDs in hex --- Source/Core/DolphinTool/HeaderCommand.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinTool/HeaderCommand.cpp b/Source/Core/DolphinTool/HeaderCommand.cpp index 7ea194c686..3156c67b9b 100644 --- a/Source/Core/DolphinTool/HeaderCommand.cpp +++ b/Source/Core/DolphinTool/HeaderCommand.cpp @@ -92,7 +92,7 @@ int HeaderCommand(const std::vector& args) { json["internal_name"] = picojson::value(volume->GetInternalName()); - if (const std::optional revision = volume->GetRevision()) + if (const std::optional revision = volume->GetRevision()) json["revision"] = picojson::value((double)revision.value()); json["game_id"] = picojson::value(volume->GetGameID()); @@ -153,13 +153,13 @@ int HeaderCommand(const std::vector& args) { fmt::print(std::cout, "Internal Name: {}\n", volume->GetInternalName()); - if (const std::optional revision = volume->GetRevision()) + if (const std::optional revision = volume->GetRevision()) fmt::print(std::cout, "Revision: {}\n", revision.value()); fmt::print(std::cout, "Game ID: {}\n", volume->GetGameID()); if (const std::optional title_id = volume->GetTitleID()) - fmt::print(std::cout, "Title ID: {}\n", title_id.value()); + fmt::print(std::cout, "Title ID: {:016x}\n", title_id.value()); fmt::print(std::cout, "Region: {}\n", DiscIO::GetName(volume->GetRegion(), false)); From 30c58eba96925c04db69892dabc912ea3f7fb8ab Mon Sep 17 00:00:00 2001 From: JosJuice Date: Thu, 15 Aug 2024 19:05:29 +0200 Subject: [PATCH 281/296] MSBuild: Use SkipUnchangedFiles with Copy Just a bit of simplification. --- Source/Core/DolphinQt/DolphinQt.vcxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/DolphinQt.vcxproj b/Source/Core/DolphinQt/DolphinQt.vcxproj index 9dd72e3622..b023262a23 100644 --- a/Source/Core/DolphinQt/DolphinQt.vcxproj +++ b/Source/Core/DolphinQt/DolphinQt.vcxproj @@ -490,8 +490,8 @@ - - + + From a62f8eac1a4b6907d5e4a6ace9cf2b616aba67a1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Thu, 15 Aug 2024 19:18:16 +0200 Subject: [PATCH 282/296] DolphinQt: Delete output Sys folder before copying to it For a long time now, we've had a problem where game INIs persist in the copied Sys folder if they've been deleted from the original Sys folder. (I still have hundreds of game INIs locally that only set EmulationStateId, and we removed those game INIs 6 years ago. On the buildbot, we do occasionally clear out the build directories manually, so I'd assume it's not quite as bad there.) This commit fixes the problem by deleting the output Sys folder before copying the original Sys folder to the output Sys folder. This should be a bit slower, but in my testing, the difference seems small. At least if you have an SSD, which I really hope people have nowadays! Operating systems other than Windows have not been touched, because: * Android: Already explicitly deletes the output Sys folder. * macOS: Does some magic to put the Sys folder in the app bundle, which I will simply assume isn't affected by this problem, without testing. * Linux: Expects the person building to manually manage the Sys folder. --- Source/Core/DolphinQt/CMakeLists.txt | 1 + Source/Core/DolphinQt/DolphinQt.vcxproj | 1 + 2 files changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 44a59d5313..79e5cce207 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -462,6 +462,7 @@ if(WIN32) # Copy Sys dir add_custom_command(TARGET dolphin-emu POST_BUILD + COMMAND ${CMAKE_COMMAND} -E remove_directory "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys" COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/Data/Sys" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys" ) diff --git a/Source/Core/DolphinQt/DolphinQt.vcxproj b/Source/Core/DolphinQt/DolphinQt.vcxproj index b023262a23..7ee8cac6a5 100644 --- a/Source/Core/DolphinQt/DolphinQt.vcxproj +++ b/Source/Core/DolphinQt/DolphinQt.vcxproj @@ -490,6 +490,7 @@ + From f695a65aada93948639938fe3036168394b18c4f Mon Sep 17 00:00:00 2001 From: JosJuice Date: Thu, 15 Aug 2024 20:28:23 +0200 Subject: [PATCH 283/296] UnitTests: Delete output Sys folder before copying to it Like the previous commit, but for UnitTests. This time all operating systems were affected. I also made UnitTests.vcxproj use the same way of copying as DolphinQt.vcxproj, just for consistency. --- Source/UnitTests/CMakeLists.txt | 1 + Source/UnitTests/UnitTests.vcxproj | 13 +++++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Source/UnitTests/CMakeLists.txt b/Source/UnitTests/CMakeLists.txt index 96f26a8793..659d9e5b28 100644 --- a/Source/UnitTests/CMakeLists.txt +++ b/Source/UnitTests/CMakeLists.txt @@ -9,6 +9,7 @@ set_target_properties(tests PROPERTIES FOLDER Tests) target_link_libraries(tests PRIVATE fmt::fmt gtest::gtest core uicommon) add_test(NAME tests COMMAND tests) add_custom_command(TARGET tests POST_BUILD + COMMAND ${CMAKE_COMMAND} -E remove_directory "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys" COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/Data/Sys" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys" ) add_dependencies(unittests tests) diff --git a/Source/UnitTests/UnitTests.vcxproj b/Source/UnitTests/UnitTests.vcxproj index 229e5b576f..48b85bfdf3 100644 --- a/Source/UnitTests/UnitTests.vcxproj +++ b/Source/UnitTests/UnitTests.vcxproj @@ -24,9 +24,6 @@ Console - - xcopy /i /e /s /y /f "$(ProjectDir)\..\..\Data\Sys\" "$(TargetDir)Sys" - @@ -109,7 +106,15 @@ - + + + + + + + + + From 6ffd71ffaefeb39066694eca9c4ea2cbea2a8dfd Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Mon, 24 Jun 2024 00:05:46 -0700 Subject: [PATCH 284/296] BitUtils: Constexpr BitCastToArray, Remove BitCastFromArray `std::bit_cast` participates in overload resolution only if `sizeof(To) == sizeof(From)` and both `To` and `From` are *TriviallyCopyable* types, so the static assertions here can be removed. `[[nodiscard]]` was added as well. --- Source/Core/Common/BitUtils.h | 47 ++------------------- Source/Core/Core/HW/DSPHLE/UCodes/AX.h | 2 +- Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp | 4 +- 3 files changed, 7 insertions(+), 46 deletions(-) diff --git a/Source/Core/Common/BitUtils.h b/Source/Core/Common/BitUtils.h index b20baa20f2..8b1b196c24 100644 --- a/Source/Core/Common/BitUtils.h +++ b/Source/Core/Common/BitUtils.h @@ -4,6 +4,7 @@ #pragma once #include +#include #include #include #include @@ -166,50 +167,10 @@ inline auto BitCastPtr(PtrType* ptr) noexcept -> BitCastPtrType } // Similar to BitCastPtr, but specifically for aliasing structs to arrays. -template > -inline auto BitCastToArray(const T& obj) noexcept -> Container +template +[[nodiscard]] constexpr auto BitCastToArray(const From& obj) noexcept { - static_assert(sizeof(T) % sizeof(ArrayType) == 0, - "Size of array type must be a factor of size of source type."); - static_assert(std::is_trivially_copyable(), - "BitCastToArray source type must be trivially copyable."); - static_assert(std::is_trivially_copyable(), - "BitCastToArray array type must be trivially copyable."); - - Container result; - std::memcpy(result.data(), &obj, sizeof(T)); - return result; -} - -template > -inline void BitCastFromArray(const Container& array, T& obj) noexcept -{ - static_assert(sizeof(T) % sizeof(ArrayType) == 0, - "Size of array type must be a factor of size of destination type."); - static_assert(std::is_trivially_copyable(), - "BitCastFromArray array type must be trivially copyable."); - static_assert(std::is_trivially_copyable(), - "BitCastFromArray destination type must be trivially copyable."); - - std::memcpy(&obj, array.data(), sizeof(T)); -} - -template > -inline auto BitCastFromArray(const Container& array) noexcept -> T -{ - static_assert(sizeof(T) % sizeof(ArrayType) == 0, - "Size of array type must be a factor of size of destination type."); - static_assert(std::is_trivially_copyable(), - "BitCastFromArray array type must be trivially copyable."); - static_assert(std::is_trivially_copyable(), - "BitCastFromArray destination type must be trivially copyable."); - - T obj; - std::memcpy(&obj, array.data(), sizeof(T)); - return obj; + return std::bit_cast>(obj); } template diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AX.h b/Source/Core/Core/HW/DSPHLE/UCodes/AX.h index a4d8cb05f4..108a98e351 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/AX.h +++ b/Source/Core/Core/HW/DSPHLE/UCodes/AX.h @@ -143,7 +143,7 @@ protected: pb_mem[update_off] = update_val; } - Common::BitCastFromArray(pb_mem, pb); + pb = std::bit_cast(pb_mem); } virtual void HandleCommandList(); diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp index 36cd154f9b..53be74371d 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp @@ -397,7 +397,7 @@ bool AXWiiUCode::ExtractUpdatesFields(AXPBWii& pb, u16* num_updates, u16* update // Remove the updates data from the PB memmove(&pb_mem[41], &pb_mem[46], sizeof(pb) - 2 * 46); - Common::BitCastFromArray(pb_mem, pb); + pb = std::bit_cast(pb_mem); return true; } @@ -416,7 +416,7 @@ void AXWiiUCode::ReinjectUpdatesFields(AXPBWii& pb, u16* num_updates, u32 update pb_mem[44] = updates_addr >> 16; pb_mem[45] = updates_addr & 0xFFFF; - Common::BitCastFromArray(pb_mem, pb); + pb = std::bit_cast(pb_mem); } void AXWiiUCode::ProcessPBList(u32 pb_addr) From 9594ce871de32a7eef58d1a21295024e87cbebf1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 17 Aug 2024 12:10:05 +0200 Subject: [PATCH 285/296] UnitTests: Remove MSBuild input/output tracking Input/output tracking is intended to speed up incremental builds by skipping a target when it doesn't need to be built. However, this seems to be unreliable for UnitTests' AfterBuild target. Let's remove it. It's still the case that UnitTests' AfterBuild target will be skipped if UnitTests doesn't need to be rebuilt. (Note that UnitTests always needs to be rebuilt if SCMRevGen changed.) I haven't seen these problems with DolphinQt's rather similar input/output tracking. This may be because DolphinQt's one also has the exe file as an input/output. --- Source/UnitTests/UnitTests.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/UnitTests/UnitTests.vcxproj b/Source/UnitTests/UnitTests.vcxproj index 48b85bfdf3..45702ed7fd 100644 --- a/Source/UnitTests/UnitTests.vcxproj +++ b/Source/UnitTests/UnitTests.vcxproj @@ -109,7 +109,7 @@ - + From 20f4643c74278977a1d36c43a52895cbe709d227 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Wed, 14 Aug 2024 00:09:51 +0100 Subject: [PATCH 286/296] VideoCommon: force 32-byte alignment for display list address and size --- Source/Core/VideoCommon/OpcodeDecoding.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/OpcodeDecoding.h b/Source/Core/VideoCommon/OpcodeDecoding.h index 19c66716da..42991b7715 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.h +++ b/Source/Core/VideoCommon/OpcodeDecoding.h @@ -203,7 +203,8 @@ static DOLPHIN_FORCE_INLINE u32 RunCommand(const u8* data, u32 available, T& cal const u32 address = Common::swap32(&data[1]); const u32 size = Common::swap32(&data[5]); - callback.OnDisplayList(address, size); + // Force 32-byte alignment for both the address and the size. + callback.OnDisplayList(address & ~31, size & ~31); return 9; } From f358b67205aee5fba92314d7dee423b701810360 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Wed, 14 Aug 2024 00:17:44 +0100 Subject: [PATCH 287/296] GameSettings: remove patches for "Wallace & Gromit in Project Zoo" These patches were added in bde9a459cdd7a465cf9c9e275bd4562bb072ae7e and enabled by default in 36ecfdd6b597b0264625d06320a5308147bbc55b. They allowed the game to run in Dolphin but disabled dynamic shadows. The game adds 4 to the start address of otherwise valid display lists for no obvious reason. Now that Dolphin forces 32-byte alignment these patches are no longer needed. --- Data/Sys/ApprovedInis.json | 10 +--------- Data/Sys/GameSettings/GWLE6L.ini | 10 ---------- Data/Sys/GameSettings/GWLX6L.ini | 10 ---------- Source/Core/Core/AchievementManager.h | 4 ++-- 4 files changed, 3 insertions(+), 31 deletions(-) delete mode 100644 Data/Sys/GameSettings/GWLE6L.ini delete mode 100644 Data/Sys/GameSettings/GWLX6L.ini diff --git a/Data/Sys/ApprovedInis.json b/Data/Sys/ApprovedInis.json index 85c8f7a067..3cbf34d556 100644 --- a/Data/Sys/ApprovedInis.json +++ b/Data/Sys/ApprovedInis.json @@ -192,14 +192,6 @@ "title": "MVP Baseball 2004", "3159CA79B0A890131763EA6CB163684BEE886E3F": "Fix 2D Rendering" }, - "GWLE6L": { - "title": "Project Zoo", - "C9101E4C6800FEEF18136846D771273593C21890": "Bypass FIFO reset" - }, - "GWLX6L": { - "title": "Project Zoo", - "89C15ADC918F3A4399257534F326EB9F933AF040": "Bypass FIFO reset" - }, "GXXE01": { "title": "Pokémon XD: Gale of Darkness", "64FAA15062F0D0C319F904BBDE9C4489A25D6369": "Allow Memory Card saving with Savestates" @@ -320,4 +312,4 @@ "title": "Gormiti: The Lords of Nature!", "6F8CD59D897338CA90939149E1A62588620C6D88": "Fix black screen" } -} \ No newline at end of file +} diff --git a/Data/Sys/GameSettings/GWLE6L.ini b/Data/Sys/GameSettings/GWLE6L.ini deleted file mode 100644 index a6bf25f253..0000000000 --- a/Data/Sys/GameSettings/GWLE6L.ini +++ /dev/null @@ -1,10 +0,0 @@ -# GWLE6L - Project Zoo - -[OnFrame] -$Bypass FIFO reset -0x8028EF00:dword:0x48000638 -[OnFrame_Enabled] -$Bypass FIFO reset - -[Patches_RetroAchievements_Verified] -$Bypass FIFO reset diff --git a/Data/Sys/GameSettings/GWLX6L.ini b/Data/Sys/GameSettings/GWLX6L.ini deleted file mode 100644 index bee1e2290b..0000000000 --- a/Data/Sys/GameSettings/GWLX6L.ini +++ /dev/null @@ -1,10 +0,0 @@ -# GWLX6L - Project Zoo - -[OnFrame] -$Bypass FIFO reset -0x8028EE80:dword:0x48000638 -[OnFrame_Enabled] -$Bypass FIFO reset - -[Patches_RetroAchievements_Verified] -$Bypass FIFO reset diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 6bc9e74a7a..13f2a9a14e 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -70,8 +70,8 @@ public: static constexpr std::string_view BLUE = "#0B71C1"; static constexpr std::string_view APPROVED_LIST_FILENAME = "ApprovedInis.json"; static const inline Common::SHA1::Digest APPROVED_LIST_HASH = { - 0x01, 0x1E, 0x2E, 0x74, 0xDD, 0x07, 0x79, 0xDA, 0x0E, 0x5D, - 0xF8, 0x51, 0x09, 0xC7, 0x9B, 0x46, 0x22, 0x95, 0x50, 0xE9}; + 0x50, 0x2F, 0x58, 0x02, 0x94, 0x60, 0x1B, 0x9F, 0x92, 0xC7, + 0x04, 0x17, 0x50, 0x2E, 0xF3, 0x09, 0x8C, 0x8C, 0xD6, 0xC0}; struct LeaderboardEntry { From 307c8c273e01a564cc7e9f0bac6e6c2b7333d8f4 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sat, 17 Aug 2024 22:09:12 -0700 Subject: [PATCH 288/296] Fix postprocessing shader not changing when setting stereo mode Fixes https://bugs.dolphin-emu.org/issues/13593. Before, it would attempt to use the old shader, which did not exist for the new stereo mode. Changing the postprocessing shader afterwards would work properly, although passive 3D only has one option, so it was just broken without restarting Dolphin. This also fixes the UI not updating when using one of the stereo toggle hotkeys. --- .../Config/Graphics/EnhancementsWidget.cpp | 40 ++++++++++++++----- .../Config/Graphics/EnhancementsWidget.h | 3 +- 2 files changed, 32 insertions(+), 11 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp index 9e2866a70b..f70b01ef6a 100644 --- a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp @@ -241,7 +241,7 @@ void EnhancementsWidget::ConnectWidgets() connect(m_3d_mode, &QComboBox::currentIndexChanged, [this] { m_block_save = true; m_configure_color_correction->setEnabled(g_Config.backend_info.bSupportsPostProcessing); - LoadPPShaders(); + LoadPPShaders(static_cast(m_3d_mode->currentIndex())); m_block_save = false; SaveSettings(); @@ -250,23 +250,30 @@ void EnhancementsWidget::ConnectWidgets() &EnhancementsWidget::ConfigureColorCorrection); connect(m_configure_pp_effect, &QPushButton::clicked, this, &EnhancementsWidget::ConfigurePostProcessingShader); + + connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] { + const QSignalBlocker blocker(this); + m_block_save = true; + LoadPPShaders(Config::Get(Config::GFX_STEREO_MODE)); + m_block_save = false; + }); } -void EnhancementsWidget::LoadPPShaders() +void EnhancementsWidget::LoadPPShaders(StereoMode stereo_mode) { std::vector shaders = VideoCommon::PostProcessing::GetShaderList(); - if (g_Config.stereo_mode == StereoMode::Anaglyph) + if (stereo_mode == StereoMode::Anaglyph) { shaders = VideoCommon::PostProcessing::GetAnaglyphShaderList(); } - else if (g_Config.stereo_mode == StereoMode::Passive) + else if (stereo_mode == StereoMode::Passive) { shaders = VideoCommon::PostProcessing::GetPassiveShaderList(); } m_pp_effect->clear(); - if (g_Config.stereo_mode != StereoMode::Anaglyph && g_Config.stereo_mode != StereoMode::Passive) + if (stereo_mode != StereoMode::Anaglyph && stereo_mode != StereoMode::Passive) m_pp_effect->addItem(tr("(off)")); auto selected_shader = Config::Get(Config::GFX_ENHANCE_POST_SHADER); @@ -283,10 +290,23 @@ void EnhancementsWidget::LoadPPShaders() } } - if (g_Config.stereo_mode == StereoMode::Anaglyph && !found) - m_pp_effect->setCurrentIndex(m_pp_effect->findText(QStringLiteral("dubois"))); - else if (g_Config.stereo_mode == StereoMode::Passive && !found) - m_pp_effect->setCurrentIndex(m_pp_effect->findText(QStringLiteral("horizontal"))); + if (!found) + { + if (stereo_mode == StereoMode::Anaglyph) + selected_shader = "dubois"; + else if (stereo_mode == StereoMode::Passive) + selected_shader = "horizontal"; + else + selected_shader = ""; + + int index = m_pp_effect->findText(QString::fromStdString(selected_shader)); + if (index >= 0) + m_pp_effect->setCurrentIndex(index); + else + m_pp_effect->setCurrentIndex(0); + + Config::SetBaseOrCurrent(Config::GFX_ENHANCE_POST_SHADER, selected_shader); + } const bool supports_postprocessing = g_Config.backend_info.bSupportsPostProcessing; m_pp_effect->setEnabled(supports_postprocessing); @@ -381,7 +401,7 @@ void EnhancementsWidget::LoadSettings() m_configure_color_correction->setEnabled(g_Config.backend_info.bSupportsPostProcessing); // Post Processing Shader - LoadPPShaders(); + LoadPPShaders(Config::Get(Config::GFX_STEREO_MODE)); // Stereoscopy const bool supports_stereoscopy = g_Config.backend_info.bSupportsGeometryShaders; diff --git a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.h b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.h index 34879d17b7..7c4c193fb4 100644 --- a/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.h +++ b/Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.h @@ -17,6 +17,7 @@ class QPushButton; class QSlider; class ToolTipComboBox; class ToolTipPushButton; +enum class StereoMode : int; class EnhancementsWidget final : public QWidget { @@ -33,7 +34,7 @@ private: void AddDescriptions(); void ConfigureColorCorrection(); void ConfigurePostProcessingShader(); - void LoadPPShaders(); + void LoadPPShaders(StereoMode stereo_mode); // Enhancements ConfigChoice* m_ir_combo; From 0b33d293ee61b68198bccc818273275195ab33e5 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 4 Aug 2024 20:22:09 +0200 Subject: [PATCH 289/296] DolphinQt: Simplify the Speed Limit description The description of the Speed Limit setting currently uses a lot of complicated terms, like "emulated time" (known to many Dolphin developers, but in my experience not known by even advanced emulator users) and "maximum time scale" (I have never heard it before). The meaning of "sustainable" is also unclear in context. This commit rewords the description to be easier to understand. --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index df56d27e50..06715ceb65 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -400,13 +400,12 @@ void GeneralPane::AddDescriptions() "

This setting cannot be changed while emulation is active." "

If unsure, leave this checked."); #endif - static constexpr char TR_SPEEDLIMIT_DESCRIPTION[] = QT_TR_NOOP( - "Sets the maximum time scale of emulation. Values higher than 100% will accelerate emulated " - "time by processing faster than the original hardware, while values lower than 100% will " - "slow emulated time. Unlimited will emulate as fast as your host hardware can run." - "

Higher speeds are proportionally more costly to emulate. Depending on the title, " - "your settings, and your host hardware, some of these values may not be sustainable." - "

If unsure, select 100%."); + static constexpr char TR_SPEEDLIMIT_DESCRIPTION[] = + QT_TR_NOOP("Controls how fast emulation runs relative to the original hardware." + "

Values higher than 100% will emulate faster than the original hardware " + "can run, if your hardware is able to keep up. Values lower than 100% will slow " + "emulation instead. Unlimited will emulate as fast as your hardware is able to." + "

If unsure, select 100%."); static constexpr char TR_UPDATE_TRACK_DESCRIPTION[] = QT_TR_NOOP( "Selects which update track Dolphin uses when checking for updates at startup. If a new " "update is available, Dolphin will show a list of changes made since your current version " From db9b3592e1c21baffbc14c95ecf9272dfb2c71be Mon Sep 17 00:00:00 2001 From: NivekH Date: Sat, 20 Jul 2024 00:11:08 -0400 Subject: [PATCH 290/296] Add instructive text to disabled RetroAchievements login button Changes the RetroAchievements "Log In" button's text to "To log in, stop the current emulation." when the button is disabled because an emulation session is active. This allows a user to understand why the button is disabled, and how this state can be resolved. Previously, it could be unclear why this button was disabled without an understanding of the underlying system. Co-Authored-By: JosJuice --- .../DolphinQt/Achievements/AchievementSettingsWidget.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index df8456318c..175d9b2f0e 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -178,6 +178,15 @@ void AchievementSettingsWidget::LoadSettings() SignalBlocking(m_common_login_button)->setVisible(logged_out); SignalBlocking(m_common_login_button) ->setEnabled(enabled && !Core::IsRunning(Core::System::GetInstance())); + if (enabled && Core::IsRunning(Core::System::GetInstance())) + { + SignalBlocking(m_common_login_button)->setText(tr("To log in, stop the current emulation.")); + } + else + { + SignalBlocking(m_common_login_button)->setText(tr("Log In")); + } + SignalBlocking(m_common_logout_button)->setVisible(!logged_out); SignalBlocking(m_common_logout_button)->setEnabled(enabled); From 9602f36248edec803275128a0a327e3355f9472d Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sun, 18 Aug 2024 15:08:44 +0200 Subject: [PATCH 291/296] Remove redundant semicolons --- Source/Core/Common/BitField.h | 4 ++-- Source/Core/Common/CompatPatches.cpp | 2 +- Source/Core/Common/Debug/Threads.h | 2 +- Source/Core/Common/LdrWatcher.cpp | 2 +- Source/Core/Common/Profiler.h | 2 +- Source/Core/Common/StringUtil.h | 2 +- Source/Core/Common/WindowsRegistry.cpp | 2 +- Source/Core/Common/WindowsRegistry.h | 2 +- Source/Core/Core/AchievementManager.h | 2 +- Source/Core/Core/ActionReplay.h | 2 +- Source/Core/Core/Boot/DolReader.h | 2 +- Source/Core/Core/CPUThreadConfigCallback.cpp | 4 ++-- Source/Core/Core/CPUThreadConfigCallback.h | 2 +- Source/Core/Core/CheatSearch.h | 2 +- Source/Core/Core/Debugger/BranchWatch.h | 2 +- Source/Core/Core/Debugger/OSThread.h | 2 +- Source/Core/Core/Debugger/RSO.h | 2 +- Source/Core/Core/GeckoCode.h | 2 +- Source/Core/Core/HLE/HLE_Misc.h | 2 +- Source/Core/Core/HLE/HLE_OS.h | 2 +- Source/Core/Core/HW/AddressSpace.cpp | 2 +- Source/Core/Core/HW/Sram.h | 2 +- .../Core/Core/HW/WiimoteEmu/Extension/Classic.h | 4 ++-- Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp | 2 +- Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp | 4 ++-- .../CachedInterpreterBlockCache.h | 2 +- .../CachedInterpreter/CachedInterpreterEmitter.h | 6 +++--- Source/Core/Core/PowerPC/MMU.h | 4 ++-- Source/Core/Core/System.h | 16 ++++++++-------- Source/Core/DiscIO/CompressedBlob.cpp | 2 +- Source/Core/DiscIO/RiivolutionParser.cpp | 2 +- Source/Core/DiscIO/WIABlob.cpp | 10 +++++----- Source/Core/DiscIO/WIACompression.h | 2 +- Source/Core/DolphinQt/Debugger/WatchWidget.h | 2 +- Source/Core/DolphinQt/GCMemcardManager.cpp | 2 +- .../InfinityBase/InfinityBaseWindow.cpp | 2 +- Source/Core/DolphinQt/MenuBar.h | 2 +- .../SkylanderPortal/SkylanderPortalWindow.cpp | 2 +- .../ControlReference/ExpressionParser.cpp | 2 +- .../Core/InputCommon/ControllerEmu/StickGate.h | 2 +- .../InputCommon/ControllerInterface/SDL/SDL.cpp | 8 +++++--- Source/Core/VideoBackends/D3D/D3DBoundingBox.cpp | 2 +- .../VideoBackends/D3D12/D3D12BoundingBox.cpp | 2 +- Source/Core/VideoCommon/BPFunctions.cpp | 2 +- Source/Core/VideoCommon/OnScreenDisplay.h | 4 ++-- Source/Core/VideoCommon/VertexLoaderManager.h | 2 +- Source/Core/VideoCommon/VertexManagerBase.h | 2 +- Source/Core/WinUpdater/WinUI.cpp | 4 ++-- 48 files changed, 72 insertions(+), 70 deletions(-) diff --git a/Source/Core/Common/BitField.h b/Source/Core/Common/BitField.h index 68c0577fb2..bbd40f5414 100644 --- a/Source/Core/Common/BitField.h +++ b/Source/Core/Common/BitField.h @@ -312,7 +312,7 @@ class BitFieldArrayConstRef friend class BitFieldArrayConstIterator; public: - constexpr T Value() const { return m_array->Value(m_index); }; + constexpr T Value() const { return m_array->Value(m_index); } constexpr operator T() const { return Value(); } private: @@ -333,7 +333,7 @@ class BitFieldArrayRef friend class BitFieldArrayIterator; public: - constexpr T Value() const { return m_array->Value(m_index); }; + constexpr T Value() const { return m_array->Value(m_index); } constexpr operator T() const { return Value(); } T operator=(const BitFieldArrayRef& value) const { diff --git a/Source/Core/Common/CompatPatches.cpp b/Source/Core/Common/CompatPatches.cpp index 5b99658665..aeb509f4ab 100644 --- a/Source/Core/Common/CompatPatches.cpp +++ b/Source/Core/Common/CompatPatches.cpp @@ -261,4 +261,4 @@ int __cdecl EnableCompatPatches() extern "C" { __declspec(allocate(".CRT$XCZ")) decltype(&EnableCompatPatches) enableCompatPatches = EnableCompatPatches; -}; +} diff --git a/Source/Core/Common/Debug/Threads.h b/Source/Core/Common/Debug/Threads.h index e9aef96d26..ce50e945c1 100644 --- a/Source/Core/Common/Debug/Threads.h +++ b/Source/Core/Common/Debug/Threads.h @@ -14,7 +14,7 @@ namespace Core { class CPUThreadGuard; -}; +} namespace Common::Debug { diff --git a/Source/Core/Common/LdrWatcher.cpp b/Source/Core/Common/LdrWatcher.cpp index 4e3fb88ba5..a0db0b61c6 100644 --- a/Source/Core/Common/LdrWatcher.cpp +++ b/Source/Core/Common/LdrWatcher.cpp @@ -78,7 +78,7 @@ public: { static LdrDllNotifier notifier; return notifier; - }; + } void Install(LdrObserver* observer); void Uninstall(LdrObserver* observer); diff --git a/Source/Core/Common/Profiler.h b/Source/Core/Common/Profiler.h index 753c06fd38..b0255b1ce7 100644 --- a/Source/Core/Common/Profiler.h +++ b/Source/Core/Common/Profiler.h @@ -54,7 +54,7 @@ public: private: Profiler* m_p; }; -}; // namespace Common +} // namespace Common // Warning: This profiler isn't thread safe. Only profile functions which doesn't run simultaneously #define PROFILE(name) \ diff --git a/Source/Core/Common/StringUtil.h b/Source/Core/Common/StringUtil.h index 1699d9fa2f..c1eaf94ad4 100644 --- a/Source/Core/Common/StringUtil.h +++ b/Source/Core/Common/StringUtil.h @@ -195,7 +195,7 @@ std::from_chars_result FromChars(std::string_view sv, T& value, const char* const last = first + sv.size(); return std::from_chars(first, last, value, fmt); } -}; // namespace Common +} // namespace Common std::string TabsToSpaces(int tab_size, std::string str); diff --git a/Source/Core/Common/WindowsRegistry.cpp b/Source/Core/Common/WindowsRegistry.cpp index 4b6f1f2c24..2eb1ae9b9c 100644 --- a/Source/Core/Common/WindowsRegistry.cpp +++ b/Source/Core/Common/WindowsRegistry.cpp @@ -69,4 +69,4 @@ OSVERSIONINFOW GetOSVersion() } return info; } -}; // namespace WindowsRegistry +} // namespace WindowsRegistry diff --git a/Source/Core/Common/WindowsRegistry.h b/Source/Core/Common/WindowsRegistry.h index 8a4705e7fe..ef789a98ca 100644 --- a/Source/Core/Common/WindowsRegistry.h +++ b/Source/Core/Common/WindowsRegistry.h @@ -15,4 +15,4 @@ template <> bool ReadValue(std::string* value, const std::string& subkey, const std::string& name); OSVERSIONINFOW GetOSVersion(); -}; // namespace WindowsRegistry +} // namespace WindowsRegistry diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 13f2a9a14e..2ec4a6dea7 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -170,7 +170,7 @@ private: void FetchBoardInfo(AchievementId leaderboard_id); - std::unique_ptr& GetLoadingVolume() { return m_loading_volume; }; + std::unique_ptr& GetLoadingVolume() { return m_loading_volume; } static void LoadGameCallback(int result, const char* error_message, rc_client_t* client, void* userdata); diff --git a/Source/Core/Core/ActionReplay.h b/Source/Core/Core/ActionReplay.h index 3b05c1117c..ee2cb8b485 100644 --- a/Source/Core/Core/ActionReplay.h +++ b/Source/Core/Core/ActionReplay.h @@ -18,7 +18,7 @@ class IniFile; namespace Core { class CPUThreadGuard; -}; +} namespace ActionReplay { diff --git a/Source/Core/Core/Boot/DolReader.h b/Source/Core/Core/Boot/DolReader.h index 807f13432b..0c04d67b5d 100644 --- a/Source/Core/Core/Boot/DolReader.h +++ b/Source/Core/Core/Boot/DolReader.h @@ -24,7 +24,7 @@ public: bool IsValid() const override { return m_is_valid; } bool IsWii() const override { return m_is_wii; } - bool IsAncast() const { return m_is_ancast; }; + bool IsAncast() const { return m_is_ancast; } u32 GetEntryPoint() const override { return m_dolheader.entryPoint; } bool LoadIntoMemory(Core::System& system, bool only_in_mem1 = false) const override; bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const override diff --git a/Source/Core/Core/CPUThreadConfigCallback.cpp b/Source/Core/Core/CPUThreadConfigCallback.cpp index 4919d5b9b5..44f9997d6e 100644 --- a/Source/Core/Core/CPUThreadConfigCallback.cpp +++ b/Source/Core/Core/CPUThreadConfigCallback.cpp @@ -38,7 +38,7 @@ void OnConfigChanged() } } -}; // namespace +} // namespace namespace CPUThreadConfigCallback { @@ -73,4 +73,4 @@ void CheckForConfigChanges() RunCallbacks(); } -}; // namespace CPUThreadConfigCallback +} // namespace CPUThreadConfigCallback diff --git a/Source/Core/Core/CPUThreadConfigCallback.h b/Source/Core/Core/CPUThreadConfigCallback.h index 404e522809..02df9583a5 100644 --- a/Source/Core/Core/CPUThreadConfigCallback.h +++ b/Source/Core/Core/CPUThreadConfigCallback.h @@ -27,4 +27,4 @@ void RemoveConfigChangedCallback(ConfigChangedCallbackID callback_id); // Should be called regularly from the CPU thread void CheckForConfigChanges(); -}; // namespace CPUThreadConfigCallback +} // namespace CPUThreadConfigCallback diff --git a/Source/Core/Core/CheatSearch.h b/Source/Core/Core/CheatSearch.h index d5c990186f..bd3c6f3598 100644 --- a/Source/Core/Core/CheatSearch.h +++ b/Source/Core/Core/CheatSearch.h @@ -17,7 +17,7 @@ namespace Core { class CPUThreadGuard; -}; +} namespace Cheats { diff --git a/Source/Core/Core/Debugger/BranchWatch.h b/Source/Core/Core/Debugger/BranchWatch.h index f3d81854c6..fd4cd158ea 100644 --- a/Source/Core/Core/Debugger/BranchWatch.h +++ b/Source/Core/Core/Debugger/BranchWatch.h @@ -142,7 +142,7 @@ public: m_collection_pf.size(); } std::size_t GetBlacklistSize() const { return m_blacklist_size; } - Phase GetRecordingPhase() const { return m_recording_phase; }; + Phase GetRecordingPhase() const { return m_recording_phase; } // An empty selection in reduction mode can't be reconstructed when loading from a file. bool CanSave() const { return !(m_recording_phase == Phase::Reduction && m_selection.empty()); } diff --git a/Source/Core/Core/Debugger/OSThread.h b/Source/Core/Core/Debugger/OSThread.h index 309df3eb52..1302b7838c 100644 --- a/Source/Core/Core/Debugger/OSThread.h +++ b/Source/Core/Core/Debugger/OSThread.h @@ -13,7 +13,7 @@ namespace Core { class CPUThreadGuard; -}; +} namespace Core::Debug { diff --git a/Source/Core/Core/Debugger/RSO.h b/Source/Core/Core/Debugger/RSO.h index b1e0ac0a98..6bc1d977a5 100644 --- a/Source/Core/Core/Debugger/RSO.h +++ b/Source/Core/Core/Debugger/RSO.h @@ -16,7 +16,7 @@ class PPCSymbolDB; namespace Core { class CPUThreadGuard; -}; +} struct RSOEntry { diff --git a/Source/Core/Core/GeckoCode.h b/Source/Core/Core/GeckoCode.h index fe8b391874..ab93e4ffc9 100644 --- a/Source/Core/Core/GeckoCode.h +++ b/Source/Core/Core/GeckoCode.h @@ -14,7 +14,7 @@ class PointerWrap; namespace Core { class CPUThreadGuard; -}; +} namespace Gecko { diff --git a/Source/Core/Core/HLE/HLE_Misc.h b/Source/Core/Core/HLE/HLE_Misc.h index 68e8a74632..787d5166e0 100644 --- a/Source/Core/Core/HLE/HLE_Misc.h +++ b/Source/Core/Core/HLE/HLE_Misc.h @@ -6,7 +6,7 @@ namespace Core { class CPUThreadGuard; -}; +} namespace HLE_Misc { diff --git a/Source/Core/Core/HLE/HLE_OS.h b/Source/Core/Core/HLE/HLE_OS.h index e53053f923..4f7bcb8ed7 100644 --- a/Source/Core/Core/HLE/HLE_OS.h +++ b/Source/Core/Core/HLE/HLE_OS.h @@ -11,7 +11,7 @@ namespace Core { class CPUThreadGuard; -}; +} namespace HLE_OS { diff --git a/Source/Core/Core/HW/AddressSpace.cpp b/Source/Core/Core/HW/AddressSpace.cpp index 09f006726f..e9fc552d4d 100644 --- a/Source/Core/Core/HW/AddressSpace.cpp +++ b/Source/Core/Core/HW/AddressSpace.cpp @@ -120,7 +120,7 @@ struct EffectiveAddressSpaceAccessors : Accessors float ReadF32(const Core::CPUThreadGuard& guard, u32 address) const override { return PowerPC::MMU::HostRead_F32(guard, address); - }; + } bool Matches(const Core::CPUThreadGuard& guard, u32 haystack_start, const u8* needle_start, std::size_t needle_size) const diff --git a/Source/Core/Core/HW/Sram.h b/Source/Core/Core/HW/Sram.h index db8d96b7dc..ff0aee3269 100644 --- a/Source/Core/Core/HW/Sram.h +++ b/Source/Core/Core/HW/Sram.h @@ -42,7 +42,7 @@ distribution. namespace ExpansionInterface { enum class Slot : int; -}; +} using CardFlashId = std::array; diff --git a/Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h b/Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h index 0b71de80fb..02781ac8ee 100644 --- a/Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h +++ b/Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h @@ -72,7 +72,7 @@ public: using TriggerRawValue = ControllerEmu::RawValue; // 6-bit X and Y values (0-63) - auto GetLeftStick() const { return LeftStickRawValue{StickType(lx, ly)}; }; + auto GetLeftStick() const { return LeftStickRawValue{StickType(lx, ly)}; } void SetLeftStick(const StickType& value) { lx = value.x; @@ -82,7 +82,7 @@ public: auto GetRightStick() const { return RightStickRawValue{StickType(rx1 | rx2 << 1 | rx3 << 3, ry)}; - }; + } void SetRightStick(const StickType& value) { rx1 = value.x & 0b1; diff --git a/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp b/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp index 6bbab12dd1..ad5e899c1e 100644 --- a/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/MotionPlus.cpp @@ -30,7 +30,7 @@ struct MPI : mbedtls_mpi MPI() { mbedtls_mpi_init(this); } ~MPI() { mbedtls_mpi_free(this); } - mbedtls_mpi* Data() { return this; }; + mbedtls_mpi* Data() { return this; } template bool ReadBinary(const u8 (&in_data)[N]) diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp index 8e1b8b64b3..b0be6bc249 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp @@ -890,7 +890,7 @@ bool BluetoothEmuDevice::SendEventLinkKeyNotification(const u8 num_to_send) AddEventToQueue(event); return true; -}; +} bool BluetoothEmuDevice::SendEventRequestLinkKey(const bdaddr_t& bd) { @@ -911,7 +911,7 @@ bool BluetoothEmuDevice::SendEventRequestLinkKey(const bdaddr_t& bd) AddEventToQueue(event); return true; -}; +} bool BluetoothEmuDevice::SendEventReadClockOffsetComplete(u16 connection_handle) { diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h index 2e06bafb41..5b34a9cfc9 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterBlockCache.h @@ -25,7 +25,7 @@ public: const std::vector>& GetRangesToFree() const { return m_ranges_to_free_on_next_codegen; - }; + } private: void WriteLinkBlock(const JitBlock::LinkData& source, const JitBlock* dest) override; diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h index 7c2ee24632..db1a22c413 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreterEmitter.h @@ -49,8 +49,8 @@ public: const u8* GetCodePtr() const { return m_code; } u8* GetWritableCodePtr() { return m_code; } - const u8* GetCodeEnd() const { return m_code_end; }; - u8* GetWritableCodeEnd() { return m_code_end; }; + const u8* GetCodeEnd() const { return m_code_end; } + u8* GetWritableCodeEnd() { return m_code_end; } // Should be checked after a block of code has been generated to see if the code has been // successfully written to memory. Do not call the generated code when this returns true! bool HasWriteFailed() const { return m_write_failed; } @@ -60,7 +60,7 @@ public: m_code = begin; m_code_end = end; m_write_failed = false; - }; + } static s32 PoisonCallback(PowerPC::PowerPCState& ppc_state, const void* operands); diff --git a/Source/Core/Core/PowerPC/MMU.h b/Source/Core/Core/PowerPC/MMU.h index faf6776389..a26fd7f66c 100644 --- a/Source/Core/Core/PowerPC/MMU.h +++ b/Source/Core/Core/PowerPC/MMU.h @@ -15,11 +15,11 @@ namespace Core { class CPUThreadGuard; class System; -}; // namespace Core +} // namespace Core namespace Memory { class MemoryManager; -}; +} namespace PowerPC { diff --git a/Source/Core/Core/System.h b/Source/Core/Core/System.h index a1422ac84d..9ec8391ff0 100644 --- a/Source/Core/Core/System.h +++ b/Source/Core/Core/System.h @@ -17,7 +17,7 @@ class XFStateManager; namespace AudioInterface { class AudioInterfaceManager; -}; +} namespace CPU { class CPUManager; @@ -42,7 +42,7 @@ class DVDThread; namespace ExpansionInterface { class ExpansionInterfaceManager; -}; +} namespace Fifo { class FifoManager; @@ -69,15 +69,15 @@ namespace IOS::HLE::USB { class SkylanderPortal; class InfinityBase; -}; // namespace IOS::HLE::USB +} // namespace IOS::HLE::USB namespace Memory { class MemoryManager; -}; +} namespace MemoryInterface { class MemoryInterfaceManager; -}; +} namespace Movie { class MovieManager; @@ -85,7 +85,7 @@ class MovieManager; namespace PixelEngine { class PixelEngineManager; -}; +} namespace PowerPC { class MMU; @@ -100,7 +100,7 @@ class ProcessorInterfaceManager; namespace SerialInterface { class SerialInterfaceManager; -}; +} namespace SystemTimers { class SystemTimersManager; @@ -112,7 +112,7 @@ class CustomAssetLoader; namespace VideoInterface { class VideoInterfaceManager; -}; +} namespace Core { diff --git a/Source/Core/DiscIO/CompressedBlob.cpp b/Source/Core/DiscIO/CompressedBlob.cpp index 629cedfe7c..ce1e210b77 100644 --- a/Source/Core/DiscIO/CompressedBlob.cpp +++ b/Source/Core/DiscIO/CompressedBlob.cpp @@ -272,7 +272,7 @@ static ConversionResultCode Output(OutputParameters parameters, File::IOFile* ou } return ConversionResultCode::Success; -}; +} bool ConvertToGCZ(BlobReader* infile, const std::string& infile_path, const std::string& outfile_path, u32 sub_type, int block_size, diff --git a/Source/Core/DiscIO/RiivolutionParser.cpp b/Source/Core/DiscIO/RiivolutionParser.cpp index 656cd20697..f120335f56 100644 --- a/Source/Core/DiscIO/RiivolutionParser.cpp +++ b/Source/Core/DiscIO/RiivolutionParser.cpp @@ -67,7 +67,7 @@ static std::vector ReadHexString(std::string_view sv) sv = sv.substr(2); } return result; -}; +} std::optional ParseString(std::string_view xml, std::string xml_path) { diff --git a/Source/Core/DiscIO/WIABlob.cpp b/Source/Core/DiscIO/WIABlob.cpp index a9496fe5a0..92bab36d81 100644 --- a/Source/Core/DiscIO/WIABlob.cpp +++ b/Source/Core/DiscIO/WIABlob.cpp @@ -1120,27 +1120,27 @@ bool WIARVZFileReader::TryReuse(std::map* reusable_gro static bool AllAre(const std::vector& data, u8 x) { return std::all_of(data.begin(), data.end(), [x](u8 y) { return x == y; }); -}; +} static bool AllAre(const u8* begin, const u8* end, u8 x) { return std::all_of(begin, end, [x](u8 y) { return x == y; }); -}; +} static bool AllZero(const std::vector& data) { return AllAre(data, 0); -}; +} static bool AllSame(const std::vector& data) { return AllAre(data, data.front()); -}; +} static bool AllSame(const u8* begin, const u8* end) { return AllAre(begin, end, *begin); -}; +} template static void RVZPack(const u8* in, OutputParametersEntry* out, u64 bytes_per_chunk, size_t chunks, diff --git a/Source/Core/DiscIO/WIACompression.h b/Source/Core/DiscIO/WIACompression.h index d3d5cb34d7..42f4a7fa19 100644 --- a/Source/Core/DiscIO/WIACompression.h +++ b/Source/Core/DiscIO/WIACompression.h @@ -38,7 +38,7 @@ public: virtual bool Decompress(const DecompressionBuffer& in, DecompressionBuffer* out, size_t* in_bytes_read) = 0; - virtual bool Done() const { return m_done; }; + virtual bool Done() const { return m_done; } protected: bool m_done = false; diff --git a/Source/Core/DolphinQt/Debugger/WatchWidget.h b/Source/Core/DolphinQt/Debugger/WatchWidget.h index 62e5c7b42a..a3256ecd94 100644 --- a/Source/Core/DolphinQt/Debugger/WatchWidget.h +++ b/Source/Core/DolphinQt/Debugger/WatchWidget.h @@ -18,7 +18,7 @@ namespace Core { class CPUThreadGuard; class System; -}; // namespace Core +} // namespace Core class WatchWidget : public QDockWidget { diff --git a/Source/Core/DolphinQt/GCMemcardManager.cpp b/Source/Core/DolphinQt/GCMemcardManager.cpp index 2bdca764ab..a3d19b5d57 100644 --- a/Source/Core/DolphinQt/GCMemcardManager.cpp +++ b/Source/Core/DolphinQt/GCMemcardManager.cpp @@ -65,7 +65,7 @@ Slot OtherSlot(Slot slot) { return slot == Slot::A ? Slot::B : Slot::A; } -}; // namespace +} // namespace struct GCMemcardManager::IconAnimationData { diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index aaf8af80e1..7503676673 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -50,7 +50,7 @@ InfinityBaseWindow::InfinityBaseWindow(QWidget* parent) : QWidget(parent) installEventFilter(this); OnEmulationStateChanged(Core::GetState(Core::System::GetInstance())); -}; +} InfinityBaseWindow::~InfinityBaseWindow() = default; diff --git a/Source/Core/DolphinQt/MenuBar.h b/Source/Core/DolphinQt/MenuBar.h index b6620291d2..91c2bfb766 100644 --- a/Source/Core/DolphinQt/MenuBar.h +++ b/Source/Core/DolphinQt/MenuBar.h @@ -24,7 +24,7 @@ enum class State; namespace DiscIO { enum class Region; -}; +} namespace UICommon { diff --git a/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp b/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp index f8b29a5674..613e4cb787 100644 --- a/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp +++ b/Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp @@ -81,7 +81,7 @@ SkylanderPortalWindow::SkylanderPortalWindow(QWidget* parent) : QWidget(parent) m_collection_path = QDir::toNativeSeparators(skylanders_folder.path()) + QDir::separator(); m_last_skylander_path = m_collection_path; m_path_edit->setText(m_collection_path); -}; +} SkylanderPortalWindow::~SkylanderPortalWindow() = default; diff --git a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp index 2e2adab6c0..b558d6b78f 100644 --- a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp +++ b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp @@ -283,7 +283,7 @@ public: m_output = env.FindOutput(m_qualifier); } - Device::Input* GetInput() const { return m_input; }; + Device::Input* GetInput() const { return m_input; } private: // Keep a shared_ptr to the device so the control pointer doesn't become invalid. diff --git a/Source/Core/InputCommon/ControllerEmu/StickGate.h b/Source/Core/InputCommon/ControllerEmu/StickGate.h index c618a0a4b4..000ca993f7 100644 --- a/Source/Core/InputCommon/ControllerEmu/StickGate.h +++ b/Source/Core/InputCommon/ControllerEmu/StickGate.h @@ -87,7 +87,7 @@ public: ControlState GetDeadzonePercentage() const; - virtual ControlState GetVirtualNotchSize() const { return 0.0; }; + virtual ControlState GetVirtualNotchSize() const { return 0.0; } virtual ControlState GetGateRadiusAtAngle(double angle) const = 0; virtual ReshapeData GetReshapableState(bool adjusted) const = 0; diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index feb1f8f4ce..0dfcd51281 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -244,10 +244,12 @@ private: public: MotionInput(std::string name, SDL_GameController* gc, SDL_SensorType type, int index, ControlState scale) - : m_name(std::move(name)), m_gc(gc), m_type(type), m_index(index), m_scale(scale){}; + : m_name(std::move(name)), m_gc(gc), m_type(type), m_index(index), m_scale(scale) + { + } - std::string GetName() const override { return m_name; }; - bool IsDetectable() const override { return false; }; + std::string GetName() const override { return m_name; } + bool IsDetectable() const override { return false; } ControlState GetState() const override; private: diff --git a/Source/Core/VideoBackends/D3D/D3DBoundingBox.cpp b/Source/Core/VideoBackends/D3D/D3DBoundingBox.cpp index 8cab19ac95..b972b9dd6f 100644 --- a/Source/Core/VideoBackends/D3D/D3DBoundingBox.cpp +++ b/Source/Core/VideoBackends/D3D/D3DBoundingBox.cpp @@ -99,4 +99,4 @@ void D3DBoundingBox::Write(u32 index, std::span values) D3D::context->UpdateSubresource(m_buffer.Get(), 0, &box, values.data(), 0, 0); } -}; // namespace DX11 +} // namespace DX11 diff --git a/Source/Core/VideoBackends/D3D12/D3D12BoundingBox.cpp b/Source/Core/VideoBackends/D3D12/D3D12BoundingBox.cpp index a26c4e8160..f5d0ebdd00 100644 --- a/Source/Core/VideoBackends/D3D12/D3D12BoundingBox.cpp +++ b/Source/Core/VideoBackends/D3D12/D3D12BoundingBox.cpp @@ -125,4 +125,4 @@ bool D3D12BoundingBox::CreateBuffers() return true; } -}; // namespace DX12 +} // namespace DX12 diff --git a/Source/Core/VideoCommon/BPFunctions.cpp b/Source/Core/VideoCommon/BPFunctions.cpp index 6f9948a68e..ecb045e6ad 100644 --- a/Source/Core/VideoCommon/BPFunctions.cpp +++ b/Source/Core/VideoCommon/BPFunctions.cpp @@ -442,4 +442,4 @@ void SetInterlacingMode(const BPCmd& bp) break; } } -}; // namespace BPFunctions +} // namespace BPFunctions diff --git a/Source/Core/VideoCommon/OnScreenDisplay.h b/Source/Core/VideoCommon/OnScreenDisplay.h index 33d8662744..2819de5285 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.h +++ b/Source/Core/VideoCommon/OnScreenDisplay.h @@ -30,14 +30,14 @@ constexpr u32 CYAN = 0xFF00FFFF; constexpr u32 GREEN = 0xFF00FF00; constexpr u32 RED = 0xFFFF0000; constexpr u32 YELLOW = 0xFFFFFF30; -}; // namespace Color +} // namespace Color namespace Duration { constexpr u32 SHORT = 2000; constexpr u32 NORMAL = 5000; constexpr u32 VERY_LONG = 10000; -}; // namespace Duration +} // namespace Duration // On-screen message display (colored yellow by default) void AddMessage(std::string message, u32 ms = Duration::SHORT, u32 argb = Color::YELLOW, diff --git a/Source/Core/VideoCommon/VertexLoaderManager.h b/Source/Core/VideoCommon/VertexLoaderManager.h index b50beae0a5..ce8b6a22d1 100644 --- a/Source/Core/VideoCommon/VertexLoaderManager.h +++ b/Source/Core/VideoCommon/VertexLoaderManager.h @@ -18,7 +18,7 @@ struct PortableVertexDeclaration; namespace OpcodeDecoder { enum class Primitive : u8; -}; +} namespace VertexLoaderManager { diff --git a/Source/Core/VideoCommon/VertexManagerBase.h b/Source/Core/VideoCommon/VertexManagerBase.h index af0f694a01..648e26be59 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.h +++ b/Source/Core/VideoCommon/VertexManagerBase.h @@ -45,7 +45,7 @@ enum TexelBufferFormat : u32 namespace OpcodeDecoder { enum class Primitive : u8; -}; +} class VertexManagerBase { diff --git a/Source/Core/WinUpdater/WinUI.cpp b/Source/Core/WinUpdater/WinUI.cpp index 696ac55b0a..0a32848016 100644 --- a/Source/Core/WinUpdater/WinUI.cpp +++ b/Source/Core/WinUpdater/WinUI.cpp @@ -47,7 +47,7 @@ LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) } return DefWindowProc(hwnd, uMsg, wParam, lParam); } -}; // namespace +} // namespace constexpr int PROGRESSBAR_FLAGS = WS_VISIBLE | WS_CHILD | PBS_SMOOTH | PBS_SMOOTHREVERSE; constexpr int WINDOW_FLAGS = WS_CLIPCHILDREN; @@ -305,4 +305,4 @@ void SetVisible(bool visible) ShowWindow(window_handle, visible ? SW_SHOW : SW_HIDE); } -}; // namespace UI +} // namespace UI From 44f1a7586565307155b329d911a57fbf65785a57 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 20 Aug 2024 22:05:07 +0200 Subject: [PATCH 292/296] Translation resources sync with Transifex --- Languages/po/ar.po | 1843 ++++++++++++++++-------------- Languages/po/ca.po | 1763 +++++++++++++++-------------- Languages/po/cs.po | 1763 +++++++++++++++-------------- Languages/po/da.po | 1755 +++++++++++++++-------------- Languages/po/de.po | 1801 +++++++++++++++-------------- Languages/po/dolphin-emu.pot | 1755 +++++++++++++++-------------- Languages/po/el.po | 1767 +++++++++++++++-------------- Languages/po/en.po | 1755 +++++++++++++++-------------- Languages/po/es.po | 1911 +++++++++++++++++-------------- Languages/po/fa.po | 1761 +++++++++++++++-------------- Languages/po/fi.po | 1817 ++++++++++++++++-------------- Languages/po/fr.po | 2056 ++++++++++++++++++++-------------- Languages/po/hr.po | 1761 +++++++++++++++-------------- Languages/po/hu.po | 1791 +++++++++++++++-------------- Languages/po/it.po | 1844 ++++++++++++++++-------------- Languages/po/ja.po | 1811 ++++++++++++++++-------------- Languages/po/ko.po | 1810 ++++++++++++++++-------------- Languages/po/ms.po | 1787 +++++++++++++++-------------- Languages/po/nb.po | 1797 +++++++++++++++-------------- Languages/po/nl.po | 2040 +++++++++++++++++---------------- Languages/po/pl.po | 1763 +++++++++++++++-------------- Languages/po/pt.po | 1761 +++++++++++++++-------------- Languages/po/pt_BR.po | 1897 +++++++++++++++++-------------- Languages/po/ro.po | 1761 +++++++++++++++-------------- Languages/po/ru.po | 1840 ++++++++++++++++-------------- Languages/po/sr.po | 1759 +++++++++++++++-------------- Languages/po/sv.po | 1825 ++++++++++++++++-------------- Languages/po/tr.po | 1773 +++++++++++++++-------------- Languages/po/zh_CN.po | 1969 ++++++++++++++++++-------------- Languages/po/zh_TW.po | 1761 +++++++++++++++-------------- 30 files changed, 29441 insertions(+), 25056 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index 52440ac6fc..3dcc00d3f8 100644 --- a/Languages/po/ar.po +++ b/Languages/po/ar.po @@ -10,11 +10,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: mansoor , 2013,2015-2024\n" -"Language-Team: Arabic (http://app.transifex.com/delroth/dolphin-emu/language/" -"ar/)\n" +"Language-Team: Arabic (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/ar/)\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,7 +176,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 لا يدعم هذه الميزة علي النظام الخاص بك" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 لا يدعم هذه الميزة." @@ -198,7 +198,7 @@ msgstr "%1 قد انضم" msgid "%1 has left" msgstr "%1 لقد غادر" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -210,7 +210,7 @@ msgstr "%1 القرص غير صالح" msgid "%1 is now golfing" msgstr "%1 is now golfing" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -224,7 +224,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 نقاط" @@ -244,22 +244,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (السرعة القياسية)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -267,13 +267,17 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -287,7 +291,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 ميغابايت" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -300,7 +304,7 @@ msgstr "%1x Native (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -344,10 +348,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&حول" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&إضافة نقطة توقف الذاكرة" @@ -357,23 +365,19 @@ msgstr "&إضافة نقطة توقف الذاكرة" msgid "&Add New Code..." msgstr "&إضافة رمز جديد" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&إضافة وظيفة" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&إضافة" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&إعدادات الصوت" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&التحديث التلقائي" @@ -382,14 +386,14 @@ msgid "&Borderless Window" msgstr "&نافذة بلا حدود" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&نقاط التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&تتبع اخطاء المحاكي" @@ -401,11 +405,11 @@ msgstr "&إلغاء" msgid "&Cheats Manager" msgstr "&مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&تحقق من وجود تحديثات" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&مسح الرموز" @@ -413,7 +417,7 @@ msgstr "&مسح الرموز" msgid "&Clone..." msgstr "&استنساخ" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&رمز" @@ -421,16 +425,13 @@ msgstr "&رمز" msgid "&Connected" msgstr "&متصل" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&إعدادات ذراع التحكم" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" msgstr "&نسخ العنوان" #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 @@ -468,7 +469,7 @@ msgstr "&تحرير" msgid "&Eject Disc" msgstr "&إخراج القرص" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&محاكاة" @@ -493,36 +494,36 @@ msgstr "" msgid "&File" msgstr "&ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&الخط" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&الإطار المسبق" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&إعدادات المظهر الحر" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&إنشاء رموز من" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub مستودع " -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&إعدادات الرسومات" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&مساعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&إعدادات مفاتيح الاختصار" @@ -546,15 +547,15 @@ msgstr "&استيراد" msgid "&Infinity Base" msgstr "&Infinity قاعدة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&blr إدراج" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&مزج الإطارات" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -566,11 +567,11 @@ msgstr "&اللغة" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&تحميل الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Load Symbol Map" @@ -584,19 +585,19 @@ msgstr "&تحميل الملف إلى العنوان الحالي" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&تأمين المصغرات في القائمة" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&فيلم" @@ -604,7 +605,7 @@ msgstr "&فيلم" msgid "&Mute" msgstr "&صامت" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&شبكة الاتصال" @@ -617,19 +618,19 @@ msgstr "&لا" msgid "&Open..." msgstr "&فتح" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&خيارات" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&HLE وظائف تصحيح" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&إيقاف مؤقت" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&تشغيل" @@ -637,7 +638,7 @@ msgstr "&تشغيل" msgid "&Properties" msgstr "&خصائص" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&وضع للقراءة فقط" @@ -645,7 +646,7 @@ msgstr "&وضع للقراءة فقط" msgid "&Refresh List" msgstr "&تحديث القائمة" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&تسجل" @@ -658,12 +659,12 @@ msgstr "&إزالة" msgid "&Remove Code" msgstr "&إزالة الرمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&إعادة تسمية الرمز" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&إعادة" @@ -675,7 +676,7 @@ msgstr "&أدارة حزمة الموارد" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" @@ -687,11 +688,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "&Skylanders منفذ" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&حد السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&إيقاف " @@ -699,13 +700,13 @@ msgstr "&إيقاف " msgid "&Theme:" msgstr "&المظهر" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&المواضيع" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "&أداة" #: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" @@ -721,17 +722,17 @@ msgstr "&إلغاء تحميل القرص" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&مشاهدة" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&الموقع" @@ -743,11 +744,11 @@ msgstr "&معلومات عن اللعبة" msgid "&Yes" msgstr "&نعم" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' لم يتم العثور على أي أسماء رموز تم إنشاؤها" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' لم يتم العثور على المسح بحثًا عن الوظائف الشائعة بدلاً من ذلك" @@ -767,7 +768,7 @@ msgstr "(النظام)" msgid "(host)" msgstr "(مضيف)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(ايقاف)" @@ -791,7 +792,7 @@ msgstr ", فاصلة" msgid "- Subtract" msgstr "- طرح" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -869,7 +870,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x Anisotropic" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -881,7 +882,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -917,19 +918,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-bit عدد صحيح غير موقع" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D عمق" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -953,7 +954,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1051,7 +1052,7 @@ msgid "If unsure, leave this unchecked." msgstr "" "إذا لم تكن متأكدا فاترك هذا دون تحديد" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1083,8 +1084,8 @@ msgstr "" msgid "> Greater-than" msgstr "> أكثر-من" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "جلسة لعب الشبكة جارية بالفعل!" @@ -1109,7 +1110,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "القرص بالفعل على وشك أن يتم إدراجه." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1121,7 +1122,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "لا يمكن تحميل حالة الحفظ دون تحديد لعبة لتشغيلها" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1143,7 +1144,7 @@ msgstr "لا يمكن تشغيل المزامنة إلا عند تشغيل لع #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" -msgstr "" +msgstr "الحفظ التلقائي" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1221,7 +1222,7 @@ msgid "Achievement Settings" msgstr "إعدادات الإنجاز" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "الإنجازات" @@ -1297,7 +1298,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "تفعيل المحادثة في اللعب عبر الشبكة" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "نشط" @@ -1348,11 +1349,11 @@ msgstr "إضافة جهاز يو إس بي جديد" msgid "Add Shortcut to Desktop" msgstr "إضافة اختصار إلى سطح المكتب" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "إضافة نقطة توقف" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "أضف نقطة توقف الذاكرة" @@ -1386,13 +1387,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "عنوان" @@ -1411,7 +1412,7 @@ msgstr "مساحة العنوان حسب حالة وحدة المعالجة ال msgid "Address:" msgstr "عنوان" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1484,7 +1485,7 @@ msgstr "خيارات متقدمة" msgid "Advanced Settings" msgstr "الإعدادات المتقدمة" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1540,7 +1541,7 @@ msgstr "كل مزدوج" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1548,7 +1549,7 @@ msgid "All Files" msgstr "كل الملفات" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "(*) كل الملفات" @@ -1557,7 +1558,7 @@ msgstr "(*) كل الملفات" msgid "All Float" msgstr "كل تعويم" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "GC/Wii جميع ملفات" @@ -1566,8 +1567,8 @@ msgstr "GC/Wii جميع ملفات" msgid "All Hexadecimal" msgstr "كل سداسي عشري" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "جميع حالات الحفظ (*.sav *.s##);; كل الملفات (*)" @@ -1591,11 +1592,11 @@ msgstr "جميع رموز اللاعبين متزامنة." msgid "All players' saves synchronized." msgstr "حفظ جميع اللاعبين متزامنة." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "السماح بإعدادات المنطقة الغير متطابقة" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "السماح بالإبلاغ عن إحصائيات الاستخدام" @@ -1653,7 +1654,7 @@ msgstr "الزاوية" msgid "Angular velocity to ignore and remap." msgstr "السرعة الزاوية للتجاهل وإعادة التخطيط" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "التنعيم" @@ -1665,19 +1666,19 @@ msgstr "التنعيم" msgid "Any Region" msgstr "أي منطقة" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "إلحاق التوقيع ل" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "إلحاق ب & ملف التوقيع الموجود" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "تطبيق ملف التوقيع" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1691,9 +1692,9 @@ msgstr "تاريخ الإصدار" msgid "Apply" msgstr "تطبيق" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "تطبيق ملف التوقيع" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1703,7 +1704,7 @@ msgstr "Arbitrary Mipmap Detection" msgid "Are you sure that you want to delete '%1'?" msgstr "هل أنت متأكد من أنك تريد حذفها '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "هل أنت متأكد من أنك تريد حذف هذا الملف؟" @@ -1740,8 +1741,8 @@ msgstr "نسبة الابعاد" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1802,7 +1803,11 @@ msgstr "تلقائي" msgid "Auto (Multiple of 640x528)" msgstr "تلقائي (Multiple of 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "إعدادات التحديث التلقائي" @@ -1826,7 +1831,7 @@ msgstr "ضبط تلقائي لحجم النافذة" msgid "Auto-Hide" msgstr "إخفاء تلقائي" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "RSO الكشف التلقائي عن وحدات" @@ -1840,9 +1845,20 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" -msgstr "" +msgstr "تحديث القيم الحالية تلقائيا" #. i18n: One of the options shown below "Address Space". "Auxiliary" is the address space of ARAM #. (Auxiliary RAM). @@ -1851,7 +1867,7 @@ msgid "Auxiliary" msgstr "مساعدة" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1934,10 +1950,10 @@ msgstr "تم توفير إزاحة غير صالحة" msgid "Bad value provided." msgstr "قيمة غير صالحة المقدمة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "الشعار" @@ -1955,7 +1971,7 @@ msgstr "شريط" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:417 msgid "Base Address" -msgstr "" +msgstr "العنوان الأساسي" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Base priority" @@ -1965,7 +1981,7 @@ msgstr "الأولوية الأساسية" msgid "Basic" msgstr "الأساسية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "الإعدادات الأساسية" @@ -2025,9 +2041,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "حجم الكتلة" @@ -2065,15 +2081,15 @@ msgstr "" "libusb تم تمكين وضع عبور البلوتوث ولكن تم تصميم دولفين بدون\n" "لا يمكن استخدام وضع العبور" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "التمهيد لإيقاف مؤقت" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys file (*.bin);;All Files (*)" @@ -2087,7 +2103,7 @@ msgstr "اسفل" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" -msgstr "" +msgstr "فرع" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" @@ -2123,7 +2139,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" -msgstr "" +msgstr "نوع الفرع" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" @@ -2201,30 +2217,30 @@ msgstr "" msgid "Branch: %1" msgstr "%1 فرع" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "الفروع" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "كسر" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "توقف" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "تمت مصادفة نقطة توقف! إلغاء للخروج" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "نقاط التوقف" @@ -2312,7 +2328,7 @@ msgstr "الأزرار" #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:214 msgid "By: %1" -msgstr "" +msgstr "بواسطة: %1" #: Source/Core/Core/HW/GCPadEmu.cpp:57 #: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:31 @@ -2320,7 +2336,7 @@ msgstr "" msgid "C Stick" msgstr "C عصا" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "إنشاء ملف التوقيع" @@ -2355,7 +2371,7 @@ msgstr "" msgid "Calculate" msgstr "حساب" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2417,14 +2433,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} لا يمكن العثور على ريموت وي من خلال مقبض الاتصال" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2475,7 +2491,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "لا يمكن التحديث بدون نتائج" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2523,7 +2539,7 @@ msgstr "تغيير &القرص" msgid "Change Disc" msgstr "تغيير القرص" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "تغيير الأقراص تلقائيا" @@ -2586,7 +2602,7 @@ msgstr "بحث عن اسرار" msgid "Cheats Manager" msgstr "مدير الأسرار" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "NAND تحقق من" @@ -2598,7 +2614,7 @@ msgstr "تحقق من تغييرات قائمة الألعاب في الخلفي msgid "Check for updates" msgstr "تحقق من وجود تحديثات" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2618,29 +2634,29 @@ msgstr "الصين" msgid "Choose" msgstr "اختر" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "اختيار ملف لفتح" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "اختر ملفًا لفتحه أو إنشائه" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "اختيار ملف الإدخال ذي الأولوية" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "اختر ملف الإدخال الثانوي" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "GCI اختر المجلد الأساسي" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "اختيار مجلد لاستخراج" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2659,7 +2675,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2669,7 +2685,7 @@ msgstr "مسح" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "مسح ذاكرة التخزين المؤقت" @@ -2690,7 +2706,7 @@ msgstr "استنساخ و &تحرير الرمز" msgid "Close" msgstr "إغلاق" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "الإعدادات العامة" @@ -2714,7 +2730,7 @@ msgstr "رمز" msgid "Codes received!" msgstr "الرموز الواردة!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "تصحيح الألوان" @@ -2734,7 +2750,7 @@ msgstr "مساحة اللون" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "دمج اثنين من ملفات التوقيع" @@ -2775,9 +2791,9 @@ msgstr "تجميع التظليل قبل البدء" msgid "Compiling Shaders" msgstr "تجميع التظليل" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "نوع الضغط" @@ -2802,7 +2818,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "شرط" @@ -2909,9 +2925,9 @@ msgstr "إعداد الإخراج" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "تأكيد " @@ -2924,7 +2940,7 @@ msgstr "تأكيد تغيير الخلفية" msgid "Confirm on Stop" msgstr "تأكيد على التوقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2935,7 +2951,7 @@ msgstr "التأكيد" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "ربط لوح الميزان" @@ -2943,27 +2959,27 @@ msgstr "ربط لوح الميزان" msgid "Connect USB Keyboard" msgstr "ربط لوحة مفاتيح يو إس بي" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "%1 ربط ريموت وي" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "ربط ريموت وي 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "ربط ريموت وي 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "ربط ريموت وي 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "ربط ريموت وي 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "ربط ريموت وي " @@ -3008,19 +3024,19 @@ msgstr "عصا التحكم" msgid "Controller Profile" msgstr "ملف تعريف ذراع التحكم" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "ملف تعريف ذراع التحكم 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "ملف تعريف ذراع التحكم 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "ملف تعريف ذراع التحكم 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "ملف تعريف ذراع التحكم 4" @@ -3032,6 +3048,16 @@ msgstr "إعدادات ذراع التحكم" msgid "Controllers" msgstr "ذراع التحكم" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3040,7 +3066,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3051,7 +3077,7 @@ msgstr "" "الافتراضية أمام الشاشة.

تؤدي القيمة الأعلى إلى إنشاء تأثيرات أقوى " "خارج الشاشة بينما تكون القيمة الأقل أكثر راحة." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3060,7 +3086,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3093,7 +3119,7 @@ msgstr "" "Controls whether to use high or low-level DSP emulation. Defaults to " "True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "التقارب" @@ -3186,18 +3212,22 @@ msgstr "" msgid "Copy" msgstr "نسخ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "نسخ &الوظيفة" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "نسخ العنوان" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "فشل النسخ" @@ -3206,18 +3236,14 @@ msgstr "فشل النسخ" msgid "Copy Hex" msgstr "Copy Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "قيمة النسخ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Copy code &line" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "نسخ العنوان المستهدف" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "A نسخ إلى" @@ -3338,8 +3364,8 @@ msgstr "{0} تعذر التعرف على الملف" msgid "Could not save your changes!" msgstr "لا يمكن حفظ التغييرات الخاصة بك" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "{0} تعذر بدء عملية التحديث" @@ -3435,7 +3461,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "المنطقة الحالية" @@ -3629,24 +3655,24 @@ msgstr "جودة فك التشفير:" msgid "Decrease" msgstr "تخفيض" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "تخفيض التقارب" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "تخفيض العمق" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "تقليل سرعة المحاكاة" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "تقليل الأشعة تحت الحمراء" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "تقليل فتحة الحالة المحددة" @@ -3702,8 +3728,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "حذف" @@ -3721,7 +3747,7 @@ msgstr "حذف الملفات المحددة" msgid "Delete the existing file '{0}'?" msgstr "'{0}' احذف الملف الموجود" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "العمق" @@ -3736,9 +3762,9 @@ msgstr "العمق" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "الوصف" @@ -3787,7 +3813,7 @@ msgstr "منفصل" msgid "Detect" msgstr "كشف" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3795,7 +3821,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "تحديد النواة المزدوجة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (عدة مرات في اليوم)" @@ -3853,15 +3879,15 @@ msgstr "Disable Copy Filter" msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "تعطيل محاكاة الحد الأقصى للسرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Fastmem تعطيل" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3869,11 +3895,11 @@ msgstr "" msgid "Disable Fog" msgstr "تعطيل الضباب" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3895,7 +3921,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3918,9 +3944,10 @@ msgstr "القرص" msgid "Discard" msgstr "تجاهل" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" -msgstr "" +msgstr "اعدادات العرض" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -3948,15 +3975,15 @@ msgstr "مسافة" msgid "Distance of travel from neutral position." msgstr "Distance of travel from neutral position." -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "هل تسمح لشركة دولفين بالإبلاغ عن معلومات لمطوري دولفين؟" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "هل تريد إضافة \"%1\" إلى قائمة مسارات الألعاب؟" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "هل تريد مسح قائمه أسماء الرموز ؟" @@ -3966,7 +3993,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "هل تريد إيقاف المحاكاة الحالية؟" @@ -3987,9 +4014,9 @@ msgstr "Dolphin FIFO Log (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Map File (*.map)" @@ -4001,8 +4028,8 @@ msgstr "CSV توقيع دولفين ملف" msgid "Dolphin Signature File" msgstr "دولفين توقيع الملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Movies (*.dtm)" @@ -4053,12 +4080,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "دولفين غير قادر على التحقق من الأقراص غير المرخصة." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "سيستخدم دولفين هذا للعناوين التي لا يمكن تحديد منطقتها تلقائيًا" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "تم تعطيل نظام الاسرار حاليا." @@ -4068,7 +4089,7 @@ msgstr "تم تعطيل نظام الاسرار حاليا." msgid "Domain" msgstr "نطاق" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "عدم التحديث" @@ -4125,11 +4146,11 @@ msgstr "تم تحميل %1 رموز. (وأضاف %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4172,7 +4193,7 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "تفريغ الصوت" @@ -4184,7 +4205,7 @@ msgstr "تفريغ القوام الأساسي" msgid "Dump EFB Target" msgstr "EFB التفريغ المستهدف" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "تفريغ الإطارات" @@ -4305,16 +4326,16 @@ msgstr "شرق اسيا" msgid "Edit Breakpoint" msgstr "تحرير نقطة التوقف" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "حرر" @@ -4338,7 +4359,7 @@ msgstr "فعال" msgid "Effective priority" msgstr "الأولوية الفعالة" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "إكسابايت" @@ -4404,7 +4425,7 @@ msgstr "" "Current: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "سرعة المحاكاة " @@ -4424,7 +4445,7 @@ msgstr "تمكين طبقات التحقق من واجهة برمجة التطب msgid "Enable Audio Stretching" msgstr "تمكين تمديد الصوت " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "تمكين الأسرار" @@ -4442,15 +4463,15 @@ msgstr "تمكين واجهة مستخدم التصحيح" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "تمكين وجود ديسكورد" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "تمكين ثنائي النواة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Enable Dual Core (لزيادة السرعة)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4474,7 +4495,7 @@ msgstr "تمكين تعديلات الرسومات" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66 msgid "Enable Hardcore Mode" -msgstr "" +msgstr "تمكين وضع المتشدد" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68 msgid "" @@ -4494,7 +4515,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4530,13 +4551,13 @@ msgstr "تمكين بيانات مكبر صوت" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "تمكين وضع المشاهد" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "تمكين الإنجازات غير الرسمية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "تمكين تقارير إحصائيات الاستخدام " @@ -4614,7 +4635,7 @@ msgstr "" "Enables Floating Point Result Flag calculation, needed for a few games. (ON " "= Compatible, OFF = Fast)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4648,7 +4669,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4693,6 +4714,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4724,7 +4754,7 @@ msgstr "" "\n" "ألغى الاستيراد." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4775,14 +4805,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4821,26 +4851,26 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4857,16 +4887,16 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "خطأ" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:456 msgid "Error Log" -msgstr "" +msgstr "سجل الأخطاء" #: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:75 msgid "Error Opening Adapter: %1" @@ -4890,7 +4920,7 @@ msgstr "خطأ في تحميل اللغة المحددة. العودة إلى ا msgid "Error obtaining session list: %1" msgstr "خطأ في الحصول على قائمة الجلسة: 1%" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "حدث خطأ أثناء تحميل بعض حزم النسيج" @@ -4985,7 +5015,7 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "أوروبا" @@ -4998,15 +5028,15 @@ msgstr "Exclusive Ubershaders" msgid "Exit" msgstr "خروج" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "توقع + أو قوس إغلاق" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "الحجج المتوقعة" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "من المتوقع إغلاق القوسين" @@ -5018,19 +5048,19 @@ msgstr "الفاصلة المتوقعة" msgid "Expected end of expression." msgstr "نهاية التعبير المتوقعة" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "الاسم المتوقع للإدخال" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "توقع فتح قوس" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "بداية التعبير المتوقعة" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "اسم المتغير المتوقع" @@ -5038,7 +5068,7 @@ msgstr "اسم المتغير المتوقع" msgid "Experimental" msgstr "تجريبي" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "تصدير جميع حفظ وي" @@ -5049,11 +5079,11 @@ msgstr "تصدير جميع حفظ وي" msgid "Export Failed" msgstr "فشل التصدير" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "تصدير تسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "تصدير تسجيل" @@ -5081,7 +5111,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5109,35 +5139,35 @@ msgstr "خارجي" msgid "External Frame Buffer (XFB)" msgstr "(XFB) مخزن مؤقت للإطار الخارجي" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "NAND استخراج الشهادات من" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "استخراج القرص بأكمله" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "استخراج القسم بأكمله" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "استخراج الملفات" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "إستخراج الملفات" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "استخراج بيانات النظام" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "استخراج جميع الملفات" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "استخراج الملف" @@ -5167,7 +5197,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "فشل في إضافة هذه الجلسة إلى فهرس اللعب عبر الشبكة: 1%" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5234,7 +5264,7 @@ msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "فشل حذف بطاقة الذاكرة في لعب عبر الشبكة تحقق من أذونات الكتابة الخاصة بك." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "فشل حذف الملف المحدد." @@ -5263,15 +5293,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "فشل تصدير ملفات الحفظ التالية:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "NAND فشل استخراج شهادات من" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "فشل استخراج الملف." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "فشل استخراج بيانات النظام." @@ -5293,27 +5323,27 @@ msgstr "D3D فشل في العثور على واحد أو أكثر من رموز msgid "Failed to import \"%1\"." msgstr "\"%1\" فشل الاستيراد" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "فشل استيراد ملف الحفظ. الرجاء تشغيل اللعبة مرة واحدة ، ثم المحاولة مرة أخرى" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "فشل في التهيئة الأساسية" @@ -5333,11 +5363,11 @@ msgid "Failed to install pack: %1" msgstr "%1 :فشل تثبيت الحزمة" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "NAND فشل تثبيت هذا العنوان على" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5345,8 +5375,8 @@ msgstr "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Failed to load RSO module at %1" @@ -5358,7 +5388,7 @@ msgstr "d3d11.dll فشل تحميل" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll فشل تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Failed to load map file '%1'" @@ -5395,7 +5425,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' فشل في الفتح" @@ -5414,7 +5444,7 @@ msgstr "فشل في فتح ملف الأعداد" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:731 msgid "Failed to open file" -msgstr "" +msgstr "فشل فتح الملف" #: Source/Core/Core/NetPlayCommon.cpp:26 msgid "Failed to open file \"{0}\"." @@ -5436,7 +5466,7 @@ msgstr "" msgid "Failed to open file." msgstr "فشل فتح ملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "فشل في فتح الخادم" @@ -5579,19 +5609,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Failed to save FIFO log." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Failed to save to signature file '%1'" @@ -5647,8 +5677,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "فشل" @@ -5656,11 +5686,12 @@ msgstr "فشل" msgid "Fair Input Delay" msgstr "تأخير الإدخال العادل" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "المنطقة الاحتياطية" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "المنطقة الاحتياطية" @@ -5696,9 +5727,9 @@ msgstr "نوع الشكل" msgid "File Details" msgstr "تفاصيل الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "تنسيق الملف" @@ -5710,20 +5741,20 @@ msgstr "تنسيق الملف" msgid "File Info" msgstr "معلومات الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "اسم الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "مسار الملف" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "حجم الملف" @@ -5823,9 +5854,9 @@ msgstr "الأعلام" msgid "Float" msgstr "عدد عشري" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -5892,7 +5923,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5902,7 +5933,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5945,20 +5976,20 @@ msgstr "" msgid "Frame %1" msgstr "%1 الإطار" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "الإطار المسبق" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "تخفيض سرعة الإطار المسبق" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "زيادة سرعة الإطار المسبق" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr " إعادة تعيين سرعة الإطار المسبق" @@ -6019,11 +6050,11 @@ msgstr "" msgid "FreeLook" msgstr "نظرة حرة" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "نظرة حرة" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "نظرة حرة" @@ -6057,13 +6088,14 @@ msgstr "من" msgid "FullScr" msgstr "شاشة كاملة" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "وظيفة" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" -msgstr "" +msgstr "اعدادات الوظيفة" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6081,7 +6113,7 @@ msgstr "(TCP) جيم بوي أدفانس" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "جيم بوي أدفانس" @@ -6097,11 +6129,11 @@ msgstr "إعدادات جيم بوي أدفانس" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "صوت جيم بوي أدفانس" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "حجم النافذة جيم بوي أدفانس" @@ -6214,11 +6246,11 @@ msgstr "اللعبة" msgid "Game Boy Advance" msgstr "جيم بوي أدفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "(*.gba) جيم بوي ادفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6252,8 +6284,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "معرف اللعبة" @@ -6383,7 +6415,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko رموز" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6403,14 +6436,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "إنشاء هوية جديد للحصائيات " +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "أسماء الرموز التي تم إنشاؤها من '%1'" @@ -6428,7 +6468,7 @@ msgstr "ألمانيا" msgid "GetDeviceList failed: {0}" msgstr "فشل الحصول على قائمة الأجهزة: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "غيغابايت" @@ -6461,7 +6501,7 @@ msgstr "الرسومات" msgid "Graphics Mods" msgstr "تعديلات الرسومات" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "الرسومات" @@ -6470,7 +6510,7 @@ msgstr "الرسومات" msgid "Graphics mods are currently disabled." msgstr "تعديلات الرسومات معطلة حاليا" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6492,7 +6532,7 @@ msgstr "اليسار أخضر" msgid "Green Right" msgstr "اليمين أخضر" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "شبكة" @@ -6574,7 +6614,7 @@ msgstr "إخفاء" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "إخفاء الكل" @@ -6592,12 +6632,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "عالية" @@ -6665,7 +6705,7 @@ msgstr "اسم المضيف" msgid "Hotkey Settings" msgstr "إعدادات مفاتيح الاختصار" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6783,11 +6823,11 @@ msgstr "" "مناسب للألعاب القائمة على الدوران مع عناصر تحكم حساسة للتوقيت ، مثل لعبة " "الجولف." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "إنشاء هوية " -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6829,6 +6869,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6882,7 +6932,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "النسخة الاحتياطية BootMii NAND استيراد" @@ -6897,15 +6947,15 @@ msgstr "فشل الاستيراد" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "استيراد حفظ وي" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr " NAND استيراد النسخ الاحتياطي" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6963,24 +7013,24 @@ msgstr "قيمة وقت اللعب غير صحيحة" msgid "Increase" msgstr "زيادة" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "زيادة التقارب" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "زيادة العمق" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "زيادة سرعة المحاكاة" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "زيادة الأشعة تحت الحمراء" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "زيادة فتحة الحالة المحددة" @@ -7029,8 +7079,8 @@ msgstr "معلومات" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "معلومات" @@ -7044,10 +7094,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "إدخال" @@ -7066,13 +7116,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Insert &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD Card ادرج" @@ -7090,7 +7137,7 @@ msgstr "(%1) تثبيت القسم" msgid "Install Update" msgstr "تثبيت التحديث" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WAD تثبيت" @@ -7098,8 +7145,9 @@ msgstr "WAD تثبيت" msgid "Install to the NAND" msgstr "NAND تثبيت على" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7113,7 +7161,7 @@ msgstr "تعليمات" msgid "Instruction Breakpoint" msgstr "نقطة توقف التعليمات" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "التعليمات" @@ -7122,7 +7170,7 @@ msgstr "التعليمات" msgid "Instruction: %1" msgstr "%1 تعليمات" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7181,8 +7229,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "الدقة الداخلية" @@ -7199,7 +7247,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (بطيء)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7207,7 +7255,7 @@ msgstr "Interpreter Core" msgid "Invalid Expression." msgstr "تعبير غير صالح" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7215,7 +7263,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "رمز مختلط غير صالح" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "حزمة غير صالحة 1% مقدمة :2%" @@ -7224,7 +7272,7 @@ msgstr "حزمة غير صالحة 1% مقدمة :2%" msgid "Invalid Player ID" msgstr "معرف لاعب غير صالح" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" @@ -7304,11 +7352,11 @@ msgstr "إيطاليا" msgid "Item" msgstr "عنصر" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7316,47 +7364,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7368,14 +7416,15 @@ msgstr "JIT Recompiler for ARM64 (موصى به)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (موصى به)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7383,11 +7432,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "اليابان" @@ -7409,7 +7458,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "استمر في الجري" @@ -7444,7 +7493,7 @@ msgstr "تحكم لوحة المفاتيح" msgid "Keys" msgstr "مفاتيح" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "كيلوبايت" @@ -7452,7 +7501,7 @@ msgstr "كيلوبايت" msgid "Kick Player" msgstr "طرد لاعب" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "كوريا" @@ -7591,6 +7640,14 @@ msgstr "" "يسار / يمين انقر إعداد الإخراج\n" "الأوسط--انقر لمسح" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7624,11 +7681,11 @@ msgstr "ضوء" msgid "Limit Chunked Upload Speed:" msgstr "الحد من سرعة الرفع المقسم:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "قائمة الأعمدة" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "قائمة" @@ -7638,17 +7695,17 @@ msgstr "الاستماع" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." @@ -7657,7 +7714,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7668,7 +7725,7 @@ msgstr "تحميل النسيج المخصص" msgid "Load File" msgstr "تحميل الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "تحميل قائمة جيم كيوب الرئيسية " @@ -7676,16 +7733,21 @@ msgstr "تحميل قائمة جيم كيوب الرئيسية " msgid "Load Host's Save Data Only" msgstr "تحميل بيانات حفظ المضيف فقط" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "تحميل الحالة الأخيرة" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "مسار التحميل" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "تحميل القرص" @@ -7693,104 +7755,104 @@ msgstr "تحميل القرص" msgid "Load Slot" msgstr "فتحة التحميل" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "تحميل الحالة" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "تحميل الحالة 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "تحميل الحالة 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "تحميل الحالة 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "تحميل الحالة 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "تحميل الحالة 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "تحميل الحالة 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "تحميل الحالة 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "تحميل الحالة 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "تحميل الحالة 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "تحميل الحالة 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "تحميل الحالة فتحة 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "تحميل الحالة فتحة 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "تحميل الحالة فتحة 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "تحميل الحالة فتحة 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "تحميل الحالة فتحة 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "تحميل الحالة فتحة 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "تحميل الحالة فتحة 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "تحميل الحالة فتحة 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "تحميل الحالة فتحة 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "تحميل الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "تحميل الحالة من الملف" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "تحميل الحالة من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "تحميل الحالة من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" @@ -7798,20 +7860,15 @@ msgstr "%1 تحميل قائمة نظام وي" msgid "Load and Write Host's Save Data" msgstr "تحميل وكتابة بيانات حفظ المضيف" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "تحميل من الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "%1 - %2 تحميل من الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Load map file" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "%1 تحميل قائمة نظام وي" @@ -7819,7 +7876,7 @@ msgstr "%1 تحميل قائمة نظام وي" msgid "Load..." msgstr "تحميل" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "الرموز المحملة من '%1'" @@ -7844,20 +7901,20 @@ msgstr "محلي" msgid "Lock Mouse Cursor" msgstr "قفل مؤشر الماوس" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "مقفل" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "سجل" @@ -7867,10 +7924,11 @@ msgid "Log Configuration" msgstr "إعداد السجل" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "تسجيل الدخول" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -7909,7 +7967,7 @@ msgstr "التكرار الحلقي" msgid "Lost connection to NetPlay server..." msgstr "فقد الاتصال بالخادم" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "منخفضة" @@ -7972,9 +8030,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "الناشر" @@ -7983,7 +8041,7 @@ msgstr "الناشر" msgid "Maker:" msgstr "الناشر" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7991,7 +8049,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "NAND إدارة" @@ -8030,7 +8088,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "قد يسبب تباطؤ في قائمة وي وبعض الألعاب." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "متوسط" @@ -8046,7 +8104,7 @@ msgstr "نقطة توقف الذاكرة" msgid "Memory Card" msgstr "بطاقة الذاكرة" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "مدير بطاقة الذاكرة" @@ -8074,7 +8132,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8086,7 +8144,7 @@ msgstr "" "so it is recommended that you keep backups of both NANDs. Are you sure you " "want to continue?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "ميغابايت" @@ -8159,8 +8217,8 @@ msgstr "تعديل الفتحة" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "%1 تم العثور على وحدات" @@ -8202,7 +8260,7 @@ msgstr "رؤية مؤشر الماوس" msgid "Move" msgstr "نقل" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "فيلم" @@ -8226,10 +8284,10 @@ msgstr "مضاعف" msgid "N&o to All" msgstr "لا للكل" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND تحقق" @@ -8238,8 +8296,8 @@ msgstr "NAND تحقق" msgid "NKit Warning" msgstr "NKit تحذير" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8248,7 +8306,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8265,8 +8323,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8279,11 +8337,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "الاسم" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "اسم علامة جديدة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "اسم العلامة المراد إزالتها" @@ -8362,7 +8420,7 @@ msgid "Never Auto-Update" msgstr "عدم التحديث التلقائي" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "جديد" @@ -8387,7 +8445,7 @@ msgstr "بحث جديد" msgid "New Tag..." msgstr "علامة جديدة" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "تم إنشاء هوية جديدة ." @@ -8395,12 +8453,13 @@ msgstr "تم إنشاء هوية جديدة ." msgid "New instruction:" msgstr "تعليمات جديدة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "علامة جديدة" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "ملف تعريف اللعبة التالية" @@ -8408,8 +8467,9 @@ msgstr "ملف تعريف اللعبة التالية" msgid "Next Match" msgstr "التالية" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "ملف التعريف التالي" @@ -8496,7 +8556,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "لم يتم اكتشاف أية مشكلات." @@ -8540,7 +8600,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "No undo.dtm found, aborting undo load state to prevent movie desyncs" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8740,7 +8800,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "وثائق على الانترنت" @@ -8748,7 +8808,7 @@ msgstr "وثائق على الانترنت" msgid "Only Show Collection" msgstr "عرض المجموعة فقط" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8756,7 +8816,7 @@ msgstr "" "إلحاق رموز فقط بالبادية:\n" "(فارغ لكل الرموز)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8779,14 +8839,18 @@ msgstr "فتح موقع الملف" msgid "Open &User Folder" msgstr "فتح مجلد المستخدم" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "فتح" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "FIFO فتح سجل" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -8887,7 +8951,7 @@ msgstr "أخرى" msgid "Other Partition (%1)" msgstr "(%1) قسم آخر" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "مفاتيح الاختصار حالة الأخرى" @@ -8904,7 +8968,7 @@ msgstr "لعبة أخرى" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "إعادة تشكيل الإخراج" @@ -8912,16 +8976,16 @@ msgstr "إعادة تشكيل الإخراج" msgid "Output Resampling:" msgstr "إعادة تشكيل الإخراج" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "الكتابة فوق" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "تشغيل تسجيل الإدخال" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8950,7 +9014,7 @@ msgstr "PNG image file (*.png);; All Files (*)" msgid "PPC Size" msgstr "PPC حجم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8963,7 +9027,7 @@ msgstr "تحكم" msgid "Pads" msgstr "منصات" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "المعلمات" @@ -9026,7 +9090,7 @@ msgstr "إيقاف مؤقت" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "وقفة في نهاية الفيلم" @@ -9071,7 +9135,7 @@ msgstr "سرعة الذروة لحركات التأرجح الخارجية." msgid "Per-Pixel Lighting" msgstr "لكل بكسل إضاءة" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "تحديث النظام عبر الإنترنت" @@ -9101,11 +9165,11 @@ msgstr "فيزيائي" msgid "Physical address space" msgstr "مساحة العنوان الفعلي" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "بيتابايت" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "debug اختر خط" @@ -9121,8 +9185,8 @@ msgstr "Pitch Down" msgid "Pitch Up" msgstr "Pitch Up" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "المنصة" @@ -9134,7 +9198,7 @@ msgstr "تشغيل" msgid "Play / Record" msgstr "لعب / سجل" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "تشغيل التسجيل" @@ -9229,7 +9293,7 @@ msgstr "فتحات البوابة" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "تم اكتشاف مزامنة محتملة: %1 قد تمت مزامنتها في الإطار %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "تأثير ما بعد المعالجة" @@ -9282,7 +9346,7 @@ msgstr "" msgid "Presets" msgstr "المسبقة" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "اضغط على زر المزامنة" @@ -9300,9 +9364,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "ملف تعريف اللعبة السابقة" @@ -9310,8 +9374,9 @@ msgstr "ملف تعريف اللعبة السابقة" msgid "Previous Match" msgstr "السابقة" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "ملف التعريف السابق" @@ -9361,13 +9426,13 @@ msgstr "" msgid "Profile" msgstr "الملف الشخصي" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "عداد البرنامج" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9384,11 +9449,11 @@ msgstr "" msgid "Public" msgstr "عامة" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "أزالة ذاكره التخزين المؤقت لقائمة الألعاب" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9417,7 +9482,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "مشكلة" @@ -9442,11 +9507,11 @@ msgstr "R-قوة ضغطة" msgid "READY" msgstr "جاهز" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO الكشف التلقائي" @@ -9483,13 +9548,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "الدقة الداخلية الخام" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "إعادة&مكان التعليمات" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "اقرأ" @@ -9512,7 +9577,7 @@ msgstr "يقرأ فقط" msgid "Read or Write" msgstr "قراءة أو كتابة" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "وضع القراءة فقط" @@ -9571,7 +9636,7 @@ msgstr "اليسار أحمر" msgid "Red Right" msgstr "اليمين أحمر" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9617,8 +9682,8 @@ msgstr "تحديث القيم الحالية" msgid "Refreshing..." msgstr "تحديث..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "المنطقة" @@ -9639,9 +9704,10 @@ msgstr "المدخلات النسبية" msgid "Relative Input Hold" msgstr "إدخال الإدخال النسبي" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" -msgstr "" +msgstr "Releases (كل بضعة أشهر)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -9668,7 +9734,7 @@ msgstr "إزالة البيانات غير المرغوب فيها (لا رجع msgid "Remove Tag..." msgstr "إزالة العلامة" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "إزالة العلامة" @@ -9684,8 +9750,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "إعادة تسمية الرمز" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -9716,7 +9782,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9728,7 +9794,7 @@ msgstr "إعادة تعيين" msgid "Reset All" msgstr "إعادة تعيين الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "إعادة تعيين تجاهل معالج الذعر" @@ -9780,9 +9846,9 @@ msgstr "مطلوب إعادة تشغيل" msgid "Restore Defaults" msgstr "استعادة الضبط الافتراضي" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "استعادة التعليمات" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -9911,20 +9977,20 @@ msgstr "" msgid "Rumble" msgstr "هزاز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "تشغيل جيم بوي أدفانس في خيوط مخصصة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "تشغيل حتى" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9994,11 +10060,11 @@ msgstr "SSL سياق" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "حفظ الرموز" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "حفظ الحالة" @@ -10010,7 +10076,7 @@ msgstr "آمنة" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10025,23 +10091,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "حفظ التصدير" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "FIFO حفظ سجل" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "احفظ الملف إلى" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10052,15 +10130,19 @@ msgstr "حفظ اللعبة" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "حفظ الاستيراد" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "حفظ الحالة الأقدم" @@ -10068,73 +10150,77 @@ msgstr "حفظ الحالة الأقدم" msgid "Save Preset" msgstr "حفظ الإعداد المسبق" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "حفظ ملف التسجيل باسم" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "حفظ الحالة" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "حفظ الحالة فتحة 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "حفظ الحالة فتحة 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "حفظ الحالة فتحة 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "حفظ الحالة فتحة 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "حفظ الحالة فتحة 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "حفظ الحالة فتحة 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "حفظ الحالة فتحة 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "حفظ الحالة فتحة 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "حفظ الحالة فتحة 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "حفظ الحالة فتحة 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "حفظ الحالة في ملف" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "حفظ الحالة في أقدم فتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "حفظ الحالة في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "حفظ الحالة في الفتحة" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10154,11 +10240,7 @@ msgstr "حفظ كإعداد مسبق" msgid "Save as..." msgstr "حفظ بأسم" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "حفظ ملف الإخراج المجمع بأسم" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10172,19 +10254,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Save in Same Directory as the ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Save map file" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "احفظ ملف التوقيع" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "حفظ في الفتحة المحددة" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "%1 - %2 حفظ في الفتحة" @@ -10218,7 +10292,7 @@ msgstr "لقطة للشاشة" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "بحث" @@ -10247,7 +10321,7 @@ msgstr "" "البحث غير ممكن حاليا في مساحة العنوان الافتراضية. يرجى تشغيل اللعبة قليلا " "والمحاولة مرة أخرى." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "ابحث عن تعليمات" @@ -10255,7 +10329,7 @@ msgstr "ابحث عن تعليمات" msgid "Search games..." msgstr "بحث عن الالعاب" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "تعليمات البحث" @@ -10291,7 +10365,7 @@ msgstr "حدد" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10300,7 +10374,7 @@ msgid "Select Dump Path" msgstr "تحديد مسار التفريغ" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "حدد ملف تصدير " @@ -10308,18 +10382,22 @@ msgstr "حدد ملف تصدير " msgid "Select Figure File" msgstr "حدد ملف الشكل" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "حدد جيم بوي أدفانس BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "حدد قرص جيم بوي أدفانس" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "حدد مسار الحفظ جيم بوي أدفانس" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "حدد الحالة الأخيرة" @@ -10328,6 +10406,10 @@ msgstr "حدد الحالة الأخيرة" msgid "Select Load Path" msgstr "حدد مسار التحميل" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "حدد مسار حزمة الموارد" @@ -10336,6 +10418,14 @@ msgstr "حدد مسار حزمة الموارد" msgid "Select Riivolution XML file" msgstr "Riivolution XML حدد ملف" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Skylander حدد مجموعة" @@ -10344,58 +10434,62 @@ msgstr "Skylander حدد مجموعة" msgid "Select Skylander File" msgstr "حدد ملف Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "%1 - %2 حدد الفتحة" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "اختر الحالة" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "حدد فتحة الحالة" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "حدد فتحة الحالة 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "حدد فتحة الحالة 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "حدد فتحة الحالة 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "حدد فتحة الحالة 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "حدد فتحة الحالة 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "حدد فتحة الحالة 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "حدد فتحة الحالة 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "حدد فتحة الحالة 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "حدد فتحة الحالة 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "حدد فتحة الحالة 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "WFS حدد مسار" @@ -10413,24 +10507,20 @@ msgstr "اختر الملف" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "حدد ملف" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "SD Card حدد مجلدًا للمزامنة مع صورة" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "SD Card حدد صورة" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "حدد ملف" @@ -10439,19 +10529,15 @@ msgstr "حدد ملف" msgid "Select a game" msgstr "اختر لعبة" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "NAND حدد عنوانًا لتثبيته إلى" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "RSO حدد عنوان وحدة" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "حدد ملف التسجيل للتشغيل" @@ -10459,23 +10545,6 @@ msgstr "حدد ملف التسجيل للتشغيل" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "(OTP/SEEPROM dump) حدد ملف المفاتيح" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "حدد حفظ الملف" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "حدد المكان الذي تريد حفظ الصورة المحولة فيه" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "حدد المكان الذي تريد حفظ الصور المحولة فيه" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "الخط المحدد" @@ -10531,7 +10600,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10574,6 +10643,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "إرسال" @@ -10582,6 +10672,15 @@ msgstr "إرسال" msgid "Sensor Bar Position:" msgstr "موضع الاستشعار" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10610,39 +10709,35 @@ msgstr "تعيين القيمة" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "تعيين الكمبيوتر" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "تعيين القرص افتراضي " -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "اضبط ملف بطاقة الذاكرة على الفتحة A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "اضبط ملف بطاقة الذاكرة على الفتحة B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Set symbol &end address" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Set symbol &size" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "تعيين عنوان نهاية الرمز" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "تعيين حجم الرمز (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10659,7 +10754,7 @@ msgstr "تحدد لغة نظام وي " #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10673,10 +10768,17 @@ msgstr "" "يضبط وقت الاستجابة بالمللي ثانية. قد تقلل القيم الأعلى طقطقة الصوت. خلفيات " "معينة فقط." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10727,11 +10829,11 @@ msgstr "Shinkansen Controller" msgid "Show % Speed" msgstr "عرض السرعة" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "السجل" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "شريط الأدوات" @@ -10739,15 +10841,15 @@ msgstr "شريط الأدوات" msgid "Show Active Title in Window Title" msgstr "عرض العنوان النشط في عنوان النافذة" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "عرض الكل" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "أستراليا" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "عرض اللعبة الحالية على ديسكورد" @@ -10756,7 +10858,7 @@ msgstr "عرض اللعبة الحالية على ديسكورد" msgid "Show Disabled Codes First" msgstr "عرض الرموز المعطلة أولاً" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -10769,7 +10871,7 @@ msgstr "عرض الرموز الممكّنة أولاً" msgid "Show FPS" msgstr "FPS عرض" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "عرض عداد الإطار" @@ -10777,15 +10879,15 @@ msgstr "عرض عداد الإطار" msgid "Show Frame Times" msgstr "عرض أوقات الإطار" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "فرنسا" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "جيم كيوب" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "ألمانيا" @@ -10793,27 +10895,27 @@ msgstr "ألمانيا" msgid "Show Golf Mode Overlay" msgstr "Show Golf Mode Overlay" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Infinity عرض قاعدة" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "عرض مدخلات العرض" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "ايطاليا" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "اليابان" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "كوريا" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "عرض عداد التأخر" @@ -10821,7 +10923,7 @@ msgstr "عرض عداد التأخر" msgid "Show Language:" msgstr "عرض اللغة" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "إعداد السجل" @@ -10833,7 +10935,7 @@ msgstr "عرض رسائل اللعب عبر الشبكة" msgid "Show NetPlay Ping" msgstr "في اللعب عبر الشبكة Ping عرض الـ" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "هولندا" @@ -10841,12 +10943,12 @@ msgstr "هولندا" msgid "Show On-Screen Display Messages" msgstr "عرض الرسائل المعروضة على الشاشة" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "أوروبا" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "عرض الكمبيوتر" @@ -10854,7 +10956,7 @@ msgstr "عرض الكمبيوتر" msgid "Show Performance Graphs" msgstr "عرض الرسوم البيانية للأداء" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "عرض المنصات" @@ -10862,23 +10964,23 @@ msgstr "عرض المنصات" msgid "Show Projection Statistics" msgstr "عرض إحصائيات الإسقاط" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "عرض المناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "عرض عداد إعادة التسجيل" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "روسيا" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Skylanders عرض بوابة" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "اسبانيا" @@ -10890,19 +10992,23 @@ msgstr "عرض ألوان السرعة" msgid "Show Statistics" msgstr "عرض الإحصاءات" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "عرض ساعة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "تايوان" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "امريكا" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "غير معروف" @@ -10914,27 +11020,27 @@ msgstr "VBlank عرض أوقات" msgid "Show VPS" msgstr "VPS عرض " -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "وي" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "العالم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "تظهر في الذاكرة" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "عرض في التعليمات البرمجية" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "عرض في الذاكرة" @@ -10951,13 +11057,9 @@ msgstr "عرض في الذاكرة" msgid "Show in server browser" msgstr "عرض في مستعرض الخادم" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "أظهر الهدف في الذاكرة" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10990,18 +11092,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11022,6 +11112,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11054,6 +11156,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Side-by-Side" @@ -11070,7 +11180,7 @@ msgstr "جانبية" msgid "Sideways Wii Remote" msgstr "انحراف ريموت وي" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "قاعدة بيانات التوقيع" @@ -11119,7 +11229,7 @@ msgstr "" "حجم المخزن المؤقت للتمدد بالمللي ثانية. قد تؤدي القيم المنخفضة جدًا إلى حدوث " "صوت طقطقة." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "تخطى" @@ -11297,6 +11407,10 @@ msgstr "" msgid "Speed" msgstr "سرعة" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11333,11 +11447,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "بدء بحث أسرار جديدة" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "بدء التسجيل" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "بدء التسجيل" @@ -11376,39 +11490,39 @@ msgstr "خطوة" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "خطوة الى" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "خطوة لخارج" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "خطوة أكثر" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "الخروج ناجح!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "مهلة الخروج !" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "خطوة أكثر في التقدم" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "خطوة ناجحة!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "التنقل" @@ -11417,7 +11531,7 @@ msgstr "التنقل" msgid "Stereo" msgstr "استريو" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "3D وضع ثلاثي الأبعاد" @@ -11447,7 +11561,7 @@ msgstr "عصا" msgid "Stop" msgstr "إيقاف" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "إيقاف تشغيل / تسجيل الإدخال" @@ -11516,14 +11630,14 @@ msgstr "النمط" msgid "Stylus" msgstr "مرقم" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "ناجح" @@ -11550,24 +11664,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "تم تصدير ملفات الحفظ بنجاح" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "تم استخراج الشهادات بنجاح من NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "تم استخراج الملف بنجاح." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "استخرجت بنجاح بيانات النظام." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "تم استيراد ملف الحفظ بنجاح" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "تم بنجاح تثبيت هذا العنوان على NAND." @@ -11618,7 +11732,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11643,17 +11757,21 @@ msgstr "B التبديل إلى" msgid "Symbol" msgstr "رمز" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "رمز (1%) عنوان النهاية:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "اسم الرمز" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "رموز" @@ -11704,7 +11822,7 @@ msgstr "جارٍ مزامنة حفظ البيانات" msgid "System Language:" msgstr "لغة النظام" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "الإدخال" @@ -11715,9 +11833,9 @@ msgid "TAS Tools" msgstr "TAS أدوات" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "العلامات" @@ -11735,7 +11853,7 @@ msgstr "" msgid "Taiwan" msgstr "تايوان" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "لقطة للشاشة" @@ -11743,7 +11861,7 @@ msgstr "لقطة للشاشة" msgid "Target address range is invalid." msgstr "نطاق العنوان المستهدف غير صالح." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11778,7 +11896,7 @@ msgstr "دقة ذاكرة التخزين المؤقت للنسيج" msgid "Texture Dumping" msgstr "تفريغ النسيج" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "تصفية النسيج" @@ -11823,7 +11941,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "أقسام نادرة مفقودة." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11831,7 +11949,7 @@ msgstr "" "NAND لا يمكن إصلاح\n" "يوصى بعمل نسخة احتياطية من بياناتك الحالية والبدء من جديد" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND تم اصلاح" @@ -11991,7 +12109,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "نظام الملفات غير صالح أو لا يمكن قراءته." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12123,7 +12241,7 @@ msgid "" msgstr "" "%1 لا يمكن استخدام نفس الملف في فتحات متعددة؛ يتم استخدامه بالفعل من قبل " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12161,7 +12279,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12220,7 +12338,7 @@ msgstr "قسم التحديث مفقود" msgid "The update partition is not at its normal position." msgstr "قسم التحديث ليس في وضعه الطبيعي" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12336,7 +12454,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "هذا لا يمكن التراجع عنه" @@ -12562,7 +12680,7 @@ msgstr "المواضيع" msgid "Threshold" msgstr "بداية" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "تيرابايت" @@ -12581,10 +12699,10 @@ msgstr "الفترة الزمنية للإدخال المستقر لتشغيل msgid "Timed Out" msgstr "انتهت مهله" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "العنوان" @@ -12592,25 +12710,29 @@ msgstr "العنوان" msgid "To" msgstr "إلى" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "إلى" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "ملء الشاشة" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Toggle 3D Anaglyph" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Toggle 3D Side-by-Side" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Toggle 3D Top-Bottom" @@ -12618,28 +12740,28 @@ msgstr "Toggle 3D Top-Bottom" msgid "Toggle All Log Types" msgstr "كافة أنواع السجلات" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "نسبة الابعاد" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "نقطة التوقف" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "الاقتصاص" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "النسيج المخصص" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB نسخ" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "الضباب" @@ -12651,31 +12773,31 @@ msgstr "ملء الشاشة" msgid "Toggle Pause" msgstr "إيقاف مؤقت" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "SD Card" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "تفريغ النسيج" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "لوحة مفاتيح يو إس بي" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Toggle XFB Copies" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Toggle XFB Immediate Mode" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Tokenizing فشل" @@ -12798,7 +12920,7 @@ msgid "Trophy" msgstr "كأس" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12828,7 +12950,7 @@ msgstr "محاكاة جهاز يو اس بي" msgid "USB Emulation" msgstr "محاكاة يو اس بي" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "محاكاة اجهزة يو اس بي" @@ -12866,15 +12988,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "RSO تعذر الكشف التلقائي عن وحدة" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "غير قادر على الاتصال بخادم التحديث" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "غير قادر على إنشاء نسخة محدث" @@ -12914,7 +13036,7 @@ msgstr "" msgid "Unable to read file." msgstr "غير قادر على قراءة الملف" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "غير قادر على تعيين أذونات على نسخة المحدث" @@ -12937,11 +13059,11 @@ msgstr "غير مضغوطة GC/Wii صورة (*.iso *.gcm)" msgid "Undead" msgstr "ميت حي" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "تراجع عن تحميل الحالة" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "تراجع عن حفظ الحالة" @@ -12962,7 +13084,7 @@ msgstr "" "NAND إلى إزالة الإصدار المثبت حاليًا من هذا العنوان من\n" "دون حذف بيانات الحفظ الخاصة به. استمر؟" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "امريكا" @@ -13058,11 +13180,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "غير محدود" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "إلغاء تحميل القرص" @@ -13070,7 +13192,12 @@ msgstr "إلغاء تحميل القرص" msgid "Unlock Cursor" msgstr "فتح المؤشر" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13081,7 +13208,7 @@ msgstr "تفريغ" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:309 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:805 msgid "Unsaved Changes" -msgstr "" +msgstr "التغييرات غير المحفوظة" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:142 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:193 @@ -13170,7 +13297,7 @@ msgstr "عمودي" msgid "Upright Wii Remote" msgstr "ريموت وي وضع عمودي" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "إعدادات تقارير إحصائيات الاستخدام " @@ -13267,7 +13394,7 @@ msgstr "اسم المستخدم" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13341,7 +13468,7 @@ msgstr "VBI Skip" msgid "Value" msgstr "القيمة" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "القيمة تتبع التعليمات الحالية" @@ -13429,22 +13556,22 @@ msgstr "الشقوق الافتراضية" msgid "Virtual address space" msgstr "مساحة العنوان الافتراضية" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "الصوت" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "خفض مستوى الصوت" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr " كتم الصوت" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "رفع مستوى الصوت" @@ -13452,7 +13579,7 @@ msgstr "رفع مستوى الصوت" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "(*.wad) ملفات" @@ -13563,7 +13690,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "تحذير" @@ -13678,7 +13805,7 @@ msgstr "الاجهزة المسموح لها المرور خلال منفذ يو msgid "Widescreen Hack" msgstr "شاشة عريضة" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13748,7 +13875,7 @@ msgstr "وي و ريموت وي" msgid "Wii data is not public yet" msgstr "بيانات وي ليست عامة بعد" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "ملفات حفظ وي (*.bin);;كل الملفات (*)" @@ -13783,11 +13910,11 @@ msgstr "عالم" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "كتابة" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13934,7 +14061,7 @@ msgstr "" "\"Phantasy Star Online Episode I & II\".\n" "إذا لم تكن متأكدًا ، فارجع الآن وقم بإعداد \"وحدة تحكم قياسية\"." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "تقوم بتشغيل أحدث إصدار متوفر على مسار التحديث هذا" @@ -14002,7 +14129,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -14220,6 +14347,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ فريق دولفين. \"جيم كيوب\" و \"وي\" هما علامتان تجاريتان لشركة " +"نينتندو. لا ينتمي دولفين إلى نينتندو بأي شكل من الأشكال." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/ca.po b/Languages/po/ca.po index 8cc4efd499..b52bc42e42 100644 --- a/Languages/po/ca.po +++ b/Languages/po/ca.po @@ -15,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Puniasterus , 2013-2016,2021-2023\n" -"Language-Team: Catalan (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Catalan (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/ca/)\n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 no admet aquesta funció al teu sistema." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 no admet aquesta funció." @@ -204,7 +204,7 @@ msgstr "%1 s'ha unit" msgid "%1 has left" msgstr "%1 s'ha marxat" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -216,7 +216,7 @@ msgstr "%1 no és una ROM vàlida" msgid "%1 is now golfing" msgstr "%1 ara està jugant al golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -230,7 +230,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -250,22 +250,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (velocitat normal)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -273,6 +273,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -293,7 +297,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -306,7 +310,7 @@ msgstr "%1x Nativa (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -350,10 +354,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Sobre" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -363,23 +371,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Afegir..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Paràmetres d'àudio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Actualització automàtica:" @@ -388,14 +392,14 @@ msgid "&Borderless Window" msgstr "&Finestra sense marges" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Punts d'interrupció" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -409,11 +413,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "&Gestor de trucs" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -421,7 +425,7 @@ msgstr "" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Codi" @@ -429,18 +433,15 @@ msgstr "&Codi" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Configuració del controlador" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -476,7 +477,7 @@ msgstr "&Edita..." msgid "&Eject Disc" msgstr "&Expulsa el disc" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulació" @@ -501,36 +502,36 @@ msgstr "&Exportar com a .gci..." msgid "&File" msgstr "&Fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "Avança un &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&Repositori GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Configuració de &gràfics" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Configuració de &tecles d'accés" @@ -554,15 +555,15 @@ msgstr "&Importar..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Insertar blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -574,11 +575,11 @@ msgstr "&Idioma:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Carrega una captura d'estat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -592,19 +593,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Enregistrament" @@ -612,7 +613,7 @@ msgstr "&Enregistrament" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -625,19 +626,19 @@ msgstr "&No" msgid "&Open..." msgstr "&Obre..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opcions" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Executar" @@ -645,7 +646,7 @@ msgstr "&Executar" msgid "&Properties" msgstr "&Propietats" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Mode de només lectura" @@ -653,7 +654,7 @@ msgstr "&Mode de només lectura" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registres" @@ -666,12 +667,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reinicia" @@ -683,7 +684,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -695,11 +696,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Aturar" @@ -707,7 +708,7 @@ msgstr "&Aturar" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -729,17 +730,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Vista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Veure" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Pàgina web" @@ -751,11 +752,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -775,7 +776,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(Deshabilitat)" @@ -799,7 +800,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -877,7 +878,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -889,7 +890,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -925,19 +926,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Profunditat 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -961,7 +962,7 @@ msgstr "4:3" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1058,7 +1059,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1088,8 +1089,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Més gran que" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Ja hi ha una sessió NetPlay en curs!" @@ -1107,7 +1108,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1117,7 +1118,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1201,7 +1202,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1277,7 +1278,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1328,11 +1329,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1366,13 +1367,13 @@ msgstr "Afegir..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adreça" @@ -1391,7 +1392,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1451,7 +1452,7 @@ msgstr "Avançat" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1507,7 +1508,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1515,7 +1516,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Tots els fitxers (*)" @@ -1524,7 +1525,7 @@ msgstr "Tots els fitxers (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1533,8 +1534,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1558,11 +1559,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1620,7 +1621,7 @@ msgstr "Angle" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1632,19 +1633,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1658,8 +1659,8 @@ msgstr "Data Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1670,7 +1671,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1707,8 +1708,8 @@ msgstr "Relació d'aspecte:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1769,7 +1770,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Múltiple de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1789,7 +1794,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1803,6 +1808,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1814,7 +1830,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1897,10 +1913,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Pancarta" @@ -1928,7 +1944,7 @@ msgstr "" msgid "Basic" msgstr "Bàsic" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Configuració bàsica" @@ -1988,9 +2004,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2026,15 +2042,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2162,30 +2178,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2281,7 +2297,7 @@ msgstr "" msgid "C Stick" msgstr "Palanca C" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2316,7 +2332,7 @@ msgstr "" msgid "Calculate" msgstr "Calcular" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2378,14 +2394,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2434,7 +2450,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2482,7 +2498,7 @@ msgstr "Canvia el &disc..." msgid "Change Disc" msgstr "Canviar Disc" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2542,7 +2558,7 @@ msgstr "Cerca trucs" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2554,7 +2570,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2572,29 +2588,29 @@ msgstr "Xina" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Trieu un arxiu per obrir" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Seleccioni la carpeta on extreure" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2613,7 +2629,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2623,7 +2639,7 @@ msgstr "Esborrar" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2644,7 +2660,7 @@ msgstr "" msgid "Close" msgstr "Tancar" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2668,7 +2684,7 @@ msgstr "Codi:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2688,7 +2704,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2723,9 +2739,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2750,7 +2766,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2857,9 +2873,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2872,7 +2888,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmar a l'aturar" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2883,7 +2899,7 @@ msgstr "" msgid "Connect" msgstr "Connectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Connectar la Balance Board" @@ -2891,27 +2907,27 @@ msgstr "Connectar la Balance Board" msgid "Connect USB Keyboard" msgstr "Connectar el teclat USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2956,19 +2972,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2980,6 +2996,16 @@ msgstr "" msgid "Controllers" msgstr "Comandaments" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2988,7 +3014,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2996,7 +3022,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3005,7 +3031,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3030,7 +3056,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3117,18 +3143,22 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3137,18 +3167,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3254,8 +3280,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3351,7 +3377,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3539,24 +3565,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Disminuir convergència" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Disminuir profunditat" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3612,8 +3638,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Eliminar" @@ -3631,7 +3657,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3646,9 +3672,9 @@ msgstr "Profunditat:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripció" @@ -3697,7 +3723,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3705,7 +3731,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3763,15 +3789,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3779,11 +3805,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deshabilitar boira" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3805,7 +3831,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3828,7 +3854,8 @@ msgstr "Disc" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3858,15 +3885,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3876,7 +3903,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Voleu aturar l'emulació actual?" @@ -3897,9 +3924,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3911,8 +3938,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin Pel·lícules TAS (*.dtm)" @@ -3959,12 +3986,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3974,7 +3995,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4031,11 +4052,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4078,7 +4099,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Desa l'àudio" @@ -4090,7 +4111,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Bolcat de destinació EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Desa el vídeo" @@ -4207,16 +4228,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4240,7 +4261,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4303,7 +4324,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4323,7 +4344,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Activar Trucs" @@ -4347,9 +4368,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Habilitar Doble nucli" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Habilitar Doble nucli (acceleració)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4393,7 +4414,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4435,7 +4456,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4511,7 +4532,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4545,7 +4566,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4591,6 +4612,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4618,7 +4648,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4669,14 +4699,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4715,26 +4745,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4751,9 +4781,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -4786,7 +4816,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4877,7 +4907,7 @@ msgstr "" msgid "Euphoria" msgstr "Eufòria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -4890,15 +4920,15 @@ msgstr "" msgid "Exit" msgstr "Surt" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4910,19 +4940,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4930,7 +4960,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportar totes les partides guardades de Wii" @@ -4941,11 +4971,11 @@ msgstr "Exportar totes les partides guardades de Wii" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exportar gravació" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exporta l'enregistrament..." @@ -4973,7 +5003,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5001,35 +5031,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extreure arxiu..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5057,7 +5087,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5123,7 +5153,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5152,15 +5182,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5179,25 +5209,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5217,18 +5247,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5240,7 +5270,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5277,7 +5307,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5316,7 +5346,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5452,19 +5482,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5518,8 +5548,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5527,11 +5557,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5567,9 +5598,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5581,20 +5612,20 @@ msgstr "" msgid "File Info" msgstr "informació del fitxer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nom de l'arxiu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Mida del fitxer" @@ -5692,8 +5723,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5760,7 +5791,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5770,7 +5801,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5813,20 +5844,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avançar Fotograma" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5883,11 +5914,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5921,11 +5952,12 @@ msgstr "" msgid "FullScr" msgstr "Amplia" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5945,7 +5977,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5961,11 +5993,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6078,11 +6110,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6116,8 +6148,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID del joc" @@ -6243,7 +6275,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Codis Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6263,14 +6296,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6288,7 +6328,7 @@ msgstr "Alemanya" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6321,7 +6361,7 @@ msgstr "Gràfics" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6330,7 +6370,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6352,7 +6392,7 @@ msgstr "Verd Esquerra" msgid "Green Right" msgstr "Verd Dret" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6434,7 +6474,7 @@ msgstr "Oculta" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6452,12 +6492,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6521,7 +6561,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6622,11 +6662,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6660,6 +6700,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6713,7 +6763,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6728,15 +6778,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6792,24 +6842,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6858,8 +6908,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informació" @@ -6873,10 +6923,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Entrada" @@ -6895,13 +6945,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir la targeta SD" @@ -6919,7 +6966,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6927,8 +6974,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6942,7 +6990,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6951,7 +6999,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7010,8 +7058,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7028,7 +7076,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7036,7 +7084,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7044,7 +7092,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7053,7 +7101,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7134,11 +7182,11 @@ msgstr "Itàlia" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7146,47 +7194,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7198,14 +7246,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7213,11 +7262,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japó" @@ -7239,7 +7288,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7274,7 +7323,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7282,7 +7331,7 @@ msgstr "" msgid "Kick Player" msgstr "Expulsar jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Corea" @@ -7415,6 +7464,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7448,11 +7505,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7462,17 +7519,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7481,7 +7538,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7492,7 +7549,7 @@ msgstr "Carrega textures personalitzades" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7500,16 +7557,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7517,104 +7579,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Carregar estat" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Carregar últim estat 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Carregar últim estat 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Carregar últim estat 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Carregar últim estat 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Carregar últim estat 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Carregar últim estat 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Carregar últim estat 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Carregar últim estat 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Carregar ranura d'estat 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Carregar estat 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Carregar ranura d'estat 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Carregar ranura d'estat 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Carregar ranura d'estat 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Carregar ranura d'estat 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Carregar ranura d'estat 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Carregar ranura d'estat 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Carregar ranura d'estat 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Carregar estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Carrega des d'un fitxer" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Carrega des de la ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Carrega des d'una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7622,20 +7684,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7643,7 +7700,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7668,20 +7725,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Registre" @@ -7691,10 +7748,11 @@ msgid "Log Configuration" msgstr "Configuració del registre" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7733,7 +7791,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7796,9 +7854,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Fabricant" @@ -7807,7 +7865,7 @@ msgstr "Fabricant" msgid "Maker:" msgstr "Fabricant:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7815,7 +7873,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7854,7 +7912,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7870,7 +7928,7 @@ msgstr "" msgid "Memory Card" msgstr "Targeta de memòria" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7898,7 +7956,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7906,7 +7964,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7977,8 +8035,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8020,7 +8078,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8044,10 +8102,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8056,8 +8114,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8066,7 +8124,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8083,8 +8141,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8097,11 +8155,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8180,7 +8238,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8205,7 +8263,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8213,12 +8271,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8226,8 +8285,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8314,7 +8374,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8355,7 +8415,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8555,7 +8615,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Documentació en línia" @@ -8563,13 +8623,13 @@ msgstr "&Documentació en línia" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8590,13 +8650,17 @@ msgstr "" msgid "Open &User Folder" msgstr "Obre la carpeta de l'&usuari" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8698,7 +8762,7 @@ msgstr "Altres" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8715,7 +8779,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8723,16 +8787,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Reprodueix l'enregistrament d'entrades" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8761,7 +8825,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8774,7 +8838,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8837,7 +8901,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pausa al final de l'enregistrament" @@ -8882,7 +8946,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Il·luminació per píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8912,11 +8976,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8932,8 +8996,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plataforma" @@ -8945,7 +9009,7 @@ msgstr "Juga" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Reproduir enregistrament" @@ -9040,7 +9104,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9091,7 +9155,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9109,9 +9173,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9119,8 +9183,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9164,13 +9229,13 @@ msgstr "" msgid "Profile" msgstr "Perfil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9187,11 +9252,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9218,7 +9283,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Pregunta" @@ -9243,11 +9308,11 @@ msgstr "R-Analògic" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9284,13 +9349,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9313,7 +9378,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9372,7 +9437,7 @@ msgstr "Vermell Esquerra" msgid "Red Right" msgstr "Vermell Dret" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9418,8 +9483,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regió" @@ -9440,7 +9505,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9469,7 +9535,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9482,7 +9548,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9514,7 +9580,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9526,7 +9592,7 @@ msgstr "Reiniciar" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9578,8 +9644,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9709,20 +9775,20 @@ msgstr "" msgid "Rumble" msgstr "Vibració" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9792,11 +9858,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "&Desa l'Estat" @@ -9808,7 +9874,7 @@ msgstr "Segur" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9823,22 +9889,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9850,15 +9928,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Desar l'Estat Més Antic" @@ -9866,73 +9948,77 @@ msgstr "Desar l'Estat Més Antic" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Desar Estat" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Desar Ranura d'Estat 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Desar Ranura d'Estat 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Desar Ranura d'Estat 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Desar Ranura d'Estat 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Desar Ranura d'Estat 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Desar Ranura d'Estat 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Desar Ranura d'Estat 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Desar Ranura d'Estat 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Desar Ranura d'Estat 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Desar Ranura d'Estat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9952,11 +10038,7 @@ msgstr "" msgid "Save as..." msgstr "Desar com..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9967,19 +10049,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -10013,7 +10087,7 @@ msgstr "Captura" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Buscar" @@ -10040,7 +10114,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10048,7 +10122,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10084,7 +10158,7 @@ msgstr "Seleccionar" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10093,7 +10167,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10101,18 +10175,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10121,6 +10199,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10129,6 +10211,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10137,58 +10227,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Tria ranura de captura" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Ranura de captura 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Ranura de captura 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Ranura de captura 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Ranura de captura 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Ranura de captura 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Ranura de captura 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Ranura de captura 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Ranura de captura 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Ranura de captura 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Ranura de captura 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10206,24 +10300,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10232,19 +10322,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10252,23 +10338,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Seleccioni el fitxer de partida guardada" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10324,7 +10393,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10367,6 +10436,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" @@ -10375,6 +10465,15 @@ msgstr "Enviar" msgid "Sensor Bar Position:" msgstr "Posició Barra de Sensors" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10403,39 +10502,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10449,7 +10544,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10461,10 +10556,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10515,11 +10617,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Mostrar &Registre" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Mostrar Barra d'&Eines" @@ -10527,15 +10629,15 @@ msgstr "Mostrar Barra d'&Eines" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Mostrar Austràlia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10544,7 +10646,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10557,7 +10659,7 @@ msgstr "" msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Comptador de fotogrames" @@ -10565,15 +10667,15 @@ msgstr "Comptador de fotogrames" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Mostrar Alemanya" @@ -10581,27 +10683,27 @@ msgstr "Mostrar Alemanya" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Visualitza les entrades" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Mostrar Itàlia" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Mostrar Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Comptador de lag" @@ -10609,7 +10711,7 @@ msgstr "Comptador de lag" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Mostrar la &Configuració del Registre" @@ -10621,7 +10723,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10629,12 +10731,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Mostrar PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10642,7 +10744,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Mostrar Plataformes" @@ -10650,23 +10752,23 @@ msgstr "Mostrar Plataformes" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Mostrar Regions" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Comptador de reenregistraments" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10678,19 +10780,23 @@ msgstr "" msgid "Show Statistics" msgstr "Mostrar Estadístiques" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Rellotge del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10702,27 +10808,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10739,13 +10845,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10778,18 +10880,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10810,6 +10900,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10842,6 +10944,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10858,7 +10968,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10905,7 +11015,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11079,6 +11189,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11115,11 +11229,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Comença l'enregistrament d'entrades" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Iniciar Gravació" @@ -11158,39 +11272,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11199,7 +11313,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11229,7 +11343,7 @@ msgstr "Palanca" msgid "Stop" msgstr "Atura" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Atura la reproducció/enregistrament d'entrades" @@ -11298,14 +11412,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11332,24 +11446,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11400,7 +11514,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11425,17 +11539,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11484,7 +11602,7 @@ msgstr "" msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Entrada TAS" @@ -11495,9 +11613,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11515,7 +11633,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Captura de pantalla" @@ -11523,7 +11641,7 @@ msgstr "Captura de pantalla" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11558,7 +11676,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11603,13 +11721,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11760,7 +11878,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11884,7 +12002,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11918,7 +12036,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11976,7 +12094,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12085,7 +12203,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12276,7 +12394,7 @@ msgstr "" msgid "Threshold" msgstr "Llindar" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12295,10 +12413,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Títol" @@ -12306,25 +12424,29 @@ msgstr "Títol" msgid "To" msgstr "A" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Pantalla completa" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12332,28 +12454,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Commutar Tots els Tipus de Registre" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Commutar Relació d'Aspecte" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Commutar Còpies del EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Commutar Boira" @@ -12365,31 +12487,31 @@ msgstr "Commutar Pantalla Completa" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12510,7 +12632,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12540,7 +12662,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12578,15 +12700,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12618,7 +12740,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12641,11 +12763,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Desfés la càrrega de captura" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Desfer Estat Guardat" @@ -12663,7 +12785,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12759,11 +12881,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Il·limitat" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12771,7 +12893,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12869,7 +12996,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12962,7 +13089,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13033,7 +13160,7 @@ msgstr "" msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13121,22 +13248,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Baixar el volum" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Pujar el volum" @@ -13144,7 +13271,7 @@ msgstr "Pujar el volum" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13245,7 +13372,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advertència" @@ -13358,7 +13485,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Modificació de Pantalla Panoràmica" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13428,7 +13555,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13463,11 +13590,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13611,7 +13738,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13675,7 +13802,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/cs.po b/Languages/po/cs.po index d1fc73c584..a01bd6c229 100644 --- a/Languages/po/cs.po +++ b/Languages/po/cs.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zbyněk Schwarz , 2011-2016\n" -"Language-Team: Czech (http://app.transifex.com/delroth/dolphin-emu/language/" -"cs/)\n" +"Language-Team: Czech (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,7 +161,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -192,7 +192,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -206,7 +206,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -226,22 +226,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -249,6 +249,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -269,7 +273,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -282,7 +286,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -326,10 +330,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -339,23 +347,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Nastavení &zvuku" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -364,14 +368,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Body přerušení" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -383,11 +387,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -395,7 +399,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -403,18 +407,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Nastavení ovladače" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -450,7 +451,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulace" @@ -475,36 +476,36 @@ msgstr "" msgid "&File" msgstr "&Soubor" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Postup snímkem" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Ú&ložiště Github" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafická nastavení" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Nápověda" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Nastavení &klávesových zkratek" @@ -528,15 +529,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -548,11 +549,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Nahrát Stav" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -566,19 +567,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "Pa&měť" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Video" @@ -586,7 +587,7 @@ msgstr "&Video" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -599,19 +600,19 @@ msgstr "" msgid "&Open..." msgstr "&Otevřít..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "V&olby" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Přehrát" @@ -619,7 +620,7 @@ msgstr "&Přehrát" msgid "&Properties" msgstr "&Vlastnosti" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Režim pouze pro čtení" @@ -627,7 +628,7 @@ msgstr "&Režim pouze pro čtení" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registry" @@ -640,12 +641,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Resetovat" @@ -657,7 +658,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -669,11 +670,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "Za&stavit" @@ -681,7 +682,7 @@ msgstr "Za&stavit" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -703,17 +704,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Zobrazit" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Sledování" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Internetová stránka" @@ -725,11 +726,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -749,7 +750,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(vypnuto)" @@ -773,7 +774,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -851,7 +852,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -863,7 +864,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -899,19 +900,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -935,7 +936,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1032,7 +1033,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1062,8 +1063,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1081,7 +1082,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1091,7 +1092,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1175,7 +1176,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1302,11 +1303,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1340,13 +1341,13 @@ msgstr "Přidat..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adresa" @@ -1365,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1425,7 +1426,7 @@ msgstr "Pokročilé" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1481,7 +1482,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1489,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1498,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1507,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1532,11 +1533,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1594,7 +1595,7 @@ msgstr "Úhel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1606,19 +1607,19 @@ msgstr "Vyhlazení okrajů" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1632,8 +1633,8 @@ msgstr "Datum zavaděče aplikace:" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1644,7 +1645,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1681,8 +1682,8 @@ msgstr "Poměr Stran:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1743,7 +1744,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Násobek 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1763,7 +1768,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1777,6 +1782,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1788,7 +1804,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1871,10 +1887,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Plakát" @@ -1902,7 +1918,7 @@ msgstr "" msgid "Basic" msgstr "Základní" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Základní nastavení" @@ -1962,9 +1978,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2000,15 +2016,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2136,30 +2152,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2255,7 +2271,7 @@ msgstr "" msgid "C Stick" msgstr "Kruhová páčka" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2290,7 +2306,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2352,14 +2368,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2408,7 +2424,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2456,7 +2472,7 @@ msgstr "Vyměnit &Disk..." msgid "Change Disc" msgstr "Vyměnit Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2516,7 +2532,7 @@ msgstr "Hledání Cheatů" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2528,7 +2544,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2546,29 +2562,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Zvolte soubor k otevření" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Zvolte adresář pro umístění extrakce" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2587,7 +2603,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2597,7 +2613,7 @@ msgstr "Vyčistit" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2618,7 +2634,7 @@ msgstr "" msgid "Close" msgstr "Zavřít" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2642,7 +2658,7 @@ msgstr "Kód:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2662,7 +2678,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2697,9 +2713,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2724,7 +2740,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2831,9 +2847,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2846,7 +2862,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Při zastavení Potvrdit" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,7 +2873,7 @@ msgstr "" msgid "Connect" msgstr "Připojit" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Připojit Rola-Bola" @@ -2865,27 +2881,27 @@ msgstr "Připojit Rola-Bola" msgid "Connect USB Keyboard" msgstr "Připojit USB Klávesnici" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2930,19 +2946,19 @@ msgstr "Ovládací páčka" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2954,6 +2970,16 @@ msgstr "" msgid "Controllers" msgstr "Ovladače" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2962,7 +2988,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2970,7 +2996,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2979,7 +3005,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3004,7 +3030,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3091,18 +3117,22 @@ msgstr "" msgid "Copy" msgstr "Kopírovat" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3111,18 +3141,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3228,8 +3254,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3325,7 +3351,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3513,24 +3539,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Snížit sblížení" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Snížit hloubku" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Snížit rychlost emulace" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Snížit vnitřní rozlišení" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3586,8 +3612,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Smazat" @@ -3605,7 +3631,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3620,9 +3646,9 @@ msgstr "Hloubka:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Popis" @@ -3671,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "Zjistit" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3679,7 +3705,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3737,15 +3763,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Zakázat limit rychlosti emulace" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "Zakázat Mlhu" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3779,7 +3805,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3802,7 +3828,8 @@ msgstr "Disk" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3832,15 +3859,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3850,7 +3877,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Chcete současnou emulaci zastavit?" @@ -3871,9 +3898,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3885,8 +3912,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Doplhin Filmy TAS (*.dtm)" @@ -3933,12 +3960,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3948,7 +3969,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4005,11 +4026,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4052,7 +4073,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Vypsat Zvuk" @@ -4064,7 +4085,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Vypsat Cíl EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Vypsat Snímky" @@ -4181,16 +4202,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4214,7 +4235,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4277,7 +4298,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4297,7 +4318,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Povolit Cheaty" @@ -4321,9 +4342,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Povolit dvojité jádro" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Zapnout dvojité jádro (zrychlení)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4367,7 +4388,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4409,7 +4430,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Povolit hlášení statistik o užívání" @@ -4487,7 +4508,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4521,7 +4542,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4567,6 +4588,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4594,7 +4624,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4645,14 +4675,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4691,26 +4721,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4727,9 +4757,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Chyba" @@ -4761,7 +4791,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4852,7 +4882,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Evropa" @@ -4865,15 +4895,15 @@ msgstr "" msgid "Exit" msgstr "Ukončit" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4885,19 +4915,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4905,7 +4935,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportovat všechny uložené hry Wii" @@ -4916,11 +4946,11 @@ msgstr "Exportovat všechny uložené hry Wii" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exportovat Nahrávku" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exportovat Nahrávku..." @@ -4948,7 +4978,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4976,35 +5006,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Externí vyrovnávací paměť snímků (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extrahovat Soubor..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5032,7 +5062,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5098,7 +5128,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5127,15 +5157,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5154,25 +5184,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5192,18 +5222,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5215,7 +5245,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5252,7 +5282,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5291,7 +5321,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5427,19 +5457,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5493,8 +5523,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5502,11 +5532,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5542,9 +5573,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5556,20 +5587,20 @@ msgstr "" msgid "File Info" msgstr "Informace o souboru" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Název souboru" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Velikost souboru" @@ -5667,8 +5698,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5735,7 +5766,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5745,7 +5776,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5788,20 +5819,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Postup Snímkem" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Snížit rychlost postupu snímkem" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Zvýšit rychlost postupu snímkem" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Resetovat rychlost postupu snímkem" @@ -5858,11 +5889,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5896,11 +5927,12 @@ msgstr "" msgid "FullScr" msgstr "CelObr" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5920,7 +5952,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5936,11 +5968,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6053,11 +6085,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartridže Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6091,8 +6123,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID hry" @@ -6218,7 +6250,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Kódy Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6238,14 +6271,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Vytvořit novou identitu pro statistiky" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6263,7 +6303,7 @@ msgstr "Německo" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6296,7 +6336,7 @@ msgstr "Grafika" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6305,7 +6345,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6327,7 +6367,7 @@ msgstr "Zelená vlevo" msgid "Green Right" msgstr "Zelená vpravo" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6409,7 +6449,7 @@ msgstr "Skrýt" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6427,12 +6467,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6496,7 +6536,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6597,11 +6637,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6635,6 +6675,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6688,7 +6738,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6703,15 +6753,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6767,24 +6817,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Zvýšit sblížení" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Zvýšit hloubku" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Zvýšit rychlost emulace" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Zvýšit vnitřní rozlišení" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6833,8 +6883,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informace" @@ -6848,10 +6898,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Vstup" @@ -6870,13 +6920,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Vložit SD Kartu" @@ -6894,7 +6941,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6902,8 +6949,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6917,7 +6965,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6926,7 +6974,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6985,8 +7033,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7003,7 +7051,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Převaděč (nejpomalejší)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7011,7 +7059,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7019,7 +7067,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7028,7 +7076,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7108,11 +7156,11 @@ msgstr "Itálie" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7120,47 +7168,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7172,14 +7220,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7187,11 +7236,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japonsko" @@ -7213,7 +7262,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7248,7 +7297,7 @@ msgstr "" msgid "Keys" msgstr "Klávesy" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7256,7 +7305,7 @@ msgstr "" msgid "Kick Player" msgstr "Vykopnout hráče" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7389,6 +7438,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7422,11 +7479,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7436,17 +7493,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Nahrát" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7455,7 +7512,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7466,7 +7523,7 @@ msgstr "Nahrát Vlastní Textury" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7474,16 +7531,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7491,104 +7553,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Načíst stav" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Načíst 1. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Načíst 10. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Načíst 2. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Načíst 3. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Načíst 4. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Načíst 5. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Načíst 6. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Načíst 7. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Načíst 8. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Načíst 9. uložený stav" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Nahrát stav v pozici 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Načíst stav v pozici 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Nahrát stav v pozici 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Nahrát stav v pozici 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Nahrát stav v pozici 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Nahrát stav v pozici 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Nahrát stav v pozici 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Nahrát stav v pozici 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Nahrát stav v pozici 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Načíst stav v pozici 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7596,20 +7658,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7617,7 +7674,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7642,20 +7699,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Záznam" @@ -7665,10 +7722,11 @@ msgid "Log Configuration" msgstr "Nastavení Záznamu" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7707,7 +7765,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7770,9 +7828,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Tvůrce" @@ -7781,7 +7839,7 @@ msgstr "Tvůrce" msgid "Maker:" msgstr "Výrobce:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7789,7 +7847,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7828,7 +7886,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Může způsobit zpomalování v nabídce Wii a u některých her." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7844,7 +7902,7 @@ msgstr "" msgid "Memory Card" msgstr "Paměťová karta" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7872,7 +7930,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7880,7 +7938,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7951,8 +8009,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7994,7 +8052,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8018,10 +8076,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8030,8 +8088,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8040,7 +8098,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8057,8 +8115,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8071,11 +8129,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8154,7 +8212,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8179,7 +8237,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Nová identita vytvořena." @@ -8187,12 +8245,13 @@ msgstr "Nová identita vytvořena." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8200,8 +8259,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8288,7 +8348,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8330,7 +8390,7 @@ msgstr "" "Žádné undo.dtm nenalezeno, aby se zabránilo desynchronizaci videa, bude " #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8530,7 +8590,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online &dokumentace" @@ -8538,13 +8598,13 @@ msgstr "Online &dokumentace" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8565,13 +8625,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8673,7 +8737,7 @@ msgstr "Jiné" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8690,7 +8754,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8698,16 +8762,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Spustit vstupní nahrávku..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8736,7 +8800,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8749,7 +8813,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pady" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8812,7 +8876,7 @@ msgstr "Pozastavit" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pozastavit na konci videa" @@ -8857,7 +8921,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvětlení Podle Pixelu" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8887,11 +8951,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8907,8 +8971,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platforma" @@ -8920,7 +8984,7 @@ msgstr "Spustit" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Přehrát nahrávku" @@ -9015,7 +9079,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9066,7 +9130,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9084,9 +9148,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9094,8 +9158,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9139,13 +9204,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9162,11 +9227,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9193,7 +9258,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Otázka" @@ -9218,11 +9283,11 @@ msgstr "Pravý Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9259,13 +9324,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9288,7 +9353,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9347,7 +9412,7 @@ msgstr "Červená vlevo" msgid "Red Right" msgstr "Červená vpravo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9393,8 +9458,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Oblast" @@ -9415,7 +9480,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9444,7 +9510,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9457,7 +9523,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9489,7 +9555,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9501,7 +9567,7 @@ msgstr "Resetovat" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9553,8 +9619,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9684,20 +9750,20 @@ msgstr "" msgid "Rumble" msgstr "Vibrace" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9767,11 +9833,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Uložit Sta&v" @@ -9783,7 +9849,7 @@ msgstr "Bezpečná" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9798,22 +9864,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9825,15 +9903,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Načíst nejstarší stav" @@ -9841,73 +9923,77 @@ msgstr "Načíst nejstarší stav" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Uložit stav" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Uložit stav do pozice 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Uložit stav do pozice 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Uložit stav do pozice 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Uložit stav do pozice 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Uložit stav do pozice 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Uložit stav do pozice 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Uložit stav do pozice 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Uložit stav do pozice 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Uložit stav do pozice 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Uložit stav do pozice 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9927,11 +10013,7 @@ msgstr "" msgid "Save as..." msgstr "Uložit jako" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9942,19 +10024,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9988,7 +10062,7 @@ msgstr "SnímkObrz" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Hledat" @@ -10015,7 +10089,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10023,7 +10097,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10059,7 +10133,7 @@ msgstr "Vybrat" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10068,7 +10142,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10076,18 +10150,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10096,6 +10174,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10104,6 +10186,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10112,58 +10202,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Vybrat pozici stavu" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Vybrat stav na pozici 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Vybrat stav na pozici 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Vybrat stav na pozici 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Vybrat stav na pozici 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Vybrat stav na pozici 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Vybrat stav na pozici 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Vybrat stav na pozici 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Vybrat stav na pozici 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Vybrat stav na pozici 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Vybrat stav na pozici 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10181,24 +10275,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10207,19 +10297,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10227,23 +10313,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Vyberte soubor s uloženou hrou" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10299,7 +10368,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10342,6 +10411,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Poslat" @@ -10350,6 +10440,15 @@ msgstr "Poslat" msgid "Sensor Bar Position:" msgstr "Umístění Senzorové Tyče:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10378,39 +10477,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10426,7 +10521,7 @@ msgstr "Nastaví jazyk systému Wii" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10438,10 +10533,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10492,11 +10594,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Zobrazit Záznam" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Zobrazit Panel Nás&trojů" @@ -10504,15 +10606,15 @@ msgstr "Zobrazit Panel Nás&trojů" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Zobrazit Autrálii" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10521,7 +10623,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Zobrazit ELF/DOL" @@ -10534,7 +10636,7 @@ msgstr "" msgid "Show FPS" msgstr "Zobrazit Snímky za Sekundu" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Zobrazit počítadlo snímků" @@ -10542,15 +10644,15 @@ msgstr "Zobrazit počítadlo snímků" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Zobrazit Francii" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Zobrazit GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Zobrazit Německo" @@ -10558,27 +10660,27 @@ msgstr "Zobrazit Německo" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Zobrazit Obrazovku Vstupu" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Zobrazit Itálii" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Zobrazit Koreu" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Zobrazit počítadlo zpoždění" @@ -10586,7 +10688,7 @@ msgstr "Zobrazit počítadlo zpoždění" msgid "Show Language:" msgstr "Jazyk Zobrazení:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Zobrazit Nastavení &Záznamu" @@ -10598,7 +10700,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Zobrazit Nizozemí" @@ -10606,12 +10708,12 @@ msgstr "Zobrazit Nizozemí" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Zobrazit PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10619,7 +10721,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Zobrazit Platformy" @@ -10627,23 +10729,23 @@ msgstr "Zobrazit Platformy" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Zobrazit Regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Zobrazit Rusko" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Zobrazit Španělsko" @@ -10655,19 +10757,23 @@ msgstr "" msgid "Show Statistics" msgstr "Zobrazit Statistiky" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Zobrazit Tchaj-wan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Zobrazit USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Zobrazit neznámé" @@ -10679,27 +10785,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Zobrazit WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Zobrazit Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Zobrazit svět" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10716,13 +10822,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10755,18 +10857,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10787,6 +10877,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10819,6 +10921,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Vedle sebe" @@ -10835,7 +10945,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10882,7 +10992,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11056,6 +11166,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11092,11 +11206,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Začít nahrávat vstup" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Začít Nahrávat" @@ -11135,39 +11249,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11176,7 +11290,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11206,7 +11320,7 @@ msgstr "Páčka" msgid "Stop" msgstr "Zastavit" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11275,14 +11389,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11309,24 +11423,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11377,7 +11491,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11402,17 +11516,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11461,7 +11579,7 @@ msgstr "" msgid "System Language:" msgstr "Jazyk Systému:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS Vstup" @@ -11472,9 +11590,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11492,7 +11610,7 @@ msgstr "" msgid "Taiwan" msgstr "Tchaj-wan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Vytvořit Snímek Obrazovky" @@ -11500,7 +11618,7 @@ msgstr "Vytvořit Snímek Obrazovky" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11535,7 +11653,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11580,13 +11698,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11737,7 +11855,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11861,7 +11979,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11895,7 +12013,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11953,7 +12071,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12062,7 +12180,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12254,7 +12372,7 @@ msgstr "" msgid "Threshold" msgstr "Práh" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12273,10 +12391,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Název" @@ -12284,25 +12402,29 @@ msgstr "Název" msgid "To" msgstr "Do" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Přepnout 3D anaglyf" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12310,28 +12432,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Zapnout Všechny Typy Záznamů" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Přepínat poměr stran" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Přepnout oříznutí" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Přepínat kopie EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Přepínat mlhu" @@ -12343,31 +12465,31 @@ msgstr "Přepnout na Celou Obrazovku" msgid "Toggle Pause" msgstr "Pozastavit" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12488,7 +12610,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12518,7 +12640,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12556,15 +12678,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12596,7 +12718,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12619,11 +12741,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Vrátit zpět Nahrání Stavu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Vrátit zpět Uložení Stavu" @@ -12641,7 +12763,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12737,11 +12859,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Neomezeno" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12749,7 +12871,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12847,7 +12974,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Nastavení hlášení statistik o užívání" @@ -12940,7 +13067,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13011,7 +13138,7 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13099,22 +13226,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Hlasitost" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Snížit hlasitost" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Zapnout ztlumení zvuku" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Zvýšit hlasitost" @@ -13122,7 +13249,7 @@ msgstr "Zvýšit hlasitost" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13223,7 +13350,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varování" @@ -13336,7 +13463,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Hack Širokoúhlého obrazu" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13406,7 +13533,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13441,11 +13568,11 @@ msgstr "Světové" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13589,7 +13716,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13653,7 +13780,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/da.po b/Languages/po/da.po index 4d4efdfb22..9e778b7974 100644 --- a/Languages/po/da.po +++ b/Languages/po/da.po @@ -15,11 +15,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Lars Lyngby , 2020-2022\n" -"Language-Team: Danish (http://app.transifex.com/delroth/dolphin-emu/language/" -"da/)\n" +"Language-Team: Danish (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/da/)\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 understøtter ikke funktionen på dit system." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 understøtter ikke funktionen." @@ -199,7 +199,7 @@ msgstr "%1 ha tilsluttet sig" msgid "%1 has left" msgstr "%1 har forladt gruppen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -211,7 +211,7 @@ msgstr "%1 er ikke en gyldig ROM" msgid "%1 is now golfing" msgstr "%1 spiller golf nu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -225,7 +225,7 @@ msgid "%1 ms" msgstr "%1 ms." #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -245,22 +245,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normal hastighed)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -268,6 +268,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -288,7 +292,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -301,7 +305,7 @@ msgstr "%1x Oprindelig (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -345,10 +349,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Om" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Tilføj Hukommelsesbreakpoint" @@ -358,23 +366,19 @@ msgstr "&Tilføj Hukommelsesbreakpoint" msgid "&Add New Code..." msgstr "&Tilføj ny kode..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Tilføj funktion" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Tilføj..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Lydindstillinger" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -383,14 +387,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Breakpoints" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -402,11 +406,11 @@ msgstr "&Annuller" msgid "&Cheats Manager" msgstr "&Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Tjek for opdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Ryd symboler" @@ -414,7 +418,7 @@ msgstr "&Ryd symboler" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Kode" @@ -422,18 +426,15 @@ msgstr "&Kode" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Kontrollerindstillinger" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Kopiér adresse" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -469,7 +470,7 @@ msgstr "&Rediger..." msgid "&Eject Disc" msgstr "&Skub disk ud" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulation" @@ -494,36 +495,36 @@ msgstr "" msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Skrifttype..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Billedfremskydning" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub-repertoire" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafikindstillinger" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Hjælp" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Genvejstastindstillinger" @@ -547,15 +548,15 @@ msgstr "&Importér..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -567,11 +568,11 @@ msgstr "&Sprog:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Indlæs Tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -585,19 +586,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Hukommelse" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Film" @@ -605,7 +606,7 @@ msgstr "&Film" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -618,19 +619,19 @@ msgstr "" msgid "&Open..." msgstr "&Åbn..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Afspil" @@ -638,7 +639,7 @@ msgstr "&Afspil" msgid "&Properties" msgstr "&Indstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Read-Only Tilstand" @@ -646,7 +647,7 @@ msgstr "&Read-Only Tilstand" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registre" @@ -659,12 +660,12 @@ msgstr "&Fjern" msgid "&Remove Code" msgstr "&Fjern kode" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Nulstil" @@ -676,7 +677,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -688,11 +689,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Hastighedsgrænse:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Stop" @@ -700,7 +701,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -722,17 +723,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Vis" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Betragt" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Website" @@ -744,11 +745,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -768,7 +769,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(fra)" @@ -792,7 +793,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -870,7 +871,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -882,7 +883,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -918,19 +919,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D-dybde" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -954,7 +955,7 @@ msgstr "4:3" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1051,7 +1052,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1081,8 +1082,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1100,7 +1101,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "En disk er allerede ved at blive sat ind" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1110,7 +1111,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1208,7 +1209,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1284,7 +1285,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktiv" @@ -1335,11 +1336,11 @@ msgstr "Leg til ny USB enhed" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Tilføj et hukommelsesbreakpoint" @@ -1373,13 +1374,13 @@ msgstr "Tilføj..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adresse" @@ -1398,7 +1399,7 @@ msgstr "" msgid "Address:" msgstr "Adresse:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1458,7 +1459,7 @@ msgstr "Avanceret" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1514,7 +1515,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1522,7 +1523,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1531,7 +1532,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1540,8 +1541,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle gemte tilstande (*.sav *.s##);; All Files (*)" @@ -1565,11 +1566,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1627,7 +1628,7 @@ msgstr "Vinkel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1639,19 +1640,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1665,8 +1666,8 @@ msgstr "Apploader Dato:" msgid "Apply" msgstr "Anvend" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1677,7 +1678,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "Er du sikker på, at du vil slette '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Er du sikker på, at du vil slette denne fil?" @@ -1714,8 +1715,8 @@ msgstr "Formatforhold:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1776,7 +1777,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplum af 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1796,7 +1801,7 @@ msgstr "" msgid "Auto-Hide" msgstr "Auto-skjul" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1810,6 +1815,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1821,7 +1837,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1904,10 +1920,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -1935,7 +1951,7 @@ msgstr "" msgid "Basic" msgstr "Basis" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Basisindstillinger" @@ -1995,9 +2011,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blokstørrelse" @@ -2035,15 +2051,15 @@ msgstr "" "Bluetooth gennemgangstilstand er aktiveret, men Dolphin blev bygget uden " "libusb. Gennemgangstilstand kan ikke bruges." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup-fil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2171,30 +2187,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2290,7 +2306,7 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2325,7 +2341,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2387,14 +2403,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2443,7 +2459,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2491,7 +2507,7 @@ msgstr "Skift &Disk..." msgid "Change Disc" msgstr "Skift Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2551,7 +2567,7 @@ msgstr "Snydesøgning" msgid "Cheats Manager" msgstr "Snydemanager" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Tjek NAND..." @@ -2563,7 +2579,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2581,29 +2597,29 @@ msgstr "Kina" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Angiv en fil at åbne" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Angiv en mappe at udpakke til" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2622,7 +2638,7 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2632,7 +2648,7 @@ msgstr "Ryd" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Ryd cache" @@ -2653,7 +2669,7 @@ msgstr "Klon og &Rediger kode..." msgid "Close" msgstr "Luk" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "&Konfiguration" @@ -2677,7 +2693,7 @@ msgstr "Kode:" msgid "Codes received!" msgstr "Koder modtaget!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2697,7 +2713,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2732,9 +2748,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "Kompilerer shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2759,7 +2775,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Betingelse" @@ -2866,9 +2882,9 @@ msgstr "Konfigurer output" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekræft" @@ -2881,7 +2897,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Bekræft ved Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2892,7 +2908,7 @@ msgstr "Bekræftelse" msgid "Connect" msgstr "Tilslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Forbind Balanceboard" @@ -2900,27 +2916,27 @@ msgstr "Forbind Balanceboard" msgid "Connect USB Keyboard" msgstr "Forbind USB Tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Tilslut Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Tilslut Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Tilslut Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Tilslut Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Tilslut Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Tilslut Wii Remotes" @@ -2965,19 +2981,19 @@ msgstr "Kontrol-Stick" msgid "Controller Profile" msgstr "Kontrollerprofil" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2989,6 +3005,16 @@ msgstr "Kontrollerindstillinger" msgid "Controllers" msgstr "Kontrollere" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2997,7 +3023,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3005,7 +3031,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3014,7 +3040,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3041,7 +3067,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3128,18 +3154,22 @@ msgstr "" msgid "Copy" msgstr "Kopiér" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopiér &funktion" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopier adresse" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3148,18 +3178,14 @@ msgstr "" msgid "Copy Hex" msgstr "Kopiér Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Kopiér til A" @@ -3267,8 +3293,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3364,7 +3390,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3552,24 +3578,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Formindsk Konvergens" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Formindsk Dybde" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Sænk emulationshastighed" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Formindst IR" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3625,8 +3651,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Slet" @@ -3644,7 +3670,7 @@ msgstr "Slet valgte filer..." msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3659,9 +3685,9 @@ msgstr "Dybde:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" @@ -3710,7 +3736,7 @@ msgstr "" msgid "Detect" msgstr "Opfang" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3718,7 +3744,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3776,15 +3802,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "Deaktiver EFB VRAM kopier" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Deaktiver begrænsning af emulationshastighed" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3792,11 +3818,11 @@ msgstr "" msgid "Disable Fog" msgstr "Deaktivér tåge" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Deaktiver JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3818,7 +3844,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3841,7 +3867,8 @@ msgstr "Disk" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3871,15 +3898,15 @@ msgstr "Afstand" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3889,7 +3916,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Ønsker du at stoppe den igangværende emulation?" @@ -3910,9 +3937,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3924,8 +3951,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-film (*.dtm)" @@ -3972,12 +3999,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins snydesystem er slået fra." @@ -3987,7 +4008,7 @@ msgstr "Dolphins snydesystem er slået fra." msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Opdater ikke" @@ -4044,11 +4065,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4091,7 +4112,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dump Lyd" @@ -4103,7 +4124,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Drop EFB Mål" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dump Billeder" @@ -4220,16 +4241,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4253,7 +4274,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4316,7 +4337,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emulationshastighed" @@ -4336,7 +4357,7 @@ msgstr "Aktivér API Valideringslag" msgid "Enable Audio Stretching" msgstr "Aktivér lydtrækning" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Aktivér snydekoder" @@ -4360,9 +4381,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Aktivér dualcore" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Aktivér dualcore (højere hastighed)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4406,7 +4427,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4448,7 +4469,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Aktivér rapportering af brugsstatistik" @@ -4528,7 +4549,7 @@ msgstr "" "Aktivér beregning af Floating Point resultatflag anvendt i enkelte spil. " "(TIL = Kompatibel, FRA = Hurtig)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4562,7 +4583,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4609,6 +4630,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4636,7 +4666,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4687,14 +4717,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4733,26 +4763,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4769,9 +4799,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fejl" @@ -4804,7 +4834,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4895,7 +4925,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:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -4908,15 +4938,15 @@ msgstr "" msgid "Exit" msgstr "Afslut" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4928,19 +4958,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4948,7 +4978,7 @@ msgstr "" msgid "Experimental" msgstr "Eksperimentel" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-saves" @@ -4959,11 +4989,11 @@ msgstr "Eksporter alle Wii-saves" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Eksporter optagelse" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Eksporter optagelse..." @@ -4991,7 +5021,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5019,35 +5049,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Ekstern framebuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Udpak fil..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5075,7 +5105,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5141,7 +5171,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5170,15 +5200,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5197,25 +5227,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5235,18 +5265,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5258,7 +5288,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5295,7 +5325,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5334,7 +5364,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5470,19 +5500,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5536,8 +5566,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5545,11 +5575,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5585,9 +5616,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5599,20 +5630,20 @@ msgstr "" msgid "File Info" msgstr "Filinfo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Filnavn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Filstørrelse" @@ -5710,8 +5741,8 @@ msgstr "Flag" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5778,7 +5809,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5788,7 +5819,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5831,20 +5862,20 @@ msgstr "" msgid "Frame %1" msgstr "Billede %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Billedfremskydning" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Nedsæt 'Næste frame'-hastighed" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Billedfremskydning Forøg Hastighed" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Billedfremskydning Nulstil Hastighed" @@ -5901,11 +5932,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5939,11 +5970,12 @@ msgstr "Fra:" msgid "FullScr" msgstr "Fuld skærm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funktion" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5963,7 +5995,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5979,11 +6011,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6096,11 +6128,11 @@ msgstr "Spil" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-kassetter (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6134,8 +6166,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Spil-id" @@ -6261,7 +6293,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko-koder" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6281,14 +6314,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Generer en ny identitet til statistik" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6306,7 +6346,7 @@ msgstr "Tyskland" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6339,7 +6379,7 @@ msgstr "Grafik" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Grafikindstillinger" @@ -6348,7 +6388,7 @@ msgstr "Grafikindstillinger" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6370,7 +6410,7 @@ msgstr "Grøn venstre" msgid "Green Right" msgstr "Grøn højre" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6452,7 +6492,7 @@ msgstr "Skjul" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6470,12 +6510,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Høj " @@ -6539,7 +6579,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "Genvejstastindstillinger" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6640,11 +6680,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6686,6 +6726,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6739,7 +6789,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6754,15 +6804,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importer Wii-save..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importerer NAND-backup" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6818,24 +6868,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Forøg konvergens" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Forøg dybte" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Forøg emulationshastighed" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Forøg IR" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6884,8 +6934,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Information" @@ -6899,10 +6949,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Input" @@ -6921,13 +6971,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Indsæt SD-kort" @@ -6945,7 +6992,7 @@ msgstr "" msgid "Install Update" msgstr "Installer opdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Installere WAD..." @@ -6953,8 +7000,9 @@ msgstr "Installere WAD..." msgid "Install to the NAND" msgstr "Installer til NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6968,7 +7016,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instruktion:" @@ -6977,7 +7025,7 @@ msgstr "Instruktion:" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7036,8 +7084,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7054,7 +7102,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (langsomst)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7062,7 +7110,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7070,7 +7118,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ugyldig mix-kode" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7079,7 +7127,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7159,11 +7207,11 @@ msgstr "Italien" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT blok sammenkædning slået fra" @@ -7171,47 +7219,47 @@ msgstr "JIT blok sammenkædning slået fra" msgid "JIT Blocks" msgstr "JIT blokke" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7223,14 +7271,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7238,11 +7287,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japan" @@ -7264,7 +7313,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7299,7 +7348,7 @@ msgstr "" msgid "Keys" msgstr "Taster" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7307,7 +7356,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Smid spiller ud" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7440,6 +7489,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7473,11 +7530,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7487,17 +7544,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Indlæs" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7506,7 +7563,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7517,7 +7574,7 @@ msgstr "Indlæs tilpassede teksturer" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7525,16 +7582,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7542,104 +7604,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Indlæs tilstand" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Indlæs sidste tilstand 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Indlæs sidste tilstand 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Indlæs sidste tilstand 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Indlæs sidste tilstand 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Indlæs sidste tilstand 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Indlæs sidste tilstand 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Indlæs sidste tilstand 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Indlæs sidste tilstand 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Indlæs sidste tilstand 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Indlæs sidste tilstand 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Indlæs tilstand plads 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Indlæs tilstand plads 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Indlæs tilstand plads 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Indlæs tilstand plads 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Indlæs tilstand plads 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Indlæs tilstand plads 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Indlæs tilstand plads 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Indlæs tilstand plads 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Indlæs tilstand plads 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Indlæs tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Indlæs tilstand fra valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Indlæs tilstand fra plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7647,20 +7709,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Indlæs fra plads %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7668,7 +7725,7 @@ msgstr "" msgid "Load..." msgstr "Indlæs..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7693,20 +7750,20 @@ msgstr "Lokal" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7716,10 +7773,11 @@ msgid "Log Configuration" msgstr "Konfiguration af log" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7758,7 +7816,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Lav" @@ -7821,9 +7879,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Udgiver" @@ -7832,7 +7890,7 @@ msgstr "Udgiver" msgid "Maker:" msgstr "Udgiver:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7840,7 +7898,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7879,7 +7937,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Kan sænke hastigheden i Wii-menuen og nogle spil." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Medium" @@ -7895,7 +7953,7 @@ msgstr "Hukommelsesbreakpoint" msgid "Memory Card" msgstr "Hukommelseskort" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7923,7 +7981,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7931,7 +7989,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8004,8 +8062,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8047,7 +8105,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Video" @@ -8071,10 +8129,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND tjek" @@ -8083,8 +8141,8 @@ msgstr "NAND tjek" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8093,7 +8151,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8110,8 +8168,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8124,11 +8182,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Navn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8207,7 +8265,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Ny" @@ -8232,7 +8290,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Ny identitet genereret." @@ -8240,12 +8298,13 @@ msgstr "Ny identitet genereret." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8253,8 +8312,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8341,7 +8401,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8384,7 +8444,7 @@ msgstr "" "desync" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8584,7 +8644,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online&dokumentation" @@ -8592,13 +8652,13 @@ msgstr "Online&dokumentation" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8619,13 +8679,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8727,7 +8791,7 @@ msgstr "Andre" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Anden tilstand genvejstaster" @@ -8744,7 +8808,7 @@ msgstr "Andet spil..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8752,16 +8816,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Spi&l inputoptagelse..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8790,7 +8854,7 @@ msgstr "" msgid "PPC Size" msgstr "PPC-størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8803,7 +8867,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8866,7 +8930,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pause ved slutning på film" @@ -8911,7 +8975,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Per-pixel belysning" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8941,11 +9005,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8961,8 +9025,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platform" @@ -8974,7 +9038,7 @@ msgstr "Afspil" msgid "Play / Record" msgstr "Spil/optagelse" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Afspil optagelse" @@ -9069,7 +9133,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9120,7 +9184,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Tryk på Sync-knap" @@ -9138,9 +9202,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9148,8 +9212,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9193,13 +9258,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9216,11 +9281,11 @@ msgstr "" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9247,7 +9312,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Spørgsmål" @@ -9272,11 +9337,11 @@ msgstr "R-analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9313,13 +9378,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9342,7 +9407,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9401,7 +9466,7 @@ msgstr "Rød venstre" msgid "Red Right" msgstr "Rød højre" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9447,8 +9512,8 @@ msgstr "" msgid "Refreshing..." msgstr "Genindlæser..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9469,7 +9534,8 @@ msgstr "Relativt input" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9498,7 +9564,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9511,7 +9577,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9543,7 +9609,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9555,7 +9621,7 @@ msgstr "Nulstil" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9607,8 +9673,8 @@ msgstr "Genstart nødvendig" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9738,20 +9804,20 @@ msgstr "" msgid "Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9821,11 +9887,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Ge&m tilstand" @@ -9837,7 +9903,7 @@ msgstr "Sikker" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9852,22 +9918,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9879,15 +9957,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Gem ældste tilstand" @@ -9895,73 +9977,77 @@ msgstr "Gem ældste tilstand" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Gem tilstand" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Gem tilstand plads 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Gem tilstand plads 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Gem tilstand plads 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Gem tilstand plads 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Gem tilstand plads 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Gem tilstand plads 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Gem tilstand plads 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Gem tilstand plads 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Gem tilstand plads 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Gem tilstand plads 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Gem tilstand til ældste plads" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Gem tilstand til valgte plads" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Gem tilstand til plads" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9981,11 +10067,7 @@ msgstr "" msgid "Save as..." msgstr "Gem som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9996,19 +10078,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Gem til plads %1 - %2" @@ -10042,7 +10116,7 @@ msgstr "Skærmdump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Søg" @@ -10069,7 +10143,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10077,7 +10151,7 @@ msgstr "" msgid "Search games..." msgstr "Søg spil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Søg instruktion" @@ -10113,7 +10187,7 @@ msgstr "Vælg" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10122,7 +10196,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10130,18 +10204,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10150,6 +10228,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10158,6 +10240,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10166,58 +10256,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Vælg plads %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Vælg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Vælg tilstand plads" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Vælg tilstand plads 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Vælg tilstand plads 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Vælg tilstand plads 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Vælg tilstand plads 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Vælg tilstand plads 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Vælg tilstand plads 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Vælg tilstand plads 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Vælg tilstand plads 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Vælg tilstand plads 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Vælg tilstand plads 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10235,24 +10329,20 @@ msgstr "Vælg en mappe" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Vælg en fil" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10261,19 +10351,15 @@ msgstr "" msgid "Select a game" msgstr "Vælg et spil" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10281,23 +10367,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Vælg savefilen" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Valgt skrifttype" @@ -10353,7 +10422,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10396,6 +10465,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Send" @@ -10404,6 +10494,15 @@ msgstr "Send" msgid "Sensor Bar Position:" msgstr "Sensorbarens position:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10432,37 +10531,33 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" -#. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 -msgid "Set PC" -msgstr "Indstil PC" - -#: Source/Core/DolphinQt/GameList/GameList.cpp:416 -msgid "Set as &Default ISO" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" +msgid "Set Memory Card File for Slot A" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" +msgid "Set Memory Card File for Slot B" +msgstr "" + +#. i18n: Here, PC is an acronym for program counter, not personal computer. +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 +msgid "Set PC" +msgstr "Indstil PC" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" +msgid "Set Symbol &Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" +#: Source/Core/DolphinQt/GameList/GameList.cpp:416 +msgid "Set as &Default ISO" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 @@ -10481,7 +10576,7 @@ msgstr "Indstiller Wii-systemets sprog." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10493,10 +10588,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10547,11 +10649,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Vis &log" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Vis &værktøjslinje" @@ -10559,15 +10661,15 @@ msgstr "Vis &værktøjslinje" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Vis Australien" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10576,7 +10678,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" @@ -10589,7 +10691,7 @@ msgstr "" msgid "Show FPS" msgstr "Vis FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Vis billedtæller" @@ -10597,15 +10699,15 @@ msgstr "Vis billedtæller" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Vis Frankrig" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Vis Tyskland" @@ -10613,27 +10715,27 @@ msgstr "Vis Tyskland" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Vis input" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Vis Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Vis lag-tæller" @@ -10641,7 +10743,7 @@ msgstr "Vis lag-tæller" msgid "Show Language:" msgstr "Vis sprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Vis log&konfiguration" @@ -10653,7 +10755,7 @@ msgstr "Vis NetPlay meddelelser" msgid "Show NetPlay Ping" msgstr "Vis NetPlay ping" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Vis Holland" @@ -10661,12 +10763,12 @@ msgstr "Vis Holland" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Vis PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Vis PC" @@ -10674,7 +10776,7 @@ msgstr "Vis PC" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Vis platforme" @@ -10682,23 +10784,23 @@ msgstr "Vis platforme" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Vis Rusland" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Vis Spanien" @@ -10710,19 +10812,23 @@ msgstr "" msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Vis systemur" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Vis ukendte" @@ -10734,27 +10840,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Vis verden" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10771,13 +10877,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10810,18 +10912,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10842,6 +10932,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10874,6 +10976,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Side om side" @@ -10890,7 +11000,7 @@ msgstr "Sidelæns skift" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10937,7 +11047,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Spring over" @@ -11111,6 +11221,10 @@ msgstr "" msgid "Speed" msgstr "Fart" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11147,11 +11261,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Start med at &optage input" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Start optagelse" @@ -11190,39 +11304,39 @@ msgstr "Hop" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Hop ud" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Hop over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Hop ud succes!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Hop ud timeout!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Hop over udføres..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Hop succes!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11231,7 +11345,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11261,7 +11375,7 @@ msgstr "Stik" msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11330,14 +11444,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Succes" @@ -11364,24 +11478,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11432,7 +11546,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11457,17 +11571,21 @@ msgstr "Byt til B" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symboler" @@ -11516,7 +11634,7 @@ msgstr "" msgid "System Language:" msgstr "Systemsprog:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS-input" @@ -11527,9 +11645,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11547,7 +11665,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Tag skærmbillede" @@ -11555,7 +11673,7 @@ msgstr "Tag skærmbillede" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11590,7 +11708,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11635,13 +11753,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11792,7 +11910,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11916,7 +12034,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11950,7 +12068,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12008,7 +12126,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12117,7 +12235,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Kan ikke gøres om!" @@ -12312,7 +12430,7 @@ msgstr "" msgid "Threshold" msgstr "Tærskel" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -12331,10 +12449,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titel" @@ -12342,25 +12460,29 @@ msgstr "Titel" msgid "To" msgstr "Til" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Aktiver &fuldskærm" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Skift 3D Anaglyph" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12368,28 +12490,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Skift alle logtyper" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Skift forholdstal" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Skift beskæring" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Skift tilpassede teksturer" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Skift EFB-kopier" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Skift tåge" @@ -12401,31 +12523,31 @@ msgstr "Aktiver fuldskærm" msgid "Toggle Pause" msgstr "Pause til/fra" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Skift teksturudlæsning" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12546,7 +12668,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12576,7 +12698,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12614,15 +12736,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12663,7 +12785,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12686,11 +12808,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Fortryd indlæsning af tilstand" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Fortræd lagring af tilstand" @@ -12708,7 +12830,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12804,11 +12926,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Ubegrænset" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12816,7 +12938,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12914,7 +13041,7 @@ msgstr "Oprejst skift" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Indstillinger for brugsstatistik" @@ -13007,7 +13134,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13078,7 +13205,7 @@ msgstr "" msgid "Value" msgstr "Værdi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13166,22 +13293,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Lydstyrke" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Skru lyden ned" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Slå lyden fra/til" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Skru lyde op" @@ -13189,7 +13316,7 @@ msgstr "Skru lyde op" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD-filer (*.wad)" @@ -13290,7 +13417,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advarsel" @@ -13405,7 +13532,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Widescreen-hack" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13475,7 +13602,7 @@ msgstr "Wii og Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13510,11 +13637,11 @@ msgstr "Verden" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13658,7 +13785,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13723,7 +13850,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/de.po b/Languages/po/de.po index 39243ee6e9..e5281d8d4d 100644 --- a/Languages/po/de.po +++ b/Languages/po/de.po @@ -34,11 +34,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Ettore Atalan , 2015-2020,2024\n" -"Language-Team: German (http://app.transifex.com/delroth/dolphin-emu/language/" -"de/)\n" +"Language-Team: German (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/de/)\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -200,7 +200,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 unterstützt diese Funktion auf Ihrem System nicht." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 unterstützt diese Funktion nicht." @@ -222,7 +222,7 @@ msgstr "%1 ist beigetreten" msgid "%1 has left" msgstr "%1 ist gegangen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -234,7 +234,7 @@ msgstr "%1 ist kein gültiges ROM" msgid "%1 is now golfing" msgstr "%1 golft jetzt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 spielt %2" @@ -248,7 +248,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 Punkte" @@ -268,22 +268,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normale Geschwindigkeit)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "Wert von %1 wurde geändert" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "Wert von %1 wird verwendet" @@ -291,6 +291,10 @@ msgstr "Wert von %1 wird verwendet" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -311,7 +315,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -324,7 +328,7 @@ msgstr "%1x Nativ (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Nativ (%2x%3) für %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -368,10 +372,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Über" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Speicherhaltepunkt hinzufügen" @@ -381,23 +389,19 @@ msgstr "&Speicherhaltepunkt hinzufügen" msgid "&Add New Code..." msgstr "Neuen Code &hinzufügen..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "Funktion &hinzufügen" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Hinzufügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Audioeinstellungen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Automatisches Update" @@ -406,14 +410,14 @@ msgid "&Borderless Window" msgstr "&Randloses Fenster" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Haltepunkte" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -425,11 +429,11 @@ msgstr "&Abbrechen" msgid "&Cheats Manager" msgstr "&Cheats-Manager" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Auf Updates prüfen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "Symbole lös&chen" @@ -437,7 +441,7 @@ msgstr "Symbole lös&chen" msgid "&Clone..." msgstr "&Klonen..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Code" @@ -445,18 +449,15 @@ msgstr "&Code" msgid "&Connected" msgstr "&Verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Controller-Einstellungen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "Adresse &kopieren" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Erstellen..." @@ -492,7 +493,7 @@ msgstr "B&earbeiten..." msgid "&Eject Disc" msgstr "&Disc auswerfen" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulation" @@ -517,36 +518,36 @@ msgstr "&Als GCI exportieren..." msgid "&File" msgstr "&Datei" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "Schri&ftart..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Einzelbildwiedergabe" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Freies Umsehen-Einstellungen" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "Symbole erzeu&gen aus" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub-Repositorium" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafikeinstellungen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Hilfe" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Tastenkürzel-Einstellungen" @@ -570,15 +571,15 @@ msgstr "&Importieren..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "blr &einfügen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -590,11 +591,11 @@ msgstr "&Sprache:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "Spielstand &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "Symbolkarte &laden" @@ -608,19 +609,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "Widgets an Ort und Stelle &sperren" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Arbeitsspeicher" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "Fil&m" @@ -628,7 +629,7 @@ msgstr "Fil&m" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Netzwerk" @@ -641,19 +642,19 @@ msgstr "&Nein" msgid "&Open..." msgstr "Ö&ffnen..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Optionen" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&HLE-Funktionen patchen" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "Pau&se" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Start" @@ -661,7 +662,7 @@ msgstr "&Start" msgid "&Properties" msgstr "&Eigenschaften" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "Nu&r-Lese-Modus" @@ -669,7 +670,7 @@ msgstr "Nu&r-Lese-Modus" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Register" @@ -682,12 +683,12 @@ msgstr "Entfe&rnen" msgid "&Remove Code" msgstr "Code entfe&rnen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "Symbol &umbenennen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reset" @@ -699,7 +700,7 @@ msgstr "&Ressourcenpaketverwaltung" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "Symbolkarte &speichern" @@ -711,11 +712,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Geschwindigkeitsbegrenzung:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "Sto&pp" @@ -723,7 +724,7 @@ msgstr "Sto&pp" msgid "&Theme:" msgstr "&Design:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Threads" @@ -745,17 +746,17 @@ msgstr "ROM &entladen" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Ansicht" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Überwachungsfenster" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Webseite" @@ -767,11 +768,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "Konnte '%1' nicht finden, es wurden keine Symbolnamen generiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" "'%1' konnte nicht gefunden werden, es wird stattdessen nach gemeinsamen " @@ -793,7 +794,7 @@ msgstr "(System)" msgid "(host)" msgstr "(Host)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(aus)" @@ -817,7 +818,7 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Subtrahieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -895,7 +896,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x Anisotropisch" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -907,7 +908,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -943,19 +944,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D-Tiefe" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -979,7 +980,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1076,7 +1077,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1109,8 +1110,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Größer als" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Eine NetPlay-Sitzung läuft bereits!" @@ -1134,7 +1135,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Eine Disc wird momentan bereits eingelesen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1146,7 +1147,7 @@ msgstr "" "Ein Spielstand kann nicht geladen werden, wenn kein zu startendes Spiel " "angegeben wurde." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1248,7 +1249,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Errungenschaften" @@ -1340,7 +1341,7 @@ msgstr "Action Replay: Normal Code {0}: Ungültiger Subtype {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "NetPlay Chat aktivieren" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktiv" @@ -1391,11 +1392,11 @@ msgstr "Neues USB-Gerät hinzufügen" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Einen Haltepunkt hinzufügen" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Speicherhaltepunkt hinzufügen" @@ -1429,13 +1430,13 @@ msgstr "Hinzufügen..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adresse" @@ -1454,7 +1455,7 @@ msgstr "" msgid "Address:" msgstr "Adresse:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1535,7 +1536,7 @@ msgstr "Erweitert" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1591,7 +1592,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1599,7 +1600,7 @@ msgid "All Files" msgstr "Alle Dateien" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Alle Dateien (*)" @@ -1608,7 +1609,7 @@ msgstr "Alle Dateien (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alle GC/Wii-Dateien" @@ -1617,8 +1618,8 @@ msgstr "Alle GC/Wii-Dateien" msgid "All Hexadecimal" msgstr "Alle Hexadezimalen" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Speicherstände (*.sav *.s##);; Alle Dateien (*)" @@ -1642,11 +1643,11 @@ msgstr "Alle Codes der Spieler synchronisiert." msgid "All players' saves synchronized." msgstr "Alle Spielstände der Spieler synchronisiert." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Nicht übereinstimmende Regionseinstellungen zulassen" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten erlauben" @@ -1707,7 +1708,7 @@ msgstr "Winkel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1719,19 +1720,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Beliebige Region" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Signatur anfügen an" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "An &vorhandene Signaturdatei anfügen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Signaturdatei an&wenden..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1747,9 +1748,9 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Übernehmen" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Signaturdatei anwenden" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1759,7 +1760,7 @@ msgstr "Willkürliche Mipmaps erkennen" msgid "Are you sure that you want to delete '%1'?" msgstr "Möchtest du '%1' wirklich löschen? " -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Möchtest du diese Datei wirklich löschen? " @@ -1796,8 +1797,8 @@ msgstr "Seitenverhältnis:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1858,7 +1859,11 @@ msgstr "Automatisch" msgid "Auto (Multiple of 640x528)" msgstr "Automatisch (Vielfaches von 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Einstellungen automatisch updaten" @@ -1882,7 +1887,7 @@ msgstr "Fenstergröße automatisch anpassen" msgid "Auto-Hide" msgstr "Automatisch verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "RSO-Module automatisch erkennen?" @@ -1898,6 +1903,17 @@ msgstr "" "Passt die Fenstergröße automatisch der internen Auflösung an." "

Im Zweifel deaktiviert lassen." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1909,7 +1925,7 @@ msgid "Auxiliary" msgstr "Hilfs" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1995,10 +2011,10 @@ msgstr "" msgid "Bad value provided." msgstr "Unzulässigen Wert angegeben." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -2026,7 +2042,7 @@ msgstr "Basispriorität" msgid "Basic" msgstr "Standard" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Grundeinstellungen" @@ -2088,9 +2104,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blockgröße" @@ -2128,15 +2144,15 @@ msgstr "" "Bluetooth-Durchleitungsmodus ist aktiviert, aber Dolphin wurde ohne libusb " "gebaut. Durchleitungsmodus kann nicht verwendet werden." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Pausieren nach Boot" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-Sicherungsdatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii Schlüsseldatei (*.bin);;Alle Dateien (*)" @@ -2264,30 +2280,30 @@ msgstr "" msgid "Branch: %1" msgstr "Entwicklungszweig: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Zweige" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Unterbrechen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Haltepunkt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Haltepunkt gefunden! Schritt heraus abgebrochen." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Haltepunkte" @@ -2386,7 +2402,7 @@ msgstr "" msgid "C Stick" msgstr "C-Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "Signatu&rdatei erstellen..." @@ -2424,7 +2440,7 @@ msgstr "" msgid "Calculate" msgstr "Berechnen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2491,14 +2507,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kann Wiimote bei Verbindungs-Handle {0:02x} nicht finden" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Du kannst keine NetPlay-Session starten, während ein Spiel noch läuft!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2550,7 +2566,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2599,7 +2615,7 @@ msgstr "Disc &wechseln..." msgid "Change Disc" msgstr "Disc wechseln" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Discs automatisch wechseln" @@ -2670,7 +2686,7 @@ msgstr "Cheatsuche" msgid "Cheats Manager" msgstr "Cheat-Verwaltung" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "NAND prüfen..." @@ -2682,7 +2698,7 @@ msgstr "Veränderungen der Spieleliste im Hintergrund prüfen" msgid "Check for updates" msgstr "Auf Updates prüfen" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2702,29 +2718,29 @@ msgstr "China" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Datei zum Öffnen auswählen" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Vorrangige Eingabedatei auswählen" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Sekundäre Eingabedatei auswählen" - #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Ordner zum Extrahieren auswählen" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2743,7 +2759,7 @@ msgstr "Klassischer Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2753,7 +2769,7 @@ msgstr "Leeren" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Cache leeren" @@ -2774,7 +2790,7 @@ msgstr "Code b&earbeiten und klonen..." msgid "Close" msgstr "Schließen" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ko&nfiguration" @@ -2798,7 +2814,7 @@ msgstr "Code:" msgid "Codes received!" msgstr "Codes empfangen!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2818,7 +2834,7 @@ msgstr "Farbraum" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "&Zwei Signaturdateien kombinieren..." @@ -2853,9 +2869,9 @@ msgstr "Shader vor dem Start kompilieren" msgid "Compiling Shaders" msgstr "Kompiliere Shader" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Komprimierung" @@ -2880,7 +2896,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Bedingung" @@ -2987,9 +3003,9 @@ msgstr "Ausgabe konfigurieren" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bestätigen" @@ -3002,7 +3018,7 @@ msgstr "Ändern des Backends bestätigen" msgid "Confirm on Stop" msgstr "Beim Beenden bestätigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3013,7 +3029,7 @@ msgstr "Bestätigung" msgid "Connect" msgstr "Verbinden" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Balance Bord anschließen" @@ -3021,27 +3037,27 @@ msgstr "Balance Bord anschließen" msgid "Connect USB Keyboard" msgstr "USB-Tastatur verbunden" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Wiimote %1 verbinden" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Wiimote 1 verbinden" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Wiimote 2 verbinden" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Wiimote 3 verbinden" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Wiimote 4 verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Wiimotes verbinden" @@ -3087,19 +3103,19 @@ msgstr "Control Stick" msgid "Controller Profile" msgstr "Controller-Profil" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Controller-Profil 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Controller-Profil 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Controller-Profil 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Controller-Profil 4" @@ -3111,6 +3127,16 @@ msgstr "Controller-Einstellungen" msgid "Controllers" msgstr "Controller" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3119,7 +3145,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3131,7 +3157,7 @@ msgstr "" "

Ein höherer Wert sorgt für stärkere Außen-Effekte, während ein " "niedrigerer Wert angenehmer ist." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3145,7 +3171,7 @@ msgstr "" "geringer die interne Auflösung, desto besser die Performance." "

Im Zweifel, wähle Nativ." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3179,7 +3205,7 @@ msgstr "" "Kontroliiert, ob High- oder Low-Level-DSP Emulation verwendet werden soll. " "Standardwert True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Konvergenz" @@ -3271,18 +3297,22 @@ msgstr "" msgid "Copy" msgstr "Kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "&Funktion kopieren" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "&Hex kopieren" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Adresse kopieren" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Kopieren fehlgeschlagen" @@ -3291,18 +3321,14 @@ msgstr "Kopieren fehlgeschlagen" msgid "Copy Hex" msgstr "Hex kopieren" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Wert kopieren" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Codezei&le kopieren" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "&Zieladresse kopieren" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Nach A kopieren" @@ -3431,8 +3457,8 @@ msgstr "Konnte Datei {0} nicht erkennen" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3536,7 +3562,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Aktuelle Region" @@ -3728,24 +3754,24 @@ msgstr "Decodierungsqualität:" msgid "Decrease" msgstr "Reduzieren" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Konvergenz verrringern" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Tiefe reduzieren" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Emulationsgeschwindigkeit verringern" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Interne Auflösung reduzieren" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3807,8 +3833,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Entfernen" @@ -3826,7 +3852,7 @@ msgstr "Ausgewählte Dateien löschen..." msgid "Delete the existing file '{0}'?" msgstr "Vorhandende Datei '{0}' löschen?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Tiefe" @@ -3841,9 +3867,9 @@ msgstr "Tiefe:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschreibung" @@ -3892,7 +3918,7 @@ msgstr "Gelöst" msgid "Detect" msgstr "Erkenne" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3900,7 +3926,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministischer Doppelkern: " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Entwickler (mehrmals am Tag)" @@ -3958,15 +3984,15 @@ msgstr "Kopierfilter deaktivieren" msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM-Kopien deaktivieren" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Geschwindigkeitsbegrenzung ausschalten" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Fastmem deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3974,11 +4000,11 @@ msgstr "" msgid "Disable Fog" msgstr "Nebel deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "JIT-Zwischenspeicher deaktivieren" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -4007,7 +4033,7 @@ msgstr "" "zu erzwingen. Sperrt jede Hochskalierung.

Im " "Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4036,7 +4062,8 @@ msgstr "Disc" msgid "Discard" msgstr "Verwerfen" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -4071,15 +4098,15 @@ msgstr "Distanz" msgid "Distance of travel from neutral position." msgstr "Weite der Bewegung von der neutralen Position." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Möchtest du die Liste der Symbolnamen löschen?" @@ -4089,7 +4116,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Laufende Emulation stoppen?" @@ -4110,9 +4137,9 @@ msgstr "Dolphin FIFO-Log (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin-Kartendatei (*.map)" @@ -4124,8 +4151,8 @@ msgstr "Dolphin-Signatur-CSV-Datei" msgid "Dolphin Signature File" msgstr "Dolphin-Signaturdatei" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-Filme (*.dtm)" @@ -4176,14 +4203,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kann nicht lizenzierte Discs nicht überprüfen." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin wird dies für Titel verwenden, deren Region nicht automatisch " -"bestimmt werden kann." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins Cheatsystem ist momentan deaktiviert." @@ -4193,7 +4212,7 @@ msgstr "Dolphins Cheatsystem ist momentan deaktiviert." msgid "Domain" msgstr "Domain" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Nicht updaten" @@ -4250,11 +4269,11 @@ msgstr "%1 Codes heruntergeladen. (%2 hinzugefügt)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4297,7 +4316,7 @@ msgstr "&FakeVMEM dumpen" msgid "Dump &MRAM" msgstr "&MRAM dumpen" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Audio dumpen" @@ -4309,7 +4328,7 @@ msgstr "Basistexturen dumpen" msgid "Dump EFB Target" msgstr "EFB-Target dumpen" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Frames dumpen" @@ -4436,16 +4455,16 @@ msgstr "Ostasien" msgid "Edit Breakpoint" msgstr "Haltepunkt bearbeiten" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Bearbeiten..." @@ -4469,7 +4488,7 @@ msgstr "Effektiv" msgid "Effective priority" msgstr "Effektive Priorität" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4535,7 +4554,7 @@ msgstr "" "Aktuell: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emulationsgeschwindigkeit" @@ -4555,7 +4574,7 @@ msgstr "API-Validierungsschichten aktivieren" msgid "Enable Audio Stretching" msgstr "Audiodehnung aktivieren" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Cheats aktivieren" @@ -4579,9 +4598,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Dual Core aktivieren" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Dual Core aktivieren (Beschleunigung)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4625,7 +4644,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4667,7 +4686,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten aktivieren" @@ -4747,7 +4766,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4784,7 +4803,7 @@ msgstr "" "unterstützt wird. Die meisten Spiele haben damit kein Problem." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4832,6 +4851,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4861,7 +4889,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4912,14 +4940,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4958,26 +4986,26 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4994,9 +5022,9 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fehler" @@ -5029,7 +5057,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Fehler beim Abrufen der Sitzungsliste: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -5129,7 +5157,7 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -5142,15 +5170,15 @@ msgstr "" msgid "Exit" msgstr "Beenden" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Erwartete + oder schließende runde Klammer." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Erwartete Argumente: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Erwartete schließende runde Klammer." @@ -5162,19 +5190,19 @@ msgstr "Erwartetes Komma." msgid "Expected end of expression." msgstr "Erwartetes Ende des Ausdrucks." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Erwarteter Name der Eingabe." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Erwartete öffnende runde Klammer." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Erwarteter Beginn des Ausdrucks." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -5182,7 +5210,7 @@ msgstr "" msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Alle Wii-Spielstände exportieren" @@ -5193,11 +5221,11 @@ msgstr "Alle Wii-Spielstände exportieren" msgid "Export Failed" msgstr "Exportieren fehlgeschlagen" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Aufnahme exportieren" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Aufnahme exportieren..." @@ -5225,7 +5253,7 @@ msgstr "Als .&gcs exportieren..." msgid "Export as .&sav..." msgstr "Als .&sav exportieren..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5253,35 +5281,35 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externer Bildspeicher (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Zertifikate aus NAND extrahieren" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Gesamte Disc extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Gesamte Partition extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Datei extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Dateien extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Systemdaten extrahieren..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Alle Dateien werden extrahiert..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Verzeichnis wird extrahiert..." @@ -5311,7 +5339,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' anfügen." @@ -5379,7 +5407,7 @@ msgstr "" "Konnte NetPlay-Speicherkarte nicht löschen. Überprüfe deine " "Schreibberechtigungen." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Konnte die ausgewählte Datei nicht löschen." @@ -5408,15 +5436,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Konnte folgende Spielstände nicht exportieren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Konnte Zertifikate aus NAND nicht extrahieren" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Datei konnte nicht extrahiert werden." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Systemdaten konnten nicht extrahiert werden." @@ -5438,14 +5466,14 @@ msgstr "Ein oder mehrere D3D-Symbole konnten nicht gefunden werden" msgid "Failed to import \"%1\"." msgstr "Konnte \"%1\" nicht importieren." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5453,7 +5481,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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5464,7 +5492,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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Konnte Kern nicht initiieren" @@ -5484,11 +5512,11 @@ msgid "Failed to install pack: %1" msgstr "Konnte Paket: %1 nicht installieren" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Konnte diesen Titel nicht in den NAND installieren." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5496,8 +5524,8 @@ msgstr "" "Fehler beim Lauschen auf Port %1. Wird eine andere Instanz des NetPlay-" "Servers ausgeführt?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Konnte RSO-Modul an %1 nicht laden" @@ -5509,7 +5537,7 @@ 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:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Konnte Kartendatei '%1' nicht laden" @@ -5548,7 +5576,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Konnte '&1' nicht öffnen" @@ -5591,7 +5619,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Konnte Server nicht öffnen" @@ -5737,19 +5765,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Konnte FIFO-Log nicht speichern." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Konnte Codekarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Konnte Signaturdatei '%1' nicht speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Konnte Symbolkarte nicht in Pfad '%1' speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Konnte nicht an Signaturdatei '%1' speichern." @@ -5805,8 +5833,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Fehler" @@ -5814,11 +5842,12 @@ msgstr "Fehler" msgid "Fair Input Delay" msgstr "Faire Eingangsverzögerung" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Zurückgreifende Region" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Zurückgreifende Region:" @@ -5856,9 +5885,9 @@ msgstr "" msgid "File Details" msgstr "Dateidetails" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Dateiformat" @@ -5870,20 +5899,20 @@ msgstr "Dateiformat:" msgid "File Info" msgstr "Datei-Informationen" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Dateiname" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Dateipfad" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Dateigröße" @@ -5987,9 +6016,9 @@ msgstr "Bitschalter" msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "&Zweig folgen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6057,7 +6086,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6067,7 +6096,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6114,20 +6143,20 @@ msgstr "" msgid "Frame %1" msgstr "Bild %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Einzelbildwiedergabe" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Erhöhe Einzelbildwiedergabegeschwindigkeit" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Verringere Einzelbildwiedergabegeschwindigkeit" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Einzelbildwiedergabegeschwindigkeit zurücksetzen" @@ -6188,11 +6217,11 @@ msgstr "" msgid "FreeLook" msgstr "Freies Umsehen" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Freies Umsehen" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Freies Umsehen umschalten" @@ -6226,11 +6255,12 @@ msgstr "Von:" msgid "FullScr" msgstr "Vollbild" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funktion" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -6250,7 +6280,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA-Kern" @@ -6266,11 +6296,11 @@ msgstr "GBA-Einstellungen" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA-Lautstärke" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA-Fenstergröße" @@ -6400,11 +6430,11 @@ msgstr "Spiel" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Module (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6440,8 +6470,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Spielkennung" @@ -6569,7 +6599,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko-Codes" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6589,14 +6620,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Neue Statistikidentität erzeugen" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Generierte Symbolnamen von '%1'" @@ -6614,7 +6652,7 @@ msgstr "Deutschland" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6647,7 +6685,7 @@ msgstr "Grafik" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Grafik schaltet um" @@ -6656,7 +6694,7 @@ msgstr "Grafik schaltet um" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6683,7 +6721,7 @@ msgstr "Grün links" msgid "Green Right" msgstr "Grün rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Tabellenansicht" @@ -6765,7 +6803,7 @@ msgstr "Verbergen" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Alles verbergen" @@ -6783,12 +6821,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Hoch" @@ -6857,7 +6895,7 @@ msgstr "Hostname" msgid "Hotkey Settings" msgstr "Tastenkürzel-Einstellungen" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6984,11 +7022,11 @@ msgstr "" "Geeignet für rundenbasierte Spiele mit zeitabhängiger Steuerung, zum " "Beispiel Golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Indentitätserzeugung" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7032,6 +7070,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7099,7 +7147,7 @@ msgstr "" "Performance etwas.

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-Sicherung importieren..." @@ -7114,15 +7162,15 @@ msgstr "Importieren fehlgeschlagen" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Wii-Spielstand importieren..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "NAND-Sicherung wird importiert" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7185,24 +7233,24 @@ msgstr "" msgid "Increase" msgstr "Erhöhen" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Konvergenz erhöhen" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Tiefe erhöhen" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Emulationsgeschwindigkeit erhöhen" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Interne Auflösung erhöhen" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -7251,8 +7299,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Information" @@ -7266,10 +7314,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Eingabe" @@ -7288,13 +7336,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "&nop einfügen" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD-Karte einfügen" @@ -7312,7 +7357,7 @@ msgstr "" msgid "Install Update" msgstr "Update installieren" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WAD installieren..." @@ -7320,8 +7365,9 @@ msgstr "WAD installieren..." msgid "Install to the NAND" msgstr "In NAND installieren" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7335,7 +7381,7 @@ msgstr "Anweisung" msgid "Instruction Breakpoint" msgstr "Anweisungshaltepunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Anweisung:" @@ -7344,7 +7390,7 @@ msgstr "Anweisung:" msgid "Instruction: %1" msgstr "Anweisung: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7403,8 +7449,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Interne Auflösung" @@ -7421,7 +7467,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (am langsamsten)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Interpreterkern" @@ -7429,7 +7475,7 @@ msgstr "Interpreterkern" msgid "Invalid Expression." msgstr "Ungültiger Ausdruck." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7437,7 +7483,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ungültiger gemischter Code" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Ungültiges Paket %1 angegeben: &2" @@ -7446,7 +7492,7 @@ msgstr "Ungültiges Paket %1 angegeben: &2" msgid "Invalid Player ID" msgstr "Ungültige Spieler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Ungültige RSO-Moduladresse: %1" @@ -7526,11 +7572,11 @@ msgstr "Italien" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT-Blockverbindung Aus" @@ -7538,47 +7584,47 @@ msgstr "JIT-Blockverbindung Aus" msgid "JIT Blocks" msgstr "JIT-Blöcke" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Zweig Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FließKomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Ganzahl Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LadenSpeichern Fließkomma Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LadenSpeichern Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LadenSpeichern Gekoppelt Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LadenSpeichern lXz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LadenSpeichern lbzx Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LadenSpeichern lwz Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Aus (JIT-Kern)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Gekoppelt Aus" @@ -7590,14 +7636,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "JIT-Register-Cache Aus" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT-SystemRegister Aus" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7608,11 +7655,11 @@ msgstr "" "niemals passieren. Melde bitte diesen Vorfall im Bug-Tracker. Dolphin wird " "jetzt beendet." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japan" @@ -7634,7 +7681,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7669,7 +7716,7 @@ msgstr "Tastatur-Controller" msgid "Keys" msgstr "Tasten" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7677,7 +7724,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Spieler hinauswerfen" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7816,6 +7863,14 @@ msgstr "" "Links-/Rechtsklick für weitere Optionen.\n" "Mittlere Maustaste zum Leeren." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7849,11 +7904,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Uploadblock-Geschwindigkeit begrenzen:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Listen-Spalten" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Listenansicht" @@ -7863,17 +7918,17 @@ msgstr "Lauscht" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "&Ungültige Kartendatei laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "&Andere Kartendatei laden..." @@ -7882,7 +7937,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7893,7 +7948,7 @@ msgstr "Lade benutzerdefinierte Texturen" msgid "Load File" msgstr "Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "GameCube-Hauptmenü laden" @@ -7901,16 +7956,21 @@ msgstr "GameCube-Hauptmenü laden" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Letzten Spielstand laden" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Ladepfad:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "ROM laden" @@ -7918,104 +7978,104 @@ msgstr "ROM laden" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Spielstand laden" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Zuletzt gespeicherten Spielstand 1 laden" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Zuletzt gespeicherten Spielstand 10 laden" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Zuletzt gespeicherten Spielstand 2 laden" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Zuletzt gespeicherten Spielstand 3 laden" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Zuletzt gespeicherten Spielstand 4 laden" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Zuletzt gespeicherten Spielstand 5 laden" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Zuletzt gespeicherten Spielstand 6 laden" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Zuletzt gespeicherten Spielstand 7 laden" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Zuletzt gespeicherten Spielstand 8 laden" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Zuletzt gespeicherten Spielstand 9 laden" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Spielstand in Slot 1 laden" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Spielstand in Slot 10 laden" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Spielstand in Slot 2 laden" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Spielstand in Slot 3 laden" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Spielstand in Slot 4 laden" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Spielstand in Slot 5 laden" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Spielstand in Slot 6 laden" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Spielstand in Slot 7 laden" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Spielstand in Slot 8 laden" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Spielstand in Slot 9 laden" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Spielstand von Datei laden" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Spielstand von Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Wii-Systemmenü laden %1" @@ -8023,20 +8083,15 @@ msgstr "Wii-Systemmenü laden %1" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Spielstand vom ausgewählten Slot laden" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Lade von Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Kartendatei laden" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -8044,7 +8099,7 @@ msgstr "" msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Geladene Symbole von '%1'" @@ -8072,20 +8127,20 @@ msgstr "Lokal" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8095,10 +8150,11 @@ msgid "Log Configuration" msgstr "Protokollkonfiguration" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Anmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "JIT-Anweisungsabdeckung protokollieren" @@ -8137,7 +8193,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Die Verbindung zum NetPlay-Server wurde getrennt..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Niedrig" @@ -8200,9 +8256,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Hersteller" @@ -8211,7 +8267,7 @@ msgstr "Hersteller" msgid "Maker:" msgstr "Hersteller:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8223,7 +8279,7 @@ msgstr "" "machen, die die korrekte Nebelemulation benötigen." "

Im Zweifel deaktiviert lassen." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "NAND verwalten" @@ -8262,7 +8318,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Kann zu Verlangsamung im Wii-Menü und einigen Spielen führen." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Mittel" @@ -8278,7 +8334,7 @@ msgstr "Speicherhaltepunkt" msgid "Memory Card" msgstr "Speicherkarte" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Speicherkartenverwaltung" @@ -8308,7 +8364,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "MemoryCard: Schreibvorgang mit ungültiger Zieladresse aufgerufen ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8320,7 +8376,7 @@ msgstr "" "Vorgang ist nicht umkehrbar, daher wird empfohlen, dass du Sicherungen " "beider NANDs behälst. Bist du sicher, dass du fortfahren möchtest?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8396,8 +8452,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Module gefunden: %1" @@ -8439,7 +8495,7 @@ msgstr "Mauszeigersichtbarkeit" msgid "Move" msgstr "Bewegen" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" @@ -8463,10 +8519,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ein zu allen" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-Prüfung" @@ -8475,8 +8531,8 @@ msgstr "NAND-Prüfung" msgid "NKit Warning" msgstr "NKit-Warnung" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8485,7 +8541,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8502,8 +8558,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8516,11 +8572,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Name" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Name für ein neues Tag:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Name des Tag, das entfernt werden soll:" @@ -8599,7 +8655,7 @@ msgid "Never Auto-Update" msgstr "Niemals automatisch updaten" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Neu" @@ -8624,7 +8680,7 @@ msgstr "Neue Suche" msgid "New Tag..." msgstr "Neues Tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Neue identität erzeugt." @@ -8632,12 +8688,13 @@ msgstr "Neue identität erzeugt." msgid "New instruction:" msgstr "Neue Anweisung:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Neues 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 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Nächstes Spielprofil" @@ -8645,8 +8702,9 @@ msgstr "Nächstes Spielprofil" msgid "Next Match" msgstr "Nächste Übereinstimmung" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Nächstes Profil" @@ -8733,7 +8791,7 @@ msgstr "" msgid "No input" msgstr "Keine Eingabe" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Es wurden keine Probleme festgestellt." @@ -8780,7 +8838,7 @@ msgstr "" "Desynchronisationen zu vermeiden" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8980,7 +9038,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online-&Dokumentation" @@ -8988,7 +9046,7 @@ msgstr "Online-&Dokumentation" msgid "Only Show Collection" msgstr "Nur Sammlung anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8996,7 +9054,7 @@ msgstr "" "Nur Symbole anhängen mit dem Präfix:\n" "(Leer für alle Symbole)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9019,14 +9077,18 @@ msgstr "Über&geordneten Ordner öffnen" msgid "Open &User Folder" msgstr "&Benutzerordner öffnen" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Verzeichnis öffnen..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "FIFO-Log öffnen" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9127,7 +9189,7 @@ msgstr "Andere" msgid "Other Partition (%1)" msgstr "Andere Partition (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Tastenkürzel anderer Spielstand" @@ -9144,7 +9206,7 @@ msgstr "Anderes Spiel..." msgid "Output" msgstr "Ausgabe" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -9152,16 +9214,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Überschrieben" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Eingabeau&fzeichnung wiedergeben..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9190,7 +9252,7 @@ msgstr "PNG-Bilddatei (*.png);; Alle Dateien (*)" msgid "PPC Size" msgstr "PPC-Größe" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9203,7 +9265,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parameter" @@ -9266,7 +9328,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pause am Filmende" @@ -9311,7 +9373,7 @@ msgstr "Spitzengeschwindigkeit von nach außen gerichteten Schwenkbewegungen." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Lighting" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Online-Systemaktualisierung durchführen" @@ -9341,11 +9403,11 @@ msgstr "Physikalisch" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Wähle eine Debug-Schriftart" @@ -9361,8 +9423,8 @@ msgstr "Nicken abwärts" msgid "Pitch Up" msgstr "Nicken aufwärts" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plattform" @@ -9374,7 +9436,7 @@ msgstr "Start" msgid "Play / Record" msgstr "Abspielen / Aufnahme" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Aufnahme abspielen" @@ -9471,7 +9533,7 @@ msgstr "" "Mögliche Desynchronisation erkannt: %1 wurde wahrscheinlich auf Frame %2 " "desynchronisiert" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Nachbearbeitungseffekt" @@ -9524,7 +9586,7 @@ msgstr "" msgid "Presets" msgstr "Voreinstellungen" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Sync-Taste drücken" @@ -9547,9 +9609,9 @@ msgstr "" "

Nicht empfohlen, nur verwenden, wenn die anderen " "Optionen schlechte Ergebnisse liefern." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Vorheriges Spielprofil" @@ -9557,8 +9619,9 @@ msgstr "Vorheriges Spielprofil" msgid "Previous Match" msgstr "Vorherige Übereinstimmung" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Vorheriges Profil" @@ -9608,13 +9671,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Programmzähler" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9631,11 +9694,11 @@ msgstr "" msgid "Public" msgstr "Öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Spielelisten Cache leeren" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9662,7 +9725,7 @@ msgstr "Qualität des DPLII-Decoders. Audiolatenz steigt mit Qualität." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Frage" @@ -9687,11 +9750,11 @@ msgstr "R-Analog" msgid "READY" msgstr "BEREIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO-Module" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "Automatische RSO-Erkennung" @@ -9728,13 +9791,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Anweisung er&setzen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Lesen" @@ -9757,7 +9820,7 @@ msgstr "Nur Lesen" msgid "Read or Write" msgstr "Lesen oder Schreiben" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Nur-Lese-Modus" @@ -9816,7 +9879,7 @@ msgstr "Rot links" msgid "Red Right" msgstr "Rot rechts" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9868,8 +9931,8 @@ msgstr "" msgid "Refreshing..." msgstr "Aktualisiere..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9890,7 +9953,8 @@ msgstr "Relative Eingabe" msgid "Relative Input Hold" msgstr "Relative Eingabe halten" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9919,7 +9983,7 @@ msgstr "Junk-Daten entfernen (unwiederruflich):" msgid "Remove Tag..." msgstr "Tag entfernen..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Tag entfernen" @@ -9935,8 +9999,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Symbol umbenennen" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -9969,7 +10033,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9981,7 +10045,7 @@ msgstr "Zurücksetzen" msgid "Reset All" msgstr "Alles zurücksetzen" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -10033,9 +10097,9 @@ msgstr "Neustart erforderlich" msgid "Restore Defaults" msgstr "Standard wiederherstellen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Anweisung wiederherstellen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10164,20 +10228,20 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Bis &hier ausführen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -10247,11 +10311,11 @@ msgstr "SSL-Kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Code speich&ern" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "S&pielstand speichern" @@ -10263,7 +10327,7 @@ msgstr "Sicher" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10278,23 +10342,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Export speichern" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "FIFO-Log speichern" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Datei speichern unter" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10305,15 +10381,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Import speichern" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Ältesten Spielstand überschreiben" @@ -10321,73 +10401,77 @@ msgstr "Ältesten Spielstand überschreiben" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Spielstand speichern" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "In Slot 1 speichern" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "In Slot 10 speichern" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "In Slot 2 speichern" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "In Slot 3 speichern" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "In Slot 4 speichern" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "In Slot 5 speichern" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "In Slot 6 speichern" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "In Slot 7 speichern" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "In Slot 8 speichern" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "In Slot 9 speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Spielstand in Datei speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Spielstand in ältesten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Spielstand in Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Symbolkarte speichern &als..." @@ -10407,11 +10491,7 @@ msgstr "" msgid "Save as..." msgstr "Speichern unter..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Kombinierte Ausgabedatei speichern als" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10425,19 +10505,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Kartendatei speichern" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Signaturdatei speichern" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Spielstand im ausgewählten Slot speichern" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Spielstand in Slot %1 - %2 speichern" @@ -10473,7 +10545,7 @@ msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Suche" @@ -10500,7 +10572,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Suche nach einer Anweisung" @@ -10508,7 +10580,7 @@ msgstr "Suche nach einer Anweisung" msgid "Search games..." msgstr "Suche Spiele..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Suchanweisung" @@ -10545,7 +10617,7 @@ msgstr "Auswählen" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10554,7 +10626,7 @@ msgid "Select Dump Path" msgstr "Dump-Pfad auswählen" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Export-Verzeichnis auswählen" @@ -10562,18 +10634,22 @@ msgstr "Export-Verzeichnis auswählen" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Letzten Spielstand auswählen" @@ -10582,6 +10658,10 @@ msgstr "Letzten Spielstand auswählen" msgid "Select Load Path" msgstr "Ladepfad auswählen" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Ressourcenpaket-Pfad auswählen" @@ -10590,6 +10670,14 @@ msgstr "Ressourcenpaket-Pfad auswählen" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10598,58 +10686,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Spielstand auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Spielstand-Slot auswählen" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Slot 1 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Slot 10 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Slot 2 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Slot 3 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Slot 4 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Slot 5 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Slot 6 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Slot 7 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Slot 8 auswählen" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Slot 9 auswählen" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "WFS-Pfad auswählen" @@ -10667,24 +10759,20 @@ msgstr "Verzeichnis auswählen" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Datei auswählen" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "SD-Kartenabbild auswählen" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10693,19 +10781,15 @@ msgstr "" msgid "Select a game" msgstr "Spiel auswählen" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Wähle einen Titel zum Installieren in den NAND aus." - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Wählen Sie die RSO-Moduladresse aus:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10713,23 +10797,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Wähle die Schlüsseldateien (OTP/SEEPROM Dump)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Wii-Spielstand auswählen" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Wähle aus, wo das konvertierte Abbild gespeichert werden soll" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Wähle aus, wo die konvertierten Abbilder gespeichert werden sollen" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Ausgewählte Schriftart" @@ -10787,7 +10854,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10838,6 +10905,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Senden" @@ -10846,6 +10934,15 @@ msgstr "Senden" msgid "Sensor Bar Position:" msgstr "Position der Sensorleiste:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10876,39 +10973,35 @@ msgstr "&Wert zuweisen" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "PC zuweisen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Als &Standard-ISO festlegen" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Lege eine Speicherkarten-Datei für Slot A fest" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Lege eine Speicherkarten-Datei für Slot B fest" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Symbol-&Endadresse festlegen" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "&Symbolgröße festlegen" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Symbol-Endadresse festlegen" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Symbolgröße festlegen (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10925,7 +11018,7 @@ msgstr "Stellt die Wii Systemsprache ein." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10937,10 +11030,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10991,11 +11091,11 @@ msgstr "Shinkansen-Controller" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "&Log anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "&Werkzeugleiste anzeigen" @@ -11003,15 +11103,15 @@ msgstr "&Werkzeugleiste anzeigen" msgid "Show Active Title in Window Title" msgstr "Aktiven Titel in Fenstertitel anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Alles anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Australien anzeigen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Zeige momentanes Spiel auf Discord" @@ -11020,7 +11120,7 @@ msgstr "Zeige momentanes Spiel auf Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL anzeigen" @@ -11033,7 +11133,7 @@ msgstr "" msgid "Show FPS" msgstr "FPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Bildzähler anzeigen" @@ -11041,15 +11141,15 @@ msgstr "Bildzähler anzeigen" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Frankreich anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "GameCube anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Deutschland anzeigen" @@ -11057,27 +11157,27 @@ msgstr "Deutschland anzeigen" msgid "Show Golf Mode Overlay" msgstr "Golf-Modus-Überlagerung anzeigen" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Eingabebildschirm anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Italien anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "JPN anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Korea anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Lag-Zähler anzeigen" @@ -11085,7 +11185,7 @@ msgstr "Lag-Zähler anzeigen" msgid "Show Language:" msgstr "Anzeigesprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Protokoll&konfiguration anzeigen" @@ -11097,7 +11197,7 @@ msgstr "NetPlay-Nachrichten anzeigen" msgid "Show NetPlay Ping" msgstr "NetPlay-Ping anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Niederlande anzeigen" @@ -11105,12 +11205,12 @@ msgstr "Niederlande anzeigen" msgid "Show On-Screen Display Messages" msgstr "Bildschirmnachrichten zeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL anzeigen" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC anzeigen" @@ -11118,7 +11218,7 @@ msgstr "PC anzeigen" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Plattformen anzeigen" @@ -11126,23 +11226,23 @@ msgstr "Plattformen anzeigen" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Regionen anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Russland anzeigen" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Spanien anzeigen" @@ -11154,19 +11254,23 @@ msgstr "" msgid "Show Statistics" msgstr "Statistiken anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Systemuhr anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Taiwan anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "USA anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Unbekannte anzeigen" @@ -11178,27 +11282,27 @@ msgstr "" msgid "Show VPS" msgstr "VPS anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii anzeigen" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Welt anzeigen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Im &Speicher anzeigen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Im Code anzeigen" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Im Speicher anzeigen" @@ -11215,13 +11319,9 @@ msgstr "Im Speicher anzeigen" msgid "Show in server browser" msgstr "Im Server-Browser anzeigen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "&Ziel im Speicher anzeigen" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11257,18 +11357,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11289,6 +11377,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11328,6 +11428,14 @@ msgstr "" "Zeigt verschiedene Rendering-Statistiken an.

Im " "Zweifel deaktiviert lassen." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Nebeneinander" @@ -11344,7 +11452,7 @@ msgstr "Seitwärts umschalten" msgid "Sideways Wii Remote" msgstr "Wiimote seitwärts" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Signaturendatenbank" @@ -11393,7 +11501,7 @@ msgstr "" "Größe des Dehnungspuffers in Millisekunden. Zu niedrige Werte können zu " "Audioknistern führen." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Überspringen" @@ -11576,6 +11684,10 @@ msgstr "" msgid "Speed" msgstr "Geschwindigkeit" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11612,11 +11724,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Aufzeichnung der Eingabe starten" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Aufnahme starten" @@ -11655,39 +11767,39 @@ msgstr "Schritt" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Schritt hinein" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Schritt heraus" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Schritt über" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Schritt heraus erfolgreich!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Zeitüberschreitung bei Schritt heraus!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Schritt über in Bearbeitung..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Schritt erfolgreich!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Schrittweite" @@ -11696,7 +11808,7 @@ msgstr "Schrittweite" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Stereoskopischer 3D-Modus" @@ -11726,7 +11838,7 @@ msgstr "Stick" msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Wiedergabe/Aufzeichnung der Eingabe stoppen" @@ -11805,14 +11917,14 @@ msgstr "Stil:" msgid "Stylus" msgstr "Eingabestift" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Erfolg" @@ -11839,24 +11951,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Spielstände wurden erfolgreich exportiert" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Zertifikate aus NAND erfolgreich extrahiert" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Datei erfolgreich extrahiert." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Systemdaten erfolgreich extrahiert." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Spielstand wurde erfolgreich importiert." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Der Titel wurde erfolgreich in den NAND installiert." @@ -11907,7 +12019,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11935,17 +12047,21 @@ msgstr "Zu B wechseln" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Symbol (%1) Endadresse:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Symbolname:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symbole" @@ -11996,7 +12112,7 @@ msgstr "Synchronisiere Spielstände..." msgid "System Language:" msgstr "Systemsprache:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS-Eingabe" @@ -12007,9 +12123,9 @@ msgid "TAS Tools" msgstr "TAS-Werkzeuge" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Tags" @@ -12027,7 +12143,7 @@ msgstr "Schweif" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Screenshot erstellen" @@ -12035,7 +12151,7 @@ msgstr "Screenshot erstellen" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12070,7 +12186,7 @@ msgstr "Texturen-Cache-Genauigkeit" msgid "Texture Dumping" msgstr "Texturdump" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Texturfilterung" @@ -12117,7 +12233,7 @@ msgstr "Die IPL-Datei ist kein bekannter guter Dump. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Die Partitionen der Meisterstücke fehlen." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12125,7 +12241,7 @@ msgstr "" "Das NAND konnte nicht repariert werden. Es wird empfohlen, deine aktuellen " "Daten zu sichern und mit einem frischen NAND neu anzufangen." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "Das NAND wurde repariert." @@ -12293,7 +12409,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Das Dateisystem ist ungültig oder konnte nicht gelesen werden." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12435,7 +12551,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12476,7 +12592,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Die ausgewählte Datei \"{0}\" existiert nicht" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12537,7 +12653,7 @@ msgstr "Die Updatepartition fehlt." msgid "The update partition is not at its normal position." msgstr "Die Update-Partition ist nicht in der normalen Position." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12655,7 +12771,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Dies kann nicht ruckgängig gemacht werden!" @@ -12894,7 +13010,7 @@ msgstr "Threads" msgid "Threshold" msgstr "Schwelle" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -12915,10 +13031,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titel" @@ -12926,25 +13042,29 @@ msgstr "Titel" msgid "To" msgstr "Zu" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Zu:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Vollbildmodus umschalten" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "3D-Anaglyph umschalten" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "3D-Nebeneinander umschalten" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "3D-Übereinander umschalten" @@ -12952,28 +13072,28 @@ msgstr "3D-Übereinander umschalten" msgid "Toggle All Log Types" msgstr "Alle Log-Typen umschalten" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Seitenverhältnis umschalten" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Haltepunkt umschalten" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Zuschneiden umschalten" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Benutzerdefinierte Texturen umschalten" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB-Kopien umschalten" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Nebel umschalten" @@ -12985,31 +13105,31 @@ msgstr "Vollbildmodus umschalten" msgid "Toggle Pause" msgstr "Pause umschalten" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "SD-Karte umschalten" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "EFB-Zugang überspringen umschalten" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Texturdump umschalten" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "USB-Tastatur umschalten" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "XFB-Kopien umschalten" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Sofortigen XFB-Modus umschalten" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Tokenisierung fehlgeschlagen." @@ -13132,7 +13252,7 @@ msgid "Trophy" msgstr "Trophäe" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13162,7 +13282,7 @@ msgstr "USB-Geräteemulation" msgid "USB Emulation" msgstr "USB-Emulation" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB-Emulationsgeräte" @@ -13213,15 +13333,15 @@ msgstr "" "Kompilierung beseitigt, während die Leistung nur minimal beeinflusst wird. " "Die Ergebnisse hängen jedoch vom Verhalten des Grafiktreibers ab." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Konnte RSO-Module nicht automatisch erkennen" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -13260,7 +13380,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -13283,11 +13403,11 @@ msgstr "Unkomprimierte GC/Wii-Abbilder (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Spielstand Laden rückgängig machen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Spielstand Speichern rückgängig machen" @@ -13308,7 +13428,7 @@ msgstr "" "Titels aus dem NAND entfernt, ohne die gespeicherten Daten zu löschen. " "Fortsetzen?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Vereinigte Staaten" @@ -13410,11 +13530,11 @@ msgstr "Unbekannt(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Unbekannt(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Unbegrenzt" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "ROM entladen" @@ -13422,7 +13542,12 @@ msgstr "ROM entladen" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13522,7 +13647,7 @@ msgstr "Aufrecht umschalten" msgid "Upright Wii Remote" msgstr "Wiimote aufrecht" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Einstellungen zur Berichterstattung von Nutzungsdaten" @@ -13617,7 +13742,7 @@ msgstr "Benutzername" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13698,7 +13823,7 @@ msgstr "" msgid "Value" msgstr "Wert" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13786,22 +13911,22 @@ msgstr "Virtuelle Kerben" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Lautstärke" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Lautstärke reduzieren" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Lautloser Modus ein/ausschalten" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Lautstärke erhöhen" @@ -13809,7 +13934,7 @@ msgstr "Lautstärke erhöhen" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD-Dateien (*.wad)" @@ -13944,7 +14069,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Warnungen" @@ -14097,7 +14222,7 @@ msgstr "Freigegebene USB-Durchleitungsgeräte" msgid "Widescreen Hack" msgstr "Breitbild-Hack" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14167,7 +14292,7 @@ msgstr "Wii und Wiimote" msgid "Wii data is not public yet" msgstr "Wii-Daten sind noch nicht öffentlich" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-Spielstände (*.bin);;Alle Dateien (*)" @@ -14202,11 +14327,11 @@ msgstr "Weltweit" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Schreiben" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -14366,7 +14491,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "Du führst die neueste verfügbare Version auf dieser Update-Spur aus." @@ -14434,7 +14559,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index 0af7e40a01..9acb92254c 100644 --- a/Languages/po/dolphin-emu.pot +++ b/Languages/po/dolphin-emu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -158,7 +158,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -177,7 +177,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -189,7 +189,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -203,7 +203,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -223,22 +223,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -246,6 +246,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -266,7 +270,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -279,7 +283,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -323,10 +327,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -336,23 +344,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -361,14 +365,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -380,11 +384,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -392,7 +396,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -400,18 +404,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -447,7 +448,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "" @@ -472,36 +473,36 @@ msgstr "" msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "" @@ -525,15 +526,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "" @@ -545,11 +546,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -563,19 +564,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -583,7 +584,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -596,19 +597,19 @@ msgstr "" msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "" @@ -616,7 +617,7 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -624,7 +625,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "" @@ -637,12 +638,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "" @@ -654,7 +655,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -666,11 +667,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "" @@ -678,7 +679,7 @@ msgstr "" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -700,17 +701,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -722,11 +723,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -746,7 +747,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "" @@ -770,7 +771,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -848,7 +849,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -860,7 +861,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -896,19 +897,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -932,7 +933,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1029,7 +1030,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1059,8 +1060,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1078,7 +1079,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1088,7 +1089,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1172,7 +1173,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1248,7 +1249,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1299,11 +1300,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1337,13 +1338,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1362,7 +1363,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1422,7 +1423,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1478,7 +1479,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1486,7 +1487,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1495,7 +1496,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1504,8 +1505,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1529,11 +1530,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1591,7 +1592,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1603,19 +1604,19 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1629,8 +1630,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1641,7 +1642,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1678,8 +1679,8 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1740,7 +1741,11 @@ msgstr "" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1760,7 +1765,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1774,6 +1779,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1785,7 +1801,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1868,10 +1884,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "" @@ -1899,7 +1915,7 @@ msgstr "" msgid "Basic" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "" @@ -1959,9 +1975,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -1997,15 +2013,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2133,30 +2149,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2252,7 +2268,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2287,7 +2303,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2349,14 +2365,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2405,7 +2421,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2453,7 +2469,7 @@ msgstr "" msgid "Change Disc" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2513,7 +2529,7 @@ msgstr "" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2525,7 +2541,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2543,28 +2559,28 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" msgstr "" #. i18n: Refers to emulated wii remote movements. @@ -2584,7 +2600,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2594,7 +2610,7 @@ msgstr "" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2615,7 +2631,7 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2639,7 +2655,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2659,7 +2675,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2694,9 +2710,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2721,7 +2737,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2828,9 +2844,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2843,7 +2859,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2854,7 +2870,7 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "" @@ -2862,27 +2878,27 @@ msgstr "" msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2927,19 +2943,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2951,6 +2967,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2959,7 +2985,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2967,7 +2993,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2976,7 +3002,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3001,7 +3027,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3088,18 +3114,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3108,18 +3138,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3225,8 +3251,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3322,7 +3348,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3510,24 +3536,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3583,8 +3609,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "" @@ -3602,7 +3628,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3617,9 +3643,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3668,7 +3694,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3676,7 +3702,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3734,15 +3760,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3750,11 +3776,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3776,7 +3802,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3799,7 +3825,8 @@ msgstr "" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3829,15 +3856,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3847,7 +3874,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3868,9 +3895,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3882,8 +3909,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -3930,12 +3957,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3945,7 +3966,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4002,11 +4023,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4049,7 +4070,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "" @@ -4061,7 +4082,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "" @@ -4178,16 +4199,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4211,7 +4232,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4274,7 +4295,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4294,7 +4315,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "" @@ -4318,8 +4339,8 @@ msgstr "" msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 @@ -4364,7 +4385,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4406,7 +4427,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4482,7 +4503,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4516,7 +4537,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4560,6 +4581,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4587,7 +4617,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4638,14 +4668,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4684,26 +4714,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4720,9 +4750,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "" @@ -4753,7 +4783,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4844,7 +4874,7 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4857,15 +4887,15 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4877,19 +4907,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4897,7 +4927,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "" @@ -4908,11 +4938,11 @@ msgstr "" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "" @@ -4940,7 +4970,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4968,35 +4998,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5024,7 +5054,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5090,7 +5120,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5119,15 +5149,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5146,25 +5176,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5184,18 +5214,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5207,7 +5237,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5244,7 +5274,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5283,7 +5313,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5419,19 +5449,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5485,8 +5515,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5494,11 +5524,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5534,9 +5565,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5548,20 +5579,20 @@ msgstr "" msgid "File Info" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5659,8 +5690,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5727,7 +5758,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5737,7 +5768,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5780,20 +5811,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5850,11 +5881,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5888,11 +5919,12 @@ msgstr "" msgid "FullScr" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5912,7 +5944,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5928,11 +5960,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6045,11 +6077,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6083,8 +6115,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6210,7 +6242,8 @@ msgstr "" msgid "Gecko Codes" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6230,14 +6263,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6255,7 +6295,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6288,7 +6328,7 @@ msgstr "" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6297,7 +6337,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6319,7 +6359,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6401,7 +6441,7 @@ msgstr "" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6419,12 +6459,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6488,7 +6528,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6589,11 +6629,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6627,6 +6667,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6680,7 +6730,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6695,15 +6745,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6759,24 +6809,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6825,8 +6875,8 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "" @@ -6840,10 +6890,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "" @@ -6862,13 +6912,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "" @@ -6886,7 +6933,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6894,8 +6941,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6909,7 +6957,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6918,7 +6966,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6977,8 +7025,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -6995,7 +7043,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7003,7 +7051,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7011,7 +7059,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7020,7 +7068,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7100,11 +7148,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7112,47 +7160,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7164,14 +7212,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7179,11 +7228,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7205,7 +7254,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7240,7 +7289,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7248,7 +7297,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7378,6 +7427,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7411,11 +7468,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7425,17 +7482,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7444,7 +7501,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7455,7 +7512,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7463,16 +7520,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7480,104 +7542,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7585,20 +7647,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7606,7 +7663,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7631,20 +7688,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7654,10 +7711,11 @@ msgid "Log Configuration" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7696,7 +7754,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7759,9 +7817,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7770,7 +7828,7 @@ msgstr "" msgid "Maker:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7778,7 +7836,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7817,7 +7875,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7833,7 +7891,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7861,7 +7919,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7869,7 +7927,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7940,8 +7998,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7983,7 +8041,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8007,10 +8065,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8019,8 +8077,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8029,7 +8087,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8046,8 +8104,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8060,11 +8118,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8143,7 +8201,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8168,7 +8226,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8176,12 +8234,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8189,8 +8248,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8277,7 +8337,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8318,7 +8378,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8518,7 +8578,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "" @@ -8526,13 +8586,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8553,13 +8613,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8661,7 +8725,7 @@ msgstr "" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8678,7 +8742,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8686,16 +8750,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8724,7 +8788,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8737,7 +8801,7 @@ msgstr "" msgid "Pads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8800,7 +8864,7 @@ msgstr "" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8845,7 +8909,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8875,11 +8939,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8895,8 +8959,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8908,7 +8972,7 @@ msgstr "" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "" @@ -9003,7 +9067,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9054,7 +9118,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9072,9 +9136,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9082,8 +9146,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9127,13 +9192,13 @@ msgstr "" msgid "Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9150,11 +9215,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9181,7 +9246,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "" @@ -9206,11 +9271,11 @@ msgstr "" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9247,13 +9312,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9276,7 +9341,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" msgid "Red Right" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9381,8 +9446,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9403,7 +9468,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9432,7 +9498,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9445,7 +9511,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9477,7 +9543,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9489,7 +9555,7 @@ msgstr "" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9541,8 +9607,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9672,20 +9738,20 @@ msgstr "" msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9755,11 +9821,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "" @@ -9771,7 +9837,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9786,22 +9852,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9813,15 +9891,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9829,73 +9911,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9915,11 +10001,7 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9930,19 +10012,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9976,7 +10050,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "" @@ -10003,7 +10077,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10011,7 +10085,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10047,7 +10121,7 @@ msgstr "" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10056,7 +10130,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10064,18 +10138,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10084,6 +10162,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10092,6 +10174,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10100,58 +10190,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10169,24 +10263,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10195,19 +10285,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10215,23 +10301,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10287,7 +10356,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10330,6 +10399,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "" @@ -10338,6 +10428,15 @@ msgstr "" msgid "Sensor Bar Position:" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10366,39 +10465,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10412,7 +10507,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10424,10 +10519,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10478,11 +10580,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "" @@ -10490,15 +10592,15 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10507,7 +10609,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10520,7 +10622,7 @@ msgstr "" msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10528,15 +10630,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10544,27 +10646,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10572,7 +10674,7 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "" @@ -10584,7 +10686,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10592,12 +10694,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10605,7 +10707,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "" @@ -10613,23 +10715,23 @@ msgstr "" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10641,19 +10743,23 @@ msgstr "" msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10665,27 +10771,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10702,13 +10808,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10741,18 +10843,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10773,6 +10863,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10805,6 +10907,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10821,7 +10931,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10868,7 +10978,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11042,6 +11152,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11078,11 +11192,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "" @@ -11121,39 +11235,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11162,7 +11276,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11192,7 +11306,7 @@ msgstr "" msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11261,14 +11375,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11295,24 +11409,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11363,7 +11477,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11388,17 +11502,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11447,7 +11565,7 @@ msgstr "" msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "" @@ -11458,9 +11576,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11478,7 +11596,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "" @@ -11486,7 +11604,7 @@ msgstr "" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11521,7 +11639,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11566,13 +11684,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11723,7 +11841,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11847,7 +11965,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11881,7 +11999,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11939,7 +12057,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12044,7 +12162,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12235,7 +12353,7 @@ msgstr "" msgid "Threshold" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12254,10 +12372,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "" @@ -12265,25 +12383,29 @@ msgstr "" msgid "To" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12291,28 +12413,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12324,31 +12446,31 @@ msgstr "" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12469,7 +12591,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12499,7 +12621,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12537,15 +12659,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12577,7 +12699,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12600,11 +12722,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "" @@ -12622,7 +12744,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12718,11 +12840,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12730,7 +12852,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12828,7 +12955,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12921,7 +13048,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -12992,7 +13119,7 @@ msgstr "" msgid "Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13080,22 +13207,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13103,7 +13230,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13204,7 +13331,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "" @@ -13317,7 +13444,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13387,7 +13514,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13422,11 +13549,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13570,7 +13697,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13634,7 +13761,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/el.po b/Languages/po/el.po index cc46a97438..0a5be71de0 100644 --- a/Languages/po/el.po +++ b/Languages/po/el.po @@ -6,17 +6,17 @@ # firespin, 2014-2015,2018,2020 # Gpower2 , 2011 # link_to_the_past , 2013-2018,2020,2022 -# MRCYO Dev, 2023 +# e6b3518eccde9b3ba797d0e9ab3bc830_0a567e3, 2023 # Panos , 2013 msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: MRCYO Dev, 2023\n" -"Language-Team: Greek (http://app.transifex.com/delroth/dolphin-emu/language/" -"el/)\n" +"Last-Translator: e6b3518eccde9b3ba797d0e9ab3bc830_0a567e3, 2023\n" +"Language-Team: Greek (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/el/)\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -169,7 +169,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -188,7 +188,7 @@ msgstr "" msgid "%1 has left" msgstr "%1 έχει φύγει" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -214,7 +214,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -234,22 +234,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Κανονική Ταχύτητα)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -257,6 +257,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -277,7 +281,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -290,7 +294,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -334,10 +338,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Περί" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -347,23 +355,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Ρυθμίσεις Ήχου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Αυτόματη Ενημέρωση:" @@ -372,14 +376,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Σημεία Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Ιχνηλάτης Σφαλμάτων" @@ -391,11 +395,11 @@ msgstr "&Ακύρωση" msgid "&Cheats Manager" msgstr "&Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Έλεγχος για Ενημερώσεις..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -403,7 +407,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -411,18 +415,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Ρυθμίσεις Χειριστηρίων" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Δημιουργία..." @@ -458,7 +459,7 @@ msgstr "&Επεξεργασία..." msgid "&Eject Disc" msgstr "&Εξαγωγή Δίσκου" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Εξομοίωση" @@ -483,36 +484,36 @@ msgstr "" msgid "&File" msgstr "&Αρχείο" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Γραμματοσειρά..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Προώθηση ανά Καρέ" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Ρυθμίσεις Γραφικών" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Βοήθεια" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Ρυθμίσεις Πλήκτρων Συντόμευσης" @@ -536,15 +537,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -556,11 +557,11 @@ msgstr "&Γλώσσα:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Φόρτωση Σημείου Αποθήκευσης" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -574,19 +575,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Μνήμη" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Ταινία" @@ -594,7 +595,7 @@ msgstr "&Ταινία" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Δίκτυο" @@ -607,19 +608,19 @@ msgstr "" msgid "&Open..." msgstr "&Άνοιγμα..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Ρυθμίσεις" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Παύση" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Αναπαραγωγή" @@ -627,7 +628,7 @@ msgstr "&Αναπαραγωγή" msgid "&Properties" msgstr "&Ιδιότητες" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Μόνο Για Ανάγνωση" @@ -635,7 +636,7 @@ msgstr "&Μόνο Για Ανάγνωση" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Καταχωρητές" @@ -648,12 +649,12 @@ msgstr "&Αφαίρεση" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Επανεκκίνηση" @@ -665,7 +666,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -677,11 +678,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Όριο Ταχύτητας:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Διακοπή" @@ -689,7 +690,7 @@ msgstr "&Διακοπή" msgid "&Theme:" msgstr "&Θέμα:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -711,17 +712,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Ιστοσελίδα" @@ -733,11 +734,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ναι" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -757,7 +758,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(ανενεργό)" @@ -781,7 +782,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -859,7 +860,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -871,7 +872,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -907,19 +908,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D Βάθος" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -943,7 +944,7 @@ msgstr "4:3" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1040,7 +1041,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1073,8 +1074,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Περισσότερο-από" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1092,7 +1093,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1102,7 +1103,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1186,7 +1187,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1262,7 +1263,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1313,11 +1314,11 @@ msgstr "Προσθήκη Νέας USB Συσκευής" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1351,13 +1352,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Διεύθυνση" @@ -1376,7 +1377,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1436,7 +1437,7 @@ msgstr "Για προχωρημένους" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1492,7 +1493,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1500,7 +1501,7 @@ msgid "All Files" msgstr "Όλα τα Αρχεία" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Όλα τα Αρχεία (*)" @@ -1509,7 +1510,7 @@ msgstr "Όλα τα Αρχεία (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Όλα τα GC/Wii αρχεία" @@ -1518,8 +1519,8 @@ msgstr "Όλα τα GC/Wii αρχεία" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1543,11 +1544,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Να Επιτρέπονται Ασύμφωνες Ρυθμίσεις Περιοχών" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Άδεια Μετάδοσης Στατιστικών Χρήσης " @@ -1605,7 +1606,7 @@ msgstr "Γωνεία" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Εξομάλυνση Ορίων" @@ -1617,19 +1618,19 @@ msgstr "Εξομάλυνση Ορίων:" msgid "Any Region" msgstr "Οποιαδήποτε Περιοχή" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1643,8 +1644,8 @@ msgstr "Apploader Ημερομηνία:" msgid "Apply" msgstr "Εφαρμογή" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1655,7 +1656,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το '%1';" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το αρχείο;" @@ -1692,8 +1693,8 @@ msgstr "Αναλογία Οθόνης:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1754,7 +1755,11 @@ msgstr "Αυτόματα" msgid "Auto (Multiple of 640x528)" msgstr "Αυτόματα (Πολλαπλάσιο του 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Ρυθμίσεις Αυτόματης Ενημέρωσης" @@ -1774,7 +1779,7 @@ msgstr "Αυτόματη Προσαρμογή Μεγέθους Παραθύρο msgid "Auto-Hide" msgstr "Αυτόματη Απόκρυψη" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1788,6 +1793,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1799,7 +1815,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1882,10 +1898,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Εικονίδιο" @@ -1913,7 +1929,7 @@ msgstr "" msgid "Basic" msgstr "Βασικές" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Βασικές Ρυθμίσεις" @@ -1973,9 +1989,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2011,15 +2027,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2147,30 +2163,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2266,7 +2282,7 @@ msgstr "" msgid "C Stick" msgstr "Stick Κάμερας " -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2301,7 +2317,7 @@ msgstr "" msgid "Calculate" msgstr "Υπολογισμός" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2363,14 +2379,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2419,7 +2435,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2467,7 +2483,7 @@ msgstr "Αλλαγή &Δίσκου..." msgid "Change Disc" msgstr "Αλλαγή Δίσκου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Αυτόματη Αλλαγή Δίσκων" @@ -2527,7 +2543,7 @@ msgstr "Αναζήτηση Cheat" msgid "Cheats Manager" msgstr "Διαχειριστής Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Έλεγχος NAND..." @@ -2539,7 +2555,7 @@ msgstr "Έλεγχος Αλλαγών στην Λίστα Παιχνιδιών msgid "Check for updates" msgstr "Έλεγχος για ενημερώσεις" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2557,29 +2573,29 @@ msgstr "Κίνα" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Επιλέξτε ένα αρχείο για άνοιγμα" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Επιλέξτε τον φάκελο προς αποσυμπίεση" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2598,7 +2614,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2608,7 +2624,7 @@ msgstr "Καθάρισ." msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2629,7 +2645,7 @@ msgstr "" msgid "Close" msgstr "Κλείσιμο" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ρυ&θμίσεις" @@ -2653,7 +2669,7 @@ msgstr "Κωδικός:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2673,7 +2689,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2708,9 +2724,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Συμπίεση" @@ -2735,7 +2751,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2842,9 +2858,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Επιβεβαίωση" @@ -2857,7 +2873,7 @@ msgstr "Επιβεβαίωση αλλαγής backend " msgid "Confirm on Stop" msgstr "Επιβεβαίωση Διακοπής" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2868,7 +2884,7 @@ msgstr "Επιβεβαίωση" msgid "Connect" msgstr "Σύνδεση" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Σύνδεση Σανίδας Ισορροπίας" @@ -2876,27 +2892,27 @@ msgstr "Σύνδεση Σανίδας Ισορροπίας" msgid "Connect USB Keyboard" msgstr "Σύνδεση Πληκτρολογίου USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Σύνδεση Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Σύνδεση Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Σύνδεση Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Σύνδεση Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Σύνδεση Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Σύνδεση Wii Remotes" @@ -2941,19 +2957,19 @@ msgstr "Stick Ελέγχου " msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2965,6 +2981,16 @@ msgstr "Ρυθμίσεις Χειριστηρίων" msgid "Controllers" msgstr "Χειριστήρια" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2973,7 +2999,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2981,7 +3007,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2990,7 +3016,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3015,7 +3041,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3104,18 +3130,22 @@ msgstr "" msgid "Copy" msgstr "Αντιγραφή" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3124,18 +3154,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3241,8 +3267,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3338,7 +3364,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Τρέχουσα Περιοχή" @@ -3526,24 +3552,24 @@ msgstr "Ποιότητα Αποκωδικοποίησης:" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Μείωση Βάθους" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Μείωση Ταχύτητας Εξομοίωσης" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Μείωση IR" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3599,8 +3625,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Διαγραφή" @@ -3618,7 +3644,7 @@ msgstr "Διαγραφή Επιλεγμένων Αρχείων..." msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Βάθος" @@ -3633,9 +3659,9 @@ msgstr "Βάθος:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Περιγραφή" @@ -3684,7 +3710,7 @@ msgstr "" msgid "Detect" msgstr "Ανίχνευση" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3692,7 +3718,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (πολλαπλές φορές την ημέρα)" @@ -3751,15 +3777,15 @@ msgstr "Απενεργοποίηση Φίλτρου Αντιγραφής " msgid "Disable EFB VRAM Copies" msgstr "Απενεργοποίηση EFB VRAM Αντίγραφα" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Απενεργοποίηση Ορίου Ταχύτητας Εξομοίωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3767,11 +3793,11 @@ msgstr "" msgid "Disable Fog" msgstr "Απενεργοποίηση Ομίχλης" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Απενεργοποίηση JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3793,7 +3819,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3816,7 +3842,8 @@ msgstr "Δίσκος" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3846,17 +3873,17 @@ msgstr "Απόσταση" msgid "Distance of travel from neutral position." msgstr "Απόσταση μετακίνησης από ουδέτερη θέση." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3866,7 +3893,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Θέλετε να σταματήσετε την τρέχουσα εξομοίωση;" @@ -3887,9 +3914,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3901,8 +3928,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Ταινίες (*.dtm)" @@ -3951,12 +3978,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Το σύστημα cheat του Dolphin είναι επί του παρόντος απενεργοποιημένο." @@ -3966,7 +3987,7 @@ msgstr "Το σύστημα cheat του Dolphin είναι επί του παρ msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Να Μην Γίνει Ενημέρωση" @@ -4024,11 +4045,11 @@ msgstr "Ελήφθησαν %1 κωδικοί. (προστέθηκαν %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4071,7 +4092,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Εξαγωγή Ήχου" @@ -4083,7 +4104,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Εξαγωγή EFB Target" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Εξαγωγή Καρέ" @@ -4200,16 +4221,16 @@ msgstr "Ανατολική Ασία" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4233,7 +4254,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4296,7 +4317,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Ταχύτητα Εξομοίωσης" @@ -4316,7 +4337,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "Ενεργοποίηση Ελαστικότητας Ήχου" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Ενεργοποίηση Cheat" @@ -4340,9 +4361,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Ενεργοποίηση Διπλού Πυρήνα" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Ενεργοποίηση Διπλού Πυρήνα (επιτάχυνση)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4386,7 +4407,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4428,7 +4449,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4506,7 +4527,7 @@ msgstr "" "Ενεργοποιεί το Floating Point Result Flag υπολογισμό, απαραίτητο για μερικά " "παιχνίδια. (Ενεργό = Συμβατότητα, Ανενεργό = Ταχύτητα)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4540,7 +4561,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4586,6 +4607,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4613,7 +4643,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4664,14 +4694,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4710,26 +4740,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4746,9 +4776,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Σφάλμα" @@ -4781,7 +4811,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4872,7 +4902,7 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Ευρώπη" @@ -4885,15 +4915,15 @@ msgstr "" msgid "Exit" msgstr "Έξοδος" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4905,19 +4935,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4925,7 +4955,7 @@ msgstr "" msgid "Experimental" msgstr "Πειραματικός" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Εξαγωγή Όλων Των Αποθηκεύσεων Wii" @@ -4936,11 +4966,11 @@ msgstr "Εξαγωγή Όλων Των Αποθηκεύσεων Wii" msgid "Export Failed" msgstr "Η Εξαγωγή Απέτυχε" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Εξαγωγή Εγγραφής" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Εξαγωγή Εγγραφής..." @@ -4968,7 +4998,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4996,35 +5026,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Εξαγωγή Ολόκληρου Δίσκου..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Εξαγωγή Αρχείου..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Εξαγωγή Αρχείων..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Εξαγωγή Αρχείων Συστήματος..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Εξαγωγή Όλων Των Αρχείων..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5052,7 +5082,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5118,7 +5148,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5147,15 +5177,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5174,25 +5204,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5212,18 +5242,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5235,7 +5265,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5272,7 +5302,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5311,7 +5341,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5447,19 +5477,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5513,8 +5543,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Αποτυχία" @@ -5522,11 +5552,12 @@ msgstr "Αποτυχία" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5562,9 +5593,9 @@ msgstr "" msgid "File Details" msgstr "Πληροφορίες Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5576,20 +5607,20 @@ msgstr "" msgid "File Info" msgstr "Πληροφορίες Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Όνομα Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Διαδρομή Αρχείου" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Μέγεθος Αρχείου" @@ -5687,8 +5718,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5755,7 +5786,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5765,7 +5796,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5808,20 +5839,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Προώθηση ανά Καρέ" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5878,11 +5909,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Ελεύθερη Ματιά" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5916,11 +5947,12 @@ msgstr "Από:" msgid "FullScr" msgstr "Πλήρης Οθόνη" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5940,7 +5972,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5956,11 +5988,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6073,11 +6105,11 @@ msgstr "Παιχνίδι" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Carts (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6111,8 +6143,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID Παιχνιδιού" @@ -6238,7 +6270,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Κωδικοί Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6258,14 +6291,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6283,7 +6323,7 @@ msgstr "Γερμανία" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6316,7 +6356,7 @@ msgstr "Γραφικά" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6325,7 +6365,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6347,7 +6387,7 @@ msgstr "Αριστερό Πράσινο" msgid "Green Right" msgstr "Δεξί Πράσινο" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Προβολή Πλέγματος" @@ -6429,7 +6469,7 @@ msgstr "Απόκρυψη" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6447,12 +6487,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6516,7 +6556,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6617,11 +6657,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6655,6 +6695,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6708,7 +6758,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6723,15 +6773,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6787,24 +6837,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Αύξηση Βάθους" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Αύξηση IR" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6853,8 +6903,8 @@ msgstr "Πληροφορίες" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Πληροφορίες" @@ -6868,10 +6918,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Είσοδος" @@ -6890,13 +6940,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Εισαγωγή Κάρτας SD" @@ -6914,7 +6961,7 @@ msgstr "" msgid "Install Update" msgstr "Εγκατάσταση Ενημέρωσης" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Εγκατάσταση WAD..." @@ -6922,8 +6969,9 @@ msgstr "Εγκατάσταση WAD..." msgid "Install to the NAND" msgstr "Εγκατάσταση στην NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6937,7 +6985,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6946,7 +6994,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7005,8 +7053,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Εσωτερική Ανάλυση" @@ -7023,7 +7071,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (πιο αργή απ' όλες)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7031,7 +7079,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7039,7 +7087,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7048,7 +7096,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7128,11 +7176,11 @@ msgstr "Ιταλία" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7140,47 +7188,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7192,14 +7240,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7207,11 +7256,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Ιαπωνία" @@ -7233,7 +7282,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7268,7 +7317,7 @@ msgstr "" msgid "Keys" msgstr "Πλήκτρα" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7276,7 +7325,7 @@ msgstr "" msgid "Kick Player" msgstr "Διώξιμο Παίκτη" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Κορέα" @@ -7409,6 +7458,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7442,11 +7499,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Λίστα Στηλών" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Προβολή Λίστας" @@ -7456,17 +7513,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Φόρτωσ." -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7475,7 +7532,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7486,7 +7543,7 @@ msgstr "Φόρτωση Τροποποιημένων Υφών" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Φόρτωση Κυρίως Μενού GameCube" @@ -7494,16 +7551,21 @@ msgstr "Φόρτωση Κυρίως Μενού GameCube" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7511,104 +7573,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Φόρτωση Σημείου Αποθήκευσης" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Φόρτωση Τελευταίας Αποθήκευσης 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Φόρτωση Σημείου Αποθήκευσης 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Φόρτωση Σημείου Αποθήκευσης 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Φόρτωση Σημείου Αποθήκευσης 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Φόρτωση Σημείου Αποθήκευσης 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Φόρτωση Σημείου Αποθήκευσης 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Φόρτωση Σημείου Αποθήκευσης 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Φόρτωση Σημείου Αποθήκευσης 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Φόρτωση Σημείου Αποθήκευσης 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Φόρτωση Σημείου Αποθήκευσης 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Φόρτωση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7616,20 +7678,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7637,7 +7694,7 @@ msgstr "" msgid "Load..." msgstr "Φόρτωση..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7662,20 +7719,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Καταγραφή" @@ -7685,10 +7742,11 @@ msgid "Log Configuration" msgstr "Ρυθμίσεις Καταγραφής" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7727,7 +7785,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7790,9 +7848,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Δημιουργός" @@ -7801,7 +7859,7 @@ msgstr "Δημιουργός" msgid "Maker:" msgstr "Δημιουργός:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7809,7 +7867,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Διαχείριση NAND" @@ -7850,7 +7908,7 @@ msgstr "" "παιχνίδια." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7866,7 +7924,7 @@ msgstr "" msgid "Memory Card" msgstr "Κάρτα Μνήμης" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Διαχειριστής Καρτών Μνήμης" @@ -7894,7 +7952,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7902,7 +7960,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -7973,8 +8031,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8016,7 +8074,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Ταινία" @@ -8040,10 +8098,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Έλεγχος NAND " @@ -8052,8 +8110,8 @@ msgstr "Έλεγχος NAND " msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8062,7 +8120,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8079,8 +8137,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8093,11 +8151,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Όνομα" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8176,7 +8234,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8201,7 +8259,7 @@ msgstr "Νέα Αναζήτηση" msgid "New Tag..." msgstr "Νέα Ετικέτα..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8209,12 +8267,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8222,8 +8281,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8310,7 +8370,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Δεν εντοπίστηκαν προβλήματα." @@ -8351,7 +8411,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8551,7 +8611,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online &Εγχειρίδια " @@ -8559,13 +8619,13 @@ msgstr "Online &Εγχειρίδια " msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8586,13 +8646,17 @@ msgstr "Άνοιγμα &Περιεχόμενου Φακέλου" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8694,7 +8758,7 @@ msgstr "Άλλα" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8711,7 +8775,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8719,16 +8783,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Α&ναπαραγωγή Εγγραφής Χειρισμών..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8757,7 +8821,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8770,7 +8834,7 @@ msgstr "Χειριστήριο" msgid "Pads" msgstr "Χειριστήρια" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8833,7 +8897,7 @@ msgstr "Παύση" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Παύση στο Τέλος της Ταινίας" @@ -8878,7 +8942,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Φωτισμός ανά Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Εκτελέστε Διαδικτυακή Ενημέρωση Συστήματος" @@ -8908,11 +8972,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8928,8 +8992,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Πλατφόρμα" @@ -8941,7 +9005,7 @@ msgstr "Αναπαραγωγή" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Αναπαραγωγή Εγγραφής" @@ -9036,7 +9100,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9087,7 +9151,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9105,9 +9169,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9115,8 +9179,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9160,13 +9225,13 @@ msgstr "" msgid "Profile" msgstr "Προφίλ" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9183,11 +9248,11 @@ msgstr "" msgid "Public" msgstr "Δημόσιος" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Εκκαθάριση Μνήμης Cache Λίστας Παιχνιδιών " -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9214,7 +9279,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Ερώτηση" @@ -9239,11 +9304,11 @@ msgstr "R-Αναλογική" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9280,13 +9345,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9309,7 +9374,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9368,7 +9433,7 @@ msgstr "Αριστερό Κόκκινο" msgid "Red Right" msgstr "Δεξί Κόκκινο" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9414,8 +9479,8 @@ msgstr "" msgid "Refreshing..." msgstr "Ανανέωση..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Περιοχή" @@ -9436,7 +9501,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9465,7 +9531,7 @@ msgstr "" msgid "Remove Tag..." msgstr "Αφαίρεση Ετικέτας..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9478,7 +9544,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9510,7 +9576,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9522,7 +9588,7 @@ msgstr "Επανεκκίνηση" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9574,8 +9640,8 @@ msgstr "Απαιτείται Επανεκκίνηση" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9705,20 +9771,20 @@ msgstr "" msgid "Rumble" msgstr "Δόνηση" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9788,11 +9854,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Απ&οθήκευση Σημείου Αποθήκευσης" @@ -9804,7 +9870,7 @@ msgstr "Ασφαλής" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9819,22 +9885,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9846,15 +9924,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Αποθήκευση Παλαιότερου Σημείου" @@ -9862,73 +9944,77 @@ msgstr "Αποθήκευση Παλαιότερου Σημείου" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Αποθήκευση Σημείου" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Αποθήκευση Σημείου Αποθήκευσης 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Αποθήκευση Σημείου Αποθήκευσης 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Αποθήκευση Σημείου Αποθήκευσης 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Αποθήκευση Σημείου Αποθήκευσης 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Αποθήκευση Σημείου Αποθήκευσης 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Αποθήκευση Σημείου Αποθήκευσης 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Αποθήκευση Σημείου Αποθήκευσης 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Αποθήκευση Σημείου Αποθήκευσης 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Αποθήκευση Σημείου Αποθήκευσης 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Αποθήκευση Σημείου Αποθήκευσης 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9948,11 +10034,7 @@ msgstr "" msgid "Save as..." msgstr "Αποθήκευση ως..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9963,19 +10045,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -10009,7 +10083,7 @@ msgstr "Στιγμιότυπο" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Αναζήτηση" @@ -10036,7 +10110,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10044,7 +10118,7 @@ msgstr "" msgid "Search games..." msgstr "Αναζήτηση παιχνιδιών..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10080,7 +10154,7 @@ msgstr "Επιλογή" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10089,7 +10163,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10097,18 +10171,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10117,6 +10195,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10125,6 +10207,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10133,58 +10223,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Επιλογή Θέσης %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Επιλογή Θέσης Αποθήκευσης" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Επιλέξτε Θέση 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Επιλέξτε Θέση 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Επιλέξτε Θέση 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Επιλέξτε Θέση 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Επιλέξτε Θέση 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Επιλέξτε Θέση 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Επιλέξτε Θέση 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Επιλέξτε Θέση 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Επιλέξτε Θέση 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Επιλέξτε Θέση 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10202,24 +10296,20 @@ msgstr "Επιλέξτε ένα Φάκελο" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Επιλέξτε ένα Αρχείο" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Επιλέξτε ένα Παιχνίδι" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10228,19 +10318,15 @@ msgstr "" msgid "Select a game" msgstr "Επιλέξτε ένα παιχνίδι" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Επιλέξτε ένα αρχείο για εγκατάσταση στην NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10248,23 +10334,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Επιλέξτε αρχείο αποθήκευσης" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Επιλεγμένη Γραμματοσειρά" @@ -10320,7 +10389,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10363,6 +10432,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Αποστολή" @@ -10371,6 +10461,15 @@ msgstr "Αποστολή" msgid "Sensor Bar Position:" msgstr "Θέση Sensor Bar:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10399,39 +10498,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Ορισμός ως &Προεπιλεγμένου ISO" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10448,7 +10543,7 @@ msgstr "Ορίζει την γλώσσα συστήματος του Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10460,10 +10555,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10514,11 +10616,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Εμφάνιση Παραθύρου Κατα&γραφής " -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Εμφάνιση Γραμμής &Εργαλείων" @@ -10526,15 +10628,15 @@ msgstr "Εμφάνιση Γραμμής &Εργαλείων" msgid "Show Active Title in Window Title" msgstr "Εμφάνιση Ενεργού Τίτλου στον Τίτλο Παραθύρου" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Εμφάνιση Αυστραλίας" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Εμφάνιση Τρέχοντος Παιχνιδιού σε Discord" @@ -10543,7 +10645,7 @@ msgstr "Εμφάνιση Τρέχοντος Παιχνιδιού σε Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Εμφάνιση ELF/DOL" @@ -10556,7 +10658,7 @@ msgstr "" msgid "Show FPS" msgstr "Εμφάνιση FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Εμφάνιση Μετρητή Καρέ" @@ -10564,15 +10666,15 @@ msgstr "Εμφάνιση Μετρητή Καρέ" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Εμφάνιση Γαλλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Εμφάνιση GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Εμφάνιση Γερμανίας" @@ -10580,27 +10682,27 @@ msgstr "Εμφάνιση Γερμανίας" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Εμφάνιση Προβολής Χειρισμών" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Εμφάνιση Ιταλίας" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Εμφάνιση Κορέας" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Εμφάνιση Μετρητή Καθυστέρησης " @@ -10608,7 +10710,7 @@ msgstr "Εμφάνιση Μετρητή Καθυστέρησης " msgid "Show Language:" msgstr "Εμφάνιση Γλώσσας:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Εμφάνιση Ρυθμίσεων &Καταγραφέα" @@ -10620,7 +10722,7 @@ msgstr "Εμφάνιση Μηνυμάτων NetPlay" msgid "Show NetPlay Ping" msgstr "Εμφάνιση NetPlay Ping" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Εμφάνιση Ολλανδίας" @@ -10628,12 +10730,12 @@ msgstr "Εμφάνιση Ολλανδίας" msgid "Show On-Screen Display Messages" msgstr "Εμφάνιση Μηνυμάτων στην Οθόνη " -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Εμφάνιση PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10641,7 +10743,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Εμφάνιση Πλατφόρμας" @@ -10649,23 +10751,23 @@ msgstr "Εμφάνιση Πλατφόρμας" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Εμφάνιση Περιοχών" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Εμφάνιση Ρωσίας" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Εμφάνιση Ισπανίας" @@ -10677,19 +10779,23 @@ msgstr "" msgid "Show Statistics" msgstr "Εμφάνιση Στατιστικών" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Εμφάνιση Ώρας Συστήματος" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Εμφάνιση Ταϊβάν" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Εμφάνιση USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Εμφάνιση Αγνώστων" @@ -10701,27 +10807,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Εμφάνιση WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Εμφάνιση Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Εμφάνιση Κόσμου" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10738,13 +10844,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10777,18 +10879,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10809,6 +10899,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10841,6 +10943,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Δίπλα - Δίπλα" @@ -10857,7 +10967,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "Πλαγιαστό Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10904,7 +11014,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Παράλειψη" @@ -11078,6 +11188,10 @@ msgstr "" msgid "Speed" msgstr "Ταχύτητα" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11114,11 +11228,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Εκκίνηση Ε&γγραφής Χειρισμών" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Εκκίνηση Εγγραφής" @@ -11157,39 +11271,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11198,7 +11312,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11228,7 +11342,7 @@ msgstr "Stick" msgid "Stop" msgstr "Διακοπή" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11297,14 +11411,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Επιτυχία" @@ -11331,24 +11445,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11399,7 +11513,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11424,17 +11538,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11483,7 +11601,7 @@ msgstr "" msgid "System Language:" msgstr "Γλώσσα Συστήματος:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS Είσοδος" @@ -11494,9 +11612,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Ετικέτες" @@ -11514,7 +11632,7 @@ msgstr "" msgid "Taiwan" msgstr "Ταϊβάν" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Δημιουργία Στιγμιότυπου" @@ -11522,7 +11640,7 @@ msgstr "Δημιουργία Στιγμιότυπου" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11557,7 +11675,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11602,13 +11720,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11759,7 +11877,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11884,7 +12002,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11918,7 +12036,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11976,7 +12094,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12086,7 +12204,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12279,7 +12397,7 @@ msgstr "" msgid "Threshold" msgstr "Κατώφλι" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12298,10 +12416,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Τίτλος" @@ -12309,25 +12427,29 @@ msgstr "Τίτλος" msgid "To" msgstr "Εώς" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Εναλλαγή &Πλήρους Οθόνης" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12335,28 +12457,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Εναλλαγή Όλων Τύπων Καταγραφής " -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Εναλλαγή Αναλογίας Οθόνης" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Εναλλαγή EFB Αντίγραφα" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Εναλλαγή Ομίχλης" @@ -12368,31 +12490,31 @@ msgstr "Εναλλαγή Πλήρους Οθόνης" msgid "Toggle Pause" msgstr "Εναλλαγή Παύσης" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12513,7 +12635,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12543,7 +12665,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12581,15 +12703,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12621,7 +12743,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12644,11 +12766,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Αναίρεση Φόρτωσης Σημείου Αποθ. " -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Αναίρεση Αποθήκευσης Σημείου Αποθ. " @@ -12666,7 +12788,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Ηνωμένες Πολιτείες" @@ -12762,11 +12884,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Απεριόριστη" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12774,7 +12896,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12874,7 +13001,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12967,7 +13094,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13038,7 +13165,7 @@ msgstr "" msgid "Value" msgstr "Τιμή" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13126,22 +13253,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Ένταση" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Μείωση Έντασης" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Αύξηση Έντασης" @@ -13149,7 +13276,7 @@ msgstr "Αύξηση Έντασης" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD αρχεία (*.wad)" @@ -13250,7 +13377,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Προειδοποίηση" @@ -13363,7 +13490,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Hack Ευρείας Οθόνης" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13433,7 +13560,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13468,11 +13595,11 @@ msgstr "Κόσμος" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13616,7 +13743,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13681,7 +13808,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/en.po b/Languages/po/en.po index 9f5ace4a1a..b9f862287d 100644 --- a/Languages/po/en.po +++ b/Languages/po/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -157,7 +157,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -176,7 +176,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -188,7 +188,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -202,7 +202,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -222,22 +222,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -245,6 +245,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -265,7 +269,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -278,7 +282,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -322,10 +326,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -335,23 +343,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -360,14 +364,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -379,11 +383,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -391,7 +395,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -399,18 +403,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -446,7 +447,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "" @@ -471,36 +472,36 @@ msgstr "" msgid "&File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "" @@ -524,15 +525,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "" @@ -544,11 +545,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -562,19 +563,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -582,7 +583,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -595,19 +596,19 @@ msgstr "" msgid "&Open..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "" @@ -615,7 +616,7 @@ msgstr "" msgid "&Properties" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -623,7 +624,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "" @@ -636,12 +637,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "" @@ -653,7 +654,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -665,11 +666,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "" @@ -677,7 +678,7 @@ msgstr "" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -699,17 +700,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -721,11 +722,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -745,7 +746,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "" @@ -769,7 +770,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -847,7 +848,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -859,7 +860,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -895,19 +896,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -931,7 +932,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1028,7 +1029,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1058,8 +1059,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1077,7 +1078,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1087,7 +1088,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1171,7 +1172,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1247,7 +1248,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1298,11 +1299,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1336,13 +1337,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1421,7 +1422,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1477,7 +1478,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1485,7 +1486,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1494,7 +1495,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1503,8 +1504,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1528,11 +1529,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1590,7 +1591,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1602,19 +1603,19 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1628,8 +1629,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1640,7 +1641,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1677,8 +1678,8 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1739,7 +1740,11 @@ msgstr "" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1759,7 +1764,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1773,6 +1778,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1784,7 +1800,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1867,10 +1883,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "" @@ -1898,7 +1914,7 @@ msgstr "" msgid "Basic" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "" @@ -1958,9 +1974,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -1996,15 +2012,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2132,30 +2148,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2251,7 +2267,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2286,7 +2302,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2348,14 +2364,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2404,7 +2420,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2452,7 +2468,7 @@ msgstr "" msgid "Change Disc" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2512,7 +2528,7 @@ msgstr "" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2524,7 +2540,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2542,28 +2558,28 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" msgstr "" #. i18n: Refers to emulated wii remote movements. @@ -2583,7 +2599,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2593,7 +2609,7 @@ msgstr "" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2614,7 +2630,7 @@ msgstr "" msgid "Close" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2638,7 +2654,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2658,7 +2674,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2693,9 +2709,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2720,7 +2736,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2827,9 +2843,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2842,7 +2858,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2853,7 +2869,7 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "" @@ -2861,27 +2877,27 @@ msgstr "" msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2926,19 +2942,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2950,6 +2966,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2958,7 +2984,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2966,7 +2992,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2975,7 +3001,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3000,7 +3026,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3087,18 +3113,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3107,18 +3137,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3224,8 +3250,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3321,7 +3347,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3509,24 +3535,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3582,8 +3608,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "" @@ -3601,7 +3627,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3616,9 +3642,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3667,7 +3693,7 @@ msgstr "" msgid "Detect" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3675,7 +3701,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3733,15 +3759,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3749,11 +3775,11 @@ msgstr "" msgid "Disable Fog" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3775,7 +3801,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3798,7 +3824,8 @@ msgstr "" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3828,15 +3855,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3846,7 +3873,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3867,9 +3894,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3881,8 +3908,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -3929,12 +3956,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3944,7 +3965,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4001,11 +4022,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4048,7 +4069,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "" @@ -4060,7 +4081,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "" @@ -4177,16 +4198,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4210,7 +4231,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4273,7 +4294,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4293,7 +4314,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "" @@ -4317,8 +4338,8 @@ msgstr "" msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 @@ -4363,7 +4384,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4405,7 +4426,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4481,7 +4502,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4515,7 +4536,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4559,6 +4580,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4586,7 +4616,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4637,14 +4667,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4683,26 +4713,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4719,9 +4749,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "" @@ -4752,7 +4782,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4843,7 +4873,7 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4856,15 +4886,15 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4876,19 +4906,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4896,7 +4926,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "" @@ -4907,11 +4937,11 @@ msgstr "" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "" @@ -4939,7 +4969,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4967,35 +4997,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5023,7 +5053,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5089,7 +5119,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5118,15 +5148,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5145,25 +5175,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5183,18 +5213,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5206,7 +5236,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5243,7 +5273,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5282,7 +5312,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5418,19 +5448,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5484,8 +5514,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5493,11 +5523,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5533,9 +5564,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5547,20 +5578,20 @@ msgstr "" msgid "File Info" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5658,8 +5689,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5726,7 +5757,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5736,7 +5767,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5779,20 +5810,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5849,11 +5880,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5887,11 +5918,12 @@ msgstr "" msgid "FullScr" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5911,7 +5943,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5927,11 +5959,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6044,11 +6076,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6082,8 +6114,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6209,7 +6241,8 @@ msgstr "" msgid "Gecko Codes" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6229,14 +6262,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6254,7 +6294,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6287,7 +6327,7 @@ msgstr "" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6296,7 +6336,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6318,7 +6358,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6400,7 +6440,7 @@ msgstr "" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6418,12 +6458,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6487,7 +6527,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6588,11 +6628,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6626,6 +6666,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6679,7 +6729,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6694,15 +6744,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6758,24 +6808,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6824,8 +6874,8 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "" @@ -6839,10 +6889,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "" @@ -6861,13 +6911,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "" @@ -6885,7 +6932,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6893,8 +6940,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6908,7 +6956,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6917,7 +6965,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6976,8 +7024,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -6994,7 +7042,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7002,7 +7050,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7010,7 +7058,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7019,7 +7067,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7099,11 +7147,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7111,47 +7159,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7163,14 +7211,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7178,11 +7227,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7204,7 +7253,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7239,7 +7288,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7247,7 +7296,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7377,6 +7426,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7410,11 +7467,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7424,17 +7481,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7443,7 +7500,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7454,7 +7511,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7462,16 +7519,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7479,104 +7541,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7584,20 +7646,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7605,7 +7662,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7630,20 +7687,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7653,10 +7710,11 @@ msgid "Log Configuration" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7695,7 +7753,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7758,9 +7816,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7769,7 +7827,7 @@ msgstr "" msgid "Maker:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7777,7 +7835,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7816,7 +7874,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7832,7 +7890,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7860,7 +7918,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7868,7 +7926,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7939,8 +7997,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7982,7 +8040,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8006,10 +8064,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8018,8 +8076,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8028,7 +8086,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8045,8 +8103,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8059,11 +8117,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8142,7 +8200,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8167,7 +8225,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8175,12 +8233,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8188,8 +8247,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8276,7 +8336,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8317,7 +8377,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8517,7 +8577,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "" @@ -8525,13 +8585,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8552,13 +8612,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8660,7 +8724,7 @@ msgstr "" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8677,7 +8741,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8685,16 +8749,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8723,7 +8787,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8736,7 +8800,7 @@ msgstr "" msgid "Pads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8799,7 +8863,7 @@ msgstr "" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8844,7 +8908,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8874,11 +8938,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8894,8 +8958,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8907,7 +8971,7 @@ msgstr "" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "" @@ -9002,7 +9066,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9053,7 +9117,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9071,9 +9135,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9081,8 +9145,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9126,13 +9191,13 @@ msgstr "" msgid "Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9149,11 +9214,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9180,7 +9245,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "" @@ -9205,11 +9270,11 @@ msgstr "" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9246,13 +9311,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9275,7 +9340,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9334,7 +9399,7 @@ msgstr "" msgid "Red Right" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9380,8 +9445,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9402,7 +9467,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9431,7 +9497,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9444,7 +9510,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9476,7 +9542,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9488,7 +9554,7 @@ msgstr "" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9540,8 +9606,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9671,20 +9737,20 @@ msgstr "" msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9754,11 +9820,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "" @@ -9770,7 +9836,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9785,22 +9851,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9812,15 +9890,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9828,73 +9910,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9914,11 +10000,7 @@ msgstr "" msgid "Save as..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9929,19 +10011,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9975,7 +10049,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "" @@ -10002,7 +10076,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10010,7 +10084,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10046,7 +10120,7 @@ msgstr "" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10055,7 +10129,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10063,18 +10137,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10083,6 +10161,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10091,6 +10173,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10099,58 +10189,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10168,24 +10262,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10194,19 +10284,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10214,23 +10300,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10286,7 +10355,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10329,6 +10398,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "" @@ -10337,6 +10427,15 @@ msgstr "" msgid "Sensor Bar Position:" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10365,39 +10464,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10411,7 +10506,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10423,10 +10518,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10477,11 +10579,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "" @@ -10489,15 +10591,15 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10506,7 +10608,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10519,7 +10621,7 @@ msgstr "" msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10527,15 +10629,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10543,27 +10645,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10571,7 +10673,7 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "" @@ -10583,7 +10685,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10591,12 +10693,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10604,7 +10706,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "" @@ -10612,23 +10714,23 @@ msgstr "" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10640,19 +10742,23 @@ msgstr "" msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10664,27 +10770,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10701,13 +10807,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10740,18 +10842,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10772,6 +10862,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10804,6 +10906,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10820,7 +10930,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10867,7 +10977,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11041,6 +11151,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11077,11 +11191,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "" @@ -11120,39 +11234,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11161,7 +11275,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11191,7 +11305,7 @@ msgstr "" msgid "Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11260,14 +11374,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11294,24 +11408,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11362,7 +11476,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11387,17 +11501,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11446,7 +11564,7 @@ msgstr "" msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "" @@ -11457,9 +11575,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11477,7 +11595,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "" @@ -11485,7 +11603,7 @@ msgstr "" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11520,7 +11638,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11565,13 +11683,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11722,7 +11840,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11846,7 +11964,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11880,7 +11998,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11938,7 +12056,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12043,7 +12161,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12234,7 +12352,7 @@ msgstr "" msgid "Threshold" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12253,10 +12371,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "" @@ -12264,25 +12382,29 @@ msgstr "" msgid "To" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12290,28 +12412,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12323,31 +12445,31 @@ msgstr "" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12468,7 +12590,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12498,7 +12620,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12536,15 +12658,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12576,7 +12698,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12599,11 +12721,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "" @@ -12621,7 +12743,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12717,11 +12839,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12729,7 +12851,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12827,7 +12954,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12920,7 +13047,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -12991,7 +13118,7 @@ msgstr "" msgid "Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13079,22 +13206,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13102,7 +13229,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13203,7 +13330,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "" @@ -13316,7 +13443,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13386,7 +13513,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13421,11 +13548,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13569,7 +13696,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13633,7 +13760,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/es.po b/Languages/po/es.po index 6abd3af4b7..87b37342d4 100644 --- a/Languages/po/es.po +++ b/Languages/po/es.po @@ -32,10 +32,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Víctor González, 2021-2024\n" -"Language-Team: Spanish (http://app.transifex.com/delroth/dolphin-emu/" +"Last-Translator: Petiso_Carambanal , 2013-2017,2020-2024\n" +"Language-Team: Spanish (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/es/)\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -199,7 +199,7 @@ msgstr "%1 revisión(ones) por delante de %2" msgid "%1 doesn't support this feature on your system." msgstr "%1 no soporta esta característica en tu sistema." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 no es compatible con esta característica." @@ -221,7 +221,7 @@ msgstr "%1 se ha unido" msgid "%1 has left" msgstr "%1 se ha salido" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha desbloqueado %2/%3 logros, con un total de %4/%5 puntos" @@ -233,7 +233,7 @@ msgstr "%1 no es una ROM válida" msgid "%1 is now golfing" msgstr "%1 ahora está jugando al golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 está jugando a %2" @@ -247,7 +247,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 puntos" @@ -267,22 +267,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (velocidad normal)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "El valor de %1 ha cambiado" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "El valor de %1 ha aparecido" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "El valor de %1 se ha utilizado" @@ -290,6 +290,10 @@ msgstr "El valor de %1 se ha utilizado" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -310,7 +314,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -323,7 +327,7 @@ msgstr "Nativa %1x (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "Nativa %1x (%2x%3) para %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA " @@ -367,10 +371,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Acerca de" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "&Añadir función" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Añadir punto de interrupción en memoria" @@ -380,23 +388,19 @@ msgstr "&Añadir punto de interrupción en memoria" msgid "&Add New Code..." msgstr "&Añadir nuevo código..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Añadir función" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Añadir..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Ensamblador" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Ajustes de &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "Actualización automática:" @@ -405,14 +409,14 @@ msgid "&Borderless Window" msgstr "Ventana sin &bordes" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "&Pausar al encontrar una coincidencia" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Puntos de interrupción" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Rastreador de errores" @@ -424,11 +428,11 @@ msgstr "&Cancelar" msgid "&Cheats Manager" msgstr "Administrador de &trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Buscar actualizaciones..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Borrar símbolos" @@ -436,7 +440,7 @@ msgstr "&Borrar símbolos" msgid "&Clone..." msgstr "&Clonar..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Código" @@ -444,18 +448,15 @@ msgstr "&Código" msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Ajustes de &mandos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Copiar dirección" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Copiar dirección:" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Crear..." @@ -491,7 +492,7 @@ msgstr "&Editar..." msgid "&Eject Disc" msgstr "&Expulsar disco" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulación" @@ -516,36 +517,36 @@ msgstr "&Exportar como .gci..." msgid "&File" msgstr "&Archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Tipo de letra..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "Avanzar &fotograma" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "Ajustes de &cámara libre" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Generar el mapa de símbolos a partir de..." -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&Repositorio en GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Ajustes de &gráficos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "A&yuda" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Ajustes de a&tajos" @@ -569,15 +570,15 @@ msgstr "&Importar..." msgid "&Infinity Base" msgstr "Base de &Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Insertar blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "Insertar &BLR" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Fusión de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -589,11 +590,11 @@ msgstr "&Idioma:" msgid "&Load Branch Watch" msgstr "Car&gar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Cargar estado" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "Cargar mapa de símbo&los" @@ -607,19 +608,19 @@ msgstr "&Cargar archivo en dirección actual" msgid "&Lock Watches" msgstr "&Bloquear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "B&loquear posición de ventanas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "&Registrar al encontrar una coincidencia" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Grabación" @@ -627,7 +628,7 @@ msgstr "&Grabación" msgid "&Mute" msgstr "&Silenciar" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Red" @@ -640,19 +641,19 @@ msgstr "&No" msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opciones" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Parchear funciones HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Jugar" @@ -660,7 +661,7 @@ msgstr "&Jugar" msgid "&Properties" msgstr "&Propiedades" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Modo de solo lectura" @@ -668,7 +669,7 @@ msgstr "&Modo de solo lectura" msgid "&Refresh List" msgstr "&Actualizar lista" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registros" @@ -681,12 +682,12 @@ msgstr "&Borrar" msgid "&Remove Code" msgstr "&Quitar código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "&Renombrar símbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reiniciar" @@ -698,7 +699,7 @@ msgstr "&Administrador de paquetes de recursos" msgid "&Save Branch Watch" msgstr "&Guardar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Guardar mapa de símbolos" @@ -710,11 +711,11 @@ msgstr "E%scanear tarjeta(s) de e-Reader..." msgid "&Skylanders Portal" msgstr "Portal de &Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Límite de velocidad:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Detener" @@ -722,13 +723,13 @@ msgstr "&Detener" msgid "&Theme:" msgstr "&Tema visual:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Hilos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "&Herramientas" +msgstr "&Herramienta" #: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" @@ -744,17 +745,17 @@ msgstr "&Quitar ROM" msgid "&Unlock Watches" msgstr "Desblo&quear variables vigiladas" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Vista" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Vigilar" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Página web" @@ -766,11 +767,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sí" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "No se encontró «%1», no se han generado nombres de símbolos" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "No se encontró «%1», probando con la búsqueda de funciones comunes" @@ -790,7 +791,7 @@ msgstr "(Del sistema)" msgid "(host)" msgstr "(anfitrión)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(desactivado)" @@ -814,7 +815,7 @@ msgstr ", Coma" msgid "- Subtract" msgstr "- Restar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -892,7 +893,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "Anisotrópico x16" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "x1" @@ -904,7 +905,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "x2" @@ -940,19 +941,19 @@ msgid "32-bit Unsigned Integer" msgstr "Entero sin signo de 32 bits" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Profundidad 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "x3" @@ -976,7 +977,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "x4" @@ -1077,7 +1078,7 @@ msgstr "" "Si tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1116,8 +1117,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Mayor que" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Ya hay una sesión de juego en red en marcha." @@ -1142,7 +1143,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Ya hay un disco en proceso de inserción." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1157,7 +1158,7 @@ msgstr "" "Un estado de guardado no puede ser cargado sin especificar el juego a " "ejecutar." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1261,7 +1262,7 @@ msgid "Achievement Settings" msgstr "Ajustes de logros" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Logros" @@ -1354,7 +1355,7 @@ msgstr "Action Replay: código normal {0}: subtipo incorrecto {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Activar el chat del juego en red" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Activo" @@ -1405,11 +1406,11 @@ msgstr "Añadir dispositivo USB" msgid "Add Shortcut to Desktop" msgstr "Añadir acceso directo al escritorio" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Añadir punto de interrupción" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Añadir punto de interrupción en memoria" @@ -1443,13 +1444,13 @@ msgstr "Añadir..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Dirección:" @@ -1468,7 +1469,7 @@ msgstr "Espacio de dirección según el estado de la CPU" msgid "Address:" msgstr "Dirección:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1559,7 +1560,7 @@ msgstr "Avanzado" msgid "Advanced Settings" msgstr "Ajustes avanzados" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1638,7 +1639,7 @@ msgstr "Todos los valores de coma flotante doble" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1646,7 +1647,7 @@ msgid "All Files" msgstr "Todos los archivos" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Todos los archivos (*)" @@ -1655,7 +1656,7 @@ msgstr "Todos los archivos (*)" msgid "All Float" msgstr "Todos los valores de coma flotante" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Todos los archivos GC/Wii" @@ -1664,8 +1665,8 @@ msgstr "Todos los archivos GC/Wii" msgid "All Hexadecimal" msgstr "Todos los valores hexadecimales" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos los estados guardados (*.sav *.s##);; Todos los archivos (*)" @@ -1689,11 +1690,11 @@ msgstr "Todos los códigos de los jugadores sincronizados." msgid "All players' saves synchronized." msgstr "Todos las partidas guardadas de los jugadores sincronizados." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Permitir configuración de región independiente" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Permitir informes de estadísticas de uso" @@ -1753,7 +1754,7 @@ msgstr "Ángulo" msgid "Angular velocity to ignore and remap." msgstr "Velocidad angular a ignorar y reasignar." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Suavizado de bordes" @@ -1765,19 +1766,19 @@ msgstr "Suavizado de bordes:" msgid "Any Region" msgstr "Cualquier región" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "Añadir firma a" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Añadir al archivo de firma existente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Aplicar archivo de firma..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1794,8 +1795,8 @@ msgstr "Fecha del «apploader»:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "Aplicar archivo de firma" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1806,7 +1807,7 @@ msgstr "Detección arbitraria de mipmaps" msgid "Are you sure that you want to delete '%1'?" msgstr "¿Seguro que quieres borrar «%1»?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "¿Seguro que quieres borrar este archivo?" @@ -1843,8 +1844,8 @@ msgstr "Relación de aspecto:" msgid "Assemble" msgstr "Ensamblar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "Ensamblar instrucción" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1907,7 +1908,11 @@ msgstr "Automática" msgid "Auto (Multiple of 640x528)" msgstr "Automática (múltiplo de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "Actualización automática" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Ajustes de actualización automática" @@ -1931,7 +1936,7 @@ msgstr "Autoajustar tamaño de ventana" msgid "Auto-Hide" msgstr "Ocultar automáticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "¿Autodetectar módulos RSO?" @@ -1948,6 +1953,25 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" +"Cambia automáticamente el disco del juego cuando lo soliciten los juegos con " +"dos discos. Para usar esta característica, debes ejecutar el juego de las " +"siguientes formas:
- Desde la lista de juegos, con ambos discos presentes " +"en la lista.
- Usando Archivo > Abrir o la interfaz por línea de " +"comandos, indicando las rutas de ambos discos.
- Ejecutando un archivo " +"M3U, ya sea mediante Archivo > Abrir o la interfaz por línea de comandos." +"

Si tienes dudas, deja esta opción desactivada." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Actualizar autom. los valores actuales" @@ -1959,7 +1983,7 @@ msgid "Auxiliary" msgstr "Auxiliar" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -2045,10 +2069,10 @@ msgstr "Ajuste proporcionado incorrecto." msgid "Bad value provided." msgstr "El valor elegido no es correcto." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Imagen" @@ -2076,7 +2100,7 @@ msgstr "Prioridad base" msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Ajustes básicos" @@ -2140,9 +2164,9 @@ msgstr "" "\n" "Vuelve a intentarlo con otro personaje distinto." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Tamaño del bloque" @@ -2180,17 +2204,17 @@ msgstr "" "Se ha activado el modo de acceso directo a Bluetooth, pero no se puede " "utilizar porque Dolphin se ha compilado sin la biblioteca libusb." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Arrancar pausado" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" "Archivo de copia de respaldo de NAND en formato BootMii (*.bin);;Todos los " "archivos (*) " -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Archivo de claves BootMii (*.bin);;Todos los archivos (*)" @@ -2340,31 +2364,31 @@ msgstr "Rama a registro de vínculos (LR guardado)" msgid "Branch: %1" msgstr "Rama master: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Ramas" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Pausa" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "Pausar &y registrar al encontrar una coincidencia" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Punto de interrupción" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" "Se ha encontrado un punto de interrupción. Salto de instrucciones cancelado." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Puntos de interrupción" @@ -2462,7 +2486,7 @@ msgstr "Por: %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "C&rear archivo de firma..." @@ -2501,7 +2525,7 @@ msgstr "" msgid "Calculate" msgstr "Calcular" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2572,14 +2596,14 @@ msgstr "" "No se puede encontrar ningún mando de Wii con el identificador de conexión " "{0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "No puedes empezar el juego en red con un juego en ejecución." #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2629,7 +2653,7 @@ msgstr "No se puede generar el código AR para esta dirección." msgid "Cannot refresh without results." msgstr "No se puede actualizar si no hay resultados." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "La ruta de la carpeta GCI no puede estar en blanco." @@ -2677,7 +2701,7 @@ msgstr "Cambiar &disco..." msgid "Change Disc" msgstr "Cambiar disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Cambiar discos automáticamente" @@ -2753,7 +2777,7 @@ msgstr "Buscar trucos" msgid "Cheats Manager" msgstr "Administrador de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Comprobar NAND..." @@ -2765,7 +2789,7 @@ msgstr "Comprobar en segundo plano si hay cambios en la lista de juegos" msgid "Check for updates" msgstr "Buscar actualizaciones" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2785,30 +2809,30 @@ msgstr "China" msgid "Choose" msgstr "Seleccionar" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "Selecciona la carpeta de destino" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 +msgid "Choose GCI Base Folder" +msgstr "Selecciona la carpeta base GCI" + +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "Selecciona un archivo de entrada principal" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "Selecciona un archivo de entrada secundario" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" msgstr "Selecciona un archivo para abrir" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" +msgid "Choose a File to Open or Create" msgstr "Selecciona un archivo a abrir o crear" -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Selecciona un archivo de entrada principal" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Selecciona un archivo de entrada secundario" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Selecciona la carpeta base GCI" - -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Selecciona la carpeta de destino" - #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 msgid "Clamping of rotation about the yaw axis." @@ -2826,7 +2850,7 @@ msgstr "Mando clásico" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2836,7 +2860,7 @@ msgstr "Borrar" msgid "Clear Branch Watch" msgstr "Borrar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Borrar caché" @@ -2857,7 +2881,7 @@ msgstr "Clonar y &editar código..." msgid "Close" msgstr "Cerrar" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Co&nfiguración" @@ -2881,7 +2905,7 @@ msgstr "Código:" msgid "Codes received!" msgstr "¡Códigos recibidos!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Corrección de color" @@ -2901,7 +2925,7 @@ msgstr "Espacio de color" msgid "Column &Visibility" msgstr "&Visibilidad de columnas" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Combinar dos archivos de firmas..." @@ -2943,9 +2967,9 @@ msgstr "Compilar sombreadores antes de jugar" msgid "Compiling Shaders" msgstr "Compilación de sombreadores" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Compresión" @@ -2970,7 +2994,7 @@ msgstr "Cond." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Condición" @@ -3131,9 +3155,9 @@ msgstr "Configurar salida" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" @@ -3146,7 +3170,7 @@ msgstr "Confirmar cambio de motor" msgid "Confirm on Stop" msgstr "Confirmar detención" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3157,7 +3181,7 @@ msgstr "Confirmar" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Conectar la Balance Board" @@ -3165,27 +3189,27 @@ msgstr "Conectar la Balance Board" msgid "Connect USB Keyboard" msgstr "Conectar teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Conectar mando de Wii %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Conectar mando de Wii 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Conectar mando de Wii 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Conectar mando de Wii 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Conectar mando de Wii 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Conectar mandos de Wii" @@ -3231,19 +3255,19 @@ msgstr "Stick de control" msgid "Controller Profile" msgstr "Perfil del mando" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Perfil del mando 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Perfil del mando 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Perfil del mando 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Perfil del mando 4" @@ -3255,6 +3279,16 @@ msgstr "Ajustes del mando" msgid "Controllers" msgstr "Mandos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3268,7 +3302,7 @@ msgstr "" "tenga efecto.

Si tienes dudas, deja esta opción en " "203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3280,7 +3314,7 @@ msgstr "" "de la pantalla.

Un valor alto creará fuertes efectos fuera de " "pantalla, mientras que un valor pequeño es más agradable." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3294,7 +3328,7 @@ msgstr "" "resolución interna, mejor será el rendimiento.

Si " "tienes dudas, selecciona Nativa." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3329,7 +3363,7 @@ msgstr "" "Controla si se utiliza la emulación DSP de alto o bajo nivel. Predeterminado " "en True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Convergencia" @@ -3435,18 +3469,22 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "Copiar &función" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "Copiar código &hexadecimal" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copiar dirección" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "Copiar código de &línea" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Fallo al copiar" @@ -3455,18 +3493,14 @@ msgstr "Fallo al copiar" msgid "Copy Hex" msgstr "Copiar en hexadecimal" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "Copiar dirección ob&jetivo" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copiar valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Copiar código de &línea" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Copiar dirección ob&jetivo" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Copiar a A" @@ -3594,8 +3628,8 @@ msgstr "No se pudo reconocer el archivo {0}" msgid "Could not save your changes!" msgstr "¡No se han podido guardar los cambios!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "No se pudo iniciar el proceso del actualizador: {0}" @@ -3707,7 +3741,7 @@ msgstr "" "dibujado.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Región actual" @@ -3901,24 +3935,24 @@ msgstr "Calidad de decodificación:" msgid "Decrease" msgstr "Disminuir" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Reducir convergencia" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Reducir profundidad" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Reducir velocidad de emulación" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Reducir resolución interna" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Disminuir valor del estado seleccionado" @@ -3980,8 +4014,8 @@ msgstr "" "desactivada.
" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Borrar" @@ -3999,7 +4033,7 @@ msgstr "Borrar archivos seleccionados..." msgid "Delete the existing file '{0}'?" msgstr "¿Borrar el archivo «{0}»?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Profundidad" @@ -4014,9 +4048,9 @@ msgstr "Profundidad:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descripción" @@ -4065,7 +4099,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Detección de módulos RSO" @@ -4073,7 +4107,7 @@ msgstr "Detección de módulos RSO" msgid "Deterministic dual core:" msgstr "Doble núcleo determinista:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (varias veces al día)" @@ -4131,15 +4165,15 @@ msgstr "Desactivar filtrado de copia" msgid "Disable EFB VRAM Copies" msgstr "Desactivar copias del EFB a la VRAM" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Desactivar límite de velocidad de emulación" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Desactivar FastMem" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Desactivar Fastmem Arena" @@ -4147,11 +4181,11 @@ msgstr "Desactivar Fastmem Arena" msgid "Disable Fog" msgstr "Desactivar niebla" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Desactivar caché JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Desactivar mapas grandes de puntos de entrada" @@ -4180,7 +4214,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:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4212,7 +4246,8 @@ msgstr "Disco" msgid "Discard" msgstr "Descartar" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "Ajustes de visualización" @@ -4247,16 +4282,16 @@ msgstr "Distancia" msgid "Distance of travel from neutral position." msgstr "Distancia de desplazamiento desde la posición neutral." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "¿Seguro que quieres borrar la lista de nombres simbólicos?" @@ -4266,7 +4301,7 @@ 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:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "¿Quieres detener la emulación?" @@ -4287,9 +4322,9 @@ msgstr "Registro FIFO de Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Preajuste de modificación de juego para Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Archivo de mapa de Dolphin (*.map)" @@ -4301,8 +4336,8 @@ msgstr "Archivo de firma CSV de Dolphin" msgid "Dolphin Signature File" msgstr "Archivo de firma de Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Grabación TAS de Dolphin (*.dtm)" @@ -4363,14 +4398,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin no puede verificar los discos sin licencia." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin usará este ajuste con aquellos títulos para los que no pueda " -"determinar la región automáticamente." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "El sistema de trucos de Dolphin está desactivado." @@ -4380,7 +4407,7 @@ msgstr "El sistema de trucos de Dolphin está desactivado." msgid "Domain" msgstr "Dominio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "No quiero actualizar" @@ -4437,19 +4464,19 @@ msgstr "Se han descargado %1 códigos (%2 de ellos nuevos)." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" "Descarga las carátulas de los juegos de GameTDB.com para mostrarlas en la " "vista en cuadrícula de la lista de juegos. Si esta opción está desactivada, " -"la lista de juegos mostrará una imagen obtenida de los datos guardados del " -"juego, y si este no tiene datos guardados, se mostrará una imagen genérica " -"en su lugar.

La vista en lista siempre utilizará las imágenes de los " -"datos guardados.

Si tienes dudas, deja esta opción " +"la lista de juegos mostrará una imagen de los datos guardados del juego, y " +"si este no tiene datos guardados, se mostrará una imagen genérica en su " +"lugar.

La vista en lista siempre utilizará las imágenes de los datos " +"guardados.

Si tienes dudas, deja esta opción " "activada." #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. @@ -4491,7 +4518,7 @@ msgstr "Volcar &FakeVMEM" msgid "Dump &MRAM" msgstr "Volcar &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Volcar audio" @@ -4503,7 +4530,7 @@ msgstr "Volcar texturas base" msgid "Dump EFB Target" msgstr "Volcar superficie del EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Volcar fotogramas" @@ -4638,16 +4665,16 @@ msgstr "Asia Oriental" msgid "Edit Breakpoint" msgstr "Editar punto de interrupción" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "Editar condicional" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "Editar expresión condicional" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Editar..." @@ -4671,7 +4698,7 @@ msgstr "Efectivo" msgid "Effective priority" msgstr "Prioridad efectiva" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4740,7 +4767,7 @@ msgstr "" "Actual | MEM1 {0:08x} ({1} MiB) MEM2 {2:08x} ({3} MiB)\n" "DFF | MEM1 {4:08x} ({5} MiB) MEM2 {6:08x} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Velocidad de emulación" @@ -4760,7 +4787,7 @@ msgstr "Activar capas de validación de la API" msgid "Enable Audio Stretching" msgstr "Activar expansión de audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Activar trucos" @@ -4784,9 +4811,9 @@ msgstr "Activar presencia en Discord" msgid "Enable Dual Core" msgstr "Activar doble núcleo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Activar doble núcleo (más rápido)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "Activar doble núcleo (arreglo de velocidad)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4847,7 +4874,7 @@ msgstr "" "cuenta que si desactivas el modo «hardcore» en mitad de una partida, no " "podrás volver a activarlo hasta que cierres el juego." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Activar perfiles de bloques JIT" @@ -4889,7 +4916,7 @@ msgstr "Activar modo espectador" msgid "Enable Unofficial Achievements" msgstr "Activar logros no oficiales" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Informar de estadísticas de uso" @@ -4999,7 +5026,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -5055,7 +5082,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:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5125,6 +5152,20 @@ msgstr "" "descontinuados, tales como los Canales Tiempo y Nintendo.\n" "Puedes leer las condiciones del servicio aquí: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" +"Permite usar trucos en formato AR y Gecko para modificar el comportamiento " +"de los juegos. Podrás configurar los trucos en el Administrador de trucos, " +"dentro del menú de Herramientas.

Este ajuste no se podrá cambiar si " +"hay una emulación activa.

Si tienes dudas, deja " +"esta opción desactivada." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -5165,7 +5206,7 @@ msgstr "" "\n" "Cancelando importación." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "Dir. final" @@ -5220,14 +5261,14 @@ msgstr "" "Introduce la dirección IP y el puerto de la instancia de tapserver a la que " "deseas conectarte." -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5266,26 +5307,26 @@ msgstr "Introduce la dirección del módulo RSO:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5302,9 +5343,9 @@ msgstr "Introduce la dirección del módulo RSO:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -5337,7 +5378,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Error al obtener la lista de sesiones: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Error al cargar algunos packs de texturas" @@ -5434,7 +5475,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:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -5447,15 +5488,15 @@ msgstr "Ubershaders exclusivos" msgid "Exit" msgstr "Salir" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Se esperaba + o paréntesis de cierre." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Argumentos esperados:" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "Argumentos esperados: {0}" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Se espera el paréntesis de cierre." @@ -5467,19 +5508,19 @@ msgstr "Coma esperada." msgid "Expected end of expression." msgstr "Fin esperado de la expresión." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Nombre esperado de la entrada." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Se espera el paréntesis de apertura." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Inicio esperado de la expresión." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Nombre de variable previsto." @@ -5487,7 +5528,7 @@ msgstr "Nombre de variable previsto." msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportar todas las partidas guardadas de Wii" @@ -5498,11 +5539,11 @@ msgstr "Exportar todas las partidas guardadas de Wii" msgid "Export Failed" msgstr "Fallo al exportar" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exportar grabación" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exportar grabación..." @@ -5530,7 +5571,7 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5558,35 +5599,35 @@ msgstr "Externo" msgid "External Frame Buffer (XFB)" msgstr "Búfer de imagen externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Extraer certificados de la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Extraer el disco entero..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Extraer la partición entera..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extraer archivo..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Extraer archivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Extraer datos del sistema..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Extrayendo todos los archivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Extrayendo directorio..." @@ -5616,7 +5657,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "No se ha podido añadir al archivo de firma «%1»" @@ -5690,7 +5731,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:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "No se ha podido borrar el archivo seleccionado." @@ -5722,15 +5763,15 @@ msgstr "No se ha(n) podido exportar %n de %1 archivo(s) de guardado." msgid "Failed to export the following save files:" msgstr "No se ha podido exportar los siguientes archivos de guardado:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "No se han podido extraer los certificados de la NAND." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "No se han podido extraer los datos del sistema." @@ -5752,14 +5793,14 @@ msgstr "No se ha podido encontrar uno o más símbolos D3D" msgid "Failed to import \"%1\"." msgstr "No se ha podido importar «%1»." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5767,7 +5808,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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5778,7 +5819,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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "No se ha podido iniciar el núcleo" @@ -5801,11 +5842,11 @@ msgid "Failed to install pack: %1" msgstr "No se ha podido instalar el paquete: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 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:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5813,8 +5854,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:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "No se ha podido cargar el módulo RSO en %1" @@ -5826,7 +5867,7 @@ 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:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "No se ha podido cargar el archivo de mapa «%1»" @@ -5867,7 +5908,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "No se ha podido abrir el archivo «{0}» para su escritura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "No se ha podido abrir «%1»" @@ -5909,7 +5950,7 @@ msgstr "" msgid "Failed to open file." msgstr "No se ha podido abrir el archivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "No se ha podido contactar con el servidor" @@ -6077,19 +6118,19 @@ msgstr "No se ha podido guardar la instantánea del inspector de ramas «%1»" msgid "Failed to save FIFO log." msgstr "No se ha podido guardar el registro FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 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:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "No se ha podido guardar el archivo de firma «%1»" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 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:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "No se ha podido guardar en el archivo de firma «%1»" @@ -6149,8 +6190,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Fallido" @@ -6158,11 +6199,12 @@ msgstr "Fallido" msgid "Fair Input Delay" msgstr "Retraso de entrada justo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Región de respaldo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Región de respaldo:" @@ -6200,9 +6242,9 @@ msgstr "Tipo de figura" msgid "File Details" msgstr "Detalles del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Formato del archivo" @@ -6214,20 +6256,20 @@ msgstr "Formato del archivo:" msgid "File Info" msgstr "Información del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nombre del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Ruta del archivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Tamaño del archivo" @@ -6241,7 +6283,7 @@ msgstr "El archivo no contenía códigos." #: Source/Core/DolphinQt/GCMemcardManager.cpp:150 msgid "Filename" -msgstr "Nombre del archivo" +msgstr "Nombre" #: Source/Core/DiscIO/CompressedBlob.cpp:294 msgid "Files opened, ready to compress." @@ -6333,8 +6375,8 @@ msgstr "Indicadores" msgid "Float" msgstr "Coma flotante" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "Seguir &rama" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -6409,7 +6451,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:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6426,7 +6468,7 @@ msgstr "" "preferible utilizarlos en lugar de esta opción.

Si " "tienes dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6477,20 +6519,20 @@ msgstr "Se ha(n) encontrado %n dirección(ones)." msgid "Frame %1" msgstr "Fotograma %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avanzar &fotogramas" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Avanzar fotogramas más lento" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Avanzar fotogramas más rápido" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Avanzar fotogramas a la veloc. original" @@ -6552,11 +6594,11 @@ msgstr "" msgid "FreeLook" msgstr "Cámara libre" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Cámara libre" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Alternar cámara libre" @@ -6590,11 +6632,12 @@ msgstr "Desde:" msgid "FullScr" msgstr "Pant. completa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Función" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "Ajustes de funcionalidad" @@ -6614,7 +6657,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "Ruta de cartuchos de GBA:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "Núcleo de GBA" @@ -6630,11 +6673,11 @@ msgstr "Ajustes de GBA" msgid "GBA TAS Input %1" msgstr "Entrada TAS de GBA %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "Volumen de GBA" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "Tamaño de la ventana de GBA" @@ -6773,11 +6816,11 @@ msgstr "Juego" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartuchos de Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6813,8 +6856,8 @@ msgstr "Gamma del juego" msgid "Game Gamma:" msgstr "Gamma del juego:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID de juego" @@ -6945,7 +6988,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Códigos Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6965,14 +7009,24 @@ msgid "Generate Action Replay Code(s)" msgstr "Generar código(s) de Action Replay" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Generar un nuevo identificador para estadísticas" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" +"Genera un nuevo identificador anónimo para tus estadísticas de uso. " +"Cualquier estadística futura dejará de estar asociada a tus estadísticas " +"anteriores." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Se han generado códigos AR." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Nombres de símbolos generados desde «%1»" @@ -6990,7 +7044,7 @@ msgstr "Alemania" msgid "GetDeviceList failed: {0}" msgstr "Fallo en GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -7023,7 +7077,7 @@ msgstr "Gráficos" msgid "Graphics Mods" msgstr "Modificaciones de gráficos" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Ajustes gráficos" @@ -7032,7 +7086,7 @@ msgstr "Ajustes gráficos" msgid "Graphics mods are currently disabled." msgstr "Las modificaciones de gráficos están desactivadas." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7059,7 +7113,7 @@ msgstr "Verde izquierdo" msgid "Green Right" msgstr "Verde derecho" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Vista en cuadrícula" @@ -7141,7 +7195,7 @@ msgstr "Esconder" msgid "Hide &Controls" msgstr "Ocultar &controles" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Ocultar todo" @@ -7159,7 +7213,7 @@ msgstr "Ocultar GBAs remotas" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" @@ -7168,7 +7222,7 @@ msgstr "" "

Si tienes dudas, selecciona Al moverlo." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Alto" @@ -7237,7 +7291,7 @@ msgstr "Nombre del anfitrión" msgid "Hotkey Settings" msgstr "Ajustes de atajos" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7365,11 +7419,11 @@ msgstr "" "Recomendado para juegos por turnos con controles sensibles al tiempo, como " "el golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Generación de identidad" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7424,6 +7478,23 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" +"Si activas esta opción, Dolphin recopilará información útil sobre el " +"rendimiento, uso y ajustes que hagas del emulador, juegos emulados, y otros " +"datos sobre el hardware de tu equipo y sistema operativo.

No se " +"almacena ningún dato privado. Esta información nos ayuda a entender qué es " +"lo que más se usa y a tener las prioridades claras. También nos ayuda a " +"detectar configuraciones extrañas que estén causando problemas, así como " +"fallos de rendimiento y estabilidad." + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7496,7 +7567,7 @@ msgstr "" "disminuye ligeramente el rendimiento.

Si tienes " "dudas, deja esta opción desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Importar copia de respaldo de la NAND en formato BootMii..." @@ -7511,15 +7582,15 @@ msgstr "Fallo al importar" msgid "Import Save File(s)" msgstr "Importar archivo(s) de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importar partidas guardadas de Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importando copia de respaldo de la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7587,24 +7658,24 @@ msgstr "¡El valor del tiempo de juego no es correcto!" msgid "Increase" msgstr "Aumentar" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Aumentar convergencia" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Aumentar profundidad" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Aumentar velocidad de emulación" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Aumentar resolución interna" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Aumentar valor del estado seleccionado" @@ -7657,8 +7728,8 @@ msgstr "Información" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Información" @@ -7672,10 +7743,10 @@ msgstr "Inyectar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Entrada" @@ -7694,13 +7765,10 @@ msgid "Insert &BLR" msgstr "Insertar &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Insertar &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Insertar &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Insertar tarjeta SD" @@ -7718,7 +7786,7 @@ msgstr "Partición de instalación (%1)" msgid "Install Update" msgstr "Instalar actualización" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7726,8 +7794,9 @@ msgstr "Instalar WAD..." msgid "Install to the NAND" msgstr "Instalar en la NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7741,7 +7810,7 @@ msgstr "Instrucción" msgid "Instruction Breakpoint" msgstr "Punto de interrupción de instrucción" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instrucción:" @@ -7750,7 +7819,7 @@ msgstr "Instrucción:" msgid "Instruction: %1" msgstr "Instrucción: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7822,8 +7891,8 @@ msgstr "" "Error interno de LZO - error al analizar la cadena descomprimida de la " "versión ({0} / {1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Resolución interna" @@ -7840,7 +7909,7 @@ msgstr "Error interno al generar el código AR." msgid "Interpreter (slowest)" msgstr "Intérprete (muy lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Intérprete de núcleo" @@ -7848,7 +7917,7 @@ msgstr "Intérprete de núcleo" msgid "Invalid Expression." msgstr "Expresión incorrecta." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" "Se ha recibido un JSON no válido del servicio de actualizaciones " @@ -7858,7 +7927,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Código mixto incorrecto" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Paquete %1 no válido proporcionado: %2" @@ -7867,7 +7936,7 @@ msgstr "Paquete %1 no válido proporcionado: %2" msgid "Invalid Player ID" msgstr "ID de jugador incorrecto" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Dirección de módulo RSO incorrecta: %1" @@ -7948,11 +8017,11 @@ msgstr "Italia" msgid "Item" msgstr "Objeto" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "Sin enlazado de bloques JIT" @@ -7960,47 +8029,47 @@ msgstr "Sin enlazado de bloques JIT" msgid "JIT Blocks" msgstr "Bloques JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "Sin rama JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "Sin coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "Sin números enteros JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "Sin LoadStore de coma flotante JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "Sin LoadStore JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "Sin LoadStore con parejas JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "Sin LoadStore lXz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "Sin LoadStore lbzx JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "Sin LoadStore lwz JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "Sin JIT (núcleo JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "Sin emparejamiento JIT" @@ -8012,14 +8081,15 @@ msgstr "Recompilador JIT para ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT para x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "Sin registro de caché de JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "Sin SystemRegisters JIT" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -8030,11 +8100,11 @@ msgstr "" "memoria caché. Esto no debería haber pasado. Te rogamos que informes del " "fallo en el gestor de incidencias. Dolphin se cerrará." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "El modo JIT no está activo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japón" @@ -8058,7 +8128,7 @@ msgstr "" "Kaos es el único villano de este trofeo y siempre está desbloqueado. ¡No " "hace falta editar nada!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Seguir ejecutando" @@ -8093,7 +8163,7 @@ msgstr "Keyboard Controller (mando con teclado)" msgid "Keys" msgstr "Teclas" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -8101,7 +8171,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Echar al jugador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Corea" @@ -8240,6 +8310,19 @@ msgstr "" "Clic izquierdo/derecho para configurar la salida.\n" "Clic medio para borrar." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" +"Permite utilizar idiomas y otros ajustes regionales para los que los juegos " +"podrían no estar preparados. Podría provocar cuelgues y fallos.

Este " +"ajuste no se podrá cambiar si hay una emulación activa." +"

Si tienes dudas, deja esta opción desactivada." + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8273,11 +8356,11 @@ msgstr "Luces" msgid "Limit Chunked Upload Speed:" msgstr "Limite la velocidad de subida de datos:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Columnas en la lista" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Vista en lista" @@ -8287,17 +8370,17 @@ msgstr "Escuchando" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Cargar" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Cargar archiv&o de mapa incorrecto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Cargar archiv&o de mapa adicional..." @@ -8306,7 +8389,7 @@ msgid "Load Branch Watch &From..." msgstr "Cargar instantánea del inspector de ramas &desde..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "Cargar instantánea del inspector de ramas" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -8317,7 +8400,7 @@ msgstr "Cargar texturas personalizadas" msgid "Load File" msgstr "Cargar archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Cargar menú principal de GameCube" @@ -8325,16 +8408,21 @@ msgstr "Cargar menú principal de GameCube" msgid "Load Host's Save Data Only" msgstr "Solo cargar los datos guardados del anfitrión" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Cargar el último estado" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "Cargar archivo de mapa" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Ruta de carga:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Cargar ROM" @@ -8342,104 +8430,104 @@ msgstr "Cargar ROM" msgid "Load Slot" msgstr "Cargar espacio" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Cargar estado" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Cargar último estado 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Cargar último estado 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Cargar último estado 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Cargar último estado 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Cargar último estado 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Cargar último estado 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Cargar último estado 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Cargar último estado 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Cargar último estado 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Cargar último estado 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Cargar estado 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Cargar estado 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Cargar estado 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Cargar estado 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Cargar estado 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Cargar estado 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Cargar estado 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Cargar estado 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Cargar estado 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Cargar estado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Cargar estado desde un archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Cargar estado desde la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Cargar estado desde una ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Cargar menú del sistema Wii %1" @@ -8447,20 +8535,15 @@ msgstr "Cargar menú del sistema Wii %1" msgid "Load and Write Host's Save Data" msgstr "Cargar y escribir los datos guardados del anfitrión" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Cargar la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Cargar desde la ranura %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Cargar archivo de mapa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Cargar menú del sistema vWii %1" @@ -8468,7 +8551,7 @@ msgstr "Cargar menú del sistema vWii %1" msgid "Load..." msgstr "Cargar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Símbolos cargados desde «%1»" @@ -8500,14 +8583,14 @@ msgstr "Local" msgid "Lock Mouse Cursor" msgstr "Bloquear cursor del ratón" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Bloqueada" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" @@ -8517,7 +8600,7 @@ msgstr "" "esta opción desactivada.
" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Registro" @@ -8527,10 +8610,11 @@ msgid "Log Configuration" msgstr "Configuración de registro" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Iniciar sesión" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Registros de cobertura de instrucciones JIT" @@ -8573,7 +8657,7 @@ msgstr "Bucle" msgid "Lost connection to NetPlay server..." msgstr "Se ha perdido la conexión con el servidor de juego en red..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Bajo" @@ -8636,9 +8720,9 @@ msgstr "¡Asegúrate de que el valor del tiempo de juego sea válido!" msgid "Make sure there is a Skylander in slot %1!" msgstr "¡Asegúrate de que haya un Skylander en el espacio %1!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Creador" @@ -8647,7 +8731,7 @@ msgstr "Creador" msgid "Maker:" msgstr "Creador:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8660,7 +8744,7 @@ msgstr "" "del efecto.

Si tienes dudas, deja esta opción " "desactivada." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Administrar NAND" @@ -8699,7 +8783,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Puede empeorar el rendimiento del menú de Wii y de algunos juegos." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Medio" @@ -8715,7 +8799,7 @@ msgstr "Punto de interrupción en memoria" msgid "Memory Card" msgstr "Tarjeta de memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Administrador de tarjetas de memoria" @@ -8743,7 +8827,7 @@ msgstr "MemoryCard: Lectura en dirección de destino incorrecta ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Escritura en dirección de destino incorrecta ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8754,7 +8838,7 @@ msgstr "" "guardada que ya tengas. Es un proceso irreversible, por lo que te " "recomendamos que hagas copias de ambas NANDs. ¿Seguro que quieres continuar?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8838,8 +8922,8 @@ msgstr "Modificar espacio" msgid "Modifying Skylander: %1" msgstr "Modificando Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Módulos encontrados: %1" @@ -8881,7 +8965,7 @@ msgstr "Visibilidad del cursor del ratón" msgid "Move" msgstr "Movimiento" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Grabación" @@ -8907,10 +8991,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "N&o a todo" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Comprobación de NAND" @@ -8919,8 +9003,8 @@ msgstr "Comprobación de NAND" msgid "NKit Warning" msgstr "Advertencia NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8929,7 +9013,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8952,8 +9036,8 @@ msgstr "" "elegir un valor de gamma, debes igualarlo aquí.

Si " "tienes dudas, deja esta opción en 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8966,11 +9050,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Nombre" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Nombre de la etiqueta a crear:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Nombre de la etiqueta a eliminar:" @@ -9057,7 +9141,7 @@ msgid "Never Auto-Update" msgstr "Desactivar actualizaciones automáticas" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nuevo" @@ -9082,7 +9166,7 @@ msgstr "Nueva búsqueda" msgid "New Tag..." msgstr "Nueva etiqueta..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Se ha generado un identificador nuevo." @@ -9090,12 +9174,13 @@ msgstr "Se ha generado un identificador nuevo." msgid "New instruction:" msgstr "Nueva instrucción:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Nueva etiqueta" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Siguiente perfil de juego" @@ -9103,8 +9188,9 @@ msgstr "Siguiente perfil de juego" msgid "Next Match" msgstr "Siguiente coincidencia" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Siguiente perfil" @@ -9191,7 +9277,7 @@ msgstr "No has elegido un mod de gráficos." msgid "No input" msgstr "No hay entrada" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "No se ha detectado ningún problema." @@ -9238,7 +9324,7 @@ msgstr "" "para evitar desincronizaciones en la grabación" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9459,7 +9545,7 @@ msgstr "" "tal vez encuentres llamadas a funciones y rutas de código condicional que " "solo se ejecuten cuando ocurra una acción concreta en el software emulado." -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Documentación en línea" @@ -9467,7 +9553,7 @@ msgstr "&Documentación en línea" msgid "Only Show Collection" msgstr "Mostrar solo tu colección" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9475,7 +9561,7 @@ msgstr "" "Solo añadir símbolos con prefijo:\n" "(Dejar en blanco para añadir todos los símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9498,13 +9584,17 @@ msgstr "Abrir &carpeta contenedora" msgid "Open &User Folder" msgstr "Abrir carpeta de &usuario" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "Abrir logros" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Abrir directorio..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "Abrir registro FIFO" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -9606,7 +9696,7 @@ msgstr "Otros" msgid "Other Partition (%1)" msgstr "Otra partición (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Otros atajos de guardado" @@ -9623,7 +9713,7 @@ msgstr "Otro juego..." msgid "Output" msgstr "Salida" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Remuestreo de salida" @@ -9631,16 +9721,16 @@ msgstr "Remuestreo de salida" msgid "Output Resampling:" msgstr "Remuestreo de salida:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Reproducir pu&lsaciones grabadas..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9669,7 +9759,7 @@ msgstr "Archivo de imagen PNG (*.png);; Todos los archivos (*)" msgid "PPC Size" msgstr "Tamaño de PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC contra anfitrión" @@ -9682,7 +9772,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parámetros" @@ -9745,7 +9835,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "Pausar inspección de ramas" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pausar al terminar la grabación" @@ -9797,7 +9887,7 @@ msgstr "Velocidad máxima de los movimientos de balanceo hacia afuera." msgid "Per-Pixel Lighting" msgstr "Iluminación por píxel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Actualizar la consola a través de Internet" @@ -9827,11 +9917,11 @@ msgstr "Físico" msgid "Physical address space" msgstr "Espacio de la dirección física" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Elige una tipografía de depuración" @@ -9847,8 +9937,8 @@ msgstr "Cabeceo hacia arriba" msgid "Pitch Up" msgstr "Cabeceo hacia abajo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plataforma" @@ -9860,7 +9950,7 @@ msgstr "Jugar" msgid "Play / Record" msgstr "Reproducir/grabar" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Reproducir grabación" @@ -9960,7 +10050,7 @@ msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Posible desincronización: podemos haber perdido a %1 en el fotograma %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Efecto de posprocesado:" @@ -10013,7 +10103,7 @@ msgstr "" msgid "Presets" msgstr "Preajustes" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Pulsar el botón de sincronización" @@ -10036,9 +10126,9 @@ msgstr "" "rotos.

No se recomienda, usar solo si el resto de " "opciones dan malos resultados." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Perfil anterior de juego" @@ -10046,8 +10136,9 @@ msgstr "Perfil anterior de juego" msgid "Previous Match" msgstr "Coincidencia anterior" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Perfil anterior" @@ -10097,13 +10188,13 @@ msgstr "" msgid "Profile" msgstr "Perfil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Contador del programa (PC)" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -10123,11 +10214,11 @@ msgstr "" msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Vaciar la caché de la lista de juegos" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Debes guardar tus ROMs del IPL en User/GC/." @@ -10155,7 +10246,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Pregunta" @@ -10180,11 +10271,11 @@ msgstr "R analógico" msgid "READY" msgstr "Listo" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "Módulos RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "Autodetección RSO" @@ -10221,13 +10312,13 @@ msgstr "Datos en bruto" msgid "Raw Internal Resolution" msgstr "Resolución interna en bruto" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Reemplazar instrucción" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "Reem&plazar instrucción" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Leer" @@ -10250,7 +10341,7 @@ msgstr "Solo lectura" msgid "Read or Write" msgstr "Leer o escribir" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Modo de solo lectura" @@ -10311,7 +10402,7 @@ msgstr "Rojo izquierdo" msgid "Red Right" msgstr "Rojo derecho" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10366,8 +10457,8 @@ msgstr "Se han actualizado los valores actuales." msgid "Refreshing..." msgstr "Actualizando..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Región" @@ -10388,7 +10479,8 @@ msgstr "Entrada relativa" msgid "Relative Input Hold" msgstr "Parar entrada relativa" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "Versiones oficiales (cada varios meses)" @@ -10417,7 +10509,7 @@ msgstr "Eliminar datos basura (irreversible):" msgid "Remove Tag..." msgstr "Eliminar etiqueta..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Eliminar etiqueta" @@ -10433,7 +10525,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "Renombrar símbolo" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -10472,7 +10564,7 @@ msgstr "" "activada.
" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10484,7 +10576,7 @@ msgstr "Reiniciar" msgid "Reset All" msgstr "Reiniciar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Reiniciar el ignorado de errores y advertencias" @@ -10536,8 +10628,8 @@ msgstr "Es necesario reiniciar." msgid "Restore Defaults" msgstr "Restaurar valores predeterminados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "Restaurar instrucción" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -10702,21 +10794,21 @@ msgstr "" msgid "Rumble" msgstr "Vibración" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "Ejecutar has&ta aquí" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Ejecutar los núcleos de GBA en hilos dedicados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "Ejecutar hasta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Ejecutar hasta (ignorando puntos de interrupción)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "Ejecutar (ignorando puntos de interrupción) hasta" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10785,11 +10877,11 @@ msgstr "Entorno SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Gua&rdar código" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Gua&rdar estado" @@ -10801,7 +10893,7 @@ msgstr "Segura" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10816,22 +10908,34 @@ msgid "Save Branch Watch &As..." msgstr "Guardar inspección de ramas &como..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" msgstr "Guardar instantánea del inspector de ramas" +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "Guardar archivo de salida combinado como" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "Guardar imagen convertida" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Exportar guardado" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "Guardar registro FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "Guardar archivo en" #. i18n: Noun (i.e. the data saved by the game) @@ -10843,15 +10947,19 @@ msgstr "Guardado de juego" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Archivos de guardado de juegos (*.sav);; Todos los archivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Importar guardado" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "Guardar archivo de mapa" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Guardar el estado más antiguo" @@ -10859,73 +10967,77 @@ msgstr "Guardar el estado más antiguo" msgid "Save Preset" msgstr "Guardar preajuste" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Guardar archivo de grabación como" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "Guardar archivo de firmas" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Guardar estado" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Ranura de guardado 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Ranura de guardado 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Ranura de guardado 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Ranura de guardado 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Ranura de guardado 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Ranura de guardado 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Ranura de guardado 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Ranura de guardado 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Ranura de guardado 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Ranura de guardado 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Guardar estado en archivo" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Guardar estado en la ranura más antigua" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Guardar estado en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Guardar estado en ranura" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Guardar map&a de símbolos como..." @@ -10945,11 +11057,7 @@ msgstr "Guardar como preajuste..." msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Guardar archivo de salida combinado como" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10963,19 +11071,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Guardar en el mismo directorio que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Guardar archivo de mapa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Guardar archivo de firmas" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Guardar en la ranura seleccionada" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Guardar en la ranura %1 - %2" @@ -11011,7 +11111,7 @@ msgstr "Pantallazo" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Buscar" @@ -11040,7 +11140,7 @@ msgstr "" "Actualmente no se puede buscar en el espacio de la memoria virtual. Ejecuta " "el juego durante unos minutos y vuelve a intentarlo." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Buscar una instrucción" @@ -11048,7 +11148,7 @@ msgstr "Buscar una instrucción" msgid "Search games..." msgstr "Buscar juegos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Búsqueda de instrucciones" @@ -11086,7 +11186,7 @@ msgstr "Seleccionar" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" "Seleccionar archivo de instantánea autoguardada del inspector de ramas (si " @@ -11097,7 +11197,7 @@ msgid "Select Dump Path" msgstr "Seleccionar ruta de volcado" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Seleccionar directorio de exportación" @@ -11105,18 +11205,22 @@ msgstr "Seleccionar directorio de exportación" msgid "Select Figure File" msgstr "Seleccionar archivo de figura" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Seleccionar BIOS de GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Seleccionar ROM de GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Seleccionar ruta de archivos de guardado de GBA" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "Seleccionar archivo de claves (volcado OTP/SEEPROM)" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Seleccionar el último estado" @@ -11125,6 +11229,10 @@ msgstr "Seleccionar el último estado" msgid "Select Load Path" msgstr "Seleccionar ruta de carga" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "Seleccionar copia de respaldo de la NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Seleccionar ruta de paquetes de recursos" @@ -11133,6 +11241,14 @@ msgstr "Seleccionar ruta de paquetes de recursos" msgid "Select Riivolution XML file" msgstr "Seleccionar archivo XML de Riivolution" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "Seleccionar imagen de tarjeta SD" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "Seleccionar archivo guardado" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Seleccionar colección de Skylanders" @@ -11141,58 +11257,62 @@ msgstr "Seleccionar colección de Skylanders" msgid "Select Skylander File" msgstr "Seleccionar archivo de Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Ranura de guardado %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Cargar ranura de guardado" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Seleccionar ranura de guardado" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Seleccionar ranura de guardado 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Seleccionar ranura de guardado 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Seleccionar ranura de guardado 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Seleccionar ranura de guardado 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Seleccionar ranura de guardado 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Seleccionar ranura de guardado 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Seleccionar ranura de guardado 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Seleccionar ranura de guardado 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Seleccionar ranura de guardado 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Seleccionar ranura de guardado 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "Seleccionar título a instalar en la NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Seleccionar ruta del WFS" @@ -11210,24 +11330,20 @@ msgstr "Seleccionar directorio" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Seleccionar archivo" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "Seleccionar carpeta a sincronizar con la imagen de la tarjeta SD" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Seleccionar imagen de tarjeta SD" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Seleccionar archivo" @@ -11236,19 +11352,15 @@ msgstr "Seleccionar archivo" msgid "Select a game" msgstr "Seleccionar juego" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Seleccionar título a instalar en la NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Seleccionar tarjetas e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Elige la dirección del módulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Seleccionar archivo de grabación a reproducir" @@ -11256,23 +11368,6 @@ msgstr "Seleccionar archivo de grabación a reproducir" msgid "Select the Virtual SD Card Root" msgstr "Seleccionar carpeta raíz de la tarjeta SD virtual" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Seleccionar archivo de claves (volcado OTP/SEEPROM)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Selecciona el archivo de guardado" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Elige dónde quieres guardar la imagen convertida" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Elige dónde quieres guardar las imágenes convertidas" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Tipografía seleccionada" @@ -11352,7 +11447,7 @@ msgstr "" "

Si tienes dudas, selecciona Resolución interna con " "corrección de relación de aspecto." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11395,25 +11490,25 @@ msgid "" msgstr "" "Selecciona la relación de aspecto con la que se mostrará el juego.

La " "relación de aspecto de la imagen que transmiten las consolas originales " -"cambiaba según el juego, y apenas solía coincidir con las relaciones de 4:3 " -"o 16:9. La imagen se mostraría cortada por los bordes de los televisores o " -"no cubriría toda la extensión de las pantallas. Dolphin muestra por defecto " -"la imagen completa sin distorsionar sus proporciones, lo que significa que " -"es normal que la imagen no se extienda por completo por toda la pantalla." -"

Automático: imita un televisor con una relación de aspecto de " -"4:3 o 16:9, según el tipo de imagen que parezca que quiere producir el juego." -"

Forzar 16:9: imita un televisor con una relación de aspecto " -"de 16:9 (panorámica).

Forzar 4:3: imita un televisor con una " -"relación de aspecto de 4:3.

Estirar a ventana: estira la " -"imagen al tamaño de la ventana. Por norma general, distorsionará las " -"proporciones de la imagen.

Personalizada: imita un televisor " -"con la relación de aspecto indicada. Esta opción está pensada para acompañar " -"modificaciones o trucos de relación de aspecto.

Personalizada " -"(estirada): similar a «Personalizada», pero estirará la imagen hasta " -"alcanzar la relación de aspecto especificada. Por norma general, " -"distorsionará las proporciones de la imagen y no debería utilizarse en " -"circunstancias normales.

Si tienes dudas, " -"selecciona Automática." +"cambiaba según el juego, y pocas veces solía coincidir con las relaciones de " +"4:3 o 16:9. La imagen se mostraría cortada por los bordes de los televisores " +"o no cubriría toda la extensión de las pantallas. Dolphin muestra por " +"defecto la imagen completa sin distorsionar sus proporciones, lo que " +"significa que es normal que la imagen no se extienda por completo por toda " +"la pantalla.

Automático: imita un televisor con una relación " +"de aspecto de 4:3 o 16:9, según el tipo de imagen que parezca que quiere " +"producir el juego.

Forzar 16:9: imita un televisor con una " +"relación de aspecto de 16:9 (panorámica).

Forzar 4:3: imita un " +"televisor con una relación de aspecto de 4:3.

Estirar a ventana: estira la imagen al tamaño de la ventana. Por norma general, " +"distorsionará las proporciones de la imagen.

Personalizada: " +"imita un televisor con la relación de aspecto indicada. Esta opción está " +"pensada para acompañar modificaciones o trucos de relación de aspecto." +"

Personalizada (estirada): similar a «Personalizada», pero " +"estirará la imagen hasta alcanzar la relación de aspecto especificada. Por " +"norma general, distorsionará las proporciones de la imagen y no debería " +"utilizarse en circunstancias normales.

Si tienes " +"dudas, selecciona Automática." #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238 msgid "" @@ -11433,6 +11528,47 @@ msgstr "" "necesidades.

Si tienes dudas, selecciona OpenGL. " +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" +"Selecciona el canal de actualizaciones que utilizará Dolphin al buscar " +"actualizaciones nada más ejecutarse. Si hay una actualización nueva, Dolphin " +"mostrará una lista de cambios respecto a la última versión y te preguntará " +"si deseas actualizar.

El canal Dev tiene la última versión de " +"Dolphin, a menudo actualizada varias veces al día. Selecciona este canal si " +"quieres las últimas novedades y correcciones.

El canal Versiones " +"oficiales se actualiza cada pocos meses. Estos son algunos motivos por los " +"que podrías preferirlo:
- Prefieres utilizar versiones que hayan sido " +"probadas a fondo.
- El juego en red obliga a los jugadores a utilizar la " +"misma versión de Dolphin y la última versión oficial tendrá la mayor " +"cantidad de jugadores disponibles.
- Utilizas a menudo el sistema de " +"estados de guardado de Dolphin, que no garantiza la retrocompatibilidad de " +"los estados entre versiones de Dolphin. Si este es tu caso, guarda tu " +"partida dentro del propio juego antes de actualizar (es decir: igual que " +"como lo harías en un sistema GameCube o Wii original) y luego carga esa " +"partida una vez hayas actualizado Dolphin, pero antes de crear estados de " +"guardado nuevos.

Si seleccionas «No quiero actualizar», evitarás que " +"Dolphin busque actualizaciones de forma automática." +"

Si tienes dudas, selecciona Versiones oficiales." + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" @@ -11441,6 +11577,22 @@ msgstr "Enviar" msgid "Sensor Bar Position:" msgstr "Posición de la barra sensora:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" +"Separa las tareas de emulación de la CPU y la GPU en subprocesos " +"independientes. Reducirá la carga de un solo hilo de trabajo repartiendo las " +"tareas más cargantes de Dolphin entre dos núcleos, lo que suele mejorar el " +"rendimiento. No obstante, puede provocar problemas o cuelgues.

Este " +"ajuste no se podrá cambiar si hay una emulación activa." +"

Si tienes dudas, deja esta opción activada." + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11473,39 +11625,35 @@ msgstr "Establecer &valor" msgid "Set Brea&kpoint" msgstr "Establecer &punto de interrupción" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "Elige el archivo de la tarjeta de memoria de la ranura A" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "Elige el archivo de la tarjeta de memoria de la ranura B" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Establecer PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "Especificar dirección final del &símbolo" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "Especificar tamaño del &símbolo " + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "Especificar dirección final del símbolo" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Establecer como ISO pred&eterminada" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Elige el archivo de la ranura A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Elige el archivo de la ranura B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Especifica la direción final del &símbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Ajustar tamaño del &símbolo " - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Escribe la dirección final del símbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Ajustar tamaño del símbolo (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11522,7 +11670,7 @@ msgstr "Establece el idioma del sistema de Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11540,16 +11688,26 @@ msgstr "" "Establece la latencia en milisegundos. Los valores más altos pueden reducir " "la crepitación de audio. Solo funciona con algunos motores de sonido." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" +"Establece la región que se utilizará para aquellos títulos en los que no se " +"pueda determinar automáticamente su región.

Este ajuste no se podrá " +"cambiar si hay una emulación activa." + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" -"Establece el estilo de la interfaz de usuario de Dolphin. Aquí se " -"presentarán todos los estilos de usuario personalizados que hayas cargado " -"para que puedas elegirlos.

Si tienes dudas, " -"selecciona (Del sistema)." +"Establece el estilo de la interfaz de usuario de Dolphin. Aquí podrás elegir " +"los estilos de usuario personalizados que hayas añadido." +"

Si tienes dudas, selecciona (Del sistema)." #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" @@ -11601,11 +11759,11 @@ msgstr "Mando Shinkansen" msgid "Show % Speed" msgstr "Mostrar velocidad porcentual" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Mostrar ®istro" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Mostrar barra de herramien&tas" @@ -11613,15 +11771,15 @@ msgstr "Mostrar barra de herramien&tas" msgid "Show Active Title in Window Title" msgstr "Mostrar nombre del juego actual en el título de la ventana" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Mostrar todo" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Mostrar el juego actual en Discord" @@ -11630,7 +11788,7 @@ msgstr "Mostrar el juego actual en Discord" msgid "Show Disabled Codes First" msgstr "Mostrar primero los códigos desactivados" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Mostrar ELF/DOL" @@ -11643,7 +11801,7 @@ msgstr "Mostrar primero los códigos activados" msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Mostrar fotogramas por segundo (FPS)" @@ -11651,15 +11809,15 @@ msgstr "Mostrar fotogramas por segundo (FPS)" msgid "Show Frame Times" msgstr "Mostrar duraciones de fotogramas" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Alemania" @@ -11667,27 +11825,27 @@ msgstr "Alemania" msgid "Show Golf Mode Overlay" msgstr "Mostrar superposición de modo de golf" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Mostrar base de Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Mostrar registro de teclas" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Japón" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Mostrar indicador de retardo" @@ -11695,7 +11853,7 @@ msgstr "Mostrar indicador de retardo" msgid "Show Language:" msgstr "Mostrar idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Mostrar configuración de ®istro" @@ -11707,7 +11865,7 @@ msgstr "Mostrar mensajes de juego en red" msgid "Show NetPlay Ping" msgstr "Mostrar latencia de juego en red" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Holanda" @@ -11715,12 +11873,12 @@ msgstr "Holanda" msgid "Show On-Screen Display Messages" msgstr "Mostrar mensajes en pantalla" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Región PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Mostrar PC" @@ -11728,7 +11886,7 @@ msgstr "Mostrar PC" msgid "Show Performance Graphs" msgstr "Mostrar gráficas de rendimiento" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Mostrar plataformas" @@ -11736,23 +11894,23 @@ msgstr "Mostrar plataformas" msgid "Show Projection Statistics" msgstr "Mostrar estadísticas de proyección" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Mostrar regiones" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Mostrar contador de regrabaciones" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Rusia" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Mostrar portal de Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "España" @@ -11764,19 +11922,23 @@ msgstr "Mostrar colores según velocidad" msgid "Show Statistics" msgstr "Mostrar estadísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Mostrar reloj del sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Taiwán" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "Mostrar objetivo en &memoria" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Otros" @@ -11788,27 +11950,27 @@ msgstr "Mostrar duraciones de VBlanks" msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Mostrar WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Mostrar juegos internacionales" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Mostrar en &memoria" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "Mostrar en memoria" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Mostrar en código" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Mostrar en memoria" @@ -11825,13 +11987,9 @@ msgstr "Mostrar en memoria" msgid "Show in server browser" msgstr "Mostrar en el navegador del servidor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Mostrar objetivo en &memoria" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11882,23 +12040,6 @@ msgstr "" "velocidad completa.

Si tienes dudas, deja esta " "opción desactivada." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" -"Muestra el cursor del ratón en todo momento.

Si " -"tienes dudas, selecciona Al moverlo." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" -"Muestra el cursor del ratón durante un breve tiempo cuando se haya movido " -"para luego ocultarlo.

Si tienes dudas, selecciona " -"este modo." - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11929,6 +12070,23 @@ msgstr "" "fotograma renderizado y la variación estándar.

Si " "tienes dudas, deja esta opción desactivada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" +"Muestra el cursor del ratón en todo momento.

Si " +"tienes dudas, selecciona Al moverlo." + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" +"Muestra el cursor del ratón durante un breve tiempo cuando se haya movido " +"para luego ocultarlo.

Si tienes dudas, selecciona " +"este modo." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11975,6 +12133,18 @@ msgstr "" "

Si tienes dudas, deja esta opción desactivada." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" +"Muestra el juego que tengas activo y la duración de tu sesión de juego en tu " +"estado de Discord.

Este ajuste no se podrá cambiar si hay una " +"emulación activa.

Si tienes dudas, deja esta opción " +"activada." + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "En paralelo" @@ -11991,7 +12161,7 @@ msgstr "Cambiar de/a horizontal" msgid "Sideways Wii Remote" msgstr "Mando de Wii en horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Base de datos de firmas" @@ -12040,7 +12210,7 @@ msgstr "" "Tamaño del búfer de expansión de audio en milisegundos. Un valor muy bajo " "puede provocar crepitación de audio." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Omitir" @@ -12243,6 +12413,10 @@ msgstr "" msgid "Speed" msgstr "Velocidad" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "Límite de velocidad" + #. 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:262 @@ -12279,11 +12453,11 @@ msgstr "Iniciar inspección de ramas" msgid "Start New Cheat Search" msgstr "Iniciar una nueva búsqueda de trucos" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Grabar pulsaciones" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Comenzar grabación" @@ -12322,39 +12496,39 @@ msgstr "Avanzar" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Avanzar una" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Saltar una" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Salir de" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Se ha saltado la instrucción." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Se ha cancelado el salto de instrucciones por tardar demasiado tiempo." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Saltando instrucciones..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Se han saltado las instrucciones." -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Avanzar" @@ -12363,7 +12537,7 @@ msgstr "Avanzar" msgid "Stereo" msgstr "Estéreo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Modo 3D estereoscópico" @@ -12393,7 +12567,7 @@ msgstr "Palanca" msgid "Stop" msgstr "Detener" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Detener la reproducción o grabación de pulsaciones" @@ -12473,14 +12647,14 @@ msgstr "Estilo:" msgid "Stylus" msgstr "Stylus" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Todo correcto" @@ -12507,24 +12681,24 @@ msgstr "Exportados satisfactoriamente %n de %1 archivo(s) de guardado." msgid "Successfully exported save files" msgstr "Las partidas guardadas se han exportado correctamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Se han extraído correctamente los certificados de la NAND." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "El archivo se ha extraído correctamente." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Los datos del sistema se han extraído correctamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Archivo de guardado importado correctamente." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "El título ha sido instalado correctamente en la NAND." @@ -12575,7 +12749,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12603,17 +12777,21 @@ msgstr "Cambiar a B" msgid "Symbol" msgstr "Símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "Dirección final del símbolo (%1):" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "Nombre de símbolo:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "Tamaño del símbolo (%1):" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Símbolos" @@ -12667,7 +12845,7 @@ msgstr "Sincronizando datos guardados..." msgid "System Language:" msgstr "Idioma del sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Entrada TAS" @@ -12678,9 +12856,9 @@ msgid "TAS Tools" msgstr "Herramientas TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Etiquetas" @@ -12698,7 +12876,7 @@ msgstr "Cola" msgid "Taiwan" msgstr "Taiwán" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Capturar pantalla" @@ -12706,7 +12884,7 @@ msgstr "Capturar pantalla" msgid "Target address range is invalid." msgstr "El rango de direcciones indicado no es válido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12743,7 +12921,7 @@ msgstr "Precisión de la caché de texturas" msgid "Texture Dumping" msgstr "Volcado de texturas" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Filtrado de texturas" @@ -12795,7 +12973,7 @@ msgstr "El archivo IPL no es un volcado correcto conocido. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Faltan las particiones de los Clásicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12803,7 +12981,7 @@ msgstr "" "No se pudo reparar la NAND. Recomendamos que vuelvas a volcar los datos de " "la consola original y pruebes otra vez desde cero." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "La NAND ha sido reparada." @@ -12873,9 +13051,9 @@ msgid "" "can also enter a network location (address:port) to connect to a remote " "tapserver." msgstr "" -"El valor predeterminado de %1 funcionará con un tapserver local y con un " +"El valor predeterminado de «%1» funcionará con un tapserver local y con un " "newserv. También puedes introducir una dirección de red (dirección:puerto) " -"para conectarte a un tapserver remoto." +"para conectarte a un tapserver remoto. " #: Source/Core/DolphinQt/ConvertDialog.cpp:427 msgid "" @@ -12995,7 +13173,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "El sistema de archivos es incorrecto o no pudo ser leído." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -13153,7 +13331,7 @@ msgstr "" "No puede utilizarse el mismo archivo en múltiples ranuras. Este archivo ya " "está siendo usado por %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -13196,7 +13374,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "El archivo especificado «{0}» no existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -13264,7 +13442,7 @@ msgstr "Falta la partición de actualización." msgid "The update partition is not at its normal position." msgstr "La partición de actualización no está en su posición normal." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -13387,7 +13565,7 @@ msgstr "" "experiencia." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Esta acción no puede deshacerse." @@ -13639,7 +13817,7 @@ msgstr "Hilos" msgid "Threshold" msgstr "Límite" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13660,10 +13838,10 @@ msgstr "" msgid "Timed Out" msgstr "Tiempo de espera agotado" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Título" @@ -13671,25 +13849,29 @@ msgstr "Título" msgid "To" msgstr "A" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Alternar &pantalla completa" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Alternar 3D mediante anaglifos" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Alternar 3D de imágenes en paralelo (SBS)" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Alternar 3D de imágenes en vertical (T/B)" @@ -13697,28 +13879,28 @@ msgstr "Alternar 3D de imágenes en vertical (T/B)" msgid "Toggle All Log Types" msgstr "Alternar todos los tipos de registro" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Alternar relación de aspecto" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Alternar punto de interrupción" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Alternar recorte de imagen" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Alternar texturas personalizadas" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Alternar copias del EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Alternar niebla" @@ -13730,31 +13912,31 @@ msgstr "Alternar modo a pantalla completa" msgid "Toggle Pause" msgstr "Alternar pausa" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Alternar tarjeta de memoria SD" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Alternar omitir acceso al EFB" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Alternar volcado de texturas" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Alternar teclado USB" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Alternar las copias del XFB" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Alternar el modo inmediato del XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Fallo en la tokenización." @@ -13879,7 +14061,7 @@ msgid "Trophy" msgstr "Trofeo" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13909,7 +14091,7 @@ msgstr "Emulación de dispositivos USB" msgid "USB Emulation" msgstr "Emulación de USB" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "Dispositivos de emulación USB" @@ -13961,15 +14143,15 @@ msgstr "" "afectando mínimamente al rendimiento, pero los resultados dependerán del " "controlador de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "No se puede detectar el módulo RSO" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "No se ha podido contactar con el servidor de actualizaciones." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "No se ha podido crear una copia del actualizador." @@ -14009,7 +14191,7 @@ msgstr "" msgid "Unable to read file." msgstr "No se ha podido leer el archivo." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "No se han podido configurar los permisos de la copia del actualizador." @@ -14032,11 +14214,11 @@ msgstr "Archivos ISO de GC/Wii sin comprimir (*.iso *.gcm)" msgid "Undead" msgstr "Muertos" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Deshacer carga del estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Deshacer guardado del estado" @@ -14056,7 +14238,7 @@ msgstr "" "Si desinstalas el archivo WAD, eliminarás la versión actual del título que " "se encuentra en la NAND sin borrar sus datos guardados. ¿Quieres continuar?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Estados Unidos" @@ -14157,11 +14339,11 @@ msgstr "Desconocido(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Desconocido(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Ilimitado" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Extraer ROM" @@ -14169,7 +14351,12 @@ msgstr "Extraer ROM" msgid "Unlock Cursor" msgstr "Desbloquear cursor" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "Desbloqueado" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "Desbloqueado: %1" @@ -14269,7 +14456,7 @@ msgstr "Cambiar de/a vertical" msgid "Upright Wii Remote" msgstr "Mando de Wii en vertical" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Ajustes de envío de estadísticas de uso" @@ -14386,7 +14573,7 @@ msgstr "Usuario" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -14472,7 +14659,7 @@ msgstr "Omitir VBI" msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "El valor ha sido localizado en la instrucción actual." @@ -14560,22 +14747,22 @@ msgstr "Muescas virtuales" msgid "Virtual address space" msgstr "Espacio de la dirección virtual" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volumen" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Bajar volumen" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Silenciar sonido" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Subir volumen" @@ -14583,7 +14770,7 @@ msgstr "Subir volumen" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "Archivos WAD (*.wad)" @@ -14725,7 +14912,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advertencia" @@ -14884,7 +15071,7 @@ msgstr "Dispositivos USB permitidos para acceso directo a Bluetooth" msgid "Widescreen Hack" msgstr "Arreglo para pantallas panorámicas" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14954,7 +15141,7 @@ msgstr "Wii y su mando" msgid "Wii data is not public yet" msgstr "Los datos de Wii todavía no son públicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Archivos de guardado de Wii (*.bin);;Todos los archivos (*)" @@ -14989,11 +15176,11 @@ msgstr "Mundo" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Escribir" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Escribir volcado del registro de bloque JIT" @@ -15161,7 +15348,7 @@ msgstr "" "Episode I & II. Si tienes dudas, cancela inmediatamente y configura un " "«mando de juego estándar»." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "No hay actualizaciones disponibles en el canal elegido" @@ -15250,7 +15437,7 @@ msgstr "" "¿Quieres parar para resolver el problema?\n" "Si seleccionas «No», el audio se oirá con ruidos." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/fa.po b/Languages/po/fa.po index db424e6eca..3ed17c796e 100644 --- a/Languages/po/fa.po +++ b/Languages/po/fa.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: H.Khakbiz , 2011\n" -"Language-Team: Persian (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Persian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/fa/)\n" "Language: fa\n" "MIME-Version: 1.0\n" @@ -161,7 +161,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -192,7 +192,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -206,7 +206,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -226,22 +226,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -249,6 +249,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -269,7 +273,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -282,7 +286,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -326,10 +330,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -339,23 +347,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -364,14 +368,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&نقاط انفصال" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -383,11 +387,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -395,7 +399,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -403,18 +407,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -450,7 +451,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&برابرسازی" @@ -475,36 +476,36 @@ msgstr "" msgid "&File" msgstr "&فایل" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&پيشروى فریم" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "تنظیمات &گرافیک" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&کمک" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "تنظیم &شرت کاتها" @@ -528,15 +529,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&جیت" @@ -548,11 +549,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&بارگذاری وضعیت" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -566,19 +567,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -586,7 +587,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -599,19 +600,19 @@ msgstr "" msgid "&Open..." msgstr "&باز کردن..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&گزینه ها" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "مکث" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&شروع بازی" @@ -619,7 +620,7 @@ msgstr "&شروع بازی" msgid "&Properties" msgstr "خواص" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +628,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "ثبت کردن" @@ -640,12 +641,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "شروع &دوباره" @@ -657,7 +658,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -669,11 +670,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&توقف" @@ -681,7 +682,7 @@ msgstr "&توقف" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -703,17 +704,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -725,11 +726,11 @@ msgstr "&ویکی" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -749,7 +750,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(خاموش)" @@ -773,7 +774,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -851,7 +852,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -863,7 +864,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -899,19 +900,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -935,7 +936,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1032,7 +1033,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1062,8 +1063,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1081,7 +1082,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1091,7 +1092,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1175,7 +1176,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1302,11 +1303,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1340,13 +1341,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1365,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1425,7 +1426,7 @@ msgstr "پیشرفته" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1481,7 +1482,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1489,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1498,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1507,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1532,11 +1533,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1594,7 +1595,7 @@ msgstr "زاویه" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1606,19 +1607,19 @@ msgstr "آنتی آلیاسینگ:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1632,8 +1633,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1644,7 +1645,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1681,8 +1682,8 @@ msgstr "نسبت طول به عرض تصویر:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1743,7 +1744,11 @@ msgstr "اتوماتیک" msgid "Auto (Multiple of 640x528)" msgstr "اتوماتیک (ضریب ۶۴۰x۵۲۸)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1763,7 +1768,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1777,6 +1782,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1788,7 +1804,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1871,10 +1887,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "نشان" @@ -1902,7 +1918,7 @@ msgstr "" msgid "Basic" msgstr "بنیانی" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "تنظیمات بنیانی" @@ -1962,9 +1978,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2000,15 +2016,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2136,30 +2152,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2255,7 +2271,7 @@ msgstr "" msgid "C Stick" msgstr "استیک سی" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2290,7 +2306,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2352,14 +2368,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2408,7 +2424,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2456,7 +2472,7 @@ msgstr "تعویض &دیسک..." msgid "Change Disc" msgstr "تعویض دیسک" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2516,7 +2532,7 @@ msgstr "جستجوی کد تقلب" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2528,7 +2544,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2546,29 +2562,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "انتخاب فایل برای باز کردن" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "انتخاب پوشه برای استخراج به آن" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2587,7 +2603,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2597,7 +2613,7 @@ msgstr "پاک کردن" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2618,7 +2634,7 @@ msgstr "" msgid "Close" msgstr "بستن" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2642,7 +2658,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2662,7 +2678,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2697,9 +2713,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2724,7 +2740,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2831,9 +2847,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2846,7 +2862,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "تائید برای توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,7 +2873,7 @@ msgstr "" msgid "Connect" msgstr "اتصال" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "" @@ -2865,27 +2881,27 @@ msgstr "" msgid "Connect USB Keyboard" msgstr "اتصال کیبورد USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2930,19 +2946,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2954,6 +2970,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2962,7 +2988,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2970,7 +2996,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2979,7 +3005,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3004,7 +3030,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3091,18 +3117,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3111,18 +3141,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3228,8 +3254,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3325,7 +3351,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3513,24 +3539,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3586,8 +3612,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "حذف" @@ -3605,7 +3631,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3620,9 +3646,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "شرح" @@ -3671,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "شناسایی" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3679,7 +3705,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3737,15 +3763,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "از کارانداختن مه" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3779,7 +3805,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3802,7 +3828,8 @@ msgstr "دیسک" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3832,15 +3859,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3850,7 +3877,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "آیا می خواهید برابرسازی فعلی را متوقف کنید؟" @@ -3871,9 +3898,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3885,8 +3912,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "فیلم های تاس دلفین (*.dtm)" @@ -3933,12 +3960,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3948,7 +3969,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4005,11 +4026,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4052,7 +4073,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "نسخه برداری صدا" @@ -4064,7 +4085,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "نسخه برداری مقصد ای اف بی" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "نسخه برداری فریم ها" @@ -4181,16 +4202,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4214,7 +4235,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4277,7 +4298,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4297,7 +4318,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "فعال کردن کدهای تقلب" @@ -4321,9 +4342,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "فعال کردن پردازنده با دو هسته یا بیشتر" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "فعال کردن پردازنده با دو هسته یا بیشتر (بالا بردن سرعت)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4367,7 +4388,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4409,7 +4430,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4485,7 +4506,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4519,7 +4540,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4565,6 +4586,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4592,7 +4622,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4643,14 +4673,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4689,26 +4719,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4725,9 +4755,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "خطا" @@ -4759,7 +4789,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4850,7 +4880,7 @@ msgstr "" msgid "Euphoria" msgstr "خوشی" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4863,15 +4893,15 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4883,19 +4913,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4903,7 +4933,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "" @@ -4914,11 +4944,11 @@ msgstr "" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "صادر کردن ضبط" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "صادر کردن ضبط..." @@ -4946,7 +4976,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4974,35 +5004,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "استخراج فایل..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5030,7 +5060,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5096,7 +5126,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5125,15 +5155,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5152,25 +5182,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5190,18 +5220,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5213,7 +5243,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5250,7 +5280,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5289,7 +5319,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5425,19 +5455,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5491,8 +5521,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5500,11 +5530,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5540,9 +5571,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5554,20 +5585,20 @@ msgstr "" msgid "File Info" msgstr "مشخصات فایل" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5665,8 +5696,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5733,7 +5764,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5743,7 +5774,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5786,20 +5817,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "پيشروى فریم" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5856,11 +5887,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5894,11 +5925,12 @@ msgstr "" msgid "FullScr" msgstr "تمام صفحه" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5918,7 +5950,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5934,11 +5966,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6051,11 +6083,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6089,8 +6121,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6216,7 +6248,8 @@ msgstr "" msgid "Gecko Codes" msgstr "کدهای گیکو" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6236,14 +6269,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6261,7 +6301,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6294,7 +6334,7 @@ msgstr "گرافیک" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6303,7 +6343,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6325,7 +6365,7 @@ msgstr "سبز چپ" msgid "Green Right" msgstr "سبز راست" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6407,7 +6447,7 @@ msgstr "مخفی" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6425,12 +6465,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6494,7 +6534,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6595,11 +6635,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6633,6 +6673,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6686,7 +6736,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6701,15 +6751,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6765,24 +6815,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6831,8 +6881,8 @@ msgstr "مشخصات" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "مشخصات" @@ -6846,10 +6896,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "ورودی" @@ -6868,13 +6918,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "درج کارت اس دی" @@ -6892,7 +6939,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6900,8 +6947,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6915,7 +6963,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6924,7 +6972,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6983,8 +7031,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7001,7 +7049,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7009,7 +7057,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7017,7 +7065,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7026,7 +7074,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7106,11 +7154,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7118,47 +7166,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7170,14 +7218,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7185,11 +7234,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7211,7 +7260,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7246,7 +7295,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7254,7 +7303,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7387,6 +7436,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7420,11 +7477,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7434,17 +7491,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "بارگذاری" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7453,7 +7510,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7464,7 +7521,7 @@ msgstr "بارگذاری بافت اشیاء دلخواه" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7472,16 +7529,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7489,104 +7551,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "بارگذاری وضعیت - شکاف ۱" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "بارگذاری وضعیت - شکاف ۲" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "بارگذاری وضعیت - شکاف ۳" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "بارگذاری وضعیت - شکاف ۴" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "بارگذاری وضعیت - شکاف ۵" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "بارگذاری وضعیت - شکاف ۶" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "بارگذاری وضعیت - شکاف ۷" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "بارگذاری وضعیت - شکاف ۸" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7594,20 +7656,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7615,7 +7672,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7640,20 +7697,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "ثبت وقایع" @@ -7663,10 +7720,11 @@ msgid "Log Configuration" msgstr "پیکر بندی ثبت وقایع" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7705,7 +7763,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7768,9 +7826,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7779,7 +7837,7 @@ msgstr "" msgid "Maker:" msgstr "سازنده" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7787,7 +7845,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7826,7 +7884,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7842,7 +7900,7 @@ msgstr "" msgid "Memory Card" msgstr "کارت حافظه" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7870,7 +7928,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7878,7 +7936,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7949,8 +8007,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7992,7 +8050,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8016,10 +8074,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8028,8 +8086,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8038,7 +8096,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8055,8 +8113,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8069,11 +8127,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8152,7 +8210,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8177,7 +8235,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8185,12 +8243,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8198,8 +8257,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8286,7 +8346,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8327,7 +8387,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8527,7 +8587,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "" @@ -8535,13 +8595,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8562,13 +8622,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8670,7 +8734,7 @@ msgstr "غیره" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8687,7 +8751,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8695,16 +8759,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8733,7 +8797,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8746,7 +8810,7 @@ msgstr "گیم پد" msgid "Pads" msgstr "گیم پد ها" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8809,7 +8873,7 @@ msgstr "مکث" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8854,7 +8918,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "نورپردازی به ازای هر پیکسل" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8884,11 +8948,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8904,8 +8968,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8917,7 +8981,7 @@ msgstr "شروع بازی" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "شروع ضبط" @@ -9012,7 +9076,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9063,7 +9127,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9081,9 +9145,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9091,8 +9155,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9136,13 +9201,13 @@ msgstr "" msgid "Profile" msgstr "پروفایل" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9159,11 +9224,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9190,7 +9255,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "سوال" @@ -9215,11 +9280,11 @@ msgstr "آر آنالوگ" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9256,13 +9321,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9285,7 +9350,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9344,7 +9409,7 @@ msgstr "قرمز چپ" msgid "Red Right" msgstr "قرمز راست" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9390,8 +9455,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9412,7 +9477,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9441,7 +9507,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9454,7 +9520,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9486,7 +9552,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9498,7 +9564,7 @@ msgstr "شروع دوباره" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9550,8 +9616,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9681,20 +9747,20 @@ msgstr "" msgid "Rumble" msgstr "شوک" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9764,11 +9830,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "ذخ&یره وضعیت" @@ -9780,7 +9846,7 @@ msgstr "بی خطر" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9795,22 +9861,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9822,15 +9900,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9838,73 +9920,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "ذخیره وضعیت - شکاف ۱" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "ذخیره وضعیت - شکاف ۲" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "ذخیره وضعیت - شکاف ۳" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "ذخیره وضعیت - شکاف ۴" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "ذخیره وضعیت - شکاف ۵" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "ذخیره وضعیت - شکاف ۶" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "ذخیره وضعیت - شکاف ۷" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "ذخیره وضعیت - شکاف ۸" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9924,11 +10010,7 @@ msgstr "" msgid "Save as..." msgstr "ذخیره بعنوان..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9939,19 +10021,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9985,7 +10059,7 @@ msgstr "عکس فوری" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "جستجو" @@ -10012,7 +10086,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10020,7 +10094,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10056,7 +10130,7 @@ msgstr "انتخاب" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10065,7 +10139,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10073,18 +10147,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10093,6 +10171,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10101,6 +10183,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10109,58 +10199,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10178,24 +10272,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10204,19 +10294,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10224,23 +10310,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "انتخاب فایل ذخیره" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10296,7 +10365,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10339,6 +10408,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "فرستادن" @@ -10347,6 +10437,15 @@ msgstr "فرستادن" msgid "Sensor Bar Position:" msgstr "موقعیت سنسور بار:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10375,39 +10474,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10421,7 +10516,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10433,10 +10528,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10487,11 +10589,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "نمایش &ثبت وقایع" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "نمایش نوار &ابزار" @@ -10499,15 +10601,15 @@ msgstr "نمایش نوار &ابزار" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10516,7 +10618,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10529,7 +10631,7 @@ msgstr "" msgid "Show FPS" msgstr "نمایش فریم بر ثانیه" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10537,15 +10639,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "نمایش فرانسه" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "نمایش گیم کیوب" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10553,27 +10655,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "نمایش ورودی تصویر" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "نمایش ایتالیا" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "نمایش کره" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10581,7 +10683,7 @@ msgstr "" msgid "Show Language:" msgstr "نمایش زبان:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "نمایش &پیکربندی ثبت وقایع" @@ -10593,7 +10695,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10601,12 +10703,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "نمایش پال" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10614,7 +10716,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "نمایش پایگاه ها" @@ -10622,23 +10724,23 @@ msgstr "نمایش پایگاه ها" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "نمایش مناطق" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10650,19 +10752,23 @@ msgstr "" msgid "Show Statistics" msgstr "نمایش آمار" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "نمایش تایوان" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "نمایش ایالات متحده آمریکا" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10674,27 +10780,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "نمایش وی" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10711,13 +10817,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10750,18 +10852,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10782,6 +10872,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10814,6 +10916,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10830,7 +10940,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10877,7 +10987,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11051,6 +11161,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11087,11 +11201,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "شروع ضبط" @@ -11130,39 +11244,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11171,7 +11285,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11201,7 +11315,7 @@ msgstr "استیک" msgid "Stop" msgstr "توقف" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11270,14 +11384,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11304,24 +11418,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11372,7 +11486,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11397,17 +11511,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11456,7 +11574,7 @@ msgstr "" msgid "System Language:" msgstr "زبان سیستم:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "ورودی تاس" @@ -11467,9 +11585,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11487,7 +11605,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "گرفتن عکس فوری" @@ -11495,7 +11613,7 @@ msgstr "گرفتن عکس فوری" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11530,7 +11648,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11575,13 +11693,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11732,7 +11850,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11856,7 +11974,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11890,7 +12008,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11948,7 +12066,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12057,7 +12175,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12248,7 +12366,7 @@ msgstr "" msgid "Threshold" msgstr "سرحد" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12267,10 +12385,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "عنوان" @@ -12278,25 +12396,29 @@ msgstr "عنوان" msgid "To" msgstr "به" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12304,28 +12426,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "تبدیل انواع ثبت وقایع" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12337,31 +12459,31 @@ msgstr "تبدیل حالت تمام صفحه" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12482,7 +12604,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12512,7 +12634,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12550,15 +12672,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12590,7 +12712,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12613,11 +12735,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "خنثی کردن وضعیت بارگذاری" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "" @@ -12635,7 +12757,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12731,11 +12853,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12743,7 +12865,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12841,7 +12968,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12934,7 +13061,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13005,7 +13132,7 @@ msgstr "" msgid "Value" msgstr "مقدار" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13093,22 +13220,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "حجم صدا" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13116,7 +13243,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13217,7 +13344,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "اخطار" @@ -13330,7 +13457,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "هک کردن صفحه عریض" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13400,7 +13527,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13435,11 +13562,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13583,7 +13710,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13647,7 +13774,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/fi.po b/Languages/po/fi.po index 32d01c7f15..f1c64245b5 100644 --- a/Languages/po/fi.po +++ b/Languages/po/fi.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Aleksi, 2023-2024\n" -"Language-Team: Finnish (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Finnish (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/fi/)\n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -178,7 +178,7 @@ msgstr "%1 muutos(ta) edellä versiota %2" msgid "%1 doesn't support this feature on your system." msgstr "%1 ei tue tätä ominaisuutta järjestelmässäsi." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 ei tue tätä ominaisuutta." @@ -200,7 +200,7 @@ msgstr "%1 liittyi" msgid "%1 has left" msgstr "%1 lähti" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 on avannut %2/%3 saavutusta, saavuttaen %4/%5 pistettä" @@ -212,7 +212,7 @@ msgstr "%1 ei ole kelvollinen ROM" msgid "%1 is now golfing" msgstr "%1 golffaa nyt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 on pelissä %2" @@ -226,7 +226,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 pistettä" @@ -246,22 +246,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normaali nopeus)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "Kohdan %1 arvo muuttuu" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "Kohdan %1 arvoon osutaan" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "Kohdan %1 arvoa käytetään" @@ -269,6 +269,10 @@ msgstr "Kohdan %1 arvoa käytetään" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -289,7 +293,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -302,7 +306,7 @@ msgstr "%1x alkuperäinen (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x alkuperäinen (%2x%3) %4-laadulle" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -346,10 +350,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Tietoa" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Lisää muistin keskeytyskohta" @@ -359,23 +367,19 @@ msgstr "&Lisää muistin keskeytyskohta" msgid "&Add New Code..." msgstr "&Lisää uusi koodi..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Lisää funktio" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Lisää..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Konekielen kääntäjä" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Ääniasetukset" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Automaattinen päivitys:" @@ -384,14 +388,14 @@ msgid "&Borderless Window" msgstr "&Reunaton ikkuna" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Keskeytyskohdat" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Vianhallintajärjestelmä" @@ -403,11 +407,11 @@ msgstr "&Peruuta" msgid "&Cheats Manager" msgstr "&Huijauskoodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Tarkista päivitykset..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Tyhjennä symbolit" @@ -415,7 +419,7 @@ msgstr "&Tyhjennä symbolit" msgid "&Clone..." msgstr "&Kloonaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Koodi" @@ -423,18 +427,15 @@ msgstr "&Koodi" msgid "&Connected" msgstr "&Yhdistetty" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Ohjainasetukset" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Kopioi osoite" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Kopioi osoite" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Luo..." @@ -470,7 +471,7 @@ msgstr "&Muokkaa..." msgid "&Eject Disc" msgstr "&Poista levy" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulaatio" @@ -495,36 +496,36 @@ msgstr "Vie .gci-muodossa..." msgid "&File" msgstr "&Tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Fontti..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Kehys kerrallaan" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Vapaan katselun asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Luo symbolit lähteestä" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub-repositorio" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Grafiikka-asetukset" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Ohjeet" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Pikanäppäinasetukset" @@ -548,15 +549,15 @@ msgstr "&Tuo..." msgid "&Infinity Base" msgstr "&Infinity-alusta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Lisää blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Kehysten välinen sekoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -568,11 +569,11 @@ msgstr "&Kieli:" msgid "&Load Branch Watch" msgstr "&Lataa haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Lataa tila" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Lataa symbolikartta" @@ -586,19 +587,19 @@ msgstr "&Lataa tiedosto nykyiseen osoitteeseen" msgid "&Lock Watches" msgstr "&Lukitse vahdit" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Lukitse käyttöliittymäelementit paikoilleen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Muisti" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Nauhoitus" @@ -606,7 +607,7 @@ msgstr "&Nauhoitus" msgid "&Mute" msgstr "&Mykistä" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Verkko" @@ -619,19 +620,19 @@ msgstr "&Ei" msgid "&Open..." msgstr "&Avaa..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Asetukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Muuta HLE-funktiot" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Keskeytä" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Käynnistä" @@ -639,7 +640,7 @@ msgstr "&Käynnistä" msgid "&Properties" msgstr "&Ominaisuudet" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Vain luku -tila" @@ -647,7 +648,7 @@ msgstr "&Vain luku -tila" msgid "&Refresh List" msgstr "&Päivitä lista" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Rekisterit" @@ -660,12 +661,12 @@ msgstr "&Poista" msgid "&Remove Code" msgstr "&Poista koodi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Nimeä symboli uudelleen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Nollaa" @@ -677,7 +678,7 @@ msgstr "&Resurssipakettien hallinta" msgid "&Save Branch Watch" msgstr "&Tallenna haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Tallenna symbolikartta" @@ -689,11 +690,11 @@ msgstr "&Skannaa e-Reader kortteja..." msgid "&Skylanders Portal" msgstr "&Skylanders-portaali" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Nopeusrajoitus:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Lopeta" @@ -701,7 +702,7 @@ msgstr "&Lopeta" msgid "&Theme:" msgstr "&Teema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Säikeet" @@ -723,17 +724,17 @@ msgstr "&Poista ROM" msgid "&Unlock Watches" msgstr "&Poista vahtien lukitus" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Näytä" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Vahti" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Kotisivu" @@ -745,11 +746,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "K&yllä" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "Kohdetta '%1' ei löydy, symbolinimiä ei luotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "Kohdetta '%1' ei löydy, etsitään sen sijaan yleisiä funktioita" @@ -769,7 +770,7 @@ msgstr "(Järjestelmä)" msgid "(host)" msgstr "(isäntä)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(pois)" @@ -793,7 +794,7 @@ msgstr ", Pilkku" msgid "- Subtract" msgstr "- Vähennyslasku" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -871,7 +872,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16-kertainen anisotrooppinen" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -883,7 +884,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -919,19 +920,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-bittinen etumerkitön kokonaisluku" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D-syvyys" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -955,7 +956,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1052,7 +1053,7 @@ msgstr "Poissa käytöstä Hardcore-tilassa." msgid "If unsure, leave this unchecked." msgstr "Ellet ole varma, jätä tämä pois." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1089,8 +1090,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Suurempi kuin" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Nettipeli-istunto on jo käynnissä!" @@ -1114,7 +1115,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Levyä ollaan jo laittamassa." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1126,7 +1127,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Tilantallennusta ei voi ladata määräämättä peliä, joka käynnistetään." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1228,7 +1229,7 @@ msgid "Achievement Settings" msgstr "Saavutusasetukset" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Saavutukset" @@ -1324,7 +1325,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "Aktivoi nettipelin keskustelu" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktiivinen" @@ -1375,11 +1376,11 @@ msgstr "Lisää uusi USB-laite" msgid "Add Shortcut to Desktop" msgstr "Luo pikakuvake työpöydälle" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Lisää keskeytyskohta" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Lisää muistikeskeytyskohta" @@ -1413,13 +1414,13 @@ msgstr "Lisää..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Osoite" @@ -1438,7 +1439,7 @@ msgstr "Osoiteavaruus CPU-tilan mukaan" msgid "Address:" msgstr "Osoite:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1526,7 +1527,7 @@ msgstr "Lisäasetukset" msgid "Advanced Settings" msgstr "Lisäasetukset" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1605,7 +1606,7 @@ msgstr "Kaikki 64-bittisinä liukulukuina" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1613,7 +1614,7 @@ msgid "All Files" msgstr "Kaikki tiedostot" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Kaikki tiedostot (*)" @@ -1622,7 +1623,7 @@ msgstr "Kaikki tiedostot (*)" msgid "All Float" msgstr "Kaikki 32-bittisinä liukulukuina" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Kaikki GC-/Wii-tiedostot" @@ -1631,8 +1632,8 @@ msgstr "Kaikki GC-/Wii-tiedostot" msgid "All Hexadecimal" msgstr "Kaikki heksadesimaalisina" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Kaikki tilatallennukset (*.sav *.s##);; Kaikki tiedostot (*)" @@ -1656,11 +1657,11 @@ msgstr "Kaikkien pelaajien koodit synkronoitu." msgid "All players' saves synchronized." msgstr "Kaikkien pelaajien tallennustiedostot synkronoitu." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Salli sopimattomat alueasetukset" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Salli käyttötilastojen raportointi" @@ -1720,7 +1721,7 @@ msgstr "Kulma" msgid "Angular velocity to ignore and remap." msgstr "Kulmanopeus uudelleenmuunnettavaksi." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Reunanpehmennys" @@ -1732,19 +1733,19 @@ msgstr "Reunanpehmennys:" msgid "Any Region" msgstr "Mikä vain alue" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Lisää allekirjoitus kohteeseen" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Lisää allekirjoitus &olemassaolevaan allekirjoitustiedostoon..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Käyt&ä allekirjoitustiedostoa..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1760,9 +1761,9 @@ msgstr "Apploaderin päiväys:" msgid "Apply" msgstr "Käytä" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Käytä allekirjoitustiedostoa" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1772,7 +1773,7 @@ msgstr "Mielivaltaisten mipmapien havainta" msgid "Are you sure that you want to delete '%1'?" msgstr "Oletko varma, että haluat poistaa profiilin '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Haluatko varmasti poistaa tämän tiedoston?" @@ -1809,9 +1810,9 @@ msgstr "Kuvasuhde:" msgid "Assemble" msgstr "Tulkkaa" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Tulkkaa käsky" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1873,7 +1874,11 @@ msgstr "Automaattinen" msgid "Auto (Multiple of 640x528)" msgstr "Automaattinen (640x528:n moninkerta)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Automaattisen päivityksen asetukset" @@ -1897,7 +1902,7 @@ msgstr "Säädä ikkunan kokoa automaattisesti" msgid "Auto-Hide" msgstr "Automaattinen piilotus" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Havaitaanko RSO-moduulit automaattisesti?" @@ -1914,6 +1919,17 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Muuta nykyiset arvot automaattisesti" @@ -1925,7 +1941,7 @@ msgid "Auxiliary" msgstr "Apumuisti" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -2011,10 +2027,10 @@ msgstr "Virheellinen ero annettu." msgid "Bad value provided." msgstr "Virheellinen arvo annettu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banneri" @@ -2042,7 +2058,7 @@ msgstr "Perusprioriteetti" msgid "Basic" msgstr "Perustiedot" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Perusasetukset" @@ -2106,9 +2122,9 @@ msgstr "" "\n" "Yritä uudelleen käyttäen toista hahmoa." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Lohkokoko" @@ -2146,15 +2162,15 @@ msgstr "" "Bluetooth-läpipäästötila on käytössä, mutta Dolphin on käännetty ilman " "libusb-kirjastoa. Läpipäästötilaa ei voi käyttää." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Käynnistä keskeytettynä" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMiin NAND-varmuuskopiotiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMiin avaintiedosto (*.bin);;Kaikki tiedostot (*)" @@ -2303,30 +2319,30 @@ msgstr "Haara linkkirekisteriin (LR tallentuu)" msgid "Branch: %1" msgstr "Haara: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Haarat" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Keskeytä" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Keskeytyskohdat" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Saavutettiin keskeytyskohta! Loppuun suoritus keskeytettiin." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Keskeytyskohdat" @@ -2425,7 +2441,7 @@ msgstr "Tekijä(t): %1" msgid "C Stick" msgstr "C-sauva" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "L&uo allekirjoitustiedosto..." @@ -2464,7 +2480,7 @@ msgstr "" msgid "Calculate" msgstr "Laske" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2532,14 +2548,14 @@ msgstr "Tämän palkinnon roistoja ei voi muuttaa!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Wii Remote -ohjainta ei löydy yhteystunnisteella {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Nettipeli-istuntoa ei voi käynnistää, kun peli on vielä käynnissä!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2591,7 +2607,7 @@ msgstr "Tälle osoitteelle ei voi luoda AR-koodeja." msgid "Cannot refresh without results." msgstr "Ei voi päivittää ilman tuloksia." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI-kansiota ei voi asettaa tyhjäksi hakemistopoluksi." @@ -2639,7 +2655,7 @@ msgstr "Vaihda &levy..." msgid "Change Disc" msgstr "Vaihda levy" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Vaihda levyä automaattisesti" @@ -2714,7 +2730,7 @@ msgstr "Koodihaku" msgid "Cheats Manager" msgstr "Koodien hallinta" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Tarkista NAND..." @@ -2726,7 +2742,7 @@ msgstr "Tarkista pelilistan päivitykset taustalla" msgid "Check for updates" msgstr "Tarkista päivitykset" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2746,29 +2762,29 @@ msgstr "Kiina" msgid "Choose" msgstr "Valitse" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Valitse avattava tiedosto" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Valitse luotava tai avattava tiedosto" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Valitse ensisijainen syötetiedosto" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Valitse toissijainen syötetiedosto" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Valitse GCI-pohjakansio" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Valitse kansio, johon puretaan" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2787,7 +2803,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2797,7 +2813,7 @@ msgstr "Tyhjennä" msgid "Clear Branch Watch" msgstr "Tyhjennä haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Tyhjennä välimuisti" @@ -2818,7 +2834,7 @@ msgstr "Kloonaa ja &muokkaa koodia..." msgid "Close" msgstr "Sulje" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "As&etukset" @@ -2842,7 +2858,7 @@ msgstr "Koodi:" msgid "Codes received!" msgstr "Koodit saatu!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Värinkorjaus" @@ -2862,7 +2878,7 @@ msgstr "Väriavaruus" msgid "Column &Visibility" msgstr "Sarakkeen &näkyvyys" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Yhdistä &kaksi allekirjoitustiedostoa..." @@ -2903,9 +2919,9 @@ msgstr "Käännä varjostimet ennen käynnistystä" msgid "Compiling Shaders" msgstr "Käännetään varjostimia" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Pakkausmenetelmä" @@ -2930,7 +2946,7 @@ msgstr "Ehto" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Ehto" @@ -3037,9 +3053,9 @@ msgstr "Ulostuloasetukset" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Vahvista" @@ -3052,7 +3068,7 @@ msgstr "Vahvista sisäisen järjestelmän muutos" msgid "Confirm on Stop" msgstr "Vahvista pysäytyksessä" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3063,7 +3079,7 @@ msgstr "Vahvistus" msgid "Connect" msgstr "Yhdistä" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Yhdistä tasapainolauta" @@ -3071,27 +3087,27 @@ msgstr "Yhdistä tasapainolauta" msgid "Connect USB Keyboard" msgstr "Yhdistä USB-näppäimistö" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Yhdistä Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Yhdistä Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Yhdistä Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Yhdistä Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Yhdistä Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Yhdistä Wii Remoteja" @@ -3136,19 +3152,19 @@ msgstr "Ohjainsauva" msgid "Controller Profile" msgstr "Ohjainprofiili" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Ohjainprofiili 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Ohjainprofiili 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Ohjainprofiili 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Ohjainprofiili 4" @@ -3160,6 +3176,16 @@ msgstr "Ohjainasetukset" msgid "Controllers" msgstr "Ohjaimet" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3173,7 +3199,7 @@ msgstr "" "ulostulo.

Ellet ole varma, jätä tämän arvoksi 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3185,7 +3211,7 @@ msgstr "" "voimakkaamman ruudusta nousemisen vaikutelman, kun taas matalampi arvo on " "mukavampi." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3200,7 +3226,7 @@ msgstr "" "

Ellet ole varma, valitse Alkuperäinen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3235,7 +3261,7 @@ msgstr "" "Valitsee, käytetäänkö matalan vai korkean tason DSP-emulointia. Oletuksena " "True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Yhtenevyys" @@ -3339,18 +3365,22 @@ msgstr "" msgid "Copy" msgstr "Kopioi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopioi %funktio" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Kopioi &heksa" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopioi osoite" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Kopiointi epäonnistui" @@ -3359,18 +3389,14 @@ msgstr "Kopiointi epäonnistui" msgid "Copy Hex" msgstr "Kopioi heksa" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Kopioi arvo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Kopioi koodi&rivi" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Kopioi koh&deosoite" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Kopioi A:han" @@ -3496,8 +3522,8 @@ msgstr "Tiedoston {0} tunnistus epäonnistui" msgid "Could not save your changes!" msgstr "Muutoksia ei voinut tallentaa!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Päivitysohjelman käynnistäminen epäonnistui: {0}" @@ -3609,7 +3635,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Nykyinen alue" @@ -3804,24 +3830,24 @@ msgstr "Purkulaatu:" msgid "Decrease" msgstr "Vähennä" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Vähennä yhtenevyyttä" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Vähennä syvyyttä" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Vähennä emulointinopeutta" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Vähennä sisäistä kuvatarkkuutta" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Vähennä valittua tilatallennuspaikka" @@ -3884,8 +3910,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Poista" @@ -3903,7 +3929,7 @@ msgstr "Poista valitut tiedostot..." msgid "Delete the existing file '{0}'?" msgstr "Poistetaanko olemassaoleva tiedosto '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Syvyys" @@ -3918,9 +3944,9 @@ msgstr "Syvyys:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Kuvaus" @@ -3969,7 +3995,7 @@ msgstr "Irrallinen" msgid "Detect" msgstr "Havaitse" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Havaitaan RSO-moduuleja" @@ -3977,7 +4003,7 @@ msgstr "Havaitaan RSO-moduuleja" msgid "Deterministic dual core:" msgstr "Deterministinen kaksoisydintila:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Kehitysversiot (monia kertoja päivässä)" @@ -4035,15 +4061,15 @@ msgstr "Poista kopiointisuodatin käytöstä" msgid "Disable EFB VRAM Copies" msgstr "Poista EFB-VRAM-kopiointi käytöstä" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Poista emulaation nopeusrajoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Poista nopea muistihaku (Fastmem) käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Poista nopean muistikäytön kenttä käytöstä" @@ -4051,11 +4077,11 @@ msgstr "Poista nopean muistikäytön kenttä käytöstä" msgid "Disable Fog" msgstr "Poista sumu käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Poista JIT-välimuisti käytöstä" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Poista laaja koodin tulokohtien hakurakenne käytöstä" @@ -4085,7 +4111,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4114,7 +4140,8 @@ msgstr "Levy" msgid "Discard" msgstr "Hylkä" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -4149,15 +4176,15 @@ msgstr "Etäisyys" msgid "Distance of travel from neutral position." msgstr "Matkaetäisyys neutraalipaikasta." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Haluatko tyhjentää symbolinimien listan?" @@ -4168,7 +4195,7 @@ 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:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Haluatko lopettaa nykyisen emulaation?" @@ -4189,9 +4216,9 @@ msgstr "Dolphin FIFO -loki (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphinin pelimodien esiasestukset" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphinin karttatiedosto (*.map)" @@ -4203,8 +4230,8 @@ msgstr "Dolphinin allekirjoitusten CSV-tiedosto" msgid "Dolphin Signature File" msgstr "Dolphinin allekirjoitustiedosto" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-nauhoitus (*.dtm)" @@ -4262,14 +4289,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin ei pysty todentamaan ei-lisensoituja levyjä." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin käyttää tätä asetusta julkaisuille, joiden aluetta ei voi määrittää " -"automaattisesti." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphinin huijausjärjestelmä on tällä hetkellä pois käytöstä." @@ -4279,7 +4298,7 @@ msgstr "Dolphinin huijausjärjestelmä on tällä hetkellä pois käytöstä." msgid "Domain" msgstr "Verkkotunnus" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Älä päivitä" @@ -4336,11 +4355,11 @@ msgstr "Ladattu %1 koodia. (lisätty %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4383,7 +4402,7 @@ msgstr "Tee &FakeVMEM-vedos" msgid "Dump &MRAM" msgstr "Tee &MRAM-vedos" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Tee äänivedos" @@ -4395,7 +4414,7 @@ msgstr "Tee perustekstuurivedos" msgid "Dump EFB Target" msgstr "Tee EFB-kohteen vedos" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Tee kehysvedos" @@ -4529,16 +4548,16 @@ msgstr "Itä-Aasia" msgid "Edit Breakpoint" msgstr "Muokkaa keskeytyskohtaa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Muokkaa..." @@ -4562,7 +4581,7 @@ msgstr "Näennäinen" msgid "Effective priority" msgstr "Toiminnallinen prioriteetti" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4630,7 +4649,7 @@ msgstr "" "Nykyinen: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emulaation nopeus" @@ -4650,7 +4669,7 @@ msgstr "Käytä ohjelmointirajapinnan tarkistuskerroksia" msgid "Enable Audio Stretching" msgstr "Käytä äänen venytystä" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Ota huijauskoodit käyttöön" @@ -4674,9 +4693,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Ota kaksiydinsuoritin käyttöön" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Ota kaksiydinsuoritin käyttöön (nopeuttaa)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4738,7 +4757,7 @@ msgstr "" "käytöstä samalla, kun peli on käynnissä, vaatii pelin sulkemista, ennen kuin " "hardcore-tilan voi ottaa uudelleen käyttöön." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Käytä JIT-lohkojen seurantaa" @@ -4780,7 +4799,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "Ota epäviralliset saavutukset käyttöön" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Ota käyttötilastojen raportointi käyttöön" @@ -4872,7 +4891,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4929,7 +4948,7 @@ msgstr "" "Useimmissa peleissä tämä ei aiheuta ongelmia.

Ellet " "ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4996,6 +5015,15 @@ msgstr "" "esimerkiksi Forecast- ja Nintendo-kanavien yhteydessä\n" "Voit lukea palveluehdot osoitteesta https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -5034,7 +5062,7 @@ msgstr "" "\n" "Tuonti keskeytyy." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -5086,14 +5114,14 @@ msgid "" msgstr "" "Syötä IP-osoite ja portti sille tap-palvelimelle, johon haluat yhdistää." -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5132,26 +5160,26 @@ msgstr "Syötä RSO-moduulin osoite:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5168,9 +5196,9 @@ msgstr "Syötä RSO-moduulin osoite:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Virhe" @@ -5202,7 +5230,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Virhe istuntolistan hakemisessa: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Virheitä tapahtui joidenkin tekstuuripakettien latauksessa" @@ -5299,7 +5327,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:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eurooppa" @@ -5312,15 +5340,15 @@ msgstr "Poissulkevat Uber-varjostimet" msgid "Exit" msgstr "Poistu" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Odotettiin +-merkkiä tai sulkevaa suljetta." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Odotettiin argumentteja:" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Odotettiin sulkevaa suljetta." @@ -5332,19 +5360,19 @@ msgstr "Odotettiin pilkkua." msgid "Expected end of expression." msgstr "Odotettiin lausekkeen loppua." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Odotettiin syötteen nimeä" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Odotettiin avaavaa suljetta." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Odotettiin lausekkeen alkua." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Odotettiin muuttujanimeä" @@ -5352,7 +5380,7 @@ msgstr "Odotettiin muuttujanimeä" msgid "Experimental" msgstr "Kokeellinen" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Vie kaikki Wii-tallennustiedostot" @@ -5363,11 +5391,11 @@ msgstr "Vie kaikki Wii-tallennustiedostot" msgid "Export Failed" msgstr "Vieminen epäonnistui" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Vie nauhoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Vie nauhoitus..." @@ -5395,7 +5423,7 @@ msgstr "Vie .&gcs-muodossa..." msgid "Export as .&sav..." msgstr "Vie .&sav-muodossa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5423,35 +5451,35 @@ msgstr "Ulkoinen" msgid "External Frame Buffer (XFB)" msgstr "Ulkoinen kehyspuskuri (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Vie varmenteet NAND-muistista" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Vie koko levyn sisältö..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Vie kokonainen osio..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Vie tiedosto..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Vie tiedostot..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Vie järjestelmätiedot..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Viedään kaikkia tiedostoja..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Puretaan hakemistoa..." @@ -5481,7 +5509,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui" @@ -5554,7 +5582,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:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Valitun tiedoston poisto epäonnistui." @@ -5584,15 +5612,15 @@ msgstr "Tallennustiedostoista %n:n %1:sta vienti epäonnistui." msgid "Failed to export the following save files:" msgstr "Seuraavien tallennustiedostojen vienti epäonnistui:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista epäonnistui" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Tiedoston vieminen epäonnistui." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Järjestelmädatan vienti epäonnistui." @@ -5614,14 +5642,14 @@ msgstr "Yhden tai useamman D3D-symbolin haku epäonnistui" msgid "Failed to import \"%1\"." msgstr "Kohteen \"%1\" tuonti epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5629,7 +5657,7 @@ msgstr "" "Tallennustiedoston tuonti epäonnistui. Annettu tiedosto on vioittunut tai ei " "ole kelvollinen Wii-tallennustiedosto." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5640,7 +5668,7 @@ msgstr "" "(Työkalut -> Hallitse NAND-muistia -> Tarkista NAND...), ja yritä " "tallennustiedoston tuontia sitten uudelleen." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Ytimen alustus epäonnistui" @@ -5663,19 +5691,19 @@ msgid "Failed to install pack: %1" msgstr "Paketin asennus epäonnistui: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Tämän julkaisun asennus NAND-muistiin epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 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:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "RSO-moduulin lataaminen epäonnistui kohdassa %1" @@ -5687,7 +5715,7 @@ 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:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Karttatiedoston '%1' lataus epäonnistui" @@ -5728,7 +5756,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "Tiedoston \"{0}\" avaaminen kirjoittamista varten epäonnistui." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Kohteen '%1' avaus epäonnistui" @@ -5769,7 +5797,7 @@ msgstr "" msgid "Failed to open file." msgstr "Tiedoston avaaminen epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Palvelimen avaaminen epäonnistui" @@ -5929,19 +5957,19 @@ msgstr "Haaravahtitiedoston \"%1\" tallennus epäonnistui" msgid "Failed to save FIFO log." msgstr "FIFO-lokin tallennus epäonnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Koodikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Allekirjoitustiedoston tallentaminen tiedostoon '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Symbolikartan tallentaminen polkuun '%1' epäonnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Allekirjoitustiedoston '%1' tallentaminen epäonnistui" @@ -6001,8 +6029,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Virhe" @@ -6010,11 +6038,12 @@ msgstr "Virhe" msgid "Fair Input Delay" msgstr "Reilu syöteviive" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Oletusalue" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Oletusalue:" @@ -6052,9 +6081,9 @@ msgstr "Hahmon tyyp" msgid "File Details" msgstr "Tiedoston tiedot" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Tiedostomuoto" @@ -6066,20 +6095,20 @@ msgstr "Tiedostomuoto:" msgid "File Info" msgstr "Tiedoston tiedot" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Tiedostonimi" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Tiedostopolku" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Tiedostokoko" @@ -6181,9 +6210,9 @@ msgstr "Liput" msgid "Float" msgstr "32-bittinen liukuluku" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Seuraa &haaraa" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6255,7 +6284,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:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6271,7 +6300,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6319,20 +6348,20 @@ msgstr "Löytyi %n osoite(tta)" msgid "Frame %1" msgstr "Kehys %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Kehys kerrallaan" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Kehys kerrallaan: vähennä nopeutta" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Kehys kerrallaan: lisää nopeutta" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Kehys kerrallaan: palauta nopeus" @@ -6393,11 +6422,11 @@ msgstr "" msgid "FreeLook" msgstr "Vapaa katselu" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Vapaa katselu" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Vapaa katselu päälle/pois" @@ -6431,11 +6460,12 @@ msgstr "Mistä:" msgid "FullScr" msgstr "Koko näyttö" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funktio" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -6455,7 +6485,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "GBA-kasettipolku:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA-ydin" @@ -6471,11 +6501,11 @@ msgstr "GBA-asetukset" msgid "GBA TAS Input %1" msgstr "GBA-TAS-syöte %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA-äänenvoimakkuus" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA-ikkunan koko" @@ -6614,11 +6644,11 @@ msgstr "Peli" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance -moduulit (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6654,8 +6684,8 @@ msgstr "Pelin gamma" msgid "Game Gamma:" msgstr "Pelin gamma:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Pelin tunniste" @@ -6785,7 +6815,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Gecko-koodit" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6805,14 +6836,21 @@ msgid "Generate Action Replay Code(s)" msgstr "Luo Action Replay -koodi(t)" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Luo uusi tilastoidentiteetti" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "AR-koodi(t) luotu." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Luotu symbolinimet lähteestä '%1'" @@ -6830,7 +6868,7 @@ msgstr "Saksa" msgid "GetDeviceList failed: {0}" msgstr "GetDeviceList epäonnistui: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6863,7 +6901,7 @@ msgstr "Grafiikka" msgid "Graphics Mods" msgstr "Grafiikkamodit" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Grafiikkavalinnat" @@ -6872,7 +6910,7 @@ msgstr "Grafiikkavalinnat" msgid "Graphics mods are currently disabled." msgstr "Grafiikkamodit ovat tällä hetkellä pois päältä." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6900,7 +6938,7 @@ msgstr "Vihreä vasen" msgid "Green Right" msgstr "Vihreä oikea" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Ruudukkonäkymä" @@ -6982,7 +7020,7 @@ msgstr "Piilota" msgid "Hide &Controls" msgstr "Piilota &komennot" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Piilota kaikki" @@ -7000,12 +7038,12 @@ msgstr "Piilota muiden GBA:" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Korkea" @@ -7074,7 +7112,7 @@ msgstr "Isäntänimi" msgid "Hotkey Settings" msgstr "Pikanäppäinasetukset" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7200,11 +7238,11 @@ msgstr "" "Sopii vuoropohjaisiin peleihin, kuten golfiin, joissa ohjauksen ajoitus on " "tärkeää." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Identiteetin luonti" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7259,6 +7297,16 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7331,7 +7379,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Tuo BootMii-NAND-varmuuskopio..." @@ -7346,15 +7394,15 @@ msgstr "Tuonti epäonnistui" msgid "Import Save File(s)" msgstr "Tuo tallennustiedosto(ja)" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Tuo Wii-tallennustiedosto..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "NAND-varmuuskopion tuonti käynnissä" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7417,24 +7465,24 @@ msgstr "Peliaika ei kelpaa!" msgid "Increase" msgstr "Lisää" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Lisää yhtenevyyttä" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Lisää syvyyttä" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Lisää emulaationopeutta" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Lisää sisäistä kuvatarkkuutta" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Lisää valittua tilatallennuspaikkaa" @@ -7486,8 +7534,8 @@ msgstr "Tiedot" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Tiedot" @@ -7501,10 +7549,10 @@ msgstr "Lisää koodia" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Syöte" @@ -7523,13 +7571,10 @@ msgid "Insert &BLR" msgstr "Lisää &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Lisää tyhjä käsky" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Lisää &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Lisää SD-kortti" @@ -7547,7 +7592,7 @@ msgstr "Asennusosio (%1)" msgid "Install Update" msgstr "Asenna päivitys" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Asenna WAD..." @@ -7555,8 +7600,9 @@ msgstr "Asenna WAD..." msgid "Install to the NAND" msgstr "Asenna NAND-muistiin" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Käsky" @@ -7570,7 +7616,7 @@ msgstr "Käsky" msgid "Instruction Breakpoint" msgstr "Käskyn keskeytyskohta" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Käsky:" @@ -7579,7 +7625,7 @@ msgstr "Käsky:" msgid "Instruction: %1" msgstr "Käsky: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7648,8 +7694,8 @@ msgstr "" "Sisäinen LZO-virhe - puretun versiomerkkijonon jäsentäminen epäonnistui " "({0} / {1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Sisäinen kuvatarkkuus" @@ -7666,7 +7712,7 @@ msgstr "Sisäinen virhe AR-koodia luonnissa." msgid "Interpreter (slowest)" msgstr "Tulkki (hitain)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Tulkkiydin" @@ -7674,7 +7720,7 @@ msgstr "Tulkkiydin" msgid "Invalid Expression." msgstr "Virheellinen lauseke." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "Automaattisen päivityksen palvelu palautti virheellistä JSONia: {0}" @@ -7682,7 +7728,7 @@ msgstr "Automaattisen päivityksen palvelu palautti virheellistä JSONia: {0}" msgid "Invalid Mixed Code" msgstr "Virheellinen sekakoodi" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Virheellinen paketti %1 annettu: %2" @@ -7691,7 +7737,7 @@ msgstr "Virheellinen paketti %1 annettu: %2" msgid "Invalid Player ID" msgstr "Virheellinen pelaajatunniste" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Virheellinen RSO-moduulin osoite: %1" @@ -7771,11 +7817,11 @@ msgstr "Italia" msgid "Item" msgstr "Esin" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT:n lohkolinkitys pois" @@ -7783,47 +7829,47 @@ msgstr "JIT:n lohkolinkitys pois" msgid "JIT Blocks" msgstr "JIT-lohkot" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT-haara pois" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT-liukuluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT-kokonaisluku pois" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT-liukuluku-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT-paritettu-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT-IXz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT-Ibzx-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT-Iwz-lukukirjoitus pois" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT pois (JIT-ydin)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT-paritettu pois" @@ -7835,14 +7881,15 @@ msgstr "JIT-kääntäjä ARM64-alustalle (suositus)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-kääntäjä x86-64-alustalle (suositus)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "JIT-rekisterivälimuisti pois" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT-järjestelmärekisterit pois" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7853,11 +7900,11 @@ msgstr "" "Näin ei pitäisi koskaan tapahtua. Ilmoitathan tästä ongelmasta " "vianhallintajärjestelmään. Dolphin sulkeutuu nyt." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT ei ole aktiivinen" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japani" @@ -7881,7 +7928,7 @@ msgstr "" "Kaos on ainoa roisto, joka kuuluu tähän palkintoon, ja hän on pelissä aina " "avattuna. Muutoksia ei tarvita!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Jatka suoritusta" @@ -7916,7 +7963,7 @@ msgstr "Näppäimistöohjain" msgid "Keys" msgstr "Näppäimet" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7924,7 +7971,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Poista pelaaja" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -8063,6 +8110,14 @@ msgstr "" "Paina hiiren vasemmalla/oikealla painikkeella säätääksesi ulostuloa.\n" "Keskimmäinen painikie tyhjentää asetuksen." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8096,11 +8151,11 @@ msgstr "Valo" msgid "Limit Chunked Upload Speed:" msgstr "Rajoita lohkotun lähetyksen nopeutta:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Listan sarakkeet" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Listanäkymä" @@ -8110,17 +8165,17 @@ msgstr "Kuunnellaan" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Lataa" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Lataa &huono karttatiedosto..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Lataa &muu karttatiedosto..." @@ -8129,8 +8184,8 @@ msgid "Load Branch Watch &From..." msgstr "Lataa haaravahti &tiedostosta..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" -msgstr "Lataa haaravahtitiedosto" +msgid "Load Branch Watch Snapshot" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8140,7 +8195,7 @@ msgstr "Lataa muokatut tekstuurit" msgid "Load File" msgstr "Avaa tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Lataa GameCube-päävalikko" @@ -8148,16 +8203,21 @@ msgstr "Lataa GameCube-päävalikko" msgid "Load Host's Save Data Only" msgstr "Lataa vain isäntäkoneen tallennustiedostot" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Palauta viimeisin tila" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Lataa polku:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Lataa ROM" @@ -8165,104 +8225,104 @@ msgstr "Lataa ROM" msgid "Load Slot" msgstr "Aseta paikkaan" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Palauta tila" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Palauta viimeisin tila 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Palauta viimeisin tila 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Palauta viimeisin tila 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Palauta viimeisin tila 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Palauta viimeisin tila 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Palauta viimeisin tila 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Palauta viimeisin tila 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Palauta viimeisin tila 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Palauta viimeisin tila 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Palauta viimeisin tila 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Palauta tila 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Palauta tila 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Palauta tila 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Palauta tila 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Palauta tila 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Palauta tila 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Palauta tila 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Palauta tila 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Palauta tila 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Palauta tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Palauta tila tiedostosta" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Palauta tila paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Käynnistä Wii-järjestelmävalikko %1" @@ -8270,20 +8330,15 @@ msgstr "Käynnistä Wii-järjestelmävalikko %1" msgid "Load and Write Host's Save Data" msgstr "Lataa ja kirjoita isäntäkoneen tallennustiedosto" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Palauta tila valitusta paikasta" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Palauta tila paikasta %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Lataa karttatiedosto" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Käynnistä vWii-järjestelmävalikko %1" @@ -8291,7 +8346,7 @@ msgstr "Käynnistä vWii-järjestelmävalikko %1" msgid "Load..." msgstr "Lataa..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Symbolit lähteestä '%1' ladattu" @@ -8323,20 +8378,20 @@ msgstr "Paikallinen" msgid "Lock Mouse Cursor" msgstr "Lukitse hiiren osoitin paikoilleen" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Lukittu" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Loki" @@ -8346,10 +8401,11 @@ msgid "Log Configuration" msgstr "Lokiasetukset" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Kirjaudu sisään" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Kirjoita JIT:n käskykattavuus lokiin" @@ -8392,7 +8448,7 @@ msgstr "Silmukka" msgid "Lost connection to NetPlay server..." msgstr "Yhteys nettipelipalvelimeen menetettiin..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Matala" @@ -8455,9 +8511,9 @@ msgstr "Varmista, että peliaika on oikein!" msgid "Make sure there is a Skylander in slot %1!" msgstr "Varmista, että paikassa %1 on Skylander-hahmo!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Tekijä" @@ -8466,7 +8522,7 @@ msgstr "Tekijä" msgid "Maker:" msgstr "Tekijä:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8479,7 +8535,7 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Hallitse NAND-muistia" @@ -8519,7 +8575,7 @@ msgstr "" "Saattaa aiheuttaa hidastumisongelmia Wii-valikossa ja joissain peleissä." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Keskitaso" @@ -8535,7 +8591,7 @@ msgstr "Muistin keskeytyskohta" msgid "Memory Card" msgstr "Muistikortti" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Muistikorttien hallinta" @@ -8566,7 +8622,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "MemoryCard: Write-kutsu tapahtui virheellisellä kohdeosoitteella ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8578,7 +8634,7 @@ msgstr "" "Tätä toimintoa ei voi peruuttaa, joten on suositeltavaa säilyttää molempien " "NAND-muistien varmuuskopiot. Haluatko varmasti jatkaa?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8662,8 +8718,8 @@ msgstr "Muokkaa paikkaa" msgid "Modifying Skylander: %1" msgstr "Muokataan Skylanderia: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Löydetyt moduulit: %1" @@ -8705,7 +8761,7 @@ msgstr "Hiiren osoittimen näkyvyys" msgid "Move" msgstr "Liiku" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Nauhoitus" @@ -8731,10 +8787,10 @@ msgstr "Kerroin" msgid "N&o to All" msgstr "E&i kaikkiin" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-tarkistus" @@ -8743,8 +8799,8 @@ msgstr "NAND-tarkistus" msgid "NKit Warning" msgstr "NKit-varoitus" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8753,7 +8809,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8776,8 +8832,8 @@ msgstr "" "

Ellet ole varma, jätä asetus arvoon 2,35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8790,11 +8846,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Nimi" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Uuden tunnisteen nimi:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Poistettavan tunnisteen nimi:" @@ -8881,7 +8937,7 @@ msgid "Never Auto-Update" msgstr "Älä koskaan päivitä automaattisesti" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Uusi" @@ -8906,7 +8962,7 @@ msgstr "Uusi haku" msgid "New Tag..." msgstr "Uusi tunniste..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Uusi identiteetti luotu." @@ -8914,12 +8970,13 @@ msgstr "Uusi identiteetti luotu." msgid "New instruction:" msgstr "Uusi käsky:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Uusi tunniste" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Uusi peliprofiili" @@ -8927,8 +8984,9 @@ msgstr "Uusi peliprofiili" msgid "Next Match" msgstr "Seuraava tulos" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Seuraava profiili" @@ -9015,7 +9073,7 @@ msgstr "Grafiikkamodia ei ole valittu" msgid "No input" msgstr "Ei syötettä" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Ongelmia ei löytynyt." @@ -9061,7 +9119,7 @@ msgstr "" "nauhoitus pysyy synkronoituneena." #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9281,7 +9339,7 @@ msgstr "" "funktiokutsuja ja ehdollisia koodireittejä, jotka suoritetaan vain silloin, " "kun tietty toiminto tapahtuu emuloidussa ohjelmistossa." -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Verkko-&ohje" @@ -9289,7 +9347,7 @@ msgstr "Verkko-&ohje" msgid "Only Show Collection" msgstr "Näytä vain kokoelma" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9297,7 +9355,7 @@ msgstr "" "Lisää vain symbolit, jotka alkavat näin:\n" "(Jätä tyhjäksi saadaksesi kaikki symbolit)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9320,14 +9378,18 @@ msgstr "Avaa &kansio" msgid "Open &User Folder" msgstr "Avaa &käyttäjäkansio" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Avaa hakemisto..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Avaa FIFO-loki" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9428,7 +9490,7 @@ msgstr "Muu" msgid "Other Partition (%1)" msgstr "Muu osio (%1):" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Muut tilojen pikanäppäimet" @@ -9445,7 +9507,7 @@ msgstr "Muu peli..." msgid "Output" msgstr "Tulos" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Kuvan uudelleenotanta" @@ -9453,16 +9515,16 @@ msgstr "Kuvan uudelleenotanta" msgid "Output Resampling:" msgstr "Kuvan uudelleenotanta:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Ylikirjoitettu" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Toista nauhoitus..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9491,7 +9553,7 @@ msgstr "PNG-kuvatiedosto (*.png);; Kaikki tiedostot (*)" msgid "PPC Size" msgstr "PPC-koko" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs. isäntäkone" @@ -9504,7 +9566,7 @@ msgstr "Ohjain" msgid "Pads" msgstr "Ohjaimet" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parametrit" @@ -9567,7 +9629,7 @@ msgstr "Keskeytä" msgid "Pause Branch Watch" msgstr "Keskeytä haaravahti" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Keskeytä nauhoituksen loputtua" @@ -9617,7 +9679,7 @@ msgstr "Korkein nopeus ulospäin suuntautuville heilahduksille." msgid "Per-Pixel Lighting" msgstr "Kuvapistekohtainen valaistus" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Tee verkossa järjestelmäpäivitys" @@ -9647,11 +9709,11 @@ msgstr "Fyysinen" msgid "Physical address space" msgstr "Fyysinen osoiteavaruus" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Valitse virheenjäljitysfontti" @@ -9667,8 +9729,8 @@ msgstr "Nyökkäyskulma alas" msgid "Pitch Up" msgstr "Nyökkäyskulma ylös" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Alusta" @@ -9680,7 +9742,7 @@ msgstr "Pelaa" msgid "Play / Record" msgstr "Toista / nauhoita" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Toista nauhoitus" @@ -9779,7 +9841,7 @@ msgstr "" "Mahdollinen desynkronoituminen havaittu: %1 on voinut desynkronoitua " "kehyksessä %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Jälkikäsittelyefekti" @@ -9834,7 +9896,7 @@ msgstr "" msgid "Presets" msgstr "Esiasetukset" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Paina synkronointipainiketta" @@ -9857,9 +9919,9 @@ msgstr "" "

Ei suositeltavissa; käytä vain, jos muut " "vaihtoehdot tuottavat huonoja tuloksia." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Edellinen peliprofiili" @@ -9867,8 +9929,9 @@ msgstr "Edellinen peliprofiili" msgid "Previous Match" msgstr "Edellinen hakutulos" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Edellinen profiili" @@ -9915,13 +9978,13 @@ msgstr "" msgid "Profile" msgstr "Profiili" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Ohjelmalaskuri" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9938,11 +10001,11 @@ msgstr "" msgid "Public" msgstr "Julkinen" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Tyhjennä peliluettelon välimuisti" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Aseta IPL-ROMit User/GC-kansioon" @@ -9969,7 +10032,7 @@ msgstr "DPLII-purkamisen laatu. Ääniviive kasvaa laadun myötä." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Kysymys" @@ -9994,11 +10057,11 @@ msgstr "R-analogi" msgid "READY" msgstr "VALMIS" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO-moduulit" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO:n automaattinen havainta" @@ -10035,13 +10098,13 @@ msgstr "Raaka" msgid "Raw Internal Resolution" msgstr "Raaka sisäinen kuvatarkkuus" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Ko&rvaa käsky" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Luku" @@ -10064,7 +10127,7 @@ msgstr "Vain luku" msgid "Read or Write" msgstr "Luku tai kirjoitus" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Vain luku -tila" @@ -10123,7 +10186,7 @@ msgstr "Punainen vasen" msgid "Red Right" msgstr "Punainen oikea" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10177,8 +10240,8 @@ msgstr "Nykyiset arvot päivitetty." msgid "Refreshing..." msgstr "Päivittyy..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Alue" @@ -10199,7 +10262,8 @@ msgstr "Suhteellinen syöte" msgid "Relative Input Hold" msgstr "Suhteellisen syötteen pito" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -10228,7 +10292,7 @@ msgstr "Poista roskadata (peruuttamaton):" msgid "Remove Tag..." msgstr "Poista tunniste..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Poista tunniste" @@ -10244,8 +10308,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Uudelleennimeä symboli" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10278,7 +10342,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10290,7 +10354,7 @@ msgstr "Nollaa" msgid "Reset All" msgstr "Nollaa kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Nollaa ohittaen paniikkikäsittelijä" @@ -10342,9 +10406,9 @@ msgstr "Uudelleenkäynnistys tarvitaan" msgid "Restore Defaults" msgstr "Palauta oletukset" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Palauta käsky" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10479,21 +10543,21 @@ msgstr "" msgid "Rumble" msgstr "Tärinä" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Jatka &tähän" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Suorita GBA-ytimet omissa säikeissään" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "Suorita kohtaan asti" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Suorita kohtaan asti (ohittaen keskeytyskohdat)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10562,11 +10626,11 @@ msgstr "SSL-konteksti" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Ta&llenna koodi" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Tal&lenna tila" @@ -10578,7 +10642,7 @@ msgstr "Varma" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10593,23 +10657,35 @@ msgid "Save Branch Watch &As..." msgstr "Tallenna haaravahti &nimellä..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" -msgstr "Tallenna haaravahtitiedosto" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Tallennustiedostojen vienti" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Tallenna FIFO-loki" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Tallenna tiedosto" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10620,15 +10696,19 @@ msgstr "Pelin tallennustiedosto" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Pelien tallennustiedostot (*.sav);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Tallennustiedostojen tuonti" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Tallenna tila vanhimpaan" @@ -10636,73 +10716,77 @@ msgstr "Tallenna tila vanhimpaan" msgid "Save Preset" msgstr "Tallenna esiasetukset" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Tallenna nauhoitustiedosto nimellä" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Tallenna tila" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Tallenna tila 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Tallenna tila 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Tallenna tila 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Tallenna tila 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Tallenna tila 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Tallenna tila 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Tallenna tila 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Tallenna tila 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Tallenna tila 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Tallenna tila 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Tallenna tila tiedostoon" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Tallenna tilan vanhimpaan paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Tallenna tila paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Tallenna symbolikartta &nimellä..." @@ -10722,11 +10806,7 @@ msgstr "Tallenna esiasetuksena..." msgid "Save as..." msgstr "Tallenna nimellä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Tallenna yhdistetty ulostulotiedosto nimellä" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10740,19 +10820,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Tallenna ROMin kanssa samaan hakemistoon" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Tallenna karttatiedosto" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Tallenna allekirjoitustiedosto" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Tallenna tila valittuun paikkaan" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Tallenna tila paikkaan %1 - %2" @@ -10788,7 +10860,7 @@ msgstr "Kuvakaappaus" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Haku" @@ -10817,7 +10889,7 @@ msgstr "" "Haku ei ole tällä hetkellä mahdollinen näennäisosoiteavaruudessa. Pelaa " "peliä hetken aikaa ja yritä uudelleen." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Etsi käskyä" @@ -10825,7 +10897,7 @@ msgstr "Etsi käskyä" msgid "Search games..." msgstr "Etsi pelejä..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Etsi käsky" @@ -10863,18 +10935,16 @@ msgstr "Valitse" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" -"Valitse haaravahdin automaattisen tallennuksen tiedosto (jos haluat käyttää " -"käyttäjäkansiota, valitse \"Peruuta\")" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Valitse vedostiedostojen polku" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Valitse vientihakemisto" @@ -10882,18 +10952,22 @@ msgstr "Valitse vientihakemisto" msgid "Select Figure File" msgstr "Valitse hahmotiedosto" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Valitse GBA-BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Valitse GBA-ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Valitse GBA-tallennustiedostojen polku" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Valitse viimeisin tilatallennus" @@ -10902,6 +10976,10 @@ msgstr "Valitse viimeisin tilatallennus" msgid "Select Load Path" msgstr "Valitse latauspolk" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Valitse resurssipakettien polku" @@ -10910,6 +10988,14 @@ msgstr "Valitse resurssipakettien polku" msgid "Select Riivolution XML file" msgstr "Valitse Riivolutionin XML-tiedosto" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Valitse Skylander-kokoelma" @@ -10918,58 +11004,62 @@ msgstr "Valitse Skylander-kokoelma" msgid "Select Skylander File" msgstr "Valitse Skylander-tiedosto" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Valitse paikka %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Valitse tilatallennus" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Valitse tilatallennuksen paikka" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Valitse tilatallennuksen paikka 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Valitse tilatallennuksen paikka 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Valitse tilatallennuksen paikka 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Valitse tilatallennuksen paikka 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Valitse tilatallennuksen paikka 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Valitse tilatallennuksen paikka 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Valitse tilatallennuksen paikka 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Valitse tilatallennuksen paikka 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Valitse tilatallennuksen paikka 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Valitse tilatallennuksen paikka 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Valitse WFS-polkuu" @@ -10987,24 +11077,20 @@ msgstr "Valitse hakemisto" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Valitse tiedosto" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "Valitse kansio, johon synkronoidaan SD-kortin kuva" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Valitse SD-kortin levykuva" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Valitse tiedosto" @@ -11013,19 +11099,15 @@ msgstr "Valitse tiedosto" msgid "Select a game" msgstr "Valitse peli" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Valitse NAND-muistiin asennettava julkaisu" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Valitse e-Reader-kortti" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Valitse RSO-moduulin osoite" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Valitse toistettava nauhoitustiedosto" @@ -11033,23 +11115,6 @@ msgstr "Valitse toistettava nauhoitustiedosto" msgid "Select the Virtual SD Card Root" msgstr "Valitse virtuaalisen SD-kortin juuri" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Valitse avaintiedosto (OTP-/SEEPROM-vedos)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Valitse tallennustiedosto" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Valitse, minne haluat tallentaa muunnetun levykuvan" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Valitse, minne haluat tallentaa muunnetut levykuvat" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Valittu fontti" @@ -11126,7 +11191,7 @@ msgstr "" "

Ellet ole varma, valitse \"Kuvasuhdekorjattu " "sisäinen kuvatarkkuus\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11202,6 +11267,27 @@ msgstr "" "ja valita se, joka on vähiten ongelmallinen.

Ellet " "ole varma, valitse OpenGL." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Lähetä" @@ -11210,6 +11296,15 @@ msgstr "Lähetä" msgid "Sensor Bar Position:" msgstr "Liikkeentunnistimen paikka:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11242,39 +11337,35 @@ msgstr "Aseta &arvo" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Aseta ohjelmalasku" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Aseta oletus-ISO:ksi" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Aseta muistikorttitiedosto korttipaikkaan A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Aseta muistikorttitiedosto korttipaikkaan B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Aseta symbolin &loppuosoite" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Aseta symbolin &koko" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Aseta symbolin loppuosoite" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Aseta symbolin koko (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11291,7 +11382,7 @@ msgstr "Asettaa Wiin järjestelmäkielen." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11305,10 +11396,17 @@ msgstr "" "Asettaa viiveen millisekunneissa. Korkeammat arvot voivat vähentään äänen " "pätkintää. Asetus toimii vain joillain sisäisillä järjestelmillä." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -11361,11 +11459,11 @@ msgstr "Shinkansen-ohjain" msgid "Show % Speed" msgstr "Näytä prosentuaalinen nopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Näytä &loki" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Näytä &työkalupalkki" @@ -11373,15 +11471,15 @@ msgstr "Näytä &työkalupalkki" msgid "Show Active Title in Window Title" msgstr "Näytä aktiivinen julkaisu ikkunan otsikossa" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Näytä kaikki" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Näytä Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Näytä peli Discordissa" @@ -11390,7 +11488,7 @@ msgstr "Näytä peli Discordissa" msgid "Show Disabled Codes First" msgstr "Näytä käytöstä poistetut koodit ensin" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Näytä ELF/DOL" @@ -11403,7 +11501,7 @@ msgstr "Näytä käytössä olevat koodit ensin" msgid "Show FPS" msgstr "Näytä kehysnopeus" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Näytä kehyslaskuri" @@ -11411,15 +11509,15 @@ msgstr "Näytä kehyslaskuri" msgid "Show Frame Times" msgstr "Näytä kehysajat" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Näytä Ranska" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Näytä GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Näytä Saksa" @@ -11427,27 +11525,27 @@ msgstr "Näytä Saksa" msgid "Show Golf Mode Overlay" msgstr "Näytä golf-tilan kerros" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Näytä Infinity-alusta" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Näytä syötteet" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Näytä Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Näytä Japani" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Näytä Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Näytä viivelaskuri" @@ -11455,7 +11553,7 @@ msgstr "Näytä viivelaskuri" msgid "Show Language:" msgstr "Kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Näytä lokin &asetukset" @@ -11467,7 +11565,7 @@ msgstr "Näytä nettipelin viestit" msgid "Show NetPlay Ping" msgstr "Näytä nettipelin vasteaika" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Näytä Alankomaat" @@ -11475,12 +11573,12 @@ msgstr "Näytä Alankomaat" msgid "Show On-Screen Display Messages" msgstr "Näytä ruudulle tulevat näyttöviestit" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Näytä PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Näytä ohjelmalaskuri" @@ -11488,7 +11586,7 @@ msgstr "Näytä ohjelmalaskuri" msgid "Show Performance Graphs" msgstr "Näytä suorituskykykaaviot" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Näytä alustat" @@ -11496,23 +11594,23 @@ msgstr "Näytä alustat" msgid "Show Projection Statistics" msgstr "Näytä projektiotilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Näytä alueet" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Näytä uudelleennauhoituslasksuri" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Näytä Venäjä" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Näytä Skylanders-portaali" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Näytä Espanja" @@ -11524,19 +11622,23 @@ msgstr "Näytä nopeusvärit" msgid "Show Statistics" msgstr "Näytä tilastot" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Näytä järjestelmän kellonaika" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Näytä Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Näytä USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Näytä tuntematon" @@ -11548,27 +11650,27 @@ msgstr "Näytä VBlank-ajat" msgid "Show VPS" msgstr "Näytä VPS-laskuri" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Näytä WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Näytä Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Näytä maailma" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Näytä &muistissa" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Näytä koodissa" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Näytä muistissa" @@ -11585,13 +11687,9 @@ msgstr "Näytä muistissa" msgid "Show in server browser" msgstr "Näytä palvelinselaimessa" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Näytä kohde muistiss&a" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11633,18 +11731,6 @@ msgstr "" "

Ellet ole varma, jätä tämä valitsematta." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11671,6 +11757,18 @@ msgstr "" "ja keskihajonnan.

Ellet ole varma, jätä tämä " "valitsematta." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11716,6 +11814,14 @@ msgstr "" "Näyttää erilaisia hahmonnustilastoja.

Ellet ole " "varma, jätä tämä valitsematta." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Vierekkäin" @@ -11732,7 +11838,7 @@ msgstr "Vaakasuuntaisuus päälle/pois" msgid "Sideways Wii Remote" msgstr "Vaakasuuntainen Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Allekirjoitustietokanta" @@ -11781,7 +11887,7 @@ msgstr "" "Venytyspuskurin koko millisekunteina. Liian pienet arvot voivat aiheuttaa " "äänen pätkintää." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Ohita" @@ -11978,6 +12084,10 @@ msgstr "" msgid "Speed" msgstr "Nopeus" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -12014,11 +12124,11 @@ msgstr "Aloita haaravahti" msgid "Start New Cheat Search" msgstr "Aloita uusi huijauskoodihaku" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Aloita syötteen nauhoitus" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Aloita nauhoittaminen" @@ -12057,39 +12167,39 @@ msgstr "Askella" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Suorita" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Jatka loppuun" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Jätä väliin" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Loppuun jatkaminen onnistui!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Loppuun jatkaminen aikakatkaistiin!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Väliin jättäminen käynnissä..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Suoritus onnistui!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Askellus" @@ -12098,7 +12208,7 @@ msgstr "Askellus" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Stereoskooppinen 3D -tila" @@ -12128,7 +12238,7 @@ msgstr "Ohjaussauva" msgid "Stop" msgstr "Lopeta" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Lopeta syötteen toisto/nauhoitus" @@ -12207,14 +12317,14 @@ msgstr "Tyyli:" msgid "Stylus" msgstr "Osoitinkynä" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Onnistui" @@ -12241,24 +12351,24 @@ msgstr "Tallennustiedostoista %n:n %1:stä vienti onnistui." msgid "Successfully exported save files" msgstr "Tallennustiedostojen vienti onnistui" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Varmenteiden vienti NAND-muistista onnistui" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Tiedoston purku onnistui." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Järjestelmädatan vienti onnistui." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Tallennustiedoston tuonti onnistui." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Julkaisun asentaminen NAND-muistiin onnistui." @@ -12309,7 +12419,7 @@ msgstr "Vaihda voimaa" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12337,17 +12447,21 @@ msgstr "Vaihda B:hen" msgid "Symbol" msgstr "Symboli" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Symbolin (%1) loppuosoite:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Symbolin nimi:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symbolit" @@ -12401,7 +12515,7 @@ msgstr "Tallennustiedostojen synkronointi käynnissä..." msgid "System Language:" msgstr "Järjestelmän kieli:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS-syöte" @@ -12412,9 +12526,9 @@ msgid "TAS Tools" msgstr "TAS-työkalut" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Tunnisteet" @@ -12432,7 +12546,7 @@ msgstr "Häntä" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Ota kuvakaappaus" @@ -12440,7 +12554,7 @@ msgstr "Ota kuvakaappaus" msgid "Target address range is invalid." msgstr "Kohdeosoitealue on virheellinen." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12477,7 +12591,7 @@ msgstr "Tekstuurivälimuistin tarkkuus" msgid "Texture Dumping" msgstr "Tekstuurien vedostaminen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Tekstuurien suodattaminen" @@ -12529,7 +12643,7 @@ msgstr "IPL-tiedosto ei ole tunnettu hyvä vedos. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Masterpiece-osiot puuttuvat." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12537,7 +12651,7 @@ msgstr "" "NAND-muistin korjaus epäonnistui. On suositeltavaa, että teet varmuuskopion " "nykyisestä datasta ja aloitat uudelleen tyhjällä NAND-muistilla." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND-muistin korjaus onnistui." @@ -12721,7 +12835,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Tiedostojärjestelmä on virheellinen, tai sen luku epäonnistui." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12873,7 +12987,7 @@ msgstr "" "Samaa tiedostoa ei voi käyttää useissa paikoissa; se on jo käytössä paikassa " "%1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12914,7 +13028,7 @@ msgstr "Annettu yhteisavaimen indeksi on {0}, kun sen tulisi olla {1}." msgid "The specified file \"{0}\" does not exist" msgstr "Annettua tiedostoa \"{0}\" ei ole olemassa" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12977,7 +13091,7 @@ msgstr "Päivitysosio puuttuu." msgid "The update partition is not at its normal position." msgstr "Päivitysosio ei ole tavallisella paikallaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -13100,7 +13214,7 @@ msgstr "" "Käytä Dolphinin ARM64-versiota saadaksesi paremman kokemuksen." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Tätä ei voi kumota!" @@ -13341,7 +13455,7 @@ msgstr "Säikeet" msgid "Threshold" msgstr "Raja-arvo" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13361,10 +13475,10 @@ msgstr "" msgid "Timed Out" msgstr "Aikakatkaisu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Julkaisu" @@ -13372,25 +13486,29 @@ msgstr "Julkaisu" msgid "To" msgstr "Minne" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Minne:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Koko ruudun tila päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "3D-anaglyfi päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Rinnakkainen 3D päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Päällekkäinen 3D päälle/pois" @@ -13398,28 +13516,28 @@ msgstr "Päällekkäinen 3D päälle/pois" msgid "Toggle All Log Types" msgstr "Kaikki lokityypit päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Kuvasuhteen vaihto" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Keskeytyskohta päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Rajaus päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Muokatut tekstuurit päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB-kopiot päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Sumu päälle/pois" @@ -13431,31 +13549,31 @@ msgstr "Koko ruudun tila päälle/pois" msgid "Toggle Pause" msgstr "Käynnistä/keskeytä" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "SD-kortti päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "EFB-käytön ohitus päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Tekstuurivedostus päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "USB-näppäimistö päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "XFB-kopiot päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Välitön XFB päälle/pois" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Tokenisointi epäonnistui." @@ -13578,7 +13696,7 @@ msgid "Trophy" msgstr "Palkinto" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13608,7 +13726,7 @@ msgstr "USB-laitteiden emulointi" msgid "USB Emulation" msgstr "USB-emulointi" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB-emuloinnin laitteet" @@ -13661,15 +13779,15 @@ msgstr "" "kokonaan pätkinnän ja aiheuttaa häviävän pieniä suorituskykyvaikutuksia, " "mutta tämä riippuu grafiikka-ajurien toiminnasta." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "RSO-moduulin tunnistus epäonnistui" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Yhteys päivityspalvelimeen epäonnistui." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Kopion luominen päivittimestä epäonnistui." @@ -13710,7 +13828,7 @@ msgstr "" msgid "Unable to read file." msgstr "Tiedoston lukeminen epäonnistui." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Päivittimen kopion käyttöoikeuksien asettaminen epäonnistui." @@ -13733,11 +13851,11 @@ msgstr "Pakkaamattomat GC-/Wii-levykuvat (*.iso *.gcm)" msgid "Undead" msgstr "Epäkuolema" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Kumoa tilan palauttaminen" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Kumoa tilan tallentaminen" @@ -13758,7 +13876,7 @@ msgstr "" "version NAND-muistista poistamatta kuitenkaan sen tallennustiedostoa. " "Jatketaanko?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Yhdysvallat" @@ -13860,11 +13978,11 @@ msgstr "Tuntematon(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Tuntematon(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Rajoittamaton" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Poista ROMin lataus" @@ -13872,7 +13990,12 @@ msgstr "Poista ROMin lataus" msgid "Unlock Cursor" msgstr "Poista hiiren osoittimen lukitus" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13972,7 +14095,7 @@ msgstr "Pystysuuntaisuus päälle/pois" msgid "Upright Wii Remote" msgstr "Pystysuuntainen Wii Remote" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Käyttötilastojen raportointi" @@ -14084,7 +14207,7 @@ msgstr "Käyttäjänimi" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -14166,7 +14289,7 @@ msgstr "VBI-ohitus" msgid "Value" msgstr "Arvo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Arvo jäljittyy nykyiseen käskyyn" @@ -14254,22 +14377,22 @@ msgstr "Virtuaaliset kolot" msgid "Virtual address space" msgstr "Näennäisosoiteavaruus" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Äänenvoimakkuus" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Äänenvoimakkuuden pienennys" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Mykistys päälle/pois" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Äänenvoimakkuuden suurennus" @@ -14277,7 +14400,7 @@ msgstr "Äänenvoimakkuuden suurennus" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD-tiedostot (*.wad)" @@ -14409,7 +14532,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varoitus" @@ -14565,7 +14688,7 @@ msgstr "Hyväksyttyjen laitteiden lista USB-läpipäästöön" msgid "Widescreen Hack" msgstr "Laajakuvaniksi" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14635,7 +14758,7 @@ msgstr "Wii ja Wii Remote" msgid "Wii data is not public yet" msgstr "Wii-data ei ole vielä julkista" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-tallennustiedostot (*.bin);;Kaikki tiedostot (*)" @@ -14670,11 +14793,11 @@ msgstr "Maailma" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Kirjoitus" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Kirjoita JIT-lohkojen lokivedos" @@ -14839,7 +14962,7 @@ msgstr "" "\"Phantasy Star Online Episode I & II\" varten. Ellet ole varma, palaa " "takaisin ja määritä \"Vakio-ohjain\"." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "Käytössä on tämän julkaisukanavan uusin versio." @@ -14926,7 +15049,7 @@ msgstr "" "Haluatko lopettaa nyt korjataksesi ongelman?\n" "Jos valitset \"Ei\", ääni voi olla pätkivää." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/fr.po b/Languages/po/fr.po index e77c292fcc..b0465c8210 100644 --- a/Languages/po/fr.po +++ b/Languages/po/fr.po @@ -16,11 +16,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Pascal , 2013-2024\n" -"Language-Team: French (http://app.transifex.com/delroth/dolphin-emu/language/" -"fr/)\n" +"Language-Team: French (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -184,7 +184,7 @@ msgstr "%1 révision(s) après %2" msgid "%1 doesn't support this feature on your system." msgstr "%1 ne prend pas en charge cette fonctionnalité sur votre système." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 ne prend pas en charge cette fonctionnalité." @@ -206,7 +206,7 @@ msgstr "%1 s'est connecté" msgid "%1 has left" msgstr "%1 s'est déconnecté" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 a débloqué %2/%3 succès, ce qui vaut %4/%5 points" @@ -218,7 +218,7 @@ msgstr "%1 n'est pas une ROM valide" msgid "%1 is now golfing" msgstr "%1 est en mode golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 joue à %2" @@ -232,7 +232,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 points" @@ -252,22 +252,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Vitesse normale)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "La valeur de %1 est changée" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "La valeur de %1 est atteinte" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "La valeur de %1 est utilisée" @@ -275,13 +275,17 @@ msgstr "La valeur de %1 est utilisée" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1 : %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -295,7 +299,7 @@ msgstr "%1[%2] : %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2] : %3/%4 Mio" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -308,7 +312,7 @@ msgstr "%1x la réso. native (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Natif (%2x%3) pour %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -352,10 +356,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&À propos" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "&Ajouter une Fonction" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&&Ajouter un point d'arrêt mémoire" @@ -365,23 +373,19 @@ msgstr "&&Ajouter un point d'arrêt mémoire" msgid "&Add New Code..." msgstr "&Ajouter un nouveau code..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Ajouter une fonction" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Ajouter..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Assembleur" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Paramètres &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "Mise à jour &automatique :" @@ -390,14 +394,14 @@ msgid "&Borderless Window" msgstr "Fenêtre sans &bordures" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" -msgstr "" +msgid "&Break on Hit" +msgstr "Arrêt &si atteint" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Points d'arrêt" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "Suivi des &bugs" @@ -409,11 +413,11 @@ msgstr "&Annuler" msgid "&Cheats Manager" msgstr "Gestionnaire de &cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "Rechercher des &mises à jour..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Effacer les symboles" @@ -421,7 +425,7 @@ msgstr "&Effacer les symboles" msgid "&Clone..." msgstr "&Cloner..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Code" @@ -429,18 +433,15 @@ msgstr "&Code" msgid "&Connected" msgstr "&Connecté" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Paramètres des &manettes" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Copier l'adresse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Copier l'adresse" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Créer..." @@ -476,7 +477,7 @@ msgstr "&Éditer..." msgid "&Eject Disc" msgstr "&Éjecter le disque" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Émulation" @@ -501,36 +502,36 @@ msgstr "&Exporter comme .gci..." msgid "&File" msgstr "&Fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Police..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Avancement d'image" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "Réglages de la &Vue libre" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Générer les symboles depuis" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Dépôt &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Paramètres &graphiques" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Aide" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Paramètres des &Raccouris clavier" @@ -554,15 +555,15 @@ msgstr "&Importer..." msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Insérer blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "&Insérer BLR" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "Fusion &inter-images" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -574,11 +575,11 @@ msgstr "&Langue :" msgid "&Load Branch Watch" msgstr "&Charger la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Charger l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Charger une Carte de Symboles" @@ -592,19 +593,19 @@ msgstr "&Charger le fichier à l'adresse actuelle" msgid "&Lock Watches" msgstr "&Verrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "Verrouiller l'emplacement des &Widgets" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" -msgstr "" +msgid "&Log on Hit" +msgstr "&Journaliser si atteint" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "Fil&m" @@ -612,7 +613,7 @@ msgstr "Fil&m" msgid "&Mute" msgstr "&Couper le son" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Réseau" @@ -625,19 +626,19 @@ msgstr "&Non" msgid "&Open..." msgstr "&Ouvrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Options" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Patcher les fonctions HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Démarrer" @@ -645,7 +646,7 @@ msgstr "&Démarrer" msgid "&Properties" msgstr "&Propriétés" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "Mode &Lecture seule" @@ -653,7 +654,7 @@ msgstr "Mode &Lecture seule" msgid "&Refresh List" msgstr "&Actualiser la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registres" @@ -666,12 +667,12 @@ msgstr "&Retirer" msgid "&Remove Code" msgstr "&Retirer le Code" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Renommer symbole" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "&Renommer le symbole" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reset" @@ -683,7 +684,7 @@ msgstr "Gestionnaire de Packs de &Ressources" msgid "&Save Branch Watch" msgstr "&Sauvegarder la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Sauvegarder la carte des symboles" @@ -695,11 +696,11 @@ msgstr "&Lire la ou les carte(s) e-Reader..." msgid "&Skylanders Portal" msgstr "&Portail Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Limite de vitesse :" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Stop" @@ -707,7 +708,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Thème :" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Threads" @@ -729,17 +730,17 @@ msgstr "&Décharger la ROM" msgid "&Unlock Watches" msgstr "&Déverrouiller les observations" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Affichage" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Regarder" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "Site &web" @@ -751,11 +752,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Oui" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' introuvable, aucun nom de symbole généré" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' introuvable, recherche de fonctions communes à la place" @@ -775,7 +776,7 @@ msgstr "(Système)" msgid "(host)" msgstr "(hôte)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(aucun)" @@ -799,7 +800,7 @@ msgstr ", Virgule" msgid "- Subtract" msgstr "- Soustraire" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -877,7 +878,7 @@ msgstr "16/9" msgid "16x Anisotropic" msgstr "Anisotropique 16x" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -889,7 +890,7 @@ msgstr "2 Gio" msgid "256 MiB" msgstr "256 Mio" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -925,19 +926,19 @@ msgid "32-bit Unsigned Integer" msgstr "Entier 32 bits non signé" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Profondeur 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -961,7 +962,7 @@ msgstr "4/3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1059,7 +1060,7 @@ msgid "If unsure, leave this unchecked." msgstr "" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1098,8 +1099,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Supérieur à" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Une session NetPlay est en cours !" @@ -1124,7 +1125,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Un disque est déjà sur le point d'être inséré." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1139,7 +1140,7 @@ msgstr "" "Une sauvegarde d'état ne peut être chargée sans avoir spécifié quel jeu " "démarrer." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1244,7 +1245,7 @@ msgid "Achievement Settings" msgstr "Paramètres des succès" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Succès" @@ -1338,7 +1339,7 @@ msgstr "Action Replay : Code Normal {0} : Sous-type non valide {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Activer le Chat NetPlay" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Actif" @@ -1389,11 +1390,11 @@ msgstr "Ajouter un nouveau périphérique USB" msgid "Add Shortcut to Desktop" msgstr "Ajouter un raccourci sur le Bureau" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Ajouter un point d'arrêt" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Ajouter un point d'arrêt à la mémoire" @@ -1427,13 +1428,13 @@ msgstr "Ajouter..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adresse" @@ -1452,7 +1453,7 @@ msgstr "Espace d'adresse par état de CPU" msgid "Address:" msgstr "Adresse :" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1538,7 +1539,7 @@ msgstr "Avancé" msgid "Advanced Settings" msgstr "Réglages avancés" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1618,7 +1619,7 @@ msgstr "Tout Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1626,7 +1627,7 @@ msgid "All Files" msgstr "Tous les fichiers" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Tous les fichiers (*)" @@ -1635,7 +1636,7 @@ msgstr "Tous les fichiers (*)" msgid "All Float" msgstr "Tout Flottant" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tous les fichiers GC/Wii" @@ -1644,8 +1645,8 @@ msgstr "Tous les fichiers GC/Wii" msgid "All Hexadecimal" msgstr "Tout Hexadécimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tous les états sauvegardés (*.sav *.s##);; Tous les fichiers (*)" @@ -1669,11 +1670,11 @@ msgstr "Les codes de tous les joueurs ont été synchronisés." msgid "All players' saves synchronized." msgstr "Les sauvegardes de tous les joueurs ont été synchronisées." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Autoriser des réglages pour région différente" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Autoriser l'envoi des statistiques d'utilisation" @@ -1733,7 +1734,7 @@ msgstr "Angle" msgid "Angular velocity to ignore and remap." msgstr "Vélocité angulaire à ignorer et remapper." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1745,19 +1746,19 @@ msgstr "Anti-Aliasing :" msgid "Any Region" msgstr "Toutes régions" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Ajouter la signature à" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "Ajouter une signature à" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Ajouter à un fichier de signature &existant..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "A&ppliquer un fichier de signature" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1774,8 +1775,8 @@ msgstr "Date de l'Apploader :" msgid "Apply" msgstr "Appliquer" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "Appliquer un fichier de signature" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1786,7 +1787,7 @@ msgstr "Détection de mipmap arbitraire" msgid "Are you sure that you want to delete '%1'?" msgstr "Êtes-vous sûr de vouloir supprimer \"%1\" ?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?" @@ -1823,9 +1824,9 @@ msgstr "Format d'écran :" msgid "Assemble" msgstr "Assembler" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Assembler l'instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "Instruction d'assemblage" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1887,7 +1888,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiple de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "Mise à jour automatique" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Paramètres de mise à jour automatique" @@ -1911,7 +1916,7 @@ msgstr "Ajuster auto. la taille de la fenêtre" msgid "Auto-Hide" msgstr "Cacher automatiquement" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Détecter automatiquement les modules RSO ?" @@ -1928,6 +1933,25 @@ msgstr "" "

Dans le doute, décochez cette case." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" +"Change automatiquement le disque du jeu lorsqu'un jeu avec deux disques le " +"demande. Cette fonctionnalité requiert à ce que le jeu soit démarré d'une de " +"ces manières :
- Depuis la liste de jeux, avec les deux disques présents " +"dans la liste.
- En faisant Fichier > Ouvrir ou via l'interface de ligne " +"de commande, avec les chemins vers les deux disques fournis.
- En " +"démarrant le fichier M3U via Fichier > Ouvrir ou l'interface de ligne de " +"commande.

Dans le doute, décochez cette case." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Mettre à jour automatiquement les valeurs actuelles" @@ -1939,7 +1963,7 @@ msgid "Auxiliary" msgstr "Auxiliaire" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "o" @@ -2025,10 +2049,10 @@ msgstr "Mauvais offset fourni." msgid "Bad value provided." msgstr "Mauvaise valeur fournie." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Bannière" @@ -2056,7 +2080,7 @@ msgstr "Priorité de base" msgid "Basic" msgstr "Paramètres généraux" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Paramètres de base" @@ -2120,9 +2144,9 @@ msgstr "" "\n" "Veuillez réessayer avec un personnage différent." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Taille des blocs" @@ -2160,16 +2184,16 @@ msgstr "" "Le mode pour passer outre le Bluetooth est activé, mais Dolphin a été " "compilé sans libusb. Ce mode ne peut donc pas être utilisé." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Démarrer sur Pause" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" "Fichier de sauvegarde BootMii de la NAND (*.bin);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fichier de clés BootMii (*.bin);;Tous les fichiers (*)" @@ -2320,30 +2344,30 @@ msgstr "Branche vers Registre de liens (LR sauvegardé)" msgid "Branch: %1" msgstr "Branche : %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Branches" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Arrêt" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" -msgstr "" +msgid "Break &and Log on Hit" +msgstr "Arrêter &et Journaliser si atteint" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Point d'arrêt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Point d'arrêt rencontré ! Sortie abandonnée." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Points d'arrêt" @@ -2442,7 +2466,7 @@ msgstr "Par : %1" msgid "C Stick" msgstr "Stick C" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "&Créer un Fichier Signature..." @@ -2481,7 +2505,7 @@ msgstr "" msgid "Calculate" msgstr "Calculer" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2552,8 +2576,8 @@ msgstr "Impossible d'éditer les méchants pour ce trophée !" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Impossible de trouver la Wiimote par la gestion de connexion {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Impossible de démarrer une session NetPlay pendant qu'un jeu est en cours " @@ -2561,7 +2585,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2615,7 +2639,7 @@ msgstr "Impossible de générer un code AR pour cette adresse." msgid "Cannot refresh without results." msgstr "Impossible de rafraîchir lorsqu'il n'y a pas de résultat." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "Impossible d'attribuer un chemin vide pour le dossier GCI." @@ -2663,7 +2687,7 @@ msgstr "&Changer de disque..." msgid "Change Disc" msgstr "Changer de disque" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Changer automatiquement les disques" @@ -2676,6 +2700,9 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"Change l'apparence et la couleur des boutons de Dolphin." +"

Dans le doute, sélectionnez Clean." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" @@ -2737,7 +2764,7 @@ msgstr "Rechercher un cheat" msgid "Cheats Manager" msgstr "Gestionnaire de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Vérifier la NAND..." @@ -2749,7 +2776,7 @@ msgstr "Rechercher en arrière-plan les changements dans la liste des jeux" msgid "Check for updates" msgstr "Rechercher des mises à jour" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2769,30 +2796,30 @@ msgstr "Chine" msgid "Choose" msgstr "Choisissez" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "Choisir le dossier de destination de l'extraction" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 +msgid "Choose GCI Base Folder" +msgstr "Choisissez le dossier racine du GCI" + +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "Choisir le fichier d'entrée prioritaire." + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "Choisir le fichier d'entrée secondaire." + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" msgstr "Choisir un fichier à ouvrir" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" +msgid "Choose a File to Open or Create" msgstr "Choisissez un fichier à ouvrir ou créer" -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Choisir le fichier d'entrée prioritaire." - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Choisir le fichier d'entrée secondaire." - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Choisissez le dossier racine du GCI" - -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Choisir le dossier de destination de l'extraction" - #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 msgid "Clamping of rotation about the yaw axis." @@ -2810,7 +2837,7 @@ msgstr "Manette classique" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2820,7 +2847,7 @@ msgstr "Effacer" msgid "Clear Branch Watch" msgstr "Effacer la surveillance de Branche" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Effacer le cache" @@ -2841,7 +2868,7 @@ msgstr "&Cloner et modifier le Code..." msgid "Close" msgstr "Fermer" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Co&nfiguration" @@ -2865,7 +2892,7 @@ msgstr "Code :" msgid "Codes received!" msgstr "Codes reçus !" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Correction de couleur" @@ -2885,7 +2912,7 @@ msgstr "Espace de couleur" msgid "Column &Visibility" msgstr "&Visibilité de la colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Combiner &deux fichiers de signature..." @@ -2926,9 +2953,9 @@ msgstr "Compiler les Shaders avant le démarrage" msgid "Compiling Shaders" msgstr "Compilation des Shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Compression" @@ -2953,7 +2980,7 @@ msgstr "Cond." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Condition" @@ -3027,6 +3054,61 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" +"Conditions :\n" +"Définit une expression qui est évaluée lorsqu'un point d'arrêt est atteint. " +"Si l'expression fausse ou 0, le point d'arrêt est ignoré jusqu'à ce qu'il " +"soit à nouveau atteint. Les déclarations doivent être séparées d'une " +"virgule. Seule la dernière déclaration sera utilisée pour déterminer ce " +"qu'il faut faire.\n" +"\n" +"Registres qui peuvent être référencés :\n" +"GPRs : r0..r31\n" +"FPRs : f0..f31\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"Other : pc, msr\n" +"\n" +"Fonctions :\n" +"Définir un registre : r1 = 8\n" +"Casts: s8(0xff). Disponible : s8, u8, s16, u16, s32, u32\n" +"Callstack : callstack(0x80123456), callstack(\"anim\")\n" +"Comparer le texte: streq(r3, \"abc\"). Chaque paramètre peut être une " +"adresse ou des constantes de texte.\n" +"Lire en mémoire : read_u32(0x80000000). Disponible : u8, s8, u16, s16, u32, " +"s32, f32, f64\n" +"Écrire en mémoire : write_u32(r3, 0x80000000). Disponible : u8, u16, u32, " +"f32, f64\n" +"*l'écriture est actuellement toujours déclenchée\n" +"\n" +"Opérations :\n" +"Unary: -u, !u, ~u\n" +"Math: * / + -, power: **, remainder: %, shift: <<, >>\n" +"Comparer : <, <=, >, >=, ==, !=, &&, ||\n" +"Bitwise: &, |, ^\n" +"\n" +"Exemples :\n" +"r4 == 1\n" +"f0 == 1.0 && f2 < 10.0\n" +"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" +"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" +"Écrire et pause: r4 = 8, 1\n" +"Écrire et continuer : f3 = f1 + f2, 0\n" +"La condition doit toujours être à la fin\n" +"\n" +"Les valeurs doivent toujours être utilisées dans callstack() ou streq() et " +"\"quoted\". Ne pas assigner une valeur à une variable.\n" +"Toutes les variables seront affichées dans le journal de la mémoire " +"d'interface, si elle est atteinte ou un résultat NaN. Pour vérifier s'il y a " +"un problème, assignez une variable à votre équation pour qu'elle puisse être " +"affichée.\n" +"\n" +"Note: Toutes les valeurs sont converties en interne en Doubles par les " +"calculs. Il leur est possible de sortir des limites ou devenir un NaN. Un " +"avertissement sera affiché si un NaN est retourné, et la variable qui est " +"devenue un NaN sera journalisée." #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -3060,9 +3142,9 @@ msgstr "Configurer la sortie" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmer" @@ -3075,7 +3157,7 @@ msgstr "Confirmez le changement de moteur" msgid "Confirm on Stop" msgstr "Confirmer l'arrêt de l'émulation" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3086,7 +3168,7 @@ msgstr "Confirmation" msgid "Connect" msgstr "Connecter" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Connecter la Balance Board" @@ -3094,27 +3176,27 @@ msgstr "Connecter la Balance Board" msgid "Connect USB Keyboard" msgstr "Connecter le clavier USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Connecter la Wiimote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Connecter la Wiimote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Connecter la Wiimote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Connecter la Wiimote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Connecter la Wiimote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Connecter les Wiimotes" @@ -3159,19 +3241,19 @@ msgstr "Stick de contrôle" msgid "Controller Profile" msgstr "Config de manette" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Profil de la manette 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Profil de la manette 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Profil de la manette 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Profil de la manette 4" @@ -3183,6 +3265,16 @@ msgstr "Paramètres des manettes" msgid "Controllers" msgstr "Manettes" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3196,7 +3288,7 @@ msgstr "" "effet.

Dans le doute, laissez la valeur sur 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3208,7 +3300,7 @@ msgstr "" "l'impression que les objets sortent de l'écran, une valeur basse est plus " "confortable." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3223,7 +3315,7 @@ msgstr "" "

Dans le doute, sélectionnez Résolution native " -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3258,7 +3350,7 @@ msgstr "" "Contrôle le fait d'utiliser une émulation de haut ou bas niveau du DSP. Par " "défaut réglé sur True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Convergence" @@ -3364,18 +3456,22 @@ msgstr "" msgid "Copy" msgstr "Copier" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "Copier la &fonction" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Copier l'&hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "Copier l'&Hex" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copier l'adresse" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "Copier la &ligne de code" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Échec de la copie" @@ -3384,18 +3480,14 @@ msgstr "Échec de la copie" msgid "Copy Hex" msgstr "Copier l'Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "Copier l'adresse &cible" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copier la valeur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Copier la &ligne de code" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Copier l'adresse &cible" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Copier vers A" @@ -3522,8 +3614,8 @@ msgstr "Fichier {0} non reconnu" msgid "Could not save your changes!" msgstr "Impossible d'enregistrer vos changements !" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Impossible de démarrer le processus de la mise à jour : {0}" @@ -3635,7 +3727,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Région actuelle" @@ -3830,24 +3922,24 @@ msgstr "Qualité de décodage :" msgid "Decrease" msgstr "Réduction" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Réduire la convergence" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Réduire la profondeur" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Réduire" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Baisser" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Décrémenter l'emplacement de l'état sélectionné" @@ -3909,8 +4001,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Supprimer" @@ -3928,7 +4020,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:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Profondeur" @@ -3943,9 +4035,9 @@ msgstr "Profondeur :" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Description" @@ -3994,7 +4086,7 @@ msgstr "Détaché" msgid "Detect" msgstr "Détecter" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Détection des modules RSO" @@ -4002,7 +4094,7 @@ msgstr "Détection des modules RSO" msgid "Deterministic dual core:" msgstr "Double cœur déterministe :" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (plusieurs fois par jour)" @@ -4060,15 +4152,15 @@ msgstr "Désactiver le filtre de copie" msgid "Disable EFB VRAM Copies" msgstr "Désactiver les copies EFB dans la VRAM" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Désactiver la limite de vitesse" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Désactiver Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Désactiver Fastmem Arena" @@ -4076,11 +4168,11 @@ msgstr "Désactiver Fastmem Arena" msgid "Disable Fog" msgstr "Désactiver le brouillard" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Désactiver le cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Désactiver la carte des grands points d'entrée" @@ -4109,7 +4201,7 @@ msgstr "" "la RAM. Empêche tout upscaling.

Dans le doute, " "décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4129,6 +4221,9 @@ msgid "" "Disables your screensaver while running a game.

If " "unsure, leave this checked." msgstr "" +"Désactive votre économiseur d'écran lorsque vous jouez à un jeu." +"

Dans le doute, cochez cette case." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4138,9 +4233,10 @@ msgstr "Disque" msgid "Discard" msgstr "Fermer" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" -msgstr "" +msgstr "Réglages de l'affichage" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4174,15 +4270,15 @@ msgstr "Distance" msgid "Distance of travel from neutral position." msgstr "Distance parcourue depuis la position neutre." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Voulez-vous effacer la liste des noms de symboles ?" @@ -4192,7 +4288,7 @@ 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:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Voulez-vous arrêter l'émulation en cours ?" @@ -4213,9 +4309,9 @@ msgstr "Journal FIFO de Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Préréglage de mod de jeu pour Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Fichier de carte pour Dolphin (*.map)" @@ -4227,8 +4323,8 @@ msgstr "Fichier CSV de signature de Dolphin" msgid "Dolphin Signature File" msgstr "Fichier de signature de Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Films TAS Dolphin (*.dtm)" @@ -4287,14 +4383,6 @@ 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:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin utilisera ceci pour les titres dont la région ne peut être " -"automatiquement déterminée." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Le système de Dolphin pour les cheats est actuellement désactivé." @@ -4304,7 +4392,7 @@ msgstr "Le système de Dolphin pour les cheats est actuellement désactivé." msgid "Domain" msgstr "Domaine" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Ne pas mettre à jour" @@ -4363,13 +4451,20 @@ msgstr "%1 codes ont été téléchargés. (%2 ajoutés)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" +"Télécharge les jaquettes complètes des jeux depuis GameTDB.com pour être " +"affichées dans la vue de grille de jeux. Si cette option est décochée, la " +"liste de jeux affiche la bannière récupérée des fichiers de sauvegarde des " +"jeux, et si le jeu n'a aucune sauvegarde une bannière générique sera " +"affichée.

La vue en liste utilisera toujours la bannière de " +"sauvegarde des jeux.

Dans le doute, cochez cette " +"case." #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 @@ -4410,7 +4505,7 @@ msgstr "Dumper &FakeVMEM" msgid "Dump &MRAM" msgstr "Dumper la &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Enregistrer le son" @@ -4422,7 +4517,7 @@ msgstr "Copier les textures de base" msgid "Dump EFB Target" msgstr "Copier l'EFB cible" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Enregistrer les images" @@ -4556,16 +4651,16 @@ msgstr "Asie de l'Est" msgid "Edit Breakpoint" msgstr "Modifier le point d'arrêt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" -msgstr "" +msgstr "Modifier Conditionnel" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" -msgstr "" +msgstr "Modifier l'expression conditionnelle" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Modifier..." @@ -4589,7 +4684,7 @@ msgstr "Effective" msgid "Effective priority" msgstr "Priorité effective" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "Eio" @@ -4657,7 +4752,7 @@ msgstr "" "Actuel : MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF : MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Vitesse de l'émulation" @@ -4677,7 +4772,7 @@ msgstr "Activer les couches de validation d'API" msgid "Enable Audio Stretching" msgstr "Activer l'étirement du son" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Activer les Cheats" @@ -4695,14 +4790,14 @@ msgstr "Activer l'interface de débogage" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "Activer la Présence sur Discord" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activer le double cœur" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" msgstr "Activer le double cœur (plus rapide)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 @@ -4763,7 +4858,7 @@ msgstr "" "
Notez que si vous désactivez le mode Hardcore pendant qu'un jeu est en " "cours, vous devrez quitter le jeu pour réactiver ce mode." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Activer le profilage de bloc de JIT" @@ -4799,13 +4894,13 @@ msgstr "Activer les données du haut-parleur" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "Activer le mode Spectateur" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Activer les succès non officiels" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Activer l'envoi des statistiques d'utilisation" @@ -4861,6 +4956,11 @@ msgid "" "speedrun criteria or simply for fun.

Setting takes effect on next " "game load." msgstr "" +"Active le déblocage des succès dans le mode Encore.

Ce mode ré-active " +"les succès que le joueur a déjà débloqués sur le site pour que le joueur " +"soit informé si il remplit à nouveau les conditions de déblocage, utile pour " +"les critères personnalisés de speedrun ou juste pour le fun.

Ce " +"réglage prendra effet lors du prochain lancement d'un jeu." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 msgid "" @@ -4871,6 +4971,12 @@ msgid "" "RetroAchievements session will not be created.

If this is off at game " "launch, it can be toggled freely while the game is running." msgstr "" +"Active le déblocage des succès en mode Spectateur.

Dans ce mode, les " +"succès et tableaux des vainqueurs seront traités et affichés à l'écran, mais " +"ne seront pas envoyés au serveur.

Si c'est activé au démarrage du " +"jeu, il ne sera désactivé qu'à la l'arrêt du jeu, car une session " +"RetroAchievements ne sera pas créée.

Si désactivé au lancement d'un " +"jeu, il peut être activé librement pendant le jeu." #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" @@ -4879,6 +4985,11 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" +"Active le déblocage des succès non officiels ainsi que les officiels." +"

Les succès non officiels peuvent être optionnels ou des succès non " +"terminés qui n'ont pas été reconnus comme officiels par RetroAchievements et " +"peuvent être utiles pour tester ou pour le fun.

Ce réglage prendra " +"effet lors du prochain lancement d'un jeu." #: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" @@ -4896,7 +5007,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4954,7 +5065,7 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5022,6 +5133,20 @@ msgstr "" "désormais disparues telles que la Météo ou les Chaînes Nintendo.\n" "Lisez les Termes de service sur : https://www.wiilink24.com/fr/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" +"Active l'utilisation de la RA et les cheat codes Gecko qui permettent de " +"modifier le comportement des jeux. Ces codes peuvent être configurés avec le " +"Gestionnaire de cheats dans le menu Outils.

Ce réglage ne peut pas " +"être changé lorsque l'émulation est en cours.

Dans " +"le doute, décochez cette case." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -5062,9 +5187,9 @@ msgstr "" "\n" "Abandon de l'importation." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" -msgstr "" +msgstr "Addr Fin" #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -5115,14 +5240,14 @@ msgstr "" "Entrez l'adresse IP et le port de l'instance tapserver à laquelle vous " "voulez vous connecter." -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5161,26 +5286,26 @@ msgstr "Entrer l'adresse du module RSO :" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5197,9 +5322,9 @@ msgstr "Entrer l'adresse du module RSO :" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Erreur" @@ -5232,7 +5357,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Erreur lors de l'obtention de la liste des sessions : %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" "Une erreur est survenue lors de l'ouverture de certains packs de texture" @@ -5333,7 +5458,7 @@ msgstr "" msgid "Euphoria" msgstr "Euphorie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europe" @@ -5346,15 +5471,15 @@ msgstr "Ubershaders exclusifs" msgid "Exit" msgstr "Quitter" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "+ ou fermeture de parenthèse attendue" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Arguments attendus :" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "Arguments attendus : {0}" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Fermeture de parenthèse attendu." @@ -5366,19 +5491,19 @@ msgstr "Virgule attendue." msgid "Expected end of expression." msgstr "Fin d'expression attendue." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Nom d'entrée attendu" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Ouverture de parenthèse attendue" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Début d'expression attendu" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Nom de variable attendu." @@ -5386,7 +5511,7 @@ msgstr "Nom de variable attendu." msgid "Experimental" msgstr "Expérimental" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exporter toutes les sauvegardes Wii" @@ -5397,11 +5522,11 @@ msgstr "Exporter toutes les sauvegardes Wii" msgid "Export Failed" msgstr "L'exportation a échoué" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exporter l'enregistrement..." -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exporter l'enregistrement..." @@ -5429,7 +5554,7 @@ msgstr "Exporter comme .&gcs..." msgid "Export as .&sav..." msgstr "Exporter comme .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5457,35 +5582,35 @@ msgstr "Externe" msgid "External Frame Buffer (XFB)" msgstr "Buffer externe d'image (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Extraire les certificats de la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Extraire l'intégralité du disque..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: 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:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extraire le fichier..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Extraire les fichiers..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: 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:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Extraction de tous les fichiers..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Extraction du dossier..." @@ -5515,7 +5640,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Impossible d'ajouter cela au fichier de signature '%1'" @@ -5589,7 +5714,7 @@ msgstr "" "Impossible de créer la carte mémoire pour NetPlay. Vérifier vos permissions " "en écriture." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Impossible de supprimer le fichier sélectionné." @@ -5618,15 +5743,15 @@ msgstr "Échec de l'exportation de %n sur %1 fichier(s) de sauvegarde." msgid "Failed to export the following save files:" msgstr "Échec de l'exportation des fichiers de sauvegarde suivants :" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Impossible d'extraire les certificats depuis la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Impossible d'extraire le fichier." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Impossible d'extraire les données du système." @@ -5648,14 +5773,14 @@ msgstr "Impossible de trouver un ou plusieurs symboles D3D" msgid "Failed to import \"%1\"." msgstr "Impossible d'importer \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5663,7 +5788,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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5674,7 +5799,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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Impossible d'initialiser la base" @@ -5697,11 +5822,11 @@ msgid "Failed to install pack: %1" msgstr "Impossible d'installer le pack %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Impossible d'installer ce titre dans la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5709,8 +5834,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:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Impossible de charger le module RSO à %1" @@ -5722,7 +5847,7 @@ msgstr "Impossible de charger d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Impossible de charger dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Impossible d'ouvrir le fichier de carte '%1'" @@ -5763,7 +5888,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "Impossible d'ouvrir \"{0}\" en écriture." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Impossible d'ouvrir \"%1\"" @@ -5805,7 +5930,7 @@ msgstr "" msgid "Failed to open file." msgstr "Impossible d'ouvrir le fichier." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Impossible d'accéder au serveur" @@ -5896,6 +6021,10 @@ msgid "" "\n" "The file was too small." msgstr "" +"Impossible de lire le fichier Infinity :\n" +"%1\n" +"\n" +"Le fichier était trop petit." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5971,19 +6100,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Echec de l'enregistrement du journal FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 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:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Impossible de sauvegarder le fichier de signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 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:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Impossible de sauvegarder vers le fichier de signature '%1'" @@ -6043,8 +6172,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Échec" @@ -6052,11 +6181,12 @@ msgstr "Échec" msgid "Fair Input Delay" msgstr "Délai d'entrée des commandes égalisé" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Région de remplacement" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Région de remplacement :" @@ -6094,9 +6224,9 @@ msgstr "Type de jouet" msgid "File Details" msgstr "Détails du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Format du fichier" @@ -6108,20 +6238,20 @@ msgstr "Format du fichier :" msgid "File Info" msgstr "Infos du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nom du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Chemin du fichier" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Taille du fichier" @@ -6226,8 +6356,8 @@ msgstr "Drapeaux" msgid "Float" msgstr "Flottant" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "Suivre la &branche" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -6300,7 +6430,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:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6316,7 +6446,7 @@ msgstr "" "jeu sont préférables à ceci, si disponibles.

Dans " "le doute, décochez cette case." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6334,6 +6464,8 @@ msgid "" "Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked." msgstr "" +"Force la fenêtre de rendu à rester au-dessus des autres fenêtres et " +"applications.

Dans le doute, décochez cette case." #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" @@ -6364,20 +6496,20 @@ msgstr "%n adresse(s) trouvée(s)." msgid "Frame %1" msgstr "Image %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avancer d'une image" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Réduire la vitesse d'avancement de l'image" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Accélérer la vitesse d'avancement de l'image" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Réinitialiser la vitesse d'avancement de l'image" @@ -6438,11 +6570,11 @@ msgstr "" msgid "FreeLook" msgstr "Vue libre" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Vue libre" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Activer la vue libre" @@ -6476,13 +6608,14 @@ msgstr "De :" msgid "FullScr" msgstr "Plein écran" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Fonction" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" -msgstr "" +msgstr "Réglages de fonctionnalité" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6500,7 +6633,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "Dossier de la carte GBA :" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "Cœur GBA" @@ -6516,11 +6649,11 @@ msgstr "Réglages GBA" msgid "GBA TAS Input %1" msgstr "Entrée TAS %1 de GBA" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "Volume GBA" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "Taille de la fenêtre GBA" @@ -6661,11 +6794,11 @@ msgstr "Jeu" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartes Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6701,8 +6834,8 @@ msgstr "Gamma du jeu" msgid "Game Gamma:" msgstr "Gamma du jeu :" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID du jeu" @@ -6833,7 +6966,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Codes Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6853,14 +6987,24 @@ msgid "Generate Action Replay Code(s)" msgstr "Générer un/des code(s) Action Replay" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Générer une nouvelle identité pour les statistiques" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" +"Générer un nouvel identifiant anonyme pour les statistiques de votre " +"utilisation. Cela aura pour effet dissocier vos futures statistiques des " +"anciennes." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Code(s) AR généré(s)." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Nom des symboles générés à partir de '%1'" @@ -6878,7 +7022,7 @@ msgstr "Allemagne" msgid "GetDeviceList failed: {0}" msgstr "Échec de GetDeviceList : {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "Gio" @@ -6911,7 +7055,7 @@ msgstr "Graphismes" msgid "Graphics Mods" msgstr "Mods graphiques" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Options graphiques" @@ -6920,7 +7064,7 @@ msgstr "Options graphiques" msgid "Graphics mods are currently disabled." msgstr "Les mods graphiques sont actuellement désactivés." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6947,7 +7091,7 @@ msgstr "Vert Gauche" msgid "Green Right" msgstr "Vert Droite" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Grille" @@ -7029,7 +7173,7 @@ msgstr "Cacher" msgid "Hide &Controls" msgstr "Cacher les &contrôles" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Tout masquer" @@ -7047,12 +7191,15 @@ msgstr "Masquer les GBA distantes" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" +"Cache le curseur de la souris lorsqu'il est dans la fenêtre de rendu et que " +"celle-ci a le focus.

Dans le doute, sélectionnez " +""Si mouvement"." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Haute" @@ -7121,7 +7268,7 @@ msgstr "Nom de l'hôte" msgid "Hotkey Settings" msgstr "Paramètres des Raccouris clavier" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7248,11 +7395,11 @@ msgstr "" "Pratique pour les jeux à tour de rôle qui ont des contrôles demandant de la " "précision, comme le golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Génération d'une identité" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7308,6 +7455,24 @@ msgstr "" "de fifologs, mais peut être utile pour tester.

Dans " "le doute, décochez cette case." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" +"Si l'option est cochée, Dolphin va collecter des données sur ses " +"performances, utilisation des fonctionnalités, jeux émulés, configuration, " +"ainsi que des données sur votre matériel et système d'exploitation." +"

Aucune donnée personnelle n'est collectée. Ces données nous aident à " +"comprendre comment les personnes et les jeux émulés utilisent Dolphin afin " +"de prioriser nos efforts. Cela nous aide également à identifier des " +"configurations rares qui provoquent des bugs, problèmes de performances ou " +"de stabilité." + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7381,7 +7546,7 @@ msgstr "" "abaissant légèrement les performances.

Dans le " "doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Importer une sauvegarde BootMii de la NAND..." @@ -7396,15 +7561,15 @@ msgstr "L'importation a échoué" msgid "Import Save File(s)" msgstr "Importer le(s) fichier(s) de sauvegarde" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importer une sauvegarde Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importation de la sauvegarde de la NAND..." -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7421,6 +7586,12 @@ msgid "" "notified.

If unsure, leave this checked." msgstr "" +"Si une erreur arrive, Dolphin va se mettre en pause pour vous informer de " +"l'erreur et vous présenter les choix sur la manière de procéder. Lorsque " +"cette option est désactivée, Dolphin va \"ignorer\" toutes les erreurs. " +"L'émulation ne sera pas suspendue et vous n'en sera pas averti(e)." +"

Dans le doute, cochez cette case." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" @@ -7468,24 +7639,24 @@ msgstr "Valeur de temps de jeu incorrecte !" msgid "Increase" msgstr "Augmentation" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Augmenter la convergence" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Augmenter la profondeur" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Accélérer" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Augmenter" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Incrémenter l'emplacement de l'état sélectionné" @@ -7537,8 +7708,8 @@ msgstr "Information" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Information" @@ -7552,10 +7723,10 @@ msgstr "Injecter" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Entrée" @@ -7574,13 +7745,10 @@ msgid "Insert &BLR" msgstr "Insérer &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Insérer &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Insérer &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Insérer une carte SD" @@ -7598,7 +7766,7 @@ msgstr "Partition d'installation (%1)" msgid "Install Update" msgstr "Installer la mise à jour" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Installer un WAD..." @@ -7606,8 +7774,9 @@ msgstr "Installer un WAD..." msgid "Install to the NAND" msgstr "Installer dans la NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7621,7 +7790,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Point d'arrêt instruction" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instruction :" @@ -7630,7 +7799,7 @@ msgstr "Instruction :" msgid "Instruction: %1" msgstr "Instruction : %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7700,8 +7869,8 @@ msgstr "" "Erreur interne LZO - impossible d'analyser le texte de la version " "décompressée ({0} / {1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Résolution interne" @@ -7718,7 +7887,7 @@ msgstr "Erreur interne lors de la génération du code AR." msgid "Interpreter (slowest)" msgstr "Interpréteur (TRÈS lent)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7726,7 +7895,7 @@ msgstr "Interpreter Core" msgid "Invalid Expression." msgstr "Expression non valide." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "JSON invalide reçu du service d'auto-update : {0}" @@ -7734,7 +7903,7 @@ msgstr "JSON invalide reçu du service d'auto-update : {0}" msgid "Invalid Mixed Code" msgstr "Code mixte non valide" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Pack %1 non valide indiqué : %2" @@ -7743,7 +7912,7 @@ msgstr "Pack %1 non valide indiqué : %2" msgid "Invalid Player ID" msgstr "ID joueur non valide" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Adresse du module RSO non valide : %1" @@ -7825,11 +7994,11 @@ msgstr "Italie" msgid "Item" msgstr "Objet" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7837,47 +8006,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "Blocs JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7889,14 +8058,15 @@ msgstr "Recompilateur JIT pour ARM64 (recommandé)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilateur JIT pour x86-64 (recommandé)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "Cache de registre JIT désactivé" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7907,11 +8077,11 @@ msgstr "" "ne devrait jamais arriver. Veuillez transmettre cet incident au suivi de " "bugs. Dolphin va maintenant quitter." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT n'est pas actif" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japon" @@ -7935,7 +8105,7 @@ msgstr "" "Kaos est le seul méchant pour ce trophée et est toujours débloqué. Il n'est " "donc pas utile d'éditer quoi que ce soit !" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Continuer l'exécution" @@ -7970,7 +8140,7 @@ msgstr "Clavier" msgid "Keys" msgstr "Touches" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "Kio" @@ -7978,7 +8148,7 @@ msgstr "Kio" msgid "Kick Player" msgstr "Sortir le joueur" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Corée" @@ -8014,7 +8184,7 @@ msgstr "Étiquette" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Langue" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -8117,6 +8287,19 @@ msgstr "" "Clic gauche/droit pour configurer la sortie.\n" "Clic sur molette pour effacer." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" +"Vous permet d'utiliser des langues et d'autres réglages liés à la région " +"auxquels le jeu peut ne pas être conçu. Peut provoquer divers plantages et " +"bugs.

Ce réglage ne peut être modifié lorsque l'émulation est en " +"cours.

Dans le doute, décochez cette case." + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8150,11 +8333,11 @@ msgstr "Lumière" msgid "Limit Chunked Upload Speed:" msgstr "Limite de vitesse d'envoi de parcelles de données :" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Colonnes de la liste" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Liste" @@ -8164,17 +8347,17 @@ msgstr "Écoute" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Charger" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Charger un fichier de carte de &défauts..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Charger un &Autre fichier de carte..." @@ -8183,7 +8366,7 @@ msgid "Load Branch Watch &From..." msgstr "Charger la surveillance de Branche &depuis..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "Charger l'instantané de surveillance de Branche" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -8194,7 +8377,7 @@ msgstr "Charger textures personnalisées" msgid "Load File" msgstr "Charger le fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Charger le Menu Principal de la GameCube" @@ -8202,16 +8385,21 @@ msgstr "Charger le Menu Principal de la GameCube" msgid "Load Host's Save Data Only" msgstr "Charger uniquement les données de sauvegarde de l'hôte." -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Charger le dernier état" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "Charger un fichier de carte" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Charger le dossier :" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Charger une ROM" @@ -8219,104 +8407,104 @@ msgstr "Charger une ROM" msgid "Load Slot" msgstr "Charger le slot" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Charger un état" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Dernier état 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Dernier état 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Dernier état 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Dernier état 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Dernier état 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Dernier état 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Dernier état 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Dernier état 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Dernier état 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Dernier état 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Charger l'état du Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Charger l'état du Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Charger l'état du Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Charger l'état du Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Charger l'état du Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Charger l'état du Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Charger l'état du Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Charger l'état du Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Charger l'état du Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Charger l'état du Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Charger un état depuis un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Charge l'état depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Charger un état depuis un slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Charger le Menu Système Wii %1" @@ -8324,20 +8512,15 @@ msgstr "Charger le Menu Système Wii %1" msgid "Load and Write Host's Save Data" msgstr "Charger et enregistrer les données de sauvegarde chez l'hôte." -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Charger depuis l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Chargement depuis le Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Charger un fichier de carte" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Charger le menu %1 du système vWii" @@ -8345,7 +8528,7 @@ msgstr "Charger le menu %1 du système vWii" msgid "Load..." msgstr "Charger..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Symboles chargés à partir de '%1'" @@ -8377,20 +8560,24 @@ msgstr "Local" msgid "Lock Mouse Cursor" msgstr "Verrouiller le curseur de la souris" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Verrouillé" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" +"Verrouille le curseur de la souris dans le Widget de rendu tant qu'il a le " +"focus. Vous pouvez définir un raccourci clavier pour le débloquer." +"

Dans le doute, décochez cette case." #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Journal" @@ -8400,10 +8587,11 @@ msgid "Log Configuration" msgstr "Configuration de la journalisation" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Connexion" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -8446,7 +8634,7 @@ msgstr "Boucle" msgid "Lost connection to NetPlay server..." msgstr "Connexion au serveur NetPlay perdue !" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Faible" @@ -8511,9 +8699,9 @@ msgstr "Vérifiez que la valeur de temps de jeu est valide !" msgid "Make sure there is a Skylander in slot %1!" msgstr "Vérifiez qu'il y a un Skylander dans le slot %1 !" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Concepteur" @@ -8522,7 +8710,7 @@ msgstr "Concepteur" msgid "Maker:" msgstr "Concepteur :" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8535,7 +8723,7 @@ msgstr "" "

\n" "Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Gestion de NAND" @@ -8574,7 +8762,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Ceci peut ralentir le Menu Wii et quelques jeux." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Moyen" @@ -8590,7 +8778,7 @@ msgstr "Point d'arrêt mémoire" msgid "Memory Card" msgstr "Carte mémoire" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Gestionnaire de cartes mémoires" @@ -8622,7 +8810,7 @@ msgstr "" "MemoryCard : l'écriture a été appelée avec une mauvaise adresse de " "destination ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8634,7 +8822,7 @@ msgstr "" "irréversible, il est donc recommandé de conserver des sauvegardes de chacune " "des NAND. Êtes-vous sûr de vouloir continuer ?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "Mio" @@ -8718,8 +8906,8 @@ msgstr "Modifier le slot" msgid "Modifying Skylander: %1" msgstr "Modification de Skylander : %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Modules trouvés : %1" @@ -8761,7 +8949,7 @@ msgstr "Visibilité du curseur de la souris" msgid "Move" msgstr "Déplacement" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" @@ -8787,10 +8975,10 @@ msgstr "Multiplicateur" msgid "N&o to All" msgstr "Non à &tout" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Vérification de la NAND" @@ -8799,8 +8987,8 @@ msgstr "Vérification de la NAND" msgid "NKit Warning" msgstr "Avertissement pour NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8809,7 +8997,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8832,8 +9020,8 @@ msgstr "" "

Dans le doute, laissez la valeur à 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8846,11 +9034,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Nom" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Nom du nouveau tag :" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Nom du tag à retirer :" @@ -8937,7 +9125,7 @@ msgid "Never Auto-Update" msgstr "Ne jamais mettre à jour" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nouveau" @@ -8962,7 +9150,7 @@ msgstr "Nouvelle recherche" msgid "New Tag..." msgstr "Nouveau tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Nouvelle identité générée." @@ -8970,12 +9158,13 @@ msgstr "Nouvelle identité générée." msgid "New instruction:" msgstr "Nouvelle instruction :" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Nouveau 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 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Profil de jeu suivant" @@ -8983,8 +9172,9 @@ msgstr "Profil de jeu suivant" msgid "Next Match" msgstr "Rechercher le suivant" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Profil suivant" @@ -9071,7 +9261,7 @@ msgstr "Aucun mod de graphique sélectionné" msgid "No input" msgstr "Aucune entrée" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Aucun souci n'a été détecté" @@ -9118,7 +9308,7 @@ msgstr "" "pour empêcher une désynchronisation du film" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9340,7 +9530,7 @@ msgstr "" "fonction et les chemins de code conditionnel qui ne sont empruntés que " "lorsqu'une action est faite dans le logiciel émulé." -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Documentation en ligne" @@ -9348,7 +9538,7 @@ msgstr "&Documentation en ligne" msgid "Only Show Collection" msgstr "Afficher uniquement la Collection" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9356,7 +9546,7 @@ msgstr "" "Uniquement ajouter les symboles avec le préfixe :\n" "(Vide pour tous les symboles) " -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9379,13 +9569,17 @@ msgstr "Ouvrir l'emplacement du fichier" msgid "Open &User Folder" msgstr "Ouvrir le dossier &utilisateur" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "Ouvrir les succès" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Ouvrir le dossier..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "Charger le journal FIFO" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -9487,7 +9681,7 @@ msgstr "Autres" msgid "Other Partition (%1)" msgstr "Autre partition (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Autres raccourcis clavier" @@ -9504,7 +9698,7 @@ msgstr "Autres jeux..." msgid "Output" msgstr "Sortie" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Rééchantillonnage de la sortie" @@ -9512,16 +9706,16 @@ msgstr "Rééchantillonnage de la sortie" msgid "Output Resampling:" msgstr "Rééchantillonnage de la sortie :" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Écrasé" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Jouer l'enregistrement..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9550,7 +9744,7 @@ msgstr "Fichier d'image PNG (*.png);; Tous le fichiers (*)" msgid "PPC Size" msgstr "Taille PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Hôte" @@ -9563,7 +9757,7 @@ msgstr "Manette" msgid "Pads" msgstr "Manettes" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Paramètres" @@ -9626,7 +9820,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "Mettre en pause la surveillance de la branche" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pause à la fin du Film" @@ -9655,6 +9849,9 @@ msgid "" "Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked." msgstr "" +"Met le jeu en pause dès lors que la fenêtre de rendu n'a plus le focus." +"

Dans le doute, décochez cette case." #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9675,7 +9872,7 @@ msgstr "Vitesse maximale des mouvements de va-et-vient." msgid "Per-Pixel Lighting" msgstr "Eclairage par pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Effectuer une mise à jour en ligne" @@ -9705,11 +9902,11 @@ msgstr "Physique" msgid "Physical address space" msgstr "Espace d'adresse physique" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "Pio" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Choisissez une police pour le débogage" @@ -9725,8 +9922,8 @@ msgstr "Baisser" msgid "Pitch Up" msgstr "Monter" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plateforme" @@ -9738,7 +9935,7 @@ msgstr "Démarrer" msgid "Play / Record" msgstr "Lecture / Enregistrement" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Jouer l'enregistrement..." @@ -9839,7 +10036,7 @@ msgstr "" "Possible désynchronisation détectée : %1 peut s'être désynchronisé à l'image " "%2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Effet de Post-processing" @@ -9853,11 +10050,11 @@ msgstr "Configuration du post-traitement des Shaders" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" -msgstr "" +msgstr "Allumer avec le Disque 3" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" -msgstr "" +msgstr "Allumer avec le Disque 2" #. i18n: VS is short for vertex shaders. #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 @@ -9892,7 +10089,7 @@ msgstr "" msgid "Presets" msgstr "Pré-réglages" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Appuyer sur le bouton Sync" @@ -9915,9 +10112,9 @@ msgstr "" "dans les effets.

Non recommandé, à n'utiliser que " "si les autres options donnent de mauvais résultats." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Profil de jeu précédent" @@ -9925,8 +10122,9 @@ msgstr "Profil de jeu précédent" msgid "Previous Match" msgstr "Rechercher le précédent" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Profil précédent" @@ -9976,13 +10174,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9994,16 +10192,19 @@ msgid "" "Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked." msgstr "" +"Vous demande confirmation d'arrêter l'émulation lorsque vous appuyez sur " +"Stop.

Dans le doute, cochez cette case." #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "Publique" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Purger le cache de la liste de jeu" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Placez les ROM d'IPL dans User/GC/." @@ -10032,7 +10233,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Question" @@ -10057,11 +10258,11 @@ msgstr "R Analog." msgid "READY" msgstr "PRÊT" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "Modules RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "Détection automatique du RSO" @@ -10098,13 +10299,13 @@ msgstr "Raw (brut)" msgid "Raw Internal Resolution" msgstr "Résolution interne brute" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "Rem&placer l'instruction" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Lire" @@ -10127,7 +10328,7 @@ msgstr "Uniquement lu" msgid "Read or Write" msgstr "Lu ou écrit" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Mode Lecture seule" @@ -10186,7 +10387,7 @@ msgstr "Rouge Gauche" msgid "Red Right" msgstr "Rouge Droite" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10241,8 +10442,8 @@ msgstr "Valeurs actuelles actualisées." msgid "Refreshing..." msgstr "Actualisation..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Région" @@ -10263,9 +10464,10 @@ msgstr "Entrée relative" msgid "Relative Input Hold" msgstr "Maintien de l'entrée relative" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" -msgstr "" +msgstr "Versions officielles (tous les quelques mois)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -10292,7 +10494,7 @@ msgstr "Retirer les données inutiles (irréversible) :" msgid "Remove Tag..." msgstr "Supprimer le tag..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Supprimer le tag" @@ -10308,8 +10510,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Renommer le symbole" +msgid "Rename Symbol" +msgstr "&Renommer le symbole" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10340,9 +10542,12 @@ msgid "" "Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked." msgstr "" +"Requiert que la fenêtre de rendu ait le focus pour que les touches de " +"raccourci fonctionnent.

Dans le doute, cochez cette " +"case." #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10354,7 +10559,7 @@ msgstr "Reset" msgid "Reset All" msgstr "Tout réinitialiser" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Réinitialiser Ignorer le gestionnaire de panique" @@ -10406,8 +10611,8 @@ msgstr "Redémarrage requis" msgid "Restore Defaults" msgstr "Restaurer les valeurs par défaut" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "Restaurer l'instruction" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -10534,6 +10739,36 @@ msgid "" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" +"Vous pouvez faire un clic gauche sur les lignes du tableau sur les colonnes " +"d'origine, de destination et de symbole pour afficher l'adresse associée " +"dans la vue Code. Un clic droit sur la ou les lignes sélectionnées fera " +"apparaître un menu contextuel.\n" +"\n" +"Si vous cliquez avec le bouton droit sur les colonnes d'origine, de " +"destination ou de symbole, une action de copie de l'adresse associée vers le " +"presse-papiers sera disponible, et une action pour définir le point d'arrêt " +"aux adresses associées sera disponible. Notez que, pour les colonnes de " +"symbole d'origine / destination, ces actions ne seront activées que si " +"chaque ligne dans la sélection contient un symbole.\n" +"\n" +"Si la colonne d'origine d'une sélection de ligne est cliquée avec le bouton " +"droit, une action pour remplacer l'instruction de la Branche à/aux " +"origine(s) avec une instruction NOP (No Operation - Aucune Opération) sera " +"disponible.\n" +"\n" +"Si la colonne de destination d'une sélection de ligne est cliquée avec le " +"bouton droit, une action pour remplacer l'instruction à/aux destination(s) " +"avec une instruction BLR (Branch to Link Register - Branche vers Registre de " +"Liens) sera disponible, mais uniquement si l'instruction de la branche à " +"chaque origine met à jour le registre de lien.\n" +"\n" +"Si la colonne de symbole d'origine ou de destination d'une sélection de " +"ligne est cliquée avec le bouton droit, une action pour remplacer le(s) " +"instruction(s) au début du symbole avec une instruction BLR sera disponible, " +"mais seulement si chaque symbole d'origine ou de destination est trouvé.\n" +"\n" +"Tous les menus contextuels ont l'action de supprimer le(s) lignes " +"sélectionnée(s) depuis les candidates." #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10542,20 +10777,20 @@ msgstr "" msgid "Rumble" msgstr "Vibreur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "Exécu&ter jusqu'ici" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Exécuter les cœurs de GBA sur des threads dédiés" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "Exécuter jusqu'à" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "Exécuter jusqu'à (ignorer les points d'arrêts)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -10625,11 +10860,11 @@ msgstr "Contexte SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Sau&vegarder le code" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Sau&vegarder l'état" @@ -10641,7 +10876,7 @@ msgstr "Sûr " #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10656,22 +10891,34 @@ msgid "Save Branch Watch &As..." msgstr "Sauvegarder la surveillance de Branche &sous..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" msgstr "Sauvegarder l'instantané de surveillance de Branche" +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "Sauvegarder le fichier de sortie combinée sous" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "Sauvegarder l'image convertie" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Exportation de la sauvegarde" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "Enregistrer le journal FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "Sauvegarder le fichier sous" #. i18n: Noun (i.e. the data saved by the game) @@ -10683,15 +10930,19 @@ msgstr "Sauvegarde du jeu" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Fichiers de sauvegarde de jeu (*.sav);;Tous les fichiers (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Importation de la sauvegarde" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "Sauvegarder le fichier de carte" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Sauvegarder l'ancien état" @@ -10699,73 +10950,77 @@ msgstr "Sauvegarder l'ancien état" msgid "Save Preset" msgstr "Enregistrer le préréglage" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Sauvegarder le fichier d'enregistrement sous" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "Sauvegarder le fichier de signature" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Sauvegarder l'état" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Sauvegarder l'état vers le Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Sauvegarder l'état vers le Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Sauvegarder l'état vers le Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Sauvegarder l'état vers le Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Sauvegarder l'état vers le Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Sauvegarder l'état vers le Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Sauvegarder l'état vers le Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Sauvegarder l'état vers le Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Sauvegarder l'état vers le Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Sauvegarder l'état vers le Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Sauvegarder l'état dans un fichier" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Sauvegarder l'état dans le slot le plus ancien" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Sauvegarder l'état dans l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Sauvegarder l'état dans le slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Sauvegarder la carte des symboles &sous..." @@ -10785,11 +11040,7 @@ msgstr "Enregistrer sous le préréglage..." msgid "Save as..." msgstr "Enregistrer sous..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Sauvegarder le fichier de sortie combinée sous" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10803,19 +11054,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Placer la sauvegarde dans le même dossier que la ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Sauvegarder le fichier de carte" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Sauvegarder le fichier de signature" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Sauvegarder vers l'emplacement sélectionné" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Sauvegarder dans le slot %1 - %2" @@ -10853,7 +11096,7 @@ msgstr "Capt écran" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Rechercher" @@ -10882,7 +11125,7 @@ msgstr "" "La recherche n'est pour l'instant pas possible dans l'espace d'adresse " "virtuelle. Exécutez le jeu pendant un moment et essayez à nouveau." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Rechercher une instruction" @@ -10890,7 +11133,7 @@ msgstr "Rechercher une instruction" msgid "Search games..." msgstr "Rechercher des jeux..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Rechercher une instruction" @@ -10927,7 +11170,7 @@ msgstr "Sélectionner" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" "Sélectionner un fichier de sauvegarde automatique d'instantané de " @@ -10938,7 +11181,7 @@ msgid "Select Dump Path" msgstr "Sélectionner le dossier pour le dump :" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Sélectionner le dossier d'exportation" @@ -10946,18 +11189,22 @@ msgstr "Sélectionner le dossier d'exportation" msgid "Select Figure File" msgstr "Sélectionner le fichier de Figurine" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Sélectionner le BIOS de la GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Sélectionner la ROM GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Sélectionner le dossier des sauvegardes GBA" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "Sélectionner le fichier des clés (dump OTP/SEEPROM)" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Sélectionner le dernier état" @@ -10966,6 +11213,10 @@ msgstr "Sélectionner le dernier état" msgid "Select Load Path" msgstr "Sélectionner le dossier à charger" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "Sélectionner une sauvegarde de NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Sélectionner le dossier des Packs de Ressources" @@ -10974,6 +11225,14 @@ msgstr "Sélectionner le dossier des Packs de Ressources" msgid "Select Riivolution XML file" msgstr "Sélectionner le fichier XML Riivolution" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "Sélectionner une image de carte SD" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "Sélectionner un fichier de sauvegarde" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Sélectionner la collection Skylander" @@ -10982,58 +11241,62 @@ msgstr "Sélectionner la collection Skylander" msgid "Select Skylander File" msgstr "Sélectionnez un fichier Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Sélectionner le slot %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Sélectionner l'état" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Sélectionner l'emplacement de l'état" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Emplacement 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Emplacement 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Emplacement 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Emplacement 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Emplacement 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Emplacement 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Emplacement 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Emplacement 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Emplacement 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Emplacement 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "Sélectionner un titre à installer dans la NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Sélectionner le chemin de WFS" @@ -11051,24 +11314,20 @@ msgstr "Sélectionner un dossier" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Sélectionner un fichier" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "Sélectionnez un dossier à synchroniser avec l'image de la carte SD" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Sélectionner un Jeu" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Sélectionner une image de carte SD" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Sélectionner un fichier" @@ -11077,19 +11336,15 @@ msgstr "Sélectionner un fichier" msgid "Select a game" msgstr "Sélectionner un jeu" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Sélectionner un titre à installer dans la NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Sélectionner les cartes e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Sélectionner l'adresse du module RSO :" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Sélectionnez le fichier d'enregistrement à lire" @@ -11097,23 +11352,6 @@ msgstr "Sélectionnez le fichier d'enregistrement à lire" msgid "Select the Virtual SD Card Root" msgstr "Sélectionner le dossier racine de la carte SD virtuelle" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Sélectionner le fichier des clés (dump OTP/SEEPROM)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Sélectionner le fichier à enregistrer" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Sélectionner le dossier où sera enregistrée l'image convertie" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Sélectionner le dossier où seront enregistrées les images converties" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Police sélectionnée" @@ -11191,7 +11429,7 @@ msgstr "" "

Dans le doute, utilisez \"Résolution interne " "corrigée par le rapport hauteur/largeur." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11268,6 +11506,46 @@ msgstr "" "convient le mieux.

Dans le doute, sélectionnez " "OpenGL." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" +"Sélectionne le type de mise à jour que Dolphin va chercher au démarrage. Si " +"une mise à jour est disponible, Dolphin affichera la liste des changements " +"depuis votre version actuelle et vous demandera si vous souhaitez mettre à " +"jour.

Le type Dev permet d'avoir la dernière version de Dolphin, il y " +"en a souvent plusieurs par jour. Sélectionnez ce type si vous souhaitez " +"avoir les dernières fonctionnalités et corrections.

Le type Releases " +"et mis à jour tous les quelques mois. Voici pourquoi vous devriez " +"l'utiliser :
- Ces versions font l'objet de davantage de tests.
- " +"NetPlay requiert que tous les joueurs aient la même version de Dolphin, il y " +"aura plus de joueurs qui ont la version Releases.
- Si vous utilisez " +"régulièrement le système de sauvegarde d'état de Dolphin, une compatibilité " +"entre les différentes versions n'est pas garantie. Dans ce cas, assurez-vous " +"de faire une sauvegarde dans le jeu avant de faire une mise à jour (faites " +"une sauvegarde de la même manière que vous le feriez sur une GameCube ou une " +"Wii), puis chargez-la après avoir mis à jour Dolphin et avant de faire une " +"nouvelle sauvegarde d'état.

Sélectionner \"Ne pas mettre à jour\" " +"empêchera Dolphin de vérifier s'il existe des mises à jour." +"

Dans le doute, sélectionnez Releases." + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Envoyer" @@ -11276,6 +11554,21 @@ msgstr "Envoyer" msgid "Sensor Bar Position:" msgstr "Position de la Sensor Bar :" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" +"Sépare le travail d'émulation du CPU et du GPU dans des threads séparés. " +"Réduit la charge d'un thread en répartissant les charges lourdes de Dolphin " +"sur deux coeurs, ce qui améliore habituellement les performances. Cependant, " +"cela peut provoquer des pépins et des plantages.

Ce réglage ne peut " +"être modifié lorsque l'émulation est en cours.

Dans " +"le doute, cochez cette case." + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11306,41 +11599,37 @@ msgstr "Définir &Valeur" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 msgid "Set Brea&kpoint" -msgstr "" +msgstr "Définir un &point d'arrêt" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "Sélectionner un fichier de carte mémoire pour le Slot A" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "Sélectionner un fichier de carte mémoire pour le Slot B" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Définir PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "Définir l'adresse de &fin du symbole" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "Définir la taille du &symbole" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "Définir l'adresse de &fin du symbole" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Définir comme l'ISO par &défaut" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Sélectionner un fichier de carte mémoire pour le Slot A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Sélectionner un fichier de carte mémoire pour le Slot B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Définir l'adresse de &fin du symbole" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Définir la taille du &symbole" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Définir l'adresse de fin du symbole" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Entrer la taille du symbole (%1) :" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11357,11 +11646,15 @@ msgstr "Définit la langue du système de la Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." msgstr "" +"Définit la langue utilisée dans l'interface utilisateur de Dolphin." +"

Le changement ne sera effectif qu'après le redémarrage de Dolphin." +"

Dans le doute, sélectionnez <Langue du " +"système>." #: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" @@ -11371,12 +11664,26 @@ msgstr "" "Définit la latence en millisecondes. Des valeurs élevées peuvent réduire le " "craquement du son. Pour certains moteurs uniquement." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" +"Définit la région qui doit être utilisée pour les titres dont la région ne " +"peut être automatiquement détectée.

Ce réglage ne peut être changé " +"pendant que l'émulation est en cours." + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" +"Définit le style de l'interface utilisateur de Dolphin. Tous les styles " +"personnalisés que vous aurez chargés seront présentés ici, vous permettant " +"d'en changer.

Dans le doute, sélectionnez (Système)." +"" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" @@ -11428,11 +11735,11 @@ msgstr "Manette Shinkansen" msgid "Show % Speed" msgstr "Afficher le % de vitesse" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Afficher le &journal" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Afficher la barre d'&outils" @@ -11440,15 +11747,15 @@ msgstr "Afficher la barre d'&outils" msgid "Show Active Title in Window Title" msgstr "Affiche le titre en cours dans le nom de la fenêtre" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Tout afficher" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Afficher Australie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Afficher le jeu en cours sur Discord" @@ -11457,7 +11764,7 @@ msgstr "Afficher le jeu en cours sur Discord" msgid "Show Disabled Codes First" msgstr "Afficher d'abord les codes désactivés" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Afficher les ELF/DOL" @@ -11470,7 +11777,7 @@ msgstr "Afficher d'abord les codes activés" msgid "Show FPS" msgstr "Afficher le nombre de FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Afficher le compteur d'images" @@ -11478,15 +11785,15 @@ msgstr "Afficher le compteur d'images" msgid "Show Frame Times" msgstr "Afficher le temps de rendu par image" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Afficher France" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Afficher GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Afficher Allemagne" @@ -11494,27 +11801,27 @@ msgstr "Afficher Allemagne" msgid "Show Golf Mode Overlay" msgstr "Afficher le Mode golf en surimpression" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Afficher la Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Afficher les entrées du contrôleur" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Afficher Italie" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Afficher JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Afficher Corée" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Afficher le compteur de lags" @@ -11522,7 +11829,7 @@ msgstr "Afficher le compteur de lags" msgid "Show Language:" msgstr "Afficher en :" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Afficher la config. de journalisation" @@ -11534,7 +11841,7 @@ msgstr "Afficher les messages NetPlay" msgid "Show NetPlay Ping" msgstr "Afficher le ping du NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Afficher Pays-bas" @@ -11542,12 +11849,12 @@ msgstr "Afficher Pays-bas" msgid "Show On-Screen Display Messages" msgstr "Afficher les messages informatifs" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Afficher PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Afficher PC" @@ -11555,7 +11862,7 @@ msgstr "Afficher PC" msgid "Show Performance Graphs" msgstr "Afficher les graphiques de performance" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Afficher les plateformes" @@ -11563,23 +11870,23 @@ msgstr "Afficher les plateformes" msgid "Show Projection Statistics" msgstr "Afficher les statistiques de projection" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Afficher les régions" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Afficher le compteur de réenregistrements" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Afficher Russie" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Afficher le Portail Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Afficher Espagne" @@ -11591,19 +11898,23 @@ msgstr "Afficher les couleurs selon la vitesse" msgid "Show Statistics" msgstr "Afficher les statistiques" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Afficher l'heure du système" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Afficher Taïwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "Afficher la cible dans la &mémoire" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Afficher USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Afficher les inconnus" @@ -11615,27 +11926,27 @@ msgstr "Afficher les durées de VBlank" msgid "Show VPS" msgstr "Afficher les VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Afficher les WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Afficher Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Afficher Monde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Afficher dans la &mémoire" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "Afficher dans la mémoire" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Afficher dans le code" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Afficher dans la mémoire" @@ -11652,17 +11963,18 @@ msgstr "Afficher dans la mémoire" msgid "Show in server browser" msgstr "Afficher dans le navigateur de serveurs" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Afficher la &mémoire cible" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" msgstr "" +"Affiche l'interface utilisateur de déboggage de Dolphin. Cela vous permet de " +"voir et modifier le code du jeu et le contenu de la mémoire, définir des " +"points d'arrêt, examiner les requêtes réseau, et plus encore." +"

Dans le doute, décochez cette case." #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" @@ -11691,6 +12003,9 @@ msgid "" "disappear after several seconds.

If unsure, leave " "this checked." msgstr "" +"Affiche des messages en surimpression de la fenêtre de rendu. Ces messages " +"disparaissent au bout de quelques secondes.

Dans le " +"doute, cochez cette case." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format @@ -11702,23 +12017,14 @@ msgstr "" "

Dans le doute, décochez cette case." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." "

If unsure, leave this checked." msgstr "" +"Affiche le titre du jeu en cours dans la barre de titre de la fenêtre de " +"rendu.

Dans le doute, cochez cette case." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" @@ -11740,6 +12046,23 @@ msgstr "" "standard.

Dans le doute, décochez cette case." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" +"Affiche le curseur de la souris en permanence.

Dans " +"le doute, sélectionnez "Si mouvement"." + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" +"Affiche brièvement le curseur de la souris lorsqu'il a été déplacé, puis le " +"masque.

Dans le doute, sélectionnez ce mode." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11785,6 +12108,18 @@ msgstr "" "Affiche diverses statistiques de rendu.

Dans le " "doute, décochez cette case." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" +"Affiche le jeu en cours et le temps de votre session de jeu dans votre " +"statut Discord.

Ce réglage ne peut être changé lorsque l'émulation " +"est en cours.

Dans le doute, cochez cette case." + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Côte-à-côte" @@ -11801,7 +12136,7 @@ msgstr "Utiliser à l'horizontale" msgid "Sideways Wii Remote" msgstr "Wiimote à l'horizontale" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Base de données de Signatures" @@ -11850,7 +12185,7 @@ msgstr "" "Taille du tampon d'étirement en millisecondes. De faibles valeurs " "provoqueront un craquement du son." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Sauter" @@ -11913,7 +12248,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;Tous les fichiers (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -12056,6 +12391,10 @@ msgstr "" msgid "Speed" msgstr "Vitesse" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "Limite de vitesse" + #. 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:262 @@ -12092,11 +12431,11 @@ msgstr "Démarrer la surveillance de la Branche" msgid "Start New Cheat Search" msgstr "Démarrer une nouvelle recherche de cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Démarrer l'enregistrement de l'entrée" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Commencer l'enregistrement" @@ -12135,39 +12474,39 @@ msgstr "Pas à pas" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Step Into" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Step Out" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Step Over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Sortie avec succès !" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Temps écoulé pour la sortie !" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Saut en cours..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Pas à pas réussi !" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Pas à pas" @@ -12176,7 +12515,7 @@ msgstr "Pas à pas" msgid "Stereo" msgstr "Stéréo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Mode de stéréoscopie 3D" @@ -12206,7 +12545,7 @@ msgstr "Stick" msgid "Stop" msgstr "Arrêter" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Arrêter de jouer/enregistrer l'entrée" @@ -12272,7 +12611,7 @@ msgstr "Gratter" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Style" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -12285,14 +12624,14 @@ msgstr "Style :" msgid "Stylus" msgstr "Style" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Succès !" @@ -12319,24 +12658,24 @@ msgstr "Exportation avec succès de %n sur %1 fichier(s) de sauvegarde." msgid "Successfully exported save files" msgstr "Fichiers de sauvegarde exportés avec succès." -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Certificats extraits avec succès depuis la NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Fichier extrait avec succès." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Extraction avec succès des données du système." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Fichier de sauvegarde importé avec succès." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Ce titre a été installé avec succès dans la NAND." @@ -12388,7 +12727,7 @@ msgstr "Swap Forces" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12416,17 +12755,21 @@ msgstr "Basculer vers B" msgid "Symbol" msgstr "Symbole" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "Adresse de fin du symbole (%1) :" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "Nom du symbole :" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "Taille du symbole (%1) :" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symboles" @@ -12479,7 +12822,7 @@ msgstr "Synchronisation des données de sauvegarde..." msgid "System Language:" msgstr "Langue du système :" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Entrée TAS" @@ -12490,9 +12833,9 @@ msgid "TAS Tools" msgstr "Outils TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Tags" @@ -12510,7 +12853,7 @@ msgstr "Tail" msgid "Taiwan" msgstr "Taïwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Capture d'écran" @@ -12518,7 +12861,7 @@ msgstr "Capture d'écran" msgid "Target address range is invalid." msgstr "La zone d'adresse cible n'est pas valide." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12555,7 +12898,7 @@ msgstr "Précision du cache de texture" msgid "Texture Dumping" msgstr "Copie des textures" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Filtrage de texture" @@ -12609,7 +12952,7 @@ msgstr "Le fichier IPL n'est pas connu comme un dump correct. (CRC32 : {0:x})" msgid "The Masterpiece partitions are missing." msgstr "La partition des Chefs-d'œuvre est manquante." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12617,7 +12960,7 @@ msgstr "" "Impossible de réparer la NAND. Il est recommandé de sauvegarder vos données " "actuelles et de recommencer avec une nouvelle NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "La NAND a été réparée." @@ -12807,7 +13150,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Le système de fichiers n'est pas valide ou ne peut être lu." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12962,7 +13305,7 @@ msgstr "" "Un même fichier ne peut être utilisé sur plusieurs emplacements, il est déjà " "utilisé sur le slot %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -13003,7 +13346,7 @@ msgstr "L'index de la clé commune spécifiée est {0} au lieu de {1}." msgid "The specified file \"{0}\" does not exist" msgstr "Le fichier spécifié \"{0}\" n'existe pas" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -13069,7 +13412,7 @@ msgstr "La partition des mises à jour est manquante." msgid "The update partition is not at its normal position." msgstr "La partition des mises à jour n'est pas à sa position normale." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -13095,7 +13438,7 @@ msgstr "La partition n°{0} n'est pas correctement alignée." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Thème" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -13192,7 +13535,7 @@ msgstr "" "Veuillez exécuter la version ARM64 de Dolphin pour une meilleure expérience." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Ceci est irréversible !" @@ -13444,7 +13787,7 @@ msgstr "Flux" msgid "Threshold" msgstr "Seuil" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "Tio" @@ -13465,10 +13808,10 @@ msgstr "" msgid "Timed Out" msgstr "Délai dépassé" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titre" @@ -13476,25 +13819,29 @@ msgstr "Titre" msgid "To" msgstr "À" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "jusqu'à :" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Activer le &plein écran" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Active la 3D par anaglyphe" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Active la 3D en côte-à-côte" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Active la 3D en haut-bas" @@ -13502,28 +13849,28 @@ msgstr "Active la 3D en haut-bas" msgid "Toggle All Log Types" msgstr "Activer tous les types de journaux" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Activer le ratio hauteur/largeur" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Activer Point d'arrêt" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Activer le recadrage" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Activer les textures personnalisées" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Activer les copies EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Activer le brouillard" @@ -13535,31 +13882,31 @@ msgstr "Activer le plein écran" msgid "Toggle Pause" msgstr "Mettre en pause" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Activer la carte SD" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Activer Ignorer l'accès à l'EFB" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Activer l'enregistrement des textures" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Activer le clavier USB" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Activer les copies XFB" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Activer le mode XFB immédiat" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Échec du jetonnage." @@ -13682,7 +14029,7 @@ msgid "Trophy" msgstr "Trophée" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13712,7 +14059,7 @@ msgstr "Émulation d'un appareil USB" msgid "USB Emulation" msgstr "Émulation de l'USB" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "Émulation d'appareils USB" @@ -13766,15 +14113,15 @@ msgstr "" "impact minimal sur les performances, mais cela dépend du comportement du " "driver de la carte graphique." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Impossible de détecter automatiquement le module RSO" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Impossible de contacter le serveur de mises à jour." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Impossible de créer une copie de l'Updater." @@ -13814,7 +14161,7 @@ msgstr "" msgid "Unable to read file." msgstr "Impossible de lire le fichier." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Impossible de définir les permissions pour la copie de l'Updater." @@ -13837,11 +14184,11 @@ msgstr "Images GC/Wii non compressées (*.iso *.gcm)" msgid "Undead" msgstr "Mort-vivant" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "&Annuler le lancement d'état" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Annuler la sauvegarde de l'état" @@ -13861,7 +14208,7 @@ msgstr "" "Désinstaller le WAD va supprimer la version actuellement installée de ce " "titre dans la NAND sans supprimer ses données de sauvegarde. Continuer ?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "États-Unis" @@ -13962,11 +14309,11 @@ msgstr "Inconnu(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Inconnu(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Illimitée" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Décharger la ROM" @@ -13974,9 +14321,14 @@ msgstr "Décharger la ROM" msgid "Unlock Cursor" msgstr "Débloquer le curseur" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "Débloqué" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" -msgstr "" +msgstr "Débloqué le %1" #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" @@ -14074,7 +14426,7 @@ msgstr "Utiliser à la verticale" msgid "Upright Wii Remote" msgstr "Wiimote debout" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Paramètres de l'envoi des données statistiques" @@ -14112,6 +14464,8 @@ msgid "" "Use RetroAchievements rich presence in your Discord status.

Show " "Current Game on Discord must be enabled." msgstr "" +"Utiliser les RetroAchievements Rich Presence dans votre statut Discord." +"

Vous devez avoir activé Afficher le jeu en cours sur Discord." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" @@ -14186,10 +14540,14 @@ msgstr "Nom d'utilisateur" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" +"Utilise la base de données de Dolphin de noms proprement nommés des jeux " +"dans la colonne des Titres de la Liste des jeux." +"

Dans le doute, cochez cette case." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -14269,7 +14627,7 @@ msgstr "Ignorer VBI" msgid "Value" msgstr "Valeur" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Valeur traquée à l'instruction en cours." @@ -14357,22 +14715,22 @@ msgstr "Coins virtuels" msgid "Virtual address space" msgstr "Espace d'adresse virtuelle" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Baisser" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Couper le son" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Augmenter" @@ -14380,7 +14738,7 @@ msgstr "Augmenter" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "Fichiers WAD (*.wad)" @@ -14519,7 +14877,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Avertissement" @@ -14677,7 +15035,7 @@ msgstr "Périphériques USB autorisés pour une connexion directe à la Wii ému msgid "Widescreen Hack" msgstr "Hack écran large (16/9è)" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14747,7 +15105,7 @@ msgstr "Wii et Wiimote" msgid "Wii data is not public yet" msgstr "Données Wii pas encore publiques" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fichiers de sauvegarde de Wii (*.bin);;Tous les fichiers (*)" @@ -14782,11 +15140,11 @@ msgstr "Monde" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Écrire" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Écrire le vidage du journal du bloc JIT" @@ -14954,7 +15312,7 @@ msgstr "" "uniquement dans \"Phantasy Star Online Épisodes I & II\". Dans le doute, " "revenez en arrière et sélectionnez \"Contrôleur standard\"." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "Vous utilisez la dernière version disponible pour cette branche." @@ -15045,7 +15403,7 @@ msgstr "" "Souhaitez-vous corriger maintenant le problème ?\n" "Si vous sélectionnez \"Non\", le son risque d'être détérioré." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -15267,6 +15625,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Dolphin Team. « GameCube » et « Wii » sont des marques déposées " +"de Nintendo. Dolphin n'est affiliée d'aucune manière à Nintendo. " #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/hr.po b/Languages/po/hr.po index d574455f79..fc2af26134 100644 --- a/Languages/po/hr.po +++ b/Languages/po/hr.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Alberto Poljak , 2013-2014\n" -"Language-Team: Croatian (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Croatian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/hr/)\n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -161,7 +161,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -192,7 +192,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -206,7 +206,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -226,22 +226,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -249,6 +249,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -269,7 +273,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -282,7 +286,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -326,10 +330,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -339,23 +347,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -364,14 +368,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -383,11 +387,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -395,7 +399,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -403,18 +407,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -450,7 +451,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulacija" @@ -475,36 +476,36 @@ msgstr "" msgid "&File" msgstr "&Datoteka" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Upravljač sličica po sekundi" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Postavke Grafike" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Pomoć" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Postavke prečica na tipkovnici" @@ -528,15 +529,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -548,11 +549,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Učitaj stanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -566,19 +567,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -586,7 +587,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -599,19 +600,19 @@ msgstr "" msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Pokreni igru" @@ -619,7 +620,7 @@ msgstr "&Pokreni igru" msgid "&Properties" msgstr "&Svojstva" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +628,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registri" @@ -640,12 +641,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Resetiraj" @@ -657,7 +658,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -669,11 +670,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Zaustavi igru" @@ -681,7 +682,7 @@ msgstr "&Zaustavi igru" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -703,17 +704,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Pogled" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -725,11 +726,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -749,7 +750,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(isključeno)" @@ -773,7 +774,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -851,7 +852,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -863,7 +864,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -899,19 +900,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -935,7 +936,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1032,7 +1033,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1062,8 +1063,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1081,7 +1082,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1091,7 +1092,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1175,7 +1176,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1302,11 +1303,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1340,13 +1341,13 @@ msgstr "Dodaj..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1365,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1425,7 +1426,7 @@ msgstr "Napredno" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1481,7 +1482,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1489,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1498,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1507,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1532,11 +1533,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1594,7 +1595,7 @@ msgstr "Kut" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1606,19 +1607,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1632,8 +1633,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1644,7 +1645,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1681,8 +1682,8 @@ msgstr "Omjer Slike:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1743,7 +1744,11 @@ msgstr "Automatski" msgid "Auto (Multiple of 640x528)" msgstr "Automatski (Višestruko od 640*528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1763,7 +1768,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1777,6 +1782,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1788,7 +1804,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1871,10 +1887,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Transparent" @@ -1902,7 +1918,7 @@ msgstr "" msgid "Basic" msgstr "Osnovno" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Osnovne postavke" @@ -1962,9 +1978,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2000,15 +2016,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2136,30 +2152,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2255,7 +2271,7 @@ msgstr "" msgid "C Stick" msgstr "C Gljiva" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2290,7 +2306,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2352,14 +2368,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2408,7 +2424,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2456,7 +2472,7 @@ msgstr "Promjeni &Disk..." msgid "Change Disc" msgstr "Promjeni disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2516,7 +2532,7 @@ msgstr "Tražilica" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2528,7 +2544,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2546,29 +2562,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Odaberite datoteku za otvaranje" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Odaberite direktorij u kojega želite raspakirati datoteke" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2587,7 +2603,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2597,7 +2613,7 @@ msgstr "Očisti" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2618,7 +2634,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2642,7 +2658,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2662,7 +2678,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2697,9 +2713,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2724,7 +2740,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2831,9 +2847,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2846,7 +2862,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Potvrdite zaustavljanje igre" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,7 +2873,7 @@ msgstr "" msgid "Connect" msgstr "Spoji" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "" @@ -2865,27 +2881,27 @@ msgstr "" msgid "Connect USB Keyboard" msgstr "Priključite USB tipkovnicu" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2930,19 +2946,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2954,6 +2970,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2962,7 +2988,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2970,7 +2996,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2979,7 +3005,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3004,7 +3030,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3091,18 +3117,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3111,18 +3141,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3228,8 +3254,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3325,7 +3351,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3513,24 +3539,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3586,8 +3612,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Obriši" @@ -3605,7 +3631,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3620,9 +3646,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" @@ -3671,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "Otkrij" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3679,7 +3705,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3737,15 +3763,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemogući maglu" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3779,7 +3805,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3802,7 +3828,8 @@ msgstr "Disk" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3832,15 +3859,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3850,7 +3877,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Želite li zaustaviti emulaciju?" @@ -3871,9 +3898,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3885,8 +3912,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmovi (*.dtm)" @@ -3933,12 +3960,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3948,7 +3969,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4005,11 +4026,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4052,7 +4073,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dumpiraj Zvuk" @@ -4064,7 +4085,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Dumpiraj odabranu EFB metu" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dumpiraj Slike" @@ -4181,16 +4202,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4214,7 +4235,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4277,7 +4298,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4297,7 +4318,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Omogućite kodove za varanje" @@ -4321,9 +4342,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Omogućite korištenje dvije jezgre" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Omogućite korištenje dvije jezgre (ubrzanje)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4367,7 +4388,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4409,7 +4430,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4485,7 +4506,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4519,7 +4540,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4565,6 +4586,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4592,7 +4622,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4643,14 +4673,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4689,26 +4719,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4725,9 +4755,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Pogreška" @@ -4759,7 +4789,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4850,7 +4880,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforija" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4863,15 +4893,15 @@ msgstr "" msgid "Exit" msgstr "Izlaz" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4883,19 +4913,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4903,7 +4933,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "" @@ -4914,11 +4944,11 @@ msgstr "" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Izvedi Snimku Videa" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Izvedi Snimku Videa..." @@ -4946,7 +4976,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4974,35 +5004,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Raspakirati Datoteku..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5030,7 +5060,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5096,7 +5126,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5125,15 +5155,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5152,25 +5182,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5190,18 +5220,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5213,7 +5243,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5250,7 +5280,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5289,7 +5319,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5425,19 +5455,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5491,8 +5521,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5500,11 +5530,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5540,9 +5571,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5554,20 +5585,20 @@ msgstr "" msgid "File Info" msgstr "Informacije o Datoteci" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5665,8 +5696,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5733,7 +5764,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5743,7 +5774,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5786,20 +5817,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Napredovanje Slike" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5856,11 +5887,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5894,11 +5925,12 @@ msgstr "" msgid "FullScr" msgstr "CijeliZaslon" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5918,7 +5950,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5934,11 +5966,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6051,11 +6083,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6089,8 +6121,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6216,7 +6248,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko Kodovi" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6236,14 +6269,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6261,7 +6301,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6294,7 +6334,7 @@ msgstr "Grafika" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6303,7 +6343,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6325,7 +6365,7 @@ msgstr "Zelena Lijevo" msgid "Green Right" msgstr "Zelena Desno" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6407,7 +6447,7 @@ msgstr "Sakrij" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6425,12 +6465,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6494,7 +6534,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6595,11 +6635,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6633,6 +6673,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6686,7 +6736,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6701,15 +6751,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6765,24 +6815,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6831,8 +6881,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informacije" @@ -6846,10 +6896,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Unos" @@ -6868,13 +6918,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Umetni SD karticu" @@ -6892,7 +6939,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6900,8 +6947,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6915,7 +6963,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6924,7 +6972,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6983,8 +7031,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7001,7 +7049,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7009,7 +7057,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7017,7 +7065,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7026,7 +7074,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7106,11 +7154,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7118,47 +7166,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7170,14 +7218,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7185,11 +7234,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7211,7 +7260,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7246,7 +7295,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7254,7 +7303,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7387,6 +7436,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7420,11 +7477,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7434,17 +7491,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Učitaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7453,7 +7510,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7464,7 +7521,7 @@ msgstr "Učitaj Posebne Teksture" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7472,16 +7529,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7489,104 +7551,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "&Mjesto učitavanja" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Mjesto za učitavanje stanja igre 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Mjesto za učitavanje stanja igre 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Mjesto za učitavanje stanja igre 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Mjesto za učitavanje stanja igre 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Mjesto za učitavanje stanja igre 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Mjesto za učitavanje stanja igre 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Mjesto za učitavanje stanja igre 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Učitaj Stanje Igre 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Mjesto za učitavanje stanja igre 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Učitaj Stanje Igre 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Učitaj Stanje Igre 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Učitaj Stanje Igre 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Učitaj Stanje Igre 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Učitaj Stanje Igre 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Učitaj Stanje Igre 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Učitaj Stanje Igre 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7594,20 +7656,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7615,7 +7672,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7640,20 +7697,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Zapis" @@ -7663,10 +7720,11 @@ msgid "Log Configuration" msgstr "Konfiguracija Zapisa" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7705,7 +7763,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7768,9 +7826,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7779,7 +7837,7 @@ msgstr "" msgid "Maker:" msgstr "Tvorac:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7787,7 +7845,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7826,7 +7884,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7842,7 +7900,7 @@ msgstr "" msgid "Memory Card" msgstr "Memorijska Kartica" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7870,7 +7928,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7878,7 +7936,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7949,8 +8007,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7992,7 +8050,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8016,10 +8074,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8028,8 +8086,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8038,7 +8096,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8055,8 +8113,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8069,11 +8127,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8152,7 +8210,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8177,7 +8235,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8185,12 +8243,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8198,8 +8257,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8286,7 +8346,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8327,7 +8387,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8527,7 +8587,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "" @@ -8535,13 +8595,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8562,13 +8622,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8670,7 +8734,7 @@ msgstr "Drugo" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8687,7 +8751,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8695,16 +8759,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8733,7 +8797,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8746,7 +8810,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pad-ovi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8809,7 +8873,7 @@ msgstr "Pauza" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8854,7 +8918,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Osvjetljenje po pikselu" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8884,11 +8948,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8904,8 +8968,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8917,7 +8981,7 @@ msgstr "Pokreni" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Pokreni Video Snimak" @@ -9012,7 +9076,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9063,7 +9127,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9081,9 +9145,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9091,8 +9155,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9136,13 +9201,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9159,11 +9224,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9190,7 +9255,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Pitanje" @@ -9215,11 +9280,11 @@ msgstr "R-Analogan" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9256,13 +9321,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9285,7 +9350,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9344,7 +9409,7 @@ msgstr "Crvena Lijevo" msgid "Red Right" msgstr "Crvena Desno" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9390,8 +9455,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9412,7 +9477,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9441,7 +9507,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9454,7 +9520,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9486,7 +9552,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9498,7 +9564,7 @@ msgstr "Resetiraj" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9550,8 +9616,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9681,20 +9747,20 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9764,11 +9830,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Sn&imi stanje igre" @@ -9780,7 +9846,7 @@ msgstr "Sigurno" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9795,22 +9861,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9822,15 +9900,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9838,73 +9920,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Mjesta Snimanja" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Snimi Stanje Igre 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Mjesto za Stanje Snimanja 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Snimi Stanje Igre 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Snimi Stanje Igre 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Snimi Stanje Igre 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Snimi Stanje Igre 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Snimi Stanje Igre 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Snimi Stanje Igre 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Snimi Stanje Igre 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Mjesto za Stanje Snimanja 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9924,11 +10010,7 @@ msgstr "" msgid "Save as..." msgstr "Snimi kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9939,19 +10021,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9985,7 +10059,7 @@ msgstr "UslikajZaslon" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Traži" @@ -10012,7 +10086,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10020,7 +10094,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10056,7 +10130,7 @@ msgstr "Odaberi" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10065,7 +10139,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10073,18 +10147,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10093,6 +10171,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10101,6 +10183,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10109,58 +10199,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10178,24 +10272,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10204,19 +10294,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10224,23 +10310,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Odaberite snimak igre" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10296,7 +10365,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10339,6 +10408,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Poslati" @@ -10347,6 +10437,15 @@ msgstr "Poslati" msgid "Sensor Bar Position:" msgstr "Pozicija Senzora:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10375,39 +10474,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10421,7 +10516,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10433,10 +10528,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10487,11 +10589,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Pokaži &Zapis" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Pokaži &Alatnu Traku" @@ -10499,15 +10601,15 @@ msgstr "Pokaži &Alatnu Traku" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10516,7 +10618,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10529,7 +10631,7 @@ msgstr "" msgid "Show FPS" msgstr "Pokaži FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10537,15 +10639,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Pokaži Francusku" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Pokaži GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10553,27 +10655,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Pokaži Unos Tipki" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Pokaži Italiju" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Pokaži Koreju" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10581,7 +10683,7 @@ msgstr "" msgid "Show Language:" msgstr "Pokaži Jezik:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Pokaži Konfiguraciju za &Zapis" @@ -10593,7 +10695,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10601,12 +10703,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Pokaži PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10614,7 +10716,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Pokaži Platforme" @@ -10622,23 +10724,23 @@ msgstr "Pokaži Platforme" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Pokaži Regije" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10650,19 +10752,23 @@ msgstr "" msgid "Show Statistics" msgstr "Pokaži Statistike" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Pokaži Taivan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Pokaži SAD" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10674,27 +10780,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Pokaži Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10711,13 +10817,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10750,18 +10852,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10782,6 +10872,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10814,6 +10916,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10830,7 +10940,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10877,7 +10987,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11051,6 +11161,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11087,11 +11201,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Počni Snimati Video" @@ -11130,39 +11244,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11171,7 +11285,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11201,7 +11315,7 @@ msgstr "Gljiva" msgid "Stop" msgstr "Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11270,14 +11384,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11304,24 +11418,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11372,7 +11486,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11397,17 +11511,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11456,7 +11574,7 @@ msgstr "" msgid "System Language:" msgstr "Jezik Sustava:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS Unos" @@ -11467,9 +11585,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11487,7 +11605,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Uslikaj Ekran" @@ -11495,7 +11613,7 @@ msgstr "Uslikaj Ekran" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11530,7 +11648,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11575,13 +11693,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11732,7 +11850,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11856,7 +11974,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11890,7 +12008,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11948,7 +12066,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12053,7 +12171,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12244,7 +12362,7 @@ msgstr "" msgid "Threshold" msgstr "Prag" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12263,10 +12381,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Naslov" @@ -12274,25 +12392,29 @@ msgstr "Naslov" msgid "To" msgstr "Do" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12300,28 +12422,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12333,31 +12455,31 @@ msgstr "Omogući/Onemogući Cijeli Zaslon" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12478,7 +12600,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12508,7 +12630,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12546,15 +12668,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12586,7 +12708,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12609,11 +12731,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Poništi Posljednje Učitavanje" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "" @@ -12631,7 +12753,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12727,11 +12849,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12739,7 +12861,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12837,7 +12964,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12930,7 +13057,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13001,7 +13128,7 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13089,22 +13216,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Glasnoća" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13112,7 +13239,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13213,7 +13340,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Upozorenje" @@ -13326,7 +13453,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Prisili Široki Ekran " -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13396,7 +13523,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13431,11 +13558,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13579,7 +13706,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13643,7 +13770,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/hu.po b/Languages/po/hu.po index fb972afd0f..affa1e46d3 100644 --- a/Languages/po/hu.po +++ b/Languages/po/hu.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Péter Patkós, 2023-2024\n" -"Language-Team: Hungarian (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Hungarian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/hu/)\n" "Language: hu\n" "MIME-Version: 1.0\n" @@ -172,7 +172,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 nem támogatja ezt a funkciót a rendszereden." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 nem támogatja ezt a funkciót." @@ -191,7 +191,7 @@ msgstr "%1 csatlakozott" msgid "%1 has left" msgstr "%1 kilépett" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -203,7 +203,7 @@ msgstr "%1 nem egy valid ROM" msgid "%1 is now golfing" msgstr "%1 éppen golfozik" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 ezzel játszik: %2" @@ -217,7 +217,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 pont" @@ -237,22 +237,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normál sebesség)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "%1 értéke megváltozott" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -260,13 +260,17 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -280,7 +284,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -293,7 +297,7 @@ msgstr "%1x Natív (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Natív (%2x%3) %4-hez/hoz" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -337,10 +341,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Névjegy" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Új memória töréspont hozzáadása" @@ -350,23 +358,19 @@ msgstr "&Új memória töréspont hozzáadása" msgid "&Add New Code..." msgstr "&Új kód hozzáadása..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Funkció hozzáadása" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Hozzáadás..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Audió beállítások" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Automatikus frissítés:" @@ -375,14 +379,14 @@ msgid "&Borderless Window" msgstr "&Szegély nélküli ablak" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Töréspontok" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -394,11 +398,11 @@ msgstr "&Mégse" msgid "&Cheats Manager" msgstr "&Csaláskezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Frissítések keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -406,7 +410,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Kód" @@ -414,18 +418,15 @@ msgstr "&Kód" msgid "&Connected" msgstr "&Csatlakoztatva" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Vezérlő beállítások" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Cím másolása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Cím másolása" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Létrehozás..." @@ -461,7 +462,7 @@ msgstr "&Szerkesztés..." msgid "&Eject Disc" msgstr "&Lemez kiadása" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emuláció" @@ -486,36 +487,36 @@ msgstr "&Exportálás, mint .gci..." msgid "&File" msgstr "&Fájl" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "Képkocka léptetése" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Szabad nézet beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub tárház" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafikai beállítások" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Súgó" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Gyorsbillentyű beállítások" @@ -539,15 +540,15 @@ msgstr "&Importálás..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -559,11 +560,11 @@ msgstr "&Nyelv:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Állapot betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -577,19 +578,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Film" @@ -597,7 +598,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Némítás" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Hálózat" @@ -610,19 +611,19 @@ msgstr "&Nem" msgid "&Open..." msgstr "&Megnyitás..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Beállítások" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&HLE funkciók javítása" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Szünet" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Indítás" @@ -630,7 +631,7 @@ msgstr "&Indítás" msgid "&Properties" msgstr "&Tulajdonságok" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Írásvédett mód" @@ -638,7 +639,7 @@ msgstr "&Írásvédett mód" msgid "&Refresh List" msgstr "&Lista frissítése" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Regiszterek" @@ -651,12 +652,12 @@ msgstr "&Törlés" msgid "&Remove Code" msgstr "&Kód törlése" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Szimbólum átnevezése" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Alapbeállítások" @@ -668,7 +669,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -680,11 +681,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Sebességkorlát:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Stop" @@ -692,7 +693,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "&Téma:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Szálak" @@ -714,17 +715,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Nézet" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Figyelés" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Weboldal" @@ -736,11 +737,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Igen" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -760,7 +761,7 @@ msgstr "(Rendszer)" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(ki)" @@ -784,7 +785,7 @@ msgstr ", vessző" msgid "- Subtract" msgstr "- Kivonás" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -862,7 +863,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x Anizotróp" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -874,7 +875,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -910,19 +911,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D mélység" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -946,7 +947,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1044,7 +1045,7 @@ msgid "If unsure, leave this unchecked." msgstr "" "Ha bizonytalan vagy, hagyd üresen." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1076,8 +1077,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1095,7 +1096,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Egy lemez már behelyezés alatt." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1105,7 +1106,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1189,7 +1190,7 @@ msgid "Achievement Settings" msgstr "Teljesítmény beállítások" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Teljesítmények" @@ -1265,7 +1266,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "NetPlay Chat aktiválása" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktív" @@ -1316,11 +1317,11 @@ msgstr "USB eszköz hozzáadása" msgid "Add Shortcut to Desktop" msgstr "Parancsikon hozzáaadása az Asztalhoz" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Töréspont hozzáadása" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1354,13 +1355,13 @@ msgstr "Hozzáadás" #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Cím" @@ -1379,7 +1380,7 @@ msgstr "" msgid "Address:" msgstr "Cím:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1439,7 +1440,7 @@ msgstr "Haladó" msgid "Advanced Settings" msgstr "Haladó beállítások" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1495,7 +1496,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1503,7 +1504,7 @@ msgid "All Files" msgstr "Minden fájl" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Minden fájl (*)" @@ -1512,7 +1513,7 @@ msgstr "Minden fájl (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Minden GC/Wii fájl" @@ -1521,8 +1522,8 @@ msgstr "Minden GC/Wii fájl" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "All Save States (*.sav *.s##);; Minden fájl (*)" @@ -1546,11 +1547,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Eltérő régióbeállítások engedélyezése" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1608,7 +1609,7 @@ msgstr "Szög" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Élsimítás" @@ -1620,19 +1621,19 @@ msgstr "Élsimítás:" msgid "Any Region" msgstr "Bármilyen régió" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1646,8 +1647,8 @@ msgstr "Betöltőprogram dátuma:" msgid "Apply" msgstr "Alkalmaz" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1658,7 +1659,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "Biztosan törölni szeretnéd: '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Biztosan törlöd ezt a fájlt?" @@ -1695,8 +1696,8 @@ msgstr "Képarány:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1757,7 +1758,11 @@ msgstr "Automatikus" msgid "Auto (Multiple of 640x528)" msgstr "Automatikus (640x528 többszöröse)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Automatikus frissítés beállításai" @@ -1777,7 +1782,7 @@ msgstr "Ablak automatikus méretezése" msgid "Auto-Hide" msgstr "Automatikus elrejtés" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1791,6 +1796,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Jelenlegi értékek automatikus frissítése" @@ -1802,7 +1818,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1885,10 +1901,10 @@ msgstr "" msgid "Bad value provided." msgstr "Rossz érték lett megadva." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -1916,7 +1932,7 @@ msgstr "" msgid "Basic" msgstr "Alap" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Alapok beállítása" @@ -1976,9 +1992,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blokk méret" @@ -2014,15 +2030,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup fájl(*.bin);;Minden fájl (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys fájl (*.bin);;Minden fájl (*)" @@ -2150,30 +2166,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Töréspont" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Töréspontok" @@ -2269,7 +2285,7 @@ msgstr "" msgid "C Stick" msgstr "C kar" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2304,7 +2320,7 @@ msgstr "" msgid "Calculate" msgstr "Kiszámítás" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2366,14 +2382,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Nem indítható NetPlay munkamenet, amíg egy játék fut!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2423,7 +2439,7 @@ msgstr "Nem generálható AR kód ehhez a címhez." msgid "Cannot refresh without results." msgstr "Eredmények nélkül nem lehet frissíteni." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "Nem állítható be üres útvonalra a GCI mappa." @@ -2471,7 +2487,7 @@ msgstr "Lemez&váltás..." msgid "Change Disc" msgstr "Lemezváltás" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Automatikus lemezváltás" @@ -2534,7 +2550,7 @@ msgstr "Csalás keresése" msgid "Cheats Manager" msgstr "Csalás kezelő" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "NAND ellenőrzése..." @@ -2546,7 +2562,7 @@ msgstr "" msgid "Check for updates" msgstr "Frissítések keresése" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2564,29 +2580,29 @@ msgstr "Kína" msgid "Choose" msgstr "Válassz" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Válassz megnyitandó fájlt" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Válassz megnyitandó vagy létrehozandó fájlt" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Válassz mappát a kitömörítéshez" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2605,7 +2621,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2615,7 +2631,7 @@ msgstr "Törlés" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Gyorsítótár törlése" @@ -2636,7 +2652,7 @@ msgstr "" msgid "Close" msgstr "Bezárás" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ko&nfiguráció" @@ -2660,7 +2676,7 @@ msgstr "Kód:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Színkorrekció" @@ -2680,7 +2696,7 @@ msgstr "Színtér" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2715,9 +2731,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "Árnyékolók összeállítása" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Tömörítés" @@ -2742,7 +2758,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2849,9 +2865,9 @@ msgstr "Kimenet konfigurálása" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Megerősítés" @@ -2864,7 +2880,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Megerősítés leállításkor" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2875,7 +2891,7 @@ msgstr "Megerősítés" msgid "Connect" msgstr "Csatlakozás" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Balance Board csatlakoztatása" @@ -2883,27 +2899,27 @@ msgstr "Balance Board csatlakoztatása" msgid "Connect USB Keyboard" msgstr "USB billentyűzet csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Wii Remote %1 csatlakoztatása" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Wii Remote 1 csatlakoztatása" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Wii Remote 2 csatlakoztatása" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Wii Remote 3 csatlakoztatása" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Wii Remote 4 csatlakoztatása" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Wii Remote-ok csatlakoztatása" @@ -2948,19 +2964,19 @@ msgstr "Vezérlő kar" msgid "Controller Profile" msgstr "Vezérlő profil" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Vezérlő profil 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Vezérlő profil 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Vezérlő profil 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Vezérlő profil 4" @@ -2972,6 +2988,16 @@ msgstr "Vezérlőbeállítások" msgid "Controllers" msgstr "Vezérlők" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2980,7 +3006,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2988,7 +3014,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2997,7 +3023,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3022,7 +3048,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Konvergencia" @@ -3111,18 +3137,22 @@ msgstr "" msgid "Copy" msgstr "Másolás" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Cím másolása" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Másolás sikertelen" @@ -3131,18 +3161,14 @@ msgstr "Másolás sikertelen" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Érték másolása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3252,8 +3278,8 @@ msgstr "A {0} fájl nem ismerhető fel" msgid "Could not save your changes!" msgstr "Nem sikerült menteni a változtatásokat!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Nem sikerült elindítani a frissítési folyamatot: {0}" @@ -3349,7 +3375,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Jelenlegi régió" @@ -3537,24 +3563,24 @@ msgstr "Dekódolás minősége:" msgid "Decrease" msgstr "Csökkentés" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Konvergencia csökkentése" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Mélység csökkentése" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Emulációs sebesség csökkentése" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "IR csökkentése" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Kiválasztott állapot foglalatának csökkentése" @@ -3610,8 +3636,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Törlés" @@ -3629,7 +3655,7 @@ msgstr "Kiválasztott fájlok törlése..." msgid "Delete the existing file '{0}'?" msgstr "Törlöd a meglévő '{0}' fájlt?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Mélység" @@ -3644,9 +3670,9 @@ msgstr "Mélység:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Leírás" @@ -3695,7 +3721,7 @@ msgstr "Leválasztva" msgid "Detect" msgstr "Észlelés" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "RSO modulok észlelése" @@ -3703,7 +3729,7 @@ msgstr "RSO modulok észlelése" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Fejlesztői (naponta többször)" @@ -3761,15 +3787,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Emulációs sebességkorlát kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Fastmem kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Fastmem Arena kikapcsolása" @@ -3777,11 +3803,11 @@ msgstr "Fastmem Arena kikapcsolása" msgid "Disable Fog" msgstr "Köd kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "JIT gyorsítótár kikapcsolása" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3803,7 +3829,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3826,7 +3852,8 @@ msgstr "Lemez" msgid "Discard" msgstr "Elvetés" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3856,15 +3883,15 @@ msgstr "Távolság" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3874,7 +3901,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Biztos leállítod az aktuális emulációt?" @@ -3895,9 +3922,9 @@ msgstr "Dolphin FIFO napló (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3909,8 +3936,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS videók (*.dtm)" @@ -3957,14 +3984,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"A Dolphin ezt fogja használni azokhoz a játékokhoz, amelyek régióját nem " -"tudja megállapítani automatikusan." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3974,7 +3993,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Ne frissítsen" @@ -4031,11 +4050,11 @@ msgstr "%1 kód letöltve. (%2 hozzáadva)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4078,7 +4097,7 @@ msgstr "&FakeVMEM kimentése" msgid "Dump &MRAM" msgstr "&MRAM kimentése" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Hang kimentése" @@ -4090,7 +4109,7 @@ msgstr "Alap textúrák kimentése" msgid "Dump EFB Target" msgstr "EFB cél kimentése" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Képkockák kimentése" @@ -4207,16 +4226,16 @@ msgstr "Kelet-Ázsia" msgid "Edit Breakpoint" msgstr "Töréspont módosítása" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Szerkesztés..." @@ -4240,7 +4259,7 @@ msgstr "Effektív" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4303,7 +4322,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emuláció sebessége" @@ -4323,7 +4342,7 @@ msgstr "API-érvényesítési rétegek használata" msgid "Enable Audio Stretching" msgstr "Hangnyújtás engedélyezése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Csalások használata" @@ -4347,9 +4366,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Kétmagos mód használata" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Kétmagos mód használata (gyorsítás)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4393,7 +4412,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4435,7 +4454,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "Nem hivatalos teljesítmények engedélyezése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Használati statisztika jelentése" @@ -4513,7 +4532,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4547,7 +4566,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4593,6 +4612,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4620,7 +4648,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4671,14 +4699,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Enter the RSO module address:" msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194 #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4717,26 +4745,26 @@ msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4753,9 +4781,9 @@ msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Hiba" @@ -4788,7 +4816,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4879,7 +4907,7 @@ msgstr "" msgid "Euphoria" msgstr "Eufória" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Európa" @@ -4892,15 +4920,15 @@ msgstr "" msgid "Exit" msgstr "Kilépés" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4912,19 +4940,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4932,7 +4960,7 @@ msgstr "" msgid "Experimental" msgstr "Kísérleti" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Minden Wii mentés exportálása" @@ -4943,11 +4971,11 @@ msgstr "Minden Wii mentés exportálása" msgid "Export Failed" msgstr "Sikertelen exportálás" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Felvétel exportálása" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Felvétel exportálása..." @@ -4975,7 +5003,7 @@ msgstr "Exportálás, mint .&gcs..." msgid "Export as .&sav..." msgstr "Exportálás, mint .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5003,35 +5031,35 @@ msgstr "Külső" msgid "External Frame Buffer (XFB)" msgstr "Küldő képkockapuffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Teljes lemez kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Teljes partíció kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Fájl kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Fájlok kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Rendszeradatok kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Összes fájl kibontása..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Könyvtár kibontása..." @@ -5061,7 +5089,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5127,7 +5155,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5156,15 +5184,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Fájl kibontása sikertelen." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Rendszeradatok kibontása sikertelen." @@ -5183,12 +5211,12 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "\"%1\" importálása sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5196,14 +5224,14 @@ msgstr "" "Mentési fájl importálása sikertelen. A megadott fájl sérült, vagy nem " "érvényes Wii mentés." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5223,18 +5251,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5246,7 +5274,7 @@ msgstr "d3d11.dll betöltése sikertelen" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll betöltése sikertelen" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5283,7 +5311,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' megnyitása sikertelen" @@ -5322,7 +5350,7 @@ msgstr "" msgid "Failed to open file." msgstr "Nem sikerült megnyitni a fájlt." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Nem sikerült megnyitni a szervert" @@ -5458,19 +5486,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "FIFO napló mentése sikertelen." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5524,8 +5552,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5533,11 +5561,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5573,9 +5602,9 @@ msgstr "" msgid "File Details" msgstr "Fájl részletei" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Fájlformátum" @@ -5587,20 +5616,20 @@ msgstr "Fájl formátuma:" msgid "File Info" msgstr "Fájl információ" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Fájlnév" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Fájl útvonala:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Fájlméret" @@ -5700,8 +5729,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5768,7 +5797,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5778,7 +5807,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5821,20 +5850,20 @@ msgstr "%n cím található." msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Képkocka léptetés" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Képkocka léptetés lassítás" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Képkocka léptetés gyorsítás" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Képkocka léptetés alap sebesség" @@ -5895,11 +5924,11 @@ msgstr "" msgid "FreeLook" msgstr "Szabad nézet" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Szabad nézet" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Szabad nézet kapcsoló" @@ -5933,11 +5962,12 @@ msgstr "Ettől:" msgid "FullScr" msgstr "Teljes képernyő" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funkció" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5957,7 +5987,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "GBA kazetta útvonal:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA mag" @@ -5973,11 +6003,11 @@ msgstr "GBA beállítások" msgid "GBA TAS Input %1" msgstr "GBA TAS bemenet %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA hangerő" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA ablakméret" @@ -6100,11 +6130,11 @@ msgstr "Játék" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance kártyák (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6140,8 +6170,8 @@ msgstr "Játék gamma" msgid "Game Gamma:" msgstr "Játék gamma:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Játék azonosító" @@ -6267,7 +6297,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Gecko kódok" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6287,14 +6318,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Új statisztikai azonosító generálása" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6312,7 +6350,7 @@ msgstr "Németország" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6345,7 +6383,7 @@ msgstr "Grafika" msgid "Graphics Mods" msgstr "Grafikai modok" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Grafikai kapcsolók" @@ -6354,7 +6392,7 @@ msgstr "Grafikai kapcsolók" msgid "Graphics mods are currently disabled." msgstr "A grafikai modok jelenleg ki vannak kapcsolva." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6376,7 +6414,7 @@ msgstr "Zöld balra" msgid "Green Right" msgstr "Zöld jobbra" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Rács nézet" @@ -6458,7 +6496,7 @@ msgstr "Elrejtés" msgid "Hide &Controls" msgstr "&Vezérlők elrejtése" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Összes elrejtése" @@ -6476,12 +6514,12 @@ msgstr "Távoli GBAk elrejtése" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Magas" @@ -6545,7 +6583,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "Gyorsbillentyű beállítások" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6646,11 +6684,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6684,6 +6722,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6737,7 +6785,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6752,15 +6800,15 @@ msgstr "Importálás sikertelen" msgid "Import Save File(s)" msgstr "Mentési fájl(ok) importálása" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Wii mentés importálása..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6816,24 +6864,24 @@ msgstr "Helytelen játékidő érték!" msgid "Increase" msgstr "Növelés" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Konvergencia növelése" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Mélység növelése" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Emulációs sebesség növelése" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "IR növelése" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Kiválasztott állapot foglalatának növelése" @@ -6882,8 +6930,8 @@ msgstr "Infó" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Információk" @@ -6897,10 +6945,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Bemenet" @@ -6919,13 +6967,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD kártya behelyezése" @@ -6943,7 +6988,7 @@ msgstr "" msgid "Install Update" msgstr "Frissítés telepítése" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WAD telepítése..." @@ -6951,8 +6996,9 @@ msgstr "WAD telepítése..." msgid "Install to the NAND" msgstr "Telepítés a NAND-ra" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6966,7 +7012,7 @@ msgstr "Utasítás" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Utasítás:" @@ -6975,7 +7021,7 @@ msgstr "Utasítás:" msgid "Instruction: %1" msgstr "Utasítás: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7034,8 +7080,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Belső felbontás" @@ -7052,7 +7098,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Értelmező (leglassabb)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7060,7 +7106,7 @@ msgstr "" msgid "Invalid Expression." msgstr "Érvénytelen kifejezés." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7068,7 +7114,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7077,7 +7123,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "Érvénytelen játékos ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Érvénytelen RSO modulcím: %1" @@ -7158,11 +7204,11 @@ msgstr "Olaszország" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7170,47 +7216,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7222,14 +7268,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7237,11 +7284,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "A JIT nem aktív" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japán" @@ -7263,7 +7310,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7298,7 +7345,7 @@ msgstr "Billentyűzet vezérlő" msgid "Keys" msgstr "Gombok" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7306,7 +7353,7 @@ msgstr "" msgid "Kick Player" msgstr "Játékos kirúgása" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7342,7 +7389,7 @@ msgstr "Címke" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Nyelv" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -7439,6 +7486,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7472,11 +7527,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Oszlopok megjelenítése a listában" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Lista nézet" @@ -7486,17 +7541,17 @@ msgstr "Figyelés" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Betöltés" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7505,7 +7560,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7516,7 +7571,7 @@ msgstr "Egyedi textúrák betöltése" msgid "Load File" msgstr "Fájl betöltése" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "GameCube főmenü betöltése" @@ -7524,16 +7579,21 @@ msgstr "GameCube főmenü betöltése" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Legutóbbi állapot betöltése" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Betöltési útvonal:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "ROM betöltése" @@ -7541,104 +7601,104 @@ msgstr "ROM betöltése" msgid "Load Slot" msgstr "Foglalat betöltése" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Állapot betöltése" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Állapot betöltése, utolsó 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Állapot betöltése, utolsó 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Állapot betöltése, utolsó 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Állapot betöltése, utolsó 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Állapot betöltése, utolsó 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Állapot betöltése, utolsó 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Állapot betöltése, utolsó 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Állapot betöltése, utolsó 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Állapot betöltése, utolsó 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Állapot betöltése, utolsó 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Állapot betöltése, foglalat 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Állapot betöltése, foglalat 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Állapot betöltése, foglalat 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Állapot betöltése, foglalat 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Állapot betöltése, foglalat 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Állapot betöltése, foglalat 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Állapot betöltése, foglalat 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Állapot betöltése, foglalat 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Állapot betöltése, foglalat 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Állapot betöltése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Állapot betöltése fájlból" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Állapot betöltése a választott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Állapot betöltése foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Wii rendszermenü betöltése %1" @@ -7646,20 +7706,15 @@ msgstr "Wii rendszermenü betöltése %1" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Betöltés a kiválasztott foglalatból" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Betöltés a foglalatból %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7667,7 +7722,7 @@ msgstr "" msgid "Load..." msgstr "Betöltés..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7692,20 +7747,20 @@ msgstr "Helyi" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Napló" @@ -7715,10 +7770,11 @@ msgid "Log Configuration" msgstr "Napló beállítások" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Bejelentkezés" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7757,7 +7813,7 @@ msgstr "Ismétlés" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Alacsony" @@ -7820,9 +7876,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Készítő" @@ -7831,7 +7887,7 @@ msgstr "Készítő" msgid "Maker:" msgstr "Készítő:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7839,7 +7895,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "NAND kezelése" @@ -7878,7 +7934,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Talán lassulást okoz a Wii menüben és néhány játéknál." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Közepes" @@ -7894,7 +7950,7 @@ msgstr "Memória töréspont" msgid "Memory Card" msgstr "Memóriakártya" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Memóriakártya kezelő" @@ -7922,7 +7978,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7930,7 +7986,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -8001,8 +8057,8 @@ msgstr "Foglalat módosítása" msgid "Modifying Skylander: %1" msgstr "Skylander módosítása: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8044,7 +8100,7 @@ msgstr "Egérkurzor láthatósága" msgid "Move" msgstr "Mozgás" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" @@ -8068,10 +8124,10 @@ msgstr "" msgid "N&o to All" msgstr "N&em mindre" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND ellenőrzés" @@ -8080,8 +8136,8 @@ msgstr "NAND ellenőrzés" msgid "NKit Warning" msgstr "NKit figyelmeztetés" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8090,7 +8146,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8107,8 +8163,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8121,11 +8177,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Név" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Új címke neve:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Eltávolítandó címke neve:" @@ -8204,7 +8260,7 @@ msgid "Never Auto-Update" msgstr "Ne frissítsen automatikusan" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Új" @@ -8229,7 +8285,7 @@ msgstr "Új keresés" msgid "New Tag..." msgstr "Új címke..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Új azonosító generálva." @@ -8237,12 +8293,13 @@ msgstr "Új azonosító generálva." msgid "New instruction:" msgstr "Új utasítás:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Új címke" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Következő játékprofil" @@ -8250,8 +8307,9 @@ msgstr "Következő játékprofil" msgid "Next Match" msgstr "Következő egyezés" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Következő profil" @@ -8338,7 +8396,7 @@ msgstr "Nincs kiválasztva grafikai mod" msgid "No input" msgstr "Nincs bemenet" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Nem található probléma." @@ -8381,7 +8439,7 @@ msgstr "" "szinkronvesztésének elkerüléséhez" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8581,7 +8639,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online &dokumentáció" @@ -8589,13 +8647,13 @@ msgstr "Online &dokumentáció" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8616,14 +8674,18 @@ msgstr "&Tartalmazó mappa megnyitása" msgid "Open &User Folder" msgstr "&Felhasználói mappa megnyitása" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Könyvtár megnyitása..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "FIFO napló megnyitása" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -8724,7 +8786,7 @@ msgstr "Egyéb" msgid "Other Partition (%1)" msgstr "Egyéb partíció (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8741,7 +8803,7 @@ msgstr "Egyéb játék..." msgid "Output" msgstr "Kimenet" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Kimeneti mintavételezés" @@ -8749,16 +8811,16 @@ msgstr "Kimeneti mintavételezés" msgid "Output Resampling:" msgstr "Kimeneti mintavételezés:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Felülírva" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Bemeneti fe&lvétel lejátszása..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8787,7 +8849,7 @@ msgstr "PNG képfájl (*.png);; Minden fájl (*)" msgid "PPC Size" msgstr "PPC méret" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8800,7 +8862,7 @@ msgstr "Irányító" msgid "Pads" msgstr "Irányítók" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Paraméterek" @@ -8863,7 +8925,7 @@ msgstr "Szünet" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Szünet a videó végén" @@ -8908,7 +8970,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Képpont alapú megvilágítás" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Online rendszerfrissítés végrehajtása" @@ -8938,11 +9000,11 @@ msgstr "Fizikai" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8958,8 +9020,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platform" @@ -8971,7 +9033,7 @@ msgstr "Indítás" msgid "Play / Record" msgstr "Indítás / Felvétel" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Felvétel lejátszása" @@ -9066,7 +9128,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Utófeldolgozási effektus" @@ -9119,7 +9181,7 @@ msgstr "" msgid "Presets" msgstr "Előbeállítások" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9137,9 +9199,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Előző játékos profil" @@ -9147,8 +9209,9 @@ msgstr "Előző játékos profil" msgid "Previous Match" msgstr "Előző egyezés" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Előző profil" @@ -9192,13 +9255,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9215,11 +9278,11 @@ msgstr "" msgid "Public" msgstr "Nyilvános" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Játéklista gyorsítótár ürítése" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9246,7 +9309,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Kérdés" @@ -9271,11 +9334,11 @@ msgstr "Jobb analóg" msgid "READY" msgstr "KÉSZ" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO modulok" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO auto-felismerés" @@ -9312,13 +9375,13 @@ msgstr "Nyers" msgid "Raw Internal Resolution" msgstr "Nyers belső felbontás" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9341,7 +9404,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9400,7 +9463,7 @@ msgstr "Vörös balra" msgid "Red Right" msgstr "Vörös jobbra" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9447,8 +9510,8 @@ msgstr "Jelenlegi értékek frissítve." msgid "Refreshing..." msgstr "Frissítés..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Régió" @@ -9469,7 +9532,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9498,7 +9562,7 @@ msgstr "Felesleges adatok törlése (visszavonhatatlan):" msgid "Remove Tag..." msgstr "Címke eltávolítása..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Címke eltávolítása" @@ -9511,8 +9575,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Szimbólum átnevezése" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -9543,7 +9607,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9555,7 +9619,7 @@ msgstr "Alapbeállítások" msgid "Reset All" msgstr "Összes visszaállítása" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9607,8 +9671,8 @@ msgstr "Újraindítás szükséges" msgid "Restore Defaults" msgstr "Alapértelmezettek visszaállítása" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9738,20 +9802,20 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "GBA-magok futtatása dedikált szálakban" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9821,11 +9885,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "K&ód mentése" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Á&llapot mentése" @@ -9837,7 +9901,7 @@ msgstr "Biztonságos" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9852,23 +9916,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "FIFO napló mentése" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Fájl mentése ide" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -9879,15 +9955,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Mentési fájlok (*.sav);;Minden fájl (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Legrégebbi állapot mentése" @@ -9895,73 +9975,77 @@ msgstr "Legrégebbi állapot mentése" msgid "Save Preset" msgstr "Előbeállítás mentése" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Rögzített fájl mentése, mint" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Állapot mentése" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Állapot mentése, foglalat 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Állapot mentése, foglalat 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Állapot mentése, foglalat 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Állapot mentése, foglalat 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Állapot mentése, foglalat 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Állapot mentése, foglalat 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Állapot mentése, foglalat 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Állapot mentése, foglalat 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Állapot mentése, foglalat 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Állapot mentése, foglalat 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Állapot mentése fájlba" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Állapot mentése a legrégebbi foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Állapot mentése a választott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Állapot mentése a foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9981,11 +10065,7 @@ msgstr "Mentés előbeállításként..." msgid "Save as..." msgstr "Mentés másként..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9996,19 +10076,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Mentés a ROM-mal azonos könyvtárba" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Mentés a kiválasztott foglalatba" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Mentés foglalatba %1 - %2" @@ -10042,7 +10114,7 @@ msgstr "Pillanatkép" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Keresés" @@ -10069,7 +10141,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Utasítás keresése" @@ -10077,7 +10149,7 @@ msgstr "Utasítás keresése" msgid "Search games..." msgstr "Játékok keresése..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Keresési utasítás" @@ -10113,7 +10185,7 @@ msgstr "Kiválaszt" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10122,7 +10194,7 @@ msgid "Select Dump Path" msgstr "Kimentési útvonal kiválasztása" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Exportálási könyvtár kiválasztása" @@ -10130,18 +10202,22 @@ msgstr "Exportálási könyvtár kiválasztása" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "GBA BIOS kiválasztása" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "GBA ROM kiválasztása" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "GBA mentési útvonal kiválasztása" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Legutóbbi állapot kiválasztása" @@ -10150,6 +10226,10 @@ msgstr "Legutóbbi állapot kiválasztása" msgid "Select Load Path" msgstr "Betöltési útvonal kiválasztása" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10158,6 +10238,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "Riivolution XML fájl kiválasztása" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Skylander Collection kiválasztása" @@ -10166,58 +10254,62 @@ msgstr "Skylander Collection kiválasztása" msgid "Select Skylander File" msgstr "Skylander fájl kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Foglalat kiválasztása %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Állapot kiválasztása" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Állapot kiválasztása, foglalat" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Állapot kiválasztása, foglalat 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Állapot kiválasztása, foglalat 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Állapot kiválasztása, foglalat 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Állapot kiválasztása, foglalat 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Állapot kiválasztása, foglalat 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Állapot kiválasztása, foglalat 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Állapot kiválasztása, foglalat 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Állapot kiválasztása, foglalat 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Állapot kiválasztása, foglalat 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Állapot kiválasztása, foglalat 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "WFS útvonal kiválasztása" @@ -10235,24 +10327,20 @@ msgstr "Válassz egy könyvtárat" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Válassz egy fájlt" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Válassz egy SD kártya képfájlt" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Válassz egy fájlt" @@ -10261,19 +10349,15 @@ msgstr "Válassz egy fájlt" msgid "Select a game" msgstr "Válassz egy játékot" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Válaszd ki az RSO modul címét:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Válaszd ki a lejátszandó felvételt" @@ -10281,23 +10365,6 @@ msgstr "Válaszd ki a lejátszandó felvételt" msgid "Select the Virtual SD Card Root" msgstr "Virtuális SD kártya gyökér kiválasztása" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Válassz mentési fájlt" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Válaszd ki, hova szeretnéd menteni a konvertált képet." - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Válaszd ki, hova szeretnéd menteni a konvertált képeket." - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Kiválasztott betűtípus" @@ -10353,7 +10420,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10396,6 +10463,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Küldés" @@ -10404,6 +10492,15 @@ msgstr "Küldés" msgid "Sensor Bar Position:" msgstr "Érzékelősáv helyzete:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10432,39 +10529,35 @@ msgstr "&Érték beállítása" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "&Beállítás alapértelmezett ISO-ként" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Szimbólum méret beállítása (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10481,7 +10574,7 @@ msgstr "A Wii rendszer nyelve." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10493,10 +10586,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10547,11 +10647,11 @@ msgstr "" msgid "Show % Speed" msgstr "Sebesség % megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Nap&ló megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Eszközt&ár megjelenítése" @@ -10559,15 +10659,15 @@ msgstr "Eszközt&ár megjelenítése" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Összes megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Ausztrália megjelenítése" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Jelenlegi játék megjelenítése Discordon" @@ -10576,7 +10676,7 @@ msgstr "Jelenlegi játék megjelenítése Discordon" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL megjelenítése" @@ -10589,7 +10689,7 @@ msgstr "" msgid "Show FPS" msgstr "FPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Képkockaszámoló megjelenítése" @@ -10597,15 +10697,15 @@ msgstr "Képkockaszámoló megjelenítése" msgid "Show Frame Times" msgstr "Képkockaidők megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Franciaország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "GameCube megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Németország megjelenítése" @@ -10613,27 +10713,27 @@ msgstr "Németország megjelenítése" msgid "Show Golf Mode Overlay" msgstr "Golf mód átfedés megjelenítése" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Bemeneti kijelző megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Olaszország megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "JPN megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Korea megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Eltérési szám megjelenítése" @@ -10641,7 +10741,7 @@ msgstr "Eltérési szám megjelenítése" msgid "Show Language:" msgstr "Nyelv megjelenítése:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Naplózási &beállítások megjelenítése" @@ -10653,7 +10753,7 @@ msgstr "NetPlay üzenetek mgejelenítése" msgid "Show NetPlay Ping" msgstr "NetPlay ping mgejelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Hollandia megjelenítése" @@ -10661,12 +10761,12 @@ msgstr "Hollandia megjelenítése" msgid "Show On-Screen Display Messages" msgstr "Képernyőn megjelenő üzenetek megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL megjelenítése" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10674,7 +10774,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "Teljesítmény grafikonok megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Platformok megjelenítése" @@ -10682,23 +10782,23 @@ msgstr "Platformok megjelenítése" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Régiók megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Oroszország megjelenítése" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Spanyolország megjelenítése" @@ -10710,19 +10810,23 @@ msgstr "" msgid "Show Statistics" msgstr "Statisztikák megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Rendszeróra megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Tajvan megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "USA megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Ismeretlen megjelenítése" @@ -10734,27 +10838,27 @@ msgstr "" msgid "Show VPS" msgstr "VPS megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii megjelenítése" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Világ megjelenítése" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Megjelenítés a &memóriában" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Megjelenítés a Kódban" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Megjelenítés a Memóriában" @@ -10771,13 +10875,9 @@ msgstr "Megjelenítés a memóriában" msgid "Show in server browser" msgstr "Megjelenítés a szerver böngészőben" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10810,18 +10910,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10842,6 +10930,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10874,6 +10974,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Egymás mellett" @@ -10890,7 +10998,7 @@ msgstr "Oldalra tartás kapcsoló" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10937,7 +11045,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Átugrás" @@ -10986,7 +11094,7 @@ msgstr "Skylander %1" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:557 msgid "Skylander (*.sky *.bin *.dmp *.dump);;All Files (*)" -msgstr "" +msgstr "Skylander (*.sky *.bin *.dmp *.dump);;Minden fájl (*)" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:626 msgid "Skylander (*.sky);;All Files (*)" @@ -11111,6 +11219,10 @@ msgstr "" msgid "Speed" msgstr "Sebesség" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11147,11 +11259,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Bemenet rögzítésének indítása" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Felvétel indítása" @@ -11190,39 +11302,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11231,7 +11343,7 @@ msgstr "" msgid "Stereo" msgstr "Sztereó" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Sztereoszkópikus 3D mód" @@ -11261,7 +11373,7 @@ msgstr "Kar" msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Játék/felvétel leállítása" @@ -11317,7 +11429,7 @@ msgstr "Pengetés" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Stílus" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -11330,14 +11442,14 @@ msgstr "Stílus:" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Siker" @@ -11364,24 +11476,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Sikeresen exportált mentési fájlok" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Tanúsítványok sikeresen kivonva a NAND-ból" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Mentett fájl sikeresen importálva." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11432,7 +11544,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11460,17 +11572,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Szimbólum neve:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11519,7 +11635,7 @@ msgstr "Mentett adatok szinkronizálása..." msgid "System Language:" msgstr "Rendszer nyelve:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS bemenet" @@ -11530,9 +11646,9 @@ msgid "TAS Tools" msgstr "TAS eszközök" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Címkék" @@ -11550,7 +11666,7 @@ msgstr "" msgid "Taiwan" msgstr "Tajvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Pillanatkép készítése" @@ -11558,7 +11674,7 @@ msgstr "Pillanatkép készítése" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11593,7 +11709,7 @@ msgstr "Textúra gyorsítótár pontosság" msgid "Texture Dumping" msgstr "Textúra kimentés" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Textúraszűrés" @@ -11638,13 +11754,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11801,7 +11917,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "A fájlrendszer érvénytelen, vagy nem olvasható." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11928,7 +12044,7 @@ msgid "" msgstr "" "Nem használható ugyanaz a fájl több foglalatban; már használatban van: %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11963,7 +12079,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "A megadott fájl \"{0}\" nem létezik." -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12021,7 +12137,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12045,7 +12161,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Téma" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -12130,7 +12246,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Ez nem vonható vissza!" @@ -12326,7 +12442,7 @@ msgstr "Szálak" msgid "Threshold" msgstr "Küszöbérték" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12345,10 +12461,10 @@ msgstr "" msgid "Timed Out" msgstr "Lejárt az idő" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Cím" @@ -12356,25 +12472,29 @@ msgstr "Cím" msgid "To" msgstr "Eddig:" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Eddig:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Teljes képernyő kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "3D anaglif kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Egymás-mellett 3D kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Egymás-alatt 3D kapcsoló" @@ -12382,28 +12502,28 @@ msgstr "Egymás-alatt 3D kapcsoló" msgid "Toggle All Log Types" msgstr "Minden naplótípus kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Képarány kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Töréspont kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Levágás kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Egyedi textúrák kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB másolatok kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Köd kapcsoló" @@ -12415,31 +12535,31 @@ msgstr "Teljes képernyő kapcsoló" msgid "Toggle Pause" msgstr "Szünet kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "SD kártya kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Textúra kimentés kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "USB billentyűzet kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Sikertelen tokenizálás." @@ -12560,7 +12680,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12590,7 +12710,7 @@ msgstr "USB eszköz emuláció" msgid "USB Emulation" msgstr "USB emuláció" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB emulációs eszközök" @@ -12628,15 +12748,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12668,7 +12788,7 @@ msgstr "" msgid "Unable to read file." msgstr "Nem sikerült beolvasni a fájlt." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12691,11 +12811,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Állapot betöltésének visszavonása" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Állapot mentésének visszavonása" @@ -12713,7 +12833,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Egyesült Államok" @@ -12809,11 +12929,11 @@ msgstr "Ismeretlen(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Ismeretlen(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Végtelen" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "ROM ürítése" @@ -12821,10 +12941,15 @@ msgstr "ROM ürítése" msgid "Unlock Cursor" msgstr "Kurzor feloldása" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 -msgid "Unlocked at %1" +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" msgstr "" +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 +msgid "Unlocked at %1" +msgstr "Feloldva ekkor: %1" + #: Source/Core/DiscIO/FileBlob.cpp:87 msgid "Unpacking" msgstr "Kicsomagolása" @@ -12921,7 +13046,7 @@ msgstr "Függőleges kapcsoló" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Használati statisztika-jelentés beállítások" @@ -13015,7 +13140,7 @@ msgstr "Felhasználónév" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13086,7 +13211,7 @@ msgstr "" msgid "Value" msgstr "Érték" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13174,22 +13299,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Hangerő" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Hangerő le" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Némítás kapcsoló" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Hangerő fel" @@ -13197,7 +13322,7 @@ msgstr "Hangerő fel" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD fájlok (*.wad)" @@ -13298,7 +13423,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Figyelem" @@ -13411,7 +13536,7 @@ msgstr "Engedélyezett USB átjáró eszközök" msgid "Widescreen Hack" msgstr "Szélesvásznú hangolás" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13481,7 +13606,7 @@ msgstr "Wii és Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii mentési fájlok (*.bin);;Minden fájl (*)" @@ -13516,11 +13641,11 @@ msgstr "Világ" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13664,7 +13789,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "A legfrissebb verziót használod ezen a frissítési csatornán." @@ -13729,7 +13854,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -13949,6 +14074,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Dolphin csapat. A “GameCube” és a “Wii” a Nintendo védjegyei. A " +"Dolphin semmilyen módon nem áll kapcsolatban a Nintendóval." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/it.po b/Languages/po/it.po index bef5e6f6f5..e1bdc6e12b 100644 --- a/Languages/po/it.po +++ b/Languages/po/it.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mewster , 2023-2024\n" -"Language-Team: Italian (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Italian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/it/)\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -177,7 +177,7 @@ msgstr "%1 commit più avanti rispetto %2" msgid "%1 doesn't support this feature on your system." msgstr "%1 non supporta questa funzionalità sul tuo sistema." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 non supporta questa funzionalità." @@ -199,7 +199,7 @@ msgstr "%1 è entrato" msgid "%1 has left" msgstr "%1 è uscito" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 ha sbloccato %2/%3 achievement del valore di %4/%5 punti" @@ -211,7 +211,7 @@ msgstr "%1 non è una ROM valida" msgid "%1 is now golfing" msgstr "%1 è in modalità golf" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 sta giocando a %2" @@ -225,7 +225,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 punti" @@ -245,22 +245,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (velocità normale)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "Il valore di %1 è cambiato" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "Il valore di %1 è stato raggiunto" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "Il valore di %1 è stato usato" @@ -268,6 +268,10 @@ msgstr "Il valore di %1 è stato usato" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -288,7 +292,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -301,7 +305,7 @@ msgstr "%1x Nativo (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Nativo (%2x%3) per %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -345,10 +349,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&A proposito di..." +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "&Aggiungi funzione" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Aggiungi punto di interruzione dei dati" @@ -358,23 +366,19 @@ msgstr "&Aggiungi punto di interruzione dei dati" msgid "&Add New Code..." msgstr "&Aggiungi nuovo codice..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Aggiungi funzione" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Aggiungi..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Impostazioni &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Aggiornamento automatico:" @@ -383,14 +387,14 @@ msgid "&Borderless Window" msgstr "&Finestra senza bordi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "&Interrompi al raggiungimento" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Punti di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -402,11 +406,11 @@ msgstr "&Annulla" msgid "&Cheats Manager" msgstr "&Gestore trucchi" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Controlla la presenza di aggiornamenti..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Pulisci simboli" @@ -414,7 +418,7 @@ msgstr "&Pulisci simboli" msgid "&Clone..." msgstr "&Clona..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Codice" @@ -422,18 +426,15 @@ msgstr "&Codice" msgid "&Connected" msgstr "&Connesso" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Impostazioni &Controller" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Copia indirizzo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Copia indirizzo" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Nuovo..." @@ -469,7 +470,7 @@ msgstr "&Modifica..." msgid "&Eject Disc" msgstr "&Espelli disco" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulazione" @@ -494,36 +495,36 @@ msgstr "&Esporta come .gci..." msgid "&File" msgstr "&File" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Font..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Avanza per fotogramma" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Impostazioni camera libera" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Genera simboli da" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Repository &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Impostazioni video" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Aiuto" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Impostazioni tasti di scelta rapida" @@ -547,15 +548,15 @@ msgstr "&Importa..." msgid "&Infinity Base" msgstr "&Base Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Inserisci blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "&Inserisci BLR" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Blending Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -567,11 +568,11 @@ msgstr "&Lingua:" msgid "&Load Branch Watch" msgstr "&Carica Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Carica stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Carica mappa dei simboli" @@ -585,19 +586,19 @@ msgstr "&Carica file all'indirizzo corrente" msgid "&Lock Watches" msgstr "&Blocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Blocca widget" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "&Logga al raggiungimento" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memoria" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Filmato" @@ -605,7 +606,7 @@ msgstr "&Filmato" msgid "&Mute" msgstr "&Muto" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Network" @@ -618,19 +619,19 @@ msgstr "&No" msgid "&Open..." msgstr "&Apri..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opzioni" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Patch funzioni HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Gioca" @@ -638,7 +639,7 @@ msgstr "&Gioca" msgid "&Properties" msgstr "&Proprietà" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Modalità sola-lettura" @@ -646,7 +647,7 @@ msgstr "&Modalità sola-lettura" msgid "&Refresh List" msgstr "&Aggiorna elenco" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registri" @@ -659,12 +660,12 @@ msgstr "&Rimuovi" msgid "&Remove Code" msgstr "&Rimuovi codice" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "&Rinomina simbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Resetta" @@ -676,7 +677,7 @@ msgstr "&Gestione Resource Pack" msgid "&Save Branch Watch" msgstr "&Salva Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Salva mappa dei simboli" @@ -688,11 +689,11 @@ msgstr "&Scansiona carte e-Reader" msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Limite velocità" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Arresta" @@ -700,7 +701,7 @@ msgstr "&Arresta" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Thread" @@ -722,17 +723,17 @@ msgstr "&Rimuovi ROM" msgid "&Unlock Watches" msgstr "&Sblocca espressioni di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Visualizza" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Espressione di controllo" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Sito Web" @@ -744,11 +745,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sì" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' non trovato, non sono stati generati nomi dei simboli" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' non trovato, ora cercherò nomi di funzioni comuni" @@ -768,7 +769,7 @@ msgstr "(Sistema)" msgid "(host)" msgstr "(host)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(nessuno)" @@ -792,7 +793,7 @@ msgstr ", Virgola" msgid "- Subtract" msgstr "- Sottrai" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -870,7 +871,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "Anisotropico 16x" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -882,7 +883,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -918,19 +919,19 @@ msgid "32-bit Unsigned Integer" msgstr "Unsigned Integer 32-bit" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Profondità 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -954,7 +955,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1052,7 +1053,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1091,8 +1092,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Maggiore-di" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Una sessione NetPlay è già in corso!" @@ -1117,7 +1118,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Un disco è già in inserimento." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1130,7 +1131,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Uno stato salvato non può essere caricato senza indicare quale gioco avviare." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1234,7 +1235,7 @@ msgid "Achievement Settings" msgstr "Impostazioni achievement" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Achievement" @@ -1328,7 +1329,7 @@ msgstr "Action Replay: Normal Code {0}: sottotipo {1:08x} ({2}) non valido" msgid "Activate NetPlay Chat" msgstr "Attiva chat NetPlay" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Attivo" @@ -1379,11 +1380,11 @@ msgstr "Aggiungi un nuovo dispositivo USB" msgid "Add Shortcut to Desktop" msgstr "Aggiungi collegamento su Desktop" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Aggiungi un punto di interruzione" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Aggiungi un punto di interruzione dei dati" @@ -1417,13 +1418,13 @@ msgstr "Aggiungi..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Indirizzo" @@ -1442,7 +1443,7 @@ msgstr "Spazio di indirizzo per stato CPU" msgid "Address:" msgstr "Indirizzo:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1531,7 +1532,7 @@ msgstr "Avanzate" msgid "Advanced Settings" msgstr "Impostazioni avanzate" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1608,7 +1609,7 @@ msgstr "Tutto Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1616,7 +1617,7 @@ msgid "All Files" msgstr "Tutti i file" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Tutti i file (*)" @@ -1625,7 +1626,7 @@ msgstr "Tutti i file (*)" msgid "All Float" msgstr "Tutto Float" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tutti i file GC/Wii" @@ -1634,8 +1635,8 @@ msgstr "Tutti i file GC/Wii" msgid "All Hexadecimal" msgstr "Tutto Esadecimale" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tutti i salvataggi di stati di gioco (*.sav *.s##);; Tutti i file (*)" @@ -1659,11 +1660,11 @@ msgstr "Tutti i codici dei giocatori sono sincronizzati." msgid "All players' saves synchronized." msgstr "Tutti i salvataggi dei giocatori sono sincronizzati." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Permetti diverse impostazioni regione" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Permetti report statistiche d'uso" @@ -1723,7 +1724,7 @@ msgstr "Angolo" msgid "Angular velocity to ignore and remap." msgstr "Velocità angolare da ignorare e rimappare." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1735,19 +1736,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualunque regione" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "Accoda signature a" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Accoda ad un fil&e di signature preesistente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "A&pplica file signature..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1763,8 +1764,8 @@ msgstr "Data Apploader" msgid "Apply" msgstr "Applica" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "Applica file di signature" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1775,7 +1776,7 @@ msgstr "Mipmap Detection arbitraria" msgid "Are you sure that you want to delete '%1'?" msgstr "Sei sicuro di voler eliminare '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Sei sicuro di voler eliminare questo file?" @@ -1812,9 +1813,9 @@ msgstr "Rapporto d'aspetto:" msgid "Assemble" msgstr "Converti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Converti istruzione" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "Istruzione assembly" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1875,7 +1876,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplo di 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "Aggiornamento automatico" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Impostazioni aggiornamento automatico" @@ -1899,7 +1904,7 @@ msgstr "Ridimensiona automaticamente la finestra" msgid "Auto-Hide" msgstr "Nascondi automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Individua automaticamente i moduli RSO?" @@ -1916,6 +1921,25 @@ msgstr "" "interna.

Nel dubbio, lascia deselezionato." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" +"Cambia automaticamente il disco di gioco quando richiesto da un gioco con " +"due dischi. È necessario che il gioco venga lanciato in uno dei seguenti " +"modi:
- Dalla lista dei giochi, con entrambi i dischi presenti nella " +"lista.
- Tramite File > Apri o con l'interfaccia a linea di comando, " +"fornendo il percorso a entrambi i dischi.
- Lanciando un file M3U tramite " +"File > Apri o tramite l'interfaccia a linea di comando." +"

Nel dubbio, lascia deselezionato." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Aggiorna automaticamente i valori attuali" @@ -1927,7 +1951,7 @@ msgid "Auxiliary" msgstr "Ausiliario" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -2013,10 +2037,10 @@ msgstr "Offset non valido." msgid "Bad value provided." msgstr "Valore non valido." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -2044,7 +2068,7 @@ msgstr "Priorità base" msgid "Basic" msgstr "Impostazioni di base" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Impostazioni di base" @@ -2109,9 +2133,9 @@ msgstr "" "\n" "Riprova con un personaggio diverso" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Dimensione blocco" @@ -2149,15 +2173,15 @@ msgstr "" "La modalità ponte Bluetooth è abilitata, ma Dolphin è stato compilato senza " "libusb. La modalità ponte non può essere utilizzata." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Avvia in pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "File di backup NAND BootMII (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "File chiavi BootMii (*.bin);;Tutti i file (*)" @@ -2305,31 +2329,31 @@ msgstr "Branch to Link Register (LR saved)" msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Branch" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Interrompi" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "Interrompi &e logga al raggiungimento" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Punto di interruzione" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" "Raggiunto punto di interruzione! Comando di uscita dall'istruzione annullato." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Punti di interruzione" @@ -2428,7 +2452,7 @@ msgstr "Da: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "C&rea file di signature..." @@ -2467,7 +2491,7 @@ msgstr "" msgid "Calculate" msgstr "Calcola" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2536,15 +2560,15 @@ msgstr "Impossibile modificare i cattivi per questo trofeo!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Impossibile trovare Wii Remote con handle di connessione {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Non è possibile avviare una sessione NetPlay se un gioco è in esecuzione!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2595,7 +2619,7 @@ msgstr "Non è possibile generare un codice AR per questo indirizzo." msgid "Cannot refresh without results." msgstr "Non è possibile aggiornare senza risultati." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "Impossibile impostare la cartella GCI con un percorso vuoto." @@ -2643,7 +2667,7 @@ msgstr "Cambia &disco..." msgid "Change Disc" msgstr "Cambia disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Cambia automaticamente disco" @@ -2716,7 +2740,7 @@ msgstr "Cerca codice" msgid "Cheats Manager" msgstr "Gestione codici" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Controlla NAND..." @@ -2728,7 +2752,7 @@ msgstr "Controlla cambiamenti nella lista dei giochi in background" msgid "Check for updates" msgstr "Controlla la presenza di aggiornamenti" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2748,30 +2772,30 @@ msgstr "Cina" msgid "Choose" msgstr "Scegli" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "Scegli la cartella in cui estrarre" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 +msgid "Choose GCI Base Folder" +msgstr "Scegli la cartella base GCI" + +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "Scegli file di input prioritario" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "Scegli file di input secondario" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" msgstr "Scegli un file da aprire" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" +msgid "Choose a File to Open or Create" msgstr "Scegli un file da aprire o creare" -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Scegli file di input prioritario" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Scegli file di input secondario" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Scegli la cartella base GCI" - -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Scegli la cartella in cui estrarre" - #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 msgid "Clamping of rotation about the yaw axis." @@ -2789,7 +2813,7 @@ msgstr "Controller tradizionale" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2799,7 +2823,7 @@ msgstr "Pulisci" msgid "Clear Branch Watch" msgstr "Pulisci Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Pulisci cache" @@ -2820,7 +2844,7 @@ msgstr "&Clona e modifica codice" msgid "Close" msgstr "Chiudi" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Co&nfigurazione" @@ -2844,7 +2868,7 @@ msgstr "Codice:" msgid "Codes received!" msgstr "Codici ricevuti!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Correzione Colore" @@ -2864,7 +2888,7 @@ msgstr "Spazio dei colori" msgid "Column &Visibility" msgstr "&Visibilità colonna" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Combina &due file signature..." @@ -2906,9 +2930,9 @@ msgstr "Compila gli shader prima dell'avvio" msgid "Compiling Shaders" msgstr "Compilazione degli shader" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Compressione" @@ -2933,7 +2957,7 @@ msgstr "Cond." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Condizione" @@ -3093,9 +3117,9 @@ msgstr "Configura output" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Conferma" @@ -3108,7 +3132,7 @@ msgstr "Conferma cambio backend" msgid "Confirm on Stop" msgstr "Arresto su conferma" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3119,7 +3143,7 @@ msgstr "Conferma" msgid "Connect" msgstr "Collega" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Collega Balance Board" @@ -3127,27 +3151,27 @@ msgstr "Collega Balance Board" msgid "Connect USB Keyboard" msgstr "Collega tastiera USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Collega Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Collega Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Collega Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Collega Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Collega Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Connetti Wii Remote" @@ -3192,19 +3216,19 @@ msgstr "Control Stick" msgid "Controller Profile" msgstr "Profilo controller" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Profilo controller 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Profilo controller 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Profilo controller 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Profilo controller 4" @@ -3216,6 +3240,16 @@ msgstr "Impostazioni controller" msgid "Controllers" msgstr "Controller" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3228,7 +3262,7 @@ msgstr "" "HDR.

L'output HDR è richiesto perché questa funzione abbia effetto." "

Nel dubbio, lascia a 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3240,7 +3274,7 @@ msgstr "" "valore alto crea un maggiore effetto di fuori-dallo-schermo, mentre un " "valore più basso potrebbe risultare meno fastidioso." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3254,7 +3288,7 @@ msgstr "" "risoluzione interna, migliori saranno le prestazioni." "

Nel dubbio, seleziona Nativo." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3288,7 +3322,7 @@ msgstr "" "Controlla se usare l'emulazione DSP di alto o basso livello. Il default è " "Attivo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Convergenza" @@ -3393,18 +3427,22 @@ msgstr "" msgid "Copy" msgstr "Copia" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "Copia &funzione" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "Copia &esadecimale" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copia indirizzo" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "Copia &riga di codice" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Copia non riuscita" @@ -3413,18 +3451,14 @@ msgstr "Copia non riuscita" msgid "Copy Hex" msgstr "Copia esadecimale" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "Copia indirizzo tar&get" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copia valore" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "(&l) Copia riga di codice" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Copia indirizzo tar&get" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Copia su A" @@ -3552,8 +3586,8 @@ msgstr "Impossibile riconoscere il file {0}" msgid "Could not save your changes!" msgstr "Impossibile salvare i cambiamenti!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Impossibile avviare processo di aggiornamento: {0}" @@ -3665,7 +3699,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Regione corrente" @@ -3860,24 +3894,24 @@ msgstr "Qualità decodifica:" msgid "Decrease" msgstr "Riduci" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Riduci convergenza" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Riduci profondità" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Diminuisci velocità di emulazione" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Riduci IR" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Slot stato selezionato precedente" @@ -3939,8 +3973,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Elimina" @@ -3958,7 +3992,7 @@ msgstr "Elimina i file selezionati..." msgid "Delete the existing file '{0}'?" msgstr "Eliminare il file esistente '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Profondità" @@ -3973,9 +4007,9 @@ msgstr "Profondità:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrizione" @@ -4024,7 +4058,7 @@ msgstr "Scollegato" msgid "Detect" msgstr "Rileva" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Individuazione moduli RSO" @@ -4032,7 +4066,7 @@ msgstr "Individuazione moduli RSO" msgid "Deterministic dual core:" msgstr "Dual core deterministico:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (più volte al giorno)" @@ -4091,15 +4125,15 @@ msgstr "Disabilita copia filtro" msgid "Disable EFB VRAM Copies" msgstr "Disattiva copie EFB VRAM" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Disabilita limite velocità di emulazione" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Disabilita Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Disabilita Fastmem Arena" @@ -4107,11 +4141,11 @@ msgstr "Disabilita Fastmem Arena" msgid "Disable Fog" msgstr "Disabilita nebbia" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Disabilita cache JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Disabilita grandi mappe degli entry point" @@ -4140,7 +4174,7 @@ msgstr "" "Blocca l'upscaling.

Nel dubbio, lascia " "deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4170,7 +4204,8 @@ msgstr "Disco" msgid "Discard" msgstr "Annulla" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "Impostazioni di visualizzazione" @@ -4205,15 +4240,15 @@ msgstr "Distanza" msgid "Distance of travel from neutral position." msgstr "Distanza di movimento dalla posizione neutrale." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Vuoi cancellare la lista dei nomi dei simboli?" @@ -4223,7 +4258,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Vuoi eliminare %n file di salvataggio selezionato/i?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Vuoi interrompere l'emulazione in corso?" @@ -4244,9 +4279,9 @@ msgstr "Log FIFO Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Preset Dolphin Game Mod" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "File mappa Dolphin (*.map)" @@ -4258,8 +4293,8 @@ msgstr "File signature CSV Dolphin" msgid "Dolphin Signature File" msgstr "File signature Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmati TAS Dolphin (*.dtm)" @@ -4318,14 +4353,6 @@ 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:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolhin userà questa impostazione per i titoli di cui non potrà riconoscere " -"automaticamente la regione." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Il sistema codici di Dolphin è attualmente disabilitato." @@ -4335,7 +4362,7 @@ msgstr "Il sistema codici di Dolphin è attualmente disabilitato." msgid "Domain" msgstr "Dominio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Non aggiornare" @@ -4392,18 +4419,18 @@ msgstr "Scaricati %1 codici. (aggiunti %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" "Scarica le cover di gioco da GameTDB.com per visualizzarle nella " "visualizzazione a griglia della lista di giochi. Se quest'opzione è " -"deselezionata, la lista giochi visualizzerà un logo generato dai file di " -"salvataggio del gioco, o un logo generico in loro assenza.

La " -"visualizzazione a lista userà sempre il logo del file di salvataggio." +"deselezionata, la lista giochi visualizzerà un logo dai dati di salvataggio " +"del gioco, o un logo generico in loro assenza.

La visualizzazione a " +"lista userà sempre il logo del file di salvataggio." "

Nel dubbio, lascia selezionato." #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. @@ -4445,7 +4472,7 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dump audio" @@ -4457,7 +4484,7 @@ msgstr "Dump texture base" msgid "Dump EFB Target" msgstr "Dump del target EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dump dei frame" @@ -4591,16 +4618,16 @@ msgstr "Est Asia" msgid "Edit Breakpoint" msgstr "Modifica punto di interruzione" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "Modifica condizionale" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "Modifica espressione condizionale" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Modifica..." @@ -4624,7 +4651,7 @@ msgstr "Effettivo" msgid "Effective priority" msgstr "Priorità effettiva" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4692,7 +4719,7 @@ msgstr "" "Attuale: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Velocità di emulazione" @@ -4712,7 +4739,7 @@ msgstr "Abilita layer di validazione API" msgid "Enable Audio Stretching" msgstr "Abilita audio stretching" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Abilita trucchi" @@ -4736,9 +4763,9 @@ msgstr "Abilita presenza Discord" msgid "Enable Dual Core" msgstr "Abilita Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Abilita Dual Core (aumenta la velocità)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "Abilita Dual Core (speedhack)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4798,7 +4825,7 @@ msgstr "" "disattivazione della Modalità Hardcore durante il gioco ne richiede la " "chiusura prima che possa essere riabilitata nuovamente." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Abilita JIT Block Profiling" @@ -4840,7 +4867,7 @@ msgstr "Abilita modalità spettatore" msgid "Enable Unofficial Achievements" msgstr "Abilita achievement non ufficiali" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Abilita report statistiche d'uso" @@ -4947,7 +4974,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -5000,7 +5027,7 @@ msgstr "" "La maggior parte dei giochi ne è compatibile.

Nel " "dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5067,6 +5094,20 @@ msgstr "" "Meteo e i Canali Nintendo\n" "Leggi i Termini del Servizio su: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" +"Abilita l'uso dei codici AR e Gecko, che possono essere usati per modificare " +"il comportamento dei giochi. Questi codici possono essere configurati con il " +"Cheat Manager nel menu Strumenti.

L'impostazione non può essere " +"modificata a emulazione avviata.

Nel dubbio, lascia " +"deselezionato." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -5105,7 +5146,7 @@ msgstr "" "\n" "Importazione annullata." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "Fine Ind" @@ -5160,14 +5201,14 @@ msgstr "" "Inserisci l'indirizzo IP e la porta dell'istanza tapserver a cui vuoi " "connetterti." -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5206,26 +5247,26 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5242,9 +5283,9 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Errore" @@ -5277,7 +5318,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Errore durante l'ottenimento della lista delle sessioni: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Si è verificato un errore durante il caricamento dei texture pack" @@ -5376,7 +5417,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -5389,15 +5430,15 @@ msgstr "Ubershader esclusivi" msgid "Exit" msgstr "Esci" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Previsto + o chiusa paren." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Argomenti previsti:" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "Argomenti previsti: {0}" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Prevista chiusa paren." @@ -5409,19 +5450,19 @@ msgstr "Virgola prevista." msgid "Expected end of expression." msgstr "Termine di espressione prevista." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Previsto nome dell'input." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Prevista apri paren." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Inizio di espressione prevista." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Prevista nome variabile." @@ -5429,7 +5470,7 @@ msgstr "Prevista nome variabile." msgid "Experimental" msgstr "Sperimentale" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Esporta tutti i salvataggi Wii" @@ -5440,11 +5481,11 @@ msgstr "Esporta tutti i salvataggi Wii" msgid "Export Failed" msgstr "Esportazione non riuscita" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Esporta registrazione" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Esporta registrazione..." @@ -5472,7 +5513,7 @@ msgstr "Esporta come .&gcs..." msgid "Export as .&sav..." msgstr "Esporta come .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5500,35 +5541,35 @@ msgstr "Esterno" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Estrai certificati da NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Estrai disco intero..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Estrai partizione intera..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Estrai file..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Estrai file..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Estrai dati di sistema..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Estrazione di tutti i file..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Estrazione cartella..." @@ -5558,7 +5599,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Impossibile aggiungere il file di signature '%1'" @@ -5632,7 +5673,7 @@ msgstr "" "Impossibile eliminare la memory card NetPlay. Controlla di avere i corretti " "permessi di scrittura." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Fallita la rimozione del file selezionato." @@ -5661,15 +5702,15 @@ msgstr "Fallita l'esportazione di %n su %1 file di salvataggio." msgid "Failed to export the following save files:" msgstr "Fallita l'esportazione dei seguenti file di salvataggio:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Fallita estrazione dei certificati dalla NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Estrazione del file non riuscita." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Fallita estrazione dei dati di sistema." @@ -5691,14 +5732,14 @@ msgstr "Impossibile trovare uno o più simboli D3D" msgid "Failed to import \"%1\"." msgstr "Importazione di \"%1\" non riuscita." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5706,7 +5747,7 @@ msgstr "" "Fallita l'importazione del salvataggio. Il file sembra corrotto o non è un " "file di salvataggio Wii valido." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5717,7 +5758,7 @@ msgstr "" "ripararla (Strumenti -> Gestisci NAND -> Controlla NAND...), quindi importa " "di nuovo il salvataggio." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Inizializzazione fallita" @@ -5740,11 +5781,11 @@ msgid "Failed to install pack: %1" msgstr "Fallita installazione del pack: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Fallita installazione del titolo nella NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5752,8 +5793,8 @@ msgstr "" "Fallito l'ascolto sulla porta %1. C'è già un'altra istanza di un server " "NetPlay in esecuzione?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Fallito caricamento del modulo RSO a %1" @@ -5765,7 +5806,7 @@ msgstr "Caricamento d3d11.dll non riuscito" msgid "Failed to load dxgi.dll" msgstr "Caricamento dxgi.dll non riuscito" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Fallita l'apertura del file mappa '%1'" @@ -5806,7 +5847,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "Fallita l'apertura di \"{0}\" per la scrittura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Fallita l'apertura di '%1'" @@ -5849,7 +5890,7 @@ msgstr "" msgid "Failed to open file." msgstr "Impossibile aprire il file." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Impossibile avviare il server" @@ -6016,19 +6057,19 @@ msgstr "Fallito il salvataggio dello snapshot Branch Watch \"%1\"" msgid "Failed to save FIFO log." msgstr "Fallito il salvataggio del log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Impossibile salvare la mappa del codice nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Impossibile salvare il file di signature '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Impossibile salvare la mappa dei simboli nel percorso '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Impossibile salvare nel file di signature '%1'" @@ -6088,8 +6129,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Errore" @@ -6097,11 +6138,12 @@ msgstr "Errore" msgid "Fair Input Delay" msgstr "Ritardo input imparziale" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Regione alternativa" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Regione alternativa:" @@ -6139,9 +6181,9 @@ msgstr "Tipo di figura" msgid "File Details" msgstr "Dettagli del file" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Formato del file" @@ -6153,20 +6195,20 @@ msgstr "Formato del file:" msgid "File Info" msgstr "Info file" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nome file" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Percorso:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Dimensioni del file" @@ -6271,8 +6313,8 @@ msgstr "Flag" msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "Segui &flusso" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -6345,7 +6387,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:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6361,7 +6403,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6411,20 +6453,20 @@ msgstr "Indirizzi trovatI: %n" msgid "Frame %1" msgstr "Frame %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avanza di un fotogramma" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Riduci velocità avanzamento frame" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Aumenta velocità avanzamento frame" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Reimposta velocità avanzamento frame" @@ -6485,11 +6527,11 @@ msgstr "" msgid "FreeLook" msgstr "CameraLibera" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Camera libera" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Abilita/Disabilita camera libera" @@ -6523,11 +6565,12 @@ msgstr "Da:" msgid "FullScr" msgstr "Schermo intero" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funzione" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "Impostazioni funzionalità" @@ -6547,7 +6590,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "Percorso cartuccia GBA:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "Core GBA" @@ -6563,11 +6606,11 @@ msgstr "Impostazioni GBA" msgid "GBA TAS Input %1" msgstr "GBA TAS Input %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "Volume GBA" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "Dimensioni finestra GBA" @@ -6703,11 +6746,11 @@ msgstr "Gioco" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Schede di gioco Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6743,8 +6786,8 @@ msgstr "Gamma di gioco" msgid "Game Gamma:" msgstr "Gamma di gioco:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID gioco" @@ -6875,7 +6918,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Codici Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6895,14 +6939,23 @@ msgid "Generate Action Replay Code(s)" msgstr "Codici Action Replay generati" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Genera una nuova identità statistiche" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" +"Genera un nuovo ID anonimo per le tue statistiche d'utilizzo. Dissocerà " +"qualunque futura statistica dalle tue statistiche precedenti." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Codici AR generati." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Generati nomi dei simboli da '%1'" @@ -6920,7 +6973,7 @@ msgstr "Germania" msgid "GetDeviceList failed: {0}" msgstr "Fallita GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6953,7 +7006,7 @@ msgstr "Video" msgid "Graphics Mods" msgstr "Mod grafiche" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Settaggi grafici" @@ -6962,7 +7015,7 @@ msgstr "Settaggi grafici" msgid "Graphics mods are currently disabled." msgstr "Le mod grafiche sono attualmente disabilitate." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6989,7 +7042,7 @@ msgstr "Verde sinistro" msgid "Green Right" msgstr "Verde destro" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Vista a griglia" @@ -7071,7 +7124,7 @@ msgstr "Nascondi" msgid "Hide &Controls" msgstr "Nascondi &controlli" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Nascondi tutto" @@ -7089,7 +7142,7 @@ msgstr "Nascondi GBA remoti" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" @@ -7097,7 +7150,7 @@ msgstr "" "trova in primo piano.

Nel dubbio, seleziona "" "Al movimento"." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Alta" @@ -7165,7 +7218,7 @@ msgstr "Hostname" msgid "Hotkey Settings" msgstr "Impostazioni Tasti di Scelta Rapida" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7291,11 +7344,11 @@ msgstr "" "Adatto a giochi a turni dipendenti dalle tempistiche dei controlli, come il " "golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Generazione identità" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7349,6 +7402,23 @@ msgstr "" "per testing.

Nel dubbio, lascia deselezionato." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" +"Se selezionato, Dolphin può raccogliere dati sulle proprie performance, " +"sull'utilizzo delle feature, sui giochi emulati, su configurazioni e dati " +"del tuo hardware e sistema operativo installati.

Non verranno " +"raccolti dati privati. Questi dati ci aiutano a capire come giochi e " +"giocatori utilizzano Dolphin per indicarci dove dobbiamo impegnarci " +"maggiormente. Ci permettono anche di scovare configurazioni particolari che " +"causano bug o problemi di performance e stabilità." + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7421,7 +7491,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Importa backup NAND BootMII..." @@ -7436,15 +7506,15 @@ msgstr "Importazione non riuscita" msgid "Import Save File(s)" msgstr "Importa file di salvataggio" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importa salvataggio Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importazione di backup NAND in corso" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7512,24 +7582,24 @@ msgstr "Valore tempo di gioco non valido!" msgid "Increase" msgstr "Aumenta" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Aumenta convergenza" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Aumenta profondità" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Aumenta velocità di emulazione" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Aumenta IR" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Slot stato selezionato successivo" @@ -7581,8 +7651,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informazioni" @@ -7596,10 +7666,10 @@ msgstr "Inject" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Input" @@ -7618,13 +7688,10 @@ msgid "Insert &BLR" msgstr "Inserisci &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Inserisci &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Inserisci &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserisci scheda SD" @@ -7642,7 +7709,7 @@ msgstr "Partizione di installazione (%1)" msgid "Install Update" msgstr "Installa aggiornamento" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Installa WAD..." @@ -7650,8 +7717,9 @@ msgstr "Installa WAD..." msgid "Install to the NAND" msgstr "Installa su NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Istr." @@ -7665,7 +7733,7 @@ msgstr "Istruzione" msgid "Instruction Breakpoint" msgstr "Punto di interruzione" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Istruzione:" @@ -7674,7 +7742,7 @@ msgstr "Istruzione:" msgid "Instruction: %1" msgstr "Istruzione: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7743,8 +7811,8 @@ 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:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Risoluzione interna" @@ -7761,7 +7829,7 @@ msgstr "Errore interno durante la generazione del codice AR." msgid "Interpreter (slowest)" msgstr "Interpreter (il più lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7769,7 +7837,7 @@ msgstr "Interpreter Core" msgid "Invalid Expression." msgstr "Espressione non valida" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "JSON non valido ricevuto dal servizio di auto-aggiornamento : {0}" @@ -7777,7 +7845,7 @@ msgstr "JSON non valido ricevuto dal servizio di auto-aggiornamento : {0}" msgid "Invalid Mixed Code" msgstr "Codice misto invalido" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Pack non valido %1 fornito: %2" @@ -7786,7 +7854,7 @@ msgstr "Pack non valido %1 fornito: %2" msgid "Invalid Player ID" msgstr "ID giocatore non valido" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Indirizzo del modulo RSO non valido: %1" @@ -7868,11 +7936,11 @@ msgstr "Italia" msgid "Item" msgstr "Oggetto" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "Disattiva linking dei blocchi JIT" @@ -7880,47 +7948,47 @@ msgstr "Disattiva linking dei blocchi JIT" msgid "JIT Blocks" msgstr "Blocchi JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7932,14 +8000,15 @@ msgstr "Ricompilatore JIT per ARM64 (consigliato)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Ricompilatore JIT per x86-64 (consigliato)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "Registro cache JIT Off" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7950,11 +8019,11 @@ msgstr "" "cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo " "problema nel bug tracker. Dolphin ora terminerà." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT non è attivo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Giappone" @@ -7978,7 +8047,7 @@ msgstr "" "Kaos è l'unico cattivo per questo trofeo ed è sempre sbloccato. Non serve " "modificare nulla!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Rimani in esecuzione" @@ -8013,7 +8082,7 @@ msgstr "Controller tastiera" msgid "Keys" msgstr "Tasti" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -8021,7 +8090,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Kicka giocatore" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Corea" @@ -8160,6 +8229,19 @@ msgstr "" "Click sinistro/destro per configurare l'output.\n" "Click centrale per cancellare." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" +"Ti permette di usare lingue e impostazioni di regione specifiche che il " +"gioco potrebbe non supportare. Può causare crash e bug.

Questa " +"impostazione non può essere cambiata durante l'emulazione." +"

Nel dubbio, lascia deselezionato." + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8193,11 +8275,11 @@ msgstr "Luce" msgid "Limit Chunked Upload Speed:" msgstr "Limite velocità upload a blocchi:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Lista colonne" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Vista a lista" @@ -8207,17 +8289,17 @@ msgstr "Ascolto" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carica" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Carica file mappa &invalida..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Carica &altro file mappa..." @@ -8226,7 +8308,7 @@ msgid "Load Branch Watch &From..." msgstr "&Carica Branch Watch da..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "Carica snapshot Branch Watch" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -8237,7 +8319,7 @@ msgstr "Carica texture personalizzate" msgid "Load File" msgstr "Carica file" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Carica menu principale GameCube" @@ -8245,16 +8327,21 @@ msgstr "Carica menu principale GameCube" msgid "Load Host's Save Data Only" msgstr "Carica solo salvataggio dell'host" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Carica ultimo stato di gioco" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "Carica file mappa" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Carica percorso:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Carica ROM" @@ -8262,104 +8349,104 @@ msgstr "Carica ROM" msgid "Load Slot" msgstr "Carica slot" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Carica stato di gioco" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Carica stato di gioco in posizione 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Carica stato di gioco in posizione 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Carica stato di gioco in posizione 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Carica stato di gioco in posizione 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Carica stato di gioco in posizione 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Carica stato di gioco in posizione 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Carica stato di gioco in posizione 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Carica stato di gioco in posizione 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Carica stato di gioco in posizione 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Carica stato di gioco in posizione 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Carica stato di gioco da slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Carica stato di gioco da slot 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Carica stato di gioco da slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Carica stato di gioco da slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Carica stato di gioco da slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Carica stato di gioco da slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Carica stato di gioco da slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Carica stato di gioco da slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Carica stato di gioco da slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Carica stato di gioco da slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Carica stato da file" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Carica stato dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Carica stato da slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Carica menu di sistema Wii %1" @@ -8367,20 +8454,15 @@ msgstr "Carica menu di sistema Wii %1" msgid "Load and Write Host's Save Data" msgstr "Carica e scrivi salvataggio dell'host" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Carica dallo slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Carica da slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Carica mappa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Carica menu di sistema vWii %1" @@ -8388,7 +8470,7 @@ msgstr "Carica menu di sistema vWii %1" msgid "Load..." msgstr "Carica..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Caricati simboli da '%1'" @@ -8418,14 +8500,14 @@ msgstr "Locale" msgid "Lock Mouse Cursor" msgstr "Blocca il cursore del mouse" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Bloccato" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" @@ -8434,7 +8516,7 @@ msgstr "" "dubbio, lascia deselezionato.
" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8444,10 +8526,11 @@ msgid "Log Configuration" msgstr "Configurazione log" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Login" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Log della copertura delle istruzioni JIT" @@ -8490,7 +8573,7 @@ msgstr "Loop" msgid "Lost connection to NetPlay server..." msgstr "Persa la connessione al server NetPlay..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Bassa" @@ -8553,9 +8636,9 @@ msgstr "Assicurati che il valore del tempo di gioco sia valido!" 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:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Produttore" @@ -8564,7 +8647,7 @@ msgstr "Produttore" msgid "Maker:" msgstr "Produttore:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8577,7 +8660,7 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Gestisci NAND" @@ -8617,7 +8700,7 @@ msgstr "" "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:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Medio" @@ -8633,7 +8716,7 @@ msgstr "Punto di interruzione dei dati" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Gestione Memory Card" @@ -8662,7 +8745,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:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8674,7 +8757,7 @@ msgstr "" "consiglia di mantenere un backup di entrambe le NAND. Sei sicuro di voler " "continuare?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8758,8 +8841,8 @@ msgstr "Modifica slot" msgid "Modifying Skylander: %1" msgstr "Modifica Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Moduli trovati: %1" @@ -8801,7 +8884,7 @@ msgstr "Visibilità puntatore mouse" msgid "Move" msgstr "Muovi" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Filmato" @@ -8827,10 +8910,10 @@ msgstr "Moltiplicatore" msgid "N&o to All" msgstr "N&o a tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Controllo NAND" @@ -8839,8 +8922,8 @@ msgstr "Controllo NAND" msgid "NKit Warning" msgstr "Attenzione NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8849,7 +8932,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8871,8 +8954,8 @@ msgstr "" "gioco permette di scegliere un valore gamma, impostalo qui." "

Nel dubbio, lascia a 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8885,11 +8968,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Nome" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Nome del nuovo tag:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Nome del tag da rimuovere:" @@ -8976,7 +9059,7 @@ msgid "Never Auto-Update" msgstr "Disabilita aggiornamento automatico" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nuovo" @@ -9001,7 +9084,7 @@ msgstr "Nuova ricerca" msgid "New Tag..." msgstr "Nuovo tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Generata nuova identità" @@ -9009,12 +9092,13 @@ msgstr "Generata nuova identità" msgid "New instruction:" msgstr "Nuova istruzione:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New 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 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Profilo di gioco successivo" @@ -9022,8 +9106,9 @@ msgstr "Profilo di gioco successivo" msgid "Next Match" 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 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Profilo successivo" @@ -9110,7 +9195,7 @@ msgstr "Non sono state selezionate mod grafiche" msgid "No input" msgstr "Nessun input" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Non sono stati rilevati problemi." @@ -9158,7 +9243,7 @@ msgstr "" "del filmato." #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9378,7 +9463,7 @@ msgstr "" "funzione e code path condizionali percorsi solo quando un'azione viene " "eseguita nel software emulato." -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Documentazione online" @@ -9386,7 +9471,7 @@ msgstr "&Documentazione online" msgid "Only Show Collection" msgstr "Mostra solo collezione" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9394,7 +9479,7 @@ msgstr "" "Inserisci solo simboli con prefisso:\n" "(Vuoto per tutti i simboli)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9417,13 +9502,17 @@ msgstr "Apri &percorso file" msgid "Open &User Folder" msgstr "Apri cartella &utente" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "Apri achievement" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Apri cartella..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "Apri log FIFO" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -9525,7 +9614,7 @@ msgstr "Altro" msgid "Other Partition (%1)" msgstr "Altra partizione (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Altri tasti rapidi" @@ -9542,7 +9631,7 @@ msgstr "Altro gioco..." msgid "Output" msgstr "Output" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Ricampionamento Output" @@ -9550,16 +9639,16 @@ msgstr "Ricampionamento Output" msgid "Output Resampling:" msgstr "Ricampionamento Output:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Sovrascritto" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Riproduci registrazione input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9588,7 +9677,7 @@ msgstr "File immagine PNG (*.png);; Tutti i File (*)" msgid "PPC Size" msgstr "Dimensione PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9601,7 +9690,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pad" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parametri" @@ -9664,7 +9753,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "Pausa Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pausa al termine del filmato" @@ -9716,7 +9805,7 @@ msgstr "Velocità massima per oscillare verso l'esterno" msgid "Per-Pixel Lighting" msgstr "Illuminazione per-pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Avviare aggiornamento di sistema online" @@ -9746,11 +9835,11 @@ msgstr "Fisico" msgid "Physical address space" msgstr "Spazio dell'indirizzo fisico" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Scegli un font di debug" @@ -9766,8 +9855,8 @@ msgstr "Inclinazione in basso" msgid "Pitch Up" msgstr "Inclinazione in alto" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Piattaforma" @@ -9779,7 +9868,7 @@ msgstr "Gioca" msgid "Play / Record" msgstr "Avvia / Registra" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Riproduci registrazione" @@ -9878,7 +9967,7 @@ msgstr "Slot portale" 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:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Effetto di post-processing" @@ -9931,7 +10020,7 @@ msgstr "" msgid "Presets" msgstr "Preimpostazioni" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Premi il pulsante Sync" @@ -9954,9 +10043,9 @@ msgstr "" "

Non raccomandato, usa soltanto se le altre opzioni " "non danno i risultati sperati." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Profilo di gioco precedente" @@ -9964,8 +10053,9 @@ msgstr "Profilo di gioco precedente" msgid "Previous Match" 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 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Profilo precedente" @@ -10015,13 +10105,13 @@ msgstr "" msgid "Profile" msgstr "Profilo" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -10040,11 +10130,11 @@ msgstr "" msgid "Public" msgstr "Pubblica" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Pulisci cache lista giochi" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Posiziona le ROM IPL in User/GC/." @@ -10071,7 +10161,7 @@ msgstr "Qualità del decoder DPLII. La latenza audio aumenta con la qualità." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Conferma" @@ -10096,11 +10186,11 @@ msgstr "R-Analogico" msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "Moduli RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "Auto-rilevamento RSO" @@ -10137,13 +10227,13 @@ msgstr "Raw" msgid "Raw Internal Resolution" msgstr "Risoluzione interna originale" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "&Sostituisci istruzione" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Lettura" @@ -10166,7 +10256,7 @@ msgstr "Sola lettura" msgid "Read or Write" msgstr "Lettura o scrittura" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Modalità sola-lettura" @@ -10225,7 +10315,7 @@ msgstr "Rosso sinistro" msgid "Red Right" msgstr "Rosso destro" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10277,8 +10367,8 @@ msgstr "Valori attuali aggiornati." msgid "Refreshing..." msgstr "Aggiornamento..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regione" @@ -10299,7 +10389,8 @@ msgstr "Input relativo" msgid "Relative Input Hold" msgstr "Pressione relativa input" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "Rilasci (ogni qualche mese)" @@ -10328,7 +10419,7 @@ msgstr "Rimuovi dati inutilizzati (irreversibile)" msgid "Remove Tag..." msgstr "Rimuovi tag..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Rimuovi tag" @@ -10344,8 +10435,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Rinomina simbolo" +msgid "Rename Symbol" +msgstr "&Rinomina simbolo" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10381,7 +10472,7 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10393,7 +10484,7 @@ msgstr "Reimposta" msgid "Reset All" msgstr "Reimposta tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Reimposta ignora avvisi di errore" @@ -10445,8 +10536,8 @@ msgstr "Riavvio necessario" msgid "Restore Defaults" msgstr "Ripristina predefiniti" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "Ripristina istruzione" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -10613,20 +10704,20 @@ msgstr "" msgid "Rumble" msgstr "Vibrazione" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "&Esegui fino al cursore" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Avvia i Core GBA in thread dedicati" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "Esegui fino a" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "Esegui fino a (ignorando i punti di interruzione)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -10696,11 +10787,11 @@ msgstr "Contesto SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Sal&va codice" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Sal&va stato di gioco" @@ -10712,7 +10803,7 @@ msgstr "Sicura" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10727,22 +10818,34 @@ msgid "Save Branch Watch &As..." msgstr "&Salva Branch Watch come..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" msgstr "Salva snapshot Branch Watch" +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "Salva file combinato in output come" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "Salva immagine convertita" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Esporta salvataggio" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "Salva log FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "Salva con nome" #. i18n: Noun (i.e. the data saved by the game) @@ -10754,15 +10857,19 @@ msgstr "Salvataggio di gioco" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "File di salvataggio di gioco (*.sav);;Tutti i file (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Importa salvataggio" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "Salva file mappa" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Salva sul più vecchio stato di gioco" @@ -10770,73 +10877,77 @@ msgstr "Salva sul più vecchio stato di gioco" msgid "Save Preset" msgstr "Salva preset" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Salva file registrazione come" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "Salva file di signature" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Salva stato di gioco" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Salva stato di gioco nello slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Salva stato di gioco nello slot 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Salva stato di gioco nello slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Salva stato di gioco nello slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Salva stato di gioco nello slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Salva stato di gioco nello slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Salva stato di gioco nello slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Salva stato di gioco nello slot 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Salva stato di gioco nello slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Salva stato di gioco nello slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Salva stato su file" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Salva stato su slot più vecchio" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Salva stato nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Salva stato su slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Salva mappa dei simboli &come..." @@ -10856,11 +10967,7 @@ msgstr "Salva come preset..." msgid "Save as..." msgstr "Salva come..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Salva file combinato in output come" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10874,19 +10981,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Salva nella stessa cartella della ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Salva file mappa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Salva file di signature" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Salva nello slot selezionato" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Salva su slot %1 - %2" @@ -10922,7 +11021,7 @@ msgstr "Screenshot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Cerca" @@ -10951,7 +11050,7 @@ msgstr "" "La ricerca nello spazio di indirizzo virtuale non è attualmente possibile. " "Esegui il gioco per un po', quindi riprova." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Cerca un'istruzione" @@ -10959,7 +11058,7 @@ msgstr "Cerca un'istruzione" msgid "Search games..." msgstr "Cerca giochi..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Ricerca istruzione" @@ -10996,7 +11095,7 @@ msgstr "Seleziona" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" "Seleziona il file di l'auto-save per lo snapshot Branch Watch (per la " @@ -11007,7 +11106,7 @@ msgid "Select Dump Path" msgstr "Seleziona percorso dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Seleziona cartella di estrazione" @@ -11015,18 +11114,22 @@ msgstr "Seleziona cartella di estrazione" msgid "Select Figure File" msgstr "Seleziona file statuina" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Seleziona BIOS GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Seleziona ROM GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Seleziona percorso dei salvataggi GBA" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Seleziona ultimo stato" @@ -11035,6 +11138,10 @@ msgstr "Seleziona ultimo stato" msgid "Select Load Path" msgstr "Seleziona percorso da caricare" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "Seleziona backup NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Seleziona percorso Resource Pack" @@ -11043,6 +11150,14 @@ msgstr "Seleziona percorso Resource Pack" msgid "Select Riivolution XML file" msgstr "Seleziona file Riivolution XML" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "Seleziona immagine scheda SD" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "Seleziona file di salvataggio" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Seleziona collezione Skylander" @@ -11051,58 +11166,62 @@ msgstr "Seleziona collezione Skylander" msgid "Select Skylander File" msgstr "Seleziona file Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Seleziona slot %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Seleziona stato di gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Seleziona slot di stato" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Seleziona slot di stato 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Seleziona slot di stato 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Seleziona slot di stato 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Seleziona slot di stato 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Seleziona slot di stato 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Seleziona slot di stato 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Seleziona slot di stato 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Seleziona slot di stato 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Seleziona slot di stato 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Seleziona slot di stato 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "Seleziona un titolo da installare su NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Seleziona percorso WFS" @@ -11120,24 +11239,20 @@ msgstr "Seleziona una cartella" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Seleziona un file" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" 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" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Seleziona un'immagine scheda SD" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Seleziona un file" @@ -11146,19 +11261,15 @@ msgstr "Seleziona un file" msgid "Select a game" msgstr "Seleziona un gioco" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Seleziona un titolo da installare su NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Seleziona carte e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Scegli l'indirizzo del modulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Seleziona la registrazione da eseguire" @@ -11166,23 +11277,6 @@ msgstr "Seleziona la registrazione da eseguire" msgid "Select the Virtual SD Card Root" msgstr "Seleziona la cartella principale per la scheda SD virtuale" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Seleziona il file di salvataggio" - -#: 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: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" @@ -11260,7 +11354,7 @@ msgstr "" "\"Risoluzione interna corretta per il rapporto d'aspetto\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11336,6 +11430,45 @@ msgstr "" "più compatibile.

Nel dubbio, seleziona OpenGL." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" +"Seleziona quale ramo d'aggiornamento Dolphin userà per verificare la " +"presenza di aggiornamenti all'avvio. Se si trova un nuovo aggiornamento, " +"Dolphin ti mostrerà una lista di modifiche fatte dalla tua versione, e ti " +"chiederà se vuoi aggiornare.

Il ramo Dev possiede la versione più " +"recente, spesso aggiornata più volte al giorno. Seleziona questo ramo se " +"vuoi le più recenti funzionalità e miglioramenti.

Il ramo Release " +"viene aggiornato a distanza di mesi. Alcuni motivi per cui potresti voler " +"scegliere questo ramo:
- Vuoi usare versioni che sono state testate più a " +"lungo.
- NetPlay richiede che i giocatori abbiano la stessa versione in " +"uso, e spesso la maggior parte dei giocatori usa l'ultima versione da " +"Release .
- Usi frequentemente il sistema di salvataggio di stato, non " +"sempre compatibile con versioni precedenti di Dolphin. Se è il tuo caso, " +"assicurati di fare un salvataggio in-game prima di aggiornare (cioè come se " +"salvassi usando una vera console GameCube o Wii), quindi carica questo " +"salvataggio dopo aver aggiornato Dolphin e prima di fare un nuovo " +"salvataggio di stato di gioco.

Selezionando \"Non aggiornare\" " +"Dolphin non verificherà mai la presenza di aggiornamenti." +"

Nel dubbio, seleziona Releases." + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Invia" @@ -11344,6 +11477,20 @@ msgstr "Invia" msgid "Sensor Bar Position:" msgstr "Posizione della Sensor Bar: " +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" +"Separa l'emulazione di CPU e GPU su thread separati. Riduce il peso del " +"thread singolo distribuendo il lavoro tra due core, il che di solito " +"migliora le performance. Può tuttavia causare bug e crash.

Questa " +"impostazione non può essere cambiata durante l'emulazione." +"

Nel dubbio, lascia selezionato." + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11377,39 +11524,35 @@ msgstr "Imposta &valore" msgid "Set Brea&kpoint" msgstr "Imposta &punto di interruzione" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "Seleziona file per la memory card dello slot A" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "Seleziona file per la memory card dello slot B" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Imposta PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "Imposta indirizzo di t&ermine del simbolo" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "Imposta dimensione del &simbolo" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "Imposta indirizzo di termine del simbolo" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Imposta come ISO &predefinita" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Seleziona file per la memory card dello slot A" - -#: 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:594 -msgid "Set symbol &end address" -msgstr "Imposta indirizzo di t&ermine del simbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Imposta dimensione del &simbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Imposta indirizzo di termine del simbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Imposta dimensione del simbolo (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11426,7 +11569,7 @@ msgstr "Imposta la lingua di sistema del Wii" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11444,10 +11587,19 @@ msgstr "" "Imposta la latenza in millisecondi. Valori maggiori possono correggere un " "audio gracchiante. Solo per alcuni backend." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" +"Imposta la regione per i titoli per cui non è possibile determinarla " +"automaticamente.

Non si può cambiare a emulazione avviata." + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" "Imposta lo stile dell'interfaccia utente di Dolphin. Qui saranno presenti e " @@ -11503,11 +11655,11 @@ msgstr "Controller Shinkansen" msgid "Show % Speed" msgstr "Mostra velocità %" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Mostra finestra di &log" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Mostra barra degli s&trumenti" @@ -11515,15 +11667,15 @@ msgstr "Mostra barra degli s&trumenti" msgid "Show Active Title in Window Title" msgstr "Mostra gioco corrente nella barra del titolo" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Mostra tutto" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Mostra Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Mostra gioco corrente su Discord" @@ -11532,7 +11684,7 @@ msgstr "Mostra gioco corrente su Discord" msgid "Show Disabled Codes First" msgstr "Mostra prima codici inattivi" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Mostra ELF/DOL" @@ -11545,7 +11697,7 @@ msgstr "Mostra prima codici attivi" msgid "Show FPS" msgstr "Mostra FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Mostra contatore frame" @@ -11553,15 +11705,15 @@ msgstr "Mostra contatore frame" msgid "Show Frame Times" msgstr "Mostra tempi frame" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Mostra Francia" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Mostra GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Mostra Germania" @@ -11569,27 +11721,27 @@ msgstr "Mostra Germania" msgid "Show Golf Mode Overlay" msgstr "Mostra overlay modalità golf" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Mostra base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Mostra tasti di input" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Mostra Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Mostra JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Mostra Corea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Mostra contatore lag" @@ -11597,7 +11749,7 @@ msgstr "Mostra contatore lag" msgid "Show Language:" msgstr "Mostra lingua:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Mostra &configurazione log" @@ -11609,7 +11761,7 @@ msgstr "Mostra messaggi NetPlay" msgid "Show NetPlay Ping" msgstr "Mostra ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Mostra Olanda" @@ -11617,12 +11769,12 @@ msgstr "Mostra Olanda" msgid "Show On-Screen Display Messages" msgstr "Mostra messaggi su schermo" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Mostra PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Mostra PC" @@ -11630,7 +11782,7 @@ msgstr "Mostra PC" msgid "Show Performance Graphs" msgstr "Mostra grafico di performance" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Mostra piattaforme" @@ -11638,23 +11790,23 @@ msgstr "Mostra piattaforme" msgid "Show Projection Statistics" msgstr "Mostra informazioni di proiezione" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Mostra regioni" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Mostra contatore re-registrazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Mostra Russia" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Mostra portale Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Mostra Spagna" @@ -11666,19 +11818,23 @@ msgstr "Mostra colori velocità" msgid "Show Statistics" msgstr "Mostra informazioni" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Mostra orologio di sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Mostra Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "&Mostra target in memoria" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Mostra USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Mostra sconosciuto" @@ -11690,27 +11846,27 @@ msgstr "Mostra tempi VBlank" msgid "Show VPS" msgstr "Mostra VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Mostra WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Mostra Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Mostra mondo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "Mostra in &memoria" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Mostra nel codice" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Mostra in memoria" @@ -11727,13 +11883,9 @@ msgstr "Mostra in memoria" msgid "Show in server browser" msgstr "Mostra nel server browser" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "&Mostra target in memoria" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11783,23 +11935,6 @@ msgstr "" "

Nel dubbio, lascia deselezionato." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" -"Mostra sempre il cursore del mouse.

Nel dubbio, " -"seleziona "Al movimento"." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" -"Mostra brevemente il cursore del mouse al movimento, per poi nasconderlo " -"poco dopo.

Nel dubbio, seleziona questa modalità." - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11828,6 +11963,23 @@ msgstr "" "standard.

Nel dubbio, lascia deselezionato." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" +"Mostra sempre il cursore del mouse.

Nel dubbio, " +"seleziona "Al movimento"." + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" +"Mostra brevemente il cursore del mouse al movimento, per poi nasconderlo " +"poco dopo.

Nel dubbio, seleziona questa modalità." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11873,6 +12025,17 @@ msgstr "" "Mostra diverse informazioni di rendering.

Nel " "dubbio, lascia deselezionato." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" +"Mostra a cosa stai giocando e la durata della tua sessione di gioco attuale " +"nel tuo stato Discord.

Non si può cambiare durante l'emulazione." +"

Nel dubbio, lascia selezionato." + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Fianco-a-fianco" @@ -11889,7 +12052,7 @@ msgstr "Attiva/disattiva posizione di traverso" msgid "Sideways Wii Remote" msgstr "Wii Remote in posizione di traverso" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Database signature" @@ -11938,7 +12101,7 @@ msgstr "" "Dimensione in millisecondo del buffer di stretch. Valori troppo bassi " "possono causare un audio gracchiante." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Salta" @@ -12137,6 +12300,10 @@ msgstr "" msgid "Speed" msgstr "Velocità" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "Limite 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:262 @@ -12173,11 +12340,11 @@ msgstr "Avvia Branch Watch" msgid "Start New Cheat Search" msgstr "Inizia nuova ricerca cheat" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Avvia re&gistrazione input" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Avvia registrazione" @@ -12216,39 +12383,39 @@ 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 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Esegui istruzione" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Uscito con successo dall'istruzione!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Scaduto tempo di uscita dall'istruzione!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Esecuzione dell'istruzione in corso..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Istruzione eseguita con successo!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Entrando" @@ -12257,7 +12424,7 @@ msgstr "Entrando" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Modalità stereoscopia 3D" @@ -12287,7 +12454,7 @@ msgstr "Levetta" msgid "Stop" msgstr "Arresta" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Interrompi riproduzione/registrazione input" @@ -12366,14 +12533,14 @@ msgstr "Stile:" msgid "Stylus" msgstr "Stilo" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Completato" @@ -12400,24 +12567,24 @@ msgstr "Esportato con successo %n file di salvataggio su %1." msgid "Successfully exported save files" msgstr "File di salvataggio esportati con successo" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "I certificati sono stati estratti con successo dalla NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "File estratto con successo." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Dati di sistema estratti con successo." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Salvataggio importato con successo." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Il titolo è stato installato con successo su NAND." @@ -12468,7 +12635,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12496,17 +12663,21 @@ msgstr "Scambia con B" msgid "Symbol" msgstr "Simbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "Indirizzo di termine del simbolo (%1):" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "Nome del simbolo:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "Dimensione del simbolo (%1):" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Simboli" @@ -12559,7 +12730,7 @@ msgstr "Sincronizzazione dei dati di salvataggio in corso..." msgid "System Language:" msgstr "Lingua di sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Input TAS" @@ -12570,9 +12741,9 @@ msgid "TAS Tools" msgstr "Strumenti TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Tag" @@ -12590,7 +12761,7 @@ msgstr "Coda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Cattura uno screenshot" @@ -12598,7 +12769,7 @@ msgstr "Cattura uno screenshot" msgid "Target address range is invalid." msgstr "Il range di indirizzi non è valido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12635,7 +12806,7 @@ msgstr "Accuratezza cache texture" msgid "Texture Dumping" msgstr "Dump delle texture" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Filtraggio texture" @@ -12687,7 +12858,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:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12695,7 +12866,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:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "La NAND è stata riparata." @@ -12882,7 +13053,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:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -13034,7 +13205,7 @@ 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:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -13074,7 +13245,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "il file specificato \"{0}\" non esiste" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -13142,7 +13313,7 @@ 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:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -13264,7 +13435,7 @@ msgstr "" "Usa la build ARM64 per avere prestazioni migliori." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Impossibile annullare l'operazione!" @@ -13513,7 +13684,7 @@ msgstr "Thread" msgid "Threshold" msgstr "Sensibilità" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13534,10 +13705,10 @@ msgstr "" msgid "Timed Out" msgstr "Tempo scaduto" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titolo" @@ -13545,25 +13716,29 @@ msgstr "Titolo" msgid "To" msgstr "A" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "A:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Attiva/disattiva &schermo intero" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Attiva/disattiva anaglifo 3D" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Attiva/disattiva 3D fianco-a-fianco" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Attiva/disattiva 3D sopra-sotto" @@ -13571,28 +13746,28 @@ msgstr "Attiva/disattiva 3D sopra-sotto" msgid "Toggle All Log Types" msgstr "Attiva/disattiva tutti i tipi di log" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Attiva/disattiva rapporto di aspetto" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Attiva/disattiva punto di interruzione" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Attiva/disattiva ritaglio" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Attiva/disattiva texture personalizzate" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Attiva/disattiva copie EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Attiva/disattiva nebbia" @@ -13604,31 +13779,31 @@ msgstr "Attiva/disattiva schermo intero" msgid "Toggle Pause" msgstr "Attiva/disattiva pausa" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Attiva/disattiva scheda SD" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Attiva/disattiva salta accesso EFB" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Attiva/disattiva dump texture" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Attiva/disattiva tastiera USB" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Attiva/disattiva copie XFB" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Attiva/disattiva modalità XFB immediata" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Tokenizzazione fallita." @@ -13752,7 +13927,7 @@ msgid "Trophy" msgstr "Trofeo" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13782,7 +13957,7 @@ msgstr "Dispositivo di emulazione USB" msgid "USB Emulation" msgstr "Emulazione USB" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "Dispositivi di emulazione USB" @@ -13834,15 +14009,15 @@ 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:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Impossibile individuare automaticamente il modulo RSO" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Impossibile contattare server di aggiornamento." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Impossibile creare copia dell'programma di aggiornamento" @@ -13882,7 +14057,7 @@ msgstr "" msgid "Unable to read file." msgstr "Impossibile leggere il file." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Impossibile impostare i permessi nel programma di aggiornamento" @@ -13905,11 +14080,11 @@ msgstr "Immagini GC/Wii non compresse (*.iso *.gcm)" msgid "Undead" msgstr "Non-morti" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Annulla caricamento stato di gioco" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Annulla salvataggio dello stato di gioco" @@ -13930,7 +14105,7 @@ msgstr "" "attualmente installata su NAND senza cancellarne i file di salvataggio. " "Continuare?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Stati Uniti" @@ -14032,11 +14207,11 @@ msgstr "Sconosciuto(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Sconosciuto(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Illimitato" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Rimuovi ROM" @@ -14044,7 +14219,12 @@ msgstr "Rimuovi ROM" msgid "Unlock Cursor" msgstr "Sblocca il cursore" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "Sbloccato" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "Sbloccato il %1" @@ -14144,7 +14324,7 @@ msgstr "Attiva/disattiva posizione verticale" msgid "Upright Wii Remote" msgstr "Wii Remote in posizione verticale" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Impostazioni Report Statistiche d'Uso" @@ -14256,7 +14436,7 @@ msgstr "Username" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -14341,7 +14521,7 @@ msgstr "Ignora VBI" msgid "Value" msgstr "Valore" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Valore tracciato all'istruzione corrente." @@ -14429,22 +14609,22 @@ msgstr "Tacche virtuali" msgid "Virtual address space" msgstr "Spazio dell'indirizzo virtuale" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Abbassa il volume" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Abilita/sisabilita il volume" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Alza il volume" @@ -14452,7 +14632,7 @@ msgstr "Alza il volume" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "File WAD (*.wad)" @@ -14587,7 +14767,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Attenzione" @@ -14742,7 +14922,7 @@ msgstr "Dispositivi USB ponte accettati" msgid "Widescreen Hack" msgstr "Hack widescreen" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14812,7 +14992,7 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dati Wii non ancora pubblici" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)" @@ -14847,11 +15027,11 @@ msgstr "Mondo" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Scrittura" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Scrivi JIT Block Log Dump" @@ -15018,7 +15198,7 @@ msgstr "" "per \"Phantasy Star Online Episode I & II\". Nel dubbio, torna indietro e " "configura un \"Controller Standard\"" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" "Stai eseguendo l'ultima versione disponibile dello stream di sviluppo scelto." @@ -15108,7 +15288,7 @@ msgstr "" "Vuoi terminare l'emulazione per correggere il problema?\n" "Se selezioni \"No\", l'audio potrebbe risultare ingarbugliato." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ja.po b/Languages/po/ja.po index ad2b5bf2c9..5181fe9e60 100644 --- a/Languages/po/ja.po +++ b/Languages/po/ja.po @@ -20,10 +20,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 難波 鷹史, 2023-2024\n" -"Language-Team: Japanese (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Japanese (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/ja/)\n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -186,7 +186,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 はあなたのシステム上でこの機能をサポートしていません" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 はこの機能をサポートしていません" @@ -208,7 +208,7 @@ msgstr "%1 が入室しました" msgid "%1 has left" msgstr "%1 が退室しました" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" "%1 は %2%3 の実績をロック解除しました。これは %4%5 ポイントに相当します。" @@ -221,7 +221,7 @@ msgstr "%1 は有効な ROM ではありません" msgid "%1 is now golfing" msgstr "%1 がゴルフ中" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 は %2 をプレイしています。" @@ -235,7 +235,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 ポイント" @@ -255,22 +255,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (標準)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 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:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 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:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1's value is used" @@ -278,6 +278,10 @@ msgstr "%1's value is used" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -298,7 +302,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -311,7 +315,7 @@ msgstr "%1x Native (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Native (%2x%3) for %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -355,10 +359,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "Dolphinについて(&A)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "メモリ ブレークポイントの追加(&A)" @@ -368,23 +376,19 @@ msgstr "メモリ ブレークポイントの追加(&A)" msgid "&Add New Code..." msgstr "コードを追加...(&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "ファンクションを追加(&A)" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "追加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "アセンブラ(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "サウンド設定(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "自動更新(&A):" @@ -393,14 +397,14 @@ msgid "&Borderless Window" msgstr "ボーダーレス ウィンドウ(&B)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "ブレークポイント(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "バグトラッカー(&B)" @@ -412,11 +416,11 @@ msgstr "キャンセル(&C)" msgid "&Cheats Manager" msgstr "チートマネージャ(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "更新を確認...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "クリアシンボル(&C)" @@ -424,7 +428,7 @@ msgstr "クリアシンボル(&C)" msgid "&Clone..." msgstr "クローン...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "コード(&C)" @@ -432,18 +436,15 @@ msgstr "コード(&C)" msgid "&Connected" msgstr "接続(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "コントローラー設定(&C)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "アドレスをコピー(&C)" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "作成...(&C)" @@ -479,7 +480,7 @@ msgstr "編集...(&E)" msgid "&Eject Disc" msgstr "ディスクの取り出し(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "エミュレーション(&E)" @@ -504,36 +505,36 @@ msgstr "GCI形式でエクスポート...(&E)" msgid "&File" msgstr "ファイル(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "フォント...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "フレームアドバンス(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "フリールックの設定(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Generate Symbols From" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "GitHub リポジトリ(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "グラフィック設定(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "ヘルプ(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "ホットキーのカスタマイズ(&H)" @@ -557,15 +558,15 @@ msgstr "インポート...(&I)" msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Interframe Blending" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -577,11 +578,11 @@ msgstr "UIの言語(&L):" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "ステートロード(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "ロードシンボルマップ(&L)" @@ -595,19 +596,19 @@ msgstr "&Load file to current address" msgid "&Lock Watches" msgstr "ウォッチのロック(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "ツールバーの位置を固定(&L)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memory" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "記録(&M)" @@ -615,7 +616,7 @@ msgstr "記録(&M)" msgid "&Mute" msgstr "ミュート(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Network" @@ -628,19 +629,19 @@ msgstr "いいえ(&N)" msgid "&Open..." msgstr "開く...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "設定(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functions" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "一時停止(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "開始(&P)" @@ -648,7 +649,7 @@ msgstr "開始(&P)" msgid "&Properties" msgstr "プロパティ(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "読み込み専用(&R)" @@ -656,7 +657,7 @@ msgstr "読み込み専用(&R)" msgid "&Refresh List" msgstr "ゲームリストを再更新(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registers" @@ -669,12 +670,12 @@ msgstr "削除(&R)" msgid "&Remove Code" msgstr "コードを削除(&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "リセット(&R)" @@ -686,7 +687,7 @@ msgstr "リソースパックマネージャー(&R)" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Save Symbol Map" @@ -698,11 +699,11 @@ msgstr "カードeのスキャン...(&S)" msgid "&Skylanders Portal" msgstr "スカイランダーズポータル(&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "速度制限(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "停止(&S)" @@ -710,7 +711,7 @@ msgstr "停止(&S)" msgid "&Theme:" msgstr "テーマ(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Threads" @@ -732,17 +733,17 @@ msgstr "ROMを取り外してリセット(&U)" msgid "&Unlock Watches" msgstr "ウォッチのロックを解除(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "公式Webサイト(&W)" @@ -754,11 +755,11 @@ msgstr "公式Wiki(英語)で動作状況を確認(&W)" msgid "&Yes" msgstr "はい(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' not found, no symbol names generated" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' not found, scanning for common functions instead" @@ -778,7 +779,7 @@ msgstr "(システム)" msgid "(host)" msgstr "(host)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "オフ" @@ -802,7 +803,7 @@ msgstr ", コンマ" msgid "- Subtract" msgstr "- Subtract(減算)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -880,7 +881,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x 異方性フィルタリング" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -892,7 +893,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -928,19 +929,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-bit Unsigned Integer" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D深度" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -964,7 +965,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1064,7 +1065,7 @@ msgstr "" "よく分からなければ、チェックを入れないでください" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1102,8 +1103,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Greater-than(より大きい)" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "ネットプレイのセッションは既に進行中です!" @@ -1127,7 +1128,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "ディスクは既に挿入されています。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1138,7 +1139,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "起動するタイトルを指定せずにステートセーブをロードすることはできません" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1236,7 +1237,7 @@ msgid "Achievement Settings" msgstr "実績の設定" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "実績" @@ -1328,7 +1329,7 @@ msgstr "Action Replay: Normal Code {0}: Invalid subtype {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "ネットプレイ:チャットをアクティブ" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Active" @@ -1379,11 +1380,11 @@ msgstr "USBデバイスを追加" msgid "Add Shortcut to Desktop" msgstr "ショートカットをデスクトップに追加" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Add a Breakpoint" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Add a Memory Breakpoint" @@ -1417,13 +1418,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Address" @@ -1442,7 +1443,7 @@ msgstr "Address space by CPU state" msgid "Address:" msgstr "Address:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1529,7 +1530,7 @@ msgstr "高度な設定" msgid "Advanced Settings" msgstr "高度な設定" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1585,7 +1586,7 @@ msgstr "All Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1593,7 +1594,7 @@ msgid "All Files" msgstr "すべてのファイル" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "すべてのファイル (*)" @@ -1602,7 +1603,7 @@ msgstr "すべてのファイル (*)" msgid "All Float" msgstr "All Float" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "すべての GC/Wii ファイル" @@ -1611,8 +1612,8 @@ msgstr "すべての GC/Wii ファイル" msgid "All Hexadecimal" msgstr "All Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "全てのステートセーブファイル (*.sav *.s##);; 全てのファイル (*)" @@ -1636,11 +1637,11 @@ msgstr "すべてのプレイヤーのチートコードは同期されました msgid "All players' saves synchronized." msgstr "すべてのプレイヤーのセーブデータは同期されました" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "コンソール上の言語設定の不一致を許可する" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "利用統計レポートを許可" @@ -1700,7 +1701,7 @@ msgstr "角度" msgid "Angular velocity to ignore and remap." msgstr "ここで指定した角度以下の入力を無視します" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "アンチエイリアス" @@ -1712,19 +1713,19 @@ msgstr "アンチエイリアス:" msgid "Any Region" msgstr "すべて" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "に署名を追加する" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "既存の署名ファイルに追加...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Appl&y Signature File..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1741,9 +1742,9 @@ msgstr "Apploaderの日付" msgid "Apply" msgstr "適用" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "署名ファイルを適用する" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1753,7 +1754,7 @@ msgstr "Arbitrary Mipmap Detection" msgid "Are you sure that you want to delete '%1'?" msgstr "次のプロファイルを削除しますか? '%1'" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "このタイトルの実体ファイルを削除しますか?" @@ -1790,9 +1791,9 @@ msgstr "アスペクト比:" msgid "Assemble" msgstr "アセンブル" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "アセンブル説明書" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1854,7 +1855,11 @@ msgstr "自動" msgid "Auto (Multiple of 640x528)" msgstr "自動 (640x528のn倍)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "自動更新設定" @@ -1878,7 +1883,7 @@ msgstr "ウィンドウサイズを自動調整する" msgid "Auto-Hide" msgstr "未操作時に隠す" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO modules?" @@ -1895,6 +1900,17 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "現在の値を自動更新します" @@ -1906,7 +1922,7 @@ msgid "Auxiliary" msgstr "補助" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1992,10 +2008,10 @@ msgstr "不正なオフセットが示されました。" msgid "Bad value provided." msgstr "不正な値が示されました。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "バナー" @@ -2023,7 +2039,7 @@ msgstr "ベースの優先度" msgid "Basic" msgstr "基本設定" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "基本設定" @@ -2083,9 +2099,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "ブロックサイズ" @@ -2124,15 +2140,15 @@ msgstr "" "ドされました。\n" "パススルーの機能は使えません。" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "ブートから一時停止" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND バックアップファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii キー ファイル (*.bin);;すべてのファイル (*)" @@ -2260,30 +2276,30 @@ msgstr "" msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Branches" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "ブレーク" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "ブレークポイント" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "ブレークポイントが発生しました! ステップアウトが中止されました。" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "ブレークポイント" @@ -2382,7 +2398,7 @@ msgstr "By: %1" msgid "C Stick" msgstr "Cスティック" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "署名ファイルの作成(&R)..." @@ -2421,7 +2437,7 @@ msgstr "" msgid "Calculate" msgstr "計算する" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2487,14 +2503,14 @@ msgstr "このトロフィーの悪役は編集できません!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "接続ハンドル {0:02x} でWiiリモコンが見つかりません。" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2544,7 +2560,7 @@ msgstr "Cannot generate AR code for this address." msgid "Cannot refresh without results." msgstr "Cannot refresh without results." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI フォルダを空のパスに設定できません。" @@ -2592,7 +2608,7 @@ msgstr "ディスクの入れ替え...(&D)" msgid "Change Disc" msgstr "ディスクの入れ替え" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "ディスクの入れ替えを自動で行う" @@ -2660,7 +2676,7 @@ msgstr "コードサーチ" msgid "Cheats Manager" msgstr "チートマネージャ" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "NANDの整合性チェックを実行..." @@ -2672,7 +2688,7 @@ msgstr "ゲームリストを常に更新する" msgid "Check for updates" msgstr "最新版の入手先:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2691,29 +2707,29 @@ msgstr "中国" msgid "Choose" msgstr "選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "メモリーカードを選択" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "ファイルを開くか作成してください" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "プロパティ入力ファイルの選択" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "セカンダリー入力ファイルの選択" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "GCI ベース フォルダーを選択します" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "保存先のフォルダを選択してください" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2732,7 +2748,7 @@ msgstr "クラシックコントローラ" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2742,7 +2758,7 @@ msgstr "全消去" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "キャッシュの消去" @@ -2763,7 +2779,7 @@ msgstr "コードをコピーして編集..." msgid "Close" msgstr "閉じる" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Dolphinの設定(&N)" @@ -2787,7 +2803,7 @@ msgstr "コード:" msgid "Codes received!" msgstr "コードを受け取りました!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "カラーコレクション" @@ -2807,7 +2823,7 @@ msgstr "色空間" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Combine &Two Signature Files..." @@ -2848,9 +2864,9 @@ msgstr "ゲーム開始前にシェーダをコンパイルする" msgid "Compiling Shaders" msgstr "シェーダをコンパイル中..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "圧縮形式" @@ -2875,7 +2891,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Condition" @@ -2982,9 +2998,9 @@ msgstr "出力設定" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" @@ -2997,7 +3013,7 @@ msgstr "出力バックエンド変更の確認" msgid "Confirm on Stop" msgstr "動作停止時に確認" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3008,7 +3024,7 @@ msgstr "確認" msgid "Connect" msgstr "ホストに接続" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "バランスWiiボードを接続する" @@ -3016,27 +3032,27 @@ msgstr "バランスWiiボードを接続する" msgid "Connect USB Keyboard" msgstr "USBキーボードを接続する" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "%1PのWiiリモコンを接続" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "1PのWiiリモコンを接続" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "2PのWiiリモコンを接続" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "3PのWiiリモコンを接続" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "4PのWiiリモコンを接続" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Wiiリモコンの接続" @@ -3081,19 +3097,19 @@ msgstr "コントロールスティック" msgid "Controller Profile" msgstr "入力設定" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "コントローラープロファイル 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "コントローラープロファイル 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "コントローラープロファイル 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "コントローラープロファイル 4" @@ -3105,6 +3121,16 @@ msgstr "Dolphin コントローラ設定" msgid "Controllers" msgstr "コントローラー" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3117,7 +3143,7 @@ msgstr "" "設定を有効にするにはHDR出力が必要です。

よく分からな" "い場合は、203 のままにしておきます。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3128,7 +3154,7 @@ msgstr "" "距離を設定できます。

値を高くすると効果が強くなり、低くすると目の負担" "が軽減されます。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3142,7 +3168,7 @@ msgstr "" "

よく分からなければ、「Native」を選択してください。" "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3175,7 +3201,7 @@ msgstr "" "ハイレベルDSPエミュレーションとローレベルDSPエミュレーションのどちらを使用す" "るかを制御します。デフォルトは 真(True) です" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "収束点" @@ -3279,18 +3305,22 @@ msgstr "" msgid "Copy" msgstr "コピー" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copy Address" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "コピーに失敗しました。" @@ -3299,18 +3329,14 @@ msgstr "コピーに失敗しました。" msgid "Copy Hex" msgstr "Copy Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copy Value" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Copy code &line" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Copy tar&get address" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Aへコピー" @@ -3436,8 +3462,8 @@ msgstr "ファイル {0} を認識できませんでした" msgid "Could not save your changes!" msgstr "変更内容を保存できませんでした!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "アップデータ処理を開始できませんでした: {0}" @@ -3549,7 +3575,7 @@ msgstr "" "マンスと描画統計に影響するおそれがあります。

分から" "ない場合はチェックを外してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "現在の地域" @@ -3744,24 +3770,24 @@ msgstr "デコード精度" msgid "Decrease" msgstr "移動速度 減少" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "収束距離 減少" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "深度 減少" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "エミュレーション速度 減少" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "レンダリング解像度 縮小" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "選択したステートスロットを減らします" @@ -3822,8 +3848,8 @@ msgstr "" "チェックを外してください。
" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "削除" @@ -3841,7 +3867,7 @@ msgstr "選択中のタイトルの実体を削除..." msgid "Delete the existing file '{0}'?" msgstr "既存のファイル '{0}' を削除しますか?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "深度" @@ -3856,9 +3882,9 @@ msgstr "深度 (Depth):" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "説明" @@ -3907,7 +3933,7 @@ msgstr "Detached" msgid "Detect" msgstr "検出" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Detecting RSO Modules" @@ -3915,7 +3941,7 @@ msgstr "Detecting RSO Modules" msgid "Deterministic dual core:" msgstr "Deterministic dual core: " -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "開発者向け (起動する度に確認)" @@ -3973,15 +3999,15 @@ msgstr "Disable Copy Filter" msgid "Disable EFB VRAM Copies" msgstr "Disable EFB VRAM Copies" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "エミュレーション速度 無効化" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Disable Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "ファストメム・アリーナを無効にします" @@ -3989,11 +4015,11 @@ msgstr "ファストメム・アリーナを無効にします" msgid "Disable Fog" msgstr "フォグを無効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Disable JIT Cache" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "大規模なエントリ ポイント マップを無効にします" @@ -4020,7 +4046,7 @@ msgstr "" "EFBのVRAMコピーを無効にし、RAMへのラウンドトリップを強制します。すべてのアッ" "プスケーリングを禁止します。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4048,7 +4074,8 @@ msgstr "ディスク" msgid "Discard" msgstr "廃棄" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -4083,15 +4110,15 @@ msgstr "距離" msgid "Distance of travel from neutral position." msgstr "振りの強さをニュートラルポジションからの距離で指定" -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\" をゲームパスリストに追加しますか?" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Do you want to clear the list of symbol names?" @@ -4101,7 +4128,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "選択中の %n 個のセーブファイルを削除しますか?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "動作中のゲームを停止しますか?" @@ -4122,9 +4149,9 @@ msgstr "Dolphin FIFO ログファイル (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin ゲームMod プリセット" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Map File (*.map)" @@ -4136,8 +4163,8 @@ msgstr "Dolphin Signature CSV File" msgid "Dolphin Signature File" msgstr "Dolphin Signature File" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS ムービー (*.dtm)" @@ -4195,14 +4222,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin is unable to verify unlicensed discs." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"地域が自動設定できなかったタイトルに対してDolphinはここで設定した地域を使用し" -"ます。" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "チートは現在、無効化されています" @@ -4212,7 +4231,7 @@ msgstr "チートは現在、無効化されています" msgid "Domain" msgstr "Domain" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "更新しない" @@ -4269,11 +4288,11 @@ msgstr "%1 個のコードが見つかりました。( 新規追加: %2 個 )" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4316,7 +4335,7 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "サウンドのダンプを行う(WAV形式)" @@ -4328,7 +4347,7 @@ msgstr "Dump Base Textures" msgid "Dump EFB Target" msgstr "EFBターゲットをダンプする" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "フレームのダンプを行う(AVI形式)" @@ -4459,16 +4478,16 @@ msgstr "東アジア" msgid "Edit Breakpoint" msgstr "Edit Breakpoint" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Edit..." @@ -4492,7 +4511,7 @@ msgstr "Effective" msgid "Effective priority" msgstr "Effective priority" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4560,7 +4579,7 @@ msgstr "" "Current: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "エミュレーション速度" @@ -4580,7 +4599,7 @@ msgstr "Enable API Validation Layers" msgid "Enable Audio Stretching" msgstr "タイムストレッチを有効にする (Audio Stretching)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "チートコードを有効にする" @@ -4604,9 +4623,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "デュアルコア動作を行う" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "デュアルコア動作を行う (速度向上)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4664,7 +4683,7 @@ msgstr "" "ム実行中にハードコアモードをオフにするには、再度有効にする前にゲームを終了す" "る必要があることに注意してください。" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4706,7 +4725,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "非公式アチーブメントを有効にする" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "統計レポートの収集に協力する" @@ -4796,7 +4815,7 @@ msgstr "" "浮動小数点演算結果フラグを有効にします。必要なゲームはわずかです [有効=互換" "性重視/無効=速度向上]" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4849,7 +4868,7 @@ msgstr "" "この設定について考える必要はありません。

よく分から" "なければ、チェックを入れないでください。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4915,6 +4934,15 @@ msgstr "" "利用規約を読む場合は次のURLを参照してください。: https://www.wiilink24.com/" "tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4952,7 +4980,7 @@ msgstr "" "\n" "インポートを中止します" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -5005,14 +5033,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5051,26 +5079,26 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5087,9 +5115,9 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "エラー" @@ -5121,7 +5149,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "セッションリストの取得エラー: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "テクスチャパックの読み込み中にエラーが発生しました" @@ -5219,7 +5247,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:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "ヨーロッパ" @@ -5232,15 +5260,15 @@ msgstr "Uber (統合) シェーダーだけを使用する" msgid "Exit" msgstr "Dolphinを終了" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "必要 + または閉じカッコ。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "入力値の検証:変数の入力待ち" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "閉じカッコが必要です。" @@ -5252,19 +5280,19 @@ msgstr "コンマが必要です。" msgid "Expected end of expression." msgstr "入力値の検証:演算子に続く入力待ち" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "名前入力が必要です。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "開きカッコが必要です。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "入力値の検証:入力待ち" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "変数名が必要です。" @@ -5272,7 +5300,7 @@ msgstr "変数名が必要です。" msgid "Experimental" msgstr "実験的" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "全てのWiiセーブデータをエクスポート" @@ -5283,11 +5311,11 @@ msgstr "全てのWiiセーブデータをエクスポート" msgid "Export Failed" msgstr "エクスポート失敗" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "録画ファイルのエクスポート" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "録画ファイルのエクスポート..." @@ -5315,7 +5343,7 @@ msgstr "GCS形式でエクスポート..." msgid "Export as .&sav..." msgstr "SAV形式でエクスポート..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5343,35 +5371,35 @@ msgstr "External" msgid "External Frame Buffer (XFB)" msgstr "External Frame Buffer (外部フレームバッファ)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "証明書ファイルをNANDから取り出す" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "ディスク全体を抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "パーティション全体を抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "このファイルを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "このファイルを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "システムデータを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "全てのファイルを抽出..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "このディレクトリを抽出..." @@ -5401,7 +5429,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "このセッションを NetPlay インデックスに追加できませんでした: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Failed to append to signature file '%1'" @@ -5470,7 +5498,7 @@ msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "ネットプレイ メモリカードの削除に失敗しました。書き込み権限を確認してください" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "選択したファイルの削除に失敗しました" @@ -5499,15 +5527,15 @@ msgstr "%nから%1 セーブファイルのエクスポートに失敗しまし msgid "Failed to export the following save files:" msgstr "次のセーブファイルをエクスポートできませんでした:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "証明書ファイルの取り出しに失敗" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "ファイルの抽出に失敗しました" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "システムデータの抽出に失敗しました" @@ -5529,14 +5557,14 @@ msgstr "Failed to find one or more D3D symbols" msgid "Failed to import \"%1\"." msgstr "\"%1\" をインポートできませんでした" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "セーブファイルのインポートに失敗しました。一度ゲームを起動してから、再度お試" "しください。" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5544,7 +5572,7 @@ msgstr "" "セーブファイルのインポートに失敗しました。指定されたファイルは破損している" "か、有効な Wiiセーブファイルではありません。" -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5554,7 +5582,7 @@ msgstr "" "ルへのアクセスを妨げている可能性があります。NANDを修復し(ツール -> NANDの管" "理 -> NANDのチェック...)、セーブファイルを再度インポートしてみてください。" -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "コアの初期化に失敗しました" @@ -5577,11 +5605,11 @@ msgid "Failed to install pack: %1" msgstr "リソースパック %1 をインストールできませんでした" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "タイトルのインストールに失敗" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5589,8 +5617,8 @@ msgstr "" "ポート番号 %1 で待ち受けできませんでした。別のネットプレイサーバーが実行中に" "なっていませんか?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "%1 にて RSO モジュールをロードできませんでした" @@ -5602,7 +5630,7 @@ msgstr "d3d11.dllのロードに失敗しました" msgid "Failed to load dxgi.dll" msgstr "dxgi.dllのロードに失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "マップ ファイル '%1' のロードに失敗しました" @@ -5641,7 +5669,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' のオープンに失敗しました" @@ -5683,7 +5711,7 @@ msgstr "" msgid "Failed to open file." msgstr "ファイルのオープンに失敗しました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "サーバーを開けませんでした" @@ -5831,19 +5859,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "FIFOログの保存に失敗しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Failed to save code map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Failed to save signature file '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Failed to save symbol map to path '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Failed to save to signature file '%1'" @@ -5902,8 +5930,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "失敗" @@ -5911,11 +5939,12 @@ msgstr "失敗" msgid "Fair Input Delay" msgstr "Fair Input Delay" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "既定の地域" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "既定の地域:" @@ -5953,9 +5982,9 @@ msgstr "図の種類" msgid "File Details" msgstr "ファイル情報" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "ファイル形式" @@ -5967,20 +5996,20 @@ msgstr "ファイル形式:" msgid "File Info" msgstr "ファイル情報" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "ファイル名" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "ファイルパス" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "ファイルサイズ" @@ -6083,9 +6112,9 @@ msgstr "Flags" msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6157,7 +6186,7 @@ msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "%1 はジオメトリシェーダーをサポートしていないため、強制的にオンになりました。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6173,7 +6202,7 @@ msgstr "" "

よく分からない場合は、チェックを外したままにしてく" "ださい。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6220,20 +6249,20 @@ msgstr "Found %n address(es)." msgid "Frame %1" msgstr "Frame %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Frame Advance" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Frame Advance速度 減少" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Frame Advance速度 増加" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Frame Advance速度 リセット" @@ -6294,11 +6323,11 @@ msgstr "" msgid "FreeLook" msgstr "フリールック" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "フリールック" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "フリールック 切替" @@ -6332,11 +6361,12 @@ msgstr "開始" msgid "FullScr" msgstr "全画面" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Function" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -6356,7 +6386,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "GBA カートリッジのパス:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA コア" @@ -6372,11 +6402,11 @@ msgstr "GBA設定" msgid "GBA TAS Input %1" msgstr "TAS用入力 GBA %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA 音量" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA 画面サイズ" @@ -6512,11 +6542,11 @@ msgstr "タイトル" msgid "Game Boy Advance" msgstr "ゲームボーイアドバンス" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "ゲームボーイアドバンスROMファイル (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6552,8 +6582,8 @@ msgstr "ゲームガンマ" msgid "Game Gamma:" msgstr "ゲームガンマ:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ゲームID" @@ -6684,7 +6714,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Geckoコード" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6704,14 +6735,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "新しい統計IDを作成する" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Generated symbol names from '%1'" @@ -6729,7 +6767,7 @@ msgstr "ドイツ" msgid "GetDeviceList failed: {0}" msgstr "デバイスリストの取得に失敗しました: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6762,7 +6800,7 @@ msgstr "グラフィック" msgid "Graphics Mods" msgstr "グラフィックスMOD" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "グラフィック設定 切替" @@ -6771,7 +6809,7 @@ msgstr "グラフィック設定 切替" msgid "Graphics mods are currently disabled." msgstr "グラフィックMODは現在無効になっています。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6797,7 +6835,7 @@ msgstr "緑 - 左" msgid "Green Right" msgstr "緑 - 右" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "グリッド表示" @@ -6879,7 +6917,7 @@ msgstr "隠す" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "すべて非表示" @@ -6897,12 +6935,12 @@ msgstr "リモート先のGBAを隠す" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "大" @@ -6970,7 +7008,7 @@ msgstr "Hostname" msgid "Hotkey Settings" msgstr "ホットキーのカスタマイズ" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7094,11 +7132,11 @@ msgstr "" "いつでもホスト(レイテンシが0になる人)を切り替えられるのが特徴です\n" "ゴルフのような、タイミングにシビアなターン制ゲームに最適です" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "IDの作成" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7152,6 +7190,16 @@ msgstr "" "

分からない場合はチェックを外してください。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7222,7 +7270,7 @@ msgstr "" "

よく分からなければ、チェックを入れないでください。" "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND バックアップをインポート..." @@ -7237,15 +7285,15 @@ msgstr "インポートに失敗" msgid "Import Save File(s)" msgstr "セーブファイルのインポート" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Wii セーブデータのインポート..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "NAND バックアップをインポート" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7307,24 +7355,24 @@ msgstr "再生時間の値が間違っています!" msgid "Increase" msgstr "移動速度 増加" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "収束距離 増加" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "深度 増加" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "エミュレーション速度 増加" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "レンダリング解像度 拡大" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "選択したステートスロットを増やします" @@ -7375,8 +7423,8 @@ msgstr "情報" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "情報" @@ -7390,10 +7438,10 @@ msgstr "インジェクト" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "入力" @@ -7412,13 +7460,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Insert &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SDカードの挿入をエミュレートする" @@ -7436,7 +7481,7 @@ msgstr "インストールパーティション (%1)" msgid "Install Update" msgstr "自動更新" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WiiメニューにWADファイルを追加..." @@ -7444,8 +7489,9 @@ msgstr "WiiメニューにWADファイルを追加..." msgid "Install to the NAND" msgstr "NANDへインストール" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7459,7 +7505,7 @@ msgstr "Instruction" msgid "Instruction Breakpoint" msgstr "Instruction Breakpoint" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instruction:" @@ -7468,7 +7514,7 @@ msgstr "Instruction:" msgid "Instruction: %1" msgstr "Instruction: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7537,8 +7583,8 @@ msgstr "" "内部 LZO エラー - 展開されたバージョンの文字列の解析に失敗しました ({0} / " "{1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "レンダリング解像度" @@ -7555,7 +7601,7 @@ msgstr "Internal error while generating AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (非常に低速)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Interpreter Core" @@ -7563,7 +7609,7 @@ msgstr "Interpreter Core" msgid "Invalid Expression." msgstr "無効な表現です。" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "自動更新サービスから無効な JSON を受信しました: {0}" @@ -7571,7 +7617,7 @@ msgstr "自動更新サービスから無効な JSON を受信しました: {0}" msgid "Invalid Mixed Code" msgstr "Invalid Mixed Code" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "無効なリソースパック %1 が与えられました:%2" @@ -7580,7 +7626,7 @@ msgstr "無効なリソースパック %1 が与えられました:%2" msgid "Invalid Player ID" msgstr "無効なプレイヤーID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Invalid RSO module address: %1" @@ -7660,11 +7706,11 @@ msgstr "イタリア" msgid "Item" msgstr "アイテム" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Off" @@ -7672,47 +7718,47 @@ msgstr "JIT Block Linking Off" msgid "JIT Blocks" msgstr "JIT Blocks" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Branch Off" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Off" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Integer Off" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Off" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Off" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Off" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Off" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Off" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Off (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Paired Off" @@ -7724,14 +7770,15 @@ msgstr "JIT Recompiler for ARM64 (推奨)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler for x86-64 (推奨)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "JIT Register Cache Off" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters Off" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7742,11 +7789,11 @@ msgstr "" "このエラーは起こらないはずです。この状況をバグトラッカーへ報告してください。" "Dolphinを終了します。" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "日本" @@ -7770,7 +7817,7 @@ msgstr "" "カオスはこのトロフィーの唯一の悪役であり、常にロック解除されています。何も編" "集する必要はありません!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Keep Running" @@ -7805,7 +7852,7 @@ msgstr "キーボードコントローラ" msgid "Keys" msgstr "キー" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7813,7 +7860,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "選択したプレイヤーをキック" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "韓国" @@ -7952,6 +7999,14 @@ msgstr "" "左or右クリックで設定画面に入ります\n" "中クリックで消去します" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7985,11 +8040,11 @@ msgstr "ライト" msgid "Limit Chunked Upload Speed:" msgstr "Limit Chunked Upload Speed:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "ゲームリストカラムの表示" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "リスト表示" @@ -7999,17 +8054,17 @@ msgstr "Listening" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "読込" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Load &Bad Map File..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Load &Other Map File..." @@ -8018,7 +8073,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -8029,7 +8084,7 @@ msgstr "カスタムテクスチャを読み込む" msgid "Load File" msgstr "ファイルの読み込み" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "ゲームキューブ メインメニューを起動" @@ -8037,16 +8092,21 @@ msgstr "ゲームキューブ メインメニューを起動" msgid "Load Host's Save Data Only" msgstr "ホストのセーブデータのみ読み込み" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "以前のステートをロード" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "ロードパス:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "ROMの読込" @@ -8054,104 +8114,104 @@ msgstr "ROMの読込" msgid "Load Slot" msgstr "ロードスロット" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "ステートロード" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "1個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "10個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "2個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "3個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "4個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "5個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "6個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "7個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "8個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "9個前のステートをロード" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "ステートロード - スロット 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "ステートロード - スロット 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "ステートロード - スロット 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "ステートロード - スロット 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "ステートロード - スロット 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "ステートロード - スロット 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "ステートロード - スロット 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "ステートロード - スロット 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "ステートロード - スロット 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "ステートロード - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "ファイルからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "次のスロットからロード" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Wiiメニュー %1 を起動" @@ -8159,20 +8219,15 @@ msgstr "Wiiメニュー %1 を起動" msgid "Load and Write Host's Save Data" msgstr "ホストのセーブデータの読み込みと書き込み" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "選択したスロットから読込" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Load map file" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "vWii システム・メニュー %1 を読み込みます。" @@ -8180,7 +8235,7 @@ msgstr "vWii システム・メニュー %1 を読み込みます。" msgid "Load..." msgstr "読込..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Loaded symbols from '%1'" @@ -8212,20 +8267,20 @@ msgstr "IPアドレスと使用ポート番号" msgid "Lock Mouse Cursor" msgstr "マウスカーソルをロック" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "ロックされています" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "ログ" @@ -8235,10 +8290,11 @@ msgid "Log Configuration" msgstr "ログの設定" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "ログイン" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Log JIT Instruction Coverage" @@ -8281,7 +8337,7 @@ msgstr "ループ" msgid "Lost connection to NetPlay server..." msgstr "ネットプレイサーバーへの接続が失われました..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "小" @@ -8344,9 +8400,9 @@ msgstr "プレイタイムの値が有効であることを確認してくださ msgid "Make sure there is a Skylander in slot %1!" msgstr "スロット %1 に Skylander があることを確認してください!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "メーカー" @@ -8355,7 +8411,7 @@ msgstr "メーカー" msgid "Maker:" msgstr "メーカー" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8367,7 +8423,7 @@ msgstr "" "ません。

よく分からなければ、チェックを入れないでく" "ださい。" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Wii NANDの管理" @@ -8408,7 +8464,7 @@ msgstr "" "ます" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "中" @@ -8424,7 +8480,7 @@ msgstr "Memory Breakpoint" msgid "Memory Card" msgstr "メモリーカード" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "GCメモリーカードマネージャ" @@ -8455,7 +8511,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "メモリーカード: 無効な宛先アドレス ({0:#x}) で Write が呼び出されました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8469,7 +8525,7 @@ msgstr "" "\n" "続行しますか?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8551,8 +8607,8 @@ msgstr "スロットの変更" msgid "Modifying Skylander: %1" msgstr "スカイランダーを修正中: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Modules found: %1" @@ -8594,7 +8650,7 @@ msgstr "プレイ中のマウスカーソル表示" msgid "Move" msgstr "移動" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "記録" @@ -8620,10 +8676,10 @@ msgstr "乗数" msgid "N&o to All" msgstr "すべていいえ(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 整合性チェック" @@ -8632,8 +8688,8 @@ msgstr "NAND 整合性チェック" msgid "NKit Warning" msgstr "NKit Warning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8642,7 +8698,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8664,8 +8720,8 @@ msgstr "" "に合わせてください。

分からない場合は2.35のままにし" "ておいてください。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8678,11 +8734,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "名前" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "新しいタグに名前を付ける:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "削除するタグ名を入力" @@ -8768,7 +8824,7 @@ msgid "Never Auto-Update" msgstr "自動更新を止める" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "New" @@ -8793,7 +8849,7 @@ msgstr "新しい検索" msgid "New Tag..." msgstr "新しいタグ..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "新しいIDが作成されました。" @@ -8801,12 +8857,13 @@ msgstr "新しいIDが作成されました。" msgid "New instruction:" msgstr "New instruction:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "新しいタグ" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "次のゲームプロファイル" @@ -8814,8 +8871,9 @@ msgstr "次のゲームプロファイル" msgid "Next Match" msgstr "Next Match" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "次のプロファイル" @@ -8902,7 +8960,7 @@ msgstr "グラフィック MOD が選択されていません" msgid "No input" msgstr "入力なし" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "問題は見つかりませんでした" @@ -8948,7 +9006,7 @@ msgstr "" "を中止します" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9157,7 +9215,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "オンラインガイドを表示(&D)" @@ -9165,7 +9223,7 @@ msgstr "オンラインガイドを表示(&D)" msgid "Only Show Collection" msgstr "コレクションのみを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9173,7 +9231,7 @@ msgstr "" "Only append symbols with prefix:\n" "(Blank for all symbols)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9196,14 +9254,18 @@ msgstr "実体ファイルのあるフォルダを開く(&C)" msgid "Open &User Folder" msgstr "ユーザーフォルダーを開く(&U)" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr " フォルダーを開く..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "FIFOログファイルを選択" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9304,7 +9366,7 @@ msgstr "その他" msgid "Other Partition (%1)" msgstr "その他のパーティション (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "その他" @@ -9321,7 +9383,7 @@ msgstr "他のタイトル..." msgid "Output" msgstr "出力" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "出力 リサンプリング" @@ -9329,16 +9391,16 @@ msgstr "出力 リサンプリング" msgid "Output Resampling:" msgstr "出力 リサンプリング:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Overwritten" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "録画ファイルを再生...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9367,7 +9429,7 @@ msgstr "PNG画像ファイル (*.png);; すべてのファイル (*)" msgid "PPC Size" msgstr "PPC Size" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9380,7 +9442,7 @@ msgstr "パッド" msgid "Pads" msgstr "パッド" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parameters" @@ -9443,7 +9505,7 @@ msgstr "一時停止" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "再生終了時に一時停止" @@ -9492,7 +9554,7 @@ msgstr "外向きのスイング動作のピーク速度。" msgid "Per-Pixel Lighting" msgstr "ピクセル単位のライティングを有効にする" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Wii システムアップデート" @@ -9522,11 +9584,11 @@ msgstr "Physical" msgid "Physical address space" msgstr "Physical address space" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Pick a debug font" @@ -9542,8 +9604,8 @@ msgstr "ピッチダウン" msgid "Pitch Up" msgstr "ピッチアップ" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "機種" @@ -9555,7 +9617,7 @@ msgstr "開始" msgid "Play / Record" msgstr "再生/記録" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "録画ファイルを再生" @@ -9655,7 +9717,7 @@ msgstr "" "非同期が起きたことが検出されました。 %1 は、フレーム %2 で非同期になった可能" "性があります" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "ポストプロセス" @@ -9708,7 +9770,7 @@ msgstr "" msgid "Presets" msgstr "プリセット" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "シンクロボタン 押下" @@ -9730,9 +9792,9 @@ msgstr "" "す

他の方式ではパフォーマンスに影響が出てしまう場合" "以外、オススメできません" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "前のゲームプロファイル" @@ -9740,8 +9802,9 @@ msgstr "前のゲームプロファイル" msgid "Previous Match" msgstr "Previous Match" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "前のプロファイル" @@ -9789,13 +9852,13 @@ msgstr "" msgid "Profile" msgstr "プロファイル" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9812,11 +9875,11 @@ msgstr "" msgid "Public" msgstr "誰でも" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "ゲームリストのキャッシュを消去" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "IPL ROMを User/GC/ に置く。" @@ -9845,7 +9908,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "確認" @@ -9870,11 +9933,11 @@ msgstr "R (アナログ)" msgid "READY" msgstr "READY" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO auto-detection" @@ -9911,13 +9974,13 @@ msgstr "Raw" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Read" @@ -9940,7 +10003,7 @@ msgstr "Read only" msgid "Read or Write" msgstr "Read or Write" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "読み込み専用" @@ -9999,7 +10062,7 @@ msgstr "赤 - 左" msgid "Red Right" msgstr "赤 - 右" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10051,8 +10114,8 @@ msgstr "Refreshed current values." msgid "Refreshing..." msgstr "セッションリストを更新中..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地域" @@ -10073,7 +10136,8 @@ msgstr "相対的な操作" msgid "Relative Input Hold" msgstr "相対入力を保持" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -10102,7 +10166,7 @@ msgstr "不要データを消去 (不可逆処理):" msgid "Remove Tag..." msgstr "タグの削除..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "タグを削除" @@ -10119,8 +10183,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Rename symbol" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10153,7 +10217,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10165,7 +10229,7 @@ msgstr "リセット" msgid "Reset All" msgstr "すべてをリセット" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Reset Ignore Panic Handler" @@ -10217,9 +10281,9 @@ msgstr "再起動が必要" msgid "Restore Defaults" msgstr "デフォルトの復元" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10353,21 +10417,21 @@ msgstr "" msgid "Rumble" msgstr "振動" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "GBAコアを専用のスレッドで実行する" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10436,11 +10500,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Sa&ve Code" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "ステートセーブ(&V)" @@ -10452,7 +10516,7 @@ msgstr "Safe" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10467,23 +10531,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "エクスポートの保存" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "FIFOログの保存" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "次の場所へ保存" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10494,15 +10570,19 @@ msgstr "セーブデータ" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "ゲームボーイアドバンス セーブファイル (*.sav);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "インポートの保存" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "最古のステートに上書き保存" @@ -10510,73 +10590,77 @@ msgstr "最古のステートに上書き保存" msgid "Save Preset" msgstr "プリセットの保存" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "レコーディングファイルに名前を付けて保存" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "ステートセーブ" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "ステートセーブ - スロット 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "ステートセーブ - スロット 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "ステートセーブ - スロット 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "ステートセーブ - スロット 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "ステートセーブ - スロット 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "ステートセーブ - スロット 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "ステートセーブ - スロット 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "ステートセーブ - スロット 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "ステートセーブ - スロット 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "ステートセーブ - スロット 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "ファイルとして保存" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "最古のステートに上書き保存" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "次のスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Save Symbol Map &As..." @@ -10596,11 +10680,7 @@ msgstr "プリセットとして保存..." msgid "Save as..." msgstr "ファイルとして保存..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Save combined output file as" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10614,19 +10694,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "ROMと同じフォルダにセーブファイルを保存する" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Save map file" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Save signature file" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "選択したスロットに保存" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "スロット %1 - %2" @@ -10662,7 +10734,7 @@ msgstr "画面撮影" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Search" @@ -10691,7 +10763,7 @@ msgstr "" "Search currently not possible in virtual address space. Please run the game " "for a bit and try again." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Search for an Instruction" @@ -10699,7 +10771,7 @@ msgstr "Search for an Instruction" msgid "Search games..." msgstr "ゲームタイトルを検索..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Search instruction" @@ -10735,7 +10807,7 @@ msgstr "選択" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10744,7 +10816,7 @@ msgid "Select Dump Path" msgstr "ダンプ先を選択" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "エクスポート先フォルダを選択" @@ -10752,18 +10824,22 @@ msgstr "エクスポート先フォルダを選択" msgid "Select Figure File" msgstr "フィギュアファイルを選択する" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "GBAのBIOSファイルを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "GBAのROMファイルを選択" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "GBAセーブファイルの保存先を選択" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "ステートスロットの選択" @@ -10772,6 +10848,10 @@ msgstr "ステートスロットの選択" msgid "Select Load Path" msgstr "ロードパスの選択" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "リソースパックの読込元フォルダを選択" @@ -10780,6 +10860,14 @@ msgstr "リソースパックの読込元フォルダを選択" msgid "Select Riivolution XML file" msgstr "Riivolution XMLファイルの選択" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Skylanderコレクションの選択" @@ -10788,58 +10876,62 @@ msgstr "Skylanderコレクションの選択" msgid "Select Skylander File" msgstr "Skylanderファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "スロット %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "スロットの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "スロットの選択" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "ステートスロット 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "ステートスロット 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "ステートスロット 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "ステートスロット 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "ステートスロット 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "ステートスロット 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "ステートスロット 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "ステートスロット 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "ステートスロット 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "ステートスロット 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "WFSパスの選択" @@ -10857,24 +10949,20 @@ msgstr "ディレクトリを選択" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "ファイルを選択" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "SDカードへの変更内容を同期するフォルダを選択" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "ディスクドライブチャンネルに表示するゲームを選択" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "SDカードファイルを選択" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "ファイルの選択" @@ -10883,19 +10971,15 @@ msgstr "ファイルの選択" msgid "Select a game" msgstr "タイトルを選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "NANDにインストールするタイトルを選択" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "カードeファイルの選択" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Select the RSO module address:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "再生するレコーディングファイルを選択する" @@ -10903,23 +10987,6 @@ msgstr "再生するレコーディングファイルを選択する" msgid "Select the Virtual SD Card Root" msgstr "仮想SDカードのルートを選択します" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "キーファイル (OTP/SEEPROM ダンプ)を選択" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "セーブファイルを選択" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "圧縮されたイメージの保存先を選択" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "圧縮されたイメージの保存先を選択" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "選択したフォント" @@ -10979,7 +11046,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11036,6 +11103,27 @@ msgstr "" "うまく動作するものを選んでください。

よく分からない" "場合は OpenGL を選択してください。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "送信" @@ -11044,6 +11132,15 @@ msgstr "送信" msgid "Sensor Bar Position:" msgstr "センサーバーの位置" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11076,39 +11173,35 @@ msgstr "Set &Value" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Set PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Wiiメニュー (ディスクドライブチャンネル) に表示(&D)" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "スロットAに読み込むメモリーカードファイルを選択" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "スロットBに読み込むメモリーカードファイルを選択" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Set symbol &end address" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Set symbol &size" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Set symbol end address" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Set symbol size (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11125,7 +11218,7 @@ msgstr "Wiiのシステム言語を変更できます" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11139,10 +11232,17 @@ msgstr "" "遅延をミリ秒単位で設定します。値を高くすると、オーディオの音割れが軽減される" "場合があります(特定のバックエンドのみ)。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -11195,11 +11295,11 @@ msgstr "新幹線専用コントローラー" msgid "Show % Speed" msgstr "% 速度を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "ログを表示(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "ツールバー(&T)" @@ -11207,15 +11307,15 @@ msgstr "ツールバー(&T)" msgid "Show Active Title in Window Title" msgstr "タイトルバーに起動中のゲーム名を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "すべて表示" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "オーストラリア" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Discordにプレイ中のゲームを表示" @@ -11224,7 +11324,7 @@ msgstr "Discordにプレイ中のゲームを表示" msgid "Show Disabled Codes First" msgstr "無効なコードを最初に表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11237,7 +11337,7 @@ msgstr "有効なコードを最初に表示する" msgid "Show FPS" msgstr "FPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "フレームカウンタを表示" @@ -11245,15 +11345,15 @@ msgstr "フレームカウンタを表示" msgid "Show Frame Times" msgstr "フレームタイムを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "フランス" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "ゲームキューブ" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "ドイツ" @@ -11261,27 +11361,27 @@ msgstr "ドイツ" msgid "Show Golf Mode Overlay" msgstr "Show Golf Mode Overlay" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "インフィニティベースを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "入力された操作を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "イタリア" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "日本" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "韓国" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "ラグカウンタを表示" @@ -11289,7 +11389,7 @@ msgstr "ラグカウンタを表示" msgid "Show Language:" msgstr "次の言語で表示" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "ログの設定を表示(&C)" @@ -11301,7 +11401,7 @@ msgstr "ネットプレイ:OSD表示" msgid "Show NetPlay Ping" msgstr "ネットプレイ:Ping表示" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "オランダ" @@ -11309,12 +11409,12 @@ msgstr "オランダ" msgid "Show On-Screen Display Messages" msgstr "OSDを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL規格の地域" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Show PC" @@ -11322,7 +11422,7 @@ msgstr "Show PC" msgid "Show Performance Graphs" msgstr "パフォーマンスグラフを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "特定機種のソフトだけを表示" @@ -11330,23 +11430,23 @@ msgstr "特定機種のソフトだけを表示" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "次の地域のソフトだけを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "再記録カウンターを表示" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "ロシア" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr " Skylandersポータルを表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "スペイン" @@ -11358,19 +11458,23 @@ msgstr "スピードカラーを表示" msgid "Show Statistics" msgstr "統計情報を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "システム時間を表示" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "アメリカ合衆国" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "不明" @@ -11382,27 +11486,27 @@ msgstr "垂直ブランキング期間 (VBlank) 時間を表示" msgid "Show VPS" msgstr "VPS を表示する" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD(Wiiウェア/VC/Wiiチャンネル)" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "地域なし" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Show in Code" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Show in Memory" @@ -11419,13 +11523,9 @@ msgstr "Show in memory" msgid "Show in server browser" msgstr "セッションブラウザに表示" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Show target in memor&y" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11467,18 +11567,6 @@ msgstr "" "

分からない場合はチェックを外してください。" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11505,6 +11593,18 @@ msgstr "" "

分からない場合はチェックを外してください。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11548,6 +11648,14 @@ msgstr "" "Shows various rendering statistics.

If unsure, " "leave this unchecked." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Side-by-Side" @@ -11564,7 +11672,7 @@ msgstr "横持ちの切替" msgid "Sideways Wii Remote" msgstr "横持ちで使用する" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Signature Database" @@ -11613,7 +11721,7 @@ msgstr "" "ストレッチに使用するバッファサイズをミリ秒単位で変更できます。小さくしすぎる" "と音割れの原因になります。" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Skip" @@ -11811,6 +11919,10 @@ msgstr "" msgid "Speed" msgstr "速度調整" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11847,11 +11959,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "新しいチート検索を開始します" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "操作の記録を開始(&C)" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "操作の記録を開始" @@ -11890,39 +12002,39 @@ msgstr "Step" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Step Into" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Step Out" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Step Over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Step out successful!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Step out timed out!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Step over in progress..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Step successful!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Stepping" @@ -11931,7 +12043,7 @@ msgstr "Stepping" msgid "Stereo" msgstr "ステレオ" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "表示方式" @@ -11961,7 +12073,7 @@ msgstr "スティック" msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "操作の再生/記録を停止" @@ -12040,14 +12152,14 @@ msgstr "スタイル:" msgid "Stylus" msgstr "スタイラス" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "完了" @@ -12074,24 +12186,24 @@ msgstr "保存ファイル %1 から正常に %n エクスポートされまし msgid "Successfully exported save files" msgstr "セーブファイルのエクスポートに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "証明書ファイルの取り出しに成功しました" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "ファイルの取り出しに成功しました" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "システムデータの取り出しに成功しました" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "セーブファイルのインポートに成功しました。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "タイトルのインストールに成功しました" @@ -12142,7 +12254,7 @@ msgstr "スワップフォース" msgid "Swapper" msgstr "スワッパー" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12170,17 +12282,21 @@ msgstr "スロットBを操作" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Symbol name:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symbols" @@ -12233,7 +12349,7 @@ msgstr "セーブデータの同期中..." msgid "System Language:" msgstr "システムの言語:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS用入力ウィンドウを表示" @@ -12244,9 +12360,9 @@ msgid "TAS Tools" msgstr "TAS関係" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "タグを表示" @@ -12264,7 +12380,7 @@ msgstr "Tail" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "スクリーンショット" @@ -12272,7 +12388,7 @@ msgstr "スクリーンショット" msgid "Target address range is invalid." msgstr "Target address range is invalid." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12309,7 +12425,7 @@ msgstr "テクスチャキャッシュの精度" msgid "Texture Dumping" msgstr "Texture Dumping" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "テクスチャーフィルタリング" @@ -12361,7 +12477,7 @@ msgstr "IPL ファイルは既知の正常なダンプではありません。 ( msgid "The Masterpiece partitions are missing." msgstr "The Masterpiece partitions are missing." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12369,7 +12485,7 @@ msgstr "" "NANDを修復できませんでした。現在のデータをバックアップして、NANDのダンプから" "やり直すことをオススメします" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NANDの修復に成功しました" @@ -12552,7 +12668,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "The filesystem is invalid or could not be read." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12700,7 +12816,7 @@ msgstr "" "同じファイルを複数のスロットで使用することはできません; すでに %1 によって使" "用されています。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12739,7 +12855,7 @@ msgstr "The specified common key index is {0} but should be {1}." msgid "The specified file \"{0}\" does not exist" msgstr "指定されたファイル \"{0}\" は存在しません" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12802,7 +12918,7 @@ msgstr "The update partition is missing." msgid "The update partition is not at its normal position." msgstr "The update partition is not at its normal position." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12927,7 +13043,7 @@ msgstr "" "すばらしい体験をのために、ぜひ Dolphin の ARM64 ビルドを実行してください。" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "元に戻すことはできません!" @@ -13167,7 +13283,7 @@ msgstr "Threads" msgid "Threshold" msgstr "しきい値" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13187,10 +13303,10 @@ msgstr "" msgid "Timed Out" msgstr "Timed Out" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "タイトル" @@ -13198,25 +13314,29 @@ msgstr "タイトル" msgid "To" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "全画面表示 切り替え(&F)" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "立体視 Anaglyph 切替" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "立体視 Side-by-side 切替" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "立体視 Top-bottom 切替" @@ -13224,28 +13344,28 @@ msgstr "立体視 Top-bottom 切替" msgid "Toggle All Log Types" msgstr "全てのログ情報を選択/解除" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "アスペクト比 設定切替" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Toggle Breakpoint" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "クロッピング 切替" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "カスタムテクスチャ 切替" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB Copies 設定切替" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "フォグ処理 設定切替" @@ -13257,31 +13377,31 @@ msgstr "フルスクリーン表示 切替" msgid "Toggle Pause" msgstr "一時停止 切替" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "SDカード挿入 切替" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Skip EFB Access 切替" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Toggle Texture Dumping" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "USB キーボード 切替" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "EFB Copies 設定切替" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "XFB Immediate Mode 設定切替" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "トークン化に失敗しました。" @@ -13404,7 +13524,7 @@ msgid "Trophy" msgstr "トロフィー" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13434,7 +13554,7 @@ msgstr "USB デバイスエミュレーション" msgid "USB Emulation" msgstr "USB エミュレーション" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB エミュレーションデバイス" @@ -13484,15 +13604,15 @@ msgstr "" "ケースではパフォーマンスへの影響を最小限に抑えつつカクつきが解消されるはずで" "すが、実際どのような結果になるかは使用中のビデオドライバに依存します。" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Unable to auto-detect RSO module" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "アップデートサーバーに接続できません。" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "アップデータのコピーを作成できません。" @@ -13532,7 +13652,7 @@ msgstr "" msgid "Unable to read file." msgstr "ファイルを読み込むことができません。" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "アップデータコピーのパーミッションを設定できません。" @@ -13555,11 +13675,11 @@ msgstr "未圧縮のGC/Wii ISOファイル (*.iso *.gcm)" msgid "Undead" msgstr "アンデット" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "直前のステートロードを取消" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "直前のステートセーブの取消" @@ -13578,7 +13698,7 @@ msgid "" msgstr "" "セーブデータを残してNAND内からこのタイトルを削除します。よろしいですか?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "米国" @@ -13680,11 +13800,11 @@ msgstr "不明(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "不明(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "制限なし" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "ROMを取り外してリセット" @@ -13692,7 +13812,12 @@ msgstr "ROMを取り外してリセット" msgid "Unlock Cursor" msgstr "マウスカーソルをロック 解除" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13792,7 +13917,7 @@ msgstr "直立状態 切替" msgid "Upright Wii Remote" msgstr "直立させた状態で使用する" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "統計レポートの設定" @@ -13901,7 +14026,7 @@ msgstr "ユーザー名" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13982,7 +14107,7 @@ msgstr "垂直ブランキング割り込み (VBI) をスキップする" msgid "Value" msgstr "値" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Value tracked to current instruction." @@ -14070,22 +14195,22 @@ msgstr "バーチャルノッチ" msgid "Virtual address space" msgstr "Virtual address space" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "音量" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "音量を下げる" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "ミュート 切替" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "音量を上げる" @@ -14093,7 +14218,7 @@ msgstr "音量を上げる" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WADファイル (*.wad)" @@ -14221,7 +14346,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -14376,7 +14501,7 @@ msgstr "常にパススルーを行うUSBデバイスリスト" msgid "Widescreen Hack" msgstr "疑似ワイドスクリーン化" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14446,7 +14571,7 @@ msgstr "WiiとWiiリモコン" msgid "Wii data is not public yet" msgstr "Wii data is not public yet" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii セーブファイル (*.bin);;すべてのファイル (*)" @@ -14481,11 +14606,11 @@ msgstr "地域なし" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Write" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -14653,7 +14778,7 @@ msgstr "" "意図せずこの設定を開いた場合は、戻って「標準コントローラ」を選択してくださ" "い。" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "最新バージョンを使用しているようです" @@ -14740,7 +14865,7 @@ msgstr "" "問題を解決するために今すぐ停止しますか?\n" "「No」を選択した場合、音声が乱れることがあります。" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ko.po b/Languages/po/ko.po index 9446d53316..751d67abb5 100644 --- a/Languages/po/ko.po +++ b/Languages/po/ko.po @@ -11,11 +11,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Siegfried, 2013-2023\n" -"Language-Team: Korean (http://app.transifex.com/delroth/dolphin-emu/language/" -"ko/)\n" +"Language-Team: Korean (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/ko/)\n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,7 +176,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 는 당신의 시스템에서 이 특성을 지원하지 않습니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 는 이 특성을 지원하지 않습니다" @@ -198,7 +198,7 @@ msgstr "%1 가 참가했습니다" msgid "%1 has left" msgstr "%1 가 떠났습니다" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 가 %2/%3 달성을 해제했습니다 %4/%5 점의 가치" @@ -210,7 +210,7 @@ msgstr "%1 는 적합한 롬이 아닙니다" msgid "%1 is now golfing" msgstr "%1 은 지금 골프중입니다" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 은 %2 를 플레이하고 있습니다" @@ -224,7 +224,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 점" @@ -244,22 +244,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (보통 속도)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "%1 의 값이 변경되었습니다" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "%1 의 값이 일치합니다" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1 의 값이 사용됩니다" @@ -267,6 +267,10 @@ msgstr "%1 의 값이 사용됩니다" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -287,7 +291,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -300,7 +304,7 @@ msgstr "%1x 원본 (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x 원본 (%2x%3) %4 용" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -344,10 +348,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "돌핀 정보(&A)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "메모리 중단점 추가 (&A)" @@ -357,23 +365,19 @@ msgstr "메모리 중단점 추가 (&A)" msgid "&Add New Code..." msgstr "새로운 코드 추가... (&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "함수 추가 (&A)" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "추가... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "오디오 설정(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "자동 업데이트(&A):" @@ -382,14 +386,14 @@ msgid "&Borderless Window" msgstr "틀 없는 창(&B)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "중단점 (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "버그 추적자(&B)" @@ -401,11 +405,11 @@ msgstr "취소(&C)" msgid "&Cheats Manager" msgstr "치트 매니저(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "업데이트 확인(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "부호 지우기 (& C)" @@ -413,7 +417,7 @@ msgstr "부호 지우기 (& C)" msgid "&Clone..." msgstr "복제... (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "코드 (&C)" @@ -421,18 +425,15 @@ msgstr "코드 (&C)" msgid "&Connected" msgstr "연결된(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "컨트롤러 설정(&C)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "주소 복사 (&C)" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "생성...(&C)" @@ -468,7 +469,7 @@ msgstr "편집... (&E)" msgid "&Eject Disc" msgstr "디스크 꺼내기(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "에뮬레이션(&E)" @@ -493,36 +494,36 @@ msgstr ".gci 로 내보내기... (&E)" msgid "&File" msgstr "파일(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "폰트 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "프레임 진행(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "자유 보기 설정(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "부호 생성 (&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "GitHub 저장소(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "그래픽 설정(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "도움말(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "단축키 설정(&H)" @@ -546,15 +547,15 @@ msgstr "가져오기... (&I)" msgid "&Infinity Base" msgstr "무한대 기반(&I)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "blr 삽입 (&I)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "프레임간 혼합(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "JIT(&J)" @@ -566,11 +567,11 @@ msgstr "언어(&L):" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "상태 로드(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "로드 부호 맵 (&L)" @@ -584,19 +585,19 @@ msgstr "파일을 현재 주소로 로드합니다 (&L)" msgid "&Lock Watches" msgstr "관찰들 고정 (&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "위젯 고정(&L)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "메모리(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "무비(&M)" @@ -604,7 +605,7 @@ msgstr "무비(&M)" msgid "&Mute" msgstr "음소거(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "네트워크(&N)" @@ -617,19 +618,19 @@ msgstr "아니요(&N)" msgid "&Open..." msgstr "열기...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "옵션(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "HLE 함수 패치 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "일시정지(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "실행(&P)" @@ -637,7 +638,7 @@ msgstr "실행(&P)" msgid "&Properties" msgstr "속성(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "읽기 전용 모드(&R)" @@ -645,7 +646,7 @@ msgstr "읽기 전용 모드(&R)" msgid "&Refresh List" msgstr "목록 새로고침(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "레지스터 (&R)" @@ -658,12 +659,12 @@ msgstr "제거 (&R)" msgid "&Remove Code" msgstr "코드 제거 (&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "부호 이름 바꾸기 (&R)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "리셋(&R)" @@ -675,7 +676,7 @@ msgstr "리소스 팩 매니저(&R)" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "부호 맵 저장 (&S)" @@ -687,11 +688,11 @@ msgstr "e-Reader 카드 스캔...(&S)" msgid "&Skylanders Portal" msgstr "스카이랜더스 포탈 (&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "속도 제한(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "중지(&S)" @@ -699,7 +700,7 @@ msgstr "중지(&S)" msgid "&Theme:" msgstr "테마(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "쓰레드(&T)" @@ -721,17 +722,17 @@ msgstr "롬 언로드(&U)" msgid "&Unlock Watches" msgstr "관찰들 고정풀기 (&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "관찰(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "웹사이트(&W)" @@ -743,11 +744,11 @@ msgstr "위키(&W)" msgid "&Yes" msgstr "예(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' 이 발견되지 않았습니다, 생성된 부호 이름이 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' 이 발견되지 않았습니다, 공통 함수들을 대신 스캔합니다" @@ -767,7 +768,7 @@ msgstr "(시스템)" msgid "(host)" msgstr "(호스트)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(꺼짐)" @@ -791,7 +792,7 @@ msgstr ", 쉼표" msgid "- Subtract" msgstr "- 빼기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -869,7 +870,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x 비등방성" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -881,7 +882,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -917,19 +918,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-비트 비부호화 정수" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D 깊이" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -953,7 +954,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1051,7 +1052,7 @@ msgid "If unsure, leave this unchecked." msgstr "" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1086,8 +1087,8 @@ msgstr "" msgid "> Greater-than" msgstr "> 보다-큰" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "넷플레이 세션이 이미 진행 중입니다!" @@ -1111,7 +1112,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "디스크가 이미 삽입되려는 중입니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1123,7 +1124,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "저장 상태는 시작할 게임 명시 없이는 로드될 수 없습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1223,7 +1224,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "달성" @@ -1315,7 +1316,7 @@ msgstr "액션 리플레이: 일반 코드 0: 올바르지 않은 하위 분류 msgid "Activate NetPlay Chat" msgstr "넷플레이 채팅 활성" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "액티브" @@ -1366,11 +1367,11 @@ msgstr "새로운 USB 장치 추가" msgid "Add Shortcut to Desktop" msgstr "데스크탑에 바로가기 추가" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "중단점 추가" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "메모리 중단점 추가" @@ -1404,13 +1405,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "주소" @@ -1429,7 +1430,7 @@ msgstr "CPU 상태에 의한 주소 공간" msgid "Address:" msgstr "주소:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1507,7 +1508,7 @@ msgstr "고급" msgid "Advanced Settings" msgstr "고급 설정" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1563,7 +1564,7 @@ msgstr "모든 더블" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1571,7 +1572,7 @@ msgid "All Files" msgstr "모든 파일" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "모든 파일 (*)" @@ -1580,7 +1581,7 @@ msgstr "모든 파일 (*)" msgid "All Float" msgstr "모든 실수" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "모든 GC/Wii 파일들" @@ -1589,8 +1590,8 @@ msgstr "모든 GC/Wii 파일들" msgid "All Hexadecimal" msgstr "모든 16진수" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "모든 저장 상태 (*.sav *.s##);; 모든 파일 (*)" @@ -1614,11 +1615,11 @@ msgstr "모든 플레이어의 코드가 동기화되었습니다." msgid "All players' saves synchronized." msgstr "모든 플레이어의 저장이 동기화되었습니다." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "맞지 않는 지역 설정 허락" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "사용 통계 보고 허용" @@ -1678,7 +1679,7 @@ msgstr "각도" msgid "Angular velocity to ignore and remap." msgstr "무시하고 리맵핑할 각 속도" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "안티-앨리어싱" @@ -1690,19 +1691,19 @@ msgstr "안티-앨리어싱:" msgid "Any Region" msgstr "아무 지역" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "서명 덧붙이기" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "존재하는 서명 파일에 덧붙이기... (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "서명 파일 적용... (&y)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1718,9 +1719,9 @@ msgstr "앱로더 날짜:" msgid "Apply" msgstr "적용" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "서명 파일 적용" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1730,7 +1731,7 @@ msgstr "독단적 밉맵 감지" msgid "Are you sure that you want to delete '%1'?" msgstr "'%1' 를 정말로 지우고 싶습니까?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "이 파일을 정말로 삭제하시겠습니까?" @@ -1767,8 +1768,8 @@ msgstr "종횡비:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1829,7 +1830,11 @@ msgstr "자동" msgid "Auto (Multiple of 640x528)" msgstr "자동 (640x528의 배수)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "설정 자동 업데이트" @@ -1853,7 +1858,7 @@ msgstr "창 크기 자동 조정" msgid "Auto-Hide" msgstr "자동-숨기기" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "RSO 모듈을 자동-감지할까요?" @@ -1869,6 +1874,17 @@ msgstr "" "창 크기를 내부 해상도로 자동 조정합니다.

모르겠으" "면, 체크 해제해 두세요." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1880,7 +1896,7 @@ msgid "Auxiliary" msgstr "보조" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1966,10 +1982,10 @@ msgstr "안 좋은 오프셋이 제공되었습니다." msgid "Bad value provided." msgstr "안 좋은 값이 제공되었습니다." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "배너" @@ -1997,7 +2013,7 @@ msgstr "기본 우선순위" msgid "Basic" msgstr "기본" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "기본 설정" @@ -2057,9 +2073,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "블락 크기" @@ -2097,15 +2113,15 @@ msgstr "" "블루투스 패스쓰루 모드가 켜졌습니다, 하지만 돌핀이 libusb 없이 빌드되었습니" "다. 패스쓰루 모드를 사용할 수 없습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "부팅하고 멈추기" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 백업 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 키 파일 (*.bin);;모든 파일 (*)" @@ -2233,30 +2249,30 @@ msgstr "" msgid "Branch: %1" msgstr "분기: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "분기들" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "중단" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "중단점" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "중단점을 만났습니다! 스텝 나가기가 중단되었습니다." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "중단점" @@ -2354,7 +2370,7 @@ msgstr "" msgid "C Stick" msgstr "C 스틱" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "서명 파일 생성... (&C)" @@ -2393,7 +2409,7 @@ msgstr "" msgid "Calculate" msgstr "계산" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2459,14 +2475,14 @@ msgstr "이 트로피를 위해 악당들을 편집할 수 없습니다!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} 연결 핸들로 Wii 리모트를 찾을 수 없음" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2515,7 +2531,7 @@ msgstr "이 주소에 대한 AR 코드를 생성할 수 없습니다." msgid "Cannot refresh without results." msgstr "결과 없이 새로할 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI 폴더를 빈 경로로 설정할 수 없습니다." @@ -2563,7 +2579,7 @@ msgstr "디스크 변경...(&D)" msgid "Change Disc" msgstr "디스크 변경" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "디스크 자동 교환" @@ -2633,7 +2649,7 @@ msgstr "치트 찾기" msgid "Cheats Manager" msgstr "치트 관리자" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "NAND 체크..." @@ -2645,7 +2661,7 @@ msgstr "게임 목록 변경을 백그라운드로 체크" msgid "Check for updates" msgstr "업데이트 확인" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2665,29 +2681,29 @@ msgstr "중국" msgid "Choose" msgstr "고르세요" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "열 파일 선택하기" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "열거나 만들 파일 선택" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "우선 입력 파일 선택" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "차선 입력 파일 선택" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "GCI 기본 폴더를 고르세요" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "압축해제할 폴더를 선택" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2706,7 +2722,7 @@ msgstr "클래식 컨트롤러" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2716,7 +2732,7 @@ msgstr "지움" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "캐시 청소" @@ -2737,7 +2753,7 @@ msgstr "복제하고 코드 수정... (&E)" msgid "Close" msgstr "닫기" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "환경설정(&n)" @@ -2761,7 +2777,7 @@ msgstr "코드:" msgid "Codes received!" msgstr "코드들을 받았습니다!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "색 보정" @@ -2781,7 +2797,7 @@ msgstr "색 공간" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "두 서명 파일을 합치기... (&T)" @@ -2822,9 +2838,9 @@ msgstr "시작하기 전에 쉐이더들 컴파일" msgid "Compiling Shaders" msgstr "쉐이더들 컴파일하기" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "압축" @@ -2849,7 +2865,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "상태" @@ -2956,9 +2972,9 @@ msgstr "출력 설정" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "확정" @@ -2971,7 +2987,7 @@ msgstr "백엔드 변경 확정" msgid "Confirm on Stop" msgstr "멈출 때 확인" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2982,7 +2998,7 @@ msgstr "확정" msgid "Connect" msgstr "연결" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "밸런스 보드 연결" @@ -2990,27 +3006,27 @@ msgstr "밸런스 보드 연결" msgid "Connect USB Keyboard" msgstr "USB 키보드 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Wii 리모트 %1 연결" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Wii 리모트 1 연결" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Wii 리모트 2 연결" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Wii 리모트 3 연결" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Wii 리모트 4 연결" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Wii 리모트 연결" @@ -3055,19 +3071,19 @@ msgstr "컨트롤 스틱" msgid "Controller Profile" msgstr "컨트롤러 프로파일" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "컨트롤러 프로파일 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "컨트롤러 프로파일 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "컨트롤러 프로파일 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "컨트롤러 프로파일 4" @@ -3079,6 +3095,16 @@ msgstr "컨트롤러 설정" msgid "Controllers" msgstr "컨트롤러" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3087,7 +3113,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3098,7 +3124,7 @@ msgstr "" "입니다.

높은 수치는 더 강한 화면-밖 효과를 만듭니다 반면 낮은 수치는 " "좀 더 편안합니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3112,7 +3138,7 @@ msgstr "" "올 것입니다.

모르겠으면, 원본을 선택하세요." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3144,7 +3170,7 @@ msgid "" msgstr "" "높은 혹은 낮은-레벨 DSP 에뮬레이션을 사용할지 정합니다. 기본값은 켜기" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "수렴" @@ -3247,18 +3273,22 @@ msgstr "" msgid "Copy" msgstr "복사" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "함수 복사 (&f)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "헥스 복사 (&h)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "주소 복사" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "복사가 실패했습니다" @@ -3267,18 +3297,14 @@ msgstr "복사가 실패했습니다" msgid "Copy Hex" msgstr "헥스 복사" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "값 복사" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "코드 줄 복사 (&l)" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "대상 주소 복사(&g)" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "A로 복사" @@ -3404,8 +3430,8 @@ msgstr "{0} 파일을 인식할 수 없습니다." msgid "Could not save your changes!" msgstr "변경을 저장할 수 없었습니다!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "업데이터 처리를 시작할 수 없었습니다: {0}" @@ -3510,7 +3536,7 @@ msgstr "" "로우 통계에 효과가 있을지 모릅니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "현재 지역" @@ -3702,24 +3728,24 @@ msgstr "디코딩 품질:" msgid "Decrease" msgstr "감소" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "수렴 감소" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "깊이 감소" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "에뮬레이션 속도 감소" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "IR 감소" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "선택된 상태 슬롯을 줄입니다" @@ -3780,8 +3806,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "삭제" @@ -3799,7 +3825,7 @@ msgstr "선택된 파일들 삭제..." msgid "Delete the existing file '{0}'?" msgstr "존재하는 파일 '{0}' 를 삭제합니까?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "깊이" @@ -3814,9 +3840,9 @@ msgstr "깊이:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "설명" @@ -3865,7 +3891,7 @@ msgstr "떨어진" msgid "Detect" msgstr "감지" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "RSO 모듈 감지하기" @@ -3873,7 +3899,7 @@ msgstr "RSO 모듈 감지하기" msgid "Deterministic dual core:" msgstr "결정론적 듀얼 코어:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "개발 (하루에 여러 번)" @@ -3931,15 +3957,15 @@ msgstr "복사 필터 비활성" msgid "Disable EFB VRAM Copies" msgstr "EFB 비디오램 복사 비활성" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "에뮬레이션 속도 제한 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "패스트멤 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "패스트멤 투기장 비활성" @@ -3947,11 +3973,11 @@ msgstr "패스트멤 투기장 비활성" msgid "Disable Fog" msgstr "안개 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "JIT 캐시 비활성" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3979,7 +4005,7 @@ msgstr "" "링을 막습니다.

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4007,7 +4033,8 @@ msgstr "디스크" msgid "Discard" msgstr "폐기" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -4042,15 +4069,15 @@ msgstr "거리" msgid "Distance of travel from neutral position." msgstr "중립 위치에서 이동 거리" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "돌핀이 정보를 돌핀 개발자들에게 보고하도록 허가하시겠습니까?" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\" 를 게임 경로들의 목록에 추가하고 싶습니까?" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "부호 이름 목록을 청소할까요?" @@ -4060,7 +4087,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "선택된 저장 파일 %n 을 삭제하고 싶습니까?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "에뮬레이션을 중단하고 싶습니까?" @@ -4081,9 +4108,9 @@ msgstr "돌핀 FIFO 로그 (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "돌핀 게임 모드 프리셋" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "돌핀 맵 파일 (*.map)" @@ -4095,8 +4122,8 @@ msgstr "돌핀 서명 CSV 파일" msgid "Dolphin Signature File" msgstr "돌핀 서명 파일" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "돌핀 TAS 무비 (*.dtm)" @@ -4154,13 +4181,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "돌핀은 라이슨스되지 않은 디스크들을 검증할 수 없습니다." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"돌핀은 자동으로 지역이 결정될 수 없는 타이틀에 대해 이것을 사용할 것입니다." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "돌핀의 치트 시스템이 현재 꺼졌습니다." @@ -4170,7 +4190,7 @@ msgstr "돌핀의 치트 시스템이 현재 꺼졌습니다." msgid "Domain" msgstr "도메인" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "업데이트 안함" @@ -4227,11 +4247,11 @@ msgstr "%1 코드들이 다운로드됨. (%2 추가됨)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4274,7 +4294,7 @@ msgstr "가짜가상메모리 덤프(&F)" msgid "Dump &MRAM" msgstr "MRAM 덤프(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "오디오 덤프" @@ -4286,7 +4306,7 @@ msgstr "기반 텍스처 덤프" msgid "Dump EFB Target" msgstr "EFB 타겟 덤프" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "프레임들 덤프" @@ -4416,16 +4436,16 @@ msgstr "동 아시아" msgid "Edit Breakpoint" msgstr "중단점 수정" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "편집..." @@ -4449,7 +4469,7 @@ msgstr "효과적인" msgid "Effective priority" msgstr "효율 우선순위" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4517,7 +4537,7 @@ msgstr "" "현재: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "에뮬레이션 속도" @@ -4537,7 +4557,7 @@ msgstr "API 검증 레이어 활성화" msgid "Enable Audio Stretching" msgstr "오디오 늘림 활성" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "치트 활성화" @@ -4561,9 +4581,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "듀얼 코어 활성화" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "듀얼 코어 활성화 (속도 상승)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4607,7 +4627,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4649,7 +4669,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "비공식 달성 활성화" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "사용 통계 보고 활성화" @@ -4736,7 +4756,7 @@ msgstr "" "부동 소수점 결과 플래그 계산을 켭니다, 소수의 게임들에서 필요합니다. (켬 = 호" "환성, 끔 = 빠름)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4781,7 +4801,7 @@ msgstr "" "들은 이것과 아무런 이슈가 없습니다.

잘 모르겠으면, " "체크 해제해 두세요." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4840,6 +4860,15 @@ msgstr "" "한 대체 제공자입니다.\n" "이곳에서 서비스 설명을 읽으세요: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4877,7 +4906,7 @@ msgstr "" "\n" "가져오기를 중단합니다." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4928,14 +4957,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4974,26 +5003,26 @@ msgstr "RSO 모듈 주소를 입력:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5010,9 +5039,9 @@ msgstr "RSO 모듈 주소를 입력:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "오류" @@ -5044,7 +5073,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "에러가 있는 세션 목록: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "일부 텍스처 팩을 로딩하는 중에 에러가 발생했습니다" @@ -5141,7 +5170,7 @@ msgstr "{1} 파티션에 {0} 사용되지 않은 블락들에서 에러들이 msgid "Euphoria" msgstr "유포리아" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "유럽" @@ -5154,15 +5183,15 @@ msgstr "전용 우버쉐이더" msgid "Exit" msgstr "나가기" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "+ 혹은 닫는 괄호를 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "예상되는 인수들: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "닫는 괄호를 예상했습니다." @@ -5174,19 +5203,19 @@ msgstr "쉼표를 예상했습니다." msgid "Expected end of expression." msgstr "표현식의 끝을 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "입력의 이름을 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "여는 괄호를 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "표현식의 시작을 예상했습니다." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "변수 이름을 예상했습니다." @@ -5194,7 +5223,7 @@ msgstr "변수 이름을 예상했습니다." msgid "Experimental" msgstr "실험적" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "모든 Wii 저장을 내보내기" @@ -5205,11 +5234,11 @@ msgstr "모든 Wii 저장을 내보내기" msgid "Export Failed" msgstr "내보내기를 실패했습니다" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "입력 기록 내보내기" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "입력 기록 내보내기..." @@ -5237,7 +5266,7 @@ msgstr ".gcs 로 내보내기... (&g)" msgid "Export as .&sav..." msgstr ".sav 로 내보내기... (&s)" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5265,35 +5294,35 @@ msgstr "외부의" msgid "External Frame Buffer (XFB)" msgstr "외부 프레임 버퍼 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "NAND 에서 증명서 추출" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "전체 디스크 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "전체 파티션 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "파일 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "파일 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "시스템 데이터 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "모든 파일을 압축 풀기..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "디렉토리 압축 풀기..." @@ -5323,7 +5352,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "넷플레이 목록 : %1 에 이 세션을 추가하는데에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다." @@ -5389,7 +5418,7 @@ msgstr "넷플레이 GBA{0} 저장 파일 삭제에 실패했습니다. 쓰기 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "넷플레이 메모리 카드를 삭제에 실패했습니다. 쓰기 권한을 검증하세요." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "선택된 파일 삭제에 실패했습니다." @@ -5418,15 +5447,15 @@ msgstr "%1 저장 파일(들)로부터 %n 를 내보내기에 실패했습니다 msgid "Failed to export the following save files:" msgstr "다음 저장 파일들을 내보내기에 실패했습니다:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "NAND 에서 증명서 추출에 실패했습니다" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "파일 압축 풀기에 실패했습니다." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "시스템 데이터 압축 풀기에 실패했습니다." @@ -5448,14 +5477,14 @@ msgstr "하나 이상의 D3D 부호 찾기에 실패했습니다" msgid "Failed to import \"%1\"." msgstr "\"%1\" 가져오기에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "저장 파일을 가져오기에 실패했습니다. 해당 게임을 한번 띄워주세요, 그리고 다" "시 시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5463,7 +5492,7 @@ msgstr "" "저장 파일 가져오기에 실패했습니다. 주어진 파일은 오염되었거나 적합한 Wii 저장" "이 아닙니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5473,7 +5502,7 @@ msgstr "" "것이 그 안에 파일들에 액세스를 막고 있습니다. NAND (도구 -> NAND 관리 -> " "NAND 체크...) 를 고쳐 보세요, 그런 후 저장을 다시 가져오세요." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "코어 인식에 실패했습니다" @@ -5496,11 +5525,11 @@ msgid "Failed to install pack: %1" msgstr "팩 설치에 실패했습니다: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "NAND 에 이 타이틀 설치에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5508,8 +5537,8 @@ msgstr "" "포트 %1 듣기에 실패했습니다. 구동 중인 다른 넷플레이 서버 인스턴스가 있습니" "까?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "%1 에서 RSO 모듈 로드에 실패했습니다" @@ -5521,7 +5550,7 @@ msgstr "d3d11.dll 로드에 실패했습니다" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll 로드에 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "맵 파일 '%1' 을 로드에 실패했습니다." @@ -5560,7 +5589,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' 를 열기에 실패했습니다" @@ -5601,7 +5630,7 @@ msgstr "" msgid "Failed to open file." msgstr "파일 열기에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "서버 열기에 실패했습니다" @@ -5744,19 +5773,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "FIFO 로그 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "경로 '%1' 에 코드 맵 저장을 실패했습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "서명 파일 '%1' 을 저장에 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "경로 '%1' 에 심볼 맵 저장을 실패했습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "서명 파일 '%1' 에 저장에 실패했습니다." @@ -5815,8 +5844,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "실패" @@ -5824,11 +5853,12 @@ msgstr "실패" msgid "Fair Input Delay" msgstr "공정한 입력 지연" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "대비책 지역" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "대비책 지역:" @@ -5866,9 +5896,9 @@ msgstr "피겨 타입" msgid "File Details" msgstr "파일 세부사항" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "파일 형식" @@ -5880,20 +5910,20 @@ msgstr "파일 형식:" msgid "File Info" msgstr "파일 정보" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "파일 이름" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "파일 경로" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "파일 크기" @@ -5995,9 +6025,9 @@ msgstr "플래그" msgid "Float" msgstr "플로우트" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "분기 따라가기 (&b)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6068,7 +6098,7 @@ msgstr "%1 가 VS 확장을 지원하지 않기 때문에 강제로 꺼졌습니 msgid "Forced on because %1 doesn't support geometry shaders." msgstr "%1 가 기하학 쉐이더를 지원하지 않기 때문에 강제로 켜졌습니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6078,7 +6108,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6124,20 +6154,20 @@ msgstr "%n 주소(들)을 발견했습니다." msgid "Frame %1" msgstr "프레임 %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "프레임 진행" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "프레임 진행 속도 감소" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "프레임 진행 속도 증가" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "프레임 진행 속도 리셋" @@ -6197,11 +6227,11 @@ msgstr "" msgid "FreeLook" msgstr "자유보기" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "자유로운 보기" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "자유로운 보기 토글" @@ -6235,11 +6265,12 @@ msgstr "에서:" msgid "FullScr" msgstr "전체화면" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "함수" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -6259,7 +6290,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "GBA 카트리지 경로:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA 코어" @@ -6275,11 +6306,11 @@ msgstr "GBA 설정" msgid "GBA TAS Input %1" msgstr "GBA TAS 입력 %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA 볼륨" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA 창 크기" @@ -6415,11 +6446,11 @@ msgstr "게임" msgid "Game Boy Advance" msgstr "게임 보이 어드밴스" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "게임 보이 어드밴스 카트리지 (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6455,8 +6486,8 @@ msgstr "게임 감마" msgid "Game Gamma:" msgstr "게임 감마:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "게임 ID" @@ -6585,7 +6616,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko 코드" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6605,14 +6637,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "새로운 통계 식별자 생성" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "'%1' 에서 부호 이름들을 생성했습니다" @@ -6630,7 +6669,7 @@ msgstr "독일" msgid "GetDeviceList failed: {0}" msgstr "디바이스목록얻기 실패했음: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6663,7 +6702,7 @@ msgstr "그래픽" msgid "Graphics Mods" msgstr "그래픽 모드" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "그래픽 토글" @@ -6672,7 +6711,7 @@ msgstr "그래픽 토글" msgid "Graphics mods are currently disabled." msgstr "그래픽 모드가 현재 꺼졌습니다." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6698,7 +6737,7 @@ msgstr "초록 왼쪽" msgid "Green Right" msgstr "초록 오른쪽" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "격자 보기" @@ -6780,7 +6819,7 @@ msgstr "숨기기" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "모두 숨기기" @@ -6798,12 +6837,12 @@ msgstr "원격 GBA 숨기기" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "높은" @@ -6871,7 +6910,7 @@ msgstr "호스트명" msgid "Hotkey Settings" msgstr "단축키 설정" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6995,11 +7034,11 @@ msgstr "" "\n" "타이밍-민감한 컨트롤을 지진 턴-기반 게임에 알맞음, 골프 같은." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "식별자 생성" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7051,6 +7090,16 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7119,7 +7168,7 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "BootMii NAND 백업 가져오기..." @@ -7134,15 +7183,15 @@ msgstr "가져오기를 실패했습니다" msgid "Import Save File(s)" msgstr "저장 파일(들)을 가져오기" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Wii 저장 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "NAND 백업 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7204,24 +7253,24 @@ msgstr "잘못된 플레이시간 값!" msgid "Increase" msgstr "증가" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "수렴 증가" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "깊이 증가" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "에뮬레이션 속도 증가" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "IR 증가" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "선택된 상태 슬롯을 늘립니다" @@ -7272,8 +7321,8 @@ msgstr "정보" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "정보" @@ -7287,10 +7336,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "입력" @@ -7309,13 +7358,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "nop 삽입 (&n)" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD 카드 삽입" @@ -7333,7 +7379,7 @@ msgstr "파티션 (%1) 설치" msgid "Install Update" msgstr "업데이트 설치" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WAD 설치..." @@ -7341,8 +7387,9 @@ msgstr "WAD 설치..." msgid "Install to the NAND" msgstr "NAND 에 설치" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "명령." @@ -7356,7 +7403,7 @@ msgstr "명령" msgid "Instruction Breakpoint" msgstr "명령 중단점" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "명령:" @@ -7365,7 +7412,7 @@ msgstr "명령:" msgid "Instruction: %1" msgstr "명령: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7432,8 +7479,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "내부 LZO 오류 - 압축해제된 버전 스트링 분석에 실패했습니다 ({0} / {1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "내부 해상도" @@ -7450,7 +7497,7 @@ msgstr "AR 코드를 생성하는 동안 내부 에러." msgid "Interpreter (slowest)" msgstr "인터프리터 (가장 느림)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "인터프리터 코어" @@ -7458,7 +7505,7 @@ msgstr "인터프리터 코어" msgid "Invalid Expression." msgstr "부적합 표현." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "자동-업데이트 서비스에서 부적합한 JSON 을 받았습니다: {0}" @@ -7466,7 +7513,7 @@ msgstr "자동-업데이트 서비스에서 부적합한 JSON 을 받았습니 msgid "Invalid Mixed Code" msgstr "부적합 복합 코드" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "부적합한 %1 이 제공됨: %2" @@ -7475,7 +7522,7 @@ msgstr "부적합한 %1 이 제공됨: %2" msgid "Invalid Player ID" msgstr "부적합한 플레이어 아이디" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "부적합 RSO 모듈 주소: %1" @@ -7555,11 +7602,11 @@ msgstr "이탈리아" msgid "Item" msgstr "아이템" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT 블록 연결 끄기" @@ -7567,47 +7614,47 @@ msgstr "JIT 블록 연결 끄기" msgid "JIT Blocks" msgstr "JIT 블록들" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT 분기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT 소수점 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT 정수 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT 로드스토어 부동 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT 로드스토어 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT 로드스토어 짝짓기 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT 로드스토어 lXz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT 로드스토어 lbzx 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT 로드스토어 lwz 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT 끄기 (JIT 코어)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT 짝짓기 끄기" @@ -7619,14 +7666,15 @@ msgstr "ARM64 용 JIT 리컴파일러 (권장)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "x86-64 용 JIT 리컴파일러 (권장)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "JIT 레지스터 캐시 끄기" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT 시스템레지스터 끄기" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7636,11 +7684,11 @@ msgstr "" "JIT 이 캐시 청소후에 코드 공간 찾기에 실패했습니다. 이것은 절대 일어나서는 안" "됩니다. 버그 트랙커에 이 사고를 보고해주세요. 돌핀은 지금 나갈 것입니다." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "일본" @@ -7663,7 +7711,7 @@ msgid "" msgstr "" "Kaos 가 이 트로피에 대한 유일한 악당입니다. 어느 것도 수정할 필요가 없습니다!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "계속 구동하기" @@ -7698,7 +7746,7 @@ msgstr "키보드 컨트롤러" msgid "Keys" msgstr "키" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7706,7 +7754,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "플레이어 차기" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "한국" @@ -7845,6 +7893,14 @@ msgstr "" "좌/우-클릭 출력 설정하기.\n" "중-클릭 지우기." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7878,11 +7934,11 @@ msgstr "왼쪽" msgid "Limit Chunked Upload Speed:" msgstr "덩어리된 업로드 스피드 제한:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "목록 세로줄" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "목록 보기" @@ -7892,17 +7948,17 @@ msgstr "듣기" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "배드 맵 파일 로드... (&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "다른 맵 파일 로드... (&O)" @@ -7911,7 +7967,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7922,7 +7978,7 @@ msgstr "커스텀 텍스처 로드" msgid "Load File" msgstr "파일 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "게임큐브 메인 메뉴 로드" @@ -7930,16 +7986,21 @@ msgstr "게임큐브 메인 메뉴 로드" msgid "Load Host's Save Data Only" msgstr "호스트의 저장 데이터만 로드" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "마지막 상태 로드" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "경로 로드:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "롬 로드" @@ -7947,104 +8008,104 @@ msgstr "롬 로드" msgid "Load Slot" msgstr "슬롯 로드" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "최근 1 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "최근 10 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "최근 2 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "최근 3 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "최근 4 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "최근 5 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "최근 6 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "최근 7 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "최근 8 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "최근 9 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "슬롯 1 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "슬롯 10 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "슬롯 2 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "슬롯 3 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "슬롯 4 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "슬롯 5 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "슬롯 6 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "슬롯 7 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "슬롯 8 상태 로드" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "슬롯 9 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "파일에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "선택된 슬롯에서 상태를 로드합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "슬롯에서 상태 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Wii 시스템 메뉴 %1 로드" @@ -8052,20 +8113,15 @@ msgstr "Wii 시스템 메뉴 %1 로드" msgid "Load and Write Host's Save Data" msgstr "호스트의 저장 데이터 로드하고 쓰기" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "선택된 슬롯에서 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "슬롯 %1 - %2 로부터 로드" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "맵 파일 로드" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "vWii 시스템 메뉴 %1 로드" @@ -8073,7 +8129,7 @@ msgstr "vWii 시스템 메뉴 %1 로드" msgid "Load..." msgstr "로드..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "'%1' 에서 부호들이 로드되었습니다" @@ -8104,20 +8160,20 @@ msgstr "지역" msgid "Lock Mouse Cursor" msgstr "마우스 커서 가두기" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "잠긴" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "로그" @@ -8127,10 +8183,11 @@ msgid "Log Configuration" msgstr "로그 환경설정" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "로그인" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "JIT 명령 커버리지 로그" @@ -8172,7 +8229,7 @@ msgstr "루프" msgid "Lost connection to NetPlay server..." msgstr "넷플레이 서버 연결을 잃었습니다..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "낮은" @@ -8235,9 +8292,9 @@ msgstr "플레이시간 값이 유효한지 확인하세요!" msgid "Make sure there is a Skylander in slot %1!" msgstr "슬롯 %1 에 스카이랜더가 있는지 확인하세요!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "제작사" @@ -8246,7 +8303,7 @@ msgstr "제작사" msgid "Maker:" msgstr "제작사:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8258,7 +8315,7 @@ msgstr "" "게임들을 망가뜨릴 것입니다.

잘 모르겠으면, 이것을 체" "크 해제해 두세요." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "NAND 관리" @@ -8297,7 +8354,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Wii 메뉴와 일부 게임에서 느려짐을 유발할지도 모릅니다." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "중간" @@ -8313,7 +8370,7 @@ msgstr "메모리 중단점" msgid "Memory Card" msgstr "메모리 카드" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "메모리 카드 관리자" @@ -8341,7 +8398,7 @@ msgstr "메모리카드: 부적합 소스 주소로 호출된 읽기 ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "메모리카드: 부적합 목적지 주소로 호출된 쓰기 ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8352,7 +8409,7 @@ msgstr "" "장들을 덮어쓰게 됩니다. 이 처리는 되돌릴 수 없습니다, 따라서 두 NAND 를 계속 " "백업할 것을 권장합니다. 정말 계속합니까?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8433,8 +8490,8 @@ msgstr "슬롯 수정" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "발견된 모듈: %1" @@ -8476,7 +8533,7 @@ msgstr "마우스 커서 가시성" msgid "Move" msgstr "이동" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "무비" @@ -8502,10 +8559,10 @@ msgstr "곱하는 수" msgid "N&o to All" msgstr "모두 아니오(&o)" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 체크" @@ -8514,8 +8571,8 @@ msgstr "NAND 체크" msgid "NKit Warning" msgstr "NKit 경고" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8524,7 +8581,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8545,8 +8602,8 @@ msgstr "" "니다.

만일 게임이 감마 값을 고를 수 있도록 허용한다면, 여기서 맞추세" "요.

모르겠으면, 2.35 로 두세요." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8559,11 +8616,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "이름" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "새로운 태그 이름:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "제거할 태그의 이름:" @@ -8650,7 +8707,7 @@ msgid "Never Auto-Update" msgstr "자동-업데이트 절대 안함" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "새로운" @@ -8675,7 +8732,7 @@ msgstr "새로운 찾기" msgid "New Tag..." msgstr "새로운 태그..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "새로운 식별자가 생성되었습니다." @@ -8683,12 +8740,13 @@ msgstr "새로운 식별자가 생성되었습니다." msgid "New instruction:" msgstr "새로운 명령:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "새로운 태그" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "다음 게임 프로파일" @@ -8696,8 +8754,9 @@ msgstr "다음 게임 프로파일" msgid "Next Match" msgstr "다음 일치" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "다음 프로파일" @@ -8784,7 +8843,7 @@ msgstr "선택된 그래픽 모드가 없음" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "이슈가 감지되지 않았습니다." @@ -8829,7 +8888,7 @@ msgstr "" "undo.dtm 이 없습니다, 무비 갈림을 막기위해서 상태로드 되돌리기를 취소합니다" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9037,7 +9096,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "온라인 문서(&D)" @@ -9045,7 +9104,7 @@ msgstr "온라인 문서(&D)" msgid "Only Show Collection" msgstr "컬렉션만 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9053,7 +9112,7 @@ msgstr "" "접두사를 가진 부호들만 덧붙입니다:\n" "(모든 부호들은 빈칸)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9076,14 +9135,18 @@ msgstr "담고 있는 폴더 열기(&C)" msgid "Open &User Folder" msgstr "사용자 폴더 열기 (&U)" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "디렉토리 열기..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "FIFO 로그 열기" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9184,7 +9247,7 @@ msgstr "다른 것들" msgid "Other Partition (%1)" msgstr "다른 파티션 (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "다른 상태 단축키" @@ -9201,7 +9264,7 @@ msgstr "다른 게임..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "출력 리샘플링" @@ -9209,16 +9272,16 @@ msgstr "출력 리샘플링" msgid "Output Resampling:" msgstr "출력 리샘플링:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "덮어 쓰여진" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "입력 기록 플레이...(&l)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9247,7 +9310,7 @@ msgstr "PNG 이미지 파일 (*.png);; 모든 파일 (*)" msgid "PPC Size" msgstr "PPC 크기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC 대 호스트" @@ -9260,7 +9323,7 @@ msgstr "패드" msgid "Pads" msgstr "패드" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "매개변수들" @@ -9323,7 +9386,7 @@ msgstr "일시정지" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "무비의 끝에서 일시정지" @@ -9372,7 +9435,7 @@ msgstr "바깥쪽 스윙 이동의 피크 가속도" msgid "Per-Pixel Lighting" msgstr "픽셀단위 광원" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "온라인 시스템 업데이트 하기" @@ -9402,11 +9465,11 @@ msgstr "피지컬" msgid "Physical address space" msgstr "물리적 주소 공간" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "디버그 폰트 고르기" @@ -9422,8 +9485,8 @@ msgstr "피치 내리기" msgid "Pitch Up" msgstr "피치 올리기" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "플랫폼" @@ -9435,7 +9498,7 @@ msgstr " 실행 " msgid "Play / Record" msgstr "재생 / 녹화" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "(입력) 기록 재생" @@ -9532,7 +9595,7 @@ msgstr "포탈 슬롯들" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "가능한 비동기 감지됨: %1 가 프레임 %2 에서 비동기화된 듯 합니다" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "후-처리 효과" @@ -9585,7 +9648,7 @@ msgstr "" msgid "Presets" msgstr "사전설정" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "동기화 버튼을 누르세요" @@ -9607,9 +9670,9 @@ msgstr "" "진 효과들을 보여주는 대가로 말이죠.

추천되지 않습니" "다, 다른 옵션들이 형편없는 결과를 가져올 때만 사용하세요." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "이전 게임 프로파일" @@ -9617,8 +9680,9 @@ msgstr "이전 게임 프로파일" msgid "Previous Match" msgstr "이전 일치" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "이전 프로파일" @@ -9668,13 +9732,13 @@ msgstr "" msgid "Profile" msgstr "프로파일" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "프로그램 카운터" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9691,11 +9755,11 @@ msgstr "" msgid "Public" msgstr "공공" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "게임 목록 캐시 제거" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "IPL 롬을 in User/GC/ 에 두세요." @@ -9722,7 +9786,7 @@ msgstr "DPLII 디코더의 품질. 오디오 지연이 품질로 증가합니다 #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "질문" @@ -9747,11 +9811,11 @@ msgstr "R-아날로그" msgid "READY" msgstr "준비" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO 모듈" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO 자동-감지" @@ -9788,13 +9852,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "명령 바꾸기 (&p)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "읽기" @@ -9817,7 +9881,7 @@ msgstr "읽기 전용" msgid "Read or Write" msgstr "읽거나 쓰기" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "읽기-전용 모드" @@ -9876,7 +9940,7 @@ msgstr "빨강 왼쪽" msgid "Red Right" msgstr "빨강 오른쪽" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9928,8 +9992,8 @@ msgstr "현재 값들을 새로했습니다." msgid "Refreshing..." msgstr "새로고침..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "지역" @@ -9950,7 +10014,8 @@ msgstr "연관 입력" msgid "Relative Input Hold" msgstr "연관 입력 유지" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9979,7 +10044,7 @@ msgstr "정크 데이터 제거 (되돌릴 수 없음):" msgid "Remove Tag..." msgstr "태그 제거..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "태그 제거" @@ -9995,8 +10060,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "부호 이름 바꾸기" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10029,7 +10094,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10041,7 +10106,7 @@ msgstr "리셋" msgid "Reset All" msgstr "모두 리셋" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "패닉 핸들러 무시를 리셋" @@ -10093,9 +10158,9 @@ msgstr "재시작이 요구됩니다" msgid "Restore Defaults" msgstr "기본값 복원" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "명령 복구" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10228,21 +10293,21 @@ msgstr "" msgid "Rumble" msgstr "진동" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "여기까지 실행 (&T)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "GBA 코어들을 전용 쓰레드로 구동합니다" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "때까지 구동" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "때까지 구동 (중단점들을 무시)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10311,11 +10376,11 @@ msgstr "SSL 맥락" msgid "START" msgstr "시작" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "코드 저장 (&v)" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "상태 저장(&v) " @@ -10327,7 +10392,7 @@ msgstr "안전" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10342,23 +10407,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "저장 내보내기" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "FIFO 로그 저장" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "에 파일 저장" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10369,15 +10446,19 @@ msgstr "게임 저장" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "게임 저장 파일들 (*.sav);;모든 파일들 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "저장 가져오기" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "가장 오래된 상태 저장" @@ -10385,73 +10466,77 @@ msgstr "가장 오래된 상태 저장" msgid "Save Preset" msgstr "프리셋 저장" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "녹화 파일을 다른 이름으로 저장" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "슬롯 1 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "슬롯 10 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "슬롯 2 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "슬롯 3 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "슬롯 4 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "슬롯 5 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "슬롯 6 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "슬롯 7 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "슬롯 8 상태 저장" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "슬롯 9 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "파일에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "가장 오래된 슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "선택된 슬롯에 상태를 저장합니다" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "슬롯에 상태 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "심볼 맵 다른 이름으로 저장... (&A)" @@ -10471,11 +10556,7 @@ msgstr "프리셋 다른 이름으로 저장..." msgid "Save as..." msgstr "다른 이름으로 저장..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "합쳐진 출력 파일 다른 이름으로 저장" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10489,19 +10570,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "롬과 같은 디렉토리에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "맵 파일 저장" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "서명 파일 저장" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "선택된 슬롯에 저장" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "슬롯 %1 - %2 에 저장" @@ -10535,7 +10608,7 @@ msgstr "스크린샷" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "찾기" @@ -10564,7 +10637,7 @@ msgstr "" "가상 주소 공간에서는 현재 검색할 수 없습니다. 게임을 잠시 구동하신 후에 다시 " "시도하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "명령에 대한 찾기" @@ -10572,7 +10645,7 @@ msgstr "명령에 대한 찾기" msgid "Search games..." msgstr "게임들 검색..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "명령 찾기" @@ -10608,7 +10681,7 @@ msgstr "선택" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10617,7 +10690,7 @@ msgid "Select Dump Path" msgstr "덤프 경로 선택" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "내보내기 디렉토리 선택" @@ -10625,18 +10698,22 @@ msgstr "내보내기 디렉토리 선택" msgid "Select Figure File" msgstr "피겨 파일 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "GBA 바이오스 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "GBA 롬 선택" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "GBA 저장 경로 선택" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "마지막 상태 선택" @@ -10645,6 +10722,10 @@ msgstr "마지막 상태 선택" msgid "Select Load Path" msgstr "로드 경로 선택" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "리소스 팩 경로 선택" @@ -10653,6 +10734,14 @@ msgstr "리소스 팩 경로 선택" msgid "Select Riivolution XML file" msgstr "Riivolution XML 파일 선택" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "스카이랜더 컬렉션 선택" @@ -10661,58 +10750,62 @@ msgstr "스카이랜더 컬렉션 선택" msgid "Select Skylander File" msgstr "스카이랜더 파일 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "슬롯 %1 - %2 선택" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "상태 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "상태 슬롯 선택" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "상태 슬롯 1 선택" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "상태 슬롯 10 선택" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "상태 슬롯 2 선택" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "상태 슬롯 3 선택" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "상태 슬롯 4 선택" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "상태 슬롯 5 선택" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "상태 슬롯 6 선택" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "상태 슬롯 7 선택" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "상태 슬롯 8 선택" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "상태 슬롯 9 선택" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "WFS 경로 선택" @@ -10730,24 +10823,20 @@ msgstr "디렉토리 선택" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "파일 선택" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "SD 카드 이미지와 동기화할 폴더를 선택하세요" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "게임 선택" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "SD 카드 이미지 선택" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "파일 선택" @@ -10756,19 +10845,15 @@ msgstr "파일 선택" msgid "Select a game" msgstr "게임 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "NAND 에 설치할 타이틀 선택" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "e-Reader 카드 선택" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "RSO 모듈 주소 선택:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "플레이할 녹화 파일 선택" @@ -10776,23 +10861,6 @@ msgstr "플레이할 녹화 파일 선택" msgid "Select the Virtual SD Card Root" msgstr "가상 SD 카드 루트 선택" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "키 파일 선택 (OTP/SEEPROM 덤프)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "저장 파일을 선택" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "변환된 이미지를 저장하고 싶은 곳을 선택하세요" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "변환된 이미지들을 저장하고 싶은 곳을 선택하세요" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "선택된 폰트" @@ -10852,7 +10920,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10908,6 +10976,27 @@ msgstr "" "가 가장 적은 것을 고르세요.

잘 모르겠으면, OpenGL을 " "선택하세요." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "보내기" @@ -10916,6 +11005,15 @@ msgstr "보내기" msgid "Sensor Bar Position:" msgstr "센서 바 위치:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10947,39 +11045,35 @@ msgstr "값 설정(&V)" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "PC 설정" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "기본 ISO로 설정(&D)" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "슬롯 A 용 메모리 카드 파일 설정" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "슬롯 B 용 메모리 카드 파일 설정" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "부호 끝 주소 설정 (&e)" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "부호 크기 설정 (&s)" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "부호 끝 주소 설정" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "부호 크기 (%1) 설정:" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10996,7 +11090,7 @@ msgstr "Wii 시스템 언어를 설정합니다." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11010,10 +11104,17 @@ msgstr "" "지연을 밀리세컨즈로 설정합니다. 값이 높을수록 오디오 튐을 줄일지도 모릅니다. " "특정 백엔드 전용." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -11066,11 +11167,11 @@ msgstr "신간선 컨트롤러" msgid "Show % Speed" msgstr "% 속도 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "로그 보기(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "툴바 표시(&T)" @@ -11078,15 +11179,15 @@ msgstr "툴바 표시(&T)" msgid "Show Active Title in Window Title" msgstr "창 제목에 활성 타이틀 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "모두 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "오스트레일리아" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "디스코드에 현재 게임을 보여주기" @@ -11095,7 +11196,7 @@ msgstr "디스코드에 현재 게임을 보여주기" msgid "Show Disabled Codes First" msgstr "비활성된 코드들 먼저 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11108,7 +11209,7 @@ msgstr "활성된 코드들 먼저 보기" msgid "Show FPS" msgstr "FPS 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "프레임 카운터 보기" @@ -11116,15 +11217,15 @@ msgstr "프레임 카운터 보기" msgid "Show Frame Times" msgstr "프레임 타임 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "프랑스" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "게임큐브" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "독일" @@ -11132,27 +11233,27 @@ msgstr "독일" msgid "Show Golf Mode Overlay" msgstr "골프 모드 오버레이 보기" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "무한대 베이스 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "입력 표시 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "이탈리아" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "일본 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "한국" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "랙 카운터 보기" @@ -11160,7 +11261,7 @@ msgstr "랙 카운터 보기" msgid "Show Language:" msgstr "언어 보기:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "로그 환경설정(&C)" @@ -11172,7 +11273,7 @@ msgstr "넷플레이 메시지 보기" msgid "Show NetPlay Ping" msgstr "넷플레이 핑 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "네덜란드" @@ -11180,12 +11281,12 @@ msgstr "네덜란드" msgid "Show On-Screen Display Messages" msgstr "온-스크린 메시지 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL (유럽 방식)" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC 보기" @@ -11193,7 +11294,7 @@ msgstr "PC 보기" msgid "Show Performance Graphs" msgstr "성능 그래프 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "플랫폼 표시" @@ -11201,23 +11302,23 @@ msgstr "플랫폼 표시" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "지역 표시" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "재녹화 횟수 보이기" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "러시아" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "스카이랜더스 포탈 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "스페인" @@ -11229,19 +11330,23 @@ msgstr "속도 색 보여주기" msgid "Show Statistics" msgstr "통계 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "시스템 클럭 보기" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "타이완" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "USA (미국 방식)" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "알려지지 않음" @@ -11253,27 +11358,27 @@ msgstr "VBlank 타임 보기" msgid "Show VPS" msgstr "VPS 보여주기" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "세계" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "메모리로 보기 (&m)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "코드로 보기" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "메모리로 보기" @@ -11290,13 +11395,9 @@ msgstr "메모리로 보기" msgid "Show in server browser" msgstr "서버 브라우저에서 보기" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "메모리에서 대상을 보여주기(&y)" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11337,18 +11438,6 @@ msgstr "" "풀스피드와 비교해 에뮬레이션의 % 속도를 보여줍니다.

" "잘 모르겠으면, 체크 해제해 두세요." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11375,6 +11464,18 @@ msgstr "" "

잘 모르겠으면, 체크 해제해 두세요." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11418,6 +11519,14 @@ msgstr "" "다양한 렌더링 통계를 보여줍니다.

잘 모르겠으면, 체" "크 해제해 두세요." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "나란히" @@ -11434,7 +11543,7 @@ msgstr "옆방향 토글" msgid "Sideways Wii Remote" msgstr "Wii 리모트 옆으로" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "서명 데이터베이스" @@ -11483,7 +11592,7 @@ msgstr "" "밀리세컨드 단위의 늘림 버퍼 크기. 값이 너무 낮으면 오디오 지직거림을 일으킬" "지 모릅니다." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "스킵" @@ -11678,6 +11787,10 @@ msgstr "" msgid "Speed" msgstr "속도" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11714,11 +11827,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "새로운 치트 검색 시작" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "입력 기록 시작(&c)" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "(입력) 기록 시작" @@ -11757,39 +11870,39 @@ msgstr "스텝" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "스텝 들어가기" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "스텝 나가기" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "스텝 넘어가기" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "스텝 나가기 성공!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "스텝 나가기 시간 초과!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "스텝 넘어가기 진행 중..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "스텝 성공!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "스텝핑" @@ -11798,7 +11911,7 @@ msgstr "스텝핑" msgid "Stereo" msgstr "스테레오" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "입체 3D 모드" @@ -11828,7 +11941,7 @@ msgstr "스틱" msgid "Stop" msgstr "중지" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "입력 재생/기록 중지" @@ -11905,14 +12018,14 @@ msgstr "스타일:" msgid "Stylus" msgstr "스타일러스" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "성공" @@ -11939,24 +12052,24 @@ msgstr "%1 저장 파일(들)로부터 %n 를 성공적으로 내보냈습니다 msgid "Successfully exported save files" msgstr "저장 파일들을 성공적으로 내보냈습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "NAND 에서 증명서를 성공적으로 추출했습니다" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "성공적으로 파일 압축을 풀었습니다." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "성공적으로 시스템 데이터 압축을 풀었습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "저장 파일을 성공적으로 내보냈습니다." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "NAND 에 이 타이틀을 성공적으로 설치했습니다." @@ -12007,7 +12120,7 @@ msgstr "스왑 포스" msgid "Swapper" msgstr "교환자" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12035,17 +12148,21 @@ msgstr "B로 스위치" msgid "Symbol" msgstr "부호" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "부호 (%1) 끝 주소:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "부호 이름:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "부호들" @@ -12096,7 +12213,7 @@ msgstr "저장 데이터를 동기화합니다..." msgid "System Language:" msgstr "시스템 언어:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS 입력" @@ -12107,9 +12224,9 @@ msgid "TAS Tools" msgstr "TAS 도구" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "태그" @@ -12127,7 +12244,7 @@ msgstr "꼬리" msgid "Taiwan" msgstr "타이완" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "스크린샷 찍기" @@ -12135,7 +12252,7 @@ msgstr "스크린샷 찍기" msgid "Target address range is invalid." msgstr "대상 주소 범위가 부적합합니다." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12172,7 +12289,7 @@ msgstr "텍스처 캐시 정확도" msgid "Texture Dumping" msgstr "텍스처 덤핑" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "텍스처 필터링" @@ -12223,7 +12340,7 @@ msgstr "IPL 파일이 알려진 좋은 덤프가 아닙니다. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "명작 파티션들이 빠져있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12231,7 +12348,7 @@ msgstr "" "NAND 는 고쳐질 수 없었습니다. 현재 데이터 백업이 권장됩니다 그리고 생생한 " "NAND 로 다시 시작하세요." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND 가 고쳐졌습니다." @@ -12412,7 +12529,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "파일시스템이 부적합하거나 읽혀질 수 없습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12557,7 +12674,7 @@ msgid "" msgstr "" "같은 파일이 여러 슬롯에 사용될 수 없습니다; %1 에서 이미 사용되고 있습니다." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12598,7 +12715,7 @@ msgstr "명시된 공통 키 인덱스는 {0} 입니다 하지만 {1} 이어야 msgid "The specified file \"{0}\" does not exist" msgstr "기술된 \"{0}\" 파일은 존재하지 않습니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12662,7 +12779,7 @@ msgstr "업데이트 파티션이 빠져있습니다." msgid "The update partition is not at its normal position." msgstr "업데이트 파티션이 정상적 위치에 있지 않습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12781,7 +12898,7 @@ msgstr "" "더 나은 경험을 위해 돌핀의 ARM64 빌드를 구동하세요." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "이것은 되돌릴 수 없습니다!" @@ -13017,7 +13134,7 @@ msgstr "쓰레드" msgid "Threshold" msgstr "한계점" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13036,10 +13153,10 @@ msgstr "측정을 작동시키기 위한 안정적 입력 기간. (제로는 비 msgid "Timed Out" msgstr "시간 초과" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "타이틀" @@ -13047,25 +13164,29 @@ msgstr "타이틀" msgid "To" msgstr "To" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "까지:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "전체화면 토글(&F)" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "3D 애너글리프 토글" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "3D 사이드-바이-사이드 토글" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "3D 탑-바텀 토글" @@ -13073,28 +13194,28 @@ msgstr "3D 탑-바텀 토글" msgid "Toggle All Log Types" msgstr "모든 로그 타입 토글" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "종횡비 토글" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "중단점 토글" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "자르기 토글" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "사용자 지정 텍스처 토글" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB 복사 토글" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "안개 토글" @@ -13106,31 +13227,31 @@ msgstr "전체화면 토글" msgid "Toggle Pause" msgstr "일시정지 토글" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "SD 카드 토글" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "EFB 엑세스 스킵 토글" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "텍스처 덤핑 토글" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "USB 키보드 토글" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "XFB 복사 토글" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "XFB 즉시 모드 토글" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "토큰화를 실패했습니다." @@ -13253,7 +13374,7 @@ msgid "Trophy" msgstr "트로피" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13283,7 +13404,7 @@ msgstr "USB 장치 에뮬레이션" msgid "USB Emulation" msgstr "USB 에뮬레이션" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB 에뮬레이션 장치들" @@ -13333,15 +13454,15 @@ msgstr "" "의 경우 미약한 성능 타격을 얻는 반면 쉐이더 컴파일 버벅임을 완전제거합니다, " "하지만 결과는 비디오 드라이버 행동에 달려있습니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "RSO 모듈을 자동-감지할 수 없습니다" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "업데이트 서버에 접촉할 수 없습니다." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "업데이터 복사를 생성할 수 없습니다." @@ -13381,7 +13502,7 @@ msgstr "" msgid "Unable to read file." msgstr "파일 읽기가 불가능합니다." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "업데이터 복사상에 승인 설정을 할 수 없습니다." @@ -13404,11 +13525,11 @@ msgstr "압축풀린 GC/Wii 이미지들 (*.iso *.gcm)" msgid "Undead" msgstr "언데드" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "상태 로드 되돌리기" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "상태 저장 되돌리기" @@ -13428,7 +13549,7 @@ msgstr "" "WAD 를 언인스톨하면 NAND 에서 현재 설치된 이 타이틀 버전을 저장 데이터를 지우" "지 않고 제거하게 됩니다." -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "미국" @@ -13529,11 +13650,11 @@ msgstr "알려지지 않음(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "알려지지 않음(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "무제한" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "롬 언로드" @@ -13541,7 +13662,12 @@ msgstr "롬 언로드" msgid "Unlock Cursor" msgstr "마우스 커서 풀기" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13641,7 +13767,7 @@ msgstr "똑바로 토글" msgid "Upright Wii Remote" msgstr "Wii 리모트 똑바로" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "사용 통계 보고 설정" @@ -13747,7 +13873,7 @@ msgstr "사용자이름" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13828,7 +13954,7 @@ msgstr "VBI 스킵" msgid "Value" msgstr "값" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "현재 명령으로 추적된 값." @@ -13916,22 +14042,22 @@ msgstr "가상 노치" msgid "Virtual address space" msgstr "가상 주소 공간" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "볼륨" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "볼륨 감소" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "볼륨 음소거 토글" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "볼륨 증가" @@ -13939,7 +14065,7 @@ msgstr "볼륨 증가" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD 파일 (*.wad)" @@ -14065,7 +14191,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "경고" @@ -14216,7 +14342,7 @@ msgstr "와이트리스트된 USB 패스쓰루 장치들" msgid "Widescreen Hack" msgstr "와이드스크린 핵" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14286,7 +14412,7 @@ msgstr "Wii 와 Wii 리모트" msgid "Wii data is not public yet" msgstr "Wii 데이터는 아직 공개가 아닙니다" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 저장 파일 (*.bin);;모든 파일 (*)" @@ -14321,11 +14447,11 @@ msgstr "세계" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "쓰기" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -14490,7 +14616,7 @@ msgstr "" "Online Episode I & II\" 전용입니다. 잘 모르겠으면, 지금 뒤로 돌아가서 \"표준 " "컨트롤러\"를 설정하세요." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" "당신은 이 업데이트 트랙에서 사용할 수 있는 최신 버전을 구동하고 있습니다." @@ -14575,7 +14701,7 @@ msgstr "" "문제를 고치기 위해 지금 멈추시겠습니까?\n" "\"아니오\" 를 선택하면, 오디오가 혼란스러울지도 모릅니다." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ms.po b/Languages/po/ms.po index bf2e1b9708..9a71667a05 100644 --- a/Languages/po/ms.po +++ b/Languages/po/ms.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: abuyop , 2018\n" -"Language-Team: Malay (http://app.transifex.com/delroth/dolphin-emu/language/" -"ms/)\n" +"Language-Team: Malay (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/ms/)\n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,7 +165,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 tidak menyokong fitur ini." @@ -187,7 +187,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -199,7 +199,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -213,7 +213,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -233,22 +233,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Kelajuan Biasa)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -256,6 +256,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -276,7 +280,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -289,7 +293,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -333,10 +337,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "Perih&al" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Tambah Titik Henti Ingatan" @@ -346,23 +354,19 @@ msgstr "&Tambah Titik Henti Ingatan" msgid "&Add New Code..." msgstr "T&ambah Kod Baharu..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Tambah fungsi" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "T&ambah" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Tetapan &Audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Auto Kemaskini:" @@ -371,14 +375,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Titik Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -390,11 +394,11 @@ msgstr "&Batal" msgid "&Cheats Manager" msgstr "&Pengurus Menipu" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Kosongkan Simbol" @@ -402,7 +406,7 @@ msgstr "&Kosongkan Simbol" msgid "&Clone..." msgstr "&Klon..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "K&od" @@ -410,18 +414,15 @@ msgstr "K&od" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Tetapan Ka&walan" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Salin alamat" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -457,7 +458,7 @@ msgstr "&Sunting..." msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulasi" @@ -482,36 +483,36 @@ msgstr "" msgid "&File" msgstr "&Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Fon..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "B&ingkai Lanjutan" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Jana Simbol Dari" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Repositori &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Tetapan &Grafik" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Bantuan" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Tetapan Kekunci Pa&nas" @@ -535,15 +536,15 @@ msgstr "&Import..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Sisip blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -555,11 +556,11 @@ msgstr "&Bahasa:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Muat Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Muat Peta Simbol" @@ -573,19 +574,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "Ce&reka" @@ -593,7 +594,7 @@ msgstr "Ce&reka" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -606,19 +607,19 @@ msgstr "" msgid "&Open..." msgstr "B&uka..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "Pi&lihan" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Tampal Fungsi HLE" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Jeda" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Main" @@ -626,7 +627,7 @@ msgstr "&Main" msgid "&Properties" msgstr "Si&fat" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "Mod Ba&ca-Sahaja" @@ -634,7 +635,7 @@ msgstr "Mod Ba&ca-Sahaja" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Daftar" @@ -647,12 +648,12 @@ msgstr "&Buang" msgid "&Remove Code" msgstr "B&uang Kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Nama semula simbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "T&etap Semula" @@ -664,7 +665,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Simpan Peta Simbol" @@ -676,11 +677,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Had Kelajuan:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Henti" @@ -688,7 +689,7 @@ msgstr "&Henti" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -710,17 +711,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Lihat" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Tonton" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Laman Sesawang" @@ -732,11 +733,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' tidak ditemui, tiada nama simbol dijana" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' tidak ditemui, mengimbas fungsi umum sebagai ganti" @@ -756,7 +757,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(mati)" @@ -780,7 +781,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -858,7 +859,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -870,7 +871,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -906,19 +907,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Kedalaman 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -942,7 +943,7 @@ msgstr "4:3" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1039,7 +1040,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1069,8 +1070,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Satu Sesi NetPlay sedang berlangsung!" @@ -1088,7 +1089,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Cakera A sedia dimasukkan." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1098,7 +1099,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1184,7 +1185,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1260,7 +1261,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktif" @@ -1311,11 +1312,11 @@ msgstr "Tambah Peranti USB Baharu" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Tambah satu Titik Henti" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Tambah Titik Henti Ingatan" @@ -1349,13 +1350,13 @@ msgstr "Tambah..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Alamat" @@ -1374,7 +1375,7 @@ msgstr "" msgid "Address:" msgstr "Alamat:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1444,7 +1445,7 @@ msgstr "Lanjutan" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1500,7 +1501,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1508,7 +1509,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1517,7 +1518,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1526,8 +1527,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Semua Keadaan Simpan (*.sav *.s##);; Semua Fail (*)" @@ -1551,11 +1552,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1613,7 +1614,7 @@ msgstr "Sudut" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1625,19 +1626,19 @@ msgstr "Anti-Alias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1651,8 +1652,8 @@ msgstr "Tarikh Pemuatapl:" msgid "Apply" msgstr "Laksana" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1663,7 +1664,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "Anda pasti mahu memadam '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Anda pasti ingin memadam fail ini?" @@ -1700,8 +1701,8 @@ msgstr "Nisbah Bidang:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1762,7 +1763,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (640x528 berbilang)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1782,7 +1787,7 @@ msgstr "Auto-Laras Saiz Tetingkap" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1796,6 +1801,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1807,7 +1823,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1890,10 +1906,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Sepanduk" @@ -1921,7 +1937,7 @@ msgstr "" msgid "Basic" msgstr "Asas" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Tetapan Asas" @@ -1981,9 +1997,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2021,15 +2037,15 @@ msgstr "" "Mod passthrough Bluetooth dibenarkan, tetapi Dolphin dibina tanpa libusb. " "Mod passthrough tidak dapat digunakan." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "But untuk Dijeda" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Fail sandar NAND BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fail kunci BootMii (*.bin);;Semua Fail (*)" @@ -2157,30 +2173,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Henti" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Titik Henti" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Titik henti dihadapi! Langkah keluar dihenti paksa." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Titik Henti" @@ -2276,7 +2292,7 @@ msgstr "" msgid "C Stick" msgstr "Batang C" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2311,7 +2327,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2373,14 +2389,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Tidak dapat memulakan Sesi NetPlay ketika permainan masih berlangsung!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2430,7 +2446,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2478,7 +2494,7 @@ msgstr "Ubah &Cakera..." msgid "Change Disc" msgstr "Ubah Cakera" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2538,7 +2554,7 @@ msgstr "Gelitar Menipu" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Periksa NAND..." @@ -2550,7 +2566,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2570,29 +2586,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Pilih satu fail untuk dibuka" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Pilih folder untuk diekstrak ke" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2611,7 +2627,7 @@ msgstr "Pengawal Klasik" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2621,7 +2637,7 @@ msgstr "Kosongkan" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2642,7 +2658,7 @@ msgstr "Klon dan &Sunting Kod..." msgid "Close" msgstr "Tutup" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ko&nfigurasi" @@ -2666,7 +2682,7 @@ msgstr "Kod:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2686,7 +2702,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2721,9 +2737,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2748,7 +2764,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Keadaan:" @@ -2855,9 +2871,9 @@ msgstr "Konfigur Output" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Sahkan" @@ -2870,7 +2886,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Sahkan bil Berhenti" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2881,7 +2897,7 @@ msgstr "Pengesahan" msgid "Connect" msgstr "Sambung" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Sambung Papan Imbang" @@ -2889,27 +2905,27 @@ msgstr "Sambung Papan Imbang" msgid "Connect USB Keyboard" msgstr "Sambung Papan Kekunci USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Sambung Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Sambung Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Sambung Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Sambung Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Sambung Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Sambung Wii Remote" @@ -2954,19 +2970,19 @@ msgstr "Bidak Kawalan" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2978,6 +2994,16 @@ msgstr "Tetapan Pengawal" msgid "Controllers" msgstr "Kawalan" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2986,7 +3012,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2994,7 +3020,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3003,7 +3029,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3028,7 +3054,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3115,18 +3141,22 @@ msgstr "" msgid "Copy" msgstr "Salin" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Salin &fungsi" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Salin &heks" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3135,16 +3165,12 @@ msgstr "" msgid "Copy Hex" msgstr "" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 -msgid "Copy Value" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Salin &baris kod" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 +msgid "Copy Value" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 @@ -3260,8 +3286,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3357,7 +3383,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Wilayah Semasa" @@ -3545,24 +3571,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Kurangkan Ketumpuan" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Kurangkan Kedalaman" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Kurangkan Kelajuan Emulasi" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Kurangkan IR" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3618,8 +3644,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Padam" @@ -3637,7 +3663,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3652,9 +3678,9 @@ msgstr "Kedalaman:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Keterangan" @@ -3703,7 +3729,7 @@ msgstr "" msgid "Detect" msgstr "Kesan" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3711,7 +3737,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Dwi-teras berketentuan:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3769,15 +3795,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Lumpuhkan Had Kelajuan Emulasi" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3785,11 +3811,11 @@ msgstr "" msgid "Disable Fog" msgstr "Lumpuhkan Kabus" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3811,7 +3837,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3834,7 +3860,8 @@ msgstr "Cakera" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3864,16 +3891,16 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Anda mahu kosongkan senarai nama simbol?" @@ -3883,7 +3910,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Anda hendak hentikan emulasi semasa?" @@ -3904,9 +3931,9 @@ msgstr "Log FIFO Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Fail Peta Dolphin (*.map)" @@ -3918,8 +3945,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Cereka TAS Dolphin (*.dtm)" @@ -3968,12 +3995,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Sistem tipuan Dolphin buat masa ini dilumpuhkan." @@ -3983,7 +4004,7 @@ msgstr "Sistem tipuan Dolphin buat masa ini dilumpuhkan." msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4040,11 +4061,11 @@ msgstr "%1 kod dimuat turun. (%2 ditambah)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4087,7 +4108,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Longgok Audio" @@ -4099,7 +4120,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Longgok Sasaran EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Longgok Bingkai" @@ -4216,16 +4237,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4249,7 +4270,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4312,7 +4333,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Kelajuan Emulasi" @@ -4332,7 +4353,7 @@ msgstr "Benarkan Lapisan Pengesahan API" msgid "Enable Audio Stretching" msgstr "Benarkan Peregangan Audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Benarkan Menipu" @@ -4356,9 +4377,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Benarkan Dwi-Teras" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Benarkan Dwi-Teras (lajukan)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4402,7 +4423,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4444,7 +4465,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Benarkan Pelaporan Statistik Penggunaan" @@ -4524,7 +4545,7 @@ msgstr "" "Benarkan Pengiraan Bendera Keputusan Titik Apung, diperlukan oleh sesetengah " "permainan. (HIDUP = Serasi, MATI = Pantas)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4558,7 +4579,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4604,6 +4625,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4631,7 +4661,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4682,14 +4712,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4728,26 +4758,26 @@ msgstr "Masukkan alamat modul RSO:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4764,9 +4794,9 @@ msgstr "Masukkan alamat modul RSO:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Ralat" @@ -4797,7 +4827,7 @@ msgstr "Ralat memuatkan bahasa pilihan. Jatuh balik ke lalai sistem." msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4892,7 +4922,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Eropah" @@ -4905,15 +4935,15 @@ msgstr "" msgid "Exit" msgstr "Keluar" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4925,19 +4955,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4945,7 +4975,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Eskport Semua Simpan Wii" @@ -4956,11 +4986,11 @@ msgstr "Eskport Semua Simpan Wii" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Eksport Rakaman" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Eksport Rakaman..." @@ -4988,7 +5018,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5016,35 +5046,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Penimbal Bingkai Luaran (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Ekstrak Sijil dari NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Ektrak Keseluruhan Cakera..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Ekstrak Keseluruhan Sekatan..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Ekstrak Fail..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Ekstrak Fail..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Ekstrak Data Sistem..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Mengekstrak Semua Fail..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Mengekstrak Direktori..." @@ -5072,7 +5102,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5138,7 +5168,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Gagal memadam fail terpilih." @@ -5167,15 +5197,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Gagal mengekstrak sijil dari NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Gagal mengekstrak fail." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Gagal mengekstrak data sistem." @@ -5194,25 +5224,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Gagal ke teras init" @@ -5232,11 +5262,11 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Gagal memasang tajuk ini ke NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5244,8 +5274,8 @@ msgstr "" "Gagal mendengar pada port %1. Adakah kejadian lain pelayan NetPlay masih " "berjalan?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Gagal memuatkan modul RSO pada %1" @@ -5257,7 +5287,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5294,7 +5324,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Gagal membuka '%1'" @@ -5333,7 +5363,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Gagal membuka pelayan" @@ -5469,19 +5499,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Gagal menyimpan log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5535,8 +5565,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5544,11 +5574,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5584,9 +5615,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5598,20 +5629,20 @@ msgstr "" msgid "File Info" msgstr "Maklumat Fail" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nama Fail" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Saiz Fail" @@ -5711,9 +5742,9 @@ msgstr "Bendera" msgid "Float" msgstr "Apung" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Ikut &cabang" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -5779,7 +5810,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5789,7 +5820,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5832,20 +5863,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Bingkai Lanjutan" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Bingkai Lanjutan Kurangkan Kelajuan" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Bingkai Lanjutan Tingkatkan Kelajuan" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Bingkai Lanjutan Tetap Semula Kelajuan" @@ -5902,11 +5933,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Freelook" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5940,11 +5971,12 @@ msgstr "Dari:" msgid "FullScr" msgstr "SkrPenuh" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Fungsi" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5964,7 +5996,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5980,11 +6012,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6097,11 +6129,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartu Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6135,8 +6167,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID Permainan" @@ -6262,7 +6294,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Kod Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6282,14 +6315,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Jana satu Identiti Statistik Baharu" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Nama simbol terjana dari '%1'" @@ -6307,7 +6347,7 @@ msgstr "Jerman" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6340,7 +6380,7 @@ msgstr "Grafik" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Togol Grafik" @@ -6349,7 +6389,7 @@ msgstr "Togol Grafik" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6371,7 +6411,7 @@ msgstr "Hijau Kiri" msgid "Green Right" msgstr "Hijau Kanan" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Paparan Grid" @@ -6453,7 +6493,7 @@ msgstr "Sembunyi" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6471,12 +6511,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6540,7 +6580,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "Tetapan Kekunci Panas" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6641,11 +6681,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Penjanaan Identiti" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6689,6 +6729,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6742,7 +6792,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Import Sandar NAND BootMii..." @@ -6757,15 +6807,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Import Simpan Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Mengimport sandar NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6823,24 +6873,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Tingkatkan Ketumpuan" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Tingkatkan Kedalaman" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Tingkatkan Kelajuan Emulasi" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Tingkatkan IR" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6889,8 +6939,8 @@ msgstr "Maklumat" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Maklumat" @@ -6904,10 +6954,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Input" @@ -6926,13 +6976,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Sisip &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sisip Kad SD" @@ -6950,7 +6997,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Pasang WAD..." @@ -6958,8 +7005,9 @@ msgstr "Pasang WAD..." msgid "Install to the NAND" msgstr "Pasang ke NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6973,7 +7021,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "Titik Henti Arahan" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6982,7 +7030,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7041,8 +7089,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Resolusi Dalaman" @@ -7059,7 +7107,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Pentafsir (paling perlahan)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7067,7 +7115,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7075,7 +7123,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Kod Bercampur Tidak Sah" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7084,7 +7132,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "ID Pemain Tidak Sah" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Alamat modul RSO tidak sah: %1" @@ -7164,11 +7212,11 @@ msgstr "Itali" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7176,47 +7224,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7228,14 +7276,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7243,11 +7292,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Jepun" @@ -7269,7 +7318,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7304,7 +7353,7 @@ msgstr "" msgid "Keys" msgstr "Kekunci" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7312,7 +7361,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Tendang Pemain" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7445,6 +7494,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7478,11 +7535,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Lajur Senarai" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Paparan Senarai" @@ -7492,17 +7549,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Muat" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Muat Fail Peta &Lain..." @@ -7511,7 +7568,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7522,7 +7579,7 @@ msgstr "Muat Tekstur Suai" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Muat Menu Utama GameCube" @@ -7530,16 +7587,21 @@ msgstr "Muat Menu Utama GameCube" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Muat Keadaan Terakhir" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7547,104 +7609,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Muat Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Muat Keadaan 1 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Muat Keadaan 10 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Muat Keadaan 2 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Muat Keadaan 3 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Muat Keadaan 4 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Muat Keadaan 5 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Muat Keadaan 6 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Muat Keadaan 7 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Muat Keadaan 8 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Muat Keadaan 9 Terakhir" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Muat Slot Keadaan 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Muat Slot Keadaan 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Muat Slot Keadaan 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Muat Slot Keadaan 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Muat Slot Keadaan 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Muat Slot Keadaan 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Muat Slot Keadaan 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Muat Slot Keadaan 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Muat Slot Keadaan 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Muat Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Muat Keadaan dari Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Muat Keadaan dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Muat Keadaan dari Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Muat Menu Sistem Wii %1" @@ -7652,20 +7714,15 @@ msgstr "Muat Menu Sistem Wii %1" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Muat dari Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Muat dari Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Muat fail peta" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7673,7 +7730,7 @@ msgstr "" msgid "Load..." msgstr "Muat..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Simbol dimuatkan dari '%1'" @@ -7698,20 +7755,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7721,10 +7778,11 @@ msgid "Log Configuration" msgstr "Log Konfigurasi" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7763,7 +7821,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Sambung dengan pelayan NetPlay terputus..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7826,9 +7884,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Pembuat:" @@ -7837,7 +7895,7 @@ msgstr "Pembuat:" msgid "Maker:" msgstr "Pembuat:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7845,7 +7903,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7884,7 +7942,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Ia menyebabkan kelembapan dalam menu Wii dan sesetengah permainan." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7900,7 +7958,7 @@ msgstr "Titik Henti Ingatan" msgid "Memory Card" msgstr "Kad Ingatan" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7928,7 +7986,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7940,7 +7998,7 @@ msgstr "" "tidak boleh dikembalikan, oleh itu disarankan anda sandar kedua-dua NAND. " "Anda pasti mahu teruskan?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8011,8 +8069,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8054,7 +8112,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Cereka" @@ -8078,10 +8136,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Semak NAND" @@ -8090,8 +8148,8 @@ msgstr "Semak NAND" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8100,7 +8158,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8117,8 +8175,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8131,11 +8189,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8214,7 +8272,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Baharu" @@ -8239,7 +8297,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Identiti baharu dijanakan." @@ -8247,12 +8305,13 @@ msgstr "Identiti baharu dijanakan." msgid "New instruction:" msgstr "Arahan baharu:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8260,8 +8319,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8348,7 +8408,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Tiada isu dikesan." @@ -8391,7 +8451,7 @@ msgstr "" "menghindari nyahsegerak cereka" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8591,7 +8651,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Dokumentasi Atas Talian" @@ -8599,13 +8659,13 @@ msgstr "&Dokumentasi Atas Talian" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8628,14 +8688,18 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Buka log FIFO" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -8736,7 +8800,7 @@ msgstr "Lain-lain" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Kekunci Panas Keadaan Lain" @@ -8753,7 +8817,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8761,16 +8825,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Ma&in Rakaman Input..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8799,7 +8863,7 @@ msgstr "Fail imej PNG (*.png);; Semua Fail (*)" msgid "PPC Size" msgstr "Saiz PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8812,7 +8876,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pad" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8875,7 +8939,7 @@ msgstr "Jeda" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Jeda Dipenghujung Cereka" @@ -8920,7 +8984,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Pencahayaan Per-Piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Lakukan Kemaskini Sistem Atas-Talian" @@ -8950,11 +9014,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Ambil satu fon nyahpepijat" @@ -8970,8 +9034,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platform" @@ -8983,7 +9047,7 @@ msgstr "Main" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Main Rakaman" @@ -9080,7 +9144,7 @@ msgstr "" "Nyahsegerak berkemungkinan dikesan: %1 mungkin telah dinyahsegerak pada " "bingkai %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9133,7 +9197,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Tekan Butang Segerak" @@ -9151,9 +9215,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9161,8 +9225,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9206,13 +9271,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Kiraan Program" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9229,11 +9294,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9260,7 +9325,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Soalan" @@ -9285,11 +9350,11 @@ msgstr "Analog-R" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "Modul RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9326,13 +9391,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "&Ganti arahan" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Baca" @@ -9355,7 +9420,7 @@ msgstr "Baca sahaja" msgid "Read or Write" msgstr "Baca atau Tulis" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Mod Baca-Sahaja" @@ -9414,7 +9479,7 @@ msgstr "Merah Kiri" msgid "Red Right" msgstr "Merah Kanan" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9460,8 +9525,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Wilayah" @@ -9482,7 +9547,8 @@ msgstr "Input Relatif" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9511,7 +9577,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9524,8 +9590,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Nama semula simbol" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -9556,7 +9622,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9568,7 +9634,7 @@ msgstr "Tetap Semula" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9620,8 +9686,8 @@ msgstr "Mula Semula Diperlukan" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9751,20 +9817,20 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "&Jalankan Di Sini" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9834,11 +9900,11 @@ msgstr "" msgid "START" msgstr "MULA" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Keadaan S&impan" @@ -9850,7 +9916,7 @@ msgstr "Selamat" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9865,23 +9931,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Simpan log FIFO" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Simpan Fail ke" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -9892,15 +9970,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Simpan Keadaan Terlama" @@ -9908,73 +9990,77 @@ msgstr "Simpan Keadaan Terlama" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Simpan Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Simpan Slot Keadaan 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Simpan Slot Keadaan 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Simpan Slot Keadaan 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Simpan Slot Keadaan 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Simpan Slot Keadaan 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Simpan Slot Keadaan 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Simpan Slot Keadaan 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Simpan Slot Keadaan 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Simpan Slot Keadaan 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Simpan Slot Keadaan 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Simpan Keadaan ke Fail" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Simpan Keadaan ke Slot Terlama" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Simpan Keadaan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Simpan Keadaan ke Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Simpan Peta Simbol Sebag&ai..." @@ -9994,11 +10080,7 @@ msgstr "" msgid "Save as..." msgstr "Simpan sebagai..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10009,19 +10091,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Simpan fail peta" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Simpan fail tandatangan" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Simpan ke Slot Terpilih" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Simpan ke Slot %1 - %2" @@ -10057,7 +10131,7 @@ msgstr "CkpSkrin" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Gelintar" @@ -10084,7 +10158,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10092,7 +10166,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10128,7 +10202,7 @@ msgstr "Pilih" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10137,7 +10211,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10145,18 +10219,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10165,6 +10243,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10173,6 +10255,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10181,58 +10271,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Pilih Slot %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Pilih Keadaan" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Pilih Slot Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Pilih Slot Keadaan 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Pilih Slot Keadaan 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Pilih Slot Keadaan 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Pilih Slot Keadaan 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Pilih Slot Keadaan 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Pilih Slot Keadaan 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Pilih Slot Keadaan 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Pilih Slot Keadaan 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Pilih Slot Keadaan 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Pilih Slot Keadaan 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10250,24 +10344,20 @@ msgstr "Pilih satu Direktori" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Pilih satu Fail" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Pilih satu Permainan" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10276,19 +10366,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Pilih satu tajuk untuk dipasang ke dalam NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10296,23 +10382,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Pilih fail kunci (longgok OTP/SEEPROM)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Pilih fail simpan" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Fon Terpilih" @@ -10368,7 +10437,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10411,6 +10480,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Hantar" @@ -10419,6 +10509,15 @@ msgstr "Hantar" msgid "Sensor Bar Position:" msgstr "Kedudukan Palang Penderia:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10447,39 +10546,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Tetapkan PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Tetapkan fail kad ingatan untuk Slot A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Tetapkan fail kad ingatan untuk Slot B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Tetapkan alamat &akhir simbol" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Tetapkan &saiz simbol" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Tetapkan alamat akhir simbol" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Tetapkan saiz simbol (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10496,7 +10591,7 @@ msgstr "Tetapkan bahasa sistem Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10508,10 +10603,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10562,11 +10664,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Tunjuk &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Tunjuk Palang Ala&t" @@ -10574,15 +10676,15 @@ msgstr "Tunjuk Palang Ala&t" msgid "Show Active Title in Window Title" msgstr "Tunjuk Tajuk Aktif dalam Tajuk Tetingkap" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Tunjuk Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10591,7 +10693,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Tunjuk ELF/DOL" @@ -10604,7 +10706,7 @@ msgstr "" msgid "Show FPS" msgstr "Tunjuk FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Tunjuk Kiraan Bingkai" @@ -10612,15 +10714,15 @@ msgstr "Tunjuk Kiraan Bingkai" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Tunjuk Perancis" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Tunjuk GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Tunjuk Jerman" @@ -10628,27 +10730,27 @@ msgstr "Tunjuk Jerman" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Tunjuk Paparan Input" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Tunjuk Itali" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Tunjuk Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Tunjuk Kiraan Lengah" @@ -10656,7 +10758,7 @@ msgstr "Tunjuk Kiraan Lengah" msgid "Show Language:" msgstr "Tunjuk Bahasa:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Tunjuk K&onfigurasi Log" @@ -10668,7 +10770,7 @@ msgstr "Tunjuk Mesej NetPlay" msgid "Show NetPlay Ping" msgstr "Tunjuk Ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Tunjuk Belanda" @@ -10676,12 +10778,12 @@ msgstr "Tunjuk Belanda" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Tunjuk PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Tunjuk PC" @@ -10689,7 +10791,7 @@ msgstr "Tunjuk PC" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Tunjuk Platform" @@ -10697,23 +10799,23 @@ msgstr "Tunjuk Platform" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Tunjuk Wilayah" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Tunjuk Rusia" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Tunjuk Sepanyol" @@ -10725,19 +10827,23 @@ msgstr "" msgid "Show Statistics" msgstr "Tunjuk Statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Tunjuk Jam Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Tunjuk Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Tunjuk USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Tunjuk Tidak Diketahui" @@ -10749,27 +10855,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Tunjuk WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Tunjuk Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Tunjuk Dunia" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10786,13 +10892,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10825,18 +10927,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10857,6 +10947,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10889,6 +10991,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Sebelah-Menyebelah" @@ -10905,7 +11015,7 @@ msgstr "Togol Sisi" msgid "Sideways Wii Remote" msgstr "Wii Remote Sisi" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Pangkalan Data Tandatangan" @@ -10954,7 +11064,7 @@ msgstr "" "Saiz regang penimbal dalam milisaat. Nilai terlalu rendah boleh menyebabkan " "keretakan audio." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Langkau" @@ -11128,6 +11238,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11164,11 +11278,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Mula Me&rakam Input" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Mula Rakaman" @@ -11207,39 +11321,39 @@ msgstr "Langkah" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Langkah Masuk" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Langkah Keluar" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Langkah Melalui" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Langkah keluar berjaya!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Langkah keluar tamat masa!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Langkah atas masih berjalan..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Langkah berjaya!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Melangkah" @@ -11248,7 +11362,7 @@ msgstr "Melangkah" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11278,7 +11392,7 @@ msgstr "Bidak" msgid "Stop" msgstr "Henti" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Henti Memainkan/Merakam Input" @@ -11347,14 +11461,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Berjaya" @@ -11381,24 +11495,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Berjaya mengimport fail simpan" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Berjaya mengekstrak sijil dari NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Berjaya mengekstrak fail." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Berjaya mengekstrak data sistem." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Berjaya memasang tajuk ini ke NAND." @@ -11449,7 +11563,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11474,17 +11588,21 @@ msgstr "" msgid "Symbol" msgstr "Simbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Nama simbol:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Simbol" @@ -11533,7 +11651,7 @@ msgstr "" msgid "System Language:" msgstr "Bahasa Sistem:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Input TAS" @@ -11544,9 +11662,9 @@ msgid "TAS Tools" msgstr "Alatan TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11564,7 +11682,7 @@ msgstr "" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Ambil Cekupan Skrin" @@ -11572,7 +11690,7 @@ msgstr "Ambil Cekupan Skrin" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11607,7 +11725,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11652,7 +11770,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11660,7 +11778,7 @@ msgstr "" "NAND tidak dapat dibaiki. Adalah disarankan menyandar data semasa anda dan " "mula kembali dengan NAND yang baharu." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND telah dibaiki." @@ -11811,7 +11929,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11939,7 +12057,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11973,7 +12091,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12033,7 +12151,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12146,7 +12264,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Ia tidak boleh dikembalikan!" @@ -12345,7 +12463,7 @@ msgstr "" msgid "Threshold" msgstr "Ambang" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -12364,10 +12482,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Tajuk" @@ -12375,25 +12493,29 @@ msgstr "Tajuk" msgid "To" msgstr "Ke" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Ke:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Togol &Skrin Penuh" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Togol Anaglif 3D" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Togol 3D Sebelah-Menyebelah" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Togol 3D Atas-Bawah" @@ -12401,28 +12523,28 @@ msgstr "Togol 3D Atas-Bawah" msgid "Toggle All Log Types" msgstr "Togol Sema Jenis Log" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Togol Nisbah Bidang" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Togol Titik Henti" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Togol Kerat" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Togol Tekstur Suai" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Togol Salinan EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Togol Kabus" @@ -12434,31 +12556,31 @@ msgstr "Togol Skrin Penuh" msgid "Toggle Pause" msgstr "Togol Jeda" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Togol Pelonggokan Tekstur" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Togol Salinan XFB" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Togol Mod Serta-Merta XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12579,7 +12701,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12609,7 +12731,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12647,15 +12769,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12691,7 +12813,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12714,11 +12836,11 @@ msgstr "Imej GC/Wii Tak Mampat (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Buat Asal Muat Keadaan" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Buat Asal Keadaan Simpan" @@ -12738,7 +12860,7 @@ msgstr "" "Menyahpasang WAD akan membuang versi terpasang semasa bagi tajuk ini dari " "NAND tanpa memadam data simpannya. Mahu teruskan?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Amerika Syarikat" @@ -12834,11 +12956,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Tanpa had" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12846,7 +12968,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12946,7 +13073,7 @@ msgstr "Togol Tegak" msgid "Upright Wii Remote" msgstr "Wii Remote Tegak" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Tetapan Pelaporan Statistik Penggunaan" @@ -13041,7 +13168,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13112,7 +13239,7 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13200,22 +13327,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Volum Turun" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Volum Togol Senyap" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Volum Naik" @@ -13223,7 +13350,7 @@ msgstr "Volum Naik" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "Fail WAD (*.wad)" @@ -13324,7 +13451,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Amaran" @@ -13437,7 +13564,7 @@ msgstr "Peranti Menerusi USB Senarai Putih" msgid "Widescreen Hack" msgstr "Skrin Lebar Godam" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13507,7 +13634,7 @@ msgstr "Wii dan Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Fail simpan Wii (*.bin);;Semua Fail (*)" @@ -13542,11 +13669,11 @@ msgstr "Dunia" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Tulis" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13690,7 +13817,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13758,7 +13885,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/nb.po b/Languages/po/nb.po index 5e331bc5d6..7a2b7f1207 100644 --- a/Languages/po/nb.po +++ b/Languages/po/nb.po @@ -18,11 +18,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" -"Language-Team: Norwegian Bokmål (http://app.transifex.com/delroth/dolphin-" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/dolphinemu/dolphin-" "emu/language/nb/)\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 støtter ikke denne funksjonen på ditt system." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 støtter ikke denne funksjonen." @@ -202,7 +202,7 @@ msgstr "%1 ble med" msgid "%1 has left" msgstr "%1 har forlatt" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -214,7 +214,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "%1 golfer nå" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -228,7 +228,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -248,22 +248,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normal hastighet)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -271,6 +271,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -291,7 +295,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -304,7 +308,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -348,10 +352,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Om" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Legg til minnestoppunkt" @@ -361,23 +369,19 @@ msgstr "&Legg til minnestoppunkt" msgid "&Add New Code..." msgstr "&Legg til ny kode…" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Legg til funksjon" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Legg til..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Lyd-innstillinger" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Autooppdater:" @@ -386,14 +390,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Brytepunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Feilsporer" @@ -405,11 +409,11 @@ msgstr "&Avbryt" msgid "&Cheats Manager" msgstr "&Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Se etter oppdateringer..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Tøm symboler" @@ -417,7 +421,7 @@ msgstr "&Tøm symboler" msgid "&Clone..." msgstr "&Dupliser..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Kode" @@ -425,18 +429,15 @@ msgstr "&Kode" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Kontroller-innstillinger" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Kopier adresse" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Opprett …" @@ -472,7 +473,7 @@ msgstr "&Rediger..." msgid "&Eject Disc" msgstr "&Løs ut disk" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulering" @@ -497,36 +498,36 @@ msgstr "" msgid "&File" msgstr "&Fil" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Skrift…" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Bilde for bilde" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "%Generer symboler fra" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub-pakkebrønn" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafikkinnstillinger" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Hjelp" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Innstillinger for &hurtigtaster" @@ -550,15 +551,15 @@ msgstr "&Importer..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Sett inn blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -570,11 +571,11 @@ msgstr "&Språk:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "Åpne hurtiglagring" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Last symbolkart" @@ -588,19 +589,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Lås fast moduler" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Film" @@ -608,7 +609,7 @@ msgstr "&Film" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Nettverk" @@ -621,19 +622,19 @@ msgstr "" msgid "&Open..." msgstr "&Åpne…" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Innstillinger" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Patch HLE-funksjoner" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pause" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Spill" @@ -641,7 +642,7 @@ msgstr "&Spill" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Skrivebeskyttet modus" @@ -649,7 +650,7 @@ msgstr "&Skrivebeskyttet modus" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registere" @@ -662,12 +663,12 @@ msgstr "&Fjern" msgid "&Remove Code" msgstr "&Fjern kode" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Gi symbol nytt navn" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Tilbakestill" @@ -679,7 +680,7 @@ msgstr "&Ressurspakke-behandler" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Lagre symbolkart" @@ -691,11 +692,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Fartsgrense:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "S&topp" @@ -703,7 +704,7 @@ msgstr "S&topp" msgid "&Theme:" msgstr "&Drakt:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Tråder" @@ -725,17 +726,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "Vi&s" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Se" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Nettside" @@ -747,11 +748,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' ikke funnet, ingen symbolnavn generert" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' ikke funnet, scanner for vanlige funksjoner istedet" @@ -771,7 +772,7 @@ msgstr "" msgid "(host)" msgstr "(vert)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(av)" @@ -795,7 +796,7 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Trekk fra" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "→ %1" @@ -873,7 +874,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -885,7 +886,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -921,19 +922,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D-dybde" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -957,7 +958,7 @@ msgstr "4:3" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1054,7 +1055,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1087,8 +1088,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Større enn" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "En NetPlay-økt finnes allerede!" @@ -1106,7 +1107,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "En plate er i ferd med å bli satt inn." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1116,7 +1117,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1213,7 +1214,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1289,7 +1290,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "Aktiver NetPlay-chat" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktiv" @@ -1340,11 +1341,11 @@ msgstr "Legg til ny USB-enhet" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Legg til et Stoppunkt" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Legg til et MinneStoppunkt" @@ -1378,13 +1379,13 @@ msgstr "Legg til…" #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adresse" @@ -1403,7 +1404,7 @@ msgstr "" msgid "Address:" msgstr "Adresse:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1472,7 +1473,7 @@ msgstr "Avansert" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1528,7 +1529,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1536,7 +1537,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Alle filer (*)" @@ -1545,7 +1546,7 @@ msgstr "Alle filer (*)" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1554,8 +1555,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle lagringsstadier (*.sav *.s##);; Alle filer (*)" @@ -1579,11 +1580,11 @@ msgstr "Alle spilleres koder er synkronisert." msgid "All players' saves synchronized." msgstr "Alle spilleres lagringsfiler er synkronisert." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Tillat rapportering av brukerstatistikk" @@ -1641,7 +1642,7 @@ msgstr "Vinkel" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1653,19 +1654,19 @@ msgstr "Kantutjevning:" msgid "Any Region" msgstr "Alle regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Legg signatur til" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Føy på til &eksisterende signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Legg p&å Singaturfil..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1679,9 +1680,9 @@ msgstr "Programinnlaster-dato:" msgid "Apply" msgstr "Bruk" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Bruk signaturfil" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1691,7 +1692,7 @@ msgstr "Arbitrær Mipmap Oppdagelse" msgid "Are you sure that you want to delete '%1'?" msgstr "Er du sikker på at du vil slette \"%1\"?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Er du sikker på at du vil slette denne filen?" @@ -1728,8 +1729,8 @@ msgstr "Billedforhold:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1790,7 +1791,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiplum av 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Auto-oppdater innstillinger" @@ -1814,7 +1819,7 @@ msgstr "Automatisk justering av vindusstørrelse" msgid "Auto-Hide" msgstr "Gjem automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Vil du auto-oppdage RSO-moduler?" @@ -1828,6 +1833,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1839,7 +1855,7 @@ msgid "Auxiliary" msgstr "Støtte" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1922,10 +1938,10 @@ msgstr "" msgid "Bad value provided." msgstr "Dårlig verdi angitt." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -1953,7 +1969,7 @@ msgstr "Grunnprioritet" msgid "Basic" msgstr "Grunnleggende" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Grunnleggende innstillinger" @@ -2013,9 +2029,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blokkstørrelse" @@ -2053,15 +2069,15 @@ msgstr "" "Blåtann gjennomstrømningsmodus er aktivert, men Dolphin ble bygd uten " "Libusdb. Gjennomstrømmingsmodus kan ikke benyttes." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Start opp i pausemodus" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND sikkerhetskopifil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii nøkkelfil (*.bin);;Alle filer (*)" @@ -2189,30 +2205,30 @@ msgstr "" msgid "Branch: %1" msgstr "Gren: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Grener" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Stopp" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Stoppunkt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Stoppunkt nådd! Utstepping avbrutt." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Stoppunkter" @@ -2308,7 +2324,7 @@ msgstr "" msgid "C Stick" msgstr "C-joystick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "Lag Signatu&rfil..." @@ -2343,7 +2359,7 @@ msgstr "" msgid "Calculate" msgstr "Kalkuler" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2405,14 +2421,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Kan ikke starte en NetPlay-økt mens et spill er aktivt!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2462,7 +2478,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2510,7 +2526,7 @@ msgstr "Endre &disk…" msgid "Change Disc" msgstr "Endre disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Endre disk automatisk" @@ -2571,7 +2587,7 @@ msgstr "Juksekodesøk" msgid "Cheats Manager" msgstr "Juksekodebehandler" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Sjekk NAND..." @@ -2583,7 +2599,7 @@ msgstr "Sjekk for endringer i spillisten i bakgrunnen" msgid "Check for updates" msgstr "Se etter oppdateringer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2603,29 +2619,29 @@ msgstr "Kina" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Velg en fil å åpne" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Velg prioritetsinputfil" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Velg andre input fil" - #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Velg mappen å pakke ut til" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2644,7 +2660,7 @@ msgstr "Klassisk kontroller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2654,7 +2670,7 @@ msgstr "Nullstill" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Tøm mellomlager" @@ -2675,7 +2691,7 @@ msgstr "Klon og &rediger kode..." msgid "Close" msgstr "Lukk" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "&Oppsett" @@ -2699,7 +2715,7 @@ msgstr "Kode:" msgid "Codes received!" msgstr "Koder mottatt!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2719,7 +2735,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Kombiner &to signaturfiler..." @@ -2754,9 +2770,9 @@ msgstr "Kompiler shadere før start" msgid "Compiling Shaders" msgstr "Komplierer skygger" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Kompresjon" @@ -2781,7 +2797,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Betingelse" @@ -2888,9 +2904,9 @@ msgstr "Sett opp utdata" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekreft" @@ -2903,7 +2919,7 @@ msgstr "Bekreft endring av backend" msgid "Confirm on Stop" msgstr "Bekreft ved stans" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2914,7 +2930,7 @@ msgstr "Bekreftelse" msgid "Connect" msgstr "Koble til" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Koble til balansebrett" @@ -2922,27 +2938,27 @@ msgstr "Koble til balansebrett" msgid "Connect USB Keyboard" msgstr "Koble til USB-tastatur" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Koble til Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Koble til Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Koble til Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Koble til Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Koble til Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Koble til Wii Remote-er" @@ -2987,19 +3003,19 @@ msgstr "Sirkel-joystick" msgid "Controller Profile" msgstr "Kontrollerprofil" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Kontrollerprofil 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Kontrollerprofil 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Kontrollerprofil 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Kontrollerprofil 4" @@ -3011,6 +3027,16 @@ msgstr "Kontroller-innstillinger" msgid "Controllers" msgstr "Kontrollere" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3019,7 +3045,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3027,7 +3053,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3036,7 +3062,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3067,7 +3093,7 @@ msgstr "" "Kontrollerer om høy-nivå eller lav-nivå DSP-emulering skal benyttes. " "Standard er Sant" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3154,18 +3180,22 @@ msgstr "" msgid "Copy" msgstr "Kopier" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopier &funksjon" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Kopier &heksadesimal" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopier adresse" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3174,16 +3204,12 @@ msgstr "" msgid "Copy Hex" msgstr "Kopier heksadesimal" -#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 -msgid "Copy Value" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Kopier kode&linje" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" +#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 +msgid "Copy Value" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 @@ -3299,8 +3325,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3396,7 +3422,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Nåværende region" @@ -3584,24 +3610,24 @@ msgstr "Dekodingskvalitet:" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Reduser konvergens" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Reduser dybde" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Senk emuleringshastighet" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Reduser IR" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3657,8 +3683,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Slett" @@ -3676,7 +3702,7 @@ msgstr "Slett valgte filer..." msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3691,9 +3717,9 @@ msgstr "Dybde:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivelse" @@ -3742,7 +3768,7 @@ msgstr "Frakoblet" msgid "Detect" msgstr "Finn automatisk" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3750,7 +3776,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministisk dobbelkjerne:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Utviklingsutgave (flere ganger daglig)" @@ -3808,15 +3834,15 @@ msgstr "Slå av Kopieringsfilter" msgid "Disable EFB VRAM Copies" msgstr "Slå av EFB VRAM Kopier" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Skru av hastighetsbegrensning av emulering" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3824,11 +3850,11 @@ msgstr "" msgid "Disable Fog" msgstr "Skru av tåke" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Deaktiver JIT-lager" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3850,7 +3876,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3873,7 +3899,8 @@ msgstr "Plate" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3903,15 +3930,15 @@ msgstr "Avstand" msgid "Distance of travel from neutral position." msgstr "Reiseavstand fra nøytral posisjon." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Vil du tømme listen over symbolnavn?" @@ -3921,7 +3948,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Vil du stoppe pågående emulering?" @@ -3942,9 +3969,9 @@ msgstr "Dolphin FIFO-Logg (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Map Fil (*.map)" @@ -3956,8 +3983,8 @@ msgstr "Dolphin-signatur-CSV-fil" msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-Filmer (*.dtm)" @@ -4008,12 +4035,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kan ikke verifisere ulisensierte disker." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins juksesystem er for øyeblikket deaktivert." @@ -4023,7 +4044,7 @@ msgstr "Dolphins juksesystem er for øyeblikket deaktivert." msgid "Domain" msgstr "Domene" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Ikke oppdater" @@ -4080,11 +4101,11 @@ msgstr "Lastet %1 koder. (Lagt til %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4127,7 +4148,7 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dump lyd" @@ -4139,7 +4160,7 @@ msgstr "Dump grunnteksturer" msgid "Dump EFB Target" msgstr "Dump EFB-mål" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dumping av bilder" @@ -4256,16 +4277,16 @@ msgstr "Øst-Asia" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4289,7 +4310,7 @@ msgstr "Effektiv" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4352,7 +4373,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emuleringshastighet" @@ -4372,7 +4393,7 @@ msgstr "Slå på API-valideringslag" msgid "Enable Audio Stretching" msgstr "Tillat lydstrekking" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Aktiver juksekoder" @@ -4396,9 +4417,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Aktiver bruk av dobbelkjerne" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Aktiver bruk av dobbelkjerne (for bedre ytelse)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4442,7 +4463,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4484,7 +4505,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Skru på bruks- og statistikkrapportering" @@ -4564,7 +4585,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4598,7 +4619,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4644,6 +4665,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4671,7 +4701,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4722,14 +4752,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4768,26 +4798,26 @@ msgstr "Skriv inn RSO-moduladresse:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4804,9 +4834,9 @@ msgstr "Skriv inn RSO-moduladresse:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Feil" @@ -4838,7 +4868,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Feil ved henting av sesjonsliste: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4933,7 +4963,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -4946,15 +4976,15 @@ msgstr "" msgid "Exit" msgstr "Avslutt" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Forventet argumenter: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Forventet parentes-lukking." @@ -4966,19 +4996,19 @@ msgstr "Forventet et komma." msgid "Expected end of expression." msgstr "Forventet en RegEx-innkapsling." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Forventet navnet på inndataen." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Forventet parentes-begynnelse" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Forventet starten på RegEx-innkapsling." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4986,7 +5016,7 @@ msgstr "" msgid "Experimental" msgstr "Eksperimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Eksporter alle Wii-lagringsfiler" @@ -4997,11 +5027,11 @@ msgstr "Eksporter alle Wii-lagringsfiler" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Eksporter opptak" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Eksporter opptak…" @@ -5029,7 +5059,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5057,35 +5087,35 @@ msgstr "Ekstern" msgid "External Frame Buffer (XFB)" msgstr "Eksternt bildebuffer (EFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Pakk ut sertifikater fra NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Pakk ut hele disken…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Pakk ut hele partisjonen…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Pakk ut fil…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Pakk ut filer…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Pakk ut systemdata…" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Pakker ut alle filer..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Pakker ut mappe..." @@ -5115,7 +5145,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Kunne ikke legge til på signaturfil '%1'" @@ -5181,7 +5211,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:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Klarte ikke å slette valgt fil." @@ -5210,15 +5240,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "Kunne ikke eksportere følgende lagringsfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Klarte ikke å pakke ut sertifikater fra NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Kunne ikke pakke ut fil." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Kunne ikke pakke ut systemdata." @@ -5237,25 +5267,25 @@ msgstr "Kunne ikke finne en eller flere D3D-symboler" msgid "Failed to import \"%1\"." msgstr "Kunne ikke importere \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Klarte ikke å igangsette kjerne" @@ -5275,11 +5305,11 @@ msgid "Failed to install pack: %1" msgstr "Kunne ikke installere pakke: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Klarte ikke å installere denne tittelen til NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5287,8 +5317,8 @@ msgstr "" "Klarte ikke å lytte til port %1. Kjøres det en annen instans av NetPlay-" "tjeneren?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Kunne ikke laste RSO-modul ved %1" @@ -5300,7 +5330,7 @@ msgstr "Kunne ikke laste d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Kunne ikke laste dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Kunne ikke laste map-fil '%1'" @@ -5337,7 +5367,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Klarte ikke å åpne \"%1\"" @@ -5378,7 +5408,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Klarte ikke å åpne tjener" @@ -5517,19 +5547,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Lagring av FIFO-logg mislyktes." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Kunne ikke lagre kodemapping til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Kunne ikke lagre signaturfil '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Kunne ikke lagre symbolkart til sti '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Kunne ikke lagre til signaturfil '%1'" @@ -5583,8 +5613,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Feil" @@ -5592,11 +5622,12 @@ msgstr "Feil" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5632,9 +5663,9 @@ msgstr "" msgid "File Details" msgstr "Fildetaljer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Filformat" @@ -5646,20 +5677,20 @@ msgstr "Filformat:" msgid "File Info" msgstr "Fil-informasjon" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Filnavn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Filbane" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Filstørrelse" @@ -5760,9 +5791,9 @@ msgstr "Flagg" msgid "Float" msgstr "Flyttall" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Følg &avgrening" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -5830,7 +5861,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5840,7 +5871,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5883,20 +5914,20 @@ msgstr "" msgid "Frame %1" msgstr "Bilde %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Bilde-for-bilde-modus" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Senk hastighet for bildeforskuddsvisning" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Øk hastighet for bildeforskuddsvisning" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Tilbakestill bilde-for-bilde-hastighet" @@ -5953,11 +5984,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Fri-sikt" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Frisikts-veksling" @@ -5991,11 +6022,12 @@ msgstr "Fra:" msgid "FullScr" msgstr "Fullskjerm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funksjon" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -6015,7 +6047,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -6031,11 +6063,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6148,11 +6180,11 @@ msgstr "Spill" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-disker (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6186,8 +6218,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Spill-ID" @@ -6313,7 +6345,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko-juksekoder" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6333,14 +6366,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Opprett en ny statistikk-identitet" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Genererte symbolnavn fra '%1'" @@ -6358,7 +6398,7 @@ msgstr "Tyskland" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6391,7 +6431,7 @@ msgstr "Grafikk" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Grafikkbrytere" @@ -6400,7 +6440,7 @@ msgstr "Grafikkbrytere" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6422,7 +6462,7 @@ msgstr "Grønn venstre" msgid "Green Right" msgstr "Grønn høyre" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Rutenettvisning" @@ -6504,7 +6544,7 @@ msgstr "Gjem" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6522,12 +6562,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Høy" @@ -6591,7 +6631,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "Tastesnarveis-innstillinger" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6692,11 +6732,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Identitetsgenerering" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6739,6 +6779,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6792,7 +6842,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Importer BootMii NAND sikkerhetskopi..." @@ -6807,15 +6857,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importer Wii-lagringsfil …" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importing NAND sikkerhetskopi" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6873,24 +6923,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Øk konvergens" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Øk dybde" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Øk emuleringshastighet" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Øk IR" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6939,8 +6989,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informasjon" @@ -6954,10 +7004,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Inngang" @@ -6976,13 +7026,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Sett inn &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sett inn SD-kort" @@ -7000,7 +7047,7 @@ msgstr "" msgid "Install Update" msgstr "Installer oppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Installer WAD…" @@ -7008,8 +7055,9 @@ msgstr "Installer WAD…" msgid "Install to the NAND" msgstr "Installer til NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -7023,7 +7071,7 @@ msgstr "Instruksjon" msgid "Instruction Breakpoint" msgstr "Instruksjonsstoppunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instruksjon:" @@ -7032,7 +7080,7 @@ msgstr "Instruksjon:" msgid "Instruction: %1" msgstr "Instruksjon: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7091,8 +7139,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Intern oppløsning" @@ -7109,7 +7157,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Fortolker (tregest)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Fortolkerkjerne" @@ -7117,7 +7165,7 @@ msgstr "Fortolkerkjerne" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7125,7 +7173,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Ugyldig mikset kode" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Ugyldig Pakke %1 oppgitt: %2" @@ -7134,7 +7182,7 @@ msgstr "Ugyldig Pakke %1 oppgitt: %2" msgid "Invalid Player ID" msgstr "Ugyldig spiller-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Ugyldig RSO-moduladresse: %1" @@ -7214,11 +7262,11 @@ msgstr "Italia" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT Blokklinking Av" @@ -7226,47 +7274,47 @@ msgstr "JIT Blokklinking Av" msgid "JIT Blocks" msgstr "JIT-blokker" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Branching Av" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FlytTall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Heltall Av" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LastLagre Flyt Av" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LastLagre Av" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LastLagre Parret Av" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LastLagre lXz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT Ibzx Av" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LastLagre Iwz Av" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Av (JIT Kjerne)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Parret Av" @@ -7278,14 +7326,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT Systemregistre Av" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7293,11 +7342,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japan" @@ -7319,7 +7368,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7354,7 +7403,7 @@ msgstr "" msgid "Keys" msgstr "Nøkler" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7362,7 +7411,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Spark spiller" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7499,6 +7548,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7532,11 +7589,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "Begrens Klump-opplastningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Listekolonner" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Listevisning" @@ -7546,17 +7603,17 @@ msgstr "Lytter" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Last" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Last &Dårlig kartfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Last &Annen kartfil..." @@ -7565,7 +7622,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7576,7 +7633,7 @@ msgstr "Last inn brukerlagde teksturer" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Last inn GameCube-hovedmeny" @@ -7584,16 +7641,21 @@ msgstr "Last inn GameCube-hovedmeny" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Last inn nyeste hurtiglagring" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Innlastingsfilbane:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7601,104 +7663,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Last inn hurtiglagring" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Last inn hurtiglagring siste 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Last inn hurtiglagring siste 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Last inn hurtiglagring siste 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Last inn hurtiglagring siste 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Last inn hurtiglagring siste 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Last inn hurtiglagring siste 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Last inn hurtiglagring siste 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Last inn hurtiglagring siste 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Last inn hurtiglagring siste 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Last inn hurtiglagring siste 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Åpne hurtiglagringsplass nr. 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Åpne hurtiglagringsplass nr. 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Åpne hurtiglagringsplass nr. 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Åpne hurtiglagringsplass nr. 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Åpne hurtiglagringsplass nr. 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Åpne hurtiglagringsplass nr. 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Åpne hurtiglagringsplass nr. 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Åpne hurtiglagringsplass nr. 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Åpne hurtiglagringsplass nr. 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Åpne hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Last inn tilstand fra fil" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Last inn tilstand fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Last inn tilstand fra kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Last inn Wii-systemmeny %1" @@ -7706,20 +7768,15 @@ msgstr "Last inn Wii-systemmeny %1" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Last fra valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Last inn fra kortplass %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Last kartfil" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7727,7 +7784,7 @@ msgstr "" msgid "Load..." msgstr "Last..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Lastet symboler fra '%1'" @@ -7752,20 +7809,20 @@ msgstr "Lokal" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Logg" @@ -7775,10 +7832,11 @@ msgid "Log Configuration" msgstr "Logg-innstillinger" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Jit-logg Instruksjonsdekning" @@ -7817,7 +7875,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "Mistet tilkobling til NetPlay-tjener…" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Lav" @@ -7880,9 +7938,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Skaper" @@ -7891,7 +7949,7 @@ msgstr "Skaper" msgid "Maker:" msgstr "Skaper:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7899,7 +7957,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Administrer NAND" @@ -7938,7 +7996,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Kan senke ytelse i Wii-menyen og noen spill." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Middels" @@ -7954,7 +8012,7 @@ msgstr "Minne Stoppunkt" msgid "Memory Card" msgstr "Minnekort" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Minnekortbehandler" @@ -7982,7 +8040,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7994,7 +8052,7 @@ msgstr "" "det er anbefalt at du bevarer sikkerhetskopier av begge NAND-filer. Er du " "sikker på at du vil fortsette?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8065,8 +8123,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8108,7 +8166,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" @@ -8132,10 +8190,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-sjekk" @@ -8144,8 +8202,8 @@ msgstr "NAND-sjekk" msgid "NKit Warning" msgstr "NKit-advarsel" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8154,7 +8212,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8171,8 +8229,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8185,11 +8243,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Navn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Navn for en ny merkelapp:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Navn for tagg til å fjerne:" @@ -8268,7 +8326,7 @@ msgid "Never Auto-Update" msgstr "Aldri autooppdater" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nye" @@ -8293,7 +8351,7 @@ msgstr "Nytt søk" msgid "New Tag..." msgstr "Ny merkelapp..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Ny identietet opprettet." @@ -8301,12 +8359,13 @@ msgstr "Ny identietet opprettet." msgid "New instruction:" msgstr "Ny instruksjon:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Ny etikett" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Neste spillprofil" @@ -8314,8 +8373,9 @@ msgstr "Neste spillprofil" msgid "Next Match" msgstr "Neste treff" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Neste profil" @@ -8402,7 +8462,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Ingen feil har blitt oppdaget." @@ -8448,7 +8508,7 @@ msgstr "" "unngå film-desynkronisering" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8648,7 +8708,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Nettbasert &dokumentasjon" @@ -8656,7 +8716,7 @@ msgstr "Nettbasert &dokumentasjon" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -8664,7 +8724,7 @@ msgstr "" "Legg til kun symboler med prefiks:\n" "(Blank for alle symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8687,14 +8747,18 @@ msgstr "Åpne &inneholdende mappe" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Åpne mappe..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Åpne FIFO-logg" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -8795,7 +8859,7 @@ msgstr "Andre" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Andre Status-hurtigtaster" @@ -8812,7 +8876,7 @@ msgstr "Andre spill..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8820,16 +8884,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Spi&ll av inndataopptak…" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8858,7 +8922,7 @@ msgstr "PNG-bildefil (*.png);; Alle filer (*)" msgid "PPC Size" msgstr "PPC-størrelse" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -8871,7 +8935,7 @@ msgstr "Kontroll" msgid "Pads" msgstr "Kontrollere" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parametere" @@ -8935,7 +8999,7 @@ msgstr "Pause" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pause på slutten av filmen" @@ -8980,7 +9044,7 @@ msgstr "Høyeste fart for utgående svingbevegelser." msgid "Per-Pixel Lighting" msgstr "Belysning per piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Utfør pålogget systemoppdatering" @@ -9010,11 +9074,11 @@ msgstr "Fysisk" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Velg en debug-font" @@ -9030,8 +9094,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plattform" @@ -9043,7 +9107,7 @@ msgstr "Spill av" msgid "Play / Record" msgstr "Spill/Ta opp" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Spill av opptak" @@ -9139,7 +9203,7 @@ msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Potensiell desynkronisering oppdaget: %1 kan ha desynkroniser i bilde %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9192,7 +9256,7 @@ msgstr "" msgid "Presets" msgstr "Forhåndsinnstillinger" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Trykk Synkroniseringsknapp" @@ -9210,9 +9274,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Forrige spillprofil" @@ -9220,8 +9284,9 @@ msgstr "Forrige spillprofil" msgid "Previous Match" msgstr "Forrige spill" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Forrige profil" @@ -9271,13 +9336,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Programteller" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9294,11 +9359,11 @@ msgstr "" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Tøm spillistehurtiglager" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9325,7 +9390,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Spørsmål" @@ -9350,11 +9415,11 @@ msgstr "Høyre-analog" msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO-autooppdaging" @@ -9391,13 +9456,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "B&ytt instruksjon" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Les" @@ -9420,7 +9485,7 @@ msgstr "Kun skrivebeskyttet" msgid "Read or Write" msgstr "Les eller skriv" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Skrivebeskyttet modus" @@ -9479,7 +9544,7 @@ msgstr "Rød venstre" msgid "Red Right" msgstr "Rød høyre" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9525,8 +9590,8 @@ msgstr "" msgid "Refreshing..." msgstr "Gjennoppfrisker..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9547,7 +9612,8 @@ msgstr "Relativ inndata" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9576,7 +9642,7 @@ msgstr "" msgid "Remove Tag..." msgstr "Fjern merkelapp..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Fjern merkelapp" @@ -9589,8 +9655,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "&Gi symbol nytt navn" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -9621,7 +9687,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9633,7 +9699,7 @@ msgstr "Nullstill" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9685,9 +9751,9 @@ msgstr "Omstart påkrevd" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Tilbakestill instruksjon" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -9816,20 +9882,20 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Kjør &Til Hit" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9899,11 +9965,11 @@ msgstr "SSL-sammenheng" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Lag&ringskode" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Lagre &stadie" @@ -9915,7 +9981,7 @@ msgstr "Sikker" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9930,23 +9996,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Lagringsfil Eksport" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Lagre FIFO-logg" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Lagre fil til" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -9957,15 +10035,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Lagre import" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Lagre eldste hurtiglagring" @@ -9973,73 +10055,77 @@ msgstr "Lagre eldste hurtiglagring" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Lagre hurtiglagring" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Hurtiglagringsplass nr. 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Hurtiglagringsplass nr. 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Hurtiglagringsplass nr. 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Hurtiglagringsplass nr. 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Hurtiglagringsplass nr. 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Hurtiglagringsplass nr. 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Hurtiglagringsplass nr. 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Hurtiglagringsplass nr. 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Hurtiglagringsplass nr. 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Hurtiglagringsplass nr. 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Lagre tilstand til fil" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Lagre tilstand til eldste kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Lagre tilstand til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Lagre tilstand til kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "&Lagre symbolkart som..." @@ -10059,11 +10145,7 @@ msgstr "" msgid "Save as..." msgstr "Lagre som …" -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Lagre kombinert utdatafil som" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10077,19 +10159,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Lagre kartfil" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Lagre signaturfil" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Lagre til valgt kortplass" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Lagre til kortplass %1 - %2" @@ -10124,7 +10198,7 @@ msgstr "SkjDump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Søk" @@ -10151,7 +10225,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Søk etter en instruks" @@ -10159,7 +10233,7 @@ msgstr "Søk etter en instruks" msgid "Search games..." msgstr "Søk spill..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Søk instruksjon" @@ -10196,7 +10270,7 @@ msgstr "Velg" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10205,7 +10279,7 @@ msgid "Select Dump Path" msgstr "Velg dumpens filbane" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Velg eksportmappe" @@ -10213,18 +10287,22 @@ msgstr "Velg eksportmappe" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Velg nyeste hurtiglagring" @@ -10233,6 +10311,10 @@ msgstr "Velg nyeste hurtiglagring" msgid "Select Load Path" msgstr "Velg innlastingsfilbane" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10241,6 +10323,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10249,58 +10339,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Velg inngang %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Velg tilstand" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Velg kortplass for lagringsstadie" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Velg lagringsstadieplass 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Velg lagringsstadieplass 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Velg lagringsstadieplass 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Velg lagringsstadieplass 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Velg lagringsstadieplass 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Velg lagringsstadieplass 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Velg lagringsstadieplass 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Velg lagringsstadieplass 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Velg lagringsstadieplass 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Velg lagringsstadieplass 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10318,24 +10412,20 @@ msgstr "Velg mappe" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Velg en fil" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Velg en SD-kortbilledfil" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10344,19 +10434,15 @@ msgstr "" msgid "Select a game" msgstr "Velg et spill" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Velg en tittel å installere til NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Velg RSO-moduladressen:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10364,23 +10450,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Velg nøkkelfil (OTP/SEEPROM dump)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Velg lagringsfil" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Valgt skrifttype" @@ -10436,7 +10505,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10479,6 +10548,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Send" @@ -10487,6 +10577,15 @@ msgstr "Send" msgid "Sensor Bar Position:" msgstr "Sensorbjelkeposisjon:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10515,39 +10614,35 @@ msgstr "Sett &verdi" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Sett programteller" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Sett som &forvalgt ISO" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Angi minnekortfil for inngang A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Angi minnekortfil for inngang B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Sett symbol-&sluttadresse" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Angi symbol&størrelse" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Sett symbol-sluttadresse" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Angi symbolstørrelse (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10564,7 +10659,7 @@ msgstr "Sett Wii-systemspråket." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10576,10 +10671,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10630,11 +10732,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Vis &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Vis &verktøylinje" @@ -10642,15 +10744,15 @@ msgstr "Vis &verktøylinje" msgid "Show Active Title in Window Title" msgstr "Vis aktiv tittel i vindustittel" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Vis Australia" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Vis nåværende spill på Discord" @@ -10659,7 +10761,7 @@ msgstr "Vis nåværende spill på Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Vis ELF/DOL" @@ -10672,7 +10774,7 @@ msgstr "" msgid "Show FPS" msgstr "Vis bildefrekvens (FPS)" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Vis bildeteller" @@ -10680,15 +10782,15 @@ msgstr "Vis bildeteller" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Vis Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Vis GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Vis Tyskland" @@ -10696,27 +10798,27 @@ msgstr "Vis Tyskland" msgid "Show Golf Mode Overlay" msgstr "Vis golfmodusoverlegg" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Vis inndataskjerm" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Vis Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Vis Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Vis lagteller" @@ -10724,7 +10826,7 @@ msgstr "Vis lagteller" msgid "Show Language:" msgstr "Vis språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Vis logg&oppsett" @@ -10736,7 +10838,7 @@ msgstr "Vis NetPlay-meldinger" msgid "Show NetPlay Ping" msgstr "Vis NetPlay-ping" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Vis Nederland" @@ -10744,12 +10846,12 @@ msgstr "Vis Nederland" msgid "Show On-Screen Display Messages" msgstr "Vis Skjerm-meldinger" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Vis PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Vis PC" @@ -10757,7 +10859,7 @@ msgstr "Vis PC" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Vis plattformer" @@ -10765,23 +10867,23 @@ msgstr "Vis plattformer" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Vis regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Vis Russland" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Vis Spania" @@ -10793,19 +10895,23 @@ msgstr "" msgid "Show Statistics" msgstr "Vis statistikker" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Vis systemklokke" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Vis Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Vis USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Vis ukjent" @@ -10817,27 +10923,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Vis WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Vis Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Vis verden" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Vis i &minne" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10854,13 +10960,9 @@ msgstr "" msgid "Show in server browser" msgstr "Vis i vertsliste" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10893,18 +10995,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10925,6 +11015,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10957,6 +11059,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Side-ved-side" @@ -10973,7 +11083,7 @@ msgstr "Sideveisveksling" msgid "Sideways Wii Remote" msgstr "Sideveis Wii Remote" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Signaturdatabase" @@ -11022,7 +11132,7 @@ msgstr "" "Størrelse på strekkehurtilagringsbufferen i millisekunder. For lave verdier " "kan forårsake lydknaking." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Hopp over" @@ -11198,6 +11308,10 @@ msgstr "" msgid "Speed" msgstr "Hastighet" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11234,11 +11348,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Start inn&dataopptak" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Start opptak" @@ -11277,39 +11391,39 @@ msgstr "Steg" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Stepp Inn i" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Stepp ut" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Stepp over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Utstepping vellykket!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Utstepping tidsutløp!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Stepper over..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Stepp vellykket!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Stepper" @@ -11318,7 +11432,7 @@ msgstr "Stepper" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11348,7 +11462,7 @@ msgstr "Joystick" msgid "Stop" msgstr "Stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Stopp avspilling/opptak av inndata" @@ -11417,14 +11531,14 @@ msgstr "" msgid "Stylus" msgstr "Penn" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Vellykket" @@ -11451,24 +11565,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Eksportering av lagringsfiler var vellykket" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Ekstrahering av sertifikat fra NAND vellykket" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Ekstrahering av fil vellykket." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Ekstrahering av systemdata vellykket." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Installering av tittelen til NAND var vellykket." @@ -11519,7 +11633,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11544,17 +11658,21 @@ msgstr "Bytt til B" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Symbol (%1) endeadresse:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Symbolnavn:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symboler" @@ -11605,7 +11723,7 @@ msgstr "Synkroniserer lagringsdata..." msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS-inndata" @@ -11616,9 +11734,9 @@ msgid "TAS Tools" msgstr "TAS-verktøy" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Etiketter" @@ -11636,7 +11754,7 @@ msgstr "Hale" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Ta skjermbilde" @@ -11644,7 +11762,7 @@ msgstr "Ta skjermbilde" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11679,7 +11797,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11724,7 +11842,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "Mesterverk-partisjonene mangler." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -11732,7 +11850,7 @@ msgstr "" "NAND kunne ikke repareres. Det er anbefalt å sikkerhetskopiere dine " "nåværende data for deretter å starte med en blank NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND er blitt reparert." @@ -11885,7 +12003,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Filsystemet er ugyldig eller kunne ikke leses." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12018,7 +12136,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12056,7 +12174,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12118,7 +12236,7 @@ msgstr "Oppdateringspartisjonen mangler." msgid "The update partition is not at its normal position." msgstr "Oppdateringspartisjonen er ikke ved sin normale posisjon." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12233,7 +12351,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Dette kan ikke omgjøres!" @@ -12452,7 +12570,7 @@ msgstr "Tråder" msgid "Threshold" msgstr "Terskel" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -12471,10 +12589,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Tittel" @@ -12482,25 +12600,29 @@ msgstr "Tittel" msgid "To" msgstr "Til" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Til:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Bruk &fullskjerm" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Veksle 3D Anaglyph" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Veksle 3D side-ved-side" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Veksle 3D topp-bunn" @@ -12508,28 +12630,28 @@ msgstr "Veksle 3D topp-bunn" msgid "Toggle All Log Types" msgstr "Bytt alle loggtypene" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Skift bildestørrelse" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Slå av/på stoppunkt" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Veksle krumningsinnstilling" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Veksle Brukerteksturer" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Slå på EFB-kopi" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Slå på tåke" @@ -12541,31 +12663,31 @@ msgstr "Bytt mellom fullskjermspilling eller vinduspilling" msgid "Toggle Pause" msgstr "Slå av/på pause" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Veksle SD-kort" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Veksle teksturdumping" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Bruk USB-tastatur" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Veksle XFB-Kopier" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Veksle XFB Øyeblikkelig Modus" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12688,7 +12810,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12718,7 +12840,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12756,15 +12878,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12804,7 +12926,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12827,11 +12949,11 @@ msgstr "Ukomprimerte GC/Wii bildefiler (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Angre åpning av hurtiglagring" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Angre hurtiglagring" @@ -12851,7 +12973,7 @@ msgstr "" "Å avinstallere WAD-filen vil fjerne den nåværende installerte versjonen av " "denne tittelen fra NAND, uten å slette dens lagringsdata. Fortsett?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "USA" @@ -12947,11 +13069,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Ubegrenset" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12959,7 +13081,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13059,7 +13186,7 @@ msgstr "Oppreisningsveksling" msgid "Upright Wii Remote" msgstr "Oppreist Wii-kontroll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Innstillinger for rapportering av bruksstatistikk" @@ -13152,7 +13279,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13223,7 +13350,7 @@ msgstr "" msgid "Value" msgstr "Verdi" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13311,22 +13438,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Volum ned" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Demp/avdemp lydstyrke" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Volum opp" @@ -13334,7 +13461,7 @@ msgstr "Volum opp" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD-filer (*.wad)" @@ -13435,7 +13562,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Advarsel" @@ -13550,7 +13677,7 @@ msgstr "Hvitelistede USB-gjennomstrømmingsenheter" msgid "Widescreen Hack" msgstr "Bredskjermshack" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13620,7 +13747,7 @@ msgstr "Wii og Wii-kontroll" msgid "Wii data is not public yet" msgstr "Wii-data er ikke offentlige enda" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-lagringsfiler (*.bin);;Alle filer (*)" @@ -13655,11 +13782,11 @@ msgstr "Verden" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Skriv" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13803,7 +13930,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" "Du bruker den nyeste versjonen som er tilgjengelig gjennom denne " @@ -13873,7 +14000,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/nl.po b/Languages/po/nl.po index 7fcad3f8da..24eb080c4c 100644 --- a/Languages/po/nl.po +++ b/Languages/po/nl.po @@ -29,11 +29,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mike van der Kuijl , 2020-2024\n" -"Language-Team: Dutch (http://app.transifex.com/delroth/dolphin-emu/language/" -"nl/)\n" +"Language-Team: Dutch (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/nl/)\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -189,13 +189,13 @@ msgstr "%1 MB (MEM2)" #. i18n: A positive number of version control commits made compared to some named branch #: Source/Core/DolphinQt/AboutDialog.cpp:27 msgid "%1 commit(s) ahead of %2" -msgstr "" +msgstr "%1 commit(s) voor op %2" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:141 msgid "%1 doesn't support this feature on your system." msgstr "%1 ondersteunt deze functie niet op uw systeem." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 ondersteunt deze functie niet." @@ -217,7 +217,7 @@ msgstr "%1 doet nu mee" msgid "%1 has left" msgstr "%1 is vertrokken" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 heeft %2/%3 prestaties ontgrendeld die %4/%5 punten waard zijn" @@ -229,7 +229,7 @@ msgstr "%1 is geen geldige ROM" msgid "%1 is now golfing" msgstr "%1 is nu aan het golfen" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 is %2 aan het spelen" @@ -243,7 +243,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 punten" @@ -263,22 +263,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normale Snelheid)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "%1's waarde is veranderd" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "%1's waarde is geraakt" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1's waarde is gebruikt" @@ -286,13 +286,17 @@ msgstr "%1's waarde is gebruikt" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:275 msgid "%1

%2" -msgstr "" +msgstr "%1

%2" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:141 msgid "%1[%2]: %3" @@ -306,7 +310,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -319,7 +323,7 @@ msgstr "%1x Native (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Native (%2x%3) voor %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -364,10 +368,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Over" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "&Voeg Functie toe" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Voeg Geheugen Breekpunt Toe" @@ -377,23 +385,19 @@ msgstr "&Voeg Geheugen Breekpunt Toe" msgid "&Add New Code..." msgstr "&Nieuwe Code Toevoegen..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Functie toevoegen" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Toevoegen..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Geluidsinstellingen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Automatisch Bijwerken:" @@ -402,14 +406,14 @@ msgid "&Borderless Window" msgstr "&Randloos venster" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" -msgstr "" +msgid "&Break on Hit" +msgstr "&Breek bij Hit." -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Breekpunten" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Bug-tracker" @@ -421,11 +425,11 @@ msgstr "&Annuleren" msgid "&Cheats Manager" msgstr "&Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Controleer op updates..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "Symbolen &wissen" @@ -433,7 +437,7 @@ msgstr "Symbolen &wissen" msgid "&Clone..." msgstr "&Klonen…" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Code" @@ -441,17 +445,14 @@ msgstr "&Code" msgid "&Connected" msgstr "&Verbonden" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Controllerinstellingen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Adres kopiëren" +msgstr "&Kopieer Adres" #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." @@ -488,7 +489,7 @@ msgstr "&Bewerken…" msgid "&Eject Disc" msgstr "Schijf &uitwerpen" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulatie" @@ -513,36 +514,36 @@ msgstr "Als .gci exporteren…" msgid "&File" msgstr "&Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Lettertype..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Frame Voorwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" -msgstr "&Vrije-kijk-instellingen" +msgstr "&Vrije-kijkinstellingen" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "Symbolen &genereren van" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub-repository" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafische instellingen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Hulp" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Sneltoetsinstellingen" @@ -566,15 +567,15 @@ msgstr "&Importeren…" msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "Blr …invoegen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "&Voeg BLR in" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Interframe Menging" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -584,13 +585,13 @@ msgstr "&Taal:" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:290 msgid "&Load Branch Watch" -msgstr "" +msgstr "&Laad Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "State &laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "Symbol-map &laden" @@ -604,19 +605,19 @@ msgstr "&Laad bestand naar huidig adres" msgid "&Lock Watches" msgstr "&Vergrendel Watches" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Vergrendel Widgets op hun Plaats" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" -msgstr "" +msgid "&Log on Hit" +msgstr "&Log bij Hit." -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Geheugen" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Opname" @@ -624,7 +625,7 @@ msgstr "&Opname" msgid "&Mute" msgstr "&Dempen" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Netwerk" @@ -637,19 +638,19 @@ msgstr "&Nee" msgid "&Open..." msgstr "&Openen…" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opties" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Patch HLE Functies" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pauze" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Spelen" @@ -657,7 +658,7 @@ msgstr "&Spelen" msgid "&Properties" msgstr "&Eigenschappen" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Alleen-lezen-modus" @@ -665,7 +666,7 @@ msgstr "&Alleen-lezen-modus" msgid "&Refresh List" msgstr "Lijst &verversen" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registers" @@ -678,12 +679,12 @@ msgstr "&Verwijderen" msgid "&Remove Code" msgstr "&Code verwijderen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Symbool hernoemen" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "&Hernoem Symbool" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Resetten" @@ -693,9 +694,9 @@ msgstr "&Resource Pack Beheer" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:288 msgid "&Save Branch Watch" -msgstr "" +msgstr "&Sla Branch Watch op" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Symbol-map opslaan" @@ -707,11 +708,11 @@ msgstr "&Scan e-Reader Kaart(en)..." msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Snelheidslimiet:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Stoppen" @@ -719,13 +720,13 @@ msgstr "&Stoppen" msgid "&Theme:" msgstr "&Thema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Threads" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:297 msgid "&Tool" -msgstr "" +msgstr "&Gereedschap" #: Source/Core/DolphinQt/MenuBar.cpp:248 msgid "&Tools" @@ -741,17 +742,17 @@ msgstr "&ROM ontladen" msgid "&Unlock Watches" msgstr "Watches &ontgrendelen" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Weergave" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Website" @@ -763,11 +764,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' niet gevonden, geen symboolnamen gegenereerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' niet gevonden, in plaats daarvan zoeken naar algemene functies" @@ -787,7 +788,7 @@ msgstr "(Systeem)" msgid "(host)" msgstr "(host)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(uit)" @@ -811,7 +812,7 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Aftrekken" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -889,7 +890,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x Anisotropisch" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -901,7 +902,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -937,19 +938,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-bit Unsigned Integer" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D diepte" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -973,7 +974,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1070,7 +1071,7 @@ msgstr "Uitgeschakeld in Hardcore-modus." msgid "If unsure, leave this unchecked." msgstr "In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1086,7 +1087,7 @@ msgid "" "Notes:

" msgstr "" "

Een nieuwe versie van Dolphin is beschikbaar!

Dolphin %1 is " -"beschikbaar om te downloaden. U gebruikt %2.
Wilt u updaten?" +"beschikbaar om te downloaden. U gebruikt %2.
Wilt u bijwerken?" "

Releaseopmerkingen:

" #: Source/Core/DolphinQt/Debugger/AssembleInstructionDialog.cpp:20 @@ -1109,8 +1110,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Meer dan" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Er is al een NetPlay sesie bezig!" @@ -1134,7 +1135,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Er ligt al een schijf in de lade." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1147,7 +1148,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Een save state kan niet worden gebruikt zonder een spel te specificeren. " -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1171,7 +1172,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:292 msgid "A&uto Save" -msgstr "" +msgstr "A&utomatisch Opslaan" #. i18n: A mysterious debugging/diagnostics peripheral for the GameCube. #: Source/Core/Core/HW/EXI/EXI_Device.h:98 @@ -1250,7 +1251,7 @@ msgid "Achievement Settings" msgstr "Prestatie-instellingen" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Prestaties" @@ -1343,7 +1344,7 @@ msgstr "Action Replay: Normal Code {1}: Onjuist Subtype {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Activeer NetPlay Chat" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Actief" @@ -1394,11 +1395,11 @@ msgstr "Nieuw USB Apparaat Toevoegen" msgid "Add Shortcut to Desktop" msgstr "Voeg Snelkoppeling toe aan Bureaublad" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Voeg een Breekpunt Toe" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Voeg Een Geheugen Breekpunt Toe" @@ -1432,13 +1433,13 @@ msgstr "Toevoegen..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adres" @@ -1457,7 +1458,7 @@ msgstr "Adresruimte per CPU state" msgid "Address:" msgstr "Adres:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1536,7 +1537,7 @@ msgstr "Geavanceerd" msgid "Advanced Settings" msgstr "Geavanceerde instellingen" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1592,7 +1593,7 @@ msgstr "Alles Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1600,7 +1601,7 @@ msgid "All Files" msgstr "Alle Bestanden" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Alle Bestanden (*)" @@ -1609,7 +1610,7 @@ msgstr "Alle Bestanden (*)" msgid "All Float" msgstr "Alle Float" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alle GC/Wii bestanden" @@ -1618,8 +1619,8 @@ msgstr "Alle GC/Wii bestanden" msgid "All Hexadecimal" msgstr "Alle Hexadecimaal" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Save States (*.sav *.s##);; Alle Bestanden (*)" @@ -1643,11 +1644,11 @@ msgstr "Codes van alle spelers gesynchroniseerd." msgid "All players' saves synchronized." msgstr "Saves van alle spelers gesynchroniseerd." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Niet-overeenkomende regio-instellingen toestaan" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken toestaan" @@ -1707,7 +1708,7 @@ msgstr "Hoek" msgid "Angular velocity to ignore and remap." msgstr "Hoeksnelheid om te negeren en te remappen." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1719,19 +1720,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Elke Regio" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "Voeg Signatuur toe aan" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Toevoegen aan &Bestaand Signatuurbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "P&as Signatuur Toe..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1747,9 +1748,9 @@ msgstr "Apploader Datum:" msgid "Apply" msgstr "Toepassen" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Pas signatuurbestand toe..." +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "Pas Signatuurbestand toe" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1759,7 +1760,7 @@ msgstr "Arbitraire Mipmapdetectie" msgid "Are you sure that you want to delete '%1'?" msgstr "Weet u zeker dat u '%1' wilt verwijderen?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Weet u zeker dat u dit bestand wilt verwijderen?" @@ -1785,7 +1786,7 @@ msgstr "Beeldverhouding" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:144 msgid "Aspect Ratio Corrected Internal Resolution" -msgstr "" +msgstr "Beeldverhouding gecorrigeerde interne resolutie" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:163 @@ -1796,9 +1797,9 @@ msgstr "Beeldverhouding:" msgid "Assemble" msgstr "Assemble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Assemble instructie" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "Assemble Instructie" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1860,7 +1861,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (veelvoud van 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "Automatisch Bijwerken" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Instellingen voor automatisch bijwerken" @@ -1884,7 +1889,7 @@ msgstr "Venstergrootte automatisch aanpassen" msgid "Auto-Hide" msgstr "Automatisch Verbergen" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Auto-detect RSO module?" @@ -1900,6 +1905,17 @@ msgstr "" "Past de venster grootte automatisch aan aan de interne resolutie." "

In geval van twijfel leeg laten." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Automatisch bijwerken van huidige waardes" @@ -1911,7 +1927,7 @@ msgid "Auxiliary" msgstr "Auxiliary" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1931,7 +1947,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "BBA Bestemmingsadres" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -1997,10 +2013,10 @@ msgstr "Slechte offset gegeven." msgid "Bad value provided." msgstr "Verkeerde waarde opgegeven." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -2028,7 +2044,7 @@ msgstr "Basisprioriteit" msgid "Basic" msgstr "Basis" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Basisinstellingen" @@ -2088,9 +2104,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blokgrootte" @@ -2128,15 +2144,15 @@ msgstr "" "Bluetooth passthrough modus staat aan, maar Dolphin is gecompileerd zonder " "libusb. Passthrough mode kan niet gebruikt worden." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Opstarten naar Pauze" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup bestanden (*.bin);;Alle bestanden (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii sleutelbestand (*.bin);;Alle Bestanden (*)" @@ -2150,71 +2166,71 @@ msgstr "Beneden" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:381 msgid "Branch" -msgstr "" +msgstr "Branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:382 msgid "Branch (LR saved)" -msgstr "" +msgstr "Branch (LR opgeslagen)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:383 msgid "Branch Conditional" -msgstr "" +msgstr "Voorwaardelijke Branch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:384 msgid "Branch Conditional (LR saved)" -msgstr "" +msgstr "Voorwaardelijke Brach (LR opgeslagen)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:391 msgid "Branch Conditional to Count Register" -msgstr "" +msgstr "Voorwaardelijke Branch naar Tel Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:392 msgid "Branch Conditional to Count Register (LR saved)" -msgstr "" +msgstr "Voorwaardelijke Branch naar Tel Register (LR opgeslagen)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:387 msgid "Branch Conditional to Link Register" -msgstr "" +msgstr "Voorwaardelijke Branch naar Link Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:388 msgid "Branch Conditional to Link Register (LR saved)" -msgstr "" +msgstr "Voorwaardelijke Branch naar Link Register (LR opgeslagen)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:476 msgid "Branch Not Overwritten" -msgstr "" +msgstr "Branch Niet Overschreven" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:395 msgid "Branch Type" -msgstr "" +msgstr "Branch Type" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:471 msgid "Branch Was Overwritten" -msgstr "" +msgstr "Branch Was Overschreven" #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:109 msgid "Branch Watch" -msgstr "" +msgstr "Branch Watch" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:202 msgid "Branch Watch Tool" -msgstr "" +msgstr "Branch Watch Tool" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:710 msgid "Branch Watch Tool Help (1/4)" -msgstr "" +msgstr "Branch Watch Tool Hulp (1/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:723 msgid "Branch Watch Tool Help (2/4)" -msgstr "" +msgstr "Branch Watch Tool Hulp (2/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:731 msgid "Branch Watch Tool Help (3/4)" -msgstr "" +msgstr "Branch Watch Tool Hulp (3/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:743 msgid "Branch Watch Tool Help (4/4)" -msgstr "" +msgstr "Branch Watch Tool Hulp (4/4)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:711 msgid "" @@ -2245,49 +2261,49 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:389 msgid "Branch to Count Register" -msgstr "" +msgstr "Branch naar Tel Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:390 msgid "Branch to Count Register (LR saved)" -msgstr "" +msgstr "Branch naar Tel Register (LR opgeslagen)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:385 msgid "Branch to Link Register" -msgstr "" +msgstr "Branch naar Link Register" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:386 msgid "Branch to Link Register (LR saved)" -msgstr "" +msgstr "Branch naar Link Register (LR opgeslagen)" #. i18n: "Branch" means the version control term, not a literal tree branch. #: Source/Core/DolphinQt/AboutDialog.cpp:63 msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Branches" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Afbreken" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" -msgstr "" +msgid "Break &and Log on Hit" +msgstr "Breek &en Log bij Hit." -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Breekpunt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Breekpunt tegengekomen! Uitstappen afgebroken." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Breekpunten" @@ -2386,7 +2402,7 @@ msgstr "Door: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "M&aak Signatuurbestand aan..." @@ -2425,7 +2441,7 @@ msgstr "" msgid "Calculate" msgstr "Bereken" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2492,14 +2508,14 @@ msgstr "Kan de schurken voor deze trofee niet aanpassen" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kan Wii-afstandsbediening niet vinden via verbindingshendel {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Kan geen NetPlay-sessie starten als spel nog draait!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2514,15 +2530,15 @@ msgstr "Kalibratie Annuleren" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:929 msgid "Candidates: %1" -msgstr "" +msgstr "Kandidaten: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:932 msgid "Candidates: %1 | Excluded: %2 | Remaining: %3" -msgstr "" +msgstr "Kandidaten: %1 | Uitgesloten: %2 | Overgebleven %3" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:947 msgid "Candidates: %1 | Filtered: %2 | Remaining: %3" -msgstr "" +msgstr "Kandidaten: %1 | Gefilterd: %2 | Overgebleven %3" #: Source/Core/Core/FifoPlayer/FifoPlayer.cpp:247 msgid "Cannot SingleStep the FIFO. Use Frame Advance instead." @@ -2550,7 +2566,7 @@ msgstr "Kan geen AR code genereren voor dit adres." msgid "Cannot refresh without results." msgstr "Kan niet verversen zonder resultaten." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "Kan GCI map niet op een leeg pad zetten." @@ -2598,7 +2614,7 @@ msgstr "&Schijf wisselen…" msgid "Change Disc" msgstr "Schijf wisselen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Verwissel Schijven Automatisch" @@ -2611,6 +2627,9 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"Verandert het uiterlijk en de kleur van de knoppen van Dolphin." +"

In geval van twijfel, Clean selecteren." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" @@ -2672,7 +2691,7 @@ msgstr "Cheat Zoeken" msgid "Cheats Manager" msgstr "Cheats Beheer" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Controleer NAND..." @@ -2684,7 +2703,7 @@ msgstr "Controleer op de achtergrond op spellijstwijzigingen" msgid "Check for updates" msgstr "Controleer op updates" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2704,29 +2723,29 @@ msgstr "China" msgid "Choose" msgstr "Kies" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Kies een bestand om te openen" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Kies een bestand om te openen of te maken" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Kies een inputbestand met prioriteit" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Kies een secundair inputbestand" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "Kies een Map om naar Uit te Pakken" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Selecteer GCI-basismap" +msgid "Choose GCI Base Folder" +msgstr "Kies GCI Basismap" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Kies een map om naar uit te pakken" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "Kies Prioriteit Inputbestand" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "Kies Secundair Inputbestand" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "Kies een Bestand om te Openen" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "Kies een Bestand om te Openen of te Creëren" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2745,7 +2764,7 @@ msgstr "Klassieke Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2753,15 +2772,15 @@ msgstr "Legen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:335 msgid "Clear Branch Watch" -msgstr "" +msgstr "Leeg Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" -msgstr "Cache legen" +msgstr "Leeg Cache" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:114 msgid "Clear Slot" -msgstr "Slot Legen" +msgstr "Leeg Slot" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:90 msgid "Clock Override" @@ -2776,7 +2795,7 @@ msgstr "Clone en &Wijzig Code..." msgid "Close" msgstr "Sluiten" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Co&nfiguratie" @@ -2786,11 +2805,11 @@ msgstr "Code" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:345 msgid "Code Path Not Taken" -msgstr "" +msgstr "Code Pad Niet Genomen" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:340 msgid "Code Path Was Taken" -msgstr "" +msgstr "Code Pad Werd Genomen" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:93 msgid "Code:" @@ -2800,7 +2819,7 @@ msgstr "Code:" msgid "Codes received!" msgstr "Codes ontvangen!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Kleur Correctie" @@ -2818,9 +2837,9 @@ msgstr "Kleurruimte" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:310 msgid "Column &Visibility" -msgstr "" +msgstr "Kolom &Zichtbaarheid" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Combineer &Twee Signatuurbestanden..." @@ -2862,9 +2881,9 @@ msgstr "Compileer Shaders Voor Starten" msgid "Compiling Shaders" msgstr "Shaders Compileren" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Compressie" @@ -2879,7 +2898,7 @@ msgstr "Compressie:" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 msgid "Cond." -msgstr "" +msgstr "Voorwaarde" #. i18n: If a condition is set for a breakpoint, the condition becoming true is a prerequisite for #. triggering the breakpoint. @@ -2889,7 +2908,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Conditie" @@ -2996,9 +3015,9 @@ msgstr "Configureer Output" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bevestigen" @@ -3011,7 +3030,7 @@ msgstr "Backend-wijziging bevestigen" msgid "Confirm on Stop" msgstr "Bevestiging bij Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3022,7 +3041,7 @@ msgstr "Bevestiging" msgid "Connect" msgstr "Verbind" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Verbind Balance Board" @@ -3030,27 +3049,27 @@ msgstr "Verbind Balance Board" msgid "Connect USB Keyboard" msgstr "USB-toetsenbord verbinden" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Verbind Wii-afstandsbediening %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Verbind Wii-afstandsbediening 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Verbind Wii-afstandsbediening 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Verbind Wii-afstandsbediening 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Verbind Wii-afstandsbediening 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Verbind Wii-afstandsbedieningen" @@ -3095,19 +3114,19 @@ msgstr "Controle Stick" msgid "Controller Profile" msgstr "Controllerprofiel" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Controllerprofiel 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Controllerprofiel 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Controllerprofiel 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Controllerprofiel 4" @@ -3119,6 +3138,16 @@ msgstr "Controllerinstellingen" msgid "Controllers" msgstr "Controllers" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3127,7 +3156,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3138,7 +3167,7 @@ msgstr "" "virtuele objecten op de voorgrond van een scherm moeten worden getoond." "

Een hogere waarde zorgt voor een sterker 'uit het scherm' effect." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3153,7 +3182,7 @@ msgstr "" "

In geval van twijfel Native selecteren." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3186,7 +3215,7 @@ msgstr "" "Bepaalt of high of low-level DSP-emulatie moet worden gebruikt. Standaard " "ingesteld op Waar" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Convergentie" @@ -3291,18 +3320,22 @@ msgstr "" msgid "Copy" msgstr "Kopieer" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopieer &functie" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "Kopieer &Functie" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Kopieer &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "Kopieer &Hex" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopieer Adres" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "Kopieer Code &Lijn" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Kopie mislukt" @@ -3311,18 +3344,14 @@ msgstr "Kopie mislukt" msgid "Copy Hex" msgstr "Kopieer Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "Kopieer &Doeladres" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Kopieer Waarde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Kopieer code &lijn" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Kopieer &doeladres" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Kopiëren naar A" @@ -3340,7 +3369,7 @@ msgstr "Core" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:649 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:664 msgid "Core is uninitialized." -msgstr "" +msgstr "Core is niet geïnitialiseerd." #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:64 msgid "Correct Color Space" @@ -3448,8 +3477,8 @@ msgstr "Kon het bestand {0} niet herkennen" msgid "Could not save your changes!" msgstr "Kon de wijzigingen niet opslaan!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Kon updater proces niet starten: {0}" @@ -3556,7 +3585,7 @@ msgstr "" "Kan de prestaties beïnvloeden.

In geval van twijfel " "leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Huidige Regio" @@ -3582,7 +3611,7 @@ msgstr "Aangepast" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61 msgid "Custom (Stretch)" -msgstr "" +msgstr "Aangepast (Strech)" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:51 msgid "Custom Address Space" @@ -3750,24 +3779,24 @@ msgstr "Decoderingskwaliteit:" msgid "Decrease" msgstr "Verlaag" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Verlaag Convergentie" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Verlaag Diepte" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Verlaag Emulatiesnelheid" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Verlaag IR" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Verlaag Geselecteerde State Slot" @@ -3829,8 +3858,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Verwijderen" @@ -3848,7 +3877,7 @@ msgstr "Verwijder Geselecteerde Bestanden..." msgid "Delete the existing file '{0}'?" msgstr "Verwijder het bestaande bestand '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Diepte" @@ -3863,9 +3892,9 @@ msgstr "Diepte:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beschrijving" @@ -3882,29 +3911,29 @@ msgstr "Beschrijving: %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:267 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:48 msgid "Destination" -msgstr "" +msgstr "Bestemming" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:64 msgid "Destination (UNIX socket path or address:port):" -msgstr "" +msgstr "Bestemming (Unix socket pad of adres:poort)" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:59 msgid "Destination (address:port):" -msgstr "" +msgstr "Bestemming (adres:poort)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Destination Max" -msgstr "" +msgstr "Bestemming Max" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:424 msgid "Destination Min" -msgstr "" +msgstr "Bestemming Min" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:268 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:423 #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:50 msgid "Destination Symbol" -msgstr "" +msgstr "Bestemming Symbool" #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187 msgid "Detached" @@ -3914,7 +3943,7 @@ msgstr "Ontkoppeld" msgid "Detect" msgstr "Detecteer" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "RSO Module Detecteren" @@ -3922,7 +3951,7 @@ msgstr "RSO Module Detecteren" msgid "Deterministic dual core:" msgstr "Deterministische dual-core:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (meerdere keren per dag)" @@ -3980,15 +4009,15 @@ msgstr "Schakel Kopieerfilter uit" msgid "Disable EFB VRAM Copies" msgstr "Schakel EFB VRAM Kopieën uit" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Schakel Emulatie Snelheidslimit uit" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Schakel Fastmem uit" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Schakel Fastmem Arena uit" @@ -3996,11 +4025,11 @@ msgstr "Schakel Fastmem Arena uit" msgid "Disable Fog" msgstr "Schakel Mist uit" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "JIT-cache uitschakelen" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Schakel Large Entry Points Map uit" @@ -4028,7 +4057,7 @@ msgstr "" "afgedwongen. Blokkeert alle opschaling.

In geval " "van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4057,9 +4086,10 @@ msgstr "Schijf" msgid "Discard" msgstr "Verwerpen" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" -msgstr "" +msgstr "Weergave-instellingen" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4092,19 +4122,19 @@ msgstr "Afstand" msgid "Distance of travel from neutral position." msgstr "Reisafstand vanaf neutrale positie." -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Machtigt u Dolphin om informatie te rapporteren aan de ontwikkelaars van " "Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Wilt u \"%1\" toevoegen aan de lijst met Spelpaden?" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" -msgstr "Wilt u de lijst met symboolnamen wissen?" +msgstr "Wilt u de lijst met symboolnamen legen?" #: Source/Core/DolphinQt/GCMemcardManager.cpp:659 #, c-format @@ -4112,7 +4142,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Wilt u de %n geselecteerde save bestand(en) verwijderen?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Wilt u de emulatie stoppen?" @@ -4133,9 +4163,9 @@ msgstr "Dolphin FIFO Log (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin Spel Modificatie Voorinstelling " -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Mapbestand (*.map)" @@ -4147,8 +4177,8 @@ msgstr "Dolphin CSV Signatuurbestand" msgid "Dolphin Signature File" msgstr "Dolphin Signatuurbestand" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Opname (*.dtm)" @@ -4208,14 +4238,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kan ongelicenseerde schijven niet verifiëren." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin gebruikt dit voor spellen waarvan de regio niet automatisch kan " -"worden bepaald." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin's cheatsysteem is momenteel uitgeschakeld." @@ -4225,7 +4247,7 @@ msgstr "Dolphin's cheatsysteem is momenteel uitgeschakeld." msgid "Domain" msgstr "Domein" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Niet Updaten" @@ -4282,11 +4304,11 @@ msgstr "%1 codes gedownload. (%2 toegevoegd)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4329,7 +4351,7 @@ msgstr "Dump &FakeVMEM" msgid "Dump &MRAM" msgstr "Dump &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dump Audio" @@ -4341,7 +4363,7 @@ msgstr "Basistexturen dumpen" msgid "Dump EFB Target" msgstr "Dump EFB Doel" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dump Frames" @@ -4472,16 +4494,16 @@ msgstr "Oost-Azië" msgid "Edit Breakpoint" msgstr "Bewerk Breekpunt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" -msgstr "" +msgstr "Bewerk Voorwaarde" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" -msgstr "" +msgstr "Bewerk voorwaardelijke uitdrukking" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Bewerk..." @@ -4505,7 +4527,7 @@ msgstr "Effectief" msgid "Effective priority" msgstr "Effectieve prioriteit" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4573,7 +4595,7 @@ msgstr "" "Huidig: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emulatiesnelheid" @@ -4593,7 +4615,7 @@ msgstr "Activeer API Validatielagen" msgid "Enable Audio Stretching" msgstr "Activeer Audio Uitrekking" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Activeer Cheats" @@ -4611,15 +4633,15 @@ msgstr "Activeer Degugging UI" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "Activeer Discord Presence" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "Activeer Dual-Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Activeer Dual-Core (snelheidsverhoging)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "Activeer Dual-Core (snelheidshack)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4663,9 +4685,9 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" -msgstr "" +msgstr "Activeer JIT Blok Profilering" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88 #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:69 @@ -4674,7 +4696,7 @@ msgstr "Activeer MMU" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Progress Notifications" -msgstr "Schakel Voortgangsmeldingen in." +msgstr "Activeer Voortgangsmeldingen" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:168 msgid "Enable Progressive Scan" @@ -4699,15 +4721,15 @@ msgstr "Activeer Speaker Data" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "Activeer Toeschouwer Modus" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "Activeer Onofficiële Prestaties" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" -msgstr "Rapportage van gebruiksstatistieken inschakelen" +msgstr "Activeer Rapportage van Gebruiksstatistieken" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:160 msgid "Enable WiiConnect24 via WiiLink" @@ -4719,16 +4741,16 @@ msgstr "Activeer Wireframe" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:83 msgid "Enable Write-Back Cache (slow)" -msgstr "Write-back-cache inschakelen (traag)" +msgstr "Activeer Write-back Cache (traag)" #: 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 "" -"Schakel geëmuleerde schijfsnelheid in. Het uitschakelen hiervan kan in " -"sommige spellen crashes en andere problemen veroorzaken. (AAN = Compatibel, " -"UIT = Ontgrendeld)" +"Activeer geëmuleerde schijfsnelheid. Het deactiveren hiervan kan in sommige " +"spellen crashes en andere problemen veroorzaken. (AAN = Compatibel, UIT = " +"Ontgrendeld)" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "" @@ -4785,10 +4807,10 @@ msgid "" "Enables Floating Point Result Flag calculation, needed for a few games. (ON " "= Compatible, OFF = Fast)" msgstr "" -"Activeer Floating Point Result Flag berekening, nodig voor enkele spellen. " +"Activeert Floating Point Result Flag berekening, nodig voor enkele spellen. " "(AAN = Compatibel, UIT = Snel)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4814,7 +4836,7 @@ msgid "" "more than two CPU cores. Currently, this is limited to the Vulkan backend." "

If unsure, leave this checked." msgstr "" -"Schakelt multi-threaded command indiening in voor backends die dit " +"Activeert multi-threaded command indiening voor backends die dit " "ondersteunen. Als u deze optie inschakelt, kan dit resulteren in een " "prestatieverbetering op systemen met meer dan twee CPU kernen. Momenteel is " "deze functie alleen beschikbaar voor de Vulkan backend." @@ -4827,11 +4849,11 @@ msgid "" "don't have any issue with this.

If unsure, leave " "this unchecked." msgstr "" -"Schakelt progressieve scan in als het ondersteund wordt door de geëmuleerde " +"Activeert progressieve scan als het ondersteund wordt door de geëmuleerde " "software. De meeste spellen geven hier niks om.

In " "geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4844,8 +4866,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:152 msgid "Enables stretching of the audio to match emulation speed." msgstr "" -"Maakt uitrekking van audio mogelijk, zodat de audio gelijk blijft aan de " -"emulatiesnelheid." +"Activeert uitrekking van audio om overeen te komen met de emulatiesnelheid." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:269 msgid "" @@ -4861,8 +4882,8 @@ msgid "" "Enables the Memory Management Unit, needed for some games. (ON = Compatible, " "OFF = Fast)" msgstr "" -"Schakel de Memory Management Unit in die nodig is voor sommige spellen. (AAN " -"= Compatibel, UIT = Snel)" +"Activeert de Memory Management Unit, dit is nodig is voor sommige spellen. " +"(AAN = Compatibel, UIT = Snel)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:71 msgid "" @@ -4870,9 +4891,9 @@ msgid "" "OFF = Fast)

If unsure, leave this unchecked." msgstr "" -"Schakelt de Memory Management Unit in, nodig voor sommige spellen. (AAN = " -"Compatibel, UIT = Snel)

In geval van twijfel leeg " -"laten." +"Activeert de Memory Management Unit, dit is nodig is voor sommige spellen. " +"(AAN = Compatibel, UIT = Snel)

In geval van twijfel " +"leeg laten." #: Source/Core/DolphinQt/Settings/WiiPane.cpp:192 msgid "" @@ -4881,11 +4902,20 @@ msgid "" "such as the Forecast and Nintendo Channels\n" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" -"Activeer de WiiLink-dienst voor WiiConnect24-kanalen.\n" +"Activeert de WiiLink-dienst voor WiiConnect24-kanalen.\n" "WiiLink is een alternatieve provider voor de beëindigde WiiConnect24-kanalen " "zoals de Voorspellings- en Nintendo-kanalen.\n" "Lees de servicevoorwaarden op: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4893,8 +4923,8 @@ msgid "" "enables debug symbols for the compiled shaders.

If " "unsure, leave this unchecked." msgstr "" -"Maakt validatie van API-aanroepen door de video-backend mogelijk, wat kan " -"helpen bij het debuggen van grafische problemen. Met Vulkan en D3D backends, " +"Activeert validatie van API-aanroepen door de video-backend, dit kan helpen " +"bij het debuggen van grafische problemen. Met Vulkan en D3D backends, " "schakelt dit ook debug symbolen in voor de gecompileerde shaders." "

In geval van twijfel leeg laten." @@ -4923,9 +4953,9 @@ msgstr "" "\n" "Importeren afbreken." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" -msgstr "" +msgstr "Eind Adres" #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -4974,14 +5004,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 msgid "Enter the RSO module address:" msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194 #: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5020,26 +5050,26 @@ msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5056,9 +5086,9 @@ msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fout" @@ -5091,7 +5121,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Fout in het verkrijgen van sessie lijst: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Fout opgetreden bij het laden van sommige texture packs" @@ -5129,7 +5159,7 @@ msgstr "" #: Source/Core/Core/HW/GBACore.cpp:192 msgid "Error: GBA{0} failed to create core" -msgstr "Fout: GBA{0} initialisatie mislukt " +msgstr "Fout: GBA{0} creëren core mislukt" #: Source/Core/Core/HW/GBACore.cpp:347 msgid "Error: GBA{0} failed to load the BIOS in {1}" @@ -5190,7 +5220,7 @@ msgstr "Er zijn fouten gevonden in {0} ongebruikte blokken in de {1} partitie." msgid "Euphoria" msgstr "Euforie" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -5203,15 +5233,15 @@ msgstr "Exclusieve Ubershaders" msgid "Exit" msgstr "Sluit" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "+ of haakje sluiten verwacht." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Verwachte argumenten:" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "Verwachte argumenten: {0}" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Verwachtte haakje sluiten." @@ -5223,19 +5253,19 @@ msgstr "Verwachte comma." msgid "Expected end of expression." msgstr "Verwachtte eind van uitdrukking." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Verwachte naam van input." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Verwachte haakje openen." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Verwachte start van de uitdrukking." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Verwachtte naam van variabele." @@ -5243,7 +5273,7 @@ msgstr "Verwachtte naam van variabele." msgid "Experimental" msgstr "Experimenteel" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exporteer alle Wii Saves" @@ -5254,11 +5284,11 @@ msgstr "Exporteer alle Wii Saves" msgid "Export Failed" msgstr "Exporteren Mislukt" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exporteer Opname" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exporteer Opname..." @@ -5286,7 +5316,7 @@ msgstr "Exporteer als .&gcs..." msgid "Export as .&sav..." msgstr "Exporteer als .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5314,35 +5344,35 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Externe Frame Buffer (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Certificaten uitpakken van NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Volledige Schijf Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Volledige Partitie Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Bestand Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Bestanden Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Systeemdata Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Alle Bestanden Uitpakken..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Map Uitpakken..." @@ -5372,7 +5402,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Mislukt om deze sessie aan de NetPlay index toe voegen: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Mislukt om signatuurbestand toe te voegen aan bestand '%1'" @@ -5387,7 +5417,7 @@ msgstr "Mislukt om Skylander te legen!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:665 msgid "Failed to clear the Skylander from slot %1!" -msgstr "" +msgstr "Mislukt om Skylander van slot %1 te legen!" #: Source/Core/DiscIO/VolumeVerifier.cpp:108 msgid "Failed to connect to Redump.org" @@ -5429,6 +5459,9 @@ msgid "" "\n" "The Skylander may already be on the portal." msgstr "" +"Mislukt om Skylander bestand te creëren:\n" +"%1\n" +"Skylander is mogelijk al op het portal" #: Source/Core/Core/NetPlayClient.cpp:1292 msgid "" @@ -5442,7 +5475,7 @@ msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Kon de NetPlay-geheugenkaart niet verwijderen. Controleer uw schrijfrechten." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Kon het geselecteerde bestand niet verwijderen." @@ -5471,15 +5504,15 @@ msgstr "Exporteren van %n van de %1 save bestand(en) is mislukt." msgid "Failed to export the following save files:" msgstr "Kon de volgende save bestanden niet exporteren:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Kon geen certificaten uitpakken van NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Uitpakken van het bestand is mislukt." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Uitpakken van de systeemdata is mislukt." @@ -5501,14 +5534,14 @@ msgstr "Kon één of meerdere D3D symbolen niet vinden" msgid "Failed to import \"%1\"." msgstr "Mislukt om \"%1\" te importeren." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Save bestand importeren mislukt. Start het spel eerst en probeer het dan " "opnieuw." -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5516,7 +5549,7 @@ msgstr "" "Save bestand importeren mislukt. Het bestand lijkt beschadigd te zijn of is " "geen geldige Wii-save." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5526,7 +5559,7 @@ msgstr "" "verhindert de toegang tot bestanden erin. Probeer uw NAND te repareren " "(Tools -> Beheer NAND -> Controleer NAND...) en importeer de save opnieuw." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Kon core niet initiëren" @@ -5549,11 +5582,11 @@ msgid "Failed to install pack: %1" msgstr "Het is niet gelukt om het pakket te installeren: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Kon deze titel niet installeren op de NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5561,8 +5594,8 @@ msgstr "" "Luisteren naar poort %1 mislukt. Is er nog een exemplaar van de NetPlay-" "server actief?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Kon RSO-module op %1 niet laden" @@ -5574,7 +5607,7 @@ msgstr "Kon d3d11.dll niet laden" msgid "Failed to load dxgi.dll" msgstr "Kon dxgi.dll niet laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Kon mapbestand'%1' niet laden" @@ -5587,6 +5620,8 @@ msgid "" "Failed to load the Skylander file:\n" "%1" msgstr "" +"Mislukt om Skylander bestand te laden:\n" +"%1" #: Source/Core/Core/Boot/Boot.cpp:582 msgid "Failed to load the executable to memory." @@ -5606,14 +5641,14 @@ msgstr "Mislukt om Skylander te wijzigen!" #: Source/Core/DolphinQt/MenuBar.cpp:206 msgid "Failed to open \"%1\" for writing." -msgstr "" +msgstr "Mislukt om \"%1\" te openen voor schrijven." #: Source/Android/jni/MainAndroid.cpp:434 msgid "Failed to open \"{0}\" for writing." -msgstr "" +msgstr "Mislukt om \"{0}\" te openen voor schrijven." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Kon '%1' niet openen" @@ -5624,7 +5659,7 @@ msgstr "Kon Bluetooth-apparaat niet openen: {0}" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:983 msgid "Failed to open Branch Watch snapshot \"%1\"" -msgstr "" +msgstr "Mislukt om Branch Watch snapshot \"%1\" te openen" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124 msgid "Failed to open config file!" @@ -5654,7 +5689,7 @@ msgstr "" msgid "Failed to open file." msgstr "Openen bestand mislukt." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Kon server niet openen" @@ -5669,6 +5704,10 @@ msgid "" "\n" "The file may already be in use on the base." msgstr "" +"Mislukt om Infinity bestand te openen:\n" +"%1\n" +"\n" +"Het bestand is mogelijk al in gebruik op de base." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:807 msgid "Failed to open the Skylander file!" @@ -5681,6 +5720,10 @@ msgid "" "\n" "The file may already be in use on the portal." msgstr "" +"Mislukt om Skylander bestand te openen:\n" +"%1\n" +"\n" +"Het bestand is mogelijk al in gebruik op het portal." #: Source/Core/DolphinQt/ConvertDialog.cpp:474 msgid "Failed to open the input file \"%1\"." @@ -5735,6 +5778,10 @@ msgid "" "\n" "The file was too small." msgstr "" +"Mislukt om Infinity bestand te lezen:\n" +"%1\n" +"\n" +"Het bestand was te klein." #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5747,6 +5794,10 @@ msgid "" "\n" "The file was too small." msgstr "" +"Mislukt om Skylander bestand te lezen:\n" +"%1\n" +"\n" +"Het bestand was te klein." #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:732 msgid "" @@ -5796,19 +5847,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Mislukt om FIFO op te slaan." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Kon code map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Kon signatuurbestand '%1' niet opslaan" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Kon symbool map niet opslaan naar pad '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Kon niet opslaan naar signatuurbestand '%1'" @@ -5864,8 +5915,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Gefaald" @@ -5873,11 +5924,12 @@ msgstr "Gefaald" msgid "Fair Input Delay" msgstr "Eerlijke Input Vertraging" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Terugvalregio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Terugvalregio:" @@ -5915,9 +5967,9 @@ msgstr "Figuurtype" msgid "File Details" msgstr "Bestand Details" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Bestandsformaat" @@ -5929,20 +5981,20 @@ msgstr "Bestandsformaat:" msgid "File Info" msgstr "Bestandsinfo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Bestandsnaam" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Bestandspad" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Bestandsgrootte" @@ -6047,9 +6099,9 @@ msgstr "Flags" msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Volg &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "Volg &Branch" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6121,7 +6173,7 @@ msgstr "Uitgeschakeld omdat %1 geen VS uitbreiding ondersteunt." msgid "Forced on because %1 doesn't support geometry shaders." msgstr "Uitgeschakeld omdat %1 geen geometry shaders ondersteunt." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6131,7 +6183,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6179,20 +6231,20 @@ msgstr "%n adres(sen) gevonden." msgid "Frame %1" msgstr "Frame %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Frame Voorwaarts" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Frame Voorwaarts Verlaag Snelheid" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Frame Vordering Verhoog Snelheid" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Frame Voorwaarts Reset Snelheid" @@ -6253,11 +6305,11 @@ msgstr "" msgid "FreeLook" msgstr "Vrije-Kijk" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Vrije-Kijk" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Vrije-Kijk Schakelaar" @@ -6291,13 +6343,14 @@ msgstr "Van:" msgid "FullScr" msgstr "Volledig scherm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Functie" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" -msgstr "" +msgstr "Functie-instellingen" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6315,9 +6368,9 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "Pad naar GBA-cartridge:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" -msgstr "GBA Kern" +msgstr "GBA Core" #: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:35 msgid "GBA Port %1" @@ -6331,11 +6384,11 @@ msgstr "GBA-instellingen" msgid "GBA TAS Input %1" msgstr "GBA-TAS-input %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA Volume" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA-venstergrootte" @@ -6471,11 +6524,11 @@ msgstr "Spel" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Carts (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6511,8 +6564,8 @@ msgstr "Spel Gamma" msgid "Game Gamma:" msgstr "Gamma Spel:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Spel ID" @@ -6641,7 +6694,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Gecko Codes" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6661,14 +6715,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Nieuwe statistiekidentiteit genereren" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Gegenereerde symboolnamen van '%1'" @@ -6686,7 +6747,7 @@ msgstr "Duitsland" msgid "GetDeviceList failed: {0}" msgstr "GetDeviceList mislukt: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6719,7 +6780,7 @@ msgstr "Grafisch" msgid "Graphics Mods" msgstr "Grafische Mods" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Graphics Schakelaars" @@ -6728,7 +6789,7 @@ msgstr "Graphics Schakelaars" msgid "Graphics mods are currently disabled." msgstr "Grafische mods zijn momenteel uitgeschakeld." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6756,7 +6817,7 @@ msgstr "Groen Links" msgid "Green Right" msgstr "Groen Rechts" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Rasterweergave" @@ -6838,7 +6899,7 @@ msgstr "Verbergen" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Alles verbergen" @@ -6856,12 +6917,12 @@ msgstr "Externe GBA's verbergen" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Hoog" @@ -6915,7 +6976,7 @@ msgstr "Host Input Autoriteit uitgeschakeld" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:937 msgid "Host input authority enabled" -msgstr "Host Input Autoriteit ingeschakeld" +msgstr "Host Input Autoriteit geactiveerd" #: Source/Core/DolphinQt/GameList/GameList.cpp:527 msgid "Host with NetPlay" @@ -6929,7 +6990,7 @@ msgstr "Hostnaam" msgid "Hotkey Settings" msgstr "Sneltoets­instellingen" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7054,11 +7115,11 @@ msgstr "" "vertraging heeft) op elk moment gewisseld kan worden.\n" "Geschikt voor turn-based spellen met timing gevoelige bediening, zoals golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Identiteitsgeneratie" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7108,21 +7169,31 @@ msgid "" "

Causes issues with many fifologs, but can be useful for testing." "

If unsure, leave this unchecked." msgstr "" -"Indien ingeschakeld, worden alle geheugenupdates tegelijk uitgevoerd voor " -"het eerste frame.

Veroorzaakt problemen met veel fifologs, maar kan " +"Indien geactiveerd, worden alle geheugenupdates tegelijk uitgevoerd voor het " +"eerste frame.

Veroorzaakt problemen met veel fifologs, maar kan " "nuttig zijn voor testen

In geval van twijfel leeg " "laten." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 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." "

If unsure, leave this checked." msgstr "" -"Indien uitgeschakeld, stopt het afspelen van fifolog na het laatste frame." -"

Dit is over het algemeen alleen nuttig wanneer een frame-dump optie " -"is ingeschakeld.

In geval van twijfel geselecteerd " -"laten." +"Indien niet geselecteerd, stopt het afspelen van fifolog na het laatste " +"frame.

Dit is over het algemeen alleen nuttig wanneer een frame-dump " +"optie is ingeschakeld.

In geval van twijfel " +"geselecteerd laten." #: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:55 #: qtbase/src/gui/kernel/qplatformtheme.cpp:728 @@ -7183,7 +7254,7 @@ msgstr "" "en vermindert prestaties enigszins.

In geval van " "twijfel leeg laten." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "BootMii-NAND-back-up importeren…" @@ -7198,15 +7269,15 @@ msgstr "Importeren mislukt" msgid "Import Save File(s)" msgstr "Save-bestand(en) importeren" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Wii-save importeren…" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "NAND-back-up importeren" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7269,24 +7340,24 @@ msgstr "Onjuiste speeltijdwaarde!" msgid "Increase" msgstr "Verhogen" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Convergentie verhogen" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Diepte verhogen" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Emulatiesnelheid verhogen" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "IR verhogen" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Geselecteerde state-slot verhogen" @@ -7337,8 +7408,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informatie" @@ -7352,10 +7423,10 @@ msgstr "Injecteren" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Input" @@ -7374,13 +7445,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "&Nop invoegen" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD-Kaart Invoegen" @@ -7398,7 +7466,7 @@ msgstr "Installatiepartitie (%1)" msgid "Install Update" msgstr "Installeer Update" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WAD installeren…" @@ -7406,8 +7474,9 @@ msgstr "WAD installeren…" msgid "Install to the NAND" msgstr "Naar NAND installeren" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7421,7 +7490,7 @@ msgstr "Instructie" msgid "Instruction Breakpoint" msgstr "Instructiebreekpunt" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instructie:" @@ -7430,7 +7499,7 @@ msgstr "Instructie:" msgid "Instruction: %1" msgstr "Instructie: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7499,8 +7568,8 @@ msgstr "" "Interne LZO-fout - parsen van gedecomprimeerde versie-string mislukt ({0} / " "{1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Interne resolutie" @@ -7517,15 +7586,15 @@ msgstr "Interne fout bij het genereren van AR code." msgid "Interpreter (slowest)" msgstr "Interpreter (traagst)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" -msgstr "Interpreter-kern" +msgstr "Interpreter Core" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:704 msgid "Invalid Expression." msgstr "Ongeldige expressie" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "Ongeldige JSON ontvangen van auto-update service: {0}" @@ -7533,7 +7602,7 @@ msgstr "Ongeldige JSON ontvangen van auto-update service: {0}" msgid "Invalid Mixed Code" msgstr "Ongeldige Gemengde Code" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Ongeldige Pakket %1 ingevoerd: %2" @@ -7542,7 +7611,7 @@ msgstr "Ongeldige Pakket %1 ingevoerd: %2" msgid "Invalid Player ID" msgstr "Ongeldige Speler-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Ongeldig RSO-moduleadres: %1" @@ -7623,11 +7692,11 @@ msgstr "Italië" msgid "Item" msgstr "Voorwerp" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT Block Linking Uit" @@ -7635,47 +7704,47 @@ msgstr "JIT Block Linking Uit" msgid "JIT Blocks" msgstr "JIT Blokken" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" -msgstr "Jit Branch Uit" +msgstr "JIT Branch Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Integer Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LoadStore Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Uit (JIT Core)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Paired Uit" @@ -7687,14 +7756,15 @@ msgstr "JIT Recompiler voor ARM64 (aanbevolen)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT Recompiler voor x86-64 (aanbevolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" -msgstr "JIT-registercache uitgeschakld" +msgstr "JIT Registercache Uit" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT SysteemRegisters Uit" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7705,11 +7775,11 @@ msgstr "" "nooit moeten gebeuren. Meld dit incident alstublieft via de bugtracker. " "Dolphin zal nu afsluiten." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" -msgstr "" +msgstr "JIT is niet actief" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japan" @@ -7732,7 +7802,7 @@ msgid "" msgstr "" "Kaos is de enige vijand voor deze trofee. Er hoeft niets gewijzigd te worden!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Blijf Uitvoeren" @@ -7767,7 +7837,7 @@ msgstr "Toetsenbordcontroller" msgid "Keys" msgstr "Toetsen" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7775,7 +7845,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Speler kicken" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7914,6 +7984,14 @@ msgstr "" "Links / Rechts-klik om output te configureren.\n" "Midden-klik om te wissen." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7947,11 +8025,11 @@ msgstr "Licht" msgid "Limit Chunked Upload Speed:" msgstr "Beperk chunked-uploadsnelheid:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Lijstkolommen" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Lijstweergave" @@ -7961,17 +8039,17 @@ msgstr "Luisteren" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Laden" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Laad &Slechte Mapbestand..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Laad &Ander Mapbestand..." @@ -7980,7 +8058,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7991,7 +8069,7 @@ msgstr "Laad Aangepaste Textures" msgid "Load File" msgstr "Laad Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "GameCube Hoofdmenu Laden" @@ -7999,16 +8077,21 @@ msgstr "GameCube Hoofdmenu Laden" msgid "Load Host's Save Data Only" msgstr "Laad Alleen Host Save Data" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Laad Laatste State" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Laad-pad:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Laad ROM" @@ -8016,104 +8099,104 @@ msgstr "Laad ROM" msgid "Load Slot" msgstr "Laad Slot" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Laad State" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Laad Laatste State 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Laad Laatste State 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Laad Laatste State 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Laad Laatste State 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Laad Laatste State 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Laad Laatste State 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Laad Laatste State 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Laad Laatste State 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Laad Laatste State 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Laad Laatste State 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Laad State Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Laad State Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Laad State Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Laad State Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Laad State Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Laad State Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Laad State Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Laad State Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Laad State Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Laad State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Laad State van Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Laad State van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Laad State van Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Wii-systeemmenu %1 laden" @@ -8121,20 +8204,15 @@ msgstr "Wii-systeemmenu %1 laden" msgid "Load and Write Host's Save Data" msgstr "Laad en Schrijf Alleen Host Save Data" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Laden van Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Laad van Slot Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Laad mapbestand" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Laad vWii Systeem Menu %1" @@ -8142,7 +8220,7 @@ msgstr "Laad vWii Systeem Menu %1" msgid "Load..." msgstr "Laden..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Symbolen geladen van '%1'" @@ -8172,20 +8250,20 @@ msgstr "Lokaal" msgid "Lock Mouse Cursor" msgstr "Vergrendel Muisaanwijzer" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Vergrendeld" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8195,12 +8273,13 @@ msgid "Log Configuration" msgstr "Logconfiguratie" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Aanmelden" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" -msgstr "JIT-instructiedekking loggen" +msgstr "Log JIT Instructiedekking" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62 msgid "Log Out" @@ -8240,7 +8319,7 @@ msgstr "Loop" msgid "Lost connection to NetPlay server..." msgstr "Verbinding met NetPlay-server verloren..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Laag" @@ -8303,9 +8382,9 @@ msgstr "Zorg ervoor dat de speeltijdwaarde geldig is!" msgid "Make sure there is a Skylander in slot %1!" msgstr "Zorg ervoor dat er een Skylander in slot %1 zit!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Maker" @@ -8314,7 +8393,7 @@ msgstr "Maker" msgid "Maker:" msgstr "Maker:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8326,7 +8405,7 @@ msgstr "" "mist emulatie rekent.

In geval van twijfel leeg " "laten." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Beheer NAND" @@ -8365,7 +8444,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Kan leiden tot vertraging van het Wii-menu en een aantal spellen." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Medium" @@ -8381,7 +8460,7 @@ msgstr "Geheugenbreekpunt" msgid "Memory Card" msgstr "Geheugenkaart" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Geheugenkaart Beheer" @@ -8409,7 +8488,7 @@ msgstr "MemoryCard: Read opgeroepen met onjuiste bron adres ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Write opgeroepen met ongeldige bestemming adres ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8421,7 +8500,7 @@ msgstr "" "omkeerbaar, dus het is raadzaam om back-ups van beide NAND's maken. Weet u " "zeker dat u wilt doorgaan?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8504,8 +8583,8 @@ msgstr "Wijzig Slot" msgid "Modifying Skylander: %1" msgstr "Wijzig Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Module gevonden: %1" @@ -8547,7 +8626,7 @@ msgstr "Zichtbaarheid van Muisaanwijzer" msgid "Move" msgstr "Verplaats" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Opname" @@ -8573,10 +8652,10 @@ msgstr "Vermenigvuldiger" msgid "N&o to All" msgstr "N&ee op Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-controle" @@ -8585,8 +8664,8 @@ msgstr "NAND-controle" msgid "NKit Warning" msgstr "NKit-waarschuwing" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8595,7 +8674,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8618,8 +8697,8 @@ msgstr "" "

In geval van twijfel op 2.35 laten." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8632,11 +8711,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Naam" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Naam voor deze nieuwe tag:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Naam van de te verwijderen tag:" @@ -8723,7 +8802,7 @@ msgid "Never Auto-Update" msgstr "Nooit Automatisch Updaten" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Nieuw" @@ -8748,7 +8827,7 @@ msgstr "Nieuwe Zoekopdracht" msgid "New Tag..." msgstr "Nieuwe Tag..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Nieuwe identiteit gegenereerd." @@ -8756,12 +8835,13 @@ msgstr "Nieuwe identiteit gegenereerd." msgid "New instruction:" msgstr "Nieuwe instructie:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Nieuwe 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 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Volgend Spel Profiel" @@ -8769,8 +8849,9 @@ msgstr "Volgend Spel Profiel" msgid "Next Match" msgstr "Volgende Overeenkomst" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Volgend Profiel" @@ -8857,7 +8938,7 @@ msgstr "Geen graphics mod geselecteerd" msgid "No input" msgstr "Geen input" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Er zijn geen problemen gedetecteerd." @@ -8903,7 +8984,7 @@ msgstr "" "afgebroken om opname desynchonisatie te voorkomen" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9112,7 +9193,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online &Documentatie" @@ -9120,7 +9201,7 @@ msgstr "Online &Documentatie" msgid "Only Show Collection" msgstr "Alleen Collectie Tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9128,7 +9209,7 @@ msgstr "" "Alleen symbolen toevoegen die beginnen met:\n" "(Leeg voor alle symbolen)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9151,14 +9232,18 @@ msgstr "&Bijbehorende map openen" msgid "Open &User Folder" msgstr "&Gebruikersmap openen" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Map openen…" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Open FIFO Log" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9259,7 +9344,7 @@ msgstr "Overige" msgid "Other Partition (%1)" msgstr "Andere Partitie (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Overige State Sneltoetsen" @@ -9276,7 +9361,7 @@ msgstr "Ander spel..." msgid "Output" msgstr "Output" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Output Resampling" @@ -9284,16 +9369,16 @@ msgstr "Output Resampling" msgid "Output Resampling:" msgstr "Output Resampling:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Overschrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Input Opname Af&spelen..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9322,7 +9407,7 @@ msgstr "PNG afbeeldingsbestand (*.png);; Alle bestanden (*)" msgid "PPC Size" msgstr "PPC Grootte" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Host" @@ -9335,7 +9420,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parameters" @@ -9398,7 +9483,7 @@ msgstr "Pauze" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pauzeer aan het Einde van de Opname" @@ -9443,7 +9528,7 @@ msgstr "Top snelheid van buitenwaartse zwaai beweging." msgid "Per-Pixel Lighting" msgstr "Per-Pixel Belichting" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Voer Online Systeemupdate Uit" @@ -9473,11 +9558,11 @@ msgstr "Fysieke" msgid "Physical address space" msgstr "Fysieke adresruimte" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Kies een debug-lettertype" @@ -9493,8 +9578,8 @@ msgstr "Stamp Omlaag" msgid "Pitch Up" msgstr "Stamp Omhoog" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platform" @@ -9506,7 +9591,7 @@ msgstr "Spelen" msgid "Play / Record" msgstr "Afspelen / Opnemen" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Speel Opname" @@ -9606,7 +9691,7 @@ msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Mogelijke desync gedetecteerd: %1 heeft mogelijk sync verloren in frame %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Post-Processing Effect" @@ -9659,7 +9744,7 @@ msgstr "" msgid "Presets" msgstr "Voorinstellingen" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Druk Op Sync Knop" @@ -9682,9 +9767,9 @@ msgstr "" "

Niet aanbevolen, gebruik alleen als de andere " "opties slechte resultaten opleveren." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Vorig Spel Profiel" @@ -9692,8 +9777,9 @@ msgstr "Vorig Spel Profiel" msgid "Previous Match" msgstr "Vorige Overeenkomst" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Vorig Profiel" @@ -9743,13 +9829,13 @@ msgstr "" msgid "Profile" msgstr "Profiel" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Programmateller" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9766,11 +9852,11 @@ msgstr "" msgid "Public" msgstr "Openbaar" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Gamelijstcache opschonen" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Zet IPL ROMs in Gebruiker/GC/." @@ -9798,7 +9884,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Vraag" @@ -9823,11 +9909,11 @@ msgstr "R-Analoog" msgid "READY" msgstr "GEREED" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO Modules" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO autodetectie" @@ -9864,13 +9950,13 @@ msgstr "Rauw" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Ver&vang instructie" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Lezen" @@ -9893,7 +9979,7 @@ msgstr "Alleen lezen" msgid "Read or Write" msgstr "Lezen of Schrijven" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Alleen-Lezen Modus" @@ -9952,7 +10038,7 @@ msgstr "Rood Links" msgid "Red Right" msgstr "Rood Rechts" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10006,8 +10092,8 @@ msgstr "Huidige waarden ververst." msgid "Refreshing..." msgstr "Verversen..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Regio" @@ -10028,7 +10114,8 @@ msgstr "Relatieve Input" msgid "Relative Input Hold" msgstr "Relatieve Input Vasthouden" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -10057,7 +10144,7 @@ msgstr "Verwijder Junk Data (Onomkeerbaar):" msgid "Remove Tag..." msgstr "Tag Verwijderen..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Tag verwijderen" @@ -10073,8 +10160,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Hernoem symbool" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10107,7 +10194,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10119,7 +10206,7 @@ msgstr "Reset" msgid "Reset All" msgstr "Reset Alles" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Reset Negeer Panic Handler" @@ -10171,9 +10258,9 @@ msgstr "Herstarten Vereist" msgid "Restore Defaults" msgstr "Herstel Standaardinstellingen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Herstel instructie" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10307,21 +10394,21 @@ msgstr "" msgid "Rumble" msgstr "Rumble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Loop &Tot Hier" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Voer GBA Emulatie uit in Specifieke threads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "Uitvoeren tot" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Uitvoeren tot (negeer breekpunten)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10390,11 +10477,11 @@ msgstr "SSL context" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Code Op&slaan" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "S&la State Op" @@ -10406,7 +10493,7 @@ msgstr "Veilig" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10421,23 +10508,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Export Opslaan" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Sla FIFO log op" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Bestand Opslaan in" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10448,15 +10547,19 @@ msgstr "Spel Opslag" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Spel Save Bestanden (*.sav);;All Files (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Import Opslaan" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Sla Oudste State op" @@ -10464,73 +10567,77 @@ msgstr "Sla Oudste State op" msgid "Save Preset" msgstr "Voorinstelling opslaan" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Sla Opnamebestand op Als" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Save State" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Save State Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Save State Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Save State Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Save State Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Save State Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Save State Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Save State Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Save State Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Save State Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Save State Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Save State naar Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Save State naar Oudste Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Save State naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Save State naar Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Sla Symbol Map Op &Als..." @@ -10550,11 +10657,7 @@ msgstr "Opslaan als voorinstelling..." msgid "Save as..." msgstr "Opslaan als..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Gecombineerde outputbestand opslaan als" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10568,19 +10671,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Save in de Zelfde Map als de ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Sla mapbestand op" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Sla signatuurbestand op" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Opslaan naar Geselecteerde Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Opslaan naar Slot %1 - %2" @@ -10616,7 +10711,7 @@ msgstr "Schermafdruk" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Zoeken" @@ -10645,7 +10740,7 @@ msgstr "" "Zoeken is momenteel niet mogelijk in de virtuele adresruimte. Laat het spel " "een tijdje draaien en probeer het opnieuw." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Zoek naar Instructie" @@ -10653,7 +10748,7 @@ msgstr "Zoek naar Instructie" msgid "Search games..." msgstr "Zoek Spellen..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Zoek instructie" @@ -10689,7 +10784,7 @@ msgstr "Selecteer" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10698,7 +10793,7 @@ msgid "Select Dump Path" msgstr "Selecteer Dump Pad" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Selecteer Export Map" @@ -10706,18 +10801,22 @@ msgstr "Selecteer Export Map" msgid "Select Figure File" msgstr "Selecteer Figuur Bestand" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Selecteer GBA BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Selecteer GBA ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Selecteer GBA Saves Pad" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Selecteer Laatste State" @@ -10726,6 +10825,10 @@ msgstr "Selecteer Laatste State" msgid "Select Load Path" msgstr "Selecteer Laad Pad" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Selecteer Resource Pack Pad" @@ -10734,6 +10837,14 @@ msgstr "Selecteer Resource Pack Pad" msgid "Select Riivolution XML file" msgstr "Selecteer Riivolution XML bestand" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Selecteer Skylander Collectie" @@ -10742,58 +10853,62 @@ msgstr "Selecteer Skylander Collectie" msgid "Select Skylander File" msgstr "Selecteer Skylander Bestand" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Selecteer Slot %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Selecteer State" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Selecteer State Slot" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Selecteer State Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Selecteer State Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Selecteer State Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Selecteer State Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Selecteer State Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Selecteer State Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Selecteer State Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Selecteer State Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Selecteer State Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Selecteer State Slot 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Selecteer WFS Pad" @@ -10811,24 +10926,20 @@ msgstr "Selecteer een Map" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Selecteer een Bestand" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "Selecteer een map om te synchroniseren met de SD-kaart afbeelding" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Selecteer een SD-Kaartafbeelding" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Selecteer een bestand" @@ -10837,19 +10948,15 @@ msgstr "Selecteer een bestand" msgid "Select a game" msgstr "Selecteer een Spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Selecteer een titel om te installeren op de NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Selecteer e-Reader Kaarten" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Selecteer het RSO module adres:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Selecteer Opnamebestand om Af te Spelen" @@ -10857,23 +10964,6 @@ msgstr "Selecteer Opnamebestand om Af te Spelen" msgid "Select the Virtual SD Card Root" msgstr "Selecteer de Virtuele SD-Kaart Root" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Selecteer het sleutelbestand (OTP/SEEPROM dump)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Selecteer het save bestand" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Selecteer waar u de geconverteerde afbeelding wilt opslaan" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Selecteer waar u de geconverteerde afbeeldingen wilt opslaan" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Selecteer Font" @@ -10933,7 +11023,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10991,6 +11081,27 @@ msgstr "" "selecteren die het minst problematisch is.

In geval " "van twijfel OpenGL selecteren." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Verzend" @@ -10999,6 +11110,15 @@ msgstr "Verzend" msgid "Sensor Bar Position:" msgstr "Sensor Bar Positie:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11032,39 +11152,35 @@ msgstr "Stel &Waarde In" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Stel PC In" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Stel in als &Standaard-ISO" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Stel geheugenkaartbestand in voor Slot A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Stel geheugenkaartbestand in voor Slot B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Stel symbool in &eindadres" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Stel symbool in &grootte" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Stel symbool eindadres in" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Stel symboolgrootte (%1) in:" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11081,7 +11197,7 @@ msgstr "Stelt de Wii-systeemtaal in." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11095,10 +11211,17 @@ msgstr "" "Stelt de vertraging in milliseconden in. Hogere waarden kunnen audio gekraak " "verminderen. Alleen voor bepaalde backends." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -11152,11 +11275,11 @@ msgstr "Shinkansen Controller" msgid "Show % Speed" msgstr "Snelheidspercentage tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Toon &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "&Werkbalk tonen" @@ -11164,15 +11287,15 @@ msgstr "&Werkbalk tonen" msgid "Show Active Title in Window Title" msgstr "Actieve game in venstertitel weergeven" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Alles tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Australië tonen" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Huidig spel op Discord tonen" @@ -11181,20 +11304,20 @@ msgstr "Huidig spel op Discord tonen" msgid "Show Disabled Codes First" msgstr "Toon Eerst de Uitgeschakelde Codes" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL tonen" #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:130 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:276 msgid "Show Enabled Codes First" -msgstr "Toon Eerst de Ingeschakelde Codes" +msgstr "Toon Geactiveerde Codes Eerst" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59 msgid "Show FPS" msgstr "FPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Frameteller tonen" @@ -11202,15 +11325,15 @@ msgstr "Frameteller tonen" msgid "Show Frame Times" msgstr "Frametijden tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Frankrijk tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "GameCube tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Duitsland tonen" @@ -11218,27 +11341,27 @@ msgstr "Duitsland tonen" msgid "Show Golf Mode Overlay" msgstr "Golfmodus-overlay tonen" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Toon Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Inputweergave tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Italië tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "JPN tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Korea tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Vertragingsteller tonen" @@ -11246,7 +11369,7 @@ msgstr "Vertragingsteller tonen" msgid "Show Language:" msgstr "Taal tonen:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Toon Log &Configuratie" @@ -11258,7 +11381,7 @@ msgstr "NetPlay-berichten tonen" msgid "Show NetPlay Ping" msgstr "NetPlay-ping tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Nederland tonen" @@ -11266,12 +11389,12 @@ msgstr "Nederland tonen" msgid "Show On-Screen Display Messages" msgstr "On-screen-berichtgevingen tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL tonen" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC weergeven" @@ -11279,7 +11402,7 @@ msgstr "PC weergeven" msgid "Show Performance Graphs" msgstr "Prestatiegrafieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Platforms tonen" @@ -11287,23 +11410,23 @@ msgstr "Platforms tonen" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Regio's tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Heropnameteller tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Rusland tonen" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Toon Skylanders Portal" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Spanje tonen" @@ -11315,19 +11438,23 @@ msgstr "Snelheidskleuren tonen" msgid "Show Statistics" msgstr "Statistieken tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Systeemklok tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Taiwan tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "VS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Onbekend tonen" @@ -11339,27 +11466,27 @@ msgstr "VBlank-tijden tonen" msgid "Show VPS" msgstr "VPS tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii tonen" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Wereld tonen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "In &geheugen weergeven" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "In Code Weergeven" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "In Geheugen Weergeven" @@ -11376,13 +11503,9 @@ msgstr "In geheugen weergeven" msgid "Show in server browser" msgstr "Weergeef in server browser" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Doel in &geheugen tonen" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11424,18 +11547,6 @@ msgstr "" "snelheid.

In geval van twijfel leeg laten." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11462,6 +11573,18 @@ msgstr "" "standaardafwijking.

In geval van twijfel leeg laten." "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11504,6 +11627,14 @@ msgstr "" "Toont diverse rendering statistieken.

In geval van " "twijfel leeg laten." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Naast Elkaar" @@ -11520,7 +11651,7 @@ msgstr " Schakel Zijwaarts" msgid "Sideways Wii Remote" msgstr "Wii-afstandsbediening Zijwaarts" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Signatuurdatabase" @@ -11569,7 +11700,7 @@ msgstr "" "Grootte van uitrekkingsbuffer in milliseconden. Te lage waarden kunnen " "leiden tot krakend geluid." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Overslaan" @@ -11767,6 +11898,10 @@ msgstr "" msgid "Speed" msgstr "Snelheid" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11803,11 +11938,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "Start Nieuwe Cheat Zoekopdracht" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Start Input &Opname" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Start Opname" @@ -11846,39 +11981,39 @@ msgstr "Stap" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Stap In" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Stap Uit" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Stap Over" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Uitstappen succesvol!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Uitstappen timed out!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Overstappen in voortgang..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Stap succesvol!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Stappen" @@ -11887,7 +12022,7 @@ msgstr "Stappen" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Stereoscopische 3D Modus" @@ -11917,7 +12052,7 @@ msgstr "Stick" msgid "Stop" msgstr "Stoppen" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Afspelen/opnemen van input stoppen" @@ -11996,14 +12131,14 @@ msgstr "Stijl:" msgid "Stylus" msgstr "Stylus" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Geslaagd" @@ -12030,24 +12165,24 @@ msgstr "Exporteren van %n van de %1 save bestand(en) gelukt." msgid "Successfully exported save files" msgstr "Save bestanden succesvol geëxporteerd" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Certificaten succesvol uitgepakt van NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Bestand succesvol uitgepakt." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Systeemdata succesvol uitgepakt." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Save bestand succesvol geïmporteerd." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Titel succesvol geïnstalleerd op de NAND." @@ -12098,7 +12233,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12126,17 +12261,21 @@ msgstr "Overschakelen naar B" msgid "Symbol" msgstr "Symbool" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Symbool (%1) eindadres:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Symboolnaam:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symbolen" @@ -12189,7 +12328,7 @@ msgstr "Synchroniseren van save data..." msgid "System Language:" msgstr "Systeemtaal:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS-input" @@ -12197,12 +12336,12 @@ msgstr "TAS-input" #. Frame advance is an example of a typical TAS tool. #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446 msgid "TAS Tools" -msgstr "TAS-gereedschap" +msgstr "TAS-tools" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Tags" @@ -12220,7 +12359,7 @@ msgstr "Staart" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Maak Screenshot" @@ -12228,7 +12367,7 @@ msgstr "Maak Screenshot" msgid "Target address range is invalid." msgstr "Doeladresbereik is ongeldig." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12265,7 +12404,7 @@ msgstr "Nauwkeurigheid van textuurcache" msgid "Texture Dumping" msgstr "Texture Dumping" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Textuurfiltering" @@ -12317,7 +12456,7 @@ msgstr "Het IPL bestand is geen bekende goede dump. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "De Masterpiece partities ontbreken." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12325,7 +12464,7 @@ msgstr "" "De NAND kon niet worden gerepareerd. Het wordt aanbevolen om een back-up te " "maken van uw huidige gegevens en opnieuw te beginnen met een nieuwe NAND." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "De NAND is gerepareerd." @@ -12513,7 +12652,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Het bestandssysteem is ongeldig of kon niet gelezen worden." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12666,7 +12805,7 @@ msgstr "" "Hetzelfde bestand kan niet in meerdere slots worden gebruikt; het wordt al " "gebruikt door %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12708,7 +12847,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Het opgegeven bestand \"{0}\" bestaat niet" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12773,7 +12912,7 @@ msgstr "De updatepartitie ontbreekt." msgid "The update partition is not at its normal position." msgstr "De updatepartitie staat niet op zijn normale positie." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12897,7 +13036,7 @@ msgstr "" "Draai alstublieft de ARM64 build van Dolphin voor een betere ervaring." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Dit kan niet ongedaan gemaakt worden!" @@ -13144,7 +13283,7 @@ msgstr "Threads" msgid "Threshold" msgstr "Drempelwaarde" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13165,10 +13304,10 @@ msgstr "" msgid "Timed Out" msgstr "Timed Out" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titel" @@ -13176,25 +13315,29 @@ msgstr "Titel" msgid "To" msgstr "Naar" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Naar:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Volledig scherm omschakelen" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Schakel 3D Anaglyph Om" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Schakel 3D Naast elkaar Om" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Schakel 3D Boven en Beneden Om" @@ -13202,28 +13345,28 @@ msgstr "Schakel 3D Boven en Beneden Om" msgid "Toggle All Log Types" msgstr "Schakel Alle Log Types Om" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Schakel Beeldverhouding Om" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Schakel Breekpunt Om" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Schakel Bijsnijden Om" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Schakel Aangepaste Textures Om" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Schakel EFB Kopieën Om" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Schakel Mist Om " @@ -13235,31 +13378,31 @@ msgstr "&Volledig scherm omschakelen" msgid "Toggle Pause" msgstr "Schakel Pauze Om" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Schakel SD-Kaart Om" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Schakel EFB Toegang Overslaan Om" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Schakel Texture Dumpen Om" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "USB-toetsenbord omschakelen" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Schakel XFB Kopieën Om" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Schakel XFB Onmiddellijke Modus Om" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Tokeniseren is mislukt." @@ -13269,7 +13412,7 @@ msgstr "" #: Source/Core/DolphinQt/ToolBar.cpp:29 msgid "Toolbar" -msgstr "Toolbar" +msgstr "Werkbalk" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:358 msgid "Top" @@ -13382,7 +13525,7 @@ msgid "Trophy" msgstr "Trofee" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13412,7 +13555,7 @@ msgstr "USB Apparaat Emulatie" msgid "USB Emulation" msgstr "USB Emulatie" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB Emulatie Apparaat" @@ -13463,15 +13606,15 @@ msgstr "" "het shadercompilatie met minimale impact op de prestaties, maar de " "resultaten zijn afhankelijk van het gedrag van video-stuurprogramma's." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Kan RSO-module niet automatisch detecteren" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Kan geen contact maken met update server." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Kan geen updater kopie maken." @@ -13512,7 +13655,7 @@ msgstr "" msgid "Unable to read file." msgstr "Niet in staat bestand te lezen." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Kan geen rechten instellen op updater kopie." @@ -13535,11 +13678,11 @@ msgstr "Ongecomprimeerde GC/Wii-afbeeldingen (*.iso *.gcm)" msgid "Undead" msgstr "Ondood" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Laad State Ongedaan Maken" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Save State Ongedaan Maken" @@ -13560,7 +13703,7 @@ msgstr "" "van deze titel uit de NAND, zonder dat zijn save data wordt verwijderd. " "Doorgaan?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Verenigde Staten" @@ -13662,11 +13805,11 @@ msgstr "Onbekend(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Onbekend(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Onbeperkt" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Leeg ROM" @@ -13674,7 +13817,12 @@ msgstr "Leeg ROM" msgid "Unlock Cursor" msgstr "Ontgrendel Cursor" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13774,7 +13922,7 @@ msgstr "Schakel Rechtop" msgid "Upright Wii Remote" msgstr "Wii-afstandsbediening Rechtop" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Instellingen voor rapportage van gebruiksstatistieken" @@ -13881,7 +14029,7 @@ msgstr "Gebruikersnaam" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13963,7 +14111,7 @@ msgstr "VBI overslaan" msgid "Value" msgstr "Waarde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Waarde getraceerd naar huidige instructie." @@ -14051,22 +14199,22 @@ msgstr "Virtuele Inkepingen" msgid "Virtual address space" msgstr "Virtuele adresruimte" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Volume Omlaag" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Schakel Volume Dempen Om" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Volume Omhoog" @@ -14074,7 +14222,7 @@ msgstr "Volume Omhoog" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD bestanden (*.wad)" @@ -14205,7 +14353,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Waarschuwing" @@ -14360,7 +14508,7 @@ msgstr "Whitelist van USB Passthrough Apparaten" msgid "Widescreen Hack" msgstr "Breedbeeld-hack" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14430,7 +14578,7 @@ msgstr "Wii en Wii-afstandsbediening" msgid "Wii data is not public yet" msgstr "Wii data is nog niet publiek" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii save bestanden (*.bin);;All Files (*)" @@ -14465,13 +14613,13 @@ msgstr "Wereld" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Schrijven" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" -msgstr "" +msgstr "Schrijf JIT Blok Log Dump" #. i18n: This string is used for a radio button that represents the type of #. memory breakpoint that gets triggered when a write operation occurs. @@ -14637,7 +14785,7 @@ msgstr "" "\"Phantasy Star Online Episode I & II\". Keer terug in geval van twijfel en " "configureer een \"Standaardcontroller\"." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "U gebruikt de nieuwste versie die beschikbaar is op deze update-track." @@ -14727,7 +14875,7 @@ msgstr "" "Wilt u nu stoppen om het probleem op te lossen?\n" "Als u \"Nee\" kiest, kan het geluid vervormd zijn." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/pl.po b/Languages/po/pl.po index b473ee0b36..728a7a2f0e 100644 --- a/Languages/po/pl.po +++ b/Languages/po/pl.po @@ -22,11 +22,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: FlexBy, 2021,2023\n" -"Language-Team: Polish (http://app.transifex.com/delroth/dolphin-emu/language/" -"pl/)\n" +"Language-Team: Polish (http://app.transifex.com/dolphinemu/dolphin-emu/" +"language/pl/)\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -187,7 +187,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1 nie wspiera tej funkcji na twoim systemie." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 nie wspiera tej funkcji." @@ -209,7 +209,7 @@ msgstr "%1 dołączył(a)" msgid "%1 has left" msgstr "%1 wyszedł" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -221,7 +221,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -235,7 +235,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -255,22 +255,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normalna szybkość)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1's wartość jest używana" @@ -278,6 +278,10 @@ msgstr "%1's wartość jest używana" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -298,7 +302,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -311,7 +315,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -355,10 +359,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&O programie" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Dodaj punkt przerwania pamięci" @@ -368,23 +376,19 @@ msgstr "&Dodaj punkt przerwania pamięci" msgid "&Add New Code..." msgstr "&Dodaj nowy kod..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Dodaj funkcję" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Dodaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Ustawienia &audio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Automatyczna aktualizacja:" @@ -393,14 +397,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Punkty przerwania" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -412,11 +416,11 @@ msgstr "&Anuluj" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Sprawdź aktualizacje..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "Wy&czyść Symbole" @@ -424,7 +428,7 @@ msgstr "Wy&czyść Symbole" msgid "&Clone..." msgstr "&Klonuj..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -432,18 +436,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Ustawienia &kontrolerów" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Kopiuj adres" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -479,7 +480,7 @@ msgstr "&Edytuj..." msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulacja" @@ -504,36 +505,36 @@ msgstr "&Eksportuj jako .gci..." msgid "&File" msgstr "&Plik" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Czcionka..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "Wyprzedzanie &klatek" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Generuj Symbole Z" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&Repozytorium GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Ustawienia &graficzne" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "Po&moc" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Ustawienia &skrótów klawiaturowych" @@ -557,15 +558,15 @@ msgstr "&Importuj..." msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -577,11 +578,11 @@ msgstr "&Język:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Wczytaj stan" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -595,19 +596,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "Pa&mięć" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Film" @@ -615,7 +616,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Wycisz" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Sieć" @@ -628,19 +629,19 @@ msgstr "&Nie" msgid "&Open..." msgstr "&Otwórz..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opcje" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "W&strzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Graj" @@ -648,7 +649,7 @@ msgstr "&Graj" msgid "&Properties" msgstr "&Właściwości" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Tryb tylko do odczytu" @@ -656,7 +657,7 @@ msgstr "&Tryb tylko do odczytu" msgid "&Refresh List" msgstr "&Odśwież listę" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Rejestry" @@ -669,12 +670,12 @@ msgstr "&Usuń" msgid "&Remove Code" msgstr "&Usuń kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "Z&resetuj" @@ -686,7 +687,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -698,11 +699,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "Limit &szybkości:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Zatrzymaj" @@ -710,7 +711,7 @@ msgstr "&Zatrzymaj" msgid "&Theme:" msgstr "&Motyw:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Wątków" @@ -732,17 +733,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Widok" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Obejrz" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Strona internetowa" @@ -754,11 +755,11 @@ msgstr "Wi&ki" msgid "&Yes" msgstr "&Tak" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -778,7 +779,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(wyłączony)" @@ -802,7 +803,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -880,7 +881,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -892,7 +893,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -928,19 +929,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Głębia 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -964,7 +965,7 @@ msgstr "4:3" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1063,7 +1064,7 @@ msgstr "" "Jeśli nie jesteś pewien, pozostaw to pole niezaznaczone." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1096,8 +1097,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Sesja NetPlay jest już rozpoczęta!" @@ -1115,7 +1116,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Dysk już jest gotowy do włożenia." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1126,7 +1127,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Stan zapisu nie może zostać wczytany bez określenia gry do uruchomienia." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1212,7 +1213,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1288,7 +1289,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1339,11 +1340,11 @@ msgstr "Dodaj nowe urządzenie USB" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Dodaj punkt przerwania" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Dodaj punkt przerwania pamięci" @@ -1377,13 +1378,13 @@ msgstr "Dodaj..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adres" @@ -1402,7 +1403,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1473,7 +1474,7 @@ msgstr "Zaawansowane" msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1529,7 +1530,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1537,7 +1538,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1546,7 +1547,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1555,8 +1556,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Wszystkie stany zapisu (*.sav *.s##);; wszystkie pliki (*)" @@ -1580,11 +1581,11 @@ msgstr "Kody wszystkich graczy zsynchronizowane." msgid "All players' saves synchronized." msgstr "Zapisy wszystkich graczy zsynchronizowane." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Zezwalaj na niedopasowane ustawienia regionalne" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1642,7 +1643,7 @@ msgstr "Kąt" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1654,19 +1655,19 @@ msgstr "Antyaliasing:" msgid "Any Region" msgstr "Jakikolwiek region" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1680,8 +1681,8 @@ msgstr "Data Apploadera:" msgid "Apply" msgstr "Zastosuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1692,7 +1693,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "Czy jesteś pewien, że chcesz usunąć '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Czy jesteś pewien, że chcesz usunąć ten plik?" @@ -1729,8 +1730,8 @@ msgstr "Proporcje obrazu:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1791,7 +1792,11 @@ msgstr "Automatyczne" msgid "Auto (Multiple of 640x528)" msgstr "Automatyczna (wielokrotność 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Ustawienia automatycznej aktualizacji" @@ -1811,7 +1816,7 @@ msgstr "Automatycznie dopasuj rozmiar okna" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1825,6 +1830,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1836,7 +1852,7 @@ msgid "Auxiliary" msgstr "Pomocnicza" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1919,10 +1935,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Baner" @@ -1950,7 +1966,7 @@ msgstr "" msgid "Basic" msgstr "Podstawowe" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Ustawienia podstawowe" @@ -2010,9 +2026,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2048,15 +2064,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2184,30 +2200,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Przerwij" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Punkt przerwania" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Napotkano punkt przerwania! Wyjście anulowane." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Punkty przerwania" @@ -2303,7 +2319,7 @@ msgstr "" msgid "C Stick" msgstr "C Gałka" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2338,7 +2354,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2400,15 +2416,15 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Nie można uruchomić Sesji NetPlay, podczas gdy gra wciąż jest uruchomiona!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2457,7 +2473,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2505,7 +2521,7 @@ msgstr "Zmień &dysk..." msgid "Change Disc" msgstr "Zmień dysk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Zmieniaj dyski automatycznie" @@ -2567,7 +2583,7 @@ msgstr "Szukaj cheatów" msgid "Cheats Manager" msgstr "Menadżer cheatów" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2579,7 +2595,7 @@ msgstr "" msgid "Check for updates" msgstr "Sprawdź aktualizacje" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2597,29 +2613,29 @@ msgstr "Chiny" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Wybierz plik do otwarcia" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Wybierz plik do otwarcia lub utworzenia" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Wybierz folder do wypakowania" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2638,7 +2654,7 @@ msgstr "Kontroler Klasyczny" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2648,7 +2664,7 @@ msgstr "Wyczyść" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Wyczyść pamięć podręczną" @@ -2669,7 +2685,7 @@ msgstr "Sklonuj i &edytuj kod..." msgid "Close" msgstr "Zamknij" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ko&nfiguracja" @@ -2693,7 +2709,7 @@ msgstr "Kod:" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2713,7 +2729,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2748,9 +2764,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "Kompilowanie shaderów" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2775,7 +2791,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2882,9 +2898,9 @@ msgstr "Skonfiguruj wyjście" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Potwierdź" @@ -2897,7 +2913,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Potwierdź przy zatrzymaniu" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2908,7 +2924,7 @@ msgstr "Potwierdzenie" msgid "Connect" msgstr "Połącz" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Podłącz Balance Board" @@ -2916,27 +2932,27 @@ msgstr "Podłącz Balance Board" msgid "Connect USB Keyboard" msgstr "Podłącz klawiaturę USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Połącz Wiilot 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Połącz Wiilot 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Połącz Wiilot 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Połącz Wiilot 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Połącz Wiiloty" @@ -2981,19 +2997,19 @@ msgstr "Gałka sterująca" msgid "Controller Profile" msgstr "Profil kontrolera" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Profil kontrolera 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Profil kontrolera 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Profil kontrolera 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Profil kontrolera 4" @@ -3005,6 +3021,16 @@ msgstr "Ustawienia kontrolera" msgid "Controllers" msgstr "Kontrolery" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3013,7 +3039,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3021,7 +3047,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3030,7 +3056,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3055,7 +3081,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3142,18 +3168,22 @@ msgstr "" msgid "Copy" msgstr "Kopiuj" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopiuj &funkcję" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Kopiuj &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopiuj adres" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Kopiowanie nie powiodło się" @@ -3162,18 +3192,14 @@ msgstr "Kopiowanie nie powiodło się" msgid "Copy Hex" msgstr "Kopiuj Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3283,8 +3309,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3380,7 +3406,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Aktualny region" @@ -3568,24 +3594,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Zmniejsz konwergencję" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Zmniejsz głębię" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Zmniejsz szybkość emulacji" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Zmniejsz rozdzielczość wewnętrzną" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3641,8 +3667,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Usuń" @@ -3660,7 +3686,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3675,9 +3701,9 @@ msgstr "Głębia:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Opis" @@ -3726,7 +3752,7 @@ msgstr "" msgid "Detect" msgstr "Wykryj" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3734,7 +3760,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "Deterministyczna dwurdzeniowość:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Deweloperska (wiele razy w ciągu dnia)" @@ -3792,15 +3818,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Wyłącz limit szybkości emulacji" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3808,11 +3834,11 @@ msgstr "" msgid "Disable Fog" msgstr "Wyłącz mgłę" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3834,7 +3860,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3857,7 +3883,8 @@ msgstr "Dysk" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3887,16 +3914,16 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Czy chcesz wyczyścić listę nazw symboli?" @@ -3906,7 +3933,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Zatrzymać aktualną emulację?" @@ -3927,9 +3954,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3941,8 +3968,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmy TAS (*.dtm)" @@ -3991,12 +4018,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "System cheatów programu Dolphin jest aktualnie wyłączony." @@ -4006,7 +4027,7 @@ msgstr "System cheatów programu Dolphin jest aktualnie wyłączony." msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Nie aktualizuj" @@ -4063,11 +4084,11 @@ msgstr "Pobrano %1 kodów. (dodano %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4110,7 +4131,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Zrzucaj audio" @@ -4122,7 +4143,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Zrzucaj docelowy EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Zrzucaj klatki" @@ -4239,16 +4260,16 @@ msgstr "Azja Wschodnia" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4272,7 +4293,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4335,7 +4356,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Szybkość emulacji" @@ -4355,7 +4376,7 @@ msgstr "Włącz weryfikację warstw API" msgid "Enable Audio Stretching" msgstr "Włącz rozciąganie dźwięku" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Włącz cheaty" @@ -4379,9 +4400,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Włącz dwa rdzenie" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Włącz dwa rdzenie (przyspieszenie)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4425,7 +4446,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4467,7 +4488,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Włącz raportowanie statystyk użytkowania" @@ -4547,7 +4568,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4581,7 +4602,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4627,6 +4648,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4654,7 +4684,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4705,14 +4735,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4751,26 +4781,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4787,9 +4817,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Błąd" @@ -4821,7 +4851,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4916,7 +4946,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -4929,15 +4959,15 @@ msgstr "" msgid "Exit" msgstr "Wyjdź" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4949,19 +4979,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4969,7 +4999,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Eksportuj wszystkie zapisy Wii" @@ -4980,11 +5010,11 @@ msgstr "Eksportuj wszystkie zapisy Wii" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Eksportuj nagranie" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Eksportuj nagranie..." @@ -5012,7 +5042,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5040,35 +5070,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "Zewnętrzny bufor klatki (External Frame Buffer - XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Wypakuj certyfikaty z NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Wypakuj cały dysk..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Wypakuj całą partycję" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Wypakuj plik..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Wypakuj pliki..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Wypakuj dane systemowe..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Wypakowywanie wszystkich plików..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Wypakowywanie folderu..." @@ -5096,7 +5126,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5162,7 +5192,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Nie udało się usunąć wybranego pliku." @@ -5191,15 +5221,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5218,25 +5248,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5256,11 +5286,11 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5268,8 +5298,8 @@ msgstr "" "Nasłuch na porcie %1 zakończony niepowodzeniem. Czy jest uruchomiony jakiś " "inny serwer NetPlay?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5281,7 +5311,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5318,7 +5348,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Nie udało się otworzyć '%1'" @@ -5357,7 +5387,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5493,19 +5523,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Nie udało się zapisać log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5559,8 +5589,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5568,11 +5598,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5608,9 +5639,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5622,20 +5653,20 @@ msgstr "" msgid "File Info" msgstr "Informacje o pliku" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nazwa pliku" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Rozmiar pliku" @@ -5733,8 +5764,8 @@ msgstr "Flagi" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5801,7 +5832,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5811,7 +5842,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5854,20 +5885,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Wyprzedzanie klatek" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Zmniejsz szybkość wyprzedzania klatek" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Zwiększ szybkość wyprzedzania klatek" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Zresetuj szybkość wyprzedzania klatek" @@ -5924,11 +5955,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Swobodne obserwowanie" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5962,11 +5993,12 @@ msgstr "" msgid "FullScr" msgstr "Pełny ekran" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funkcja" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5986,7 +6018,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -6002,11 +6034,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6119,11 +6151,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Kartridże GBA (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6157,8 +6189,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID gry" @@ -6284,7 +6316,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Kody Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6304,14 +6337,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Generuj nową tożsamość" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6329,7 +6369,7 @@ msgstr "Niemcy" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6362,7 +6402,7 @@ msgstr "Grafika" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Przełączniki grafiki" @@ -6371,7 +6411,7 @@ msgstr "Przełączniki grafiki" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6393,7 +6433,7 @@ msgstr "Zielony lewo" msgid "Green Right" msgstr "Zielony prawo" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Widok kafelków" @@ -6475,7 +6515,7 @@ msgstr "Ukryj" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6493,12 +6533,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6562,7 +6602,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "Ustawienia skrótów klawiaturowych" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6663,11 +6703,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Generacja tożsamości" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6710,6 +6750,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6763,7 +6813,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6778,15 +6828,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importuj zapis Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6842,24 +6892,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Zwiększ konwergencję" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Zwiększ głębię" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Zwiększ szybkość emulacji" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Zwiększ rozdzielczość wewnętrzną" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6908,8 +6958,8 @@ msgstr "Informacje" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informacja" @@ -6923,10 +6973,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Wejście" @@ -6945,13 +6995,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Włóż kartę SD" @@ -6969,7 +7016,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Zainstaluj WAD..." @@ -6977,8 +7024,9 @@ msgstr "Zainstaluj WAD..." msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6992,7 +7040,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -7001,7 +7049,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7060,8 +7108,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Rozdzielczość wewnętrzna" @@ -7078,7 +7126,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Interpreter (najwolniejszy)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7086,7 +7134,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7094,7 +7142,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7103,7 +7151,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7185,11 +7233,11 @@ msgstr "Włochy" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7197,47 +7245,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7249,14 +7297,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7264,11 +7313,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japonia" @@ -7290,7 +7339,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7325,7 +7374,7 @@ msgstr "" msgid "Keys" msgstr "Klawisze" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7333,7 +7382,7 @@ msgstr "" msgid "Kick Player" msgstr "Wyrzuć gracza" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7466,6 +7515,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7499,11 +7556,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Pokaż kolumny" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Widok listy" @@ -7513,17 +7570,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Wczytaj" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7532,7 +7589,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7543,7 +7600,7 @@ msgstr "Wczytuj dostosowane tekstury" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7551,16 +7608,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Wczytaj ostatni stan" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7568,104 +7630,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Wczytaj stan" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Wczytaj stan Ostatni 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Wczytaj stan Ostatni 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Wczytaj stan Ostatni 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Wczytaj stan Ostatni 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Wczytaj stan Ostatni 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Wczytaj stan Ostatni 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Wczytaj stan Ostatni 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Wczytaj stan Ostatni 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Wczytaj stan Ostatni 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Wczytaj stan Ostatni 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Wczytaj stan Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Wczytaj stan Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Wczytaj stan Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Wczytaj stan Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Wczytaj stan Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Wczytaj stan Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Wczytaj stan Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Wczytaj stan Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Wczytaj stan Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Wczytaj stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Wczytaj stan z pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Wczytaj stan z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Wczytaj stan ze slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7673,20 +7735,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Wczytaj z wybranego slotu" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Wczytaj ze slotu Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Wczytaj plik map" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7694,7 +7751,7 @@ msgstr "" msgid "Load..." msgstr "Wczytaj..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7719,20 +7776,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -7742,10 +7799,11 @@ msgid "Log Configuration" msgstr "Konfiguracja logu" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7784,7 +7842,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7847,9 +7905,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Producent" @@ -7858,7 +7916,7 @@ msgstr "Producent" msgid "Maker:" msgstr "Producent:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7866,7 +7924,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7905,7 +7963,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Może powodować spowolnienie w Wii Menu i niektórych grach." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Umiarkowany" @@ -7921,7 +7979,7 @@ msgstr "" msgid "Memory Card" msgstr "Karta pamięci" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7949,7 +8007,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7957,7 +8015,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -8028,8 +8086,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8071,7 +8129,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" @@ -8095,10 +8153,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8107,8 +8165,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8117,7 +8175,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8134,8 +8192,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8148,11 +8206,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8231,7 +8289,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8256,7 +8314,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Nowa tożsamość została wygenerowana." @@ -8264,12 +8322,13 @@ msgstr "Nowa tożsamość została wygenerowana." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8277,8 +8336,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8365,7 +8425,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Nie wykryto żadnych problemów" @@ -8406,7 +8466,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8606,7 +8666,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Dokumentacja online" @@ -8614,13 +8674,13 @@ msgstr "&Dokumentacja online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8643,14 +8703,18 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Otwórz log FIFO" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -8751,7 +8815,7 @@ msgstr "Pozostałe" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Inne skróty klawiaturowe stanów" @@ -8768,7 +8832,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8776,16 +8840,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Odtwórz nagranie wejścia..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -8814,7 +8878,7 @@ msgstr "Plik graficzny PNG (*.png);; All Files (*)" msgid "PPC Size" msgstr "Rozmiar PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8827,7 +8891,7 @@ msgstr "Pad" msgid "Pads" msgstr "Pady" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8890,7 +8954,7 @@ msgstr "Wstrzymaj" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Wstrzymaj na końcu filmu" @@ -8935,7 +8999,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Oświetlenie na piksel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8965,11 +9029,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8985,8 +9049,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platforma" @@ -8998,7 +9062,7 @@ msgstr "Graj" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Odtwórz nagranie" @@ -9093,7 +9157,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9146,7 +9210,7 @@ msgstr "" msgid "Presets" msgstr "Wstępne ustawienia" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Naciśnij przycisk Sync" @@ -9164,9 +9228,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9174,8 +9238,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Licznik programu" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9242,11 +9307,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9273,7 +9338,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Pytanie" @@ -9298,11 +9363,11 @@ msgstr "R-Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9339,13 +9404,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9368,7 +9433,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9427,7 +9492,7 @@ msgstr "Czerwony lewo" msgid "Red Right" msgstr "Czerwony prawo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9473,8 +9538,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -9495,7 +9560,8 @@ msgstr "Wejście relatywne" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9524,7 +9590,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9537,7 +9603,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9569,7 +9635,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9581,7 +9647,7 @@ msgstr "Zresetuj" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9633,8 +9699,8 @@ msgstr "Wymagane ponowne uruchomienie" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9764,20 +9830,20 @@ msgstr "" msgid "Rumble" msgstr "Wibracje" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9847,11 +9913,11 @@ msgstr "" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Z&apisz stan" @@ -9863,7 +9929,7 @@ msgstr "Bezpieczny" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9878,23 +9944,35 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Zapisz log FIFO" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Zapisz plik do" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -9905,15 +9983,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Zapisz najstarszy stan" @@ -9921,73 +10003,77 @@ msgstr "Zapisz najstarszy stan" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Zapisz stan" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Zapisz stan Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Zapisz stan Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Zapisz stan Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Zapisz stan Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Zapisz stan Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Zapisz stan Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Zapisz stan Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Zapisz stan Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Zapisz stan Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Zapisz stan Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Zapisz stan do pliku" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Zapisz stan w najstarszym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Zapisz stan we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Zapisz stan w slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -10007,11 +10093,7 @@ msgstr "" msgid "Save as..." msgstr "Zapisz jako..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10022,19 +10104,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Zapisz we wybranym slocie" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Zapisz w slocie %1 - %2" @@ -10068,7 +10142,7 @@ msgstr "Zrzut ekranu" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Szukaj" @@ -10095,7 +10169,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10103,7 +10177,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10139,7 +10213,7 @@ msgstr "Wybierz" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10148,7 +10222,7 @@ msgid "Select Dump Path" msgstr "Wybierz ścieżkę zrzutu" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10156,18 +10230,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10176,6 +10254,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10184,6 +10266,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10192,58 +10282,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Wybierz slot %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Wybierz stan" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Wybierz slot stanu" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Wybierz slot stanu 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Wybierz slot stanu 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Wybierz slot stanu 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Wybierz slot stanu 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Wybierz slot stanu 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Wybierz slot stanu 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Wybierz slot stanu 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Wybierz slot stanu 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Wybierz slot stanu 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Wybierz slot stanu 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10261,24 +10355,20 @@ msgstr "Wybierz ścieżkę" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Wybierz plik" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Wybierz grę" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10287,19 +10377,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10307,23 +10393,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Wybierz plik do zapisu" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Wybierz czcionkę" @@ -10379,7 +10448,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10422,6 +10491,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Wyślij" @@ -10430,6 +10520,15 @@ msgstr "Wyślij" msgid "Sensor Bar Position:" msgstr "Pozycja Sensor Baru:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10458,37 +10557,33 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" -#. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 -msgid "Set PC" -msgstr "Ustaw PC" - -#: Source/Core/DolphinQt/GameList/GameList.cpp:416 -msgid "Set as &Default ISO" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" +msgid "Set Memory Card File for Slot A" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" +msgid "Set Memory Card File for Slot B" +msgstr "" + +#. i18n: Here, PC is an acronym for program counter, not personal computer. +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 +msgid "Set PC" +msgstr "Ustaw PC" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" +msgid "Set Symbol &Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" +#: Source/Core/DolphinQt/GameList/GameList.cpp:416 +msgid "Set as &Default ISO" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 @@ -10507,7 +10602,7 @@ msgstr "Ustawia język systemu Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10519,10 +10614,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10573,11 +10675,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Pokaż &log" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Pokaż pasek &narzędzi" @@ -10585,15 +10687,15 @@ msgstr "Pokaż pasek &narzędzi" msgid "Show Active Title in Window Title" msgstr "Pokazuj aktywny tytuł w tytule okna" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Pokaż Australię" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Pokazuj aktualną grę w programie Discord" @@ -10602,7 +10704,7 @@ msgstr "Pokazuj aktualną grę w programie Discord" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Pokaż ELF/DOL" @@ -10615,7 +10717,7 @@ msgstr "" msgid "Show FPS" msgstr "Pokazuj kl./s" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Pokazuj licznik klatek" @@ -10623,15 +10725,15 @@ msgstr "Pokazuj licznik klatek" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Pokaż Francję" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Pokaż GameCube'a" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Pokaż Niemcy" @@ -10639,27 +10741,27 @@ msgstr "Pokaż Niemcy" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Pokaż wejścia ekranu" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Pokaż Włochy" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Pokaż Koreę" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Pokaż licznik lagów" @@ -10667,7 +10769,7 @@ msgstr "Pokaż licznik lagów" msgid "Show Language:" msgstr "Pokaż język:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Pokaż &konfigurację logu" @@ -10679,7 +10781,7 @@ msgstr "Pokazuj wiadomości NetPlay" msgid "Show NetPlay Ping" msgstr "Pokazuj ping NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Pokaż Holandię" @@ -10687,12 +10789,12 @@ msgstr "Pokaż Holandię" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Pokaż PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Pokaż PC" @@ -10700,7 +10802,7 @@ msgstr "Pokaż PC" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Pokaż platformy" @@ -10708,23 +10810,23 @@ msgstr "Pokaż platformy" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Pokaż regiony" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Pokaż Rosję" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Pokaż Hiszpanię" @@ -10736,19 +10838,23 @@ msgstr "" msgid "Show Statistics" msgstr "Pokazuj statystyki" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Pokaż zegar systemowy" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Pokaż Tajwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Pokaż USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Pokaż nieznane" @@ -10760,27 +10866,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Pokaż WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Pokaż Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Pokaż świat" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10797,13 +10903,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10836,18 +10938,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10868,6 +10958,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10900,6 +11002,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Obok siebie" @@ -10916,7 +11026,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "Wiilot trzymany poziomo" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10963,7 +11073,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Pomiń" @@ -11139,6 +11249,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11175,11 +11289,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Rozpocznij nagrywanie wejścia" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Rozpocznij nagrywanie" @@ -11218,39 +11332,39 @@ msgstr "Krok" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Wkrocz do" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Wyjście udane!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Wyjście przekroczyło czas oczekiwania!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Przekraczanie w toku..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Krok wykonany!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Kroki" @@ -11259,7 +11373,7 @@ msgstr "Kroki" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11289,7 +11403,7 @@ msgstr "Gałka" msgid "Stop" msgstr "Zatrzymaj" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11358,14 +11472,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Powodzenie" @@ -11392,24 +11506,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "Pliki zapisów zostały pomyślnie wyeksportowane" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Certyfikaty z NAND zostały pomyślnie wyodrębnione" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Plik został pomyślnie wyodrębniony." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Dane systemowe zostały pomyślnie wyodrębnione." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Ten tytuł został pomyślnie zainstalowany do NAND." @@ -11460,7 +11574,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11485,17 +11599,21 @@ msgstr "" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symbole" @@ -11544,7 +11662,7 @@ msgstr "" msgid "System Language:" msgstr "Język systemu:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Wejście TAS" @@ -11555,9 +11673,9 @@ msgid "TAS Tools" msgstr "Narzędzia TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11575,7 +11693,7 @@ msgstr "" msgid "Taiwan" msgstr "Tajwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Zrób zrzut ekranu" @@ -11583,7 +11701,7 @@ msgstr "Zrób zrzut ekranu" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11618,7 +11736,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11663,13 +11781,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND został naprawiony." @@ -11820,7 +11938,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11944,7 +12062,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11978,7 +12096,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12036,7 +12154,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12145,7 +12263,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "To nie może być cofnięte!" @@ -12345,7 +12463,7 @@ msgstr "" msgid "Threshold" msgstr "Próg nacisku" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12364,10 +12482,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Tytuł" @@ -12375,25 +12493,29 @@ msgstr "Tytuł" msgid "To" msgstr "Do" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Do:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Przełącz pełny &ekran" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Przełącz 3D Anaglif" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12401,28 +12523,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Przełącz wszystkie typy logów" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Przełącz proporcje obrazu" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Przełącz punkt przerwania" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Przełącz przycinanie" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Przełącz dostosowane tekstury" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Przełącz kopie EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Przełącz mgłę" @@ -12434,31 +12556,31 @@ msgstr "Przełącz pełny ekran" msgid "Toggle Pause" msgstr "Przełącz wstrzymanie" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Przełącz zrzucanie tekstur" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Przełącz kopie XFB" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Przełącz tryb natychmiastowy XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12579,7 +12701,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12609,7 +12731,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12647,15 +12769,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12687,7 +12809,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12710,11 +12832,11 @@ msgstr "Nieskompresowane obrazy gier GC/Wii (*.iso *.gcm)" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Cofnij wczytywanie stanu" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Cofnij zapisywanie stanu" @@ -12732,7 +12854,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Stany Zjednoczone" @@ -12828,11 +12950,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Nieograniczona szybkość" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12840,7 +12962,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12938,7 +13065,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "Wiilot trzymany pionowo" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Ustawienia raportowania statystyk użytkowania" @@ -13031,7 +13158,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13102,7 +13229,7 @@ msgstr "" msgid "Value" msgstr "Wartość" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13190,22 +13317,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Głośność" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Zmniejsz głośność" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Przełącz całkowite wyciszenie" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Zwiększ głośność" @@ -13213,7 +13340,7 @@ msgstr "Zwiększ głośność" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "Pliki WAD (*.wad)" @@ -13314,7 +13441,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Ostrzeżenie" @@ -13427,7 +13554,7 @@ msgstr "Zezwolone urządzenia przejściowe USB" msgid "Widescreen Hack" msgstr "Hak szerokiego ekranu" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13497,7 +13624,7 @@ msgstr "Wii i Wiilot" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Pliki zapisu Wii (*.bin);Wszystkie pliki (*)" @@ -13532,11 +13659,11 @@ msgstr "Świat" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13680,7 +13807,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13744,7 +13871,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/pt.po b/Languages/po/pt.po index 64e49128f2..322370b5c7 100644 --- a/Languages/po/pt.po +++ b/Languages/po/pt.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zilaan , 2011\n" -"Language-Team: Portuguese (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Portuguese (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/pt/)\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -162,7 +162,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -207,7 +207,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -227,22 +227,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -250,6 +250,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -270,7 +274,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -283,7 +287,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -327,10 +331,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -340,23 +348,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -365,14 +369,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Pontos de partida" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -396,7 +400,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -404,18 +408,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -451,7 +452,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulação" @@ -476,36 +477,36 @@ msgstr "" msgid "&File" msgstr "&Ficheiro" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Avançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Definições Gráficas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Ajuda" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Definições de Teclas de Atalho" @@ -529,15 +530,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -549,11 +550,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Carregar Estado" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -567,19 +568,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -587,7 +588,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -600,19 +601,19 @@ msgstr "" msgid "&Open..." msgstr "&Abrir..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Começar" @@ -620,7 +621,7 @@ msgstr "&Começar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -628,7 +629,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registos" @@ -641,12 +642,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reset" @@ -658,7 +659,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -670,11 +671,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Parar" @@ -682,7 +683,7 @@ msgstr "&Parar" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -704,17 +705,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Ver" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -726,11 +727,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -750,7 +751,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(desligado)" @@ -774,7 +775,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -852,7 +853,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -864,7 +865,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -900,19 +901,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -936,7 +937,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1033,7 +1034,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1063,8 +1064,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1082,7 +1083,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1092,7 +1093,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1176,7 +1177,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1252,7 +1253,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1303,11 +1304,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1341,13 +1342,13 @@ msgstr "Adicionar..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1366,7 +1367,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1426,7 +1427,7 @@ msgstr "Avançadas" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1482,7 +1483,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1490,7 +1491,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1499,7 +1500,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1508,8 +1509,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1533,11 +1534,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1595,7 +1596,7 @@ msgstr "Ângulo" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1607,19 +1608,19 @@ msgstr "Anti-Serrilhamento" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1633,8 +1634,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1645,7 +1646,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1682,8 +1683,8 @@ msgstr "Proporção de ecrã:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1744,7 +1745,11 @@ msgstr "Automático" msgid "Auto (Multiple of 640x528)" msgstr "Automático (Multiplo de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1764,7 +1769,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1778,6 +1783,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1789,7 +1805,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1872,10 +1888,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -1903,7 +1919,7 @@ msgstr "" msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Definições Básicas" @@ -1963,9 +1979,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2001,15 +2017,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2137,30 +2153,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2256,7 +2272,7 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2291,7 +2307,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2353,14 +2369,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2409,7 +2425,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2457,7 +2473,7 @@ msgstr "Mudar &Disco..." msgid "Change Disc" msgstr "Mudar Disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2517,7 +2533,7 @@ msgstr "Procura de Cheats" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2529,7 +2545,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2547,29 +2563,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Escolha um ficheiro para abrir" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Escolha a pasta para extrair" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2588,7 +2604,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2598,7 +2614,7 @@ msgstr "Limpar" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2619,7 +2635,7 @@ msgstr "" msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2643,7 +2659,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2663,7 +2679,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2698,9 +2714,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2725,7 +2741,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2832,9 +2848,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2847,7 +2863,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmar Ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2858,7 +2874,7 @@ msgstr "" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "" @@ -2866,27 +2882,27 @@ msgstr "" msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2931,19 +2947,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2955,6 +2971,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2963,7 +2989,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2971,7 +2997,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2980,7 +3006,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3005,7 +3031,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3092,18 +3118,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3112,18 +3142,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3229,8 +3255,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3326,7 +3352,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3514,24 +3540,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3587,8 +3613,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Apagar" @@ -3606,7 +3632,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3621,9 +3647,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" @@ -3672,7 +3698,7 @@ msgstr "" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3680,7 +3706,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3738,15 +3764,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3754,11 +3780,11 @@ msgstr "" msgid "Disable Fog" msgstr "Desactivar Nevoeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3780,7 +3806,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3803,7 +3829,8 @@ msgstr "Disco" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3833,15 +3860,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3851,7 +3878,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Deseja parar a emulação actual?" @@ -3872,9 +3899,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3886,8 +3913,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS filmes (*.dtm)" @@ -3934,12 +3961,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3949,7 +3970,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4006,11 +4027,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4053,7 +4074,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Depositar Áudio" @@ -4065,7 +4086,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Depositar Alvo EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Depositar Quadros" @@ -4182,16 +4203,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4215,7 +4236,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4278,7 +4299,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4298,7 +4319,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Activar Cheats" @@ -4322,9 +4343,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Activar Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Activar Dual Core (aumento de desempenho)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4368,7 +4389,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4410,7 +4431,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4486,7 +4507,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4520,7 +4541,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4566,6 +4587,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4593,7 +4623,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4644,14 +4674,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4690,26 +4720,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4726,9 +4756,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Erro" @@ -4761,7 +4791,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4852,7 +4882,7 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4865,15 +4895,15 @@ msgstr "" msgid "Exit" msgstr "Sair" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4885,19 +4915,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4905,7 +4935,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportar Todos os Jogos Guardados Wii" @@ -4916,11 +4946,11 @@ msgstr "Exportar Todos os Jogos Guardados Wii" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -4948,7 +4978,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4976,35 +5006,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extrair Ficheiro..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5032,7 +5062,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5098,7 +5128,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5127,15 +5157,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5154,25 +5184,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5192,18 +5222,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5215,7 +5245,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5252,7 +5282,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5291,7 +5321,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5427,19 +5457,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5493,8 +5523,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5502,11 +5532,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5542,9 +5573,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5556,20 +5587,20 @@ msgstr "" msgid "File Info" msgstr "Informação de Ficheiro" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5667,8 +5698,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5735,7 +5766,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5745,7 +5776,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5788,20 +5819,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avançar Quadro" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5858,11 +5889,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5896,11 +5927,12 @@ msgstr "" msgid "FullScr" msgstr "Ecrã Inteiro" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5920,7 +5952,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5936,11 +5968,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6053,11 +6085,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6091,8 +6123,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6218,7 +6250,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Códigos Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6238,14 +6271,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6263,7 +6303,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6296,7 +6336,7 @@ msgstr "Gráficos" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6305,7 +6345,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6327,7 +6367,7 @@ msgstr "Verde Esquerda" msgid "Green Right" msgstr "Verde Direita" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6409,7 +6449,7 @@ msgstr "Esconder" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6427,12 +6467,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6496,7 +6536,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6597,11 +6637,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6635,6 +6675,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6688,7 +6738,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6703,15 +6753,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6767,24 +6817,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6833,8 +6883,8 @@ msgstr "Informação" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informação" @@ -6848,10 +6898,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Entrada" @@ -6870,13 +6920,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir Cartão SD" @@ -6894,7 +6941,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6902,8 +6949,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6917,7 +6965,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6926,7 +6974,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6985,8 +7033,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7003,7 +7051,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7011,7 +7059,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7019,7 +7067,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7028,7 +7076,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7108,11 +7156,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7120,47 +7168,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7172,14 +7220,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7187,11 +7236,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7213,7 +7262,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7248,7 +7297,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7256,7 +7305,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7389,6 +7438,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7422,11 +7479,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7436,17 +7493,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7455,7 +7512,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7466,7 +7523,7 @@ msgstr "Carregar Texturas Personalizadas" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7474,16 +7531,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7491,104 +7553,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Carregar Estado Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Carregar Estado Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Carregar Estado Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Carregar Estado Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Carregar Estado Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Carregar Estado Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Carregar Estado Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Carregar Estado Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7596,20 +7658,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7617,7 +7674,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7642,20 +7699,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Relatório" @@ -7665,10 +7722,11 @@ msgid "Log Configuration" msgstr "Configuração de Relatório" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7707,7 +7765,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7770,9 +7828,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7781,7 +7839,7 @@ msgstr "" msgid "Maker:" msgstr "Fabricante:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7789,7 +7847,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7828,7 +7886,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7844,7 +7902,7 @@ msgstr "" msgid "Memory Card" msgstr "Cartão de memória" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7872,7 +7930,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7880,7 +7938,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7951,8 +8009,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7994,7 +8052,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8018,10 +8076,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8030,8 +8088,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8040,7 +8098,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8057,8 +8115,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8071,11 +8129,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8154,7 +8212,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8179,7 +8237,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8187,12 +8245,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8200,8 +8259,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8288,7 +8348,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8329,7 +8389,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8529,7 +8589,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Online e documentação" @@ -8537,13 +8597,13 @@ msgstr "Online e documentação" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8564,13 +8624,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8672,7 +8736,7 @@ msgstr "Outro" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8689,7 +8753,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8697,16 +8761,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8735,7 +8799,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8748,7 +8812,7 @@ msgstr "Comando" msgid "Pads" msgstr "Comandos" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8811,7 +8875,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8856,7 +8920,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminação por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8886,11 +8950,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8906,8 +8970,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8919,7 +8983,7 @@ msgstr "Começar" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Tocar Gravação" @@ -9014,7 +9078,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9065,7 +9129,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9083,9 +9147,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9093,8 +9157,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9138,13 +9203,13 @@ msgstr "" msgid "Profile" msgstr "Perfil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9161,11 +9226,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9192,7 +9257,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Questão" @@ -9217,11 +9282,11 @@ msgstr "R-Analógico" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9258,13 +9323,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9287,7 +9352,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9346,7 +9411,7 @@ msgstr "Vermelho Esquerda" msgid "Red Right" msgstr "Vermelho Direita" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9392,8 +9457,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9414,7 +9479,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9443,7 +9509,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9456,7 +9522,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9488,7 +9554,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9500,7 +9566,7 @@ msgstr "Reset" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9552,8 +9618,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9683,20 +9749,20 @@ msgstr "" msgid "Rumble" msgstr "Vibração" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9766,11 +9832,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Gua&rdar Estado" @@ -9782,7 +9848,7 @@ msgstr "Seguro" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9797,22 +9863,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9824,15 +9902,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9840,73 +9922,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Guardar Estado Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Guardar Estado Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Guardar Estado Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Guardar Estado Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Guardar Estado Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Guardar Estado Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Guardar Estado Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Guardar Estado Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9926,11 +10012,7 @@ msgstr "" msgid "Save as..." msgstr "Guardar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9941,19 +10023,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9987,7 +10061,7 @@ msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "" @@ -10014,7 +10088,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10022,7 +10096,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10058,7 +10132,7 @@ msgstr "Seleccionar" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10067,7 +10141,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10075,18 +10149,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10095,6 +10173,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10103,6 +10185,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10111,58 +10201,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10180,24 +10274,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10206,19 +10296,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10226,23 +10312,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Seleccione o ficheiro de jogo guardado" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10298,7 +10367,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10341,6 +10410,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" @@ -10349,6 +10439,15 @@ msgstr "Enviar" msgid "Sensor Bar Position:" msgstr "Posição da Barra de Sensor:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10377,39 +10476,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10423,7 +10518,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10435,10 +10530,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10489,11 +10591,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Mostrar &Relatório" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Mostrar Barra de Ferramen&tas" @@ -10501,15 +10603,15 @@ msgstr "Mostrar Barra de Ferramen&tas" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10518,7 +10620,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10531,7 +10633,7 @@ msgstr "" msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10539,15 +10641,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Mostrar França" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Mostrar GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10555,27 +10657,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Mostrar visualização de Entradas" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Mostrar Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Mostrar Coreia" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10583,7 +10685,7 @@ msgstr "" msgid "Show Language:" msgstr "Mostrar Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Mostrar &Configuração de Relatório" @@ -10595,7 +10697,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10603,12 +10705,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Mostrar Pal" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10616,7 +10718,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Mostrar Plataformas" @@ -10624,23 +10726,23 @@ msgstr "Mostrar Plataformas" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10652,19 +10754,23 @@ msgstr "" msgid "Show Statistics" msgstr "Mostrar Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Mostrar Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Mostrar EUA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10676,27 +10782,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Mostrar Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10713,13 +10819,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10752,18 +10854,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10784,6 +10874,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10816,6 +10918,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10832,7 +10942,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10879,7 +10989,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11053,6 +11163,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11089,11 +11203,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Começar Gravação" @@ -11132,39 +11246,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11173,7 +11287,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11203,7 +11317,7 @@ msgstr "Stick" msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11272,14 +11386,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11306,24 +11420,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11374,7 +11488,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11399,17 +11513,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11458,7 +11576,7 @@ msgstr "" msgid "System Language:" msgstr "Idioma do sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Entrada TAS" @@ -11469,9 +11587,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11489,7 +11607,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Tirar Screenshot" @@ -11497,7 +11615,7 @@ msgstr "Tirar Screenshot" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11532,7 +11650,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11577,13 +11695,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11734,7 +11852,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11858,7 +11976,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11892,7 +12010,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11950,7 +12068,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12059,7 +12177,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12250,7 +12368,7 @@ msgstr "" msgid "Threshold" msgstr "Limite" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12269,10 +12387,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Título" @@ -12280,25 +12398,29 @@ msgstr "Título" msgid "To" msgstr "Para" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12306,28 +12428,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Alternar Todos os Tipos de Relatório" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12339,31 +12461,31 @@ msgstr "Alternar Ecrã Inteiro" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12484,7 +12606,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12514,7 +12636,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12552,15 +12674,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12592,7 +12714,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12615,11 +12737,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Retroceder Carregamento de Estado" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "" @@ -12637,7 +12759,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12733,11 +12855,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12745,7 +12867,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12843,7 +12970,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12936,7 +13063,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13007,7 +13134,7 @@ msgstr "" msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13095,22 +13222,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13118,7 +13245,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13219,7 +13346,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Aviso" @@ -13332,7 +13459,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Hack de Ecrã Panorâmico" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13402,7 +13529,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13437,11 +13564,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13585,7 +13712,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13649,7 +13776,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index 8386b6b309..e421080fd7 100644 --- a/Languages/po/pt_BR.po +++ b/Languages/po/pt_BR.po @@ -46,11 +46,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mateus B. Cassiano , 2017,2021-2024\n" -"Language-Team: Portuguese (Brazil) (http://app.transifex.com/delroth/dolphin-" -"emu/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/dolphinemu/" +"dolphin-emu/language/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -213,7 +213,7 @@ msgstr "%1 revisão(ões) à frente de %2" msgid "%1 doesn't support this feature on your system." msgstr "O backend %1 não é compatível com esse recurso no seu sistema." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "O backend %1 não é compatível com esse recurso." @@ -235,7 +235,7 @@ msgstr "%1 entrou" msgid "%1 has left" msgstr "%1 saiu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 desbloqueou %2 de %3 conquistas valendo %4 de %5 pontos" @@ -247,7 +247,7 @@ msgstr "%1 não é uma ROM válida" msgid "%1 is now golfing" msgstr "%1 assumiu controle do golfe" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 está jogando %2" @@ -261,7 +261,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 pontos" @@ -281,22 +281,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Velocidade Normal)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "o valor do %1 foi mudado" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "O valor do %1 foi atingido" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "O valor do %1 é usado" @@ -304,6 +304,10 @@ msgstr "O valor do %1 é usado" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -324,7 +328,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -337,7 +341,7 @@ msgstr "%1x Nativa (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Nativa (%2x%3) [%4]" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -381,10 +385,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Sobre" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "&Adicionar Função" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Adicionar Ponto de Interrupção de Memória" @@ -394,23 +402,19 @@ msgstr "&Adicionar Ponto de Interrupção de Memória" msgid "&Add New Code..." msgstr "&Adicionar Novo Código..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Adicionar função" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Adicionar..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Configurações de &Som" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "C&anal:" @@ -419,14 +423,14 @@ msgid "&Borderless Window" msgstr "Janela Sem &Bordas" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" -msgstr "&Interromper No Acerto" +msgid "&Break on Hit" +msgstr "&Interromper no Acerto" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Pontos de Interrupção" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Bug Tracker" @@ -438,11 +442,11 @@ msgstr "&Cancelar" msgid "&Cheats Manager" msgstr "Gerenciador de &Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "Verificar &Atualizações..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Limpar Símbolos" @@ -450,7 +454,7 @@ msgstr "&Limpar Símbolos" msgid "&Clone..." msgstr "&Duplicar..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Código" @@ -458,18 +462,15 @@ msgstr "&Código" msgid "&Connected" msgstr "&Conectado" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Configurações de &Controles" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Copiar Endereço" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Copiar endereço" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Criar..." @@ -505,7 +506,7 @@ msgstr "&Editar..." msgid "&Eject Disc" msgstr "&Ejetar Disco" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulação" @@ -530,36 +531,36 @@ msgstr "&Exportar como .gci..." msgid "&File" msgstr "&Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Fonte..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "A&vançar Quadro" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Configurações do Olhar Livre" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Gerar Símbolos De" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Repositório no &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Configurações de &Gráficos" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "Aj&uda" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Configurações das &Teclas de Atalho" @@ -583,15 +584,15 @@ msgstr "&Importar..." msgid "&Infinity Base" msgstr "Base &Infinity" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Inserir blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "&Inserir BLR" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Mistura do Interframe" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -603,11 +604,11 @@ msgstr "&Idioma:" msgid "&Load Branch Watch" msgstr "&Carregar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "Carregar Estado Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Carregar o Mapa dos Símbolos" @@ -621,19 +622,19 @@ msgstr "&Carregar o arquivo no endereço atual" msgid "&Lock Watches" msgstr "&Trancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "B&loquear Widgets" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" -msgstr "&Registrar No Acerto" +msgid "&Log on Hit" +msgstr "&Registrar no Acerto" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memória" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Gravação" @@ -641,7 +642,7 @@ msgstr "&Gravação" msgid "&Mute" msgstr "Ativar &Mudo" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Rede" @@ -654,19 +655,19 @@ msgstr "&Não" msgid "&Open..." msgstr "A&brir..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opções" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Funções HLE do Patch" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "P&ausar" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "Inici&ar" @@ -674,7 +675,7 @@ msgstr "Inici&ar" msgid "&Properties" msgstr "&Propriedades" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "Modo &Somente Leitura" @@ -682,7 +683,7 @@ msgstr "Modo &Somente Leitura" msgid "&Refresh List" msgstr "&Atualizar Lista" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registradores" @@ -695,12 +696,12 @@ msgstr "&Remover" msgid "&Remove Code" msgstr "&Remover Código" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "&Renomear Símbolo" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reiniciar" @@ -712,7 +713,7 @@ msgstr "Gerenciador de Pacotes de &Recursos" msgid "&Save Branch Watch" msgstr "&Salvar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Salvar Mapa de Símbolos" @@ -724,11 +725,11 @@ msgstr "&Escanear Cartões do e-Reader..." msgid "&Skylanders Portal" msgstr "Portal &Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Limite de Velocidade:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Parar" @@ -736,7 +737,7 @@ msgstr "&Parar" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Threads" @@ -758,17 +759,17 @@ msgstr "&Fechar ROM" msgid "&Unlock Watches" msgstr "&Destrancar Relógios" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Visualizar" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "A&ssistir" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Website" @@ -780,11 +781,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Sim" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1\" não foi encontrado, nenhum nome de símbolo foi gerado" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' não foi encontrado, ao invés disto escaneando por funções comuns" @@ -804,7 +805,7 @@ msgstr "(Sistema)" msgid "(host)" msgstr "(host)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(desligado)" @@ -828,7 +829,7 @@ msgstr ", Vírgula" msgid "- Subtract" msgstr "- Subtrair" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -906,7 +907,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x Anisotrópico" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -918,7 +919,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -954,19 +955,19 @@ msgid "32-bit Unsigned Integer" msgstr "Inteiro de 32 bits (Sem Sinal)" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Profundidade 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -990,7 +991,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1089,7 +1090,7 @@ msgstr "" "Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1127,8 +1128,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Maior que" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Uma sessão do NetPlay já está em progresso!" @@ -1152,7 +1153,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Um disco já está prestes a ser inserido." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1167,7 +1168,7 @@ msgstr "" "Não é possível carregar um estado salvo sem especificar um jogo para " "executar." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1268,7 +1269,7 @@ msgid "Achievement Settings" msgstr "Configurações das Conquistas" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Conquistas" @@ -1364,7 +1365,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "Ativar Chat do NetPlay" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Ativo" @@ -1415,11 +1416,11 @@ msgstr "Adicionar Novo Dispositivo USB" msgid "Add Shortcut to Desktop" msgstr "Criar Atalho na Área de Trabalho" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Adicionar Ponto de Interrupção" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Adicionar Ponto de Interrupção de Memória" @@ -1453,13 +1454,13 @@ msgstr "Adicionar..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Endereço" @@ -1478,7 +1479,7 @@ msgstr "Espaço do endereço pelo state da CPU" msgid "Address:" msgstr "Endereço:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1566,7 +1567,7 @@ msgstr "Avançado" msgid "Advanced Settings" msgstr "Configurações Avançadas" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1642,7 +1643,7 @@ msgstr "Tudo Duplo" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1650,7 +1651,7 @@ msgid "All Files" msgstr "Todos os arquivos" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Todos os arquivos (*)" @@ -1659,7 +1660,7 @@ msgstr "Todos os arquivos (*)" msgid "All Float" msgstr "Todos Flutuantes" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Todos os arquivos do GC/Wii" @@ -1668,8 +1669,8 @@ msgstr "Todos os arquivos do GC/Wii" msgid "All Hexadecimal" msgstr "Tudo Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos os Estados Salvos (*.sav *.s##);;Todos os arquivos (*)" @@ -1693,11 +1694,11 @@ msgstr "Todos os códigos dos jogadores sincronizados." msgid "All players' saves synchronized." msgstr "Todos os saves dos jogadores sincronizados." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Permitir Configurações de Região Incompatíveis" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Permitir Envio de Estatísticas de Uso" @@ -1757,7 +1758,7 @@ msgstr "Ângulo" msgid "Angular velocity to ignore and remap." msgstr "Velocidade angular a ignorar e remapear." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Anti-Aliasing" @@ -1769,19 +1770,19 @@ msgstr "Anti-Aliasing:" msgid "Any Region" msgstr "Qualquer Região" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Anexar assinatura a" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "Anexar Assinatura Em" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Anexar ao &Arquivo de Assinatura Existente..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Apl&icar Arquivo de Assinatura..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1797,9 +1798,9 @@ msgstr "Data do Apploader:" msgid "Apply" msgstr "Aplicar" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Aplicar arquivo de assinatura" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "Aplicar Arquivo de Assinatura" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1809,7 +1810,7 @@ msgstr "Detecção de Mipmaps Arbitrários" msgid "Are you sure that you want to delete '%1'?" msgstr "Tem certeza de que deseja excluir o perfil \"%1\"?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Tem certeza de que deseja excluir este arquivo?" @@ -1846,9 +1847,9 @@ msgstr "Proporção de Tela:" msgid "Assemble" msgstr "Assemble" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Instruções do Assembly" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "Montar Instrução" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1910,7 +1911,11 @@ msgstr "Automática" msgid "Auto (Multiple of 640x528)" msgstr "Automática (Múltipla de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "Canal" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Configurações de Atualização Automática" @@ -1934,7 +1939,7 @@ msgstr "Auto-Ajustar o Tamanho da Janela" msgid "Auto-Hide" msgstr "Ocultar Automaticamente" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Auto-detectar os módulos do RSO?" @@ -1951,6 +1956,25 @@ msgstr "" "interna.

Na dúvida, mantenha essa opção desativada." "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" +"Troca o disco do jogo automaticamente quando solicitado pelos jogos com dois " +"discos. Essa função requer que o jogo seja iniciado de uma das seguintes " +"maneiras:
- A partir da lista de jogos, com ambos os discos presentes na " +"lista.
- Em Arquivo => Abrir, ou pela interface de linha de comando, " +"especificando o caminho para ambos os discos.
- Carregando um arquivo M3U " +"em Arquivo => Abrir, ou pela interface de linha de comando." +"

Na dúvida, mantenha essa opção desativada." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Atualizar automaticamente os Valores Atuais" @@ -1962,7 +1986,7 @@ msgid "Auxiliary" msgstr "Auxiliar" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -2048,10 +2072,10 @@ msgstr "Deslocamento ruim fornecido." msgid "Bad value provided." msgstr "Valor ruim fornecido." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -2079,7 +2103,7 @@ msgstr "Prioridade base" msgid "Basic" msgstr "Básico" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Configurações Básicas" @@ -2145,9 +2169,9 @@ msgstr "" "\n" "Tente novamente com um personagem diferente." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Tamanho do Bloco" @@ -2186,15 +2210,15 @@ msgstr "" "foi compilada sem o libusb. O modo de redirecionamento não pode ser " "utilizado." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Do Início até a Pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Arquivo de backup da NAND do BootMii (*.bin);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Arquivo de chaves do BootMii (*.bin);;Todos os arquivos (*)" @@ -2343,30 +2367,30 @@ msgstr "Branch para Registrador de Link (LR salvo)" msgid "Branch: %1" msgstr "Branch: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Vertentes" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Interrupção" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" -msgstr "Interromper &E Registrar no Acerto" +msgid "Break &and Log on Hit" +msgstr "Interromper &e Registrar no Acerto" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Pontos de Interrupção" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Ponto de interrupção encontrado! Saída abortada." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Pontos de Interrupção" @@ -2465,7 +2489,7 @@ msgstr "Autor(a): %1" msgid "C Stick" msgstr "Eixo C" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "C&riar Arquivo de Assinatura..." @@ -2504,7 +2528,7 @@ msgstr "" msgid "Calculate" msgstr "Calcular" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2572,8 +2596,8 @@ msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" "Não foi possível encontrar o Wii Remote pelo identificador de conexão {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Não é possível iniciar uma sessão do NetPlay enquanto um jogo está em " @@ -2581,7 +2605,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2632,7 +2656,7 @@ msgstr "Não é possível gerar um código AR para este endereço." msgid "Cannot refresh without results." msgstr "Não pode atualizar sem resultados." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "Não é possível definir o local da Pasta CGI para um caminho vazio." @@ -2681,7 +2705,7 @@ msgstr "&Trocar Disco..." msgid "Change Disc" msgstr "Trocar Disco" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Trocar Discos Automaticamente" @@ -2755,7 +2779,7 @@ msgstr "Pesquisa de Cheats" msgid "Cheats Manager" msgstr "Gerenciador de Cheats" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Verificar NAND..." @@ -2767,7 +2791,7 @@ msgstr "Monitorar Alterações na Lista de Jogos em Segundo Plano" msgid "Check for updates" msgstr "Verificar atualizações" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2787,29 +2811,29 @@ msgstr "China" msgid "Choose" msgstr "..." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Abrir" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Escolha um arquivo pra abrir ou criar" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Escolha a prioridade do arquivo de entrada dos dados" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Escolha o arquivo secundário de entrada dos dados" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "Escolha Pasta para Extração" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "Escolher a pasta base do GCI" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Selecionar pasta" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "Escolha o Arquivo de Entrada Prioritário" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "Escolha o Arquivo de Entrada Secundário" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "Escolha um Arquivo para Abrir" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "Escolha um Arquivo para Abrir ou Criar" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2828,7 +2852,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2838,7 +2862,7 @@ msgstr "Limpar" msgid "Clear Branch Watch" msgstr "Limpar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Limpar Cache" @@ -2859,7 +2883,7 @@ msgstr "Duplicar e &Editar Código..." msgid "Close" msgstr "Fechar" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Co&nfigurações" @@ -2883,7 +2907,7 @@ msgstr "Código:" msgid "Codes received!" msgstr "Códigos recebidos!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Correção de Cores" @@ -2903,7 +2927,7 @@ msgstr "Espaço de Cores" msgid "Column &Visibility" msgstr "Colunas &Visíveis" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Combinar &Dois Arquivos de Assinatura..." @@ -2945,9 +2969,9 @@ msgstr "Compilar Shaders Antes de Iniciar" msgid "Compiling Shaders" msgstr "Compilando Shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Compressão" @@ -2972,7 +2996,7 @@ msgstr "Condição" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Condição" @@ -3132,9 +3156,9 @@ msgstr "Configurar a Saída dos Dados" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" @@ -3147,7 +3171,7 @@ msgstr "Confirmar mudança de backend" msgid "Confirm on Stop" msgstr "Confirmar ao Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3158,7 +3182,7 @@ msgstr "Confirmação" msgid "Connect" msgstr "Conectar" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Conectar/Desconectar Balance Board" @@ -3166,27 +3190,27 @@ msgstr "Conectar/Desconectar Balance Board" msgid "Connect USB Keyboard" msgstr "Conectar Teclado USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Conectar/Desconectar Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Conectar/Desconectar Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Conectar/Desconectar Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Conectar/Desconectar Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Conectar Wii Remotes" @@ -3231,19 +3255,19 @@ msgstr "Eixo Principal" msgid "Controller Profile" msgstr "Perfil do Controle" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Perfil do Controle 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Perfil do Controle 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Perfil do Controle 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Perfil do Controle 4" @@ -3255,6 +3279,16 @@ msgstr "Configuração dos Controles" msgid "Controllers" msgstr "Controles" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3268,7 +3302,7 @@ msgstr "" "para que essa opção tenha efeito.

Na dúvida, " "mantenha essa opção em 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3280,7 +3314,7 @@ msgstr "" "alto cria efeitos fora da tela mais fortes enquanto um valor mais baixo é " "mais confortável." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3294,7 +3328,7 @@ msgstr "" "resolução interna, melhor será o desempenho.

Na " "dúvida, selecione \"Nativa (640x528)\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3328,7 +3362,7 @@ msgstr "" "Controla se deve usar emulação do DSP de alto ou baixo nível. O padrão é " "True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Convergência" @@ -3435,18 +3469,22 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Copiar &função" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "Copiar &Função" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Copiar &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "Copiar &Hex" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Copiar Endereço" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "Copiar &Linha de Código" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Falha ao Copiar" @@ -3455,18 +3493,14 @@ msgstr "Falha ao Copiar" msgid "Copy Hex" msgstr "Copiar Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "Copiar Ende&reço Alvo" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Copiar Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Copiar &linha de código" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Copiar o end&ereço do alvo" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Copiar para A" @@ -3597,8 +3631,8 @@ msgstr "Não foi possível reconhecer o arquivo {0}" msgid "Could not save your changes!" msgstr "Não foi possível salvar as alterações!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Não pôde iniciar o processo do atualizador: {0}" @@ -3710,7 +3744,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Região Atual" @@ -3902,24 +3936,24 @@ msgstr "Qualidade de Decodificação:" msgid "Decrease" msgstr "Diminuir" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Diminuir Convergência" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Diminuir Profundidade" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Diminuir Velocidade" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Diminuir Resolução Interna" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Diminuir Slot de Estado Selecionado" @@ -3981,8 +4015,8 @@ msgstr "" "desativada." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Excluir" @@ -4000,7 +4034,7 @@ msgstr "Excluir Arquivos Selecionados..." msgid "Delete the existing file '{0}'?" msgstr "Excluir o arquivo existente '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Profundidade" @@ -4015,9 +4049,9 @@ msgstr "Profundidade:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descrição" @@ -4066,7 +4100,7 @@ msgstr "Separado" msgid "Detect" msgstr "Detectar" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Detectando os Módulos do RSO" @@ -4074,7 +4108,7 @@ msgstr "Detectando os Módulos do RSO" msgid "Deterministic dual core:" msgstr "Dual core determinístico:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Dev (todos os dias)" @@ -4134,15 +4168,15 @@ msgstr "Desativar Filtro de Cópia" msgid "Disable EFB VRAM Copies" msgstr "Desativar Cópias VRAM do EFB" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Desativar Limite de Velocidade" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Desativar Fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Desativar Arena do Fastmem" @@ -4150,11 +4184,11 @@ msgstr "Desativar Arena do Fastmem" msgid "Disable Fog" msgstr "Desativar Névoa" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Desativar Cache do JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Desativar o Mapa dos Pontos de Entrada Grandes" @@ -4184,7 +4218,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4215,7 +4249,8 @@ msgstr "Disco" msgid "Discard" msgstr "Descartar" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "Configurações de Exibição" @@ -4250,17 +4285,17 @@ msgstr "Distância" msgid "Distance of travel from neutral position." msgstr "Distância de viagem da posição neutra." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Você quer limpar a lista dos nomes do símbolos?" @@ -4270,7 +4305,7 @@ 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:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Deseja parar a emulação atual?" @@ -4291,9 +4326,9 @@ msgstr "Registro FIFO do Dolphin (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Pré-definição do Mod do Jogo no Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Arquivo do Mapa do Dolphin (*.map)" @@ -4305,8 +4340,8 @@ msgstr "Arquivo CSV de Assinatura do Dolphin" msgid "Dolphin Signature File" msgstr "Arquivo de Assinatura do Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Gravações TAS do Dolphin (*.dtm)" @@ -4366,14 +4401,6 @@ 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:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"O Dolphin usará a região padrão quando não for possível determinar a região " -"do software automaticamente." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "O sistema de cheats do Dolphin está desativado no momento." @@ -4383,7 +4410,7 @@ msgstr "O sistema de cheats do Dolphin está desativado no momento." msgid "Domain" msgstr "Domínio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Desativar Atualizações" @@ -4440,11 +4467,11 @@ msgstr "%1 códigos baixados (%2 adicionados)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" "Baixa imagens de capa do GameTDB.com para mostrar na exibição em grade da " @@ -4494,7 +4521,7 @@ msgstr "Exportar &FakeVMEM" msgid "Dump &MRAM" msgstr "Exportar &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Exportar Áudio" @@ -4506,7 +4533,7 @@ msgstr "Exportar Texturas de Base" msgid "Dump EFB Target" msgstr "Exportar Alvo EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Exportar Quadros" @@ -4640,16 +4667,16 @@ msgstr "Ásia Oriental" msgid "Edit Breakpoint" msgstr "Editar Ponto de Interrupção" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "Editar Condicional" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "Editar expressão condicional" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Editar..." @@ -4673,7 +4700,7 @@ msgstr "Efetivo" msgid "Effective priority" msgstr "Prioridade efetiva" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4741,7 +4768,7 @@ msgstr "" "Atual: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Velocidade de Emulação" @@ -4761,7 +4788,7 @@ msgstr "Ativar Camadas de Validação da API" msgid "Enable Audio Stretching" msgstr "Ativar Alongamento de Áudio" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Ativar Cheats" @@ -4785,9 +4812,9 @@ msgstr "Ativar Status do Discord" msgid "Enable Dual Core" msgstr "Ativar Dual Core" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Ativar Dual Core (aumento na velocidade)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "Ativar Dual Core (hack de velocidade)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4847,7 +4874,7 @@ msgstr "" "ativar.
Desativar o Modo Hardcore enquanto um jogo está em execução " "requer que o jogo seja fechado antes de ser possível reativá-lo." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Ativar Perfilamento de Bloco JIT" @@ -4889,7 +4916,7 @@ msgstr "Ativar Modo Espectador" msgid "Enable Unofficial Achievements" msgstr "Ativar Conquistas Não Oficiais" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Ativar Envio de Estatísticas de Uso" @@ -4997,7 +5024,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -5052,7 +5079,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -5119,6 +5146,21 @@ msgstr "" "como o Forecast Channel e o Nintendo Channel.\n" "Leia os Termos de Serviço em: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" +"Ativa o uso de códigos de cheat AR e Gecko, que podem ser utilizados para " +"modificar o comportamento dos jogos. Esses códigos podem ser configurados no " +"'Gerenciador de Cheats', no menu 'Ferramentas'.

Essa opção não pode " +"ser alterada enquanto a emulação estiver em execução." +"

Na dúvida, mantenha essa opção desativada." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -5157,7 +5199,7 @@ msgstr "" "\n" "Abortando importação." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "End. Final" @@ -5210,14 +5252,14 @@ msgstr "" "Informe o endereço IP e a porta da instância tapserver que você gostaria de " "se conectar." -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5256,26 +5298,26 @@ msgstr "Insira o endereço do módulo do RSO:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5292,9 +5334,9 @@ msgstr "Insira o endereço do módulo do RSO:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Erro" @@ -5325,7 +5367,7 @@ 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:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Um erro ocorreu enquanto carregava alguns pacotes de texturas" @@ -5422,7 +5464,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:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -5435,15 +5477,15 @@ msgstr "Ubershaders Exclusivos" msgid "Exit" msgstr "Sair" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Esperado + ou parênteses fechados." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Argumentos esperados: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "Argumentos esperados: {0}" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Esperava parêntese fechado." @@ -5455,19 +5497,19 @@ msgstr "Esperava vírgula." msgid "Expected end of expression." msgstr "Fim esperado da expressão." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Nome esperado da entrada dos dados." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Parêntese esperado da abertura." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Início esperado da expressão." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Nome esperado da variável." @@ -5475,7 +5517,7 @@ msgstr "Nome esperado da variável." msgid "Experimental" msgstr "Experimental" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportar Todos os Dados Salvos do Wii" @@ -5486,11 +5528,11 @@ msgstr "Exportar Todos os Dados Salvos do Wii" msgid "Export Failed" msgstr "Falha ao Exportar" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exportar Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exportar Gravação..." @@ -5518,7 +5560,7 @@ msgstr "Exportar como .&gcs..." msgid "Export as .&sav..." msgstr "Exportar como .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5546,35 +5588,35 @@ msgstr "IP Externo" msgid "External Frame Buffer (XFB)" msgstr "Frame Buffer Externo (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Extrair Certificados da NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Extrair Disco Inteiro..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Extrair Partição Inteira..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extrair Arquivo..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Extrair Arquivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Extrair Dados do Sistema..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Extraindo Todos os Arquivos..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Extraindo Diretório..." @@ -5604,7 +5646,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Falha ao anexar ao arquivo de assinatura '%1'" @@ -5679,7 +5721,7 @@ msgstr "" "Falha ao excluir Memory Card do NetPlay. Verifique suas permissões de " "gravação." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Falha ao excluir o arquivo selecionado." @@ -5710,15 +5752,15 @@ msgstr "Falha ao exportar %n de %1 arquivo(s) de jogo(s) salvo(s)." msgid "Failed to export the following save files:" msgstr "Falha ao exportar os seguintes dados salvos:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Falha ao extrair os certificados da NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Falha ao extrair arquivo." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Falha ao extrair dados do sistema." @@ -5740,14 +5782,14 @@ msgstr "Falha ao localizar um ou mais símbolos do Direct3D" msgid "Failed to import \"%1\"." msgstr "Falha ao importar \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5755,7 +5797,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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5766,7 +5808,7 @@ msgstr "" "NAND (Ferramentas -> Gerenciar NAND -> Verificar NAND...) , então importe os " "dados salvos novamente." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Falha ao inicializar o núcleo" @@ -5789,11 +5831,11 @@ msgid "Failed to install pack: %1" msgstr "Falha ao instalar pacote: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Falha ao instalar esse software na NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5801,8 +5843,8 @@ msgstr "" "Falha ao acessar a porta %1. Existe outra instância do servidor NetPlay em " "execução?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Falha ao carregar o módulo RSO em %1" @@ -5814,7 +5856,7 @@ msgstr "Falha ao carregar d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Falha ao carregar dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Falha ao carregar o arquivo de mapa '%1'" @@ -5855,7 +5897,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "Falha ao abrir \"{0}\" para escrita." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Falha ao abrir '%1'" @@ -5897,7 +5939,7 @@ msgstr "" msgid "Failed to open file." msgstr "Falha ao abrir o arquivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Falha ao abrir o servidor" @@ -6065,19 +6107,19 @@ msgstr "Falha ao salvar o estado do Branch Watch \"%1\"" msgid "Failed to save FIFO log." msgstr "Falha ao salvar o log FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 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:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Falha ao salvar o arquivo de assinatura '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 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:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Falha ao salvar no arquivo de assinatura '%1'" @@ -6137,8 +6179,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Falha" @@ -6146,11 +6188,12 @@ msgstr "Falha" msgid "Fair Input Delay" msgstr "Host Imparcial" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Configurações de Região" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Região Padrão:" @@ -6188,9 +6231,9 @@ msgstr "Tipo de Figura" msgid "File Details" msgstr "Detalhes do Arquivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Formato" @@ -6202,20 +6245,20 @@ msgstr "Formato do Arquivo:" msgid "File Info" msgstr "Informações do Arquivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Nome do Arquivo" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Local" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Tamanho" @@ -6321,9 +6364,9 @@ msgstr "Bandeiras" msgid "Float" msgstr "Flutuação" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Seguir &vertente" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "Seguir &Branch" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6399,7 +6442,7 @@ msgstr "" "Opção ativada pois o backend %1 não suporta shaders de " "geometria." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6416,7 +6459,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6467,20 +6510,20 @@ msgstr "%n endereço(s) encontrado(s)." msgid "Frame %1" msgstr "Quadro %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avançar Quadro" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Diminuir Velocidade" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Aumentar Velocidade" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Redefinir Velocidade" @@ -6541,11 +6584,11 @@ msgstr "" msgid "FreeLook" msgstr "Olhar Livre" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Olhar Livre" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Ativar/Desativar Olhar Livre" @@ -6579,11 +6622,12 @@ msgstr "De:" msgid "FullScr" msgstr "Tela Cheia" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Função" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "Configurações de Funcionamento" @@ -6603,7 +6647,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "Local do Cartucho de GBA:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "Núcleo do GBA" @@ -6619,11 +6663,11 @@ msgstr "Configurações do GBA" msgid "GBA TAS Input %1" msgstr "Entrada de Dados TAS - GBA %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "Volume do GBA" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "Tamanho da Janela do GBA" @@ -6761,11 +6805,11 @@ msgstr "Jogo" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Cartuchos do Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6801,8 +6845,8 @@ msgstr "Gama do Jogo" msgid "Game Gamma:" msgstr "Gama do Jogo:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID do Jogo" @@ -6933,7 +6977,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Códigos Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6953,14 +6998,23 @@ msgid "Generate Action Replay Code(s)" msgstr "Gerar Código(s) do Action Replay" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Gerar uma Nova ID de Estatísticas " +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" +"Gera uma nova ID anônima para suas estatísticas de uso. Isso irá desvincular " +"quaisquer estatísticas de uso futuras das suas estatísticas anteriores." + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Código(s) AR gerado(s)." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Nomes de símbolos gerados a partir de '%1'" @@ -6978,7 +7032,7 @@ msgstr "Alemanha" msgid "GetDeviceList failed: {0}" msgstr "Falha no GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -7011,7 +7065,7 @@ msgstr "Gráficos" msgid "Graphics Mods" msgstr "Mods Gráficos" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Configurações" @@ -7020,7 +7074,7 @@ msgstr "Configurações" msgid "Graphics mods are currently disabled." msgstr "Os mods gráficos estão desativados no momento." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -7047,7 +7101,7 @@ msgstr "Verde Esquerdo" msgid "Green Right" msgstr "Verde Direito" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Exibição em Grade" @@ -7129,7 +7183,7 @@ msgstr "Ocultar" msgid "Hide &Controls" msgstr "Ocultar &Controles" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Ocultar Tudo" @@ -7147,7 +7201,7 @@ msgstr "Ocultar GBAs Remotos" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" @@ -7156,7 +7210,7 @@ msgstr "" "

Na dúvida, selecione \"Ao Mover\"." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Alto" @@ -7225,7 +7279,7 @@ msgstr "Nome do Hospedeiro" msgid "Hotkey Settings" msgstr "Configurações das Teclas de Atalho" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7352,11 +7406,11 @@ msgstr "" "Adequado para jogos baseados em turnos com controles sensíveis ao tempo, " "como golfe." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "ID de Estatísticas" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7413,6 +7467,25 @@ msgstr "" "pode ser útil para testes.

Na dúvida, mantenha essa " "opção desativada." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" +"Se ativado, o Dolphin pode coletar dados relacionados ao desempenho, uso de " +"recursos e configurações do emulador, assim como informações sobre o seu " +"hardware e sistema operacional.\n" +"\n" +"Dados pessoais nunca serão coletados. Essas informações nos ajudam a " +"compreender como os usuários e os jogos emulados utilizam o Dolphin e a " +"priorizar nossos esforços. Elas também nos ajudam a identificar " +"configurações raras que estejam causando erros ou problemas de desempenho e " +"estabilidade." + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7485,7 +7558,7 @@ msgstr "" "levemente o desempenho.

Na dúvida, mantenha essa " "opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Importar Backup da NAND do BootMii..." @@ -7500,15 +7573,15 @@ msgstr "Falha ao Importar" msgid "Import Save File(s)" msgstr "Importar Arquivo(s) de Jogo Salvo" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importar Dados Salvos do Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importando backup da NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7576,24 +7649,24 @@ msgstr "Valor do tempo de jogo incorreto!" msgid "Increase" msgstr "Aumentar" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Aumentar Convergência" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Aumentar Profundidade" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Aumentar Velocidade" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Aumentar Resolução Interna" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Aumentar Slot de Estado Selecionado" @@ -7644,8 +7717,8 @@ msgstr "Informações" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informação" @@ -7659,10 +7732,10 @@ msgstr "Injetar" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Entrada de Dados" @@ -7681,13 +7754,10 @@ msgid "Insert &BLR" msgstr "Inserir &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Inserir &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Inserir &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Inserir Cartão SD" @@ -7705,7 +7775,7 @@ msgstr "Partição de Instalação (%1)" msgid "Install Update" msgstr "Instalar Atualização" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Instalar WAD..." @@ -7713,8 +7783,9 @@ msgstr "Instalar WAD..." msgid "Install to the NAND" msgstr "Instalar na NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instrução" @@ -7728,7 +7799,7 @@ msgstr "Instrução" msgid "Instruction Breakpoint" msgstr "Ponto de Interrupção da Instrução" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instrução:" @@ -7737,7 +7808,7 @@ msgstr "Instrução:" msgid "Instruction: %1" msgstr "Instrução: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7805,8 +7876,8 @@ msgid "" msgstr "" "Erro Interno do LZO - falha ao processar texto de versão extraído ({0} / {1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Resolução Interna" @@ -7823,7 +7894,7 @@ msgstr "Erro interno enquanto gera o código AR." msgid "Interpreter (slowest)" msgstr "Interpretador (muito lento)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Núcleo do Interpretador" @@ -7831,7 +7902,7 @@ msgstr "Núcleo do Interpretador" msgid "Invalid Expression." msgstr "Expressão Inválida" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "JSON inválido recebido do serviço de atualizações automáticas: {0}" @@ -7839,7 +7910,7 @@ msgstr "JSON inválido recebido do serviço de atualizações automáticas: {0}" msgid "Invalid Mixed Code" msgstr "Código Misturado Inválido" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "O pacote %1 fornecido é inválido: %2" @@ -7848,7 +7919,7 @@ msgstr "O pacote %1 fornecido é inválido: %2" msgid "Invalid Player ID" msgstr "ID de Jogador Inválida" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Endereço do módulo do RSO inválido: %1" @@ -7930,11 +8001,11 @@ msgstr "Itália" msgid "Item" msgstr "Item" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "Link de Blocos JIT Desativado" @@ -7942,47 +8013,47 @@ msgstr "Link de Blocos JIT Desativado" msgid "JIT Blocks" msgstr "Blocos JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "Vertente do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "Ponto Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "Inteiro do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "LoadStore Flutuante do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "LoadStore do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "LoadStore Emparelhado do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "LoadStore lXz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "LoadStore lbzx do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "LoadStore lwz do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT Desligado (Núcleo do JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "Emparelhamento do JIT Desligado" @@ -7994,14 +8065,15 @@ msgstr "Recompilador JIT ARM64 (recomendado)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "Recompilador JIT x86-64 (recomendado)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "Registro do Cache do JIT Desligado" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "Registros do Sistema do JIT Desligado" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -8012,11 +8084,11 @@ msgstr "" "nunca deveria acontecer. Por favor relate este incidente no bug tracker. O " "Dolphin irá fechar agora." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT não está ativo" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japão" @@ -8040,7 +8112,7 @@ msgstr "" "Kaos é o único vilão pra esse troféu e está sempre destrancado. Não há " "necessidade de editar nada!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Manter em Execução" @@ -8075,7 +8147,7 @@ msgstr "Teclado" msgid "Keys" msgstr "Teclas" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -8083,7 +8155,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Remover Jogador" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Coréia" @@ -8222,6 +8294,19 @@ msgstr "" "Clique com os botões Esquerdo/Direito pra configurar a saída de dados.\n" "Clique com o botão do meio pra limpar." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" +"Permite utilizar idiomas e outras configurações relacionadas à região que " +"podem não ser suportadas pelo jogo. Pode causar problemas e travamentos." +"

Essa opção não pode ser alterada enquanto a emulação estiver em " +"execução.

Na dúvida, mantenha essa opção desativada." +"" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8255,11 +8340,11 @@ msgstr "Luz" msgid "Limit Chunked Upload Speed:" msgstr "Limitar Velocidade de Envio de Fragmentos:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Selecionar Colunas" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Exibição em Lista" @@ -8269,17 +8354,17 @@ msgstr "Escutando" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Carregar" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Carregar o &Arquivo do Mapa Ruim..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Carregar o &Outro Arquivo do Mapa..." @@ -8288,8 +8373,8 @@ msgid "Load Branch Watch &From..." msgstr "Carregar Branch Watch &De..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" -msgstr "Carregar estado do Branch Watch" +msgid "Load Branch Watch Snapshot" +msgstr "Carregar Estado do Branch Watch" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8299,7 +8384,7 @@ msgstr "Carregar Texturas Personalizadas" msgid "Load File" msgstr "Carregar Arquivo" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Carregar Menu Principal do GameCube" @@ -8307,16 +8392,21 @@ msgstr "Carregar Menu Principal do GameCube" msgid "Load Host's Save Data Only" msgstr "Somente Carregar Dados Salvos do Host" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Carregar Anterior" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "Carregar Arquivo de Mapa" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Carregamento:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Abrir ROM" @@ -8324,104 +8414,104 @@ msgstr "Abrir ROM" msgid "Load Slot" msgstr "Carregar Slot" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Carregar Estado" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Carregar Estado Anterior 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Carregar Estado Anterior 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Carregar Estado Anterior 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Carregar Estado Anterior 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Carregar Estado Anterior 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Carregar Estado Anterior 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Carregar Estado Anterior 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Carregar Estado Anterior 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Carregar Estado Anterior 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Carregar Estado Anterior 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Carregar do Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Carregar do Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Carregar do Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Carregar do Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Carregar do Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Carregar do Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Carregar do Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Carregar do Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Carregar do Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Carregar do Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Carregar do Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Carregar do Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Carregar Wii System Menu %1" @@ -8429,20 +8519,15 @@ msgstr "Carregar Wii System Menu %1" msgid "Load and Write Host's Save Data" msgstr "Carregar e Armazenar Dados Salvos do Host" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Carregar do Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Carregar o arquivo do mapa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Carregar vWii System Menu %1" @@ -8450,7 +8535,7 @@ msgstr "Carregar vWii System Menu %1" msgid "Load..." msgstr "Carregar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Símbolos carregados do '%1'" @@ -8482,14 +8567,14 @@ msgstr "IP Local" msgid "Lock Mouse Cursor" msgstr "Travar Cursor do Mouse" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Trancado" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" @@ -8499,7 +8584,7 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Log" @@ -8509,10 +8594,11 @@ msgid "Log Configuration" msgstr "Configurações" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Entrar" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Registrar Cobertura das Instruções do JIT" @@ -8555,7 +8641,7 @@ msgstr "Reprodução contínua" msgid "Lost connection to NetPlay server..." msgstr "Perdeu a conexão com o servidor do NetPlay..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Baixo" @@ -8618,9 +8704,9 @@ msgstr "Certifique-se que o valor do tempo de jogo seja válido!" msgid "Make sure there is a Skylander in slot %1!" msgstr "Certifique-se que há um Skylander no slot %1!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Fabricante" @@ -8629,7 +8715,7 @@ msgstr "Fabricante" msgid "Maker:" msgstr "Fabricante:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8642,7 +8728,7 @@ msgstr "" "

Na dúvida, mantenha essa opção desativada." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Gerenciar NAND" @@ -8681,7 +8767,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Pode causar lentidão no Wii Menu e em alguns jogos." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Médio" @@ -8697,7 +8783,7 @@ msgstr "Pontos de Interrupção da Memória" msgid "Memory Card" msgstr "Memory Card" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Gerenciador de Memory Cards" @@ -8725,7 +8811,7 @@ msgstr "MemoryCard: Leitura chamada com endereço inválido da fonte ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Gravação chamada com endereço de destino inválido ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8737,7 +8823,7 @@ msgstr "" "recomendado manter um backup de ambas as NANDs. Tem certeza de que deseja " "continuar?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8821,8 +8907,8 @@ msgstr "Modificar Slot" msgid "Modifying Skylander: %1" msgstr "Modificando o Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Módulos achados: %1" @@ -8864,7 +8950,7 @@ msgstr "Visibilidade do Cursor" msgid "Move" msgstr "Mover" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Gravação" @@ -8890,10 +8976,10 @@ msgstr "Multiplicador" msgid "N&o to All" msgstr "Não para T&odos" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Verificação da NAND" @@ -8902,8 +8988,8 @@ msgstr "Verificação da NAND" msgid "NKit Warning" msgstr "Aviso sobre o NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8912,7 +8998,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8935,8 +9021,8 @@ msgstr "" "mesmo valor aqui.

Na dúvida, mantenha essa opção em " "2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8949,11 +9035,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Nome" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Nome da nova etiqueta:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Nome da etiqueta a remover:" @@ -9039,7 +9125,7 @@ msgid "Never Auto-Update" msgstr "Desativar Atualizações" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Novo" @@ -9064,7 +9150,7 @@ msgstr "Nova Pesquisa" msgid "New Tag..." msgstr "Nova Etiqueta..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Uma nova ID foi gerada." @@ -9072,12 +9158,13 @@ msgstr "Uma nova ID foi gerada." msgid "New instruction:" msgstr "Nova instrução:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Nova etiqueta" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Próximo Perfil de Jogo" @@ -9085,8 +9172,9 @@ msgstr "Próximo Perfil de Jogo" msgid "Next Match" msgstr "Combinação Seguinte" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Próximo Perfil" @@ -9173,7 +9261,7 @@ msgstr "Nenhum mod gráfico selecionado." msgid "No input" msgstr "Sem entrada dos dados" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Não foram detectados problemas." @@ -9219,7 +9307,7 @@ msgstr "" "estado para evitar perda de sincronia com a gravação" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9440,7 +9528,7 @@ msgstr "" "são executados apenas quando uma ação específica é executada no software " "emulado." -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Documentação Online" @@ -9448,7 +9536,7 @@ msgstr "&Documentação Online" msgid "Only Show Collection" msgstr "Mostrar Apenas Coleção" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9456,7 +9544,7 @@ msgstr "" "Só anexar símbolos com o prefixo:\n" "(Em branco pra todos os símbolos)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9479,14 +9567,18 @@ msgstr "Abrir &Local do Arquivo" msgid "Open &User Folder" msgstr "Abrir Pasta do &Usuário" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "Abrir Conquistas" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Abrir Diretório..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Abrir log do FIFO" +msgid "Open FIFO Log" +msgstr "Abrir Registro FIFO" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9587,7 +9679,7 @@ msgstr "Outros" msgid "Other Partition (%1)" msgstr "Outra Partição (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Outros" @@ -9604,7 +9696,7 @@ msgstr "Outro jogo..." msgid "Output" msgstr "Saída dos Dados" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Saída da Reamostragem" @@ -9612,16 +9704,16 @@ msgstr "Saída da Reamostragem" msgid "Output Resampling:" msgstr "Saída da Reamostragem:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Sobrescrito" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Reproduzir Gravação de Replay..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9650,7 +9742,7 @@ msgstr "Arquivo de imagem PNG (*.png);;Todos os arquivos (*)" msgid "PPC Size" msgstr "Tamanho do PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC vs Hospedeiro" @@ -9663,7 +9755,7 @@ msgstr "Controle" msgid "Pads" msgstr "Pads" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parâmetros" @@ -9726,7 +9818,7 @@ msgstr "Pausar" msgid "Pause Branch Watch" msgstr "Pausar Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "&Pausar no Fim do Replay" @@ -9779,7 +9871,7 @@ msgstr "Velocidade pico dos movimentos de balanço externos." msgid "Per-Pixel Lighting" msgstr "Iluminação Por Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Executar Atualização do Sistema Online" @@ -9809,11 +9901,11 @@ msgstr "Físico" msgid "Physical address space" msgstr "Espaço do endereço físico" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Escolha a fonte de depuração" @@ -9829,8 +9921,8 @@ msgstr "Pra baixo" msgid "Pitch Up" msgstr "Pra cima" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plataforma" @@ -9842,7 +9934,7 @@ msgstr "Reproduzir" msgid "Play / Record" msgstr "Reproduzir / Gravar" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Reproduzir Gravação" @@ -9942,7 +10034,7 @@ msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" "Possível dessincronia detectada: %1 pode ter dessincronizado no quadro %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Efeito de Pós-Processamento" @@ -9995,7 +10087,7 @@ msgstr "" msgid "Presets" msgstr "Predefinições" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Sincronizar (Redirecionamento Bluetooth)" @@ -10018,9 +10110,9 @@ msgstr "" "

Não recomendado, use apenas se os outros modos não " "entregarem resultados satisfatórios." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Perfil de Jogo Anterior" @@ -10028,8 +10120,9 @@ msgstr "Perfil de Jogo Anterior" msgid "Previous Match" msgstr "Combinação Anterior" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Perfil Anterior" @@ -10079,13 +10172,13 @@ msgstr "" msgid "Profile" msgstr "Perfil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Contador do Programa" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -10105,11 +10198,11 @@ msgstr "" msgid "Public" msgstr "Público" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Limpar Cache da Lista de Jogos" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Coloque as ROMs do IPL na pasta User/GC//." @@ -10138,7 +10231,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Pergunta" @@ -10163,11 +10256,11 @@ msgstr "R (analógico)" msgid "READY" msgstr "PRONTO" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "Módulos do RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "Auto-detecção do RSO" @@ -10204,13 +10297,13 @@ msgstr "Bruto" msgid "Raw Internal Resolution" msgstr "Resolução Interna Bruta" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Su&bstituir instrução" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "Su&bstituir Instrução" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Ler" @@ -10233,7 +10326,7 @@ msgstr "Somente-leitura" msgid "Read or Write" msgstr "Ler ou Gravar" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Modo Somente Leitura" @@ -10292,7 +10385,7 @@ msgstr "Vermelho Esquerdo" msgid "Red Right" msgstr "Vermelho Direito" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10346,8 +10439,8 @@ msgstr "Valores atuais atualizados." msgid "Refreshing..." msgstr "Atualizando..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Região" @@ -10368,7 +10461,8 @@ msgstr "Entrada Relativa dos Dados" msgid "Relative Input Hold" msgstr "Manter a Entrada Relativa dos Dados" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "Lançamentos (a cada poucos meses)" @@ -10397,7 +10491,7 @@ msgstr "Remover Dados Não Utilizados (Irreversível):" msgid "Remove Tag..." msgstr "Remover Etiqueta..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Remover etiqueta" @@ -10413,7 +10507,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "Renomear Símbolo" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -10450,7 +10544,7 @@ msgstr "" "ativada.
" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10462,7 +10556,7 @@ msgstr "Redefinir" msgid "Reset All" msgstr "Resetar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Redefinir Ignorar Gerenciadores de Pânico" @@ -10514,9 +10608,9 @@ msgstr "Reinicialização Necessária" msgid "Restore Defaults" msgstr "Restaurar Padrões" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Restaurar instrução" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "Restaurar Instrução" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10680,21 +10774,21 @@ msgstr "" msgid "Rumble" msgstr "Vibração" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Correr &Até Aqui" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "Executar A&té Aqui" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Executar Instâncias do GBA em Processos Dedicados" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "Executar até" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "Executar Até" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Executar até (ignorando pontos de interrupção)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "Executar Até (ignorar Pontos de Interrupção)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10763,11 +10857,11 @@ msgstr "Contexto do SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Sa&lvar Código" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Salvar Estado Salvo" @@ -10779,7 +10873,7 @@ msgstr "Seguro" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10794,23 +10888,35 @@ msgid "Save Branch Watch &As..." msgstr "S&alvar Branch Watch Como..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" -msgstr "Salvar estado do Branch Watch" +msgid "Save Branch Watch Snapshot" +msgstr "Salvar Estado do Branch Watch" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "Salvar Arquivo de Saída Combinado Como" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "Salvar Imagem Convertida" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Exportar Dados Salvos" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Salvar o Log do FIFO" +msgid "Save FIFO Log" +msgstr "Salvar Registro FIFO" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Salvar o Arquivo em" +msgid "Save File To" +msgstr "Salvar Arquivo Em" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10821,15 +10927,19 @@ msgstr "Jogo Salvo" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Arquivo de jogo salvo (*.sav);;Todos os arquivos (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Importar Dados Salvos" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "Salvar Arquivo de Mapa" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Salvar Estado Mais Antigo" @@ -10837,73 +10947,77 @@ msgstr "Salvar Estado Mais Antigo" msgid "Save Preset" msgstr "Salvar Predefinição" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Salvar o Arquivo da Gravação Como" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "Salvar Arquivo de Assinatura" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Salvar Estado" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Salvar no Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Salvar no Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Salvar no Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Salvar no Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Salvar no Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Salvar no Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Salvar no Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Salvar no Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Salvar no Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Salvar no Slot 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Salvar no Arquivo..." -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Salvar no Slot Mais Antigo" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Salvar no Slot" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Salvar o Mapa dos Símbolos &Como..." @@ -10923,11 +11037,7 @@ msgstr "Salvar como Predefinição..." msgid "Save as..." msgstr "Salvar como..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Salvar o arquivo de saída combinada dos dados como" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10941,19 +11051,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Salvar na Mesma Pasta da ROM" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Salvar o arquivo do mapa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Salvar o arquivo de assinatura" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Salvar no Slot Selecionado" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Slot %1 - %2" @@ -10989,7 +11091,7 @@ msgstr "Screenshot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Pesquisar" @@ -11018,7 +11120,7 @@ msgstr "" "A busca atualmente não é possível no espaço do endereço virtual. Por favor " "execute o jogo um pouco e tente de novo." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Procurar uma Instrução" @@ -11026,7 +11128,7 @@ msgstr "Procurar uma Instrução" msgid "Search games..." msgstr "Pesquisar jogos..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Procurar instrução" @@ -11064,18 +11166,18 @@ msgstr "Selecionar" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" -"Selecione o arquivo de salve automático do estado do Branch Watch (para usar " -"o local de pasta do usuário, cancele)" +"Selecione Arquivo de Salvamento Automático do Estado do Branch Watch (para " +"utilizar a pasta do usuário, cancele)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Selecione o Caminho do Dump" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Selecione o Diretório de Exportação" @@ -11083,18 +11185,22 @@ msgstr "Selecione o Diretório de Exportação" msgid "Select Figure File" msgstr "Selecionar Arquivo da Figura" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Selecionar a BIOS do GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Selecionar a ROM do GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Selecione o Caminho dos Saves do GBA" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "Selecione Arquivo de Chaves (Backup da OTP/SEEPROM)" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Selecionar" @@ -11103,6 +11209,10 @@ msgstr "Selecionar" msgid "Select Load Path" msgstr "Selecione o Caminho Pra Carregar" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "Selecione Backup da NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Selecione o Caminho do Pacote de Recursos" @@ -11111,6 +11221,14 @@ msgstr "Selecione o Caminho do Pacote de Recursos" msgid "Select Riivolution XML file" msgstr "Selecione o arquivo XML do Riivolution" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "Selecione Imagem do Cartão SD" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "Selecione Arquivo de Dados Salvos" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Selecione a Correção do Skylander" @@ -11119,58 +11237,62 @@ msgstr "Selecione a Correção do Skylander" msgid "Select Skylander File" msgstr "Selecione o arquivo do Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Slot %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Selecionar" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Slot de Estado Salvo" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Selecionar Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Selecionar Slot 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Selecionar Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Selecionar Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Selecionar Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Selecionar Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Selecionar Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Selecionar Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Selecionar Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Selecionar Slot 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "Selecione Software a ser Instalado na NAND" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Selecione o Caminho do WFS" @@ -11188,24 +11310,20 @@ msgstr "Selecione um Diretório" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Selecione um Arquivo" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "Selecione uma pasta pra sincronizar com a imagem do cartão SD" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "Selecione a Pasta a ser Sincronizada com a Imagem do Cartão SD" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Selecione um Jogo" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Selecione uma Imagem do Cartão SD" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Selecione um arquivo" @@ -11214,19 +11332,15 @@ msgstr "Selecione um arquivo" msgid "Select a game" msgstr "Selecione um jogo" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Selecione um título pra instalar no NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Selecione os Cartões do e-Reader" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Selecione o endereço do módulo do RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Selecione o Arquivo da Gravação a Executar" @@ -11234,23 +11348,6 @@ msgstr "Selecione o Arquivo da Gravação a Executar" msgid "Select the Virtual SD Card Root" msgstr "Selecione a Raiz do Cartão SD Virtual" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Selecione o arquivo das chaves (dump do OTP/SEEPROM)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Importar" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Selecione aonde você quer salvar a imagem convertida" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Selecione aonde você quer salvar as imagens convertidas" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Fonte Selecionada" @@ -11326,7 +11423,7 @@ msgstr "" "dúvida, selecione \"Resolução Interna com Proporção de Tela Corrigida\"." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11404,6 +11501,48 @@ msgstr "" "é recomendado testar cada um e selecionar o backend menos problemático." "

Na dúvida, selecione \"OpenGL\"." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" +"Seleciona qual canal de atualizações a ser utilizado quando o Dolphin " +"verifica se existem novas versões. Se uma nova versão estiver disponível, o " +"Dolphin mostrará um resumo das alterações efetuadas desde a versão em " +"execução atualmente e perguntará se você deseja atualizar o emulador." +"

O canal 'Dev' tem as atualizações mais recentes do Dolphin e " +"normalmente recebe novas versões múltiplas vezes por dia. Selecione esse " +"canal se você deseja ter acesso aos recursos e correções mais recentes." +"

O canal 'Lançamentos' é atualizado a cada poucos meses. Alguns " +"motivos para utilizar esse canal:
- Você prefere utilizar versões que " +"passaram por testes adicionais.
- NetPlay exige que todos os jogadores " +"utilizam a mesma versão, a versão Lançamento mais recente terá mais " +"jogadores disponíveis.
- Você utiliza o sistema de estados salvos com " +"frequência, que não garante compatibilidade com versões diferentes do " +"Dolphin. Se isso se aplica a você, certifique-se de criar dados salvos " +"dentro do jogo antes de atualizar (por exemplo, salve o jogo da mesma " +"maneira que você faria ao jogar em um console GameCube ou Wii), e recarregue " +"esses dados salvos após atualizar o Dolphin e antes de criar novos estados " +"salvos.

Selecionar \"Desativar Atualizações\" fará com que o Dolphin " +"não verifique automaticamente se novas versões estão disponíveis." +"

Na dúvida, selecione \"Lançamentos (a cada poucos " +"meses)\"." + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Enviar" @@ -11412,6 +11551,21 @@ msgstr "Enviar" msgid "Sensor Bar Position:" msgstr "Posição da Sensor Bar:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" +"Separa a emulação da CPU e da GPU em threads separadas. Reduz a demanda em " +"uma única thread ao dividir a carga mais pesada do Dolphin em dois núcleos, " +"que normalmente melhora o desempenho. No entanto, isso também pode causar " +"defeitos e travamentos.

Essa opção não pode ser alterada enquanto a " +"emulação estiver em execução.

Na dúvida, mantenha " +"essa opção ativada." + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11444,39 +11598,35 @@ msgstr "Definir &Valor" msgid "Set Brea&kpoint" msgstr "Definir Ponto de In&terrupção" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "Definir Arquivo de Memory Card para o Slot A" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "Definir Arquivo de Memory Card para o Slot B" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Definir PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "Definir &Endereço Final do Símbolo" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "Definir Tamanho do &Símbolo" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "Definir Endereço Final do Símbolo" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Definir como &ISO padrão" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Definir arquivo do memory card pro Slot A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Definir arquivo do memory card pro Slot B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Definir final do &endereço do símbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Definir tamanho do &símbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Definir final do endereço do símbolo" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Definir tamanho do símbolo (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11493,7 +11643,7 @@ msgstr "Define o idioma do sistema do Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11511,10 +11661,20 @@ msgstr "" "Define a latência em milissegundos. Valores mais altos podem reduzir " "picotamentos no áudio. Disponível somente em alguns backends." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" +"Define a região a ser utilizada nos softwares que não puderem ter a região " +"determinada automaticamente.

Essa opção não pode ser alterada " +"enquanto a emulação estiver em execução." + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" "Define o estilo para a interface do Dolphin. Qualquer estilo customizado que " @@ -11571,11 +11731,11 @@ msgstr "Controle Shinkansen" msgid "Show % Speed" msgstr "Mostrar Velocidade em %" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Mostrar &Log" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Mostrar Barra de &Ferramentas" @@ -11583,15 +11743,15 @@ msgstr "Mostrar Barra de &Ferramentas" msgid "Show Active Title in Window Title" msgstr "Mostrar Software em Execução no Título da Janela" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Mostrar Tudo" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Austrália" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Mostrar Jogo em Execução no Discord" @@ -11600,7 +11760,7 @@ msgstr "Mostrar Jogo em Execução no Discord" msgid "Show Disabled Codes First" msgstr "Mostrar Códigos Desativados Primeiro" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL" @@ -11613,7 +11773,7 @@ msgstr "Mostrar Códigos Ativados Primeiro" msgid "Show FPS" msgstr "Mostrar FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Mostrar Contador de Quadros" @@ -11621,15 +11781,15 @@ msgstr "Mostrar Contador de Quadros" msgid "Show Frame Times" msgstr "Mostrar Duração dos Quadros" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "França" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Alemanha" @@ -11637,27 +11797,27 @@ msgstr "Alemanha" msgid "Show Golf Mode Overlay" msgstr "Mostrar Sobreposição do Modo Golfe" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Mostrar Base Infinity" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Mostrar Entrada de Dados" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Itália" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Japão" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Coréia" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Mostrar Contador de Lag" @@ -11665,7 +11825,7 @@ msgstr "Mostrar Contador de Lag" msgid "Show Language:" msgstr "Idioma:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Mostrar &Configurações do Log" @@ -11677,7 +11837,7 @@ msgstr "Mostrar Mensagens do NetPlay" msgid "Show NetPlay Ping" msgstr "Mostrar Ping do NetPlay" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Holanda" @@ -11685,12 +11845,12 @@ msgstr "Holanda" msgid "Show On-Screen Display Messages" msgstr "Mostrar Mensagens na Tela" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Europa" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Mostrar PC" @@ -11698,7 +11858,7 @@ msgstr "Mostrar PC" msgid "Show Performance Graphs" msgstr "Mostrar Gráfico de Desempenho" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Mostrar Plataformas" @@ -11706,23 +11866,23 @@ msgstr "Mostrar Plataformas" msgid "Show Projection Statistics" msgstr "Exibir Estatísticas de Projeção" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Mostrar Regiões" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Mostrar Contador de Regravações" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Rússia" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Mostrar Portal Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Espanha" @@ -11734,19 +11894,23 @@ msgstr "Mostrar Velocidade em Cores" msgid "Show Statistics" msgstr "Exibir Estatísticas" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Mostrar Relógio do Sistema" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "Mostrar Alvo na Memória" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Estados Unidos" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Desconhecido" @@ -11758,27 +11922,27 @@ msgstr "Mostrar Duração do VBlank" msgid "Show VPS" msgstr "Mostrar VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Global" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Mostrar na &memória" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "Mostrar na &Memória" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Mostrar no Código" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Mostrar na Memória" @@ -11795,13 +11959,9 @@ msgstr "Mostrar na memória" msgid "Show in server browser" msgstr "Mostrar no navegador do servidor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Mostrar o alvo na &memória" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11851,23 +12011,6 @@ msgstr "" "velocidade total.

Na dúvida, mantenha essa opção " "desativada." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" -"Mostra o cursor do mouse o tempo todo.

Na dúvida, " -"selecione \"Ao Mover\"." - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" -"Mostra o cursor do mouse sempre que for movido, ocultando automaticamente " -"após alguns segundos parado.

Na dúvida, selecione " -"essa opção." - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11897,6 +12040,23 @@ msgstr "" "desvio padrão.

Na dúvida, mantenha essa opção " "desativada." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" +"Mostra o cursor do mouse o tempo todo.

Na dúvida, " +"selecione \"Ao Mover\"." + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" +"Mostra o cursor do mouse sempre que for movido, ocultando automaticamente " +"após alguns segundos parado.

Na dúvida, selecione " +"essa opção." + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11942,6 +12102,18 @@ msgstr "" "Mostra várias estatísticas de renderização.

Na " "dúvida, mantenha essa opção desativada." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" +"Mostra qual jogo está em execução e a duração da sessão de jogo atual no seu " +"status do Discord.

Essa opção não pode ser alterada enquanto a " +"emulação estiver em execução.

Na dúvida, mantenha " +"essa opção ativada." + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Lado a Lado" @@ -11958,7 +12130,7 @@ msgstr "Alternar Horizontal" msgid "Sideways Wii Remote" msgstr "Wii Remote na Horizontal" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Base de Dados da Assinatura" @@ -12007,7 +12179,7 @@ msgstr "" "Tamanho do buffer de alongamento (em ms). Valores muito baixos podem causar " "picotamentos no áudio." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Ignorar" @@ -12205,6 +12377,10 @@ msgstr "" msgid "Speed" msgstr "Velocidade" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "Limite de Velocidade" + #. 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:262 @@ -12241,11 +12417,11 @@ msgstr "Iniciar Branch Watch" msgid "Start New Cheat Search" msgstr "Iniciar Nova Pesquisa" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Iniciar Gravação de Replay" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Iniciar Gravação" @@ -12284,39 +12460,39 @@ msgstr "Passo" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Entrada" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Saída" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Passagem" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Saída bem-sucedida!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "O tempo pra sair esgotou!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Passagem em progresso..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Passo bem-sucedido!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Passando" @@ -12325,7 +12501,7 @@ msgstr "Passando" msgid "Stereo" msgstr "Estéreo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Modo de Estereoscopia 3D" @@ -12355,7 +12531,7 @@ msgstr "Eixo" msgid "Stop" msgstr "Parar" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Parar a Reprodução/Gravação de Replay" @@ -12434,14 +12610,14 @@ msgstr "Estilo:" msgid "Stylus" msgstr "Stylus" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Sucesso" @@ -12468,24 +12644,24 @@ msgstr "%n de %1 arquivo(s) de jogo salvo exportados com sucesso." msgid "Successfully exported save files" msgstr "Arquivos dos saves exportados com sucesso" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Certificados da NAND extraídos com sucesso" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Arquivo extraído com sucesso." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Dados extraídos do sistema com sucesso." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Arquivo de dados salvos importado com sucesso." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Software instalado na NAND com sucesso." @@ -12536,7 +12712,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12564,17 +12740,21 @@ msgstr "Alternar para B" msgid "Symbol" msgstr "Símbolo" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Fim do endereço do Símbolo (%1)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "Endereço Final do Símbolo (%1):" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Nome do símbolo:" +msgid "Symbol Name:" +msgstr "Nome do Símbolo:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "Tamanho do Símbolo (%1):" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Símbolos" @@ -12627,7 +12807,7 @@ msgstr "Sincronizando dados salvos..." msgid "System Language:" msgstr "Idioma do Sistema:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Entrada de Dados TAS" @@ -12638,9 +12818,9 @@ msgid "TAS Tools" msgstr "Ferramentas de TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Etiquetas" @@ -12658,7 +12838,7 @@ msgstr "Cauda" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Capturar Tela" @@ -12666,7 +12846,7 @@ msgstr "Capturar Tela" msgid "Target address range is invalid." msgstr "O alcance do endereço alvo é inválido." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12703,7 +12883,7 @@ msgstr "Precisão do Cache de Texturas" msgid "Texture Dumping" msgstr "Exportação de Texturas" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Filtragem de Textura" @@ -12758,7 +12938,7 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "As partições das Masterpieces estão ausentes." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12766,7 +12946,7 @@ msgstr "" "A NAND não pôde ser reparada. É recomendável fazer backup dos dados salvos " "atuais e recomeçar do zero com uma NAND limpa." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "A NAND foi reparada." @@ -12956,7 +13136,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "O sistema de arquivos é inválido ou não pôde ser lido." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -13110,7 +13290,7 @@ msgid "" msgstr "" "O mesmo arquivo não pode ser usado em múltiplos slots; já é usado pelo %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -13150,7 +13330,7 @@ msgstr "O índice de chave comum especificado é {0}, mas deveria ser {1}." msgid "The specified file \"{0}\" does not exist" msgstr "O arquivo especificado \"{0}\" não existe" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -13215,7 +13395,7 @@ msgstr "A partição de atualização está ausente." msgid "The update partition is not at its normal position." msgstr "A partição de atualização não está em sua posição normal." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -13338,7 +13518,7 @@ msgstr "" "Por favor utilize a edição ARM64 do Dolphin para obter a melhor experiência." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Isto não pode ser desfeito!" @@ -13590,7 +13770,7 @@ msgstr "Threads" msgid "Threshold" msgstr "Limite" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13611,10 +13791,10 @@ msgstr "" msgid "Timed Out" msgstr "Tempo Esgotado" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Título" @@ -13622,25 +13802,29 @@ msgstr "Título" msgid "To" msgstr "Até" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Até:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "Alternar &Tela Cheia" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Ativar/Desativar 3D Anáglifo" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Ativar/Desativar 3D Lado a Lado" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Ativar/Desativar 3D Sobreposto" @@ -13648,28 +13832,28 @@ msgstr "Ativar/Desativar 3D Sobreposto" msgid "Toggle All Log Types" msgstr "Ativar/Desativar Todos os Tipos de Logs" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Alternar Proporção de Tela" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Ativar/Desativar Pontos de Interrupção" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Ativar/Desativar Cortar" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Ativar/Desativar Texturas Personalizadas" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Ativar/Desativar Cópias do EFB na RAM" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Ativar/Desativar Névoa" @@ -13681,31 +13865,31 @@ msgstr "Ativar/Desativar Tela Cheia" msgid "Toggle Pause" msgstr "Reproduzir/Pausar" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Inserir/Remover Cartão SD" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Permitir/Ignorar Acesso EFB da CPU" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Ativar/Desativar Exportação de Texturas" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Conectar/Desconectar Teclado USB" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Ativar/Desativar Cópias do XFB na RAM" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Ativar/Desativar Exibição Imediata do XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Falha na tokenização." @@ -13828,7 +14012,7 @@ msgid "Trophy" msgstr "Troféu" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13858,7 +14042,7 @@ msgstr "Emulação de Dispositivo USB" msgid "USB Emulation" msgstr "Emulação USB" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "Emulação de Dispositivos USB" @@ -13910,15 +14094,15 @@ msgstr "" "compilação de shaders com um impacto mínimo no desempenho, mas os resultados " "dependem do comportamento do driver de vídeo." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Incapaz de auto-detectar o módulo do RSO" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Não foi possível contactar o servidor de atualizações." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Não foi possível criar cópia do atualizador." @@ -13959,7 +14143,7 @@ msgstr "" msgid "Unable to read file." msgstr "Não foi possível ler o arquivo." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Não foi possível definir permissões na cópia do atualizador." @@ -13982,11 +14166,11 @@ msgstr "Imagens do GC/Wii sem compressão (*.iso *.gcm)" msgid "Undead" msgstr "Morto-Vivo" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Desfazer Carregamento" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Desfazer Estado Salvo" @@ -14006,7 +14190,7 @@ msgstr "" "Desinstalar o WAD removerá a versão atualmente instalada desse software da " "NAND, sem excluir seus dados salvos. Continuar?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "Estados Unidos" @@ -14107,11 +14291,11 @@ msgstr "Desconhecido (%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Desconhecido (%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Ilimitado" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Fechar ROM" @@ -14119,7 +14303,12 @@ msgstr "Fechar ROM" msgid "Unlock Cursor" msgstr "Destravar Cursor" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "Desbloqueada" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "Desbloqueado em %1" @@ -14219,7 +14408,7 @@ msgstr "Alternar Vertical" msgid "Upright Wii Remote" msgstr "Wii Remote na Vertical" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Configurações de Estatísticas de Uso" @@ -14333,12 +14522,12 @@ msgstr "Nome do Usuário" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" "Usa a base de dados do Dolphin para mostrar nomes formatados corretamente na " -"coluna de título da lista de jogos.

Na dúvida, " +"coluna 'Título' da lista de jogos.

Na dúvida, " "mantenha essa opção ativada." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 @@ -14418,7 +14607,7 @@ msgstr "Ignorar VBI" msgid "Value" msgstr "Valor" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Valor rastreado até a instrução atual." @@ -14506,22 +14695,22 @@ msgstr "Níveis Virtuais" msgid "Virtual address space" msgstr "Espaço do endereço virtual" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volume" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Diminuir Volume" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Alternar Mudo" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Aumentar Volume" @@ -14529,7 +14718,7 @@ msgstr "Aumentar Volume" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "Arquivos WAD (*.wad)" @@ -14666,7 +14855,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Aviso" @@ -14824,7 +15013,7 @@ msgstr "Dispositivos Permitidos no Redirecionamento USB" msgid "Widescreen Hack" msgstr "Hack de Widescreen" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14894,7 +15083,7 @@ msgstr "Wii e Wii Remote" msgid "Wii data is not public yet" msgstr "Dados do Wii ainda não são públicos" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Arquivo de dados salvos do Wii (*.bin);;Todos os arquivos (*)" @@ -14929,11 +15118,11 @@ msgstr "Global" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Gravação" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Salvar Despejo de Log do Bloco JIT" @@ -15103,7 +15292,7 @@ msgstr "" "utilizado exclusivamente pelo Phantasy Star Online Episode I & II. Na " "dúvida, feche essa janela e selecione \"Controle Padrão\"." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" "Você já está executando a versão mais recente disponível no canal de " @@ -15196,7 +15385,7 @@ msgstr "" "Gostaria de interromper a emulação para corrigir o problema?\n" "Se optar por continuar, o áudio pode não funcionar corretamente." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ro.po b/Languages/po/ro.po index f1d9969c0e..1687964d43 100644 --- a/Languages/po/ro.po +++ b/Languages/po/ro.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Arian - Cazare Muncitori , 2014\n" -"Language-Team: Romanian (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Romanian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/ro/)\n" "Language: ro\n" "MIME-Version: 1.0\n" @@ -161,7 +161,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -192,7 +192,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -206,7 +206,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -226,22 +226,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -249,6 +249,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -269,7 +273,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -282,7 +286,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -326,10 +330,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -339,23 +347,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -364,14 +368,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Puncte de întrerupere" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -383,11 +387,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -395,7 +399,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -403,18 +407,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -450,7 +451,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulare" @@ -475,36 +476,36 @@ msgstr "" msgid "&File" msgstr "&Fișier" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Avans Cadru" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Configurări Grafică" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Ajutor" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Configurări Tastă Rapidă" @@ -528,15 +529,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -548,11 +549,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "&Status de Încărcare" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -566,19 +567,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -586,7 +587,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -599,19 +600,19 @@ msgstr "" msgid "&Open..." msgstr "&Deschide..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opțiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pauză" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Redare" @@ -619,7 +620,7 @@ msgstr "&Redare" msgid "&Properties" msgstr "&Proprietăți" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +628,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Înregistrări" @@ -640,12 +641,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Resetează" @@ -657,7 +658,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -669,11 +670,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Stop" @@ -681,7 +682,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -703,17 +704,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Vizualizează" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -725,11 +726,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -749,7 +750,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(oprit)" @@ -773,7 +774,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -851,7 +852,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -863,7 +864,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -899,19 +900,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -935,7 +936,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1032,7 +1033,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1062,8 +1063,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1081,7 +1082,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1091,7 +1092,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1175,7 +1176,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1302,11 +1303,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1340,13 +1341,13 @@ msgstr "Adaugă..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1365,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1425,7 +1426,7 @@ msgstr "Avansat" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1481,7 +1482,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1489,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1498,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1507,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1532,11 +1533,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1594,7 +1595,7 @@ msgstr "Unghi" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1606,19 +1607,19 @@ msgstr "Antialias:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1632,8 +1633,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1644,7 +1645,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1681,8 +1682,8 @@ msgstr "Raport Aspect:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1743,7 +1744,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (Multiple de 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1763,7 +1768,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1777,6 +1782,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1788,7 +1804,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1871,10 +1887,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -1902,7 +1918,7 @@ msgstr "" msgid "Basic" msgstr "Principal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Configurări Principale" @@ -1962,9 +1978,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2000,15 +2016,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2136,30 +2152,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2255,7 +2271,7 @@ msgstr "" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2290,7 +2306,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2352,14 +2368,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2408,7 +2424,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2456,7 +2472,7 @@ msgstr "Schimbă &Discul..." msgid "Change Disc" msgstr "Schimbă Discul" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2516,7 +2532,7 @@ msgstr "Căutare Trișări" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2528,7 +2544,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2546,29 +2562,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Alege un fișier pentru a-l deschide" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Alege dosarul pentru a-l extrage" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2587,7 +2603,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2597,7 +2613,7 @@ msgstr "Curăță" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2618,7 +2634,7 @@ msgstr "" msgid "Close" msgstr "Închide" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2642,7 +2658,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2662,7 +2678,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2697,9 +2713,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2724,7 +2740,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2831,9 +2847,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2846,7 +2862,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "Confirmă la Oprire" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,7 +2873,7 @@ msgstr "" msgid "Connect" msgstr "Conectare" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Conectează Placa de Echilibru" @@ -2865,27 +2881,27 @@ msgstr "Conectează Placa de Echilibru" msgid "Connect USB Keyboard" msgstr "Conectează Tastatura USB" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2930,19 +2946,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2954,6 +2970,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2962,7 +2988,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2970,7 +2996,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2979,7 +3005,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3004,7 +3030,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3091,18 +3117,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3111,18 +3141,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3228,8 +3254,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3325,7 +3351,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3513,24 +3539,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3586,8 +3612,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Șterge" @@ -3605,7 +3631,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3620,9 +3646,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Descriere" @@ -3671,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "Detectare" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3679,7 +3705,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3737,15 +3763,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "Dezactivează Ceața" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3779,7 +3805,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3802,7 +3828,8 @@ msgstr "Disc" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3832,15 +3859,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3850,7 +3877,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Vrei să oprești emularea curentă?" @@ -3871,9 +3898,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3885,8 +3912,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr " Filme TAS Dolphin (*.dtm)" @@ -3933,12 +3960,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3948,7 +3969,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4005,11 +4026,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4052,7 +4073,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dump Audio" @@ -4064,7 +4085,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "Dump Destinație EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dump Cadre" @@ -4181,16 +4202,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4214,7 +4235,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4277,7 +4298,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4297,7 +4318,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Activare Trucuri" @@ -4321,9 +4342,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Activare Nucleu Dublu" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Activare Nucleu Dublu (accelerare)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4367,7 +4388,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4409,7 +4430,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4485,7 +4506,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4519,7 +4540,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4565,6 +4586,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4592,7 +4622,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4643,14 +4673,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4689,26 +4719,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4725,9 +4755,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Eroare" @@ -4760,7 +4790,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4851,7 +4881,7 @@ msgstr "" msgid "Euphoria" msgstr "Euforia" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4864,15 +4894,15 @@ msgstr "" msgid "Exit" msgstr "Ieșire" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4884,19 +4914,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4904,7 +4934,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportă Toate Salvările Wii" @@ -4915,11 +4945,11 @@ msgstr "Exportă Toate Salvările Wii" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Export Înregistrare" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Export Înregistrare..." @@ -4947,7 +4977,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4975,35 +5005,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extrage Fișier..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5031,7 +5061,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5097,7 +5127,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5126,15 +5156,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5153,25 +5183,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5191,18 +5221,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5214,7 +5244,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5251,7 +5281,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5290,7 +5320,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5426,19 +5456,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5492,8 +5522,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5501,11 +5531,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5541,9 +5572,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5555,20 +5586,20 @@ msgstr "" msgid "File Info" msgstr "Info Fişier " -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5666,8 +5697,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5734,7 +5765,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5744,7 +5775,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5787,20 +5818,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Avans Cadru" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5857,11 +5888,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5895,11 +5926,12 @@ msgstr "" msgid "FullScr" msgstr "EcrComplet" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5919,7 +5951,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5935,11 +5967,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6052,11 +6084,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6090,8 +6122,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6217,7 +6249,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Coduri Gecko" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6237,14 +6270,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6262,7 +6302,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6295,7 +6335,7 @@ msgstr "Grafică" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6304,7 +6344,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6326,7 +6366,7 @@ msgstr "Verde Stânga" msgid "Green Right" msgstr "Verde Dreapta" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6408,7 +6448,7 @@ msgstr "Ascunde" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6426,12 +6466,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6495,7 +6535,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6596,11 +6636,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6634,6 +6674,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6687,7 +6737,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6702,15 +6752,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6766,24 +6816,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6832,8 +6882,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informații" @@ -6847,10 +6897,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Intrare" @@ -6869,13 +6919,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Introdu Card SD" @@ -6893,7 +6940,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6901,8 +6948,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6916,7 +6964,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6925,7 +6973,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6984,8 +7032,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7002,7 +7050,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7010,7 +7058,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7018,7 +7066,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7027,7 +7075,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7109,11 +7157,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7121,47 +7169,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7173,14 +7221,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7188,11 +7237,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7214,7 +7263,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7249,7 +7298,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7257,7 +7306,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7390,6 +7439,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7423,11 +7480,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7437,17 +7494,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Încarcă" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7456,7 +7513,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7467,7 +7524,7 @@ msgstr "Încarcă Texturi Personalizate" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7475,16 +7532,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7492,104 +7554,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Încărcă Status" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Încărcă Ultimul Status 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Încărcă Ultimul Status 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Încărcă Ultimul Status 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Încărcă Ultimul Status 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Încărcă Ultimul Status 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Încărcă Ultimul Status 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Încărcă Ultimul Status 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Încărcă Ultimul Status 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Încarcă Status din Slotul 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Încarcă Status din Slotul 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Încarcă Status din Slotul 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Încarcă Status din Slotul 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Încarcă Status din Slotul 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Încarcă Status din Slotul 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Încarcă Status din Slotul 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Încarcă Status din Slotul 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Încarcă Status din Slotul 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Încarcă Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7597,20 +7659,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7618,7 +7675,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7643,20 +7700,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Jurnal" @@ -7666,10 +7723,11 @@ msgid "Log Configuration" msgstr "Configurare Jurnal" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7708,7 +7766,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7771,9 +7829,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7782,7 +7840,7 @@ msgstr "" msgid "Maker:" msgstr "Marcaj:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7790,7 +7848,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7829,7 +7887,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7845,7 +7903,7 @@ msgstr "" msgid "Memory Card" msgstr "Card de memorie" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7873,7 +7931,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7881,7 +7939,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7952,8 +8010,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7995,7 +8053,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8019,10 +8077,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8031,8 +8089,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8041,7 +8099,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8058,8 +8116,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8072,11 +8130,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8155,7 +8213,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8180,7 +8238,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8188,12 +8246,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8201,8 +8260,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8289,7 +8349,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8330,7 +8390,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8530,7 +8590,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Documentație Online" @@ -8538,13 +8598,13 @@ msgstr "&Documentație Online" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8565,13 +8625,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8673,7 +8737,7 @@ msgstr "Altele" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8690,7 +8754,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8698,16 +8762,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8736,7 +8800,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8749,7 +8813,7 @@ msgstr "Pad" msgid "Pads" msgstr "Paduri" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8812,7 +8876,7 @@ msgstr "Pauză" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8857,7 +8921,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Iluminare Per-Pixel" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8887,11 +8951,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8907,8 +8971,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8920,7 +8984,7 @@ msgstr "Rulare" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Rulează Înregistrarea" @@ -9015,7 +9079,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9066,7 +9130,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9084,9 +9148,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9094,8 +9158,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9139,13 +9204,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9162,11 +9227,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9193,7 +9258,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Întrebare" @@ -9218,11 +9283,11 @@ msgstr "R-Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9259,13 +9324,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9288,7 +9353,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9347,7 +9412,7 @@ msgstr "Roșu Stânga" msgid "Red Right" msgstr "Roșu Dreapta" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9393,8 +9458,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9415,7 +9480,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9444,7 +9510,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9457,7 +9523,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9489,7 +9555,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9501,7 +9567,7 @@ msgstr "Resetare" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9553,8 +9619,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9684,20 +9750,20 @@ msgstr "" msgid "Rumble" msgstr "Vibrație" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9767,11 +9833,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Sal&vează Status" @@ -9783,7 +9849,7 @@ msgstr "Sigur" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9798,22 +9864,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9825,15 +9903,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Salvează cel mai Vechi Status" @@ -9841,73 +9923,77 @@ msgstr "Salvează cel mai Vechi Status" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Salvează Status" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Salvează Status din Slotul 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Salvează Status din Slotul 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Salvează Status din Slotul 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Salvează Status din Slotul 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Salvează Status din Slotul 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Salvează Status din Slotul 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Salvează Status din Slotul 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Salvează Status din Slotul 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Salvează Status din Slotul 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Salvează Status din Slotul 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9927,11 +10013,7 @@ msgstr "" msgid "Save as..." msgstr "Salvează ca..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9942,19 +10024,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9988,7 +10062,7 @@ msgstr "ScrShot" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Căutare" @@ -10015,7 +10089,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10023,7 +10097,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10059,7 +10133,7 @@ msgstr "Selectează" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10068,7 +10142,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10076,18 +10150,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10096,6 +10174,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10104,6 +10186,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10112,58 +10202,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10181,24 +10275,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10207,19 +10297,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10227,23 +10313,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Selectează fișierul salvat" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10299,7 +10368,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10342,6 +10411,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Trimite" @@ -10350,6 +10440,15 @@ msgstr "Trimite" msgid "Sensor Bar Position:" msgstr "Poziția barei de senzor:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10378,39 +10477,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10424,7 +10519,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10436,10 +10531,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10490,11 +10592,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Afișare &Jurnal" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Afișare &Bară de Instrumente" @@ -10502,15 +10604,15 @@ msgstr "Afișare &Bară de Instrumente" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10519,7 +10621,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10532,7 +10634,7 @@ msgstr "" msgid "Show FPS" msgstr "Afișare FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10540,15 +10642,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Afișare Franța" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Afișare GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10556,27 +10658,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Afișare Ecran Conectat" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Afișare Italia" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Afișare Coreea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10584,7 +10686,7 @@ msgstr "" msgid "Show Language:" msgstr "Afișare Limbă:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Afișare Jurnal &Configurare" @@ -10596,7 +10698,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10604,12 +10706,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Afișare PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10617,7 +10719,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Afișare Platforme" @@ -10625,23 +10727,23 @@ msgstr "Afișare Platforme" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Afișare Regiuni" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10653,19 +10755,23 @@ msgstr "" msgid "Show Statistics" msgstr "Afișare Statistici" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Afișare Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Afișare SUA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10677,27 +10783,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Afișare Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10714,13 +10820,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10753,18 +10855,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10785,6 +10875,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10817,6 +10919,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10833,7 +10943,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10880,7 +10990,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11054,6 +11164,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11090,11 +11204,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Pornește Înregistrarea" @@ -11133,39 +11247,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11174,7 +11288,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11204,7 +11318,7 @@ msgstr "Joystick" msgid "Stop" msgstr "Stop" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11273,14 +11387,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11307,24 +11421,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11375,7 +11489,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11400,17 +11514,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11459,7 +11577,7 @@ msgstr "" msgid "System Language:" msgstr "Limbă Sistem" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Intrare TAS" @@ -11470,9 +11588,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11490,7 +11608,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Realizează CapturăEcran" @@ -11498,7 +11616,7 @@ msgstr "Realizează CapturăEcran" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11533,7 +11651,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11578,13 +11696,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11735,7 +11853,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11859,7 +11977,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11893,7 +12011,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11951,7 +12069,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12060,7 +12178,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12251,7 +12369,7 @@ msgstr "" msgid "Threshold" msgstr "Prag:" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12270,10 +12388,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titlu" @@ -12281,25 +12399,29 @@ msgstr "Titlu" msgid "To" msgstr "Către" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12307,28 +12429,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Comută Toate Tipurile de jurnal" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Comută Raportul de Aspect" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Comută Copiile EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Comută Ceață" @@ -12340,31 +12462,31 @@ msgstr "Comută Ecran Complet" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12485,7 +12607,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12515,7 +12637,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12553,15 +12675,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12593,7 +12715,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12616,11 +12738,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Anulare Status Încărcare" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Anulare Status Salvare" @@ -12638,7 +12760,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12734,11 +12856,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12746,7 +12868,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12844,7 +12971,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12937,7 +13064,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13008,7 +13135,7 @@ msgstr "" msgid "Value" msgstr "Valoare" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13096,22 +13223,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volum" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13119,7 +13246,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13220,7 +13347,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Atenție" @@ -13333,7 +13460,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "Soluție Ecran Lat" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13403,7 +13530,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13438,11 +13565,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13586,7 +13713,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13650,7 +13777,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/ru.po b/Languages/po/ru.po index 13cd907e51..e2a1413443 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -5,6 +5,7 @@ # Translators: # Сайб , 2014-2015 # Anton Guts , 2015-2016 +# Daniil Huz, 2024 # dffggff , 2013 # dffggff , 2013 # flashmozzg , 2014-2016 @@ -17,14 +18,15 @@ # P@S@f , 2015-2016 # Sukharev Andrey , 2015-2022 # Илья Гредасов , 2021 +# Кирилл Карпушин, 2024 msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: Илья Гредасов , 2021\n" -"Language-Team: Russian (http://app.transifex.com/delroth/dolphin-emu/" +"Last-Translator: Daniil Huz, 2024\n" +"Language-Team: Russian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/ru/)\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -190,7 +192,7 @@ msgstr "%1 фикс. перед %2" msgid "%1 doesn't support this feature on your system." msgstr "%1 не поддерживает данный функционал на вашей системе." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 не поддерживает данный функционал." @@ -212,7 +214,7 @@ msgstr "%1 присоединился" msgid "%1 has left" msgstr "%1 вышел" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 разблокировал достижений: %2 из %3 в количестве очков: %4 из %5" @@ -224,7 +226,7 @@ msgstr "%1 — некорректный образ игры" msgid "%1 is now golfing" msgstr "%1 теперь играет в гольф" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 играет в %2" @@ -238,7 +240,7 @@ msgid "%1 ms" msgstr "%1 мс" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "Очков: %1" @@ -258,22 +260,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 МГц)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (обычная скорость)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "Значение %1 изменено" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "Достигнуто значение %1" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "Используется значение %1" @@ -281,6 +283,10 @@ msgstr "Используется значение %1" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -301,7 +307,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 МиБ" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -314,7 +320,7 @@ msgstr "Родное %1x (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "Собственное %1x (%2x%3) для %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -358,10 +364,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Об эмуляторе" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Добавить точку останова в памяти" @@ -371,23 +381,19 @@ msgstr "&Добавить точку останова в памяти" msgid "&Add New Code..." msgstr "&Добавить код..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Добавить функцию" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Добавить..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Ассемблер" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "Настройки &звука" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Автообновление:" @@ -396,14 +402,14 @@ msgid "&Borderless Window" msgstr "&Окно без рамок" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Точки останова" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Баг-трекер" @@ -415,11 +421,11 @@ msgstr "&Отмена" msgid "&Cheats Manager" msgstr "&Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Проверить обновления..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Очистить символы" @@ -427,7 +433,7 @@ msgstr "&Очистить символы" msgid "&Clone..." msgstr "&Клонировать..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Код" @@ -435,18 +441,15 @@ msgstr "&Код" msgid "&Connected" msgstr "&Подключен" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "Настройки &управления" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Скопировать адрес" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Скопировать адрес" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Создать..." @@ -482,7 +485,7 @@ msgstr "&Изменить..." msgid "&Eject Disc" msgstr "&Извлечь диск" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Эмуляция" @@ -507,36 +510,36 @@ msgstr "&Экспорт в .gci..." msgid "&File" msgstr "&Файл" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Шрифт..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "Перемотка &кадров" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "Настройки &свободного обзора" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Создать символы из" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Репозиторий на &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "Настройки &графики" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Помощь" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "Горячие &клавиши" @@ -560,15 +563,15 @@ msgstr "&Импортировать..." msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Вставить blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Межкадровый блендинг" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -580,11 +583,11 @@ msgstr "&Язык:" msgid "&Load Branch Watch" msgstr "&Загрузить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "Быстрая &загрузка" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Загрузить карту символов" @@ -598,19 +601,19 @@ msgstr "&Загрузить файл по текущему адресу" msgid "&Lock Watches" msgstr "&Зафиксировать наблюдения" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Зафиксировать виджеты" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Память" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Запись" @@ -618,7 +621,7 @@ msgstr "&Запись" msgid "&Mute" msgstr "&Выключить звук" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Сеть" @@ -631,19 +634,19 @@ msgstr "&Нет" msgid "&Open..." msgstr "&Открыть..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Опции" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Патчить HLE-функции" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Пауза" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Запустить" @@ -651,7 +654,7 @@ msgstr "&Запустить" msgid "&Properties" msgstr "&Свойства" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "Режим \"Только для &чтения\"" @@ -659,7 +662,7 @@ msgstr "Режим \"Только для &чтения\"" msgid "&Refresh List" msgstr "&Обновить список" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Регистры" @@ -672,12 +675,12 @@ msgstr "&Удалить" msgid "&Remove Code" msgstr "&Удалить код" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Переименовать символ" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Сбросить" @@ -689,7 +692,7 @@ msgstr "&Менеджер наборов ресурсов" msgid "&Save Branch Watch" msgstr "&Сохранить наблюдение ветви" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Сохранить карту символов" @@ -701,11 +704,11 @@ msgstr "&Сканировать карту(ы) электронного риде msgid "&Skylanders Portal" msgstr "&Портал Skylanders" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Ограничение скорости:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Остановить" @@ -713,7 +716,7 @@ msgstr "&Остановить" msgid "&Theme:" msgstr "&Тема:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Потоки" @@ -735,17 +738,17 @@ msgstr "&Выгрузить образ игры" msgid "&Unlock Watches" msgstr "&Разблокировать наблюдения" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Наблюдение" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Сайт" @@ -757,11 +760,11 @@ msgstr "&Вики" msgid "&Yes" msgstr "&Да" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' не найден, имена символов не созданы" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' не найден, ищем на замену распространенные функции" @@ -781,7 +784,7 @@ msgstr "(Системная)" msgid "(host)" msgstr "(хост)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(отключено)" @@ -805,7 +808,7 @@ msgstr ", Запятая" msgid "- Subtract" msgstr "- Вычесть" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -883,7 +886,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "Анизотропная 16x" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -895,7 +898,7 @@ msgstr "2 ГиБ" msgid "256 MiB" msgstr "256 МиБ" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -931,19 +934,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-разрядное целое число без знака" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "Глубина 3D" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -967,7 +970,7 @@ msgstr "4:3" msgid "4K" msgstr "4К" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1066,7 +1069,7 @@ msgstr "" "Если вы не уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1105,8 +1108,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Больше чем" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Сессия сетевой игры уже создана!" @@ -1130,7 +1133,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Диск уже должен быть вставлен." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1142,7 +1145,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Чтобы загрузить быстрое сохранение, нужно указать игру." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1242,7 +1245,7 @@ msgid "Achievement Settings" msgstr "Параметры достижений" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Достижения" @@ -1333,7 +1336,7 @@ msgstr "Action Replay: нормальный код {0}: неверный под msgid "Activate NetPlay Chat" msgstr "Активировать чат сетевой игры" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Активна" @@ -1384,11 +1387,11 @@ msgstr "Добавление нового USB-устройства" msgid "Add Shortcut to Desktop" msgstr "Добавить ярлык на рабочий стол" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Добавить точку останова" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Добавить точку останова в памяти" @@ -1422,13 +1425,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Адрес" @@ -1447,7 +1450,7 @@ msgstr "Адресное пространство по состоянию ЦП" msgid "Address:" msgstr "Адрес:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1534,7 +1537,7 @@ msgstr "Расширенные" msgid "Advanced Settings" msgstr "Дополнительные параметры" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1613,7 +1616,7 @@ msgstr "Все двойной точности с плавающей точко #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1621,7 +1624,7 @@ msgid "All Files" msgstr "Все файлы" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Все файлы (*)" @@ -1630,7 +1633,7 @@ msgstr "Все файлы (*)" msgid "All Float" msgstr "Все с плавающей точкой" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Все файлы GC/Wii" @@ -1639,8 +1642,8 @@ msgstr "Все файлы GC/Wii" msgid "All Hexadecimal" msgstr "Все шестнадцатеричные" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Файлы быстрых сохранений (*.sav, *.s##);; Все файлы (*)" @@ -1664,11 +1667,11 @@ msgstr "Коды всех игроков синхронизированы." msgid "All players' saves synchronized." msgstr "Сохранения всех игроков синхронизированы." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Разрешить несовпадение настроек региона" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Разрешить отправку статистики об использовании" @@ -1728,7 +1731,7 @@ msgstr "Угол" msgid "Angular velocity to ignore and remap." msgstr "Угловая скорость, которую следует игнорировать и перезадать." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Сглаживание" @@ -1740,19 +1743,19 @@ msgstr "Сглаживание:" msgid "Any Region" msgstr "Любой регион" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Добавить сигнатуру к" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Добавить к &имеющемуся файлу с сигнатурами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Примени&ть файл с сигнатурами..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1768,9 +1771,9 @@ msgstr "Дата загрузчика:" msgid "Apply" msgstr "Применить" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Применить файл с сигнатурами" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1780,7 +1783,7 @@ msgstr "Обнаружение произвольных MIP-текстур" msgid "Are you sure that you want to delete '%1'?" msgstr "Вы действительно хотите удалить '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Вы действительно хотите удалить этот файл?" @@ -1817,9 +1820,9 @@ msgstr "Соотношение сторон:" msgid "Assemble" msgstr "Сборка" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Сборка инструкции" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1881,7 +1884,11 @@ msgstr "Автоматически" msgid "Auto (Multiple of 640x528)" msgstr "Автоматически (Кратное 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Настройки автообновления" @@ -1905,7 +1912,7 @@ msgstr "Автонастройка размера окна" msgid "Auto-Hide" msgstr "Автоскрытие" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Обнаруживать RSO автоматически?" @@ -1922,6 +1929,17 @@ msgstr "" "

Если не уверены – оставьте выключенным." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Автоматически обновлять текущие значения" @@ -1933,7 +1951,7 @@ msgid "Auxiliary" msgstr "Вспомогательное" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "Б" @@ -2019,10 +2037,10 @@ msgstr "Указано неверное смещение." msgid "Bad value provided." msgstr "Указано некорректное значение." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Логотип" @@ -2050,7 +2068,7 @@ msgstr "Базовый приоритет" msgid "Basic" msgstr "Основные" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Основные настройки" @@ -2114,9 +2132,9 @@ msgstr "" "\n" "Повторите попытку с другим персонажем." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Размер блока" @@ -2154,15 +2172,15 @@ msgstr "" "Включён режим проброса Bluetooth, но Dolphin собран без поддержки libusb. " "Невозможно использовать режим проброса." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Пауза после запуска" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Файл бэкапа NAND BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Файл с ключами BootMii (*.bin);;Все файлы (*)" @@ -2310,30 +2328,30 @@ msgstr "Ветвь регистра связи (регистр связи сох msgid "Branch: %1" msgstr "Ветка: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Ветви" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Останов" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Точка останова" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Попадание в точку останова! Шаг с выходом отменён." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Точки останова" @@ -2431,7 +2449,7 @@ msgstr "Автор: %1" msgid "C Stick" msgstr "C Stick" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "С&оздать файл с сигнатурами..." @@ -2470,7 +2488,7 @@ msgstr "" msgid "Calculate" msgstr "Вычислить" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2537,14 +2555,14 @@ msgstr "Не удалось изменить злодеев для этого т msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Не удаётся найти Wii Remote по дескриптору {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2595,7 +2613,7 @@ msgstr "Не удалось создать AR-код для этого адре msgid "Cannot refresh without results." msgstr "Не удалось обновить без результатов." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "Не удалось установить папку GCI на пустой путь." @@ -2643,7 +2661,7 @@ msgstr "Сменить &диск..." msgid "Change Disc" msgstr "Сменить диск" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Автоматически сменять диски" @@ -2716,7 +2734,7 @@ msgstr "Поиск чит-кодов" msgid "Cheats Manager" msgstr "Менеджер читов" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Проверить NAND..." @@ -2728,7 +2746,7 @@ msgstr "Автоматически проверять список игр на msgid "Check for updates" msgstr "Проверить обновления" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2748,29 +2766,29 @@ msgstr "Китай" msgid "Choose" msgstr "Выбрать" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Выберите открываемый файл" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Выберите файл, который следует открыть или создать" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Выберите основной входной файл" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Выберите вторичный входной файл" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Выберите базовую папку GCI" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Выберите папку для извлечения файлов" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2789,7 +2807,7 @@ msgstr "Контроллер Classic" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2799,7 +2817,7 @@ msgstr "Очистить" msgid "Clear Branch Watch" msgstr "Очистить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Очистить кэш" @@ -2820,7 +2838,7 @@ msgstr "Скопировать и &изменить код..." msgid "Close" msgstr "Закрыть" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "&Настройка" @@ -2844,7 +2862,7 @@ msgstr "Код:" msgid "Codes received!" msgstr "Коды получены!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Цветовая коррекция" @@ -2864,7 +2882,7 @@ msgstr "Цветовое пространство" msgid "Column &Visibility" msgstr "Видимость &столбца" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Объединить &два файла с сигнатурами..." @@ -2906,9 +2924,9 @@ msgstr "Компилировать шейдеры перед запуском" msgid "Compiling Shaders" msgstr "Компиляция шейдеров" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Сжатие" @@ -2933,7 +2951,7 @@ msgstr "Усл." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Условие" @@ -3040,9 +3058,9 @@ msgstr "Настройка вывода" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Подтвердить" @@ -3055,7 +3073,7 @@ msgstr "Подтвердите смену бэкенда" msgid "Confirm on Stop" msgstr "Подтверждать остановку" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3066,7 +3084,7 @@ msgstr "Подтверждение" msgid "Connect" msgstr "Подключиться" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Подключить Balance Board" @@ -3074,27 +3092,27 @@ msgstr "Подключить Balance Board" msgid "Connect USB Keyboard" msgstr "Подключить USB-клавиатуру" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Подключить Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Подключить Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Подключить Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Подключить Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Подключить Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Подключить Wii Remote" @@ -3139,19 +3157,19 @@ msgstr "Control Stick" msgid "Controller Profile" msgstr "Профиль контроллера" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Профиль контроллера 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Профиль контроллера 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Профиль контроллера 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Профиль контроллера 4" @@ -3163,6 +3181,16 @@ msgstr "Настройки управления" msgid "Controllers" msgstr "Управление" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3176,7 +3204,7 @@ msgstr "" "

Если не уверены, оставьте значение 203." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3188,7 +3216,7 @@ msgstr "" "находиться перед экраном.

Высокие значения создают более сильную " "видимость \"выпячивания\" обьектов из экрана, низкие – более комфортны." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3202,7 +3230,7 @@ msgstr "" "производительность.

Если не уверены – выберите " "Родное." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3235,7 +3263,7 @@ msgstr "" "Управляет тем, использовать высокоуровневую или низкоуровневую эмуляцию DSP. " "По умолчанию Да" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Сведение" @@ -3341,18 +3369,22 @@ msgstr "" msgid "Copy" msgstr "Копировать" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Скопировать &функцию" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Скопировать &hex-значение" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Скопировать адрес" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Копирование не удалось" @@ -3361,18 +3393,14 @@ msgstr "Копирование не удалось" msgid "Copy Hex" msgstr "Скопировать hex-значение" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Скопировать значение" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Скопировать код &строки" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Скопировать целе&вой адрес" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Скопировать на A" @@ -3498,8 +3526,8 @@ msgstr "Не удалось распознать файл {0}" msgid "Could not save your changes!" msgstr "Не удалось сохранить изменения." -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Не удалось запустить средство обновления: {0}" @@ -3611,7 +3639,7 @@ msgstr "" "

Если вы не уверены, не устанавливайте этот флажок." "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Текущий регион" @@ -3805,24 +3833,24 @@ msgstr "Качество декодирования:" msgid "Decrease" msgstr "Уменьшить" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Уменьшить сведение" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Уменьшить глубину" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Уменьшить скорость эмуляции" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Уменьшить внутреннее разрешение" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Уменьшить выбранный слот сохранения" @@ -3884,8 +3912,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Удалить" @@ -3903,7 +3931,7 @@ msgstr "Удалить выбранные файлы..." msgid "Delete the existing file '{0}'?" msgstr "Удалить существующий файл '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Глубина" @@ -3918,9 +3946,9 @@ msgstr "Глубина:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Описание" @@ -3969,7 +3997,7 @@ msgstr "Отсоединён" msgid "Detect" msgstr "Считать" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Обнаружение модулей RSO" @@ -3977,7 +4005,7 @@ msgstr "Обнаружение модулей RSO" msgid "Deterministic dual core:" msgstr "Детерминированная двухядерность:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Разрабатываемая (несколько раз в день)" @@ -4035,15 +4063,15 @@ msgstr "Отключить фильтр копирования" msgid "Disable EFB VRAM Copies" msgstr "Отключить копии EFB в VRAM" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Отключить огр. скорости эмуляции" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Отключить быструю память" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Отключить Fastmem Arena" @@ -4051,11 +4079,11 @@ msgstr "Отключить Fastmem Arena" msgid "Disable Fog" msgstr "Отключить туман" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Отключить кэш JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Отключить карту больших точек входа" @@ -4084,7 +4112,7 @@ msgstr "" "в ОЗУ. Подавляет масштабирование.

Если не уверены – " "оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4104,6 +4132,8 @@ msgid "" "Disables your screensaver while running a game.

If " "unsure, leave this checked." msgstr "" +"Выключает вашу заставку пока игра запущенна.

Если " +"не уверены – оставьте включенным." #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4113,9 +4143,10 @@ msgstr "Диск" msgid "Discard" msgstr "Отменить" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" -msgstr "" +msgstr "Параметры Вида" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4148,15 +4179,15 @@ msgstr "Расстояние" msgid "Distance of travel from neutral position." msgstr "Проходимое расстояние из исходной позиции." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Вы хотите добавить \"%1\" в список путей к играм?" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Вы хотите очистить список имён символов?" @@ -4166,7 +4197,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Вы хотите удалить выбранные файлы сохранений (%n шт.)?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Вы хотите остановить текущую эмуляцию?" @@ -4187,9 +4218,9 @@ msgstr "Лог Dolphin FIFO (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Предварительная установка игрового мода Dolphin" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Файл карты Dolphin (*.map)" @@ -4201,8 +4232,8 @@ msgstr "CSV-файл с сигнатурами Dolphin" msgid "Dolphin Signature File" msgstr "Файл с сигнатурами Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "TAS-ролики (*.dtm)" @@ -4262,14 +4293,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin не может проверить нелицензионные диски." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin будет использовать его для продуктов, регион которых не удалось " -"определить автоматически." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "На данный момент поддержка читов в Dolphin отключена." @@ -4279,7 +4302,7 @@ msgstr "На данный момент поддержка читов в Dolphin msgid "Domain" msgstr "Домен" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Не обновлять" @@ -4336,11 +4359,11 @@ msgstr "Скачано %1 кодов. (добавлено %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4383,7 +4406,7 @@ msgstr "Дампить &FakeVMEM" msgid "Dump &MRAM" msgstr "Дампить &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Дампить звук" @@ -4395,7 +4418,7 @@ msgstr "Дампить основные текстуры" msgid "Dump EFB Target" msgstr "Дампить конечный EFB" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Дампить кадры" @@ -4528,16 +4551,16 @@ msgstr "Восточная Азия" msgid "Edit Breakpoint" msgstr "Изменить точку останова" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Изменить…" @@ -4561,7 +4584,7 @@ msgstr "Эффективное" msgid "Effective priority" msgstr "Эффективный приоритет" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "ЭиБ" @@ -4629,7 +4652,7 @@ msgstr "" "Текущий: MEM1 {0:08X} ({1} МиБ), MEM2 {2:08X} ({3} МиБ)\n" "DFF: MEM1 {4:08X} ({5} МиБ), MEM2 {6:08X} ({7} МиБ)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Скорость эмуляции" @@ -4649,7 +4672,7 @@ msgstr "Включить слои проверки API" msgid "Enable Audio Stretching" msgstr "Включить растяжение звука" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Включить чит-коды" @@ -4673,9 +4696,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Включить двухядерный режим" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Включить двухядерный режим (ускорение)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4733,7 +4756,7 @@ msgstr "" "игру перед включением.
Имейте в виду, что выключение режима «Хардкор» во " "время игры требует закрытия игры перед повторным включением." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Включить профилирование блока JIT" @@ -4775,7 +4798,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "Включить неофициальные достижения" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Включить отправку статистики об использовании" @@ -4867,7 +4890,7 @@ msgstr "" "result flag), необходимого для небольшого количества игр. (ВКЛ = лучше " "совместимость, ВЫКЛ = выше скорость)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4923,7 +4946,7 @@ msgstr "" "вызывает проблем в большинстве игр.

Если не уверены " "– оставьте выключенным." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4990,6 +5013,15 @@ msgstr "" "Ознакомьтесь с условиями предоставления услуг на сайте: https://www." "wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -5029,7 +5061,7 @@ msgstr "" "\n" "Отмена импорта." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -5082,14 +5114,14 @@ msgstr "" "Введите IP-адрес и порт экземпляра tapserver, к которому вы хотите " "подключиться." -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5128,26 +5160,26 @@ msgstr "Введите адрес модуля RSO:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5164,9 +5196,9 @@ msgstr "Введите адрес модуля RSO:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Ошибка" @@ -5198,7 +5230,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Ошибка при получении списка сессий: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Возникла ошибка при загрузке некоторых пакетов текстур" @@ -5295,7 +5327,7 @@ msgstr "В {0} неиспользуемых блоках раздела {1} на msgid "Euphoria" msgstr "Эйфория" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Европа" @@ -5308,15 +5340,15 @@ msgstr "Только убершейдеры" msgid "Exit" msgstr "Выйти" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Ожидался + или закрывающая скобка." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Ожидались аргументы: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Ожидалась закрывающая скобка." @@ -5328,19 +5360,19 @@ msgstr "Ожидалась запятая." msgid "Expected end of expression." msgstr "Ожидался конец выражения." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Ожидалось название ввода." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Ожидалась открывающаяся скобка." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Ожидалось начало выражения." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Ожидалось название переменной." @@ -5348,7 +5380,7 @@ msgstr "Ожидалось название переменной." msgid "Experimental" msgstr "Экспериментальные" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Экспортировать все сохранения Wii" @@ -5359,11 +5391,11 @@ msgstr "Экспортировать все сохранения Wii" msgid "Export Failed" msgstr "Не удалось экспортировать" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Экспорт записи" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Экспорт записи..." @@ -5391,7 +5423,7 @@ msgstr "Экспорт в .&gcs..." msgid "Export as .&sav..." msgstr "Экспорт в .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5419,35 +5451,35 @@ msgstr "Внешний адрес" msgid "External Frame Buffer (XFB)" msgstr "Внешний буфер кадров (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Извлечь сертификаты из NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Извлечь весь диск..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Извлечь весь раздел..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Извлечь файл..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Извлечь файлы..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Извлечь системные данные..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Извлечение всех файлов..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Извлечение папки..." @@ -5477,7 +5509,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Не удалось добавить сессию в индекс сетевой игры: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Не удалось добавить данные в файл с сигнатурами '%1'" @@ -5551,7 +5583,7 @@ msgstr "" "Не удалось удалить карту памяти сетевой игры. Проверьте, что у вас есть " "права на запись." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Не удалось удалить выбранный файл." @@ -5580,15 +5612,15 @@ msgstr "Не удалось экспортировать %n из %1 сохран msgid "Failed to export the following save files:" msgstr "Не удалось экспортировать следующие файлы сохранений:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Не удалось извлечь сертификаты из NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Не удалось извлечь файл." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Не удалось извлечь системные данные." @@ -5610,14 +5642,14 @@ msgstr "Не удалось найти один или более символ D msgid "Failed to import \"%1\"." msgstr "Не удалось импортировать \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Не удалось импортировать файл сохранения. Пожалуйста, запустите игру, а " "потом попробуйте ещё раз." -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5625,7 +5657,7 @@ msgstr "" "Не удалось импортировать файл сохранения. Похоже, что данный файл повреждён " "или не является корректным сохранением Wii." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5636,7 +5668,7 @@ msgstr "" "ваш NAND (Инструменты -> Управлять NAND -> Проверить NAND...), затем " "импортируйте файл сохранения ещё раз." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Не удалось инициализировать ядро" @@ -5659,11 +5691,11 @@ msgid "Failed to install pack: %1" msgstr "Не удалось установить набор: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Не удалось установить этот продукт в NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5671,8 +5703,8 @@ msgstr "" "Не удалось инициализировать прослушивание порта %1. У вас запущен ещё один " "сервер сетевой игры?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Не удалось загрузить модуль RSO на %1" @@ -5684,7 +5716,7 @@ msgstr "Не удалось загрузить d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Не удалось загрузить dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Не удалось загрузить файл с картой '%1'" @@ -5725,7 +5757,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "Не удалось открыть «{0}» для записи." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Не удалось открыть '%1'" @@ -5768,7 +5800,7 @@ msgstr "" msgid "Failed to open file." msgstr "Не удалось открыть файл." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Не удалось открыть сервер" @@ -5929,19 +5961,19 @@ msgstr "Не удалось сохранить снимок Branch Watch «%1»" msgid "Failed to save FIFO log." msgstr "Не удалось сохранить лог FIFO." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "Не удалось сохранить карту кода по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Не удалось сохранить файл сигнатуры '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "Не удалось сохранить карту символов по пути '%1'" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Не удалось сохранить файл с сигнатурами '%1'" @@ -6001,8 +6033,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Ошибка" @@ -6010,11 +6042,12 @@ msgstr "Ошибка" msgid "Fair Input Delay" msgstr "Честная задержка ввода" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Резервный регион" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Резервный регион:" @@ -6052,9 +6085,9 @@ msgstr "Тип фигурки" msgid "File Details" msgstr "Информация о файле" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Формат файла" @@ -6066,20 +6099,20 @@ msgstr "Формат файла:" msgid "File Info" msgstr "Информация о файле" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Имя файла" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Путь к файлу" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Размер файла" @@ -6183,9 +6216,9 @@ msgstr "Флаги" msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Перейти к &ветке" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6258,7 +6291,7 @@ msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" "Принудительно включено, поскольку %1 не поддерживает геометрические шейдеры." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6275,7 +6308,7 @@ msgstr "" "ориентированные на конкретную игру.

Если вы не " "уверены, не устанавливайте этот флажок." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6293,6 +6326,9 @@ msgid "" "Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked." msgstr "" +"Заставляет окно рендеринга показыватся поверх других окон и приложений. " +"

Если вы неуверены, оставте это выключеным." #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" @@ -6323,20 +6359,20 @@ msgstr "Найдено адресов: %n." msgid "Frame %1" msgstr "Кадр %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Перемотка кадров" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Перемотка кадров: умен. скорость" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Перемотка кадров: увел. скорость" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Перемотка кадров: сбросить скорость" @@ -6397,11 +6433,11 @@ msgstr "" msgid "FreeLook" msgstr "Свободный обзор" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Свободный обзор" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Вкл./выкл. свободный обзор" @@ -6435,13 +6471,14 @@ msgstr "От:" msgid "FullScr" msgstr "Во весь экран" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Функция" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" -msgstr "" +msgstr "Параметры Функций" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6459,7 +6496,7 @@ msgstr "GBA (внеш. эмулятор по TCP)" msgid "GBA Cartridge Path:" msgstr "Путь к картриджу GBA:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "Ядро GBA" @@ -6475,11 +6512,11 @@ msgstr "Настройки GBA" msgid "GBA TAS Input %1" msgstr "Ввод TAS %1 GBA" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "Громкость GBA" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "Размер окна GBA" @@ -6616,11 +6653,11 @@ msgstr "Игра" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Картриджи от Game Boy Advance (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6656,8 +6693,8 @@ msgstr "Гамма игры" msgid "Game Gamma:" msgstr "Гамма игры:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "ID игры" @@ -6788,7 +6825,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Gecko-коды" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6808,14 +6846,21 @@ msgid "Generate Action Replay Code(s)" msgstr "Сгенерировать код(ы) Action Replay" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Сгенерировать новый ID сбора статистики" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Сгенерированы AR-коды." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Созданы имена символов из '%1'" @@ -6833,7 +6878,7 @@ msgstr "Германия" msgid "GetDeviceList failed: {0}" msgstr "Ошибка GetDeviceList: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "ГиБ" @@ -6866,7 +6911,7 @@ msgstr "Графика" msgid "Graphics Mods" msgstr "Графические моды" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Переключатели графики" @@ -6875,7 +6920,7 @@ msgstr "Переключатели графики" msgid "Graphics mods are currently disabled." msgstr "Графические моды сейчас отключены." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6903,7 +6948,7 @@ msgstr "Зеленая слева" msgid "Green Right" msgstr "Зеленая справа" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "В виде сетки" @@ -6985,7 +7030,7 @@ msgstr "Спрятать" msgid "Hide &Controls" msgstr "Скрыть &элементы управления" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Скрыть все" @@ -7003,12 +7048,12 @@ msgstr "Скрыть сетевые GBA" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Высокая" @@ -7077,7 +7122,7 @@ msgstr "Имя хоста" msgid "Hotkey Settings" msgstr "Горячие клавиши" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7203,11 +7248,11 @@ msgstr "" "Подходит для пошаговых игр с элементами управления, чувствительными ко " "времени, такими как гольф." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Генерация ID" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7260,6 +7305,16 @@ msgstr "" "полезно для тестирования.

Если вы не уверены, не " "устанавливайте этот флажок." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7331,7 +7386,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Импортировать бэкап BootMii NAND..." @@ -7346,15 +7401,15 @@ msgstr "Не удалось импортировать" msgid "Import Save File(s)" msgstr "Импорт файлов сохранений" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Импортировать сохранение Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Импортирование бэкапа NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7417,24 +7472,24 @@ msgstr "Некорректное значение игрового времен msgid "Increase" msgstr "Увеличить" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Увеличить сведение" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Увеличить глубину" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Увеличить скорость эмуляции" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Увеличить внутреннее разрешение" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Увеличить выбранный слот сохранения" @@ -7485,8 +7540,8 @@ msgstr "Информация" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Информация" @@ -7500,10 +7555,10 @@ msgstr "Ввести" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Ввод" @@ -7522,13 +7577,10 @@ msgid "Insert &BLR" msgstr "Вставить &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Вставить &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Вставить &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Вставить SD-карту" @@ -7546,7 +7598,7 @@ msgstr "Установить раздел (%1)" msgid "Install Update" msgstr "Установить обновление" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Установить WAD..." @@ -7554,8 +7606,9 @@ msgstr "Установить WAD..." msgid "Install to the NAND" msgstr "Установить в NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Инстр." @@ -7569,7 +7622,7 @@ msgstr "Инструкция" msgid "Instruction Breakpoint" msgstr "Точка останова инструкции" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Инструкция:" @@ -7578,7 +7631,7 @@ msgstr "Инструкция:" msgid "Instruction: %1" msgstr "Инструкция: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7648,8 +7701,8 @@ msgstr "" "Внутренняя ошибка LZO — не удалось разобрать распакованную строку версии " "({0}/{1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Внутреннее разрешение" @@ -7666,7 +7719,7 @@ msgstr "Внутренняя ошибка генерации AR-кода" msgid "Interpreter (slowest)" msgstr "Интерпретатор (самый медленный)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Ядро интерпретатора" @@ -7674,7 +7727,7 @@ msgstr "Ядро интерпретатора" msgid "Invalid Expression." msgstr "Некорректное выражение." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "От службы автообновления получен недопустимый JSON: {0}" @@ -7682,7 +7735,7 @@ msgstr "От службы автообновления получен недоп msgid "Invalid Mixed Code" msgstr "Неверный смешанный код" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Некорректный набор %1 указан: %2" @@ -7691,7 +7744,7 @@ msgstr "Некорректный набор %1 указан: %2" msgid "Invalid Player ID" msgstr "Некорректный ID игрока" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Некорректный адрес модуля RSO: %1" @@ -7771,11 +7824,11 @@ msgstr "Италия" msgid "Item" msgstr "Элемент" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "Отключить линковку блоков JIT" @@ -7783,47 +7836,47 @@ msgstr "Отключить линковку блоков JIT" msgid "JIT Blocks" msgstr "Блоки JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "Отключить JIT Branch" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "Отключить JIT для FloatingPoint" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "Отключить JIT для Integer" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "Отключить JIT LoadStore Floating" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "Отключить JIT LoadStore" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "Отключить JIT LoadStore Paired" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "Отключить JIT LoadStore lXz" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "Отключить JIT LoadStore lbzx" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "Отключить JIT LoadStore lwz" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "Отключить JIT (ядро JIT)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "Отключить JIT Paired" @@ -7835,14 +7888,15 @@ msgstr "JIT-рекомпилятор для ARM64 (рекомендуется)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-рекомпилятор для x86-64 (рекомендуется)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "Отключить кэш регистров JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "Отключить JIT SystemRegisters" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7853,11 +7907,11 @@ msgstr "" "происходить. Пожалуйста, сообщите об этой ошибке в багтрекере. Dolphin " "завершит работу." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT не активирован" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Япония" @@ -7881,7 +7935,7 @@ msgstr "" "Kaos — единственный злодей для этого трофея, и он всегда разблокирован. Не " "нужно ничего редактировать." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Оставить запущенным" @@ -7916,7 +7970,7 @@ msgstr "Контроллер клавиатуры" msgid "Keys" msgstr "Клавиши" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "КиБ" @@ -7924,7 +7978,7 @@ msgstr "КиБ" msgid "Kick Player" msgstr "Исключить игрока" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Корея" @@ -7960,7 +8014,7 @@ msgstr "Название" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "Язык" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -8063,6 +8117,14 @@ msgstr "" "Левый/правый клик - настроить вывод.\n" "Средний клик - очистить." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8096,11 +8158,11 @@ msgstr "Свет" msgid "Limit Chunked Upload Speed:" msgstr "Ограничить скорость закачки:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Столбцы в списке" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "В виде списка" @@ -8110,17 +8172,17 @@ msgstr "Прослушивание" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Загр." -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Загрузить файл с &плохими картами..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Загрузить &другой файл с картой..." @@ -8129,8 +8191,8 @@ msgid "Load Branch Watch &From..." msgstr "Загрузить Branch Watch &из…" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" -msgstr "Загрузить снимок Branch Watch" +msgid "Load Branch Watch Snapshot" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8140,7 +8202,7 @@ msgstr "Загружать свои текстуры" msgid "Load File" msgstr "Загрузить файл" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Загрузить главное меню GameCube" @@ -8148,16 +8210,21 @@ msgstr "Загрузить главное меню GameCube" msgid "Load Host's Save Data Only" msgstr "Загрузка только данных сохранений хоста" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Загрузить последнее сохранение" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Путь к загрузке:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Загрузить образ игры" @@ -8165,104 +8232,104 @@ msgstr "Загрузить образ игры" msgid "Load Slot" msgstr "Загрузить слот" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Загрузить быстрое сохранение" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Загр. посл. быстрое сохранение 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Загр. посл. быстрое сохранение 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Загр. посл. быстрое сохранение 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Загр. посл. быстрое сохранение 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Загр. посл. быстрое сохранение 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Загр. посл. быстрое сохранение 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Загр. посл. быстрое сохранение 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Загр. посл. быстрое сохранение 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Загр. посл. быстрое сохранение 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Загр. посл. быстрое сохранение 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Быстрая загрузка 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Быстрая загрузка 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Быстрая загрузка 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Быстрая загрузка 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Быстрая загрузка 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Быстрая загрузка 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Быстрая загрузка 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Быстрая загрузка 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Быстрая загрузка 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Быстрая загрузка 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Быстрая загрузка из файла" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Быстрая загрузка из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Быстрая загрузка из слота" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Загрузить системное меню Wii %1" @@ -8270,20 +8337,15 @@ msgstr "Загрузить системное меню Wii %1" msgid "Load and Write Host's Save Data" msgstr "Загрузка и запись данных сохранений хоста" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Загрузить из выбранного слота" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Быстрая загрузка из слота %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Загрузить файл с картой" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Загрузить системное меню vWii %1" @@ -8291,7 +8353,7 @@ msgstr "Загрузить системное меню vWii %1" msgid "Load..." msgstr "Загрузить..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Загружены символы из '%1'" @@ -8322,20 +8384,20 @@ msgstr "Локальный адрес" msgid "Lock Mouse Cursor" msgstr "Захватывать курсор мыши" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Заблокировано" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Лог" @@ -8345,10 +8407,11 @@ msgid "Log Configuration" msgstr "Настройка логирования" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Войти" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Логировать покрытие инструкций JIT" @@ -8391,7 +8454,7 @@ msgstr "Повторять" msgid "Lost connection to NetPlay server..." msgstr "Соединение с сервером сетевой игры потеряно..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Низкая" @@ -8455,9 +8518,9 @@ msgstr "Убедитесь, что значение игрового време msgid "Make sure there is a Skylander in slot %1!" msgstr "Убедитесь, что в слоте %1 есть Skylander." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Создатель" @@ -8466,7 +8529,7 @@ msgstr "Создатель" msgid "Maker:" msgstr "Создатель:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8479,7 +8542,7 @@ msgstr "" "

Если не уверены – оставьте выключенным." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Управлять NAND" @@ -8518,7 +8581,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Может привести к замедлению в меню Wii и некоторых играх." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Среднее" @@ -8534,7 +8597,7 @@ msgstr "Точка останова в памяти" msgid "Memory Card" msgstr "Карта памяти" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Менеджер карт памяти" @@ -8562,7 +8625,7 @@ msgstr "MemoryCard: вызвано чтение некорректного уч msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: вызвана запись в некорректный участок памяти ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8573,7 +8636,7 @@ msgstr "" "сохранения. Этот процесс необратим, поэтому рекомендуется иметь бэкапы обоих " "NAND. Вы уверены, что хотите продолжить?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "МиБ" @@ -8657,8 +8720,8 @@ msgstr "Изменить слот" msgid "Modifying Skylander: %1" msgstr "Изменение Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Найдено модулей: %1" @@ -8700,7 +8763,7 @@ msgstr "Отображение курсора мыши" msgid "Move" msgstr "Перемещение" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Ролик" @@ -8726,10 +8789,10 @@ msgstr "Множитель" msgid "N&o to All" msgstr "&Нет для всех" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "Проверка NAND" @@ -8738,8 +8801,8 @@ msgstr "Проверка NAND" msgid "NKit Warning" msgstr "Предупреждение NKit" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8748,7 +8811,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8771,8 +8834,8 @@ msgstr "" "

Если вы не уверены, оставьте значение 2.35." -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8785,11 +8848,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Имя" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Название новой метки:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Название удаляемой метки:" @@ -8876,7 +8939,7 @@ msgid "Never Auto-Update" msgstr "Запретить автообновление" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Новая" @@ -8901,7 +8964,7 @@ msgstr "Новый поиск" msgid "New Tag..." msgstr "Новая метка..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Новый ID сгенерирован." @@ -8909,12 +8972,13 @@ msgstr "Новый ID сгенерирован." msgid "New instruction:" msgstr "Новая инструкция:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Новая метка" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Следующий игровой профиль" @@ -8922,8 +8986,9 @@ msgstr "Следующий игровой профиль" msgid "Next Match" msgstr "Следующее совпадение" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Следующий профиль" @@ -9010,7 +9075,7 @@ msgstr "Графический мод не выбран." msgid "No input" msgstr "Нет входных данных" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Проблем не обнаружено." @@ -9057,7 +9122,7 @@ msgstr "" "для предотвращения рассинхронизации ролика" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9277,7 +9342,7 @@ msgstr "" "вызовы функций и пути кода условия, которые выполняются только при при " "выполнении какого-либо действия в эмулируемом программном обеспечении." -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Онлайн-&документация" @@ -9285,7 +9350,7 @@ msgstr "Онлайн-&документация" msgid "Only Show Collection" msgstr "Показывать только коллекцию" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9293,7 +9358,7 @@ msgstr "" "Добавлять только символы с префиксом:\n" "(Пусто - все символы)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9316,14 +9381,18 @@ msgstr "Открыть &папку с образом" msgid "Open &User Folder" msgstr "Открыть папку &пользователя" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Открыть папку..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Открыть лог FIFO" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9424,7 +9493,7 @@ msgstr "Прочие" msgid "Other Partition (%1)" msgstr "Другой раздел (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Другие горячие клавиши" @@ -9441,7 +9510,7 @@ msgstr "Другой игры..." msgid "Output" msgstr "Результаты" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Результаты повторной выборки" @@ -9449,16 +9518,16 @@ msgstr "Результаты повторной выборки" msgid "Output Resampling:" msgstr "Результаты повторной выборки:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Перезаписано" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "&Проиграть записанный ввод..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9487,7 +9556,7 @@ msgstr "Файл изображения PNG (*.png);; Все файлы (*)" msgid "PPC Size" msgstr "Размер PPC" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC и Хост" @@ -9500,7 +9569,7 @@ msgstr "Геймпад" msgid "Pads" msgstr "Мембраны" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Параметры" @@ -9563,7 +9632,7 @@ msgstr "Пауза" msgid "Pause Branch Watch" msgstr "Приостановить Branch Watch" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Пауза в конце ролика" @@ -9613,7 +9682,7 @@ msgstr "Пиковая скорость взмаха." msgid "Per-Pixel Lighting" msgstr "Попискельное освещение" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Обновить систему через интернет" @@ -9643,11 +9712,11 @@ msgstr "Физическое" msgid "Physical address space" msgstr "Физическое адресное пространство" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "ПиБ" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Выбрать шрифт для отладки" @@ -9663,8 +9732,8 @@ msgstr "Тангаж вниз" msgid "Pitch Up" msgstr "Тангаж вверх" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Платформа" @@ -9676,7 +9745,7 @@ msgstr "Запуск" msgid "Play / Record" msgstr "Проигрывание / запись" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Проиграть записанное" @@ -9775,7 +9844,7 @@ msgstr "" "Обнаружена возможная рассинхронизация: %1, вероятно, рассинхронизовался на " "кадре %2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Эффект пост-обработки" @@ -9828,7 +9897,7 @@ msgstr "" msgid "Presets" msgstr "Предустановки" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Кнопка синхронизации" @@ -9851,9 +9920,9 @@ msgstr "" "рекомендуется.

Используйте тогда, когда другие " "настройки не дают хороших результатов." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Предыдущий игровой профиль" @@ -9861,8 +9930,9 @@ msgstr "Предыдущий игровой профиль" msgid "Previous Match" msgstr "Предыдущее совпадение" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Предыдущий профиль" @@ -9912,13 +9982,13 @@ msgstr "" msgid "Profile" msgstr "Профиль" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Счётчик команд" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9935,11 +10005,11 @@ msgstr "" msgid "Public" msgstr "Открытые" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Очистить кэш списка игр" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Поместите ПЗУ IPL в User/GC/<регион>." @@ -9967,7 +10037,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Вопрос" @@ -9992,11 +10062,11 @@ msgstr "R-аналог" msgid "READY" msgstr "ГОТОВ" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "Модули RSO" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "Автообнаружение RSO" @@ -10033,13 +10103,13 @@ msgstr "Raw (без обработки)" msgid "Raw Internal Resolution" msgstr "Внутреннее разрешение Raw" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "За&менить инструкцию" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Чтение" @@ -10062,7 +10132,7 @@ msgstr "Только для чтения" msgid "Read or Write" msgstr "Чтение или запись" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Режим \"Только для чтения\"" @@ -10121,7 +10191,7 @@ msgstr "Красная слева" msgid "Red Right" msgstr "Красная справа" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10176,8 +10246,8 @@ msgstr "Текущие значения обновлены." msgid "Refreshing..." msgstr "Обновление..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Регион" @@ -10198,9 +10268,10 @@ msgstr "Относительный ввод" msgid "Relative Input Hold" msgstr "Удерж. относ. ввод" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" -msgstr "" +msgstr "Релизы (раз в несколько месяцев)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -10227,7 +10298,7 @@ msgstr "Удалить мусорные данные (безвозвратно): msgid "Remove Tag..." msgstr "Удалить метку..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Удалить метку" @@ -10243,8 +10314,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Переименовать символ" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10277,7 +10348,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10289,7 +10360,7 @@ msgstr "Сбросить" msgid "Reset All" msgstr "Сбросить все" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Сброс игнорирования обработчика ошибок" @@ -10341,9 +10412,9 @@ msgstr "Требуется перезапуск" msgid "Restore Defaults" msgstr "По умолчанию" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Восстановить инструкцию" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10477,21 +10548,21 @@ msgstr "" msgid "Rumble" msgstr "Вибрация" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Запуск &до сюда" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Запускать ядра GBA в выделенных потоках" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "Выполнить до" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Выполнить до (игнорирование точек останова)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10560,11 +10631,11 @@ msgstr "Контекст SSL" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "Со&хранить код" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Быстрое &сохранение" @@ -10576,7 +10647,7 @@ msgstr "Безопасное" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10591,23 +10662,35 @@ msgid "Save Branch Watch &As..." msgstr "Сохранить Branch Watch &как…" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" -msgstr "Сохранить снимок Branch Watch" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Экспортировать сохранение" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Сохранить лог FIFO" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Сохранить файл в" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10618,15 +10701,19 @@ msgstr "Сохранение игры" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Файлы сохранений игры (*.sav);;Все файлы (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Импортировать сохранение" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Сохранить самое старое сохранение" @@ -10634,73 +10721,77 @@ msgstr "Сохранить самое старое сохранение" msgid "Save Preset" msgstr "Сохранить предустановку" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Сохранить файл записи как" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Быстрое сохранение" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Быстрое сохранение 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Быстрое сохранение 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Быстрое сохранение 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Быстрое сохранение 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Быстрое сохранение 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Быстрое сохранение 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Быстрое сохранение 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Быстрое сохранение 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Быстрое сохранение 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Быстрое сохранение 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Быстрое сохранение в файл" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Быстрое сохранение в старый слот" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Быстрое сохранение в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Быстрое сохранение в слот" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Сохранить карту символов &как..." @@ -10720,11 +10811,7 @@ msgstr "Сохранить как предустановку…" msgid "Save as..." msgstr "Сохранить как..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Сохранить объединённый файл как" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10739,19 +10826,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Сохранение в той же папке, где и образ" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Сохранить файл с картой" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Сохранить файл сигнатуры" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Сохранить в выбранный слот" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Сохранить в слот %1 - %2" @@ -10787,7 +10866,7 @@ msgstr "Скриншот" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Поиск" @@ -10816,7 +10895,7 @@ msgstr "" "Поиск в виртуальном адресном пространстве пока невозможен. Пожалуйста, " "запустите игру на некоторое время и попробуйте снова." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Найти инструкцию" @@ -10824,7 +10903,7 @@ msgstr "Найти инструкцию" msgid "Search games..." msgstr "Искать игры..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Поиск инструкции" @@ -10862,18 +10941,16 @@ msgstr "Выбрать" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" -"Выберите файл автосохранения снимков Branch Watch (чтобы сохранить в папке " -"пользователя, отмените)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Выберите путь к дампам" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Выберите папку для экспорта" @@ -10881,18 +10958,22 @@ msgstr "Выберите папку для экспорта" msgid "Select Figure File" msgstr "Выберите файл фигурки" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Выбрать BIOS GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Выбрать образ игры GBA" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Выберите путь к файлам сохранений GBA" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Выбрать последнее сохранение" @@ -10901,6 +10982,10 @@ msgstr "Выбрать последнее сохранение" msgid "Select Load Path" msgstr "Выберите путь к загрузке" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Выберите путь к наборам ресурсов" @@ -10909,6 +10994,14 @@ msgstr "Выберите путь к наборам ресурсов" msgid "Select Riivolution XML file" msgstr "Выберите файл XML Riivolution" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Выберите коллекцию Skylander" @@ -10917,58 +11010,62 @@ msgstr "Выберите коллекцию Skylander" msgid "Select Skylander File" msgstr "Выберите файл Skylander" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Выбрать слот %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Выбор сохранения" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Выбрать слот сохранения" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Выбрать слот сохранения 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Выбрать слот сохранения 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Выбрать слот сохранения 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Выбрать слот сохранения 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Выбрать слот сохранения 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Выбрать слот сохранения 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Выбрать слот сохранения 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Выбрать слот сохранения 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Выбрать слот сохранения 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Выбрать слот сохранения 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Выберите путь к WFS" @@ -10986,24 +11083,20 @@ msgstr "Выберите папку" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Выберите файл" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "Выберите папку для синхронизации с образом SD-карты" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Выберите образ SD-карты" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Выберите файл" @@ -11012,19 +11105,15 @@ msgstr "Выберите файл" msgid "Select a game" msgstr "Выберите игру" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Выберите продукт для установки в NAND" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Выбрать e-карточки" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Выберите адрес модуля RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Выберите файл записи, который следует воспроизвести" @@ -11032,23 +11121,6 @@ msgstr "Выберите файл записи, который следует в msgid "Select the Virtual SD Card Root" msgstr "Выберите коренной каталог виртуальной SD-карты" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Выберите файл с ключами (дамп OTP/SEEPROM)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Выберите файл сохранения" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Выберите, куда вы хотите сохранить сконвертированный образ" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Выберите, куда вы хотите сохранить сконвертированные образы" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Выбранный шрифт" @@ -11125,7 +11197,7 @@ msgstr "" "

Если вы не уверены, оставьте значение «Внутреннее " "разрешение с коррекцией соотношения сторон»." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11203,6 +11275,27 @@ msgstr "" "

Если не уверены – выберите OpenGL." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Отправить" @@ -11211,6 +11304,15 @@ msgstr "Отправить" msgid "Sensor Bar Position:" msgstr "Месторасположение сенсора:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11243,39 +11345,35 @@ msgstr "Присвоить &значение" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Изменить СК" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Сделать &образом по умолчанию" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Назначить файл карты памяти для слота A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Назначить файл карты памяти для слота B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Назначить адрес &конца символа" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Назначить &размер символа" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Назначить адрес конца символа" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Назначить размер символа (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11292,7 +11390,7 @@ msgstr "Устанавливает язык системы для Wii." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11306,10 +11404,17 @@ msgstr "" "Устанавливает задержку в миллисекундах. Большие значения могут уменьшить " "треск звука. Только для некоторых бэкендов." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -11363,11 +11468,11 @@ msgstr "Контроллер Shinkansen" msgid "Show % Speed" msgstr "Показывать % скорости" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Показать &лог" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Отображать панель &инструментов" @@ -11375,15 +11480,15 @@ msgstr "Отображать панель &инструментов" msgid "Show Active Title in Window Title" msgstr "Показывать название запущенной игры в заголовке окна" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Показать все" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Австралия" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Показывать текущую игру в Discord" @@ -11392,7 +11497,7 @@ msgstr "Показывать текущую игру в Discord" msgid "Show Disabled Codes First" msgstr "Показывать отключённые коды первыми" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL-файлы" @@ -11405,7 +11510,7 @@ msgstr "Показывать включённые коды первыми" msgid "Show FPS" msgstr "Показывать FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Показывать счётчик кадров" @@ -11413,15 +11518,15 @@ msgstr "Показывать счётчик кадров" msgid "Show Frame Times" msgstr "Показывать время кадра" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Франция" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Германия" @@ -11429,27 +11534,27 @@ msgstr "Германия" msgid "Show Golf Mode Overlay" msgstr "Показывать оверлей режима гольфа" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Показать Infinity Base" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Показывать ввод экрана" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Италия" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Япония" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Корея" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Показывать счётчик лагов" @@ -11457,7 +11562,7 @@ msgstr "Показывать счётчик лагов" msgid "Show Language:" msgstr "Язык отображения:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Показать &настройки логирования" @@ -11469,7 +11574,7 @@ msgstr "Показывать сообщения в сетевой игре" msgid "Show NetPlay Ping" msgstr "Показывать пинг в сетевой игре" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Голландия" @@ -11477,12 +11582,12 @@ msgstr "Голландия" msgid "Show On-Screen Display Messages" msgstr "Показывать наэкранные сообщения" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Показать СК" @@ -11490,7 +11595,7 @@ msgstr "Показать СК" msgid "Show Performance Graphs" msgstr "Показывать графики производительности" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Отображать игры платформ" @@ -11498,23 +11603,23 @@ msgstr "Отображать игры платформ" msgid "Show Projection Statistics" msgstr "Показывать статистику проекции" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Отображать игры регионов" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Показывать счётчик перезаписей" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Россия" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Показать портал Skylanders" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Испания" @@ -11526,19 +11631,23 @@ msgstr "Отображение цветов в зависимости от ск msgid "Show Statistics" msgstr "Показывать статистику" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Показывать системное время" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Тайвань" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Неизвестный" @@ -11550,27 +11659,27 @@ msgstr "Показывать длительность VBlank" msgid "Show VPS" msgstr "Показывать VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD-файлы" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Мир" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Показать в &памяти" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Показать в коде" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Показать в памяти" @@ -11587,13 +11696,9 @@ msgstr "Показать в памяти" msgid "Show in server browser" msgstr "Показывать в списке серверов" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "Показать целевой объект в памят&и" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11636,18 +11741,6 @@ msgstr "" "полной

Если вы не уверены, не устанавливайте этот " "флажок." -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11674,6 +11767,18 @@ msgstr "" "стандартное отклонение.

Если вы не уверены, не " "устанавливайте этот флажок." +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11719,6 +11824,14 @@ msgstr "" "Показывает различные статистики отрисовки.

Если не " "уверены – оставьте выключенным." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Горизонтальная стереопара" @@ -11735,7 +11848,7 @@ msgstr "Положить на бок" msgid "Sideways Wii Remote" msgstr "Wii Remote на боку" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "База данных сигнатур" @@ -11784,7 +11897,7 @@ msgstr "" "Размер буфера растяжения в миллисекундах. При низких значениях звук может " "потрескивать." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Пропустить" @@ -11982,6 +12095,10 @@ msgstr "" msgid "Speed" msgstr "Скорость" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -12018,11 +12135,11 @@ msgstr "Запуск Branch Watch" msgid "Start New Cheat Search" msgstr "Новый поиск читов" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "&Начать запись ввода" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Начать запись" @@ -12061,39 +12178,39 @@ msgstr "Шаг" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Шаг с заходом" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Шаг с выходом" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Шаг с обходом" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Шаг с выходом выполнен успешно!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Истекло время ожидания шага с выходом!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Выполняется шаг с обходом..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Шаг выполнен успешно!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Шаги" @@ -12102,7 +12219,7 @@ msgstr "Шаги" msgid "Stereo" msgstr "Стерео" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Стереоскопический 3D-режим" @@ -12132,7 +12249,7 @@ msgstr "Стик" msgid "Stop" msgstr "Стоп" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Остановить проигр./запись ввода" @@ -12198,7 +12315,7 @@ msgstr "Бренчание" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:416 msgid "Style" -msgstr "" +msgstr "Стиль" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:142 msgid "Style:" @@ -12211,14 +12328,14 @@ msgstr "Стиль:" msgid "Stylus" msgstr "Стилус" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Успешно" @@ -12245,24 +12362,24 @@ msgstr "Файлы сохранений (%n из %1 шт.) успешно экс msgid "Successfully exported save files" msgstr "Файлы сохранений успешно экспортированы" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Сертификаты успешно извлечены из NAND" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Файл успешно извлечён." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Системные данные успешно извлечены." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Файл сохранения успешно импортирован." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Данный продукт успешно установлен в NAND." @@ -12313,7 +12430,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12342,17 +12459,21 @@ msgstr "Переключиться на B" msgid "Symbol" msgstr "Символ" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Адрес конца символа (%1):" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Имя символа:" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Символы" @@ -12403,7 +12524,7 @@ msgstr "Синхронизация сохранений..." msgid "System Language:" msgstr "Язык системы:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "Ввод TAS" @@ -12414,9 +12535,9 @@ msgid "TAS Tools" msgstr "Управление TAS" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Метки" @@ -12434,7 +12555,7 @@ msgstr "Хвост" msgid "Taiwan" msgstr "Тайвань" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Сделать скриншот" @@ -12442,7 +12563,7 @@ msgstr "Сделать скриншот" msgid "Target address range is invalid." msgstr "Диапазон целевых адресов является недопустимым." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12479,7 +12600,7 @@ msgstr "Точность кэширования текстур" msgid "Texture Dumping" msgstr "Дамп текстур" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Фильтрация текстур" @@ -12532,7 +12653,7 @@ msgstr "IPL-файла нет в списке известных коррект msgid "The Masterpiece partitions are missing." msgstr "Отсутствуют разделы Masterpiece." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12540,7 +12661,7 @@ msgstr "" "Не получается исправить NAND. Рекомендуется создать резервную копию текущих " "данных и поставить NAND с нуля." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND успешно исправлен." @@ -12724,7 +12845,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Файловая система некорректна или не может быть прочитана." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12874,7 +12995,7 @@ msgstr "" "Один и тот же файл не может использоваться в нескольких слотах; он уже " "используется %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12915,7 +13036,7 @@ msgstr "Указанный общий ключевой индекс: {0}, а д msgid "The specified file \"{0}\" does not exist" msgstr "Указанный файл \"{0}\" не существует" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12980,7 +13101,7 @@ msgstr "Отсутствует раздел с обновлением." msgid "The update partition is not at its normal position." msgstr "Раздел с обновлением находится не на своей обычной позиции." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -13006,7 +13127,7 @@ msgstr "Раздел {0} некорректно выровнен." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:384 msgid "Theme" -msgstr "" +msgstr "Тема" #: Source/Core/DiscIO/VolumeVerifier.cpp:445 msgid "There are too many partitions in the first partition table." @@ -13102,7 +13223,7 @@ msgstr "" "Запустите сборку Dolphin для ARM64 для наилучшей работы." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Это нельзя отменить!" @@ -13351,7 +13472,7 @@ msgstr "Потоки" msgid "Threshold" msgstr "Порог" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "ТиБ" @@ -13371,10 +13492,10 @@ msgstr "" msgid "Timed Out" msgstr "Время ожидания истекло" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Название" @@ -13382,25 +13503,29 @@ msgstr "Название" msgid "To" msgstr "до" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "До:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Полноэкранный режим" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Анаглиф (3D)" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Горизонтальная стереопара (3D)" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Вертикальная стереопара (3D)" @@ -13408,28 +13533,28 @@ msgstr "Вертикальная стереопара (3D)" msgid "Toggle All Log Types" msgstr "Изменить все виды логгирования" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Изменить соотношение сторон" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Точка останова" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Вкл./выкл. обрезку" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Вкл./выкл. свои текстуры" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Вкл./выкл. копии EFB" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Вкл./выкл. туман" @@ -13441,31 +13566,31 @@ msgstr "Вкл./выкл. полноэкранный режим" msgid "Toggle Pause" msgstr "Вкл./выкл. паузу" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Вкл./выкл. SD-карту" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Вкл./выкл. пропуск доступа к EFB" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Вкл./выкл. дамп текстур" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Вкл./выкл. USB-клавиатуру" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Вкл./выкл. копии XFB" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Вкл./выкл. немедленный режим XFB" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Ошибка токенизации." @@ -13588,7 +13713,7 @@ msgid "Trophy" msgstr "Трофей" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13618,7 +13743,7 @@ msgstr "Эмуляция устройства USB" msgid "USB Emulation" msgstr "Эмуляция USB" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "Устройства эмуляции USB" @@ -13670,15 +13795,15 @@ msgstr "" "подтормаживания при компиляции шейдеров с минимальным влиянием на " "производительность, но конечный результат зависит от поведения драйвера ГП." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Не удалось автоматически обнаружить модуль RSO" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Не удалось подключиться к серверу обновлений." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Не удалось создать копию средства обновления." @@ -13718,7 +13843,7 @@ msgstr "" msgid "Unable to read file." msgstr "Не удалось прочитать файл." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Не удалось установить разрешения для копии средства обновления." @@ -13741,11 +13866,11 @@ msgstr "Несжатые образы GC/Wii (*.iso *.gcm)" msgid "Undead" msgstr "Нежить" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Отменить быструю загрузку" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Отменить быстрое сохранение" @@ -13765,7 +13890,7 @@ msgstr "" "Удаление WAD приведет к удалению текущей версии этого продукта из NAND без " "удаления его сохраненных данных. Продолжить?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "США" @@ -13865,11 +13990,11 @@ msgstr "Неизвестный(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Неизвестный(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Без ограничения" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Выгрузить образ игры" @@ -13877,7 +14002,12 @@ msgstr "Выгрузить образ игры" msgid "Unlock Cursor" msgstr "Разблок. курсор" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13977,7 +14107,7 @@ msgstr "Поставить вертикально" msgid "Upright Wii Remote" msgstr "Wii Remote вертикально" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Настройки отправки статистики об использовании" @@ -14090,7 +14220,7 @@ msgstr "Имя пользователя" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -14171,7 +14301,7 @@ msgstr "Пропускать VBI" msgid "Value" msgstr "Значение" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Значение, отслеживаемое в текущей инструкции." @@ -14259,22 +14389,22 @@ msgstr "Вирт. надсечки" msgid "Virtual address space" msgstr "Вирт. адр. пространство" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Громкость" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Уменьшить громкость" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Выключить звук" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Увеличить громкость" @@ -14282,7 +14412,7 @@ msgstr "Увеличить громкость" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD-файлы (*.wad)" @@ -14413,7 +14543,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Предупреждение" @@ -14569,7 +14699,7 @@ msgstr "Белый список пробрасываемых USB-устройс msgid "Widescreen Hack" msgstr "Широкоформатный хак" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14639,7 +14769,7 @@ msgstr "Wii и Wii Remote" msgid "Wii data is not public yet" msgstr "Данные Wii ещё не опубликованы" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Файлы сохранений Wii (*.bin);;Все файлы (*)" @@ -14674,11 +14804,11 @@ msgstr "Мир" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Запись" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Запись дампа журнала блока JIT" @@ -14846,7 +14976,7 @@ msgstr "" "исключительно для игры «Phantasy Star Online Episode I & II». Если вы не " "уверены, вернитесь назад и настройте «Стандартный контроллер»." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" "Вы используете последнюю версию, доступную\n" @@ -14937,7 +15067,7 @@ msgstr "" "Остановиться сейчас, чтобы устранить проблему?\n" "Если выбрать «Нет», звук может быть искажён." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." @@ -15160,6 +15290,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Dolphin Team. «GameCube» и «Wii» - товарные знаки Nintendo. " +"Dolphin никак не связан с Nintendo." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. diff --git a/Languages/po/sr.po b/Languages/po/sr.po index 29a1031ac4..bc75a43f01 100644 --- a/Languages/po/sr.po +++ b/Languages/po/sr.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: nikolassj, 2011\n" -"Language-Team: Serbian (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Serbian (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/sr/)\n" "Language: sr\n" "MIME-Version: 1.0\n" @@ -161,7 +161,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -192,7 +192,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -206,7 +206,7 @@ msgid "%1 ms" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -226,22 +226,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -249,6 +249,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -269,7 +273,7 @@ msgstr "" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -282,7 +286,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -326,10 +330,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -339,23 +347,19 @@ msgstr "" msgid "&Add New Code..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "" @@ -364,14 +368,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -383,11 +387,11 @@ msgstr "" msgid "&Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -395,7 +399,7 @@ msgstr "" msgid "&Clone..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "" @@ -403,18 +407,15 @@ msgstr "" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -450,7 +451,7 @@ msgstr "" msgid "&Eject Disc" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulacija" @@ -475,36 +476,36 @@ msgstr "" msgid "&File" msgstr "&Fajl" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Graficke Opcije" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Pomoc" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Hotkey Opcije" @@ -528,15 +529,15 @@ msgstr "" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -548,11 +549,11 @@ msgstr "" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "Loaduj Savestate" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -566,19 +567,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Memorija" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "" @@ -586,7 +587,7 @@ msgstr "" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -599,19 +600,19 @@ msgstr "" msgid "&Open..." msgstr "&Otvori..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pauza" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Pokreni" @@ -619,7 +620,7 @@ msgstr "&Pokreni" msgid "&Properties" msgstr "&Pribor/Opcije" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "" @@ -627,7 +628,7 @@ msgstr "" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Registri" @@ -640,12 +641,12 @@ msgstr "" msgid "&Remove Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Reset" @@ -657,7 +658,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -669,11 +670,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Stop" @@ -681,7 +682,7 @@ msgstr "&Stop" msgid "&Theme:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -703,17 +704,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Pogledaj" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "" @@ -725,11 +726,11 @@ msgstr "" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -749,7 +750,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(iskljucen/o)" @@ -773,7 +774,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -851,7 +852,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -863,7 +864,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -899,19 +900,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -935,7 +936,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1032,7 +1033,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1062,8 +1063,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1081,7 +1082,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1091,7 +1092,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1175,7 +1176,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1302,11 +1303,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1340,13 +1341,13 @@ msgstr "Dodaj..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "" @@ -1365,7 +1366,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1425,7 +1426,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1481,7 +1482,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1489,7 +1490,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1498,7 +1499,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1507,8 +1508,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1532,11 +1533,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1594,7 +1595,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1606,19 +1607,19 @@ msgstr "" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1632,8 +1633,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1644,7 +1645,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1681,8 +1682,8 @@ msgstr "" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1743,7 +1744,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1763,7 +1768,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1777,6 +1782,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1788,7 +1804,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1871,10 +1887,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Baner" @@ -1902,7 +1918,7 @@ msgstr "" msgid "Basic" msgstr "Osnovno/ni/ne" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Osnovne opcije" @@ -1962,9 +1978,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2000,15 +2016,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2136,30 +2152,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2255,7 +2271,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2290,7 +2306,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2352,14 +2368,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2408,7 +2424,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2456,7 +2472,7 @@ msgstr "Promeni &Disk..." msgid "Change Disc" msgstr "Promeni Disk" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2516,7 +2532,7 @@ msgstr "Trazi Chit" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2528,7 +2544,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2546,29 +2562,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Biraj fajl da otvoris " - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Biraj folder u kome zelis da ekstraktujes " +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2587,7 +2603,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2597,7 +2613,7 @@ msgstr "Ocisti" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2618,7 +2634,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2642,7 +2658,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2662,7 +2678,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2697,9 +2713,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2724,7 +2740,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2831,9 +2847,9 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -2846,7 +2862,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2857,7 +2873,7 @@ msgstr "" msgid "Connect" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "" @@ -2865,27 +2881,27 @@ msgstr "" msgid "Connect USB Keyboard" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "" @@ -2930,19 +2946,19 @@ msgstr "" msgid "Controller Profile" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2954,6 +2970,16 @@ msgstr "" msgid "Controllers" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2962,7 +2988,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2970,7 +2996,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2979,7 +3005,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3004,7 +3030,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3091,18 +3117,22 @@ msgstr "" msgid "Copy" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3111,18 +3141,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3228,8 +3254,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3325,7 +3351,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3513,24 +3539,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3586,8 +3612,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Obrisi" @@ -3605,7 +3631,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3620,9 +3646,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "" @@ -3671,7 +3697,7 @@ msgstr "" msgid "Detect" msgstr "Detekuj" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3679,7 +3705,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3737,15 +3763,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3753,11 +3779,11 @@ msgstr "" msgid "Disable Fog" msgstr "Onemoguci \"Fog\"" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3779,7 +3805,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3802,7 +3828,8 @@ msgstr "Disk" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3832,15 +3859,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3850,7 +3877,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3871,9 +3898,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3885,8 +3912,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -3933,12 +3960,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3948,7 +3969,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4005,11 +4026,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4052,7 +4073,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "" @@ -4064,7 +4085,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "" @@ -4181,16 +4202,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4214,7 +4235,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4277,7 +4298,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4297,7 +4318,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "" @@ -4321,8 +4342,8 @@ msgstr "" msgid "Enable Dual Core" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 @@ -4367,7 +4388,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4409,7 +4430,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4485,7 +4506,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4519,7 +4540,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4563,6 +4584,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4590,7 +4620,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4641,14 +4671,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4687,26 +4717,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4723,9 +4753,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Error" @@ -4756,7 +4786,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4847,7 +4877,7 @@ msgstr "" msgid "Euphoria" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4860,15 +4890,15 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4880,19 +4910,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4900,7 +4930,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "" @@ -4911,11 +4941,11 @@ msgstr "" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "" @@ -4943,7 +4973,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4971,35 +5001,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5027,7 +5057,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5093,7 +5123,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5122,15 +5152,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5149,25 +5179,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5187,18 +5217,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5210,7 +5240,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5247,7 +5277,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5286,7 +5316,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5422,19 +5452,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5488,8 +5518,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5497,11 +5527,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5537,9 +5568,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5551,20 +5582,20 @@ msgstr "" msgid "File Info" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "" @@ -5662,8 +5693,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5730,7 +5761,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5740,7 +5771,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5783,20 +5814,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5853,11 +5884,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5891,11 +5922,12 @@ msgstr "" msgid "FullScr" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5915,7 +5947,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5931,11 +5963,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6048,11 +6080,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6086,8 +6118,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "" @@ -6213,7 +6245,8 @@ msgstr "" msgid "Gecko Codes" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6233,14 +6266,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6258,7 +6298,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6291,7 +6331,7 @@ msgstr "Grafike" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6300,7 +6340,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6322,7 +6362,7 @@ msgstr "" msgid "Green Right" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6404,7 +6444,7 @@ msgstr "" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6422,12 +6462,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6491,7 +6531,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6592,11 +6632,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6630,6 +6670,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6683,7 +6733,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6698,15 +6748,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6762,24 +6812,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6828,8 +6878,8 @@ msgstr "Info " #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Informacija " @@ -6843,10 +6893,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "" @@ -6865,13 +6915,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "" @@ -6889,7 +6936,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6897,8 +6944,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6912,7 +6960,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6921,7 +6969,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6980,8 +7028,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -6998,7 +7046,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7006,7 +7054,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7014,7 +7062,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7023,7 +7071,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7103,11 +7151,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7115,47 +7163,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7167,14 +7215,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7182,11 +7231,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7208,7 +7257,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7243,7 +7292,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7251,7 +7300,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7381,6 +7430,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7414,11 +7471,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7428,17 +7485,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Ucitaj " -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7447,7 +7504,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7458,7 +7515,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7466,16 +7523,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7483,104 +7545,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Ucitaj State Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Ucitaj State Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Ucitaj State Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Ucitaj State Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Ucitaj State Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Uci State Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Ucitaj State Slot 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Ucitaj State Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7588,20 +7650,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7609,7 +7666,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7634,20 +7691,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "" @@ -7657,10 +7714,11 @@ msgid "Log Configuration" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7699,7 +7757,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7762,9 +7820,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7773,7 +7831,7 @@ msgstr "" msgid "Maker:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7781,7 +7839,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7820,7 +7878,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7836,7 +7894,7 @@ msgstr "" msgid "Memory Card" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7864,7 +7922,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7872,7 +7930,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7943,8 +8001,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7986,7 +8044,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8010,10 +8068,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8022,8 +8080,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8032,7 +8090,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8049,8 +8107,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8063,11 +8121,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8146,7 +8204,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8171,7 +8229,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8179,12 +8237,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8192,8 +8251,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8280,7 +8340,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8321,7 +8381,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8521,7 +8581,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "" @@ -8529,13 +8589,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8556,13 +8616,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8664,7 +8728,7 @@ msgstr "" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8681,7 +8745,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8689,16 +8753,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8727,7 +8791,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8740,7 +8804,7 @@ msgstr "" msgid "Pads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8803,7 +8867,7 @@ msgstr "Pauza " msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8848,7 +8912,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8878,11 +8942,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8898,8 +8962,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8911,7 +8975,7 @@ msgstr "Pokreni " msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Pokreni snimanje " @@ -9006,7 +9070,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9057,7 +9121,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9075,9 +9139,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9085,8 +9149,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9130,13 +9195,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9153,11 +9218,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9184,7 +9249,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Pitanje " @@ -9209,11 +9274,11 @@ msgstr "" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9250,13 +9315,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9279,7 +9344,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9338,7 +9403,7 @@ msgstr "" msgid "Red Right" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9384,8 +9449,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9406,7 +9471,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9435,7 +9501,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9448,7 +9514,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9480,7 +9546,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9492,7 +9558,7 @@ msgstr "Reset/Restart " msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9544,8 +9610,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9675,20 +9741,20 @@ msgstr "" msgid "Rumble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9758,11 +9824,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "" @@ -9774,7 +9840,7 @@ msgstr "Siguran " #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9789,22 +9855,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9816,15 +9894,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9832,73 +9914,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Snimaj State Slot 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Snimaj State Slot 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Snimaj State Slot 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Snimaj State Slot 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Snimaj State Slot 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Snimaj State Slot 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Snimaj State Slot 7 " -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Snimaj State Slot 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9918,11 +10004,7 @@ msgstr "" msgid "Save as..." msgstr "Snimaj kao..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9933,19 +10015,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9979,7 +10053,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "" @@ -10006,7 +10080,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10014,7 +10088,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10050,7 +10124,7 @@ msgstr "Izaberi " #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10059,7 +10133,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10067,18 +10141,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10087,6 +10165,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10095,6 +10177,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10103,58 +10193,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10172,24 +10266,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10198,19 +10288,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10218,23 +10304,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Izaberi \"snimani fajl/the save state\"" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10290,7 +10359,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10333,6 +10402,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Isprati" @@ -10341,6 +10431,15 @@ msgstr "Isprati" msgid "Sensor Bar Position:" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10369,39 +10468,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10415,7 +10510,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10427,10 +10522,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10481,11 +10583,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "" @@ -10493,15 +10595,15 @@ msgstr "" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10510,7 +10612,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10523,7 +10625,7 @@ msgstr "" msgid "Show FPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10531,15 +10633,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10547,27 +10649,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10575,7 +10677,7 @@ msgstr "" msgid "Show Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "" @@ -10587,7 +10689,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10595,12 +10697,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10608,7 +10710,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "" @@ -10616,23 +10718,23 @@ msgstr "" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10644,19 +10746,23 @@ msgstr "" msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10668,27 +10774,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10705,13 +10811,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10744,18 +10846,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10776,6 +10866,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10808,6 +10910,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10824,7 +10934,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10871,7 +10981,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11045,6 +11155,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11081,11 +11195,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Pokreni Snimanje" @@ -11124,39 +11238,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11165,7 +11279,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11195,7 +11309,7 @@ msgstr "" msgid "Stop" msgstr " Zaustavi" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11264,14 +11378,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11298,24 +11412,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11366,7 +11480,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11391,17 +11505,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11450,7 +11568,7 @@ msgstr "" msgid "System Language:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "" @@ -11461,9 +11579,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11481,7 +11599,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "" @@ -11489,7 +11607,7 @@ msgstr "" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11524,7 +11642,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11569,13 +11687,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11726,7 +11844,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11850,7 +11968,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11884,7 +12002,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11942,7 +12060,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12047,7 +12165,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12238,7 +12356,7 @@ msgstr "" msgid "Threshold" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12257,10 +12375,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "" @@ -12268,25 +12386,29 @@ msgstr "" msgid "To" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12294,28 +12416,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12327,31 +12449,31 @@ msgstr "" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12472,7 +12594,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12502,7 +12624,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12540,15 +12662,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12580,7 +12702,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12603,11 +12725,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "" @@ -12625,7 +12747,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12721,11 +12843,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12733,7 +12855,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12831,7 +12958,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12924,7 +13051,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -12995,7 +13122,7 @@ msgstr "" msgid "Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13083,22 +13210,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Jacina zvuka " -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "" @@ -13106,7 +13233,7 @@ msgstr "" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13207,7 +13334,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Upozorenje " @@ -13320,7 +13447,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13390,7 +13517,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13425,11 +13552,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13573,7 +13700,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13637,7 +13764,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/sv.po b/Languages/po/sv.po index 3afd6079b6..402777a804 100644 --- a/Languages/po/sv.po +++ b/Languages/po/sv.po @@ -15,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: JosJuice, 2015-2024\n" -"Language-Team: Swedish (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Swedish (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/sv/)\n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -180,7 +180,7 @@ msgstr "%1 ändring(ar) före %2" msgid "%1 doesn't support this feature on your system." msgstr "%1 stöder inte den här funktionen på ditt system." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 stöder inte den här funktionen." @@ -202,7 +202,7 @@ msgstr "%1 har gått med" msgid "%1 has left" msgstr "%1 har gått ut" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 har låst upp %2/%3 prestationer värda %4/%5 poäng" @@ -214,7 +214,7 @@ msgstr "%1 är inte en giltig ROM" msgid "%1 is now golfing" msgstr "%1 golfar nu" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 spelar %2" @@ -228,7 +228,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 poäng" @@ -248,22 +248,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (normal hastighet)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "%1:s värde ändras" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "%1:s värde träffas" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1:s värde används" @@ -271,6 +271,10 @@ msgstr "%1:s värde används" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -291,7 +295,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -304,7 +308,7 @@ msgstr "%1x ursprunglig (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x ursprunglig (%2x%3) för %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -348,10 +352,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Om" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Lägg till minnesbrytpunkt" @@ -361,23 +369,19 @@ msgstr "&Lägg till minnesbrytpunkt" msgid "&Add New Code..." msgstr "&Lägg till ny kod…" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Lägg till funktion" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Lägg till..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Assembler" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Ljudinställningar" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Uppdatera automatiskt:" @@ -386,14 +390,14 @@ msgid "&Borderless Window" msgstr "&Kantlöst fönster" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" -msgstr "&Bryt vid träff" +msgid "&Break on Hit" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Brytpunkter" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Bugghanterare" @@ -405,11 +409,11 @@ msgstr "&Avbryt" msgid "&Cheats Manager" msgstr "&Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Leta efter uppdateringar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Rensa symboler" @@ -417,7 +421,7 @@ msgstr "&Rensa symboler" msgid "&Clone..." msgstr "&Klona..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Kod" @@ -425,18 +429,15 @@ msgstr "&Kod" msgid "&Connected" msgstr "&Inkopplad" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Kontrollinställningar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "&Kopiera adress" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Kopiera adress" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Skapa..." @@ -472,7 +473,7 @@ msgstr "&Redigera..." msgid "&Eject Disc" msgstr "&Mata ut skiva" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emulering" @@ -497,36 +498,36 @@ msgstr "&Exportera som .gci..." msgid "&File" msgstr "&Arkiv" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Teckensnitt…" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "Gå fram en &bildruta" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Fri vy-inställningar" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Generera symboler från" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "Källkoden på &GitHub" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "G&rafikinställningar" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Hjälp" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Kortkommandoinställningar" @@ -550,15 +551,15 @@ msgstr "&Importera..." msgid "&Infinity Base" msgstr "&Infinitybas" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&Infoga blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "Tidsut&jämning" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -570,11 +571,11 @@ msgstr "&Språk:" msgid "&Load Branch Watch" msgstr "&Ladda grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "L&äs in snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Ladda symbol-map" @@ -588,19 +589,19 @@ msgstr "&Ladda fil till nuvarande adress" msgid "&Lock Watches" msgstr "&Lås bevakningar" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Lås fast gränssnittselement" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" -msgstr "&Logga vid träff" +msgid "&Log on Hit" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Minne" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Inspelning" @@ -608,7 +609,7 @@ msgstr "&Inspelning" msgid "&Mute" msgstr "&Tyst" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Nätverk" @@ -621,19 +622,19 @@ msgstr "&Nej" msgid "&Open..." msgstr "&Öppna..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "A<ernativ" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&Patcha HLE-funktioner" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Pausa" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Spela" @@ -641,7 +642,7 @@ msgstr "&Spela" msgid "&Properties" msgstr "&Egenskaper" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "S&krivskyddat läge" @@ -649,7 +650,7 @@ msgstr "S&krivskyddat läge" msgid "&Refresh List" msgstr "&Uppdatera lista" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Register" @@ -662,12 +663,12 @@ msgstr "&Ta bort" msgid "&Remove Code" msgstr "&Ta bort kod" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Byt namn på symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Återställ" @@ -679,7 +680,7 @@ msgstr "&Resurspaketshanterare" msgid "&Save Branch Watch" msgstr "&Spara grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Spara symbol-map" @@ -691,11 +692,11 @@ msgstr "&Skanna e-Readerkort..." msgid "&Skylanders Portal" msgstr "&Skylandersportal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Hastighetsbegränsning:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "S&toppa" @@ -703,7 +704,7 @@ msgstr "S&toppa" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&Trådar" @@ -725,17 +726,17 @@ msgstr "Ladda &ur ROM" msgid "&Unlock Watches" msgstr "Lås &upp bevakningar" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Visa" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&Bevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Webbplats" @@ -747,11 +748,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Ja" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' hittades inte, inga symbolnamn genererade" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' hittades inte, skannar efter vanliga funktioner istället" @@ -771,7 +772,7 @@ msgstr "(System)" msgid "(host)" msgstr "(värd)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(av)" @@ -795,7 +796,7 @@ msgstr ", Komma" msgid "- Subtract" msgstr "- Subtrahera" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -873,7 +874,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x anisotropisk" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -885,7 +886,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -921,19 +922,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-bitars osignerat heltal" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D-djup" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -957,7 +958,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1056,7 +1057,7 @@ msgstr "" "Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1093,8 +1094,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Större än" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "En nätspelssession pågår redan!" @@ -1119,7 +1120,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "En skiva håller redan på att sättas in." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1131,7 +1132,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "En snabbsparning kan inte laddas utan att ange ett spel att starta." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1233,7 +1234,7 @@ msgid "Achievement Settings" msgstr "Prestationsinställningar" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Prestationer" @@ -1325,7 +1326,7 @@ msgstr "Action Replay: Normalkod {0}: Ogiltig undertyp {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "Aktivera nätspelschatt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktiv" @@ -1376,11 +1377,11 @@ msgstr "Lägg till ny USB-enhet" msgid "Add Shortcut to Desktop" msgstr "Skapa genväg på skrivbordet" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Lägg till brytpunkt" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Lägg till en minnesbrytpunkt" @@ -1414,13 +1415,13 @@ msgstr "Lägg till..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adress" @@ -1439,7 +1440,7 @@ msgstr "Adressutrymme enligt CPU:ns tillstånd" msgid "Address:" msgstr "Adress:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1525,7 +1526,7 @@ msgstr "Avancerat" msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1581,7 +1582,7 @@ msgstr "Alla double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1589,7 +1590,7 @@ msgid "All Files" msgstr "Alla filer" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Alla filer (*)" @@ -1598,7 +1599,7 @@ msgstr "Alla filer (*)" msgid "All Float" msgstr "Alla float" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Alla GC/Wii-filer" @@ -1607,8 +1608,8 @@ msgstr "Alla GC/Wii-filer" msgid "All Hexadecimal" msgstr "Alla hexadecimala" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alla snabbsparningar (*.sav *.s##);; Alla filer (*)" @@ -1632,11 +1633,11 @@ msgstr "Alla spelares koder har synkroniserats." msgid "All players' saves synchronized." msgstr "Alla spelares sparfiler har synkroniserats." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Tillåt regionsinställningar som inte matchar" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Tillåt rapportering av användningsstatistik" @@ -1696,7 +1697,7 @@ msgstr "Vinkel" msgid "Angular velocity to ignore and remap." msgstr "Vinkelhastighet att ignorera samt skala med." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Kantutjämning" @@ -1708,19 +1709,19 @@ msgstr "Kantutjämning:" msgid "Any Region" msgstr "Valfri region" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Lägg till signatur i" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "Lägg till i &existerande signaturfil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "Appli&cera signaturfil..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1736,9 +1737,9 @@ msgstr "Apploader-datum:" msgid "Apply" msgstr "Verkställ" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "Applicera signaturfil" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1748,7 +1749,7 @@ msgstr "Upptäck godtyckliga mipmaps" msgid "Are you sure that you want to delete '%1'?" msgstr "Vill du verkligen radera '%1'?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Vill du verkligen radera den här filen?" @@ -1785,9 +1786,9 @@ msgstr "Bildförhållande:" msgid "Assemble" msgstr "Assemblera" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Assemblera instruktion" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1847,7 +1848,11 @@ msgstr "Auto" msgid "Auto (Multiple of 640x528)" msgstr "Auto (multipel av 640x528)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Automatiska uppdateringar" @@ -1872,7 +1877,7 @@ msgstr "Autojustera fönsterstorlek" msgid "Auto-Hide" msgstr "Dölj automatiskt" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "Upptäck RSO-moduler automatiskt?" @@ -1889,6 +1894,17 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Uppdatera nuvarande värden automatiskt" @@ -1900,7 +1916,7 @@ msgid "Auxiliary" msgstr "ARAM" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1986,10 +2002,10 @@ msgstr "Dålig förskjutning angavs." msgid "Bad value provided." msgstr "Ogiltigt värde angivet." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Banner" @@ -2017,7 +2033,7 @@ msgstr "Basprioritet" msgid "Basic" msgstr "Grundläggande" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Grundläggande inställningar" @@ -2081,9 +2097,9 @@ msgstr "" "\n" "Prova igen med en annan karaktär." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blockstorlek" @@ -2121,15 +2137,15 @@ msgstr "" "Bluetooth-genomsläppningsläge är påslaget, men Dolphin byggdes utan libusb. " "Genomsläppningsläge kan inte användas." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Pausa vid start" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-kopia (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii-nyckelfil (*bin);;Alla filer (*)" @@ -2257,30 +2273,30 @@ msgstr "Branch to Link Register (LR sparad)" msgid "Branch: %1" msgstr "Gren: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Grenar" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Bryt" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" -msgstr "Bryt &och logga vid träff" +msgid "Break &and Log on Hit" +msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Brytpunkt" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Brytpunkt påträffades! Urstegning avbruten." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Brytpunkter" @@ -2379,7 +2395,7 @@ msgstr "Av: %1" msgid "C Stick" msgstr "C-spak" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "S&kapa signaturfil..." @@ -2418,7 +2434,7 @@ msgstr "" msgid "Calculate" msgstr "Beräkna" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2485,15 +2501,15 @@ msgstr "Det går inte att redigera skurkar för den här trofén!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kan inte hitta Wii-fjärrkontrollen med anslutnings-handle {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" "Det går inte att starta en nätspelssession medan ett spel fortfarande körs!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2547,7 +2563,7 @@ msgstr "Det går inte att generera en AR-kod för den här adressen." msgid "Cannot refresh without results." msgstr "Det går inte att uppdatera utan resultat." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI-mappen kan inte vara en tom sökväg." @@ -2595,7 +2611,7 @@ msgstr "Byt s&kiva..." msgid "Change Disc" msgstr "Byt skiva" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Byt skivor automatiskt" @@ -2668,7 +2684,7 @@ msgstr "Sök efter fusk" msgid "Cheats Manager" msgstr "Fuskhanterare" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "Kontrollera NAND-minne..." @@ -2680,7 +2696,7 @@ msgstr "Leta efter ändringar i spellistan i bakgrunden" msgid "Check for updates" msgstr "Leta efter uppdateringar" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2700,29 +2716,29 @@ msgstr "Kina" msgid "Choose" msgstr "Välj" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Välj en fil att öppna" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Välj en fil att öppna eller skapa" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Välj primär indatafil" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "Välj sekundär indatafil" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "Välj GCI-basmapp" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Välj filkatalogen att extrahera till" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2741,7 +2757,7 @@ msgstr "Classic Controller" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2751,7 +2767,7 @@ msgstr "Rensa" msgid "Clear Branch Watch" msgstr "Rensa grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Rensa cache" @@ -2772,7 +2788,7 @@ msgstr "Klona och &redigera kod…" msgid "Close" msgstr "Stäng" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ko&nfiguration" @@ -2796,7 +2812,7 @@ msgstr "Kod:" msgid "Codes received!" msgstr "Koder mottagna!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Färgkorrigering" @@ -2816,7 +2832,7 @@ msgstr "Färgrymd" msgid "Column &Visibility" msgstr "Kolumn&synlighet" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "Kombinera &två signaturfiler..." @@ -2851,9 +2867,9 @@ msgstr "Kompilera shaders före start" msgid "Compiling Shaders" msgstr "Kompilerar shaders" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Komprimering" @@ -2878,7 +2894,7 @@ msgstr "Villkor" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Villkor" @@ -3037,9 +3053,9 @@ msgstr "Konfigurera utmatning" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekräfta" @@ -3052,7 +3068,7 @@ msgstr "Bekräfta byte av backend" msgid "Confirm on Stop" msgstr "Bekräfta vid stopp" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3063,7 +3079,7 @@ msgstr "Bekräftelse" msgid "Connect" msgstr "Anslut" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Anslut balansbräda" @@ -3071,27 +3087,27 @@ msgstr "Anslut balansbräda" msgid "Connect USB Keyboard" msgstr "Anslut USB-tangentbord" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Anslut Wii-fjärrkontroll %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "Anslut Wii-fjärrkontroll 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "Anslut Wii-fjärrkontroll 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "Anslut Wii-fjärrkontroll 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "Anslut Wii-fjärrkontroll 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Anslut Wii-fjärrkontroller" @@ -3136,19 +3152,19 @@ msgstr "Kontrollspak" msgid "Controller Profile" msgstr "Kontrollprofil" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Kontrollprofil 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Kontrollprofil 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Kontrollprofil 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Kontrollprofil 4" @@ -3160,6 +3176,16 @@ msgstr "Kontrollinställningar" msgid "Controllers" msgstr "Kontroller" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3168,7 +3194,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3180,7 +3206,7 @@ msgstr "" "skapar starkare utanför-skärmen-effekter medan ett lägre värde är mer " "bekvämt." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3195,7 +3221,7 @@ msgstr "" "

Om du är osäker kan du välja Ursprunglig." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3228,7 +3254,7 @@ msgstr "" "Styr vilken DSP-emulering som ska användas; hög eller låg nivå. Förvalet är " "True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Konvergens" @@ -3329,18 +3355,22 @@ msgstr "" msgid "Copy" msgstr "Kopiera" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopiera &funktion" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Kopiera &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Kopiera adress" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Kopiering misslyckades" @@ -3349,18 +3379,14 @@ msgstr "Kopiering misslyckades" msgid "Copy Hex" msgstr "Kopiera hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Kopiera värde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Kopiera kod&rad" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "Kopiera till A" @@ -3488,8 +3514,8 @@ msgstr "Kunde inte känna igen filen {0}" msgid "Could not save your changes!" msgstr "Det gick inte att spara ändringarna!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Kunde inte starta uppdaterarprocessen: {0}" @@ -3596,7 +3622,7 @@ msgstr "" "Kan påverka prestanda och ritstatistik.

Om du är " "osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Nuvarande region" @@ -3788,24 +3814,24 @@ msgstr "Dekodningskvalitet:" msgid "Decrease" msgstr "Minska" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Sänk konvergens" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Sänk djup" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Minska emuleringshastighet" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "Sänk intern upplösning" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Sänk vald snabbsparningsplats" @@ -3867,8 +3893,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Radera" @@ -3886,7 +3912,7 @@ msgstr "Radera valda filer..." msgid "Delete the existing file '{0}'?" msgstr "Radera den existerande filen '{0}'?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Djup" @@ -3901,9 +3927,9 @@ msgstr "Djup:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Beskrivning" @@ -3952,7 +3978,7 @@ msgstr "Frikopplad" msgid "Detect" msgstr "Sök" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "Upptäcker RSO-moduler" @@ -3960,7 +3986,7 @@ msgstr "Upptäcker RSO-moduler" msgid "Deterministic dual core:" msgstr "Deterministiska dubbla kärnor:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Utvecklingsversioner (flera gånger om dagen)" @@ -4018,15 +4044,15 @@ msgstr "Inaktivera kopieringsfilter" msgid "Disable EFB VRAM Copies" msgstr "Inaktivera EFB-VRAM-kopior" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Inaktivera emuleringshastighetsgräns" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Inaktivera fastmem" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Inaktivera fastmemarena" @@ -4034,11 +4060,11 @@ msgstr "Inaktivera fastmemarena" msgid "Disable Fog" msgstr "Inaktivera dimma" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "Inaktivera JIT-cache" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Inaktivera stor ingångspunktstabell" @@ -4067,7 +4093,7 @@ msgstr "" "istället. Förhindrar all uppskalning.

Om du är " "osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4098,7 +4124,8 @@ msgstr "Skiva" msgid "Discard" msgstr "Kasta" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "Visningsinställningar" @@ -4132,16 +4159,16 @@ msgstr "Avstånd" msgid "Distance of travel from neutral position." msgstr "Förflyttningsavstånd från neutral position." -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 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:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Vill du tömma symbolnamnlistan?" @@ -4151,7 +4178,7 @@ 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:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Vill du stoppa den aktuella emuleringen?" @@ -4172,9 +4199,9 @@ msgstr "Dolphin-FIFO-logg (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Förinställd Dolphin-spelmod" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin-map-fil (*.map)" @@ -4186,8 +4213,8 @@ msgstr "Dolphin-signatur-CSV-fil" msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin-TAS-filmer (*.dtm)" @@ -4247,13 +4274,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin kan inte verifiera olicensierade skivor." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin använder detta för titlar vars region inte kan avgöras automatiskt." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphins fusksystem är avstängt just nu." @@ -4263,7 +4283,7 @@ msgstr "Dolphins fusksystem är avstängt just nu." msgid "Domain" msgstr "Domän" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Uppdatera inte" @@ -4320,11 +4340,11 @@ msgstr "Laddade ner %1 koder. (Lade till %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4367,7 +4387,7 @@ msgstr "Dumpa &FakeVMEM" msgid "Dump &MRAM" msgstr "Dumpa &MRAM" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Dumpa ljud" @@ -4379,7 +4399,7 @@ msgstr "Dumpa bastexturer" msgid "Dump EFB Target" msgstr "Dumpa EFB-mål" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Dumpa bildrutor" @@ -4513,16 +4533,16 @@ msgstr "Östasien" msgid "Edit Breakpoint" msgstr "Redigera brytpunkt" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "Redigera villkor" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "Redigera villkorsuttryck" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Redigera..." @@ -4546,7 +4566,7 @@ msgstr "Effektivt" msgid "Effective priority" msgstr "Faktisk prioritet" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4614,7 +4634,7 @@ msgstr "" "Nuvarande: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Emuleringshastighet" @@ -4634,7 +4654,7 @@ msgstr "Aktivera API-valideringslager" msgid "Enable Audio Stretching" msgstr "Aktivera ljudsträckning" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Aktivera fusk" @@ -4658,9 +4678,9 @@ msgstr "Aktivera Discordnärvaro" msgid "Enable Dual Core" msgstr "Aktivera dubbla kärnor" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Aktivera dubbla kärnor (höjer prestandan)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4719,7 +4739,7 @@ msgstr "" "du stänger av hardcoreläget medan ett spel körs måste du stänga spelet före " "du kan slå på det igen." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "Aktivera JIT-blockprofilering" @@ -4761,7 +4781,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "Aktivera inofficiella prestationer" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Aktivera statistikrapportering" @@ -4843,7 +4863,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:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4885,7 +4905,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:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4942,6 +4962,15 @@ msgstr "" "Forecast Channel och Nintendo Channel.\n" "Läs användarvillkoren på: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4980,7 +5009,7 @@ msgstr "" "\n" "Avbryter import." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "Slutadr." @@ -5031,14 +5060,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5077,26 +5106,26 @@ msgstr "Ange RSO-moduladressen:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5113,9 +5142,9 @@ msgstr "Ange RSO-moduladressen:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Fel" @@ -5148,7 +5177,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Ett fel uppstod när sessionslistan skulle hämtas: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Ett fel uppstod när vissa texturpaket laddades" @@ -5245,7 +5274,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:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Europa" @@ -5258,15 +5287,15 @@ msgstr "Exklusiva übershaders" msgid "Exit" msgstr "Avsluta" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "Slutparentes eller + förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Argument förväntades:" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Slutparentes förväntades." @@ -5278,19 +5307,19 @@ msgstr "Komma förväntades." msgid "Expected end of expression." msgstr "Slut av uttryck förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Namn på indata förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Startparentes förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "Början av uttryck förväntades." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Variabelnamn förväntades." @@ -5298,7 +5327,7 @@ msgstr "Variabelnamn förväntades." msgid "Experimental" msgstr "Experimentell" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Exportera alla Wii-sparningar" @@ -5309,11 +5338,11 @@ msgstr "Exportera alla Wii-sparningar" msgid "Export Failed" msgstr "Exportering misslyckades" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Exportera inspelning" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Exportera inspelning..." @@ -5341,7 +5370,7 @@ msgstr "Exportera som .&gcs..." msgid "Export as .&sav..." msgstr "Exportera som .&sav..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5369,35 +5398,35 @@ msgstr "Extern" msgid "External Frame Buffer (XFB)" msgstr "Extern bildrutebuffert (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "Extrahera certifikat från NAND-minne" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Extrahera hela skivan..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Extrahera hela partitionen..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Extrahera fil..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Extrahera filer..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Extrahera systemdata..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Extraherar alla filer..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Extraherar katalog..." @@ -5427,7 +5456,7 @@ msgstr "" 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:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "Misslyckades att lägga till i signaturfilen \"%1\"" @@ -5497,7 +5526,7 @@ msgstr "" "Misslyckades att radera minneskort för nätspel. Bekräfta dina " "skrivbehörigheter." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Misslyckades att radera den valda filen." @@ -5526,15 +5555,15 @@ msgstr "Misslyckades med att exportera %n av %1 sparfil(er)." msgid "Failed to export the following save files:" msgstr "Misslyckades att exportera följande sparfiler:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "Misslyckades att extrahera certifikat från NAND-minnet" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Misslyckades att extrahera filen." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Misslyckades att extrahera systemdata." @@ -5556,14 +5585,14 @@ msgstr "Misslyckades att hitta en eller flera D3D-symboler" msgid "Failed to import \"%1\"." msgstr "Misslyckades att importera \"%1\"." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 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:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5571,7 +5600,7 @@ msgstr "" "Misslyckades att importera sparfil. Den givna filen verkar vara skadad eller " "är inte en giltig Wii-sparfil." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5582,7 +5611,7 @@ msgstr "" "minnet (Verktyg -> Hantera NAND -> Kontrollera NAND-minne...) och importera " "sedan sparfilen igen." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Misslyckades att initialisera kärnan" @@ -5605,18 +5634,18 @@ msgid "Failed to install pack: %1" msgstr "Misslyckades att installera paket: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Misslyckades att installera denna titel till NAND-minnet." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 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:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "Misslyckades att ladda RSO-model vid %1" @@ -5628,7 +5657,7 @@ msgstr "Misslyckades att ladda d3d11.dll" msgid "Failed to load dxgi.dll" msgstr "Misslyckades att ladda dxgi.dll" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Misslyckades att läsa map-filen \"%1\"" @@ -5667,7 +5696,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "Misslyckades att öppna \"{0}\" för att skriva." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Misslyckades att öppna '%1'" @@ -5708,7 +5737,7 @@ msgstr "" msgid "Failed to open file." msgstr "Kunde inte öppna fil." -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "Misslyckades att öppna servern" @@ -5860,19 +5889,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "Misslyckades att spara FIFO-logg." -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 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:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "Misslyckades att spara signaturfilen \"%1\"" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 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:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "Misslyckades att spara till signaturfilen \"%1\"" @@ -5928,8 +5957,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "Misslyckades" @@ -5937,11 +5966,12 @@ msgstr "Misslyckades" msgid "Fair Input Delay" msgstr "Rättvis latens" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "Region" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "Region:" @@ -5979,9 +6009,9 @@ msgstr "Figurtyp" msgid "File Details" msgstr "Fildetaljer" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Filformat" @@ -5993,20 +6023,20 @@ msgstr "Filformat:" msgid "File Info" msgstr "Filinformation" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Filnamn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Sökväg" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Filstorlek" @@ -6108,9 +6138,9 @@ msgstr "Flaggor" msgid "Float" msgstr "Float" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" -msgstr "Följ &gren" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" +msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 msgid "For best results please slowly move your input to all possible regions." @@ -6180,7 +6210,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:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6190,7 +6220,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6237,20 +6267,20 @@ msgstr "Hittade %n adress(er)." msgid "Frame %1" msgstr "Bildruta %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Gå fram en bildruta" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Gå fram en bildruta - Sänk hastighet" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Gå fram en bildruta - Öka hastighet" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Gå fram en bildruta - Nollställ hastighet" @@ -6311,11 +6341,11 @@ msgstr "" msgid "FreeLook" msgstr "Fri kamera" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Fri kamera" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "Fri kamera - Slå på/av" @@ -6349,11 +6379,12 @@ msgstr "Från:" msgid "FullScr" msgstr "Helskärm" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Funktion" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "Funktionella inställningar" @@ -6373,7 +6404,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "GBA-kassettsökväg:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA-kärna" @@ -6389,11 +6420,11 @@ msgstr "GBA-inställningar" msgid "GBA TAS Input %1" msgstr "GBA-TAS-inmatning %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA-volym" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA-fönsterstorlek" @@ -6529,11 +6560,11 @@ msgstr "Spel" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance-kassetter (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6569,8 +6600,8 @@ msgstr "Spelets gamma" msgid "Game Gamma:" msgstr "Spelets gamma:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Spel-ID" @@ -6700,7 +6731,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Gecko-koder" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6720,14 +6752,21 @@ msgid "Generate Action Replay Code(s)" msgstr "Genererade Action Replay-kod(er)" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Generera en ny statistikidentitet" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "Genererade AR-kod(er)." -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "Genererade symbolnamn från '%1'" @@ -6745,7 +6784,7 @@ msgstr "Tyskland" msgid "GetDeviceList failed: {0}" msgstr "GetDeviceList misslyckades: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6778,7 +6817,7 @@ msgstr "Grafik" msgid "Graphics Mods" msgstr "Grafikmoddar" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Växla grafikalternativ" @@ -6787,7 +6826,7 @@ msgstr "Växla grafikalternativ" msgid "Graphics mods are currently disabled." msgstr "Grafikmoddar är avstängda." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6814,7 +6853,7 @@ msgstr "Grön vänster" msgid "Green Right" msgstr "Grön höger" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Rutnätsvy" @@ -6896,7 +6935,7 @@ msgstr "Göm" msgid "Hide &Controls" msgstr "Dölj &kontroller" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "Dölj alla" @@ -6914,12 +6953,12 @@ msgstr "Dölj andras GBA-fönster" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "Hög" @@ -6988,7 +7027,7 @@ msgstr "Värdnamn" msgid "Hotkey Settings" msgstr "Kortkommandoinställningar" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7113,11 +7152,11 @@ msgstr "" "latens) kan ändras när som helst.\n" "Lämplig för turbaserade spel med tidskänsliga kontroller, till exempel golf." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "Identitetsgenerering" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7173,6 +7212,16 @@ msgstr "" "hjälpa vid tester.

Om du är osäker kan du lämna " "detta omarkerat." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7245,7 +7294,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "Importera BootMii-NAND-kopia..." @@ -7260,15 +7309,15 @@ msgstr "Importering misslyckades" msgid "Import Save File(s)" msgstr "Importera sparfil(er)" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Importera Wii-sparning…" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "Importerar NAND-kopia" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7331,24 +7380,24 @@ msgstr "Inkorrekt speltidsvärde!" msgid "Increase" msgstr "Öka" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Öka konvergens" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Öka djup" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Öka emuleringshastighet" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "Öka intern upplösning" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "Höj vald snabbsparningsplats" @@ -7399,8 +7448,8 @@ msgstr "Info" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Information" @@ -7414,10 +7463,10 @@ msgstr "Injicera" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Indata" @@ -7436,13 +7485,10 @@ msgid "Insert &BLR" msgstr "Infoga &BLR" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "Infoga &NOP" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Sätt in &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "Sätt in SD-kort" @@ -7460,7 +7506,7 @@ msgstr "Installationspartition (%1)" msgid "Install Update" msgstr "Installera uppdatering" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "Installera WAD…" @@ -7468,8 +7514,9 @@ msgstr "Installera WAD…" msgid "Install to the NAND" msgstr "Installera till NAND-minnet" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "Instr." @@ -7483,7 +7530,7 @@ msgstr "Instruktion" msgid "Instruction Breakpoint" msgstr "Instruktionsbrytpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "Instruktion:" @@ -7492,7 +7539,7 @@ msgstr "Instruktion:" msgid "Instruction: %1" msgstr "Instruktion: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7562,8 +7609,8 @@ msgstr "" "Internt LZO-fel - misslyckades att läsa dekomprimerad versionssträng ({0} / " "{1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Intern upplösning" @@ -7580,7 +7627,7 @@ msgstr "Ett internt fel uppstod när AR-kod skulle genereras." msgid "Interpreter (slowest)" msgstr "Interpreterare (långsammast)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "Interpreterarkärna" @@ -7588,7 +7635,7 @@ msgstr "Interpreterarkärna" msgid "Invalid Expression." msgstr "Ogiltigt uttryck." -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "Tog emot ogiltig JSON från autouppdateringstjänsten: {0}" @@ -7596,7 +7643,7 @@ msgstr "Tog emot ogiltig JSON från autouppdateringstjänsten: {0}" msgid "Invalid Mixed Code" msgstr "Ogiltig blandad kod" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "Ogiltigt paket %1: %2" @@ -7605,7 +7652,7 @@ msgstr "Ogiltigt paket %1: %2" msgid "Invalid Player ID" msgstr "Ogiltigt spelar-ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "Ogiltig RSO-moduladress: %1" @@ -7685,11 +7732,11 @@ msgstr "Italien" msgid "Item" msgstr "Föremål" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "JIT-blocklänkning av" @@ -7697,47 +7744,47 @@ msgstr "JIT-blocklänkning av" msgid "JIT Blocks" msgstr "JIT-block" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "JIT Branch av" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "JIT FloatingPoint av" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "JIT Integer av" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "JIT LoadStore Floating av" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "JIT LoadStore av" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "JIT LoadStore Paired av" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "JIT LoadStore lXz av" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "JIT LoadStore lbzx av" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "JIT LoadStore lwz av" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "JIT av (JIT-kärna)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "JIT Paired av" @@ -7749,14 +7796,15 @@ msgstr "JIT-omkompilerare för ARM64 (rekommenderas)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "JIT-omkompilerare för x86-64 (rekommenderas)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "JIT Register Cache av" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "JIT SystemRegisters av" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7767,11 +7815,11 @@ msgstr "" "aldrig hända. Rapportera gärna detta till utvecklarna. Dolphin kommer nu " "avslutas." -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT är inte aktivt" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japan" @@ -7795,7 +7843,7 @@ msgstr "" "Kaos är den enda skurken för den här trofén och är alltid upplåst. Det finns " "inget att redigera." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "Fortsätt köra" @@ -7830,7 +7878,7 @@ msgstr "Tangentbordskontroll" msgid "Keys" msgstr "Tangenter" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7838,7 +7886,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "Sparka ut spelare" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Korea" @@ -7977,6 +8025,14 @@ msgstr "" "Vänster-/högerklicka för att konfigurera utdata.\n" "Mittenklicka för att rensa." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -8010,11 +8066,11 @@ msgstr "Ljus" msgid "Limit Chunked Upload Speed:" msgstr "Begränsa segmentuppladdningshastighet:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "Listkolumner" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Listvy" @@ -8024,17 +8080,17 @@ msgstr "Lyssnar" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Läs in" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "Ladda &felaktig map-fil..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "Ladda &annan map-fil..." @@ -8043,8 +8099,8 @@ msgid "Load Branch Watch &From..." msgstr "Ladda grenbevakning &från..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" -msgstr "Ladda grenbevakningsöverblicksbild" +msgid "Load Branch Watch Snapshot" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 msgid "Load Custom Textures" @@ -8054,7 +8110,7 @@ msgstr "Läs in anpassade texturer" msgid "Load File" msgstr "Ladda fil" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "Ladda GameCube-huvudmeny" @@ -8062,16 +8118,21 @@ msgstr "Ladda GameCube-huvudmeny" msgid "Load Host's Save Data Only" msgstr "Ladda bara värdens spardata" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Läs in senaste snabbsparning" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Laddningssökväg:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "Ladda in ROM" @@ -8079,104 +8140,104 @@ msgstr "Ladda in ROM" msgid "Load Slot" msgstr "Ladda plats" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Läs in snabbsparning" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Läs in senaste snabbsparning 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Läs in senaste snabbsparning 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Läs in senaste snabbsparning 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Läs in senaste snabbsparning 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Läs in senaste snabbsparning 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Läs in senaste snabbsparning 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Läs in senaste snabbsparning 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Läs in senaste snabbsparning 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Läs in senaste snabbsparning 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Läs in senaste snabbsparning 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "Läs in snabbsparningsplats 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "Läs in snabbsparningsplats 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "Läs in snabbsparningsplats 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "Läs in snabbsparningsplats 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "Läs in snabbsparningsplats 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "Läs in snabbsparningsplats 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "Läs in snabbsparningsplats 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "Läs in snabbsparningsplats 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "Läs in snabbsparningsplats 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "Läs in snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Läs in snabbsparning från fil" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Läs in snabbsparning från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Läs in snabbsparning från plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Starta Wii-systemmeny %1" @@ -8184,20 +8245,15 @@ msgstr "Starta Wii-systemmeny %1" msgid "Load and Write Host's Save Data" msgstr "Ladda och skriv värdens spardata" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Ladda från vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "Läs in från plats %1 - %2" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "Ladda map-fil" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "Starta vWii-systemmeny %1" @@ -8205,7 +8261,7 @@ msgstr "Starta vWii-systemmeny %1" msgid "Load..." msgstr "Ladda..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "Laddade symboler från '%1'" @@ -8236,20 +8292,20 @@ msgstr "Lokalt" msgid "Lock Mouse Cursor" msgstr "Lås muspekare" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "Låst" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Logg" @@ -8259,10 +8315,11 @@ msgid "Log Configuration" msgstr "Loggkonfiguration" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "Logga in" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "Logga JIT-instruktionstäckning" @@ -8305,7 +8362,7 @@ msgstr "Slinga" msgid "Lost connection to NetPlay server..." msgstr "Tappade anslutningen till nätspelsservern..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "Låg" @@ -8368,9 +8425,9 @@ msgstr "Se till att speltiden är giltig!" msgid "Make sure there is a Skylander in slot %1!" msgstr "Se till att det finns en Skylander på plats %1!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "Skapare" @@ -8379,7 +8436,7 @@ msgstr "Skapare" msgid "Maker:" msgstr "Skapare:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8392,7 +8449,7 @@ msgstr "" "

Om du är osäker kan du lämna detta omarkerat." -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "Hantera NAND" @@ -8431,7 +8488,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Kan leda till prestandaproblem i Wii-menyn och vissa spel." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "Medium" @@ -8447,7 +8504,7 @@ msgstr "Minnesbrytpunkt" msgid "Memory Card" msgstr "Minneskort" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "Minneskorthanterare" @@ -8475,7 +8532,7 @@ msgstr "MemoryCard: Read anropades med ogiltig källadress ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: Write anropades med ogiltig destinationsadress ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8487,7 +8544,7 @@ msgstr "" "rekommenderas att du har säkerhetskopior av båda NAND-minnena. Är du säker " "på att du vill fortsätta?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8570,8 +8627,8 @@ msgstr "Modifiera plats" msgid "Modifying Skylander: %1" msgstr "Modifierar Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "Moduler hittade: %1" @@ -8613,7 +8670,7 @@ msgstr "Muspekarsynlighet" msgid "Move" msgstr "Flytta" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Inspelning" @@ -8639,10 +8696,10 @@ msgstr "Multiplikator" msgid "N&o to All" msgstr "N&ej till alla" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND-minneskontroll" @@ -8651,8 +8708,8 @@ msgstr "NAND-minneskontroll" msgid "NKit Warning" msgstr "NKit-varning" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8661,7 +8718,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8678,8 +8735,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8692,11 +8749,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "Namn" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "Namn för ny etikett:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "Namn på etiketten att ta bort:" @@ -8781,7 +8838,7 @@ msgid "Never Auto-Update" msgstr "Uppdatera aldrig automatiskt" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Ny" @@ -8806,7 +8863,7 @@ msgstr "Ny sökning" msgid "New Tag..." msgstr "Ny etikett..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "En ny identitet har genererats." @@ -8814,12 +8871,13 @@ msgstr "En ny identitet har genererats." msgid "New instruction:" msgstr "Ny instruktion:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Ny etikett" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "Nästa spelprofil" @@ -8827,8 +8885,9 @@ msgstr "Nästa spelprofil" msgid "Next Match" msgstr "Nästa matchning" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "Nästa profil" @@ -8915,7 +8974,7 @@ msgstr "Ingen grafikmodd vald" msgid "No input" msgstr "Ingen indata" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "Inga problem upptäcktes." @@ -8961,7 +9020,7 @@ msgstr "" "förhindra att inspelningen desynkroniseras" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -9166,7 +9225,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "&Dokumentation online " @@ -9174,7 +9233,7 @@ msgstr "&Dokumentation online " msgid "Only Show Collection" msgstr "Visa bara samling" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9182,7 +9241,7 @@ msgstr "" "Lägg endast till symboler med prefix:\n" "(Lämna tomt för att exportera alla symboler)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9205,14 +9264,18 @@ msgstr "Öppna &innehållande mapp" msgid "Open &User Folder" msgstr "Öppna &användarmapp" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Öppna mapp..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" -msgstr "Öppna FIFO-logg" +msgid "Open FIFO Log" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 msgid "Open GameCube &Save Folder" @@ -9313,7 +9376,7 @@ msgstr "Övrigt" msgid "Other Partition (%1)" msgstr "Annan partition (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "Andra snabbsparningskortkommandon" @@ -9330,7 +9393,7 @@ msgstr "Annat spel..." msgid "Output" msgstr "Utdata" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "Resampling" @@ -9338,16 +9401,16 @@ msgstr "Resampling" msgid "Output Resampling:" msgstr "Resampling:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "Överskrivet" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "Spe&la upp inspelning..." -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9376,7 +9439,7 @@ msgstr "PNG-bildfil (*.png);; Alla filer (*)" msgid "PPC Size" msgstr "PPC-storlek" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC mot värd" @@ -9389,7 +9452,7 @@ msgstr "Kontroll" msgid "Pads" msgstr "Kontroller" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "Parametrar" @@ -9452,7 +9515,7 @@ msgstr "Pausa" msgid "Pause Branch Watch" msgstr "Pausa grenbevakning" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Pausa vid slutet av inspelningar" @@ -9500,7 +9563,7 @@ msgstr "Topphastigheten för svingande utåt." msgid "Per-Pixel Lighting" msgstr "Ljus per bildpunkt" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "Uppdatera systemmjukvaran via internet" @@ -9530,11 +9593,11 @@ msgstr "Fysisk" msgid "Physical address space" msgstr "Fysiskt adressutrymme" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "Välj ett teckensnitt för felsökning" @@ -9550,8 +9613,8 @@ msgstr "Luta nedåt" msgid "Pitch Up" msgstr "Luta uppåt" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Plattform" @@ -9563,7 +9626,7 @@ msgstr "Spela" msgid "Play / Record" msgstr "Spela / spela in" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Spela upp inspelning" @@ -9665,7 +9728,7 @@ msgstr "" "Möjlig desynkronisation upptäcktes: %1 kan ha desynkroniserat under bildruta " "%2" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "Efterbehandlingseffekt" @@ -9718,7 +9781,7 @@ msgstr "" msgid "Presets" msgstr "Förval" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Synkknapptryckning" @@ -9741,9 +9804,9 @@ msgstr "" "

Rekommenderas inte. Använd bara detta om de andra " "alternativen ger dåliga resultat." -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "Föregående spelprofil" @@ -9751,8 +9814,9 @@ msgstr "Föregående spelprofil" msgid "Previous Match" msgstr "Föregående matchning" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "Föregående profil" @@ -9802,13 +9866,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "Program Counter" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9828,11 +9892,11 @@ msgstr "" msgid "Public" msgstr "Offentlig" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "Töm cache för spellista" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "Lägg IPL-ROM-filer i User/GC/." @@ -9860,7 +9924,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Fråga" @@ -9885,11 +9949,11 @@ msgstr "R-analog" msgid "READY" msgstr "KLAR" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO-moduler" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO auto-upptäckt" @@ -9926,13 +9990,13 @@ msgstr "Rå" msgid "Raw Internal Resolution" msgstr "Rå intern upplösning" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" -msgstr "Byt &ut instruktion" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" +msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "Läs" @@ -9955,7 +10019,7 @@ msgstr "Endast läs" msgid "Read or Write" msgstr "Läs eller skriv" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "Skrivskyddat läge" @@ -10014,7 +10078,7 @@ msgstr "Röd vänster" msgid "Red Right" msgstr "Röd höger" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -10066,8 +10130,8 @@ msgstr "Uppdaterade nuvarande värden." msgid "Refreshing..." msgstr "Uppdaterar..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Region" @@ -10088,7 +10152,8 @@ msgstr "Relativ Inmatning" msgid "Relative Input Hold" msgstr "Relativ Inmatning Håll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "Släppta versioner (några månaders mellanrum)" @@ -10117,7 +10182,7 @@ msgstr "Ta bort skräpdata (kan ej återställas):" msgid "Remove Tag..." msgstr "Ta bort etikett..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "Ta bort etikett" @@ -10133,8 +10198,8 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" -msgstr "Byt namn på symbol" +msgid "Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 msgid "Render Window" @@ -10167,7 +10232,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10179,7 +10244,7 @@ msgstr "Återställ" msgid "Reset All" msgstr "Återställ alla" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "Nollställ ignorera panikhanterare" @@ -10231,9 +10296,9 @@ msgstr "Omstart krävs" msgid "Restore Defaults" msgstr "Återställ förval" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" -msgstr "Återställ instruktion" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" +msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 #: qtbase/src/gui/kernel/qplatformtheme.cpp:726 @@ -10367,21 +10432,21 @@ msgstr "" msgid "Rumble" msgstr "Vibration" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" -msgstr "Kör &hit" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "Kör GBA-kärnor i dedikerade trådar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" -msgstr "Kör tills" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" -msgstr "Kör tills (och ignorera brytpunkter)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" +msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 msgid "Run until hit (ignoring breakpoints)" @@ -10450,11 +10515,11 @@ msgstr "SSL-kontext" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "&Spara kod" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "Spa&ra snabbsparning" @@ -10466,7 +10531,7 @@ msgstr "Säker" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10481,23 +10546,35 @@ msgid "Save Branch Watch &As..." msgstr "Spara grenbevakning &som..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" -msgstr "Spara grenbevakningsögonblicksbild" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "Sparfilsexportering" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" -msgstr "Spara FIFO-logg" +msgid "Save FIFO Log" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" -msgstr "Spara fil till" +msgid "Save File To" +msgstr "" #. i18n: Noun (i.e. the data saved by the game) #: Source/Core/DolphinQt/GBAWidget.cpp:415 @@ -10508,15 +10585,19 @@ msgstr "Sparfil" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "Sparfiler (*.sav);;Alla filer (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "Sparfilsimportering" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "Spara äldsta snabbsparning" @@ -10524,73 +10605,77 @@ msgstr "Spara äldsta snabbsparning" msgid "Save Preset" msgstr "Spara förinställningar" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "Spara inspelning som" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Spara snabbsparning" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "Spara snabbsparningsplats 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "Spara snabbsparningsplats 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "Spara snabbsparningsplats 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "Spara snabbsparningsplats 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "Spara snabbsparningsplats 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "Spara snabbsparningsplats 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "Spara snabbsparningsplats 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "Spara snabbsparningsplats 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "Spara snabbsparningsplats 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "Spara snabbsparningsplats 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "Spara snabbsparning till fil" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "Spara snabbsparning på äldsta platsen" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Snabbspara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "Spara snabbsparning på plats" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "Spara symbol-map so&m..." @@ -10610,11 +10695,7 @@ msgstr "Spara som förinställningar..." msgid "Save as..." msgstr "Spara som..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "Spara kombinerad utdatafil som" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10628,19 +10709,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "Spara i samma katalog som ROM-filen" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "Spara map-fil" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "Spara signaturfil" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "Spara på vald plats" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "Spara på plats %1 - %2" @@ -10676,7 +10749,7 @@ msgstr "Skärmdump" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Sök" @@ -10705,7 +10778,7 @@ msgstr "" "Sökning är inte möjligt i virtuellt adressutrymme just nu. Kör spelet ett " "kort tag och prova igen." -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Sök efter en instruktion" @@ -10713,7 +10786,7 @@ msgstr "Sök efter en instruktion" msgid "Search games..." msgstr "Sök efter spel..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "Sök efter en instruktion" @@ -10749,18 +10822,16 @@ msgstr "Välj" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" -"Välj plats att autospara grenbevakningsögonblicksbild på (eller tryck Avbryt " -"för användarmappen)" #: Source/Core/DolphinQt/Settings/PathPane.cpp:71 msgid "Select Dump Path" msgstr "Välj dump-sökväg:" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "Välj exporteringskatalog" @@ -10768,18 +10839,22 @@ msgstr "Välj exporteringskatalog" msgid "Select Figure File" msgstr "Välj figurfil" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "Välj GBA-BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "Välj GBA-ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "Välj GBA-sparfilssökväg" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "Välj senaste snabbsparning" @@ -10788,6 +10863,10 @@ msgstr "Välj senaste snabbsparning" msgid "Select Load Path" msgstr "Välj laddningssökväg" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "Välj resurspaketssökväg" @@ -10796,6 +10875,14 @@ msgstr "Välj resurspaketssökväg" msgid "Select Riivolution XML file" msgstr "Välj Riivolution-XML-fil" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "Välj Skylandersamling" @@ -10804,58 +10891,62 @@ msgstr "Välj Skylandersamling" msgid "Select Skylander File" msgstr "Välj Skylanderfil" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "Välj plats %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "Välj snabbsparning" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Välj snabbsparningsplats" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Välj snabbsparningsplats 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Välj snabbsparningsplats 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Välj snabbsparningsplats 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Välj snabbsparningsplats 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Välj snabbsparningsplats 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Välj snabbsparningsplats 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Välj snabbsparningsplats 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Välj snabbsparningsplats 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Välj snabbsparningsplats 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Välj snabbsparningsplats 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "Välj WFS-sökväg" @@ -10873,24 +10964,20 @@ msgstr "Välj en mapp" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Välj en fil" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" -msgstr "Välj mapp att synkronisera med SD-kortsfilen" +msgid "Select a Folder to Sync with the SD Card Image" +msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Välj en SD-kortsavbildning" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "Välj en fil" @@ -10899,19 +10986,15 @@ msgstr "Välj en fil" msgid "Select a game" msgstr "Välj ett spel" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "Välj en titel att installera till NAND-minnet" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "Välj e-Readerkort" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "Välj RSO-modulens adress:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "Välj inspelning att spela upp" @@ -10919,23 +11002,6 @@ msgstr "Välj inspelning att spela upp" msgid "Select the Virtual SD Card Root" msgstr "Välj rot för virtuellt SD-kort" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "Välj nyckelfil (OTP/SEEPROM-kopia)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Välj sparningsfilen" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "Välj var du vill spara den konverterade skivavbildningen" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "Välj var du vill spara de konverterade skivavbildningarna" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "Valt teckensnitt" @@ -10995,7 +11061,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -11053,6 +11119,27 @@ msgstr "" "

Om du är osäker kan du välja OpenGL." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Skicka" @@ -11061,6 +11148,15 @@ msgstr "Skicka" msgid "Sensor Bar Position:" msgstr "Position för Sensor Bar:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -11093,39 +11189,35 @@ msgstr "Sätt &värde" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "Sätt PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "Ange som &standard-ISO" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "Välj minneskortsfil för plats A" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "Välj minneskortsfil för plats B" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "Ställ in slut&adress för symbol" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "Ställ in &storlek för symbol" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "Ställ in slutadress för symbol" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "Ange storlek för symbol (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -11141,7 +11233,7 @@ msgstr "Ställer in Wii-systemspråk." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -11155,10 +11247,17 @@ msgstr "" "Anger latens i millisekunder. Högre värden kan minska ljudknaster. Endast " "för vissa backends." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -11212,11 +11311,11 @@ msgstr "Shinkansenkontroll" msgid "Show % Speed" msgstr "Visa %-hastighet" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "Visa &logg" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Visa &verktygsfält" @@ -11224,15 +11323,15 @@ msgstr "Visa &verktygsfält" msgid "Show Active Title in Window Title" msgstr "Visa aktiv titel i fönstertitel" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "Visa alla" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Visa Australien" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Visa nuvarande spel på Discord" @@ -11241,7 +11340,7 @@ msgstr "Visa nuvarande spel på Discord" msgid "Show Disabled Codes First" msgstr "Visa avstängda koder först" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "Visa ELF/DOL" @@ -11254,7 +11353,7 @@ msgstr "Visa påslagna koder först" msgid "Show FPS" msgstr "Visa bildfrekvens" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Visa bildruteräknare" @@ -11262,15 +11361,15 @@ msgstr "Visa bildruteräknare" msgid "Show Frame Times" msgstr "Visa bildrutetider" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Visa Frankrike" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "Visa GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Visa Tyskland" @@ -11278,27 +11377,27 @@ msgstr "Visa Tyskland" msgid "Show Golf Mode Overlay" msgstr "Visa överlägg för golfläge" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "Visa Infinitybas" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Visa indata" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "Visa Italien" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "Visa JPN" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Visa Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Visa laggräknare" @@ -11306,7 +11405,7 @@ msgstr "Visa laggräknare" msgid "Show Language:" msgstr "Visa språk:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Visa logg&konfiguration" @@ -11318,7 +11417,7 @@ msgstr "Visa nätspelsmeddelanden" msgid "Show NetPlay Ping" msgstr "Visa nätspelsping" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Visa Nederländerna" @@ -11326,12 +11425,12 @@ msgstr "Visa Nederländerna" msgid "Show On-Screen Display Messages" msgstr "Visa meddelanden på skärmen" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "Visa PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "Visa PC" @@ -11339,7 +11438,7 @@ msgstr "Visa PC" msgid "Show Performance Graphs" msgstr "Visa prestandagrafer" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Visa plattformar" @@ -11347,23 +11446,23 @@ msgstr "Visa plattformar" msgid "Show Projection Statistics" msgstr "Visa projektionsstatistik" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Visa regioner" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "Visa ominspelningsräknare" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Visa Ryssland" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "Visa Skylandersportal" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "Visa Spanien" @@ -11375,19 +11474,23 @@ msgstr "Visa hastighetsfärger" msgid "Show Statistics" msgstr "Visa statistik" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Visa systemklocka" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Visa Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Visa USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Visa okänd" @@ -11399,27 +11502,27 @@ msgstr "Visa vblank-tider" msgid "Show VPS" msgstr "Visa VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "Visa WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Visa Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Visa världen" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" -msgstr "Visa i &minne" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" +msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "Visa i kod" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "Visa i minne" @@ -11436,13 +11539,9 @@ msgstr "Visa i minne" msgid "Show in server browser" msgstr "Visa i serverlistan" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11478,18 +11577,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11510,6 +11597,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11551,6 +11650,14 @@ msgstr "" "Visar diverse renderingsstatistik.

Om du är osäker " "kan du lämna detta omarkerat." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "Sida-vid-sida" @@ -11567,7 +11674,7 @@ msgstr "Tryck för liggande läge" msgid "Sideways Wii Remote" msgstr "Liggande Wii-fjärrkontroll" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "Signaturdatabas" @@ -11616,7 +11723,7 @@ msgstr "" "Sträckningsbuffertens storlek i millisekunder. Om värdet är för lågt kan " "ljudet låta hackigt." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Hoppa över" @@ -11814,6 +11921,10 @@ msgstr "" msgid "Speed" msgstr "Hastighet" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11850,11 +11961,11 @@ msgstr "Starta grenbevakning" msgid "Start New Cheat Search" msgstr "Starta ny fusksökning" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "Starta &inspelning" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Starta inspelning" @@ -11893,39 +12004,39 @@ msgstr "Stega" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "Stega in" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "Stega ut" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "Stega över" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "Urstegningen lyckades!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "Urstegningen gjorde timeout!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "Överstegning pågår..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "Stegning lyckades!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "Stega" @@ -11934,7 +12045,7 @@ msgstr "Stega" msgid "Stereo" msgstr "Stereo" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "Läge för stereoskopisk 3D" @@ -11964,7 +12075,7 @@ msgstr "Spak" msgid "Stop" msgstr "Stoppa" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "Avbryt uppspelning/inspelning" @@ -12043,14 +12154,14 @@ msgstr "Stil:" msgid "Stylus" msgstr "Penna" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "Klar" @@ -12077,24 +12188,24 @@ msgstr "Exporterade %n av %1 sparfil(er)." msgid "Successfully exported save files" msgstr "Exporteringen av sparfiler lyckades" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "Certifikaten har extraherats från NAND-minnet" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "Extraheringen av filen lyckades." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "Extraheringen av systemdata lyckades." -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "Importeringen av sparfilen lyckades." #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "Titeln har installerats i NAND-minnet." @@ -12145,7 +12256,7 @@ msgstr "Swap Force" msgid "Swapper" msgstr "Swapper" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -12173,17 +12284,21 @@ msgstr "Byt till B" msgid "Symbol" msgstr "Symbol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "Slutadress för symbol (%1):" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" -msgstr "Symbolnamn" +msgid "Symbol Name:" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Symboler" @@ -12237,7 +12352,7 @@ msgstr "Synkroniserar spardata..." msgid "System Language:" msgstr "Systemspråk:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS-inmatning" @@ -12248,9 +12363,9 @@ msgid "TAS Tools" msgstr "TAS-verktyg" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Etiketter" @@ -12268,7 +12383,7 @@ msgstr "Svans" msgid "Taiwan" msgstr "Taiwan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Ta en skärmdump" @@ -12276,7 +12391,7 @@ msgstr "Ta en skärmdump" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12313,7 +12428,7 @@ msgstr "Texturcachenoggrannhet" msgid "Texture Dumping" msgstr "Texturdumpning" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "Texturfiltrering" @@ -12365,7 +12480,7 @@ msgstr "IPL-filen är inte en känd korrekt version. (CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "Masterpiecepartitionerna saknas." -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." @@ -12374,7 +12489,7 @@ msgstr "" "säkerhetskopia av ditt nuvarande NAND-minne och sedan börjar om med ett " "nyskapat NAND-minne." -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND-minnet har reparerats." @@ -12559,7 +12674,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "Filsystemet är ogiltigt eller kunde inte läsas." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12709,7 +12824,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "Samma fil kan inte användas på flera platser; den används redan av %1." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12750,7 +12865,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "Den angivna filen \"{0}\" finns inte" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12817,7 +12932,7 @@ msgstr "Uppdateringspartitionen saknas." msgid "The update partition is not at its normal position." msgstr "Uppdateringspartitionen är inte på sin normala position." -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12939,7 +13054,7 @@ msgstr "" "Använd ett ARM64-bygge av Dolphin för den bästa upplevelsen." #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "Det går inte att ångra detta!" @@ -13188,7 +13303,7 @@ msgstr "Trådar" msgid "Threshold" msgstr "Tröskel" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -13209,10 +13324,10 @@ msgstr "" msgid "Timed Out" msgstr "Timeout" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Titel" @@ -13220,25 +13335,29 @@ msgstr "Titel" msgid "To" msgstr "till" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "Till:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Helskärm" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "Slå på/av 3D-anaglyf" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "Slå på/av 3D sida-vid-sida" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "Slå på/av 3D topp-och-botten" @@ -13246,28 +13365,28 @@ msgstr "Slå på/av 3D topp-och-botten" msgid "Toggle All Log Types" msgstr "Slå på/av alla loggtyper" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "Växla bildförhållande" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Slå på/av brytpunkt" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Slå på/av beskärning" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Slå på/av anpassade texturer" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "Slå på/av EFB-kopior" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Slå på/av dimma" @@ -13279,31 +13398,31 @@ msgstr "Slå på/av helskärm" msgid "Toggle Pause" msgstr "Slå på/av paus" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "Mata in/ut SD-kort" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "Växla Hoppa över EFB-åtkomst" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Slå på/av texturdumpning" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "Slå på/av USB-tangentbord" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "Slå på/av XFB-kopior" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "Slå på/av omedelbar XFB-presentation" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "Tokenisering misslyckades." @@ -13426,7 +13545,7 @@ msgid "Trophy" msgstr "Trofé" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13456,7 +13575,7 @@ msgstr "USB-enhetsemulering" msgid "USB Emulation" msgstr "USB-emulering" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "Emulerade USB-enheter" @@ -13507,15 +13626,15 @@ msgstr "" "prestandapåverkan, men resultaten varierar beroende på grafikdrivrutinernas " "beteende." -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "Kunde inte upptäcka RSO-modul automatiskt" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "Kunde inte kontakta uppdateringsservern." -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "Kunde inte skapa en kopia av uppdateraren." @@ -13555,7 +13674,7 @@ msgstr "" msgid "Unable to read file." msgstr "Misslyckades att läsa fil." -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "Kunde inte ställa in rättigheter för kopia av uppdateraren." @@ -13578,11 +13697,11 @@ msgstr "Okomprimerade GC/Wii-skivavbildningar (*.iso *.gcm)" msgid "Undead" msgstr "Odöd" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Ångra inläsning av snabbsparning" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Ångra snabbsparning" @@ -13603,7 +13722,7 @@ msgstr "" "av denna titel tas bort från NAND-minnet utan att dess spardata tas bort. " "Vill du fortsätta?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "USA" @@ -13705,11 +13824,11 @@ msgstr "Okänd(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Okänd(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Obegränsad" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "Ladda ur ROM" @@ -13717,7 +13836,12 @@ msgstr "Ladda ur ROM" msgid "Unlock Cursor" msgstr "Lås upp muspekare" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "Upplåst" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "Låstes upp %1" @@ -13817,7 +13941,7 @@ msgstr "Tryck för stående läge" msgid "Upright Wii Remote" msgstr "Stående Wii-fjärrkontroll" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "Statistikrapporteringsinställningar" @@ -13929,13 +14053,10 @@ msgstr "Användarnamn" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" -"Använder Dolphins databas av ordentligt formaterade namn i spellistans " -"titelkolumn.

Om du är osäker kan du lämna detta " -"markerat." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -14013,7 +14134,7 @@ msgstr "Hoppa över VBI" msgid "Value" msgstr "Värde" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "Värde spårat till nuvarande instruktion." @@ -14101,22 +14222,22 @@ msgstr "Virtuella jack" msgid "Virtual address space" msgstr "Virtuellt adressutrymme" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Volym" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Volym ner" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Slå på/av ljudvolym" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Volym upp" @@ -14124,7 +14245,7 @@ msgstr "Volym upp" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD-filer (*.wad)" @@ -14253,7 +14374,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Varning" @@ -14410,7 +14531,7 @@ msgstr "Enheter godkända för USB-genomsläpp" msgid "Widescreen Hack" msgstr "Bredbildshack" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14480,7 +14601,7 @@ msgstr "Wii och Wii-fjärrkontroller" msgid "Wii data is not public yet" msgstr "Wii-data är inte offentlig än" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii-sparfiler (*.bin);;Alla filer (*)" @@ -14515,11 +14636,11 @@ msgstr "Världen" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "Skriv" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "Skriv JIT-blockloggdump" @@ -14687,7 +14808,7 @@ msgstr "" "för \"Phantasy Star Online Episode I & II\". Om du är osäker, vänd tillbaka " "och byt till \"standardkontroll\"." -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" "Du använder den senaste versionen som är tillgänglig på det här " @@ -14776,7 +14897,7 @@ msgstr "" "Vill du avbryta nu för att åtgärda problemet?\n" "Om du väljer \"Nej\" kan det uppstå problem med ljudet." -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/tr.po b/Languages/po/tr.po index af368015cf..d73caf1bd5 100644 --- a/Languages/po/tr.po +++ b/Languages/po/tr.po @@ -19,10 +19,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Ahmet Emin, 2024\n" -"Language-Team: Turkish (http://app.transifex.com/delroth/dolphin-emu/" +"Language-Team: Turkish (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -186,7 +186,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "%1, sisteminde bu özellik desteklemiyor." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 bu özelliği desteklemiyor." @@ -208,7 +208,7 @@ msgstr "%1 katıldı" msgid "%1 has left" msgstr "%1 ayrıldı" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 %4/%5 puan değerinde %2/%3 başarıyı açtı" @@ -220,7 +220,7 @@ msgstr "%1 geçerli bir ROM değil" msgid "%1 is now golfing" msgstr "Oynama sırası %1'de" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 %2 oynuyor" @@ -234,7 +234,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 puan" @@ -254,22 +254,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1% (Normal Hız)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "%1'in değeri değiştirildi" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "%1'nin değeri tetiklendi" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1'in değeri kullanıldı" @@ -277,6 +277,10 @@ msgstr "%1'in değeri kullanıldı" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -297,7 +301,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -310,7 +314,7 @@ msgstr "%1x Yerel (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x Yerel (%2x%3) %4 için" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -354,10 +358,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "&Hakkında" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "&Bellek Kesme Noktası Ekle" @@ -367,23 +375,19 @@ msgstr "&Bellek Kesme Noktası Ekle" msgid "&Add New Code..." msgstr "&Yeni Kod Ekle..." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "&Fonksiyon Ekle" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "&Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "&Birleştirici" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "&Ses Ayarları" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "&Otomatik Güncelle:" @@ -392,14 +396,14 @@ msgid "&Borderless Window" msgstr "&Çerçevesiz pencere" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "&Kesme Noktaları" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "&Hata İzleyici" @@ -411,11 +415,11 @@ msgstr "&İptal" msgid "&Cheats Manager" msgstr "&Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "&Güncellemeleri Denetle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "&Sembolleri Temizle" @@ -423,7 +427,7 @@ msgstr "&Sembolleri Temizle" msgid "&Clone..." msgstr "&Çoğalt..." -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "&Kod" @@ -431,18 +435,15 @@ msgstr "&Kod" msgid "&Connected" msgstr "&Bağlandı" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "&Denetleyici Ayarları" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "&Adresi kopyala" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "&Oluştur..." @@ -478,7 +479,7 @@ msgstr "&Düzenle..." msgid "&Eject Disc" msgstr "&Diski Çıkar" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "&Emülasyon" @@ -503,36 +504,36 @@ msgstr "&.gci Olarak Dışarı Aktar..." msgid "&File" msgstr "&Dosya" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "&Yazı Tipi..." -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "&Kare İlerletme" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "&Serbest Bakış Ayarları" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "&Sembolleri Şuradan Getir" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "&GitHub Repo'su" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "&Grafik Ayarları" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "&Yardım" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "&Kısayol Ayarları" @@ -556,15 +557,15 @@ msgstr "&İçeri aktar" msgid "&Infinity Base" msgstr "&Infinity Base" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "&BLR yerleştir" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "&Karelerarası Harmanlama" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -576,11 +577,11 @@ msgstr "&Dil:" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "Durumu &Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "&Sembol Haritasını Yükle" @@ -594,19 +595,19 @@ msgstr "&Mevcut adrese dosya yükle" msgid "&Lock Watches" msgstr "&Gözlemcileri Kilitle" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "&Gereçleri Yerinde Kilitle" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "&Hafıza" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "&Film" @@ -614,7 +615,7 @@ msgstr "&Film" msgid "&Mute" msgstr "&Sustur" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "&Ağ" @@ -627,19 +628,19 @@ msgstr "&Hayır" msgid "&Open..." msgstr "&Aç..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "&Seçenekler" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "&HLE Fonksiyonlarını Yamala" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "&Duraklat" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "&Oynat" @@ -647,7 +648,7 @@ msgstr "&Oynat" msgid "&Properties" msgstr "&Özellikler" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "&Salt-Okunur Mod" @@ -655,7 +656,7 @@ msgstr "&Salt-Okunur Mod" msgid "&Refresh List" msgstr "&Listeyi Yenile" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "&Kayıtlar" @@ -668,12 +669,12 @@ msgstr "&Kaldır" msgid "&Remove Code" msgstr "&Kodu Sil" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" -msgstr "&Sembolü yeniden adlandır" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" +msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "&Sıfırla" @@ -685,7 +686,7 @@ msgstr "&Kaynak Paketi Yöneticisi" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "&Sembol Haritasını Kaydet" @@ -697,11 +698,11 @@ msgstr "&e-Okuyucu Kart(lar)ı Tara..." msgid "&Skylanders Portal" msgstr "&Skylanders Portal" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "&Hız Limiti:" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "&Durdur" @@ -709,7 +710,7 @@ msgstr "&Durdur" msgid "&Theme:" msgstr "&Tema:" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "&İş parçacıkları" @@ -731,17 +732,17 @@ msgstr "&ROM'u Boşalt" msgid "&Unlock Watches" msgstr "&Gözlemcilerin Kilidini Aç" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 msgid "&View" msgstr "&Görünüm" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. -#: Source/Core/DolphinQt/MenuBar.cpp:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "&İzle" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "&Website" @@ -753,11 +754,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "&Evet" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "'%1' bulunamadı, sembol adları oluşturulmadı" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "'%1' bulunamadı, yerine yaygın fonksiyonlar taranıyor" @@ -777,7 +778,7 @@ msgstr "(Sistem)" msgid "(host)" msgstr "(evsahibi)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(kapalı)" @@ -801,7 +802,7 @@ msgstr ", Virgül" msgid "- Subtract" msgstr "- Çıkar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -879,7 +880,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x Eşyönsüz" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -891,7 +892,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -927,19 +928,19 @@ msgid "32-bit Unsigned Integer" msgstr "32-bit İmzasız Tamsayı" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D Derinlik" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -963,7 +964,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1062,7 +1063,7 @@ msgid "If unsure, leave this unchecked." msgstr "" "Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1101,8 +1102,8 @@ msgstr "" msgid "> Greater-than" msgstr "> -dan/-den büyük" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "Bir NetPlay Oturumu halihazırda devam ediyor!" @@ -1127,7 +1128,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "Zaten bir disk takılmak üzere." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1139,7 +1140,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Başlatılacak oyun belirtilmeden 'kaydetme durumu' yüklenemez." -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1239,7 +1240,7 @@ msgid "Achievement Settings" msgstr "Başarı Ayarları" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "Başarılar" @@ -1330,7 +1331,7 @@ msgstr "Action Replay: Normal Kod {0}: Geçersiz alt tür {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "NetPlay Sohbeti Etkinleştir" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "Aktif" @@ -1381,11 +1382,11 @@ msgstr "Yeni USB Aygıtı Ekle" msgid "Add Shortcut to Desktop" msgstr "Masaüstüne kısayol oluştur" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "Breakpoint Ekle" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "Breakpoint Ekle" @@ -1419,13 +1420,13 @@ msgstr "Ekle..." #: 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "Adres" @@ -1444,7 +1445,7 @@ msgstr "CPU durumuna göre adres alanı" msgid "Address:" msgstr "Adres:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1530,7 +1531,7 @@ msgstr "Gelişmiş" msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1586,7 +1587,7 @@ msgstr "Tüm Double" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1594,7 +1595,7 @@ msgid "All Files" msgstr "Tüm Dosyalar" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" @@ -1603,7 +1604,7 @@ msgstr "Tüm Dosyalar (*)" msgid "All Float" msgstr "Tüm Float" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "Tüm GC/Wii dosyaları" @@ -1612,8 +1613,8 @@ msgstr "Tüm GC/Wii dosyaları" msgid "All Hexadecimal" msgstr "Tüm Onaltılık" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tüm Kayıt Durumları (*.sav *.s##);; Tüm Dosyalar (*)" @@ -1637,11 +1638,11 @@ msgstr "Tüm oyuncuların kodları senkronize edildi." msgid "All players' saves synchronized." msgstr "Tüm oyuncuların kayıtları senkronize edildi." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "Uyumsuz Bölge Ayarlarına İzin Ver" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasına İzin Ver" @@ -1701,7 +1702,7 @@ msgstr "Açı" msgid "Angular velocity to ignore and remap." msgstr "Yok sayılacak ve yeniden eşlenecek açısal hız." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "Kenar Yumuşatma" @@ -1713,19 +1714,19 @@ msgstr "Kenar Yumuşatma:" msgid "Any Region" msgstr "Herhangi Bir Bölge" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" -msgstr "Şuraya imza ekle" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" +msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "&Mevcut İmza Dosyasına Ekle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "İmza Dosyasını &Uygula..." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1742,9 +1743,9 @@ msgstr "Apploader Tarihi:" msgid "Apply" msgstr "Uygula" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" -msgstr "İmza dosyasını uygula" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" +msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 msgid "Arbitrary Mipmap Detection" @@ -1754,7 +1755,7 @@ msgstr "Rastgele Mipmap Algılama" msgid "Are you sure that you want to delete '%1'?" msgstr "'%1'i silmek istediğinizden emin misiniz?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "Bu dosyayı silmek istediğinizden emin misiniz?" @@ -1791,9 +1792,9 @@ msgstr "En-Boy Oranı:" msgid "Assemble" msgstr "Birleştir" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" -msgstr "Talimat birleştir" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" +msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 msgid "Assembler" @@ -1853,7 +1854,11 @@ msgstr "Otomatik" msgid "Auto (Multiple of 640x528)" msgstr "Otomatik (640x528'in katları)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "Otomatik Güncelleme Ayarları" @@ -1877,7 +1882,7 @@ msgstr "Pencere Boyutunu Otomatik Ayarla" msgid "Auto-Hide" msgstr "Otomatik Gizle" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "RSO modüllerini otomatik olarak algıla?" @@ -1894,6 +1899,17 @@ msgstr "" "

Emin değilseniz, bunu işaretlemeyin." +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "Otomatik olarak geçerli değerleri güncelleştirin" @@ -1905,7 +1921,7 @@ msgid "Auxiliary" msgstr "Auxiliary" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1991,10 +2007,10 @@ msgstr "Kötü ofset sağlandı." msgid "Bad value provided." msgstr "Kötü değer sağlandı." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "Afiş" @@ -2022,7 +2038,7 @@ msgstr "Baz önceliği" msgid "Basic" msgstr "Temel" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "Temel Ayarlar" @@ -2082,9 +2098,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "Blok Boyutu" @@ -2122,15 +2138,15 @@ msgstr "" "Bluetooth geçiş modu etkin, ancak Dolphin libusb olmadan derlendi. Geçiş " "modu kullanılamaz." -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "Önyüklendiğinde Duraklat" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND yedekleme dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii anahtarları dosyası (*.bin);;Tüm Dosyalar (*)" @@ -2258,30 +2274,30 @@ msgstr "" msgid "Branch: %1" msgstr "Branş: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "Branşlar" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "Kır" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "Breakpoint" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "Breakpoint ile karşılaşıldı! Adım dışına çıkma iptal edildi." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "Breakpoint'ler" @@ -2380,7 +2396,7 @@ msgstr "%1" msgid "C Stick" msgstr "C Çubuğu" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "&İmzalı Dosya Oluştur..." @@ -2419,7 +2435,7 @@ msgstr "" msgid "Calculate" msgstr "Hesapla" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2486,14 +2502,14 @@ msgstr "Bu kupa için kötü karakterler düzenlenemez!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Bağlantı tutamacına göre Wii Remote bulunamıyor {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Bir oyun hâlâ çalışırken bir NetPlay Oturumu başlatılamaz!" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57 #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2543,7 +2559,7 @@ msgstr "Bu adres için AR kodu oluşturulamıyor." msgid "Cannot refresh without results." msgstr "Sonuçlar olmadan yenilenemiyor." -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "GCI klasörünü boş bir yol olarak ayarlayamazsınız." @@ -2591,7 +2607,7 @@ msgstr "&Diski Değiştir..." msgid "Change Disc" msgstr "Diski Değiştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "Diskleri Otomatik Değiştir" @@ -2663,7 +2679,7 @@ msgstr "Hile Arama" msgid "Cheats Manager" msgstr "Hile Yöneticisi" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "NAND'ı Kontrol Et..." @@ -2675,7 +2691,7 @@ msgstr "Arka Planda Oyun Listesi Değişikliklerini Kontrol Et" msgid "Check for updates" msgstr "Güncellemeleri kontrol et" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2695,29 +2711,29 @@ msgstr "Çin" msgid "Choose" msgstr "Seç" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "Açmak için bir dosya seçin" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "Açmak veya oluşturmak için bir dosya seçin" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "Öncelikli girdi dosyasını seçin" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "İkincil girdi dosyasını seçin" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "GCI baz klasörünü seçin" +msgid "Choose GCI Base Folder" +msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "Çıkarılacak klasörü seçin" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2736,7 +2752,7 @@ msgstr "Klasik Denetleyici" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2746,7 +2762,7 @@ msgstr "Temizle" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "Önbelleği Temizle" @@ -2767,7 +2783,7 @@ msgstr "Klonla ve Kodu &Düzenle..." msgid "Close" msgstr "Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "Ya&pılandırma" @@ -2791,7 +2807,7 @@ msgstr "Code:" msgid "Codes received!" msgstr "Kodlar alındı!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "Renk Düzeltme" @@ -2811,7 +2827,7 @@ msgstr "Renk Alanı" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "İki İmza Dosyasını &Birleştir..." @@ -2852,9 +2868,9 @@ msgstr "Başlamadan önce gölgelendiricileri derle" msgid "Compiling Shaders" msgstr "Gölgelendiriciler Derleniyor" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "Sıkıştırma" @@ -2879,7 +2895,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "Koşul" @@ -2986,9 +3002,9 @@ msgstr "Çıktıları Yapılandır" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Onayla" @@ -3001,7 +3017,7 @@ msgstr "Arka uç değişikliğini onayla" msgid "Confirm on Stop" msgstr "Durdurmayı Onayla" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -3012,7 +3028,7 @@ msgstr "Onay" msgid "Connect" msgstr "Bağlan" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "Balance Board Bağla" @@ -3020,27 +3036,27 @@ msgstr "Balance Board Bağla" msgid "Connect USB Keyboard" msgstr "USB Klavye Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "Wii Remote'u Bağla: %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "1. Wii Remote'u Bağla" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "2. Wii Remote'u Bağla" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "3. Wii Remote'u Bağla" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "4. Wii Remote'u Bağla" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "Wii Remote Bağla" @@ -3087,19 +3103,19 @@ msgstr "Kontrol Çubuğu" msgid "Controller Profile" msgstr "Denetleyici Profili" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "Denetleyici Profili 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "Denetleyici Profili 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "Denetleyici Profili 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "Denetleyici Profili 4" @@ -3111,6 +3127,16 @@ msgstr "Denetleyici Ayarları" msgid "Controllers" msgstr "Denetleyiciler" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3124,7 +3150,7 @@ msgstr "" "

Emin değilsen, bunu 203'te bırak." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3135,7 +3161,7 @@ msgstr "" "önünde görüneceği mesafedir.

Daha yüksek bir değer daha güçlü ekran " "dışı efektler yaratırken daha düşük bir değer daha rahattır." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3149,7 +3175,7 @@ msgstr "" "çözünürlük ne kadar düşük olursa, performans o kadar iyi olacaktır." "

Emin değilseniz, Yerel'i seçin." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3184,7 +3210,7 @@ msgstr "" "Yüksek veya düşük seviyeli DSP öykünmesinin kullanılıp kullanılmayacağını " "ayarlar. Varsayılan değer Etkin'dir." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "Yakınsama" @@ -3289,18 +3315,22 @@ msgstr "" msgid "Copy" msgstr "Kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" -msgstr "Kopyala &Fonksiyon" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" +msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" -msgstr "Kopyala &Hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" +msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "Adresi kopyala" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "Kopyalama başarısız" @@ -3309,18 +3339,14 @@ msgstr "Kopyalama başarısız" msgid "Copy Hex" msgstr "Hex'i Kopyala" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "Değeri Kopyala" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "Kod &dizesini kopyala" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "Hedef ad&resi kopyala" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "A'ya kopyala" @@ -3446,8 +3472,8 @@ msgstr "Dosya {0} tanınamadı." msgid "Could not save your changes!" msgstr "Değişiklikleriniz kaydedilemedi!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "Güncelleme işlemi başlatılamadı: {0}" @@ -3559,7 +3585,7 @@ msgstr "" "

Emin değilseniz, bunu işaretlemeyin." -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "Mevcut Bölge" @@ -3753,24 +3779,24 @@ msgstr "Kod Çözme Kalitesi:" msgid "Decrease" msgstr "Azalt" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "Yakınsamayı Azalt" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "Derinliği Azalt" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "Öykünme Hızını Düşür" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "IR'ı Azalt" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "Seçili Durum Yuvasını Azalt" @@ -3832,8 +3858,8 @@ msgstr "" "dolphin_emphasis>" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "Sil" @@ -3851,7 +3877,7 @@ msgstr "Seçili Dosyaları Sil..." msgid "Delete the existing file '{0}'?" msgstr "Varolan '{0}' dosyasını sil?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "Derinlik" @@ -3866,9 +3892,9 @@ msgstr "Derinlik:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "Açıklama" @@ -3917,7 +3943,7 @@ msgstr "Ayrılmış" msgid "Detect" msgstr "Belirle" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "RSO Modülleri Algılanıyor" @@ -3925,7 +3951,7 @@ msgstr "RSO Modülleri Algılanıyor" msgid "Deterministic dual core:" msgstr "Deterministik çift çekirdek:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "Geliştirme (günde birkaç kez)" @@ -3983,15 +4009,15 @@ msgstr "Kopyalama Filtresini Devre Dışı Bırak" msgid "Disable EFB VRAM Copies" msgstr "EFB VRAM Kopyalarını Devre Dışı Bırak" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "Öykünme Hızı Limitini Kapat" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "Fastmem'i Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "Fastmem Alanını Devre Dışı Bırak" @@ -3999,11 +4025,11 @@ msgstr "Fastmem Alanını Devre Dışı Bırak" msgid "Disable Fog" msgstr "Sisi Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "JIT Önbelleğini Devre Dışı Bırak" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "Büyük Giriş Noktaları Haritasını Devre Dışı Bırak" @@ -4032,7 +4058,7 @@ msgstr "" "yukarı ölçeklendirmeyi engeller.

Emin değilseniz, " "bunu işaretlemeyin." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -4061,7 +4087,8 @@ msgstr "Disk" msgid "Discard" msgstr "Vazgeç" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -4096,17 +4123,17 @@ msgstr "Mesafe" msgid "Distance of travel from neutral position." msgstr "Nötr pozisyondan seyahat mesafesi." -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Dolphin'in geliştiricilerine bilgi bildirmesi için Dolphin'e yetki veriyor " "musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\"yi Oyun Dizinleri listesine eklemek istiyor musun?" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "Simge adlarının listesini temizlemek istiyor musun?" @@ -4116,7 +4143,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "%n seçili kayıt dosyasını silmek istiyor musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "Mevcut öykünmeyi durdurmak istiyor musun?" @@ -4137,9 +4164,9 @@ msgstr "Dolphin FIFO Günlüğü (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin Oyun Modu Ayarı" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin Harita Dosyası (*.map)" @@ -4151,8 +4178,8 @@ msgstr "Dolphin İmza CSV Dosyası" msgid "Dolphin Signature File" msgstr "Dolphin İmza Dosyası" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmleri (*.dtm)" @@ -4211,14 +4238,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin lisanssız diskleri doğrulayamıyor." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" -"Dolphin bunu, bölgesi otomatik olarak belirlenemeyen başlıklar için " -"kullanacaktır." - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin'in hile sistemi şu anda devre dışı." @@ -4228,7 +4247,7 @@ msgstr "Dolphin'in hile sistemi şu anda devre dışı." msgid "Domain" msgstr "Alan" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "Güncelleme Yapma" @@ -4285,11 +4304,11 @@ msgstr "%1 kod indirildi. (%2 eklendi)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4332,7 +4351,7 @@ msgstr "&FakeVMEM'i Dök" msgid "Dump &MRAM" msgstr "&MRAM'i Dök" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "Sesi Dök" @@ -4344,7 +4363,7 @@ msgstr "Baz Dokuları Dök" msgid "Dump EFB Target" msgstr "EFB Hedefini Dök" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "Kareleri Dök" @@ -4478,16 +4497,16 @@ msgstr "Doğu Asya" msgid "Edit Breakpoint" msgstr "Breakpoint'i Düzenle" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "Düzenle..." @@ -4511,7 +4530,7 @@ msgstr "Efektif" msgid "Effective priority" msgstr "Efektif önceliği" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4579,7 +4598,7 @@ msgstr "" "Mevcut: MEM1 {0:08X} ({1} MiB), MEM2 {2:08X} ({3} MiB)\n" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "Öykünme hızı" @@ -4599,7 +4618,7 @@ msgstr "API Doğrulama Katmanlarını Etkinleştir" msgid "Enable Audio Stretching" msgstr "Ses Esnetmeyi Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "Hileleri Etkinleştir" @@ -4623,9 +4642,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "Çift Çekirdeği Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "Çift Çekirdeği Etkinleştir (Hızı Artırır)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4684,7 +4703,7 @@ msgstr "" "oyun çalışırken Zorlayıcı Modunu kapatmanın, yeniden etkinleştirmeden önce " "oyunun kapatılmasını gerektirdiğini unutmayın." -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4726,7 +4745,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "Resmi Olmayan Başarımları Etkinleştir" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasını Etkinleştir" @@ -4816,7 +4835,7 @@ msgstr "" "Birkaç oyun için gerekli olan Kayar Nokta Sonuç Bayrağı (FPRF) hesaplamasını " "etkinleştirir. (AÇIK = Uyumlu, Kapalı = Hızlı)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4870,7 +4889,7 @@ msgstr "" "

Emin değilsen, bunu işaretsiz bırak." -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4935,6 +4954,15 @@ msgstr "" "Kanalları için alternatif bir sağlayıcıdır\n" "Hizmet Koşullarını şu adresten okuyabilirsin: https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4974,7 +5002,7 @@ msgstr "" "\n" "İçe aktarım iptal ediliyor." -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -5025,14 +5053,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -5071,26 +5099,26 @@ msgstr "RSO modül adresini girin:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5107,9 +5135,9 @@ msgstr "RSO modül adresini girin:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "Hata" @@ -5141,7 +5169,7 @@ msgstr "" msgid "Error obtaining session list: %1" msgstr "Oturum listesi alınırken hata oluştu: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "Bazı doku paketleri yüklenirken bir hata oluştu" @@ -5238,7 +5266,7 @@ msgstr "{1} bölümündeki {0} kullanılmayan blokta hatalar bulundu." msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "Avrupa" @@ -5251,15 +5279,15 @@ msgstr "Ayrıcalıklı Uber Gölgelendiriciler" msgid "Exit" msgstr "Çıkış" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "+ veya kapatma parantezi bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "Beklenen argümanlar: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "Kapatma parantezi bekleniyor." @@ -5271,19 +5299,19 @@ msgstr "Virgül bekleniyor." msgid "Expected end of expression." msgstr "İfadenin sonu bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "Giriş ismi bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "Açık parantez bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "İfadenin başlangıcı bekleniyor." -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "Değişken ismi bekleniyor." @@ -5291,7 +5319,7 @@ msgstr "Değişken ismi bekleniyor." msgid "Experimental" msgstr "Deneysel" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "Tüm Wii Kayıtlarını Dışa Aktar" @@ -5302,11 +5330,11 @@ msgstr "Tüm Wii Kayıtlarını Dışa Aktar" msgid "Export Failed" msgstr "Dışa Aktarma Başarısız Oldu" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "Kaydı Dışa Aktar" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "Kaydı Dışa Aktar..." @@ -5334,7 +5362,7 @@ msgstr ".&gcs Olarak Dışarı Aktar..." msgid "Export as .&sav..." msgstr ".&sav Olarak Dışarı Aktar..." -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5362,35 +5390,35 @@ msgstr "Harici" msgid "External Frame Buffer (XFB)" msgstr "Harici Kare Arabelleği (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "NAND'den Sertifikaları Çıkar" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "Tüm Diski Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "Tüm Bölümü Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "Dosyayı Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "Dosyaları Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "Sistem Verilerini Çıkar..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "Tüm Dosyalar Çıkarılıyor..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "Dizin Çıkarılıyor..." @@ -5420,7 +5448,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "Bu oturum NetPlay dizinine eklenemedi: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "İmza dosyasına eklenemedi: '%1'" @@ -5487,7 +5515,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "NetPlay hafıza kartı silinemedi. Yazma izinlerinizi doğrulayın." -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "Seçilen dosya silinemedi." @@ -5516,15 +5544,15 @@ msgstr "%1 kayıt dosyasından %n tanesi dışa aktarılamadı." msgid "Failed to export the following save files:" msgstr "Aşağıdaki kayıt dosyaları dışa aktarılamadı:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "NAND'den sertifikalar çıkarılamadı" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "Dosya çıkarılamadı." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "Sistem verileri çıkarılamadı." @@ -5546,13 +5574,13 @@ msgstr "Bir veya daha fazla D3D sembolü bulunamadı" msgid "Failed to import \"%1\"." msgstr "\"%1\" içe aktarılamadı." -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" "Kayıt dosyası içe aktarılamadı. Lütfen oyunu başlatın ve tekrar deneyin." -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 msgid "" "Failed to import save file. The given file appears to be corrupted or is not " "a valid Wii save." @@ -5560,7 +5588,7 @@ msgstr "" "Kayıt dosyası içe aktarılamadı. Verilen dosya bozuk veya geçersiz bir Wii " "kaydı olabilir." -#: Source/Core/DolphinQt/MenuBar.cpp:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5570,7 +5598,7 @@ msgstr "" "dosyalara erişimi engelliyor olabilir. NAND'ınızı onarmayı deneyin (Araçlar -" "> NAND'ı Yönet -> NAND'ı Kontrol Et...), ardından kaydı tekrar içe aktarın." -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "Çekirdek başlatılamadı" @@ -5593,11 +5621,11 @@ msgid "Failed to install pack: %1" msgstr "Paket kurulamadı: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "Bu başlık NAND'a kurulamadı." -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5605,8 +5633,8 @@ msgstr "" "Port %1 dinlemesi başarısız oldu. Birden fazla NetPlay sunucusu çalışıyor " "olabilir mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "%1 için RSO modülü yüklenemedi" @@ -5618,7 +5646,7 @@ msgstr "d3d11.dll yüklenemedi" msgid "Failed to load dxgi.dll" msgstr "dxgi.dll yüklenemedi" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "Harita dosyası yüklenemedi '%1'" @@ -5657,7 +5685,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5696,7 +5724,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5832,19 +5860,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5898,8 +5926,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5907,11 +5935,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5947,9 +5976,9 @@ msgstr "" msgid "File Details" msgstr "Dosya Ayrıntıları" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "Dosya Biçimi" @@ -5961,20 +5990,20 @@ msgstr "Dosya Biçimi:" msgid "File Info" msgstr "Dosya Bilgisi" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "Dosya Adı" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "Dosya Yolu" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "Dosya Boyutu" @@ -6072,8 +6101,8 @@ msgstr "Bayraklar" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -6140,7 +6169,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6150,7 +6179,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6193,20 +6222,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "Kare İlerletme" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "Kare İlerletme Hızını Düşür" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "Kare İlerletme Hızını Arttır" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "Kare İlerletme Hızını Sıfırla" @@ -6263,11 +6292,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "Serbest Bakış" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -6301,11 +6330,12 @@ msgstr "" msgid "FullScr" msgstr "Tam Ekran" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "Fonksiyon" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -6325,7 +6355,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -6341,11 +6371,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6458,11 +6488,11 @@ msgstr "Oyun" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "Game Boy Advance Kartuşu (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6496,8 +6526,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "Oyun ID'si" @@ -6623,7 +6653,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko Kodları" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6643,14 +6674,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "Yeni bir İstatistik Kimliği Oluşturun" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6668,7 +6706,7 @@ msgstr "Almanya" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6701,7 +6739,7 @@ msgstr "Grafikler" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "Grafik Geçişleri" @@ -6710,7 +6748,7 @@ msgstr "Grafik Geçişleri" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6732,7 +6770,7 @@ msgstr "Yeşil Sol" msgid "Green Right" msgstr "Yeşil Sağ" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "Sütun Görünümü" @@ -6814,7 +6852,7 @@ msgstr "Gizle" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6832,12 +6870,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6901,7 +6939,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "Kısayol Tuşu Ayarları" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -7002,11 +7040,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7040,6 +7078,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7093,7 +7141,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -7108,15 +7156,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "Wii Kayıtlarını Al..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7172,24 +7220,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "Yakınsamayı Arttır" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "Derinliği Arttır" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "Emülasyon Hızını Arttır" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "IR'yi Arttır" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -7238,8 +7286,8 @@ msgstr "Bilgi" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "Bilgilendirme" @@ -7253,10 +7301,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "Giriş" @@ -7275,13 +7323,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "Yerleştir &nop" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "SD Kart Ekle" @@ -7299,7 +7344,7 @@ msgstr "" msgid "Install Update" msgstr "Güncellemeyi Kur" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "WAD Kur..." @@ -7307,8 +7352,9 @@ msgstr "WAD Kur..." msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -7322,7 +7368,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -7331,7 +7377,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7390,8 +7436,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "Dahili Çözünürlük" @@ -7408,7 +7454,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "Yorumlayıcı (çok yavaş)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7416,7 +7462,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7424,7 +7470,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "Geçersiz Karma Kod" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7433,7 +7479,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7513,11 +7559,11 @@ msgstr "İtalya" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7525,47 +7571,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7577,14 +7623,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7592,11 +7639,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "Japonya" @@ -7618,7 +7665,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7653,7 +7700,7 @@ msgstr "" msgid "Keys" msgstr "Tuşlar" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7661,7 +7708,7 @@ msgstr "" msgid "Kick Player" msgstr "Oyuncuyu At" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "Kore" @@ -7794,6 +7841,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7827,11 +7882,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "Liste Görünümü" @@ -7841,17 +7896,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7860,7 +7915,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7871,7 +7926,7 @@ msgstr "Özel Dokuları Yükle" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "GameCube Ana Menüsü'nü Yükle" @@ -7879,16 +7934,21 @@ msgstr "GameCube Ana Menüsü'nü Yükle" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "Son Durumu Yükle" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "Yükleme Yolu:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7896,104 +7956,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "Son 1. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "Son 10. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "Son 2. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "Son 3. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "Son 4. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "Son 5. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "Son 6. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "Son 7. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "Son 8. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "Son 9. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "1. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "10. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "2. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "3. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "4. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "5. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "6. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "7. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "8. Durumu Yükle" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "9. Durumu Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "Dosyadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "Seçili Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "Yuvadan Durum Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "Wii Sistem Menüsünü Yükle %1" @@ -8001,20 +8061,15 @@ msgstr "Wii Sistem Menüsünü Yükle %1" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "Seçili Yuvadan Yükle" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -8022,7 +8077,7 @@ msgstr "" msgid "Load..." msgstr "Yükle..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -8047,20 +8102,20 @@ msgstr "Yerel" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "Günlük" @@ -8070,10 +8125,11 @@ msgid "Log Configuration" msgstr "Günlük Yapılandırması" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -8112,7 +8168,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -8175,9 +8231,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -8186,7 +8242,7 @@ msgstr "" msgid "Maker:" msgstr "Yapımcı:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8194,7 +8250,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -8233,7 +8289,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "Bu Wii Menüsünde ve bazı oyunlarda yavaşlamaya neden olabilir." #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -8249,7 +8305,7 @@ msgstr "" msgid "Memory Card" msgstr "Hafıza Kartı" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -8277,7 +8333,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8285,7 +8341,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -8356,8 +8412,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -8399,7 +8455,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "Film" @@ -8423,10 +8479,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8435,8 +8491,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8445,7 +8501,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8462,8 +8518,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8476,11 +8532,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8559,7 +8615,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "Yeni" @@ -8584,7 +8640,7 @@ msgstr "" msgid "New Tag..." msgstr "Yeni Etiket..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "Yeni kimlik oluşturuldu." @@ -8592,12 +8648,13 @@ msgstr "Yeni kimlik oluşturuldu." msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "Yeni etiket" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8605,8 +8662,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8693,7 +8751,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8734,7 +8792,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8934,7 +8992,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "Çevrimiçi &Belgeler" @@ -8942,13 +9000,13 @@ msgstr "Çevrimiçi &Belgeler" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8969,13 +9027,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "Dizin Aç..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -9077,7 +9139,7 @@ msgstr "Diğer" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -9094,7 +9156,7 @@ msgstr "Diğer oyun..." msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -9102,16 +9164,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9140,7 +9202,7 @@ msgstr "" msgid "PPC Size" msgstr "PPC Boyutu" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -9153,7 +9215,7 @@ msgstr "Kol" msgid "Pads" msgstr "Kollar" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -9216,7 +9278,7 @@ msgstr "Duraklat" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "Filmin Sonunda Duraklat" @@ -9261,7 +9323,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "Piksel Aydınlatması" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "İnternet Üzerinden Sistem Güncellemesi Yap" @@ -9291,11 +9353,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -9311,8 +9373,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "Platform" @@ -9324,7 +9386,7 @@ msgstr "Oynat" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "Çekimi Oynat" @@ -9419,7 +9481,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9472,7 +9534,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "Sync düğmesine basın" @@ -9490,9 +9552,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9500,8 +9562,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9545,13 +9608,13 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9568,11 +9631,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9599,7 +9662,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "Soru" @@ -9624,11 +9687,11 @@ msgstr "R-Analog" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9665,13 +9728,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9694,7 +9757,7 @@ msgstr "Salt okunur" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9753,7 +9816,7 @@ msgstr "Kırmızı Sol" msgid "Red Right" msgstr "Kırmızı Sağ" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9799,8 +9862,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "Bölge" @@ -9821,7 +9884,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9850,7 +9914,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9863,7 +9927,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9895,7 +9959,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9907,7 +9971,7 @@ msgstr "Sıfırla" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9959,8 +10023,8 @@ msgstr "Yeniden Başlatma Gerekli" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -10090,20 +10154,20 @@ msgstr "" msgid "Rumble" msgstr "Gümbürtü" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -10173,11 +10237,11 @@ msgstr "" msgid "START" msgstr "START TUŞU" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "&Durumu Kaydet" @@ -10189,7 +10253,7 @@ msgstr "Güvenli" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10204,22 +10268,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -10231,15 +10307,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "En Eski Durumu kaydet" @@ -10247,73 +10327,77 @@ msgstr "En Eski Durumu kaydet" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "Durumu Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "1. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "10. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "2. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "3. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "4. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "5. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "6. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "7. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "8. Duruma Kaydet" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "9. Duruma Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "Durumu Seçili Slot'a Kaydet" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -10333,11 +10417,7 @@ msgstr "" msgid "Save as..." msgstr "Farklı kaydet..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10348,19 +10428,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -10396,7 +10468,7 @@ msgstr "Ekran Görüntüsü" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "Ara" @@ -10423,7 +10495,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "Bir talimat ara" @@ -10431,7 +10503,7 @@ msgstr "Bir talimat ara" msgid "Search games..." msgstr "Oyun ara..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10467,7 +10539,7 @@ msgstr "Seç" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10476,7 +10548,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10484,18 +10556,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10504,6 +10580,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10512,6 +10592,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10520,58 +10608,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "Durum Yuvası Seç" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "Durum Yuvası 1 Seç" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "Durum Yuvası 10 Seç" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "Durum Yuvası 2 Seç" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "Durum Yuvası 3 Seç" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "Durum Yuvası 4 Seç" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "Durum Yuvası 5 Seç" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "Durum Yuvası 6 Seç" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "Durum Yuvası 7 Seç" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "Durum Yuvası 8 Seç" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "Durum Yuvası 9 Seç" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10589,24 +10681,20 @@ msgstr "Bir Dizin Seç" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "Bir Dosya Seç" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "Bir Oyun Seç" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "Bir SD Kart Kalıbı Seç" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10615,19 +10703,15 @@ msgstr "" msgid "Select a game" msgstr "Bir oyun seç" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10635,23 +10719,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "Kayıt dosyasını seçin" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10707,7 +10774,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10750,6 +10817,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "Gönder" @@ -10758,6 +10846,15 @@ msgstr "Gönder" msgid "Sensor Bar Position:" msgstr "Sensör Çubuğu Konumu:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10786,37 +10883,33 @@ msgstr "&Değeri Ayarla" msgid "Set Brea&kpoint" msgstr "" -#. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 -msgid "Set PC" -msgstr "PC'yi Ayarla" - -#: Source/Core/DolphinQt/GameList/GameList.cpp:416 -msgid "Set as &Default ISO" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" +msgid "Set Memory Card File for Slot A" msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" +msgid "Set Memory Card File for Slot B" +msgstr "" + +#. i18n: Here, PC is an acronym for program counter, not personal computer. +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 +msgid "Set PC" +msgstr "PC'yi Ayarla" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" +msgid "Set Symbol &Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" +#: Source/Core/DolphinQt/GameList/GameList.cpp:416 +msgid "Set as &Default ISO" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 @@ -10835,7 +10928,7 @@ msgstr "Wii sistem dilini ayarlar." #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10847,10 +10940,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10901,11 +11001,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "&Günlüğü Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "Araç Çubuğunu Gös&ter" @@ -10913,15 +11013,15 @@ msgstr "Araç Çubuğunu Gös&ter" msgid "Show Active Title in Window Title" msgstr "Etkin Başlığı Pencere Başlığında Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "Avusturalya'yı Göster" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "Discord'da Mevcut Oyunu Göster" @@ -10930,7 +11030,7 @@ msgstr "Discord'da Mevcut Oyunu Göster" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "ELF/DOL'u Göster" @@ -10943,7 +11043,7 @@ msgstr "" msgid "Show FPS" msgstr "FPS'yi Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "Kare Sayacını Göster" @@ -10951,15 +11051,15 @@ msgstr "Kare Sayacını Göster" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "Fransızları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "GameCube'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "Almanları göster" @@ -10967,27 +11067,27 @@ msgstr "Almanları göster" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "Görüntü Girişini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "İtalyanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "Korelileri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "Takılma Sayacını Göster" @@ -10995,7 +11095,7 @@ msgstr "Takılma Sayacını Göster" msgid "Show Language:" msgstr "Dili Göster:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "Geçmiş &Yapılandırmasını Göster" @@ -11007,7 +11107,7 @@ msgstr "NetPlay Mesajlarını Göster" msgid "Show NetPlay Ping" msgstr "NetPlay Ping'ini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "Hollanda'yı Göster" @@ -11015,12 +11115,12 @@ msgstr "Hollanda'yı Göster" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "PAL'ları Göster" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "PC'yi Göster" @@ -11028,7 +11128,7 @@ msgstr "PC'yi Göster" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "Platformları Göster" @@ -11036,23 +11136,23 @@ msgstr "Platformları Göster" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "Bölgeleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "Rusya'yı Göster" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "İspanya'yı Göster" @@ -11064,19 +11164,23 @@ msgstr "" msgid "Show Statistics" msgstr "İstatistikleri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "Sistem Saatini Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "Tayvanlıları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "Amerikanları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "Bilinmeyenleri Göster" @@ -11088,27 +11192,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "WAD'ları Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "Wii'leri Göster" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "Dünyayı Göster" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -11125,13 +11229,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -11164,18 +11264,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -11196,6 +11284,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11228,6 +11328,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -11244,7 +11352,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -11293,7 +11401,7 @@ msgstr "" "Milisaniye bazında geciktirme arabelleğinin boyutu. Çok düşük değerler, ses " "sorunlarına neden olabilir." -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "Atla" @@ -11467,6 +11575,10 @@ msgstr "" msgid "Speed" msgstr "Hız" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11503,11 +11615,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "Çekimi Başlat" @@ -11546,39 +11658,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11587,7 +11699,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11617,7 +11729,7 @@ msgstr "Çubuk" msgid "Stop" msgstr "Durdur" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11686,14 +11798,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11720,24 +11832,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11788,7 +11900,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11813,17 +11925,21 @@ msgstr "" msgid "Symbol" msgstr "Sembol" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "Semboller" @@ -11872,7 +11988,7 @@ msgstr "" msgid "System Language:" msgstr "Sistem Dili:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS Girişi" @@ -11883,9 +11999,9 @@ msgid "TAS Tools" msgstr "TAS Araçları" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "Etiketler" @@ -11903,7 +12019,7 @@ msgstr "" msgid "Taiwan" msgstr "Tayvan" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "Ekran Görüntüsü Al" @@ -11911,7 +12027,7 @@ msgstr "Ekran Görüntüsü Al" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11946,7 +12062,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11991,13 +12107,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -12148,7 +12264,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12272,7 +12388,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -12306,7 +12422,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12366,7 +12482,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12478,7 +12594,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12673,7 +12789,7 @@ msgstr "" msgid "Threshold" msgstr "Eşik" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12692,10 +12808,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "Başlık" @@ -12703,25 +12819,29 @@ msgstr "Başlık" msgid "To" msgstr "Buraya" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "&Tam Ekran Moduna Geç" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "3D Anaglif'i Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12729,28 +12849,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "Tüm Geçmiş Türlerini Seç" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "En-boy Oranını Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "Kesim Noktasını Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "Kırpmayı Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "Özel Dokuları Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "EFB Kopyalarını Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "Sisi Aç/Kapat" @@ -12762,31 +12882,31 @@ msgstr "Tam Ekran Moduna Geç" msgid "Toggle Pause" msgstr "Duraklat Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "Doku Dökümünü Aç/Kapat" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12907,7 +13027,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12937,7 +13057,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12975,15 +13095,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -13015,7 +13135,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -13038,11 +13158,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "Durum Yüklemeyi Geri Al" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "Durum Kaydetmeyi Geri Al" @@ -13062,7 +13182,7 @@ msgstr "" "Yüklü olan WAD dosyası, herhangi bir kayıt verisi silinmeden NAND'dan " "kaldırılacaktır. Devam edilsin mi?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "ABD" @@ -13158,11 +13278,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "Sınırsız" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -13170,7 +13290,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -13268,7 +13393,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "İstatistik Raporlama Ayarları" @@ -13362,7 +13487,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13433,7 +13558,7 @@ msgstr "" msgid "Value" msgstr "Değer" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13521,22 +13646,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "Ses" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "Sesi yükselt" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "Sesi Kapat/Aç" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "Sesi Yükselt" @@ -13544,7 +13669,7 @@ msgstr "Sesi Yükselt" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD dosyaları (*.wad)" @@ -13647,7 +13772,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "Uyarı" @@ -13760,7 +13885,7 @@ msgstr "Beyaz Listeye Alınmış USB Geçiş Aygıtları" msgid "Widescreen Hack" msgstr "Geniş Ekran Hilesi" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13830,7 +13955,7 @@ msgstr "Wii ve Wii Remote" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13865,11 +13990,11 @@ msgstr "Dünya" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -14013,7 +14138,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -14081,7 +14206,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index 79f4df53a3..a00c25b4a7 100644 --- a/Languages/po/zh_CN.po +++ b/Languages/po/zh_CN.po @@ -21,11 +21,11 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: 陈 依云 , 2023-2024\n" -"Language-Team: Chinese (China) (http://app.transifex.com/delroth/dolphin-emu/" -"language/zh_CN/)\n" +"Last-Translator: 天绝星 , 2015-2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/dolphinemu/dolphin-" +"emu/language/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -186,7 +186,7 @@ msgstr "在 %2 前 %1 次提交" msgid "%1 doesn't support this feature on your system." msgstr "%1 在你的系统上不支持此特性。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "%1 不支持此特性。" @@ -208,7 +208,7 @@ msgstr "%1 已加入" msgid "%1 has left" msgstr "%1 已离开" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "%1 已解锁 %2/%3 项成就,折合 %4/%5 成就点数" @@ -220,7 +220,7 @@ msgstr "%1 不是有效的 ROM" msgid "%1 is now golfing" msgstr "%1 控制中" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "%1 正在玩 %2" @@ -234,7 +234,7 @@ msgid "%1 ms" msgstr "%1 毫秒" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "%1 成就点数" @@ -254,22 +254,22 @@ msgstr "%1%" msgid "%1% (%2 MHz)" msgstr "%1% (%2 MHz)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "%1%(正常速度)" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "%1 的值已更改" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "%1 的值被命中" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "%1 的值已使用" @@ -277,6 +277,10 @@ msgstr "%1 的值已使用" msgid "%1, %2, %3, %4" msgstr "%1, %2, %3, %4" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "%1/%2" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "%1: %2" @@ -297,7 +301,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "%1[%2]: %3/%4 MiB" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "%1x MSAA" @@ -310,7 +314,7 @@ msgstr "%1x 原生 (%2x%3)" msgid "%1x Native (%2x%3) for %4" msgstr "%1x 原生 (%2x%3) 适合 %4" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "%1x SSAA" @@ -354,10 +358,14 @@ msgstr "&3x" msgid "&4x" msgstr "&4x" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "关于(&A)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "添加函数(&A)" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "添加内存断点(&A)" @@ -367,23 +375,19 @@ msgstr "添加内存断点(&A)" msgid "&Add New Code..." msgstr "添加新代码...(&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "添加函数(&A)" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "添加...(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "汇编器(&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "音频设置(&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "自动更新(&A):" @@ -392,14 +396,14 @@ msgid "&Borderless Window" msgstr "无边框窗口(&B)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" -msgstr "" +msgid "&Break on Hit" +msgstr "命中时中断(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "断点(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "错误跟踪器(&B)" @@ -411,11 +415,11 @@ msgstr "取消(&C)" msgid "&Cheats Manager" msgstr "金手指管理器(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "检查更新...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "清除符号(&C)" @@ -423,7 +427,7 @@ msgstr "清除符号(&C)" msgid "&Clone..." msgstr "克隆...(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "代码(&C)" @@ -431,18 +435,15 @@ msgstr "代码(&C)" msgid "&Connected" msgstr "连接(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "控制器设置(&C)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "复制地址(&C)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "复制地址(&C)" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "创建...(&C)" @@ -478,7 +479,7 @@ msgstr "编辑...(&E)" msgid "&Eject Disc" msgstr "弹出光盘(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "模拟(&E)" @@ -503,36 +504,36 @@ msgstr "导出为 .gci...(&E)" msgid "&File" msgstr "文件(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "字体...(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "逐帧播放(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "自由视点设置(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "生成符号来自(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "GitHub 资源库(&G)" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "图形设置(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "帮助(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "热键设置(&H)" @@ -556,15 +557,15 @@ msgstr "导入...(&I)" msgid "&Infinity Base" msgstr "Infinity 底座(&I)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" -msgstr "插入 blr (&I)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" +msgstr "插入 BLR (&I)" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "帧间混合(&I)" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "即时编译器(&J)" @@ -576,11 +577,11 @@ msgstr "语言(&L):" msgid "&Load Branch Watch" msgstr "载入分支监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "载入状态(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "载入符号映射(&L)" @@ -594,19 +595,19 @@ msgstr "将文件加载到当前地址(&L)" msgid "&Lock Watches" msgstr "锁定监视(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "锁定部件位置(&L)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" -msgstr "" +msgid "&Log on Hit" +msgstr "命中时记录(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "内存(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "影片(&M)" @@ -614,7 +615,7 @@ msgstr "影片(&M)" msgid "&Mute" msgstr "静音(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "网络(&N)" @@ -627,19 +628,19 @@ msgstr "否(&N)" msgid "&Open..." msgstr "打开...(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "选项(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "修补 HLE 功能函数(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "暂停游戏(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "开始游戏(&P)" @@ -647,7 +648,7 @@ msgstr "开始游戏(&P)" msgid "&Properties" msgstr "属性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "只读模式(&R)" @@ -655,7 +656,7 @@ msgstr "只读模式(&R)" msgid "&Refresh List" msgstr "刷新列表(&R)" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "寄存器(&R)" @@ -668,12 +669,12 @@ msgstr "移除(&R)" msgid "&Remove Code" msgstr "移除代码(&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "重命名符号(&R)" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "重置游戏(&R)" @@ -685,7 +686,7 @@ msgstr "资源包管理器(&R)" msgid "&Save Branch Watch" msgstr "保存分支监视(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "保存符号映射(&S)" @@ -697,11 +698,11 @@ msgstr "扫描 e-Reader 卡...(&S)" msgid "&Skylanders Portal" msgstr "Skylanders 传送门(&S)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "速度限制(&S):" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "停止游戏(&S)" @@ -709,7 +710,7 @@ msgstr "停止游戏(&S)" msgid "&Theme:" msgstr "主题(&T):" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "线程(&T)" @@ -731,17 +732,17 @@ msgstr "卸载 ROM (&U)" msgid "&Unlock Watches" msgstr "解锁监视(&U)" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "监视(&W)" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "网站(&W)" @@ -753,11 +754,11 @@ msgstr "百科(&W)" msgid "&Yes" msgstr "是(&Y)" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "找不到 '%1',未生成符号名" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "找不到 '%1',改为扫描常用函数" @@ -777,7 +778,7 @@ msgstr "(系统)" msgid "(host)" msgstr "(主机)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(关)" @@ -801,7 +802,7 @@ msgstr ", 逗号" msgid "- Subtract" msgstr "- 减" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "--> %1" @@ -879,7 +880,7 @@ msgstr "16:9" msgid "16x Anisotropic" msgstr "16x 各向异性" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "1x" @@ -891,7 +892,7 @@ msgstr "2 GiB" msgid "256 MiB" msgstr "256 MiB" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "2x" @@ -927,19 +928,19 @@ msgid "32-bit Unsigned Integer" msgstr "32 位无符号整数" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "3D" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "3D 深度" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "3x" @@ -963,7 +964,7 @@ msgstr "4:3" msgid "4K" msgstr "4K" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "4x" @@ -1060,7 +1061,7 @@ msgstr "在硬核模式下禁用。" msgid "If unsure, leave this unchecked." msgstr "如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1093,8 +1094,8 @@ msgstr "警告无效的基地址,默认 msgid "> Greater-than" msgstr "> 大于" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "已经有一个联机会话正在进行!" @@ -1118,7 +1119,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "光盘已可插入。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1128,7 +1129,7 @@ msgstr "一些使颜色更准确的功能,使其与 Wii 和 GC 游戏的色彩 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "载入保存状态必须指定要启动的游戏" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1226,7 +1227,7 @@ msgid "Achievement Settings" msgstr "成就设置" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "成就" @@ -1314,7 +1315,7 @@ msgstr "Action Replay: 正常代码 {0}: 无效子类型 {1:08x} ({2})" msgid "Activate NetPlay Chat" msgstr "激活联机聊天" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "激活" @@ -1365,11 +1366,11 @@ msgstr "添加新的 USB 设备" msgid "Add Shortcut to Desktop" msgstr "添加快捷方式到桌面" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "添加一个断点" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "添加内存断点" @@ -1403,13 +1404,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "地址" @@ -1428,7 +1429,7 @@ msgstr "按 CPU 状态划分的地址空间" msgid "Address:" msgstr "地址:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1506,7 +1507,7 @@ msgstr "高级" msgid "Advanced Settings" msgstr "高级设置" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1576,7 +1577,7 @@ msgstr "所有双精度" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1584,7 +1585,7 @@ msgid "All Files" msgstr "所有文件" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "所有文件 (*)" @@ -1593,7 +1594,7 @@ msgstr "所有文件 (*)" msgid "All Float" msgstr "所有浮点数" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "所有 GC/Wii 文件" @@ -1602,8 +1603,8 @@ msgstr "所有 GC/Wii 文件" msgid "All Hexadecimal" msgstr "全十六进制" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "所有状态存档 (*.sav *.s##);; 所有文件 (*)" @@ -1627,11 +1628,11 @@ msgstr "所有玩家代码已同步。" msgid "All players' saves synchronized." msgstr "所有玩家存档已同步。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "允许不匹配的区域设置" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "允许使用情况统计报告" @@ -1691,7 +1692,7 @@ msgstr "角度" msgid "Angular velocity to ignore and remap." msgstr "要忽略并重新映射的角速度。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "抗锯齿" @@ -1703,19 +1704,19 @@ msgstr "抗锯齿:" msgid "Any Region" msgstr "任意区域" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "附加签名到" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "附加到现有签名文件...(&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "应用签名文件...(&Y)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1731,8 +1732,8 @@ msgstr "应用载入器时间:" msgid "Apply" msgstr "应用" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "应用签名文件" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1743,7 +1744,7 @@ msgstr "特殊多级纹理检测" msgid "Are you sure that you want to delete '%1'?" msgstr "确定要删除 '%1' 吗?" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "确定要删除该文件吗?" @@ -1780,8 +1781,8 @@ msgstr "宽高比:" msgid "Assemble" msgstr "汇编" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "汇编指令" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1842,7 +1843,11 @@ msgstr "自动" msgid "Auto (Multiple of 640x528)" msgstr "自动(640x528 的倍数)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "自动更新" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "自动更新设置" @@ -1865,7 +1870,7 @@ msgstr "自动调整窗口大小" msgid "Auto-Hide" msgstr "自动隐藏" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "自动检测 RSO 模块?" @@ -1881,6 +1886,21 @@ msgstr "" "自动将窗口大小调整为内部分辨率。

如无法确定,请不要" "选中此项。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" +"当两张光盘容量的游戏要切换时,自动更换游戏光盘。此功能要求以下列方式之一启动" +"游戏:
- 从游戏列表中启动,两张光盘均在游戏列表中。
- 文件 > 打开或使用" +"命令行界面,提供两张光盘的路径。
- 文件 > 打开或使用命令行界面启动 M3U 文" +"件。

如无法确定,请不要选中此项。" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "自动更新当前数值" @@ -1892,7 +1912,7 @@ msgid "Auxiliary" msgstr "副内存" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "B" @@ -1977,10 +1997,10 @@ msgstr "提交的偏移量不正确。" msgid "Bad value provided." msgstr "值格式不正确。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "标图" @@ -2008,7 +2028,7 @@ msgstr "基本优先级" msgid "Basic" msgstr "基本" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "基本设置" @@ -2072,9 +2092,9 @@ msgstr "" "\n" "请使用其他字符重试。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "区块大小" @@ -2111,15 +2131,15 @@ msgid "" msgstr "" "蓝牙直通模式已启用,但 Dolphin 构建没有加入 libusb 驱动。无法使用直通模式。" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "引导后暂停" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 备份文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 密钥文件 (*.bin);; 所有文件 (*)" @@ -2259,30 +2279,30 @@ msgstr "分支到链接寄存器(LR 已保存)" msgid "Branch: %1" msgstr "分支: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "分支" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "中断" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" -msgstr "" +msgid "Break &and Log on Hit" +msgstr "命中时中断并记录(&A)" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "断点" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "遇到断点!跳出已中止。" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "断点" @@ -2380,7 +2400,7 @@ msgstr "作者:%1" msgid "C Stick" msgstr "C 摇杆" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "创建签名文件...(&R)" @@ -2418,7 +2438,7 @@ msgstr "" msgid "Calculate" msgstr "计算" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2483,14 +2503,14 @@ msgstr "无法对此奖杯编辑反派角色!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "不能按照连接句柄 {0:02x} 找到 Wii 遥控器" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2539,7 +2559,7 @@ msgstr "无法为此地址生成 AR 代码。" msgid "Cannot refresh without results." msgstr "没有结果下无法刷新。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "无法将 GCI 文件夹设置为空路径。" @@ -2587,7 +2607,7 @@ msgstr "切换光盘...(&D)" msgid "Change Disc" msgstr "切换光盘" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "自动切换光盘" @@ -2600,6 +2620,8 @@ msgid "" "Changes the appearance and color of Dolphin's buttons." "

If unsure, select Clean." msgstr "" +"改变 Dolphin 按键的外观和颜色。

如无法确定,请选择此" +"项。" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:286 msgid "" @@ -2654,7 +2676,7 @@ msgstr "金手指搜索" msgid "Cheats Manager" msgstr "金手指管理器" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "校验 NAND..." @@ -2666,7 +2688,7 @@ msgstr "在后台检查游戏列表变更" msgid "Check for updates" msgstr "检查更新" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2684,30 +2706,30 @@ msgstr "中国" msgid "Choose" msgstr "选择" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" +msgstr "选择提取目标文件夹" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 +msgid "Choose GCI Base Folder" +msgstr "选择 GCI 库文件夹" + +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "选择优先输入文件" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "选择次要输入文件" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" msgstr "选择要打开的文件" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" +msgid "Choose a File to Open or Create" msgstr "选择要打开或创建的文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "选择优先输入文件" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" -msgstr "选择次要输入文件" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" -msgstr "选择 GCI 基础文件夹" - -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "选择提取目标文件夹" - #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 msgid "Clamping of rotation about the yaw axis." @@ -2725,7 +2747,7 @@ msgstr "传统控制器" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2735,7 +2757,7 @@ msgstr "清除" msgid "Clear Branch Watch" msgstr "清除分支监视" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "清除缓存" @@ -2756,7 +2778,7 @@ msgstr "复制并编辑代码...(&E)" msgid "Close" msgstr "关闭" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "程序设置(&N)" @@ -2780,7 +2802,7 @@ msgstr "代码:" msgid "Codes received!" msgstr "代码已接收!" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "色彩校正" @@ -2800,7 +2822,7 @@ msgstr "色彩空间" msgid "Column &Visibility" msgstr "表列可见性(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "合并两个签名文件...(&T)" @@ -2839,9 +2861,9 @@ msgstr "在开始前编译着色器" msgid "Compiling Shaders" msgstr "正在编译着色器" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "压缩" @@ -2866,7 +2888,7 @@ msgstr "条件。" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "条件" @@ -2940,6 +2962,51 @@ msgid "" "possible for them to go out of range or to become NaN. A warning will be " "given if NaN is returned, and the var that became NaN will be logged." msgstr "" +"状况:\n" +"设置命中断点时计算的表达式。如果表达式为 false 或 0,则忽略断点,直到再次命中" +"断点。语句应该用逗号间隔。只有最后一个语句将用于确定要做什么。\n" +"\n" +"可以参考的寄存器:\n" +"GPRs : r0..r31\n" +"FPRs : f0..f31\n" +"SPRs : xer, lr, ctr, dsisr, dar, dec, sdr1, srr0, srr1, tbl, tbu, pvr, " +"sprg0..sprg3, ear, ibat0u..ibat7u, ibat0l..ibat7l, dbat0u..dbat7u, dbat0l.." +"dbat07, gqr0..gqr7, hid0, hid1, hid2, hid4, iabr, dabr, wpar, dmau, dmal, " +"ecid_u, ecid_m, ecid_l, upmc1..upmc4, usia, sia, l2cr, ictc, mmcr0, mmcr1, " +"pmc1..pmc4, thrm1..thrm3\n" +"其他: pc, msr\n" +"\n" +"函数:\n" +"设置寄存器:r1 = 8\n" +"转换:s8(0xff). 可用:s8, u8, s16, u16, s32, u32\n" +"调用堆栈:callstack(0x80123456), callstack(\"anim\")\n" +"比较字符串:streq(r3, \"abc\"). 两个参数都可以是地址或字符串常量。\n" +"读取内存:read_u32(0x80000000). 可用:u8, s8, u16, s16, u32, s32, f32, f64\n" +"写入内存:write_u32(r3, 0x80000000). 可用:u8, u16, u32, f32, f64\n" +"*当前写入会一直触发\n" +"\n" +"操作:\n" +"一元:-u, !u, ~u\n" +"数学:* / + -, power: **, remainder: %, shift: <<, >>\n" +"比较:<, <=, >, >=, ==, !=, &&, ||\n" +"按位:&, |, ^\n" +"\n" +"示例:\n" +"r4 == 1\n" +"f0 == 1.0 && f2 < 10.0\n" +"r26 <= r0 && ((r5 + 3) & -4) * ((r6 + 3) & -4)* 4 > r0\n" +"p = r3 + 0x8, p == 0x8003510 && read_u32(p) != 0\n" +"写入并中断:r4 = 8, 1\n" +"写入并继续:f3 = f1 + f2, 0\n" +"条件必须始终是最后一个\n" +"\n" +"字符串只能在 callstack() 或 streq() 中使用并且“引用”。不要将字符串分配给变" +"量。\n" +"如果有命中或 NaN 结果,所有变量都将打印在内存接口日志中。要检查问题,请为方程" +"分配一个变量,以便可以打印显示。\n" +"\n" +"注意:所有值都会在内部转换为双精度数以进行计算。它们有可能超出范围或变为 " +"NaN。如果返回 NaN 将给出警告,并且将变为 NaN 的值记录下来。" #: Source/Core/DolphinQt/ToolBar.cpp:130 msgid "Config" @@ -2973,9 +3040,9 @@ msgstr "配置输出" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "确定" @@ -2988,7 +3055,7 @@ msgstr "确认改变后端" msgid "Confirm on Stop" msgstr "停止游戏时确认" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2999,7 +3066,7 @@ msgstr "确认" msgid "Connect" msgstr "连接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "连接平衡板" @@ -3007,27 +3074,27 @@ msgstr "连接平衡板" msgid "Connect USB Keyboard" msgstr "连接 USB 键盘" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "连接 Wii 遥控器 %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "连接 Wii 遥控器 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "连接 Wii 遥控器 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "连接 Wii 遥控器 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "连接 Wii 遥控器 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "连接 Wii 遥控器" @@ -3072,19 +3139,19 @@ msgstr "控制摇杆" msgid "Controller Profile" msgstr "控制器预设" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "控制器预设 1" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "控制器预设 2" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "控制器预设 3" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "控制器预设 4" @@ -3096,6 +3163,16 @@ msgstr "控制器设置" msgid "Controllers" msgstr "控制器" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -3107,7 +3184,7 @@ msgstr "" "明条件进行亮度调整。

此设置需要 HDR 输出才能生效。" "

如无法确定,请将其保持为 203。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -3117,7 +3194,7 @@ msgstr "" "控制会聚平面的距离。即虚拟物体看起来出现在屏幕前方的距离。

数值越高凸" "出屏幕效果越强,而数值越低观感会越舒适。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -3129,7 +3206,7 @@ msgstr "" "GPU 负荷且可能在一些游戏中引起故障。一般而言,内部分辨率越低,性能将越高。" "

如无法确定,请选择“原生”。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3157,7 +3234,7 @@ msgid "" "True" msgstr "控制使用高级还是低级 DSP 模拟。默认值为 True" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "会聚" @@ -3256,18 +3333,22 @@ msgstr "" msgid "Copy" msgstr "复制" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "复制函数(&F)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "复制十六进制(&H)" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "复制地址" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "复制代码行(&L)" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "复制失败" @@ -3276,18 +3357,14 @@ msgstr "复制失败" msgid "Copy Hex" msgstr "复制十六进制" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "复制目标地址(&G)" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "复制数值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "复制代码行(&L)" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "复制目标地址(&G)" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "复制到 A" @@ -3407,8 +3484,8 @@ msgstr "无法识别文件 {0}" msgid "Could not save your changes!" msgstr "无法保存您所做的更改!" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "无法启动更新程序进程:{0}" @@ -3515,7 +3592,7 @@ msgstr "" "清除 CPU 上的顶点以减少所需的绘制调用数。可能影响性能和绘制统计数据。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "当前区域" @@ -3706,24 +3783,24 @@ msgstr "解码质量:" msgid "Decrease" msgstr "减小" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "减小会聚" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "减小深度" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "减小模拟速度" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "减小内部分辨率" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "减少选定的状态插槽" @@ -3782,8 +3859,8 @@ msgstr "" "

如无法确定,请不要选中此项。" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "删除" @@ -3801,7 +3878,7 @@ msgstr "删除所选文件..." msgid "Delete the existing file '{0}'?" msgstr "删除已经存在的文件 ‘{0}’ 吗?" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "深度" @@ -3816,9 +3893,9 @@ msgstr "深度:" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "说明" @@ -3867,7 +3944,7 @@ msgstr "分离的" msgid "Detect" msgstr "检测" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "正在检测 RSO 模块" @@ -3875,7 +3952,7 @@ msgstr "正在检测 RSO 模块" msgid "Deterministic dual core:" msgstr "确定性双核:" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "开发版(一天多次)" @@ -3933,15 +4010,15 @@ msgstr "禁用复制过滤" msgid "Disable EFB VRAM Copies" msgstr "禁用 EFB VRAM 副本" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "禁用模拟速度限制" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "禁用快速内存" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "禁用快速内存区" @@ -3949,11 +4026,11 @@ msgstr "禁用快速内存区" msgid "Disable Fog" msgstr "禁用雾化" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "禁用 JIT 缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "禁用超大入口端点映射" @@ -3979,7 +4056,7 @@ msgstr "" "禁用 VRAM 中的 EFB 副本,而强制从 RAM 中读取。所有放大将不可用。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3996,6 +4073,8 @@ msgid "" "Disables your screensaver while running a game.

If " "unsure, leave this checked." msgstr "" +"运行游戏时禁用屏幕保护程序。

如无法确定,请选中此" +"项。" #: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97 msgid "Disc" @@ -4005,9 +4084,10 @@ msgstr "光盘" msgid "Discard" msgstr "丢弃" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" -msgstr "" +msgstr "显示设置" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:183 msgid "Display Type" @@ -4038,15 +4118,15 @@ msgstr "距离" msgid "Distance of travel from neutral position." msgstr "从中间位置移动的距离。" -#: Source/Core/DolphinQt/Main.cpp:265 +#: 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:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "是否要添加 \"%1\" 到游戏路径列表?" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "你是否要清除符号名称列表?" @@ -4056,7 +4136,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "是否要删除 %n 已选定的存档文件?" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "您确定是否停止当前模拟?" @@ -4077,9 +4157,9 @@ msgstr "Dolphin FIFO 日志 (*.dff)" msgid "Dolphin Game Mod Preset" msgstr "Dolphin 游戏模组预设" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "Dolphin 映射文件 (*.map)" @@ -4091,8 +4171,8 @@ msgstr "Dolphin 签名 CSV 文件" msgid "Dolphin Signature File" msgstr "Dolphin 签名文件" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS 电影 (*.dtm)" @@ -4148,12 +4228,6 @@ msgstr "Dolphin 无法正确验证典型的 TGC 文件,因为其不是真实 msgid "Dolphin is unable to verify unlicensed discs." msgstr "Dolphin 无法验证未经授权的光盘。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "Dolphin 会将其用于无法自动确定区域的游戏。" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "Dolphin 的金手指系统当前已禁用。" @@ -4163,7 +4237,7 @@ msgstr "Dolphin 的金手指系统当前已禁用。" msgid "Domain" msgstr "域名" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "不更新" @@ -4220,13 +4294,17 @@ msgstr "已下载 %1 代码。(已添加 %2)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" +"从 GameTDB.com 下载完整的游戏封面,以便在游戏列表的网格视图显示。如果未选中此" +"设置,游戏列表将显示从游戏存档数据生成的标图,如果游戏没有存档文件,则显示通" +"用标图。

列表视图始终使用存档文件标图。

如无" +"法确定,请选中此项。" #. i18n: The "Drawsome" (combination of "Draw" and "Awesome") tablet wiimote extension by Ubisoft. #: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25 @@ -4267,7 +4345,7 @@ msgstr "转储伪显存(&F)" msgid "Dump &MRAM" msgstr "转储主内存(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "转储音频" @@ -4279,7 +4357,7 @@ msgstr "转储基本纹理" msgid "Dump EFB Target" msgstr "转储 EFB 目标" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "转储帧" @@ -4406,16 +4484,16 @@ msgstr "东亚" msgid "Edit Breakpoint" msgstr "编辑断点" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" -msgstr "" +msgstr "编辑条件" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" -msgstr "" +msgstr "编辑条件表达式" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "编辑..." @@ -4439,7 +4517,7 @@ msgstr "有效" msgid "Effective priority" msgstr "有效优先级" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "EiB" @@ -4505,7 +4583,7 @@ msgstr "" "当前: 内存 1 {0:08X} ({1} MiB),内存 2 {2:08X} ({3} MiB)\n" "差异: 内存 1 {4:08X} ({5} MiB),内存 2 {6:08X} ({7} MiB)" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "模拟速度" @@ -4525,7 +4603,7 @@ msgstr "启用 API 验证层" msgid "Enable Audio Stretching" msgstr "启用音频伸缩" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "启用金手指" @@ -4543,15 +4621,15 @@ msgstr "启用调试页面" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:99 msgid "Enable Discord Presence" -msgstr "" +msgstr "启用 Discord 状态" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87 msgid "Enable Dual Core" msgstr "启用双核心" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "启用双核心(加速)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "启用双核心(速度破解)" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4604,7 +4682,7 @@ msgstr "" "用前请关闭当前游戏。
请注意,在游戏运行时关闭硬核模式需要先关闭游戏,然后" "才能重新启用。" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "启用 JIT 区块分析" @@ -4640,13 +4718,13 @@ msgstr "启用扬声器" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:92 msgid "Enable Spectator Mode" -msgstr "" +msgstr "启用观看模式" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80 msgid "Enable Unofficial Achievements" msgstr "启用非官方成就" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "启用使用情况统计报告" @@ -4698,6 +4776,9 @@ msgid "" "speedrun criteria or simply for fun.

Setting takes effect on next " "game load." msgstr "" +"在硬核模式中启用解锁成就。

硬核模式会重新启用玩家已在网站上解锁的成" +"就,以便玩家再次满足解锁条件时会收到通知,这对于自定义速通标准很有用或者只是" +"为了好玩。

设置在下次游戏加载时生效。" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:94 msgid "" @@ -4708,6 +4789,10 @@ msgid "" "RetroAchievements session will not be created.

If this is off at game " "launch, it can be toggled freely while the game is running." msgstr "" +"在观看模式下启用解锁成就。

在观看模式下,成就和排行榜会被整理并显示在" +"屏幕上,但不会提交给服务器。

如果在游戏启动时此选项为开,则直到游戏关" +"闭时才能关掉,因为没有创建 RetroAchievements 会话。

如果在游戏启动时此" +"选项为关,则可以在游戏运行时自由切换。" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:82 msgid "" @@ -4716,6 +4801,9 @@ msgid "" "that have not been deemed official by RetroAchievements and may be useful " "for testing or simply for fun.

Setting takes effect on next game load." msgstr "" +"允许像官方成就一样解锁非官方成就。

非官方成就可能是可选的或未完成的成" +"就,尚未被 RetroAchievements 视为官方成就,可能对测试有用或只是为了好玩。" +"

设置在下次游戏加载时生效。" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:98 msgid "" @@ -4729,7 +4817,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "启用浮点结果标记运算,一些游戏需要。(开 = 兼容,关 = 快速)" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4776,7 +4864,7 @@ msgstr "" "启用逐行扫描模拟支持该特性的软件。对多数游戏无任何影响。" "

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4833,6 +4921,18 @@ msgstr "" "提供商\n" "请阅读服务条款:https://www.wiilink24.com/tos" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" +"启用 AR 和 Gecko 金手指代码,可用于修改游戏行为。这些代码可以通过工具菜单中的" +"金手指管理器进行配置。

模拟处于活动状态时无法更改此设置。" +"

如无法确定,请不要选中此项。" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4869,9 +4969,9 @@ msgstr "" "\n" " 正在中止导入。 " -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" -msgstr "" +msgstr "结束地址" #: Source/Core/Core/NetPlayServer.cpp:126 msgid "Enet Didn't Initialize" @@ -4920,14 +5020,14 @@ msgid "" "to." msgstr "输入要连接的分接服务器实例 IP 地址和端口。" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4966,26 +5066,26 @@ msgstr "请输入 RSO 模块地址:" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -5002,9 +5102,9 @@ msgstr "请输入 RSO 模块地址:" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "错误" @@ -5035,7 +5135,7 @@ msgstr "加载选定语言错误。正在退回系统默认。" msgid "Error obtaining session list: %1" msgstr "获取会话列表时出错: %1" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "加载一些纹理包时发生错误" @@ -5132,7 +5232,7 @@ msgstr "在 {1} 分区未使用的 {0} 区块中发现错误。" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "欧洲" @@ -5145,15 +5245,15 @@ msgstr "专用超着色器" msgid "Exit" msgstr "退出" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "建议用 + 号或右圆括号。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " -msgstr "建议参数:" +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" +msgstr "关联参数:{0}" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "建议用右圆括号。" @@ -5165,19 +5265,19 @@ msgstr "建议用逗号。" msgid "Expected end of expression." msgstr "建议用表达式结束符。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "建议使用的输入名称。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "建议用左圆括号。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "建议用表达式开始符。" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "建议使用的变量名称。" @@ -5185,7 +5285,7 @@ msgstr "建议使用的变量名称。" msgid "Experimental" msgstr "实验性" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "导出所有 Wii 存档" @@ -5196,11 +5296,11 @@ msgstr "导出所有 Wii 存档" msgid "Export Failed" msgstr "导出失败" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "导出录制" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "导出录制..." @@ -5228,7 +5328,7 @@ msgstr "导出为 .gcs...(&G)" msgid "Export as .&sav..." msgstr "导出为 .sav...(&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -5256,35 +5356,35 @@ msgstr "外部" msgid "External Frame Buffer (XFB)" msgstr "外部帧缓冲 (XFB)" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "从 NAND 中提取证书" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "提取整个光盘..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "提取整个分区..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "提取文件..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "提取文件..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "提取系统数据" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "正在提取所有文件..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "正在提取目录..." @@ -5314,7 +5414,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "无法将此会话添加到联机索引: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "附加到签名文件 '%1' 失败" @@ -5384,7 +5484,7 @@ msgstr "删除联机 GBA{0} 存档文件失败。请验证你的写入权限。" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "删除联机存储卡失败。请验证你的写入权限。" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "无法删除所选文件。" @@ -5413,15 +5513,15 @@ msgstr "在 %1 个存档文件中 %n 个导出失败。" msgid "Failed to export the following save files:" msgstr "导出以下存档文件失败:" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "从 NAND 中提取证书失败" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "提取文件失败。" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "提取系统数据失败。" @@ -5443,18 +5543,18 @@ msgstr "无法找到一个或多个 D3D 符号" msgid "Failed to import \"%1\"." msgstr "导入 “%1” 失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "导入存档文件失败。请运行一次游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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 -> " @@ -5463,7 +5563,7 @@ msgstr "" "导入存档文件失败。您的 NAND 可能已损坏,或某些因素阻止访问里面的文件。请尝试" "修复 NAND(工具 -> 管理 NAND -> 校验 NAND...),然后再次导入存档。" -#: Source/Core/DolphinQt/MainWindow.cpp:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "初始化核心失败" @@ -5486,18 +5586,18 @@ msgid "Failed to install pack: %1" msgstr "安装包失败: %1" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "无法将该游戏安装到 NAND。" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "监听端口 %1 失败。是否有另一个联机服务器的实例正在运行?" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "无法在 %1 处加载 RSO 模块" @@ -5509,7 +5609,7 @@ msgstr "载入 d3d11.dll 失败" msgid "Failed to load dxgi.dll" msgstr "载入 dxgi.dll 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "载入映射文件 '%1' 失败" @@ -5548,7 +5648,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "打开 “{0}” 进行写入失败。" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "无法打开 '%1'" @@ -5589,7 +5689,7 @@ msgstr "" msgid "Failed to open file." msgstr "打开文件失败。" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "打开服务器失败" @@ -5677,6 +5777,10 @@ msgid "" "\n" "The file was too small." msgstr "" +"读取 Infinity 文件失败:\n" +"%1\n" +"\n" +"文件过小。" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818 msgid "Failed to read the Skylander file!" @@ -5744,19 +5848,19 @@ msgstr "保存分支监视快照 “%1” 失败" msgid "Failed to save FIFO log." msgstr "保存 FIFO 日志失败。" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "保存代码映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "保存签名文件 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "保存符号映射到路径 '%1' 失败" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "保存到签名文件 '%1' 失败" @@ -5814,8 +5918,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "失败" @@ -5823,11 +5927,12 @@ msgstr "失败" msgid "Fair Input Delay" msgstr "公平输入延迟" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "备用区域" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "备用区域:" @@ -5864,9 +5969,9 @@ msgstr "角色类型" msgid "File Details" msgstr "文件详细信息" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "文件格式" @@ -5878,20 +5983,20 @@ msgstr "文件格式:" msgid "File Info" msgstr "文件信息" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "文件名" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "文件路径" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "文件大小" @@ -5993,8 +6098,8 @@ msgstr "标记" msgid "Float" msgstr "浮点" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "跟随分支(&B)" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -6065,7 +6170,7 @@ msgstr "已强制关闭,因为 %1 不支持顶点着色器扩展。" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "已强制打开,因为 %1 不支持几何着色器。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -6079,7 +6184,7 @@ msgstr "" "比补丁如有效则推荐用宽高比补丁。

如无法确定,请不要" "选中此选项。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -6095,6 +6200,8 @@ msgid "" "Forces the render window to stay on top of other windows and applications." "

If unsure, leave this unchecked." msgstr "" +"强制渲染窗口置顶在其他窗口和应用程序之上。

如无法确" +"定,请不要选中此项。" #: Source/Core/DolphinQt/ConvertDialog.cpp:60 msgid "Format:" @@ -6125,20 +6232,20 @@ msgstr "找到 %n 个地址。" msgid "Frame %1" msgstr "帧 %1" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "逐帧播放" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "逐帧播放减小速度" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "逐帧播放增加速度" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "逐帧播放重置速度" @@ -6198,11 +6305,11 @@ msgstr "" msgid "FreeLook" msgstr "自由视点" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "自由视点" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "自由视点切换" @@ -6236,13 +6343,14 @@ msgstr "从:" msgid "FullScr" msgstr "全屏" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "函数" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" -msgstr "" +msgstr "功能设置" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302 msgid "Functions" @@ -6260,7 +6368,7 @@ msgstr "GBA (TCP)" msgid "GBA Cartridge Path:" msgstr "GBA 卡带路径:" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "GBA 核心" @@ -6276,11 +6384,11 @@ msgstr "GBA 设置" msgid "GBA TAS Input %1" msgstr "GBA TAS 输入 %1" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "GBA 音量" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "GBA 窗口大小" @@ -6415,11 +6523,11 @@ msgstr "游戏" msgid "Game Boy Advance" msgstr "Game Boy Advance" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "GBA 游戏卡带 (*.gba)" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6455,8 +6563,8 @@ msgstr "游戏伽玛" msgid "Game Gamma:" msgstr "游戏伽玛:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "游戏 ID" @@ -6584,7 +6692,8 @@ msgstr "Gecko (C2)" msgid "Gecko Codes" msgstr "Gecko 代码" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6604,14 +6713,23 @@ msgid "Generate Action Replay Code(s)" msgstr "生成 Action Replay 代码" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "生成一个新的统计标识" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" +"为您的使用情况统计生成一个新的匿名 ID。这将导致任何未来的统计信息与您之前的统" +"计信息脱钩。" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "已生成 AR 代码。" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "从 '%1' 中生成符号名" @@ -6629,7 +6747,7 @@ msgstr "德国" msgid "GetDeviceList failed: {0}" msgstr "获取设备列表失败: {0}" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "GiB" @@ -6662,7 +6780,7 @@ msgstr "图形" msgid "Graphics Mods" msgstr "图形模组" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "图形切换" @@ -6671,7 +6789,7 @@ msgstr "图形切换" msgid "Graphics mods are currently disabled." msgstr "图形模组当前已禁用。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6696,7 +6814,7 @@ msgstr "绿 左" msgid "Green Right" msgstr "绿 右" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "网格视图" @@ -6778,7 +6896,7 @@ msgstr "隐藏" msgid "Hide &Controls" msgstr "隐藏控件(&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "隐藏全部" @@ -6796,12 +6914,15 @@ msgstr "隐藏远程 GBA" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" +"只要鼠标光标位于渲染窗口内并且渲染窗口处于活动状态,便隐藏鼠标光标。" +"

如无法确定,请选择"移动时"。" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "高" @@ -6868,7 +6989,7 @@ msgstr "主机名" msgid "Hotkey Settings" msgstr "热键设置" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6986,11 +7107,11 @@ msgstr "" "与主机输入权限相同,除“主机”(零延迟)之外,其他可以随时切换。\n" "适用于需要时间敏感控制的回合制游戏,如高尔夫球。" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "身份标识生成" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -7039,6 +7160,20 @@ msgstr "" "量 fifo 日志,但对测试很有帮助。

如无法确定,请不要" "选中此项。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" +"如果选择此项,Dolphin 将收集关于其性能表现、功能使用、模拟游戏和配置,以及您" +"的系统硬件和操作系统的数据。

我们不会收集任何隐私数据。这些数据有助于" +"我们了解用户与被模拟的游戏怎样使用 Dolphin 以确定我们的工作重点。这还有助于我" +"们发现导致故障、性能问题与稳定性问题的罕见程序配置。" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -7105,7 +7240,7 @@ msgstr "" "能也会略微降低。

如无法确定,请不要选中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "导入 BootMii NAND 备份..." @@ -7120,15 +7255,15 @@ msgstr "导入失败" msgid "Import Save File(s)" msgstr "导入存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "导入 Wii 存档..." -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "正在导入 NAND 备份" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -7145,6 +7280,9 @@ msgid "" "notified.

If unsure, leave this checked." msgstr "" +"如果出现错误,Dolphin 将暂停并通知您错误情况,并显示如何继续的选项。禁用此选" +"项后,Dolphin 将“忽略”所有错误。模拟不会暂停,您也不会收到通知。" +"

如无法确定,请选中此项。" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224 msgid "In-Game?" @@ -7189,24 +7327,24 @@ msgstr "错误的游玩时间!" msgid "Increase" msgstr "增加" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "增加会聚" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "增加深度" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "增加模拟速度" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "增加内部分辨率" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "增加选定的状态插槽" @@ -7257,8 +7395,8 @@ msgstr "信息" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "信息" @@ -7272,10 +7410,10 @@ msgstr "注入" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "输入" @@ -7294,13 +7432,10 @@ msgid "Insert &BLR" msgstr "插入 BLR (&B)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "插入 NOP (&N)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "插入 nop (&N)" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "插入 SD 卡" @@ -7318,7 +7453,7 @@ msgstr "安装分区 (%1)" msgid "Install Update" msgstr "安装更新" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "安装 WAD..." @@ -7326,8 +7461,9 @@ msgstr "安装 WAD..." msgid "Install to the NAND" msgstr "安装至 NAND" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "指令。" @@ -7341,7 +7477,7 @@ msgstr "指令" msgid "Instruction Breakpoint" msgstr "指令断点" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "指令:" @@ -7350,7 +7486,7 @@ msgstr "指令:" msgid "Instruction: %1" msgstr "指令: %1" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -7415,8 +7551,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "内部 LZO 错误 - 无法解析解压缩的版本字符串 ({0} / {1})" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "内部分辨率" @@ -7433,7 +7569,7 @@ msgstr "生成 AR 代码时出现内部错误。" msgid "Interpreter (slowest)" msgstr "解释器(最慢)" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "解释器核心" @@ -7441,7 +7577,7 @@ msgstr "解释器核心" msgid "Invalid Expression." msgstr "无效表达式。" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "从自动更新服务接收到无效的 JSON 数据:{0}" @@ -7449,7 +7585,7 @@ msgstr "从自动更新服务接收到无效的 JSON 数据:{0}" msgid "Invalid Mixed Code" msgstr "无效混合代码" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "包 %1 无效: %2" @@ -7458,7 +7594,7 @@ msgstr "包 %1 无效: %2" msgid "Invalid Player ID" msgstr "无效玩家 ID" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "无效 RSO 模块地址: %1" @@ -7538,11 +7674,11 @@ msgstr "意大利" msgid "Item" msgstr "物品" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "JIT" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "关闭 JIT 区块链接" @@ -7550,47 +7686,47 @@ msgstr "关闭 JIT 区块链接" msgid "JIT Blocks" msgstr "JIT 区块" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "关闭 JIT 分支" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "关闭 JIT 浮点" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "关闭 JIT 整数" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "关闭 JIT 加载存储浮动" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "关闭 JIT 加载存储" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "关闭 JIT 加载存储配对" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "关闭 JIT 加载存储 IXz" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "关闭 JIT 加载存储 Ibzx" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "关闭 JIT 加载存储 Iwz" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "关闭 JIT (JIT 核心)" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "关闭 JIT 配对" @@ -7602,14 +7738,15 @@ msgstr "适用于 ARM64 的 JIT 重编译器(推荐)" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "适用于 x86-64 的 JIT 重编译器(推荐)" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "关闭 JIT 寄存器缓存" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "关闭 JIT 系统寄存器" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7619,11 +7756,11 @@ msgstr "" "清除缓存后,JIT 无法找到代码空间。这应该从不会出现。请在错误跟踪器中上报此事" "件。 Dolphin 即将退出。" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "JIT 未激活" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "日本" @@ -7645,7 +7782,7 @@ msgid "" "edit anything!" msgstr "Kaos 是这个奖杯的唯一反派,且一直是解锁状态。无需编辑任何内容!" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "保持运行" @@ -7680,7 +7817,7 @@ msgstr "键盘控制器" msgid "Keys" msgstr "按键" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "KiB" @@ -7688,7 +7825,7 @@ msgstr "KiB" msgid "Kick Player" msgstr "踢除玩家" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "韩国" @@ -7724,7 +7861,7 @@ msgstr "标签" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:389 msgid "Language" -msgstr "" +msgstr "语言" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 msgid "Last Value" @@ -7827,6 +7964,17 @@ msgstr "" "左/右键单击配置输出。\n" "中键单击清除。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" +"允许您使用游戏可能未用到的语言和其他区域相关设置。可能导致各种崩溃和错误。" +"

模拟处于活动状态时无法更改此设置。

如无法确" +"定,请不要选中此项。" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7860,11 +8008,11 @@ msgstr "光" msgid "Limit Chunked Upload Speed:" msgstr "限制数据块上传速度:" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "表单列" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "列表视图" @@ -7874,17 +8022,17 @@ msgstr "正在监听" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "载入损坏映射文件(&B)..." -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "载入其他映射文件(&O)..." @@ -7893,7 +8041,7 @@ msgid "Load Branch Watch &From..." msgstr "载入分支监视...(&F)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "载入分支监视快照" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7904,7 +8052,7 @@ msgstr "加载自定义纹理" msgid "Load File" msgstr "载入文件" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "载入 GameCube 主菜单" @@ -7912,16 +8060,21 @@ msgstr "载入 GameCube 主菜单" msgid "Load Host's Save Data Only" msgstr "仅加载主机的存档数据" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "载入最近状态" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "载入映射文件" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "加载路径:" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "载入 ROM" @@ -7929,104 +8082,104 @@ msgstr "载入 ROM" msgid "Load Slot" msgstr "载入插槽" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "载入状态" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "载入最近状态 1" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "载入最近状态 10" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "载入最近状态 2" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "载入最近状态 3" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "载入最近状态 4" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "载入最近状态 5" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "载入最近状态 6" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "载入最近状态 7" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "载入最近状态 8" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "载入最近状态 9" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "载入状态 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "载入状态 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "载入状态 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "载入状态 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "载入状态 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "载入状态 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "载入状态 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "载入状态 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "载入状态 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "载入状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "从文件中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "从选择的插槽中加载状态" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "从插槽中载入状态" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "加载 Wii 系统菜单 %1" @@ -8034,20 +8187,15 @@ msgstr "加载 Wii 系统菜单 %1" msgid "Load and Write Host's Save Data" msgstr "加载和写入主机的存档数据" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "从选择的插槽中加载" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "从插槽 %1 - %2 载入" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "载入映射文件" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "加载 vWii 系统菜单 %1" @@ -8055,7 +8203,7 @@ msgstr "加载 vWii 系统菜单 %1" msgid "Load..." msgstr "载入..." -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "已从 '%1' 中加载符号" @@ -8085,20 +8233,22 @@ msgstr "本地" msgid "Lock Mouse Cursor" msgstr "锁定鼠标光标" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "已锁定" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" +"只要鼠标光标处于活动状态,就会将其锁定到渲染小部件上。您可以设置热键来解锁。" +"

如无法确定,请不要选中此项。" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "日志" @@ -8108,10 +8258,11 @@ msgid "Log Configuration" msgstr "日志设置" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "登录" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "记录 JIT 指令范围" @@ -8153,7 +8304,7 @@ msgstr "循环" msgid "Lost connection to NetPlay server..." msgstr "丢失联机服务器连接..." -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "低" @@ -8216,9 +8367,9 @@ msgstr "请确保游玩时间是有效的!" msgid "Make sure there is a Skylander in slot %1!" msgstr "请确保 Skylander 已位于插槽 %1 中!" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "制作者" @@ -8227,7 +8378,7 @@ msgstr "制作者" msgid "Maker:" msgstr "制作者:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -8238,7 +8389,7 @@ msgstr "" "雾模拟,禁用雾将破坏其游戏性。

如无法确定,请不要选" "中此项。" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "管理 NAND" @@ -8277,7 +8428,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "这会导致 Wii 菜单和一些游戏减速。" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "中等" @@ -8293,7 +8444,7 @@ msgstr "内存断点" msgid "Memory Card" msgstr "存储卡" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "存储卡管理器" @@ -8321,7 +8472,7 @@ msgstr "MemoryCard: 在无效源地址 ({0:#x}) 中读取调用" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: 在无效目标地址 ({0:#x}) 中写入调用" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8331,7 +8482,7 @@ msgstr "" "将新 NAND 合并入当前 NAND 将会覆盖所有现有的频道与存档。此过程不可逆,建议您" "对两份 NAND 都进行备份。确定继续?" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "MiB" @@ -8411,8 +8562,8 @@ msgstr "修改插槽" msgid "Modifying Skylander: %1" msgstr "修改 Skylander: %1" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "已找到模块: %1" @@ -8454,7 +8605,7 @@ msgstr "鼠标光标可见" msgid "Move" msgstr "移动" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "影片" @@ -8478,10 +8629,10 @@ msgstr "多重分插器" msgid "N&o to All" msgstr "全部选否(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "NAND 校验" @@ -8490,8 +8641,8 @@ msgstr "NAND 校验" msgid "NKit Warning" msgstr "NKit 警告" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "NTSC-J" @@ -8500,7 +8651,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "NTSC-J (ARIB TR-B9)" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "NTSC-K" @@ -8521,8 +8672,8 @@ msgstr "" "值,请在此处进行设置。

如无法确定,请保持为 2.35。" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "NTSC-U" @@ -8535,11 +8686,11 @@ msgstr "NTSC-U" msgid "Name" msgstr "名称" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "命名一个新标签:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "要移除的标签名:" @@ -8624,7 +8775,7 @@ msgid "Never Auto-Update" msgstr "不要自动更新" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "新" @@ -8649,7 +8800,7 @@ msgstr "新建搜索" msgid "New Tag..." msgstr "新标签..." -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "已生成新的标识。" @@ -8657,12 +8808,13 @@ msgstr "已生成新的标识。" msgid "New instruction:" msgstr "新指令:" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "新标签" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "下一个游戏预设" @@ -8670,8 +8822,9 @@ msgstr "下一个游戏预设" msgid "Next Match" msgstr "匹配下一个" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "下一个预设" @@ -8758,7 +8911,7 @@ msgstr "未选择图形模组" msgid "No input" msgstr "无输入" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "没有发现问题。" @@ -8801,7 +8954,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "未找到 undo.dtm 文件,为防止影片出现不同步撤销载入状态操作被取消。" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8977,7 +9130,7 @@ msgstr "开" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:203 msgid "On Movement" -msgstr "活动时" +msgstr "移动时" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:396 msgid "" @@ -9010,7 +9163,7 @@ msgstr "" "经过足够的过程和实验后,您也许能够找到仅在模拟软件中执行操作时才会采用的函数" "调用和条件代码路径。" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "在线文档(&D)" @@ -9018,7 +9171,7 @@ msgstr "在线文档(&D)" msgid "Only Show Collection" msgstr "只显示合集" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" @@ -9026,7 +9179,7 @@ msgstr "" "仅附加有此前缀的符号:\n" "(留空表示全部)" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -9049,13 +9202,17 @@ msgstr "打开所在目录(&C)" msgid "Open &User Folder" msgstr "打开用户目录(&U)" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "打开成就" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "打开目录..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "打开 FIFO 日志" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -9157,7 +9314,7 @@ msgstr "其他" msgid "Other Partition (%1)" msgstr "其他分区 (%1)" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "其他状态热键" @@ -9174,7 +9331,7 @@ msgstr "其他游戏..." msgid "Output" msgstr "输出" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "输出重采样" @@ -9182,16 +9339,16 @@ msgstr "输出重采样" msgid "Output Resampling:" msgstr "输出重采样:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "覆盖" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "播放录制...(&L)" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "PAL" @@ -9220,7 +9377,7 @@ msgstr "PNG 图像文件 (*.png);; 所有文件 (*)" msgid "PPC Size" msgstr "PPC 大小" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "PPC 对 Host" @@ -9233,7 +9390,7 @@ msgstr "手柄" msgid "Pads" msgstr "鼓垫" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "参数" @@ -9296,7 +9453,7 @@ msgstr "暂停" msgid "Pause Branch Watch" msgstr "暂停分支监视" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "在影片末尾暂停" @@ -9324,6 +9481,8 @@ msgid "" "Pauses the game whenever the render window isn't focused." "

If unsure, leave this unchecked." msgstr "" +"当渲染窗口未活动时暂停游戏。

如无法确定,请不要选中" +"此项。" #. i18n: Refers to tilting an emulated Wii Remote. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40 @@ -9344,7 +9503,7 @@ msgstr "向外挥舞的峰值速度。" msgid "Per-Pixel Lighting" msgstr "逐像素光照" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "执行在线系统更新" @@ -9374,11 +9533,11 @@ msgstr "物理" msgid "Physical address space" msgstr "物理地址空间" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "PiB" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "选择调试字体" @@ -9394,8 +9553,8 @@ msgstr "下俯" msgid "Pitch Up" msgstr "上仰" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "平台" @@ -9407,13 +9566,13 @@ msgstr "开始" msgid "Play / Record" msgstr "播放/录制" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "播放录制" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82 msgid "Play Set/Power Disc" -msgstr "玩具组合/动力飞盘" +msgstr "玩具组合/能量盘" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:123 msgid "Playback Options" @@ -9503,7 +9662,7 @@ msgstr "传送门插槽" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "检测到可能的非同步异常: %1 或许已在帧 %2 处不同步 " -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "后处理效果" @@ -9517,11 +9676,11 @@ msgstr "后处理着色器配置" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86 msgid "Power Disc Three" -msgstr "" +msgstr "能量盘三" #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84 msgid "Power Disc Two" -msgstr "" +msgstr "能量盘二" #. i18n: VS is short for vertex shaders. #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:173 @@ -9556,7 +9715,7 @@ msgstr "" msgid "Presets" msgstr "预设" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "按下同步按钮" @@ -9577,9 +9736,9 @@ msgstr "" "但会导致图像瑕疵并破坏效果。

不推荐,仅在其他选项效" "果不好时使用。" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "上一个游戏预设" @@ -9587,8 +9746,9 @@ msgstr "上一个游戏预设" msgid "Previous Match" msgstr "匹配上一个" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "上一个预设" @@ -9632,13 +9792,13 @@ msgstr "发现中等严重性问题。游戏整体或特定部分可能无法正 msgid "Profile" msgstr "预设" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "程序计数器" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9650,16 +9810,18 @@ msgid "" "Prompts you to confirm that you want to end emulation when you press Stop." "

If unsure, leave this checked." msgstr "" +"按下“停止”时会提示您确认是否要结束模拟。

如无法确" +"定,请选中此项。" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" msgstr "公开" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "清除游戏列表缓存" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "将 IPL ROM 放至 User/GC/。" @@ -9686,7 +9848,7 @@ msgstr "DPLII 解码器的质量。质量越高音频延迟越大。" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "询问" @@ -9711,11 +9873,11 @@ msgstr "R-模拟" msgid "READY" msgstr "就绪" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "RSO 模块" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "RSO 自动检测" @@ -9752,13 +9914,13 @@ msgstr "Raw" msgid "Raw Internal Resolution" msgstr "原始内部分辨率" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "替换指令(&P)" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "读取" @@ -9781,7 +9943,7 @@ msgstr "只读" msgid "Read or Write" msgstr "读取或写入" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "只读模式" @@ -9840,7 +10002,7 @@ msgstr "红 左" msgid "Red Right" msgstr "红 右" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9890,8 +10052,8 @@ msgstr "已刷新当前值。" msgid "Refreshing..." msgstr "正在刷新..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "地区" @@ -9912,9 +10074,10 @@ msgstr "相对输入" msgid "Relative Input Hold" msgstr "保持相对输入" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" -msgstr "" +msgstr "发布(每隔几个月)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -9941,7 +10104,7 @@ msgstr "移除垃圾数据(不可逆):" msgid "Remove Tag..." msgstr "移除标签..." -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "移除标签" @@ -9956,7 +10119,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "重命名符号" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9988,9 +10151,11 @@ msgid "" "Requires the render window to be focused for hotkeys to take effect." "

If unsure, leave this checked." msgstr "" +"需要渲染窗口活动状态才能使热键生效。

如无法确定,请" +"选中此项。" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -10002,7 +10167,7 @@ msgstr "重置" msgid "Reset All" msgstr "全部重置" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "重置忽略警告程序" @@ -10054,8 +10219,8 @@ msgstr "需要重启" msgid "Restore Defaults" msgstr "恢复默认值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "恢复指令" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -10180,6 +10345,24 @@ msgid "" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" +"可以左键单击表中的起始、目标和符号列,以在代码视图中查看关联的地址。右键单击" +"所选行将弹出上下文菜单。\n" +"\n" +"如果右键单击起始、目标或符号列,则将执行将相关地址复制到剪贴板,并执行在相关" +"地址设置断点的操作。请注意,对于起始/目标符号列,只有当所选行中的每一行都有符" +"号时,才会启用这些操作。\n" +"\n" +"如果右键单击所选行的起始列,将执行用 NOP 指令(无操作)替换起始处的分支指令操" +"作。\n" +"\n" +"如果右键单击所选行的目标列,则执行将目标处的指令替换为 BLR 指令(分支到链接寄" +"存器)的操作,但只有当每个起始处的分支指令都更新链接寄存器时,才会启用该操" +"作。\n" +"\n" +"如果右键单击所选行的起始/目标符号列,则可以使用 BLR 指令替换符号最开始的指" +"令,但只有当所选行中的每一行都有符号时才会启用。\n" +"\n" +"所有上下文菜单都具有从候选中删除所选行的操作。" #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10188,20 +10371,20 @@ msgstr "" msgid "Rumble" msgstr "震动" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "运行到此处(&T)" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "在独占线程中运行 GBA 内核" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "运行直到" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "运行直到(忽略断点)" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -10271,11 +10454,11 @@ msgstr "SSL 上下文" msgid "START" msgstr "START" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "保存代码(&V)" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "保存状态(&V)" @@ -10287,7 +10470,7 @@ msgstr "安全" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -10302,22 +10485,34 @@ msgid "Save Branch Watch &As..." msgstr "另存分支监视为...(&A)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" msgstr "保存分支监视快照" +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "将组合输出文件另存为" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "保存已转换的镜像" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "存档导出" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "保存 FIFO 日志" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "保存文件到" #. i18n: Noun (i.e. the data saved by the game) @@ -10329,15 +10524,19 @@ msgstr "游戏存档" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "游戏存档文件 (*.sav);;所有文件 (*)" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "存档导入" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "保存映射文件" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "保存到最早状态存档" @@ -10345,73 +10544,77 @@ msgstr "保存到最早状态存档" msgid "Save Preset" msgstr "保存预设" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "录制文件另存为" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "保存签名文件" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "保存状态" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "保存状态 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "保存状态 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "保存状态 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "保存状态 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "保存状态 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "保存状态 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "保存状态 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "保存状态 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "保存状态 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "保存状态 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "保存状态到文件" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "保存状态到最早的插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "向选中的插槽保存状态" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "保存状态到插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "保存符号映射为...(&A)" @@ -10431,11 +10634,7 @@ msgstr "另存为预设..." msgid "Save as..." msgstr "另存为..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "将组合输出文件另存为" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -10448,19 +10647,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "保存在与 ROM 相同的目录中" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "保存映射文件" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "保存签名文件" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "保存至所选插槽" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "保存到插槽 %1 - %2" @@ -10494,7 +10685,7 @@ msgstr "截图" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "搜索" @@ -10521,7 +10712,7 @@ msgid "" "for a bit and try again." msgstr "当前无法在虚拟地址空间中进行搜索。请运行一会儿游戏,然后重试。" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "搜索一个指令" @@ -10529,7 +10720,7 @@ msgstr "搜索一个指令" msgid "Search games..." msgstr "搜索游戏..." -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "搜索指令" @@ -10539,11 +10730,11 @@ msgstr "搜索:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:59 msgid "Section that contains all Action Replay cheat codes." -msgstr "包含所有 Action Replay 金手指的部分。" +msgstr "包含所有 Action Replay 金手指代码的部分。" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:56 msgid "Section that contains all Gecko cheat codes." -msgstr "包含所有 Gecko 金手指的部分。" +msgstr "包含所有 Gecko 金手指代码的部分。" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:62 msgid "Section that contains all graphics related settings." @@ -10565,7 +10756,7 @@ msgstr "选择" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "选择分支监视快照自动保存文件(在用户文件夹位置,可取消)" @@ -10574,7 +10765,7 @@ msgid "Select Dump Path" msgstr "选择转储路径" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "选择导出目录" @@ -10582,18 +10773,22 @@ msgstr "选择导出目录" msgid "Select Figure File" msgstr "选择角色文件" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "选择 GBA BIOS" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "选择 GBA ROM" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "选择 GBA 存档路径" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "选择密钥文件 (OTP/SEEPROM 转储)" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "选择最近状态" @@ -10602,6 +10797,10 @@ msgstr "选择最近状态" msgid "Select Load Path" msgstr "选择加载路径" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "选择 NAND 备份" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "选择资源包路径" @@ -10610,6 +10809,14 @@ msgstr "选择资源包路径" msgid "Select Riivolution XML file" msgstr "选择 Riivolutione XML 文件" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "选择 SD 卡镜像" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "选择存档文件" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "选择 Skylander 合集" @@ -10618,58 +10825,62 @@ msgstr "选择 Skylander 合集" msgid "Select Skylander File" msgstr "选择 Skylander 文件" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "选择插槽 %1 - %2" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "选择状态" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "选择状态插槽" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "选择状态 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "选择状态 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "选择状态 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "选择状态 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "选择状态 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "选择状态 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "选择状态 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "选择状态 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "选择状态 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "选择状态 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "选择要安装到 NAND 的软件" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "选择 WFS 路径" @@ -10687,24 +10898,20 @@ msgstr "选择目录" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "选择文件" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "选择要与 SD 卡镜像同步的文件夹" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "选择游戏" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "选择 SD 卡镜像" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "选择文件" @@ -10713,19 +10920,15 @@ msgstr "选择文件" msgid "Select a game" msgstr "选择游戏" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "选择要安装到 NAND 的软件" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "选择 e-Reader 卡" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "选择 RSO 模块地址:" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "选择要播放的录制文件" @@ -10733,23 +10936,6 @@ msgstr "选择要播放的录制文件" msgid "Select the Virtual SD Card Root" msgstr "选择虚拟 SD 卡根目录" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "选择密钥文件 (OTP/SEEPROM 转储)" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "选择一个存档文件" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "选择要保存转换镜像的位置" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "选择要保存多个转换镜像的位置" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "所选字体" @@ -10819,7 +11005,7 @@ msgstr "" "

如无法确定,请将其保留为“宽高比校正内部分辨率”。" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10882,6 +11068,38 @@ msgstr "" "的一个以达到最好的模拟效果。

如无法确定,请选" "择“OpenGL”。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" +"选择 Dolphin 在启动时检查更新时使用的更新通道。如果有新的更新可用,Dolphin 将" +"列出自当前版本以来所做的更改,并询问您是否要更新。

开发通道具有最新版" +"本的 Dolphin,该版本通常每天更新多次。如果您想要最新的功能和修复,请选择此通" +"道。

发布通道每隔几个月更新一次。您可能更喜欢使用此通道的一些原因:" +"
- 您更喜欢使用经过额外测试的版本。
- 联机要求玩家使用相同的 Dolphin 版" +"本,而最新的发布版本将有最多的玩家可以匹配。
- 您经常使用 Dolphin 的保存状" +"态系统,其不能保证 Dolphin 版本之间保存状态的向后兼容性。如果您属于这种情况," +"请确保在更新之前进行游戏内存档(即以与实机 GameCube 或 Wii 上相同的方式保存您" +"的游戏),然后在更新 Dolphin 之后进行任何新的保存状态前加载游戏内存档。" +"

选择“不更新”将阻止 Dolphin 自动检查更新。

如" +"无法确定,请选择发布版。" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "发送" @@ -10890,6 +11108,19 @@ msgstr "发送" msgid "Sensor Bar Position:" msgstr "感应条位置:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" +"将 CPU 和 GPU 模拟工作分开到单独的线程。通过将 Dolphin 最重的负载分散到两个核" +"心来减少单线程负担,这通常可以提高性能。但可能会导致故障和崩溃。

模拟" +"处于活动状态时无法更改此设置。

如无法确定,请选中此" +"项。" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10919,41 +11150,37 @@ msgstr "设置值(&V)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1043 msgid "Set Brea&kpoint" -msgstr "" +msgstr "设置断点(&K)" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "给插槽 A 设置存储卡文件" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "给插槽 B 设置存储卡文件" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "设置 PC" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "设置符号终止地址(&E)" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "设置符号大小(&S)" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "设置符号终止地址" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "设置为默认镜像(&D)" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "给插槽 A 设置存储卡文件" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "给插槽 B 设置存储卡文件" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "设置符号终止地址(&E)" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "设置符号大小(&S)" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "设置符号终止地址" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "设置符号大小 (%1):" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10969,11 +11196,14 @@ msgstr "设置 Wii 的系统语言。" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." msgstr "" +"设置 Dolphin 用户界面显示的语言。

此设置的更改只有在重新启动 Dolphin " +"后才会生效。

如无法确定,请选择<系统语言>。" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:93 msgid "" @@ -10981,12 +11211,22 @@ msgid "" "Certain backends only." msgstr "以毫秒为单位设置延迟。较高的值可能会减少音频噪声。仅限某些后端。" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" +"给无法自动确定区域的游戏设置区域。

模拟处于活动状态时无法更改此设置。" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" +"设置 Dolphin 用户界面的样式。您已添加的任何自定义用户样式都将在此处显示以便切" +"换。

如无法确定,请选择(系统)。" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54 msgid "" @@ -11037,11 +11277,11 @@ msgstr "新干线控制器" msgid "Show % Speed" msgstr "显示百分比速度" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "显示日志(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "显示工具栏(&T)" @@ -11049,24 +11289,24 @@ msgstr "显示工具栏(&T)" msgid "Show Active Title in Window Title" msgstr "在标题栏显示当前游戏名" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "显示全部" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "显示澳大利亚" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" -msgstr "在 Discord 软件中显示当前游戏" +msgstr "在 Discord 上显示当前游戏" #: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:131 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:277 msgid "Show Disabled Codes First" msgstr "优先显示禁用的代码" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "显示 ELF/DOL" @@ -11079,7 +11319,7 @@ msgstr "优先显示启用的代码" msgid "Show FPS" msgstr "显示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "显示帧计数器" @@ -11087,15 +11327,15 @@ msgstr "显示帧计数器" msgid "Show Frame Times" msgstr "显示帧生成时间" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "显示法国" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "显示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "显示德国" @@ -11103,27 +11343,27 @@ msgstr "显示德国" msgid "Show Golf Mode Overlay" msgstr "叠加显示高尔夫模式" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "显示 Infinity 底座" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "显示输入回显" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "显示意大利" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "显示日本" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "显示韩国" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "显示延迟计数器" @@ -11131,7 +11371,7 @@ msgstr "显示延迟计数器" msgid "Show Language:" msgstr "显示语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "显示日志设置(&C)" @@ -11143,7 +11383,7 @@ msgstr "显示联机信息" msgid "Show NetPlay Ping" msgstr "显示联机延迟" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "显示荷兰" @@ -11151,12 +11391,12 @@ msgstr "显示荷兰" msgid "Show On-Screen Display Messages" msgstr "显示屏显消息" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "显示 PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "显示 PC" @@ -11164,7 +11404,7 @@ msgstr "显示 PC" msgid "Show Performance Graphs" msgstr "显示性能图表" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "显示平台" @@ -11172,23 +11412,23 @@ msgstr "显示平台" msgid "Show Projection Statistics" msgstr "显示投影统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "显示地区" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "显示重录计数器" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "显示俄罗斯" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "显示 Skylanders 传送门" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "显示西班牙" @@ -11200,19 +11440,23 @@ msgstr "显示速度颜色" msgid "Show Statistics" msgstr "显示统计数据" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "显示系统频率" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "显示台湾" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "在内存中显示目标(&Y)" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "显示美国" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "显示未知" @@ -11224,27 +11468,27 @@ msgstr "显示垂直消隐时间" msgid "Show VPS" msgstr "显示 VPS" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "显示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "显示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "显示全球" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "在内存中显示(&M)" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "在代码中显示" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "在内存中显示" @@ -11261,17 +11505,16 @@ msgstr "在内存中显示" msgid "Show in server browser" msgstr "在服务器浏览器中显示" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "在内存中显示目标(&Y)" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" msgstr "" +"显示 Dolphin 的调试用户界面。这可让您查看并修改游戏的代码和内存数据、设置调试" +"断点、检查网络请求等。

如无法确定,请不要选中此项。" +"" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:283 msgid "" @@ -11296,6 +11539,8 @@ msgid "" "disappear after several seconds.

If unsure, leave " "this checked." msgstr "" +"在渲染窗口上显示屏幕显示消息。这些消息会在几秒后消失。" +"

如无法确定,请选中此项。" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:282 #, c-format @@ -11306,23 +11551,13 @@ msgstr "" "显示与全速相对的百分比模拟速度。

如无法确定,请不要" "选中此项。" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." "

If unsure, leave this checked." msgstr "" +"在渲染窗口的标题栏中显示当前的游戏名称。

如无法确" +"定,请选中此项。" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:266 msgid "" @@ -11342,6 +11577,22 @@ msgstr "" "以毫秒显示每个渲染帧与标准差之间的平均时间。

如无法" "确定,请不要选中此项。" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" +"始终显示鼠标光标。

如无法确定,请选择"移动时" +""。" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" +"每当鼠标光标移动时,会短暂显示,然后隐藏。

如无法确" +"定,请选择此模式。" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -11384,6 +11635,17 @@ msgstr "" "显示各种渲染统计数据。

如无法确定,请不要选中此项。" "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" +"在您的 Discord 状态中显示哪个游戏处于活动状态以及当前游戏运行的持续时间。" +"

模拟处于活动状态时无法更改此设置。

如无法确" +"定,请选中此项。" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "左右" @@ -11400,7 +11662,7 @@ msgstr "切换横握" msgid "Sideways Wii Remote" msgstr "横握 Wii 遥控器" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "签名数据库" @@ -11447,7 +11709,7 @@ msgid "" "crackling." msgstr "伸缩缓冲区的大小,以毫秒计。数值过低可能导致噼啪声。" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "跳过" @@ -11637,6 +11899,10 @@ msgstr "" msgid "Speed" msgstr "速度" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "速度限制" + #. 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:262 @@ -11673,11 +11939,11 @@ msgstr "开始分支监视" msgid "Start New Cheat Search" msgstr "开始新的金手指搜索" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "开始录制输入(&C)" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "开始录制" @@ -11716,39 +11982,39 @@ msgstr "单步" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "跳入" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "单步跳出" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "单步跳过" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "跳出成功!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "跳出超时!" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "跳过正在处理..." -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "单步成功!" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "步进" @@ -11757,7 +12023,7 @@ msgstr "步进" msgid "Stereo" msgstr "立体声" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "立体 3D 模式" @@ -11787,7 +12053,7 @@ msgstr "摇杆" msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "停止播放/录制输入" @@ -11862,14 +12128,14 @@ msgstr "样式:" msgid "Stylus" msgstr "手写笔" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "成功" @@ -11896,24 +12162,24 @@ msgstr "在 %1 个存档文件中 %n 个导出成功。" msgid "Successfully exported save files" msgstr "成功导出存档文件" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "已成功从 NAND 中提取证书" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "提取文件成功。" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "提取系统数据成功。" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "导入存档文件成功。" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "成功将此软件安装到 NAND。" @@ -11964,7 +12230,7 @@ msgstr "交换力量" msgid "Swapper" msgstr "交换者" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11991,17 +12257,21 @@ msgstr "转换到 B" msgid "Symbol" msgstr "符号" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" -msgstr "符号 (%1) 终止地址:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" +msgstr "符号终止地址 (%1):" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "符号名:" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "符号大小 (%1):" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "符号" @@ -12051,7 +12321,7 @@ msgstr "正在同步存档数据..." msgid "System Language:" msgstr "系统语言:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "TAS 输入" @@ -12062,9 +12332,9 @@ msgid "TAS Tools" msgstr "TAS 工具" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "标签" @@ -12082,7 +12352,7 @@ msgstr "尾" msgid "Taiwan" msgstr "台湾" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "屏幕截图" @@ -12090,7 +12360,7 @@ msgstr "屏幕截图" msgid "Target address range is invalid." msgstr "目标地址范围无效。" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -12127,7 +12397,7 @@ msgstr "纹理缓存精度" msgid "Texture Dumping" msgstr "转储纹理" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "纹理过滤" @@ -12176,13 +12446,13 @@ msgstr "此 IPL 文件不是已知的正确转储。(CRC32: {0:x})" msgid "The Masterpiece partitions are missing." msgstr "缺少杰作分区。" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "该 NAND 无法修复。建议备份您当前的数据并使用新的 NAND 启动。" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "NAND 已修复。" @@ -12356,7 +12626,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "文件系统无效或无法读取。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -12497,7 +12767,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "同一文件不能在多个插槽中使用;其已被 %1 占用。" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "同一文件夹不能在多个插槽中使用;其已被 %1 占用。" @@ -12534,7 +12804,7 @@ msgstr "指定的公用密钥索引是 {0} ,但应该为 {1} 。" msgid "The specified file \"{0}\" does not exist" msgstr "指定的文件 “{0}” 不存在" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -12594,7 +12864,7 @@ msgstr "缺少更新分区。" msgid "The update partition is not at its normal position." msgstr "更新分区未处于正常位置。" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12712,7 +12982,7 @@ msgstr "" "请运行 Dolphin 的 ARM64 版本以获得更好的体验。" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "不能被撤销!" @@ -12936,7 +13206,7 @@ msgstr "线程" msgid "Threshold" msgstr "阈值" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "TiB" @@ -12955,10 +13225,10 @@ msgstr "触发校准的稳定输入时间段。(0 为禁用)" msgid "Timed Out" msgstr "超时" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "标题" @@ -12966,25 +13236,29 @@ msgstr "标题" msgid "To" msgstr "至" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "至:" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "切换全屏(&F)" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "切换色差 3D" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "切换左右 3D" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "切换上下 3D" @@ -12992,28 +13266,28 @@ msgstr "切换上下 3D" msgid "Toggle All Log Types" msgstr "全选/反选所有日志类型" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "切换宽高比" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "切换断点" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "切换画面边界" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "切换自定义纹理" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "切换 EFB 副本" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "切换雾" @@ -13025,31 +13299,31 @@ msgstr "切换全屏" msgid "Toggle Pause" msgstr "切换暂停" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "切换 SD 卡" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "切换跳过 EFB 访问" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "切换纹理转储" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "切换 USB 键盘" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "切换 XFB 副本" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "切换 XFB 立即模式" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "标记化失败。" @@ -13170,7 +13444,7 @@ msgid "Trophy" msgstr "奖杯" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -13200,7 +13474,7 @@ msgstr "USB 设备模拟" msgid "USB Emulation" msgstr "USB 模拟" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "USB 模拟设备" @@ -13247,15 +13521,15 @@ msgstr "" "

在理想情况下将在消除着色器编译卡顿的同时尽可能减小性能影响,但效果因" "视频驱动的行为而异。" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "无法自动检测 RSO 模块" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "无法连接更新服务器。" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "无法创建更新程序副本。" @@ -13294,7 +13568,7 @@ msgstr "" msgid "Unable to read file." msgstr "无法读取文件。" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "无法设置更新程序副本的权限。" @@ -13317,11 +13591,11 @@ msgstr "未压缩的 GC/Wii 镜像 (*.iso *.gcm)" msgid "Undead" msgstr "亡灵" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "撤销载入状态" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "撤销保存状态" @@ -13341,7 +13615,7 @@ msgstr "" "卸载 WAD 会将该游戏的当前已安装版本从 NAND 中移除,而不会删除其存档。是否继" "续?" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "美国" @@ -13437,11 +13711,11 @@ msgstr "Unknown(%1 %2).sky" msgid "Unknown(%1).bin" msgstr "Unknown(%1).bin" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "无限制" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "卸载 ROM" @@ -13449,7 +13723,12 @@ msgstr "卸载 ROM" msgid "Unlock Cursor" msgstr "解锁光标" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "已解锁" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "解锁于 %1" @@ -13549,7 +13828,7 @@ msgstr "切换竖握" msgid "Upright Wii Remote" msgstr "竖握 Wii 遥控器" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "使用情况统计报告设置" @@ -13586,6 +13865,8 @@ msgid "" "Use RetroAchievements rich presence in your Discord status.

Show " "Current Game on Discord must be enabled." msgstr "" +"在您的 Discord 状态中使用 RetroAchievements 详细信息。

必须启用在 " +"Discord 上显示当前游戏。" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:411 msgid "" @@ -13651,10 +13932,12 @@ msgstr "用户名" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" +"在游戏列表标题列中使用 Dolphin 数据库中格式正确的名称。" +"

如无法确定,请选中此项。" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:274 msgid "" @@ -13729,7 +14012,7 @@ msgstr "跳过垂直消隐中断" msgid "Value" msgstr "值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "值跟踪到当前指令。" @@ -13817,22 +14100,22 @@ msgstr "虚拟接口" msgid "Virtual address space" msgstr "虚拟地址空间" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "音量" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "减小音量" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "静音切换" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "增大音量" @@ -13840,7 +14123,7 @@ msgstr "增大音量" msgid "Vulkan" msgstr "Vulkan" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "WAD 文件 (*.wad)" @@ -13957,7 +14240,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -14100,7 +14383,7 @@ msgstr "USB 直通设备白名单" msgid "Widescreen Hack" msgstr "宽屏修正" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -14170,7 +14453,7 @@ msgstr "Wii 和 Wii 遥控器" msgid "Wii data is not public yet" msgstr "Wii 数据尚未公开" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "Wii 存档文件 (*.bin);; 所有文件 (*)" @@ -14205,11 +14488,11 @@ msgstr "全球" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "写入" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "写入 JIT 区块日志转储" @@ -14370,7 +14653,7 @@ msgstr "" "你正在配置“键盘控制器”。此设备为《梦幻之星 Online Episode I & II》专用。如无" "法确定,请返回并配置“标准控制器”。" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "您正在运行此更新通道上提供的最新版本。" @@ -14455,7 +14738,7 @@ msgstr "" "您想现在停下来修复此问题吗?\n" "如果选择“否”,音频可能会嘈杂混乱。" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index 87594fdadf..9cb0d19c87 100644 --- a/Languages/po/zh_TW.po +++ b/Languages/po/zh_TW.po @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-02 08:02+0200\n" +"POT-Creation-Date: 2024-08-20 22:04+0200\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Narusawa Yui , 2016,2018\n" -"Language-Team: Chinese (Taiwan) (http://app.transifex.com/delroth/dolphin-" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/dolphinemu/dolphin-" "emu/language/zh_TW/)\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -166,7 +166,7 @@ msgstr "" msgid "%1 doesn't support this feature on your system." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:296 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:316 msgid "%1 doesn't support this feature." msgstr "" @@ -185,7 +185,7 @@ msgstr "" msgid "%1 has left" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:111 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" msgstr "" @@ -197,7 +197,7 @@ msgstr "" msgid "%1 is now golfing" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:110 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" msgstr "" @@ -211,7 +211,7 @@ msgid "%1 ms" msgstr "%1 ms" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:40 -#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:128 +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:146 msgid "%1 points" msgstr "" @@ -231,22 +231,22 @@ msgstr "" msgid "%1% (%2 MHz)" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:174 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:641 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:643 msgid "%1's value is changed" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:637 msgid "%1's value is hit" msgstr "" -#. i18n: One of the options shown below "Run until (ignoring breakpoints)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:638 +#. i18n: One of the options shown below "Run Until (Ignoring Breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:640 msgid "%1's value is used" msgstr "" @@ -254,6 +254,10 @@ msgstr "" msgid "%1, %2, %3, %4" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 +msgid "%1/%2" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" msgstr "" @@ -274,7 +278,7 @@ msgstr "%1[%2]: %3 %" msgid "%1[%2]: %3/%4 MiB" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:332 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:352 #, c-format msgid "%1x MSAA" msgstr "" @@ -287,7 +291,7 @@ msgstr "" msgid "%1x Native (%2x%3) for %4" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:344 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:364 #, c-format msgid "%1x SSAA" msgstr "" @@ -331,10 +335,14 @@ msgstr "" msgid "&4x" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:646 +#: Source/Core/DolphinQt/MenuBar.cpp:647 msgid "&About" msgstr "關於(&A)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 +msgid "&Add Function" +msgstr "" + #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:361 msgid "&Add Memory Breakpoint" msgstr "" @@ -344,23 +352,19 @@ msgstr "" msgid "&Add New Code..." msgstr "新增代碼 (&A)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 -msgid "&Add function" -msgstr "新增功能 (&A)" - #: Source/Core/DolphinQt/Config/PatchesWidget.cpp:48 msgid "&Add..." msgstr "新增... (&A)" -#: Source/Core/DolphinQt/MenuBar.cpp:534 +#: Source/Core/DolphinQt/MenuBar.cpp:535 msgid "&Assembler" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:579 +#: Source/Core/DolphinQt/MenuBar.cpp:580 msgid "&Audio Settings" msgstr "聲音設定 (&A)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 msgid "&Auto Update:" msgstr "自動更新 (&A)" @@ -369,14 +373,14 @@ msgid "&Borderless Window" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1045 -msgid "&Break On Hit" +msgid "&Break on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:503 +#: Source/Core/DolphinQt/MenuBar.cpp:504 msgid "&Breakpoints" msgstr "中斷點(&B)" -#: Source/Core/DolphinQt/MenuBar.cpp:629 +#: Source/Core/DolphinQt/MenuBar.cpp:630 msgid "&Bug Tracker" msgstr "" @@ -388,11 +392,11 @@ msgstr "取消 (&C)" msgid "&Cheats Manager" msgstr "作弊碼管理器 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:639 +#: Source/Core/DolphinQt/MenuBar.cpp:640 msgid "&Check for Updates..." msgstr "檢查更新 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:1022 +#: Source/Core/DolphinQt/MenuBar.cpp:1023 msgid "&Clear Symbols" msgstr "" @@ -400,7 +404,7 @@ msgstr "" msgid "&Clone..." msgstr "相容版 (&C)" -#: Source/Core/DolphinQt/MenuBar.cpp:468 +#: Source/Core/DolphinQt/MenuBar.cpp:469 msgid "&Code" msgstr "代碼 (&C)" @@ -408,18 +412,15 @@ msgstr "代碼 (&C)" msgid "&Connected" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:581 +#: Source/Core/DolphinQt/MenuBar.cpp:582 msgid "&Controller Settings" msgstr "控制器設定(&C)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1040 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 msgid "&Copy Address" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575 -msgid "&Copy address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." msgstr "" @@ -455,7 +456,7 @@ msgstr "編輯 (&E)" msgid "&Eject Disc" msgstr "退出碟片 (&E)" -#: Source/Core/DolphinQt/MenuBar.cpp:346 +#: Source/Core/DolphinQt/MenuBar.cpp:343 msgid "&Emulation" msgstr "模擬 (&E)" @@ -480,36 +481,36 @@ msgstr "" msgid "&File" msgstr "檔案 (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:601 +#: Source/Core/DolphinQt/MenuBar.cpp:602 msgid "&Font..." msgstr "字體... (&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:352 +#: Source/Core/DolphinQt/MenuBar.cpp:349 msgid "&Frame Advance" msgstr "畫格步進(&F)" -#: Source/Core/DolphinQt/MenuBar.cpp:583 +#: Source/Core/DolphinQt/MenuBar.cpp:584 msgid "&Free Look Settings" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1024 +#: Source/Core/DolphinQt/MenuBar.cpp:1025 msgid "&Generate Symbols From" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:625 +#: Source/Core/DolphinQt/MenuBar.cpp:626 msgid "&GitHub Repository" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:578 +#: Source/Core/DolphinQt/MenuBar.cpp:579 msgid "&Graphics Settings" msgstr "影像設定(&G)" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:312 -#: Source/Core/DolphinQt/MenuBar.cpp:616 +#: Source/Core/DolphinQt/MenuBar.cpp:617 msgid "&Help" msgstr "說明(&H)" -#: Source/Core/DolphinQt/MenuBar.cpp:582 +#: Source/Core/DolphinQt/MenuBar.cpp:583 msgid "&Hotkey Settings" msgstr "快捷鍵設定(&D)" @@ -533,15 +534,15 @@ msgstr "匯入... (&I)" msgid "&Infinity Base" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601 -msgid "&Insert blr" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:603 +msgid "&Insert BLR" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:457 msgid "&Interframe Blending" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:528 +#: Source/Core/DolphinQt/MenuBar.cpp:529 msgid "&JIT" msgstr "&JIT" @@ -553,11 +554,11 @@ msgstr "語言 (&L)" msgid "&Load Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:369 +#: Source/Core/DolphinQt/MenuBar.cpp:366 msgid "&Load State" msgstr "讀取進度(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:1030 +#: Source/Core/DolphinQt/MenuBar.cpp:1031 msgid "&Load Symbol Map" msgstr "" @@ -571,19 +572,19 @@ msgstr "" msgid "&Lock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:460 +#: Source/Core/DolphinQt/MenuBar.cpp:461 msgid "&Lock Widgets In Place" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1046 -msgid "&Log On Hit" +msgid "&Log on Hit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:512 +#: Source/Core/DolphinQt/MenuBar.cpp:513 msgid "&Memory" msgstr "記憶卡(&M)" -#: Source/Core/DolphinQt/MenuBar.cpp:775 +#: Source/Core/DolphinQt/MenuBar.cpp:776 msgid "&Movie" msgstr "影片(&M)" @@ -591,7 +592,7 @@ msgstr "影片(&M)" msgid "&Mute" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:520 +#: Source/Core/DolphinQt/MenuBar.cpp:521 msgid "&Network" msgstr "" @@ -604,19 +605,19 @@ msgstr "" msgid "&Open..." msgstr "開啟(&O)..." -#: Source/Core/DolphinQt/MenuBar.cpp:569 +#: Source/Core/DolphinQt/MenuBar.cpp:570 msgid "&Options" msgstr "選項(&O)" -#: Source/Core/DolphinQt/MenuBar.cpp:1050 +#: Source/Core/DolphinQt/MenuBar.cpp:1051 msgid "&Patch HLE Functions" msgstr "修正 HLE 功能 (&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:348 +#: Source/Core/DolphinQt/MenuBar.cpp:345 msgid "&Pause" msgstr "暫停(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:347 +#: Source/Core/DolphinQt/MenuBar.cpp:344 msgid "&Play" msgstr "執行(&P)" @@ -624,7 +625,7 @@ msgstr "執行(&P)" msgid "&Properties" msgstr "屬性(&P)" -#: Source/Core/DolphinQt/MenuBar.cpp:790 +#: Source/Core/DolphinQt/MenuBar.cpp:791 msgid "&Read-Only Mode" msgstr "唯讀模式(&R)" @@ -632,7 +633,7 @@ msgstr "唯讀模式(&R)" msgid "&Refresh List" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:476 +#: Source/Core/DolphinQt/MenuBar.cpp:477 msgid "&Registers" msgstr "寄存器(&R)" @@ -645,12 +646,12 @@ msgstr "移除 (&R)" msgid "&Remove Code" msgstr "移除代碼 (&R)" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:590 -msgid "&Rename symbol" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 +msgid "&Rename Symbol" msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:410 -#: Source/Core/DolphinQt/MenuBar.cpp:350 +#: Source/Core/DolphinQt/MenuBar.cpp:347 msgid "&Reset" msgstr "重新啟動(&R)" @@ -662,7 +663,7 @@ msgstr "" msgid "&Save Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1031 +#: Source/Core/DolphinQt/MenuBar.cpp:1032 msgid "&Save Symbol Map" msgstr "" @@ -674,11 +675,11 @@ msgstr "" msgid "&Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:179 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:182 msgid "&Speed Limit:" msgstr "限制速度 (&S)" -#: Source/Core/DolphinQt/MenuBar.cpp:349 +#: Source/Core/DolphinQt/MenuBar.cpp:346 msgid "&Stop" msgstr "停止(&S)" @@ -686,7 +687,7 @@ msgstr "停止(&S)" msgid "&Theme:" msgstr "主題 (&T)" -#: Source/Core/DolphinQt/MenuBar.cpp:485 +#: Source/Core/DolphinQt/MenuBar.cpp:486 msgid "&Threads" msgstr "" @@ -708,17 +709,17 @@ msgstr "" msgid "&Unlock Watches" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:434 +#: Source/Core/DolphinQt/MenuBar.cpp:435 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:495 +#: Source/Core/DolphinQt/MenuBar.cpp:496 msgid "&Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:618 +#: Source/Core/DolphinQt/MenuBar.cpp:619 msgid "&Website" msgstr "網站(&W)" @@ -730,11 +731,11 @@ msgstr "&Wiki" msgid "&Yes" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1339 msgid "'%1' not found, no symbol names generated" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1563 +#: Source/Core/DolphinQt/MenuBar.cpp:1564 msgid "'%1' not found, scanning for common functions instead" msgstr "" @@ -754,7 +755,7 @@ msgstr "" msgid "(host)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:270 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:277 msgid "(off)" msgstr "(關閉)" @@ -778,7 +779,7 @@ msgstr "" msgid "- Subtract" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:378 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:379 msgid "--> %1" msgstr "" @@ -856,7 +857,7 @@ msgstr "" msgid "16x Anisotropic" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:193 +#: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" msgstr "" @@ -868,7 +869,7 @@ msgstr "" msgid "256 MiB" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:194 +#: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" msgstr "" @@ -904,19 +905,19 @@ msgid "32-bit Unsigned Integer" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:350 +#: Source/Core/Core/HotkeyManager.cpp:357 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455 msgid "3D" msgstr "" #. i18n: Stereoscopic 3D -#: Source/Core/Core/HotkeyManager.cpp:352 +#: Source/Core/Core/HotkeyManager.cpp:359 #: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:25 msgid "3D Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:195 +#: Source/Core/Core/HotkeyManager.cpp:198 msgid "3x" msgstr "" @@ -940,7 +941,7 @@ msgstr "" msgid "4K" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:196 +#: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" msgstr "" @@ -1037,7 +1038,7 @@ msgstr "" msgid "If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:709 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:711 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295 msgid "" "AutoStepping timed out. Current instruction is " @@ -1067,8 +1068,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1549 -#: Source/Core/DolphinQt/MainWindow.cpp:1616 +#: Source/Core/DolphinQt/MainWindow.cpp:1562 +#: Source/Core/DolphinQt/MainWindow.cpp:1629 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1086,7 +1087,7 @@ msgstr "" msgid "A disc is already about to be inserted." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:548 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568 msgid "" "A group of features to make the colors more accurate, matching the color " "space Wii and GC games were meant for." @@ -1096,7 +1097,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:953 +#: Source/Core/DolphinQt/MainWindow.cpp:966 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1180,7 +1181,7 @@ msgid "Achievement Settings" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:27 -#: Source/Core/DolphinQt/MenuBar.cpp:272 +#: Source/Core/DolphinQt/MenuBar.cpp:270 msgid "Achievements" msgstr "" @@ -1256,7 +1257,7 @@ msgstr "" msgid "Activate NetPlay Chat" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Active" msgstr "" @@ -1307,11 +1308,11 @@ msgstr "" msgid "Add Shortcut to Desktop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:77 +#: Source/Core/Core/HotkeyManager.cpp:80 msgid "Add a Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:78 +#: Source/Core/Core/HotkeyManager.cpp:81 msgid "Add a Memory Breakpoint" msgstr "" @@ -1345,13 +1346,13 @@ 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:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:83 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91 -#: Source/Core/DolphinQt/MenuBar.cpp:1025 +#: Source/Core/DolphinQt/MenuBar.cpp:1026 msgid "Address" msgstr "位址" @@ -1370,7 +1371,7 @@ msgstr "" msgid "Address:" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:510 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:530 msgid "" "Adjust the texture filtering. Anisotropic filtering enhances the visual " "quality of textures that are at oblique viewing angles. Force Nearest and " @@ -1430,7 +1431,7 @@ msgstr "進階" msgid "Advanced Settings" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:537 msgid "" "Affects how the game output is scaled to the window resolution.
The " "performance mostly depends on the number of samples each method uses." @@ -1486,7 +1487,7 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:363 #: Source/Core/DolphinQt/GCMemcardManager.cpp:440 #: Source/Core/DolphinQt/GCMemcardManager.cpp:591 -#: Source/Core/DolphinQt/MainWindow.cpp:780 +#: Source/Core/DolphinQt/MainWindow.cpp:793 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:139 #: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:345 #: Source/Core/DolphinQt/Settings/PathPane.cpp:51 @@ -1494,7 +1495,7 @@ msgid "All Files" msgstr "" #: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 msgid "All Files (*)" msgstr "" @@ -1503,7 +1504,7 @@ msgstr "" msgid "All Float" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:779 +#: Source/Core/DolphinQt/MainWindow.cpp:792 #: Source/Core/DolphinQt/Settings/PathPane.cpp:50 msgid "All GC/Wii files" msgstr "" @@ -1512,8 +1513,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1537,11 +1538,11 @@ msgstr "" msgid "All players' saves synchronized." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:151 msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1599,7 +1600,7 @@ msgstr "" msgid "Angular velocity to ignore and remap." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:622 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:642 msgid "Anti-Aliasing" msgstr "" @@ -1611,19 +1612,19 @@ msgstr "邊緣抗鋸齒:" msgid "Any Region" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1708 -msgid "Append signature to" +#: Source/Core/DolphinQt/MenuBar.cpp:1709 +msgid "Append Signature To" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1043 +#: Source/Core/DolphinQt/MenuBar.cpp:1044 msgid "Append to &Existing Signature File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1047 +#: Source/Core/DolphinQt/MenuBar.cpp:1048 msgid "Appl&y Signature File..." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:551 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 msgid "" "Applies a post-processing effect after rendering a frame.

If unsure, select (off)." @@ -1637,8 +1638,8 @@ msgstr "" msgid "Apply" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1731 -msgid "Apply signature file" +#: Source/Core/DolphinQt/MenuBar.cpp:1732 +msgid "Apply Signature File" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:159 @@ -1649,7 +1650,7 @@ msgstr "" msgid "Are you sure that you want to delete '%1'?" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:834 +#: Source/Core/DolphinQt/GameList/GameList.cpp:830 msgid "Are you sure you want to delete this file?" msgstr "" @@ -1686,8 +1687,8 @@ msgstr "畫面比例:" msgid "Assemble" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 -msgid "Assemble instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 +msgid "Assemble Instruction" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:234 @@ -1748,7 +1749,11 @@ msgstr "自動" msgid "Auto (Multiple of 640x528)" msgstr "自動 (640x528 的倍數)" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:184 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:460 +msgid "Auto Update" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:187 msgid "Auto Update Settings" msgstr "" @@ -1768,7 +1773,7 @@ msgstr "" msgid "Auto-Hide" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "Auto-detect RSO modules?" msgstr "" @@ -1782,6 +1787,17 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:389 +msgid "" +"Automatically changes the game disc when requested by games with two discs. " +"This feature requires the game to be launched in one of the following ways:" +"
- From the game list, with both discs being present in the game list." +"
- With File > Open or the command line interface, with the paths to both " +"discs being provided.
- By launching an M3U file with File > Open or the " +"command line interface.

If unsure, leave this " +"unchecked." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:246 msgid "Automatically update Current Values" msgstr "" @@ -1793,7 +1809,7 @@ msgid "Auxiliary" msgstr "" #. i18n: The symbol for the unit "bytes" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "B" msgstr "" @@ -1876,10 +1892,10 @@ msgstr "" msgid "Bad value provided." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 +#: Source/Core/DolphinQt/GameList/GameList.cpp:996 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:218 #: Source/Core/DolphinQt/GCMemcardManager.cpp:152 -#: Source/Core/DolphinQt/MenuBar.cpp:673 +#: Source/Core/DolphinQt/MenuBar.cpp:674 msgid "Banner" msgstr "橫幅" @@ -1907,7 +1923,7 @@ msgstr "" msgid "Basic" msgstr "基本" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:138 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139 msgid "Basic Settings" msgstr "基本設定" @@ -1967,9 +1983,9 @@ msgid "" "Try again with a different character." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1010 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:232 -#: Source/Core/DolphinQt/MenuBar.cpp:683 +#: Source/Core/DolphinQt/MenuBar.cpp:684 msgid "Block Size" msgstr "" @@ -2005,15 +2021,15 @@ msgid "" "Passthrough mode cannot be used." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:588 +#: Source/Core/DolphinQt/MenuBar.cpp:589 msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1811 +#: Source/Core/DolphinQt/MainWindow.cpp:1824 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1837 +#: Source/Core/DolphinQt/MainWindow.cpp:1850 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2141,30 +2157,30 @@ msgstr "" msgid "Branch: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:163 msgid "Branches" msgstr "" #. i18n: This is a selectable action when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:143 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Break" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1049 -msgid "Break &And Log On Hit" +msgid "Break &and Log on Hit" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:347 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:26 msgid "Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:567 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:561 msgid "Breakpoint encountered! Step out aborted." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:95 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:96 msgid "Breakpoints" msgstr "" @@ -2260,7 +2276,7 @@ msgstr "" msgid "C Stick" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1042 +#: Source/Core/DolphinQt/MenuBar.cpp:1043 msgid "C&reate Signature File..." msgstr "" @@ -2295,7 +2311,7 @@ msgstr "" msgid "Calculate" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:579 msgid "" "Calculates lighting of 3D objects per-pixel rather than per-vertex, " "smoothing out the appearance of lit polygons and making individual triangles " @@ -2357,14 +2373,14 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1542 -#: Source/Core/DolphinQt/MainWindow.cpp:1609 +#: Source/Core/DolphinQt/MainWindow.cpp:1555 +#: Source/Core/DolphinQt/MainWindow.cpp:1622 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:159 -#: Source/Core/DolphinQt/MenuBar.cpp:1381 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 #: Source/Core/DolphinQt/NKitWarningDialog.cpp:62 #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:281 @@ -2413,7 +2429,7 @@ msgstr "" msgid "Cannot refresh without results." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 msgid "Cannot set GCI folder to an empty path." msgstr "" @@ -2461,7 +2477,7 @@ msgstr "更換光碟(&D)..." msgid "Change Disc" msgstr "更換光碟" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:155 msgid "Change Discs Automatically" msgstr "" @@ -2521,7 +2537,7 @@ msgstr "尋找作弊代碼" msgid "Cheats Manager" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:297 +#: Source/Core/DolphinQt/MenuBar.cpp:294 msgid "Check NAND..." msgstr "" @@ -2533,7 +2549,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:860 +#: Source/Core/DolphinQt/GameList/GameList.cpp:856 msgid "" "Check whether you have the permissions required to delete the file or " "whether it's still in use." @@ -2551,29 +2567,29 @@ msgstr "" msgid "Choose" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 -msgid "Choose a file to open" -msgstr "選擇一個要開啟的檔案" - -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 -msgid "Choose a file to open or create" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1751 -msgid "Choose priority input file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1756 -msgid "Choose secondary input file" +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216 +msgid "Choose Folder to Extract To" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 -msgid "Choose the GCI base folder" +msgid "Choose GCI Base Folder" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217 -msgid "Choose the folder to extract to" -msgstr "選擇提取的資料夾存放位置" +#: Source/Core/DolphinQt/MenuBar.cpp:1752 +msgid "Choose Priority Input File" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1757 +msgid "Choose Secondary Input File" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:647 +msgid "Choose a File to Open" +msgstr "" + +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:437 +msgid "Choose a File to Open or Create" +msgstr "" #. i18n: Refers to emulated wii remote movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:39 @@ -2592,7 +2608,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:136 #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:172 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:114 msgid "Clear" @@ -2602,7 +2618,7 @@ msgstr "清除" msgid "Clear Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:904 +#: Source/Core/DolphinQt/MenuBar.cpp:905 msgid "Clear Cache" msgstr "" @@ -2623,7 +2639,7 @@ msgstr "" msgid "Close" msgstr "關閉" -#: Source/Core/DolphinQt/MenuBar.cpp:571 Source/Core/DolphinQt/MenuBar.cpp:574 +#: Source/Core/DolphinQt/MenuBar.cpp:572 Source/Core/DolphinQt/MenuBar.cpp:575 msgid "Co&nfiguration" msgstr "" @@ -2647,7 +2663,7 @@ msgstr "" msgid "Codes received!" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:631 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651 msgid "Color Correction" msgstr "" @@ -2667,7 +2683,7 @@ msgstr "" msgid "Column &Visibility" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1045 +#: Source/Core/DolphinQt/MenuBar.cpp:1046 msgid "Combine &Two Signature Files..." msgstr "" @@ -2702,9 +2718,9 @@ msgstr "" msgid "Compiling Shaders" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1011 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:234 -#: Source/Core/DolphinQt/MenuBar.cpp:684 +#: Source/Core/DolphinQt/MenuBar.cpp:685 msgid "Compression" msgstr "" @@ -2729,7 +2745,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:460 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159 #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Condition" msgstr "" @@ -2836,9 +2852,9 @@ msgstr "設定輸出" #: Source/Core/DolphinQt/ConvertDialog.cpp:283 #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 -#: Source/Core/DolphinQt/GameList/GameList.cpp:833 -#: Source/Core/DolphinQt/MainWindow.cpp:952 -#: Source/Core/DolphinQt/MainWindow.cpp:1747 +#: Source/Core/DolphinQt/GameList/GameList.cpp:829 +#: Source/Core/DolphinQt/MainWindow.cpp:965 +#: Source/Core/DolphinQt/MainWindow.cpp:1760 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" @@ -2851,7 +2867,7 @@ msgstr "" msgid "Confirm on Stop" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1291 +#: Source/Core/DolphinQt/MenuBar.cpp:1292 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499 #: Source/Core/DolphinQt/ResourcePackManager.cpp:240 msgid "Confirmation" @@ -2862,7 +2878,7 @@ msgstr "" msgid "Connect" msgstr "連接" -#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:340 +#: Source/Core/Core/HotkeyManager.cpp:88 Source/Core/DolphinQt/MenuBar.cpp:337 msgid "Connect Balance Board" msgstr "連接平衡板" @@ -2870,27 +2886,27 @@ msgstr "連接平衡板" msgid "Connect USB Keyboard" msgstr "連接 USB 鍵盤" -#: Source/Core/DolphinQt/MenuBar.cpp:332 +#: Source/Core/DolphinQt/MenuBar.cpp:329 msgid "Connect Wii Remote %1" msgstr "連接 Wii Remote %1" -#: Source/Core/Core/HotkeyManager.cpp:81 +#: Source/Core/Core/HotkeyManager.cpp:84 msgid "Connect Wii Remote 1" msgstr "連接 Wii Remote 1" -#: Source/Core/Core/HotkeyManager.cpp:82 +#: Source/Core/Core/HotkeyManager.cpp:85 msgid "Connect Wii Remote 2" msgstr "連接 Wii Remote 2" -#: Source/Core/Core/HotkeyManager.cpp:83 +#: Source/Core/Core/HotkeyManager.cpp:86 msgid "Connect Wii Remote 3" msgstr "連接 Wii Remote 3" -#: Source/Core/Core/HotkeyManager.cpp:84 +#: Source/Core/Core/HotkeyManager.cpp:87 msgid "Connect Wii Remote 4" msgstr "連接 Wii Remote 4" -#: Source/Core/DolphinQt/MenuBar.cpp:325 +#: Source/Core/DolphinQt/MenuBar.cpp:322 msgid "Connect Wii Remotes" msgstr "連接 Wii Remote" @@ -2935,19 +2951,19 @@ msgstr "" msgid "Controller Profile" msgstr "控制器設定檔" -#: Source/Core/Core/HotkeyManager.cpp:342 +#: Source/Core/Core/HotkeyManager.cpp:349 msgid "Controller Profile 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:343 +#: Source/Core/Core/HotkeyManager.cpp:350 msgid "Controller Profile 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:344 +#: Source/Core/Core/HotkeyManager.cpp:351 msgid "Controller Profile 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:345 +#: Source/Core/Core/HotkeyManager.cpp:352 msgid "Controller Profile 4" msgstr "" @@ -2959,6 +2975,16 @@ msgstr "控制器設定" msgid "Controllers" msgstr "控制器" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:404 +msgid "" +"Controls how fast emulation runs relative to the original hardware." +"

Values higher than 100% will emulate faster than the original " +"hardware can run, if your hardware is able to keep up. Values lower than " +"100% will slow emulation instead. Unlimited will emulate as fast as your " +"hardware is able to.

If unsure, select 100%." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51 msgid "" "Controls the base luminance of a paper white surface in nits. Useful for " @@ -2967,7 +2993,7 @@ msgid "" "

If unsure, leave this at 203." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:586 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:606 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 " @@ -2975,7 +3001,7 @@ msgid "" "more comfortable." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:497 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:517 msgid "" "Controls the rendering resolution.

A high resolution greatly improves " "visual quality, but also greatly increases GPU load and can cause issues in " @@ -2984,7 +3010,7 @@ msgid "" "Native.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:583 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:603 msgid "" "Controls the separation distance between the virtual cameras.

A " "higher value creates a stronger feeling of depth while a lower value is more " @@ -3009,7 +3035,7 @@ msgid "" "True" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:659 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:679 msgid "Convergence" msgstr "" @@ -3096,18 +3122,22 @@ msgstr "" msgid "Copy" msgstr "複製" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577 -msgid "Copy &function" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 +msgid "Copy &Function" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 -msgid "Copy &hex" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 +msgid "Copy &Hex" msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:881 msgid "Copy Address" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581 +msgid "Copy Code &Line" +msgstr "" + #: Source/Core/DolphinQt/GCMemcardManager.cpp:641 msgid "Copy Failed" msgstr "" @@ -3116,18 +3146,14 @@ msgstr "" msgid "Copy Hex" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588 +msgid "Copy Tar&get Sddress" +msgstr "" + #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:886 msgid "Copy Value" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579 -msgid "Copy code &line" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 -msgid "Copy tar&get address" -msgstr "" - #: Source/Core/DolphinQt/GCMemcardManager.cpp:244 msgid "Copy to A" msgstr "" @@ -3233,8 +3259,8 @@ msgstr "" msgid "Could not save your changes!" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:303 -#: Source/Core/UICommon/AutoUpdate.cpp:309 +#: Source/Core/UICommon/AutoUpdate.cpp:307 +#: Source/Core/UICommon/AutoUpdate.cpp:313 msgid "Could not start updater process: {0}" msgstr "" @@ -3330,7 +3356,7 @@ msgid "" "leave this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:307 +#: Source/Core/DolphinQt/MenuBar.cpp:304 msgid "Current Region" msgstr "" @@ -3518,24 +3544,24 @@ msgstr "" msgid "Decrease" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:128 +#: Source/Core/Core/HotkeyManager.cpp:131 msgid "Decrease Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:126 +#: Source/Core/Core/HotkeyManager.cpp:129 msgid "Decrease Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:46 +#: Source/Core/Core/HotkeyManager.cpp:49 msgid "Decrease Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:119 +#: Source/Core/Core/HotkeyManager.cpp:122 msgid "Decrease IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:186 msgid "Decrease Selected State Slot" msgstr "" @@ -3591,8 +3617,8 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:529 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:546 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:533 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:550 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102 msgid "Delete" msgstr "刪除" @@ -3610,7 +3636,7 @@ msgstr "" msgid "Delete the existing file '{0}'?" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:656 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:676 msgid "Depth" msgstr "" @@ -3625,9 +3651,9 @@ msgstr "" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:619 #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:237 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/GameList/GameList.cpp:998 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:220 -#: Source/Core/DolphinQt/MenuBar.cpp:675 +#: Source/Core/DolphinQt/MenuBar.cpp:676 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Description" msgstr "描述" @@ -3676,7 +3702,7 @@ msgstr "" msgid "Detect" msgstr "檢測" -#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1383 msgid "Detecting RSO Modules" msgstr "" @@ -3684,7 +3710,7 @@ msgstr "" msgid "Deterministic dual core:" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Dev (multiple times a day)" msgstr "" @@ -3742,15 +3768,15 @@ msgstr "" msgid "Disable EFB VRAM Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:48 +#: Source/Core/Core/HotkeyManager.cpp:51 msgid "Disable Emulation Speed Limit" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:884 +#: Source/Core/DolphinQt/MenuBar.cpp:885 msgid "Disable Fastmem" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:890 +#: Source/Core/DolphinQt/MenuBar.cpp:891 msgid "Disable Fastmem Arena" msgstr "" @@ -3758,11 +3784,11 @@ msgstr "" msgid "Disable Fog" msgstr "關閉霧化" -#: Source/Core/DolphinQt/MenuBar.cpp:876 +#: Source/Core/DolphinQt/MenuBar.cpp:877 msgid "Disable JIT Cache" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:896 +#: Source/Core/DolphinQt/MenuBar.cpp:897 msgid "Disable Large Entry Points Map" msgstr "" @@ -3784,7 +3810,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:598 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:618 msgid "" "Disables the blending of adjacent rows when copying the EFB. This is known " "in some games as \"deflickering\" or \"smoothing\".

Disabling the " @@ -3807,7 +3833,8 @@ msgstr "光碟" msgid "Discard" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:122 +#. i18n: Settings that affect how achievements are displayed while playing. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:124 msgid "Display Settings" msgstr "" @@ -3837,15 +3864,15 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1748 +#: Source/Core/DolphinQt/MainWindow.cpp:1761 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1292 +#: Source/Core/DolphinQt/MenuBar.cpp:1293 msgid "Do you want to clear the list of symbol names?" msgstr "" @@ -3855,7 +3882,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:956 +#: Source/Core/DolphinQt/MainWindow.cpp:969 msgid "Do you want to stop the current emulation?" msgstr "您要停止目前的模擬嗎?" @@ -3876,9 +3903,9 @@ msgstr "" msgid "Dolphin Game Mod Preset" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1593 -#: Source/Core/DolphinQt/MenuBar.cpp:1610 -#: Source/Core/DolphinQt/MenuBar.cpp:1629 +#: Source/Core/DolphinQt/MenuBar.cpp:1594 +#: Source/Core/DolphinQt/MenuBar.cpp:1611 +#: Source/Core/DolphinQt/MenuBar.cpp:1630 msgid "Dolphin Map File (*.map)" msgstr "" @@ -3890,8 +3917,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS 影片 (*.dtm)" @@ -3938,12 +3965,6 @@ msgstr "" msgid "Dolphin is unable to verify unlicensed discs." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:220 -msgid "" -"Dolphin will use this for titles whose region cannot be determined " -"automatically." -msgstr "" - #: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:74 msgid "Dolphin's cheat system is currently disabled." msgstr "" @@ -3953,7 +3974,7 @@ msgstr "" msgid "Domain" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200 msgid "Don't Update" msgstr "" @@ -4010,11 +4031,11 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:336 msgid "" -"Downloads full game covers from GameTDB.com to display in the Game List's " -"Grid View. If this setting is unchecked the Game List displays a banner " -"generated from the game's save files, and if the game has no save file " -"displays a generic banner instead.

List View will always use the save " -"file banners.

If unsure, leave this checked.
List View will always use the save file " +"banners.

If unsure, leave this checked." msgstr "" @@ -4057,7 +4078,7 @@ msgstr "" msgid "Dump &MRAM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:845 +#: Source/Core/DolphinQt/MenuBar.cpp:846 msgid "Dump Audio" msgstr "轉儲聲音" @@ -4069,7 +4090,7 @@ msgstr "" msgid "Dump EFB Target" msgstr "轉儲 EFB 目標" -#: Source/Core/DolphinQt/MenuBar.cpp:839 +#: Source/Core/DolphinQt/MenuBar.cpp:840 msgid "Dump Frames" msgstr "轉儲畫格" @@ -4186,16 +4207,16 @@ msgstr "" msgid "Edit Breakpoint" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit Conditional" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:233 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:236 msgid "Edit conditional expression" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:528 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:545 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:532 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:549 msgid "Edit..." msgstr "" @@ -4219,7 +4240,7 @@ msgstr "" msgid "Effective priority" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "EiB" msgstr "" @@ -4282,7 +4303,7 @@ msgid "" "DFF: MEM1 {4:08X} ({5} MiB), MEM2 {6:08X} ({7} MiB)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:335 +#: Source/Core/Core/HotkeyManager.cpp:342 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26 msgid "Emulation Speed" msgstr "" @@ -4302,7 +4323,7 @@ msgstr "" msgid "Enable Audio Stretching" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:147 msgid "Enable Cheats" msgstr "開啟作弊" @@ -4326,9 +4347,9 @@ msgstr "" msgid "Enable Dual Core" msgstr "開啟雙核心" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143 -msgid "Enable Dual Core (speedup)" -msgstr "開啟雙核心 (加速)" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:144 +msgid "Enable Dual Core (speedhack)" +msgstr "" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:95 msgid "Enable Emulated CPU Clock Override" @@ -4372,7 +4393,7 @@ msgid "" "the game to be closed before re-enabling." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:915 +#: Source/Core/DolphinQt/MenuBar.cpp:916 msgid "Enable JIT Block Profiling" msgstr "" @@ -4414,7 +4435,7 @@ msgstr "" msgid "Enable Unofficial Achievements" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:234 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:235 msgid "Enable Usage Statistics Reporting" msgstr "" @@ -4490,7 +4511,7 @@ msgid "" "= Compatible, OFF = Fast)" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:624 msgid "" "Enables detection of arbitrary mipmaps, which some games use for special " "distance-based effects.

May have false positives that result in " @@ -4524,7 +4545,7 @@ msgid "" "this unchecked.
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:612 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:632 msgid "" "Enables scRGB HDR output (if supported by your graphics backend and " "monitor). Fullscreen might be required.

This gives post process " @@ -4568,6 +4589,15 @@ msgid "" "Read the Terms of Service at: https://www.wiilink24.com/tos" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:379 +msgid "" +"Enables the use of AR and Gecko cheat codes which can be used to modify " +"games' behavior. These codes can be configured with the Cheats Manager in " +"the Tools menu.

This setting cannot be changed while emulation is " +"active.

If unsure, leave this unchecked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:313 msgid "" "Enables validation of API calls made by the video backend, which may assist " @@ -4595,7 +4625,7 @@ msgid "" "Aborting import." msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "End Addr" msgstr "" @@ -4646,14 +4676,14 @@ msgid "" "to." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1353 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 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:263 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: 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:358 #: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:364 @@ -4692,26 +4722,26 @@ msgstr "" #: Source/Core/DolphinQt/GCMemcardManager.cpp:347 #: Source/Core/DolphinQt/GCMemcardManager.cpp:377 #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 -#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:306 -#: Source/Core/DolphinQt/MainWindow.cpp:314 -#: Source/Core/DolphinQt/MainWindow.cpp:1132 -#: Source/Core/DolphinQt/MainWindow.cpp:1541 -#: Source/Core/DolphinQt/MainWindow.cpp:1548 -#: Source/Core/DolphinQt/MainWindow.cpp:1608 -#: Source/Core/DolphinQt/MainWindow.cpp:1615 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 -#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1251 -#: Source/Core/DolphinQt/MenuBar.cpp:1337 -#: Source/Core/DolphinQt/MenuBar.cpp:1360 -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1407 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 -#: Source/Core/DolphinQt/MenuBar.cpp:1649 -#: Source/Core/DolphinQt/MenuBar.cpp:1661 -#: Source/Core/DolphinQt/MenuBar.cpp:1673 -#: Source/Core/DolphinQt/MenuBar.cpp:1695 -#: Source/Core/DolphinQt/MenuBar.cpp:1721 -#: Source/Core/DolphinQt/MenuBar.cpp:1773 +#: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:309 +#: Source/Core/DolphinQt/MainWindow.cpp:317 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 +#: Source/Core/DolphinQt/MainWindow.cpp:1554 +#: Source/Core/DolphinQt/MainWindow.cpp:1561 +#: Source/Core/DolphinQt/MainWindow.cpp:1621 +#: Source/Core/DolphinQt/MainWindow.cpp:1628 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 +#: Source/Core/DolphinQt/MenuBar.cpp:205 Source/Core/DolphinQt/MenuBar.cpp:1252 +#: Source/Core/DolphinQt/MenuBar.cpp:1338 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 +#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 +#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 +#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1774 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741 @@ -4728,9 +4758,9 @@ msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:465 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:486 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:507 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:552 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:551 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:588 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:611 #: Source/Core/DolphinQt/Translation.cpp:322 msgid "Error" msgstr "錯誤" @@ -4761,7 +4791,7 @@ msgstr "讀取選擇的語系出錯。返回使用系統預設值。" msgid "Error obtaining session list: %1" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:307 +#: Source/Core/DolphinQt/MainWindow.cpp:310 msgid "Error occurred while loading some texture packs" msgstr "" @@ -4852,7 +4882,7 @@ msgstr "" msgid "Euphoria" msgstr "Euphoria" -#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:309 +#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:306 #: Source/Core/UICommon/NetPlayIndex.cpp:249 msgid "Europe" msgstr "" @@ -4865,15 +4895,15 @@ msgstr "" msgid "Exit" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:944 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:945 msgid "Expected + or closing paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:774 -msgid "Expected arguments: " +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:775 +msgid "Expected arguments: {0}" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:911 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:912 msgid "Expected closing paren." msgstr "" @@ -4885,19 +4915,19 @@ msgstr "" msgid "Expected end of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:930 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:931 msgid "Expected name of input." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:921 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:922 msgid "Expected opening paren." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:841 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:842 msgid "Expected start of expression." msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:815 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:816 msgid "Expected variable name." msgstr "" @@ -4905,7 +4935,7 @@ msgstr "" msgid "Experimental" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:323 +#: Source/Core/DolphinQt/MenuBar.cpp:320 msgid "Export All Wii Saves" msgstr "匯出全部 Wii 存檔" @@ -4916,11 +4946,11 @@ msgstr "匯出全部 Wii 存檔" msgid "Export Failed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:57 +#: Source/Core/Core/HotkeyManager.cpp:60 msgid "Export Recording" msgstr "匯出錄像" -#: Source/Core/DolphinQt/MenuBar.cpp:783 +#: Source/Core/DolphinQt/MenuBar.cpp:784 msgid "Export Recording..." msgstr "匯出錄像..." @@ -4948,7 +4978,7 @@ msgstr "" msgid "Export as .&sav..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1176 +#: Source/Core/DolphinQt/MenuBar.cpp:1177 #, c-format msgctxt "" msgid "Exported %n save(s)" @@ -4976,35 +5006,35 @@ msgstr "" msgid "External Frame Buffer (XFB)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:298 +#: Source/Core/DolphinQt/MenuBar.cpp:295 msgid "Extract Certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:270 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269 msgid "Extract Entire Disc..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:294 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293 msgid "Extract Entire Partition..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300 msgid "Extract File..." msgstr "提取檔案..." -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:243 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242 msgid "Extract Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:253 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252 msgid "Extract System Data..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356 msgid "Extracting All Files..." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:358 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357 msgid "Extracting Directory..." msgstr "" @@ -5032,7 +5062,7 @@ msgstr "" msgid "Failed to add this session to the NetPlay index: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1722 +#: Source/Core/DolphinQt/MenuBar.cpp:1723 msgid "Failed to append to signature file '%1'" msgstr "" @@ -5098,7 +5128,7 @@ msgstr "" msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:859 +#: Source/Core/DolphinQt/GameList/GameList.cpp:855 msgid "Failed to delete the selected file." msgstr "" @@ -5127,15 +5157,15 @@ msgstr "" msgid "Failed to export the following save files:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1251 +#: Source/Core/DolphinQt/MenuBar.cpp:1252 msgid "Failed to extract certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:387 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386 msgid "Failed to extract file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:263 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262 msgid "Failed to extract system data." msgstr "" @@ -5154,25 +5184,25 @@ msgstr "" msgid "Failed to import \"%1\"." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1153 msgid "" "Failed to import save file. Please launch the game once, then try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1147 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:1159 +#: Source/Core/DolphinQt/MenuBar.cpp:1160 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:1132 +#: Source/Core/DolphinQt/MainWindow.cpp:1145 msgid "Failed to init core" msgstr "" @@ -5192,18 +5222,18 @@ msgid "Failed to install pack: %1" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:633 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1643 +#: Source/Core/DolphinQt/MainWindow.cpp:1656 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1375 -#: Source/Core/DolphinQt/MenuBar.cpp:1432 +#: Source/Core/DolphinQt/MenuBar.cpp:1376 +#: Source/Core/DolphinQt/MenuBar.cpp:1433 msgid "Failed to load RSO module at %1" msgstr "" @@ -5215,7 +5245,7 @@ msgstr "" msgid "Failed to load dxgi.dll" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1661 +#: Source/Core/DolphinQt/MenuBar.cpp:1662 msgid "Failed to load map file '%1'" msgstr "" @@ -5252,7 +5282,7 @@ msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1726 +#: Source/Core/DolphinQt/MainWindow.cpp:1739 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5291,7 +5321,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1642 +#: Source/Core/DolphinQt/MainWindow.cpp:1655 msgid "Failed to open server" msgstr "" @@ -5427,19 +5457,19 @@ msgstr "" msgid "Failed to save FIFO log." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1650 +#: Source/Core/DolphinQt/MenuBar.cpp:1651 msgid "Failed to save code map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1695 +#: Source/Core/DolphinQt/MenuBar.cpp:1696 msgid "Failed to save signature file '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1674 +#: Source/Core/DolphinQt/MenuBar.cpp:1675 msgid "Failed to save symbol map to path '%1'" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1774 +#: Source/Core/DolphinQt/MenuBar.cpp:1775 msgid "Failed to save to signature file '%1'" msgstr "" @@ -5493,8 +5523,8 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/GameList/GameList.cpp:858 -#: Source/Core/DolphinQt/MenuBar.cpp:1117 +#: Source/Core/DolphinQt/GameList/GameList.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:1118 msgid "Failure" msgstr "" @@ -5502,11 +5532,12 @@ msgstr "" msgid "Fair Input Delay" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:203 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:464 msgid "Fallback Region" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:214 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:221 msgid "Fallback Region:" msgstr "" @@ -5542,9 +5573,9 @@ msgstr "" msgid "File Details" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1009 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:230 -#: Source/Core/DolphinQt/MenuBar.cpp:682 +#: Source/Core/DolphinQt/MenuBar.cpp:683 msgid "File Format" msgstr "" @@ -5556,20 +5587,20 @@ msgstr "" msgid "File Info" msgstr "檔案資訊" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1000 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:224 -#: Source/Core/DolphinQt/MenuBar.cpp:677 +#: Source/Core/DolphinQt/MenuBar.cpp:678 msgid "File Name" msgstr "檔案名稱" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1005 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:226 -#: Source/Core/DolphinQt/MenuBar.cpp:678 +#: Source/Core/DolphinQt/MenuBar.cpp:679 msgid "File Path" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 -#: Source/Core/DolphinQt/MenuBar.cpp:681 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1004 +#: Source/Core/DolphinQt/MenuBar.cpp:682 msgid "File Size" msgstr "檔案大小" @@ -5667,8 +5698,8 @@ msgstr "" msgid "Float" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571 -msgid "Follow &branch" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573 +msgid "Follow &Branch" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:921 @@ -5735,7 +5766,7 @@ msgstr "" msgid "Forced on because %1 doesn't support geometry shaders." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585 msgid "" "Forces the game to output graphics at any aspect ratio by expanding the view " "frustum without stretching the image.
This is a hack, and its results " @@ -5745,7 +5776,7 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:593 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:613 msgid "" "Forces the game to render the RGB color channels in 24-bit, thereby " "increasing quality by reducing color banding.

Has no impact on " @@ -5788,20 +5819,20 @@ msgstr "" msgid "Frame %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336 +#: Source/Core/Core/HotkeyManager.cpp:53 Source/Core/Core/HotkeyManager.cpp:343 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21 msgid "Frame Advance" msgstr "畫格步進" -#: Source/Core/Core/HotkeyManager.cpp:51 +#: Source/Core/Core/HotkeyManager.cpp:54 msgid "Frame Advance Decrease Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:52 +#: Source/Core/Core/HotkeyManager.cpp:55 msgid "Frame Advance Increase Speed" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:53 +#: Source/Core/Core/HotkeyManager.cpp:56 msgid "Frame Advance Reset Speed" msgstr "" @@ -5858,11 +5889,11 @@ msgstr "" msgid "FreeLook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:348 +#: Source/Core/Core/HotkeyManager.cpp:355 msgid "Freelook" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:121 +#: Source/Core/Core/HotkeyManager.cpp:124 msgid "Freelook Toggle" msgstr "" @@ -5896,11 +5927,12 @@ msgstr "" msgid "FullScr" msgstr "全螢幕" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 msgid "Function" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:117 +#. i18n: Settings that affect the functionality of unlocking achievements. +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:118 msgid "Function Settings" msgstr "" @@ -5920,7 +5952,7 @@ msgstr "" msgid "GBA Cartridge Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:358 +#: Source/Core/Core/HotkeyManager.cpp:365 msgid "GBA Core" msgstr "" @@ -5936,11 +5968,11 @@ msgstr "" msgid "GBA TAS Input %1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:359 +#: Source/Core/Core/HotkeyManager.cpp:366 msgid "GBA Volume" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:360 +#: Source/Core/Core/HotkeyManager.cpp:367 msgid "GBA Window Size" msgstr "" @@ -6053,11 +6085,11 @@ msgstr "" msgid "Game Boy Advance" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:649 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:648 msgid "Game Boy Advance Carts (*.gba)" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:836 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:835 msgid "" "Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;" "All Files (*)" @@ -6091,8 +6123,8 @@ msgstr "" msgid "Game Gamma:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1006 -#: Source/Core/DolphinQt/MenuBar.cpp:679 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1002 +#: Source/Core/DolphinQt/MenuBar.cpp:680 msgid "Game ID" msgstr "遊戲 ID" @@ -6218,7 +6250,8 @@ msgstr "" msgid "Gecko Codes" msgstr "Gecko 代碼" -#: Source/Core/Core/HotkeyManager.cpp:333 +#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:339 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:200 #: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60 #: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120 @@ -6238,14 +6271,21 @@ msgid "Generate Action Replay Code(s)" msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:236 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:470 msgid "Generate a New Statistics Identity" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:439 +msgid "" +"Generate a new anonymous ID for your usage statistics. This will cause any " +"future statistics to be unassociated with your previous statistics." +msgstr "" + #: Source/Core/DolphinQt/CheatSearchWidget.cpp:587 msgid "Generated AR code(s)." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1332 msgid "Generated symbol names from '%1'" msgstr "" @@ -6263,7 +6303,7 @@ msgstr "" msgid "GetDeviceList failed: {0}" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "GiB" msgstr "" @@ -6296,7 +6336,7 @@ msgstr "影像" msgid "Graphics Mods" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:346 +#: Source/Core/Core/HotkeyManager.cpp:353 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20 msgid "Graphics Toggles" msgstr "" @@ -6305,7 +6345,7 @@ msgstr "" msgid "Graphics mods are currently disabled." msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:554 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:574 msgid "" "Greatly increases the quality of textures generated using render-to-texture " "effects.

Slightly increases GPU load and causes relatively few " @@ -6327,7 +6367,7 @@ msgstr "綠 左" msgid "Green Right" msgstr "綠 右" -#: Source/Core/DolphinQt/MenuBar.cpp:654 +#: Source/Core/DolphinQt/MenuBar.cpp:655 msgid "Grid View" msgstr "" @@ -6409,7 +6449,7 @@ msgstr "隱藏" msgid "Hide &Controls" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:749 +#: Source/Core/DolphinQt/MenuBar.cpp:750 msgid "Hide All" msgstr "" @@ -6427,12 +6467,12 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:371 msgid "" -"Hides the Mouse Cursor whenever it is inside the render window and the " +"Hides the mouse cursor whenever it is inside the render window and the " "render window is focused.

If unsure, select "" "On Movement"." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:209 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:207 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:427 msgid "High" msgstr "" @@ -6496,7 +6536,7 @@ msgstr "" msgid "Hotkey Settings" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:210 +#: Source/Core/Core/HotkeyManager.cpp:213 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41 msgid "Hotkeys" @@ -6597,11 +6637,11 @@ msgid "" "Suitable for turn-based games with timing-sensitive controls, such as golf." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:375 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:363 msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:267 +#: 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 " @@ -6635,6 +6675,16 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:433 +msgid "" +"If selected, Dolphin can collect data on its performance, feature usage, " +"emulated games, and configuration, as well as data on your system's hardware " +"and operating system.

No private data is ever collected. This data " +"helps us understand how people and emulated games use Dolphin and prioritize " +"our efforts. It also helps us identify rare configurations that are causing " +"bugs, performance and stability issues." +msgstr "" + #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:207 msgid "" "If unchecked, then playback of the fifolog stops after the final frame." @@ -6688,7 +6738,7 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:295 +#: Source/Core/DolphinQt/MenuBar.cpp:292 msgid "Import BootMii NAND Backup..." msgstr "" @@ -6703,15 +6753,15 @@ msgstr "" msgid "Import Save File(s)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:321 +#: Source/Core/DolphinQt/MenuBar.cpp:318 msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1820 +#: Source/Core/DolphinQt/MainWindow.cpp:1833 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1830 +#: Source/Core/DolphinQt/MainWindow.cpp:1843 #, c-format msgid "" "Importing NAND backup\n" @@ -6767,24 +6817,24 @@ msgstr "" msgid "Increase" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:129 +#: Source/Core/Core/HotkeyManager.cpp:132 msgid "Increase Convergence" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:127 +#: Source/Core/Core/HotkeyManager.cpp:130 msgid "Increase Depth" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:47 +#: Source/Core/Core/HotkeyManager.cpp:50 msgid "Increase Emulation Speed" msgstr "" #. i18n: IR stands for internal resolution -#: Source/Core/Core/HotkeyManager.cpp:117 +#: Source/Core/Core/HotkeyManager.cpp:120 msgid "Increase IR" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:182 +#: Source/Core/Core/HotkeyManager.cpp:185 msgid "Increase Selected State Slot" msgstr "" @@ -6833,8 +6883,8 @@ msgstr "訊息" #: Source/Core/Common/MsgHandler.cpp:59 #: Source/Core/DolphinQt/GameList/GameList.cpp:717 #: Source/Core/DolphinQt/GameList/GameList.cpp:779 -#: Source/Core/DolphinQt/MenuBar.cpp:1330 -#: Source/Core/DolphinQt/MenuBar.cpp:1573 +#: Source/Core/DolphinQt/MenuBar.cpp:1331 +#: Source/Core/DolphinQt/MenuBar.cpp:1574 msgid "Information" msgstr "訊息" @@ -6848,10 +6898,10 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275 -#: Source/Core/DolphinQt/MenuBar.cpp:1353 -#: Source/Core/DolphinQt/MenuBar.cpp:1413 -#: Source/Core/DolphinQt/MenuBar.cpp:1680 -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1354 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "Input" msgstr "輸入" @@ -6870,13 +6920,10 @@ msgid "Insert &BLR" msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1037 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "Insert &NOP" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 -msgid "Insert &nop" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:218 msgid "Insert SD Card" msgstr "插入 SD 卡" @@ -6894,7 +6941,7 @@ msgstr "" msgid "Install Update" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:293 +#: Source/Core/DolphinQt/MenuBar.cpp:290 msgid "Install WAD..." msgstr "" @@ -6902,8 +6949,9 @@ msgstr "" msgid "Install to the NAND" msgstr "" +#. i18n: Short for "Instruction" #: Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp:47 -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:159 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 msgid "Instr." msgstr "" @@ -6917,7 +6965,7 @@ msgstr "" msgid "Instruction Breakpoint" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Instruction:" msgstr "" @@ -6926,7 +6974,7 @@ msgstr "" msgid "Instruction: %1" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:739 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:741 msgid "" "Instructions executed: %1\n" "Value contained in:\n" @@ -6985,8 +7033,8 @@ msgid "" "Internal LZO Error - failed to parse decompressed version string ({0} / {1})" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:347 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:619 +#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:639 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27 msgid "Internal Resolution" msgstr "" @@ -7003,7 +7051,7 @@ msgstr "" msgid "Interpreter (slowest)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:856 +#: Source/Core/DolphinQt/MenuBar.cpp:857 msgid "Interpreter Core" msgstr "" @@ -7011,7 +7059,7 @@ msgstr "" msgid "Invalid Expression." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:214 +#: Source/Core/UICommon/AutoUpdate.cpp:218 msgid "Invalid JSON received from auto-update service : {0}" msgstr "" @@ -7019,7 +7067,7 @@ msgstr "" msgid "Invalid Mixed Code" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:315 +#: Source/Core/DolphinQt/MainWindow.cpp:318 msgid "Invalid Pack %1 provided: %2" msgstr "" @@ -7028,7 +7076,7 @@ msgstr "" msgid "Invalid Player ID" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1360 +#: Source/Core/DolphinQt/MenuBar.cpp:1361 msgid "Invalid RSO module address: %1" msgstr "" @@ -7108,11 +7156,11 @@ msgstr "" msgid "Item" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:854 +#: Source/Core/DolphinQt/MenuBar.cpp:855 msgid "JIT" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:868 +#: Source/Core/DolphinQt/MenuBar.cpp:869 msgid "JIT Block Linking Off" msgstr "" @@ -7120,47 +7168,47 @@ msgstr "" msgid "JIT Blocks" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:1004 msgid "JIT Branch Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:975 +#: Source/Core/DolphinQt/MenuBar.cpp:976 msgid "JIT FloatingPoint Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:982 +#: Source/Core/DolphinQt/MenuBar.cpp:983 msgid "JIT Integer Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:960 +#: Source/Core/DolphinQt/MenuBar.cpp:961 msgid "JIT LoadStore Floating Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:932 +#: Source/Core/DolphinQt/MenuBar.cpp:933 msgid "JIT LoadStore Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:968 +#: Source/Core/DolphinQt/MenuBar.cpp:969 msgid "JIT LoadStore Paired Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:946 +#: Source/Core/DolphinQt/MenuBar.cpp:947 msgid "JIT LoadStore lXz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:939 +#: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "JIT LoadStore lbzx Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:953 +#: Source/Core/DolphinQt/MenuBar.cpp:954 msgid "JIT LoadStore lwz Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:926 +#: Source/Core/DolphinQt/MenuBar.cpp:927 msgid "JIT Off (JIT Core)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:989 +#: Source/Core/DolphinQt/MenuBar.cpp:990 msgid "JIT Paired Off" msgstr "" @@ -7172,14 +7220,15 @@ msgstr "" msgid "JIT Recompiler for x86-64 (recommended)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1010 +#: Source/Core/DolphinQt/MenuBar.cpp:1011 msgid "JIT Register Cache Off" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:996 +#: Source/Core/DolphinQt/MenuBar.cpp:997 msgid "JIT SystemRegisters Off" msgstr "" +#: Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp:313 #: Source/Core/Core/PowerPC/Jit64/Jit.cpp:840 #: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:1028 msgid "" @@ -7187,11 +7236,11 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:423 +#: Source/Android/jni/MainAndroid.cpp:424 msgid "JIT is not active" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:311 +#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:308 msgid "Japan" msgstr "" @@ -7213,7 +7262,7 @@ msgid "" "edit anything!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:680 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:682 #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:297 msgid "Keep Running" msgstr "" @@ -7248,7 +7297,7 @@ msgstr "" msgid "Keys" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "KiB" msgstr "" @@ -7256,7 +7305,7 @@ msgstr "" msgid "Kick Player" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:313 +#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:310 msgid "Korea" msgstr "" @@ -7389,6 +7438,14 @@ msgid "" "Middle-click to clear." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:384 +msgid "" +"Lets you use languages and other region-related settings that the game may " +"not be designed for. May cause various crashes and bugs.

This setting " +"cannot be changed while emulation is active.

If " +"unsure, leave this unchecked." +msgstr "" + #: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:47 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:235 msgid "Levers" @@ -7422,11 +7479,11 @@ msgstr "" msgid "Limit Chunked Upload Speed:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:688 +#: Source/Core/DolphinQt/MenuBar.cpp:689 msgid "List Columns" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:651 +#: Source/Core/DolphinQt/MenuBar.cpp:652 msgid "List View" msgstr "" @@ -7436,17 +7493,17 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:173 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:116 msgid "Load" msgstr "讀取" -#: Source/Core/DolphinQt/MenuBar.cpp:1035 +#: Source/Core/DolphinQt/MenuBar.cpp:1036 msgid "Load &Bad Map File..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1034 +#: Source/Core/DolphinQt/MenuBar.cpp:1035 msgid "Load &Other Map File..." msgstr "" @@ -7455,7 +7512,7 @@ msgid "Load Branch Watch &From..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:615 -msgid "Load Branch Watch snapshot" +msgid "Load Branch Watch Snapshot" msgstr "" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:107 @@ -7466,7 +7523,7 @@ msgstr "" msgid "Load File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:278 +#: Source/Core/DolphinQt/MenuBar.cpp:275 msgid "Load GameCube Main Menu" msgstr "" @@ -7474,16 +7531,21 @@ msgstr "" msgid "Load Host's Save Data Only" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:356 +#: Source/Core/Core/HotkeyManager.cpp:363 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22 msgid "Load Last State" msgstr "" +#: Source/Core/DolphinQt/MenuBar.cpp:1593 +#: Source/Core/DolphinQt/MenuBar.cpp:1610 +msgid "Load Map File" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:211 msgid "Load Path:" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:185 +#: Source/Core/Core/HotkeyManager.cpp:188 msgid "Load ROM" msgstr "" @@ -7491,104 +7553,104 @@ msgstr "" msgid "Load Slot" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:181 -#: Source/Core/Core/HotkeyManager.cpp:353 +#: Source/Core/Core/HotkeyManager.cpp:184 +#: Source/Core/Core/HotkeyManager.cpp:360 msgid "Load State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:166 +#: Source/Core/Core/HotkeyManager.cpp:169 msgid "Load State Last 1" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:175 +#: Source/Core/Core/HotkeyManager.cpp:178 msgid "Load State Last 10" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:167 +#: Source/Core/Core/HotkeyManager.cpp:170 msgid "Load State Last 2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:168 +#: Source/Core/Core/HotkeyManager.cpp:171 msgid "Load State Last 3" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:169 +#: Source/Core/Core/HotkeyManager.cpp:172 msgid "Load State Last 4" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:170 +#: Source/Core/Core/HotkeyManager.cpp:173 msgid "Load State Last 5" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:171 +#: Source/Core/Core/HotkeyManager.cpp:174 msgid "Load State Last 6" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:172 +#: Source/Core/Core/HotkeyManager.cpp:175 msgid "Load State Last 7" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:173 +#: Source/Core/Core/HotkeyManager.cpp:176 msgid "Load State Last 8" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:174 +#: Source/Core/Core/HotkeyManager.cpp:177 msgid "Load State Last 9" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:131 +#: Source/Core/Core/HotkeyManager.cpp:134 msgid "Load State Slot 1" msgstr "讀取儲存格 1" -#: Source/Core/Core/HotkeyManager.cpp:140 +#: Source/Core/Core/HotkeyManager.cpp:143 msgid "Load State Slot 10" msgstr "讀取儲存格 10" -#: Source/Core/Core/HotkeyManager.cpp:132 +#: Source/Core/Core/HotkeyManager.cpp:135 msgid "Load State Slot 2" msgstr "讀取儲存格 2" -#: Source/Core/Core/HotkeyManager.cpp:133 +#: Source/Core/Core/HotkeyManager.cpp:136 msgid "Load State Slot 3" msgstr "讀取儲存格 3" -#: Source/Core/Core/HotkeyManager.cpp:134 +#: Source/Core/Core/HotkeyManager.cpp:137 msgid "Load State Slot 4" msgstr "讀取儲存格 4" -#: Source/Core/Core/HotkeyManager.cpp:135 +#: Source/Core/Core/HotkeyManager.cpp:138 msgid "Load State Slot 5" msgstr "讀取儲存格 5" -#: Source/Core/Core/HotkeyManager.cpp:136 +#: Source/Core/Core/HotkeyManager.cpp:139 msgid "Load State Slot 6" msgstr "讀取儲存格 6" -#: Source/Core/Core/HotkeyManager.cpp:137 +#: Source/Core/Core/HotkeyManager.cpp:140 msgid "Load State Slot 7" msgstr "讀取儲存格 7" -#: Source/Core/Core/HotkeyManager.cpp:138 +#: Source/Core/Core/HotkeyManager.cpp:141 msgid "Load State Slot 8" msgstr "讀取儲存格 8" -#: Source/Core/Core/HotkeyManager.cpp:139 +#: Source/Core/Core/HotkeyManager.cpp:142 msgid "Load State Slot 9" msgstr "讀取儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:370 +#: Source/Core/DolphinQt/MenuBar.cpp:367 msgid "Load State from File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:371 +#: Source/Core/DolphinQt/MenuBar.cpp:368 msgid "Load State from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:372 +#: Source/Core/DolphinQt/MenuBar.cpp:369 msgid "Load State from Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1077 +#: Source/Core/DolphinQt/MenuBar.cpp:1078 msgid "Load Wii System Menu %1" msgstr "" @@ -7596,20 +7658,15 @@ msgstr "" msgid "Load and Write Host's Save Data" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:141 +#: Source/Core/Core/HotkeyManager.cpp:144 msgid "Load from Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:426 +#: Source/Core/DolphinQt/MenuBar.cpp:427 msgid "Load from Slot %1 - %2" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1592 -#: Source/Core/DolphinQt/MenuBar.cpp:1609 -msgid "Load map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1076 +#: Source/Core/DolphinQt/MenuBar.cpp:1077 msgid "Load vWii System Menu %1" msgstr "" @@ -7617,7 +7674,7 @@ msgstr "" msgid "Load..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1574 +#: Source/Core/DolphinQt/MenuBar.cpp:1575 msgid "Loaded symbols from '%1'" msgstr "" @@ -7642,20 +7699,20 @@ msgstr "" msgid "Lock Mouse Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:103 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:111 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97 msgid "Locked" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:364 msgid "" -"Locks the Mouse Cursor to the Render Widget as long as it has focus. You can " +"Locks the mouse cursor to the Render Widget as long as it has focus. You can " "set a hotkey to unlock it.

If unsure, leave this " "unchecked." msgstr "" #: Source/Core/DolphinQt/Config/LogWidget.cpp:34 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:238 msgid "Log" msgstr "記錄" @@ -7665,10 +7722,11 @@ msgid "Log Configuration" msgstr "記錄設定" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61 +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:187 msgid "Log In" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:909 +#: Source/Core/DolphinQt/MenuBar.cpp:910 msgid "Log JIT Instruction Coverage" msgstr "" @@ -7707,7 +7765,7 @@ msgstr "" msgid "Lost connection to NetPlay server..." msgstr "" -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:201 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:423 msgid "Low" msgstr "" @@ -7770,9 +7828,9 @@ msgstr "" msgid "Make sure there is a Skylander in slot %1!" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/GameList/GameList.cpp:999 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:222 -#: Source/Core/DolphinQt/MenuBar.cpp:676 +#: Source/Core/DolphinQt/MenuBar.cpp:677 msgid "Maker" msgstr "" @@ -7781,7 +7839,7 @@ msgstr "" msgid "Maker:" msgstr "廠商:" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:571 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:591 msgid "" "Makes distant objects more visible by removing fog, thus increasing the " "overall detail.

Disabling fog will break some games which rely on " @@ -7789,7 +7847,7 @@ msgid "" "unchecked.
" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:294 +#: Source/Core/DolphinQt/MenuBar.cpp:291 msgid "Manage NAND" msgstr "" @@ -7828,7 +7886,7 @@ msgid "May cause slow down in Wii Menu and some games." msgstr "" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228 -#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206 +#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:204 msgid "Medium" msgstr "" @@ -7844,7 +7902,7 @@ msgstr "" msgid "Memory Card" msgstr "記憶卡" -#: Source/Core/DolphinQt/MenuBar.cpp:287 +#: Source/Core/DolphinQt/MenuBar.cpp:284 msgid "Memory Card Manager" msgstr "" @@ -7872,7 +7930,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1801 +#: Source/Core/DolphinQt/MainWindow.cpp:1814 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -7880,7 +7938,7 @@ msgid "" "want to continue?" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:551 +#: Source/Core/UICommon/UICommon.cpp:528 msgid "MiB" msgstr "" @@ -7951,8 +8009,8 @@ msgstr "" msgid "Modifying Skylander: %1" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1381 -#: Source/Core/DolphinQt/MenuBar.cpp:1532 +#: Source/Core/DolphinQt/MenuBar.cpp:1382 +#: Source/Core/DolphinQt/MenuBar.cpp:1533 msgid "Modules found: %1" msgstr "" @@ -7994,7 +8052,7 @@ msgstr "" msgid "Move" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:337 +#: Source/Core/Core/HotkeyManager.cpp:344 #: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:23 msgid "Movie" msgstr "" @@ -8018,10 +8076,10 @@ msgstr "" msgid "N&o to All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1206 -#: Source/Core/DolphinQt/MenuBar.cpp:1215 -#: Source/Core/DolphinQt/MenuBar.cpp:1233 -#: Source/Core/DolphinQt/MenuBar.cpp:1237 +#: Source/Core/DolphinQt/MenuBar.cpp:1207 +#: Source/Core/DolphinQt/MenuBar.cpp:1216 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 +#: Source/Core/DolphinQt/MenuBar.cpp:1238 #: Source/Core/DolphinQt/NANDRepairDialog.cpp:29 msgid "NAND Check" msgstr "" @@ -8030,8 +8088,8 @@ msgstr "" msgid "NKit Warning" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:280 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:121 Source/Core/DolphinQt/MenuBar.cpp:277 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-J" msgstr "" @@ -8040,7 +8098,7 @@ msgid "NTSC-J (ARIB TR-B9)" msgstr "" #: Source/Core/DiscIO/Enums.cpp:130 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-K" msgstr "" @@ -8057,8 +8115,8 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:282 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:124 Source/Core/DolphinQt/MenuBar.cpp:279 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "NTSC-U" msgstr "" @@ -8071,11 +8129,11 @@ msgstr "" msgid "Name" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "Name for a new tag:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Name of the tag to remove:" msgstr "" @@ -8154,7 +8212,7 @@ msgid "Never Auto-Update" msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:365 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:170 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:171 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101 msgid "New" msgstr "" @@ -8179,7 +8237,7 @@ msgstr "" msgid "New Tag..." msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:376 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:364 msgid "New identity generated." msgstr "" @@ -8187,12 +8245,13 @@ msgstr "" msgid "New instruction:" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1122 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1118 msgid "New tag" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95 -#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:94 Source/Core/Core/HotkeyManager.cpp:98 +#: Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:106 msgid "Next Game Profile" msgstr "" @@ -8200,8 +8259,9 @@ msgstr "" msgid "Next Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93 -#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 +#: Source/Core/Core/HotkeyManager.cpp:100 +#: Source/Core/Core/HotkeyManager.cpp:104 msgid "Next Profile" msgstr "" @@ -8288,7 +8348,7 @@ msgstr "" msgid "No input" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1217 +#: Source/Core/DolphinQt/MenuBar.cpp:1218 msgid "No issues have been detected." msgstr "" @@ -8329,7 +8389,7 @@ msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs" msgstr "" #: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35 -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:330 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:350 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:143 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:424 #: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:119 @@ -8529,7 +8589,7 @@ msgid "" "performed in the emulated software." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:621 +#: Source/Core/DolphinQt/MenuBar.cpp:622 msgid "Online &Documentation" msgstr "" @@ -8537,13 +8597,13 @@ msgstr "" msgid "Only Show Collection" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1705 +#: Source/Core/DolphinQt/MenuBar.cpp:1706 msgid "" "Only append symbols with prefix:\n" "(Blank for all symbols)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1680 +#: Source/Core/DolphinQt/MenuBar.cpp:1681 msgid "" "Only export symbols with prefix:\n" "(Blank for all symbols)" @@ -8564,13 +8624,17 @@ msgstr "" msgid "Open &User Folder" msgstr "" +#: Source/Core/Core/HotkeyManager.cpp:42 +msgid "Open Achievements" +msgstr "" + #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:217 -msgid "Open FIFO log" +msgid "Open FIFO Log" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:484 @@ -8672,7 +8736,7 @@ msgstr "" msgid "Other Partition (%1)" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:357 +#: Source/Core/Core/HotkeyManager.cpp:364 #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25 msgid "Other State Hotkeys" msgstr "" @@ -8689,7 +8753,7 @@ msgstr "" msgid "Output" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:628 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648 msgid "Output Resampling" msgstr "" @@ -8697,16 +8761,16 @@ msgstr "" msgid "Output Resampling:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:699 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701 msgid "Overwritten" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:779 +#: Source/Core/DolphinQt/MenuBar.cpp:780 msgid "P&lay Input Recording..." msgstr "" -#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:285 -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216 +#: Source/Core/DiscIO/Enums.cpp:127 Source/Core/DolphinQt/MenuBar.cpp:282 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:223 msgid "PAL" msgstr "" @@ -8735,7 +8799,7 @@ msgstr "" msgid "PPC Size" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:602 msgid "PPC vs Host" msgstr "" @@ -8748,7 +8812,7 @@ msgstr "控制器" msgid "Pads" msgstr "控制器" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:160 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 msgid "Parameters" msgstr "" @@ -8811,7 +8875,7 @@ msgstr "暫停" msgid "Pause Branch Watch" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:800 +#: Source/Core/DolphinQt/MenuBar.cpp:801 msgid "Pause at End of Movie" msgstr "" @@ -8856,7 +8920,7 @@ msgstr "" msgid "Per-Pixel Lighting" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:305 +#: Source/Core/DolphinQt/MenuBar.cpp:302 msgid "Perform Online System Update" msgstr "" @@ -8886,11 +8950,11 @@ msgstr "" msgid "Physical address space" msgstr "" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "PiB" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1283 +#: Source/Core/DolphinQt/MenuBar.cpp:1284 msgid "Pick a debug font" msgstr "" @@ -8906,8 +8970,8 @@ msgstr "" msgid "Pitch Up" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:999 -#: Source/Core/DolphinQt/MenuBar.cpp:672 +#: Source/Core/DolphinQt/GameList/GameList.cpp:995 +#: Source/Core/DolphinQt/MenuBar.cpp:673 msgid "Platform" msgstr "" @@ -8919,7 +8983,7 @@ msgstr "執行" msgid "Play / Record" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:56 +#: Source/Core/Core/HotkeyManager.cpp:59 msgid "Play Recording" msgstr "播放錄像" @@ -9014,7 +9078,7 @@ msgstr "" msgid "Possible desync detected: %1 might have desynced at frame %2" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:634 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:654 msgid "Post-Processing Effect" msgstr "" @@ -9065,7 +9129,7 @@ msgstr "" msgid "Presets" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:80 +#: Source/Core/Core/HotkeyManager.cpp:83 msgid "Press Sync Button" msgstr "" @@ -9083,9 +9147,9 @@ msgid "" "dolphin_emphasis>" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:92 Source/Core/Core/HotkeyManager.cpp:96 -#: Source/Core/Core/HotkeyManager.cpp:100 -#: Source/Core/Core/HotkeyManager.cpp:104 +#: Source/Core/Core/HotkeyManager.cpp:95 Source/Core/Core/HotkeyManager.cpp:99 +#: Source/Core/Core/HotkeyManager.cpp:103 +#: Source/Core/Core/HotkeyManager.cpp:107 msgid "Previous Game Profile" msgstr "" @@ -9093,8 +9157,9 @@ msgstr "" msgid "Previous Match" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94 -#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102 +#: Source/Core/Core/HotkeyManager.cpp:93 Source/Core/Core/HotkeyManager.cpp:97 +#: Source/Core/Core/HotkeyManager.cpp:101 +#: Source/Core/Core/HotkeyManager.cpp:105 msgid "Previous Profile" msgstr "" @@ -9138,13 +9203,13 @@ msgstr "" msgid "Profile" msgstr "設定檔" -#: Source/Core/Core/HotkeyManager.cpp:339 +#: Source/Core/Core/HotkeyManager.cpp:346 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:24 msgid "Program Counter" msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:60 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:346 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345 #: Source/Core/DolphinQt/ConvertDialog.cpp:436 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:283 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:308 @@ -9161,11 +9226,11 @@ msgstr "" msgid "Public" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:553 +#: Source/Core/DolphinQt/MenuBar.cpp:554 msgid "Purge Game List Cache" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:740 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:739 msgid "Put IPL ROMs in User/GC/." msgstr "" @@ -9192,7 +9257,7 @@ msgstr "" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1800 +#: Source/Core/DolphinQt/MainWindow.cpp:1813 msgid "Question" msgstr "問題" @@ -9217,11 +9282,11 @@ msgstr "R-類比" msgid "READY" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1027 +#: Source/Core/DolphinQt/MenuBar.cpp:1028 msgid "RSO Modules" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1348 +#: Source/Core/DolphinQt/MenuBar.cpp:1349 msgid "RSO auto-detection" msgstr "" @@ -9258,13 +9323,13 @@ msgstr "" msgid "Raw Internal Resolution" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 -msgid "Re&place instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:606 +msgid "Re&place Instruction" msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:269 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:271 msgid "Read" msgstr "" @@ -9287,7 +9352,7 @@ msgstr "" msgid "Read or Write" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:58 +#: Source/Core/Core/HotkeyManager.cpp:61 msgid "Read-Only Mode" msgstr "" @@ -9346,7 +9411,7 @@ msgstr "紅 左" msgid "Red Right" msgstr "紅 右" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:523 msgid "" "Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting " "in smoother edges on objects. Increases GPU load and sometimes causes " @@ -9392,8 +9457,8 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1007 -#: Source/Core/DolphinQt/MenuBar.cpp:680 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1003 +#: Source/Core/DolphinQt/MenuBar.cpp:681 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Region" msgstr "" @@ -9414,7 +9479,8 @@ msgstr "" msgid "Relative Input Hold" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:197 +#. i18n: Releases is a noun. +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" msgstr "" @@ -9443,7 +9509,7 @@ msgstr "" msgid "Remove Tag..." msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1134 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1130 msgid "Remove tag" msgstr "" @@ -9456,7 +9522,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 -msgid "Rename symbol" +msgid "Rename Symbol" msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182 @@ -9488,7 +9554,7 @@ msgid "" msgstr "" #: Source/Core/Core/FreeLookManager.cpp:99 -#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187 +#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:190 #: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:930 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:151 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108 @@ -9500,7 +9566,7 @@ msgstr "重置" msgid "Reset All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:595 +#: Source/Core/DolphinQt/MenuBar.cpp:596 msgid "Reset Ignore Panic Handler" msgstr "" @@ -9552,8 +9618,8 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:608 -msgid "Restore instruction" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:610 +msgid "Restore Instruction" msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:742 @@ -9683,20 +9749,20 @@ msgstr "" msgid "Rumble" msgstr "震動" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597 -msgid "Run &To Here" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599 +msgid "Run &to Here" msgstr "" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:679 -msgid "Run until" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:681 +msgid "Run Until" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633 -msgid "Run until (ignoring breakpoints)" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:635 +msgid "Run Until (Ignoring Breakpoints)" msgstr "" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:179 @@ -9766,11 +9832,11 @@ msgstr "" msgid "START" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1039 +#: Source/Core/DolphinQt/MenuBar.cpp:1040 msgid "Sa&ve Code" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:385 +#: Source/Core/DolphinQt/MenuBar.cpp:382 msgid "Sa&ve State" msgstr "儲存進度(&V)" @@ -9782,7 +9848,7 @@ msgstr "安全" #: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:371 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:174 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:175 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105 #: qtbase/src/gui/kernel/qplatformtheme.cpp:710 msgid "Save" @@ -9797,22 +9863,34 @@ msgid "Save Branch Watch &As..." msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:598 -msgid "Save Branch Watch snapshot" +msgid "Save Branch Watch Snapshot" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1762 +msgid "Save Combined Output File As" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:379 +msgid "Save Converted Image" +msgstr "" + +#: Source/Core/DolphinQt/ConvertDialog.cpp:370 +msgid "Save Converted Images" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:588 #: Source/Core/DolphinQt/GameList/GameList.cpp:593 -#: Source/Core/DolphinQt/MenuBar.cpp:1175 +#: Source/Core/DolphinQt/MenuBar.cpp:1176 msgid "Save Export" msgstr "" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:228 -msgid "Save FIFO log" +msgid "Save FIFO Log" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:303 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302 #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:773 -msgid "Save File to" +msgid "Save File To" msgstr "" #. i18n: Noun (i.e. the data saved by the game) @@ -9824,15 +9902,19 @@ msgstr "" msgid "Save Game Files (*.sav);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1133 -#: Source/Core/DolphinQt/MenuBar.cpp:1142 -#: Source/Core/DolphinQt/MenuBar.cpp:1145 -#: Source/Core/DolphinQt/MenuBar.cpp:1151 -#: Source/Core/DolphinQt/MenuBar.cpp:1158 +#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 +#: Source/Core/DolphinQt/MenuBar.cpp:1146 +#: Source/Core/DolphinQt/MenuBar.cpp:1152 +#: Source/Core/DolphinQt/MenuBar.cpp:1159 msgid "Save Import" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:177 +#: Source/Core/DolphinQt/MenuBar.cpp:1628 +msgid "Save Map File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:180 msgid "Save Oldest State" msgstr "" @@ -9840,73 +9922,77 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1938 +#: Source/Core/DolphinQt/MainWindow.cpp:1951 msgid "Save Recording File As" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:180 -#: Source/Core/Core/HotkeyManager.cpp:354 +#: Source/Core/DolphinQt/MenuBar.cpp:1684 +msgid "Save Signature File" +msgstr "" + +#: Source/Core/Core/HotkeyManager.cpp:183 +#: Source/Core/Core/HotkeyManager.cpp:361 #: Source/Core/DolphinQt/GBAWidget.cpp:423 msgid "Save State" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:143 +#: Source/Core/Core/HotkeyManager.cpp:146 msgid "Save State Slot 1" msgstr "儲存至儲存格 1" -#: Source/Core/Core/HotkeyManager.cpp:152 +#: Source/Core/Core/HotkeyManager.cpp:155 msgid "Save State Slot 10" msgstr "儲存至儲存格 10" -#: Source/Core/Core/HotkeyManager.cpp:144 +#: Source/Core/Core/HotkeyManager.cpp:147 msgid "Save State Slot 2" msgstr "儲存至儲存格 2" -#: Source/Core/Core/HotkeyManager.cpp:145 +#: Source/Core/Core/HotkeyManager.cpp:148 msgid "Save State Slot 3" msgstr "儲存至儲存格 3" -#: Source/Core/Core/HotkeyManager.cpp:146 +#: Source/Core/Core/HotkeyManager.cpp:149 msgid "Save State Slot 4" msgstr "儲存至儲存格 4" -#: Source/Core/Core/HotkeyManager.cpp:147 +#: Source/Core/Core/HotkeyManager.cpp:150 msgid "Save State Slot 5" msgstr "儲存至儲存格 5" -#: Source/Core/Core/HotkeyManager.cpp:148 +#: Source/Core/Core/HotkeyManager.cpp:151 msgid "Save State Slot 6" msgstr "儲存至儲存格 6" -#: Source/Core/Core/HotkeyManager.cpp:149 +#: Source/Core/Core/HotkeyManager.cpp:152 msgid "Save State Slot 7" msgstr "儲存至儲存格 7" -#: Source/Core/Core/HotkeyManager.cpp:150 +#: Source/Core/Core/HotkeyManager.cpp:153 msgid "Save State Slot 8" msgstr "儲存至儲存格 8" -#: Source/Core/Core/HotkeyManager.cpp:151 +#: Source/Core/Core/HotkeyManager.cpp:154 msgid "Save State Slot 9" msgstr "儲存至儲存格 9" -#: Source/Core/DolphinQt/MenuBar.cpp:386 +#: Source/Core/DolphinQt/MenuBar.cpp:383 msgid "Save State to File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:388 +#: Source/Core/DolphinQt/MenuBar.cpp:385 msgid "Save State to Oldest Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:387 +#: Source/Core/DolphinQt/MenuBar.cpp:384 msgid "Save State to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:389 +#: Source/Core/DolphinQt/MenuBar.cpp:386 msgid "Save State to Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1036 +#: Source/Core/DolphinQt/MenuBar.cpp:1037 msgid "Save Symbol Map &As..." msgstr "" @@ -9926,11 +10012,7 @@ msgstr "" msgid "Save as..." msgstr "另存為..." -#: Source/Core/DolphinQt/MenuBar.cpp:1761 -msgid "Save combined output file as" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1134 +#: Source/Core/DolphinQt/MenuBar.cpp:1135 msgid "" "Save data for this title already exists in the NAND. Consider backing up the " "current data before overwriting.\n" @@ -9941,19 +10023,11 @@ msgstr "" msgid "Save in Same Directory as the ROM" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1627 -msgid "Save map file" -msgstr "" - -#: Source/Core/DolphinQt/MenuBar.cpp:1683 -msgid "Save signature file" -msgstr "" - -#: Source/Core/Core/HotkeyManager.cpp:153 +#: Source/Core/Core/HotkeyManager.cpp:156 msgid "Save to Selected Slot" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:427 +#: Source/Core/DolphinQt/MenuBar.cpp:428 msgid "Save to Slot %1 - %2" msgstr "" @@ -9987,7 +10061,7 @@ msgstr "截圖" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:149 #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:83 -#: Source/Core/DolphinQt/MenuBar.cpp:561 Source/Core/DolphinQt/MenuBar.cpp:563 +#: Source/Core/DolphinQt/MenuBar.cpp:562 Source/Core/DolphinQt/MenuBar.cpp:564 msgid "Search" msgstr "" @@ -10014,7 +10088,7 @@ msgid "" "for a bit and try again." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:911 +#: Source/Core/DolphinQt/MenuBar.cpp:912 msgid "Search for an Instruction" msgstr "" @@ -10022,7 +10096,7 @@ msgstr "" msgid "Search games..." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1802 +#: Source/Core/DolphinQt/MenuBar.cpp:1803 msgid "Search instruction" msgstr "" @@ -10058,7 +10132,7 @@ msgstr "選擇" #. If the user presses Cancel, Branch Watch will save to a file in the user folder. #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:778 msgid "" -"Select Branch Watch snapshot auto-save file (for user folder location, " +"Select Branch Watch Snapshot Auto-Save File (for user folder location, " "cancel)" msgstr "" @@ -10067,7 +10141,7 @@ msgid "Select Dump Path" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:568 -#: Source/Core/DolphinQt/MenuBar.cpp:1169 +#: Source/Core/DolphinQt/MenuBar.cpp:1170 msgid "Select Export Directory" msgstr "" @@ -10075,18 +10149,22 @@ msgstr "" msgid "Select Figure File" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:681 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:680 msgid "Select GBA BIOS" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:830 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:829 msgid "Select GBA ROM" msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:710 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:709 msgid "Select GBA Saves Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1849 +msgid "Select Keys File (OTP/SEEPROM Dump)" +msgstr "" + #: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21 msgid "Select Last State" msgstr "" @@ -10095,6 +10173,10 @@ msgstr "" msgid "Select Load Path" msgstr "" +#: Source/Core/DolphinQt/MainWindow.cpp:1823 +msgid "Select NAND Backup" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:93 msgid "Select Resource Pack Path" msgstr "" @@ -10103,6 +10185,14 @@ msgstr "" msgid "Select Riivolution XML file" msgstr "" +#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 +msgid "Select SD Card Image" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:1125 +msgid "Select Save File" +msgstr "" + #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:484 msgid "Select Skylander Collection" msgstr "" @@ -10111,58 +10201,62 @@ msgstr "" msgid "Select Skylander File" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:428 +#: Source/Core/DolphinQt/MenuBar.cpp:429 msgid "Select Slot %1 - %2" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:355 +#: Source/Core/Core/HotkeyManager.cpp:362 msgid "Select State" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:402 +#: Source/Core/DolphinQt/MenuBar.cpp:399 msgid "Select State Slot" msgstr "選擇儲存格" -#: Source/Core/Core/HotkeyManager.cpp:155 +#: Source/Core/Core/HotkeyManager.cpp:158 msgid "Select State Slot 1" msgstr "選擇儲存格 1" -#: Source/Core/Core/HotkeyManager.cpp:164 +#: Source/Core/Core/HotkeyManager.cpp:167 msgid "Select State Slot 10" msgstr "選擇儲存格 10" -#: Source/Core/Core/HotkeyManager.cpp:156 +#: Source/Core/Core/HotkeyManager.cpp:159 msgid "Select State Slot 2" msgstr "選擇儲存格 2" -#: Source/Core/Core/HotkeyManager.cpp:157 +#: Source/Core/Core/HotkeyManager.cpp:160 msgid "Select State Slot 3" msgstr "選擇儲存格 3" -#: Source/Core/Core/HotkeyManager.cpp:158 +#: Source/Core/Core/HotkeyManager.cpp:161 msgid "Select State Slot 4" msgstr "選擇儲存格 4" -#: Source/Core/Core/HotkeyManager.cpp:159 +#: Source/Core/Core/HotkeyManager.cpp:162 msgid "Select State Slot 5" msgstr "選擇儲存格 5" -#: Source/Core/Core/HotkeyManager.cpp:160 +#: Source/Core/Core/HotkeyManager.cpp:163 msgid "Select State Slot 6" msgstr "選擇儲存格 6" -#: Source/Core/Core/HotkeyManager.cpp:161 +#: Source/Core/Core/HotkeyManager.cpp:164 msgid "Select State Slot 7" msgstr "選擇儲存格 7" -#: Source/Core/Core/HotkeyManager.cpp:162 +#: Source/Core/Core/HotkeyManager.cpp:165 msgid "Select State Slot 8" msgstr "選擇儲存格 8" -#: Source/Core/Core/HotkeyManager.cpp:163 +#: Source/Core/Core/HotkeyManager.cpp:166 msgid "Select State Slot 9" msgstr "選擇儲存格 9" +#: Source/Core/DolphinQt/MenuBar.cpp:1104 +msgid "Select Title to Install to NAND" +msgstr "" + #: Source/Core/DolphinQt/Settings/PathPane.cpp:105 msgid "Select WFS Path" msgstr "" @@ -10180,24 +10274,20 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:583 #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 -#: Source/Core/DolphinQt/MainWindow.cpp:775 -#: Source/Core/DolphinQt/MainWindow.cpp:1412 -#: Source/Core/DolphinQt/MainWindow.cpp:1424 +#: Source/Core/DolphinQt/MainWindow.cpp:788 +#: Source/Core/DolphinQt/MainWindow.cpp:1425 +#: Source/Core/DolphinQt/MainWindow.cpp:1437 msgid "Select a File" msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:523 -msgid "Select a Folder to sync with the SD Card Image" +msgid "Select a Folder to Sync with the SD Card Image" msgstr "" #: Source/Core/DolphinQt/Settings/PathPane.cpp:47 msgid "Select a Game" msgstr "" -#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506 -msgid "Select a SD Card Image" -msgstr "" - #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695 msgid "Select a file" msgstr "" @@ -10206,19 +10296,15 @@ msgstr "" msgid "Select a game" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 -msgid "Select a title to install to NAND" -msgstr "" - #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1413 +#: Source/Core/DolphinQt/MenuBar.cpp:1414 msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1859 +#: Source/Core/DolphinQt/MainWindow.cpp:1872 msgid "Select the Recording File to Play" msgstr "" @@ -10226,23 +10312,6 @@ msgstr "" msgid "Select the Virtual SD Card Root" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1836 -msgid "Select the keys file (OTP/SEEPROM dump)" -msgstr "" - -#: Source/Core/DolphinQt/MainWindow.cpp:1810 -#: Source/Core/DolphinQt/MenuBar.cpp:1124 -msgid "Select the save file" -msgstr "選擇存檔" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:379 -msgid "Select where you want to save the converted image" -msgstr "" - -#: Source/Core/DolphinQt/ConvertDialog.cpp:370 -msgid "Select where you want to save the converted images" -msgstr "" - #: Source/Core/DolphinQt/Config/LogWidget.cpp:138 msgid "Selected Font" msgstr "" @@ -10298,7 +10367,7 @@ msgid "" "Corrected Internal Resolution\".
" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:576 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596 msgid "" "Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of " "depth if the necessary hardware is present. Heavily decreases emulation " @@ -10341,6 +10410,27 @@ msgid "" "

If unsure, select OpenGL." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 +msgid "" +"Selects which update track Dolphin uses when checking for updates at " +"startup. If a new update is available, Dolphin will show a list of changes " +"made since your current version and ask you if you want to update." +"

The Dev track has the latest version of Dolphin which often updates " +"multiple times per day. Select this track if you want the newest features " +"and fixes.

The Releases track has an update every few months. Some " +"reasons you might prefer to use this track:
- You prefer using versions " +"that have had additional testing.
- NetPlay requires players to have the " +"same Dolphin version, and the latest Release version will have the most " +"players to match with.
- You frequently use Dolphin's savestate system, " +"which doesn't guarantee backward compatibility of savestates between Dolphin " +"versions. If this applies to you, make sure you make an in-game save before " +"updating (i.e. save your game in the same way you would on a physical " +"GameCube or Wii), then load the in-game save after updating Dolphin and " +"before making any new savestates.

Selecting \"Don't Update\" will " +"prevent Dolphin from automatically checking for updates." +"

If unsure, select Releases." +msgstr "" + #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:270 msgid "Send" msgstr "傳送" @@ -10349,6 +10439,15 @@ msgstr "傳送" msgid "Sensor Bar Position:" msgstr "傳感器位置:" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373 +msgid "" +"Separates CPU and GPU emulation work to separate threads. Reduces single-" +"thread burden by spreading Dolphin's heaviest load across two cores, which " +"usually improves performance. However, it can result in glitches and crashes." +"

This setting cannot be changed while emulation is active." +"

If unsure, leave this checked." +msgstr "" + #: Source/Core/DiscIO/VolumeVerifier.cpp:315 msgid "" "Serial and/or version data is missing from {0}\n" @@ -10377,39 +10476,35 @@ msgstr "" msgid "Set Brea&kpoint" msgstr "" +#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 +msgid "Set Memory Card File for Slot A" +msgstr "" + +#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 +msgid "Set Memory Card File for Slot B" +msgstr "" + #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:74 Source/Core/DolphinQt/ToolBar.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:77 Source/Core/DolphinQt/ToolBar.cpp:114 msgid "Set PC" msgstr "" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596 +msgid "Set Symbol &End Address" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 +msgid "Set Symbol &Size" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:991 +msgid "Set Symbol End Address" +msgstr "" + #: Source/Core/DolphinQt/GameList/GameList.cpp:416 msgid "Set as &Default ISO" msgstr "" -#: Source/Core/DolphinQt/GCMemcardManager.cpp:359 -msgid "Set memory card file for Slot A" -msgstr "" - -#: Source/Core/DolphinQt/GCMemcardManager.cpp:360 -msgid "Set memory card file for Slot B" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594 -msgid "Set symbol &end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592 -msgid "Set symbol &size" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 -msgid "Set symbol end address" -msgstr "" - -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:969 -msgid "Set symbol size (%1):" -msgstr "" - #: Source/Core/DolphinQt/Settings/WiiPane.cpp:188 msgid "" "Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL " @@ -10423,7 +10518,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:329 msgid "" -"Sets the language displayed by Dolphin's User Interface.

Changes to " +"Sets the language displayed by Dolphin's user interface.

Changes to " "this setting only take effect once Dolphin is restarted." "

If unsure, select <System Language>." @@ -10435,10 +10530,17 @@ msgid "" "Certain backends only." msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:429 +msgid "" +"Sets the region used for titles whose region cannot be determined " +"automatically.

This setting cannot be changed while emulation is " +"active." +msgstr "" + #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:378 msgid "" -"Sets the style of Dolphin's User Interface. Any Custom User Styles that you " -"have loaded will be presented here, allowing you to switch to them." +"Sets the style of Dolphin's user interface. Any custom styles that you have " +"added will be presented here, allowing you to switch to them." "

If unsure, select (System)." msgstr "" @@ -10489,11 +10591,11 @@ msgstr "" msgid "Show % Speed" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:435 +#: Source/Core/DolphinQt/MenuBar.cpp:436 msgid "Show &Log" msgstr "顯示日誌視窗(&L)" -#: Source/Core/DolphinQt/MenuBar.cpp:448 +#: Source/Core/DolphinQt/MenuBar.cpp:449 msgid "Show &Toolbar" msgstr "顯示工具列(&T)" @@ -10501,15 +10603,15 @@ msgstr "顯示工具列(&T)" msgid "Show Active Title in Window Title" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:748 +#: Source/Core/DolphinQt/MenuBar.cpp:749 msgid "Show All" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:735 +#: Source/Core/DolphinQt/MenuBar.cpp:736 msgid "Show Australia" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:156 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:159 msgid "Show Current Game on Discord" msgstr "" @@ -10518,7 +10620,7 @@ msgstr "" msgid "Show Disabled Codes First" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:710 +#: Source/Core/DolphinQt/MenuBar.cpp:711 msgid "Show ELF/DOL" msgstr "" @@ -10531,7 +10633,7 @@ msgstr "" msgid "Show FPS" msgstr "顯示 FPS" -#: Source/Core/DolphinQt/MenuBar.cpp:818 +#: Source/Core/DolphinQt/MenuBar.cpp:819 msgid "Show Frame Counter" msgstr "" @@ -10539,15 +10641,15 @@ msgstr "" msgid "Show Frame Times" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:736 +#: Source/Core/DolphinQt/MenuBar.cpp:737 msgid "Show France" msgstr "顯示 France" -#: Source/Core/DolphinQt/MenuBar.cpp:708 +#: Source/Core/DolphinQt/MenuBar.cpp:709 msgid "Show GameCube" msgstr "顯示 GameCube" -#: Source/Core/DolphinQt/MenuBar.cpp:737 +#: Source/Core/DolphinQt/MenuBar.cpp:738 msgid "Show Germany" msgstr "" @@ -10555,27 +10657,27 @@ msgstr "" msgid "Show Golf Mode Overlay" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:199 +#: Source/Core/Core/HotkeyManager.cpp:202 msgid "Show Infinity Base" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:824 +#: Source/Core/DolphinQt/MenuBar.cpp:825 msgid "Show Input Display" msgstr "輸入顯示" -#: Source/Core/DolphinQt/MenuBar.cpp:738 +#: Source/Core/DolphinQt/MenuBar.cpp:739 msgid "Show Italy" msgstr "顯示 Italy" -#: Source/Core/DolphinQt/MenuBar.cpp:732 +#: Source/Core/DolphinQt/MenuBar.cpp:733 msgid "Show JPN" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:739 +#: Source/Core/DolphinQt/MenuBar.cpp:740 msgid "Show Korea" msgstr "顯示 Korea" -#: Source/Core/DolphinQt/MenuBar.cpp:812 +#: Source/Core/DolphinQt/MenuBar.cpp:813 msgid "Show Lag Counter" msgstr "" @@ -10583,7 +10685,7 @@ msgstr "" msgid "Show Language:" msgstr "顯示語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:441 +#: Source/Core/DolphinQt/MenuBar.cpp:442 msgid "Show Log &Configuration" msgstr "日誌記錄設定(&C)" @@ -10595,7 +10697,7 @@ msgstr "" msgid "Show NetPlay Ping" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:740 +#: Source/Core/DolphinQt/MenuBar.cpp:741 msgid "Show Netherlands" msgstr "" @@ -10603,12 +10705,12 @@ msgstr "" msgid "Show On-Screen Display Messages" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:733 +#: Source/Core/DolphinQt/MenuBar.cpp:734 msgid "Show PAL" msgstr "顯示 PAL" #. i18n: Here, PC is an acronym for program counter, not personal computer. -#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:75 Source/Core/DolphinQt/ToolBar.cpp:112 msgid "Show PC" msgstr "" @@ -10616,7 +10718,7 @@ msgstr "" msgid "Show Performance Graphs" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:713 +#: Source/Core/DolphinQt/MenuBar.cpp:714 msgid "Show Platforms" msgstr "顯示平台" @@ -10624,23 +10726,23 @@ msgstr "顯示平台" msgid "Show Projection Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:747 +#: Source/Core/DolphinQt/MenuBar.cpp:748 msgid "Show Regions" msgstr "顯示區域" -#: Source/Core/DolphinQt/MenuBar.cpp:806 +#: Source/Core/DolphinQt/MenuBar.cpp:807 msgid "Show Rerecord Counter" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:741 +#: Source/Core/DolphinQt/MenuBar.cpp:742 msgid "Show Russia" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:198 +#: Source/Core/Core/HotkeyManager.cpp:201 msgid "Show Skylanders Portal" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:742 +#: Source/Core/DolphinQt/MenuBar.cpp:743 msgid "Show Spain" msgstr "" @@ -10652,19 +10754,23 @@ msgstr "" msgid "Show Statistics" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:831 +#: Source/Core/DolphinQt/MenuBar.cpp:832 msgid "Show System Clock" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:743 +#: Source/Core/DolphinQt/MenuBar.cpp:744 msgid "Show Taiwan" msgstr "顯示 Taiwan" -#: Source/Core/DolphinQt/MenuBar.cpp:734 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586 +msgid "Show Target in Memor&y" +msgstr "" + +#: Source/Core/DolphinQt/MenuBar.cpp:735 msgid "Show USA" msgstr "顯示 USA" -#: Source/Core/DolphinQt/MenuBar.cpp:745 +#: Source/Core/DolphinQt/MenuBar.cpp:746 msgid "Show Unknown" msgstr "" @@ -10676,27 +10782,27 @@ msgstr "" msgid "Show VPS" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:709 +#: Source/Core/DolphinQt/MenuBar.cpp:710 msgid "Show WAD" msgstr "顯示 WAD" -#: Source/Core/DolphinQt/MenuBar.cpp:707 +#: Source/Core/DolphinQt/MenuBar.cpp:708 msgid "Show Wii" msgstr "顯示 Wii" -#: Source/Core/DolphinQt/MenuBar.cpp:744 +#: Source/Core/DolphinQt/MenuBar.cpp:745 msgid "Show World" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:582 -msgid "Show in &memory" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 +msgid "Show in &Memory" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:527 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:531 msgid "Show in Code" msgstr "" -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:544 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:548 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:357 msgid "Show in Memory" msgstr "" @@ -10713,13 +10819,9 @@ msgstr "" msgid "Show in server browser" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584 -msgid "Show target in memor&y" -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:265 msgid "" -"Shows Dolphin's debugging User Interface. This lets you view and modify a " +"Shows Dolphin's debugging user interface. This lets you view and modify a " "game's code and memory contents, set debugging breakpoints, examine network " "requests, and more.

If unsure, leave this unchecked." "" @@ -10752,18 +10854,6 @@ msgid "" "

If unsure, leave this unchecked." msgstr "" -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 -msgid "" -"Shows the Mouse Cursor at all times.

If unsure, " -"select "On Movement"." -msgstr "" - -#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 -msgid "" -"Shows the Mouse Cursor briefly whenever it has recently moved, then hides it." -"

If unsure, select this mode." -msgstr "" - #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:358 msgid "" "Shows the active game title in the render window's title bar." @@ -10784,6 +10874,18 @@ msgid "" "
" msgstr "" +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:375 +msgid "" +"Shows the mouse cursor at all times.

If unsure, " +"select "On Movement"." +msgstr "" + +#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:368 +msgid "" +"Shows the mouse cursor briefly whenever it has recently moved, then hides it." +"

If unsure, select this mode." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:262 msgid "" "Shows the number of distinct frames rendered per second as a measure of " @@ -10816,6 +10918,14 @@ msgid "" "leave this unchecked.
" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:398 +msgid "" +"Shows which game is active and the duration of your current play session in " +"your Discord status.

This setting cannot be changed while emulation " +"is active.

If unsure, leave this checked." +msgstr "" + #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:210 msgid "Side-by-Side" msgstr "" @@ -10832,7 +10942,7 @@ msgstr "" msgid "Sideways Wii Remote" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1026 +#: Source/Core/DolphinQt/MenuBar.cpp:1027 msgid "Signature Database" msgstr "" @@ -10879,7 +10989,7 @@ msgid "" "crackling." msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:69 Source/Core/DolphinQt/ToolBar.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:72 Source/Core/DolphinQt/ToolBar.cpp:110 msgid "Skip" msgstr "" @@ -11053,6 +11163,10 @@ msgstr "" msgid "Speed" msgstr "" +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:455 +msgid "Speed Limit" +msgstr "" + #. 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:262 @@ -11089,11 +11203,11 @@ msgstr "" msgid "Start New Cheat Search" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:777 +#: Source/Core/DolphinQt/MenuBar.cpp:778 msgid "Start Re&cording Input" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:55 +#: Source/Core/Core/HotkeyManager.cpp:58 msgid "Start Recording" msgstr "開始錄製" @@ -11132,39 +11246,39 @@ msgstr "" #. i18n: Here, "Step" is a verb. This feature is used for #. going through code step by step. -#: Source/Core/Core/HotkeyManager.cpp:62 +#: Source/Core/Core/HotkeyManager.cpp:65 msgid "Step Into" msgstr "" #. 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:109 +#: Source/Core/Core/HotkeyManager.cpp:71 Source/Core/DolphinQt/ToolBar.cpp:109 msgid "Step Out" msgstr "" #. 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:106 +#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:106 msgid "Step Over" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:571 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:565 msgid "Step out successful!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:569 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:563 msgid "Step out timed out!" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:488 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:486 msgid "Step over in progress..." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:462 +#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:461 msgid "Step successful!" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:338 +#: Source/Core/Core/HotkeyManager.cpp:345 #: Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.cpp:21 msgid "Stepping" msgstr "" @@ -11173,7 +11287,7 @@ msgstr "" msgid "Stereo" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:653 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:673 msgid "Stereoscopic 3D Mode" msgstr "" @@ -11203,7 +11317,7 @@ msgstr "搖桿" msgid "Stop" msgstr "停止" -#: Source/Core/DolphinQt/MenuBar.cpp:780 +#: Source/Core/DolphinQt/MenuBar.cpp:781 msgid "Stop Playing/Recording Input" msgstr "" @@ -11272,14 +11386,14 @@ msgstr "" msgid "Stylus" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:282 #: Source/Core/DolphinQt/ConvertDialog.cpp:537 #: Source/Core/DolphinQt/GameList/GameList.cpp:631 #: Source/Core/DolphinQt/GameList/GameList.cpp:661 -#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1112 -#: Source/Core/DolphinQt/MenuBar.cpp:1246 +#: Source/Core/DolphinQt/MenuBar.cpp:214 Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1247 msgid "Success" msgstr "" @@ -11306,24 +11420,24 @@ msgstr "" msgid "Successfully exported save files" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1247 +#: Source/Core/DolphinQt/MenuBar.cpp:1248 msgid "Successfully extracted certificates from NAND" msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:385 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384 msgid "Successfully extracted file." msgstr "" -#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261 +#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260 msgid "Successfully extracted system data." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1142 +#: Source/Core/DolphinQt/MenuBar.cpp:1143 msgid "Successfully imported save file." msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:632 -#: Source/Core/DolphinQt/MenuBar.cpp:1113 +#: Source/Core/DolphinQt/MenuBar.cpp:1114 msgid "Successfully installed this title to the NAND." msgstr "" @@ -11374,7 +11488,7 @@ msgstr "" msgid "Swapper" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:610 msgid "" "Swaps the left and right eye. Most useful in side-by-side stereoscopy mode." "

If unsure, leave this unchecked." @@ -11399,17 +11513,21 @@ msgstr "" msgid "Symbol" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:993 -msgid "Symbol (%1) end address:" +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:992 +msgid "Symbol End Address (%1):" msgstr "" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:934 -msgid "Symbol name:" +msgid "Symbol Name:" msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:161 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:968 +msgid "Symbol Size (%1):" +msgstr "" + +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:162 #: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:137 -#: Source/Core/DolphinQt/MenuBar.cpp:1020 +#: Source/Core/DolphinQt/MenuBar.cpp:1021 msgid "Symbols" msgstr "" @@ -11458,7 +11576,7 @@ msgstr "" msgid "System Language:" msgstr "系統語系:" -#: Source/Core/DolphinQt/MenuBar.cpp:796 +#: Source/Core/DolphinQt/MenuBar.cpp:797 msgid "TAS Input" msgstr "" @@ -11469,9 +11587,9 @@ msgid "TAS Tools" msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:502 -#: Source/Core/DolphinQt/GameList/GameList.cpp:1012 +#: Source/Core/DolphinQt/GameList/GameList.cpp:1008 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:236 -#: Source/Core/DolphinQt/MenuBar.cpp:685 +#: Source/Core/DolphinQt/MenuBar.cpp:686 msgid "Tags" msgstr "" @@ -11489,7 +11607,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:354 +#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:351 msgid "Take Screenshot" msgstr "截取畫面" @@ -11497,7 +11615,7 @@ msgstr "截取畫面" msgid "Target address range is invalid." msgstr "" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:702 msgid "" "Target value was overwritten by current instruction.\n" "Instructions executed: %1" @@ -11532,7 +11650,7 @@ msgstr "" msgid "Texture Dumping" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:625 +#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645 msgid "Texture Filtering" msgstr "" @@ -11577,13 +11695,13 @@ msgstr "" msgid "The Masterpiece partitions are missing." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1238 +#: Source/Core/DolphinQt/MenuBar.cpp:1239 msgid "" "The NAND could not be repaired. It is recommended to back up your current " "data and start over with a fresh NAND." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1233 +#: Source/Core/DolphinQt/MenuBar.cpp:1234 msgid "The NAND has been repaired." msgstr "" @@ -11734,7 +11852,7 @@ msgstr "" msgid "The filesystem is invalid or could not be read." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:590 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:589 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 " @@ -11858,7 +11976,7 @@ msgid "" "The same file can't be used in multiple slots; it is already used by %1." msgstr "" -#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:613 +#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:612 msgid "" "The same folder can't be used in multiple slots; it is already used by %1." msgstr "" @@ -11892,7 +12010,7 @@ msgstr "" msgid "The specified file \"{0}\" does not exist" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1196 +#: Source/Core/DolphinQt/MenuBar.cpp:1197 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)." @@ -11950,7 +12068,7 @@ msgstr "" msgid "The update partition is not at its normal position." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1188 +#: Source/Core/DolphinQt/MenuBar.cpp:1189 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)." @@ -12057,7 +12175,7 @@ msgid "" msgstr "" #: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265 -#: Source/Core/DolphinQt/GameList/GameList.cpp:835 +#: Source/Core/DolphinQt/GameList/GameList.cpp:831 msgid "This cannot be undone!" msgstr "" @@ -12248,7 +12366,7 @@ msgstr "" msgid "Threshold" msgstr "閾值" -#: Source/Core/UICommon/UICommon.cpp:552 +#: Source/Core/UICommon/UICommon.cpp:529 msgid "TiB" msgstr "" @@ -12267,10 +12385,10 @@ msgstr "" msgid "Timed Out" msgstr "" -#: Source/Core/DolphinQt/GameList/GameList.cpp:1001 +#: Source/Core/DolphinQt/GameList/GameList.cpp:997 #: Source/Core/DolphinQt/GameList/GameListModel.cpp:214 #: Source/Core/DolphinQt/GCMemcardManager.cpp:154 -#: Source/Core/DolphinQt/MenuBar.cpp:674 +#: Source/Core/DolphinQt/MenuBar.cpp:675 msgid "Title" msgstr "標題" @@ -12278,25 +12396,29 @@ msgstr "標題" msgid "To" msgstr "" +#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:183 +msgid "To log in, stop the current emulation." +msgstr "" + #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:99 #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:114 msgid "To:" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:351 +#: Source/Core/DolphinQt/MenuBar.cpp:348 msgid "Toggle &Fullscreen" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:125 +#: Source/Core/Core/HotkeyManager.cpp:128 msgid "Toggle 3D Anaglyph" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:123 +#: Source/Core/Core/HotkeyManager.cpp:126 msgid "Toggle 3D Side-by-Side" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:124 +#: Source/Core/Core/HotkeyManager.cpp:127 msgid "Toggle 3D Top-Bottom" msgstr "" @@ -12304,28 +12426,28 @@ msgstr "" msgid "Toggle All Log Types" msgstr "全選/全部取消" -#: Source/Core/Core/HotkeyManager.cpp:107 +#: Source/Core/Core/HotkeyManager.cpp:110 msgid "Toggle Aspect Ratio" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:76 +#: Source/Core/Core/HotkeyManager.cpp:79 #: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:902 msgid "Toggle Breakpoint" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:106 +#: Source/Core/Core/HotkeyManager.cpp:109 msgid "Toggle Crop" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:114 +#: Source/Core/Core/HotkeyManager.cpp:117 msgid "Toggle Custom Textures" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:109 +#: Source/Core/Core/HotkeyManager.cpp:112 msgid "Toggle EFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:112 +#: Source/Core/Core/HotkeyManager.cpp:115 msgid "Toggle Fog" msgstr "" @@ -12337,31 +12459,31 @@ msgstr "切換全螢幕" msgid "Toggle Pause" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:86 +#: Source/Core/Core/HotkeyManager.cpp:89 msgid "Toggle SD Card" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:108 +#: Source/Core/Core/HotkeyManager.cpp:111 msgid "Toggle Skip EFB Access" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:113 +#: Source/Core/Core/HotkeyManager.cpp:116 msgid "Toggle Texture Dumping" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:87 +#: Source/Core/Core/HotkeyManager.cpp:90 msgid "Toggle USB Keyboard" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:110 +#: Source/Core/Core/HotkeyManager.cpp:113 msgid "Toggle XFB Copies" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:111 +#: Source/Core/Core/HotkeyManager.cpp:114 msgid "Toggle XFB Immediate Mode" msgstr "" -#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:964 +#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." msgstr "" @@ -12482,7 +12604,7 @@ msgid "Trophy" msgstr "" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:268 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:331 #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:353 msgid "Type" @@ -12512,7 +12634,7 @@ msgstr "" msgid "USB Emulation" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:361 +#: Source/Core/Core/HotkeyManager.cpp:368 msgid "USB Emulation Devices" msgstr "" @@ -12550,15 +12672,15 @@ msgid "" "behavior." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1407 +#: Source/Core/DolphinQt/MenuBar.cpp:1408 msgid "Unable to auto-detect RSO module" msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:204 +#: Source/Core/UICommon/AutoUpdate.cpp:208 msgid "Unable to contact update server." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:276 +#: Source/Core/UICommon/AutoUpdate.cpp:280 msgid "Unable to create updater copy." msgstr "" @@ -12590,7 +12712,7 @@ msgstr "" msgid "Unable to read file." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:281 +#: Source/Core/UICommon/AutoUpdate.cpp:285 msgid "Unable to set permissions on updater copy." msgstr "" @@ -12613,11 +12735,11 @@ msgstr "" msgid "Undead" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:373 +#: Source/Core/Core/HotkeyManager.cpp:181 Source/Core/DolphinQt/MenuBar.cpp:370 msgid "Undo Load State" msgstr "取消讀取進度" -#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:390 +#: Source/Core/Core/HotkeyManager.cpp:182 Source/Core/DolphinQt/MenuBar.cpp:387 msgid "Undo Save State" msgstr "取消儲存進度" @@ -12635,7 +12757,7 @@ msgid "" "title from the NAND without deleting its save data. Continue?" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:315 +#: Source/Core/DolphinQt/MenuBar.cpp:312 msgid "United States" msgstr "" @@ -12731,11 +12853,11 @@ msgstr "" msgid "Unknown(%1).bin" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:167 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170 msgid "Unlimited" msgstr "無限制" -#: Source/Core/Core/HotkeyManager.cpp:186 +#: Source/Core/Core/HotkeyManager.cpp:189 msgid "Unload ROM" msgstr "" @@ -12743,7 +12865,12 @@ msgstr "" msgid "Unlock Cursor" msgstr "" -#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:98 +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 +msgid "Unlocked" +msgstr "" + +#. i18n: %1 is a date/time. +#: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 msgid "Unlocked at %1" msgstr "" @@ -12841,7 +12968,7 @@ msgstr "" msgid "Upright Wii Remote" msgstr "" -#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:229 +#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230 msgid "Usage Statistics Reporting Settings" msgstr "" @@ -12934,7 +13061,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:320 msgid "" -"Uses Dolphin's database of properly formatted names in the Game List Title " +"Uses Dolphin's database of properly formatted names in the game list's Title " "column.

If unsure, leave this checked." msgstr "" @@ -13005,7 +13132,7 @@ msgstr "" msgid "Value" msgstr "數值" -#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:713 +#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:715 msgid "Value tracked to current instruction." msgstr "" @@ -13093,22 +13220,22 @@ msgstr "" msgid "Virtual address space" msgstr "" -#: Source/Core/Core/HotkeyManager.cpp:334 +#: Source/Core/Core/HotkeyManager.cpp:341 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:23 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:24 #: Source/Core/DolphinQt/Settings/AudioPane.cpp:63 msgid "Volume" msgstr "音量" -#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189 +#: Source/Core/Core/HotkeyManager.cpp:45 Source/Core/Core/HotkeyManager.cpp:192 msgid "Volume Down" msgstr "降低音量" -#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191 +#: Source/Core/Core/HotkeyManager.cpp:47 Source/Core/Core/HotkeyManager.cpp:194 msgid "Volume Toggle Mute" msgstr "音量切換至靜音" -#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190 +#: Source/Core/Core/HotkeyManager.cpp:46 Source/Core/Core/HotkeyManager.cpp:193 msgid "Volume Up" msgstr "提高音量" @@ -13116,7 +13243,7 @@ msgstr "提高音量" msgid "Vulkan" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1104 +#: Source/Core/DolphinQt/MenuBar.cpp:1105 msgid "WAD files (*.wad)" msgstr "" @@ -13217,7 +13344,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217 #: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233 -#: Source/Core/DolphinQt/MenuBar.cpp:1562 +#: Source/Core/DolphinQt/MenuBar.cpp:1563 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472 msgid "Warning" msgstr "警告" @@ -13330,7 +13457,7 @@ msgstr "" msgid "Widescreen Hack" msgstr "寬螢幕修正" -#: Source/Core/Core/HotkeyManager.cpp:341 +#: Source/Core/Core/HotkeyManager.cpp:348 #: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20 #: Source/Core/DolphinQt/Config/SettingsWindow.cpp:42 msgid "Wii" @@ -13400,7 +13527,7 @@ msgstr "" msgid "Wii data is not public yet" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1125 +#: Source/Core/DolphinQt/MenuBar.cpp:1126 msgid "Wii save files (*.bin);;All Files (*)" msgstr "" @@ -13435,11 +13562,11 @@ msgstr "" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:136 -#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:270 +#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:272 msgid "Write" msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:922 +#: Source/Core/DolphinQt/MenuBar.cpp:923 msgid "Write JIT Block Log Dump" msgstr "" @@ -13583,7 +13710,7 @@ msgid "" "now and configure a \"Standard Controller\"." msgstr "" -#: Source/Core/UICommon/AutoUpdate.cpp:222 +#: Source/Core/UICommon/AutoUpdate.cpp:226 msgid "You are running the latest version available on this update track." msgstr "" @@ -13647,7 +13774,7 @@ msgid "" "If you select \"No\", audio might be garbled." msgstr "" -#: Source/Core/DolphinQt/MenuBar.cpp:1208 +#: Source/Core/DolphinQt/MenuBar.cpp:1209 msgid "" "Your NAND contains more data than allowed. Wii software may behave " "incorrectly or not allow saving." From b71474ec64ee457aa909241c33e4b2da1bf306bc Mon Sep 17 00:00:00 2001 From: lycheefox Date: Tue, 20 Aug 2024 21:41:34 -0400 Subject: [PATCH 293/296] Skylanders: Add Mobile Hot Streak and fix typo --- Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp b/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp index 2997f90ab0..c3cb69d2b1 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp @@ -143,7 +143,7 @@ const std::map, SkyData> list_skylanders = {{100, 0x1000}, {"Jet-Vac", Game::Giants, Element::Air, Type::Skylander}}, {{100, 0x1206}, {"Jet-Vac (LightCore)", Game::Giants, Element::Air, Type::Skylander}}, {{100, 0x1403}, {"Jet-Vac (Legendary)", Game::Giants, Element::Air, Type::Skylander}}, - {{100, 0x2805}, {"Jet Vac (Turbo)", Game::SwapForce, Element::Air, Type::Skylander}}, + {{100, 0x2805}, {"Jet-Vac (Turbo)", Game::SwapForce, Element::Air, Type::Skylander}}, {{100, 0x3805}, {"Jet-Vac (Full Blast)", Game::TrapTeam, Element::Air, Type::Skylander}}, {{101, 0x1206}, {"Swarm", Game::Giants, Element::Air, Type::Giant}}, {{102, 0x1206}, {"Crusher", Game::Giants, Element::Earth, Type::Giant}}, @@ -499,6 +499,7 @@ const std::map, SkyData> list_skylanders = {{3224, 0x4000}, {"Hot Streak", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x4004}, {"Hot Streak (Event Exclusive)", Game::Superchargers, Element::Fire, Type::Vehicle}}, + {{3224, 0x411F}, {"Hot Streak (Mobile)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x4402}, {"Hot Streak (Dark)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x441E}, {"Hot Streak (Golden)", Game::Superchargers, Element::Fire, Type::Vehicle}}, {{3224, 0x450F}, {"Hot Streak (Instant)", Game::Superchargers, Element::Fire, Type::Vehicle}}, From 9f95a8fa8afecdf73c7a3eeab418f30a89f89087 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 21 Aug 2024 18:12:04 +0200 Subject: [PATCH 294/296] DolphinQt: Fix "Sddress" typo --- Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index be1eb0a4b9..e503a51d45 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -585,7 +585,7 @@ void CodeViewWidget::OnContextMenu() auto* show_target_memory = menu->addAction(tr("Show Target in Memor&y"), this, &CodeViewWidget::OnShowTargetInMemory); auto* copy_target_memory = - menu->addAction(tr("Copy Tar&get Sddress"), this, &CodeViewWidget::OnCopyTargetAddress); + menu->addAction(tr("Copy Tar&get Address"), this, &CodeViewWidget::OnCopyTargetAddress); menu->addSeparator(); auto* symbol_rename_action = From 76a998ecf970d99c38d65235f30b816b3f00f1a4 Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:49:06 -0700 Subject: [PATCH 295/296] TypeUtils: Remove Common::Fill This temporary solution is no longer needed. --- Source/Core/Common/TypeUtils.h | 13 ------------- .../Core/PowerPC/Interpreter/Interpreter_Tables.cpp | 13 ++++++------- Source/Core/Core/PowerPC/Jit64/Jit64_Tables.cpp | 13 ++++++------- .../Core/Core/PowerPC/JitArm64/JitArm64_Tables.cpp | 13 ++++++------- Source/Core/Core/PowerPC/PPCTables.cpp | 13 ++++++------- 5 files changed, 24 insertions(+), 41 deletions(-) diff --git a/Source/Core/Common/TypeUtils.h b/Source/Core/Common/TypeUtils.h index 44ef1faf78..714f5a718d 100644 --- a/Source/Core/Common/TypeUtils.h +++ b/Source/Core/Common/TypeUtils.h @@ -82,17 +82,4 @@ static_assert(!IsNOf::value); static_assert(IsNOf::value); static_assert(IsNOf::value); // Type conversions ARE allowed static_assert(!IsNOf::value); - -// TODO: This can be replaced with std::array's fill() once C++20 is fully supported. -// Prior to C++20, std::array's fill() function is, unfortunately, not constexpr. -// Ditto for 's std::fill. Although Dolphin targets C++20, Android doesn't -// seem to properly support constexpr fill(), so we need this for now. -template -constexpr void Fill(std::array& array, const T2& value) -{ - for (auto& entry : array) - { - entry = value; - } -} } // namespace Common diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp index 44ac712896..8c513df306 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp @@ -6,7 +6,6 @@ #include #include "Common/Assert.h" -#include "Common/TypeUtils.h" #include "Core/PowerPC/Gekko.h" namespace @@ -341,7 +340,7 @@ constexpr std::array s_table63_2{{ constexpr std::array s_interpreter_op_table = []() consteval { std::array table{}; - Common::Fill(table, Interpreter::unknown_instruction); + table.fill(Interpreter::unknown_instruction); for (auto& tpl : s_primary_table) { ASSERT(table[tpl.opcode] == Interpreter::unknown_instruction); @@ -353,7 +352,7 @@ constexpr std::array s_interpreter_op_table = []() constexpr std::array s_interpreter_op_table4 = []() consteval { std::array table{}; - Common::Fill(table, Interpreter::unknown_instruction); + table.fill(Interpreter::unknown_instruction); for (u32 i = 0; i < 32; i++) { @@ -390,7 +389,7 @@ constexpr std::array s_interpreter_op_table4 = [ constexpr std::array s_interpreter_op_table19 = []() consteval { std::array table{}; - Common::Fill(table, Interpreter::unknown_instruction); + table.fill(Interpreter::unknown_instruction); for (auto& tpl : s_table19) { ASSERT(table[tpl.opcode] == Interpreter::unknown_instruction); @@ -402,7 +401,7 @@ constexpr std::array s_interpreter_op_table19 = constexpr std::array s_interpreter_op_table31 = []() consteval { std::array table{}; - Common::Fill(table, Interpreter::unknown_instruction); + table.fill(Interpreter::unknown_instruction); for (auto& tpl : s_table31) { ASSERT(table[tpl.opcode] == Interpreter::unknown_instruction); @@ -414,7 +413,7 @@ constexpr std::array s_interpreter_op_table31 = constexpr std::array s_interpreter_op_table59 = []() consteval { std::array table{}; - Common::Fill(table, Interpreter::unknown_instruction); + table.fill(Interpreter::unknown_instruction); for (auto& tpl : s_table59) { ASSERT(table[tpl.opcode] == Interpreter::unknown_instruction); @@ -426,7 +425,7 @@ constexpr std::array s_interpreter_op_table59 = [] constexpr std::array s_interpreter_op_table63 = []() consteval { std::array table{}; - Common::Fill(table, Interpreter::unknown_instruction); + table.fill(Interpreter::unknown_instruction); for (auto& tpl : s_table63) { ASSERT(table[tpl.opcode] == Interpreter::unknown_instruction); diff --git a/Source/Core/Core/PowerPC/Jit64/Jit64_Tables.cpp b/Source/Core/Core/PowerPC/Jit64/Jit64_Tables.cpp index 61eb1c9450..1914542c9f 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit64_Tables.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit64_Tables.cpp @@ -6,7 +6,6 @@ #include #include "Common/Assert.h" -#include "Common/TypeUtils.h" #include "Core/PowerPC/Gekko.h" namespace @@ -339,7 +338,7 @@ constexpr std::array s_table63_2{{ constexpr std::array s_dyna_op_table = []() consteval { std::array table{}; - Common::Fill(table, &Jit64::FallBackToInterpreter); + table.fill(&Jit64::FallBackToInterpreter); for (auto& tpl : s_primary_table) { @@ -354,7 +353,7 @@ constexpr std::array s_dyna_op_table = []() consteval constexpr std::array s_dyna_op_table4 = []() consteval { std::array table{}; - Common::Fill(table, &Jit64::FallBackToInterpreter); + table.fill(&Jit64::FallBackToInterpreter); for (u32 i = 0; i < 32; i++) { @@ -392,7 +391,7 @@ constexpr std::array s_dyna_op_table4 = []() consteval constexpr std::array s_dyna_op_table19 = []() consteval { std::array table{}; - Common::Fill(table, &Jit64::FallBackToInterpreter); + table.fill(&Jit64::FallBackToInterpreter); for (const auto& tpl : s_table19) { @@ -407,7 +406,7 @@ constexpr std::array s_dyna_op_table19 = []() consteva constexpr std::array s_dyna_op_table31 = []() consteval { std::array table{}; - Common::Fill(table, &Jit64::FallBackToInterpreter); + table.fill(&Jit64::FallBackToInterpreter); for (const auto& tpl : s_table31) { @@ -422,7 +421,7 @@ constexpr std::array s_dyna_op_table31 = []() consteva constexpr std::array s_dyna_op_table59 = []() consteval { std::array table{}; - Common::Fill(table, &Jit64::FallBackToInterpreter); + table.fill(&Jit64::FallBackToInterpreter); for (const auto& tpl : s_table59) { @@ -437,7 +436,7 @@ constexpr std::array s_dyna_op_table59 = []() consteval constexpr std::array s_dyna_op_table63 = []() consteval { std::array table{}; - Common::Fill(table, &Jit64::FallBackToInterpreter); + table.fill(&Jit64::FallBackToInterpreter); for (const auto& tpl : s_table63) { diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Tables.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Tables.cpp index d75ba2a94a..09013ee196 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Tables.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Tables.cpp @@ -6,7 +6,6 @@ #include #include "Common/Assert.h" -#include "Common/TypeUtils.h" #include "Core/PowerPC/Gekko.h" namespace @@ -339,7 +338,7 @@ constexpr std::array s_table63_2{{ constexpr std::array s_dyna_op_table = []() consteval { std::array table{}; - Common::Fill(table, &JitArm64::FallBackToInterpreter); + table.fill(&JitArm64::FallBackToInterpreter); for (auto& tpl : s_primary_table) { @@ -354,7 +353,7 @@ constexpr std::array s_dyna_op_table = []() consteval constexpr std::array s_dyna_op_table4 = []() consteval { std::array table{}; - Common::Fill(table, &JitArm64::FallBackToInterpreter); + table.fill(&JitArm64::FallBackToInterpreter); for (u32 i = 0; i < 32; i++) { @@ -392,7 +391,7 @@ constexpr std::array s_dyna_op_table4 = []() conste constexpr std::array s_dyna_op_table19 = []() consteval { std::array table{}; - Common::Fill(table, &JitArm64::FallBackToInterpreter); + table.fill(&JitArm64::FallBackToInterpreter); for (const auto& tpl : s_table19) { @@ -407,7 +406,7 @@ constexpr std::array s_dyna_op_table19 = []() const constexpr std::array s_dyna_op_table31 = []() consteval { std::array table{}; - Common::Fill(table, &JitArm64::FallBackToInterpreter); + table.fill(&JitArm64::FallBackToInterpreter); for (const auto& tpl : s_table31) { @@ -422,7 +421,7 @@ constexpr std::array s_dyna_op_table31 = []() const constexpr std::array s_dyna_op_table59 = []() consteval { std::array table{}; - Common::Fill(table, &JitArm64::FallBackToInterpreter); + table.fill(&JitArm64::FallBackToInterpreter); for (const auto& tpl : s_table59) { @@ -437,7 +436,7 @@ constexpr std::array s_dyna_op_table59 = []() constev constexpr std::array s_dyna_op_table63 = []() consteval { std::array table{}; - Common::Fill(table, &JitArm64::FallBackToInterpreter); + table.fill(&JitArm64::FallBackToInterpreter); for (const auto& tpl : s_table63) { diff --git a/Source/Core/Core/PowerPC/PPCTables.cpp b/Source/Core/Core/PowerPC/PPCTables.cpp index 8eeb5da076..24d9040c6e 100644 --- a/Source/Core/Core/PowerPC/PPCTables.cpp +++ b/Source/Core/Core/PowerPC/PPCTables.cpp @@ -17,7 +17,6 @@ #include "Common/IOFile.h" #include "Common/Logging/Log.h" #include "Common/StringUtil.h" -#include "Common/TypeUtils.h" #include "Core/PowerPC/PowerPC.h" @@ -527,14 +526,14 @@ constexpr Tables s_tables = []() consteval u32 unknown_op_info = make_info(s_unknown_op_info); tables.unknown_op_info = unknown_op_info; - Common::Fill(tables.primary_table, unknown_op_info); + tables.primary_table.fill(unknown_op_info); for (auto& tpl : s_primary_table) { ASSERT(tables.primary_table[tpl.opcode] == unknown_op_info); tables.primary_table[tpl.opcode] = make_info(tpl); }; - Common::Fill(tables.table4, unknown_op_info); + tables.table4.fill(unknown_op_info); for (const auto& tpl : s_table4_2) { @@ -567,28 +566,28 @@ constexpr Tables s_tables = []() consteval tables.table4[op] = make_info(tpl); } - Common::Fill(tables.table19, unknown_op_info); + tables.table19.fill(unknown_op_info); for (auto& tpl : s_table19) { ASSERT(tables.table19[tpl.opcode] == unknown_op_info); tables.table19[tpl.opcode] = make_info(tpl); }; - Common::Fill(tables.table31, unknown_op_info); + tables.table31.fill(unknown_op_info); for (auto& tpl : s_table31) { ASSERT(tables.table31[tpl.opcode] == unknown_op_info); tables.table31[tpl.opcode] = make_info(tpl); }; - Common::Fill(tables.table59, unknown_op_info); + tables.table59.fill(unknown_op_info); for (auto& tpl : s_table59) { ASSERT(tables.table59[tpl.opcode] == unknown_op_info); tables.table59[tpl.opcode] = make_info(tpl); }; - Common::Fill(tables.table63, unknown_op_info); + tables.table63.fill(unknown_op_info); for (auto& tpl : s_table63) { ASSERT(tables.table63[tpl.opcode] == unknown_op_info); From 1108ccd62fec0899e20a35dddbc725c8419e5dca Mon Sep 17 00:00:00 2001 From: lycheefox Date: Thu, 22 Aug 2024 20:57:18 -0400 Subject: [PATCH 296/296] Skylanders: Fix Hot Head (Sparkle) --- Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp b/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp index c3cb69d2b1..df9dbb1505 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Skylanders/Skylander.cpp @@ -152,7 +152,7 @@ const std::map, SkyData> list_skylanders = {{103, 0x1402}, {"Flashwing (Jade)", Game::Giants, Element::Earth, Type::Skylander}}, {{103, 0x2206}, {"Flashwing (LightCore)", Game::SwapForce, Element::Earth, Type::Skylander}}, {{104, 0x1206}, {"Hot Head", Game::Giants, Element::Fire, Type::Giant}}, - {{104, 0x1213}, {"Hot Head (Sparkle)", Game::Giants, Element::Fire, Type::Skylander}}, + {{104, 0x1213}, {"Hot Head (Sparkle)", Game::Giants, Element::Fire, Type::Giant}}, {{105, 0x1000}, {"Hot Dog", Game::Giants, Element::Fire, Type::Skylander}}, {{105, 0x1015}, {"Hot Dog (Bronze)", Game::Giants, Element::Fire, Type::Skylander}}, {{105, 0x1402}, {"Hot Dog (Molten)", Game::Giants, Element::Fire, Type::Skylander}},